diff --git a/vendored_parsers/tree-sitter-latex/.editorconfig b/vendored_parsers/tree-sitter-latex/.editorconfig new file mode 100644 index 000000000..d3a8b5b69 --- /dev/null +++ b/vendored_parsers/tree-sitter-latex/.editorconfig @@ -0,0 +1,39 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{json,toml,yml,gyp}] +indent_style = space +indent_size = 2 + +[*.js] +indent_style = space +indent_size = 2 + +[*.rs] +indent_style = space +indent_size = 4 + +[*.{c,cc,h}] +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 diff --git a/vendored_parsers/tree-sitter-latex/.gitattributes b/vendored_parsers/tree-sitter-latex/.gitattributes index f60d7b977..a346ad098 100644 --- a/vendored_parsers/tree-sitter-latex/.gitattributes +++ b/vendored_parsers/tree-sitter-latex/.gitattributes @@ -1,2 +1,2 @@ -/src/** linguist-vendored +/src/parser.c linguist-vendored /examples/* linguist-vendored diff --git a/vendored_parsers/tree-sitter-latex/.github/workflows/ci.yml b/vendored_parsers/tree-sitter-latex/.github/workflows/ci.yml index 074eacfc9..893d0fa0d 100644 --- a/vendored_parsers/tree-sitter-latex/.github/workflows/ci.yml +++ b/vendored_parsers/tree-sitter-latex/.github/workflows/ci.yml @@ -1,55 +1,114 @@ name: CI + on: push: branches: [master] + paths: + - grammar.js + - src/** + - test/** + - bindings/** + - binding.gyp pull_request: -env: - CARGO_INCREMENTAL: 0 - CI: 1 - RUST_BACKTRACE: short - RUSTFLAGS: '-D warnings' - RUSTUP_MAX_RETRIES: 10 + paths: + - grammar.js + - src/** + - test/** + - bindings/** + - binding.gyp + +concurrency: + group: ${{github.workflow}}-${{github.ref}} + cancel-in-progress: true + jobs: - binding_node: - name: Node - runs-on: ${{ matrix.os }} + test: + name: Test parser + runs-on: ${{matrix.os}} strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest, windows-latest, macos-14] steps: - - uses: actions/checkout@v3 - - name: Install Node.js - uses: actions/setup-node@v3 + - name: Checkout repository + uses: actions/checkout@v4 + - name: Set up tree-sitter + uses: tree-sitter/setup-action/cli@v2 + - name: Run parser and binding tests + uses: tree-sitter/parser-test-action@v2 with: - node-version: '18' - cache: 'npm' - - run: npm install - - run: npm test - binding_rust: - name: Rust - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest, windows-latest] + generate: true + - name: Parse sample files + uses: tree-sitter/parse-action@v4 + id: parse-files + with: + files: examples/** + - name: Upload failures artifact + uses: actions/upload-artifact@v4 + if: "!cancelled() && steps.parse-files.outcome == 'failure'" + with: + name: failures-${{runner.os}} + path: ${{steps.parse-files.outputs.failures}} + fuzz: + name: Fuzz scanner + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: dtolnay/rust-toolchain@stable - - name: Cache Dependencies - uses: Swatinem/rust-cache@v2 - - name: Compile - run: cargo test --no-run - - name: Test - run: cargo test -- --nocapture --quiet - binding_c: - name: C - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest] + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 2 + - name: Check for scanner changes + id: scanner-check + run: |- + if git diff --quiet HEAD^ -- src/scanner.c; then + printf 'changed=false\n' >> "$GITHUB_OUTPUT" + else + printf 'changed=true\n' >> "$GITHUB_OUTPUT" + fi + - name: Set up tree-sitter + uses: tree-sitter/setup-action/cli@v2 + if: steps.scanner-check.outputs.changed == 'true' + - name: Run parser and binding tests + uses: tree-sitter/parser-test-action@v2 + with: + generate: true + if: steps.scanner-check.outputs.changed == 'true' + - name: Run the fuzzer + uses: tree-sitter/fuzz-action@v4 + if: steps.scanner-check.outputs.changed == 'true' + size: + name: Check grammar size + runs-on: ubuntu-latest + if: github.ref != 'refs/heads/master' steps: - - uses: actions/checkout@v3 - - run: make - - run: sudo make install + - name: Checkout old version + uses: actions/checkout@v4 + with: + ref: master + path: old + - name: Checkout new version + uses: actions/checkout@v4 + with: + path: new + - name: Set up tree-sitter + uses: tree-sitter/setup-action/cli@v2 + - name: Generate parser.c for old version + run: tree-sitter generate --no-bindings + working-directory: old + - name: Generate parser.c for new version + run: tree-sitter generate --no-bindings + working-directory: new + - name: Check LARGE_STATE_COUNT + run: | + old_size=$(cat old/src/parser.c | grep '#define LARGE_STATE_COUNT' | sed 's/#define LARGE_STATE_COUNT //g') + new_size=$(cat new/src/parser.c | grep '#define LARGE_STATE_COUNT' | sed 's/#define LARGE_STATE_COUNT //g') + + echo "Checking LARGE_STATE_COUNT" + echo "Old: $old_size" + echo "New: $new_size" + max_size=$(echo "$old_size" "1.2" | awk '{print $1 * $2}' | cut -d "." -f 1) + + if (( $new_size > $max_size )); then + echo "LARGE_STATE_COUNT increased by more than 20%" + exit 1 + fi diff --git a/vendored_parsers/tree-sitter-latex/.gitignore b/vendored_parsers/tree-sitter-latex/.gitignore index 020cdf946..880e92410 100644 --- a/vendored_parsers/tree-sitter-latex/.gitignore +++ b/vendored_parsers/tree-sitter-latex/.gitignore @@ -1,5 +1,5 @@ -# Created by https://www.toptal.com/developers/gitignore/api/c,c++,node,visualstudiocode,rust -# Edit at https://www.toptal.com/developers/gitignore?templates=c,c++,node,visualstudiocode,rust +# Created by https://www.toptal.com/developers/gitignore/api/c,c++,rust,go,visualstudiocode,node,swift,python +# Edit at https://www.toptal.com/developers/gitignore?templates=c,c++,rust,go,visualstudiocode,node,swift,python ### C ### # Prerequisites @@ -74,6 +74,24 @@ dkms.conf # Executables +### Go ### +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe~ + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work + ### Node ### # Logs logs @@ -131,6 +149,9 @@ web_modules/ # Optional eslint cache .eslintcache +# Optional stylelint cache +.stylelintcache + # Microbundle cache .rpt2_cache/ .rts2_cache_cjs/ @@ -146,10 +167,12 @@ web_modules/ # Yarn Integrity file .yarn-integrity -# dotenv environment variables file +# dotenv environment variable files .env -.env.test -.env.production +.env.development.local +.env.test.local +.env.production.local +.env.local # parcel-bundler cache (https://parceljs.org/) .cache @@ -172,6 +195,12 @@ dist # vuepress build output .vuepress/dist +# vuepress v2.x temp and cache directory +.temp + +# Docusaurus cache and generated files +.docusaurus + # Serverless directories .serverless/ @@ -199,16 +228,182 @@ dist .webpack/ # Optional stylelint cache -.stylelintcache # SvelteKit build / generate output .svelte-kit +### Python ### +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + +### Python Patch ### +# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration +poetry.toml + +# ruff +.ruff_cache/ + +# LSP config files +pyrightconfig.json + ### Rust ### # Generated by Cargo # will have compiled files and executables debug/ -target/ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html @@ -219,30 +414,112 @@ Cargo.lock # MSVC Windows builds of rustc generate these, which store debugging information +### Swift ### +# Xcode +# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore + +## User settings +xcuserdata/ + +## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) +*.xcscmblueprint +*.xccheckout + +## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) +DerivedData/ +*.moved-aside +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 + +## Obj-C/Swift specific +*.hmap + +## App packaging +*.ipa +*.dSYM.zip +*.dSYM + +## Playgrounds +timeline.xctimeline +playground.xcworkspace + +# Swift Package Manager +# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. +# Packages/ +# Package.pins +# Package.resolved +# *.xcodeproj +# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata +# hence it is not needed unless you have added a package configuration file to your project +# .swiftpm + +.build/ + +# CocoaPods +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control +# Pods/ +# Add this line if you want to avoid checking in source code from the Xcode workspace +# *.xcworkspace + +# Carthage +# Add this line if you want to avoid checking in source code from Carthage dependencies. +# Carthage/Checkouts + +Carthage/Build/ + +# Accio dependency management +Dependencies/ +.accio/ + +# fastlane +# It is recommended to not store the screenshots in the git repo. +# Instead, use fastlane to re-generate the screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://docs.fastlane.tools/best-practices/source-control/#source-control + +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots/**/*.png +fastlane/test_output + +# Code Injection +# After new code Injection tools there's a generated folder /iOSInjectionProject +# https://github.com/johnno1962/injectionforxcode + +iOSInjectionProject/ + ### VisualStudioCode ### .vscode/* !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json !.vscode/extensions.json -*.code-workspace +!.vscode/*.code-snippets # Local History for Visual Studio Code .history/ +# Built Visual Studio Code Extensions +*.vsix + ### VisualStudioCode Patch ### # Ignore all local history of files .history .ionide -# Support for Project snippet scope -!.vscode/*.code-snippets - -# End of https://www.toptal.com/developers/gitignore/api/c,c++,node,visualstudiocode,rust +# End of https://www.toptal.com/developers/gitignore/api/c,c++,rust,go,visualstudiocode,node,swift,python build/ /bindings/c/*.h /bindings/c/tree-sitter-*.pc -# Swift Package Manager -.build/ \ No newline at end of file +src/parser.c +src/tree_sitter/ diff --git a/vendored_parsers/tree-sitter-latex/.prettierrc b/vendored_parsers/tree-sitter-latex/.prettierrc index b4f8e6a6a..7cac555b0 100644 --- a/vendored_parsers/tree-sitter-latex/.prettierrc +++ b/vendored_parsers/tree-sitter-latex/.prettierrc @@ -1,4 +1,5 @@ { "singleQuote": true, - "arrowParens": "avoid" + "arrowParens": "avoid", + "trailingComma": "all" } diff --git a/vendored_parsers/tree-sitter-latex/CHANGELOG.md b/vendored_parsers/tree-sitter-latex/CHANGELOG.md index ce93203d5..049dac518 100644 --- a/vendored_parsers/tree-sitter-latex/CHANGELOG.md +++ b/vendored_parsers/tree-sitter-latex/CHANGELOG.md @@ -9,9 +9,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Add support for hyperlinks: `\url`, `\href` ([#130](https://github.com/latex-lsp/tree-sitter-latex/issues/130)) + +### Fixed + +- Add missing citation commands: `\citeA`, `\citeR`, `\citeS`, `\citeyearR` ([#94](https://github.com/latex-lsp/tree-sitter-latex/issues/94)) +- Let `\declaretheorem` accept multiple environment names ([texlab/#1075](https://github.com/latex-lsp/texlab/issues/1075)) +- Fix parsing wrong superscripts like `10^10` ([#107](https://github.com/latex-lsp/tree-sitter-latex/issues/107)) + +## [0.4.0] - 2024-04-01 + +### Added + - Add support for definition commands found in `xparse` package ([#82](https://github.com/latex-lsp/tree-sitter-latex/issues/82)) - Add rules for parsing subscript and superscript expressions ([#63](https://github.com/latex-lsp/tree-sitter-latex/pull/63)) - Add Swift package description ([#76](https://github.com/latex-lsp/tree-sitter-latex/pull/76)) +- Add Go package description + +### Changed + +- _BREAKING_: Don't check parser.c into git repository anymore ### Fixed diff --git a/vendored_parsers/tree-sitter-latex/Cargo.toml b/vendored_parsers/tree-sitter-latex/Cargo.toml index 5e1f35910..c8d791a02 100644 --- a/vendored_parsers/tree-sitter-latex/Cargo.toml +++ b/vendored_parsers/tree-sitter-latex/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-latex" description = "latex grammar for the tree-sitter parsing library" -version = "0.3.0" +version = "0.4.0" keywords = ["incremental", "parsing", "latex"] categories = ["parsing", "text-editors"] repository = "https://github.com/latex-lsp/tree-sitter-latex" @@ -9,6 +9,7 @@ edition = "2018" license = "MIT" authors = ["Patrick Förster "] readme = "README.md" +autoexamples = false build = "bindings/rust/build.rs" include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] @@ -17,13 +18,13 @@ include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "~0.20.9" +tree-sitter = "0.24.1" [build-dependencies] cc = "1.0" [dev-dependencies] -criterion = "0.4.0" +criterion = "0.5.1" [[bench]] name = "bench_main" diff --git a/vendored_parsers/tree-sitter-latex/Makefile b/vendored_parsers/tree-sitter-latex/Makefile index 2ba629990..9ae45d6f4 100644 --- a/vendored_parsers/tree-sitter-latex/Makefile +++ b/vendored_parsers/tree-sitter-latex/Makefile @@ -1,23 +1,25 @@ -VERSION := 0.3.0 +VERSION := 0.4.0 -# Repository -SRC_DIR := src +LANGUAGE_NAME := tree-sitter-latex -PARSER_REPO_URL := $(shell git -C $(SRC_DIR) remote get-url origin ) +# repository +SRC_DIR := src -ifeq (, $(PARSER_NAME)) - PARSER_NAME := $(shell basename $(PARSER_REPO_URL)) - PARSER_NAME := $(subst tree-sitter-,,$(PARSER_NAME)) - PARSER_NAME := $(subst .git,,$(PARSER_NAME)) -endif +PARSER_REPO_URL := $(shell git -C $(SRC_DIR) remote get-url origin 2>/dev/null) -ifeq (, $(PARSER_URL)) - PARSER_URL := $(subst :,/,$(PARSER_REPO_URL)) +ifeq ($(PARSER_URL),) + PARSER_URL := $(subst .git,,$(PARSER_REPO_URL)) +ifeq ($(shell echo $(PARSER_URL) | grep '^[a-z][-+.0-9a-z]*://'),) + PARSER_URL := $(subst :,/,$(PARSER_URL)) PARSER_URL := $(subst git@,https://,$(PARSER_URL)) - PARSER_URL := $(subst .git,,$(PARSER_URL)) +endif endif -UPPER_PARSER_NAME := $(shell echo $(PARSER_NAME) | tr a-z A-Z ) +TS ?= tree-sitter + +# ABI versioning +SONAME_MAJOR := $(word 1,$(subst ., ,$(VERSION))) +SONAME_MINOR := $(word 2,$(subst ., ,$(VERSION))) # install directory layout PREFIX ?= /usr/local @@ -25,90 +27,84 @@ INCLUDEDIR ?= $(PREFIX)/include LIBDIR ?= $(PREFIX)/lib PCLIBDIR ?= $(LIBDIR)/pkgconfig -# collect C++ sources, and link if necessary -CPPSRC := $(wildcard $(SRC_DIR)/*.cc) - -ifeq (, $(CPPSRC)) - ADDITIONALLIBS := -else - ADDITIONALLIBS := -lc++ -endif - -# collect sources -SRC := $(wildcard $(SRC_DIR)/*.c) -SRC += $(CPPSRC) -OBJ := $(addsuffix .o,$(basename $(SRC))) - -# ABI versioning -SONAME_MAJOR := 0 -SONAME_MINOR := 0 +# object files +OBJS := $(patsubst %.c,%.o,$(wildcard $(SRC_DIR)/*.c)) -CFLAGS ?= -O3 -Wall -Wextra -I$(SRC_DIR) -CXXFLAGS ?= -O3 -Wall -Wextra -I$(SRC_DIR) -override CFLAGS += -std=gnu99 -fPIC -override CXXFLAGS += -fPIC +# flags +ARFLAGS := rcs +override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC # OS-specific bits -ifeq ($(shell uname),Darwin) +ifeq ($(OS),Windows_NT) + $(error "Windows is not supported") +else ifeq ($(shell uname),Darwin) SOEXT = dylib SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib LINKSHARED := $(LINKSHARED)-dynamiclib -Wl, - ifneq ($(ADDITIONALLIBS),) - LINKSHARED := $(LINKSHARED)$(ADDITIONALLIBS), + ifneq ($(ADDITIONAL_LIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS), endif - LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/libtree-sitter-$(PARSER_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks + LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks else SOEXT = so SOEXTVER_MAJOR = so.$(SONAME_MAJOR) SOEXTVER = so.$(SONAME_MAJOR).$(SONAME_MINOR) LINKSHARED := $(LINKSHARED)-shared -Wl, - ifneq ($(ADDITIONALLIBS),) - LINKSHARED := $(LINKSHARED)$(ADDITIONALLIBS), + ifneq ($(ADDITIONAL_LIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS) endif - LINKSHARED := $(LINKSHARED)-soname,libtree-sitter-$(PARSER_NAME).so.$(SONAME_MAJOR) + LINKSHARED := $(LINKSHARED)-soname,lib$(LANGUAGE_NAME).so.$(SONAME_MAJOR) endif -ifneq (,$(filter $(shell uname),FreeBSD NetBSD DragonFly)) +ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) PCLIBDIR := $(PREFIX)/libdata/pkgconfig endif -all: libtree-sitter-$(PARSER_NAME).a libtree-sitter-$(PARSER_NAME).$(SOEXTVER) bindings/c/$(PARSER_NAME).h bindings/c/tree-sitter-$(PARSER_NAME).pc +all: lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) $(LANGUAGE_NAME).pc -libtree-sitter-$(PARSER_NAME).a: $(OBJ) - $(AR) rcs $@ $^ +lib$(LANGUAGE_NAME).a: $(OBJS) + $(AR) $(ARFLAGS) $@ $^ -libtree-sitter-$(PARSER_NAME).$(SOEXTVER): $(OBJ) +lib$(LANGUAGE_NAME).$(SOEXT): $(OBJS) $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ - ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXT) - ln -sf $@ libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) - -bindings/c/$(PARSER_NAME).h: - sed -e 's|@UPPER_PARSERNAME@|$(UPPER_PARSER_NAME)|' \ - -e 's|@PARSERNAME@|$(PARSER_NAME)|' \ - bindings/c/tree-sitter.h.in > $@ +ifneq ($(STRIP),) + $(STRIP) $@ +endif -bindings/c/tree-sitter-$(PARSER_NAME).pc: - sed -e 's|@LIBDIR@|$(LIBDIR)|;s|@INCLUDEDIR@|$(INCLUDEDIR)|;s|@VERSION@|$(VERSION)|' \ +$(LANGUAGE_NAME).pc: bindings/c/$(LANGUAGE_NAME).pc.in + sed -e 's|@URL@|$(PARSER_URL)|' \ + -e 's|@VERSION@|$(VERSION)|' \ + -e 's|@LIBDIR@|$(LIBDIR)|' \ + -e 's|@INCLUDEDIR@|$(INCLUDEDIR)|' \ + -e 's|@REQUIRES@|$(REQUIRES)|' \ + -e 's|@ADDITIONAL_LIBS@|$(ADDITIONAL_LIBS)|' \ -e 's|=$(PREFIX)|=$${prefix}|' \ - -e 's|@PREFIX@|$(PREFIX)|' \ - -e 's|@ADDITIONALLIBS@|$(ADDITIONALLIBS)|' \ - -e 's|@PARSERNAME@|$(PARSER_NAME)|' \ - -e 's|@PARSERURL@|$(PARSER_URL)|' \ - bindings/c/tree-sitter.pc.in > $@ + -e 's|@PREFIX@|$(PREFIX)|' $< > $@ + +$(SRC_DIR)/parser.c: grammar.js + $(TS) generate --no-bindings install: all - install -d '$(DESTDIR)$(LIBDIR)' - install -m755 libtree-sitter-$(PARSER_NAME).a '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).a - install -m755 libtree-sitter-$(PARSER_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).$(SOEXTVER) - ln -sf libtree-sitter-$(PARSER_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) - ln -sf libtree-sitter-$(PARSER_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter-$(PARSER_NAME).$(SOEXT) - install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter - install -m644 bindings/c/$(PARSER_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/ - install -d '$(DESTDIR)$(PCLIBDIR)' - install -m644 bindings/c/tree-sitter-$(PARSER_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/ + 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 -f $(OBJ) libtree-sitter-$(PARSER_NAME).a libtree-sitter-$(PARSER_NAME).$(SOEXT) libtree-sitter-$(PARSER_NAME).$(SOEXTVER_MAJOR) libtree-sitter-$(PARSER_NAME).$(SOEXTVER) - rm -f bindings/c/$(PARSER_NAME).h bindings/c/tree-sitter-$(PARSER_NAME).pc + $(RM) $(OBJS) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) + +test: + $(TS) test -.PHONY: all install clean +.PHONY: all install uninstall clean test diff --git a/vendored_parsers/tree-sitter-latex/Package.swift b/vendored_parsers/tree-sitter-latex/Package.swift index 7a267f011..1426fae96 100644 --- a/vendored_parsers/tree-sitter-latex/Package.swift +++ b/vendored_parsers/tree-sitter-latex/Package.swift @@ -3,6 +3,7 @@ import PackageDescription let package = Package( name: "TreeSitterLatex", + platforms: [.macOS(.v10_13), .iOS(.v11)], products: [ .library(name: "TreeSitterLatex", targets: ["TreeSitterLatex"]), ], @@ -11,26 +12,37 @@ let package = Package( .target(name: "TreeSitterLatex", path: ".", exclude: [ - "binding.gyp", - "bindings", - "benches", - ".github", - "examples", "Cargo.toml", - "test", - "grammar.js", - "LICENSE", "Makefile", + "binding.gyp", + "bindings/c", + "bindings/go", + "bindings/node", + "bindings/python", + "bindings/rust", + "prebuilds", + "grammar.js", "package.json", - "README.md", - "src/grammar.json", - "src/node-types.json", + "package-lock.json", + "pyproject.toml", + "setup.py", + "test", + "examples", + ".editorconfig", + ".github", + ".gitignore", + ".gitattributes", + ".gitmodules", ], sources: [ "src/parser.c", "src/scanner.c", ], + resources: [ + .copy("queries") + ], publicHeadersPath: "bindings/swift", cSettings: [.headerSearchPath("src")]) - ] -) \ No newline at end of file + ], + cLanguageStandard: .c11 +) diff --git a/vendored_parsers/tree-sitter-latex/README.md b/vendored_parsers/tree-sitter-latex/README.md index 92899413b..d9767b546 100644 --- a/vendored_parsers/tree-sitter-latex/README.md +++ b/vendored_parsers/tree-sitter-latex/README.md @@ -9,6 +9,14 @@ Originally, this grammar is based off the parser of the [`texlab`](https://githu This repository does not provide the accompanying highlighting definitions, instead they live in the [`nvim-treesitter`](https://github.com/nvim-treesitter/nvim-treesitter/tree/master/queries/latex) repository. +To generate the parser, run + +``` +npx tree-sitter generate +``` + +after checking out the repository. + ## Limitations As widely known, parsing LaTeX is Turing complete so there is no way to handle every construct in a `tree-sitter` grammar. Instead, the grammar relies on a best effort approach while focusing on the LaTeX specific constructs like environments or sections instead of dealing with TeX internals like catcode. diff --git a/vendored_parsers/tree-sitter-latex/benches/bench_main.rs b/vendored_parsers/tree-sitter-latex/benches/bench_main.rs index e8ca744f8..88d0ab9cd 100644 --- a/vendored_parsers/tree-sitter-latex/benches/bench_main.rs +++ b/vendored_parsers/tree-sitter-latex/benches/bench_main.rs @@ -4,7 +4,7 @@ static CODE: &str = include_str!(r#"../examples/texlab.tex"#); fn criterion_benchmark(c: &mut Criterion) { let mut parser = tree_sitter::Parser::new(); - parser.set_language(tree_sitter_latex::language()).unwrap(); + parser.set_language(&tree_sitter_latex::language()).unwrap(); c.bench_function("Full", |b| { b.iter_with_large_drop(|| parser.parse(black_box(CODE), None).unwrap()); diff --git a/vendored_parsers/tree-sitter-latex/binding.gyp b/vendored_parsers/tree-sitter-latex/binding.gyp index 0b312f2f2..eec3c290e 100644 --- a/vendored_parsers/tree-sitter-latex/binding.gyp +++ b/vendored_parsers/tree-sitter-latex/binding.gyp @@ -2,18 +2,20 @@ "targets": [ { "target_name": "tree_sitter_latex_binding", + "dependencies": [ + " - -#ifdef __cplusplus -extern "C" { -#endif - -extern TSLanguage *tree_sitter_@PARSERNAME@(); - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_@UPPER_PARSERNAME@_H_ diff --git a/vendored_parsers/tree-sitter-latex/bindings/c/tree-sitter.pc.in b/vendored_parsers/tree-sitter-latex/bindings/c/tree-sitter.pc.in deleted file mode 100644 index 80d60b6db..000000000 --- a/vendored_parsers/tree-sitter-latex/bindings/c/tree-sitter.pc.in +++ /dev/null @@ -1,11 +0,0 @@ -prefix=@PREFIX@ -libdir=@LIBDIR@ -includedir=@INCLUDEDIR@ -additionallibs=@ADDITIONALLIBS@ - -Name: tree-sitter-@PARSERNAME@ -Description: A tree-sitter grammar for the @PARSERNAME@ programming language. -URL: @PARSERURL@ -Version: @VERSION@ -Libs: -L${libdir} ${additionallibs} -ltree-sitter-@PARSERNAME@ -Cflags: -I${includedir} diff --git a/vendored_parsers/tree-sitter-latex/bindings/go/binding.go b/vendored_parsers/tree-sitter-latex/bindings/go/binding.go new file mode 100644 index 000000000..f5f646c36 --- /dev/null +++ b/vendored_parsers/tree-sitter-latex/bindings/go/binding.go @@ -0,0 +1,13 @@ +package tree_sitter_latex + +// #cgo CFLAGS: -std=c11 -fPIC +// #include "../../src/parser.c" +// #include "../../src/scanner.c" +import "C" + +import "unsafe" + +// Get the tree-sitter Language for this grammar. +func Language() unsafe.Pointer { + return unsafe.Pointer(C.tree_sitter_latex()) +} diff --git a/vendored_parsers/tree-sitter-latex/bindings/go/binding_test.go b/vendored_parsers/tree-sitter-latex/bindings/go/binding_test.go new file mode 100644 index 000000000..db3b4e041 --- /dev/null +++ b/vendored_parsers/tree-sitter-latex/bindings/go/binding_test.go @@ -0,0 +1,15 @@ +package tree_sitter_latex_test + +import ( + "testing" + + tree_sitter "github.com/smacker/go-tree-sitter" + "github.com/tree-sitter/tree-sitter-latex" +) + +func TestCanLoadGrammar(t *testing.T) { + language := tree_sitter.NewLanguage(tree_sitter_latex.Language()) + if language == nil { + t.Errorf("Error loading Latex grammar") + } +} diff --git a/vendored_parsers/tree-sitter-latex/bindings/node/binding.cc b/vendored_parsers/tree-sitter-latex/bindings/node/binding.cc index e3f02431b..c146c9cb8 100644 --- a/vendored_parsers/tree-sitter-latex/bindings/node/binding.cc +++ b/vendored_parsers/tree-sitter-latex/bindings/node/binding.cc @@ -1,28 +1,20 @@ -#include "tree_sitter/parser.h" -#include -#include "nan.h" +#include -using namespace v8; +typedef struct TSLanguage TSLanguage; -extern "C" TSLanguage * tree_sitter_latex(); +extern "C" TSLanguage *tree_sitter_latex(); -namespace { +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; -NAN_METHOD(New) {} - -void Init(Local exports, Local module) { - Local tpl = Nan::New(New); - tpl->SetClassName(Nan::New("Language").ToLocalChecked()); - tpl->InstanceTemplate()->SetInternalFieldCount(1); - - Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); - Local instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); - Nan::SetInternalFieldPointer(instance, 0, tree_sitter_latex()); - - Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("latex").ToLocalChecked()); - Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); +Napi::Object Init(Napi::Env env, Napi::Object exports) { + exports["name"] = Napi::String::New(env, "latex"); + auto language = Napi::External::New(env, tree_sitter_latex()); + language.TypeTag(&LANGUAGE_TYPE_TAG); + exports["language"] = language; + return exports; } -NODE_MODULE(tree_sitter_latex_binding, Init) - -} // namespace +NODE_API_MODULE(tree_sitter_latex_binding, Init) diff --git a/vendored_parsers/tree-sitter-latex/bindings/node/index.d.ts b/vendored_parsers/tree-sitter-latex/bindings/node/index.d.ts new file mode 100644 index 000000000..efe259eed --- /dev/null +++ b/vendored_parsers/tree-sitter-latex/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/vendored_parsers/tree-sitter-latex/bindings/node/index.js b/vendored_parsers/tree-sitter-latex/bindings/node/index.js index 368d029b8..6657bcf42 100644 --- a/vendored_parsers/tree-sitter-latex/bindings/node/index.js +++ b/vendored_parsers/tree-sitter-latex/bindings/node/index.js @@ -1,18 +1,6 @@ -try { - module.exports = require("../../build/Release/tree_sitter_latex_binding"); -} catch (error1) { - if (error1.code !== 'MODULE_NOT_FOUND') { - throw error1; - } - try { - module.exports = require("../../build/Debug/tree_sitter_latex_binding"); - } catch (error2) { - if (error2.code !== 'MODULE_NOT_FOUND') { - throw error2; - } - throw error1 - } -} +const root = require("path").join(__dirname, "..", ".."); + +module.exports = require("node-gyp-build")(root); try { module.exports.nodeTypeInfo = require("../../src/node-types.json"); diff --git a/vendored_parsers/tree-sitter-latex/bindings/python/tree_sitter_latex/__init__.py b/vendored_parsers/tree-sitter-latex/bindings/python/tree_sitter_latex/__init__.py new file mode 100644 index 000000000..2fce599aa --- /dev/null +++ b/vendored_parsers/tree-sitter-latex/bindings/python/tree_sitter_latex/__init__.py @@ -0,0 +1,5 @@ +"Latex grammar for tree-sitter" + +from ._binding import language + +__all__ = ["language"] diff --git a/vendored_parsers/tree-sitter-latex/bindings/python/tree_sitter_latex/__init__.pyi b/vendored_parsers/tree-sitter-latex/bindings/python/tree_sitter_latex/__init__.pyi new file mode 100644 index 000000000..5416666fc --- /dev/null +++ b/vendored_parsers/tree-sitter-latex/bindings/python/tree_sitter_latex/__init__.pyi @@ -0,0 +1 @@ +def language() -> int: ... diff --git a/vendored_parsers/tree-sitter-latex/bindings/python/tree_sitter_latex/binding.c b/vendored_parsers/tree-sitter-latex/bindings/python/tree_sitter_latex/binding.c new file mode 100644 index 000000000..ca25bd46d --- /dev/null +++ b/vendored_parsers/tree-sitter-latex/bindings/python/tree_sitter_latex/binding.c @@ -0,0 +1,27 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_latex(void); + +static PyObject* _binding_language(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_latex()); +} + +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/vendored_parsers/tree-sitter-latex/bindings/python/tree_sitter_latex/py.typed b/vendored_parsers/tree-sitter-latex/bindings/python/tree_sitter_latex/py.typed new file mode 100644 index 000000000..e69de29bb diff --git a/vendored_parsers/tree-sitter-latex/bindings/rust/build.rs b/vendored_parsers/tree-sitter-latex/bindings/rust/build.rs index 76cdc3ceb..c65c9a8ca 100644 --- a/vendored_parsers/tree-sitter-latex/bindings/rust/build.rs +++ b/vendored_parsers/tree-sitter-latex/bindings/rust/build.rs @@ -2,37 +2,18 @@ fn main() { let src_dir = std::path::Path::new("src"); let mut c_config = cc::Build::new(); - c_config.include(&src_dir); - c_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable") - .flag_if_supported("-Wno-trigraphs"); + 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); - - // If your language uses an external scanner written in C, - // then include this block of code: + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); 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-latex"); - println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - - // If your language uses an external scanner written in C++, - // then include this block of code: - - /* - let mut cpp_config = cc::Build::new(); - cpp_config.cpp(true); - cpp_config.include(&src_dir); - cpp_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable"); - let scanner_path = src_dir.join("scanner.cc"); - cpp_config.file(&scanner_path); - cpp_config.compile("scanner"); - println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - */ } diff --git a/vendored_parsers/tree-sitter-latex/bindings/rust/lib.rs b/vendored_parsers/tree-sitter-latex/bindings/rust/lib.rs index 8cfc4b29c..4323e10a8 100644 --- a/vendored_parsers/tree-sitter-latex/bindings/rust/lib.rs +++ b/vendored_parsers/tree-sitter-latex/bindings/rust/lib.rs @@ -1,13 +1,15 @@ -//! This crate provides latex language support for the [tree-sitter][] parsing library. +//! This crate provides Latex language support for the [tree-sitter][] parsing library. //! //! Typically, you will use the [language][language func] function to add this language to a //! tree-sitter [Parser][], and then use the parser to parse some code: //! //! ``` -//! let code = ""; +//! let code = r#" +//! "#; //! let mut parser = tree_sitter::Parser::new(); -//! parser.set_language(tree_sitter_latex::language()).expect("Error loading latex grammar"); +//! parser.set_language(&tree_sitter_latex::language()).expect("Error loading Latex grammar"); //! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); //! ``` //! //! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html @@ -35,10 +37,10 @@ pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); // Uncomment these to include any queries that this grammar contains -// pub const HIGHLIGHTS_QUERY: &'static str = include_str!("../../queries/highlights.scm"); -// pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm"); -// pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); -// pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); +// 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 { @@ -46,7 +48,7 @@ mod tests { fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(super::language()) - .expect("Error loading latex language"); + .set_language(&super::language()) + .expect("Error loading Latex grammar"); } } diff --git a/vendored_parsers/tree-sitter-latex/bindings/swift/TreeSitterLatex/latex.h b/vendored_parsers/tree-sitter-latex/bindings/swift/TreeSitterLatex/latex.h index 9410f99ea..a7de76ee3 100644 --- a/vendored_parsers/tree-sitter-latex/bindings/swift/TreeSitterLatex/latex.h +++ b/vendored_parsers/tree-sitter-latex/bindings/swift/TreeSitterLatex/latex.h @@ -7,10 +7,10 @@ typedef struct TSLanguage TSLanguage; extern "C" { #endif -extern TSLanguage *tree_sitter_latex(); +const TSLanguage *tree_sitter_latex(void); #ifdef __cplusplus } #endif -#endif // TREE_SITTER_LATEX_H_ \ No newline at end of file +#endif // TREE_SITTER_LATEX_H_ diff --git a/vendored_parsers/tree-sitter-latex/grammar.js b/vendored_parsers/tree-sitter-latex/grammar.js index fb3a86756..303d312ee 100644 --- a/vendored_parsers/tree-sitter-latex/grammar.js +++ b/vendored_parsers/tree-sitter-latex/grammar.js @@ -15,20 +15,20 @@ const specialEnvironment = ({ rule, name, content, options }) => { seq( field('begin', alias($[beginRule], $.begin)), content($), - field('end', alias($[endRule], $.end)) + field('end', alias($[endRule], $.end)), ), [beginRule]: $ => seq( field('command', '\\begin'), field('name', alias($[groupRule], $.curly_group_text)), - options ? options($) : seq() + options ? options($) : seq(), ), [endRule]: $ => seq( field('command', '\\end'), - field('name', alias($[groupRule], $.curly_group_text)) + field('name', alias($[groupRule], $.curly_group_text)), ), [groupRule]: $ => seq('{', field('text', alias($[nameRule], $.text)), '}'), @@ -46,7 +46,13 @@ module.exports = grammar({ $._trivia_raw_env_verbatim, $._trivia_raw_env_listing, $._trivia_raw_env_minted, + $._trivia_raw_env_asy, + $._trivia_raw_env_asydef, $._trivia_raw_env_pycode, + $._trivia_raw_env_luacode, + $._trivia_raw_env_luacode_star, + $._trivia_raw_env_sagesilent, + $._trivia_raw_env_sageblock, ], word: $ => $.command_name, rules: { @@ -62,12 +68,12 @@ module.exports = grammar({ seq( field('begin', '\\iffalse'), field('comment', optional(alias($._trivia_raw_fi, $.comment))), - field('end', optional('\\fi')) + field('end', optional('\\fi')), ), //--- Content - _root_content: $ => choice($._section, $._flat_content), + _root_content: $ => choice($._section, $._paragraph, $._flat_content), _flat_content: $ => prec.right(choice($._text_with_env_content, '[', ']')), @@ -79,10 +85,15 @@ module.exports = grammar({ $.verbatim_environment, $.listing_environment, $.minted_environment, + $.asy_environment, + $.asydef_environment, $.pycode_environment, + $.luacode_environment, + $.sagesilent_environment, + $.sageblock_environment, $.generic_environment, $.math_environment, - $._text_content + $._text_content, ), _text_content: $ => @@ -93,13 +104,10 @@ module.exports = grammar({ $.block_comment, $._command, $.text, - $.displayed_equation, - $.inline_formula, - $.math_delimiter, - $.text_mode, + $._math_content, '(', - ')' - ) + ')', + ), ), //--- Sections @@ -112,10 +120,16 @@ module.exports = grammar({ repeat1($.section), repeat1($.subsection), repeat1($.subsubsection), + ), + ), + + _paragraph: $ => + prec.right( + choice( repeat1($.paragraph), repeat1($.subparagraph), - repeat1($.enum_item) - ) + repeat1($.enum_item), + ), ), _section_part: $ => @@ -126,10 +140,10 @@ module.exports = grammar({ seq( field( 'command', - choice('\\part', '\\part*', '\\addpart', '\\addpart*') + choice('\\part', '\\part*', '\\addpart', '\\addpart*'), ), - optional($._section_part) - ) + optional($._section_part), + ), ), part: $ => @@ -138,6 +152,7 @@ module.exports = grammar({ seq( $._part_declaration, repeat($._flat_content), + optional(prec.right(-1, $._paragraph)), optional( prec.right( choice( @@ -145,13 +160,10 @@ module.exports = grammar({ repeat1($.section), repeat1($.subsection), repeat1($.subsubsection), - repeat1($.paragraph), - repeat1($.subparagraph), - repeat1($.enum_item) - ) - ) - ) - ) + ), + ), + ), + ), ), _chapter_declaration: $ => @@ -159,10 +171,10 @@ module.exports = grammar({ seq( field( 'command', - choice('\\chapter', '\\chapter*', '\\addchap', '\\addchap*') + choice('\\chapter', '\\chapter*', '\\addchap', '\\addchap*'), ), - optional($._section_part) - ) + optional($._section_part), + ), ), chapter: $ => @@ -171,19 +183,17 @@ module.exports = grammar({ seq( $._chapter_declaration, repeat($._flat_content), + optional(prec.right(-1, $._paragraph)), optional( prec.right( choice( repeat1($.section), repeat1($.subsection), repeat1($.subsubsection), - repeat1($.paragraph), - repeat1($.subparagraph), - repeat1($.enum_item) - ) - ) - ) - ) + ), + ), + ), + ), ), _section_declaration: $ => @@ -191,10 +201,10 @@ module.exports = grammar({ seq( field( 'command', - choice('\\section', '\\section*', '\\addsec', '\\addsec*') + choice('\\section', '\\section*', '\\addsec', '\\addsec*'), ), - optional($._section_part) - ) + optional($._section_part), + ), ), section: $ => @@ -203,26 +213,19 @@ module.exports = grammar({ seq( $._section_declaration, repeat($._flat_content), + optional(prec.right(-1, $._paragraph)), optional( - prec.right( - choice( - repeat1($.subsection), - repeat1($.subsubsection), - repeat1($.paragraph), - repeat1($.subparagraph), - repeat1($.enum_item) - ) - ) - ) - ) + prec.right(choice(repeat1($.subsection), repeat1($.subsubsection))), + ), + ), ), _subsection_declaration: $ => prec.right( seq( field('command', choice('\\subsection', '\\subsection*')), - optional($._section_part) - ) + optional($._section_part), + ), ), subsection: $ => @@ -231,25 +234,17 @@ module.exports = grammar({ seq( $._subsection_declaration, repeat($._flat_content), - optional( - prec.right( - choice( - repeat1($.subsubsection), - repeat1($.paragraph), - repeat1($.subparagraph), - repeat1($.enum_item) - ) - ) - ) - ) + optional(prec.right(-1, $._paragraph)), + optional(prec.right(repeat1($.subsubsection))), + ), ), _subsubsection_declaration: $ => prec.right( seq( field('command', choice('\\subsubsection', '\\subsubsection*')), - optional($._section_part) - ) + optional($._section_part), + ), ), subsubsection: $ => @@ -258,24 +253,16 @@ module.exports = grammar({ seq( $._subsubsection_declaration, repeat($._flat_content), - optional( - prec.right( - choice( - repeat1($.paragraph), - repeat1($.subparagraph), - repeat1($.enum_item) - ) - ) - ) - ) + optional(prec.right(-1, $._paragraph)), + ), ), _paragraph_declaration: $ => prec.right( seq( field('command', choice('\\paragraph', '\\paragraph*')), - optional($._section_part) - ) + optional($._section_part), + ), ), paragraph: $ => @@ -285,17 +272,17 @@ module.exports = grammar({ $._paragraph_declaration, repeat($._flat_content), optional( - prec.right(choice(repeat1($.subparagraph), repeat1($.enum_item))) - ) - ) + prec.right(choice(repeat1($.subparagraph), repeat1($.enum_item))), + ), + ), ), _subparagraph_declaration: $ => prec.right( seq( field('command', choice('\\subparagraph', '\\subparagraph*')), - optional($._section_part) - ) + optional($._section_part), + ), ), subparagraph: $ => @@ -304,16 +291,16 @@ module.exports = grammar({ seq( $._subparagraph_declaration, repeat($._flat_content), - optional(prec.right(choice(repeat1($.enum_item)))) - ) + optional(prec.right(choice(repeat1($.enum_item)))), + ), ), _enum_itemdeclaration: $ => prec.right( seq( field('command', choice('\\item', '\\item*')), - field('label', optional($.brack_group_text)) - ) + field('label', optional($.brack_group_text)), + ), ), enum_item: $ => @@ -322,8 +309,7 @@ module.exports = grammar({ seq( $._enum_itemdeclaration, repeat($._flat_content), - optional(prec.right(choice())) - ) + ), ), //--- Group @@ -332,6 +318,9 @@ module.exports = grammar({ curly_group_text: $ => seq('{', field('text', $.text), '}'), + curly_group_spec: $ => + seq('{', repeat(choice($._text_content, '=')), '}'), + curly_group_text_list: $ => seq('{', sepBy(field('text', $.text), ','), '}'), @@ -340,6 +329,8 @@ module.exports = grammar({ curly_group_path_list: $ => seq('{', sepBy(field('path', $.path), ','), '}'), + curly_group_uri: $ => seq('{', field('uri', $.uri), '}'), + curly_group_command_name: $ => seq('{', field('command', $.command_name), '}'), @@ -357,9 +348,9 @@ module.exports = grammar({ '{', sepBy( alias(repeat1($._text_content), $.author), - alias('\\and', $.command_name) + alias('\\and', $.command_name), ), - '}' + '}', ), brack_group: $ => @@ -383,21 +374,26 @@ module.exports = grammar({ $.operator, $.word, $.placeholder, + $.delimiter, $.block_comment, $._command, $.superscript, - $.subscript - ) - ) - ) + $.subscript, + ), + ), + ), ), - word: $ => /[^\s\\%\{\},\$\[\]\(\)=\#_\^\-\+\/\*]+/, + word: $ => /[^\s\\%\{\},\$\[\]\(\)=\#&_\^\-\+\/\*]+/, + + placeholder: $ => /#+\d/, - placeholder: $ => /#\d/, + delimiter: $ => /&/, path: $ => /[^\*\"\[\]:;,\|\{\}<>]+/, + uri: $ => /[^\[\]\{\}]+/, + argc: $ => /\d/, glob_pattern: $ => repeat1($._glob_pattern_fragment), @@ -405,21 +401,23 @@ module.exports = grammar({ _glob_pattern_fragment: $ => choice( seq('{', repeat($._glob_pattern_fragment), '}'), - /[^\"\[\]:;\|\{\}<>]+/ + /[^\"\[\]:;\|\{\}<>]+/, ), operator: $ => choice('+', '-', '*', '/', '<', '>', '!', '|', ':', "'"), + letter: $ => /[^\\%\{\}\$\#_\^]/, + subscript: $ => seq( '_', - field('subscript', choice($.curly_group, $.word, $.generic_command)) + field('subscript', choice($.curly_group, $.letter, $.command_name)), ), superscript: $ => seq( '^', - field('superscript', choice($.curly_group, $.word, $.generic_command)) + field('superscript', choice($.curly_group, $.letter, $.command_name)), ), //--- Key / Value @@ -431,14 +429,48 @@ module.exports = grammar({ //--- Math + _math_content: $ => + choice( + $.displayed_equation, + $.inline_formula, + $.math_delimiter, + $.text_mode, + ), + displayed_equation: $ => prec.left( - seq(choice('$$', '\\['), repeat($._root_content), choice('$$', '\\]')) + seq(choice('$$', '\\['), repeat($._root_content), choice('$$', '\\]')), ), inline_formula: $ => prec.left( - seq(choice('$', '\\('), repeat($._root_content), choice('$', '\\)')) + seq(choice('$', '\\('), repeat($._root_content), choice('$', '\\)')), + ), + + _math_delimiter_part: $ => + choice($.word, $.command_name, '[', ']', '(', ')', '|'), + + math_delimiter: $ => + prec.left( + seq( + field( + 'left_command', + choice('\\left', '\\bigl', '\\Bigl', '\\biggl', '\\Biggl'), + ), + field('left_delimiter', $._math_delimiter_part), + repeat($._root_content), + field( + 'right_command', + choice('\\right', '\\bigr', '\\Bigr', '\\biggr', '\\Biggr'), + ), + field('right_delimiter', $._math_delimiter_part), + ), + ), + + text_mode: $ => + seq( + field('command', choice('\\text', '\\intertext', '\\shortintertext')), + field('content', $.curly_group), ), //--- Environments @@ -448,20 +480,20 @@ module.exports = grammar({ seq( field('command', '\\begin'), field('name', $.curly_group_text), - field('options', optional($.brack_group)) - ) + field('options', optional($.brack_group)), + ), ), end: $ => prec.right( - seq(field('command', '\\end'), field('name', $.curly_group_text)) + seq(field('command', '\\end'), field('name', $.curly_group_text)), ), generic_environment: $ => seq( field('begin', $.begin), repeat($._root_content), - field('end', $.end) + field('end', $.end), ), //--- Trivia environments @@ -498,10 +530,25 @@ module.exports = grammar({ options: $ => seq( field('options', optional($.brack_group_key_value)), - field('language', $.curly_group_text) + field('language', $.curly_group_text), ), }), + ...specialEnvironment({ + rule: 'asy_environment', + name: 'asy', + content: $ => field('code', alias($._trivia_raw_env_asy, $.source_code)), + options: undefined, + }), + + ...specialEnvironment({ + rule: 'asydef_environment', + name: 'asydef', + content: $ => + field('code', alias($._trivia_raw_env_asydef, $.source_code)), + options: undefined, + }), + ...specialEnvironment({ rule: 'pycode_environment', name: 'pycode', @@ -510,9 +557,45 @@ module.exports = grammar({ options: undefined, }), + luacode_environment: $ => + choice($._luacode_environment, $._luacode_environment_star), + + ...specialEnvironment({ + rule: '_luacode_environment', + name: 'luacode', + content: $ => + field('code', alias($._trivia_raw_env_luacode, $.source_code)), + options: undefined, + }), + + ...specialEnvironment({ + rule: '_luacode_environment_star', + name: 'luacode*', + content: $ => + field('code', alias($._trivia_raw_env_luacode_star, $.source_code)), + options: undefined, + }), + + ...specialEnvironment({ + rule: 'sagesilent_environment', + name: 'sagesilent', + content: $ => + field('code', alias($._trivia_raw_env_sagesilent, $.source_code)), + options: undefined, + }), + + ...specialEnvironment({ + rule: 'sageblock_environment', + name: 'sageblock', + content: $ => + field('code', alias($._trivia_raw_env_sageblock, $.source_code)), + options: undefined, + }), + ...specialEnvironment({ rule: 'math_environment', name: choice( + 'math', 'displaymath', 'displaymath*', 'equation', @@ -523,16 +606,22 @@ module.exports = grammar({ 'eqnarray*', 'align', 'align*', + 'aligned', + 'aligned*', 'array', 'array*', 'split', 'split*', 'alignat', 'alignat*', + 'alignedat', + 'alignedat*', 'gather', 'gather*', + 'gathered', + 'gathered*', 'flalign', - 'flalign*' + 'flalign*', ), content: $ => repeat($._flat_content), options: undefined, @@ -548,6 +637,7 @@ module.exports = grammar({ $.class_include, $.latex_include, $.biblatex_include, + $.bibstyle_include, $.bibtex_include, $.graphics_include, $.svg_include, @@ -574,15 +664,16 @@ module.exports = grammar({ $.color_set_definition, $.color_reference, $.tikz_library_import, - $.generic_command + $.hyperlink, + $.generic_command, ), generic_command: $ => prec.right( seq( field('command', $.command_name), - repeat(field('arg', $.curly_group)) - ) + repeat(field('arg', $.curly_group)), + ), ), command_name: $ => /\\([^\r\n]|[@a-zA-Z]+\*?)?/, @@ -591,76 +682,83 @@ module.exports = grammar({ seq( field('command', '\\title'), field('options', optional($.brack_group)), - field('text', $.curly_group) + field('text', $.curly_group), ), author_declaration: $ => seq( field('command', '\\author'), - field('authors', $.curly_group_author_list) + field('options', optional($.brack_group)), + field('authors', $.curly_group_author_list), ), package_include: $ => seq( field('command', choice('\\usepackage', '\\RequirePackage')), field('options', optional($.brack_group_key_value)), - field('paths', $.curly_group_path_list) + field('paths', $.curly_group_path_list), ), class_include: $ => seq( field('command', '\\documentclass'), field('options', optional($.brack_group_key_value)), - field('path', $.curly_group_path) + field('path', $.curly_group_path), ), latex_include: $ => seq( field( 'command', - choice('\\include', '\\subfileinclude', '\\input', '\\subfile') + choice('\\include', '\\subfileinclude', '\\input', '\\subfile'), ), - field('path', $.curly_group_path) + field('path', $.curly_group_path), ), biblatex_include: $ => seq( '\\addbibresource', field('options', optional($.brack_group_key_value)), - field('glob', $.curly_group_glob_pattern) + field('glob', $.curly_group_glob_pattern), + ), + + bibstyle_include: $ => + seq( + field('command', '\\bibliographystyle'), + field('path', $.curly_group_path), ), bibtex_include: $ => seq( field('command', '\\bibliography'), - field('path', $.curly_group_path) + field('paths', $.curly_group_path_list), ), graphics_include: $ => seq( field('command', '\\includegraphics'), field('options', optional($.brack_group_key_value)), - field('path', $.curly_group_path) + field('path', $.curly_group_path), ), svg_include: $ => seq( field('command', '\\includesvg'), field('options', optional($.brack_group_key_value)), - field('path', $.curly_group_path) + field('path', $.curly_group_path), ), inkscape_include: $ => seq( field('command', '\\includeinkscape'), field('options', optional($.brack_group_key_value)), - field('path', $.curly_group_path) + field('path', $.curly_group_path), ), verbatim_include: $ => seq( field('command', choice('\\verbatiminput', '\\VerbatimInput')), - field('path', $.curly_group_path) + field('path', $.curly_group_path), ), import_include: $ => @@ -673,18 +771,18 @@ module.exports = grammar({ '\\inputfrom', '\\subimportfrom', '\\includefrom', - '\\subincludefrom' - ) + '\\subincludefrom', + ), ), field('directory', $.curly_group_path), - field('file', $.curly_group_path) + field('file', $.curly_group_path), ), caption: $ => seq( field('command', '\\caption'), field('short', optional($.brack_group)), - field('long', $.curly_group) + field('long', $.curly_group), ), citation: $ => @@ -700,6 +798,10 @@ module.exports = grammar({ '\\citep', '\\citet*', '\\citep*', + '\\citeA', + '\\citeR', + '\\citeS', + '\\citeyearR', '\\citeauthor', '\\citeauthor*', '\\Citeauthor', @@ -747,16 +849,16 @@ module.exports = grammar({ '\\Notecite', '\\pnotecite', '\\Pnotecite', - '\\fnotecite' - ) + '\\fnotecite', + ), ), optional( seq( field('prenote', $.brack_group), - field('postnote', optional($.brack_group)) - ) + field('postnote', optional($.brack_group)), + ), ), - field('keys', $.curly_group_text_list) + field('keys', $.curly_group_text_list), ), label_definition: $ => @@ -772,11 +874,17 @@ module.exports = grammar({ '\\vref', '\\Vref', '\\autoref', + '\\autoref*', '\\pageref', + '\\pageref*', + '\\autopageref', + '\\autopageref*', '\\cref', - '\\Cref', '\\cref*', + '\\Cref', '\\Cref*', + '\\cpageref', + '\\Cpageref', '\\namecref', '\\nameCref', '\\lcnamecref', @@ -784,30 +892,42 @@ module.exports = grammar({ '\\nameCrefs', '\\lcnamecrefs', '\\labelcref', - '\\labelcpageref' - ) + '\\labelcref*', + '\\labelcpageref', + '\\labelcpageref*', + ), ), - field('names', $.curly_group_text_list) + field('names', $.curly_group_text_list), ), label_reference_range: $ => seq( field( 'command', - choice('\\crefrange', '\\crefrange*', '\\Crefrange', '\\Crefrange*') + choice( + '\\crefrange', + '\\crefrange*', + '\\Crefrange', + '\\Crefrange*', + '\\cpagerefrange', + '\\Cpagerefrange', + ), ), field('from', $.curly_group_text), - field('to', $.curly_group_text) + field('to', $.curly_group_text), ), label_number: $ => seq( field('command', '\\newlabel'), field('name', $.curly_group_text), - field('number', $.curly_group) + field('number', $.curly_group), ), new_command_definition: $ => + choice($._new_command_definition, $._newer_command_definition, $._new_command_copy), + + _new_command_definition: $ => seq( field( 'command', @@ -816,10 +936,29 @@ module.exports = grammar({ '\\newcommand*', '\\renewcommand', '\\renewcommand*', + '\\providecommand', + '\\providecommand*', '\\DeclareRobustCommand', '\\DeclareRobustCommand*', '\\DeclareMathOperator', '\\DeclareMathOperator*', + ), + ), + field('declaration', choice($.curly_group_command_name, $.command_name)), + optional( + seq( + field('argc', $.brack_group_argc), + field('default', optional($.brack_group)), + ), + ), + field('implementation', $.curly_group), + ), + + _newer_command_definition: $ => + seq( + field( + 'command', + choice( '\\NewDocumentCommand', '\\RenewDocumentCommand', '\\ProvideDocumentCommand', @@ -827,68 +966,40 @@ module.exports = grammar({ '\\NewExpandableDocumentCommand', '\\RenewExpandableDocumentCommand', '\\ProvideExpandableDocumentCommand', - '\\DeclareExpandableDocumentCommand' - ) + '\\DeclareExpandableDocumentCommand', + ), ), - field('declaration', $.curly_group_command_name), - optional( - seq( - field('argc', $.brack_group_argc), - field('default', optional($.brack_group)) - ) + field('declaration', choice($.curly_group_command_name, $.command_name)), + field('spec', $.curly_group_spec), + field('implementation', $.curly_group), + ), + + _new_command_copy: $ => + seq( + field( + 'command', + choice( + '\\NewCommandCopy', + '\\RenewCommandCopy', + '\\DeclareCommandCopy', + ), ), - field('implementation', $.curly_group) + field('declaration', choice($.curly_group_command_name, $.command_name)), + field('implementation', $.curly_group_command_name), ), old_command_definition: $ => - seq(field('command', '\\def'), field('declaration', $.command_name)), + seq( + field('command', choice('\\def', '\\gdef', '\\edef', '\\xdef')), + field('declaration', $.command_name) + ), let_command_definition: $ => seq( - field('command', '\\let'), + field('command', choice('\\let', '\\glet')), field('declaration', $.command_name), optional('='), - field('implementation', $.command_name) - ), - - _math_delimiter_part: $ => - choice($.word, $.command_name, '[', ']', '(', ')', '|'), - - math_delimiter: $ => - prec.left( - seq( - field( - 'left_command', - choice( - '\\left', - '\\big', - '\\Big', - '\\bigg', - '\\Bigg', - '\\bigl', - '\\Bigl', - '\\biggl', - '\\Biggl' - ) - ), - field('left_delimiter', $._math_delimiter_part), - repeat($._root_content), - field( - 'right_command', - choice( - '\\right', - '\\big', - '\\Big', - '\\bigg', - '\\Bigg', - '\\bigr', - '\\Bigr', - '\\biggr', - '\\Biggr' - ) - ), - field('right_delimiter', $._math_delimiter_part) - ) + field('implementation', $.command_name), ), paired_delimiter_definition: $ => @@ -896,40 +1007,70 @@ module.exports = grammar({ seq( field( 'command', - choice('\\DeclarePairedDelimiter', '\\DeclarePairedDelimiterX') + choice('\\DeclarePairedDelimiter', '\\DeclarePairedDelimiterX'), ), field('declaration', $.curly_group_command_name), field('argc', optional($.brack_group_argc)), field('left', choice($.curly_group_impl, $.command_name)), field('right', choice($.curly_group_impl, $.command_name)), - field('body', optional($.curly_group)) - ) + field('body', optional($.curly_group)), + ), ), environment_definition: $ => + choice($._environment_definition, $._newer_environment_definition, $._new_environment_copy), + + _environment_definition: $ => seq( field( 'command', choice( '\\newenvironment', '\\renewenvironment', + ), + ), + field('name', $.curly_group_text), + field('argc', optional($.brack_group_argc)), + field('begin', $.curly_group_impl), + field('end', $.curly_group_impl), + ), + + _newer_environment_definition: $ => + seq( + field( + 'command', + choice( '\\NewDocumentEnvironment', '\\RenewDocumentEnvironment', '\\ProvideDocumentEnvironment', - '\\DeclareDocumentEnvironment' - ) + '\\DeclareDocumentEnvironment', + ), ), field('name', $.curly_group_text), - field('argc', optional($.brack_group_argc)), + field('spec', $.curly_group_spec), field('begin', $.curly_group_impl), - field('end', $.curly_group_impl) + field('end', $.curly_group_impl), + ), + + _new_environment_copy: $ => + seq( + field( + 'command', + choice( + '\\NewEnvironmentCopy', + '\\RenewEnvironmentCopy', + '\\DeclareEnvironmentCopy', + ), + ), + field('name', $.curly_group_text), + field('name', $.curly_group_text), ), glossary_entry_definition: $ => seq( field('command', '\\newglossaryentry'), field('name', $.curly_group_text), - field('options', $.curly_group_key_value) + field('options', $.curly_group_key_value), ), glossary_entry_reference: $ => @@ -982,11 +1123,11 @@ module.exports = grammar({ '\\GLSuserv', '\\glsuservi', '\\Glsuservi', - '\\GLSuservi' - ) + '\\GLSuservi', + ), ), field('options', optional($.brack_group_key_value)), - field('name', $.curly_group_text) + field('name', $.curly_group_text), ), acronym_definition: $ => @@ -995,7 +1136,7 @@ module.exports = grammar({ field('options', optional($.brack_group_key_value)), field('name', $.curly_group_text), field('short', $.curly_group), - field('long', $.curly_group) + field('long', $.curly_group), ), acronym_reference: $ => @@ -1045,11 +1186,11 @@ module.exports = grammar({ '\\glsentryshortpl', '\\Glsentryshortpl', '\\glsentryfullpl', - '\\Glsentryfullpl' - ) + '\\Glsentryfullpl', + ), ), field('options', optional($.brack_group_key_value)), - field('name', $.curly_group_text) + field('name', $.curly_group_text), ), theorem_definition: $ => @@ -1061,24 +1202,24 @@ module.exports = grammar({ '\\newtheorem', '\\newtheorem*', '\\declaretheorem', - '\\declaretheorem*' - ) + '\\declaretheorem*', + ), ), optional(field('options', $.brack_group_key_value)), - field('name', $.curly_group_text), + field('name', $.curly_group_text_list), optional( choice( seq( field('title', $.curly_group), - field('counter', optional($.brack_group_text)) + field('counter', optional($.brack_group_text)), ), seq( field('counter', $.brack_group_text), - field('title', $.curly_group) - ) - ) - ) - ) + field('title', $.curly_group), + ), + ), + ), + ), ), color_definition: $ => @@ -1087,7 +1228,7 @@ module.exports = grammar({ optional($.brack_group_text), field('name', $.curly_group_text), field('model', $.curly_group_text), - field('spec', $.curly_group) + field('spec', $.curly_group), ), color_set_definition: $ => @@ -1097,28 +1238,40 @@ module.exports = grammar({ field('model', $.curly_group_text_list), field('head', $.curly_group), field('tail', $.curly_group), - field('spec', $.curly_group) + field('spec', $.curly_group), ), color_reference: $ => - seq( - field( - 'command', - choice('\\color', '\\colorbox', '\\textcolor', '\\pagecolor') + prec.right( + seq( + field( + 'command', + choice('\\color', '\\pagecolor', '\\textcolor', '\\mathcolor', '\\colorbox'), + ), + choice( + field('name', $.curly_group_text), + seq( + field('model', $.brack_group_text), + field('spec', $.curly_group), + ), + ), + optional(field('text', $.curly_group)), ), - field('name', $.curly_group_text) ), tikz_library_import: $ => seq( field('command', choice('\\usepgflibrary', '\\usetikzlibrary')), - field('paths', $.curly_group_path_list) + field('paths', $.curly_group_path_list), ), - text_mode: $ => - seq( - field('command', choice('\\text', '\\intertext', 'shortintertext')), - field('content', $.curly_group) + hyperlink: $ => + prec.right( + seq( + field('command', choice('\\url', '\\href')), + field('uri', $.curly_group_uri), + field('label', optional($.curly_group)), + ), ), }, }); diff --git a/vendored_parsers/tree-sitter-latex/package-lock.json b/vendored_parsers/tree-sitter-latex/package-lock.json index 174765c53..4cc87d3e9 100644 --- a/vendored_parsers/tree-sitter-latex/package-lock.json +++ b/vendored_parsers/tree-sitter-latex/package-lock.json @@ -1,68 +1,639 @@ { "name": "@pfoerster/tree-sitter-latex", - "version": "0.3.0", + "version": "0.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@pfoerster/tree-sitter-latex", - "version": "0.3.0", + "version": "0.4.0", + "hasInstallScript": true, "license": "MIT", "dependencies": { - "nan": "^2.16.0" + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" }, "devDependencies": { - "prettier": "^2.6.2", - "tree-sitter-cli": "^0.20.8" + "prebuildify": "^6.0.0", + "prettier": "^3.0.3", + "tree-sitter-cli": "^0.24.1" + }, + "peerDependencies": { + "tree-sitter": "^0.21.1" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node_modules/node-abi": { + "version": "3.57.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.57.0.tgz", + "integrity": "sha512-Dp+A9JWxRaKuHP35H77I4kCKesDy5HUDEmScia2FyncMTOXASMyg251F5PhFoDA5uqBrDDffiLpbqnrZmNXW+g==", + "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.2.2.tgz", + "integrity": "sha512-9emqXAKhVoNrQ792nLI/wpzPpJ/bj/YXxW0CvAau1+RdGBcCRF1Dmz7719zgVsQNrzHl9Tzn3ImZ4qWFarWL0A==", + "engines": { + "node": "^18 || ^20 || >= 21" } }, - "node_modules/nan": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", - "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==" + "node_modules/node-gyp-build": { + "version": "4.8.2", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz", + "integrity": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/npm-run-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", + "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/prebuildify": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.1.tgz", + "integrity": "sha512-8Y2oOOateom/s8dNBsGIcnm6AxPmLH4/nanQzL5lQMU+sC0CMhzARZHizwr36pUPLdvBnOkCNQzxg4djuFSgIw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5", + "mkdirp-classic": "^0.5.3", + "node-abi": "^3.3.0", + "npm-run-path": "^3.1.0", + "pump": "^3.0.0", + "tar-fs": "^2.1.0" + }, + "bin": { + "prebuildify": "bin.js" + } }, "node_modules/prettier": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz", - "integrity": "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", "dev": true, "bin": { - "prettier": "bin-prettier.js" + "prettier": "bin/prettier.cjs" }, "engines": { - "node": ">=10.13.0" + "node": ">=14" }, "funding": { "url": "https://github.com/prettier/prettier?sponsor=1" } }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tree-sitter": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz", + "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==", + "hasInstallScript": true, + "peer": true, + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" + } + }, "node_modules/tree-sitter-cli": { - "version": "0.20.8", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.8.tgz", - "integrity": "sha512-XjTcS3wdTy/2cc/ptMLc/WRyOLECRYcMTrSWyhZnj1oGSOWbHLTklgsgRICU3cPfb0vy+oZCC33M43u6R1HSCA==", + "version": "0.24.4", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.24.4.tgz", + "integrity": "sha512-I4sdtDidnujYL0tR0Re9q0UJt5KrITf2m+GMHjT4LH6IC6kpM6eLzSR7RS36Z4t5ZQBjDHvg2QUJHAWQi3P2TA==", "dev": true, "hasInstallScript": true, "bin": { "tree-sitter": "cli.js" + }, + "engines": { + "node": ">=12.0.0" } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } }, "dependencies": { - "nan": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", - "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==" + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node-abi": { + "version": "3.57.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.57.0.tgz", + "integrity": "sha512-Dp+A9JWxRaKuHP35H77I4kCKesDy5HUDEmScia2FyncMTOXASMyg251F5PhFoDA5uqBrDDffiLpbqnrZmNXW+g==", + "dev": true, + "requires": { + "semver": "^7.3.5" + } + }, + "node-addon-api": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.2.2.tgz", + "integrity": "sha512-9emqXAKhVoNrQ792nLI/wpzPpJ/bj/YXxW0CvAau1+RdGBcCRF1Dmz7719zgVsQNrzHl9Tzn3ImZ4qWFarWL0A==" + }, + "node-gyp-build": { + "version": "4.8.2", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz", + "integrity": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==" + }, + "npm-run-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", + "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "prebuildify": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.1.tgz", + "integrity": "sha512-8Y2oOOateom/s8dNBsGIcnm6AxPmLH4/nanQzL5lQMU+sC0CMhzARZHizwr36pUPLdvBnOkCNQzxg4djuFSgIw==", + "dev": true, + "requires": { + "minimist": "^1.2.5", + "mkdirp-classic": "^0.5.3", + "node-abi": "^3.3.0", + "npm-run-path": "^3.1.0", + "pump": "^3.0.0", + "tar-fs": "^2.1.0" + } }, "prettier": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz", - "integrity": "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", "dev": true }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "requires": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "requires": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + } + }, + "tree-sitter": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz", + "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==", + "peer": true, + "requires": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" + } + }, "tree-sitter-cli": { - "version": "0.20.8", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.20.8.tgz", - "integrity": "sha512-XjTcS3wdTy/2cc/ptMLc/WRyOLECRYcMTrSWyhZnj1oGSOWbHLTklgsgRICU3cPfb0vy+oZCC33M43u6R1HSCA==", + "version": "0.24.4", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.24.4.tgz", + "integrity": "sha512-I4sdtDidnujYL0tR0Re9q0UJt5KrITf2m+GMHjT4LH6IC6kpM6eLzSR7RS36Z4t5ZQBjDHvg2QUJHAWQi3P2TA==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true } } diff --git a/vendored_parsers/tree-sitter-latex/package.json b/vendored_parsers/tree-sitter-latex/package.json index ad19df75c..c5c095f3f 100644 --- a/vendored_parsers/tree-sitter-latex/package.json +++ b/vendored_parsers/tree-sitter-latex/package.json @@ -1,12 +1,15 @@ { "name": "@pfoerster/tree-sitter-latex", - "version": "0.3.0", + "version": "0.4.0", "description": "LaTeX grammar for the tree-sitter parsing library", "main": "bindings/node", + "types": "bindings/node", "scripts": { "generate": "tree-sitter generate", "test": "tree-sitter test", - "test:update": "tree-sitter test --update" + "test:update": "tree-sitter test --update", + "install": "node-gyp-build", + "prebuildify": "prebuildify --napi --strip" }, "repository": { "type": "git", @@ -17,6 +20,14 @@ "latex", "parser" ], + "files": [ + "grammar.js", + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "src/**" + ], "author": "Patrick Förster ", "license": "MIT", "bugs": { @@ -24,11 +35,21 @@ }, "homepage": "https://github.com/latex-lsp/tree-sitter-latex#readme", "dependencies": { - "nan": "^2.16.0" + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" + }, + "peerDependencies": { + "tree-sitter": "^0.21.1" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } }, "devDependencies": { - "prettier": "^2.6.2", - "tree-sitter-cli": "^0.20.8" + "prettier": "^3.0.3", + "tree-sitter-cli": "^0.24.1", + "prebuildify": "^6.0.0" }, "tree-sitter": [ { diff --git a/vendored_parsers/tree-sitter-latex/pyproject.toml b/vendored_parsers/tree-sitter-latex/pyproject.toml new file mode 100644 index 000000000..480b7597e --- /dev/null +++ b/vendored_parsers/tree-sitter-latex/pyproject.toml @@ -0,0 +1,29 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "tree-sitter-latex" +description = "Latex grammar for tree-sitter" +version = "0.4.0" +keywords = ["incremental", "parsing", "tree-sitter", "latex"] +classifiers = [ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Compilers", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed", +] +requires-python = ">=3.8" +license.text = "MIT" +readme = "README.md" + +[project.urls] +Homepage = "https://github.com/tree-sitter/tree-sitter-latex" + +[project.optional-dependencies] +core = ["tree-sitter~=0.21"] + +[tool.cibuildwheel] +build = "cp38-*" +build-frontend = "build" diff --git a/vendored_parsers/tree-sitter-latex/setup.py b/vendored_parsers/tree-sitter-latex/setup.py new file mode 100644 index 000000000..a75675dd7 --- /dev/null +++ b/vendored_parsers/tree-sitter-latex/setup.py @@ -0,0 +1,57 @@ +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_latex", "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 = "cp38", "abi3" + return python, abi, platform + + +setup( + packages=find_packages("bindings/python"), + package_dir={"": "bindings/python"}, + package_data={ + "tree_sitter_latex": ["*.pyi", "py.typed"], + "tree_sitter_latex.queries": ["*.scm"], + }, + ext_package="tree_sitter_latex", + ext_modules=[ + Extension( + name="_binding", + sources=[ + "bindings/python/tree_sitter_latex/binding.c", + "src/parser.c", + "src/scanner.c", + ], + extra_compile_args=( + ["-std=c11"] if system() != 'Windows' else [] + ), + define_macros=[ + ("Py_LIMITED_API", "0x03080000"), + ("PY_SSIZE_T_CLEAN", None) + ], + include_dirs=["src"], + py_limited_api=True, + ) + ], + cmdclass={ + "build": Build, + "bdist_wheel": BdistWheel + }, + zip_safe=False +) diff --git a/vendored_parsers/tree-sitter-latex/src/grammar.json b/vendored_parsers/tree-sitter-latex/src/grammar.json index 407924f06..a2ebfe26d 100644 --- a/vendored_parsers/tree-sitter-latex/src/grammar.json +++ b/vendored_parsers/tree-sitter-latex/src/grammar.json @@ -74,6 +74,10 @@ "type": "SYMBOL", "name": "_section" }, + { + "type": "SYMBOL", + "name": "_paragraph" + }, { "type": "SYMBOL", "name": "_flat_content" @@ -128,10 +132,30 @@ "type": "SYMBOL", "name": "minted_environment" }, + { + "type": "SYMBOL", + "name": "asy_environment" + }, + { + "type": "SYMBOL", + "name": "asydef_environment" + }, { "type": "SYMBOL", "name": "pycode_environment" }, + { + "type": "SYMBOL", + "name": "luacode_environment" + }, + { + "type": "SYMBOL", + "name": "sagesilent_environment" + }, + { + "type": "SYMBOL", + "name": "sageblock_environment" + }, { "type": "SYMBOL", "name": "generic_environment" @@ -170,19 +194,7 @@ }, { "type": "SYMBOL", - "name": "displayed_equation" - }, - { - "type": "SYMBOL", - "name": "inline_formula" - }, - { - "type": "SYMBOL", - "name": "math_delimiter" - }, - { - "type": "SYMBOL", - "name": "text_mode" + "name": "_math_content" }, { "type": "STRING", @@ -235,7 +247,16 @@ "type": "SYMBOL", "name": "subsubsection" } - }, + } + ] + } + }, + "_paragraph": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "CHOICE", + "members": [ { "type": "REPEAT1", "content": { @@ -352,6 +373,22 @@ "name": "_flat_content" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_RIGHT", + "value": -1, + "content": { + "type": "SYMBOL", + "name": "_paragraph" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -388,27 +425,6 @@ "type": "SYMBOL", "name": "subsubsection" } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "paragraph" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "subparagraph" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "enum_item" - } } ] } @@ -484,6 +500,22 @@ "name": "_flat_content" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_RIGHT", + "value": -1, + "content": { + "type": "SYMBOL", + "name": "_paragraph" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -513,27 +545,6 @@ "type": "SYMBOL", "name": "subsubsection" } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "paragraph" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "subparagraph" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "enum_item" - } } ] } @@ -609,6 +620,22 @@ "name": "_flat_content" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_RIGHT", + "value": -1, + "content": { + "type": "SYMBOL", + "name": "_paragraph" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -631,27 +658,6 @@ "type": "SYMBOL", "name": "subsubsection" } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "paragraph" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "subparagraph" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "enum_item" - } } ] } @@ -719,6 +725,22 @@ "name": "_flat_content" } }, + { + "type": "CHOICE", + "members": [ + { + "type": "PREC_RIGHT", + "value": -1, + "content": { + "type": "SYMBOL", + "name": "_paragraph" + } + }, + { + "type": "BLANK" + } + ] + }, { "type": "CHOICE", "members": [ @@ -726,37 +748,11 @@ "type": "PREC_RIGHT", "value": 0, "content": { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "subsubsection" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "paragraph" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "subparagraph" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "enum_item" - } - } - ] + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "subsubsection" + } } }, { @@ -827,32 +823,10 @@ "members": [ { "type": "PREC_RIGHT", - "value": 0, + "value": -1, "content": { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "paragraph" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "subparagraph" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "enum_item" - } - } - ] + "type": "SYMBOL", + "name": "_paragraph" } }, { @@ -1092,22 +1066,6 @@ "type": "SYMBOL", "name": "_flat_content" } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [] - } - }, - { - "type": "BLANK" - } - ] } ] } @@ -1153,6 +1111,35 @@ } ] }, + "curly_group_spec": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_text_content" + }, + { + "type": "STRING", + "value": "=" + } + ] + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, "curly_group_text_list": { "type": "SEQ", "members": [ @@ -1282,7 +1269,7 @@ } ] }, - "curly_group_command_name": { + "curly_group_uri": { "type": "SEQ", "members": [ { @@ -1291,7 +1278,28 @@ }, { "type": "FIELD", - "name": "command", + "name": "uri", + "content": { + "type": "SYMBOL", + "name": "uri" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "curly_group_command_name": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "FIELD", + "name": "command", "content": { "type": "SYMBOL", "name": "command_name" @@ -1634,6 +1642,10 @@ "type": "SYMBOL", "name": "placeholder" }, + { + "type": "SYMBOL", + "name": "delimiter" + }, { "type": "SYMBOL", "name": "block_comment" @@ -1657,16 +1669,24 @@ }, "word": { "type": "PATTERN", - "value": "[^\\s\\\\%\\{\\},\\$\\[\\]\\(\\)=\\#_\\^\\-\\+\\/\\*]+" + "value": "[^\\s\\\\%\\{\\},\\$\\[\\]\\(\\)=\\#&_\\^\\-\\+\\/\\*]+" }, "placeholder": { "type": "PATTERN", - "value": "#\\d" + "value": "#+\\d" + }, + "delimiter": { + "type": "PATTERN", + "value": "&" }, "path": { "type": "PATTERN", "value": "[^\\*\\\"\\[\\]:;,\\|\\{\\}<>]+" }, + "uri": { + "type": "PATTERN", + "value": "[^\\[\\]\\{\\}]+" + }, "argc": { "type": "PATTERN", "value": "\\d" @@ -1752,6 +1772,10 @@ } ] }, + "letter": { + "type": "PATTERN", + "value": "[^\\\\%\\{\\}\\$\\#_\\^]" + }, "subscript": { "type": "SEQ", "members": [ @@ -1771,11 +1795,11 @@ }, { "type": "SYMBOL", - "name": "word" + "name": "letter" }, { "type": "SYMBOL", - "name": "generic_command" + "name": "command_name" } ] } @@ -1801,11 +1825,11 @@ }, { "type": "SYMBOL", - "name": "word" + "name": "letter" }, { "type": "SYMBOL", - "name": "generic_command" + "name": "command_name" } ] } @@ -1866,6 +1890,27 @@ ] } }, + "_math_content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "displayed_equation" + }, + { + "type": "SYMBOL", + "name": "inline_formula" + }, + { + "type": "SYMBOL", + "name": "math_delimiter" + }, + { + "type": "SYMBOL", + "name": "text_mode" + } + ] + }, "displayed_equation": { "type": "PREC_LEFT", "value": 0, @@ -1950,6 +1995,163 @@ ] } }, + "_math_delimiter_part": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "word" + }, + { + "type": "SYMBOL", + "name": "command_name" + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": "|" + } + ] + }, + "math_delimiter": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left_command", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\left" + }, + { + "type": "STRING", + "value": "\\bigl" + }, + { + "type": "STRING", + "value": "\\Bigl" + }, + { + "type": "STRING", + "value": "\\biggl" + }, + { + "type": "STRING", + "value": "\\Biggl" + } + ] + } + }, + { + "type": "FIELD", + "name": "left_delimiter", + "content": { + "type": "SYMBOL", + "name": "_math_delimiter_part" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_root_content" + } + }, + { + "type": "FIELD", + "name": "right_command", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\right" + }, + { + "type": "STRING", + "value": "\\bigr" + }, + { + "type": "STRING", + "value": "\\Bigr" + }, + { + "type": "STRING", + "value": "\\biggr" + }, + { + "type": "STRING", + "value": "\\Biggr" + } + ] + } + }, + { + "type": "FIELD", + "name": "right_delimiter", + "content": { + "type": "SYMBOL", + "name": "_math_delimiter_part" + } + } + ] + } + }, + "text_mode": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\text" + }, + { + "type": "STRING", + "value": "\\intertext" + }, + { + "type": "STRING", + "value": "\\shortintertext" + } + ] + } + }, + { + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "curly_group" + } + } + ] + }, "begin": { "type": "PREC_RIGHT", "value": 0, @@ -2645,7 +2847,7 @@ } ] }, - "pycode_environment": { + "asy_environment": { "type": "SEQ", "members": [ { @@ -2655,7 +2857,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_pycode_environment_begin" + "name": "_asy_environment_begin" }, "named": true, "value": "begin" @@ -2668,7 +2870,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_trivia_raw_env_pycode" + "name": "_trivia_raw_env_asy" }, "named": true, "value": "source_code" @@ -2681,7 +2883,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_pycode_environment_end" + "name": "_asy_environment_end" }, "named": true, "value": "end" @@ -2689,7 +2891,7 @@ } ] }, - "_pycode_environment_begin": { + "_asy_environment_begin": { "type": "SEQ", "members": [ { @@ -2707,7 +2909,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_pycode_environment_group" + "name": "_asy_environment_group" }, "named": true, "value": "curly_group_text" @@ -2719,7 +2921,7 @@ } ] }, - "_pycode_environment_end": { + "_asy_environment_end": { "type": "SEQ", "members": [ { @@ -2737,7 +2939,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_pycode_environment_group" + "name": "_asy_environment_group" }, "named": true, "value": "curly_group_text" @@ -2745,7 +2947,7 @@ } ] }, - "_pycode_environment_group": { + "_asy_environment_group": { "type": "SEQ", "members": [ { @@ -2759,7 +2961,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_pycode_environment_name" + "name": "_asy_environment_name" }, "named": true, "value": "text" @@ -2771,7 +2973,7 @@ } ] }, - "_pycode_environment_name": { + "_asy_environment_name": { "type": "SEQ", "members": [ { @@ -2781,7 +2983,7 @@ "type": "ALIAS", "content": { "type": "STRING", - "value": "pycode" + "value": "asy" }, "named": true, "value": "word" @@ -2789,7 +2991,7 @@ } ] }, - "math_environment": { + "asydef_environment": { "type": "SEQ", "members": [ { @@ -2799,17 +3001,23 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_math_environment_begin" + "name": "_asydef_environment_begin" }, "named": true, "value": "begin" } }, { - "type": "REPEAT", + "type": "FIELD", + "name": "code", "content": { - "type": "SYMBOL", - "name": "_flat_content" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_trivia_raw_env_asydef" + }, + "named": true, + "value": "source_code" } }, { @@ -2819,7 +3027,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_math_environment_end" + "name": "_asydef_environment_end" }, "named": true, "value": "end" @@ -2827,7 +3035,7 @@ } ] }, - "_math_environment_begin": { + "_asydef_environment_begin": { "type": "SEQ", "members": [ { @@ -2845,7 +3053,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_math_environment_group" + "name": "_asydef_environment_group" }, "named": true, "value": "curly_group_text" @@ -2857,7 +3065,7 @@ } ] }, - "_math_environment_end": { + "_asydef_environment_end": { "type": "SEQ", "members": [ { @@ -2875,7 +3083,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_math_environment_group" + "name": "_asydef_environment_group" }, "named": true, "value": "curly_group_text" @@ -2883,7 +3091,7 @@ } ] }, - "_math_environment_group": { + "_asydef_environment_group": { "type": "SEQ", "members": [ { @@ -2897,7 +3105,7 @@ "type": "ALIAS", "content": { "type": "SYMBOL", - "name": "_math_environment_name" + "name": "_asydef_environment_name" }, "named": true, "value": "text" @@ -2909,7 +3117,7 @@ } ] }, - "_math_environment_name": { + "_asydef_environment_name": { "type": "SEQ", "members": [ { @@ -2918,26 +3126,901 @@ "content": { "type": "ALIAS", "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "displaymath" - }, - { - "type": "STRING", - "value": "displaymath*" - }, - { - "type": "STRING", - "value": "equation" - }, - { - "type": "STRING", - "value": "equation*" - }, - { - "type": "STRING", + "type": "STRING", + "value": "asydef" + }, + "named": true, + "value": "word" + } + } + ] + }, + "pycode_environment": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "begin", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_pycode_environment_begin" + }, + "named": true, + "value": "begin" + } + }, + { + "type": "FIELD", + "name": "code", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_trivia_raw_env_pycode" + }, + "named": true, + "value": "source_code" + } + }, + { + "type": "FIELD", + "name": "end", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_pycode_environment_end" + }, + "named": true, + "value": "end" + } + } + ] + }, + "_pycode_environment_begin": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\begin" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_pycode_environment_group" + }, + "named": true, + "value": "curly_group_text" + } + }, + { + "type": "SEQ", + "members": [] + } + ] + }, + "_pycode_environment_end": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\end" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_pycode_environment_group" + }, + "named": true, + "value": "curly_group_text" + } + } + ] + }, + "_pycode_environment_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "FIELD", + "name": "text", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_pycode_environment_name" + }, + "named": true, + "value": "text" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_pycode_environment_name": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "word", + "content": { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "pycode" + }, + "named": true, + "value": "word" + } + } + ] + }, + "luacode_environment": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_luacode_environment" + }, + { + "type": "SYMBOL", + "name": "_luacode_environment_star" + } + ] + }, + "_luacode_environment": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "begin", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "__luacode_environment_begin" + }, + "named": true, + "value": "begin" + } + }, + { + "type": "FIELD", + "name": "code", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_trivia_raw_env_luacode" + }, + "named": true, + "value": "source_code" + } + }, + { + "type": "FIELD", + "name": "end", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "__luacode_environment_end" + }, + "named": true, + "value": "end" + } + } + ] + }, + "__luacode_environment_begin": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\begin" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "__luacode_environment_group" + }, + "named": true, + "value": "curly_group_text" + } + }, + { + "type": "SEQ", + "members": [] + } + ] + }, + "__luacode_environment_end": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\end" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "__luacode_environment_group" + }, + "named": true, + "value": "curly_group_text" + } + } + ] + }, + "__luacode_environment_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "FIELD", + "name": "text", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "__luacode_environment_name" + }, + "named": true, + "value": "text" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "__luacode_environment_name": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "word", + "content": { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "luacode" + }, + "named": true, + "value": "word" + } + } + ] + }, + "_luacode_environment_star": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "begin", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "__luacode_environment_star_begin" + }, + "named": true, + "value": "begin" + } + }, + { + "type": "FIELD", + "name": "code", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_trivia_raw_env_luacode_star" + }, + "named": true, + "value": "source_code" + } + }, + { + "type": "FIELD", + "name": "end", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "__luacode_environment_star_end" + }, + "named": true, + "value": "end" + } + } + ] + }, + "__luacode_environment_star_begin": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\begin" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "__luacode_environment_star_group" + }, + "named": true, + "value": "curly_group_text" + } + }, + { + "type": "SEQ", + "members": [] + } + ] + }, + "__luacode_environment_star_end": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\end" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "__luacode_environment_star_group" + }, + "named": true, + "value": "curly_group_text" + } + } + ] + }, + "__luacode_environment_star_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "FIELD", + "name": "text", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "__luacode_environment_star_name" + }, + "named": true, + "value": "text" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "__luacode_environment_star_name": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "word", + "content": { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "luacode*" + }, + "named": true, + "value": "word" + } + } + ] + }, + "sagesilent_environment": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "begin", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_sagesilent_environment_begin" + }, + "named": true, + "value": "begin" + } + }, + { + "type": "FIELD", + "name": "code", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_trivia_raw_env_sagesilent" + }, + "named": true, + "value": "source_code" + } + }, + { + "type": "FIELD", + "name": "end", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_sagesilent_environment_end" + }, + "named": true, + "value": "end" + } + } + ] + }, + "_sagesilent_environment_begin": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\begin" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_sagesilent_environment_group" + }, + "named": true, + "value": "curly_group_text" + } + }, + { + "type": "SEQ", + "members": [] + } + ] + }, + "_sagesilent_environment_end": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\end" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_sagesilent_environment_group" + }, + "named": true, + "value": "curly_group_text" + } + } + ] + }, + "_sagesilent_environment_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "FIELD", + "name": "text", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_sagesilent_environment_name" + }, + "named": true, + "value": "text" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_sagesilent_environment_name": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "word", + "content": { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "sagesilent" + }, + "named": true, + "value": "word" + } + } + ] + }, + "sageblock_environment": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "begin", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_sageblock_environment_begin" + }, + "named": true, + "value": "begin" + } + }, + { + "type": "FIELD", + "name": "code", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_trivia_raw_env_sageblock" + }, + "named": true, + "value": "source_code" + } + }, + { + "type": "FIELD", + "name": "end", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_sageblock_environment_end" + }, + "named": true, + "value": "end" + } + } + ] + }, + "_sageblock_environment_begin": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\begin" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_sageblock_environment_group" + }, + "named": true, + "value": "curly_group_text" + } + }, + { + "type": "SEQ", + "members": [] + } + ] + }, + "_sageblock_environment_end": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\end" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_sageblock_environment_group" + }, + "named": true, + "value": "curly_group_text" + } + } + ] + }, + "_sageblock_environment_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "FIELD", + "name": "text", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_sageblock_environment_name" + }, + "named": true, + "value": "text" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_sageblock_environment_name": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "word", + "content": { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "sageblock" + }, + "named": true, + "value": "word" + } + } + ] + }, + "math_environment": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "begin", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_math_environment_begin" + }, + "named": true, + "value": "begin" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_flat_content" + } + }, + { + "type": "FIELD", + "name": "end", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_math_environment_end" + }, + "named": true, + "value": "end" + } + } + ] + }, + "_math_environment_begin": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\begin" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_math_environment_group" + }, + "named": true, + "value": "curly_group_text" + } + }, + { + "type": "SEQ", + "members": [] + } + ] + }, + "_math_environment_end": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\end" + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_math_environment_group" + }, + "named": true, + "value": "curly_group_text" + } + } + ] + }, + "_math_environment_group": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "FIELD", + "name": "text", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_math_environment_name" + }, + "named": true, + "value": "text" + } + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_math_environment_name": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "word", + "content": { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "math" + }, + { + "type": "STRING", + "value": "displaymath" + }, + { + "type": "STRING", + "value": "displaymath*" + }, + { + "type": "STRING", + "value": "equation" + }, + { + "type": "STRING", + "value": "equation*" + }, + { + "type": "STRING", "value": "multline" }, { @@ -2950,15 +4033,23 @@ }, { "type": "STRING", - "value": "eqnarray*" + "value": "eqnarray*" + }, + { + "type": "STRING", + "value": "align" + }, + { + "type": "STRING", + "value": "align*" }, { "type": "STRING", - "value": "align" + "value": "aligned" }, { "type": "STRING", - "value": "align*" + "value": "aligned*" }, { "type": "STRING", @@ -2984,6 +4075,14 @@ "type": "STRING", "value": "alignat*" }, + { + "type": "STRING", + "value": "alignedat" + }, + { + "type": "STRING", + "value": "alignedat*" + }, { "type": "STRING", "value": "gather" @@ -2992,6 +4091,14 @@ "type": "STRING", "value": "gather*" }, + { + "type": "STRING", + "value": "gathered" + }, + { + "type": "STRING", + "value": "gathered*" + }, { "type": "STRING", "value": "flalign" @@ -3035,6 +4142,10 @@ "type": "SYMBOL", "name": "biblatex_include" }, + { + "type": "SYMBOL", + "name": "bibstyle_include" + }, { "type": "SYMBOL", "name": "bibtex_include" @@ -3139,6 +4250,10 @@ "type": "SYMBOL", "name": "tikz_library_import" }, + { + "type": "SYMBOL", + "name": "hyperlink" + }, { "type": "SYMBOL", "name": "generic_command" @@ -3225,6 +4340,22 @@ "value": "\\author" } }, + { + "type": "FIELD", + "name": "options", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "brack_group" + }, + { + "type": "BLANK" + } + ] + } + }, { "type": "FIELD", "name": "authors", @@ -3389,7 +4520,7 @@ } ] }, - "bibtex_include": { + "bibstyle_include": { "type": "SEQ", "members": [ { @@ -3397,7 +4528,7 @@ "name": "command", "content": { "type": "STRING", - "value": "\\bibliography" + "value": "\\bibliographystyle" } }, { @@ -3410,6 +4541,27 @@ } ] }, + "bibtex_include": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "STRING", + "value": "\\bibliography" + } + }, + { + "type": "FIELD", + "name": "paths", + "content": { + "type": "SYMBOL", + "name": "curly_group_path_list" + } + } + ] + }, "graphics_include": { "type": "SEQ", "members": [ @@ -3683,6 +4835,22 @@ "type": "STRING", "value": "\\citep*" }, + { + "type": "STRING", + "value": "\\citeA" + }, + { + "type": "STRING", + "value": "\\citeR" + }, + { + "type": "STRING", + "value": "\\citeS" + }, + { + "type": "STRING", + "value": "\\citeyearR" + }, { "type": "STRING", "value": "\\citeauthor" @@ -3975,26 +5143,50 @@ "type": "STRING", "value": "\\autoref" }, + { + "type": "STRING", + "value": "\\autoref*" + }, { "type": "STRING", "value": "\\pageref" }, { "type": "STRING", - "value": "\\cref" + "value": "\\pageref*" }, { "type": "STRING", - "value": "\\Cref" + "value": "\\autopageref" + }, + { + "type": "STRING", + "value": "\\autopageref*" + }, + { + "type": "STRING", + "value": "\\cref" }, { "type": "STRING", "value": "\\cref*" }, + { + "type": "STRING", + "value": "\\Cref" + }, { "type": "STRING", "value": "\\Cref*" }, + { + "type": "STRING", + "value": "\\cpageref" + }, + { + "type": "STRING", + "value": "\\Cpageref" + }, { "type": "STRING", "value": "\\namecref" @@ -4023,9 +5215,17 @@ "type": "STRING", "value": "\\labelcref" }, + { + "type": "STRING", + "value": "\\labelcref*" + }, { "type": "STRING", "value": "\\labelcpageref" + }, + { + "type": "STRING", + "value": "\\labelcpageref*" } ] } @@ -4064,6 +5264,14 @@ { "type": "STRING", "value": "\\Crefrange*" + }, + { + "type": "STRING", + "value": "\\cpagerefrange" + }, + { + "type": "STRING", + "value": "\\Cpagerefrange" } ] } @@ -4116,6 +5324,23 @@ ] }, "new_command_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_new_command_definition" + }, + { + "type": "SYMBOL", + "name": "_newer_command_definition" + }, + { + "type": "SYMBOL", + "name": "_new_command_copy" + } + ] + }, + "_new_command_definition": { "type": "SEQ", "members": [ { @@ -4142,51 +5367,27 @@ }, { "type": "STRING", - "value": "\\DeclareRobustCommand" - }, - { - "type": "STRING", - "value": "\\DeclareRobustCommand*" - }, - { - "type": "STRING", - "value": "\\DeclareMathOperator" - }, - { - "type": "STRING", - "value": "\\DeclareMathOperator*" - }, - { - "type": "STRING", - "value": "\\NewDocumentCommand" - }, - { - "type": "STRING", - "value": "\\RenewDocumentCommand" - }, - { - "type": "STRING", - "value": "\\ProvideDocumentCommand" + "value": "\\providecommand" }, { "type": "STRING", - "value": "\\DeclareDocumentCommand" + "value": "\\providecommand*" }, { "type": "STRING", - "value": "\\NewExpandableDocumentCommand" + "value": "\\DeclareRobustCommand" }, { "type": "STRING", - "value": "\\RenewExpandableDocumentCommand" + "value": "\\DeclareRobustCommand*" }, { "type": "STRING", - "value": "\\ProvideExpandableDocumentCommand" + "value": "\\DeclareMathOperator" }, { "type": "STRING", - "value": "\\DeclareExpandableDocumentCommand" + "value": "\\DeclareMathOperator*" } ] } @@ -4195,8 +5396,17 @@ "type": "FIELD", "name": "declaration", "content": { - "type": "SYMBOL", - "name": "curly_group_command_name" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "curly_group_command_name" + }, + { + "type": "SYMBOL", + "name": "command_name" + } + ] } }, { @@ -4241,7 +5451,137 @@ "name": "implementation", "content": { "type": "SYMBOL", - "name": "curly_group" + "name": "curly_group" + } + } + ] + }, + "_newer_command_definition": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\NewDocumentCommand" + }, + { + "type": "STRING", + "value": "\\RenewDocumentCommand" + }, + { + "type": "STRING", + "value": "\\ProvideDocumentCommand" + }, + { + "type": "STRING", + "value": "\\DeclareDocumentCommand" + }, + { + "type": "STRING", + "value": "\\NewExpandableDocumentCommand" + }, + { + "type": "STRING", + "value": "\\RenewExpandableDocumentCommand" + }, + { + "type": "STRING", + "value": "\\ProvideExpandableDocumentCommand" + }, + { + "type": "STRING", + "value": "\\DeclareExpandableDocumentCommand" + } + ] + } + }, + { + "type": "FIELD", + "name": "declaration", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "curly_group_command_name" + }, + { + "type": "SYMBOL", + "name": "command_name" + } + ] + } + }, + { + "type": "FIELD", + "name": "spec", + "content": { + "type": "SYMBOL", + "name": "curly_group_spec" + } + }, + { + "type": "FIELD", + "name": "implementation", + "content": { + "type": "SYMBOL", + "name": "curly_group" + } + } + ] + }, + "_new_command_copy": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\NewCommandCopy" + }, + { + "type": "STRING", + "value": "\\RenewCommandCopy" + }, + { + "type": "STRING", + "value": "\\DeclareCommandCopy" + } + ] + } + }, + { + "type": "FIELD", + "name": "declaration", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "curly_group_command_name" + }, + { + "type": "SYMBOL", + "name": "command_name" + } + ] + } + }, + { + "type": "FIELD", + "name": "implementation", + "content": { + "type": "SYMBOL", + "name": "curly_group_command_name" } } ] @@ -4253,8 +5593,25 @@ "type": "FIELD", "name": "command", "content": { - "type": "STRING", - "value": "\\def" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\def" + }, + { + "type": "STRING", + "value": "\\gdef" + }, + { + "type": "STRING", + "value": "\\edef" + }, + { + "type": "STRING", + "value": "\\xdef" + } + ] } }, { @@ -4274,8 +5631,17 @@ "type": "FIELD", "name": "command", "content": { - "type": "STRING", - "value": "\\let" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\let" + }, + { + "type": "STRING", + "value": "\\glet" + } + ] } }, { @@ -4308,161 +5674,6 @@ } ] }, - "_math_delimiter_part": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "word" - }, - { - "type": "SYMBOL", - "name": "command_name" - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" - }, - { - "type": "STRING", - "value": "|" - } - ] - }, - "math_delimiter": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left_command", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\left" - }, - { - "type": "STRING", - "value": "\\big" - }, - { - "type": "STRING", - "value": "\\Big" - }, - { - "type": "STRING", - "value": "\\bigg" - }, - { - "type": "STRING", - "value": "\\Bigg" - }, - { - "type": "STRING", - "value": "\\bigl" - }, - { - "type": "STRING", - "value": "\\Bigl" - }, - { - "type": "STRING", - "value": "\\biggl" - }, - { - "type": "STRING", - "value": "\\Biggl" - } - ] - } - }, - { - "type": "FIELD", - "name": "left_delimiter", - "content": { - "type": "SYMBOL", - "name": "_math_delimiter_part" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_root_content" - } - }, - { - "type": "FIELD", - "name": "right_command", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\right" - }, - { - "type": "STRING", - "value": "\\big" - }, - { - "type": "STRING", - "value": "\\Big" - }, - { - "type": "STRING", - "value": "\\bigg" - }, - { - "type": "STRING", - "value": "\\Bigg" - }, - { - "type": "STRING", - "value": "\\bigr" - }, - { - "type": "STRING", - "value": "\\Bigr" - }, - { - "type": "STRING", - "value": "\\biggr" - }, - { - "type": "STRING", - "value": "\\Biggr" - } - ] - } - }, - { - "type": "FIELD", - "name": "right_delimiter", - "content": { - "type": "SYMBOL", - "name": "_math_delimiter_part" - } - } - ] - } - }, "paired_delimiter_definition": { "type": "PREC_RIGHT", "value": 0, @@ -4560,10 +5771,89 @@ ] } } - ] - } + ] + } + }, + "environment_definition": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_environment_definition" + }, + { + "type": "SYMBOL", + "name": "_newer_environment_definition" + }, + { + "type": "SYMBOL", + "name": "_new_environment_copy" + } + ] + }, + "_environment_definition": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\newenvironment" + }, + { + "type": "STRING", + "value": "\\renewenvironment" + } + ] + } + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "curly_group_text" + } + }, + { + "type": "FIELD", + "name": "argc", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "brack_group_argc" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "FIELD", + "name": "begin", + "content": { + "type": "SYMBOL", + "name": "curly_group_impl" + } + }, + { + "type": "FIELD", + "name": "end", + "content": { + "type": "SYMBOL", + "name": "curly_group_impl" + } + } + ] }, - "environment_definition": { + "_newer_environment_definition": { "type": "SEQ", "members": [ { @@ -4572,14 +5862,6 @@ "content": { "type": "CHOICE", "members": [ - { - "type": "STRING", - "value": "\\newenvironment" - }, - { - "type": "STRING", - "value": "\\renewenvironment" - }, { "type": "STRING", "value": "\\NewDocumentEnvironment" @@ -4609,34 +5891,68 @@ }, { "type": "FIELD", - "name": "argc", + "name": "spec", + "content": { + "type": "SYMBOL", + "name": "curly_group_spec" + } + }, + { + "type": "FIELD", + "name": "begin", + "content": { + "type": "SYMBOL", + "name": "curly_group_impl" + } + }, + { + "type": "FIELD", + "name": "end", + "content": { + "type": "SYMBOL", + "name": "curly_group_impl" + } + } + ] + }, + "_new_environment_copy": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", "content": { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "brack_group_argc" + "type": "STRING", + "value": "\\NewEnvironmentCopy" }, { - "type": "BLANK" + "type": "STRING", + "value": "\\RenewEnvironmentCopy" + }, + { + "type": "STRING", + "value": "\\DeclareEnvironmentCopy" } ] } }, { "type": "FIELD", - "name": "begin", + "name": "name", "content": { "type": "SYMBOL", - "name": "curly_group_impl" + "name": "curly_group_text" } }, { "type": "FIELD", - "name": "end", + "name": "name", "content": { "type": "SYMBOL", - "name": "curly_group_impl" + "name": "curly_group_text" } } ] @@ -5207,7 +6523,7 @@ "name": "name", "content": { "type": "SYMBOL", - "name": "curly_group_text" + "name": "curly_group_text_list" } }, { @@ -5387,42 +6703,92 @@ ] }, "color_reference": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "command", - "content": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\color" + }, + { + "type": "STRING", + "value": "\\pagecolor" + }, + { + "type": "STRING", + "value": "\\textcolor" + }, + { + "type": "STRING", + "value": "\\mathcolor" + }, + { + "type": "STRING", + "value": "\\colorbox" + } + ] + } + }, + { "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\\color" + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "curly_group_text" + } }, { - "type": "STRING", - "value": "\\colorbox" - }, + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "model", + "content": { + "type": "SYMBOL", + "name": "brack_group_text" + } + }, + { + "type": "FIELD", + "name": "spec", + "content": { + "type": "SYMBOL", + "name": "curly_group" + } + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ { - "type": "STRING", - "value": "\\textcolor" + "type": "FIELD", + "name": "text", + "content": { + "type": "SYMBOL", + "name": "curly_group" + } }, { - "type": "STRING", - "value": "\\pagecolor" + "type": "BLANK" } ] } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "curly_group_text" - } - } - ] + ] + } }, "tikz_library_import": { "type": "SEQ", @@ -5454,39 +6820,55 @@ } ] }, - "text_mode": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "command", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\text" - }, - { - "type": "STRING", - "value": "\\intertext" - }, - { - "type": "STRING", - "value": "shortintertext" - } - ] - } - }, - { - "type": "FIELD", - "name": "content", - "content": { - "type": "SYMBOL", - "name": "curly_group" + "hyperlink": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\url" + }, + { + "type": "STRING", + "value": "\\href" + } + ] + } + }, + { + "type": "FIELD", + "name": "uri", + "content": { + "type": "SYMBOL", + "name": "curly_group_uri" + } + }, + { + "type": "FIELD", + "name": "label", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "curly_group" + }, + { + "type": "BLANK" + } + ] + } } - } - ] + ] + } } }, "extras": [ @@ -5522,12 +6904,35 @@ "type": "SYMBOL", "name": "_trivia_raw_env_minted" }, + { + "type": "SYMBOL", + "name": "_trivia_raw_env_asy" + }, + { + "type": "SYMBOL", + "name": "_trivia_raw_env_asydef" + }, { "type": "SYMBOL", "name": "_trivia_raw_env_pycode" + }, + { + "type": "SYMBOL", + "name": "_trivia_raw_env_luacode" + }, + { + "type": "SYMBOL", + "name": "_trivia_raw_env_luacode_star" + }, + { + "type": "SYMBOL", + "name": "_trivia_raw_env_sagesilent" + }, + { + "type": "SYMBOL", + "name": "_trivia_raw_env_sageblock" } ], "inline": [], "supertypes": [] } - diff --git a/vendored_parsers/tree-sitter-latex/src/node-types.json b/vendored_parsers/tree-sitter-latex/src/node-types.json index 0902419e5..31c057156 100644 --- a/vendored_parsers/tree-sitter-latex/src/node-types.json +++ b/vendored_parsers/tree-sitter-latex/src/node-types.json @@ -259,6 +259,78 @@ } } }, + { + "type": "asy_environment", + "named": true, + "fields": { + "begin": { + "multiple": false, + "required": true, + "types": [ + { + "type": "begin", + "named": true + } + ] + }, + "code": { + "multiple": false, + "required": true, + "types": [ + { + "type": "source_code", + "named": true + } + ] + }, + "end": { + "multiple": false, + "required": true, + "types": [ + { + "type": "end", + "named": true + } + ] + } + } + }, + { + "type": "asydef_environment", + "named": true, + "fields": { + "begin": { + "multiple": false, + "required": true, + "types": [ + { + "type": "begin", + "named": true + } + ] + }, + "code": { + "multiple": false, + "required": true, + "types": [ + { + "type": "source_code", + "named": true + } + ] + }, + "end": { + "multiple": false, + "required": true, + "types": [ + { + "type": "end", + "named": true + } + ] + } + } + }, { "type": "author", "named": true, @@ -283,6 +355,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -343,6 +419,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -453,6 +533,16 @@ "named": false } ] + }, + "options": { + "multiple": false, + "required": false, + "types": [ + { + "type": "brack_group", + "named": true + } + ] } } }, @@ -533,7 +623,7 @@ } }, { - "type": "bibtex_include", + "type": "bibstyle_include", "named": true, "fields": { "command": { @@ -541,7 +631,7 @@ "required": true, "types": [ { - "type": "\\bibliography", + "type": "\\bibliographystyle", "named": false } ] @@ -558,6 +648,32 @@ } } }, + { + "type": "bibtex_include", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\bibliography", + "named": false + } + ] + }, + "paths": { + "multiple": false, + "required": true, + "types": [ + { + "type": "curly_group_path_list", + "named": true + } + ] + } + } + }, { "type": "block_comment", "named": true, @@ -610,6 +726,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -618,6 +742,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -690,6 +818,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -730,6 +862,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -762,6 +898,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "svg_include", "named": true @@ -940,6 +1084,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -948,6 +1100,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -1020,6 +1176,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -1060,6 +1220,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -1096,6 +1260,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "section", "named": true @@ -1235,6 +1407,18 @@ "type": "\\cite*", "named": false }, + { + "type": "\\citeA", + "named": false + }, + { + "type": "\\citeR", + "named": false + }, + { + "type": "\\citeS", + "named": false + }, { "type": "\\citealp", "named": false @@ -1299,6 +1483,10 @@ "type": "\\citeyear*", "named": false }, + { + "type": "\\citeyearR", + "named": false + }, { "type": "\\citeyearpar", "named": false @@ -1521,6 +1709,10 @@ "type": "\\colorbox", "named": false }, + { + "type": "\\mathcolor", + "named": false + }, { "type": "\\pagecolor", "named": false @@ -1531,15 +1723,45 @@ } ] }, + "model": { + "multiple": false, + "required": false, + "types": [ + { + "type": "brack_group_text", + "named": true + } + ] + }, "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "curly_group_text", "named": true } ] + }, + "spec": { + "multiple": false, + "required": false, + "types": [ + { + "type": "curly_group", + "named": true + } + ] + }, + "text": { + "multiple": false, + "required": false, + "types": [ + { + "type": "curly_group", + "named": true + } + ] } } }, @@ -1661,6 +1883,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -1669,6 +1899,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -1745,6 +1979,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -1785,6 +2023,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -1825,6 +2067,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "section", "named": true @@ -1951,6 +2201,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -2011,6 +2265,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -2147,33 +2405,228 @@ } }, { - "type": "curly_group_text", - "named": true, - "fields": { - "text": { - "multiple": false, - "required": true, - "types": [ - { - "type": "text", - "named": true - } - ] - } - } - }, - { - "type": "curly_group_text_list", + "type": "curly_group_spec", "named": true, - "fields": { - "text": { - "multiple": true, - "required": false, - "types": [ - { - "type": "text", - "named": true - } + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "acronym_reference", + "named": true + }, + { + "type": "author_declaration", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "bibstyle_include", + "named": true + }, + { + "type": "bibtex_include", + "named": true + }, + { + "type": "block_comment", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "color_definition", + "named": true + }, + { + "type": "color_reference", + "named": true + }, + { + "type": "color_set_definition", + "named": true + }, + { + "type": "curly_group", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "environment_definition", + "named": true + }, + { + "type": "generic_command", + "named": true + }, + { + "type": "glossary_entry_definition", + "named": true + }, + { + "type": "glossary_entry_reference", + "named": true + }, + { + "type": "graphics_include", + "named": true + }, + { + "type": "hyperlink", + "named": true + }, + { + "type": "import_include", + "named": true + }, + { + "type": "inkscape_include", + "named": true + }, + { + "type": "inline_formula", + "named": true + }, + { + "type": "label_definition", + "named": true + }, + { + "type": "label_number", + "named": true + }, + { + "type": "label_reference", + "named": true + }, + { + "type": "label_reference_range", + "named": true + }, + { + "type": "latex_include", + "named": true + }, + { + "type": "let_command_definition", + "named": true + }, + { + "type": "math_delimiter", + "named": true + }, + { + "type": "new_command_definition", + "named": true + }, + { + "type": "old_command_definition", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "paired_delimiter_definition", + "named": true + }, + { + "type": "svg_include", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "text_mode", + "named": true + }, + { + "type": "theorem_definition", + "named": true + }, + { + "type": "tikz_library_import", + "named": true + }, + { + "type": "title_declaration", + "named": true + }, + { + "type": "verbatim_include", + "named": true + } + ] + } + }, + { + "type": "curly_group_text", + "named": true, + "fields": { + "text": { + "multiple": false, + "required": true, + "types": [ + { + "type": "text", + "named": true + } + ] + } + } + }, + { + "type": "curly_group_text_list", + "named": true, + "fields": { + "text": { + "multiple": true, + "required": false, + "types": [ + { + "type": "text", + "named": true + } + ] + } + } + }, + { + "type": "curly_group_uri", + "named": true, + "fields": { + "uri": { + "multiple": false, + "required": true, + "types": [ + { + "type": "uri", + "named": true + } ] } } @@ -2194,6 +2647,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -2202,6 +2663,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -2278,6 +2743,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -2318,6 +2787,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -2358,6 +2831,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "section", "named": true @@ -2476,6 +2957,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -2484,6 +2973,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -2552,6 +3045,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -2592,6 +3089,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -2624,6 +3125,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "svg_include", "named": true @@ -2675,7 +3184,7 @@ }, "begin": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "curly_group_impl", @@ -2691,10 +3200,18 @@ "type": "\\DeclareDocumentEnvironment", "named": false }, + { + "type": "\\DeclareEnvironmentCopy", + "named": false + }, { "type": "\\NewDocumentEnvironment", "named": false }, + { + "type": "\\NewEnvironmentCopy", + "named": false + }, { "type": "\\ProvideDocumentEnvironment", "named": false @@ -2703,6 +3220,10 @@ "type": "\\RenewDocumentEnvironment", "named": false }, + { + "type": "\\RenewEnvironmentCopy", + "named": false + }, { "type": "\\newenvironment", "named": false @@ -2715,7 +3236,7 @@ }, "end": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "curly_group_impl", @@ -2724,7 +3245,7 @@ ] }, "name": { - "multiple": false, + "multiple": true, "required": true, "types": [ { @@ -2732,6 +3253,16 @@ "named": true } ] + }, + "spec": { + "multiple": false, + "required": false, + "types": [ + { + "type": "curly_group_spec", + "named": true + } + ] } } }, @@ -2798,6 +3329,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -2806,6 +3345,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -2882,6 +3425,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -2922,6 +3469,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -2962,6 +3513,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "section", "named": true @@ -3306,6 +3865,46 @@ } } }, + { + "type": "hyperlink", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\href", + "named": false + }, + { + "type": "\\url", + "named": false + } + ] + }, + "label": { + "multiple": false, + "required": false, + "types": [ + { + "type": "curly_group", + "named": true + } + ] + }, + "uri": { + "multiple": false, + "required": true, + "types": [ + { + "type": "curly_group_uri", + "named": true + } + ] + } + } + }, { "type": "import_include", "named": true, @@ -3414,6 +4013,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -3422,6 +4029,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -3498,6 +4109,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -3538,6 +4153,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -3578,6 +4197,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "section", "named": true @@ -3725,6 +4352,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "\\Cpageref", + "named": false + }, { "type": "\\Cref", "named": false @@ -3737,10 +4368,26 @@ "type": "\\Vref", "named": false }, + { + "type": "\\autopageref", + "named": false + }, + { + "type": "\\autopageref*", + "named": false + }, { "type": "\\autoref", "named": false }, + { + "type": "\\autoref*", + "named": false + }, + { + "type": "\\cpageref", + "named": false + }, { "type": "\\cref", "named": false @@ -3758,7 +4405,15 @@ "named": false }, { - "type": "\\labelcref", + "type": "\\labelcpageref*", + "named": false + }, + { + "type": "\\labelcref", + "named": false + }, + { + "type": "\\labelcref*", "named": false }, { @@ -3789,6 +4444,10 @@ "type": "\\pageref", "named": false }, + { + "type": "\\pageref*", + "named": false + }, { "type": "\\ref", "named": false @@ -3819,6 +4478,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "\\Cpagerefrange", + "named": false + }, { "type": "\\Crefrange", "named": false @@ -3827,6 +4490,10 @@ "type": "\\Crefrange*", "named": false }, + { + "type": "\\cpagerefrange", + "named": false + }, { "type": "\\crefrange", "named": false @@ -3905,6 +4572,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "\\glet", + "named": false + }, { "type": "\\let", "named": false @@ -3970,21 +4641,49 @@ } }, { - "type": "math_delimiter", + "type": "luacode_environment", "named": true, "fields": { - "left_command": { + "begin": { "multiple": false, "required": true, "types": [ { - "type": "\\Big", - "named": false - }, + "type": "begin", + "named": true + } + ] + }, + "code": { + "multiple": false, + "required": true, + "types": [ { - "type": "\\Bigg", - "named": false - }, + "type": "source_code", + "named": true + } + ] + }, + "end": { + "multiple": false, + "required": true, + "types": [ + { + "type": "end", + "named": true + } + ] + } + } + }, + { + "type": "math_delimiter", + "named": true, + "fields": { + "left_command": { + "multiple": false, + "required": true, + "types": [ { "type": "\\Biggl", "named": false @@ -3993,14 +4692,6 @@ "type": "\\Bigl", "named": false }, - { - "type": "\\big", - "named": false - }, - { - "type": "\\bigg", - "named": false - }, { "type": "\\biggl", "named": false @@ -4053,14 +4744,6 @@ "multiple": false, "required": true, "types": [ - { - "type": "\\Big", - "named": false - }, - { - "type": "\\Bigg", - "named": false - }, { "type": "\\Biggr", "named": false @@ -4069,14 +4752,6 @@ "type": "\\Bigr", "named": false }, - { - "type": "\\big", - "named": false - }, - { - "type": "\\bigg", - "named": false - }, { "type": "\\biggr", "named": false @@ -4138,6 +4813,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -4146,6 +4829,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -4222,6 +4909,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -4262,6 +4953,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -4302,6 +4997,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "section", "named": true @@ -4390,6 +5093,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -4398,6 +5109,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -4466,6 +5181,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -4506,6 +5225,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -4538,6 +5261,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "svg_include", "named": true @@ -4627,6 +5358,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "\\DeclareCommandCopy", + "named": false + }, { "type": "\\DeclareDocumentCommand", "named": false @@ -4651,6 +5386,10 @@ "type": "\\DeclareRobustCommand*", "named": false }, + { + "type": "\\NewCommandCopy", + "named": false + }, { "type": "\\NewDocumentCommand", "named": false @@ -4667,6 +5406,10 @@ "type": "\\ProvideExpandableDocumentCommand", "named": false }, + { + "type": "\\RenewCommandCopy", + "named": false + }, { "type": "\\RenewDocumentCommand", "named": false @@ -4683,6 +5426,14 @@ "type": "\\newcommand*", "named": false }, + { + "type": "\\providecommand", + "named": false + }, + { + "type": "\\providecommand*", + "named": false + }, { "type": "\\renewcommand", "named": false @@ -4697,6 +5448,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "command_name", + "named": true + }, { "type": "curly_group_command_name", "named": true @@ -4720,6 +5475,20 @@ { "type": "curly_group", "named": true + }, + { + "type": "curly_group_command_name", + "named": true + } + ] + }, + "spec": { + "multiple": false, + "required": false, + "types": [ + { + "type": "curly_group_spec", + "named": true } ] } @@ -4736,6 +5505,18 @@ { "type": "\\def", "named": false + }, + { + "type": "\\edef", + "named": false + }, + { + "type": "\\gdef", + "named": false + }, + { + "type": "\\xdef", + "named": false } ] }, @@ -4925,6 +5706,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -4933,6 +5722,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -5005,6 +5798,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -5045,6 +5842,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -5077,6 +5878,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "subparagraph", "named": true @@ -5175,6 +5984,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -5183,6 +6000,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -5259,6 +6080,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -5299,6 +6124,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -5335,6 +6164,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "section", "named": true @@ -5387,7 +6224,79 @@ } }, { - "type": "pycode_environment", + "type": "pycode_environment", + "named": true, + "fields": { + "begin": { + "multiple": false, + "required": true, + "types": [ + { + "type": "begin", + "named": true + } + ] + }, + "code": { + "multiple": false, + "required": true, + "types": [ + { + "type": "source_code", + "named": true + } + ] + }, + "end": { + "multiple": false, + "required": true, + "types": [ + { + "type": "end", + "named": true + } + ] + } + } + }, + { + "type": "sageblock_environment", + "named": true, + "fields": { + "begin": { + "multiple": false, + "required": true, + "types": [ + { + "type": "begin", + "named": true + } + ] + }, + "code": { + "multiple": false, + "required": true, + "types": [ + { + "type": "source_code", + "named": true + } + ] + }, + "end": { + "multiple": false, + "required": true, + "types": [ + { + "type": "end", + "named": true + } + ] + } + } + }, + { + "type": "sagesilent_environment", "named": true, "fields": { "begin": { @@ -5481,6 +6390,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -5489,6 +6406,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -5561,6 +6482,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -5601,6 +6526,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -5637,6 +6566,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "subparagraph", "named": true @@ -5700,6 +6637,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -5708,6 +6653,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -5784,6 +6733,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -5824,6 +6777,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -5864,6 +6821,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "section", "named": true @@ -5966,6 +6931,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -5974,6 +6947,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -6046,6 +7023,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -6086,6 +7067,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -6118,6 +7103,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "svg_include", "named": true @@ -6162,15 +7155,15 @@ "required": true, "types": [ { - "type": "curly_group", + "type": "command_name", "named": true }, { - "type": "generic_command", + "type": "curly_group", "named": true }, { - "type": "word", + "type": "letter", "named": true } ] @@ -6228,6 +7221,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -6236,6 +7237,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -6308,6 +7313,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -6348,6 +7357,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -6384,6 +7397,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "subparagraph", "named": true @@ -6478,6 +7499,14 @@ "type": "acronym_reference", "named": true }, + { + "type": "asy_environment", + "named": true + }, + { + "type": "asydef_environment", + "named": true + }, { "type": "author_declaration", "named": true @@ -6486,6 +7515,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -6558,6 +7591,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -6598,6 +7635,10 @@ "type": "listing_environment", "named": true }, + { + "type": "luacode_environment", + "named": true + }, { "type": "math_delimiter", "named": true @@ -6634,6 +7675,14 @@ "type": "pycode_environment", "named": true }, + { + "type": "sageblock_environment", + "named": true + }, + { + "type": "sagesilent_environment", + "named": true + }, { "type": "subparagraph", "named": true @@ -6682,15 +7731,15 @@ "required": true, "types": [ { - "type": "curly_group", + "type": "command_name", "named": true }, { - "type": "generic_command", + "type": "curly_group", "named": true }, { - "type": "word", + "type": "letter", "named": true } ] @@ -6757,6 +7806,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -6789,6 +7842,10 @@ "type": "color_set_definition", "named": true }, + { + "type": "delimiter", + "named": true + }, { "type": "environment_definition", "named": true @@ -6809,6 +7866,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -6914,11 +7975,11 @@ "named": false }, { - "type": "\\text", + "type": "\\shortintertext", "named": false }, { - "type": "shortintertext", + "type": "\\text", "named": false } ] @@ -6976,7 +8037,7 @@ "required": true, "types": [ { - "type": "curly_group_text", + "type": "curly_group_text_list", "named": true } ] @@ -7093,6 +8154,10 @@ "type": "biblatex_include", "named": true }, + { + "type": "bibstyle_include", + "named": true + }, { "type": "bibtex_include", "named": true @@ -7157,6 +8222,10 @@ "type": "graphics_include", "named": true }, + { + "type": "hyperlink", + "named": true + }, { "type": "import_include", "named": true @@ -7470,14 +8539,6 @@ "type": "\\Avolcite", "named": false }, - { - "type": "\\Big", - "named": false - }, - { - "type": "\\Bigg", - "named": false - }, { "type": "\\Biggl", "named": false @@ -7506,6 +8567,14 @@ "type": "\\Citeauthor*", "named": false }, + { + "type": "\\Cpageref", + "named": false + }, + { + "type": "\\Cpagerefrange", + "named": false + }, { "type": "\\Cref", "named": false @@ -7522,6 +8591,10 @@ "type": "\\Crefrange*", "named": false }, + { + "type": "\\DeclareCommandCopy", + "named": false + }, { "type": "\\DeclareDocumentCommand", "named": false @@ -7530,6 +8603,10 @@ "type": "\\DeclareDocumentEnvironment", "named": false }, + { + "type": "\\DeclareEnvironmentCopy", + "named": false + }, { "type": "\\DeclareExpandableDocumentCommand", "named": false @@ -7694,6 +8771,10 @@ "type": "\\Glsuservi", "named": false }, + { + "type": "\\NewCommandCopy", + "named": false + }, { "type": "\\NewDocumentCommand", "named": false @@ -7702,6 +8783,10 @@ "type": "\\NewDocumentEnvironment", "named": false }, + { + "type": "\\NewEnvironmentCopy", + "named": false + }, { "type": "\\NewExpandableDocumentCommand", "named": false @@ -7734,6 +8819,10 @@ "type": "\\Pvolcite", "named": false }, + { + "type": "\\RenewCommandCopy", + "named": false + }, { "type": "\\RenewDocumentCommand", "named": false @@ -7742,6 +8831,10 @@ "type": "\\RenewDocumentEnvironment", "named": false }, + { + "type": "\\RenewEnvironmentCopy", + "named": false + }, { "type": "\\RenewExpandableDocumentCommand", "named": false @@ -7882,28 +8975,36 @@ "type": "\\autocite*", "named": false }, + { + "type": "\\autopageref", + "named": false + }, + { + "type": "\\autopageref*", + "named": false + }, { "type": "\\autoref", "named": false }, { - "type": "\\avolcite", + "type": "\\autoref*", "named": false }, { - "type": "\\begin", + "type": "\\avolcite", "named": false }, { - "type": "\\bibliography", + "type": "\\begin", "named": false }, { - "type": "\\big", + "type": "\\bibliography", "named": false }, { - "type": "\\bigg", + "type": "\\bibliographystyle", "named": false }, { @@ -7942,6 +9043,18 @@ "type": "\\cite*", "named": false }, + { + "type": "\\citeA", + "named": false + }, + { + "type": "\\citeR", + "named": false + }, + { + "type": "\\citeS", + "named": false + }, { "type": "\\citealp", "named": false @@ -8006,6 +9119,10 @@ "type": "\\citeyear*", "named": false }, + { + "type": "\\citeyearR", + "named": false + }, { "type": "\\citeyearpar", "named": false @@ -8018,6 +9135,14 @@ "type": "\\colorbox", "named": false }, + { + "type": "\\cpageref", + "named": false + }, + { + "type": "\\cpagerefrange", + "named": false + }, { "type": "\\cref", "named": false @@ -8058,6 +9183,10 @@ "type": "\\documentclass", "named": false }, + { + "type": "\\edef", + "named": false + }, { "type": "\\end", "named": false @@ -8098,6 +9227,14 @@ "type": "\\fvolcite", "named": false }, + { + "type": "\\gdef", + "named": false + }, + { + "type": "\\glet", + "named": false + }, { "type": "\\gls", "named": false @@ -8186,6 +9323,10 @@ "type": "\\glsuservi", "named": false }, + { + "type": "\\href", + "named": false + }, { "type": "\\iffalse", "named": false @@ -8242,10 +9383,18 @@ "type": "\\labelcpageref", "named": false }, + { + "type": "\\labelcpageref*", + "named": false + }, { "type": "\\labelcref", "named": false }, + { + "type": "\\labelcref*", + "named": false + }, { "type": "\\lcnamecref", "named": false @@ -8262,6 +9411,10 @@ "type": "\\let", "named": false }, + { + "type": "\\mathcolor", + "named": false + }, { "type": "\\nameCref", "named": false @@ -8326,6 +9479,10 @@ "type": "\\pageref", "named": false }, + { + "type": "\\pageref*", + "named": false + }, { "type": "\\paragraph", "named": false @@ -8354,6 +9511,14 @@ "type": "\\pnotecite", "named": false }, + { + "type": "\\providecommand", + "named": false + }, + { + "type": "\\providecommand*", + "named": false + }, { "type": "\\pvolcite", "named": false @@ -8386,6 +9551,10 @@ "type": "\\section*", "named": false }, + { + "type": "\\shortintertext", + "named": false + }, { "type": "\\smartcite", "named": false @@ -8462,6 +9631,10 @@ "type": "\\tvolcite", "named": false }, + { + "type": "\\url", + "named": false + }, { "type": "\\usepackage", "named": false @@ -8486,6 +9659,10 @@ "type": "\\vref", "named": false }, + { + "type": "\\xdef", + "named": false + }, { "type": "]", "named": false @@ -8510,6 +9687,14 @@ "type": "comment", "named": true }, + { + "type": "delimiter", + "named": true + }, + { + "type": "letter", + "named": true + }, { "type": "line_comment", "named": true @@ -8523,11 +9708,11 @@ "named": true }, { - "type": "shortintertext", - "named": false + "type": "source_code", + "named": true }, { - "type": "source_code", + "type": "uri", "named": true }, { diff --git a/vendored_parsers/tree-sitter-latex/src/parser.c b/vendored_parsers/tree-sitter-latex/src/parser.c deleted file mode 100644 index dea17203c..000000000 --- a/vendored_parsers/tree-sitter-latex/src/parser.c +++ /dev/null @@ -1,651707 +0,0 @@ -#include - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push -#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 3301 -#define LARGE_STATE_COUNT 2006 -#define SYMBOL_COUNT 481 -#define ALIAS_COUNT 1 -#define TOKEN_COUNT 342 -#define EXTERNAL_TOKEN_COUNT 6 -#define FIELD_COUNT 54 -#define MAX_ALIAS_SEQUENCE_LENGTH 6 -#define PRODUCTION_ID_COUNT 93 - -enum { - sym_command_name = 1, - sym__whitespace = 2, - sym_line_comment = 3, - anon_sym_BSLASHiffalse = 4, - anon_sym_BSLASHfi = 5, - anon_sym_LBRACK = 6, - anon_sym_RBRACK = 7, - anon_sym_COMMA = 8, - anon_sym_EQ = 9, - anon_sym_LPAREN = 10, - anon_sym_RPAREN = 11, - anon_sym_BSLASHpart = 12, - anon_sym_BSLASHpart_STAR = 13, - anon_sym_BSLASHaddpart = 14, - anon_sym_BSLASHaddpart_STAR = 15, - anon_sym_BSLASHchapter = 16, - anon_sym_BSLASHchapter_STAR = 17, - anon_sym_BSLASHaddchap = 18, - anon_sym_BSLASHaddchap_STAR = 19, - anon_sym_BSLASHsection = 20, - anon_sym_BSLASHsection_STAR = 21, - anon_sym_BSLASHaddsec = 22, - anon_sym_BSLASHaddsec_STAR = 23, - anon_sym_BSLASHsubsection = 24, - anon_sym_BSLASHsubsection_STAR = 25, - anon_sym_BSLASHsubsubsection = 26, - anon_sym_BSLASHsubsubsection_STAR = 27, - anon_sym_BSLASHparagraph = 28, - anon_sym_BSLASHparagraph_STAR = 29, - anon_sym_BSLASHsubparagraph = 30, - anon_sym_BSLASHsubparagraph_STAR = 31, - anon_sym_BSLASHitem = 32, - anon_sym_BSLASHitem_STAR = 33, - anon_sym_LBRACE = 34, - anon_sym_RBRACE = 35, - anon_sym_BSLASHand = 36, - sym_word = 37, - sym_placeholder = 38, - sym_path = 39, - sym_argc = 40, - aux_sym__glob_pattern_fragment_token1 = 41, - anon_sym_PLUS = 42, - anon_sym_DASH = 43, - anon_sym_STAR = 44, - anon_sym_SLASH = 45, - anon_sym_LT = 46, - anon_sym_GT = 47, - anon_sym_BANG = 48, - anon_sym_PIPE = 49, - anon_sym_COLON = 50, - anon_sym_SQUOTE = 51, - anon_sym__ = 52, - anon_sym_CARET = 53, - anon_sym_DOLLAR_DOLLAR = 54, - anon_sym_BSLASH_LBRACK = 55, - anon_sym_BSLASH_RBRACK = 56, - anon_sym_DOLLAR = 57, - anon_sym_BSLASH_LPAREN = 58, - anon_sym_BSLASH_RPAREN = 59, - anon_sym_BSLASHbegin = 60, - anon_sym_BSLASHend = 61, - anon_sym_comment = 62, - anon_sym_verbatim = 63, - anon_sym_lstlisting = 64, - anon_sym_minted = 65, - anon_sym_pycode = 66, - anon_sym_displaymath = 67, - anon_sym_displaymath_STAR = 68, - anon_sym_equation = 69, - anon_sym_equation_STAR = 70, - anon_sym_multline = 71, - anon_sym_multline_STAR = 72, - anon_sym_eqnarray = 73, - anon_sym_eqnarray_STAR = 74, - anon_sym_align = 75, - anon_sym_align_STAR = 76, - anon_sym_array = 77, - anon_sym_array_STAR = 78, - anon_sym_split = 79, - anon_sym_split_STAR = 80, - anon_sym_alignat = 81, - anon_sym_alignat_STAR = 82, - anon_sym_gather = 83, - anon_sym_gather_STAR = 84, - anon_sym_flalign = 85, - anon_sym_flalign_STAR = 86, - anon_sym_BSLASHtitle = 87, - anon_sym_BSLASHauthor = 88, - anon_sym_BSLASHusepackage = 89, - anon_sym_BSLASHRequirePackage = 90, - anon_sym_BSLASHdocumentclass = 91, - anon_sym_BSLASHinclude = 92, - anon_sym_BSLASHsubfileinclude = 93, - anon_sym_BSLASHinput = 94, - anon_sym_BSLASHsubfile = 95, - anon_sym_BSLASHaddbibresource = 96, - anon_sym_BSLASHbibliography = 97, - anon_sym_BSLASHincludegraphics = 98, - anon_sym_BSLASHincludesvg = 99, - anon_sym_BSLASHincludeinkscape = 100, - anon_sym_BSLASHverbatiminput = 101, - anon_sym_BSLASHVerbatimInput = 102, - anon_sym_BSLASHimport = 103, - anon_sym_BSLASHsubimport = 104, - anon_sym_BSLASHinputfrom = 105, - anon_sym_BSLASHsubimportfrom = 106, - anon_sym_BSLASHincludefrom = 107, - anon_sym_BSLASHsubincludefrom = 108, - anon_sym_BSLASHcaption = 109, - anon_sym_BSLASHcite = 110, - anon_sym_BSLASHcite_STAR = 111, - anon_sym_BSLASHCite = 112, - anon_sym_BSLASHnocite = 113, - anon_sym_BSLASHcitet = 114, - anon_sym_BSLASHcitep = 115, - anon_sym_BSLASHcitet_STAR = 116, - anon_sym_BSLASHcitep_STAR = 117, - anon_sym_BSLASHciteauthor = 118, - anon_sym_BSLASHciteauthor_STAR = 119, - anon_sym_BSLASHCiteauthor = 120, - anon_sym_BSLASHCiteauthor_STAR = 121, - anon_sym_BSLASHcitetitle = 122, - anon_sym_BSLASHcitetitle_STAR = 123, - anon_sym_BSLASHciteyear = 124, - anon_sym_BSLASHciteyear_STAR = 125, - anon_sym_BSLASHcitedate = 126, - anon_sym_BSLASHcitedate_STAR = 127, - anon_sym_BSLASHciteurl = 128, - anon_sym_BSLASHfullcite = 129, - anon_sym_BSLASHciteyearpar = 130, - anon_sym_BSLASHcitealt = 131, - anon_sym_BSLASHcitealp = 132, - anon_sym_BSLASHcitetext = 133, - anon_sym_BSLASHparencite = 134, - anon_sym_BSLASHparencite_STAR = 135, - anon_sym_BSLASHParencite = 136, - anon_sym_BSLASHfootcite = 137, - anon_sym_BSLASHfootfullcite = 138, - anon_sym_BSLASHfootcitetext = 139, - anon_sym_BSLASHtextcite = 140, - anon_sym_BSLASHTextcite = 141, - anon_sym_BSLASHsmartcite = 142, - anon_sym_BSLASHSmartcite = 143, - anon_sym_BSLASHsupercite = 144, - anon_sym_BSLASHautocite = 145, - anon_sym_BSLASHAutocite = 146, - anon_sym_BSLASHautocite_STAR = 147, - anon_sym_BSLASHAutocite_STAR = 148, - anon_sym_BSLASHvolcite = 149, - anon_sym_BSLASHVolcite = 150, - anon_sym_BSLASHpvolcite = 151, - anon_sym_BSLASHPvolcite = 152, - anon_sym_BSLASHfvolcite = 153, - anon_sym_BSLASHftvolcite = 154, - anon_sym_BSLASHsvolcite = 155, - anon_sym_BSLASHSvolcite = 156, - anon_sym_BSLASHtvolcite = 157, - anon_sym_BSLASHTvolcite = 158, - anon_sym_BSLASHavolcite = 159, - anon_sym_BSLASHAvolcite = 160, - anon_sym_BSLASHnotecite = 161, - anon_sym_BSLASHNotecite = 162, - anon_sym_BSLASHpnotecite = 163, - anon_sym_BSLASHPnotecite = 164, - anon_sym_BSLASHfnotecite = 165, - anon_sym_BSLASHlabel = 166, - anon_sym_BSLASHref = 167, - anon_sym_BSLASHeqref = 168, - anon_sym_BSLASHvref = 169, - anon_sym_BSLASHVref = 170, - anon_sym_BSLASHautoref = 171, - anon_sym_BSLASHpageref = 172, - anon_sym_BSLASHcref = 173, - anon_sym_BSLASHCref = 174, - anon_sym_BSLASHcref_STAR = 175, - anon_sym_BSLASHCref_STAR = 176, - anon_sym_BSLASHnamecref = 177, - anon_sym_BSLASHnameCref = 178, - anon_sym_BSLASHlcnamecref = 179, - anon_sym_BSLASHnamecrefs = 180, - anon_sym_BSLASHnameCrefs = 181, - anon_sym_BSLASHlcnamecrefs = 182, - anon_sym_BSLASHlabelcref = 183, - anon_sym_BSLASHlabelcpageref = 184, - anon_sym_BSLASHcrefrange = 185, - anon_sym_BSLASHcrefrange_STAR = 186, - anon_sym_BSLASHCrefrange = 187, - anon_sym_BSLASHCrefrange_STAR = 188, - anon_sym_BSLASHnewlabel = 189, - anon_sym_BSLASHnewcommand = 190, - anon_sym_BSLASHnewcommand_STAR = 191, - anon_sym_BSLASHrenewcommand = 192, - anon_sym_BSLASHrenewcommand_STAR = 193, - anon_sym_BSLASHDeclareRobustCommand = 194, - anon_sym_BSLASHDeclareRobustCommand_STAR = 195, - anon_sym_BSLASHDeclareMathOperator = 196, - anon_sym_BSLASHDeclareMathOperator_STAR = 197, - anon_sym_BSLASHNewDocumentCommand = 198, - anon_sym_BSLASHRenewDocumentCommand = 199, - anon_sym_BSLASHProvideDocumentCommand = 200, - anon_sym_BSLASHDeclareDocumentCommand = 201, - anon_sym_BSLASHNewExpandableDocumentCommand = 202, - anon_sym_BSLASHRenewExpandableDocumentCommand = 203, - anon_sym_BSLASHProvideExpandableDocumentCommand = 204, - anon_sym_BSLASHDeclareExpandableDocumentCommand = 205, - anon_sym_BSLASHdef = 206, - anon_sym_BSLASHlet = 207, - anon_sym_BSLASHleft = 208, - anon_sym_BSLASHbig = 209, - anon_sym_BSLASHBig = 210, - anon_sym_BSLASHbigg = 211, - anon_sym_BSLASHBigg = 212, - anon_sym_BSLASHbigl = 213, - anon_sym_BSLASHBigl = 214, - anon_sym_BSLASHbiggl = 215, - anon_sym_BSLASHBiggl = 216, - anon_sym_BSLASHright = 217, - anon_sym_BSLASHbigr = 218, - anon_sym_BSLASHBigr = 219, - anon_sym_BSLASHbiggr = 220, - anon_sym_BSLASHBiggr = 221, - anon_sym_BSLASHDeclarePairedDelimiter = 222, - anon_sym_BSLASHDeclarePairedDelimiterX = 223, - anon_sym_BSLASHnewenvironment = 224, - anon_sym_BSLASHrenewenvironment = 225, - anon_sym_BSLASHNewDocumentEnvironment = 226, - anon_sym_BSLASHRenewDocumentEnvironment = 227, - anon_sym_BSLASHProvideDocumentEnvironment = 228, - anon_sym_BSLASHDeclareDocumentEnvironment = 229, - anon_sym_BSLASHnewglossaryentry = 230, - anon_sym_BSLASHgls = 231, - anon_sym_BSLASHGls = 232, - anon_sym_BSLASHGLS = 233, - anon_sym_BSLASHglspl = 234, - anon_sym_BSLASHGlspl = 235, - anon_sym_BSLASHGLSpl = 236, - anon_sym_BSLASHglsdisp = 237, - anon_sym_BSLASHglslink = 238, - anon_sym_BSLASHglstext = 239, - anon_sym_BSLASHGlstext = 240, - anon_sym_BSLASHGLStext = 241, - anon_sym_BSLASHglsfirst = 242, - anon_sym_BSLASHGlsfirst = 243, - anon_sym_BSLASHGLSfirst = 244, - anon_sym_BSLASHglsplural = 245, - anon_sym_BSLASHGlsplural = 246, - anon_sym_BSLASHGLSplural = 247, - anon_sym_BSLASHglsfirstplural = 248, - anon_sym_BSLASHGlsfirstplural = 249, - anon_sym_BSLASHGLSfirstplural = 250, - anon_sym_BSLASHglsname = 251, - anon_sym_BSLASHGlsname = 252, - anon_sym_BSLASHGLSname = 253, - anon_sym_BSLASHglssymbol = 254, - anon_sym_BSLASHGlssymbol = 255, - anon_sym_BSLASHglsdesc = 256, - anon_sym_BSLASHGlsdesc = 257, - anon_sym_BSLASHGLSdesc = 258, - anon_sym_BSLASHglsuseri = 259, - anon_sym_BSLASHGlsuseri = 260, - anon_sym_BSLASHGLSuseri = 261, - anon_sym_BSLASHglsuserii = 262, - anon_sym_BSLASHGlsuserii = 263, - anon_sym_BSLASHGLSuserii = 264, - anon_sym_BSLASHglsuseriii = 265, - anon_sym_BSLASHGlsuseriii = 266, - anon_sym_BSLASHGLSuseriii = 267, - anon_sym_BSLASHglsuseriv = 268, - anon_sym_BSLASHGlsuseriv = 269, - anon_sym_BSLASHGLSuseriv = 270, - anon_sym_BSLASHglsuserv = 271, - anon_sym_BSLASHGlsuserv = 272, - anon_sym_BSLASHGLSuserv = 273, - anon_sym_BSLASHglsuservi = 274, - anon_sym_BSLASHGlsuservi = 275, - anon_sym_BSLASHGLSuservi = 276, - anon_sym_BSLASHnewacronym = 277, - anon_sym_BSLASHacrshort = 278, - anon_sym_BSLASHAcrshort = 279, - anon_sym_BSLASHACRshort = 280, - anon_sym_BSLASHacrshortpl = 281, - anon_sym_BSLASHAcrshortpl = 282, - anon_sym_BSLASHACRshortpl = 283, - anon_sym_BSLASHacrlong = 284, - anon_sym_BSLASHAcrlong = 285, - anon_sym_BSLASHACRlong = 286, - anon_sym_BSLASHacrlongpl = 287, - anon_sym_BSLASHAcrlongpl = 288, - anon_sym_BSLASHACRlongpl = 289, - anon_sym_BSLASHacrfull = 290, - anon_sym_BSLASHAcrfull = 291, - anon_sym_BSLASHACRfull = 292, - anon_sym_BSLASHacrfullpl = 293, - anon_sym_BSLASHAcrfullpl = 294, - anon_sym_BSLASHACRfullpl = 295, - anon_sym_BSLASHacs = 296, - anon_sym_BSLASHAcs = 297, - anon_sym_BSLASHacsp = 298, - anon_sym_BSLASHAcsp = 299, - anon_sym_BSLASHacl = 300, - anon_sym_BSLASHAcl = 301, - anon_sym_BSLASHaclp = 302, - anon_sym_BSLASHAclp = 303, - anon_sym_BSLASHacf = 304, - anon_sym_BSLASHAcf = 305, - anon_sym_BSLASHacfp = 306, - anon_sym_BSLASHAcfp = 307, - anon_sym_BSLASHac = 308, - anon_sym_BSLASHAc = 309, - anon_sym_BSLASHacp = 310, - anon_sym_BSLASHglsentrylong = 311, - anon_sym_BSLASHGlsentrylong = 312, - anon_sym_BSLASHglsentrylongpl = 313, - anon_sym_BSLASHGlsentrylongpl = 314, - anon_sym_BSLASHglsentryshort = 315, - anon_sym_BSLASHGlsentryshort = 316, - anon_sym_BSLASHglsentryshortpl = 317, - anon_sym_BSLASHGlsentryshortpl = 318, - anon_sym_BSLASHglsentryfullpl = 319, - anon_sym_BSLASHGlsentryfullpl = 320, - anon_sym_BSLASHnewtheorem = 321, - anon_sym_BSLASHnewtheorem_STAR = 322, - anon_sym_BSLASHdeclaretheorem = 323, - anon_sym_BSLASHdeclaretheorem_STAR = 324, - anon_sym_BSLASHdefinecolor = 325, - anon_sym_BSLASHdefinecolorset = 326, - anon_sym_BSLASHcolor = 327, - anon_sym_BSLASHcolorbox = 328, - anon_sym_BSLASHtextcolor = 329, - anon_sym_BSLASHpagecolor = 330, - anon_sym_BSLASHusepgflibrary = 331, - anon_sym_BSLASHusetikzlibrary = 332, - anon_sym_BSLASHtext = 333, - anon_sym_BSLASHintertext = 334, - anon_sym_shortintertext = 335, - sym__trivia_raw_fi = 336, - sym__trivia_raw_env_comment = 337, - sym__trivia_raw_env_verbatim = 338, - sym__trivia_raw_env_listing = 339, - sym__trivia_raw_env_minted = 340, - sym__trivia_raw_env_pycode = 341, - sym_source_file = 342, - sym_block_comment = 343, - sym__root_content = 344, - sym__flat_content = 345, - sym__text_with_env_content = 346, - sym__text_content = 347, - sym__section = 348, - sym__section_part = 349, - sym__part_declaration = 350, - sym_part = 351, - sym__chapter_declaration = 352, - sym_chapter = 353, - sym__section_declaration = 354, - sym_section = 355, - sym__subsection_declaration = 356, - sym_subsection = 357, - sym__subsubsection_declaration = 358, - sym_subsubsection = 359, - sym__paragraph_declaration = 360, - sym_paragraph = 361, - sym__subparagraph_declaration = 362, - sym_subparagraph = 363, - sym__enum_itemdeclaration = 364, - sym_enum_item = 365, - sym_curly_group = 366, - sym_curly_group_text = 367, - sym_curly_group_text_list = 368, - sym_curly_group_path = 369, - sym_curly_group_path_list = 370, - sym_curly_group_command_name = 371, - sym_curly_group_key_value = 372, - sym_curly_group_glob_pattern = 373, - sym_curly_group_impl = 374, - sym_curly_group_author_list = 375, - sym_brack_group = 376, - sym_brack_group_text = 377, - sym_brack_group_argc = 378, - sym_brack_group_key_value = 379, - sym_text = 380, - sym_glob_pattern = 381, - sym__glob_pattern_fragment = 382, - sym_operator = 383, - sym_subscript = 384, - sym_superscript = 385, - sym_key_value_pair = 386, - sym_value = 387, - sym_displayed_equation = 388, - sym_inline_formula = 389, - sym_begin = 390, - sym_end = 391, - sym_generic_environment = 392, - sym_comment_environment = 393, - sym__comment_environment_begin = 394, - sym__comment_environment_end = 395, - sym__comment_environment_group = 396, - sym__comment_environment_name = 397, - sym_verbatim_environment = 398, - sym__verbatim_environment_begin = 399, - sym__verbatim_environment_end = 400, - sym__verbatim_environment_group = 401, - sym__verbatim_environment_name = 402, - sym_listing_environment = 403, - sym__listing_environment_begin = 404, - sym__listing_environment_end = 405, - sym__listing_environment_group = 406, - sym__listing_environment_name = 407, - sym_minted_environment = 408, - sym__minted_environment_begin = 409, - sym__minted_environment_end = 410, - sym__minted_environment_group = 411, - sym__minted_environment_name = 412, - sym_pycode_environment = 413, - sym__pycode_environment_begin = 414, - sym__pycode_environment_end = 415, - sym__pycode_environment_group = 416, - sym__pycode_environment_name = 417, - sym_math_environment = 418, - sym__math_environment_begin = 419, - sym__math_environment_end = 420, - sym__math_environment_group = 421, - sym__math_environment_name = 422, - sym__command = 423, - sym_generic_command = 424, - sym_title_declaration = 425, - sym_author_declaration = 426, - sym_package_include = 427, - sym_class_include = 428, - sym_latex_include = 429, - sym_biblatex_include = 430, - sym_bibtex_include = 431, - sym_graphics_include = 432, - sym_svg_include = 433, - sym_inkscape_include = 434, - sym_verbatim_include = 435, - sym_import_include = 436, - sym_caption = 437, - sym_citation = 438, - sym_label_definition = 439, - sym_label_reference = 440, - sym_label_reference_range = 441, - sym_label_number = 442, - sym_new_command_definition = 443, - sym_old_command_definition = 444, - sym_let_command_definition = 445, - sym__math_delimiter_part = 446, - sym_math_delimiter = 447, - sym_paired_delimiter_definition = 448, - sym_environment_definition = 449, - sym_glossary_entry_definition = 450, - sym_glossary_entry_reference = 451, - sym_acronym_definition = 452, - sym_acronym_reference = 453, - sym_theorem_definition = 454, - sym_color_definition = 455, - sym_color_set_definition = 456, - sym_color_reference = 457, - sym_tikz_library_import = 458, - sym_text_mode = 459, - aux_sym_source_file_repeat1 = 460, - aux_sym__section_repeat1 = 461, - aux_sym__section_repeat2 = 462, - aux_sym__section_repeat3 = 463, - aux_sym__section_repeat4 = 464, - aux_sym__section_repeat5 = 465, - aux_sym__section_repeat6 = 466, - aux_sym__section_repeat7 = 467, - aux_sym__section_repeat8 = 468, - aux_sym_part_repeat1 = 469, - aux_sym_curly_group_text_list_repeat1 = 470, - aux_sym_curly_group_path_list_repeat1 = 471, - aux_sym_curly_group_key_value_repeat1 = 472, - aux_sym_curly_group_impl_repeat1 = 473, - aux_sym_curly_group_author_list_repeat1 = 474, - aux_sym_curly_group_author_list_repeat2 = 475, - aux_sym_brack_group_repeat1 = 476, - aux_sym_text_repeat1 = 477, - aux_sym_glob_pattern_repeat1 = 478, - aux_sym_value_repeat1 = 479, - aux_sym_generic_command_repeat1 = 480, - alias_sym_author = 481, -}; - -static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", - [sym_command_name] = "command_name", - [sym__whitespace] = "_whitespace", - [sym_line_comment] = "line_comment", - [anon_sym_BSLASHiffalse] = "\\iffalse", - [anon_sym_BSLASHfi] = "\\fi", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", - [anon_sym_COMMA] = ",", - [anon_sym_EQ] = "=", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", - [anon_sym_BSLASHpart] = "\\part", - [anon_sym_BSLASHpart_STAR] = "\\part*", - [anon_sym_BSLASHaddpart] = "\\addpart", - [anon_sym_BSLASHaddpart_STAR] = "\\addpart*", - [anon_sym_BSLASHchapter] = "\\chapter", - [anon_sym_BSLASHchapter_STAR] = "\\chapter*", - [anon_sym_BSLASHaddchap] = "\\addchap", - [anon_sym_BSLASHaddchap_STAR] = "\\addchap*", - [anon_sym_BSLASHsection] = "\\section", - [anon_sym_BSLASHsection_STAR] = "\\section*", - [anon_sym_BSLASHaddsec] = "\\addsec", - [anon_sym_BSLASHaddsec_STAR] = "\\addsec*", - [anon_sym_BSLASHsubsection] = "\\subsection", - [anon_sym_BSLASHsubsection_STAR] = "\\subsection*", - [anon_sym_BSLASHsubsubsection] = "\\subsubsection", - [anon_sym_BSLASHsubsubsection_STAR] = "\\subsubsection*", - [anon_sym_BSLASHparagraph] = "\\paragraph", - [anon_sym_BSLASHparagraph_STAR] = "\\paragraph*", - [anon_sym_BSLASHsubparagraph] = "\\subparagraph", - [anon_sym_BSLASHsubparagraph_STAR] = "\\subparagraph*", - [anon_sym_BSLASHitem] = "\\item", - [anon_sym_BSLASHitem_STAR] = "\\item*", - [anon_sym_LBRACE] = "{", - [anon_sym_RBRACE] = "}", - [anon_sym_BSLASHand] = "command_name", - [sym_word] = "word", - [sym_placeholder] = "placeholder", - [sym_path] = "path", - [sym_argc] = "argc", - [aux_sym__glob_pattern_fragment_token1] = "_glob_pattern_fragment_token1", - [anon_sym_PLUS] = "+", - [anon_sym_DASH] = "-", - [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", - [anon_sym_LT] = "<", - [anon_sym_GT] = ">", - [anon_sym_BANG] = "!", - [anon_sym_PIPE] = "|", - [anon_sym_COLON] = ":", - [anon_sym_SQUOTE] = "'", - [anon_sym__] = "_", - [anon_sym_CARET] = "^", - [anon_sym_DOLLAR_DOLLAR] = "$$", - [anon_sym_BSLASH_LBRACK] = "\\[", - [anon_sym_BSLASH_RBRACK] = "\\]", - [anon_sym_DOLLAR] = "$", - [anon_sym_BSLASH_LPAREN] = "\\(", - [anon_sym_BSLASH_RPAREN] = "\\)", - [anon_sym_BSLASHbegin] = "\\begin", - [anon_sym_BSLASHend] = "\\end", - [anon_sym_comment] = "word", - [anon_sym_verbatim] = "word", - [anon_sym_lstlisting] = "word", - [anon_sym_minted] = "word", - [anon_sym_pycode] = "word", - [anon_sym_displaymath] = "word", - [anon_sym_displaymath_STAR] = "word", - [anon_sym_equation] = "word", - [anon_sym_equation_STAR] = "word", - [anon_sym_multline] = "word", - [anon_sym_multline_STAR] = "word", - [anon_sym_eqnarray] = "word", - [anon_sym_eqnarray_STAR] = "word", - [anon_sym_align] = "word", - [anon_sym_align_STAR] = "word", - [anon_sym_array] = "word", - [anon_sym_array_STAR] = "word", - [anon_sym_split] = "word", - [anon_sym_split_STAR] = "word", - [anon_sym_alignat] = "word", - [anon_sym_alignat_STAR] = "word", - [anon_sym_gather] = "word", - [anon_sym_gather_STAR] = "word", - [anon_sym_flalign] = "word", - [anon_sym_flalign_STAR] = "word", - [anon_sym_BSLASHtitle] = "\\title", - [anon_sym_BSLASHauthor] = "\\author", - [anon_sym_BSLASHusepackage] = "\\usepackage", - [anon_sym_BSLASHRequirePackage] = "\\RequirePackage", - [anon_sym_BSLASHdocumentclass] = "\\documentclass", - [anon_sym_BSLASHinclude] = "\\include", - [anon_sym_BSLASHsubfileinclude] = "\\subfileinclude", - [anon_sym_BSLASHinput] = "\\input", - [anon_sym_BSLASHsubfile] = "\\subfile", - [anon_sym_BSLASHaddbibresource] = "\\addbibresource", - [anon_sym_BSLASHbibliography] = "\\bibliography", - [anon_sym_BSLASHincludegraphics] = "\\includegraphics", - [anon_sym_BSLASHincludesvg] = "\\includesvg", - [anon_sym_BSLASHincludeinkscape] = "\\includeinkscape", - [anon_sym_BSLASHverbatiminput] = "\\verbatiminput", - [anon_sym_BSLASHVerbatimInput] = "\\VerbatimInput", - [anon_sym_BSLASHimport] = "\\import", - [anon_sym_BSLASHsubimport] = "\\subimport", - [anon_sym_BSLASHinputfrom] = "\\inputfrom", - [anon_sym_BSLASHsubimportfrom] = "\\subimportfrom", - [anon_sym_BSLASHincludefrom] = "\\includefrom", - [anon_sym_BSLASHsubincludefrom] = "\\subincludefrom", - [anon_sym_BSLASHcaption] = "\\caption", - [anon_sym_BSLASHcite] = "\\cite", - [anon_sym_BSLASHcite_STAR] = "\\cite*", - [anon_sym_BSLASHCite] = "\\Cite", - [anon_sym_BSLASHnocite] = "\\nocite", - [anon_sym_BSLASHcitet] = "\\citet", - [anon_sym_BSLASHcitep] = "\\citep", - [anon_sym_BSLASHcitet_STAR] = "\\citet*", - [anon_sym_BSLASHcitep_STAR] = "\\citep*", - [anon_sym_BSLASHciteauthor] = "\\citeauthor", - [anon_sym_BSLASHciteauthor_STAR] = "\\citeauthor*", - [anon_sym_BSLASHCiteauthor] = "\\Citeauthor", - [anon_sym_BSLASHCiteauthor_STAR] = "\\Citeauthor*", - [anon_sym_BSLASHcitetitle] = "\\citetitle", - [anon_sym_BSLASHcitetitle_STAR] = "\\citetitle*", - [anon_sym_BSLASHciteyear] = "\\citeyear", - [anon_sym_BSLASHciteyear_STAR] = "\\citeyear*", - [anon_sym_BSLASHcitedate] = "\\citedate", - [anon_sym_BSLASHcitedate_STAR] = "\\citedate*", - [anon_sym_BSLASHciteurl] = "\\citeurl", - [anon_sym_BSLASHfullcite] = "\\fullcite", - [anon_sym_BSLASHciteyearpar] = "\\citeyearpar", - [anon_sym_BSLASHcitealt] = "\\citealt", - [anon_sym_BSLASHcitealp] = "\\citealp", - [anon_sym_BSLASHcitetext] = "\\citetext", - [anon_sym_BSLASHparencite] = "\\parencite", - [anon_sym_BSLASHparencite_STAR] = "\\parencite*", - [anon_sym_BSLASHParencite] = "\\Parencite", - [anon_sym_BSLASHfootcite] = "\\footcite", - [anon_sym_BSLASHfootfullcite] = "\\footfullcite", - [anon_sym_BSLASHfootcitetext] = "\\footcitetext", - [anon_sym_BSLASHtextcite] = "\\textcite", - [anon_sym_BSLASHTextcite] = "\\Textcite", - [anon_sym_BSLASHsmartcite] = "\\smartcite", - [anon_sym_BSLASHSmartcite] = "\\Smartcite", - [anon_sym_BSLASHsupercite] = "\\supercite", - [anon_sym_BSLASHautocite] = "\\autocite", - [anon_sym_BSLASHAutocite] = "\\Autocite", - [anon_sym_BSLASHautocite_STAR] = "\\autocite*", - [anon_sym_BSLASHAutocite_STAR] = "\\Autocite*", - [anon_sym_BSLASHvolcite] = "\\volcite", - [anon_sym_BSLASHVolcite] = "\\Volcite", - [anon_sym_BSLASHpvolcite] = "\\pvolcite", - [anon_sym_BSLASHPvolcite] = "\\Pvolcite", - [anon_sym_BSLASHfvolcite] = "\\fvolcite", - [anon_sym_BSLASHftvolcite] = "\\ftvolcite", - [anon_sym_BSLASHsvolcite] = "\\svolcite", - [anon_sym_BSLASHSvolcite] = "\\Svolcite", - [anon_sym_BSLASHtvolcite] = "\\tvolcite", - [anon_sym_BSLASHTvolcite] = "\\Tvolcite", - [anon_sym_BSLASHavolcite] = "\\avolcite", - [anon_sym_BSLASHAvolcite] = "\\Avolcite", - [anon_sym_BSLASHnotecite] = "\\notecite", - [anon_sym_BSLASHNotecite] = "\\Notecite", - [anon_sym_BSLASHpnotecite] = "\\pnotecite", - [anon_sym_BSLASHPnotecite] = "\\Pnotecite", - [anon_sym_BSLASHfnotecite] = "\\fnotecite", - [anon_sym_BSLASHlabel] = "\\label", - [anon_sym_BSLASHref] = "\\ref", - [anon_sym_BSLASHeqref] = "\\eqref", - [anon_sym_BSLASHvref] = "\\vref", - [anon_sym_BSLASHVref] = "\\Vref", - [anon_sym_BSLASHautoref] = "\\autoref", - [anon_sym_BSLASHpageref] = "\\pageref", - [anon_sym_BSLASHcref] = "\\cref", - [anon_sym_BSLASHCref] = "\\Cref", - [anon_sym_BSLASHcref_STAR] = "\\cref*", - [anon_sym_BSLASHCref_STAR] = "\\Cref*", - [anon_sym_BSLASHnamecref] = "\\namecref", - [anon_sym_BSLASHnameCref] = "\\nameCref", - [anon_sym_BSLASHlcnamecref] = "\\lcnamecref", - [anon_sym_BSLASHnamecrefs] = "\\namecrefs", - [anon_sym_BSLASHnameCrefs] = "\\nameCrefs", - [anon_sym_BSLASHlcnamecrefs] = "\\lcnamecrefs", - [anon_sym_BSLASHlabelcref] = "\\labelcref", - [anon_sym_BSLASHlabelcpageref] = "\\labelcpageref", - [anon_sym_BSLASHcrefrange] = "\\crefrange", - [anon_sym_BSLASHcrefrange_STAR] = "\\crefrange*", - [anon_sym_BSLASHCrefrange] = "\\Crefrange", - [anon_sym_BSLASHCrefrange_STAR] = "\\Crefrange*", - [anon_sym_BSLASHnewlabel] = "\\newlabel", - [anon_sym_BSLASHnewcommand] = "\\newcommand", - [anon_sym_BSLASHnewcommand_STAR] = "\\newcommand*", - [anon_sym_BSLASHrenewcommand] = "\\renewcommand", - [anon_sym_BSLASHrenewcommand_STAR] = "\\renewcommand*", - [anon_sym_BSLASHDeclareRobustCommand] = "\\DeclareRobustCommand", - [anon_sym_BSLASHDeclareRobustCommand_STAR] = "\\DeclareRobustCommand*", - [anon_sym_BSLASHDeclareMathOperator] = "\\DeclareMathOperator", - [anon_sym_BSLASHDeclareMathOperator_STAR] = "\\DeclareMathOperator*", - [anon_sym_BSLASHNewDocumentCommand] = "\\NewDocumentCommand", - [anon_sym_BSLASHRenewDocumentCommand] = "\\RenewDocumentCommand", - [anon_sym_BSLASHProvideDocumentCommand] = "\\ProvideDocumentCommand", - [anon_sym_BSLASHDeclareDocumentCommand] = "\\DeclareDocumentCommand", - [anon_sym_BSLASHNewExpandableDocumentCommand] = "\\NewExpandableDocumentCommand", - [anon_sym_BSLASHRenewExpandableDocumentCommand] = "\\RenewExpandableDocumentCommand", - [anon_sym_BSLASHProvideExpandableDocumentCommand] = "\\ProvideExpandableDocumentCommand", - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = "\\DeclareExpandableDocumentCommand", - [anon_sym_BSLASHdef] = "\\def", - [anon_sym_BSLASHlet] = "\\let", - [anon_sym_BSLASHleft] = "\\left", - [anon_sym_BSLASHbig] = "\\big", - [anon_sym_BSLASHBig] = "\\Big", - [anon_sym_BSLASHbigg] = "\\bigg", - [anon_sym_BSLASHBigg] = "\\Bigg", - [anon_sym_BSLASHbigl] = "\\bigl", - [anon_sym_BSLASHBigl] = "\\Bigl", - [anon_sym_BSLASHbiggl] = "\\biggl", - [anon_sym_BSLASHBiggl] = "\\Biggl", - [anon_sym_BSLASHright] = "\\right", - [anon_sym_BSLASHbigr] = "\\bigr", - [anon_sym_BSLASHBigr] = "\\Bigr", - [anon_sym_BSLASHbiggr] = "\\biggr", - [anon_sym_BSLASHBiggr] = "\\Biggr", - [anon_sym_BSLASHDeclarePairedDelimiter] = "\\DeclarePairedDelimiter", - [anon_sym_BSLASHDeclarePairedDelimiterX] = "\\DeclarePairedDelimiterX", - [anon_sym_BSLASHnewenvironment] = "\\newenvironment", - [anon_sym_BSLASHrenewenvironment] = "\\renewenvironment", - [anon_sym_BSLASHNewDocumentEnvironment] = "\\NewDocumentEnvironment", - [anon_sym_BSLASHRenewDocumentEnvironment] = "\\RenewDocumentEnvironment", - [anon_sym_BSLASHProvideDocumentEnvironment] = "\\ProvideDocumentEnvironment", - [anon_sym_BSLASHDeclareDocumentEnvironment] = "\\DeclareDocumentEnvironment", - [anon_sym_BSLASHnewglossaryentry] = "\\newglossaryentry", - [anon_sym_BSLASHgls] = "\\gls", - [anon_sym_BSLASHGls] = "\\Gls", - [anon_sym_BSLASHGLS] = "\\GLS", - [anon_sym_BSLASHglspl] = "\\glspl", - [anon_sym_BSLASHGlspl] = "\\Glspl", - [anon_sym_BSLASHGLSpl] = "\\GLSpl", - [anon_sym_BSLASHglsdisp] = "\\glsdisp", - [anon_sym_BSLASHglslink] = "\\glslink", - [anon_sym_BSLASHglstext] = "\\glstext", - [anon_sym_BSLASHGlstext] = "\\Glstext", - [anon_sym_BSLASHGLStext] = "\\GLStext", - [anon_sym_BSLASHglsfirst] = "\\glsfirst", - [anon_sym_BSLASHGlsfirst] = "\\Glsfirst", - [anon_sym_BSLASHGLSfirst] = "\\GLSfirst", - [anon_sym_BSLASHglsplural] = "\\glsplural", - [anon_sym_BSLASHGlsplural] = "\\Glsplural", - [anon_sym_BSLASHGLSplural] = "\\GLSplural", - [anon_sym_BSLASHglsfirstplural] = "\\glsfirstplural", - [anon_sym_BSLASHGlsfirstplural] = "\\Glsfirstplural", - [anon_sym_BSLASHGLSfirstplural] = "\\GLSfirstplural", - [anon_sym_BSLASHglsname] = "\\glsname", - [anon_sym_BSLASHGlsname] = "\\Glsname", - [anon_sym_BSLASHGLSname] = "\\GLSname", - [anon_sym_BSLASHglssymbol] = "\\glssymbol", - [anon_sym_BSLASHGlssymbol] = "\\Glssymbol", - [anon_sym_BSLASHglsdesc] = "\\glsdesc", - [anon_sym_BSLASHGlsdesc] = "\\Glsdesc", - [anon_sym_BSLASHGLSdesc] = "\\GLSdesc", - [anon_sym_BSLASHglsuseri] = "\\glsuseri", - [anon_sym_BSLASHGlsuseri] = "\\Glsuseri", - [anon_sym_BSLASHGLSuseri] = "\\GLSuseri", - [anon_sym_BSLASHglsuserii] = "\\glsuserii", - [anon_sym_BSLASHGlsuserii] = "\\Glsuserii", - [anon_sym_BSLASHGLSuserii] = "\\GLSuserii", - [anon_sym_BSLASHglsuseriii] = "\\glsuseriii", - [anon_sym_BSLASHGlsuseriii] = "\\Glsuseriii", - [anon_sym_BSLASHGLSuseriii] = "\\GLSuseriii", - [anon_sym_BSLASHglsuseriv] = "\\glsuseriv", - [anon_sym_BSLASHGlsuseriv] = "\\Glsuseriv", - [anon_sym_BSLASHGLSuseriv] = "\\GLSuseriv", - [anon_sym_BSLASHglsuserv] = "\\glsuserv", - [anon_sym_BSLASHGlsuserv] = "\\Glsuserv", - [anon_sym_BSLASHGLSuserv] = "\\GLSuserv", - [anon_sym_BSLASHglsuservi] = "\\glsuservi", - [anon_sym_BSLASHGlsuservi] = "\\Glsuservi", - [anon_sym_BSLASHGLSuservi] = "\\GLSuservi", - [anon_sym_BSLASHnewacronym] = "\\newacronym", - [anon_sym_BSLASHacrshort] = "\\acrshort", - [anon_sym_BSLASHAcrshort] = "\\Acrshort", - [anon_sym_BSLASHACRshort] = "\\ACRshort", - [anon_sym_BSLASHacrshortpl] = "\\acrshortpl", - [anon_sym_BSLASHAcrshortpl] = "\\Acrshortpl", - [anon_sym_BSLASHACRshortpl] = "\\ACRshortpl", - [anon_sym_BSLASHacrlong] = "\\acrlong", - [anon_sym_BSLASHAcrlong] = "\\Acrlong", - [anon_sym_BSLASHACRlong] = "\\ACRlong", - [anon_sym_BSLASHacrlongpl] = "\\acrlongpl", - [anon_sym_BSLASHAcrlongpl] = "\\Acrlongpl", - [anon_sym_BSLASHACRlongpl] = "\\ACRlongpl", - [anon_sym_BSLASHacrfull] = "\\acrfull", - [anon_sym_BSLASHAcrfull] = "\\Acrfull", - [anon_sym_BSLASHACRfull] = "\\ACRfull", - [anon_sym_BSLASHacrfullpl] = "\\acrfullpl", - [anon_sym_BSLASHAcrfullpl] = "\\Acrfullpl", - [anon_sym_BSLASHACRfullpl] = "\\ACRfullpl", - [anon_sym_BSLASHacs] = "\\acs", - [anon_sym_BSLASHAcs] = "\\Acs", - [anon_sym_BSLASHacsp] = "\\acsp", - [anon_sym_BSLASHAcsp] = "\\Acsp", - [anon_sym_BSLASHacl] = "\\acl", - [anon_sym_BSLASHAcl] = "\\Acl", - [anon_sym_BSLASHaclp] = "\\aclp", - [anon_sym_BSLASHAclp] = "\\Aclp", - [anon_sym_BSLASHacf] = "\\acf", - [anon_sym_BSLASHAcf] = "\\Acf", - [anon_sym_BSLASHacfp] = "\\acfp", - [anon_sym_BSLASHAcfp] = "\\Acfp", - [anon_sym_BSLASHac] = "\\ac", - [anon_sym_BSLASHAc] = "\\Ac", - [anon_sym_BSLASHacp] = "\\acp", - [anon_sym_BSLASHglsentrylong] = "\\glsentrylong", - [anon_sym_BSLASHGlsentrylong] = "\\Glsentrylong", - [anon_sym_BSLASHglsentrylongpl] = "\\glsentrylongpl", - [anon_sym_BSLASHGlsentrylongpl] = "\\Glsentrylongpl", - [anon_sym_BSLASHglsentryshort] = "\\glsentryshort", - [anon_sym_BSLASHGlsentryshort] = "\\Glsentryshort", - [anon_sym_BSLASHglsentryshortpl] = "\\glsentryshortpl", - [anon_sym_BSLASHGlsentryshortpl] = "\\Glsentryshortpl", - [anon_sym_BSLASHglsentryfullpl] = "\\glsentryfullpl", - [anon_sym_BSLASHGlsentryfullpl] = "\\Glsentryfullpl", - [anon_sym_BSLASHnewtheorem] = "\\newtheorem", - [anon_sym_BSLASHnewtheorem_STAR] = "\\newtheorem*", - [anon_sym_BSLASHdeclaretheorem] = "\\declaretheorem", - [anon_sym_BSLASHdeclaretheorem_STAR] = "\\declaretheorem*", - [anon_sym_BSLASHdefinecolor] = "\\definecolor", - [anon_sym_BSLASHdefinecolorset] = "\\definecolorset", - [anon_sym_BSLASHcolor] = "\\color", - [anon_sym_BSLASHcolorbox] = "\\colorbox", - [anon_sym_BSLASHtextcolor] = "\\textcolor", - [anon_sym_BSLASHpagecolor] = "\\pagecolor", - [anon_sym_BSLASHusepgflibrary] = "\\usepgflibrary", - [anon_sym_BSLASHusetikzlibrary] = "\\usetikzlibrary", - [anon_sym_BSLASHtext] = "\\text", - [anon_sym_BSLASHintertext] = "\\intertext", - [anon_sym_shortintertext] = "shortintertext", - [sym__trivia_raw_fi] = "comment", - [sym__trivia_raw_env_comment] = "comment", - [sym__trivia_raw_env_verbatim] = "comment", - [sym__trivia_raw_env_listing] = "source_code", - [sym__trivia_raw_env_minted] = "source_code", - [sym__trivia_raw_env_pycode] = "source_code", - [sym_source_file] = "source_file", - [sym_block_comment] = "block_comment", - [sym__root_content] = "_root_content", - [sym__flat_content] = "_flat_content", - [sym__text_with_env_content] = "_text_with_env_content", - [sym__text_content] = "_text_content", - [sym__section] = "_section", - [sym__section_part] = "_section_part", - [sym__part_declaration] = "_part_declaration", - [sym_part] = "part", - [sym__chapter_declaration] = "_chapter_declaration", - [sym_chapter] = "chapter", - [sym__section_declaration] = "_section_declaration", - [sym_section] = "section", - [sym__subsection_declaration] = "_subsection_declaration", - [sym_subsection] = "subsection", - [sym__subsubsection_declaration] = "_subsubsection_declaration", - [sym_subsubsection] = "subsubsection", - [sym__paragraph_declaration] = "_paragraph_declaration", - [sym_paragraph] = "paragraph", - [sym__subparagraph_declaration] = "_subparagraph_declaration", - [sym_subparagraph] = "subparagraph", - [sym__enum_itemdeclaration] = "_enum_itemdeclaration", - [sym_enum_item] = "enum_item", - [sym_curly_group] = "curly_group", - [sym_curly_group_text] = "curly_group_text", - [sym_curly_group_text_list] = "curly_group_text_list", - [sym_curly_group_path] = "curly_group_path", - [sym_curly_group_path_list] = "curly_group_path_list", - [sym_curly_group_command_name] = "curly_group_command_name", - [sym_curly_group_key_value] = "curly_group_key_value", - [sym_curly_group_glob_pattern] = "curly_group_glob_pattern", - [sym_curly_group_impl] = "curly_group_impl", - [sym_curly_group_author_list] = "curly_group_author_list", - [sym_brack_group] = "brack_group", - [sym_brack_group_text] = "brack_group_text", - [sym_brack_group_argc] = "brack_group_argc", - [sym_brack_group_key_value] = "brack_group_key_value", - [sym_text] = "text", - [sym_glob_pattern] = "glob_pattern", - [sym__glob_pattern_fragment] = "_glob_pattern_fragment", - [sym_operator] = "operator", - [sym_subscript] = "subscript", - [sym_superscript] = "superscript", - [sym_key_value_pair] = "key_value_pair", - [sym_value] = "value", - [sym_displayed_equation] = "displayed_equation", - [sym_inline_formula] = "inline_formula", - [sym_begin] = "begin", - [sym_end] = "end", - [sym_generic_environment] = "generic_environment", - [sym_comment_environment] = "comment_environment", - [sym__comment_environment_begin] = "begin", - [sym__comment_environment_end] = "end", - [sym__comment_environment_group] = "curly_group_text", - [sym__comment_environment_name] = "text", - [sym_verbatim_environment] = "verbatim_environment", - [sym__verbatim_environment_begin] = "begin", - [sym__verbatim_environment_end] = "end", - [sym__verbatim_environment_group] = "curly_group_text", - [sym__verbatim_environment_name] = "text", - [sym_listing_environment] = "listing_environment", - [sym__listing_environment_begin] = "begin", - [sym__listing_environment_end] = "end", - [sym__listing_environment_group] = "curly_group_text", - [sym__listing_environment_name] = "text", - [sym_minted_environment] = "minted_environment", - [sym__minted_environment_begin] = "begin", - [sym__minted_environment_end] = "end", - [sym__minted_environment_group] = "curly_group_text", - [sym__minted_environment_name] = "text", - [sym_pycode_environment] = "pycode_environment", - [sym__pycode_environment_begin] = "begin", - [sym__pycode_environment_end] = "end", - [sym__pycode_environment_group] = "curly_group_text", - [sym__pycode_environment_name] = "text", - [sym_math_environment] = "math_environment", - [sym__math_environment_begin] = "begin", - [sym__math_environment_end] = "end", - [sym__math_environment_group] = "curly_group_text", - [sym__math_environment_name] = "text", - [sym__command] = "_command", - [sym_generic_command] = "generic_command", - [sym_title_declaration] = "title_declaration", - [sym_author_declaration] = "author_declaration", - [sym_package_include] = "package_include", - [sym_class_include] = "class_include", - [sym_latex_include] = "latex_include", - [sym_biblatex_include] = "biblatex_include", - [sym_bibtex_include] = "bibtex_include", - [sym_graphics_include] = "graphics_include", - [sym_svg_include] = "svg_include", - [sym_inkscape_include] = "inkscape_include", - [sym_verbatim_include] = "verbatim_include", - [sym_import_include] = "import_include", - [sym_caption] = "caption", - [sym_citation] = "citation", - [sym_label_definition] = "label_definition", - [sym_label_reference] = "label_reference", - [sym_label_reference_range] = "label_reference_range", - [sym_label_number] = "label_number", - [sym_new_command_definition] = "new_command_definition", - [sym_old_command_definition] = "old_command_definition", - [sym_let_command_definition] = "let_command_definition", - [sym__math_delimiter_part] = "_math_delimiter_part", - [sym_math_delimiter] = "math_delimiter", - [sym_paired_delimiter_definition] = "paired_delimiter_definition", - [sym_environment_definition] = "environment_definition", - [sym_glossary_entry_definition] = "glossary_entry_definition", - [sym_glossary_entry_reference] = "glossary_entry_reference", - [sym_acronym_definition] = "acronym_definition", - [sym_acronym_reference] = "acronym_reference", - [sym_theorem_definition] = "theorem_definition", - [sym_color_definition] = "color_definition", - [sym_color_set_definition] = "color_set_definition", - [sym_color_reference] = "color_reference", - [sym_tikz_library_import] = "tikz_library_import", - [sym_text_mode] = "text_mode", - [aux_sym_source_file_repeat1] = "source_file_repeat1", - [aux_sym__section_repeat1] = "_section_repeat1", - [aux_sym__section_repeat2] = "_section_repeat2", - [aux_sym__section_repeat3] = "_section_repeat3", - [aux_sym__section_repeat4] = "_section_repeat4", - [aux_sym__section_repeat5] = "_section_repeat5", - [aux_sym__section_repeat6] = "_section_repeat6", - [aux_sym__section_repeat7] = "_section_repeat7", - [aux_sym__section_repeat8] = "_section_repeat8", - [aux_sym_part_repeat1] = "part_repeat1", - [aux_sym_curly_group_text_list_repeat1] = "curly_group_text_list_repeat1", - [aux_sym_curly_group_path_list_repeat1] = "curly_group_path_list_repeat1", - [aux_sym_curly_group_key_value_repeat1] = "curly_group_key_value_repeat1", - [aux_sym_curly_group_impl_repeat1] = "curly_group_impl_repeat1", - [aux_sym_curly_group_author_list_repeat1] = "curly_group_author_list_repeat1", - [aux_sym_curly_group_author_list_repeat2] = "curly_group_author_list_repeat2", - [aux_sym_brack_group_repeat1] = "brack_group_repeat1", - [aux_sym_text_repeat1] = "text_repeat1", - [aux_sym_glob_pattern_repeat1] = "glob_pattern_repeat1", - [aux_sym_value_repeat1] = "value_repeat1", - [aux_sym_generic_command_repeat1] = "generic_command_repeat1", - [alias_sym_author] = "author", -}; - -static const TSSymbol ts_symbol_map[] = { - [ts_builtin_sym_end] = ts_builtin_sym_end, - [sym_command_name] = sym_command_name, - [sym__whitespace] = sym__whitespace, - [sym_line_comment] = sym_line_comment, - [anon_sym_BSLASHiffalse] = anon_sym_BSLASHiffalse, - [anon_sym_BSLASHfi] = anon_sym_BSLASHfi, - [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_COMMA] = anon_sym_COMMA, - [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [anon_sym_BSLASHpart] = anon_sym_BSLASHpart, - [anon_sym_BSLASHpart_STAR] = anon_sym_BSLASHpart_STAR, - [anon_sym_BSLASHaddpart] = anon_sym_BSLASHaddpart, - [anon_sym_BSLASHaddpart_STAR] = anon_sym_BSLASHaddpart_STAR, - [anon_sym_BSLASHchapter] = anon_sym_BSLASHchapter, - [anon_sym_BSLASHchapter_STAR] = anon_sym_BSLASHchapter_STAR, - [anon_sym_BSLASHaddchap] = anon_sym_BSLASHaddchap, - [anon_sym_BSLASHaddchap_STAR] = anon_sym_BSLASHaddchap_STAR, - [anon_sym_BSLASHsection] = anon_sym_BSLASHsection, - [anon_sym_BSLASHsection_STAR] = anon_sym_BSLASHsection_STAR, - [anon_sym_BSLASHaddsec] = anon_sym_BSLASHaddsec, - [anon_sym_BSLASHaddsec_STAR] = anon_sym_BSLASHaddsec_STAR, - [anon_sym_BSLASHsubsection] = anon_sym_BSLASHsubsection, - [anon_sym_BSLASHsubsection_STAR] = anon_sym_BSLASHsubsection_STAR, - [anon_sym_BSLASHsubsubsection] = anon_sym_BSLASHsubsubsection, - [anon_sym_BSLASHsubsubsection_STAR] = anon_sym_BSLASHsubsubsection_STAR, - [anon_sym_BSLASHparagraph] = anon_sym_BSLASHparagraph, - [anon_sym_BSLASHparagraph_STAR] = anon_sym_BSLASHparagraph_STAR, - [anon_sym_BSLASHsubparagraph] = anon_sym_BSLASHsubparagraph, - [anon_sym_BSLASHsubparagraph_STAR] = anon_sym_BSLASHsubparagraph_STAR, - [anon_sym_BSLASHitem] = anon_sym_BSLASHitem, - [anon_sym_BSLASHitem_STAR] = anon_sym_BSLASHitem_STAR, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_RBRACE] = anon_sym_RBRACE, - [anon_sym_BSLASHand] = sym_command_name, - [sym_word] = sym_word, - [sym_placeholder] = sym_placeholder, - [sym_path] = sym_path, - [sym_argc] = sym_argc, - [aux_sym__glob_pattern_fragment_token1] = aux_sym__glob_pattern_fragment_token1, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_BANG] = anon_sym_BANG, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_SQUOTE] = anon_sym_SQUOTE, - [anon_sym__] = anon_sym__, - [anon_sym_CARET] = anon_sym_CARET, - [anon_sym_DOLLAR_DOLLAR] = anon_sym_DOLLAR_DOLLAR, - [anon_sym_BSLASH_LBRACK] = anon_sym_BSLASH_LBRACK, - [anon_sym_BSLASH_RBRACK] = anon_sym_BSLASH_RBRACK, - [anon_sym_DOLLAR] = anon_sym_DOLLAR, - [anon_sym_BSLASH_LPAREN] = anon_sym_BSLASH_LPAREN, - [anon_sym_BSLASH_RPAREN] = anon_sym_BSLASH_RPAREN, - [anon_sym_BSLASHbegin] = anon_sym_BSLASHbegin, - [anon_sym_BSLASHend] = anon_sym_BSLASHend, - [anon_sym_comment] = sym_word, - [anon_sym_verbatim] = sym_word, - [anon_sym_lstlisting] = sym_word, - [anon_sym_minted] = sym_word, - [anon_sym_pycode] = sym_word, - [anon_sym_displaymath] = sym_word, - [anon_sym_displaymath_STAR] = sym_word, - [anon_sym_equation] = sym_word, - [anon_sym_equation_STAR] = sym_word, - [anon_sym_multline] = sym_word, - [anon_sym_multline_STAR] = sym_word, - [anon_sym_eqnarray] = sym_word, - [anon_sym_eqnarray_STAR] = sym_word, - [anon_sym_align] = sym_word, - [anon_sym_align_STAR] = sym_word, - [anon_sym_array] = sym_word, - [anon_sym_array_STAR] = sym_word, - [anon_sym_split] = sym_word, - [anon_sym_split_STAR] = sym_word, - [anon_sym_alignat] = sym_word, - [anon_sym_alignat_STAR] = sym_word, - [anon_sym_gather] = sym_word, - [anon_sym_gather_STAR] = sym_word, - [anon_sym_flalign] = sym_word, - [anon_sym_flalign_STAR] = sym_word, - [anon_sym_BSLASHtitle] = anon_sym_BSLASHtitle, - [anon_sym_BSLASHauthor] = anon_sym_BSLASHauthor, - [anon_sym_BSLASHusepackage] = anon_sym_BSLASHusepackage, - [anon_sym_BSLASHRequirePackage] = anon_sym_BSLASHRequirePackage, - [anon_sym_BSLASHdocumentclass] = anon_sym_BSLASHdocumentclass, - [anon_sym_BSLASHinclude] = anon_sym_BSLASHinclude, - [anon_sym_BSLASHsubfileinclude] = anon_sym_BSLASHsubfileinclude, - [anon_sym_BSLASHinput] = anon_sym_BSLASHinput, - [anon_sym_BSLASHsubfile] = anon_sym_BSLASHsubfile, - [anon_sym_BSLASHaddbibresource] = anon_sym_BSLASHaddbibresource, - [anon_sym_BSLASHbibliography] = anon_sym_BSLASHbibliography, - [anon_sym_BSLASHincludegraphics] = anon_sym_BSLASHincludegraphics, - [anon_sym_BSLASHincludesvg] = anon_sym_BSLASHincludesvg, - [anon_sym_BSLASHincludeinkscape] = anon_sym_BSLASHincludeinkscape, - [anon_sym_BSLASHverbatiminput] = anon_sym_BSLASHverbatiminput, - [anon_sym_BSLASHVerbatimInput] = anon_sym_BSLASHVerbatimInput, - [anon_sym_BSLASHimport] = anon_sym_BSLASHimport, - [anon_sym_BSLASHsubimport] = anon_sym_BSLASHsubimport, - [anon_sym_BSLASHinputfrom] = anon_sym_BSLASHinputfrom, - [anon_sym_BSLASHsubimportfrom] = anon_sym_BSLASHsubimportfrom, - [anon_sym_BSLASHincludefrom] = anon_sym_BSLASHincludefrom, - [anon_sym_BSLASHsubincludefrom] = anon_sym_BSLASHsubincludefrom, - [anon_sym_BSLASHcaption] = anon_sym_BSLASHcaption, - [anon_sym_BSLASHcite] = anon_sym_BSLASHcite, - [anon_sym_BSLASHcite_STAR] = anon_sym_BSLASHcite_STAR, - [anon_sym_BSLASHCite] = anon_sym_BSLASHCite, - [anon_sym_BSLASHnocite] = anon_sym_BSLASHnocite, - [anon_sym_BSLASHcitet] = anon_sym_BSLASHcitet, - [anon_sym_BSLASHcitep] = anon_sym_BSLASHcitep, - [anon_sym_BSLASHcitet_STAR] = anon_sym_BSLASHcitet_STAR, - [anon_sym_BSLASHcitep_STAR] = anon_sym_BSLASHcitep_STAR, - [anon_sym_BSLASHciteauthor] = anon_sym_BSLASHciteauthor, - [anon_sym_BSLASHciteauthor_STAR] = anon_sym_BSLASHciteauthor_STAR, - [anon_sym_BSLASHCiteauthor] = anon_sym_BSLASHCiteauthor, - [anon_sym_BSLASHCiteauthor_STAR] = anon_sym_BSLASHCiteauthor_STAR, - [anon_sym_BSLASHcitetitle] = anon_sym_BSLASHcitetitle, - [anon_sym_BSLASHcitetitle_STAR] = anon_sym_BSLASHcitetitle_STAR, - [anon_sym_BSLASHciteyear] = anon_sym_BSLASHciteyear, - [anon_sym_BSLASHciteyear_STAR] = anon_sym_BSLASHciteyear_STAR, - [anon_sym_BSLASHcitedate] = anon_sym_BSLASHcitedate, - [anon_sym_BSLASHcitedate_STAR] = anon_sym_BSLASHcitedate_STAR, - [anon_sym_BSLASHciteurl] = anon_sym_BSLASHciteurl, - [anon_sym_BSLASHfullcite] = anon_sym_BSLASHfullcite, - [anon_sym_BSLASHciteyearpar] = anon_sym_BSLASHciteyearpar, - [anon_sym_BSLASHcitealt] = anon_sym_BSLASHcitealt, - [anon_sym_BSLASHcitealp] = anon_sym_BSLASHcitealp, - [anon_sym_BSLASHcitetext] = anon_sym_BSLASHcitetext, - [anon_sym_BSLASHparencite] = anon_sym_BSLASHparencite, - [anon_sym_BSLASHparencite_STAR] = anon_sym_BSLASHparencite_STAR, - [anon_sym_BSLASHParencite] = anon_sym_BSLASHParencite, - [anon_sym_BSLASHfootcite] = anon_sym_BSLASHfootcite, - [anon_sym_BSLASHfootfullcite] = anon_sym_BSLASHfootfullcite, - [anon_sym_BSLASHfootcitetext] = anon_sym_BSLASHfootcitetext, - [anon_sym_BSLASHtextcite] = anon_sym_BSLASHtextcite, - [anon_sym_BSLASHTextcite] = anon_sym_BSLASHTextcite, - [anon_sym_BSLASHsmartcite] = anon_sym_BSLASHsmartcite, - [anon_sym_BSLASHSmartcite] = anon_sym_BSLASHSmartcite, - [anon_sym_BSLASHsupercite] = anon_sym_BSLASHsupercite, - [anon_sym_BSLASHautocite] = anon_sym_BSLASHautocite, - [anon_sym_BSLASHAutocite] = anon_sym_BSLASHAutocite, - [anon_sym_BSLASHautocite_STAR] = anon_sym_BSLASHautocite_STAR, - [anon_sym_BSLASHAutocite_STAR] = anon_sym_BSLASHAutocite_STAR, - [anon_sym_BSLASHvolcite] = anon_sym_BSLASHvolcite, - [anon_sym_BSLASHVolcite] = anon_sym_BSLASHVolcite, - [anon_sym_BSLASHpvolcite] = anon_sym_BSLASHpvolcite, - [anon_sym_BSLASHPvolcite] = anon_sym_BSLASHPvolcite, - [anon_sym_BSLASHfvolcite] = anon_sym_BSLASHfvolcite, - [anon_sym_BSLASHftvolcite] = anon_sym_BSLASHftvolcite, - [anon_sym_BSLASHsvolcite] = anon_sym_BSLASHsvolcite, - [anon_sym_BSLASHSvolcite] = anon_sym_BSLASHSvolcite, - [anon_sym_BSLASHtvolcite] = anon_sym_BSLASHtvolcite, - [anon_sym_BSLASHTvolcite] = anon_sym_BSLASHTvolcite, - [anon_sym_BSLASHavolcite] = anon_sym_BSLASHavolcite, - [anon_sym_BSLASHAvolcite] = anon_sym_BSLASHAvolcite, - [anon_sym_BSLASHnotecite] = anon_sym_BSLASHnotecite, - [anon_sym_BSLASHNotecite] = anon_sym_BSLASHNotecite, - [anon_sym_BSLASHpnotecite] = anon_sym_BSLASHpnotecite, - [anon_sym_BSLASHPnotecite] = anon_sym_BSLASHPnotecite, - [anon_sym_BSLASHfnotecite] = anon_sym_BSLASHfnotecite, - [anon_sym_BSLASHlabel] = anon_sym_BSLASHlabel, - [anon_sym_BSLASHref] = anon_sym_BSLASHref, - [anon_sym_BSLASHeqref] = anon_sym_BSLASHeqref, - [anon_sym_BSLASHvref] = anon_sym_BSLASHvref, - [anon_sym_BSLASHVref] = anon_sym_BSLASHVref, - [anon_sym_BSLASHautoref] = anon_sym_BSLASHautoref, - [anon_sym_BSLASHpageref] = anon_sym_BSLASHpageref, - [anon_sym_BSLASHcref] = anon_sym_BSLASHcref, - [anon_sym_BSLASHCref] = anon_sym_BSLASHCref, - [anon_sym_BSLASHcref_STAR] = anon_sym_BSLASHcref_STAR, - [anon_sym_BSLASHCref_STAR] = anon_sym_BSLASHCref_STAR, - [anon_sym_BSLASHnamecref] = anon_sym_BSLASHnamecref, - [anon_sym_BSLASHnameCref] = anon_sym_BSLASHnameCref, - [anon_sym_BSLASHlcnamecref] = anon_sym_BSLASHlcnamecref, - [anon_sym_BSLASHnamecrefs] = anon_sym_BSLASHnamecrefs, - [anon_sym_BSLASHnameCrefs] = anon_sym_BSLASHnameCrefs, - [anon_sym_BSLASHlcnamecrefs] = anon_sym_BSLASHlcnamecrefs, - [anon_sym_BSLASHlabelcref] = anon_sym_BSLASHlabelcref, - [anon_sym_BSLASHlabelcpageref] = anon_sym_BSLASHlabelcpageref, - [anon_sym_BSLASHcrefrange] = anon_sym_BSLASHcrefrange, - [anon_sym_BSLASHcrefrange_STAR] = anon_sym_BSLASHcrefrange_STAR, - [anon_sym_BSLASHCrefrange] = anon_sym_BSLASHCrefrange, - [anon_sym_BSLASHCrefrange_STAR] = anon_sym_BSLASHCrefrange_STAR, - [anon_sym_BSLASHnewlabel] = anon_sym_BSLASHnewlabel, - [anon_sym_BSLASHnewcommand] = anon_sym_BSLASHnewcommand, - [anon_sym_BSLASHnewcommand_STAR] = anon_sym_BSLASHnewcommand_STAR, - [anon_sym_BSLASHrenewcommand] = anon_sym_BSLASHrenewcommand, - [anon_sym_BSLASHrenewcommand_STAR] = anon_sym_BSLASHrenewcommand_STAR, - [anon_sym_BSLASHDeclareRobustCommand] = anon_sym_BSLASHDeclareRobustCommand, - [anon_sym_BSLASHDeclareRobustCommand_STAR] = anon_sym_BSLASHDeclareRobustCommand_STAR, - [anon_sym_BSLASHDeclareMathOperator] = anon_sym_BSLASHDeclareMathOperator, - [anon_sym_BSLASHDeclareMathOperator_STAR] = anon_sym_BSLASHDeclareMathOperator_STAR, - [anon_sym_BSLASHNewDocumentCommand] = anon_sym_BSLASHNewDocumentCommand, - [anon_sym_BSLASHRenewDocumentCommand] = anon_sym_BSLASHRenewDocumentCommand, - [anon_sym_BSLASHProvideDocumentCommand] = anon_sym_BSLASHProvideDocumentCommand, - [anon_sym_BSLASHDeclareDocumentCommand] = anon_sym_BSLASHDeclareDocumentCommand, - [anon_sym_BSLASHNewExpandableDocumentCommand] = anon_sym_BSLASHNewExpandableDocumentCommand, - [anon_sym_BSLASHRenewExpandableDocumentCommand] = anon_sym_BSLASHRenewExpandableDocumentCommand, - [anon_sym_BSLASHProvideExpandableDocumentCommand] = anon_sym_BSLASHProvideExpandableDocumentCommand, - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = anon_sym_BSLASHDeclareExpandableDocumentCommand, - [anon_sym_BSLASHdef] = anon_sym_BSLASHdef, - [anon_sym_BSLASHlet] = anon_sym_BSLASHlet, - [anon_sym_BSLASHleft] = anon_sym_BSLASHleft, - [anon_sym_BSLASHbig] = anon_sym_BSLASHbig, - [anon_sym_BSLASHBig] = anon_sym_BSLASHBig, - [anon_sym_BSLASHbigg] = anon_sym_BSLASHbigg, - [anon_sym_BSLASHBigg] = anon_sym_BSLASHBigg, - [anon_sym_BSLASHbigl] = anon_sym_BSLASHbigl, - [anon_sym_BSLASHBigl] = anon_sym_BSLASHBigl, - [anon_sym_BSLASHbiggl] = anon_sym_BSLASHbiggl, - [anon_sym_BSLASHBiggl] = anon_sym_BSLASHBiggl, - [anon_sym_BSLASHright] = anon_sym_BSLASHright, - [anon_sym_BSLASHbigr] = anon_sym_BSLASHbigr, - [anon_sym_BSLASHBigr] = anon_sym_BSLASHBigr, - [anon_sym_BSLASHbiggr] = anon_sym_BSLASHbiggr, - [anon_sym_BSLASHBiggr] = anon_sym_BSLASHBiggr, - [anon_sym_BSLASHDeclarePairedDelimiter] = anon_sym_BSLASHDeclarePairedDelimiter, - [anon_sym_BSLASHDeclarePairedDelimiterX] = anon_sym_BSLASHDeclarePairedDelimiterX, - [anon_sym_BSLASHnewenvironment] = anon_sym_BSLASHnewenvironment, - [anon_sym_BSLASHrenewenvironment] = anon_sym_BSLASHrenewenvironment, - [anon_sym_BSLASHNewDocumentEnvironment] = anon_sym_BSLASHNewDocumentEnvironment, - [anon_sym_BSLASHRenewDocumentEnvironment] = anon_sym_BSLASHRenewDocumentEnvironment, - [anon_sym_BSLASHProvideDocumentEnvironment] = anon_sym_BSLASHProvideDocumentEnvironment, - [anon_sym_BSLASHDeclareDocumentEnvironment] = anon_sym_BSLASHDeclareDocumentEnvironment, - [anon_sym_BSLASHnewglossaryentry] = anon_sym_BSLASHnewglossaryentry, - [anon_sym_BSLASHgls] = anon_sym_BSLASHgls, - [anon_sym_BSLASHGls] = anon_sym_BSLASHGls, - [anon_sym_BSLASHGLS] = anon_sym_BSLASHGLS, - [anon_sym_BSLASHglspl] = anon_sym_BSLASHglspl, - [anon_sym_BSLASHGlspl] = anon_sym_BSLASHGlspl, - [anon_sym_BSLASHGLSpl] = anon_sym_BSLASHGLSpl, - [anon_sym_BSLASHglsdisp] = anon_sym_BSLASHglsdisp, - [anon_sym_BSLASHglslink] = anon_sym_BSLASHglslink, - [anon_sym_BSLASHglstext] = anon_sym_BSLASHglstext, - [anon_sym_BSLASHGlstext] = anon_sym_BSLASHGlstext, - [anon_sym_BSLASHGLStext] = anon_sym_BSLASHGLStext, - [anon_sym_BSLASHglsfirst] = anon_sym_BSLASHglsfirst, - [anon_sym_BSLASHGlsfirst] = anon_sym_BSLASHGlsfirst, - [anon_sym_BSLASHGLSfirst] = anon_sym_BSLASHGLSfirst, - [anon_sym_BSLASHglsplural] = anon_sym_BSLASHglsplural, - [anon_sym_BSLASHGlsplural] = anon_sym_BSLASHGlsplural, - [anon_sym_BSLASHGLSplural] = anon_sym_BSLASHGLSplural, - [anon_sym_BSLASHglsfirstplural] = anon_sym_BSLASHglsfirstplural, - [anon_sym_BSLASHGlsfirstplural] = anon_sym_BSLASHGlsfirstplural, - [anon_sym_BSLASHGLSfirstplural] = anon_sym_BSLASHGLSfirstplural, - [anon_sym_BSLASHglsname] = anon_sym_BSLASHglsname, - [anon_sym_BSLASHGlsname] = anon_sym_BSLASHGlsname, - [anon_sym_BSLASHGLSname] = anon_sym_BSLASHGLSname, - [anon_sym_BSLASHglssymbol] = anon_sym_BSLASHglssymbol, - [anon_sym_BSLASHGlssymbol] = anon_sym_BSLASHGlssymbol, - [anon_sym_BSLASHglsdesc] = anon_sym_BSLASHglsdesc, - [anon_sym_BSLASHGlsdesc] = anon_sym_BSLASHGlsdesc, - [anon_sym_BSLASHGLSdesc] = anon_sym_BSLASHGLSdesc, - [anon_sym_BSLASHglsuseri] = anon_sym_BSLASHglsuseri, - [anon_sym_BSLASHGlsuseri] = anon_sym_BSLASHGlsuseri, - [anon_sym_BSLASHGLSuseri] = anon_sym_BSLASHGLSuseri, - [anon_sym_BSLASHglsuserii] = anon_sym_BSLASHglsuserii, - [anon_sym_BSLASHGlsuserii] = anon_sym_BSLASHGlsuserii, - [anon_sym_BSLASHGLSuserii] = anon_sym_BSLASHGLSuserii, - [anon_sym_BSLASHglsuseriii] = anon_sym_BSLASHglsuseriii, - [anon_sym_BSLASHGlsuseriii] = anon_sym_BSLASHGlsuseriii, - [anon_sym_BSLASHGLSuseriii] = anon_sym_BSLASHGLSuseriii, - [anon_sym_BSLASHglsuseriv] = anon_sym_BSLASHglsuseriv, - [anon_sym_BSLASHGlsuseriv] = anon_sym_BSLASHGlsuseriv, - [anon_sym_BSLASHGLSuseriv] = anon_sym_BSLASHGLSuseriv, - [anon_sym_BSLASHglsuserv] = anon_sym_BSLASHglsuserv, - [anon_sym_BSLASHGlsuserv] = anon_sym_BSLASHGlsuserv, - [anon_sym_BSLASHGLSuserv] = anon_sym_BSLASHGLSuserv, - [anon_sym_BSLASHglsuservi] = anon_sym_BSLASHglsuservi, - [anon_sym_BSLASHGlsuservi] = anon_sym_BSLASHGlsuservi, - [anon_sym_BSLASHGLSuservi] = anon_sym_BSLASHGLSuservi, - [anon_sym_BSLASHnewacronym] = anon_sym_BSLASHnewacronym, - [anon_sym_BSLASHacrshort] = anon_sym_BSLASHacrshort, - [anon_sym_BSLASHAcrshort] = anon_sym_BSLASHAcrshort, - [anon_sym_BSLASHACRshort] = anon_sym_BSLASHACRshort, - [anon_sym_BSLASHacrshortpl] = anon_sym_BSLASHacrshortpl, - [anon_sym_BSLASHAcrshortpl] = anon_sym_BSLASHAcrshortpl, - [anon_sym_BSLASHACRshortpl] = anon_sym_BSLASHACRshortpl, - [anon_sym_BSLASHacrlong] = anon_sym_BSLASHacrlong, - [anon_sym_BSLASHAcrlong] = anon_sym_BSLASHAcrlong, - [anon_sym_BSLASHACRlong] = anon_sym_BSLASHACRlong, - [anon_sym_BSLASHacrlongpl] = anon_sym_BSLASHacrlongpl, - [anon_sym_BSLASHAcrlongpl] = anon_sym_BSLASHAcrlongpl, - [anon_sym_BSLASHACRlongpl] = anon_sym_BSLASHACRlongpl, - [anon_sym_BSLASHacrfull] = anon_sym_BSLASHacrfull, - [anon_sym_BSLASHAcrfull] = anon_sym_BSLASHAcrfull, - [anon_sym_BSLASHACRfull] = anon_sym_BSLASHACRfull, - [anon_sym_BSLASHacrfullpl] = anon_sym_BSLASHacrfullpl, - [anon_sym_BSLASHAcrfullpl] = anon_sym_BSLASHAcrfullpl, - [anon_sym_BSLASHACRfullpl] = anon_sym_BSLASHACRfullpl, - [anon_sym_BSLASHacs] = anon_sym_BSLASHacs, - [anon_sym_BSLASHAcs] = anon_sym_BSLASHAcs, - [anon_sym_BSLASHacsp] = anon_sym_BSLASHacsp, - [anon_sym_BSLASHAcsp] = anon_sym_BSLASHAcsp, - [anon_sym_BSLASHacl] = anon_sym_BSLASHacl, - [anon_sym_BSLASHAcl] = anon_sym_BSLASHAcl, - [anon_sym_BSLASHaclp] = anon_sym_BSLASHaclp, - [anon_sym_BSLASHAclp] = anon_sym_BSLASHAclp, - [anon_sym_BSLASHacf] = anon_sym_BSLASHacf, - [anon_sym_BSLASHAcf] = anon_sym_BSLASHAcf, - [anon_sym_BSLASHacfp] = anon_sym_BSLASHacfp, - [anon_sym_BSLASHAcfp] = anon_sym_BSLASHAcfp, - [anon_sym_BSLASHac] = anon_sym_BSLASHac, - [anon_sym_BSLASHAc] = anon_sym_BSLASHAc, - [anon_sym_BSLASHacp] = anon_sym_BSLASHacp, - [anon_sym_BSLASHglsentrylong] = anon_sym_BSLASHglsentrylong, - [anon_sym_BSLASHGlsentrylong] = anon_sym_BSLASHGlsentrylong, - [anon_sym_BSLASHglsentrylongpl] = anon_sym_BSLASHglsentrylongpl, - [anon_sym_BSLASHGlsentrylongpl] = anon_sym_BSLASHGlsentrylongpl, - [anon_sym_BSLASHglsentryshort] = anon_sym_BSLASHglsentryshort, - [anon_sym_BSLASHGlsentryshort] = anon_sym_BSLASHGlsentryshort, - [anon_sym_BSLASHglsentryshortpl] = anon_sym_BSLASHglsentryshortpl, - [anon_sym_BSLASHGlsentryshortpl] = anon_sym_BSLASHGlsentryshortpl, - [anon_sym_BSLASHglsentryfullpl] = anon_sym_BSLASHglsentryfullpl, - [anon_sym_BSLASHGlsentryfullpl] = anon_sym_BSLASHGlsentryfullpl, - [anon_sym_BSLASHnewtheorem] = anon_sym_BSLASHnewtheorem, - [anon_sym_BSLASHnewtheorem_STAR] = anon_sym_BSLASHnewtheorem_STAR, - [anon_sym_BSLASHdeclaretheorem] = anon_sym_BSLASHdeclaretheorem, - [anon_sym_BSLASHdeclaretheorem_STAR] = anon_sym_BSLASHdeclaretheorem_STAR, - [anon_sym_BSLASHdefinecolor] = anon_sym_BSLASHdefinecolor, - [anon_sym_BSLASHdefinecolorset] = anon_sym_BSLASHdefinecolorset, - [anon_sym_BSLASHcolor] = anon_sym_BSLASHcolor, - [anon_sym_BSLASHcolorbox] = anon_sym_BSLASHcolorbox, - [anon_sym_BSLASHtextcolor] = anon_sym_BSLASHtextcolor, - [anon_sym_BSLASHpagecolor] = anon_sym_BSLASHpagecolor, - [anon_sym_BSLASHusepgflibrary] = anon_sym_BSLASHusepgflibrary, - [anon_sym_BSLASHusetikzlibrary] = anon_sym_BSLASHusetikzlibrary, - [anon_sym_BSLASHtext] = anon_sym_BSLASHtext, - [anon_sym_BSLASHintertext] = anon_sym_BSLASHintertext, - [anon_sym_shortintertext] = anon_sym_shortintertext, - [sym__trivia_raw_fi] = sym__trivia_raw_fi, - [sym__trivia_raw_env_comment] = sym__trivia_raw_fi, - [sym__trivia_raw_env_verbatim] = sym__trivia_raw_fi, - [sym__trivia_raw_env_listing] = sym__trivia_raw_env_listing, - [sym__trivia_raw_env_minted] = sym__trivia_raw_env_listing, - [sym__trivia_raw_env_pycode] = sym__trivia_raw_env_listing, - [sym_source_file] = sym_source_file, - [sym_block_comment] = sym_block_comment, - [sym__root_content] = sym__root_content, - [sym__flat_content] = sym__flat_content, - [sym__text_with_env_content] = sym__text_with_env_content, - [sym__text_content] = sym__text_content, - [sym__section] = sym__section, - [sym__section_part] = sym__section_part, - [sym__part_declaration] = sym__part_declaration, - [sym_part] = sym_part, - [sym__chapter_declaration] = sym__chapter_declaration, - [sym_chapter] = sym_chapter, - [sym__section_declaration] = sym__section_declaration, - [sym_section] = sym_section, - [sym__subsection_declaration] = sym__subsection_declaration, - [sym_subsection] = sym_subsection, - [sym__subsubsection_declaration] = sym__subsubsection_declaration, - [sym_subsubsection] = sym_subsubsection, - [sym__paragraph_declaration] = sym__paragraph_declaration, - [sym_paragraph] = sym_paragraph, - [sym__subparagraph_declaration] = sym__subparagraph_declaration, - [sym_subparagraph] = sym_subparagraph, - [sym__enum_itemdeclaration] = sym__enum_itemdeclaration, - [sym_enum_item] = sym_enum_item, - [sym_curly_group] = sym_curly_group, - [sym_curly_group_text] = sym_curly_group_text, - [sym_curly_group_text_list] = sym_curly_group_text_list, - [sym_curly_group_path] = sym_curly_group_path, - [sym_curly_group_path_list] = sym_curly_group_path_list, - [sym_curly_group_command_name] = sym_curly_group_command_name, - [sym_curly_group_key_value] = sym_curly_group_key_value, - [sym_curly_group_glob_pattern] = sym_curly_group_glob_pattern, - [sym_curly_group_impl] = sym_curly_group_impl, - [sym_curly_group_author_list] = sym_curly_group_author_list, - [sym_brack_group] = sym_brack_group, - [sym_brack_group_text] = sym_brack_group_text, - [sym_brack_group_argc] = sym_brack_group_argc, - [sym_brack_group_key_value] = sym_brack_group_key_value, - [sym_text] = sym_text, - [sym_glob_pattern] = sym_glob_pattern, - [sym__glob_pattern_fragment] = sym__glob_pattern_fragment, - [sym_operator] = sym_operator, - [sym_subscript] = sym_subscript, - [sym_superscript] = sym_superscript, - [sym_key_value_pair] = sym_key_value_pair, - [sym_value] = sym_value, - [sym_displayed_equation] = sym_displayed_equation, - [sym_inline_formula] = sym_inline_formula, - [sym_begin] = sym_begin, - [sym_end] = sym_end, - [sym_generic_environment] = sym_generic_environment, - [sym_comment_environment] = sym_comment_environment, - [sym__comment_environment_begin] = sym_begin, - [sym__comment_environment_end] = sym_end, - [sym__comment_environment_group] = sym_curly_group_text, - [sym__comment_environment_name] = sym_text, - [sym_verbatim_environment] = sym_verbatim_environment, - [sym__verbatim_environment_begin] = sym_begin, - [sym__verbatim_environment_end] = sym_end, - [sym__verbatim_environment_group] = sym_curly_group_text, - [sym__verbatim_environment_name] = sym_text, - [sym_listing_environment] = sym_listing_environment, - [sym__listing_environment_begin] = sym_begin, - [sym__listing_environment_end] = sym_end, - [sym__listing_environment_group] = sym_curly_group_text, - [sym__listing_environment_name] = sym_text, - [sym_minted_environment] = sym_minted_environment, - [sym__minted_environment_begin] = sym_begin, - [sym__minted_environment_end] = sym_end, - [sym__minted_environment_group] = sym_curly_group_text, - [sym__minted_environment_name] = sym_text, - [sym_pycode_environment] = sym_pycode_environment, - [sym__pycode_environment_begin] = sym_begin, - [sym__pycode_environment_end] = sym_end, - [sym__pycode_environment_group] = sym_curly_group_text, - [sym__pycode_environment_name] = sym_text, - [sym_math_environment] = sym_math_environment, - [sym__math_environment_begin] = sym_begin, - [sym__math_environment_end] = sym_end, - [sym__math_environment_group] = sym_curly_group_text, - [sym__math_environment_name] = sym_text, - [sym__command] = sym__command, - [sym_generic_command] = sym_generic_command, - [sym_title_declaration] = sym_title_declaration, - [sym_author_declaration] = sym_author_declaration, - [sym_package_include] = sym_package_include, - [sym_class_include] = sym_class_include, - [sym_latex_include] = sym_latex_include, - [sym_biblatex_include] = sym_biblatex_include, - [sym_bibtex_include] = sym_bibtex_include, - [sym_graphics_include] = sym_graphics_include, - [sym_svg_include] = sym_svg_include, - [sym_inkscape_include] = sym_inkscape_include, - [sym_verbatim_include] = sym_verbatim_include, - [sym_import_include] = sym_import_include, - [sym_caption] = sym_caption, - [sym_citation] = sym_citation, - [sym_label_definition] = sym_label_definition, - [sym_label_reference] = sym_label_reference, - [sym_label_reference_range] = sym_label_reference_range, - [sym_label_number] = sym_label_number, - [sym_new_command_definition] = sym_new_command_definition, - [sym_old_command_definition] = sym_old_command_definition, - [sym_let_command_definition] = sym_let_command_definition, - [sym__math_delimiter_part] = sym__math_delimiter_part, - [sym_math_delimiter] = sym_math_delimiter, - [sym_paired_delimiter_definition] = sym_paired_delimiter_definition, - [sym_environment_definition] = sym_environment_definition, - [sym_glossary_entry_definition] = sym_glossary_entry_definition, - [sym_glossary_entry_reference] = sym_glossary_entry_reference, - [sym_acronym_definition] = sym_acronym_definition, - [sym_acronym_reference] = sym_acronym_reference, - [sym_theorem_definition] = sym_theorem_definition, - [sym_color_definition] = sym_color_definition, - [sym_color_set_definition] = sym_color_set_definition, - [sym_color_reference] = sym_color_reference, - [sym_tikz_library_import] = sym_tikz_library_import, - [sym_text_mode] = sym_text_mode, - [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, - [aux_sym__section_repeat1] = aux_sym__section_repeat1, - [aux_sym__section_repeat2] = aux_sym__section_repeat2, - [aux_sym__section_repeat3] = aux_sym__section_repeat3, - [aux_sym__section_repeat4] = aux_sym__section_repeat4, - [aux_sym__section_repeat5] = aux_sym__section_repeat5, - [aux_sym__section_repeat6] = aux_sym__section_repeat6, - [aux_sym__section_repeat7] = aux_sym__section_repeat7, - [aux_sym__section_repeat8] = aux_sym__section_repeat8, - [aux_sym_part_repeat1] = aux_sym_part_repeat1, - [aux_sym_curly_group_text_list_repeat1] = aux_sym_curly_group_text_list_repeat1, - [aux_sym_curly_group_path_list_repeat1] = aux_sym_curly_group_path_list_repeat1, - [aux_sym_curly_group_key_value_repeat1] = aux_sym_curly_group_key_value_repeat1, - [aux_sym_curly_group_impl_repeat1] = aux_sym_curly_group_impl_repeat1, - [aux_sym_curly_group_author_list_repeat1] = aux_sym_curly_group_author_list_repeat1, - [aux_sym_curly_group_author_list_repeat2] = aux_sym_curly_group_author_list_repeat2, - [aux_sym_brack_group_repeat1] = aux_sym_brack_group_repeat1, - [aux_sym_text_repeat1] = aux_sym_text_repeat1, - [aux_sym_glob_pattern_repeat1] = aux_sym_glob_pattern_repeat1, - [aux_sym_value_repeat1] = aux_sym_value_repeat1, - [aux_sym_generic_command_repeat1] = aux_sym_generic_command_repeat1, - [alias_sym_author] = alias_sym_author, -}; - -static const TSSymbolMetadata ts_symbol_metadata[] = { - [ts_builtin_sym_end] = { - .visible = false, - .named = true, - }, - [sym_command_name] = { - .visible = true, - .named = true, - }, - [sym__whitespace] = { - .visible = false, - .named = true, - }, - [sym_line_comment] = { - .visible = true, - .named = true, - }, - [anon_sym_BSLASHiffalse] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHfi] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHpart] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHpart_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHaddpart] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHaddpart_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHchapter] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHchapter_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHaddchap] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHaddchap_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsection] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsection_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHaddsec] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHaddsec_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsubsection] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsubsection_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsubsubsection] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsubsubsection_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHparagraph] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHparagraph_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsubparagraph] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsubparagraph_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHitem] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHitem_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHand] = { - .visible = true, - .named = true, - }, - [sym_word] = { - .visible = true, - .named = true, - }, - [sym_placeholder] = { - .visible = true, - .named = true, - }, - [sym_path] = { - .visible = true, - .named = true, - }, - [sym_argc] = { - .visible = true, - .named = true, - }, - [aux_sym__glob_pattern_fragment_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_SQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym__] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLAR_DOLLAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASH_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASH_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASH_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASH_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHbegin] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHend] = { - .visible = true, - .named = false, - }, - [anon_sym_comment] = { - .visible = true, - .named = true, - }, - [anon_sym_verbatim] = { - .visible = true, - .named = true, - }, - [anon_sym_lstlisting] = { - .visible = true, - .named = true, - }, - [anon_sym_minted] = { - .visible = true, - .named = true, - }, - [anon_sym_pycode] = { - .visible = true, - .named = true, - }, - [anon_sym_displaymath] = { - .visible = true, - .named = true, - }, - [anon_sym_displaymath_STAR] = { - .visible = true, - .named = true, - }, - [anon_sym_equation] = { - .visible = true, - .named = true, - }, - [anon_sym_equation_STAR] = { - .visible = true, - .named = true, - }, - [anon_sym_multline] = { - .visible = true, - .named = true, - }, - [anon_sym_multline_STAR] = { - .visible = true, - .named = true, - }, - [anon_sym_eqnarray] = { - .visible = true, - .named = true, - }, - [anon_sym_eqnarray_STAR] = { - .visible = true, - .named = true, - }, - [anon_sym_align] = { - .visible = true, - .named = true, - }, - [anon_sym_align_STAR] = { - .visible = true, - .named = true, - }, - [anon_sym_array] = { - .visible = true, - .named = true, - }, - [anon_sym_array_STAR] = { - .visible = true, - .named = true, - }, - [anon_sym_split] = { - .visible = true, - .named = true, - }, - [anon_sym_split_STAR] = { - .visible = true, - .named = true, - }, - [anon_sym_alignat] = { - .visible = true, - .named = true, - }, - [anon_sym_alignat_STAR] = { - .visible = true, - .named = true, - }, - [anon_sym_gather] = { - .visible = true, - .named = true, - }, - [anon_sym_gather_STAR] = { - .visible = true, - .named = true, - }, - [anon_sym_flalign] = { - .visible = true, - .named = true, - }, - [anon_sym_flalign_STAR] = { - .visible = true, - .named = true, - }, - [anon_sym_BSLASHtitle] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHauthor] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHusepackage] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHRequirePackage] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHdocumentclass] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHinclude] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsubfileinclude] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHinput] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsubfile] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHaddbibresource] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHbibliography] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHincludegraphics] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHincludesvg] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHincludeinkscape] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHverbatiminput] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHVerbatimInput] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHimport] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsubimport] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHinputfrom] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsubimportfrom] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHincludefrom] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsubincludefrom] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcaption] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcite_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHCite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnocite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcitet] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcitep] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcitet_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcitep_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHciteauthor] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHciteauthor_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHCiteauthor] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHCiteauthor_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcitetitle] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcitetitle_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHciteyear] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHciteyear_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcitedate] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcitedate_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHciteurl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHfullcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHciteyearpar] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcitealt] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcitealp] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcitetext] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHparencite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHparencite_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHParencite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHfootcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHfootfullcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHfootcitetext] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHtextcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHTextcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsmartcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHSmartcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsupercite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHautocite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAutocite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHautocite_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAutocite_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHvolcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHVolcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHpvolcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHPvolcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHfvolcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHftvolcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHsvolcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHSvolcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHtvolcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHTvolcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHavolcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAvolcite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnotecite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHNotecite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHpnotecite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHPnotecite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHfnotecite] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHlabel] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHeqref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHvref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHVref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHautoref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHpageref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHCref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcref_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHCref_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnamecref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnameCref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHlcnamecref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnamecrefs] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnameCrefs] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHlcnamecrefs] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHlabelcref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHlabelcpageref] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcrefrange] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcrefrange_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHCrefrange] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHCrefrange_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnewlabel] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnewcommand] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnewcommand_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHrenewcommand] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHrenewcommand_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHDeclareRobustCommand] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHDeclareRobustCommand_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHDeclareMathOperator] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHDeclareMathOperator_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHNewDocumentCommand] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHRenewDocumentCommand] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHProvideDocumentCommand] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHDeclareDocumentCommand] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHNewExpandableDocumentCommand] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHRenewExpandableDocumentCommand] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHProvideExpandableDocumentCommand] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHdef] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHlet] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHleft] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHbig] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHBig] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHbigg] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHBigg] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHbigl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHBigl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHbiggl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHBiggl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHright] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHbigr] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHBigr] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHbiggr] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHBiggr] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHDeclarePairedDelimiter] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHDeclarePairedDelimiterX] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnewenvironment] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHrenewenvironment] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHNewDocumentEnvironment] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHRenewDocumentEnvironment] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHProvideDocumentEnvironment] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHDeclareDocumentEnvironment] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnewglossaryentry] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHgls] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGls] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLS] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglspl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlspl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLSpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsdisp] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglslink] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglstext] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlstext] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLStext] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsfirst] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsfirst] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLSfirst] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsplural] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsplural] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLSplural] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsfirstplural] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsfirstplural] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLSfirstplural] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsname] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsname] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLSname] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglssymbol] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlssymbol] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsdesc] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsdesc] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLSdesc] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsuseri] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsuseri] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLSuseri] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsuserii] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsuserii] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLSuserii] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsuseriii] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsuseriii] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLSuseriii] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsuseriv] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsuseriv] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLSuseriv] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsuserv] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsuserv] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLSuserv] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsuservi] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsuservi] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGLSuservi] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnewacronym] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHacrshort] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAcrshort] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHACRshort] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHacrshortpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAcrshortpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHACRshortpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHacrlong] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAcrlong] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHACRlong] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHacrlongpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAcrlongpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHACRlongpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHacrfull] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAcrfull] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHACRfull] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHacrfullpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAcrfullpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHACRfullpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHacs] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAcs] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHacsp] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAcsp] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHacl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAcl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHaclp] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAclp] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHacf] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAcf] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHacfp] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAcfp] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHac] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHAc] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHacp] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsentrylong] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsentrylong] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsentrylongpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsentrylongpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsentryshort] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsentryshort] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsentryshortpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsentryshortpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHglsentryfullpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHGlsentryfullpl] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnewtheorem] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHnewtheorem_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHdeclaretheorem] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHdeclaretheorem_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHdefinecolor] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHdefinecolorset] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcolor] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHcolorbox] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHtextcolor] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHpagecolor] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHusepgflibrary] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHusetikzlibrary] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHtext] = { - .visible = true, - .named = false, - }, - [anon_sym_BSLASHintertext] = { - .visible = true, - .named = false, - }, - [anon_sym_shortintertext] = { - .visible = true, - .named = false, - }, - [sym__trivia_raw_fi] = { - .visible = true, - .named = true, - }, - [sym__trivia_raw_env_comment] = { - .visible = true, - .named = true, - }, - [sym__trivia_raw_env_verbatim] = { - .visible = true, - .named = true, - }, - [sym__trivia_raw_env_listing] = { - .visible = true, - .named = true, - }, - [sym__trivia_raw_env_minted] = { - .visible = true, - .named = true, - }, - [sym__trivia_raw_env_pycode] = { - .visible = true, - .named = true, - }, - [sym_source_file] = { - .visible = true, - .named = true, - }, - [sym_block_comment] = { - .visible = true, - .named = true, - }, - [sym__root_content] = { - .visible = false, - .named = true, - }, - [sym__flat_content] = { - .visible = false, - .named = true, - }, - [sym__text_with_env_content] = { - .visible = false, - .named = true, - }, - [sym__text_content] = { - .visible = false, - .named = true, - }, - [sym__section] = { - .visible = false, - .named = true, - }, - [sym__section_part] = { - .visible = false, - .named = true, - }, - [sym__part_declaration] = { - .visible = false, - .named = true, - }, - [sym_part] = { - .visible = true, - .named = true, - }, - [sym__chapter_declaration] = { - .visible = false, - .named = true, - }, - [sym_chapter] = { - .visible = true, - .named = true, - }, - [sym__section_declaration] = { - .visible = false, - .named = true, - }, - [sym_section] = { - .visible = true, - .named = true, - }, - [sym__subsection_declaration] = { - .visible = false, - .named = true, - }, - [sym_subsection] = { - .visible = true, - .named = true, - }, - [sym__subsubsection_declaration] = { - .visible = false, - .named = true, - }, - [sym_subsubsection] = { - .visible = true, - .named = true, - }, - [sym__paragraph_declaration] = { - .visible = false, - .named = true, - }, - [sym_paragraph] = { - .visible = true, - .named = true, - }, - [sym__subparagraph_declaration] = { - .visible = false, - .named = true, - }, - [sym_subparagraph] = { - .visible = true, - .named = true, - }, - [sym__enum_itemdeclaration] = { - .visible = false, - .named = true, - }, - [sym_enum_item] = { - .visible = true, - .named = true, - }, - [sym_curly_group] = { - .visible = true, - .named = true, - }, - [sym_curly_group_text] = { - .visible = true, - .named = true, - }, - [sym_curly_group_text_list] = { - .visible = true, - .named = true, - }, - [sym_curly_group_path] = { - .visible = true, - .named = true, - }, - [sym_curly_group_path_list] = { - .visible = true, - .named = true, - }, - [sym_curly_group_command_name] = { - .visible = true, - .named = true, - }, - [sym_curly_group_key_value] = { - .visible = true, - .named = true, - }, - [sym_curly_group_glob_pattern] = { - .visible = true, - .named = true, - }, - [sym_curly_group_impl] = { - .visible = true, - .named = true, - }, - [sym_curly_group_author_list] = { - .visible = true, - .named = true, - }, - [sym_brack_group] = { - .visible = true, - .named = true, - }, - [sym_brack_group_text] = { - .visible = true, - .named = true, - }, - [sym_brack_group_argc] = { - .visible = true, - .named = true, - }, - [sym_brack_group_key_value] = { - .visible = true, - .named = true, - }, - [sym_text] = { - .visible = true, - .named = true, - }, - [sym_glob_pattern] = { - .visible = true, - .named = true, - }, - [sym__glob_pattern_fragment] = { - .visible = false, - .named = true, - }, - [sym_operator] = { - .visible = true, - .named = true, - }, - [sym_subscript] = { - .visible = true, - .named = true, - }, - [sym_superscript] = { - .visible = true, - .named = true, - }, - [sym_key_value_pair] = { - .visible = true, - .named = true, - }, - [sym_value] = { - .visible = true, - .named = true, - }, - [sym_displayed_equation] = { - .visible = true, - .named = true, - }, - [sym_inline_formula] = { - .visible = true, - .named = true, - }, - [sym_begin] = { - .visible = true, - .named = true, - }, - [sym_end] = { - .visible = true, - .named = true, - }, - [sym_generic_environment] = { - .visible = true, - .named = true, - }, - [sym_comment_environment] = { - .visible = true, - .named = true, - }, - [sym__comment_environment_begin] = { - .visible = true, - .named = true, - }, - [sym__comment_environment_end] = { - .visible = true, - .named = true, - }, - [sym__comment_environment_group] = { - .visible = true, - .named = true, - }, - [sym__comment_environment_name] = { - .visible = true, - .named = true, - }, - [sym_verbatim_environment] = { - .visible = true, - .named = true, - }, - [sym__verbatim_environment_begin] = { - .visible = true, - .named = true, - }, - [sym__verbatim_environment_end] = { - .visible = true, - .named = true, - }, - [sym__verbatim_environment_group] = { - .visible = true, - .named = true, - }, - [sym__verbatim_environment_name] = { - .visible = true, - .named = true, - }, - [sym_listing_environment] = { - .visible = true, - .named = true, - }, - [sym__listing_environment_begin] = { - .visible = true, - .named = true, - }, - [sym__listing_environment_end] = { - .visible = true, - .named = true, - }, - [sym__listing_environment_group] = { - .visible = true, - .named = true, - }, - [sym__listing_environment_name] = { - .visible = true, - .named = true, - }, - [sym_minted_environment] = { - .visible = true, - .named = true, - }, - [sym__minted_environment_begin] = { - .visible = true, - .named = true, - }, - [sym__minted_environment_end] = { - .visible = true, - .named = true, - }, - [sym__minted_environment_group] = { - .visible = true, - .named = true, - }, - [sym__minted_environment_name] = { - .visible = true, - .named = true, - }, - [sym_pycode_environment] = { - .visible = true, - .named = true, - }, - [sym__pycode_environment_begin] = { - .visible = true, - .named = true, - }, - [sym__pycode_environment_end] = { - .visible = true, - .named = true, - }, - [sym__pycode_environment_group] = { - .visible = true, - .named = true, - }, - [sym__pycode_environment_name] = { - .visible = true, - .named = true, - }, - [sym_math_environment] = { - .visible = true, - .named = true, - }, - [sym__math_environment_begin] = { - .visible = true, - .named = true, - }, - [sym__math_environment_end] = { - .visible = true, - .named = true, - }, - [sym__math_environment_group] = { - .visible = true, - .named = true, - }, - [sym__math_environment_name] = { - .visible = true, - .named = true, - }, - [sym__command] = { - .visible = false, - .named = true, - }, - [sym_generic_command] = { - .visible = true, - .named = true, - }, - [sym_title_declaration] = { - .visible = true, - .named = true, - }, - [sym_author_declaration] = { - .visible = true, - .named = true, - }, - [sym_package_include] = { - .visible = true, - .named = true, - }, - [sym_class_include] = { - .visible = true, - .named = true, - }, - [sym_latex_include] = { - .visible = true, - .named = true, - }, - [sym_biblatex_include] = { - .visible = true, - .named = true, - }, - [sym_bibtex_include] = { - .visible = true, - .named = true, - }, - [sym_graphics_include] = { - .visible = true, - .named = true, - }, - [sym_svg_include] = { - .visible = true, - .named = true, - }, - [sym_inkscape_include] = { - .visible = true, - .named = true, - }, - [sym_verbatim_include] = { - .visible = true, - .named = true, - }, - [sym_import_include] = { - .visible = true, - .named = true, - }, - [sym_caption] = { - .visible = true, - .named = true, - }, - [sym_citation] = { - .visible = true, - .named = true, - }, - [sym_label_definition] = { - .visible = true, - .named = true, - }, - [sym_label_reference] = { - .visible = true, - .named = true, - }, - [sym_label_reference_range] = { - .visible = true, - .named = true, - }, - [sym_label_number] = { - .visible = true, - .named = true, - }, - [sym_new_command_definition] = { - .visible = true, - .named = true, - }, - [sym_old_command_definition] = { - .visible = true, - .named = true, - }, - [sym_let_command_definition] = { - .visible = true, - .named = true, - }, - [sym__math_delimiter_part] = { - .visible = false, - .named = true, - }, - [sym_math_delimiter] = { - .visible = true, - .named = true, - }, - [sym_paired_delimiter_definition] = { - .visible = true, - .named = true, - }, - [sym_environment_definition] = { - .visible = true, - .named = true, - }, - [sym_glossary_entry_definition] = { - .visible = true, - .named = true, - }, - [sym_glossary_entry_reference] = { - .visible = true, - .named = true, - }, - [sym_acronym_definition] = { - .visible = true, - .named = true, - }, - [sym_acronym_reference] = { - .visible = true, - .named = true, - }, - [sym_theorem_definition] = { - .visible = true, - .named = true, - }, - [sym_color_definition] = { - .visible = true, - .named = true, - }, - [sym_color_set_definition] = { - .visible = true, - .named = true, - }, - [sym_color_reference] = { - .visible = true, - .named = true, - }, - [sym_tikz_library_import] = { - .visible = true, - .named = true, - }, - [sym_text_mode] = { - .visible = true, - .named = true, - }, - [aux_sym_source_file_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__section_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__section_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym__section_repeat3] = { - .visible = false, - .named = false, - }, - [aux_sym__section_repeat4] = { - .visible = false, - .named = false, - }, - [aux_sym__section_repeat5] = { - .visible = false, - .named = false, - }, - [aux_sym__section_repeat6] = { - .visible = false, - .named = false, - }, - [aux_sym__section_repeat7] = { - .visible = false, - .named = false, - }, - [aux_sym__section_repeat8] = { - .visible = false, - .named = false, - }, - [aux_sym_part_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_curly_group_text_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_curly_group_path_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_curly_group_key_value_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_curly_group_impl_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_curly_group_author_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_curly_group_author_list_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_brack_group_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_text_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_glob_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_value_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_generic_command_repeat1] = { - .visible = false, - .named = false, - }, - [alias_sym_author] = { - .visible = true, - .named = true, - }, -}; - -enum { - field_arg = 1, - field_argc = 2, - field_authors = 3, - field_begin = 4, - field_body = 5, - field_code = 6, - field_command = 7, - field_comment = 8, - field_content = 9, - field_counter = 10, - field_declaration = 11, - field_default = 12, - field_directory = 13, - field_end = 14, - field_file = 15, - field_from = 16, - field_glob = 17, - field_head = 18, - field_implementation = 19, - field_key = 20, - field_keys = 21, - field_label = 22, - field_language = 23, - field_left = 24, - field_left_command = 25, - field_left_delimiter = 26, - field_long = 27, - field_model = 28, - field_name = 29, - field_names = 30, - field_number = 31, - field_options = 32, - field_pair = 33, - field_path = 34, - field_paths = 35, - field_pattern = 36, - field_postnote = 37, - field_prenote = 38, - field_right = 39, - field_right_command = 40, - field_right_delimiter = 41, - field_short = 42, - field_spec = 43, - field_subscript = 44, - field_superscript = 45, - field_tail = 46, - field_text = 47, - field_title = 48, - field_to = 49, - field_toc = 50, - field_ty = 51, - field_value = 52, - field_verbatim = 53, - field_word = 54, -}; - -static const char * const ts_field_names[] = { - [0] = NULL, - [field_arg] = "arg", - [field_argc] = "argc", - [field_authors] = "authors", - [field_begin] = "begin", - [field_body] = "body", - [field_code] = "code", - [field_command] = "command", - [field_comment] = "comment", - [field_content] = "content", - [field_counter] = "counter", - [field_declaration] = "declaration", - [field_default] = "default", - [field_directory] = "directory", - [field_end] = "end", - [field_file] = "file", - [field_from] = "from", - [field_glob] = "glob", - [field_head] = "head", - [field_implementation] = "implementation", - [field_key] = "key", - [field_keys] = "keys", - [field_label] = "label", - [field_language] = "language", - [field_left] = "left", - [field_left_command] = "left_command", - [field_left_delimiter] = "left_delimiter", - [field_long] = "long", - [field_model] = "model", - [field_name] = "name", - [field_names] = "names", - [field_number] = "number", - [field_options] = "options", - [field_pair] = "pair", - [field_path] = "path", - [field_paths] = "paths", - [field_pattern] = "pattern", - [field_postnote] = "postnote", - [field_prenote] = "prenote", - [field_right] = "right", - [field_right_command] = "right_command", - [field_right_delimiter] = "right_delimiter", - [field_short] = "short", - [field_spec] = "spec", - [field_subscript] = "subscript", - [field_superscript] = "superscript", - [field_tail] = "tail", - [field_text] = "text", - [field_title] = "title", - [field_to] = "to", - [field_toc] = "toc", - [field_ty] = "ty", - [field_value] = "value", - [field_verbatim] = "verbatim", - [field_word] = "word", -}; - -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [1] = {.index = 0, .length = 1}, - [2] = {.index = 1, .length = 1}, - [3] = {.index = 2, .length = 1}, - [4] = {.index = 3, .length = 3}, - [5] = {.index = 6, .length = 2}, - [6] = {.index = 8, .length = 1}, - [7] = {.index = 9, .length = 2}, - [8] = {.index = 11, .length = 2}, - [9] = {.index = 13, .length = 3}, - [10] = {.index = 16, .length = 1}, - [11] = {.index = 17, .length = 2}, - [12] = {.index = 19, .length = 1}, - [13] = {.index = 20, .length = 1}, - [14] = {.index = 21, .length = 2}, - [15] = {.index = 23, .length = 3}, - [16] = {.index = 26, .length = 1}, - [17] = {.index = 27, .length = 2}, - [18] = {.index = 29, .length = 2}, - [19] = {.index = 31, .length = 2}, - [20] = {.index = 33, .length = 2}, - [21] = {.index = 35, .length = 2}, - [22] = {.index = 37, .length = 1}, - [23] = {.index = 38, .length = 2}, - [24] = {.index = 40, .length = 2}, - [25] = {.index = 42, .length = 2}, - [26] = {.index = 44, .length = 2}, - [27] = {.index = 46, .length = 2}, - [28] = {.index = 48, .length = 6}, - [29] = {.index = 54, .length = 2}, - [30] = {.index = 56, .length = 3}, - [31] = {.index = 59, .length = 2}, - [32] = {.index = 61, .length = 3}, - [33] = {.index = 64, .length = 4}, - [34] = {.index = 68, .length = 2}, - [35] = {.index = 70, .length = 3}, - [36] = {.index = 73, .length = 1}, - [37] = {.index = 74, .length = 3}, - [38] = {.index = 77, .length = 3}, - [39] = {.index = 80, .length = 2}, - [40] = {.index = 82, .length = 3}, - [41] = {.index = 85, .length = 3}, - [42] = {.index = 88, .length = 3}, - [43] = {.index = 91, .length = 3}, - [44] = {.index = 94, .length = 3}, - [45] = {.index = 97, .length = 3}, - [46] = {.index = 100, .length = 3}, - [47] = {.index = 103, .length = 3}, - [48] = {.index = 106, .length = 2}, - [49] = {.index = 108, .length = 7}, - [50] = {.index = 115, .length = 7}, - [51] = {.index = 122, .length = 7}, - [52] = {.index = 129, .length = 9}, - [53] = {.index = 138, .length = 6}, - [54] = {.index = 144, .length = 1}, - [55] = {.index = 145, .length = 2}, - [56] = {.index = 147, .length = 5}, - [58] = {.index = 152, .length = 1}, - [59] = {.index = 153, .length = 1}, - [60] = {.index = 154, .length = 1}, - [61] = {.index = 155, .length = 4}, - [62] = {.index = 159, .length = 1}, - [63] = {.index = 160, .length = 4}, - [64] = {.index = 164, .length = 3}, - [65] = {.index = 167, .length = 4}, - [66] = {.index = 171, .length = 4}, - [67] = {.index = 175, .length = 4}, - [68] = {.index = 179, .length = 4}, - [69] = {.index = 183, .length = 4}, - [70] = {.index = 187, .length = 4}, - [71] = {.index = 191, .length = 4}, - [72] = {.index = 195, .length = 4}, - [73] = {.index = 199, .length = 2}, - [74] = {.index = 201, .length = 2}, - [75] = {.index = 203, .length = 2}, - [76] = {.index = 205, .length = 2}, - [77] = {.index = 207, .length = 2}, - [78] = {.index = 209, .length = 2}, - [79] = {.index = 211, .length = 2}, - [80] = {.index = 213, .length = 1}, - [81] = {.index = 214, .length = 5}, - [82] = {.index = 219, .length = 4}, - [83] = {.index = 223, .length = 5}, - [84] = {.index = 228, .length = 5}, - [85] = {.index = 233, .length = 5}, - [86] = {.index = 238, .length = 5}, - [87] = {.index = 243, .length = 5}, - [88] = {.index = 248, .length = 5}, - [89] = {.index = 253, .length = 4}, - [90] = {.index = 257, .length = 5}, - [91] = {.index = 262, .length = 6}, - [92] = {.index = 268, .length = 6}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_begin, 0}, - [1] = - {field_command, 0}, - [2] = - {field_word, 0}, - [3] = - {field_command, 0, .inherited = true}, - {field_text, 0, .inherited = true}, - {field_toc, 0, .inherited = true}, - [6] = - {field_command, 0, .inherited = true}, - {field_label, 0, .inherited = true}, - [8] = - {field_word, 0, .inherited = true}, - [9] = - {field_begin, 0}, - {field_comment, 1}, - [11] = - {field_begin, 0}, - {field_end, 1}, - [13] = - {field_command, 0}, - {field_text, 1, .inherited = true}, - {field_toc, 1, .inherited = true}, - [16] = - {field_text, 0}, - [17] = - {field_command, 0}, - {field_label, 1}, - [19] = - {field_subscript, 1}, - [20] = - {field_superscript, 1}, - [21] = - {field_command, 0}, - {field_name, 1}, - [23] = - {field_command, 0}, - {field_name, 1}, - {field_text, 1, .inherited = true}, - [26] = - {field_arg, 0}, - [27] = - {field_arg, 1, .inherited = true}, - {field_command, 0}, - [29] = - {field_command, 0}, - {field_text, 1}, - [31] = - {field_authors, 1}, - {field_command, 0}, - [33] = - {field_command, 0}, - {field_paths, 1}, - [35] = - {field_command, 0}, - {field_path, 1}, - [37] = - {field_glob, 1}, - [38] = - {field_command, 0}, - {field_long, 1}, - [40] = - {field_command, 0}, - {field_keys, 1}, - [42] = - {field_command, 0}, - {field_names, 1}, - [44] = - {field_command, 0}, - {field_declaration, 1}, - [46] = - {field_command, 0}, - {field_content, 1}, - [48] = - {field_begin, 0}, - {field_command, 0, .inherited = true}, - {field_command, 1, .inherited = true}, - {field_end, 1}, - {field_name, 0, .inherited = true}, - {field_name, 1, .inherited = true}, - [54] = - {field_word, 0, .inherited = true}, - {field_word, 1, .inherited = true}, - [56] = - {field_begin, 0}, - {field_comment, 1}, - {field_end, 2}, - [59] = - {field_text, 1}, - {field_toc, 0}, - [61] = - {field_command, 0}, - {field_name, 1}, - {field_options, 2}, - [64] = - {field_command, 0}, - {field_language, 2}, - {field_name, 1}, - {field_text, 1, .inherited = true}, - [68] = - {field_arg, 0, .inherited = true}, - {field_arg, 1, .inherited = true}, - [70] = - {field_command, 0}, - {field_options, 1}, - {field_text, 2}, - [73] = - {field_key, 0}, - [74] = - {field_command, 0}, - {field_options, 1}, - {field_paths, 2}, - [77] = - {field_command, 0}, - {field_options, 1}, - {field_path, 2}, - [80] = - {field_glob, 2}, - {field_options, 1}, - [82] = - {field_command, 0}, - {field_directory, 1}, - {field_file, 2}, - [85] = - {field_command, 0}, - {field_long, 2}, - {field_short, 1}, - [88] = - {field_command, 0}, - {field_keys, 2}, - {field_prenote, 1}, - [91] = - {field_command, 0}, - {field_from, 1}, - {field_to, 2}, - [94] = - {field_command, 0}, - {field_name, 1}, - {field_number, 2}, - [97] = - {field_command, 0}, - {field_declaration, 1}, - {field_implementation, 2}, - [100] = - {field_command, 0}, - {field_name, 2}, - {field_options, 1}, - [103] = - {field_command, 0}, - {field_name, 1}, - {field_title, 2}, - [106] = - {field_begin, 0}, - {field_end, 2}, - [108] = - {field_begin, 0}, - {field_command, 0, .inherited = true}, - {field_command, 2, .inherited = true}, - {field_comment, 1}, - {field_end, 2}, - {field_name, 0, .inherited = true}, - {field_name, 2, .inherited = true}, - [115] = - {field_begin, 0}, - {field_command, 0, .inherited = true}, - {field_command, 2, .inherited = true}, - {field_end, 2}, - {field_name, 0, .inherited = true}, - {field_name, 2, .inherited = true}, - {field_verbatim, 1}, - [122] = - {field_begin, 0}, - {field_code, 1}, - {field_command, 0, .inherited = true}, - {field_command, 2, .inherited = true}, - {field_end, 2}, - {field_name, 0, .inherited = true}, - {field_name, 2, .inherited = true}, - [129] = - {field_begin, 0}, - {field_code, 1}, - {field_command, 0, .inherited = true}, - {field_command, 2, .inherited = true}, - {field_end, 2}, - {field_language, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_name, 2, .inherited = true}, - {field_options, 0, .inherited = true}, - [138] = - {field_begin, 0}, - {field_command, 0, .inherited = true}, - {field_command, 2, .inherited = true}, - {field_end, 2}, - {field_name, 0, .inherited = true}, - {field_name, 2, .inherited = true}, - [144] = - {field_text, 1}, - [145] = - {field_text, 1}, - {field_word, 1, .inherited = true}, - [147] = - {field_command, 0}, - {field_language, 3}, - {field_name, 1}, - {field_options, 2}, - {field_text, 1, .inherited = true}, - [152] = - {field_pair, 1}, - [153] = - {field_path, 1}, - [154] = - {field_pattern, 1}, - [155] = - {field_command, 0}, - {field_keys, 3}, - {field_postnote, 2}, - {field_prenote, 1}, - [159] = - {field_command, 1}, - [160] = - {field_argc, 2}, - {field_command, 0}, - {field_declaration, 1}, - {field_implementation, 3}, - [164] = - {field_command, 0}, - {field_declaration, 1}, - {field_implementation, 3}, - [167] = - {field_left_command, 0}, - {field_left_delimiter, 1}, - {field_right_command, 2}, - {field_right_delimiter, 3}, - [171] = - {field_command, 0}, - {field_declaration, 1}, - {field_left, 2}, - {field_right, 3}, - [175] = - {field_begin, 2}, - {field_command, 0}, - {field_end, 3}, - {field_name, 1}, - [179] = - {field_command, 0}, - {field_long, 3}, - {field_name, 1}, - {field_short, 2}, - [183] = - {field_command, 0}, - {field_counter, 3}, - {field_name, 1}, - {field_title, 2}, - [187] = - {field_command, 0}, - {field_counter, 2}, - {field_name, 1}, - {field_title, 3}, - [191] = - {field_command, 0}, - {field_name, 2}, - {field_options, 1}, - {field_title, 3}, - [195] = - {field_command, 0}, - {field_model, 2}, - {field_name, 1}, - {field_spec, 3}, - [199] = - {field_key, 0}, - {field_value, 2}, - [201] = - {field_pair, 1}, - {field_pair, 2, .inherited = true}, - [203] = - {field_pair, 0, .inherited = true}, - {field_pair, 1, .inherited = true}, - [205] = - {field_path, 1}, - {field_path, 2, .inherited = true}, - [207] = - {field_path, 0, .inherited = true}, - {field_path, 1, .inherited = true}, - [209] = - {field_text, 1}, - {field_text, 2, .inherited = true}, - [211] = - {field_text, 0, .inherited = true}, - {field_text, 1, .inherited = true}, - [213] = - {field_value, 1}, - [214] = - {field_argc, 2}, - {field_command, 0}, - {field_declaration, 1}, - {field_default, 3}, - {field_implementation, 4}, - [219] = - {field_left_command, 0}, - {field_left_delimiter, 1}, - {field_right_command, 3}, - {field_right_delimiter, 4}, - [223] = - {field_body, 4}, - {field_command, 0}, - {field_declaration, 1}, - {field_left, 2}, - {field_right, 3}, - [228] = - {field_argc, 2}, - {field_command, 0}, - {field_declaration, 1}, - {field_left, 3}, - {field_right, 4}, - [233] = - {field_argc, 2}, - {field_begin, 3}, - {field_command, 0}, - {field_end, 4}, - {field_name, 1}, - [238] = - {field_command, 0}, - {field_long, 4}, - {field_name, 2}, - {field_options, 1}, - {field_short, 3}, - [243] = - {field_command, 0}, - {field_counter, 4}, - {field_name, 2}, - {field_options, 1}, - {field_title, 3}, - [248] = - {field_command, 0}, - {field_counter, 3}, - {field_name, 2}, - {field_options, 1}, - {field_title, 4}, - [253] = - {field_command, 0}, - {field_model, 3}, - {field_name, 2}, - {field_spec, 4}, - [257] = - {field_command, 0}, - {field_head, 2}, - {field_model, 1}, - {field_spec, 4}, - {field_tail, 3}, - [262] = - {field_argc, 2}, - {field_body, 5}, - {field_command, 0}, - {field_declaration, 1}, - {field_left, 3}, - {field_right, 4}, - [268] = - {field_command, 0}, - {field_head, 3}, - {field_model, 2}, - {field_spec, 5}, - {field_tail, 4}, - {field_ty, 1}, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, - [57] = { - [1] = alias_sym_author, - }, -}; - -static const uint16_t ts_non_terminal_alias_map[] = { - aux_sym_curly_group_author_list_repeat1, 2, - aux_sym_curly_group_author_list_repeat1, - alias_sym_author, - 0, -}; - -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 2, - [4] = 4, - [5] = 4, - [6] = 2, - [7] = 7, - [8] = 2, - [9] = 4, - [10] = 2, - [11] = 4, - [12] = 4, - [13] = 13, - [14] = 2, - [15] = 2, - [16] = 4, - [17] = 17, - [18] = 2, - [19] = 4, - [20] = 20, - [21] = 4, - [22] = 22, - [23] = 23, - [24] = 2, - [25] = 23, - [26] = 23, - [27] = 22, - [28] = 28, - [29] = 22, - [30] = 23, - [31] = 22, - [32] = 23, - [33] = 22, - [34] = 22, - [35] = 22, - [36] = 23, - [37] = 22, - [38] = 23, - [39] = 22, - [40] = 23, - [41] = 4, - [42] = 23, - [43] = 4, - [44] = 22, - [45] = 23, - [46] = 2, - [47] = 4, - [48] = 23, - [49] = 22, - [50] = 2, - [51] = 17, - [52] = 13, - [53] = 20, - [54] = 17, - [55] = 13, - [56] = 7, - [57] = 20, - [58] = 7, - [59] = 59, - [60] = 60, - [61] = 20, - [62] = 60, - [63] = 59, - [64] = 7, - [65] = 59, - [66] = 28, - [67] = 59, - [68] = 60, - [69] = 60, - [70] = 60, - [71] = 13, - [72] = 17, - [73] = 59, - [74] = 59, - [75] = 13, - [76] = 17, - [77] = 17, - [78] = 7, - [79] = 60, - [80] = 20, - [81] = 7, - [82] = 7, - [83] = 20, - [84] = 20, - [85] = 17, - [86] = 7, - [87] = 13, - [88] = 13, - [89] = 20, - [90] = 13, - [91] = 60, - [92] = 17, - [93] = 59, - [94] = 20, - [95] = 95, - [96] = 96, - [97] = 97, - [98] = 98, - [99] = 99, - [100] = 100, - [101] = 97, - [102] = 102, - [103] = 28, - [104] = 99, - [105] = 100, - [106] = 98, - [107] = 99, - [108] = 97, - [109] = 100, - [110] = 102, - [111] = 99, - [112] = 97, - [113] = 96, - [114] = 17, - [115] = 102, - [116] = 13, - [117] = 100, - [118] = 98, - [119] = 13, - [120] = 96, - [121] = 17, - [122] = 97, - [123] = 99, - [124] = 7, - [125] = 17, - [126] = 20, - [127] = 97, - [128] = 98, - [129] = 99, - [130] = 28, - [131] = 100, - [132] = 102, - [133] = 102, - [134] = 96, - [135] = 99, - [136] = 98, - [137] = 97, - [138] = 7, - [139] = 96, - [140] = 100, - [141] = 100, - [142] = 98, - [143] = 102, - [144] = 13, - [145] = 20, - [146] = 102, - [147] = 96, - [148] = 100, - [149] = 98, - [150] = 98, - [151] = 97, - [152] = 99, - [153] = 98, - [154] = 100, - [155] = 102, - [156] = 97, - [157] = 99, - [158] = 97, - [159] = 96, - [160] = 28, - [161] = 96, - [162] = 98, - [163] = 100, - [164] = 99, - [165] = 98, - [166] = 7, - [167] = 100, - [168] = 102, - [169] = 96, - [170] = 99, - [171] = 97, - [172] = 96, - [173] = 102, - [174] = 174, - [175] = 175, - [176] = 174, - [177] = 177, - [178] = 175, - [179] = 179, - [180] = 175, - [181] = 174, - [182] = 174, - [183] = 175, - [184] = 174, - [185] = 175, - [186] = 177, - [187] = 187, - [188] = 179, - [189] = 189, - [190] = 179, - [191] = 177, - [192] = 177, - [193] = 179, - [194] = 179, - [195] = 177, - [196] = 196, - [197] = 187, - [198] = 198, - [199] = 189, - [200] = 189, - [201] = 187, - [202] = 189, - [203] = 187, - [204] = 189, - [205] = 187, - [206] = 196, - [207] = 207, - [208] = 208, - [209] = 198, - [210] = 196, - [211] = 196, - [212] = 198, - [213] = 198, - [214] = 196, - [215] = 198, - [216] = 216, - [217] = 207, - [218] = 218, - [219] = 208, - [220] = 208, - [221] = 208, - [222] = 207, - [223] = 207, - [224] = 207, - [225] = 208, - [226] = 216, - [227] = 218, - [228] = 228, - [229] = 229, - [230] = 218, - [231] = 216, - [232] = 216, - [233] = 218, - [234] = 218, - [235] = 216, - [236] = 236, - [237] = 228, - [238] = 238, - [239] = 229, - [240] = 240, - [241] = 228, - [242] = 229, - [243] = 229, - [244] = 229, - [245] = 228, - [246] = 228, - [247] = 240, - [248] = 236, - [249] = 238, - [250] = 236, - [251] = 240, - [252] = 240, - [253] = 236, - [254] = 236, - [255] = 238, - [256] = 238, - [257] = 238, - [258] = 240, - [259] = 259, - [260] = 260, - [261] = 261, - [262] = 261, - [263] = 263, - [264] = 263, - [265] = 263, - [266] = 263, - [267] = 263, - [268] = 263, - [269] = 261, - [270] = 261, - [271] = 261, - [272] = 261, - [273] = 261, - [274] = 263, - [275] = 240, - [276] = 276, - [277] = 277, - [278] = 260, - [279] = 276, - [280] = 276, - [281] = 281, - [282] = 281, - [283] = 281, - [284] = 259, - [285] = 260, - [286] = 259, - [287] = 260, - [288] = 259, - [289] = 259, - [290] = 260, - [291] = 291, - [292] = 292, - [293] = 292, - [294] = 294, - [295] = 291, - [296] = 291, - [297] = 297, - [298] = 291, - [299] = 292, - [300] = 292, - [301] = 291, - [302] = 291, - [303] = 292, - [304] = 292, - [305] = 292, - [306] = 291, - [307] = 292, - [308] = 291, - [309] = 291, - [310] = 292, - [311] = 292, - [312] = 292, - [313] = 291, - [314] = 291, - [315] = 315, - [316] = 316, - [317] = 316, - [318] = 315, - [319] = 319, - [320] = 320, - [321] = 320, - [322] = 320, - [323] = 320, - [324] = 320, - [325] = 320, - [326] = 320, - [327] = 320, - [328] = 320, - [329] = 319, - [330] = 320, - [331] = 331, - [332] = 332, - [333] = 333, - [334] = 333, - [335] = 333, - [336] = 333, - [337] = 333, - [338] = 333, - [339] = 333, - [340] = 333, - [341] = 333, - [342] = 333, - [343] = 343, - [344] = 259, - [345] = 260, - [346] = 260, - [347] = 260, - [348] = 259, - [349] = 259, - [350] = 259, - [351] = 260, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 391, - [392] = 392, - [393] = 393, - [394] = 394, - [395] = 395, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 401, - [402] = 402, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 407, - [408] = 408, - [409] = 409, - [410] = 410, - [411] = 411, - [412] = 412, - [413] = 413, - [414] = 414, - [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 424, - [425] = 425, - [426] = 426, - [427] = 427, - [428] = 428, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 432, - [433] = 433, - [434] = 434, - [435] = 435, - [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 442, - [443] = 443, - [444] = 444, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 358, - [449] = 449, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 413, - [454] = 412, - [455] = 411, - [456] = 410, - [457] = 409, - [458] = 408, - [459] = 407, - [460] = 406, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 405, - [465] = 404, - [466] = 403, - [467] = 402, - [468] = 468, - [469] = 401, - [470] = 400, - [471] = 399, - [472] = 398, - [473] = 353, - [474] = 396, - [475] = 394, - [476] = 393, - [477] = 392, - [478] = 391, - [479] = 390, - [480] = 389, - [481] = 388, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 386, - [486] = 486, - [487] = 385, - [488] = 384, - [489] = 489, - [490] = 383, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 496, - [497] = 497, - [498] = 498, - [499] = 382, - [500] = 381, - [501] = 380, - [502] = 379, - [503] = 378, - [504] = 362, - [505] = 377, - [506] = 506, - [507] = 507, - [508] = 376, - [509] = 509, - [510] = 414, - [511] = 511, - [512] = 512, - [513] = 415, - [514] = 417, - [515] = 418, - [516] = 516, - [517] = 422, - [518] = 518, - [519] = 352, - [520] = 429, - [521] = 430, - [522] = 421, - [523] = 523, - [524] = 419, - [525] = 397, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 529, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 533, - [534] = 534, - [535] = 535, - [536] = 536, - [537] = 537, - [538] = 538, - [539] = 539, - [540] = 540, - [541] = 541, - [542] = 542, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 547, - [548] = 548, - [549] = 549, - [550] = 550, - [551] = 551, - [552] = 552, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 556, - [557] = 557, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 561, - [562] = 562, - [563] = 563, - [564] = 423, - [565] = 424, - [566] = 354, - [567] = 567, - [568] = 568, - [569] = 569, - [570] = 570, - [571] = 571, - [572] = 572, - [573] = 573, - [574] = 574, - [575] = 575, - [576] = 426, - [577] = 427, - [578] = 428, - [579] = 425, - [580] = 580, - [581] = 420, - [582] = 582, - [583] = 416, - [584] = 395, - [585] = 387, - [586] = 586, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 372, - [596] = 366, - [597] = 597, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 365, - [606] = 375, - [607] = 374, - [608] = 373, - [609] = 371, - [610] = 370, - [611] = 369, - [612] = 368, - [613] = 367, - [614] = 614, - [615] = 615, - [616] = 616, - [617] = 617, - [618] = 618, - [619] = 364, - [620] = 620, - [621] = 621, - [622] = 622, - [623] = 623, - [624] = 624, - [625] = 625, - [626] = 363, - [627] = 627, - [628] = 628, - [629] = 629, - [630] = 630, - [631] = 631, - [632] = 632, - [633] = 633, - [634] = 634, - [635] = 635, - [636] = 636, - [637] = 361, - [638] = 360, - [639] = 359, - [640] = 357, - [641] = 356, - [642] = 355, - [643] = 370, - [644] = 373, - [645] = 413, - [646] = 412, - [647] = 411, - [648] = 410, - [649] = 409, - [650] = 408, - [651] = 407, - [652] = 406, - [653] = 405, - [654] = 404, - [655] = 403, - [656] = 402, - [657] = 401, - [658] = 400, - [659] = 399, - [660] = 398, - [661] = 353, - [662] = 396, - [663] = 394, - [664] = 393, - [665] = 392, - [666] = 391, - [667] = 390, - [668] = 389, - [669] = 388, - [670] = 386, - [671] = 385, - [672] = 384, - [673] = 383, - [674] = 382, - [675] = 381, - [676] = 380, - [677] = 379, - [678] = 378, - [679] = 377, - [680] = 376, - [681] = 414, - [682] = 415, - [683] = 417, - [684] = 418, - [685] = 422, - [686] = 416, - [687] = 352, - [688] = 429, - [689] = 430, - [690] = 421, - [691] = 419, - [692] = 397, - [693] = 436, - [694] = 358, - [695] = 362, - [696] = 363, - [697] = 364, - [698] = 365, - [699] = 366, - [700] = 372, - [701] = 387, - [702] = 354, - [703] = 355, - [704] = 356, - [705] = 357, - [706] = 359, - [707] = 360, - [708] = 361, - [709] = 395, - [710] = 416, - [711] = 420, - [712] = 425, - [713] = 428, - [714] = 427, - [715] = 426, - [716] = 424, - [717] = 423, - [718] = 424, - [719] = 426, - [720] = 427, - [721] = 367, - [722] = 368, - [723] = 369, - [724] = 370, - [725] = 371, - [726] = 373, - [727] = 374, - [728] = 375, - [729] = 428, - [730] = 423, - [731] = 413, - [732] = 412, - [733] = 411, - [734] = 410, - [735] = 409, - [736] = 408, - [737] = 407, - [738] = 375, - [739] = 374, - [740] = 373, - [741] = 371, - [742] = 406, - [743] = 433, - [744] = 425, - [745] = 369, - [746] = 420, - [747] = 368, - [748] = 367, - [749] = 414, - [750] = 415, - [751] = 417, - [752] = 418, - [753] = 422, - [754] = 352, - [755] = 405, - [756] = 404, - [757] = 361, - [758] = 435, - [759] = 360, - [760] = 359, - [761] = 357, - [762] = 356, - [763] = 355, - [764] = 354, - [765] = 403, - [766] = 402, - [767] = 401, - [768] = 400, - [769] = 399, - [770] = 398, - [771] = 353, - [772] = 376, - [773] = 377, - [774] = 378, - [775] = 379, - [776] = 380, - [777] = 381, - [778] = 382, - [779] = 430, - [780] = 383, - [781] = 384, - [782] = 385, - [783] = 386, - [784] = 388, - [785] = 389, - [786] = 395, - [787] = 390, - [788] = 391, - [789] = 392, - [790] = 393, - [791] = 394, - [792] = 387, - [793] = 396, - [794] = 353, - [795] = 398, - [796] = 399, - [797] = 372, - [798] = 400, - [799] = 401, - [800] = 402, - [801] = 366, - [802] = 403, - [803] = 404, - [804] = 365, - [805] = 405, - [806] = 364, - [807] = 363, - [808] = 432, - [809] = 396, - [810] = 362, - [811] = 406, - [812] = 407, - [813] = 408, - [814] = 409, - [815] = 410, - [816] = 411, - [817] = 412, - [818] = 413, - [819] = 358, - [820] = 394, - [821] = 393, - [822] = 392, - [823] = 391, - [824] = 397, - [825] = 390, - [826] = 419, - [827] = 429, - [828] = 389, - [829] = 434, - [830] = 388, - [831] = 386, - [832] = 354, - [833] = 355, - [834] = 356, - [835] = 357, - [836] = 359, - [837] = 360, - [838] = 361, - [839] = 385, - [840] = 384, - [841] = 367, - [842] = 368, - [843] = 369, - [844] = 370, - [845] = 371, - [846] = 383, - [847] = 374, - [848] = 375, - [849] = 382, - [850] = 381, - [851] = 414, - [852] = 415, - [853] = 417, - [854] = 418, - [855] = 422, - [856] = 352, - [857] = 429, - [858] = 421, - [859] = 430, - [860] = 421, - [861] = 419, - [862] = 397, - [863] = 358, - [864] = 362, - [865] = 363, - [866] = 364, - [867] = 365, - [868] = 366, - [869] = 372, - [870] = 387, - [871] = 395, - [872] = 416, - [873] = 420, - [874] = 425, - [875] = 428, - [876] = 427, - [877] = 426, - [878] = 424, - [879] = 423, - [880] = 380, - [881] = 379, - [882] = 378, - [883] = 377, - [884] = 376, - [885] = 431, - [886] = 434, - [887] = 442, - [888] = 435, - [889] = 436, - [890] = 433, - [891] = 441, - [892] = 440, - [893] = 436, - [894] = 435, - [895] = 439, - [896] = 432, - [897] = 431, - [898] = 434, - [899] = 433, - [900] = 431, - [901] = 436, - [902] = 437, - [903] = 432, - [904] = 438, - [905] = 433, - [906] = 434, - [907] = 435, - [908] = 432, - [909] = 431, - [910] = 570, - [911] = 442, - [912] = 543, - [913] = 544, - [914] = 545, - [915] = 546, - [916] = 547, - [917] = 549, - [918] = 451, - [919] = 452, - [920] = 461, - [921] = 440, - [922] = 462, - [923] = 437, - [924] = 439, - [925] = 441, - [926] = 438, - [927] = 550, - [928] = 551, - [929] = 445, - [930] = 636, - [931] = 635, - [932] = 634, - [933] = 633, - [934] = 632, - [935] = 631, - [936] = 442, - [937] = 630, - [938] = 463, - [939] = 542, - [940] = 523, - [941] = 530, - [942] = 535, - [943] = 539, - [944] = 629, - [945] = 628, - [946] = 540, - [947] = 444, - [948] = 548, - [949] = 552, - [950] = 553, - [951] = 627, - [952] = 438, - [953] = 560, - [954] = 562, - [955] = 482, - [956] = 516, - [957] = 518, - [958] = 563, - [959] = 489, - [960] = 439, - [961] = 498, - [962] = 497, - [963] = 496, - [964] = 567, - [965] = 559, - [966] = 568, - [967] = 512, - [968] = 449, - [969] = 571, - [970] = 437, - [971] = 572, - [972] = 569, - [973] = 574, - [974] = 575, - [975] = 580, - [976] = 582, - [977] = 483, - [978] = 509, - [979] = 541, - [980] = 441, - [981] = 440, - [982] = 437, - [983] = 586, - [984] = 587, - [985] = 588, - [986] = 625, - [987] = 446, - [988] = 589, - [989] = 447, - [990] = 590, - [991] = 438, - [992] = 507, - [993] = 591, - [994] = 486, - [995] = 592, - [996] = 624, - [997] = 593, - [998] = 594, - [999] = 506, - [1000] = 528, - [1001] = 529, - [1002] = 442, - [1003] = 531, - [1004] = 511, - [1005] = 532, - [1006] = 533, - [1007] = 534, - [1008] = 1008, - [1009] = 536, - [1010] = 537, - [1011] = 538, - [1012] = 573, - [1013] = 554, - [1014] = 597, - [1015] = 598, - [1016] = 599, - [1017] = 441, - [1018] = 600, - [1019] = 484, - [1020] = 623, - [1021] = 601, - [1022] = 602, - [1023] = 622, - [1024] = 440, - [1025] = 526, - [1026] = 439, - [1027] = 468, - [1028] = 604, - [1029] = 491, - [1030] = 443, - [1031] = 614, - [1032] = 615, - [1033] = 616, - [1034] = 617, - [1035] = 618, - [1036] = 450, - [1037] = 621, - [1038] = 561, - [1039] = 555, - [1040] = 492, - [1041] = 557, - [1042] = 493, - [1043] = 494, - [1044] = 495, - [1045] = 527, - [1046] = 556, - [1047] = 620, - [1048] = 558, - [1049] = 603, - [1050] = 497, - [1051] = 548, - [1052] = 589, - [1053] = 586, - [1054] = 587, - [1055] = 582, - [1056] = 580, - [1057] = 516, - [1058] = 518, - [1059] = 574, - [1060] = 563, - [1061] = 489, - [1062] = 498, - [1063] = 573, - [1064] = 538, - [1065] = 572, - [1066] = 496, - [1067] = 575, - [1068] = 567, - [1069] = 568, - [1070] = 569, - [1071] = 570, - [1072] = 571, - [1073] = 572, - [1074] = 573, - [1075] = 574, - [1076] = 575, - [1077] = 580, - [1078] = 582, - [1079] = 586, - [1080] = 587, - [1081] = 588, - [1082] = 589, - [1083] = 590, - [1084] = 591, - [1085] = 592, - [1086] = 593, - [1087] = 594, - [1088] = 530, - [1089] = 590, - [1090] = 570, - [1091] = 482, - [1092] = 562, - [1093] = 560, - [1094] = 553, - [1095] = 552, - [1096] = 548, - [1097] = 571, - [1098] = 444, - [1099] = 540, - [1100] = 539, - [1101] = 535, - [1102] = 622, - [1103] = 523, - [1104] = 542, - [1105] = 512, - [1106] = 463, - [1107] = 462, - [1108] = 461, - [1109] = 452, - [1110] = 451, - [1111] = 450, - [1112] = 449, - [1113] = 443, - [1114] = 506, - [1115] = 592, - [1116] = 507, - [1117] = 593, - [1118] = 447, - [1119] = 528, - [1120] = 529, - [1121] = 531, - [1122] = 532, - [1123] = 533, - [1124] = 534, - [1125] = 536, - [1126] = 537, - [1127] = 538, - [1128] = 468, - [1129] = 527, - [1130] = 495, - [1131] = 494, - [1132] = 493, - [1133] = 554, - [1134] = 492, - [1135] = 555, - [1136] = 597, - [1137] = 598, - [1138] = 599, - [1139] = 600, - [1140] = 601, - [1141] = 602, - [1142] = 603, - [1143] = 604, - [1144] = 539, - [1145] = 491, - [1146] = 526, - [1147] = 446, - [1148] = 614, - [1149] = 615, - [1150] = 616, - [1151] = 617, - [1152] = 618, - [1153] = 509, - [1154] = 620, - [1155] = 556, - [1156] = 557, - [1157] = 558, - [1158] = 559, - [1159] = 561, - [1160] = 621, - [1161] = 622, - [1162] = 623, - [1163] = 624, - [1164] = 569, - [1165] = 486, - [1166] = 511, - [1167] = 625, - [1168] = 541, - [1169] = 627, - [1170] = 628, - [1171] = 629, - [1172] = 630, - [1173] = 631, - [1174] = 632, - [1175] = 633, - [1176] = 634, - [1177] = 635, - [1178] = 636, - [1179] = 1179, - [1180] = 568, - [1181] = 567, - [1182] = 543, - [1183] = 496, - [1184] = 497, - [1185] = 498, - [1186] = 489, - [1187] = 1187, - [1188] = 544, - [1189] = 468, - [1190] = 554, - [1191] = 563, - [1192] = 545, - [1193] = 546, - [1194] = 547, - [1195] = 549, - [1196] = 550, - [1197] = 551, - [1198] = 445, - [1199] = 594, - [1200] = 518, - [1201] = 516, - [1202] = 597, - [1203] = 483, - [1204] = 484, - [1205] = 636, - [1206] = 635, - [1207] = 634, - [1208] = 598, - [1209] = 599, - [1210] = 633, - [1211] = 632, - [1212] = 631, - [1213] = 630, - [1214] = 629, - [1215] = 628, - [1216] = 627, - [1217] = 625, - [1218] = 511, - [1219] = 600, - [1220] = 601, - [1221] = 602, - [1222] = 486, - [1223] = 624, - [1224] = 623, - [1225] = 603, - [1226] = 604, - [1227] = 533, - [1228] = 491, - [1229] = 534, - [1230] = 614, - [1231] = 615, - [1232] = 616, - [1233] = 617, - [1234] = 618, - [1235] = 620, - [1236] = 556, - [1237] = 557, - [1238] = 558, - [1239] = 559, - [1240] = 527, - [1241] = 561, - [1242] = 621, - [1243] = 622, - [1244] = 623, - [1245] = 600, - [1246] = 624, - [1247] = 621, - [1248] = 561, - [1249] = 559, - [1250] = 558, - [1251] = 557, - [1252] = 556, - [1253] = 620, - [1254] = 618, - [1255] = 617, - [1256] = 616, - [1257] = 615, - [1258] = 614, - [1259] = 526, - [1260] = 491, - [1261] = 482, - [1262] = 562, - [1263] = 560, - [1264] = 591, - [1265] = 553, - [1266] = 552, - [1267] = 588, - [1268] = 444, - [1269] = 540, - [1270] = 542, - [1271] = 535, - [1272] = 530, - [1273] = 523, - [1274] = 604, - [1275] = 512, - [1276] = 463, - [1277] = 462, - [1278] = 461, - [1279] = 452, - [1280] = 451, - [1281] = 450, - [1282] = 449, - [1283] = 603, - [1284] = 443, - [1285] = 506, - [1286] = 536, - [1287] = 602, - [1288] = 507, - [1289] = 447, - [1290] = 446, - [1291] = 509, - [1292] = 541, - [1293] = 543, - [1294] = 544, - [1295] = 545, - [1296] = 546, - [1297] = 547, - [1298] = 601, - [1299] = 549, - [1300] = 518, - [1301] = 550, - [1302] = 599, - [1303] = 551, - [1304] = 598, - [1305] = 486, - [1306] = 597, - [1307] = 625, - [1308] = 555, - [1309] = 492, - [1310] = 554, - [1311] = 493, - [1312] = 494, - [1313] = 495, - [1314] = 527, - [1315] = 468, - [1316] = 538, - [1317] = 537, - [1318] = 536, - [1319] = 627, - [1320] = 628, - [1321] = 534, - [1322] = 533, - [1323] = 629, - [1324] = 532, - [1325] = 531, - [1326] = 630, - [1327] = 631, - [1328] = 445, - [1329] = 529, - [1330] = 528, - [1331] = 594, - [1332] = 593, - [1333] = 592, - [1334] = 591, - [1335] = 590, - [1336] = 589, - [1337] = 588, - [1338] = 587, - [1339] = 483, - [1340] = 484, - [1341] = 586, - [1342] = 582, - [1343] = 580, - [1344] = 575, - [1345] = 574, - [1346] = 573, - [1347] = 572, - [1348] = 571, - [1349] = 570, - [1350] = 569, - [1351] = 568, - [1352] = 567, - [1353] = 496, - [1354] = 497, - [1355] = 498, - [1356] = 489, - [1357] = 563, - [1358] = 516, - [1359] = 537, - [1360] = 482, - [1361] = 562, - [1362] = 560, - [1363] = 632, - [1364] = 553, - [1365] = 633, - [1366] = 552, - [1367] = 548, - [1368] = 495, - [1369] = 494, - [1370] = 493, - [1371] = 444, - [1372] = 492, - [1373] = 555, - [1374] = 540, - [1375] = 634, - [1376] = 635, - [1377] = 539, - [1378] = 535, - [1379] = 530, - [1380] = 523, - [1381] = 636, - [1382] = 542, - [1383] = 512, - [1384] = 526, - [1385] = 484, - [1386] = 463, - [1387] = 462, - [1388] = 461, - [1389] = 483, - [1390] = 452, - [1391] = 532, - [1392] = 451, - [1393] = 450, - [1394] = 449, - [1395] = 443, - [1396] = 506, - [1397] = 531, - [1398] = 529, - [1399] = 1399, - [1400] = 507, - [1401] = 447, - [1402] = 446, - [1403] = 509, - [1404] = 511, - [1405] = 541, - [1406] = 528, - [1407] = 543, - [1408] = 544, - [1409] = 545, - [1410] = 546, - [1411] = 547, - [1412] = 549, - [1413] = 550, - [1414] = 551, - [1415] = 445, - [1416] = 259, - [1417] = 260, - [1418] = 1418, - [1419] = 1418, - [1420] = 1420, - [1421] = 1418, - [1422] = 1418, - [1423] = 1418, - [1424] = 1418, - [1425] = 1418, - [1426] = 1418, - [1427] = 1418, - [1428] = 1418, - [1429] = 1429, - [1430] = 1429, - [1431] = 1429, - [1432] = 1429, - [1433] = 1429, - [1434] = 1434, - [1435] = 1429, - [1436] = 1429, - [1437] = 1429, - [1438] = 1434, - [1439] = 1429, - [1440] = 1429, - [1441] = 1441, - [1442] = 1441, - [1443] = 1443, - [1444] = 1441, - [1445] = 1443, - [1446] = 1443, - [1447] = 1441, - [1448] = 1443, - [1449] = 1441, - [1450] = 1443, - [1451] = 1441, - [1452] = 1443, - [1453] = 1441, - [1454] = 1443, - [1455] = 1441, - [1456] = 1441, - [1457] = 1443, - [1458] = 1458, - [1459] = 1441, - [1460] = 1443, - [1461] = 1443, - [1462] = 1441, - [1463] = 431, - [1464] = 432, - [1465] = 436, - [1466] = 434, - [1467] = 433, - [1468] = 435, - [1469] = 439, - [1470] = 436, - [1471] = 432, - [1472] = 440, - [1473] = 435, - [1474] = 433, - [1475] = 433, - [1476] = 441, - [1477] = 432, - [1478] = 434, - [1479] = 437, - [1480] = 435, - [1481] = 431, - [1482] = 434, - [1483] = 442, - [1484] = 431, - [1485] = 436, - [1486] = 516, - [1487] = 555, - [1488] = 437, - [1489] = 483, - [1490] = 445, - [1491] = 509, - [1492] = 446, - [1493] = 447, - [1494] = 507, - [1495] = 439, - [1496] = 506, - [1497] = 443, - [1498] = 449, - [1499] = 450, - [1500] = 451, - [1501] = 452, - [1502] = 461, - [1503] = 462, - [1504] = 463, - [1505] = 468, - [1506] = 527, - [1507] = 495, - [1508] = 494, - [1509] = 493, - [1510] = 512, - [1511] = 492, - [1512] = 542, - [1513] = 523, - [1514] = 530, - [1515] = 535, - [1516] = 539, - [1517] = 540, - [1518] = 444, - [1519] = 548, - [1520] = 552, - [1521] = 553, - [1522] = 526, - [1523] = 440, - [1524] = 560, - [1525] = 562, - [1526] = 482, - [1527] = 518, - [1528] = 563, - [1529] = 441, - [1530] = 498, - [1531] = 497, - [1532] = 496, - [1533] = 567, - [1534] = 484, - [1535] = 569, - [1536] = 570, - [1537] = 571, - [1538] = 572, - [1539] = 573, - [1540] = 574, - [1541] = 511, - [1542] = 575, - [1543] = 442, - [1544] = 580, - [1545] = 1545, - [1546] = 582, - [1547] = 586, - [1548] = 587, - [1549] = 588, - [1550] = 589, - [1551] = 590, - [1552] = 591, - [1553] = 592, - [1554] = 593, - [1555] = 594, - [1556] = 528, - [1557] = 529, - [1558] = 531, - [1559] = 532, - [1560] = 533, - [1561] = 534, - [1562] = 536, - [1563] = 537, - [1564] = 538, - [1565] = 554, - [1566] = 597, - [1567] = 598, - [1568] = 599, - [1569] = 600, - [1570] = 601, - [1571] = 602, - [1572] = 603, - [1573] = 604, - [1574] = 491, - [1575] = 614, - [1576] = 442, - [1577] = 615, - [1578] = 616, - [1579] = 617, - [1580] = 618, - [1581] = 620, - [1582] = 556, - [1583] = 557, - [1584] = 558, - [1585] = 559, - [1586] = 561, - [1587] = 621, - [1588] = 622, - [1589] = 623, - [1590] = 624, - [1591] = 486, - [1592] = 625, - [1593] = 627, - [1594] = 628, - [1595] = 629, - [1596] = 441, - [1597] = 630, - [1598] = 568, - [1599] = 632, - [1600] = 633, - [1601] = 634, - [1602] = 440, - [1603] = 635, - [1604] = 636, - [1605] = 437, - [1606] = 631, - [1607] = 439, - [1608] = 618, - [1609] = 630, - [1610] = 599, - [1611] = 598, - [1612] = 597, - [1613] = 568, - [1614] = 468, - [1615] = 567, - [1616] = 553, - [1617] = 552, - [1618] = 496, - [1619] = 497, - [1620] = 498, - [1621] = 563, - [1622] = 518, - [1623] = 516, - [1624] = 482, - [1625] = 562, - [1626] = 560, - [1627] = 468, - [1628] = 527, - [1629] = 495, - [1630] = 494, - [1631] = 493, - [1632] = 602, - [1633] = 492, - [1634] = 553, - [1635] = 601, - [1636] = 594, - [1637] = 593, - [1638] = 592, - [1639] = 591, - [1640] = 590, - [1641] = 589, - [1642] = 588, - [1643] = 552, - [1644] = 548, - [1645] = 526, - [1646] = 444, - [1647] = 587, - [1648] = 586, - [1649] = 582, - [1650] = 548, - [1651] = 580, - [1652] = 540, - [1653] = 575, - [1654] = 444, - [1655] = 1179, - [1656] = 451, - [1657] = 539, - [1658] = 535, - [1659] = 574, - [1660] = 573, - [1661] = 572, - [1662] = 571, - [1663] = 530, - [1664] = 539, - [1665] = 511, - [1666] = 570, - [1667] = 535, - [1668] = 569, - [1669] = 568, - [1670] = 567, - [1671] = 523, - [1672] = 542, - [1673] = 512, - [1674] = 498, - [1675] = 563, - [1676] = 463, - [1677] = 562, - [1678] = 530, - [1679] = 523, - [1680] = 542, - [1681] = 512, - [1682] = 462, - [1683] = 463, - [1684] = 462, - [1685] = 461, - [1686] = 461, - [1687] = 452, - [1688] = 452, - [1689] = 615, - [1690] = 450, - [1691] = 449, - [1692] = 451, - [1693] = 450, - [1694] = 449, - [1695] = 511, - [1696] = 443, - [1697] = 447, - [1698] = 446, - [1699] = 509, - [1700] = 445, - [1701] = 589, - [1702] = 590, - [1703] = 591, - [1704] = 483, - [1705] = 484, - [1706] = 592, - [1707] = 593, - [1708] = 594, - [1709] = 528, - [1710] = 529, - [1711] = 531, - [1712] = 435, - [1713] = 532, - [1714] = 533, - [1715] = 443, - [1716] = 506, - [1717] = 534, - [1718] = 507, - [1719] = 447, - [1720] = 446, - [1721] = 509, - [1722] = 445, - [1723] = 536, - [1724] = 537, - [1725] = 538, - [1726] = 554, - [1727] = 486, - [1728] = 555, - [1729] = 597, - [1730] = 598, - [1731] = 599, - [1732] = 600, - [1733] = 601, - [1734] = 602, - [1735] = 603, - [1736] = 604, - [1737] = 491, - [1738] = 614, - [1739] = 615, - [1740] = 616, - [1741] = 491, - [1742] = 617, - [1743] = 618, - [1744] = 620, - [1745] = 436, - [1746] = 560, - [1747] = 556, - [1748] = 603, - [1749] = 483, - [1750] = 484, - [1751] = 604, - [1752] = 557, - [1753] = 558, - [1754] = 559, - [1755] = 561, - [1756] = 621, - [1757] = 622, - [1758] = 623, - [1759] = 624, - [1760] = 569, - [1761] = 570, - [1762] = 486, - [1763] = 625, - [1764] = 627, - [1765] = 628, - [1766] = 629, - [1767] = 600, - [1768] = 631, - [1769] = 632, - [1770] = 633, - [1771] = 634, - [1772] = 635, - [1773] = 636, - [1774] = 526, - [1775] = 614, - [1776] = 588, - [1777] = 527, - [1778] = 496, - [1779] = 497, - [1780] = 540, - [1781] = 586, - [1782] = 482, - [1783] = 636, - [1784] = 635, - [1785] = 634, - [1786] = 633, - [1787] = 632, - [1788] = 631, - [1789] = 630, - [1790] = 616, - [1791] = 617, - [1792] = 587, - [1793] = 629, - [1794] = 628, - [1795] = 627, - [1796] = 571, - [1797] = 625, - [1798] = 582, - [1799] = 572, - [1800] = 580, - [1801] = 507, - [1802] = 620, - [1803] = 506, - [1804] = 573, - [1805] = 574, - [1806] = 575, - [1807] = 624, - [1808] = 621, - [1809] = 1187, - [1810] = 622, - [1811] = 623, - [1812] = 432, - [1813] = 434, - [1814] = 431, - [1815] = 1179, - [1816] = 1187, - [1817] = 433, - [1818] = 441, - [1819] = 439, - [1820] = 442, - [1821] = 498, - [1822] = 437, - [1823] = 440, - [1824] = 527, - [1825] = 509, - [1826] = 535, - [1827] = 582, - [1828] = 634, - [1829] = 633, - [1830] = 632, - [1831] = 631, - [1832] = 630, - [1833] = 629, - [1834] = 628, - [1835] = 627, - [1836] = 491, - [1837] = 486, - [1838] = 497, - [1839] = 625, - [1840] = 506, - [1841] = 507, - [1842] = 484, - [1843] = 483, - [1844] = 1844, - [1845] = 624, - [1846] = 445, - [1847] = 623, - [1848] = 622, - [1849] = 621, - [1850] = 620, - [1851] = 618, - [1852] = 617, - [1853] = 616, - [1854] = 615, - [1855] = 614, - [1856] = 446, - [1857] = 604, - [1858] = 603, - [1859] = 602, - [1860] = 468, - [1861] = 601, - [1862] = 600, - [1863] = 599, - [1864] = 598, - [1865] = 597, - [1866] = 447, - [1867] = 594, - [1868] = 593, - [1869] = 592, - [1870] = 526, - [1871] = 591, - [1872] = 590, - [1873] = 589, - [1874] = 588, - [1875] = 587, - [1876] = 586, - [1877] = 635, - [1878] = 580, - [1879] = 575, - [1880] = 574, - [1881] = 573, - [1882] = 572, - [1883] = 571, - [1884] = 570, - [1885] = 511, - [1886] = 569, - [1887] = 568, - [1888] = 567, - [1889] = 482, - [1890] = 563, - [1891] = 562, - [1892] = 560, - [1893] = 553, - [1894] = 552, - [1895] = 548, - [1896] = 444, - [1897] = 540, - [1898] = 539, - [1899] = 443, - [1900] = 530, - [1901] = 523, - [1902] = 542, - [1903] = 512, - [1904] = 463, - [1905] = 462, - [1906] = 461, - [1907] = 452, - [1908] = 636, - [1909] = 496, - [1910] = 451, - [1911] = 450, - [1912] = 449, - [1913] = 435, - [1914] = 436, - [1915] = 433, - [1916] = 434, - [1917] = 431, - [1918] = 527, - [1919] = 432, - [1920] = 509, - [1921] = 442, - [1922] = 441, - [1923] = 440, - [1924] = 498, - [1925] = 439, - [1926] = 526, - [1927] = 437, - [1928] = 511, - [1929] = 443, - [1930] = 617, - [1931] = 634, - [1932] = 636, - [1933] = 635, - [1934] = 483, - [1935] = 633, - [1936] = 632, - [1937] = 631, - [1938] = 630, - [1939] = 629, - [1940] = 628, - [1941] = 627, - [1942] = 625, - [1943] = 624, - [1944] = 623, - [1945] = 622, - [1946] = 621, - [1947] = 620, - [1948] = 618, - [1949] = 616, - [1950] = 615, - [1951] = 614, - [1952] = 604, - [1953] = 603, - [1954] = 602, - [1955] = 601, - [1956] = 600, - [1957] = 599, - [1958] = 598, - [1959] = 597, - [1960] = 594, - [1961] = 593, - [1962] = 592, - [1963] = 591, - [1964] = 590, - [1965] = 589, - [1966] = 588, - [1967] = 587, - [1968] = 586, - [1969] = 582, - [1970] = 580, - [1971] = 575, - [1972] = 574, - [1973] = 573, - [1974] = 572, - [1975] = 571, - [1976] = 570, - [1977] = 569, - [1978] = 568, - [1979] = 567, - [1980] = 563, - [1981] = 562, - [1982] = 560, - [1983] = 553, - [1984] = 552, - [1985] = 548, - [1986] = 444, - [1987] = 540, - [1988] = 539, - [1989] = 535, - [1990] = 530, - [1991] = 523, - [1992] = 542, - [1993] = 512, - [1994] = 463, - [1995] = 462, - [1996] = 461, - [1997] = 452, - [1998] = 451, - [1999] = 450, - [2000] = 449, - [2001] = 447, - [2002] = 446, - [2003] = 445, - [2004] = 484, - [2005] = 468, - [2006] = 2006, - [2007] = 2006, - [2008] = 2006, - [2009] = 2006, - [2010] = 2006, - [2011] = 2006, - [2012] = 2006, - [2013] = 2013, - [2014] = 2014, - [2015] = 2014, - [2016] = 2013, - [2017] = 2017, - [2018] = 2018, - [2019] = 2013, - [2020] = 2014, - [2021] = 2018, - [2022] = 2014, - [2023] = 2018, - [2024] = 2014, - [2025] = 2017, - [2026] = 2018, - [2027] = 2027, - [2028] = 2017, - [2029] = 2018, - [2030] = 2027, - [2031] = 2017, - [2032] = 2018, - [2033] = 2014, - [2034] = 2027, - [2035] = 2027, - [2036] = 2017, - [2037] = 2013, - [2038] = 2018, - [2039] = 2014, - [2040] = 2014, - [2041] = 2014, - [2042] = 2027, - [2043] = 2013, - [2044] = 2018, - [2045] = 2017, - [2046] = 2013, - [2047] = 2013, - [2048] = 2014, - [2049] = 2013, - [2050] = 2027, - [2051] = 2027, - [2052] = 2018, - [2053] = 2017, - [2054] = 2014, - [2055] = 2018, - [2056] = 2017, - [2057] = 2018, - [2058] = 2027, - [2059] = 2027, - [2060] = 2027, - [2061] = 2061, - [2062] = 2013, - [2063] = 2017, - [2064] = 2027, - [2065] = 2065, - [2066] = 2065, - [2067] = 2065, - [2068] = 2068, - [2069] = 2069, - [2070] = 2065, - [2071] = 2069, - [2072] = 2072, - [2073] = 2072, - [2074] = 2069, - [2075] = 2068, - [2076] = 2068, - [2077] = 2072, - [2078] = 2068, - [2079] = 2079, - [2080] = 2072, - [2081] = 2081, - [2082] = 2069, - [2083] = 2068, - [2084] = 2065, - [2085] = 2072, - [2086] = 2068, - [2087] = 2065, - [2088] = 2068, - [2089] = 2069, - [2090] = 2065, - [2091] = 2068, - [2092] = 2069, - [2093] = 2069, - [2094] = 2072, - [2095] = 2072, - [2096] = 2096, - [2097] = 2072, - [2098] = 2065, - [2099] = 2069, - [2100] = 2072, - [2101] = 2069, - [2102] = 2102, - [2103] = 2065, - [2104] = 2065, - [2105] = 2068, - [2106] = 2068, - [2107] = 2069, - [2108] = 2072, - [2109] = 2109, - [2110] = 2110, - [2111] = 2111, - [2112] = 2112, - [2113] = 2113, - [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2116, - [2119] = 2119, - [2120] = 2116, - [2121] = 2117, - [2122] = 2119, - [2123] = 2123, - [2124] = 2114, - [2125] = 2113, - [2126] = 2126, - [2127] = 2127, - [2128] = 2128, - [2129] = 2112, - [2130] = 2111, - [2131] = 2109, - [2132] = 2113, - [2133] = 2114, - [2134] = 2134, - [2135] = 2115, - [2136] = 2110, - [2137] = 2123, - [2138] = 2126, - [2139] = 2139, - [2140] = 2127, - [2141] = 2141, - [2142] = 2142, - [2143] = 2142, - [2144] = 2141, - [2145] = 2139, - [2146] = 2110, - [2147] = 2134, - [2148] = 2109, - [2149] = 2126, - [2150] = 2123, - [2151] = 2115, - [2152] = 2114, - [2153] = 2113, - [2154] = 2111, - [2155] = 2155, - [2156] = 2156, - [2157] = 2128, - [2158] = 2139, - [2159] = 2123, - [2160] = 2156, - [2161] = 2141, - [2162] = 2142, - [2163] = 2111, - [2164] = 2113, - [2165] = 2114, - [2166] = 2115, - [2167] = 2109, - [2168] = 2116, - [2169] = 2123, - [2170] = 2126, - [2171] = 2128, - [2172] = 2109, - [2173] = 2127, - [2174] = 2127, - [2175] = 2128, - [2176] = 2112, - [2177] = 2109, - [2178] = 2134, - [2179] = 2110, - [2180] = 2142, - [2181] = 2141, - [2182] = 2119, - [2183] = 2139, - [2184] = 2126, - [2185] = 2123, - [2186] = 2115, - [2187] = 2114, - [2188] = 2113, - [2189] = 2134, - [2190] = 2111, - [2191] = 2112, - [2192] = 2156, - [2193] = 2110, - [2194] = 2139, - [2195] = 2141, - [2196] = 2142, - [2197] = 2119, - [2198] = 2117, - [2199] = 2142, - [2200] = 2141, - [2201] = 2119, - [2202] = 2139, - [2203] = 2126, - [2204] = 2123, - [2205] = 2116, - [2206] = 2110, - [2207] = 2115, - [2208] = 2156, - [2209] = 2134, - [2210] = 2114, - [2211] = 2113, - [2212] = 2116, - [2213] = 2139, - [2214] = 2116, - [2215] = 2109, - [2216] = 2111, - [2217] = 2117, - [2218] = 2127, - [2219] = 2111, - [2220] = 2156, - [2221] = 2112, - [2222] = 2156, - [2223] = 2110, - [2224] = 2134, - [2225] = 2109, - [2226] = 2128, - [2227] = 2127, - [2228] = 2156, - [2229] = 2119, - [2230] = 2127, - [2231] = 2117, - [2232] = 2128, - [2233] = 2134, - [2234] = 2112, - [2235] = 2128, - [2236] = 2109, - [2237] = 2112, - [2238] = 2134, - [2239] = 2156, - [2240] = 2117, - [2241] = 2126, - [2242] = 2156, - [2243] = 2156, - [2244] = 2116, - [2245] = 2110, - [2246] = 2111, - [2247] = 2142, - [2248] = 2113, - [2249] = 2114, - [2250] = 2141, - [2251] = 2115, - [2252] = 2139, - [2253] = 2123, - [2254] = 2126, - [2255] = 2139, - [2256] = 2126, - [2257] = 2141, - [2258] = 2142, - [2259] = 2123, - [2260] = 2115, - [2261] = 2114, - [2262] = 2119, - [2263] = 2134, - [2264] = 2109, - [2265] = 2113, - [2266] = 2111, - [2267] = 2112, - [2268] = 2117, - [2269] = 2112, - [2270] = 2141, - [2271] = 2142, - [2272] = 2110, - [2273] = 2119, - [2274] = 2116, - [2275] = 2117, - [2276] = 2112, - [2277] = 2117, - [2278] = 2119, - [2279] = 2128, - [2280] = 2111, - [2281] = 2113, - [2282] = 2115, - [2283] = 2116, - [2284] = 2114, - [2285] = 2115, - [2286] = 2128, - [2287] = 2123, - [2288] = 2126, - [2289] = 2127, - [2290] = 2117, - [2291] = 2119, - [2292] = 2127, - [2293] = 2128, - [2294] = 2139, - [2295] = 2141, - [2296] = 2134, - [2297] = 2127, - [2298] = 2110, - [2299] = 2142, - [2300] = 2300, - [2301] = 2301, - [2302] = 2302, - [2303] = 2302, - [2304] = 2301, - [2305] = 2305, - [2306] = 2306, - [2307] = 2307, - [2308] = 2300, - [2309] = 2301, - [2310] = 2302, - [2311] = 2311, - [2312] = 2312, - [2313] = 2313, - [2314] = 2301, - [2315] = 2315, - [2316] = 2316, - [2317] = 2305, - [2318] = 2313, - [2319] = 2316, - [2320] = 2302, - [2321] = 2307, - [2322] = 2315, - [2323] = 2305, - [2324] = 2311, - [2325] = 2306, - [2326] = 2302, - [2327] = 2327, - [2328] = 2300, - [2329] = 2307, - [2330] = 2306, - [2331] = 2331, - [2332] = 2332, - [2333] = 2333, - [2334] = 2316, - [2335] = 2300, - [2336] = 2307, - [2337] = 2300, - [2338] = 2327, - [2339] = 2305, - [2340] = 2315, - [2341] = 2341, - [2342] = 2307, - [2343] = 2313, - [2344] = 2315, - [2345] = 2316, - [2346] = 2316, - [2347] = 2313, - [2348] = 2302, - [2349] = 2349, - [2350] = 2301, - [2351] = 2315, - [2352] = 2352, - [2353] = 2302, - [2354] = 2327, - [2355] = 2355, - [2356] = 2305, - [2357] = 2352, - [2358] = 2327, - [2359] = 2301, - [2360] = 2360, - [2361] = 2305, - [2362] = 2306, - [2363] = 2327, - [2364] = 2364, - [2365] = 2365, - [2366] = 2306, - [2367] = 2307, - [2368] = 2305, - [2369] = 2300, - [2370] = 2327, - [2371] = 2301, - [2372] = 2372, - [2373] = 2313, - [2374] = 2316, - [2375] = 2315, - [2376] = 2306, - [2377] = 2302, - [2378] = 2301, - [2379] = 2313, - [2380] = 2305, - [2381] = 2306, - [2382] = 2307, - [2383] = 2300, - [2384] = 2327, - [2385] = 2313, - [2386] = 2316, - [2387] = 2315, - [2388] = 2316, - [2389] = 2302, - [2390] = 2306, - [2391] = 2315, - [2392] = 2302, - [2393] = 2315, - [2394] = 2301, - [2395] = 2305, - [2396] = 2316, - [2397] = 2313, - [2398] = 2306, - [2399] = 2301, - [2400] = 2307, - [2401] = 2305, - [2402] = 2327, - [2403] = 2300, - [2404] = 2307, - [2405] = 2306, - [2406] = 2307, - [2407] = 2300, - [2408] = 2327, - [2409] = 2300, - [2410] = 2327, - [2411] = 2313, - [2412] = 2316, - [2413] = 2315, - [2414] = 2313, - [2415] = 2415, - [2416] = 2416, - [2417] = 2417, - [2418] = 2418, - [2419] = 2419, - [2420] = 2420, - [2421] = 2416, - [2422] = 2422, - [2423] = 2423, - [2424] = 2424, - [2425] = 2425, - [2426] = 2426, - [2427] = 2427, - [2428] = 2428, - [2429] = 2429, - [2430] = 2420, - [2431] = 2431, - [2432] = 2432, - [2433] = 2433, - [2434] = 2416, - [2435] = 2435, - [2436] = 2436, - [2437] = 2422, - [2438] = 2423, - [2439] = 2439, - [2440] = 2440, - [2441] = 2432, - [2442] = 2442, - [2443] = 2443, - [2444] = 2444, - [2445] = 2445, - [2446] = 2446, - [2447] = 2447, - [2448] = 2448, - [2449] = 2449, - [2450] = 2450, - [2451] = 2451, - [2452] = 2415, - [2453] = 2453, - [2454] = 2454, - [2455] = 2455, - [2456] = 2424, - [2457] = 2457, - [2458] = 2458, - [2459] = 2459, - [2460] = 2460, - [2461] = 2461, - [2462] = 2462, - [2463] = 2463, - [2464] = 2464, - [2465] = 2465, - [2466] = 2466, - [2467] = 2467, - [2468] = 2468, - [2469] = 2469, - [2470] = 2470, - [2471] = 2440, - [2472] = 2425, - [2473] = 2465, - [2474] = 2442, - [2475] = 2475, - [2476] = 2476, - [2477] = 2477, - [2478] = 2478, - [2479] = 2443, - [2480] = 2480, - [2481] = 2481, - [2482] = 2482, - [2483] = 2483, - [2484] = 2484, - [2485] = 2425, - [2486] = 2486, - [2487] = 2487, - [2488] = 2486, - [2489] = 2487, - [2490] = 2484, - [2491] = 2480, - [2492] = 2478, - [2493] = 2483, - [2494] = 2482, - [2495] = 2481, - [2496] = 2475, - [2497] = 2444, - [2498] = 2498, - [2499] = 2499, - [2500] = 2420, - [2501] = 2470, - [2502] = 2502, - [2503] = 2428, - [2504] = 2429, - [2505] = 2435, - [2506] = 2439, - [2507] = 2457, - [2508] = 2418, - [2509] = 2419, - [2510] = 2426, - [2511] = 2427, - [2512] = 2416, - [2513] = 2466, - [2514] = 2431, - [2515] = 2433, - [2516] = 2464, - [2517] = 2436, - [2518] = 2463, - [2519] = 2450, - [2520] = 2451, - [2521] = 2469, - [2522] = 2454, - [2523] = 2455, - [2524] = 2422, - [2525] = 2459, - [2526] = 2465, - [2527] = 2467, - [2528] = 2468, - [2529] = 2529, - [2530] = 2417, - [2531] = 2423, - [2532] = 2424, - [2533] = 2425, - [2534] = 2462, - [2535] = 2461, - [2536] = 2420, - [2537] = 2416, - [2538] = 2460, - [2539] = 2422, - [2540] = 2423, - [2541] = 2458, - [2542] = 2424, - [2543] = 2425, - [2544] = 2422, - [2545] = 2432, - [2546] = 2453, - [2547] = 2449, - [2548] = 2448, - [2549] = 2447, - [2550] = 2446, - [2551] = 2420, - [2552] = 2445, - [2553] = 2440, - [2554] = 2416, - [2555] = 2442, - [2556] = 2443, - [2557] = 2444, - [2558] = 2445, - [2559] = 2446, - [2560] = 2447, - [2561] = 2448, - [2562] = 2449, - [2563] = 2444, - [2564] = 2443, - [2565] = 2442, - [2566] = 2453, - [2567] = 2445, - [2568] = 2440, - [2569] = 2446, - [2570] = 2424, - [2571] = 2458, - [2572] = 2432, - [2573] = 2460, - [2574] = 2461, - [2575] = 2462, - [2576] = 2463, - [2577] = 2464, - [2578] = 2423, - [2579] = 2466, - [2580] = 2451, - [2581] = 2422, - [2582] = 2448, - [2583] = 2416, - [2584] = 2420, - [2585] = 2425, - [2586] = 2475, - [2587] = 2424, - [2588] = 2423, - [2589] = 2478, - [2590] = 2422, - [2591] = 2480, - [2592] = 2449, - [2593] = 2417, - [2594] = 2529, - [2595] = 2484, - [2596] = 2468, - [2597] = 2467, - [2598] = 2487, - [2599] = 2486, - [2600] = 2422, - [2601] = 2483, - [2602] = 2459, - [2603] = 2455, - [2604] = 2483, - [2605] = 2482, - [2606] = 2481, - [2607] = 2454, - [2608] = 2423, - [2609] = 2424, - [2610] = 2417, - [2611] = 2529, - [2612] = 2470, - [2613] = 2468, - [2614] = 2428, - [2615] = 2429, - [2616] = 2435, - [2617] = 2439, - [2618] = 2457, - [2619] = 2418, - [2620] = 2419, - [2621] = 2426, - [2622] = 2427, - [2623] = 2467, - [2624] = 2415, - [2625] = 2431, - [2626] = 2433, - [2627] = 2451, - [2628] = 2436, - [2629] = 2465, - [2630] = 2450, - [2631] = 2451, - [2632] = 2415, - [2633] = 2454, - [2634] = 2455, - [2635] = 2459, - [2636] = 2459, - [2637] = 2465, - [2638] = 2467, - [2639] = 2468, - [2640] = 2529, - [2641] = 2417, - [2642] = 2455, - [2643] = 2425, - [2644] = 2450, - [2645] = 2416, - [2646] = 2420, - [2647] = 2416, - [2648] = 2436, - [2649] = 2433, - [2650] = 2650, - [2651] = 2651, - [2652] = 2431, - [2653] = 2499, - [2654] = 2498, - [2655] = 2420, - [2656] = 2432, - [2657] = 2427, - [2658] = 2477, - [2659] = 2426, - [2660] = 2423, - [2661] = 2424, - [2662] = 2419, - [2663] = 2440, - [2664] = 2664, - [2665] = 2442, - [2666] = 2443, - [2667] = 2444, - [2668] = 2445, - [2669] = 2446, - [2670] = 2447, - [2671] = 2448, - [2672] = 2449, - [2673] = 2418, - [2674] = 2457, - [2675] = 2439, - [2676] = 2453, - [2677] = 2435, - [2678] = 2454, - [2679] = 2429, - [2680] = 2458, - [2681] = 2428, - [2682] = 2460, - [2683] = 2461, - [2684] = 2462, - [2685] = 2463, - [2686] = 2464, - [2687] = 2470, - [2688] = 2466, - [2689] = 2415, - [2690] = 2476, - [2691] = 2425, - [2692] = 2425, - [2693] = 2693, - [2694] = 2481, - [2695] = 2475, - [2696] = 2482, - [2697] = 2461, - [2698] = 2478, - [2699] = 2424, - [2700] = 2480, - [2701] = 2486, - [2702] = 2487, - [2703] = 2484, - [2704] = 2484, - [2705] = 2480, - [2706] = 2478, - [2707] = 2487, - [2708] = 2486, - [2709] = 2469, - [2710] = 2475, - [2711] = 2423, - [2712] = 2466, - [2713] = 2483, - [2714] = 2482, - [2715] = 2481, - [2716] = 2464, - [2717] = 2450, - [2718] = 2463, - [2719] = 2470, - [2720] = 2462, - [2721] = 2428, - [2722] = 2429, - [2723] = 2435, - [2724] = 2439, - [2725] = 2457, - [2726] = 2418, - [2727] = 2419, - [2728] = 2426, - [2729] = 2427, - [2730] = 2436, - [2731] = 2428, - [2732] = 2431, - [2733] = 2433, - [2734] = 2460, - [2735] = 2436, - [2736] = 2450, - [2737] = 2451, - [2738] = 2415, - [2739] = 2454, - [2740] = 2458, - [2741] = 2664, - [2742] = 2693, - [2743] = 2453, - [2744] = 2449, - [2745] = 2448, - [2746] = 2447, - [2747] = 2446, - [2748] = 2445, - [2749] = 2475, - [2750] = 2444, - [2751] = 2432, - [2752] = 2443, - [2753] = 2753, - [2754] = 2442, - [2755] = 2755, - [2756] = 2440, - [2757] = 2440, - [2758] = 2433, - [2759] = 2442, - [2760] = 2443, - [2761] = 2444, - [2762] = 2422, - [2763] = 2432, - [2764] = 2529, - [2765] = 2453, - [2766] = 2420, - [2767] = 2431, - [2768] = 2447, - [2769] = 2458, - [2770] = 2425, - [2771] = 2460, - [2772] = 2461, - [2773] = 2462, - [2774] = 2463, - [2775] = 2424, - [2776] = 2466, - [2777] = 2777, - [2778] = 2423, - [2779] = 2422, - [2780] = 2427, - [2781] = 2426, - [2782] = 2651, - [2783] = 2475, - [2784] = 2453, - [2785] = 2417, - [2786] = 2478, - [2787] = 2529, - [2788] = 2480, - [2789] = 2468, - [2790] = 2467, - [2791] = 2465, - [2792] = 2484, - [2793] = 2459, - [2794] = 2455, - [2795] = 2487, - [2796] = 2486, - [2797] = 2797, - [2798] = 2454, - [2799] = 2415, - [2800] = 2451, - [2801] = 2483, - [2802] = 2482, - [2803] = 2481, - [2804] = 2419, - [2805] = 2418, - [2806] = 2457, - [2807] = 2470, - [2808] = 2439, - [2809] = 2428, - [2810] = 2429, - [2811] = 2435, - [2812] = 2439, - [2813] = 2457, - [2814] = 2418, - [2815] = 2419, - [2816] = 2426, - [2817] = 2427, - [2818] = 2450, - [2819] = 526, - [2820] = 2431, - [2821] = 2433, - [2822] = 2436, - [2823] = 2436, - [2824] = 2450, - [2825] = 2451, - [2826] = 2415, - [2827] = 2454, - [2828] = 2828, - [2829] = 2650, - [2830] = 2435, - [2831] = 2433, - [2832] = 2499, - [2833] = 2498, - [2834] = 2431, - [2835] = 2432, - [2836] = 2427, - [2837] = 2477, - [2838] = 2426, - [2839] = 2419, - [2840] = 2440, - [2841] = 2429, - [2842] = 2442, - [2843] = 2443, - [2844] = 2444, - [2845] = 2418, - [2846] = 2457, - [2847] = 2439, - [2848] = 2453, - [2849] = 2428, - [2850] = 2435, - [2851] = 2458, - [2852] = 2429, - [2853] = 2460, - [2854] = 2461, - [2855] = 2462, - [2856] = 2463, - [2857] = 2478, - [2858] = 2466, - [2859] = 2470, - [2860] = 2470, - [2861] = 2460, - [2862] = 2469, - [2863] = 2461, - [2864] = 2476, - [2865] = 2475, - [2866] = 2462, - [2867] = 2463, - [2868] = 2478, - [2869] = 2650, - [2870] = 2480, - [2871] = 2481, - [2872] = 2482, - [2873] = 2483, - [2874] = 2484, - [2875] = 2651, - [2876] = 2486, - [2877] = 2487, - [2878] = 2486, - [2879] = 2487, - [2880] = 2484, - [2881] = 2480, - [2882] = 2468, - [2883] = 2483, - [2884] = 2482, - [2885] = 2664, - [2886] = 2693, - [2887] = 2475, - [2888] = 2470, - [2889] = 2476, - [2890] = 2428, - [2891] = 2429, - [2892] = 2435, - [2893] = 2439, - [2894] = 2457, - [2895] = 2418, - [2896] = 2419, - [2897] = 2426, - [2898] = 2427, - [2899] = 2899, - [2900] = 2900, - [2901] = 2431, - [2902] = 2433, - [2903] = 2903, - [2904] = 2436, - [2905] = 2450, - [2906] = 2451, - [2907] = 2415, - [2908] = 2454, - [2909] = 2466, - [2910] = 2464, - [2911] = 2463, - [2912] = 2462, - [2913] = 2753, - [2914] = 2755, - [2915] = 2461, - [2916] = 2432, - [2917] = 2460, - [2918] = 2777, - [2919] = 2797, - [2920] = 2458, - [2921] = 2440, - [2922] = 2828, - [2923] = 2442, - [2924] = 2443, - [2925] = 2444, - [2926] = 2464, - [2927] = 2453, - [2928] = 2449, - [2929] = 2453, - [2930] = 2650, - [2931] = 2448, - [2932] = 2458, - [2933] = 2447, - [2934] = 2460, - [2935] = 2461, - [2936] = 2462, - [2937] = 2463, - [2938] = 2446, - [2939] = 2466, - [2940] = 2499, - [2941] = 2481, - [2942] = 2482, - [2943] = 2483, - [2944] = 2498, - [2945] = 2445, - [2946] = 2444, - [2947] = 2828, - [2948] = 2797, - [2949] = 2777, - [2950] = 2755, - [2951] = 2477, - [2952] = 2443, - [2953] = 2753, - [2954] = 2469, - [2955] = 2442, - [2956] = 2664, - [2957] = 2693, - [2958] = 2958, - [2959] = 2440, - [2960] = 2432, - [2961] = 2651, - [2962] = 2651, - [2963] = 2651, - [2964] = 2651, - [2965] = 2651, - [2966] = 2693, - [2967] = 2664, - [2968] = 2651, - [2969] = 2417, - [2970] = 2469, - [2971] = 2477, - [2972] = 2498, - [2973] = 2499, - [2974] = 2529, - [2975] = 2753, - [2976] = 2650, - [2977] = 2899, - [2978] = 2900, - [2979] = 2903, - [2980] = 2958, - [2981] = 2420, - [2982] = 2416, - [2983] = 2828, - [2984] = 2797, - [2985] = 2777, - [2986] = 2755, - [2987] = 2478, - [2988] = 2651, - [2989] = 2753, - [2990] = 2467, - [2991] = 2465, - [2992] = 2753, - [2993] = 2755, - [2994] = 2777, - [2995] = 2459, - [2996] = 2797, - [2997] = 2458, - [2998] = 2828, - [2999] = 2958, - [3000] = 2455, - [3001] = 2454, - [3002] = 2693, - [3003] = 2664, - [3004] = 2755, - [3005] = 2415, - [3006] = 2469, - [3007] = 2477, - [3008] = 2498, - [3009] = 2499, - [3010] = 2451, - [3011] = 2650, - [3012] = 2899, - [3013] = 2900, - [3014] = 2903, - [3015] = 2958, - [3016] = 2828, - [3017] = 2797, - [3018] = 2777, - [3019] = 2755, - [3020] = 2903, - [3021] = 2450, - [3022] = 2753, - [3023] = 2900, - [3024] = 2899, - [3025] = 2650, - [3026] = 2499, - [3027] = 2498, - [3028] = 2777, - [3029] = 2477, - [3030] = 2436, - [3031] = 2797, - [3032] = 2486, - [3033] = 2433, - [3034] = 2431, - [3035] = 2693, - [3036] = 2664, - [3037] = 2487, - [3038] = 2427, - [3039] = 2469, - [3040] = 2477, - [3041] = 2498, - [3042] = 2499, - [3043] = 2426, - [3044] = 2650, - [3045] = 2899, - [3046] = 2900, - [3047] = 2903, - [3048] = 2958, - [3049] = 2828, - [3050] = 2797, - [3051] = 2777, - [3052] = 2755, - [3053] = 2419, - [3054] = 2753, - [3055] = 2418, - [3056] = 2457, - [3057] = 2439, - [3058] = 2828, - [3059] = 2435, - [3060] = 2429, - [3061] = 2693, - [3062] = 2664, - [3063] = 2484, - [3064] = 2428, - [3065] = 2469, - [3066] = 2477, - [3067] = 2498, - [3068] = 2499, - [3069] = 3069, - [3070] = 2650, - [3071] = 2899, - [3072] = 2900, - [3073] = 2903, - [3074] = 2958, - [3075] = 2828, - [3076] = 2797, - [3077] = 2777, - [3078] = 2755, - [3079] = 2470, - [3080] = 2753, - [3081] = 511, - [3082] = 2476, - [3083] = 2466, - [3084] = 3084, - [3085] = 2481, - [3086] = 2693, - [3087] = 2664, - [3088] = 2482, - [3089] = 2469, - [3090] = 2477, - [3091] = 2498, - [3092] = 2499, - [3093] = 2483, - [3094] = 2650, - [3095] = 2899, - [3096] = 2900, - [3097] = 2903, - [3098] = 2958, - [3099] = 2828, - [3100] = 2797, - [3101] = 2777, - [3102] = 2755, - [3103] = 2486, - [3104] = 2753, - [3105] = 2487, - [3106] = 2484, - [3107] = 2480, - [3108] = 2480, - [3109] = 2478, - [3110] = 2693, - [3111] = 2664, - [3112] = 2475, - [3113] = 3113, - [3114] = 3114, - [3115] = 3115, - [3116] = 3116, - [3117] = 3114, - [3118] = 3118, - [3119] = 3119, - [3120] = 3118, - [3121] = 3119, - [3122] = 3115, - [3123] = 3116, - [3124] = 3124, - [3125] = 3115, - [3126] = 3126, - [3127] = 3116, - [3128] = 3124, - [3129] = 3124, - [3130] = 3126, - [3131] = 3114, - [3132] = 3126, - [3133] = 3118, - [3134] = 3119, - [3135] = 3135, - [3136] = 3126, - [3137] = 3124, - [3138] = 3116, - [3139] = 3115, - [3140] = 3119, - [3141] = 3118, - [3142] = 3114, - [3143] = 3143, - [3144] = 3114, - [3145] = 3126, - [3146] = 3124, - [3147] = 3114, - [3148] = 3116, - [3149] = 3115, - [3150] = 3126, - [3151] = 3119, - [3152] = 3118, - [3153] = 3114, - [3154] = 3126, - [3155] = 3124, - [3156] = 3116, - [3157] = 3115, - [3158] = 3119, - [3159] = 3118, - [3160] = 3114, - [3161] = 3161, - [3162] = 3162, - [3163] = 3118, - [3164] = 3119, - [3165] = 3115, - [3166] = 3166, - [3167] = 3114, - [3168] = 3168, - [3169] = 3169, - [3170] = 3126, - [3171] = 3116, - [3172] = 3161, - [3173] = 3126, - [3174] = 3124, - [3175] = 3175, - [3176] = 3176, - [3177] = 3177, - [3178] = 3143, - [3179] = 3179, - [3180] = 3166, - [3181] = 3168, - [3182] = 3169, - [3183] = 3161, - [3184] = 3135, - [3185] = 3143, - [3186] = 3186, - [3187] = 3114, - [3188] = 3188, - [3189] = 3166, - [3190] = 3126, - [3191] = 3168, - [3192] = 3169, - [3193] = 3193, - [3194] = 3194, - [3195] = 3186, - [3196] = 3196, - [3197] = 3161, - [3198] = 3135, - [3199] = 3143, - [3200] = 3166, - [3201] = 3168, - [3202] = 3169, - [3203] = 3203, - [3204] = 3193, - [3205] = 3205, - [3206] = 3194, - [3207] = 3203, - [3208] = 3196, - [3209] = 3161, - [3210] = 3135, - [3211] = 3135, - [3212] = 3212, - [3213] = 3213, - [3214] = 3143, - [3215] = 3215, - [3216] = 3216, - [3217] = 3217, - [3218] = 3161, - [3219] = 3196, - [3220] = 3186, - [3221] = 3166, - [3222] = 3168, - [3223] = 3169, - [3224] = 3194, - [3225] = 3203, - [3226] = 3193, - [3227] = 3205, - [3228] = 3194, - [3229] = 3186, - [3230] = 3196, - [3231] = 3161, - [3232] = 3135, - [3233] = 3205, - [3234] = 3193, - [3235] = 3166, - [3236] = 3236, - [3237] = 3237, - [3238] = 3169, - [3239] = 3143, - [3240] = 3168, - [3241] = 3241, - [3242] = 3242, - [3243] = 3243, - [3244] = 3166, - [3245] = 3168, - [3246] = 3169, - [3247] = 3203, - [3248] = 3193, - [3249] = 3205, - [3250] = 3194, - [3251] = 3186, - [3252] = 3196, - [3253] = 3161, - [3254] = 3135, - [3255] = 3255, - [3256] = 3143, - [3257] = 3166, - [3258] = 3168, - [3259] = 3169, - [3260] = 3203, - [3261] = 3193, - [3262] = 3205, - [3263] = 3194, - [3264] = 3186, - [3265] = 3196, - [3266] = 3161, - [3267] = 3135, - [3268] = 495, - [3269] = 494, - [3270] = 493, - [3271] = 492, - [3272] = 3143, - [3273] = 3143, - [3274] = 3274, - [3275] = 3166, - [3276] = 3168, - [3277] = 3169, - [3278] = 3203, - [3279] = 3193, - [3280] = 3205, - [3281] = 3194, - [3282] = 3186, - [3283] = 3196, - [3284] = 3161, - [3285] = 3135, - [3286] = 3286, - [3287] = 527, - [3288] = 3166, - [3289] = 3168, - [3290] = 3169, - [3291] = 3203, - [3292] = 3193, - [3293] = 3205, - [3294] = 3194, - [3295] = 3186, - [3296] = 3196, - [3297] = 3161, - [3298] = 3135, - [3299] = 3299, - [3300] = 3143, -}; - -static inline bool sym_word_character_set_1(int32_t c) { - return (c < '(' - ? (c < '\r' - ? (c < '\t' - ? c == 0 - : c <= '\n') - : (c <= '\r' || (c < '#' - ? c == ' ' - : c <= '%'))) - : (c <= '-' || (c < '[' - ? (c < '=' - ? c == '/' - : c <= '=') - : (c <= '_' || (c < '}' - ? c == '{' - : c <= '}'))))); -} - -static inline bool sym_path_character_set_1(int32_t c) { - return (c < ':' - ? (c < '*' - ? (c < '"' - ? c == 0 - : c <= '"') - : (c <= '*' || c == ',')) - : (c <= '<' || (c < ']' - ? (c < '[' - ? c == '>' - : c <= '[') - : (c <= ']' || (c >= '{' && c <= '|'))))); -} - -static inline bool sym_path_character_set_2(int32_t c) { - return (c < ':' - ? (c < '*' - ? (c < '"' - ? c == 0 - : c <= '"') - : (c <= '*' || c == ',')) - : (c <= '<' || (c < ']' - ? (c < '[' - ? c == '>' - : c <= '[') - : (c <= ']' || (c >= '{' && c <= '}'))))); -} - -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(40); - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(229); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 'a') ADVANCE(120); - if (lookahead == 'c') ADVANCE(141); - if (lookahead == 'd') ADVANCE(111); - if (lookahead == 'e') ADVANCE(147); - if (lookahead == 'f') ADVANCE(121); - if (lookahead == 'g') ADVANCE(81); - if (lookahead == 'l') ADVANCE(156); - if (lookahead == 'm') ADVANCE(109); - if (lookahead == 'p') ADVANCE(174); - if (lookahead == 's') ADVANCE(106); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(178); - if (lookahead != 0) ADVANCE(178); - END_STATE(); - case 1: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(230); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 2: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(236); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 3: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(231); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 4: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(237); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0) ADVANCE(178); - END_STATE(); - case 5: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(232); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0) ADVANCE(178); - END_STATE(); - case 6: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(241); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0) ADVANCE(178); - END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(238); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 8: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(233); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 9: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(242); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 10: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(246); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 11: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(234); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 12: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(243); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 13: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(252); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 14: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(254); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 15: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(250); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0) ADVANCE(178); - END_STATE(); - case 16: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(239); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 17: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(245); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 18: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(251); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 19: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(253); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 20: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(249); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0) ADVANCE(178); - END_STATE(); - case 21: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(256); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != ',' && - lookahead != '=' && - lookahead != ']') ADVANCE(178); - END_STATE(); - case 22: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '\\') ADVANCE(255); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != ',' && - lookahead != '=' && - (lookahead < '[' || ']' < lookahead)) ADVANCE(178); - END_STATE(); - case 23: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(1342); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '(' && - lookahead != ')') ADVANCE(178); - END_STATE(); - case 24: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '\\') ADVANCE(1341); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '(' && - lookahead != ')' && - lookahead != '[' && - lookahead != '{') ADVANCE(178); - END_STATE(); - case 25: - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '\\') ADVANCE(1342); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 'a') ADVANCE(120); - if (lookahead == 'c') ADVANCE(141); - if (lookahead == 'd') ADVANCE(111); - if (lookahead == 'e') ADVANCE(147); - if (lookahead == 'f') ADVANCE(121); - if (lookahead == 'g') ADVANCE(81); - if (lookahead == 'l') ADVANCE(156); - if (lookahead == 'm') ADVANCE(109); - if (lookahead == 'p') ADVANCE(174); - if (lookahead == 's') ADVANCE(145); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '$' && - (lookahead < '(' || ',' < lookahead) && - lookahead != '=' && - (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(178); - END_STATE(); - case 26: - if (lookahead == '%') ADVANCE(46); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(1343); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '#' && - lookahead != '$' && - (lookahead < '*' || '-' < lookahead) && - lookahead != '/' && - lookahead != '^' && - lookahead != '_' && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 27: - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\\') ADVANCE(1343); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0 && - lookahead != '#' && - lookahead != '$' && - (lookahead < '(' || '-' < lookahead) && - lookahead != '/' && - lookahead != '=' && - (lookahead < '[' || '_' < lookahead) && - lookahead != '}') ADVANCE(178); - END_STATE(); - case 28: - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\\') ADVANCE(31); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); - END_STATE(); - case 29: - if (lookahead == '%') ADVANCE(44); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(42); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < ':' || '<' < lookahead) && - lookahead != '>' && - lookahead != '[' && - lookahead != ']' && - lookahead != '|') ADVANCE(182); - END_STATE(); - case 30: - if (lookahead == '%') ADVANCE(45); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(43); - if (!sym_path_character_set_1(lookahead)) ADVANCE(180); - END_STATE(); - case 31: - if (lookahead == 'a') ADVANCE(33); - END_STATE(); - case 32: - if (lookahead == 'd') ADVANCE(79); - END_STATE(); - case 33: - if (lookahead == 'n') ADVANCE(32); - END_STATE(); - case 34: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(179); - END_STATE(); - case 35: - if (eof) ADVANCE(40); - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(248); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0) ADVANCE(178); - END_STATE(); - case 36: - if (eof) ADVANCE(40); - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(240); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0) ADVANCE(178); - END_STATE(); - case 37: - if (eof) ADVANCE(40); - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(235); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0) ADVANCE(178); - END_STATE(); - case 38: - if (eof) ADVANCE(40); - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(244); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0) ADVANCE(178); - END_STATE(); - case 39: - if (eof) ADVANCE(40); - if (lookahead == '!') ADVANCE(189); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(198); - if (lookahead == '%') ADVANCE(46); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(54); - if (lookahead == '*') ADVANCE(185); - if (lookahead == '+') ADVANCE(183); - if (lookahead == ',') ADVANCE(51); - if (lookahead == '-') ADVANCE(184); - if (lookahead == '/') ADVANCE(186); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '<') ADVANCE(187); - if (lookahead == '=') ADVANCE(52); - if (lookahead == '>') ADVANCE(188); - if (lookahead == '[') ADVANCE(49); - if (lookahead == '\\') ADVANCE(247); - if (lookahead == ']') ADVANCE(50); - if (lookahead == '^') ADVANCE(194); - if (lookahead == '_') ADVANCE(193); - if (lookahead == 's') ADVANCE(107); - if (lookahead == '{') ADVANCE(77); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(78); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - if (lookahead != 0) ADVANCE(178); - END_STATE(); - case 40: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 41: - ACCEPT_TOKEN(sym__whitespace); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(41); - END_STATE(); - case 42: - ACCEPT_TOKEN(sym__whitespace); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(42); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < ':' || '<' < lookahead) && - lookahead != '>' && - lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(182); - END_STATE(); - case 43: - ACCEPT_TOKEN(sym__whitespace); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(43); - if (!sym_path_character_set_2(lookahead)) ADVANCE(180); - END_STATE(); - case 44: - ACCEPT_TOKEN(sym_line_comment); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(182); - if (lookahead == '"' || - (':' <= lookahead && lookahead <= '<') || - lookahead == '>' || - lookahead == '[' || - lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(46); - if (lookahead != 0) ADVANCE(44); - END_STATE(); - case 45: - ACCEPT_TOKEN(sym_line_comment); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(180); - if (lookahead == '"' || - lookahead == '*' || - lookahead == ',' || - (':' <= lookahead && lookahead <= '<') || - lookahead == '>' || - lookahead == '[' || - lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(46); - if (lookahead != 0) ADVANCE(45); - END_STATE(); - case 46: - ACCEPT_TOKEN(sym_line_comment); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(46); - END_STATE(); - case 47: - ACCEPT_TOKEN(anon_sym_BSLASHiffalse); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 48: - ACCEPT_TOKEN(anon_sym_BSLASHfi); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 49: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 50: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 51: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 52: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 53: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 54: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 55: - ACCEPT_TOKEN(anon_sym_BSLASHpart); - if (lookahead == '*') ADVANCE(56); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 56: - ACCEPT_TOKEN(anon_sym_BSLASHpart_STAR); - END_STATE(); - case 57: - ACCEPT_TOKEN(anon_sym_BSLASHaddpart); - if (lookahead == '*') ADVANCE(58); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 58: - ACCEPT_TOKEN(anon_sym_BSLASHaddpart_STAR); - END_STATE(); - case 59: - ACCEPT_TOKEN(anon_sym_BSLASHchapter); - if (lookahead == '*') ADVANCE(60); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 60: - ACCEPT_TOKEN(anon_sym_BSLASHchapter_STAR); - END_STATE(); - case 61: - ACCEPT_TOKEN(anon_sym_BSLASHaddchap); - if (lookahead == '*') ADVANCE(62); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 62: - ACCEPT_TOKEN(anon_sym_BSLASHaddchap_STAR); - END_STATE(); - case 63: - ACCEPT_TOKEN(anon_sym_BSLASHsection); - if (lookahead == '*') ADVANCE(64); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 64: - ACCEPT_TOKEN(anon_sym_BSLASHsection_STAR); - END_STATE(); - case 65: - ACCEPT_TOKEN(anon_sym_BSLASHaddsec); - if (lookahead == '*') ADVANCE(66); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_BSLASHaddsec_STAR); - END_STATE(); - case 67: - ACCEPT_TOKEN(anon_sym_BSLASHsubsection); - if (lookahead == '*') ADVANCE(68); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 68: - ACCEPT_TOKEN(anon_sym_BSLASHsubsection_STAR); - END_STATE(); - case 69: - ACCEPT_TOKEN(anon_sym_BSLASHsubsubsection); - if (lookahead == '*') ADVANCE(70); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 70: - ACCEPT_TOKEN(anon_sym_BSLASHsubsubsection_STAR); - END_STATE(); - case 71: - ACCEPT_TOKEN(anon_sym_BSLASHparagraph); - if (lookahead == '*') ADVANCE(72); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 72: - ACCEPT_TOKEN(anon_sym_BSLASHparagraph_STAR); - END_STATE(); - case 73: - ACCEPT_TOKEN(anon_sym_BSLASHsubparagraph); - if (lookahead == '*') ADVANCE(74); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 74: - ACCEPT_TOKEN(anon_sym_BSLASHsubparagraph_STAR); - END_STATE(); - case 75: - ACCEPT_TOKEN(anon_sym_BSLASHitem); - if (lookahead == '*') ADVANCE(76); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 76: - ACCEPT_TOKEN(anon_sym_BSLASHitem_STAR); - END_STATE(); - case 77: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_BSLASHand); - END_STATE(); - case 80: - ACCEPT_TOKEN(anon_sym_BSLASHand); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 81: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'a') ADVANCE(158); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 82: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'a') ADVANCE(175); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 83: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'a') ADVANCE(177); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 84: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'a') ADVANCE(126); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 85: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'a') ADVANCE(176); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 86: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'a') ADVANCE(154); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 87: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'a') ADVANCE(165); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 88: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'a') ADVANCE(163); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 89: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'a') ADVANCE(170); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 90: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'b') ADVANCE(89); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 91: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'c') ADVANCE(142); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 92: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'd') ADVANCE(206); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 93: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'd') ADVANCE(94); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 94: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(207); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 95: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(212); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 96: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(173); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 97: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(148); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 98: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(92); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 99: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(149); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 100: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(139); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 101: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(153); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 102: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'g') ADVANCE(205); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 103: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'g') ADVANCE(132); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 104: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'g') ADVANCE(133); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 105: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'h') ADVANCE(208); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 106: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'h') ADVANCE(143); - if (lookahead == 'p') ADVANCE(122); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 107: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'h') ADVANCE(143); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 108: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'h') ADVANCE(99); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 109: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(136); - if (lookahead == 'u') ADVANCE(127); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 110: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(103); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 111: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(155); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 112: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(144); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 113: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(128); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 114: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(138); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 115: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(159); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 116: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(135); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 117: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(157); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 118: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(104); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 119: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(140); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 120: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'l') ADVANCE(110); - if (lookahead == 'r') ADVANCE(150); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 121: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'l') ADVANCE(84); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 122: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'l') ADVANCE(115); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 123: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'l') ADVANCE(114); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 124: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'l') ADVANCE(83); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 125: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'l') ADVANCE(117); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 126: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'l') ADVANCE(118); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 127: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'l') ADVANCE(168); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 128: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'm') ADVANCE(204); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 129: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'm') ADVANCE(100); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 130: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'm') ADVANCE(129); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 131: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'm') ADVANCE(88); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 132: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(216); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 133: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(226); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 134: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(210); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 135: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(102); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 136: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(164); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 137: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(86); - if (lookahead == 'u') ADVANCE(87); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 138: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(95); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 139: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(161); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 140: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(172); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 141: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'o') ADVANCE(130); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 142: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'o') ADVANCE(93); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 143: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'o') ADVANCE(151); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 144: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'o') ADVANCE(134); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 145: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'p') ADVANCE(122); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 146: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'p') ADVANCE(124); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 147: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'q') ADVANCE(137); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 148: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'r') ADVANCE(90); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 149: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'r') ADVANCE(224); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 150: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'r') ADVANCE(82); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 151: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'r') ADVANCE(167); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 152: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'r') ADVANCE(85); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'r') ADVANCE(169); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 154: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'r') ADVANCE(152); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 155: - ACCEPT_TOKEN(sym_word); - if (lookahead == 's') ADVANCE(146); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 156: - ACCEPT_TOKEN(sym_word); - if (lookahead == 's') ADVANCE(166); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 157: - ACCEPT_TOKEN(sym_word); - if (lookahead == 's') ADVANCE(171); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 158: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(108); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 159: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(220); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 160: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(222); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 161: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(203); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 162: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(1596); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 163: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(105); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 164: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(98); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 165: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(112); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 166: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(125); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 167: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(119); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 168: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(123); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 169: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(96); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 170: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(113); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 171: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(116); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 172: - ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(101); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 173: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'x') ADVANCE(162); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 174: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'y') ADVANCE(91); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 175: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'y') ADVANCE(218); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 176: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'y') ADVANCE(214); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 177: - ACCEPT_TOKEN(sym_word); - if (lookahead == 'y') ADVANCE(131); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 178: - ACCEPT_TOKEN(sym_word); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 179: - ACCEPT_TOKEN(sym_placeholder); - END_STATE(); - case 180: - ACCEPT_TOKEN(sym_path); - if (!sym_path_character_set_2(lookahead)) ADVANCE(180); - END_STATE(); - case 181: - ACCEPT_TOKEN(sym_argc); - END_STATE(); - case 182: - ACCEPT_TOKEN(aux_sym__glob_pattern_fragment_token1); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < ':' || '<' < lookahead) && - lookahead != '>' && - lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(182); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 185: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 186: - ACCEPT_TOKEN(anon_sym_SLASH); - END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_LT); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_GT); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_BANG); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_PIPE); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 191: - ACCEPT_TOKEN(anon_sym_COLON); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym__); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 195: - ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); - END_STATE(); - case 196: - ACCEPT_TOKEN(anon_sym_BSLASH_LBRACK); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_BSLASH_RBRACK); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '$') ADVANCE(195); - END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_BSLASH_LPAREN); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_BSLASH_RPAREN); - END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_BSLASHbegin); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_BSLASHend); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_comment); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_verbatim); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_lstlisting); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 206: - ACCEPT_TOKEN(anon_sym_minted); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 207: - ACCEPT_TOKEN(anon_sym_pycode); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 208: - ACCEPT_TOKEN(anon_sym_displaymath); - if (lookahead == '*') ADVANCE(209); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 209: - ACCEPT_TOKEN(anon_sym_displaymath_STAR); - END_STATE(); - case 210: - ACCEPT_TOKEN(anon_sym_equation); - if (lookahead == '*') ADVANCE(211); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 211: - ACCEPT_TOKEN(anon_sym_equation_STAR); - END_STATE(); - case 212: - ACCEPT_TOKEN(anon_sym_multline); - if (lookahead == '*') ADVANCE(213); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 213: - ACCEPT_TOKEN(anon_sym_multline_STAR); - END_STATE(); - case 214: - ACCEPT_TOKEN(anon_sym_eqnarray); - if (lookahead == '*') ADVANCE(215); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 215: - ACCEPT_TOKEN(anon_sym_eqnarray_STAR); - END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_align); - if (lookahead == '*') ADVANCE(217); - if (lookahead == 'a') ADVANCE(160); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_align_STAR); - END_STATE(); - case 218: - ACCEPT_TOKEN(anon_sym_array); - if (lookahead == '*') ADVANCE(219); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_array_STAR); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_split); - if (lookahead == '*') ADVANCE(221); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 221: - ACCEPT_TOKEN(anon_sym_split_STAR); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_alignat); - if (lookahead == '*') ADVANCE(223); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_alignat_STAR); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_gather); - if (lookahead == '*') ADVANCE(225); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 225: - ACCEPT_TOKEN(anon_sym_gather_STAR); - END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_flalign); - if (lookahead == '*') ADVANCE(227); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - case 227: - ACCEPT_TOKEN(anon_sym_flalign_STAR); - END_STATE(); - case 228: - ACCEPT_TOKEN(sym_command_name); - END_STATE(); - case 229: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == ')') ADVANCE(200); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(679); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == ']') ADVANCE(197); - if (lookahead == 'a') ADVANCE(379); - if (lookahead == 'b') ADVANCE(529); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(900); - if (lookahead == 'f') ADVANCE(680); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 230: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == ')') ADVANCE(200); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(679); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(529); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 231: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == ')') ADVANCE(200); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == ']') ADVANCE(197); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 232: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == ')') ADVANCE(200); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(379); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 233: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == ')') ADVANCE(200); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(900); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 234: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == ')') ADVANCE(200); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(680); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 235: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == ')') ADVANCE(200); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 236: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(679); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == ']') ADVANCE(197); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(529); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 237: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(679); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(379); - if (lookahead == 'b') ADVANCE(529); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 238: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(679); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(529); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(900); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 239: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(679); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(529); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(680); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 240: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(679); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(529); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 241: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == ']') ADVANCE(197); - if (lookahead == 'a') ADVANCE(379); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 242: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == ']') ADVANCE(197); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(900); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 243: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == ']') ADVANCE(197); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(680); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 244: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == ']') ADVANCE(197); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 245: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(900); - if (lookahead == 'f') ADVANCE(680); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 246: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(900); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 247: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(680); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 248: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(380); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(284); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(615); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(289); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(536); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 249: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(382); - if (lookahead == 'b') ADVANCE(686); - if (lookahead == 'c') ADVANCE(285); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(680); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(616); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(290); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(893); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 250: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(382); - if (lookahead == 'b') ADVANCE(686); - if (lookahead == 'c') ADVANCE(285); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(616); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(290); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(893); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 251: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(382); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(285); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(900); - if (lookahead == 'f') ADVANCE(680); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(616); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(290); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(893); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 252: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(382); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(285); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(900); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(616); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(290); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(893); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 253: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(382); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(285); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(680); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(616); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(290); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(893); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 254: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(382); - if (lookahead == 'b') ADVANCE(530); - if (lookahead == 'c') ADVANCE(285); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(616); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(290); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(893); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 255: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(381); - if (lookahead == 'b') ADVANCE(686); - if (lookahead == 'c') ADVANCE(285); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(680); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(616); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(290); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(893); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 256: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(199); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'B') ADVANCE(697); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == '[') ADVANCE(196); - if (lookahead == 'a') ADVANCE(381); - if (lookahead == 'b') ADVANCE(686); - if (lookahead == 'c') ADVANCE(285); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(616); - if (lookahead == 'l') ADVANCE(286); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(290); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(893); - if (lookahead == 't') ADVANCE(571); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 257: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'C') ADVANCE(281); - if (lookahead == 'c') ADVANCE(1570); - if (lookahead == 'u') ADVANCE(1205); - if (lookahead == 'v') ADVANCE(1025); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 258: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'C') ADVANCE(1115); - if (lookahead == 'c') ADVANCE(1116); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 259: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'C') ADVANCE(1011); - if (lookahead == 'E') ADVANCE(956); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 260: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'C') ADVANCE(1013); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 261: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'C') ADVANCE(1015); - if (lookahead == 'E') ADVANCE(957); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 262: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'C') ADVANCE(1017); - if (lookahead == 'E') ADVANCE(958); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 263: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'C') ADVANCE(1019); - if (lookahead == 'E') ADVANCE(959); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 264: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'C') ADVANCE(1020); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 265: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'C') ADVANCE(1021); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 266: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'C') ADVANCE(1022); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 267: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'C') ADVANCE(1023); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 268: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'D') ADVANCE(1024); - if (lookahead == 'E') ADVANCE(1316); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 269: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'D') ADVANCE(578); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 270: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'D') ADVANCE(1026); - if (lookahead == 'E') ADVANCE(1326); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 271: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'D') ADVANCE(1028); - if (lookahead == 'E') ADVANCE(1327); - if (lookahead == 'M') ADVANCE(315); - if (lookahead == 'P') ADVANCE(347); - if (lookahead == 'R') ADVANCE(969); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 272: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'D') ADVANCE(1030); - if (lookahead == 'E') ADVANCE(1328); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 273: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'D') ADVANCE(1032); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 274: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'D') ADVANCE(1040); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 275: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'D') ADVANCE(1042); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 276: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'D') ADVANCE(1044); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 277: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'I') ADVANCE(910); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 278: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'L') ADVANCE(282); - if (lookahead == 'l') ADVANCE(1147); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 279: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'O') ADVANCE(1058); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 280: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'P') ADVANCE(349); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 281: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'R') ADVANCE(632); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 282: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'S') ADVANCE(1494); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 283: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1091); - if (lookahead == 'n') ADVANCE(1039); - if (lookahead == 'r') ADVANCE(964); - if (lookahead == 'v') ADVANCE(1027); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 284: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1051); - if (lookahead == 'h') ADVANCE(327); - if (lookahead == 'i') ADVANCE(1211); - if (lookahead == 'o') ADVANCE(788); - if (lookahead == 'r') ADVANCE(541); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 285: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1051); - if (lookahead == 'i') ADVANCE(1211); - if (lookahead == 'o') ADVANCE(788); - if (lookahead == 'r') ADVANCE(541); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 286: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(367); - if (lookahead == 'c') ADVANCE(901); - if (lookahead == 'e') ADVANCE(633); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 287: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(367); - if (lookahead == 'c') ADVANCE(901); - if (lookahead == 'e') ADVANCE(1171); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 288: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(848); - if (lookahead == 'e') ADVANCE(1312); - if (lookahead == 'o') ADVANCE(389); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 289: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(653); - if (lookahead == 'n') ADVANCE(1043); - if (lookahead == 'v') ADVANCE(1035); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 290: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(654); - if (lookahead == 'n') ADVANCE(1043); - if (lookahead == 'v') ADVANCE(1035); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 291: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1145); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 292: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(856); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 293: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(652); - if (lookahead == 'e') ADVANCE(946); - if (lookahead == 't') ADVANCE(55); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 294: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1046); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 295: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(394); - if (lookahead == 'c') ADVANCE(967); - if (lookahead == 'e') ADVANCE(933); - if (lookahead == 'g') ADVANCE(794); - if (lookahead == 'l') ADVANCE(328); - if (lookahead == 't') ADVANCE(670); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 296: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1049); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 297: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(390); - if (lookahead == 'g') ADVANCE(637); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 298: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1052); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 299: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(372); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 300: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(909); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 301: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(904); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 302: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(906); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 303: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1073); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 304: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(766); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 305: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(767); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 306: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1085); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 307: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(908); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 308: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1078); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 309: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(911); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 310: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(913); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 311: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(771); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 312: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(916); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 313: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(917); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 314: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(919); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 315: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1206); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 316: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1087); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 317: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(920); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 318: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1089); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 319: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(921); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 320: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(922); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 321: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(923); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 322: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(776); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 323: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(779); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 324: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(782); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 325: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(810); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 326: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1252); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 327: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1061); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 328: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(369); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 329: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1156); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 330: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1210); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 331: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1053); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 332: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1059); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 333: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1094); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 334: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(934); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 335: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1110); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 336: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(850); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 337: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1100); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 338: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1212); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 339: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1054); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 340: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(657); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 341: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(851); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 342: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(658); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 343: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1114); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 344: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(852); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 345: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(659); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 346: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1229); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 347: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(713); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 348: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(661); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 349: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(433); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 350: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1146); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 351: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(376); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 352: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(377); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 353: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(378); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 354: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(961); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 355: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(962); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 356: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(963); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 357: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(634); - if (lookahead == 'p') ADVANCE(545); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 358: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(635); - if (lookahead == 'p') ADVANCE(545); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 359: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(791); - if (lookahead == 'g') ADVANCE(1466); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 360: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(791); - if (lookahead == 'g') ADVANCE(1467); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 361: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(791); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 362: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(687); - if (lookahead == 'c') ADVANCE(667); - if (lookahead == 'p') ADVANCE(337); - if (lookahead == 's') ADVANCE(544); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 363: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(687); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 364: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(330); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 365: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(1287); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 366: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(1169); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 367: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(555); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 368: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(1131); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 369: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(567); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 370: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(990); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 371: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(993); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 372: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(806); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 373: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(1117); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 374: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(338); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 375: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(1135); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 376: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(833); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 377: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(834); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 378: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(835); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 379: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1569); - if (lookahead == 'd') ADVANCE(446); - if (lookahead == 'n') ADVANCE(447); - if (lookahead == 'u') ADVANCE(1170); - if (lookahead == 'v') ADVANCE(1033); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 380: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1569); - if (lookahead == 'd') ADVANCE(446); - if (lookahead == 'u') ADVANCE(1170); - if (lookahead == 'v') ADVANCE(1033); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 381: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1569); - if (lookahead == 'd') ADVANCE(461); - if (lookahead == 'n') ADVANCE(447); - if (lookahead == 'u') ADVANCE(1170); - if (lookahead == 'v') ADVANCE(1033); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 382: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1569); - if (lookahead == 'd') ADVANCE(461); - if (lookahead == 'u') ADVANCE(1170); - if (lookahead == 'v') ADVANCE(1033); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 383: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(727); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 384: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(65); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 385: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1519); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 386: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1518); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 387: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1517); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 388: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1281); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 389: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(704); - if (lookahead == 't') ADVANCE(596); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 390: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(751); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 391: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(789); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 392: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'p') ADVANCE(1275); - if (lookahead == 't') ADVANCE(542); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 393: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'p') ADVANCE(1275); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 394: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1133); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 395: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1150); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 396: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(332); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 397: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(525); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 398: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(997); - if (lookahead == 'r') ADVANCE(549); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 399: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(801); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 400: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1118); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 401: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(706); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 402: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(813); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 403: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(999); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 404: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(708); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 405: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(815); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 406: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(709); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 407: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(711); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 408: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(712); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 409: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(714); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 410: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(716); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 411: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(717); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 412: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(718); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 413: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(719); - if (lookahead == 'r') ADVANCE(548); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 414: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(720); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 415: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(721); - if (lookahead == 'f') ADVANCE(1298); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 416: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(722); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 417: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(723); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 418: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(724); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 419: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(725); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 420: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(726); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 421: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(728); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 422: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(729); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 423: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(730); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 424: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(731); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 425: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(732); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 426: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(733); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 427: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(734); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 428: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(735); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 429: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(736); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 430: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(737); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 431: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(738); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 432: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1293); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 433: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(752); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 434: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(812); - if (lookahead == 'f') ADVANCE(1463); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 435: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1254); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 436: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1008); - if (lookahead == 'e') ADVANCE(955); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 437: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1294); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 438: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1256); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 439: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1257); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 440: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1295); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 441: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1296); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 442: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1297); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 443: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1299); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 444: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1300); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 445: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1301); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 446: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(362); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 447: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(80); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 448: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(202); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 449: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(1447); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 450: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(1449); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 451: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(269); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 452: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(1455); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 453: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(1451); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 454: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(1456); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 455: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(1458); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 456: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(1457); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 457: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(1459); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 458: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(1460); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 459: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(1462); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 460: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(1461); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 461: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(363); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 462: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(299); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 463: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(611); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 464: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(489); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 465: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(562); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 466: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(526); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 467: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(351); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 468: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(352); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 469: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(353); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 470: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(391); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 471: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1311); - if (lookahead == 'o') ADVANCE(1249); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 472: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1317); - if (lookahead == 'v') ADVANCE(1031); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 473: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(434); - if (lookahead == 'o') ADVANCE(388); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 474: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(618); - if (lookahead == 'i') ADVANCE(643); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 475: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(618); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 476: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1045); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 477: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1369); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 478: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1367); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 479: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(258); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 480: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1344); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 481: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1370); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 482: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(271); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 483: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1514); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 484: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1513); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 485: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(280); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 486: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1407); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 487: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1512); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 488: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(47); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 489: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1349); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 490: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1352); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 491: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1406); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 492: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1403); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 493: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1417); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 494: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1419); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 495: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1409); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 496: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1413); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 497: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1398); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 498: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1415); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 499: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1402); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 500: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1416); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 501: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1383); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 502: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1394); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 503: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1386); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 504: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1410); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 505: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1418); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 506: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1408); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 507: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1412); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 508: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1397); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 509: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1414); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 510: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1444); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 511: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1393); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 512: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1421); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 513: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1400); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 514: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1379); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 515: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1442); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 516: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1422); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 517: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1411); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 518: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1391); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 519: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1420); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 520: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1399); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 521: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1401); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 522: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1346); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 523: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1395); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 524: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1347); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 525: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1353); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 526: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1350); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 527: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1357); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 528: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(914); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 529: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(651); - if (lookahead == 'i') ADVANCE(359); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 530: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(651); - if (lookahead == 'i') ADVANCE(360); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 531: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1082); - if (lookahead == 'o') ADVANCE(787); - if (lookahead == 'r') ADVANCE(538); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 532: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(619); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 533: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(837); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 534: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(398); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 535: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(273); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 536: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(435); - if (lookahead == 'm') ADVANCE(350); - if (lookahead == 'u') ADVANCE(357); - if (lookahead == 'v') ADVANCE(1036); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 537: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1313); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 538: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(620); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 539: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(945); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 540: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1153); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 541: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(621); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 542: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1132); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 543: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(622); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 544: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(384); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 545: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1144); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 546: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(623); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 547: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(451); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 548: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(624); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 549: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(625); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 550: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1159); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 551: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(403); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 552: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(626); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 553: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(627); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 554: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(841); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 555: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(756); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 556: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(400); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 557: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1071); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 558: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(628); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 559: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(629); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 560: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1005); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 561: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1084); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 562: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(636); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 563: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(844); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 564: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1072); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 565: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(630); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 566: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1086); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 567: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(761); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 568: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1259); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 569: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1081); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 570: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1197); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 571: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1318); - if (lookahead == 'i') ADVANCE(1207); - if (lookahead == 'v') ADVANCE(1037); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 572: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(924); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 573: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1155); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 574: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(303); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 575: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1319); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 576: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(925); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 577: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1157); - if (lookahead == 'i') ADVANCE(1151); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 578: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(798); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 579: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1320); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 580: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(926); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 581: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1321); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 582: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(927); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 583: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(949); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 584: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1323); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 585: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(928); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 586: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1324); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 587: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(929); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 588: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1325); - if (lookahead == 'i') ADVANCE(1207); - if (lookahead == 'v') ADVANCE(1037); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 589: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(930); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 590: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(931); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 591: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1121); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 592: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1107); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 593: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(935); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 594: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1006); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 595: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(408); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 596: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(418); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 597: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(423); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 598: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(425); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 599: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(428); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 600: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1137); - if (lookahead == 'o') ADVANCE(817); - if (lookahead == 'r') ADVANCE(543); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 601: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(438); - if (lookahead == 'u') ADVANCE(366); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 602: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(946); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 603: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(948); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 604: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(439); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 605: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(950); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 606: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(952); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 607: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(951); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 608: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(953); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 609: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(954); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 610: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(274); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 611: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(272); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 612: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(275); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 613: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(276); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 614: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'e') ADVANCE(1314); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 615: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(631); - if (lookahead == 'm') ADVANCE(1050); - if (lookahead == 'n') ADVANCE(392); - if (lookahead == 't') ADVANCE(533); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 616: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(631); - if (lookahead == 'm') ADVANCE(1050); - if (lookahead == 'n') ADVANCE(392); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 617: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(631); - if (lookahead == 'm') ADVANCE(1050); - if (lookahead == 'n') ADVANCE(393); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 618: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1424); - if (lookahead == 'n') ADVANCE(537); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 619: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1431); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 620: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1427); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 621: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1430); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 622: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1426); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 623: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1425); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 624: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1428); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 625: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1429); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 626: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1435); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 627: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1434); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 628: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1440); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 629: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1436); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 630: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1441); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 631: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(325); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 632: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1276); - if (lookahead == 'l') ADVANCE(970); - if (lookahead == 's') ADVANCE(673); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 633: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1172); - if (lookahead == 't') ADVANCE(1464); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 634: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(701); - if (lookahead == 'i') ADVANCE(886); - if (lookahead == 'p') ADVANCE(333); - if (lookahead == 's') ADVANCE(601); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 635: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(701); - if (lookahead == 'i') ADVANCE(886); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 636: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1106); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 637: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(795); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 638: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1283); - if (lookahead == 'l') ADVANCE(973); - if (lookahead == 's') ADVANCE(675); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 639: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1285); - if (lookahead == 'l') ADVANCE(974); - if (lookahead == 's') ADVANCE(676); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 640: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1288); - if (lookahead == 'l') ADVANCE(987); - if (lookahead == 's') ADVANCE(677); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 641: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1289); - if (lookahead == 'l') ADVANCE(989); - if (lookahead == 's') ADVANCE(678); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 642: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1468); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 643: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(668); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 644: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1547); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 645: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1546); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 646: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1545); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 647: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1356); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 648: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1573); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 649: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1572); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 650: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1469); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 651: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(689); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 652: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1092); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 653: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(534); - if (lookahead == 'r') ADVANCE(293); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 654: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(534); - if (lookahead == 'r') ADVANCE(602); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 655: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(510); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 656: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(515); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 657: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(591); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 658: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(522); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 659: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(524); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 660: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1102); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 661: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1128); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 662: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(71); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 663: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(279); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 664: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(73); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 665: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(1329); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 666: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(972); - if (lookahead == 'o') ADVANCE(413); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 667: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(294); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 668: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(1175); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 669: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(698); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 670: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(560); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 671: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(986); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 672: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(988); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 673: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(998); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 674: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(594); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 675: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(1000); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 676: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(1001); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 677: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(1003); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 678: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'h') ADVANCE(1004); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 679: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(642); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 680: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(48); - if (lookahead == 'n') ADVANCE(1041); - if (lookahead == 'o') ADVANCE(971); - if (lookahead == 't') ADVANCE(1310); - if (lookahead == 'u') ADVANCE(831); - if (lookahead == 'v') ADVANCE(1034); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 681: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(748); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 682: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1522); - if (lookahead == 'v') ADVANCE(1534); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 683: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1521); - if (lookahead == 'v') ADVANCE(1533); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 684: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1520); - if (lookahead == 'v') ADVANCE(1532); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 685: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1209); - if (lookahead == 'r') ADVANCE(532); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 686: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(360); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 687: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(373); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 688: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(463); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 689: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(894); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 690: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(368); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 691: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1088); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 692: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(838); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 693: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(853); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 694: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(361); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 695: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(899); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 696: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1007); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 697: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(650); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 698: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(395); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 699: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(885); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 700: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1123); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 701: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(804); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 702: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1126); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 703: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1112); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 704: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1216); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 705: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(976); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 706: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1218); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 707: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(978); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 708: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1219); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 709: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1220); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 710: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(985); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 711: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1221); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 712: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1222); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 713: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1120); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 714: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1223); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 715: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(991); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 716: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1224); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 717: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1225); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 718: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1226); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 719: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1227); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 720: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 721: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1230); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 722: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1231); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 723: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1232); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 724: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1233); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 725: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1234); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 726: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1235); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 727: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1236); - if (lookahead == 'o') ADVANCE(808); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 728: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1237); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 729: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1238); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 730: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1239); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 731: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1240); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 732: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1241); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 733: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1242); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 734: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1243); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 735: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1244); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 736: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1245); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 737: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1246); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 738: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1247); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 739: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1248); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 740: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1136); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 741: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(937); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 742: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(375); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 743: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1139); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 744: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1140); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 745: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1141); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 746: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1142); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 747: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1143); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 748: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'k') ADVANCE(1339); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 749: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'k') ADVANCE(1499); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 750: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'k') ADVANCE(1158); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 751: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'k') ADVANCE(342); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 752: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'k') ADVANCE(345); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 753: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1497); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 754: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1496); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 755: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1495); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 756: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1423); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 757: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1553); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 758: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1552); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 759: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1551); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 760: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1385); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 761: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1446); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 762: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1556); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 763: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1550); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 764: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1555); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 765: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1549); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 766: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1508); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 767: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1507); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 768: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1516); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 769: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1554); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 770: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1548); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 771: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1506); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 772: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1515); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 773: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1544); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 774: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1543); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 775: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1542); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 776: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1511); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 777: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1581); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 778: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1575); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 779: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1510); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 780: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1580); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 781: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1574); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 782: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1509); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 783: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1579); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 784: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1578); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 785: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1047); - if (lookahead == 'u') ADVANCE(1255); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 786: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1148); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 787: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(401); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 788: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(966); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 789: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(335); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 790: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1282); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 791: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(696); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 792: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1290); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 793: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1056); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 794: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(968); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 795: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(690); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 796: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(757); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 797: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(758); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 798: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(699); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 799: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(759); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 800: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(982); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 801: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(329); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 802: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(480); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 803: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(793); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 804: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(490); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 805: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(514); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 806: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(535); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 807: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1057); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 808: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(984); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 809: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(807); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 810: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1167); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 811: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(992); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 812: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(343); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 813: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1284); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 814: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 815: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1286); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 816: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1292); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 817: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(404); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 818: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(742); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 819: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(407); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 820: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(409); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 821: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(410); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 822: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(412); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 823: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(414); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 824: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(416); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 825: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(417); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 826: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(419); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 827: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(420); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 828: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(421); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 829: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(426); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 830: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(431); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 831: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(824); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 832: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(830); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 833: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(610); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 834: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(612); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 835: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(613); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 836: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(291); - if (lookahead == 'v') ADVANCE(1029); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 837: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(75); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 838: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(277); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 839: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(1362); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 840: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(1538); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 841: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(1582); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 842: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(1364); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 843: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(1363); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 844: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(1584); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 845: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(1365); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 846: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(370); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 847: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(854); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 848: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(479); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 849: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(572); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 850: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(483); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 851: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(484); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 852: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(487); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 853: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(741); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 854: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(302); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 855: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(307); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 856: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(556); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 857: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(309); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 858: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(310); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 859: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(312); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 860: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(313); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 861: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(314); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 862: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(317); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 863: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(319); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 864: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(320); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 865: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(321); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 866: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(371); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 867: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(855); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 868: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(576); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 869: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(857); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 870: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(580); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 871: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(858); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 872: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(582); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 873: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(859); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 874: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(583); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 875: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(860); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 876: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(585); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 877: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(861); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 878: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(587); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 879: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(862); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 880: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(589); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 881: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(863); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 882: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(590); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 883: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(864); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 884: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(865); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 885: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(739); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 886: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(1064); - if (lookahead == 'n') ADVANCE(402); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 887: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(603); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 888: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(605); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 889: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(606); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 890: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(607); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 891: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(608); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 892: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(609); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 893: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'm') ADVANCE(350); - if (lookahead == 'u') ADVANCE(358); - if (lookahead == 'v') ADVANCE(1036); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 894: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(201); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 895: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1366); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 896: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(63); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 897: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(67); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 898: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(69); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 899: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(749); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 900: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(448); - if (lookahead == 'q') ADVANCE(1093); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 901: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(292); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 902: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(750); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 903: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(644); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 904: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(462); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 905: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(645); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 906: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(449); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 907: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(646); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 908: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(450); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 909: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(655); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 910: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1062); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 911: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(452); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 912: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(648); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 913: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(453); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 914: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(614); - if (lookahead == 'q') ADVANCE(1274); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 915: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(649); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 916: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(454); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 917: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(455); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 918: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1213); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 919: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(456); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 920: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(457); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 921: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(458); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 922: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(459); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 923: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(460); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 924: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1253); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 925: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1190); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 926: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1198); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 927: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1199); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 928: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1200); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 929: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1201); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 930: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1202); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 931: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1203); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 932: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1334); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 933: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1304); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 934: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(656); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 935: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1217); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 936: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(551); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 937: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1063); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 938: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(870); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 939: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(872); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 940: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(876); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 941: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(878); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 942: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(880); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 943: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(882); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 944: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(405); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 945: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(422); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 946: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(427); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 947: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1260); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 948: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1264); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 949: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1265); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 950: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1266); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 951: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1267); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 952: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1269); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 953: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1270); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 954: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1272); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 955: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1305); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 956: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1306); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 957: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1307); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 958: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1308); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 959: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1309); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 960: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(1041); - if (lookahead == 'o') ADVANCE(971); - if (lookahead == 't') ADVANCE(1310); - if (lookahead == 'u') ADVANCE(831); - if (lookahead == 'v') ADVANCE(1034); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 961: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(467); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 962: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(468); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 963: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'n') ADVANCE(469); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 964: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1302); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 965: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1315); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 966: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1069); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 967: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(847); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 968: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1154); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 969: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(365); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 970: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(903); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 971: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1204); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 972: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1070); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 973: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(905); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 974: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(907); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 975: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(839); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 976: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(895); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 977: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(842); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 978: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(896); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 979: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(843); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 980: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(932); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 981: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(845); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 982: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1074); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 983: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(938); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 984: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1075); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 985: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(897); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 986: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1076); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 987: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(912); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 988: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1077); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 989: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(915); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 990: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(768); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 991: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(898); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 992: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1079); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 993: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(772); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 994: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1080); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 995: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1095); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 996: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1278); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 997: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(800); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 998: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1103); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 999: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(811); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1000: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1105); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1001: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1108); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1002: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1109); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1003: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1111); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1004: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1113); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1005: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1119); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1006: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1122); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1007: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(660); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1008: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(867); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1009: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(939); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1010: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(406); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1011: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(869); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1012: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(940); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1013: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(871); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1014: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(941); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1015: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(873); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1016: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(942); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1017: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(875); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1018: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(943); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1019: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(877); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1020: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(879); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1021: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(881); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1022: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(883); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1023: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(884); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1024: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(432); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1025: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(819); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1026: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(440); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1027: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(820); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1028: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(441); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1029: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(821); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1030: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(442); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1031: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(822); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1032: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(437); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1033: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(823); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1034: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(825); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1035: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(826); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1036: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(827); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1037: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(828); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1038: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(829); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1039: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1268); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1040: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(443); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1041: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1271); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1042: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(444); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1043: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(1273); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1044: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'o') ADVANCE(445); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1045: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(297); - if (lookahead == 't') ADVANCE(681); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1046: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(61); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1047: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1389); - if (lookahead == 't') ADVANCE(1388); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1048: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1498); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1049: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(662); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1050: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(995); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1051: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1208); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1052: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(665); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1053: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(669); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1054: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(664); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1055: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(340); - if (lookahead == 'r') ADVANCE(558); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1056: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(777); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1057: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(780); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1058: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(592); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1059: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(527); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1060: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(301); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1061: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1215); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1062: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1279); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1063: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1280); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1064: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1002); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1065: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(354); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1066: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(355); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1067: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(356); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1068: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'q') ADVANCE(1093); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1069: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1588); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1070: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1345); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1071: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(682); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1072: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(59); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1073: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1381); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1074: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1591); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1075: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1590); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1076: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1377); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1077: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1375); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1078: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1387); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1079: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1586); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1080: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1453); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1081: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1483); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1082: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(364); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1083: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1336); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1084: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(683); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1085: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1335); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1086: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(684); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1087: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1330); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1088: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1160); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1089: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1331); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1090: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1332); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1091: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(539); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1092: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(296); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1093: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(546); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1094: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(348); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1095: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1176); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1096: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(397); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1097: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(304); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1098: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(975); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1099: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(760); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1100: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1179); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1101: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(977); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1102: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(298); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1103: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1181); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1104: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(979); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1105: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1182); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1106: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(981); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1107: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(326); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1108: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1185); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1109: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1189); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1110: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(482); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1111: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1193); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1112: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(485); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1113: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1195); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1114: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(568); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1115: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(552); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1116: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(553); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1117: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(550); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1118: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(559); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1119: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(554); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1120: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(547); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1121: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(565); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1122: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(563); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1123: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1162); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1124: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(305); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1125: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(331); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1126: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1164); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1127: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(311); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1128: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(339); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1129: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(322); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1130: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(323); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1131: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(316); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1132: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1258); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1133: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(980); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1134: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(324); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1135: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(318); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1136: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(983); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1137: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(374); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1138: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1337); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1139: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1009); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1140: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1012); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1141: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1014); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1142: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1016); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1143: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1018); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1144: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(430); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1145: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1262); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1146: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'r') ADVANCE(1263); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1147: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1493); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1148: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1492); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1149: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1348); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1150: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1355); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1151: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1048); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1152: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(476); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1153: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(385); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1154: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1168); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1155: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(386); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1156: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1149); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1157: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(387); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1158: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(396); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1159: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(996); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1160: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1183); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1161: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(557); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1162: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1184); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1163: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(561); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1164: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1187); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1165: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(566); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1166: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1192); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1167: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(488); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1168: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(306); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1169: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(604); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1170: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(666); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1171: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1464); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1172: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1465); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1173: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1594); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1174: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1351); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1175: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1478); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1176: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1360); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1177: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1502); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1178: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1501); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1179: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(57); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1180: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1500); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1181: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1541); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1182: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1540); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1183: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1505); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1184: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1504); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1185: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1539); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1186: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1390); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1187: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1503); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1188: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1595); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1189: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1361); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1190: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(259); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1191: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1396); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1192: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(260); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1193: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1577); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1194: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1359); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1195: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1576); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1196: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1358); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1197: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1587); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1198: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1485); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1199: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1486); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1200: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1487); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1201: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1488); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1202: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1490); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1203: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1489); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1204: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(415); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1205: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1010); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1206: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(663); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1207: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(802); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1208: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(705); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1209: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(477); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1210: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(692); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1211: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(478); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1212: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(693); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1213: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1083); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1214: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(383); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1215: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(564); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1216: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(481); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1217: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1090); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1218: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(486); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1219: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(491); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1220: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(492); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1221: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(493); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1222: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(494); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1223: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(495); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1224: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(496); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1225: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(497); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1226: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(498); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1227: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(499); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1228: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(500); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1229: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(501); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1230: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(502); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1231: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(503); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1232: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(504); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1233: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(505); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1234: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(506); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1235: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(507); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1236: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(508); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1237: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(509); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1238: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(511); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1239: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(512); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1240: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(513); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1241: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(516); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1242: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(517); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1243: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(518); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1244: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(519); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1245: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(520); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1246: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(521); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1247: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(523); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1248: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(569); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1249: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(595); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1250: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(671); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1251: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(805); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1252: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(994); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1253: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(399); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1254: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(707); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1255: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(672); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1256: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(710); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1257: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(715); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1258: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(584); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1259: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(674); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1260: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(1138); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1261: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(411); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1262: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(424); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1263: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(429); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1264: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(261); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1265: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(264); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1266: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(262); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1267: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(265); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1268: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(597); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1269: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(263); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1270: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(266); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1271: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(598); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1272: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(267); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1273: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(599); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1274: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(703); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1275: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(1174); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1276: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(796); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1277: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(1250); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1278: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(1096); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1279: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(1194); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1280: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(1196); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1281: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(849); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1282: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(464); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1283: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(797); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1284: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(465); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1285: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(799); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1286: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(466); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1287: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(1166); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1288: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(803); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1289: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(809); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1290: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(1129); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1291: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(1130); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1292: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(1134); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1293: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(868); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1294: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(874); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1295: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(887); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1296: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(888); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1297: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(889); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1298: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(832); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1299: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(890); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1300: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(891); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1301: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(892); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1302: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'v') ADVANCE(688); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1303: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'v') ADVANCE(647); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1304: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'v') ADVANCE(740); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1305: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'v') ADVANCE(743); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1306: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'v') ADVANCE(744); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1307: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'v') ADVANCE(745); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1308: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'v') ADVANCE(746); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1309: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'v') ADVANCE(747); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1310: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'v') ADVANCE(1038); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1311: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'w') ADVANCE(268); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1312: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'w') ADVANCE(295); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1313: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'w') ADVANCE(436); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1314: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'w') ADVANCE(270); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1315: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1589); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1316: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1060); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1317: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1261); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1318: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1173); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1319: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1177); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1320: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1178); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1321: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1180); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1322: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1186); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1323: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1188); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1324: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1191); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1325: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1214); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1326: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1065); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1327: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1066); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1328: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'x') ADVANCE(1067); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1329: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'y') ADVANCE(1354); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1330: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'y') ADVANCE(1592); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1331: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'y') ADVANCE(1593); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1332: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'y') ADVANCE(1491); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1333: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'y') ADVANCE(846); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1334: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'y') ADVANCE(840); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1335: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'y') ADVANCE(593); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1336: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'y') ADVANCE(640); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1337: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'y') ADVANCE(641); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1338: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'y') ADVANCE(866); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1339: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'z') ADVANCE(818); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(1340); - END_STATE(); - case 1340: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1341: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == 'a') ADVANCE(382); - if (lookahead == 'b') ADVANCE(694); - if (lookahead == 'c') ADVANCE(285); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(680); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(617); - if (lookahead == 'l') ADVANCE(287); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(290); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(893); - if (lookahead == 't') ADVANCE(588); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 1342: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == 'A') ADVANCE(257); - if (lookahead == 'C') ADVANCE(685); - if (lookahead == 'D') ADVANCE(470); - if (lookahead == 'G') ADVANCE(278); - if (lookahead == 'N') ADVANCE(471); - if (lookahead == 'P') ADVANCE(283); - if (lookahead == 'R') ADVANCE(528); - if (lookahead == 'S') ADVANCE(836); - if (lookahead == 'T') ADVANCE(472); - if (lookahead == 'V') ADVANCE(531); - if (lookahead == 'a') ADVANCE(382); - if (lookahead == 'b') ADVANCE(694); - if (lookahead == 'c') ADVANCE(285); - if (lookahead == 'd') ADVANCE(473); - if (lookahead == 'e') ADVANCE(1068); - if (lookahead == 'f') ADVANCE(960); - if (lookahead == 'g') ADVANCE(786); - if (lookahead == 'i') ADVANCE(617); - if (lookahead == 'l') ADVANCE(287); - if (lookahead == 'n') ADVANCE(288); - if (lookahead == 'p') ADVANCE(290); - if (lookahead == 'r') ADVANCE(475); - if (lookahead == 's') ADVANCE(893); - if (lookahead == 't') ADVANCE(588); - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'v') ADVANCE(600); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 1343: - ACCEPT_TOKEN(sym_command_name); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(228); - END_STATE(); - case 1344: - ACCEPT_TOKEN(anon_sym_BSLASHtitle); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1345: - ACCEPT_TOKEN(anon_sym_BSLASHauthor); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1346: - ACCEPT_TOKEN(anon_sym_BSLASHusepackage); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1347: - ACCEPT_TOKEN(anon_sym_BSLASHRequirePackage); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1348: - ACCEPT_TOKEN(anon_sym_BSLASHdocumentclass); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1349: - ACCEPT_TOKEN(anon_sym_BSLASHinclude); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1101); - if (lookahead == 'g') ADVANCE(1125); - if (lookahead == 'i') ADVANCE(902); - if (lookahead == 's') ADVANCE(1303); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1350: - ACCEPT_TOKEN(anon_sym_BSLASHsubfileinclude); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1351: - ACCEPT_TOKEN(anon_sym_BSLASHinput); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1098); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1352: - ACCEPT_TOKEN(anon_sym_BSLASHsubfile); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(944); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1353: - ACCEPT_TOKEN(anon_sym_BSLASHaddbibresource); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1354: - ACCEPT_TOKEN(anon_sym_BSLASHbibliography); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1355: - ACCEPT_TOKEN(anon_sym_BSLASHincludegraphics); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1356: - ACCEPT_TOKEN(anon_sym_BSLASHincludesvg); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1357: - ACCEPT_TOKEN(anon_sym_BSLASHincludeinkscape); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1358: - ACCEPT_TOKEN(anon_sym_BSLASHverbatiminput); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1359: - ACCEPT_TOKEN(anon_sym_BSLASHVerbatimInput); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1360: - ACCEPT_TOKEN(anon_sym_BSLASHimport); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1361: - ACCEPT_TOKEN(anon_sym_BSLASHsubimport); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1104); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1362: - ACCEPT_TOKEN(anon_sym_BSLASHinputfrom); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1363: - ACCEPT_TOKEN(anon_sym_BSLASHsubimportfrom); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1364: - ACCEPT_TOKEN(anon_sym_BSLASHincludefrom); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1365: - ACCEPT_TOKEN(anon_sym_BSLASHsubincludefrom); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1366: - ACCEPT_TOKEN(anon_sym_BSLASHcaption); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1367: - ACCEPT_TOKEN(anon_sym_BSLASHcite); - if (lookahead == '*') ADVANCE(1368); - if (lookahead == 'a') ADVANCE(785); - if (lookahead == 'd') ADVANCE(346); - if (lookahead == 'p') ADVANCE(1372); - if (lookahead == 't') ADVANCE(1371); - if (lookahead == 'u') ADVANCE(1099); - if (lookahead == 'y') ADVANCE(574); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1368: - ACCEPT_TOKEN(anon_sym_BSLASHcite_STAR); - END_STATE(); - case 1369: - ACCEPT_TOKEN(anon_sym_BSLASHCite); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'a') ADVANCE(1277); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1370: - ACCEPT_TOKEN(anon_sym_BSLASHnocite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1371: - ACCEPT_TOKEN(anon_sym_BSLASHcitet); - if (lookahead == '*') ADVANCE(1373); - if (lookahead == 'e') ADVANCE(1322); - if (lookahead == 'i') ADVANCE(1251); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1372: - ACCEPT_TOKEN(anon_sym_BSLASHcitep); - if (lookahead == '*') ADVANCE(1374); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1373: - ACCEPT_TOKEN(anon_sym_BSLASHcitet_STAR); - END_STATE(); - case 1374: - ACCEPT_TOKEN(anon_sym_BSLASHcitep_STAR); - END_STATE(); - case 1375: - ACCEPT_TOKEN(anon_sym_BSLASHciteauthor); - if (lookahead == '*') ADVANCE(1376); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1376: - ACCEPT_TOKEN(anon_sym_BSLASHciteauthor_STAR); - END_STATE(); - case 1377: - ACCEPT_TOKEN(anon_sym_BSLASHCiteauthor); - if (lookahead == '*') ADVANCE(1378); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1378: - ACCEPT_TOKEN(anon_sym_BSLASHCiteauthor_STAR); - END_STATE(); - case 1379: - ACCEPT_TOKEN(anon_sym_BSLASHcitetitle); - if (lookahead == '*') ADVANCE(1380); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1380: - ACCEPT_TOKEN(anon_sym_BSLASHcitetitle_STAR); - END_STATE(); - case 1381: - ACCEPT_TOKEN(anon_sym_BSLASHciteyear); - if (lookahead == '*') ADVANCE(1382); - if (lookahead == 'p') ADVANCE(308); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1382: - ACCEPT_TOKEN(anon_sym_BSLASHciteyear_STAR); - END_STATE(); - case 1383: - ACCEPT_TOKEN(anon_sym_BSLASHcitedate); - if (lookahead == '*') ADVANCE(1384); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1384: - ACCEPT_TOKEN(anon_sym_BSLASHcitedate_STAR); - END_STATE(); - case 1385: - ACCEPT_TOKEN(anon_sym_BSLASHciteurl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1386: - ACCEPT_TOKEN(anon_sym_BSLASHfullcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1387: - ACCEPT_TOKEN(anon_sym_BSLASHciteyearpar); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1388: - ACCEPT_TOKEN(anon_sym_BSLASHcitealt); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1389: - ACCEPT_TOKEN(anon_sym_BSLASHcitealp); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1390: - ACCEPT_TOKEN(anon_sym_BSLASHcitetext); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1391: - ACCEPT_TOKEN(anon_sym_BSLASHparencite); - if (lookahead == '*') ADVANCE(1392); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1392: - ACCEPT_TOKEN(anon_sym_BSLASHparencite_STAR); - END_STATE(); - case 1393: - ACCEPT_TOKEN(anon_sym_BSLASHParencite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1394: - ACCEPT_TOKEN(anon_sym_BSLASHfootcite); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 't') ADVANCE(586); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1395: - ACCEPT_TOKEN(anon_sym_BSLASHfootfullcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1396: - ACCEPT_TOKEN(anon_sym_BSLASHfootcitetext); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1397: - ACCEPT_TOKEN(anon_sym_BSLASHtextcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1398: - ACCEPT_TOKEN(anon_sym_BSLASHTextcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1399: - ACCEPT_TOKEN(anon_sym_BSLASHsmartcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1400: - ACCEPT_TOKEN(anon_sym_BSLASHSmartcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1401: - ACCEPT_TOKEN(anon_sym_BSLASHsupercite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1402: - ACCEPT_TOKEN(anon_sym_BSLASHautocite); - if (lookahead == '*') ADVANCE(1404); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1403: - ACCEPT_TOKEN(anon_sym_BSLASHAutocite); - if (lookahead == '*') ADVANCE(1405); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1404: - ACCEPT_TOKEN(anon_sym_BSLASHautocite_STAR); - END_STATE(); - case 1405: - ACCEPT_TOKEN(anon_sym_BSLASHAutocite_STAR); - END_STATE(); - case 1406: - ACCEPT_TOKEN(anon_sym_BSLASHvolcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1407: - ACCEPT_TOKEN(anon_sym_BSLASHVolcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1408: - ACCEPT_TOKEN(anon_sym_BSLASHpvolcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1409: - ACCEPT_TOKEN(anon_sym_BSLASHPvolcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1410: - ACCEPT_TOKEN(anon_sym_BSLASHfvolcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1411: - ACCEPT_TOKEN(anon_sym_BSLASHftvolcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1412: - ACCEPT_TOKEN(anon_sym_BSLASHsvolcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1413: - ACCEPT_TOKEN(anon_sym_BSLASHSvolcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1414: - ACCEPT_TOKEN(anon_sym_BSLASHtvolcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1415: - ACCEPT_TOKEN(anon_sym_BSLASHTvolcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1416: - ACCEPT_TOKEN(anon_sym_BSLASHavolcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1417: - ACCEPT_TOKEN(anon_sym_BSLASHAvolcite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1418: - ACCEPT_TOKEN(anon_sym_BSLASHnotecite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1419: - ACCEPT_TOKEN(anon_sym_BSLASHNotecite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1420: - ACCEPT_TOKEN(anon_sym_BSLASHpnotecite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1421: - ACCEPT_TOKEN(anon_sym_BSLASHPnotecite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1422: - ACCEPT_TOKEN(anon_sym_BSLASHfnotecite); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1423: - ACCEPT_TOKEN(anon_sym_BSLASHlabel); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(1055); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1424: - ACCEPT_TOKEN(anon_sym_BSLASHref); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1425: - ACCEPT_TOKEN(anon_sym_BSLASHeqref); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1426: - ACCEPT_TOKEN(anon_sym_BSLASHvref); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1427: - ACCEPT_TOKEN(anon_sym_BSLASHVref); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1428: - ACCEPT_TOKEN(anon_sym_BSLASHautoref); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1429: - ACCEPT_TOKEN(anon_sym_BSLASHpageref); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1430: - ACCEPT_TOKEN(anon_sym_BSLASHcref); - if (lookahead == '*') ADVANCE(1432); - if (lookahead == 'r') ADVANCE(334); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1431: - ACCEPT_TOKEN(anon_sym_BSLASHCref); - if (lookahead == '*') ADVANCE(1433); - if (lookahead == 'r') ADVANCE(300); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1432: - ACCEPT_TOKEN(anon_sym_BSLASHcref_STAR); - END_STATE(); - case 1433: - ACCEPT_TOKEN(anon_sym_BSLASHCref_STAR); - END_STATE(); - case 1434: - ACCEPT_TOKEN(anon_sym_BSLASHnamecref); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1437); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1435: - ACCEPT_TOKEN(anon_sym_BSLASHnameCref); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1438); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1436: - ACCEPT_TOKEN(anon_sym_BSLASHlcnamecref); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(1439); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1437: - ACCEPT_TOKEN(anon_sym_BSLASHnamecrefs); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1438: - ACCEPT_TOKEN(anon_sym_BSLASHnameCrefs); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1439: - ACCEPT_TOKEN(anon_sym_BSLASHlcnamecrefs); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1440: - ACCEPT_TOKEN(anon_sym_BSLASHlabelcref); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1441: - ACCEPT_TOKEN(anon_sym_BSLASHlabelcpageref); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1442: - ACCEPT_TOKEN(anon_sym_BSLASHcrefrange); - if (lookahead == '*') ADVANCE(1443); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1443: - ACCEPT_TOKEN(anon_sym_BSLASHcrefrange_STAR); - END_STATE(); - case 1444: - ACCEPT_TOKEN(anon_sym_BSLASHCrefrange); - if (lookahead == '*') ADVANCE(1445); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1445: - ACCEPT_TOKEN(anon_sym_BSLASHCrefrange_STAR); - END_STATE(); - case 1446: - ACCEPT_TOKEN(anon_sym_BSLASHnewlabel); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1447: - ACCEPT_TOKEN(anon_sym_BSLASHnewcommand); - if (lookahead == '*') ADVANCE(1448); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1448: - ACCEPT_TOKEN(anon_sym_BSLASHnewcommand_STAR); - END_STATE(); - case 1449: - ACCEPT_TOKEN(anon_sym_BSLASHrenewcommand); - if (lookahead == '*') ADVANCE(1450); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1450: - ACCEPT_TOKEN(anon_sym_BSLASHrenewcommand_STAR); - END_STATE(); - case 1451: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareRobustCommand); - if (lookahead == '*') ADVANCE(1452); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1452: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareRobustCommand_STAR); - END_STATE(); - case 1453: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareMathOperator); - if (lookahead == '*') ADVANCE(1454); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1454: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareMathOperator_STAR); - END_STATE(); - case 1455: - ACCEPT_TOKEN(anon_sym_BSLASHNewDocumentCommand); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1456: - ACCEPT_TOKEN(anon_sym_BSLASHRenewDocumentCommand); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1457: - ACCEPT_TOKEN(anon_sym_BSLASHProvideDocumentCommand); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1458: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareDocumentCommand); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1459: - ACCEPT_TOKEN(anon_sym_BSLASHNewExpandableDocumentCommand); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1460: - ACCEPT_TOKEN(anon_sym_BSLASHRenewExpandableDocumentCommand); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1461: - ACCEPT_TOKEN(anon_sym_BSLASHProvideExpandableDocumentCommand); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1462: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareExpandableDocumentCommand); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1463: - ACCEPT_TOKEN(anon_sym_BSLASHdef); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(936); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1464: - ACCEPT_TOKEN(anon_sym_BSLASHlet); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1465: - ACCEPT_TOKEN(anon_sym_BSLASHleft); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1466: - ACCEPT_TOKEN(anon_sym_BSLASHbig); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1470); - if (lookahead == 'l') ADVANCE(1474); - if (lookahead == 'r') ADVANCE(1479); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1467: - ACCEPT_TOKEN(anon_sym_BSLASHbig); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1471); - if (lookahead == 'l') ADVANCE(1474); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1468: - ACCEPT_TOKEN(anon_sym_BSLASHBig); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1472); - if (lookahead == 'l') ADVANCE(1475); - if (lookahead == 'r') ADVANCE(1480); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1469: - ACCEPT_TOKEN(anon_sym_BSLASHBig); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'g') ADVANCE(1473); - if (lookahead == 'l') ADVANCE(1475); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1470: - ACCEPT_TOKEN(anon_sym_BSLASHbigg); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1476); - if (lookahead == 'r') ADVANCE(1481); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1471: - ACCEPT_TOKEN(anon_sym_BSLASHbigg); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1476); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1472: - ACCEPT_TOKEN(anon_sym_BSLASHBigg); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1477); - if (lookahead == 'r') ADVANCE(1482); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1473: - ACCEPT_TOKEN(anon_sym_BSLASHBigg); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'l') ADVANCE(1477); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1474: - ACCEPT_TOKEN(anon_sym_BSLASHbigl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1475: - ACCEPT_TOKEN(anon_sym_BSLASHBigl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1476: - ACCEPT_TOKEN(anon_sym_BSLASHbiggl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1477: - ACCEPT_TOKEN(anon_sym_BSLASHBiggl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1478: - ACCEPT_TOKEN(anon_sym_BSLASHright); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1479: - ACCEPT_TOKEN(anon_sym_BSLASHbigr); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1480: - ACCEPT_TOKEN(anon_sym_BSLASHBigr); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1481: - ACCEPT_TOKEN(anon_sym_BSLASHbiggr); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1482: - ACCEPT_TOKEN(anon_sym_BSLASHBiggr); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1483: - ACCEPT_TOKEN(anon_sym_BSLASHDeclarePairedDelimiter); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'X') ADVANCE(1484); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1484: - ACCEPT_TOKEN(anon_sym_BSLASHDeclarePairedDelimiterX); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1485: - ACCEPT_TOKEN(anon_sym_BSLASHnewenvironment); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1486: - ACCEPT_TOKEN(anon_sym_BSLASHrenewenvironment); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1487: - ACCEPT_TOKEN(anon_sym_BSLASHNewDocumentEnvironment); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1488: - ACCEPT_TOKEN(anon_sym_BSLASHRenewDocumentEnvironment); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1489: - ACCEPT_TOKEN(anon_sym_BSLASHProvideDocumentEnvironment); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1490: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareDocumentEnvironment); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1491: - ACCEPT_TOKEN(anon_sym_BSLASHnewglossaryentry); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1492: - ACCEPT_TOKEN(anon_sym_BSLASHgls); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(577); - if (lookahead == 'e') ADVANCE(947); - if (lookahead == 'f') ADVANCE(702); - if (lookahead == 'l') ADVANCE(695); - if (lookahead == 'n') ADVANCE(344); - if (lookahead == 'p') ADVANCE(755); - if (lookahead == 's') ADVANCE(1338); - if (lookahead == 't') ADVANCE(581); - if (lookahead == 'u') ADVANCE(1165); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1493: - ACCEPT_TOKEN(anon_sym_BSLASHGls); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(573); - if (lookahead == 'e') ADVANCE(918); - if (lookahead == 'f') ADVANCE(700); - if (lookahead == 'n') ADVANCE(341); - if (lookahead == 'p') ADVANCE(754); - if (lookahead == 's') ADVANCE(1333); - if (lookahead == 't') ADVANCE(579); - if (lookahead == 'u') ADVANCE(1163); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1494: - ACCEPT_TOKEN(anon_sym_BSLASHGLS); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'd') ADVANCE(540); - if (lookahead == 'f') ADVANCE(691); - if (lookahead == 'n') ADVANCE(336); - if (lookahead == 'p') ADVANCE(753); - if (lookahead == 't') ADVANCE(575); - if (lookahead == 'u') ADVANCE(1161); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1495: - ACCEPT_TOKEN(anon_sym_BSLASHglspl); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(1127); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1496: - ACCEPT_TOKEN(anon_sym_BSLASHGlspl); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(1124); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1497: - ACCEPT_TOKEN(anon_sym_BSLASHGLSpl); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'u') ADVANCE(1097); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1498: - ACCEPT_TOKEN(anon_sym_BSLASHglsdisp); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1499: - ACCEPT_TOKEN(anon_sym_BSLASHglslink); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1500: - ACCEPT_TOKEN(anon_sym_BSLASHglstext); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1501: - ACCEPT_TOKEN(anon_sym_BSLASHGlstext); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1502: - ACCEPT_TOKEN(anon_sym_BSLASHGLStext); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1503: - ACCEPT_TOKEN(anon_sym_BSLASHglsfirst); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(816); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1504: - ACCEPT_TOKEN(anon_sym_BSLASHGlsfirst); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(814); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1505: - ACCEPT_TOKEN(anon_sym_BSLASHGLSfirst); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(792); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1506: - ACCEPT_TOKEN(anon_sym_BSLASHglsplural); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1507: - ACCEPT_TOKEN(anon_sym_BSLASHGlsplural); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1508: - ACCEPT_TOKEN(anon_sym_BSLASHGLSplural); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1509: - ACCEPT_TOKEN(anon_sym_BSLASHglsfirstplural); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1510: - ACCEPT_TOKEN(anon_sym_BSLASHGlsfirstplural); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1511: - ACCEPT_TOKEN(anon_sym_BSLASHGLSfirstplural); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1512: - ACCEPT_TOKEN(anon_sym_BSLASHglsname); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1513: - ACCEPT_TOKEN(anon_sym_BSLASHGlsname); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1514: - ACCEPT_TOKEN(anon_sym_BSLASHGLSname); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1515: - ACCEPT_TOKEN(anon_sym_BSLASHglssymbol); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1516: - ACCEPT_TOKEN(anon_sym_BSLASHGlssymbol); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1517: - ACCEPT_TOKEN(anon_sym_BSLASHglsdesc); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1518: - ACCEPT_TOKEN(anon_sym_BSLASHGlsdesc); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1519: - ACCEPT_TOKEN(anon_sym_BSLASHGLSdesc); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1520: - ACCEPT_TOKEN(anon_sym_BSLASHglsuseri); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1523); - if (lookahead == 'v') ADVANCE(1529); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1521: - ACCEPT_TOKEN(anon_sym_BSLASHGlsuseri); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1524); - if (lookahead == 'v') ADVANCE(1530); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1522: - ACCEPT_TOKEN(anon_sym_BSLASHGLSuseri); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1525); - if (lookahead == 'v') ADVANCE(1531); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1523: - ACCEPT_TOKEN(anon_sym_BSLASHglsuserii); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1526); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1524: - ACCEPT_TOKEN(anon_sym_BSLASHGlsuserii); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1527); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1525: - ACCEPT_TOKEN(anon_sym_BSLASHGLSuserii); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1528); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1526: - ACCEPT_TOKEN(anon_sym_BSLASHglsuseriii); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1527: - ACCEPT_TOKEN(anon_sym_BSLASHGlsuseriii); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1528: - ACCEPT_TOKEN(anon_sym_BSLASHGLSuseriii); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1529: - ACCEPT_TOKEN(anon_sym_BSLASHglsuseriv); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1530: - ACCEPT_TOKEN(anon_sym_BSLASHGlsuseriv); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1531: - ACCEPT_TOKEN(anon_sym_BSLASHGLSuseriv); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1532: - ACCEPT_TOKEN(anon_sym_BSLASHglsuserv); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1535); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1533: - ACCEPT_TOKEN(anon_sym_BSLASHGlsuserv); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1536); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1534: - ACCEPT_TOKEN(anon_sym_BSLASHGLSuserv); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'i') ADVANCE(1537); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1535: - ACCEPT_TOKEN(anon_sym_BSLASHglsuservi); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1536: - ACCEPT_TOKEN(anon_sym_BSLASHGlsuservi); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1537: - ACCEPT_TOKEN(anon_sym_BSLASHGLSuservi); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1538: - ACCEPT_TOKEN(anon_sym_BSLASHnewacronym); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1539: - ACCEPT_TOKEN(anon_sym_BSLASHacrshort); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(775); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1540: - ACCEPT_TOKEN(anon_sym_BSLASHAcrshort); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(774); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1541: - ACCEPT_TOKEN(anon_sym_BSLASHACRshort); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(773); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1542: - ACCEPT_TOKEN(anon_sym_BSLASHacrshortpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1543: - ACCEPT_TOKEN(anon_sym_BSLASHAcrshortpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1544: - ACCEPT_TOKEN(anon_sym_BSLASHACRshortpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1545: - ACCEPT_TOKEN(anon_sym_BSLASHacrlong); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(770); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1546: - ACCEPT_TOKEN(anon_sym_BSLASHAcrlong); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(765); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1547: - ACCEPT_TOKEN(anon_sym_BSLASHACRlong); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(763); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1548: - ACCEPT_TOKEN(anon_sym_BSLASHacrlongpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1549: - ACCEPT_TOKEN(anon_sym_BSLASHAcrlongpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1550: - ACCEPT_TOKEN(anon_sym_BSLASHACRlongpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1551: - ACCEPT_TOKEN(anon_sym_BSLASHacrfull); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(769); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1552: - ACCEPT_TOKEN(anon_sym_BSLASHAcrfull); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(764); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1553: - ACCEPT_TOKEN(anon_sym_BSLASHACRfull); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(762); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1554: - ACCEPT_TOKEN(anon_sym_BSLASHacrfullpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1555: - ACCEPT_TOKEN(anon_sym_BSLASHAcrfullpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1556: - ACCEPT_TOKEN(anon_sym_BSLASHACRfullpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1557: - ACCEPT_TOKEN(anon_sym_BSLASHacs); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1559); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1558: - ACCEPT_TOKEN(anon_sym_BSLASHAcs); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1560); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1559: - ACCEPT_TOKEN(anon_sym_BSLASHacsp); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1560: - ACCEPT_TOKEN(anon_sym_BSLASHAcsp); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1561: - ACCEPT_TOKEN(anon_sym_BSLASHacl); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1563); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1562: - ACCEPT_TOKEN(anon_sym_BSLASHAcl); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1564); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1563: - ACCEPT_TOKEN(anon_sym_BSLASHaclp); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1564: - ACCEPT_TOKEN(anon_sym_BSLASHAclp); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1565: - ACCEPT_TOKEN(anon_sym_BSLASHacf); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1567); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1566: - ACCEPT_TOKEN(anon_sym_BSLASHAcf); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(1568); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1567: - ACCEPT_TOKEN(anon_sym_BSLASHacfp); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1568: - ACCEPT_TOKEN(anon_sym_BSLASHAcfp); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1569: - ACCEPT_TOKEN(anon_sym_BSLASHac); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1565); - if (lookahead == 'l') ADVANCE(1561); - if (lookahead == 'p') ADVANCE(1571); - if (lookahead == 'r') ADVANCE(639); - if (lookahead == 's') ADVANCE(1557); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1570: - ACCEPT_TOKEN(anon_sym_BSLASHAc); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'f') ADVANCE(1566); - if (lookahead == 'l') ADVANCE(1562); - if (lookahead == 'r') ADVANCE(638); - if (lookahead == 's') ADVANCE(1558); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1571: - ACCEPT_TOKEN(anon_sym_BSLASHacp); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1572: - ACCEPT_TOKEN(anon_sym_BSLASHglsentrylong); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(781); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1573: - ACCEPT_TOKEN(anon_sym_BSLASHGlsentrylong); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(778); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1574: - ACCEPT_TOKEN(anon_sym_BSLASHglsentrylongpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1575: - ACCEPT_TOKEN(anon_sym_BSLASHGlsentrylongpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1576: - ACCEPT_TOKEN(anon_sym_BSLASHglsentryshort); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(784); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1577: - ACCEPT_TOKEN(anon_sym_BSLASHGlsentryshort); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'p') ADVANCE(783); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1578: - ACCEPT_TOKEN(anon_sym_BSLASHglsentryshortpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1579: - ACCEPT_TOKEN(anon_sym_BSLASHGlsentryshortpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1580: - ACCEPT_TOKEN(anon_sym_BSLASHglsentryfullpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1581: - ACCEPT_TOKEN(anon_sym_BSLASHGlsentryfullpl); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1582: - ACCEPT_TOKEN(anon_sym_BSLASHnewtheorem); - if (lookahead == '*') ADVANCE(1583); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1583: - ACCEPT_TOKEN(anon_sym_BSLASHnewtheorem_STAR); - END_STATE(); - case 1584: - ACCEPT_TOKEN(anon_sym_BSLASHdeclaretheorem); - if (lookahead == '*') ADVANCE(1585); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1585: - ACCEPT_TOKEN(anon_sym_BSLASHdeclaretheorem_STAR); - END_STATE(); - case 1586: - ACCEPT_TOKEN(anon_sym_BSLASHdefinecolor); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 's') ADVANCE(570); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1587: - ACCEPT_TOKEN(anon_sym_BSLASHdefinecolorset); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1588: - ACCEPT_TOKEN(anon_sym_BSLASHcolor); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'b') ADVANCE(965); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1589: - ACCEPT_TOKEN(anon_sym_BSLASHcolorbox); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1590: - ACCEPT_TOKEN(anon_sym_BSLASHtextcolor); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1591: - ACCEPT_TOKEN(anon_sym_BSLASHpagecolor); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1592: - ACCEPT_TOKEN(anon_sym_BSLASHusepgflibrary); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1593: - ACCEPT_TOKEN(anon_sym_BSLASHusetikzlibrary); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1594: - ACCEPT_TOKEN(anon_sym_BSLASHtext); - if (lookahead == '*') ADVANCE(228); - if (lookahead == 'c') ADVANCE(727); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1595: - ACCEPT_TOKEN(anon_sym_BSLASHintertext); - if (lookahead == '*') ADVANCE(228); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1340); - END_STATE(); - case 1596: - ACCEPT_TOKEN(anon_sym_shortintertext); - if (!sym_word_character_set_1(lookahead)) ADVANCE(178); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 35}, - [2] = {.lex_state = 4}, - [3] = {.lex_state = 36}, - [4] = {.lex_state = 36}, - [5] = {.lex_state = 4}, - [6] = {.lex_state = 7}, - [7] = {.lex_state = 1}, - [8] = {.lex_state = 2}, - [9] = {.lex_state = 7}, - [10] = {.lex_state = 1}, - [11] = {.lex_state = 1}, - [12] = {.lex_state = 7}, - [13] = {.lex_state = 1}, - [14] = {.lex_state = 36}, - [15] = {.lex_state = 7}, - [16] = {.lex_state = 2}, - [17] = {.lex_state = 2}, - [18] = {.lex_state = 36}, - [19] = {.lex_state = 36}, - [20] = {.lex_state = 2}, - [21] = {.lex_state = 36}, - [22] = {.lex_state = 36}, - [23] = {.lex_state = 36}, - [24] = {.lex_state = 36}, - [25] = {.lex_state = 36}, - [26] = {.lex_state = 36}, - [27] = {.lex_state = 36}, - [28] = {.lex_state = 36}, - [29] = {.lex_state = 36}, - [30] = {.lex_state = 36}, - [31] = {.lex_state = 36}, - [32] = {.lex_state = 36}, - [33] = {.lex_state = 36}, - [34] = {.lex_state = 36}, - [35] = {.lex_state = 36}, - [36] = {.lex_state = 36}, - [37] = {.lex_state = 36}, - [38] = {.lex_state = 36}, - [39] = {.lex_state = 36}, - [40] = {.lex_state = 36}, - [41] = {.lex_state = 36}, - [42] = {.lex_state = 36}, - [43] = {.lex_state = 36}, - [44] = {.lex_state = 36}, - [45] = {.lex_state = 36}, - [46] = {.lex_state = 36}, - [47] = {.lex_state = 36}, - [48] = {.lex_state = 36}, - [49] = {.lex_state = 36}, - [50] = {.lex_state = 36}, - [51] = {.lex_state = 6}, - [52] = {.lex_state = 5}, - [53] = {.lex_state = 6}, - [54] = {.lex_state = 38}, - [55] = {.lex_state = 37}, - [56] = {.lex_state = 5}, - [57] = {.lex_state = 38}, - [58] = {.lex_state = 37}, - [59] = {.lex_state = 10}, - [60] = {.lex_state = 10}, - [61] = {.lex_state = 38}, - [62] = {.lex_state = 10}, - [63] = {.lex_state = 10}, - [64] = {.lex_state = 37}, - [65] = {.lex_state = 10}, - [66] = {.lex_state = 35}, - [67] = {.lex_state = 10}, - [68] = {.lex_state = 10}, - [69] = {.lex_state = 10}, - [70] = {.lex_state = 10}, - [71] = {.lex_state = 37}, - [72] = {.lex_state = 38}, - [73] = {.lex_state = 10}, - [74] = {.lex_state = 10}, - [75] = {.lex_state = 8}, - [76] = {.lex_state = 9}, - [77] = {.lex_state = 3}, - [78] = {.lex_state = 3}, - [79] = {.lex_state = 10}, - [80] = {.lex_state = 9}, - [81] = {.lex_state = 37}, - [82] = {.lex_state = 8}, - [83] = {.lex_state = 38}, - [84] = {.lex_state = 9}, - [85] = {.lex_state = 38}, - [86] = {.lex_state = 8}, - [87] = {.lex_state = 37}, - [88] = {.lex_state = 8}, - [89] = {.lex_state = 3}, - [90] = {.lex_state = 3}, - [91] = {.lex_state = 10}, - [92] = {.lex_state = 9}, - [93] = {.lex_state = 10}, - [94] = {.lex_state = 38}, - [95] = {.lex_state = 35}, - [96] = {.lex_state = 35}, - [97] = {.lex_state = 38}, - [98] = {.lex_state = 37}, - [99] = {.lex_state = 37}, - [100] = {.lex_state = 38}, - [101] = {.lex_state = 38}, - [102] = {.lex_state = 35}, - [103] = {.lex_state = 10}, - [104] = {.lex_state = 37}, - [105] = {.lex_state = 38}, - [106] = {.lex_state = 37}, - [107] = {.lex_state = 37}, - [108] = {.lex_state = 38}, - [109] = {.lex_state = 38}, - [110] = {.lex_state = 35}, - [111] = {.lex_state = 37}, - [112] = {.lex_state = 38}, - [113] = {.lex_state = 35}, - [114] = {.lex_state = 38}, - [115] = {.lex_state = 35}, - [116] = {.lex_state = 37}, - [117] = {.lex_state = 38}, - [118] = {.lex_state = 37}, - [119] = {.lex_state = 37}, - [120] = {.lex_state = 35}, - [121] = {.lex_state = 38}, - [122] = {.lex_state = 38}, - [123] = {.lex_state = 37}, - [124] = {.lex_state = 37}, - [125] = {.lex_state = 38}, - [126] = {.lex_state = 38}, - [127] = {.lex_state = 38}, - [128] = {.lex_state = 37}, - [129] = {.lex_state = 37}, - [130] = {.lex_state = 38}, - [131] = {.lex_state = 38}, - [132] = {.lex_state = 35}, - [133] = {.lex_state = 35}, - [134] = {.lex_state = 35}, - [135] = {.lex_state = 37}, - [136] = {.lex_state = 37}, - [137] = {.lex_state = 38}, - [138] = {.lex_state = 37}, - [139] = {.lex_state = 35}, - [140] = {.lex_state = 38}, - [141] = {.lex_state = 38}, - [142] = {.lex_state = 37}, - [143] = {.lex_state = 35}, - [144] = {.lex_state = 37}, - [145] = {.lex_state = 38}, - [146] = {.lex_state = 35}, - [147] = {.lex_state = 35}, - [148] = {.lex_state = 38}, - [149] = {.lex_state = 37}, - [150] = {.lex_state = 37}, - [151] = {.lex_state = 38}, - [152] = {.lex_state = 37}, - [153] = {.lex_state = 37}, - [154] = {.lex_state = 38}, - [155] = {.lex_state = 35}, - [156] = {.lex_state = 38}, - [157] = {.lex_state = 37}, - [158] = {.lex_state = 38}, - [159] = {.lex_state = 35}, - [160] = {.lex_state = 37}, - [161] = {.lex_state = 35}, - [162] = {.lex_state = 37}, - [163] = {.lex_state = 38}, - [164] = {.lex_state = 37}, - [165] = {.lex_state = 37}, - [166] = {.lex_state = 37}, - [167] = {.lex_state = 38}, - [168] = {.lex_state = 35}, - [169] = {.lex_state = 35}, - [170] = {.lex_state = 37}, - [171] = {.lex_state = 38}, - [172] = {.lex_state = 35}, - [173] = {.lex_state = 35}, - [174] = {.lex_state = 36}, - [175] = {.lex_state = 36}, - [176] = {.lex_state = 35}, - [177] = {.lex_state = 36}, - [178] = {.lex_state = 35}, - [179] = {.lex_state = 36}, - [180] = {.lex_state = 37}, - [181] = {.lex_state = 37}, - [182] = {.lex_state = 10}, - [183] = {.lex_state = 10}, - [184] = {.lex_state = 38}, - [185] = {.lex_state = 38}, - [186] = {.lex_state = 35}, - [187] = {.lex_state = 36}, - [188] = {.lex_state = 35}, - [189] = {.lex_state = 36}, - [190] = {.lex_state = 10}, - [191] = {.lex_state = 37}, - [192] = {.lex_state = 38}, - [193] = {.lex_state = 38}, - [194] = {.lex_state = 37}, - [195] = {.lex_state = 10}, - [196] = {.lex_state = 36}, - [197] = {.lex_state = 35}, - [198] = {.lex_state = 36}, - [199] = {.lex_state = 35}, - [200] = {.lex_state = 38}, - [201] = {.lex_state = 10}, - [202] = {.lex_state = 37}, - [203] = {.lex_state = 37}, - [204] = {.lex_state = 10}, - [205] = {.lex_state = 38}, - [206] = {.lex_state = 35}, - [207] = {.lex_state = 36}, - [208] = {.lex_state = 36}, - [209] = {.lex_state = 35}, - [210] = {.lex_state = 10}, - [211] = {.lex_state = 38}, - [212] = {.lex_state = 37}, - [213] = {.lex_state = 10}, - [214] = {.lex_state = 37}, - [215] = {.lex_state = 38}, - [216] = {.lex_state = 36}, - [217] = {.lex_state = 35}, - [218] = {.lex_state = 36}, - [219] = {.lex_state = 35}, - [220] = {.lex_state = 37}, - [221] = {.lex_state = 38}, - [222] = {.lex_state = 10}, - [223] = {.lex_state = 37}, - [224] = {.lex_state = 38}, - [225] = {.lex_state = 10}, - [226] = {.lex_state = 35}, - [227] = {.lex_state = 35}, - [228] = {.lex_state = 36}, - [229] = {.lex_state = 36}, - [230] = {.lex_state = 10}, - [231] = {.lex_state = 37}, - [232] = {.lex_state = 38}, - [233] = {.lex_state = 38}, - [234] = {.lex_state = 37}, - [235] = {.lex_state = 10}, - [236] = {.lex_state = 36}, - [237] = {.lex_state = 35}, - [238] = {.lex_state = 36}, - [239] = {.lex_state = 35}, - [240] = {.lex_state = 36}, - [241] = {.lex_state = 37}, - [242] = {.lex_state = 37}, - [243] = {.lex_state = 10}, - [244] = {.lex_state = 38}, - [245] = {.lex_state = 10}, - [246] = {.lex_state = 38}, - [247] = {.lex_state = 35}, - [248] = {.lex_state = 35}, - [249] = {.lex_state = 35}, - [250] = {.lex_state = 37}, - [251] = {.lex_state = 10}, - [252] = {.lex_state = 38}, - [253] = {.lex_state = 38}, - [254] = {.lex_state = 10}, - [255] = {.lex_state = 38}, - [256] = {.lex_state = 10}, - [257] = {.lex_state = 37}, - [258] = {.lex_state = 37}, - [259] = {.lex_state = 36}, - [260] = {.lex_state = 36}, - [261] = {.lex_state = 13}, - [262] = {.lex_state = 13}, - [263] = {.lex_state = 13}, - [264] = {.lex_state = 13}, - [265] = {.lex_state = 13}, - [266] = {.lex_state = 13}, - [267] = {.lex_state = 13}, - [268] = {.lex_state = 13}, - [269] = {.lex_state = 13}, - [270] = {.lex_state = 13}, - [271] = {.lex_state = 13}, - [272] = {.lex_state = 13}, - [273] = {.lex_state = 13}, - [274] = {.lex_state = 13}, - [275] = {.lex_state = 13}, - [276] = {.lex_state = 14}, - [277] = {.lex_state = 14}, - [278] = {.lex_state = 35}, - [279] = {.lex_state = 14}, - [280] = {.lex_state = 14}, - [281] = {.lex_state = 14}, - [282] = {.lex_state = 14}, - [283] = {.lex_state = 14}, - [284] = {.lex_state = 35}, - [285] = {.lex_state = 37}, - [286] = {.lex_state = 38}, - [287] = {.lex_state = 10}, - [288] = {.lex_state = 37}, - [289] = {.lex_state = 10}, - [290] = {.lex_state = 38}, - [291] = {.lex_state = 15}, - [292] = {.lex_state = 15}, - [293] = {.lex_state = 15}, - [294] = {.lex_state = 25}, - [295] = {.lex_state = 15}, - [296] = {.lex_state = 15}, - [297] = {.lex_state = 15}, - [298] = {.lex_state = 15}, - [299] = {.lex_state = 15}, - [300] = {.lex_state = 15}, - [301] = {.lex_state = 15}, - [302] = {.lex_state = 15}, - [303] = {.lex_state = 15}, - [304] = {.lex_state = 15}, - [305] = {.lex_state = 15}, - [306] = {.lex_state = 15}, - [307] = {.lex_state = 15}, - [308] = {.lex_state = 15}, - [309] = {.lex_state = 15}, - [310] = {.lex_state = 15}, - [311] = {.lex_state = 15}, - [312] = {.lex_state = 15}, - [313] = {.lex_state = 15}, - [314] = {.lex_state = 15}, - [315] = {.lex_state = 15}, - [316] = {.lex_state = 15}, - [317] = {.lex_state = 15}, - [318] = {.lex_state = 15}, - [319] = {.lex_state = 15}, - [320] = {.lex_state = 21}, - [321] = {.lex_state = 21}, - [322] = {.lex_state = 21}, - [323] = {.lex_state = 21}, - [324] = {.lex_state = 21}, - [325] = {.lex_state = 21}, - [326] = {.lex_state = 21}, - [327] = {.lex_state = 21}, - [328] = {.lex_state = 21}, - [329] = {.lex_state = 15}, - [330] = {.lex_state = 21}, - [331] = {.lex_state = 21}, - [332] = {.lex_state = 21}, - [333] = {.lex_state = 15}, - [334] = {.lex_state = 15}, - [335] = {.lex_state = 15}, - [336] = {.lex_state = 15}, - [337] = {.lex_state = 15}, - [338] = {.lex_state = 15}, - [339] = {.lex_state = 15}, - [340] = {.lex_state = 15}, - [341] = {.lex_state = 15}, - [342] = {.lex_state = 15}, - [343] = {.lex_state = 15}, - [344] = {.lex_state = 13}, - [345] = {.lex_state = 13}, - [346] = {.lex_state = 15}, - [347] = {.lex_state = 14}, - [348] = {.lex_state = 15}, - [349] = {.lex_state = 14}, - [350] = {.lex_state = 21}, - [351] = {.lex_state = 21}, - [352] = {.lex_state = 36}, - [353] = {.lex_state = 36}, - [354] = {.lex_state = 36}, - [355] = {.lex_state = 36}, - [356] = {.lex_state = 36}, - [357] = {.lex_state = 36}, - [358] = {.lex_state = 36}, - [359] = {.lex_state = 36}, - [360] = {.lex_state = 36}, - [361] = {.lex_state = 36}, - [362] = {.lex_state = 36}, - [363] = {.lex_state = 36}, - [364] = {.lex_state = 36}, - [365] = {.lex_state = 36}, - [366] = {.lex_state = 36}, - [367] = {.lex_state = 36}, - [368] = {.lex_state = 36}, - [369] = {.lex_state = 36}, - [370] = {.lex_state = 36}, - [371] = {.lex_state = 36}, - [372] = {.lex_state = 36}, - [373] = {.lex_state = 36}, - [374] = {.lex_state = 36}, - [375] = {.lex_state = 36}, - [376] = {.lex_state = 36}, - [377] = {.lex_state = 36}, - [378] = {.lex_state = 36}, - [379] = {.lex_state = 36}, - [380] = {.lex_state = 36}, - [381] = {.lex_state = 36}, - [382] = {.lex_state = 36}, - [383] = {.lex_state = 36}, - [384] = {.lex_state = 36}, - [385] = {.lex_state = 36}, - [386] = {.lex_state = 36}, - [387] = {.lex_state = 36}, - [388] = {.lex_state = 36}, - [389] = {.lex_state = 36}, - [390] = {.lex_state = 36}, - [391] = {.lex_state = 36}, - [392] = {.lex_state = 36}, - [393] = {.lex_state = 36}, - [394] = {.lex_state = 36}, - [395] = {.lex_state = 36}, - [396] = {.lex_state = 36}, - [397] = {.lex_state = 36}, - [398] = {.lex_state = 36}, - [399] = {.lex_state = 36}, - [400] = {.lex_state = 36}, - [401] = {.lex_state = 36}, - [402] = {.lex_state = 36}, - [403] = {.lex_state = 36}, - [404] = {.lex_state = 36}, - [405] = {.lex_state = 36}, - [406] = {.lex_state = 36}, - [407] = {.lex_state = 36}, - [408] = {.lex_state = 36}, - [409] = {.lex_state = 36}, - [410] = {.lex_state = 36}, - [411] = {.lex_state = 36}, - [412] = {.lex_state = 36}, - [413] = {.lex_state = 36}, - [414] = {.lex_state = 36}, - [415] = {.lex_state = 36}, - [416] = {.lex_state = 36}, - [417] = {.lex_state = 36}, - [418] = {.lex_state = 36}, - [419] = {.lex_state = 36}, - [420] = {.lex_state = 36}, - [421] = {.lex_state = 36}, - [422] = {.lex_state = 36}, - [423] = {.lex_state = 36}, - [424] = {.lex_state = 36}, - [425] = {.lex_state = 36}, - [426] = {.lex_state = 36}, - [427] = {.lex_state = 36}, - [428] = {.lex_state = 36}, - [429] = {.lex_state = 36}, - [430] = {.lex_state = 36}, - [431] = {.lex_state = 36}, - [432] = {.lex_state = 16, .external_lex_state = 2}, - [433] = {.lex_state = 36}, - [434] = {.lex_state = 36}, - [435] = {.lex_state = 36}, - [436] = {.lex_state = 36}, - [437] = {.lex_state = 16}, - [438] = {.lex_state = 36}, - [439] = {.lex_state = 36}, - [440] = {.lex_state = 36}, - [441] = {.lex_state = 36}, - [442] = {.lex_state = 36}, - [443] = {.lex_state = 36}, - [444] = {.lex_state = 36}, - [445] = {.lex_state = 36}, - [446] = {.lex_state = 36}, - [447] = {.lex_state = 36}, - [448] = {.lex_state = 35}, - [449] = {.lex_state = 36}, - [450] = {.lex_state = 36}, - [451] = {.lex_state = 36}, - [452] = {.lex_state = 36}, - [453] = {.lex_state = 35}, - [454] = {.lex_state = 35}, - [455] = {.lex_state = 35}, - [456] = {.lex_state = 35}, - [457] = {.lex_state = 35}, - [458] = {.lex_state = 35}, - [459] = {.lex_state = 35}, - [460] = {.lex_state = 35}, - [461] = {.lex_state = 36}, - [462] = {.lex_state = 36}, - [463] = {.lex_state = 36}, - [464] = {.lex_state = 35}, - [465] = {.lex_state = 35}, - [466] = {.lex_state = 35}, - [467] = {.lex_state = 35}, - [468] = {.lex_state = 36}, - [469] = {.lex_state = 35}, - [470] = {.lex_state = 35}, - [471] = {.lex_state = 35}, - [472] = {.lex_state = 35}, - [473] = {.lex_state = 35}, - [474] = {.lex_state = 35}, - [475] = {.lex_state = 35}, - [476] = {.lex_state = 35}, - [477] = {.lex_state = 35}, - [478] = {.lex_state = 35}, - [479] = {.lex_state = 35}, - [480] = {.lex_state = 35}, - [481] = {.lex_state = 35}, - [482] = {.lex_state = 36}, - [483] = {.lex_state = 36}, - [484] = {.lex_state = 36}, - [485] = {.lex_state = 35}, - [486] = {.lex_state = 36}, - [487] = {.lex_state = 35}, - [488] = {.lex_state = 35}, - [489] = {.lex_state = 36}, - [490] = {.lex_state = 35}, - [491] = {.lex_state = 36}, - [492] = {.lex_state = 36}, - [493] = {.lex_state = 36}, - [494] = {.lex_state = 36}, - [495] = {.lex_state = 36}, - [496] = {.lex_state = 36}, - [497] = {.lex_state = 36}, - [498] = {.lex_state = 36}, - [499] = {.lex_state = 35}, - [500] = {.lex_state = 35}, - [501] = {.lex_state = 35}, - [502] = {.lex_state = 35}, - [503] = {.lex_state = 35}, - [504] = {.lex_state = 35}, - [505] = {.lex_state = 35}, - [506] = {.lex_state = 36}, - [507] = {.lex_state = 36}, - [508] = {.lex_state = 35}, - [509] = {.lex_state = 36}, - [510] = {.lex_state = 35}, - [511] = {.lex_state = 36}, - [512] = {.lex_state = 36}, - [513] = {.lex_state = 35}, - [514] = {.lex_state = 35}, - [515] = {.lex_state = 35}, - [516] = {.lex_state = 36}, - [517] = {.lex_state = 35}, - [518] = {.lex_state = 36}, - [519] = {.lex_state = 35}, - [520] = {.lex_state = 35}, - [521] = {.lex_state = 35}, - [522] = {.lex_state = 35}, - [523] = {.lex_state = 36}, - [524] = {.lex_state = 35}, - [525] = {.lex_state = 35}, - [526] = {.lex_state = 36}, - [527] = {.lex_state = 36}, - [528] = {.lex_state = 36}, - [529] = {.lex_state = 36}, - [530] = {.lex_state = 36}, - [531] = {.lex_state = 36}, - [532] = {.lex_state = 36}, - [533] = {.lex_state = 36}, - [534] = {.lex_state = 36}, - [535] = {.lex_state = 36}, - [536] = {.lex_state = 36}, - [537] = {.lex_state = 36}, - [538] = {.lex_state = 36}, - [539] = {.lex_state = 36}, - [540] = {.lex_state = 36}, - [541] = {.lex_state = 36}, - [542] = {.lex_state = 36}, - [543] = {.lex_state = 36}, - [544] = {.lex_state = 36}, - [545] = {.lex_state = 36}, - [546] = {.lex_state = 36}, - [547] = {.lex_state = 36}, - [548] = {.lex_state = 36}, - [549] = {.lex_state = 36}, - [550] = {.lex_state = 36}, - [551] = {.lex_state = 36}, - [552] = {.lex_state = 36}, - [553] = {.lex_state = 36}, - [554] = {.lex_state = 36}, - [555] = {.lex_state = 36}, - [556] = {.lex_state = 36}, - [557] = {.lex_state = 36}, - [558] = {.lex_state = 36}, - [559] = {.lex_state = 36}, - [560] = {.lex_state = 36}, - [561] = {.lex_state = 36}, - [562] = {.lex_state = 36}, - [563] = {.lex_state = 36}, - [564] = {.lex_state = 35}, - [565] = {.lex_state = 35}, - [566] = {.lex_state = 35}, - [567] = {.lex_state = 36}, - [568] = {.lex_state = 36}, - [569] = {.lex_state = 36}, - [570] = {.lex_state = 36}, - [571] = {.lex_state = 36}, - [572] = {.lex_state = 36}, - [573] = {.lex_state = 36}, - [574] = {.lex_state = 36}, - [575] = {.lex_state = 36}, - [576] = {.lex_state = 35}, - [577] = {.lex_state = 35}, - [578] = {.lex_state = 35}, - [579] = {.lex_state = 35}, - [580] = {.lex_state = 36}, - [581] = {.lex_state = 35}, - [582] = {.lex_state = 36}, - [583] = {.lex_state = 35}, - [584] = {.lex_state = 35}, - [585] = {.lex_state = 35}, - [586] = {.lex_state = 36}, - [587] = {.lex_state = 36}, - [588] = {.lex_state = 36}, - [589] = {.lex_state = 36}, - [590] = {.lex_state = 36}, - [591] = {.lex_state = 36}, - [592] = {.lex_state = 36}, - [593] = {.lex_state = 36}, - [594] = {.lex_state = 36}, - [595] = {.lex_state = 35}, - [596] = {.lex_state = 35}, - [597] = {.lex_state = 36}, - [598] = {.lex_state = 36}, - [599] = {.lex_state = 36}, - [600] = {.lex_state = 36}, - [601] = {.lex_state = 36}, - [602] = {.lex_state = 36}, - [603] = {.lex_state = 36}, - [604] = {.lex_state = 36}, - [605] = {.lex_state = 35}, - [606] = {.lex_state = 35}, - [607] = {.lex_state = 35}, - [608] = {.lex_state = 35}, - [609] = {.lex_state = 35}, - [610] = {.lex_state = 35}, - [611] = {.lex_state = 35}, - [612] = {.lex_state = 35}, - [613] = {.lex_state = 35}, - [614] = {.lex_state = 36}, - [615] = {.lex_state = 36}, - [616] = {.lex_state = 36}, - [617] = {.lex_state = 36}, - [618] = {.lex_state = 36}, - [619] = {.lex_state = 35}, - [620] = {.lex_state = 36}, - [621] = {.lex_state = 36}, - [622] = {.lex_state = 36}, - [623] = {.lex_state = 36}, - [624] = {.lex_state = 36}, - [625] = {.lex_state = 36}, - [626] = {.lex_state = 35}, - [627] = {.lex_state = 36}, - [628] = {.lex_state = 36}, - [629] = {.lex_state = 36}, - [630] = {.lex_state = 36}, - [631] = {.lex_state = 36}, - [632] = {.lex_state = 36}, - [633] = {.lex_state = 36}, - [634] = {.lex_state = 36}, - [635] = {.lex_state = 36}, - [636] = {.lex_state = 36}, - [637] = {.lex_state = 35}, - [638] = {.lex_state = 35}, - [639] = {.lex_state = 35}, - [640] = {.lex_state = 35}, - [641] = {.lex_state = 35}, - [642] = {.lex_state = 35}, - [643] = {.lex_state = 10}, - [644] = {.lex_state = 38}, - [645] = {.lex_state = 10}, - [646] = {.lex_state = 10}, - [647] = {.lex_state = 10}, - [648] = {.lex_state = 10}, - [649] = {.lex_state = 10}, - [650] = {.lex_state = 10}, - [651] = {.lex_state = 10}, - [652] = {.lex_state = 10}, - [653] = {.lex_state = 10}, - [654] = {.lex_state = 10}, - [655] = {.lex_state = 10}, - [656] = {.lex_state = 10}, - [657] = {.lex_state = 10}, - [658] = {.lex_state = 10}, - [659] = {.lex_state = 10}, - [660] = {.lex_state = 10}, - [661] = {.lex_state = 10}, - [662] = {.lex_state = 10}, - [663] = {.lex_state = 10}, - [664] = {.lex_state = 10}, - [665] = {.lex_state = 10}, - [666] = {.lex_state = 10}, - [667] = {.lex_state = 10}, - [668] = {.lex_state = 10}, - [669] = {.lex_state = 10}, - [670] = {.lex_state = 10}, - [671] = {.lex_state = 10}, - [672] = {.lex_state = 10}, - [673] = {.lex_state = 10}, - [674] = {.lex_state = 10}, - [675] = {.lex_state = 10}, - [676] = {.lex_state = 10}, - [677] = {.lex_state = 10}, - [678] = {.lex_state = 10}, - [679] = {.lex_state = 10}, - [680] = {.lex_state = 10}, - [681] = {.lex_state = 10}, - [682] = {.lex_state = 10}, - [683] = {.lex_state = 10}, - [684] = {.lex_state = 10}, - [685] = {.lex_state = 10}, - [686] = {.lex_state = 38}, - [687] = {.lex_state = 10}, - [688] = {.lex_state = 10}, - [689] = {.lex_state = 10}, - [690] = {.lex_state = 10}, - [691] = {.lex_state = 10}, - [692] = {.lex_state = 10}, - [693] = {.lex_state = 35}, - [694] = {.lex_state = 10}, - [695] = {.lex_state = 10}, - [696] = {.lex_state = 10}, - [697] = {.lex_state = 10}, - [698] = {.lex_state = 10}, - [699] = {.lex_state = 10}, - [700] = {.lex_state = 10}, - [701] = {.lex_state = 10}, - [702] = {.lex_state = 37}, - [703] = {.lex_state = 37}, - [704] = {.lex_state = 37}, - [705] = {.lex_state = 37}, - [706] = {.lex_state = 37}, - [707] = {.lex_state = 37}, - [708] = {.lex_state = 37}, - [709] = {.lex_state = 10}, - [710] = {.lex_state = 10}, - [711] = {.lex_state = 10}, - [712] = {.lex_state = 10}, - [713] = {.lex_state = 10}, - [714] = {.lex_state = 10}, - [715] = {.lex_state = 10}, - [716] = {.lex_state = 10}, - [717] = {.lex_state = 38}, - [718] = {.lex_state = 38}, - [719] = {.lex_state = 38}, - [720] = {.lex_state = 38}, - [721] = {.lex_state = 37}, - [722] = {.lex_state = 37}, - [723] = {.lex_state = 37}, - [724] = {.lex_state = 37}, - [725] = {.lex_state = 37}, - [726] = {.lex_state = 37}, - [727] = {.lex_state = 37}, - [728] = {.lex_state = 37}, - [729] = {.lex_state = 38}, - [730] = {.lex_state = 10}, - [731] = {.lex_state = 38}, - [732] = {.lex_state = 38}, - [733] = {.lex_state = 38}, - [734] = {.lex_state = 38}, - [735] = {.lex_state = 38}, - [736] = {.lex_state = 38}, - [737] = {.lex_state = 38}, - [738] = {.lex_state = 10}, - [739] = {.lex_state = 10}, - [740] = {.lex_state = 10}, - [741] = {.lex_state = 10}, - [742] = {.lex_state = 38}, - [743] = {.lex_state = 35}, - [744] = {.lex_state = 38}, - [745] = {.lex_state = 10}, - [746] = {.lex_state = 38}, - [747] = {.lex_state = 10}, - [748] = {.lex_state = 10}, - [749] = {.lex_state = 38}, - [750] = {.lex_state = 38}, - [751] = {.lex_state = 38}, - [752] = {.lex_state = 38}, - [753] = {.lex_state = 38}, - [754] = {.lex_state = 38}, - [755] = {.lex_state = 38}, - [756] = {.lex_state = 38}, - [757] = {.lex_state = 10}, - [758] = {.lex_state = 35}, - [759] = {.lex_state = 10}, - [760] = {.lex_state = 10}, - [761] = {.lex_state = 10}, - [762] = {.lex_state = 10}, - [763] = {.lex_state = 10}, - [764] = {.lex_state = 10}, - [765] = {.lex_state = 38}, - [766] = {.lex_state = 38}, - [767] = {.lex_state = 38}, - [768] = {.lex_state = 38}, - [769] = {.lex_state = 38}, - [770] = {.lex_state = 38}, - [771] = {.lex_state = 38}, - [772] = {.lex_state = 37}, - [773] = {.lex_state = 37}, - [774] = {.lex_state = 37}, - [775] = {.lex_state = 37}, - [776] = {.lex_state = 37}, - [777] = {.lex_state = 37}, - [778] = {.lex_state = 37}, - [779] = {.lex_state = 38}, - [780] = {.lex_state = 37}, - [781] = {.lex_state = 37}, - [782] = {.lex_state = 37}, - [783] = {.lex_state = 37}, - [784] = {.lex_state = 37}, - [785] = {.lex_state = 37}, - [786] = {.lex_state = 38}, - [787] = {.lex_state = 37}, - [788] = {.lex_state = 37}, - [789] = {.lex_state = 37}, - [790] = {.lex_state = 37}, - [791] = {.lex_state = 37}, - [792] = {.lex_state = 38}, - [793] = {.lex_state = 37}, - [794] = {.lex_state = 37}, - [795] = {.lex_state = 37}, - [796] = {.lex_state = 37}, - [797] = {.lex_state = 38}, - [798] = {.lex_state = 37}, - [799] = {.lex_state = 37}, - [800] = {.lex_state = 37}, - [801] = {.lex_state = 38}, - [802] = {.lex_state = 37}, - [803] = {.lex_state = 37}, - [804] = {.lex_state = 38}, - [805] = {.lex_state = 37}, - [806] = {.lex_state = 38}, - [807] = {.lex_state = 38}, - [808] = {.lex_state = 39, .external_lex_state = 2}, - [809] = {.lex_state = 38}, - [810] = {.lex_state = 38}, - [811] = {.lex_state = 37}, - [812] = {.lex_state = 37}, - [813] = {.lex_state = 37}, - [814] = {.lex_state = 37}, - [815] = {.lex_state = 37}, - [816] = {.lex_state = 37}, - [817] = {.lex_state = 37}, - [818] = {.lex_state = 37}, - [819] = {.lex_state = 38}, - [820] = {.lex_state = 38}, - [821] = {.lex_state = 38}, - [822] = {.lex_state = 38}, - [823] = {.lex_state = 38}, - [824] = {.lex_state = 38}, - [825] = {.lex_state = 38}, - [826] = {.lex_state = 38}, - [827] = {.lex_state = 38}, - [828] = {.lex_state = 38}, - [829] = {.lex_state = 35}, - [830] = {.lex_state = 38}, - [831] = {.lex_state = 38}, - [832] = {.lex_state = 38}, - [833] = {.lex_state = 38}, - [834] = {.lex_state = 38}, - [835] = {.lex_state = 38}, - [836] = {.lex_state = 38}, - [837] = {.lex_state = 38}, - [838] = {.lex_state = 38}, - [839] = {.lex_state = 38}, - [840] = {.lex_state = 38}, - [841] = {.lex_state = 38}, - [842] = {.lex_state = 38}, - [843] = {.lex_state = 38}, - [844] = {.lex_state = 38}, - [845] = {.lex_state = 38}, - [846] = {.lex_state = 38}, - [847] = {.lex_state = 38}, - [848] = {.lex_state = 38}, - [849] = {.lex_state = 38}, - [850] = {.lex_state = 38}, - [851] = {.lex_state = 37}, - [852] = {.lex_state = 37}, - [853] = {.lex_state = 37}, - [854] = {.lex_state = 37}, - [855] = {.lex_state = 37}, - [856] = {.lex_state = 37}, - [857] = {.lex_state = 37}, - [858] = {.lex_state = 38}, - [859] = {.lex_state = 37}, - [860] = {.lex_state = 37}, - [861] = {.lex_state = 37}, - [862] = {.lex_state = 37}, - [863] = {.lex_state = 37}, - [864] = {.lex_state = 37}, - [865] = {.lex_state = 37}, - [866] = {.lex_state = 37}, - [867] = {.lex_state = 37}, - [868] = {.lex_state = 37}, - [869] = {.lex_state = 37}, - [870] = {.lex_state = 37}, - [871] = {.lex_state = 37}, - [872] = {.lex_state = 37}, - [873] = {.lex_state = 37}, - [874] = {.lex_state = 37}, - [875] = {.lex_state = 37}, - [876] = {.lex_state = 37}, - [877] = {.lex_state = 37}, - [878] = {.lex_state = 37}, - [879] = {.lex_state = 37}, - [880] = {.lex_state = 38}, - [881] = {.lex_state = 38}, - [882] = {.lex_state = 38}, - [883] = {.lex_state = 38}, - [884] = {.lex_state = 38}, - [885] = {.lex_state = 35}, - [886] = {.lex_state = 10}, - [887] = {.lex_state = 35}, - [888] = {.lex_state = 38}, - [889] = {.lex_state = 37}, - [890] = {.lex_state = 10}, - [891] = {.lex_state = 35}, - [892] = {.lex_state = 35}, - [893] = {.lex_state = 10}, - [894] = {.lex_state = 10}, - [895] = {.lex_state = 35}, - [896] = {.lex_state = 11, .external_lex_state = 2}, - [897] = {.lex_state = 10}, - [898] = {.lex_state = 37}, - [899] = {.lex_state = 38}, - [900] = {.lex_state = 38}, - [901] = {.lex_state = 38}, - [902] = {.lex_state = 39}, - [903] = {.lex_state = 17, .external_lex_state = 2}, - [904] = {.lex_state = 35}, - [905] = {.lex_state = 37}, - [906] = {.lex_state = 38}, - [907] = {.lex_state = 37}, - [908] = {.lex_state = 12, .external_lex_state = 2}, - [909] = {.lex_state = 37}, - [910] = {.lex_state = 35}, - [911] = {.lex_state = 10}, - [912] = {.lex_state = 35}, - [913] = {.lex_state = 35}, - [914] = {.lex_state = 35}, - [915] = {.lex_state = 35}, - [916] = {.lex_state = 35}, - [917] = {.lex_state = 35}, - [918] = {.lex_state = 35}, - [919] = {.lex_state = 35}, - [920] = {.lex_state = 35}, - [921] = {.lex_state = 37}, - [922] = {.lex_state = 35}, - [923] = {.lex_state = 12}, - [924] = {.lex_state = 37}, - [925] = {.lex_state = 37}, - [926] = {.lex_state = 38}, - [927] = {.lex_state = 35}, - [928] = {.lex_state = 35}, - [929] = {.lex_state = 35}, - [930] = {.lex_state = 35}, - [931] = {.lex_state = 35}, - [932] = {.lex_state = 35}, - [933] = {.lex_state = 35}, - [934] = {.lex_state = 35}, - [935] = {.lex_state = 35}, - [936] = {.lex_state = 37}, - [937] = {.lex_state = 35}, - [938] = {.lex_state = 35}, - [939] = {.lex_state = 35}, - [940] = {.lex_state = 35}, - [941] = {.lex_state = 35}, - [942] = {.lex_state = 35}, - [943] = {.lex_state = 35}, - [944] = {.lex_state = 35}, - [945] = {.lex_state = 35}, - [946] = {.lex_state = 35}, - [947] = {.lex_state = 35}, - [948] = {.lex_state = 35}, - [949] = {.lex_state = 35}, - [950] = {.lex_state = 35}, - [951] = {.lex_state = 35}, - [952] = {.lex_state = 10}, - [953] = {.lex_state = 35}, - [954] = {.lex_state = 35}, - [955] = {.lex_state = 35}, - [956] = {.lex_state = 35}, - [957] = {.lex_state = 35}, - [958] = {.lex_state = 35}, - [959] = {.lex_state = 35}, - [960] = {.lex_state = 38}, - [961] = {.lex_state = 35}, - [962] = {.lex_state = 35}, - [963] = {.lex_state = 35}, - [964] = {.lex_state = 35}, - [965] = {.lex_state = 35}, - [966] = {.lex_state = 35}, - [967] = {.lex_state = 35}, - [968] = {.lex_state = 35}, - [969] = {.lex_state = 35}, - [970] = {.lex_state = 17}, - [971] = {.lex_state = 35}, - [972] = {.lex_state = 35}, - [973] = {.lex_state = 35}, - [974] = {.lex_state = 35}, - [975] = {.lex_state = 35}, - [976] = {.lex_state = 35}, - [977] = {.lex_state = 35}, - [978] = {.lex_state = 35}, - [979] = {.lex_state = 35}, - [980] = {.lex_state = 10}, - [981] = {.lex_state = 10}, - [982] = {.lex_state = 11}, - [983] = {.lex_state = 35}, - [984] = {.lex_state = 35}, - [985] = {.lex_state = 35}, - [986] = {.lex_state = 35}, - [987] = {.lex_state = 35}, - [988] = {.lex_state = 35}, - [989] = {.lex_state = 35}, - [990] = {.lex_state = 35}, - [991] = {.lex_state = 37}, - [992] = {.lex_state = 35}, - [993] = {.lex_state = 35}, - [994] = {.lex_state = 35}, - [995] = {.lex_state = 35}, - [996] = {.lex_state = 35}, - [997] = {.lex_state = 35}, - [998] = {.lex_state = 35}, - [999] = {.lex_state = 35}, - [1000] = {.lex_state = 35}, - [1001] = {.lex_state = 35}, - [1002] = {.lex_state = 38}, - [1003] = {.lex_state = 35}, - [1004] = {.lex_state = 35}, - [1005] = {.lex_state = 35}, - [1006] = {.lex_state = 35}, - [1007] = {.lex_state = 35}, - [1008] = {.lex_state = 10}, - [1009] = {.lex_state = 35}, - [1010] = {.lex_state = 35}, - [1011] = {.lex_state = 35}, - [1012] = {.lex_state = 35}, - [1013] = {.lex_state = 35}, - [1014] = {.lex_state = 35}, - [1015] = {.lex_state = 35}, - [1016] = {.lex_state = 35}, - [1017] = {.lex_state = 38}, - [1018] = {.lex_state = 35}, - [1019] = {.lex_state = 35}, - [1020] = {.lex_state = 35}, - [1021] = {.lex_state = 35}, - [1022] = {.lex_state = 35}, - [1023] = {.lex_state = 35}, - [1024] = {.lex_state = 38}, - [1025] = {.lex_state = 35}, - [1026] = {.lex_state = 10}, - [1027] = {.lex_state = 35}, - [1028] = {.lex_state = 35}, - [1029] = {.lex_state = 35}, - [1030] = {.lex_state = 35}, - [1031] = {.lex_state = 35}, - [1032] = {.lex_state = 35}, - [1033] = {.lex_state = 35}, - [1034] = {.lex_state = 35}, - [1035] = {.lex_state = 35}, - [1036] = {.lex_state = 35}, - [1037] = {.lex_state = 35}, - [1038] = {.lex_state = 35}, - [1039] = {.lex_state = 35}, - [1040] = {.lex_state = 35}, - [1041] = {.lex_state = 35}, - [1042] = {.lex_state = 35}, - [1043] = {.lex_state = 35}, - [1044] = {.lex_state = 35}, - [1045] = {.lex_state = 35}, - [1046] = {.lex_state = 35}, - [1047] = {.lex_state = 35}, - [1048] = {.lex_state = 35}, - [1049] = {.lex_state = 35}, - [1050] = {.lex_state = 10}, - [1051] = {.lex_state = 38}, - [1052] = {.lex_state = 38}, - [1053] = {.lex_state = 38}, - [1054] = {.lex_state = 38}, - [1055] = {.lex_state = 38}, - [1056] = {.lex_state = 38}, - [1057] = {.lex_state = 10}, - [1058] = {.lex_state = 10}, - [1059] = {.lex_state = 38}, - [1060] = {.lex_state = 10}, - [1061] = {.lex_state = 10}, - [1062] = {.lex_state = 10}, - [1063] = {.lex_state = 38}, - [1064] = {.lex_state = 38}, - [1065] = {.lex_state = 38}, - [1066] = {.lex_state = 10}, - [1067] = {.lex_state = 38}, - [1068] = {.lex_state = 10}, - [1069] = {.lex_state = 10}, - [1070] = {.lex_state = 10}, - [1071] = {.lex_state = 10}, - [1072] = {.lex_state = 10}, - [1073] = {.lex_state = 10}, - [1074] = {.lex_state = 10}, - [1075] = {.lex_state = 10}, - [1076] = {.lex_state = 10}, - [1077] = {.lex_state = 10}, - [1078] = {.lex_state = 10}, - [1079] = {.lex_state = 10}, - [1080] = {.lex_state = 10}, - [1081] = {.lex_state = 10}, - [1082] = {.lex_state = 10}, - [1083] = {.lex_state = 10}, - [1084] = {.lex_state = 10}, - [1085] = {.lex_state = 10}, - [1086] = {.lex_state = 10}, - [1087] = {.lex_state = 10}, - [1088] = {.lex_state = 10}, - [1089] = {.lex_state = 38}, - [1090] = {.lex_state = 38}, - [1091] = {.lex_state = 10}, - [1092] = {.lex_state = 10}, - [1093] = {.lex_state = 10}, - [1094] = {.lex_state = 10}, - [1095] = {.lex_state = 10}, - [1096] = {.lex_state = 10}, - [1097] = {.lex_state = 38}, - [1098] = {.lex_state = 10}, - [1099] = {.lex_state = 10}, - [1100] = {.lex_state = 10}, - [1101] = {.lex_state = 10}, - [1102] = {.lex_state = 37}, - [1103] = {.lex_state = 10}, - [1104] = {.lex_state = 10}, - [1105] = {.lex_state = 10}, - [1106] = {.lex_state = 10}, - [1107] = {.lex_state = 10}, - [1108] = {.lex_state = 10}, - [1109] = {.lex_state = 10}, - [1110] = {.lex_state = 10}, - [1111] = {.lex_state = 10}, - [1112] = {.lex_state = 10}, - [1113] = {.lex_state = 10}, - [1114] = {.lex_state = 10}, - [1115] = {.lex_state = 38}, - [1116] = {.lex_state = 10}, - [1117] = {.lex_state = 38}, - [1118] = {.lex_state = 10}, - [1119] = {.lex_state = 10}, - [1120] = {.lex_state = 10}, - [1121] = {.lex_state = 10}, - [1122] = {.lex_state = 10}, - [1123] = {.lex_state = 10}, - [1124] = {.lex_state = 10}, - [1125] = {.lex_state = 10}, - [1126] = {.lex_state = 10}, - [1127] = {.lex_state = 10}, - [1128] = {.lex_state = 10}, - [1129] = {.lex_state = 37}, - [1130] = {.lex_state = 37}, - [1131] = {.lex_state = 37}, - [1132] = {.lex_state = 37}, - [1133] = {.lex_state = 10}, - [1134] = {.lex_state = 37}, - [1135] = {.lex_state = 37}, - [1136] = {.lex_state = 10}, - [1137] = {.lex_state = 10}, - [1138] = {.lex_state = 10}, - [1139] = {.lex_state = 10}, - [1140] = {.lex_state = 10}, - [1141] = {.lex_state = 10}, - [1142] = {.lex_state = 10}, - [1143] = {.lex_state = 10}, - [1144] = {.lex_state = 38}, - [1145] = {.lex_state = 10}, - [1146] = {.lex_state = 37}, - [1147] = {.lex_state = 10}, - [1148] = {.lex_state = 10}, - [1149] = {.lex_state = 10}, - [1150] = {.lex_state = 10}, - [1151] = {.lex_state = 10}, - [1152] = {.lex_state = 10}, - [1153] = {.lex_state = 10}, - [1154] = {.lex_state = 10}, - [1155] = {.lex_state = 10}, - [1156] = {.lex_state = 10}, - [1157] = {.lex_state = 10}, - [1158] = {.lex_state = 10}, - [1159] = {.lex_state = 10}, - [1160] = {.lex_state = 10}, - [1161] = {.lex_state = 10}, - [1162] = {.lex_state = 10}, - [1163] = {.lex_state = 10}, - [1164] = {.lex_state = 38}, - [1165] = {.lex_state = 10}, - [1166] = {.lex_state = 37}, - [1167] = {.lex_state = 10}, - [1168] = {.lex_state = 10}, - [1169] = {.lex_state = 10}, - [1170] = {.lex_state = 10}, - [1171] = {.lex_state = 10}, - [1172] = {.lex_state = 10}, - [1173] = {.lex_state = 10}, - [1174] = {.lex_state = 10}, - [1175] = {.lex_state = 10}, - [1176] = {.lex_state = 10}, - [1177] = {.lex_state = 10}, - [1178] = {.lex_state = 10}, - [1179] = {.lex_state = 10}, - [1180] = {.lex_state = 38}, - [1181] = {.lex_state = 38}, - [1182] = {.lex_state = 10}, - [1183] = {.lex_state = 38}, - [1184] = {.lex_state = 38}, - [1185] = {.lex_state = 38}, - [1186] = {.lex_state = 38}, - [1187] = {.lex_state = 10}, - [1188] = {.lex_state = 10}, - [1189] = {.lex_state = 38}, - [1190] = {.lex_state = 38}, - [1191] = {.lex_state = 38}, - [1192] = {.lex_state = 10}, - [1193] = {.lex_state = 10}, - [1194] = {.lex_state = 10}, - [1195] = {.lex_state = 10}, - [1196] = {.lex_state = 10}, - [1197] = {.lex_state = 10}, - [1198] = {.lex_state = 10}, - [1199] = {.lex_state = 38}, - [1200] = {.lex_state = 38}, - [1201] = {.lex_state = 38}, - [1202] = {.lex_state = 38}, - [1203] = {.lex_state = 10}, - [1204] = {.lex_state = 10}, - [1205] = {.lex_state = 37}, - [1206] = {.lex_state = 37}, - [1207] = {.lex_state = 37}, - [1208] = {.lex_state = 38}, - [1209] = {.lex_state = 38}, - [1210] = {.lex_state = 37}, - [1211] = {.lex_state = 37}, - [1212] = {.lex_state = 37}, - [1213] = {.lex_state = 37}, - [1214] = {.lex_state = 37}, - [1215] = {.lex_state = 37}, - [1216] = {.lex_state = 37}, - [1217] = {.lex_state = 37}, - [1218] = {.lex_state = 38}, - [1219] = {.lex_state = 38}, - [1220] = {.lex_state = 38}, - [1221] = {.lex_state = 38}, - [1222] = {.lex_state = 37}, - [1223] = {.lex_state = 37}, - [1224] = {.lex_state = 37}, - [1225] = {.lex_state = 38}, - [1226] = {.lex_state = 38}, - [1227] = {.lex_state = 38}, - [1228] = {.lex_state = 38}, - [1229] = {.lex_state = 38}, - [1230] = {.lex_state = 38}, - [1231] = {.lex_state = 38}, - [1232] = {.lex_state = 38}, - [1233] = {.lex_state = 38}, - [1234] = {.lex_state = 38}, - [1235] = {.lex_state = 38}, - [1236] = {.lex_state = 38}, - [1237] = {.lex_state = 38}, - [1238] = {.lex_state = 38}, - [1239] = {.lex_state = 38}, - [1240] = {.lex_state = 10}, - [1241] = {.lex_state = 38}, - [1242] = {.lex_state = 38}, - [1243] = {.lex_state = 38}, - [1244] = {.lex_state = 38}, - [1245] = {.lex_state = 37}, - [1246] = {.lex_state = 38}, - [1247] = {.lex_state = 37}, - [1248] = {.lex_state = 37}, - [1249] = {.lex_state = 37}, - [1250] = {.lex_state = 37}, - [1251] = {.lex_state = 37}, - [1252] = {.lex_state = 37}, - [1253] = {.lex_state = 37}, - [1254] = {.lex_state = 37}, - [1255] = {.lex_state = 37}, - [1256] = {.lex_state = 37}, - [1257] = {.lex_state = 37}, - [1258] = {.lex_state = 37}, - [1259] = {.lex_state = 38}, - [1260] = {.lex_state = 37}, - [1261] = {.lex_state = 38}, - [1262] = {.lex_state = 38}, - [1263] = {.lex_state = 38}, - [1264] = {.lex_state = 38}, - [1265] = {.lex_state = 38}, - [1266] = {.lex_state = 38}, - [1267] = {.lex_state = 38}, - [1268] = {.lex_state = 38}, - [1269] = {.lex_state = 38}, - [1270] = {.lex_state = 38}, - [1271] = {.lex_state = 38}, - [1272] = {.lex_state = 38}, - [1273] = {.lex_state = 38}, - [1274] = {.lex_state = 37}, - [1275] = {.lex_state = 38}, - [1276] = {.lex_state = 38}, - [1277] = {.lex_state = 38}, - [1278] = {.lex_state = 38}, - [1279] = {.lex_state = 38}, - [1280] = {.lex_state = 38}, - [1281] = {.lex_state = 38}, - [1282] = {.lex_state = 38}, - [1283] = {.lex_state = 37}, - [1284] = {.lex_state = 38}, - [1285] = {.lex_state = 38}, - [1286] = {.lex_state = 38}, - [1287] = {.lex_state = 37}, - [1288] = {.lex_state = 38}, - [1289] = {.lex_state = 38}, - [1290] = {.lex_state = 38}, - [1291] = {.lex_state = 38}, - [1292] = {.lex_state = 38}, - [1293] = {.lex_state = 38}, - [1294] = {.lex_state = 38}, - [1295] = {.lex_state = 38}, - [1296] = {.lex_state = 38}, - [1297] = {.lex_state = 38}, - [1298] = {.lex_state = 37}, - [1299] = {.lex_state = 38}, - [1300] = {.lex_state = 37}, - [1301] = {.lex_state = 38}, - [1302] = {.lex_state = 37}, - [1303] = {.lex_state = 38}, - [1304] = {.lex_state = 37}, - [1305] = {.lex_state = 38}, - [1306] = {.lex_state = 37}, - [1307] = {.lex_state = 38}, - [1308] = {.lex_state = 38}, - [1309] = {.lex_state = 38}, - [1310] = {.lex_state = 37}, - [1311] = {.lex_state = 38}, - [1312] = {.lex_state = 38}, - [1313] = {.lex_state = 38}, - [1314] = {.lex_state = 38}, - [1315] = {.lex_state = 37}, - [1316] = {.lex_state = 37}, - [1317] = {.lex_state = 37}, - [1318] = {.lex_state = 37}, - [1319] = {.lex_state = 38}, - [1320] = {.lex_state = 38}, - [1321] = {.lex_state = 37}, - [1322] = {.lex_state = 37}, - [1323] = {.lex_state = 38}, - [1324] = {.lex_state = 37}, - [1325] = {.lex_state = 37}, - [1326] = {.lex_state = 38}, - [1327] = {.lex_state = 38}, - [1328] = {.lex_state = 38}, - [1329] = {.lex_state = 37}, - [1330] = {.lex_state = 37}, - [1331] = {.lex_state = 37}, - [1332] = {.lex_state = 37}, - [1333] = {.lex_state = 37}, - [1334] = {.lex_state = 37}, - [1335] = {.lex_state = 37}, - [1336] = {.lex_state = 37}, - [1337] = {.lex_state = 37}, - [1338] = {.lex_state = 37}, - [1339] = {.lex_state = 38}, - [1340] = {.lex_state = 38}, - [1341] = {.lex_state = 37}, - [1342] = {.lex_state = 37}, - [1343] = {.lex_state = 37}, - [1344] = {.lex_state = 37}, - [1345] = {.lex_state = 37}, - [1346] = {.lex_state = 37}, - [1347] = {.lex_state = 37}, - [1348] = {.lex_state = 37}, - [1349] = {.lex_state = 37}, - [1350] = {.lex_state = 37}, - [1351] = {.lex_state = 37}, - [1352] = {.lex_state = 37}, - [1353] = {.lex_state = 37}, - [1354] = {.lex_state = 37}, - [1355] = {.lex_state = 37}, - [1356] = {.lex_state = 37}, - [1357] = {.lex_state = 37}, - [1358] = {.lex_state = 37}, - [1359] = {.lex_state = 38}, - [1360] = {.lex_state = 37}, - [1361] = {.lex_state = 37}, - [1362] = {.lex_state = 37}, - [1363] = {.lex_state = 38}, - [1364] = {.lex_state = 37}, - [1365] = {.lex_state = 38}, - [1366] = {.lex_state = 37}, - [1367] = {.lex_state = 37}, - [1368] = {.lex_state = 10}, - [1369] = {.lex_state = 10}, - [1370] = {.lex_state = 10}, - [1371] = {.lex_state = 37}, - [1372] = {.lex_state = 10}, - [1373] = {.lex_state = 10}, - [1374] = {.lex_state = 37}, - [1375] = {.lex_state = 38}, - [1376] = {.lex_state = 38}, - [1377] = {.lex_state = 37}, - [1378] = {.lex_state = 37}, - [1379] = {.lex_state = 37}, - [1380] = {.lex_state = 37}, - [1381] = {.lex_state = 38}, - [1382] = {.lex_state = 37}, - [1383] = {.lex_state = 37}, - [1384] = {.lex_state = 10}, - [1385] = {.lex_state = 37}, - [1386] = {.lex_state = 37}, - [1387] = {.lex_state = 37}, - [1388] = {.lex_state = 37}, - [1389] = {.lex_state = 37}, - [1390] = {.lex_state = 37}, - [1391] = {.lex_state = 38}, - [1392] = {.lex_state = 37}, - [1393] = {.lex_state = 37}, - [1394] = {.lex_state = 37}, - [1395] = {.lex_state = 37}, - [1396] = {.lex_state = 37}, - [1397] = {.lex_state = 38}, - [1398] = {.lex_state = 38}, - [1399] = {.lex_state = 10}, - [1400] = {.lex_state = 37}, - [1401] = {.lex_state = 37}, - [1402] = {.lex_state = 37}, - [1403] = {.lex_state = 37}, - [1404] = {.lex_state = 10}, - [1405] = {.lex_state = 37}, - [1406] = {.lex_state = 38}, - [1407] = {.lex_state = 37}, - [1408] = {.lex_state = 37}, - [1409] = {.lex_state = 37}, - [1410] = {.lex_state = 37}, - [1411] = {.lex_state = 37}, - [1412] = {.lex_state = 37}, - [1413] = {.lex_state = 37}, - [1414] = {.lex_state = 37}, - [1415] = {.lex_state = 37}, - [1416] = {.lex_state = 23}, - [1417] = {.lex_state = 23}, - [1418] = {.lex_state = 23}, - [1419] = {.lex_state = 23}, - [1420] = {.lex_state = 23}, - [1421] = {.lex_state = 23}, - [1422] = {.lex_state = 23}, - [1423] = {.lex_state = 23}, - [1424] = {.lex_state = 23}, - [1425] = {.lex_state = 23}, - [1426] = {.lex_state = 23}, - [1427] = {.lex_state = 23}, - [1428] = {.lex_state = 23}, - [1429] = {.lex_state = 23}, - [1430] = {.lex_state = 23}, - [1431] = {.lex_state = 23}, - [1432] = {.lex_state = 23}, - [1433] = {.lex_state = 23}, - [1434] = {.lex_state = 23}, - [1435] = {.lex_state = 23}, - [1436] = {.lex_state = 23}, - [1437] = {.lex_state = 23}, - [1438] = {.lex_state = 23}, - [1439] = {.lex_state = 23}, - [1440] = {.lex_state = 23}, - [1441] = {.lex_state = 23}, - [1442] = {.lex_state = 23}, - [1443] = {.lex_state = 23}, - [1444] = {.lex_state = 23}, - [1445] = {.lex_state = 23}, - [1446] = {.lex_state = 23}, - [1447] = {.lex_state = 23}, - [1448] = {.lex_state = 23}, - [1449] = {.lex_state = 23}, - [1450] = {.lex_state = 23}, - [1451] = {.lex_state = 23}, - [1452] = {.lex_state = 23}, - [1453] = {.lex_state = 23}, - [1454] = {.lex_state = 23}, - [1455] = {.lex_state = 23}, - [1456] = {.lex_state = 23}, - [1457] = {.lex_state = 23}, - [1458] = {.lex_state = 23}, - [1459] = {.lex_state = 23}, - [1460] = {.lex_state = 23}, - [1461] = {.lex_state = 23}, - [1462] = {.lex_state = 23}, - [1463] = {.lex_state = 13}, - [1464] = {.lex_state = 18, .external_lex_state = 2}, - [1465] = {.lex_state = 13}, - [1466] = {.lex_state = 13}, - [1467] = {.lex_state = 13}, - [1468] = {.lex_state = 13}, - [1469] = {.lex_state = 13}, - [1470] = {.lex_state = 15}, - [1471] = {.lex_state = 19, .external_lex_state = 2}, - [1472] = {.lex_state = 13}, - [1473] = {.lex_state = 14}, - [1474] = {.lex_state = 15}, - [1475] = {.lex_state = 14}, - [1476] = {.lex_state = 13}, - [1477] = {.lex_state = 20, .external_lex_state = 2}, - [1478] = {.lex_state = 14}, - [1479] = {.lex_state = 18}, - [1480] = {.lex_state = 15}, - [1481] = {.lex_state = 14}, - [1482] = {.lex_state = 15}, - [1483] = {.lex_state = 13}, - [1484] = {.lex_state = 15}, - [1485] = {.lex_state = 14}, - [1486] = {.lex_state = 13}, - [1487] = {.lex_state = 13}, - [1488] = {.lex_state = 20}, - [1489] = {.lex_state = 13}, - [1490] = {.lex_state = 13}, - [1491] = {.lex_state = 13}, - [1492] = {.lex_state = 13}, - [1493] = {.lex_state = 13}, - [1494] = {.lex_state = 13}, - [1495] = {.lex_state = 14}, - [1496] = {.lex_state = 13}, - [1497] = {.lex_state = 13}, - [1498] = {.lex_state = 13}, - [1499] = {.lex_state = 13}, - [1500] = {.lex_state = 13}, - [1501] = {.lex_state = 13}, - [1502] = {.lex_state = 13}, - [1503] = {.lex_state = 13}, - [1504] = {.lex_state = 13}, - [1505] = {.lex_state = 13}, - [1506] = {.lex_state = 13}, - [1507] = {.lex_state = 13}, - [1508] = {.lex_state = 13}, - [1509] = {.lex_state = 13}, - [1510] = {.lex_state = 13}, - [1511] = {.lex_state = 13}, - [1512] = {.lex_state = 13}, - [1513] = {.lex_state = 13}, - [1514] = {.lex_state = 13}, - [1515] = {.lex_state = 13}, - [1516] = {.lex_state = 13}, - [1517] = {.lex_state = 13}, - [1518] = {.lex_state = 13}, - [1519] = {.lex_state = 13}, - [1520] = {.lex_state = 13}, - [1521] = {.lex_state = 13}, - [1522] = {.lex_state = 13}, - [1523] = {.lex_state = 14}, - [1524] = {.lex_state = 13}, - [1525] = {.lex_state = 13}, - [1526] = {.lex_state = 13}, - [1527] = {.lex_state = 13}, - [1528] = {.lex_state = 13}, - [1529] = {.lex_state = 14}, - [1530] = {.lex_state = 13}, - [1531] = {.lex_state = 13}, - [1532] = {.lex_state = 13}, - [1533] = {.lex_state = 13}, - [1534] = {.lex_state = 13}, - [1535] = {.lex_state = 13}, - [1536] = {.lex_state = 13}, - [1537] = {.lex_state = 13}, - [1538] = {.lex_state = 13}, - [1539] = {.lex_state = 13}, - [1540] = {.lex_state = 13}, - [1541] = {.lex_state = 13}, - [1542] = {.lex_state = 13}, - [1543] = {.lex_state = 14}, - [1544] = {.lex_state = 13}, - [1545] = {.lex_state = 13}, - [1546] = {.lex_state = 13}, - [1547] = {.lex_state = 13}, - [1548] = {.lex_state = 13}, - [1549] = {.lex_state = 13}, - [1550] = {.lex_state = 13}, - [1551] = {.lex_state = 13}, - [1552] = {.lex_state = 13}, - [1553] = {.lex_state = 13}, - [1554] = {.lex_state = 13}, - [1555] = {.lex_state = 13}, - [1556] = {.lex_state = 13}, - [1557] = {.lex_state = 13}, - [1558] = {.lex_state = 13}, - [1559] = {.lex_state = 13}, - [1560] = {.lex_state = 13}, - [1561] = {.lex_state = 13}, - [1562] = {.lex_state = 13}, - [1563] = {.lex_state = 13}, - [1564] = {.lex_state = 13}, - [1565] = {.lex_state = 13}, - [1566] = {.lex_state = 13}, - [1567] = {.lex_state = 13}, - [1568] = {.lex_state = 13}, - [1569] = {.lex_state = 13}, - [1570] = {.lex_state = 13}, - [1571] = {.lex_state = 13}, - [1572] = {.lex_state = 13}, - [1573] = {.lex_state = 13}, - [1574] = {.lex_state = 13}, - [1575] = {.lex_state = 13}, - [1576] = {.lex_state = 15}, - [1577] = {.lex_state = 13}, - [1578] = {.lex_state = 13}, - [1579] = {.lex_state = 13}, - [1580] = {.lex_state = 13}, - [1581] = {.lex_state = 13}, - [1582] = {.lex_state = 13}, - [1583] = {.lex_state = 13}, - [1584] = {.lex_state = 13}, - [1585] = {.lex_state = 13}, - [1586] = {.lex_state = 13}, - [1587] = {.lex_state = 13}, - [1588] = {.lex_state = 13}, - [1589] = {.lex_state = 13}, - [1590] = {.lex_state = 13}, - [1591] = {.lex_state = 13}, - [1592] = {.lex_state = 13}, - [1593] = {.lex_state = 13}, - [1594] = {.lex_state = 13}, - [1595] = {.lex_state = 13}, - [1596] = {.lex_state = 15}, - [1597] = {.lex_state = 13}, - [1598] = {.lex_state = 13}, - [1599] = {.lex_state = 13}, - [1600] = {.lex_state = 13}, - [1601] = {.lex_state = 13}, - [1602] = {.lex_state = 15}, - [1603] = {.lex_state = 13}, - [1604] = {.lex_state = 13}, - [1605] = {.lex_state = 19}, - [1606] = {.lex_state = 13}, - [1607] = {.lex_state = 15}, - [1608] = {.lex_state = 15}, - [1609] = {.lex_state = 14}, - [1610] = {.lex_state = 15}, - [1611] = {.lex_state = 15}, - [1612] = {.lex_state = 15}, - [1613] = {.lex_state = 14}, - [1614] = {.lex_state = 15}, - [1615] = {.lex_state = 14}, - [1616] = {.lex_state = 15}, - [1617] = {.lex_state = 15}, - [1618] = {.lex_state = 14}, - [1619] = {.lex_state = 14}, - [1620] = {.lex_state = 14}, - [1621] = {.lex_state = 14}, - [1622] = {.lex_state = 14}, - [1623] = {.lex_state = 14}, - [1624] = {.lex_state = 14}, - [1625] = {.lex_state = 14}, - [1626] = {.lex_state = 14}, - [1627] = {.lex_state = 14}, - [1628] = {.lex_state = 14}, - [1629] = {.lex_state = 14}, - [1630] = {.lex_state = 14}, - [1631] = {.lex_state = 14}, - [1632] = {.lex_state = 15}, - [1633] = {.lex_state = 14}, - [1634] = {.lex_state = 14}, - [1635] = {.lex_state = 15}, - [1636] = {.lex_state = 15}, - [1637] = {.lex_state = 15}, - [1638] = {.lex_state = 15}, - [1639] = {.lex_state = 15}, - [1640] = {.lex_state = 15}, - [1641] = {.lex_state = 15}, - [1642] = {.lex_state = 15}, - [1643] = {.lex_state = 14}, - [1644] = {.lex_state = 15}, - [1645] = {.lex_state = 14}, - [1646] = {.lex_state = 15}, - [1647] = {.lex_state = 15}, - [1648] = {.lex_state = 15}, - [1649] = {.lex_state = 15}, - [1650] = {.lex_state = 14}, - [1651] = {.lex_state = 15}, - [1652] = {.lex_state = 15}, - [1653] = {.lex_state = 15}, - [1654] = {.lex_state = 14}, - [1655] = {.lex_state = 14}, - [1656] = {.lex_state = 14}, - [1657] = {.lex_state = 14}, - [1658] = {.lex_state = 14}, - [1659] = {.lex_state = 15}, - [1660] = {.lex_state = 15}, - [1661] = {.lex_state = 15}, - [1662] = {.lex_state = 15}, - [1663] = {.lex_state = 14}, - [1664] = {.lex_state = 15}, - [1665] = {.lex_state = 14}, - [1666] = {.lex_state = 15}, - [1667] = {.lex_state = 15}, - [1668] = {.lex_state = 15}, - [1669] = {.lex_state = 15}, - [1670] = {.lex_state = 15}, - [1671] = {.lex_state = 14}, - [1672] = {.lex_state = 14}, - [1673] = {.lex_state = 14}, - [1674] = {.lex_state = 15}, - [1675] = {.lex_state = 15}, - [1676] = {.lex_state = 14}, - [1677] = {.lex_state = 15}, - [1678] = {.lex_state = 15}, - [1679] = {.lex_state = 15}, - [1680] = {.lex_state = 15}, - [1681] = {.lex_state = 15}, - [1682] = {.lex_state = 14}, - [1683] = {.lex_state = 15}, - [1684] = {.lex_state = 15}, - [1685] = {.lex_state = 14}, - [1686] = {.lex_state = 15}, - [1687] = {.lex_state = 15}, - [1688] = {.lex_state = 14}, - [1689] = {.lex_state = 15}, - [1690] = {.lex_state = 14}, - [1691] = {.lex_state = 14}, - [1692] = {.lex_state = 15}, - [1693] = {.lex_state = 15}, - [1694] = {.lex_state = 15}, - [1695] = {.lex_state = 15}, - [1696] = {.lex_state = 15}, - [1697] = {.lex_state = 15}, - [1698] = {.lex_state = 15}, - [1699] = {.lex_state = 15}, - [1700] = {.lex_state = 15}, - [1701] = {.lex_state = 14}, - [1702] = {.lex_state = 14}, - [1703] = {.lex_state = 14}, - [1704] = {.lex_state = 15}, - [1705] = {.lex_state = 15}, - [1706] = {.lex_state = 14}, - [1707] = {.lex_state = 14}, - [1708] = {.lex_state = 14}, - [1709] = {.lex_state = 14}, - [1710] = {.lex_state = 14}, - [1711] = {.lex_state = 14}, - [1712] = {.lex_state = 21}, - [1713] = {.lex_state = 14}, - [1714] = {.lex_state = 14}, - [1715] = {.lex_state = 14}, - [1716] = {.lex_state = 14}, - [1717] = {.lex_state = 14}, - [1718] = {.lex_state = 14}, - [1719] = {.lex_state = 14}, - [1720] = {.lex_state = 14}, - [1721] = {.lex_state = 14}, - [1722] = {.lex_state = 14}, - [1723] = {.lex_state = 14}, - [1724] = {.lex_state = 14}, - [1725] = {.lex_state = 14}, - [1726] = {.lex_state = 14}, - [1727] = {.lex_state = 15}, - [1728] = {.lex_state = 14}, - [1729] = {.lex_state = 14}, - [1730] = {.lex_state = 14}, - [1731] = {.lex_state = 14}, - [1732] = {.lex_state = 14}, - [1733] = {.lex_state = 14}, - [1734] = {.lex_state = 14}, - [1735] = {.lex_state = 14}, - [1736] = {.lex_state = 14}, - [1737] = {.lex_state = 14}, - [1738] = {.lex_state = 14}, - [1739] = {.lex_state = 14}, - [1740] = {.lex_state = 14}, - [1741] = {.lex_state = 15}, - [1742] = {.lex_state = 14}, - [1743] = {.lex_state = 14}, - [1744] = {.lex_state = 14}, - [1745] = {.lex_state = 21}, - [1746] = {.lex_state = 15}, - [1747] = {.lex_state = 14}, - [1748] = {.lex_state = 15}, - [1749] = {.lex_state = 14}, - [1750] = {.lex_state = 14}, - [1751] = {.lex_state = 15}, - [1752] = {.lex_state = 14}, - [1753] = {.lex_state = 14}, - [1754] = {.lex_state = 14}, - [1755] = {.lex_state = 14}, - [1756] = {.lex_state = 14}, - [1757] = {.lex_state = 14}, - [1758] = {.lex_state = 14}, - [1759] = {.lex_state = 14}, - [1760] = {.lex_state = 14}, - [1761] = {.lex_state = 14}, - [1762] = {.lex_state = 14}, - [1763] = {.lex_state = 14}, - [1764] = {.lex_state = 14}, - [1765] = {.lex_state = 14}, - [1766] = {.lex_state = 14}, - [1767] = {.lex_state = 15}, - [1768] = {.lex_state = 14}, - [1769] = {.lex_state = 14}, - [1770] = {.lex_state = 14}, - [1771] = {.lex_state = 14}, - [1772] = {.lex_state = 14}, - [1773] = {.lex_state = 14}, - [1774] = {.lex_state = 15}, - [1775] = {.lex_state = 15}, - [1776] = {.lex_state = 14}, - [1777] = {.lex_state = 15}, - [1778] = {.lex_state = 15}, - [1779] = {.lex_state = 15}, - [1780] = {.lex_state = 14}, - [1781] = {.lex_state = 14}, - [1782] = {.lex_state = 15}, - [1783] = {.lex_state = 15}, - [1784] = {.lex_state = 15}, - [1785] = {.lex_state = 15}, - [1786] = {.lex_state = 15}, - [1787] = {.lex_state = 15}, - [1788] = {.lex_state = 15}, - [1789] = {.lex_state = 15}, - [1790] = {.lex_state = 15}, - [1791] = {.lex_state = 15}, - [1792] = {.lex_state = 14}, - [1793] = {.lex_state = 15}, - [1794] = {.lex_state = 15}, - [1795] = {.lex_state = 15}, - [1796] = {.lex_state = 14}, - [1797] = {.lex_state = 15}, - [1798] = {.lex_state = 14}, - [1799] = {.lex_state = 14}, - [1800] = {.lex_state = 14}, - [1801] = {.lex_state = 15}, - [1802] = {.lex_state = 15}, - [1803] = {.lex_state = 15}, - [1804] = {.lex_state = 14}, - [1805] = {.lex_state = 14}, - [1806] = {.lex_state = 14}, - [1807] = {.lex_state = 15}, - [1808] = {.lex_state = 15}, - [1809] = {.lex_state = 14}, - [1810] = {.lex_state = 15}, - [1811] = {.lex_state = 15}, - [1812] = {.lex_state = 22, .external_lex_state = 2}, - [1813] = {.lex_state = 21}, - [1814] = {.lex_state = 21}, - [1815] = {.lex_state = 15}, - [1816] = {.lex_state = 15}, - [1817] = {.lex_state = 21}, - [1818] = {.lex_state = 21}, - [1819] = {.lex_state = 21}, - [1820] = {.lex_state = 21}, - [1821] = {.lex_state = 21}, - [1822] = {.lex_state = 22}, - [1823] = {.lex_state = 21}, - [1824] = {.lex_state = 21}, - [1825] = {.lex_state = 21}, - [1826] = {.lex_state = 21}, - [1827] = {.lex_state = 21}, - [1828] = {.lex_state = 21}, - [1829] = {.lex_state = 21}, - [1830] = {.lex_state = 21}, - [1831] = {.lex_state = 21}, - [1832] = {.lex_state = 21}, - [1833] = {.lex_state = 21}, - [1834] = {.lex_state = 21}, - [1835] = {.lex_state = 21}, - [1836] = {.lex_state = 21}, - [1837] = {.lex_state = 21}, - [1838] = {.lex_state = 21}, - [1839] = {.lex_state = 21}, - [1840] = {.lex_state = 21}, - [1841] = {.lex_state = 21}, - [1842] = {.lex_state = 21}, - [1843] = {.lex_state = 21}, - [1844] = {.lex_state = 21}, - [1845] = {.lex_state = 21}, - [1846] = {.lex_state = 21}, - [1847] = {.lex_state = 21}, - [1848] = {.lex_state = 21}, - [1849] = {.lex_state = 21}, - [1850] = {.lex_state = 21}, - [1851] = {.lex_state = 21}, - [1852] = {.lex_state = 21}, - [1853] = {.lex_state = 21}, - [1854] = {.lex_state = 21}, - [1855] = {.lex_state = 21}, - [1856] = {.lex_state = 21}, - [1857] = {.lex_state = 21}, - [1858] = {.lex_state = 21}, - [1859] = {.lex_state = 21}, - [1860] = {.lex_state = 21}, - [1861] = {.lex_state = 21}, - [1862] = {.lex_state = 21}, - [1863] = {.lex_state = 21}, - [1864] = {.lex_state = 21}, - [1865] = {.lex_state = 21}, - [1866] = {.lex_state = 21}, - [1867] = {.lex_state = 21}, - [1868] = {.lex_state = 21}, - [1869] = {.lex_state = 21}, - [1870] = {.lex_state = 21}, - [1871] = {.lex_state = 21}, - [1872] = {.lex_state = 21}, - [1873] = {.lex_state = 21}, - [1874] = {.lex_state = 21}, - [1875] = {.lex_state = 21}, - [1876] = {.lex_state = 21}, - [1877] = {.lex_state = 21}, - [1878] = {.lex_state = 21}, - [1879] = {.lex_state = 21}, - [1880] = {.lex_state = 21}, - [1881] = {.lex_state = 21}, - [1882] = {.lex_state = 21}, - [1883] = {.lex_state = 21}, - [1884] = {.lex_state = 21}, - [1885] = {.lex_state = 21}, - [1886] = {.lex_state = 21}, - [1887] = {.lex_state = 21}, - [1888] = {.lex_state = 21}, - [1889] = {.lex_state = 21}, - [1890] = {.lex_state = 21}, - [1891] = {.lex_state = 21}, - [1892] = {.lex_state = 21}, - [1893] = {.lex_state = 21}, - [1894] = {.lex_state = 21}, - [1895] = {.lex_state = 21}, - [1896] = {.lex_state = 21}, - [1897] = {.lex_state = 21}, - [1898] = {.lex_state = 21}, - [1899] = {.lex_state = 21}, - [1900] = {.lex_state = 21}, - [1901] = {.lex_state = 21}, - [1902] = {.lex_state = 21}, - [1903] = {.lex_state = 21}, - [1904] = {.lex_state = 21}, - [1905] = {.lex_state = 21}, - [1906] = {.lex_state = 21}, - [1907] = {.lex_state = 21}, - [1908] = {.lex_state = 21}, - [1909] = {.lex_state = 21}, - [1910] = {.lex_state = 21}, - [1911] = {.lex_state = 21}, - [1912] = {.lex_state = 21}, - [1913] = {.lex_state = 23}, - [1914] = {.lex_state = 23}, - [1915] = {.lex_state = 23}, - [1916] = {.lex_state = 23}, - [1917] = {.lex_state = 23}, - [1918] = {.lex_state = 23}, - [1919] = {.lex_state = 24, .external_lex_state = 2}, - [1920] = {.lex_state = 23}, - [1921] = {.lex_state = 23}, - [1922] = {.lex_state = 23}, - [1923] = {.lex_state = 23}, - [1924] = {.lex_state = 23}, - [1925] = {.lex_state = 23}, - [1926] = {.lex_state = 23}, - [1927] = {.lex_state = 24}, - [1928] = {.lex_state = 23}, - [1929] = {.lex_state = 23}, - [1930] = {.lex_state = 23}, - [1931] = {.lex_state = 23}, - [1932] = {.lex_state = 23}, - [1933] = {.lex_state = 23}, - [1934] = {.lex_state = 23}, - [1935] = {.lex_state = 23}, - [1936] = {.lex_state = 23}, - [1937] = {.lex_state = 23}, - [1938] = {.lex_state = 23}, - [1939] = {.lex_state = 23}, - [1940] = {.lex_state = 23}, - [1941] = {.lex_state = 23}, - [1942] = {.lex_state = 23}, - [1943] = {.lex_state = 23}, - [1944] = {.lex_state = 23}, - [1945] = {.lex_state = 23}, - [1946] = {.lex_state = 23}, - [1947] = {.lex_state = 23}, - [1948] = {.lex_state = 23}, - [1949] = {.lex_state = 23}, - [1950] = {.lex_state = 23}, - [1951] = {.lex_state = 23}, - [1952] = {.lex_state = 23}, - [1953] = {.lex_state = 23}, - [1954] = {.lex_state = 23}, - [1955] = {.lex_state = 23}, - [1956] = {.lex_state = 23}, - [1957] = {.lex_state = 23}, - [1958] = {.lex_state = 23}, - [1959] = {.lex_state = 23}, - [1960] = {.lex_state = 23}, - [1961] = {.lex_state = 23}, - [1962] = {.lex_state = 23}, - [1963] = {.lex_state = 23}, - [1964] = {.lex_state = 23}, - [1965] = {.lex_state = 23}, - [1966] = {.lex_state = 23}, - [1967] = {.lex_state = 23}, - [1968] = {.lex_state = 23}, - [1969] = {.lex_state = 23}, - [1970] = {.lex_state = 23}, - [1971] = {.lex_state = 23}, - [1972] = {.lex_state = 23}, - [1973] = {.lex_state = 23}, - [1974] = {.lex_state = 23}, - [1975] = {.lex_state = 23}, - [1976] = {.lex_state = 23}, - [1977] = {.lex_state = 23}, - [1978] = {.lex_state = 23}, - [1979] = {.lex_state = 23}, - [1980] = {.lex_state = 23}, - [1981] = {.lex_state = 23}, - [1982] = {.lex_state = 23}, - [1983] = {.lex_state = 23}, - [1984] = {.lex_state = 23}, - [1985] = {.lex_state = 23}, - [1986] = {.lex_state = 23}, - [1987] = {.lex_state = 23}, - [1988] = {.lex_state = 23}, - [1989] = {.lex_state = 23}, - [1990] = {.lex_state = 23}, - [1991] = {.lex_state = 23}, - [1992] = {.lex_state = 23}, - [1993] = {.lex_state = 23}, - [1994] = {.lex_state = 23}, - [1995] = {.lex_state = 23}, - [1996] = {.lex_state = 23}, - [1997] = {.lex_state = 23}, - [1998] = {.lex_state = 23}, - [1999] = {.lex_state = 23}, - [2000] = {.lex_state = 23}, - [2001] = {.lex_state = 23}, - [2002] = {.lex_state = 23}, - [2003] = {.lex_state = 23}, - [2004] = {.lex_state = 23}, - [2005] = {.lex_state = 23}, - [2006] = {.lex_state = 0}, - [2007] = {.lex_state = 0}, - [2008] = {.lex_state = 0}, - [2009] = {.lex_state = 0}, - [2010] = {.lex_state = 0}, - [2011] = {.lex_state = 0}, - [2012] = {.lex_state = 0}, - [2013] = {.lex_state = 26}, - [2014] = {.lex_state = 26}, - [2015] = {.lex_state = 26}, - [2016] = {.lex_state = 26}, - [2017] = {.lex_state = 26}, - [2018] = {.lex_state = 26}, - [2019] = {.lex_state = 26}, - [2020] = {.lex_state = 26}, - [2021] = {.lex_state = 26}, - [2022] = {.lex_state = 26}, - [2023] = {.lex_state = 26}, - [2024] = {.lex_state = 26}, - [2025] = {.lex_state = 26}, - [2026] = {.lex_state = 26}, - [2027] = {.lex_state = 26}, - [2028] = {.lex_state = 26}, - [2029] = {.lex_state = 26}, - [2030] = {.lex_state = 26}, - [2031] = {.lex_state = 26}, - [2032] = {.lex_state = 26}, - [2033] = {.lex_state = 26}, - [2034] = {.lex_state = 26}, - [2035] = {.lex_state = 26}, - [2036] = {.lex_state = 26}, - [2037] = {.lex_state = 26}, - [2038] = {.lex_state = 26}, - [2039] = {.lex_state = 26}, - [2040] = {.lex_state = 26}, - [2041] = {.lex_state = 26}, - [2042] = {.lex_state = 26}, - [2043] = {.lex_state = 26}, - [2044] = {.lex_state = 26}, - [2045] = {.lex_state = 26}, - [2046] = {.lex_state = 26}, - [2047] = {.lex_state = 26}, - [2048] = {.lex_state = 26}, - [2049] = {.lex_state = 26}, - [2050] = {.lex_state = 26}, - [2051] = {.lex_state = 26}, - [2052] = {.lex_state = 26}, - [2053] = {.lex_state = 26}, - [2054] = {.lex_state = 26}, - [2055] = {.lex_state = 26}, - [2056] = {.lex_state = 26}, - [2057] = {.lex_state = 26}, - [2058] = {.lex_state = 26}, - [2059] = {.lex_state = 26}, - [2060] = {.lex_state = 26}, - [2061] = {.lex_state = 0}, - [2062] = {.lex_state = 26}, - [2063] = {.lex_state = 26}, - [2064] = {.lex_state = 26}, - [2065] = {.lex_state = 29}, - [2066] = {.lex_state = 29}, - [2067] = {.lex_state = 29}, - [2068] = {.lex_state = 26}, - [2069] = {.lex_state = 27}, - [2070] = {.lex_state = 29}, - [2071] = {.lex_state = 27}, - [2072] = {.lex_state = 27}, - [2073] = {.lex_state = 27}, - [2074] = {.lex_state = 27}, - [2075] = {.lex_state = 26}, - [2076] = {.lex_state = 26}, - [2077] = {.lex_state = 27}, - [2078] = {.lex_state = 26}, - [2079] = {.lex_state = 29}, - [2080] = {.lex_state = 27}, - [2081] = {.lex_state = 29}, - [2082] = {.lex_state = 27}, - [2083] = {.lex_state = 26}, - [2084] = {.lex_state = 29}, - [2085] = {.lex_state = 27}, - [2086] = {.lex_state = 26}, - [2087] = {.lex_state = 29}, - [2088] = {.lex_state = 26}, - [2089] = {.lex_state = 27}, - [2090] = {.lex_state = 29}, - [2091] = {.lex_state = 26}, - [2092] = {.lex_state = 27}, - [2093] = {.lex_state = 27}, - [2094] = {.lex_state = 27}, - [2095] = {.lex_state = 27}, - [2096] = {.lex_state = 29}, - [2097] = {.lex_state = 27}, - [2098] = {.lex_state = 29}, - [2099] = {.lex_state = 27}, - [2100] = {.lex_state = 27}, - [2101] = {.lex_state = 27}, - [2102] = {.lex_state = 29}, - [2103] = {.lex_state = 29}, - [2104] = {.lex_state = 29}, - [2105] = {.lex_state = 26}, - [2106] = {.lex_state = 26}, - [2107] = {.lex_state = 27}, - [2108] = {.lex_state = 27}, - [2109] = {.lex_state = 0}, - [2110] = {.lex_state = 0}, - [2111] = {.lex_state = 0}, - [2112] = {.lex_state = 0}, - [2113] = {.lex_state = 0}, - [2114] = {.lex_state = 0}, - [2115] = {.lex_state = 0}, - [2116] = {.lex_state = 0}, - [2117] = {.lex_state = 0}, - [2118] = {.lex_state = 0}, - [2119] = {.lex_state = 0}, - [2120] = {.lex_state = 0}, - [2121] = {.lex_state = 0}, - [2122] = {.lex_state = 0}, - [2123] = {.lex_state = 0}, - [2124] = {.lex_state = 0}, - [2125] = {.lex_state = 0}, - [2126] = {.lex_state = 0}, - [2127] = {.lex_state = 0}, - [2128] = {.lex_state = 0}, - [2129] = {.lex_state = 0}, - [2130] = {.lex_state = 0}, - [2131] = {.lex_state = 0}, - [2132] = {.lex_state = 0}, - [2133] = {.lex_state = 0}, - [2134] = {.lex_state = 0}, - [2135] = {.lex_state = 0}, - [2136] = {.lex_state = 0}, - [2137] = {.lex_state = 0}, - [2138] = {.lex_state = 0}, - [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 0}, - [2141] = {.lex_state = 0}, - [2142] = {.lex_state = 0}, - [2143] = {.lex_state = 0}, - [2144] = {.lex_state = 0}, - [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 0}, - [2147] = {.lex_state = 0}, - [2148] = {.lex_state = 0}, - [2149] = {.lex_state = 0}, - [2150] = {.lex_state = 0}, - [2151] = {.lex_state = 0}, - [2152] = {.lex_state = 0}, - [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 0}, - [2155] = {.lex_state = 0}, - [2156] = {.lex_state = 0}, - [2157] = {.lex_state = 0}, - [2158] = {.lex_state = 0}, - [2159] = {.lex_state = 0}, - [2160] = {.lex_state = 0}, - [2161] = {.lex_state = 0}, - [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 0}, - [2164] = {.lex_state = 0}, - [2165] = {.lex_state = 0}, - [2166] = {.lex_state = 0}, - [2167] = {.lex_state = 0}, - [2168] = {.lex_state = 0}, - [2169] = {.lex_state = 0}, - [2170] = {.lex_state = 0}, - [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 0}, - [2173] = {.lex_state = 0}, - [2174] = {.lex_state = 0}, - [2175] = {.lex_state = 0}, - [2176] = {.lex_state = 0}, - [2177] = {.lex_state = 0}, - [2178] = {.lex_state = 0}, - [2179] = {.lex_state = 0}, - [2180] = {.lex_state = 0}, - [2181] = {.lex_state = 0}, - [2182] = {.lex_state = 0}, - [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 0}, - [2186] = {.lex_state = 0}, - [2187] = {.lex_state = 0}, - [2188] = {.lex_state = 0}, - [2189] = {.lex_state = 0}, - [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 0}, - [2192] = {.lex_state = 0}, - [2193] = {.lex_state = 0}, - [2194] = {.lex_state = 0}, - [2195] = {.lex_state = 0}, - [2196] = {.lex_state = 0}, - [2197] = {.lex_state = 0}, - [2198] = {.lex_state = 0}, - [2199] = {.lex_state = 0}, - [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 0}, - [2202] = {.lex_state = 0}, - [2203] = {.lex_state = 0}, - [2204] = {.lex_state = 0}, - [2205] = {.lex_state = 0}, - [2206] = {.lex_state = 0}, - [2207] = {.lex_state = 0}, - [2208] = {.lex_state = 0}, - [2209] = {.lex_state = 0}, - [2210] = {.lex_state = 0}, - [2211] = {.lex_state = 0}, - [2212] = {.lex_state = 0}, - [2213] = {.lex_state = 0}, - [2214] = {.lex_state = 0}, - [2215] = {.lex_state = 0}, - [2216] = {.lex_state = 0}, - [2217] = {.lex_state = 0}, - [2218] = {.lex_state = 0}, - [2219] = {.lex_state = 0}, - [2220] = {.lex_state = 0}, - [2221] = {.lex_state = 0}, - [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 0}, - [2224] = {.lex_state = 0}, - [2225] = {.lex_state = 0}, - [2226] = {.lex_state = 0}, - [2227] = {.lex_state = 0}, - [2228] = {.lex_state = 0}, - [2229] = {.lex_state = 0}, - [2230] = {.lex_state = 0}, - [2231] = {.lex_state = 0}, - [2232] = {.lex_state = 0}, - [2233] = {.lex_state = 0}, - [2234] = {.lex_state = 0}, - [2235] = {.lex_state = 0}, - [2236] = {.lex_state = 0}, - [2237] = {.lex_state = 0}, - [2238] = {.lex_state = 0}, - [2239] = {.lex_state = 0}, - [2240] = {.lex_state = 0}, - [2241] = {.lex_state = 0}, - [2242] = {.lex_state = 0}, - [2243] = {.lex_state = 0}, - [2244] = {.lex_state = 0}, - [2245] = {.lex_state = 0}, - [2246] = {.lex_state = 0}, - [2247] = {.lex_state = 0}, - [2248] = {.lex_state = 0}, - [2249] = {.lex_state = 0}, - [2250] = {.lex_state = 0}, - [2251] = {.lex_state = 0}, - [2252] = {.lex_state = 0}, - [2253] = {.lex_state = 0}, - [2254] = {.lex_state = 0}, - [2255] = {.lex_state = 0}, - [2256] = {.lex_state = 0}, - [2257] = {.lex_state = 0}, - [2258] = {.lex_state = 0}, - [2259] = {.lex_state = 0}, - [2260] = {.lex_state = 0}, - [2261] = {.lex_state = 0}, - [2262] = {.lex_state = 0}, - [2263] = {.lex_state = 0}, - [2264] = {.lex_state = 0}, - [2265] = {.lex_state = 0}, - [2266] = {.lex_state = 0}, - [2267] = {.lex_state = 0}, - [2268] = {.lex_state = 0}, - [2269] = {.lex_state = 0}, - [2270] = {.lex_state = 0}, - [2271] = {.lex_state = 0}, - [2272] = {.lex_state = 0}, - [2273] = {.lex_state = 0}, - [2274] = {.lex_state = 0}, - [2275] = {.lex_state = 0}, - [2276] = {.lex_state = 0}, - [2277] = {.lex_state = 0}, - [2278] = {.lex_state = 0}, - [2279] = {.lex_state = 0}, - [2280] = {.lex_state = 0}, - [2281] = {.lex_state = 0}, - [2282] = {.lex_state = 0}, - [2283] = {.lex_state = 0}, - [2284] = {.lex_state = 0}, - [2285] = {.lex_state = 0}, - [2286] = {.lex_state = 0}, - [2287] = {.lex_state = 0}, - [2288] = {.lex_state = 0}, - [2289] = {.lex_state = 0}, - [2290] = {.lex_state = 0}, - [2291] = {.lex_state = 0}, - [2292] = {.lex_state = 0}, - [2293] = {.lex_state = 0}, - [2294] = {.lex_state = 0}, - [2295] = {.lex_state = 0}, - [2296] = {.lex_state = 0}, - [2297] = {.lex_state = 0}, - [2298] = {.lex_state = 0}, - [2299] = {.lex_state = 0}, - [2300] = {.lex_state = 0}, - [2301] = {.lex_state = 0}, - [2302] = {.lex_state = 26}, - [2303] = {.lex_state = 26}, - [2304] = {.lex_state = 0}, - [2305] = {.lex_state = 0}, - [2306] = {.lex_state = 26}, - [2307] = {.lex_state = 28}, - [2308] = {.lex_state = 0}, - [2309] = {.lex_state = 0}, - [2310] = {.lex_state = 26}, - [2311] = {.lex_state = 0}, - [2312] = {.lex_state = 29}, - [2313] = {.lex_state = 26}, - [2314] = {.lex_state = 0}, - [2315] = {.lex_state = 0}, - [2316] = {.lex_state = 0}, - [2317] = {.lex_state = 0}, - [2318] = {.lex_state = 26}, - [2319] = {.lex_state = 0}, - [2320] = {.lex_state = 26}, - [2321] = {.lex_state = 28}, - [2322] = {.lex_state = 0}, - [2323] = {.lex_state = 0}, - [2324] = {.lex_state = 0}, - [2325] = {.lex_state = 26}, - [2326] = {.lex_state = 26}, - [2327] = {.lex_state = 0}, - [2328] = {.lex_state = 0}, - [2329] = {.lex_state = 28}, - [2330] = {.lex_state = 26}, - [2331] = {.lex_state = 0}, - [2332] = {.lex_state = 0}, - [2333] = {.lex_state = 26}, - [2334] = {.lex_state = 0}, - [2335] = {.lex_state = 0}, - [2336] = {.lex_state = 28}, - [2337] = {.lex_state = 0}, - [2338] = {.lex_state = 0}, - [2339] = {.lex_state = 0}, - [2340] = {.lex_state = 0}, - [2341] = {.lex_state = 29}, - [2342] = {.lex_state = 28}, - [2343] = {.lex_state = 26}, - [2344] = {.lex_state = 0}, - [2345] = {.lex_state = 0}, - [2346] = {.lex_state = 0}, - [2347] = {.lex_state = 26}, - [2348] = {.lex_state = 26}, - [2349] = {.lex_state = 0}, - [2350] = {.lex_state = 0}, - [2351] = {.lex_state = 0}, - [2352] = {.lex_state = 0}, - [2353] = {.lex_state = 26}, - [2354] = {.lex_state = 0}, - [2355] = {.lex_state = 0}, - [2356] = {.lex_state = 0}, - [2357] = {.lex_state = 0}, - [2358] = {.lex_state = 0}, - [2359] = {.lex_state = 0}, - [2360] = {.lex_state = 0}, - [2361] = {.lex_state = 0}, - [2362] = {.lex_state = 26}, - [2363] = {.lex_state = 0}, - [2364] = {.lex_state = 26}, - [2365] = {.lex_state = 0}, - [2366] = {.lex_state = 26}, - [2367] = {.lex_state = 28}, - [2368] = {.lex_state = 0}, - [2369] = {.lex_state = 0}, - [2370] = {.lex_state = 0}, - [2371] = {.lex_state = 0}, - [2372] = {.lex_state = 28}, - [2373] = {.lex_state = 26}, - [2374] = {.lex_state = 0}, - [2375] = {.lex_state = 0}, - [2376] = {.lex_state = 26}, - [2377] = {.lex_state = 26}, - [2378] = {.lex_state = 0}, - [2379] = {.lex_state = 26}, - [2380] = {.lex_state = 0}, - [2381] = {.lex_state = 26}, - [2382] = {.lex_state = 28}, - [2383] = {.lex_state = 0}, - [2384] = {.lex_state = 0}, - [2385] = {.lex_state = 26}, - [2386] = {.lex_state = 0}, - [2387] = {.lex_state = 0}, - [2388] = {.lex_state = 0}, - [2389] = {.lex_state = 26}, - [2390] = {.lex_state = 26}, - [2391] = {.lex_state = 0}, - [2392] = {.lex_state = 26}, - [2393] = {.lex_state = 0}, - [2394] = {.lex_state = 0}, - [2395] = {.lex_state = 0}, - [2396] = {.lex_state = 0}, - [2397] = {.lex_state = 26}, - [2398] = {.lex_state = 26}, - [2399] = {.lex_state = 0}, - [2400] = {.lex_state = 28}, - [2401] = {.lex_state = 0}, - [2402] = {.lex_state = 0}, - [2403] = {.lex_state = 0}, - [2404] = {.lex_state = 28}, - [2405] = {.lex_state = 26}, - [2406] = {.lex_state = 28}, - [2407] = {.lex_state = 0}, - [2408] = {.lex_state = 0}, - [2409] = {.lex_state = 0}, - [2410] = {.lex_state = 0}, - [2411] = {.lex_state = 26}, - [2412] = {.lex_state = 0}, - [2413] = {.lex_state = 0}, - [2414] = {.lex_state = 26}, - [2415] = {.lex_state = 0}, - [2416] = {.lex_state = 0}, - [2417] = {.lex_state = 0}, - [2418] = {.lex_state = 0}, - [2419] = {.lex_state = 0}, - [2420] = {.lex_state = 0}, - [2421] = {.lex_state = 0}, - [2422] = {.lex_state = 0}, - [2423] = {.lex_state = 0}, - [2424] = {.lex_state = 0}, - [2425] = {.lex_state = 0}, - [2426] = {.lex_state = 0}, - [2427] = {.lex_state = 0}, - [2428] = {.lex_state = 30}, - [2429] = {.lex_state = 0}, - [2430] = {.lex_state = 0}, - [2431] = {.lex_state = 0}, - [2432] = {.lex_state = 0}, - [2433] = {.lex_state = 0}, - [2434] = {.lex_state = 0}, - [2435] = {.lex_state = 0}, - [2436] = {.lex_state = 26}, - [2437] = {.lex_state = 0}, - [2438] = {.lex_state = 0}, - [2439] = {.lex_state = 0}, - [2440] = {.lex_state = 0}, - [2441] = {.lex_state = 0}, - [2442] = {.lex_state = 0}, - [2443] = {.lex_state = 0}, - [2444] = {.lex_state = 0}, - [2445] = {.lex_state = 0}, - [2446] = {.lex_state = 0}, - [2447] = {.lex_state = 0}, - [2448] = {.lex_state = 0}, - [2449] = {.lex_state = 0}, - [2450] = {.lex_state = 0}, - [2451] = {.lex_state = 0}, - [2452] = {.lex_state = 0}, - [2453] = {.lex_state = 0}, - [2454] = {.lex_state = 0}, - [2455] = {.lex_state = 0}, - [2456] = {.lex_state = 0}, - [2457] = {.lex_state = 0}, - [2458] = {.lex_state = 0}, - [2459] = {.lex_state = 0}, - [2460] = {.lex_state = 0}, - [2461] = {.lex_state = 0}, - [2462] = {.lex_state = 0}, - [2463] = {.lex_state = 0}, - [2464] = {.lex_state = 0}, - [2465] = {.lex_state = 0}, - [2466] = {.lex_state = 0}, - [2467] = {.lex_state = 0}, - [2468] = {.lex_state = 0}, - [2469] = {.lex_state = 0}, - [2470] = {.lex_state = 0}, - [2471] = {.lex_state = 0}, - [2472] = {.lex_state = 0}, - [2473] = {.lex_state = 0}, - [2474] = {.lex_state = 0}, - [2475] = {.lex_state = 0}, - [2476] = {.lex_state = 0}, - [2477] = {.lex_state = 0}, - [2478] = {.lex_state = 0}, - [2479] = {.lex_state = 0}, - [2480] = {.lex_state = 0}, - [2481] = {.lex_state = 0}, - [2482] = {.lex_state = 0}, - [2483] = {.lex_state = 0}, - [2484] = {.lex_state = 0}, - [2485] = {.lex_state = 0}, - [2486] = {.lex_state = 0}, - [2487] = {.lex_state = 0}, - [2488] = {.lex_state = 0}, - [2489] = {.lex_state = 0}, - [2490] = {.lex_state = 0}, - [2491] = {.lex_state = 0}, - [2492] = {.lex_state = 0}, - [2493] = {.lex_state = 0}, - [2494] = {.lex_state = 0}, - [2495] = {.lex_state = 0}, - [2496] = {.lex_state = 0}, - [2497] = {.lex_state = 0}, - [2498] = {.lex_state = 0}, - [2499] = {.lex_state = 0}, - [2500] = {.lex_state = 0}, - [2501] = {.lex_state = 0}, - [2502] = {.lex_state = 0}, - [2503] = {.lex_state = 30}, - [2504] = {.lex_state = 0}, - [2505] = {.lex_state = 0}, - [2506] = {.lex_state = 0}, - [2507] = {.lex_state = 0}, - [2508] = {.lex_state = 0}, - [2509] = {.lex_state = 0}, - [2510] = {.lex_state = 0}, - [2511] = {.lex_state = 0}, - [2512] = {.lex_state = 0}, - [2513] = {.lex_state = 0}, - [2514] = {.lex_state = 0}, - [2515] = {.lex_state = 0}, - [2516] = {.lex_state = 0}, - [2517] = {.lex_state = 26}, - [2518] = {.lex_state = 0}, - [2519] = {.lex_state = 0}, - [2520] = {.lex_state = 0}, - [2521] = {.lex_state = 0}, - [2522] = {.lex_state = 0}, - [2523] = {.lex_state = 0}, - [2524] = {.lex_state = 0}, - [2525] = {.lex_state = 0}, - [2526] = {.lex_state = 0}, - [2527] = {.lex_state = 0}, - [2528] = {.lex_state = 0}, - [2529] = {.lex_state = 0}, - [2530] = {.lex_state = 0}, - [2531] = {.lex_state = 0}, - [2532] = {.lex_state = 0}, - [2533] = {.lex_state = 0}, - [2534] = {.lex_state = 0}, - [2535] = {.lex_state = 0}, - [2536] = {.lex_state = 0}, - [2537] = {.lex_state = 0}, - [2538] = {.lex_state = 0}, - [2539] = {.lex_state = 0}, - [2540] = {.lex_state = 0}, - [2541] = {.lex_state = 0}, - [2542] = {.lex_state = 0}, - [2543] = {.lex_state = 0}, - [2544] = {.lex_state = 0}, - [2545] = {.lex_state = 0}, - [2546] = {.lex_state = 0}, - [2547] = {.lex_state = 0}, - [2548] = {.lex_state = 0}, - [2549] = {.lex_state = 0}, - [2550] = {.lex_state = 0}, - [2551] = {.lex_state = 0}, - [2552] = {.lex_state = 0}, - [2553] = {.lex_state = 0}, - [2554] = {.lex_state = 0}, - [2555] = {.lex_state = 0}, - [2556] = {.lex_state = 0}, - [2557] = {.lex_state = 0}, - [2558] = {.lex_state = 0}, - [2559] = {.lex_state = 0}, - [2560] = {.lex_state = 0}, - [2561] = {.lex_state = 0}, - [2562] = {.lex_state = 0}, - [2563] = {.lex_state = 0}, - [2564] = {.lex_state = 0}, - [2565] = {.lex_state = 0}, - [2566] = {.lex_state = 0}, - [2567] = {.lex_state = 0}, - [2568] = {.lex_state = 0}, - [2569] = {.lex_state = 0}, - [2570] = {.lex_state = 0}, - [2571] = {.lex_state = 0}, - [2572] = {.lex_state = 0}, - [2573] = {.lex_state = 0}, - [2574] = {.lex_state = 0}, - [2575] = {.lex_state = 0}, - [2576] = {.lex_state = 0}, - [2577] = {.lex_state = 0}, - [2578] = {.lex_state = 0}, - [2579] = {.lex_state = 0}, - [2580] = {.lex_state = 0}, - [2581] = {.lex_state = 0}, - [2582] = {.lex_state = 0}, - [2583] = {.lex_state = 0}, - [2584] = {.lex_state = 0}, - [2585] = {.lex_state = 0}, - [2586] = {.lex_state = 0}, - [2587] = {.lex_state = 0}, - [2588] = {.lex_state = 0}, - [2589] = {.lex_state = 0}, - [2590] = {.lex_state = 0}, - [2591] = {.lex_state = 0}, - [2592] = {.lex_state = 0}, - [2593] = {.lex_state = 0}, - [2594] = {.lex_state = 0}, - [2595] = {.lex_state = 0}, - [2596] = {.lex_state = 0}, - [2597] = {.lex_state = 0}, - [2598] = {.lex_state = 0}, - [2599] = {.lex_state = 0}, - [2600] = {.lex_state = 0}, - [2601] = {.lex_state = 0}, - [2602] = {.lex_state = 0}, - [2603] = {.lex_state = 0}, - [2604] = {.lex_state = 0}, - [2605] = {.lex_state = 0}, - [2606] = {.lex_state = 0}, - [2607] = {.lex_state = 0}, - [2608] = {.lex_state = 0}, - [2609] = {.lex_state = 0}, - [2610] = {.lex_state = 0}, - [2611] = {.lex_state = 0}, - [2612] = {.lex_state = 0}, - [2613] = {.lex_state = 0}, - [2614] = {.lex_state = 30}, - [2615] = {.lex_state = 0}, - [2616] = {.lex_state = 0}, - [2617] = {.lex_state = 0}, - [2618] = {.lex_state = 0}, - [2619] = {.lex_state = 0}, - [2620] = {.lex_state = 0}, - [2621] = {.lex_state = 0}, - [2622] = {.lex_state = 0}, - [2623] = {.lex_state = 0}, - [2624] = {.lex_state = 0}, - [2625] = {.lex_state = 0}, - [2626] = {.lex_state = 0}, - [2627] = {.lex_state = 0}, - [2628] = {.lex_state = 26}, - [2629] = {.lex_state = 0}, - [2630] = {.lex_state = 0}, - [2631] = {.lex_state = 0}, - [2632] = {.lex_state = 0}, - [2633] = {.lex_state = 0}, - [2634] = {.lex_state = 0}, - [2635] = {.lex_state = 0}, - [2636] = {.lex_state = 0}, - [2637] = {.lex_state = 0}, - [2638] = {.lex_state = 0}, - [2639] = {.lex_state = 0}, - [2640] = {.lex_state = 0}, - [2641] = {.lex_state = 0}, - [2642] = {.lex_state = 0}, - [2643] = {.lex_state = 0}, - [2644] = {.lex_state = 0}, - [2645] = {.lex_state = 0}, - [2646] = {.lex_state = 0}, - [2647] = {.lex_state = 0}, - [2648] = {.lex_state = 26}, - [2649] = {.lex_state = 0}, - [2650] = {.lex_state = 0}, - [2651] = {.lex_state = 0}, - [2652] = {.lex_state = 0}, - [2653] = {.lex_state = 0}, - [2654] = {.lex_state = 0}, - [2655] = {.lex_state = 0}, - [2656] = {.lex_state = 0}, - [2657] = {.lex_state = 0}, - [2658] = {.lex_state = 0}, - [2659] = {.lex_state = 0}, - [2660] = {.lex_state = 0}, - [2661] = {.lex_state = 0}, - [2662] = {.lex_state = 0}, - [2663] = {.lex_state = 0}, - [2664] = {.lex_state = 0}, - [2665] = {.lex_state = 0}, - [2666] = {.lex_state = 0}, - [2667] = {.lex_state = 0}, - [2668] = {.lex_state = 0}, - [2669] = {.lex_state = 0}, - [2670] = {.lex_state = 0}, - [2671] = {.lex_state = 0}, - [2672] = {.lex_state = 0}, - [2673] = {.lex_state = 0}, - [2674] = {.lex_state = 0}, - [2675] = {.lex_state = 0}, - [2676] = {.lex_state = 0}, - [2677] = {.lex_state = 0}, - [2678] = {.lex_state = 0}, - [2679] = {.lex_state = 0}, - [2680] = {.lex_state = 0}, - [2681] = {.lex_state = 30}, - [2682] = {.lex_state = 0}, - [2683] = {.lex_state = 0}, - [2684] = {.lex_state = 0}, - [2685] = {.lex_state = 0}, - [2686] = {.lex_state = 0}, - [2687] = {.lex_state = 0}, - [2688] = {.lex_state = 0}, - [2689] = {.lex_state = 0}, - [2690] = {.lex_state = 0}, - [2691] = {.lex_state = 0}, - [2692] = {.lex_state = 0}, - [2693] = {.lex_state = 0}, - [2694] = {.lex_state = 0}, - [2695] = {.lex_state = 0}, - [2696] = {.lex_state = 0}, - [2697] = {.lex_state = 0}, - [2698] = {.lex_state = 0}, - [2699] = {.lex_state = 0}, - [2700] = {.lex_state = 0}, - [2701] = {.lex_state = 0}, - [2702] = {.lex_state = 0}, - [2703] = {.lex_state = 0}, - [2704] = {.lex_state = 0}, - [2705] = {.lex_state = 0}, - [2706] = {.lex_state = 0}, - [2707] = {.lex_state = 0}, - [2708] = {.lex_state = 0}, - [2709] = {.lex_state = 0}, - [2710] = {.lex_state = 0}, - [2711] = {.lex_state = 0}, - [2712] = {.lex_state = 0}, - [2713] = {.lex_state = 0}, - [2714] = {.lex_state = 0}, - [2715] = {.lex_state = 0}, - [2716] = {.lex_state = 0}, - [2717] = {.lex_state = 0}, - [2718] = {.lex_state = 0}, - [2719] = {.lex_state = 0}, - [2720] = {.lex_state = 0}, - [2721] = {.lex_state = 30}, - [2722] = {.lex_state = 0}, - [2723] = {.lex_state = 0}, - [2724] = {.lex_state = 0}, - [2725] = {.lex_state = 0}, - [2726] = {.lex_state = 0}, - [2727] = {.lex_state = 0}, - [2728] = {.lex_state = 0}, - [2729] = {.lex_state = 0}, - [2730] = {.lex_state = 26}, - [2731] = {.lex_state = 30}, - [2732] = {.lex_state = 0}, - [2733] = {.lex_state = 0}, - [2734] = {.lex_state = 0}, - [2735] = {.lex_state = 26}, - [2736] = {.lex_state = 0}, - [2737] = {.lex_state = 0}, - [2738] = {.lex_state = 0}, - [2739] = {.lex_state = 0}, - [2740] = {.lex_state = 0}, - [2741] = {.lex_state = 0}, - [2742] = {.lex_state = 0}, - [2743] = {.lex_state = 0}, - [2744] = {.lex_state = 0}, - [2745] = {.lex_state = 0}, - [2746] = {.lex_state = 0}, - [2747] = {.lex_state = 0}, - [2748] = {.lex_state = 0}, - [2749] = {.lex_state = 0}, - [2750] = {.lex_state = 0}, - [2751] = {.lex_state = 0}, - [2752] = {.lex_state = 0}, - [2753] = {.lex_state = 0}, - [2754] = {.lex_state = 0}, - [2755] = {.lex_state = 0}, - [2756] = {.lex_state = 0}, - [2757] = {.lex_state = 0}, - [2758] = {.lex_state = 0}, - [2759] = {.lex_state = 0}, - [2760] = {.lex_state = 0}, - [2761] = {.lex_state = 0}, - [2762] = {.lex_state = 0}, - [2763] = {.lex_state = 0}, - [2764] = {.lex_state = 0}, - [2765] = {.lex_state = 0}, - [2766] = {.lex_state = 0}, - [2767] = {.lex_state = 0}, - [2768] = {.lex_state = 0}, - [2769] = {.lex_state = 0}, - [2770] = {.lex_state = 0}, - [2771] = {.lex_state = 0}, - [2772] = {.lex_state = 0}, - [2773] = {.lex_state = 0}, - [2774] = {.lex_state = 0}, - [2775] = {.lex_state = 0}, - [2776] = {.lex_state = 0}, - [2777] = {.lex_state = 0}, - [2778] = {.lex_state = 0}, - [2779] = {.lex_state = 0}, - [2780] = {.lex_state = 0}, - [2781] = {.lex_state = 0}, - [2782] = {.lex_state = 0}, - [2783] = {.lex_state = 0}, - [2784] = {.lex_state = 0}, - [2785] = {.lex_state = 0}, - [2786] = {.lex_state = 0}, - [2787] = {.lex_state = 0}, - [2788] = {.lex_state = 0}, - [2789] = {.lex_state = 0}, - [2790] = {.lex_state = 0}, - [2791] = {.lex_state = 0}, - [2792] = {.lex_state = 0}, - [2793] = {.lex_state = 0}, - [2794] = {.lex_state = 0}, - [2795] = {.lex_state = 0}, - [2796] = {.lex_state = 0}, - [2797] = {.lex_state = 0}, - [2798] = {.lex_state = 0}, - [2799] = {.lex_state = 0}, - [2800] = {.lex_state = 0}, - [2801] = {.lex_state = 0}, - [2802] = {.lex_state = 0}, - [2803] = {.lex_state = 0}, - [2804] = {.lex_state = 0}, - [2805] = {.lex_state = 0}, - [2806] = {.lex_state = 0}, - [2807] = {.lex_state = 0}, - [2808] = {.lex_state = 0}, - [2809] = {.lex_state = 30}, - [2810] = {.lex_state = 0}, - [2811] = {.lex_state = 0}, - [2812] = {.lex_state = 0}, - [2813] = {.lex_state = 0}, - [2814] = {.lex_state = 0}, - [2815] = {.lex_state = 0}, - [2816] = {.lex_state = 0}, - [2817] = {.lex_state = 0}, - [2818] = {.lex_state = 0}, - [2819] = {.lex_state = 26}, - [2820] = {.lex_state = 0}, - [2821] = {.lex_state = 0}, - [2822] = {.lex_state = 26}, - [2823] = {.lex_state = 26}, - [2824] = {.lex_state = 0}, - [2825] = {.lex_state = 0}, - [2826] = {.lex_state = 0}, - [2827] = {.lex_state = 0}, - [2828] = {.lex_state = 0}, - [2829] = {.lex_state = 0}, - [2830] = {.lex_state = 0}, - [2831] = {.lex_state = 0}, - [2832] = {.lex_state = 0}, - [2833] = {.lex_state = 0}, - [2834] = {.lex_state = 0}, - [2835] = {.lex_state = 0}, - [2836] = {.lex_state = 0}, - [2837] = {.lex_state = 0}, - [2838] = {.lex_state = 0}, - [2839] = {.lex_state = 0}, - [2840] = {.lex_state = 0}, - [2841] = {.lex_state = 0}, - [2842] = {.lex_state = 0}, - [2843] = {.lex_state = 0}, - [2844] = {.lex_state = 0}, - [2845] = {.lex_state = 0}, - [2846] = {.lex_state = 0}, - [2847] = {.lex_state = 0}, - [2848] = {.lex_state = 0}, - [2849] = {.lex_state = 30}, - [2850] = {.lex_state = 0}, - [2851] = {.lex_state = 0}, - [2852] = {.lex_state = 0}, - [2853] = {.lex_state = 0}, - [2854] = {.lex_state = 0}, - [2855] = {.lex_state = 0}, - [2856] = {.lex_state = 0}, - [2857] = {.lex_state = 0}, - [2858] = {.lex_state = 0}, - [2859] = {.lex_state = 0}, - [2860] = {.lex_state = 0}, - [2861] = {.lex_state = 0}, - [2862] = {.lex_state = 0}, - [2863] = {.lex_state = 0}, - [2864] = {.lex_state = 0}, - [2865] = {.lex_state = 0}, - [2866] = {.lex_state = 0}, - [2867] = {.lex_state = 0}, - [2868] = {.lex_state = 0}, - [2869] = {.lex_state = 0}, - [2870] = {.lex_state = 0}, - [2871] = {.lex_state = 0}, - [2872] = {.lex_state = 0}, - [2873] = {.lex_state = 0}, - [2874] = {.lex_state = 0}, - [2875] = {.lex_state = 0}, - [2876] = {.lex_state = 0}, - [2877] = {.lex_state = 0}, - [2878] = {.lex_state = 0}, - [2879] = {.lex_state = 0}, - [2880] = {.lex_state = 0}, - [2881] = {.lex_state = 0}, - [2882] = {.lex_state = 0}, - [2883] = {.lex_state = 0}, - [2884] = {.lex_state = 0}, - [2885] = {.lex_state = 0}, - [2886] = {.lex_state = 0}, - [2887] = {.lex_state = 0}, - [2888] = {.lex_state = 0}, - [2889] = {.lex_state = 0}, - [2890] = {.lex_state = 30}, - [2891] = {.lex_state = 0}, - [2892] = {.lex_state = 0}, - [2893] = {.lex_state = 0}, - [2894] = {.lex_state = 0}, - [2895] = {.lex_state = 0}, - [2896] = {.lex_state = 0}, - [2897] = {.lex_state = 0}, - [2898] = {.lex_state = 0}, - [2899] = {.lex_state = 0}, - [2900] = {.lex_state = 0}, - [2901] = {.lex_state = 0}, - [2902] = {.lex_state = 0}, - [2903] = {.lex_state = 0}, - [2904] = {.lex_state = 26}, - [2905] = {.lex_state = 0}, - [2906] = {.lex_state = 0}, - [2907] = {.lex_state = 0}, - [2908] = {.lex_state = 0}, - [2909] = {.lex_state = 0}, - [2910] = {.lex_state = 0}, - [2911] = {.lex_state = 0}, - [2912] = {.lex_state = 0}, - [2913] = {.lex_state = 0}, - [2914] = {.lex_state = 0}, - [2915] = {.lex_state = 0}, - [2916] = {.lex_state = 0}, - [2917] = {.lex_state = 0}, - [2918] = {.lex_state = 0}, - [2919] = {.lex_state = 0}, - [2920] = {.lex_state = 0}, - [2921] = {.lex_state = 0}, - [2922] = {.lex_state = 0}, - [2923] = {.lex_state = 0}, - [2924] = {.lex_state = 0}, - [2925] = {.lex_state = 0}, - [2926] = {.lex_state = 0}, - [2927] = {.lex_state = 0}, - [2928] = {.lex_state = 0}, - [2929] = {.lex_state = 0}, - [2930] = {.lex_state = 0}, - [2931] = {.lex_state = 0}, - [2932] = {.lex_state = 0}, - [2933] = {.lex_state = 0}, - [2934] = {.lex_state = 0}, - [2935] = {.lex_state = 0}, - [2936] = {.lex_state = 0}, - [2937] = {.lex_state = 0}, - [2938] = {.lex_state = 0}, - [2939] = {.lex_state = 0}, - [2940] = {.lex_state = 0}, - [2941] = {.lex_state = 0}, - [2942] = {.lex_state = 0}, - [2943] = {.lex_state = 0}, - [2944] = {.lex_state = 0}, - [2945] = {.lex_state = 0}, - [2946] = {.lex_state = 0}, - [2947] = {.lex_state = 0}, - [2948] = {.lex_state = 0}, - [2949] = {.lex_state = 0}, - [2950] = {.lex_state = 0}, - [2951] = {.lex_state = 0}, - [2952] = {.lex_state = 0}, - [2953] = {.lex_state = 0}, - [2954] = {.lex_state = 0}, - [2955] = {.lex_state = 0}, - [2956] = {.lex_state = 0}, - [2957] = {.lex_state = 0}, - [2958] = {.lex_state = 0}, - [2959] = {.lex_state = 0}, - [2960] = {.lex_state = 0}, - [2961] = {.lex_state = 0}, - [2962] = {.lex_state = 0}, - [2963] = {.lex_state = 0}, - [2964] = {.lex_state = 0}, - [2965] = {.lex_state = 0}, - [2966] = {.lex_state = 0}, - [2967] = {.lex_state = 0}, - [2968] = {.lex_state = 0}, - [2969] = {.lex_state = 0}, - [2970] = {.lex_state = 0}, - [2971] = {.lex_state = 0}, - [2972] = {.lex_state = 0}, - [2973] = {.lex_state = 0}, - [2974] = {.lex_state = 0}, - [2975] = {.lex_state = 0}, - [2976] = {.lex_state = 0}, - [2977] = {.lex_state = 0}, - [2978] = {.lex_state = 0}, - [2979] = {.lex_state = 0}, - [2980] = {.lex_state = 0}, - [2981] = {.lex_state = 0}, - [2982] = {.lex_state = 0}, - [2983] = {.lex_state = 0}, - [2984] = {.lex_state = 0}, - [2985] = {.lex_state = 0}, - [2986] = {.lex_state = 0}, - [2987] = {.lex_state = 0}, - [2988] = {.lex_state = 0}, - [2989] = {.lex_state = 0}, - [2990] = {.lex_state = 0}, - [2991] = {.lex_state = 0}, - [2992] = {.lex_state = 0}, - [2993] = {.lex_state = 0}, - [2994] = {.lex_state = 0}, - [2995] = {.lex_state = 0}, - [2996] = {.lex_state = 0}, - [2997] = {.lex_state = 0}, - [2998] = {.lex_state = 0}, - [2999] = {.lex_state = 0}, - [3000] = {.lex_state = 0}, - [3001] = {.lex_state = 0}, - [3002] = {.lex_state = 0}, - [3003] = {.lex_state = 0}, - [3004] = {.lex_state = 0}, - [3005] = {.lex_state = 0}, - [3006] = {.lex_state = 0}, - [3007] = {.lex_state = 0}, - [3008] = {.lex_state = 0}, - [3009] = {.lex_state = 0}, - [3010] = {.lex_state = 0}, - [3011] = {.lex_state = 0}, - [3012] = {.lex_state = 0}, - [3013] = {.lex_state = 0}, - [3014] = {.lex_state = 0}, - [3015] = {.lex_state = 0}, - [3016] = {.lex_state = 0}, - [3017] = {.lex_state = 0}, - [3018] = {.lex_state = 0}, - [3019] = {.lex_state = 0}, - [3020] = {.lex_state = 0}, - [3021] = {.lex_state = 0}, - [3022] = {.lex_state = 0}, - [3023] = {.lex_state = 0}, - [3024] = {.lex_state = 0}, - [3025] = {.lex_state = 0}, - [3026] = {.lex_state = 0}, - [3027] = {.lex_state = 0}, - [3028] = {.lex_state = 0}, - [3029] = {.lex_state = 0}, - [3030] = {.lex_state = 26}, - [3031] = {.lex_state = 0}, - [3032] = {.lex_state = 0}, - [3033] = {.lex_state = 0}, - [3034] = {.lex_state = 0}, - [3035] = {.lex_state = 0}, - [3036] = {.lex_state = 0}, - [3037] = {.lex_state = 0}, - [3038] = {.lex_state = 0}, - [3039] = {.lex_state = 0}, - [3040] = {.lex_state = 0}, - [3041] = {.lex_state = 0}, - [3042] = {.lex_state = 0}, - [3043] = {.lex_state = 0}, - [3044] = {.lex_state = 0}, - [3045] = {.lex_state = 0}, - [3046] = {.lex_state = 0}, - [3047] = {.lex_state = 0}, - [3048] = {.lex_state = 0}, - [3049] = {.lex_state = 0}, - [3050] = {.lex_state = 0}, - [3051] = {.lex_state = 0}, - [3052] = {.lex_state = 0}, - [3053] = {.lex_state = 0}, - [3054] = {.lex_state = 0}, - [3055] = {.lex_state = 0}, - [3056] = {.lex_state = 0}, - [3057] = {.lex_state = 0}, - [3058] = {.lex_state = 0}, - [3059] = {.lex_state = 0}, - [3060] = {.lex_state = 0}, - [3061] = {.lex_state = 0}, - [3062] = {.lex_state = 0}, - [3063] = {.lex_state = 0}, - [3064] = {.lex_state = 30}, - [3065] = {.lex_state = 0}, - [3066] = {.lex_state = 0}, - [3067] = {.lex_state = 0}, - [3068] = {.lex_state = 0}, - [3069] = {.lex_state = 0}, - [3070] = {.lex_state = 0}, - [3071] = {.lex_state = 0}, - [3072] = {.lex_state = 0}, - [3073] = {.lex_state = 0}, - [3074] = {.lex_state = 0}, - [3075] = {.lex_state = 0}, - [3076] = {.lex_state = 0}, - [3077] = {.lex_state = 0}, - [3078] = {.lex_state = 0}, - [3079] = {.lex_state = 0}, - [3080] = {.lex_state = 0}, - [3081] = {.lex_state = 26}, - [3082] = {.lex_state = 0}, - [3083] = {.lex_state = 0}, - [3084] = {.lex_state = 0}, - [3085] = {.lex_state = 0}, - [3086] = {.lex_state = 0}, - [3087] = {.lex_state = 0}, - [3088] = {.lex_state = 0}, - [3089] = {.lex_state = 0}, - [3090] = {.lex_state = 0}, - [3091] = {.lex_state = 0}, - [3092] = {.lex_state = 0}, - [3093] = {.lex_state = 0}, - [3094] = {.lex_state = 0}, - [3095] = {.lex_state = 0}, - [3096] = {.lex_state = 0}, - [3097] = {.lex_state = 0}, - [3098] = {.lex_state = 0}, - [3099] = {.lex_state = 0}, - [3100] = {.lex_state = 0}, - [3101] = {.lex_state = 0}, - [3102] = {.lex_state = 0}, - [3103] = {.lex_state = 0}, - [3104] = {.lex_state = 0}, - [3105] = {.lex_state = 0}, - [3106] = {.lex_state = 0}, - [3107] = {.lex_state = 0}, - [3108] = {.lex_state = 0}, - [3109] = {.lex_state = 0}, - [3110] = {.lex_state = 0}, - [3111] = {.lex_state = 0}, - [3112] = {.lex_state = 0}, - [3113] = {.lex_state = 0, .external_lex_state = 3}, - [3114] = {.lex_state = 26}, - [3115] = {.lex_state = 0, .external_lex_state = 4}, - [3116] = {.lex_state = 0, .external_lex_state = 3}, - [3117] = {.lex_state = 26}, - [3118] = {.lex_state = 0, .external_lex_state = 5}, - [3119] = {.lex_state = 0, .external_lex_state = 6}, - [3120] = {.lex_state = 0, .external_lex_state = 5}, - [3121] = {.lex_state = 0, .external_lex_state = 6}, - [3122] = {.lex_state = 0, .external_lex_state = 4}, - [3123] = {.lex_state = 0, .external_lex_state = 3}, - [3124] = {.lex_state = 0, .external_lex_state = 7}, - [3125] = {.lex_state = 0, .external_lex_state = 4}, - [3126] = {.lex_state = 30}, - [3127] = {.lex_state = 0, .external_lex_state = 3}, - [3128] = {.lex_state = 0, .external_lex_state = 7}, - [3129] = {.lex_state = 0, .external_lex_state = 7}, - [3130] = {.lex_state = 30}, - [3131] = {.lex_state = 26}, - [3132] = {.lex_state = 30}, - [3133] = {.lex_state = 0, .external_lex_state = 5}, - [3134] = {.lex_state = 0, .external_lex_state = 6}, - [3135] = {.lex_state = 0}, - [3136] = {.lex_state = 30}, - [3137] = {.lex_state = 0, .external_lex_state = 7}, - [3138] = {.lex_state = 0, .external_lex_state = 3}, - [3139] = {.lex_state = 0, .external_lex_state = 4}, - [3140] = {.lex_state = 0, .external_lex_state = 6}, - [3141] = {.lex_state = 0, .external_lex_state = 5}, - [3142] = {.lex_state = 26}, - [3143] = {.lex_state = 26}, - [3144] = {.lex_state = 26}, - [3145] = {.lex_state = 30}, - [3146] = {.lex_state = 0, .external_lex_state = 7}, - [3147] = {.lex_state = 26}, - [3148] = {.lex_state = 0, .external_lex_state = 3}, - [3149] = {.lex_state = 0, .external_lex_state = 4}, - [3150] = {.lex_state = 30}, - [3151] = {.lex_state = 0, .external_lex_state = 6}, - [3152] = {.lex_state = 0, .external_lex_state = 5}, - [3153] = {.lex_state = 26}, - [3154] = {.lex_state = 30}, - [3155] = {.lex_state = 0, .external_lex_state = 7}, - [3156] = {.lex_state = 0, .external_lex_state = 3}, - [3157] = {.lex_state = 0, .external_lex_state = 4}, - [3158] = {.lex_state = 0, .external_lex_state = 6}, - [3159] = {.lex_state = 0, .external_lex_state = 5}, - [3160] = {.lex_state = 26}, - [3161] = {.lex_state = 0}, - [3162] = {.lex_state = 0}, - [3163] = {.lex_state = 0, .external_lex_state = 5}, - [3164] = {.lex_state = 0, .external_lex_state = 6}, - [3165] = {.lex_state = 0, .external_lex_state = 4}, - [3166] = {.lex_state = 26}, - [3167] = {.lex_state = 26}, - [3168] = {.lex_state = 0}, - [3169] = {.lex_state = 0}, - [3170] = {.lex_state = 30}, - [3171] = {.lex_state = 0, .external_lex_state = 3}, - [3172] = {.lex_state = 0}, - [3173] = {.lex_state = 30}, - [3174] = {.lex_state = 0, .external_lex_state = 7}, - [3175] = {.lex_state = 0, .external_lex_state = 5}, - [3176] = {.lex_state = 0, .external_lex_state = 6}, - [3177] = {.lex_state = 0, .external_lex_state = 4}, - [3178] = {.lex_state = 26}, - [3179] = {.lex_state = 0, .external_lex_state = 7}, - [3180] = {.lex_state = 26}, - [3181] = {.lex_state = 0}, - [3182] = {.lex_state = 0}, - [3183] = {.lex_state = 0}, - [3184] = {.lex_state = 0}, - [3185] = {.lex_state = 26}, - [3186] = {.lex_state = 0}, - [3187] = {.lex_state = 26}, - [3188] = {.lex_state = 26}, - [3189] = {.lex_state = 26}, - [3190] = {.lex_state = 30}, - [3191] = {.lex_state = 0}, - [3192] = {.lex_state = 0}, - [3193] = {.lex_state = 0}, - [3194] = {.lex_state = 0}, - [3195] = {.lex_state = 0}, - [3196] = {.lex_state = 0}, - [3197] = {.lex_state = 0}, - [3198] = {.lex_state = 0}, - [3199] = {.lex_state = 26}, - [3200] = {.lex_state = 26}, - [3201] = {.lex_state = 0}, - [3202] = {.lex_state = 0}, - [3203] = {.lex_state = 0}, - [3204] = {.lex_state = 0}, - [3205] = {.lex_state = 0}, - [3206] = {.lex_state = 0}, - [3207] = {.lex_state = 0}, - [3208] = {.lex_state = 0}, - [3209] = {.lex_state = 0}, - [3210] = {.lex_state = 0}, - [3211] = {.lex_state = 0}, - [3212] = {.lex_state = 0}, - [3213] = {.lex_state = 0}, - [3214] = {.lex_state = 26}, - [3215] = {.lex_state = 0}, - [3216] = {.lex_state = 0}, - [3217] = {.lex_state = 0}, - [3218] = {.lex_state = 0}, - [3219] = {.lex_state = 0}, - [3220] = {.lex_state = 0}, - [3221] = {.lex_state = 26}, - [3222] = {.lex_state = 0}, - [3223] = {.lex_state = 0}, - [3224] = {.lex_state = 0}, - [3225] = {.lex_state = 0}, - [3226] = {.lex_state = 0}, - [3227] = {.lex_state = 0}, - [3228] = {.lex_state = 0}, - [3229] = {.lex_state = 0}, - [3230] = {.lex_state = 0}, - [3231] = {.lex_state = 0}, - [3232] = {.lex_state = 0}, - [3233] = {.lex_state = 0}, - [3234] = {.lex_state = 0}, - [3235] = {.lex_state = 26}, - [3236] = {.lex_state = 0, .external_lex_state = 3}, - [3237] = {.lex_state = 0}, - [3238] = {.lex_state = 0}, - [3239] = {.lex_state = 26}, - [3240] = {.lex_state = 0}, - [3241] = {.lex_state = 0}, - [3242] = {.lex_state = 0}, - [3243] = {.lex_state = 28}, - [3244] = {.lex_state = 26}, - [3245] = {.lex_state = 0}, - [3246] = {.lex_state = 0}, - [3247] = {.lex_state = 0}, - [3248] = {.lex_state = 0}, - [3249] = {.lex_state = 0}, - [3250] = {.lex_state = 0}, - [3251] = {.lex_state = 0}, - [3252] = {.lex_state = 0}, - [3253] = {.lex_state = 0}, - [3254] = {.lex_state = 0}, - [3255] = {.lex_state = 0}, - [3256] = {.lex_state = 26}, - [3257] = {.lex_state = 26}, - [3258] = {.lex_state = 0}, - [3259] = {.lex_state = 0}, - [3260] = {.lex_state = 0}, - [3261] = {.lex_state = 0}, - [3262] = {.lex_state = 0}, - [3263] = {.lex_state = 0}, - [3264] = {.lex_state = 0}, - [3265] = {.lex_state = 0}, - [3266] = {.lex_state = 0}, - [3267] = {.lex_state = 0}, - [3268] = {.lex_state = 0, .external_lex_state = 5}, - [3269] = {.lex_state = 0, .external_lex_state = 6}, - [3270] = {.lex_state = 0, .external_lex_state = 4}, - [3271] = {.lex_state = 0, .external_lex_state = 7}, - [3272] = {.lex_state = 26}, - [3273] = {.lex_state = 26}, - [3274] = {.lex_state = 30}, - [3275] = {.lex_state = 26}, - [3276] = {.lex_state = 0}, - [3277] = {.lex_state = 0}, - [3278] = {.lex_state = 0}, - [3279] = {.lex_state = 0}, - [3280] = {.lex_state = 0}, - [3281] = {.lex_state = 0}, - [3282] = {.lex_state = 0}, - [3283] = {.lex_state = 0}, - [3284] = {.lex_state = 0}, - [3285] = {.lex_state = 0}, - [3286] = {.lex_state = 0}, - [3287] = {.lex_state = 0, .external_lex_state = 3}, - [3288] = {.lex_state = 26}, - [3289] = {.lex_state = 0}, - [3290] = {.lex_state = 0}, - [3291] = {.lex_state = 0}, - [3292] = {.lex_state = 0}, - [3293] = {.lex_state = 0}, - [3294] = {.lex_state = 0}, - [3295] = {.lex_state = 0}, - [3296] = {.lex_state = 0}, - [3297] = {.lex_state = 0}, - [3298] = {.lex_state = 0}, - [3299] = {.lex_state = 0}, - [3300] = {.lex_state = 26}, -}; - -enum { - ts_external_token__trivia_raw_fi = 0, - ts_external_token__trivia_raw_env_comment = 1, - ts_external_token__trivia_raw_env_verbatim = 2, - ts_external_token__trivia_raw_env_listing = 3, - ts_external_token__trivia_raw_env_minted = 4, - ts_external_token__trivia_raw_env_pycode = 5, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__trivia_raw_fi] = sym__trivia_raw_fi, - [ts_external_token__trivia_raw_env_comment] = sym__trivia_raw_env_comment, - [ts_external_token__trivia_raw_env_verbatim] = sym__trivia_raw_env_verbatim, - [ts_external_token__trivia_raw_env_listing] = sym__trivia_raw_env_listing, - [ts_external_token__trivia_raw_env_minted] = sym__trivia_raw_env_minted, - [ts_external_token__trivia_raw_env_pycode] = sym__trivia_raw_env_pycode, -}; - -static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__trivia_raw_fi] = true, - [ts_external_token__trivia_raw_env_comment] = true, - [ts_external_token__trivia_raw_env_verbatim] = true, - [ts_external_token__trivia_raw_env_listing] = true, - [ts_external_token__trivia_raw_env_minted] = true, - [ts_external_token__trivia_raw_env_pycode] = true, - }, - [2] = { - [ts_external_token__trivia_raw_fi] = true, - }, - [3] = { - [ts_external_token__trivia_raw_env_minted] = true, - }, - [4] = { - [ts_external_token__trivia_raw_env_listing] = true, - }, - [5] = { - [ts_external_token__trivia_raw_env_comment] = true, - }, - [6] = { - [ts_external_token__trivia_raw_env_verbatim] = true, - }, - [7] = { - [ts_external_token__trivia_raw_env_pycode] = true, - }, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [sym_command_name] = ACTIONS(1), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1), - [anon_sym_BSLASHfi] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_BSLASHpart] = ACTIONS(1), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1), - [anon_sym_BSLASHaddpart] = ACTIONS(1), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1), - [anon_sym_BSLASHchapter] = ACTIONS(1), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1), - [anon_sym_BSLASHaddchap] = ACTIONS(1), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1), - [anon_sym_BSLASHsection] = ACTIONS(1), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1), - [anon_sym_BSLASHaddsec] = ACTIONS(1), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1), - [anon_sym_BSLASHsubsection] = ACTIONS(1), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1), - [anon_sym_BSLASHparagraph] = ACTIONS(1), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1), - [anon_sym_BSLASHitem] = ACTIONS(1), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_BSLASHand] = ACTIONS(1), - [sym_word] = ACTIONS(1), - [sym_placeholder] = ACTIONS(1), - [sym_argc] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), - [anon_sym__] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1), - [anon_sym_BSLASHbegin] = ACTIONS(1), - [anon_sym_BSLASHend] = ACTIONS(1), - [anon_sym_comment] = ACTIONS(1), - [anon_sym_verbatim] = ACTIONS(1), - [anon_sym_lstlisting] = ACTIONS(1), - [anon_sym_minted] = ACTIONS(1), - [anon_sym_pycode] = ACTIONS(1), - [anon_sym_displaymath] = ACTIONS(1), - [anon_sym_displaymath_STAR] = ACTIONS(1), - [anon_sym_equation] = ACTIONS(1), - [anon_sym_equation_STAR] = ACTIONS(1), - [anon_sym_multline] = ACTIONS(1), - [anon_sym_multline_STAR] = ACTIONS(1), - [anon_sym_eqnarray] = ACTIONS(1), - [anon_sym_eqnarray_STAR] = ACTIONS(1), - [anon_sym_align] = ACTIONS(1), - [anon_sym_align_STAR] = ACTIONS(1), - [anon_sym_array] = ACTIONS(1), - [anon_sym_array_STAR] = ACTIONS(1), - [anon_sym_split] = ACTIONS(1), - [anon_sym_split_STAR] = ACTIONS(1), - [anon_sym_alignat] = ACTIONS(1), - [anon_sym_alignat_STAR] = ACTIONS(1), - [anon_sym_gather] = ACTIONS(1), - [anon_sym_gather_STAR] = ACTIONS(1), - [anon_sym_flalign] = ACTIONS(1), - [anon_sym_flalign_STAR] = ACTIONS(1), - [anon_sym_BSLASHtitle] = ACTIONS(1), - [anon_sym_BSLASHauthor] = ACTIONS(1), - [anon_sym_BSLASHusepackage] = ACTIONS(1), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1), - [anon_sym_BSLASHinclude] = ACTIONS(1), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1), - [anon_sym_BSLASHinput] = ACTIONS(1), - [anon_sym_BSLASHsubfile] = ACTIONS(1), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1), - [anon_sym_BSLASHbibliography] = ACTIONS(1), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1), - [anon_sym_BSLASHincludesvg] = ACTIONS(1), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1), - [anon_sym_BSLASHimport] = ACTIONS(1), - [anon_sym_BSLASHsubimport] = ACTIONS(1), - [anon_sym_BSLASHinputfrom] = ACTIONS(1), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1), - [anon_sym_BSLASHincludefrom] = ACTIONS(1), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1), - [anon_sym_BSLASHcaption] = ACTIONS(1), - [anon_sym_BSLASHcite] = ACTIONS(1), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1), - [anon_sym_BSLASHCite] = ACTIONS(1), - [anon_sym_BSLASHnocite] = ACTIONS(1), - [anon_sym_BSLASHcitet] = ACTIONS(1), - [anon_sym_BSLASHcitep] = ACTIONS(1), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1), - [anon_sym_BSLASHciteauthor] = ACTIONS(1), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1), - [anon_sym_BSLASHcitetitle] = ACTIONS(1), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1), - [anon_sym_BSLASHciteyear] = ACTIONS(1), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1), - [anon_sym_BSLASHcitedate] = ACTIONS(1), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1), - [anon_sym_BSLASHciteurl] = ACTIONS(1), - [anon_sym_BSLASHfullcite] = ACTIONS(1), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1), - [anon_sym_BSLASHcitealt] = ACTIONS(1), - [anon_sym_BSLASHcitealp] = ACTIONS(1), - [anon_sym_BSLASHcitetext] = ACTIONS(1), - [anon_sym_BSLASHparencite] = ACTIONS(1), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1), - [anon_sym_BSLASHParencite] = ACTIONS(1), - [anon_sym_BSLASHfootcite] = ACTIONS(1), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1), - [anon_sym_BSLASHtextcite] = ACTIONS(1), - [anon_sym_BSLASHTextcite] = ACTIONS(1), - [anon_sym_BSLASHsmartcite] = ACTIONS(1), - [anon_sym_BSLASHSmartcite] = ACTIONS(1), - [anon_sym_BSLASHsupercite] = ACTIONS(1), - [anon_sym_BSLASHautocite] = ACTIONS(1), - [anon_sym_BSLASHAutocite] = ACTIONS(1), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1), - [anon_sym_BSLASHvolcite] = ACTIONS(1), - [anon_sym_BSLASHVolcite] = ACTIONS(1), - [anon_sym_BSLASHpvolcite] = ACTIONS(1), - [anon_sym_BSLASHPvolcite] = ACTIONS(1), - [anon_sym_BSLASHfvolcite] = ACTIONS(1), - [anon_sym_BSLASHftvolcite] = ACTIONS(1), - [anon_sym_BSLASHsvolcite] = ACTIONS(1), - [anon_sym_BSLASHSvolcite] = ACTIONS(1), - [anon_sym_BSLASHtvolcite] = ACTIONS(1), - [anon_sym_BSLASHTvolcite] = ACTIONS(1), - [anon_sym_BSLASHavolcite] = ACTIONS(1), - [anon_sym_BSLASHAvolcite] = ACTIONS(1), - [anon_sym_BSLASHnotecite] = ACTIONS(1), - [anon_sym_BSLASHNotecite] = ACTIONS(1), - [anon_sym_BSLASHpnotecite] = ACTIONS(1), - [anon_sym_BSLASHPnotecite] = ACTIONS(1), - [anon_sym_BSLASHfnotecite] = ACTIONS(1), - [anon_sym_BSLASHlabel] = ACTIONS(1), - [anon_sym_BSLASHref] = ACTIONS(1), - [anon_sym_BSLASHeqref] = ACTIONS(1), - [anon_sym_BSLASHvref] = ACTIONS(1), - [anon_sym_BSLASHVref] = ACTIONS(1), - [anon_sym_BSLASHautoref] = ACTIONS(1), - [anon_sym_BSLASHpageref] = ACTIONS(1), - [anon_sym_BSLASHcref] = ACTIONS(1), - [anon_sym_BSLASHCref] = ACTIONS(1), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1), - [anon_sym_BSLASHnamecref] = ACTIONS(1), - [anon_sym_BSLASHnameCref] = ACTIONS(1), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1), - [anon_sym_BSLASHlabelcref] = ACTIONS(1), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1), - [anon_sym_BSLASHcrefrange] = ACTIONS(1), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1), - [anon_sym_BSLASHCrefrange] = ACTIONS(1), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1), - [anon_sym_BSLASHnewlabel] = ACTIONS(1), - [anon_sym_BSLASHnewcommand] = ACTIONS(1), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1), - [anon_sym_BSLASHdef] = ACTIONS(1), - [anon_sym_BSLASHlet] = ACTIONS(1), - [anon_sym_BSLASHleft] = ACTIONS(1), - [anon_sym_BSLASHbig] = ACTIONS(1), - [anon_sym_BSLASHBig] = ACTIONS(1), - [anon_sym_BSLASHbigg] = ACTIONS(1), - [anon_sym_BSLASHBigg] = ACTIONS(1), - [anon_sym_BSLASHbigl] = ACTIONS(1), - [anon_sym_BSLASHBigl] = ACTIONS(1), - [anon_sym_BSLASHbiggl] = ACTIONS(1), - [anon_sym_BSLASHBiggl] = ACTIONS(1), - [anon_sym_BSLASHright] = ACTIONS(1), - [anon_sym_BSLASHbigr] = ACTIONS(1), - [anon_sym_BSLASHBigr] = ACTIONS(1), - [anon_sym_BSLASHbiggr] = ACTIONS(1), - [anon_sym_BSLASHBiggr] = ACTIONS(1), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1), - [anon_sym_BSLASHgls] = ACTIONS(1), - [anon_sym_BSLASHGls] = ACTIONS(1), - [anon_sym_BSLASHGLS] = ACTIONS(1), - [anon_sym_BSLASHglspl] = ACTIONS(1), - [anon_sym_BSLASHGlspl] = ACTIONS(1), - [anon_sym_BSLASHGLSpl] = ACTIONS(1), - [anon_sym_BSLASHglsdisp] = ACTIONS(1), - [anon_sym_BSLASHglslink] = ACTIONS(1), - [anon_sym_BSLASHglstext] = ACTIONS(1), - [anon_sym_BSLASHGlstext] = ACTIONS(1), - [anon_sym_BSLASHGLStext] = ACTIONS(1), - [anon_sym_BSLASHglsfirst] = ACTIONS(1), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1), - [anon_sym_BSLASHglsplural] = ACTIONS(1), - [anon_sym_BSLASHGlsplural] = ACTIONS(1), - [anon_sym_BSLASHGLSplural] = ACTIONS(1), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1), - [anon_sym_BSLASHglsname] = ACTIONS(1), - [anon_sym_BSLASHGlsname] = ACTIONS(1), - [anon_sym_BSLASHGLSname] = ACTIONS(1), - [anon_sym_BSLASHglssymbol] = ACTIONS(1), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1), - [anon_sym_BSLASHglsdesc] = ACTIONS(1), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1), - [anon_sym_BSLASHglsuseri] = ACTIONS(1), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1), - [anon_sym_BSLASHglsuserii] = ACTIONS(1), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1), - [anon_sym_BSLASHglsuserv] = ACTIONS(1), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1), - [anon_sym_BSLASHglsuservi] = ACTIONS(1), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1), - [anon_sym_BSLASHnewacronym] = ACTIONS(1), - [anon_sym_BSLASHacrshort] = ACTIONS(1), - [anon_sym_BSLASHAcrshort] = ACTIONS(1), - [anon_sym_BSLASHACRshort] = ACTIONS(1), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1), - [anon_sym_BSLASHacrlong] = ACTIONS(1), - [anon_sym_BSLASHAcrlong] = ACTIONS(1), - [anon_sym_BSLASHACRlong] = ACTIONS(1), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1), - [anon_sym_BSLASHacrfull] = ACTIONS(1), - [anon_sym_BSLASHAcrfull] = ACTIONS(1), - [anon_sym_BSLASHACRfull] = ACTIONS(1), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1), - [anon_sym_BSLASHacs] = ACTIONS(1), - [anon_sym_BSLASHAcs] = ACTIONS(1), - [anon_sym_BSLASHacsp] = ACTIONS(1), - [anon_sym_BSLASHAcsp] = ACTIONS(1), - [anon_sym_BSLASHacl] = ACTIONS(1), - [anon_sym_BSLASHAcl] = ACTIONS(1), - [anon_sym_BSLASHaclp] = ACTIONS(1), - [anon_sym_BSLASHAclp] = ACTIONS(1), - [anon_sym_BSLASHacf] = ACTIONS(1), - [anon_sym_BSLASHAcf] = ACTIONS(1), - [anon_sym_BSLASHacfp] = ACTIONS(1), - [anon_sym_BSLASHAcfp] = ACTIONS(1), - [anon_sym_BSLASHac] = ACTIONS(1), - [anon_sym_BSLASHAc] = ACTIONS(1), - [anon_sym_BSLASHacp] = ACTIONS(1), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1), - [anon_sym_BSLASHcolor] = ACTIONS(1), - [anon_sym_BSLASHcolorbox] = ACTIONS(1), - [anon_sym_BSLASHtextcolor] = ACTIONS(1), - [anon_sym_BSLASHpagecolor] = ACTIONS(1), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1), - [anon_sym_BSLASHtext] = ACTIONS(1), - [anon_sym_BSLASHintertext] = ACTIONS(1), - [anon_sym_shortintertext] = ACTIONS(1), - [sym__trivia_raw_fi] = ACTIONS(1), - [sym__trivia_raw_env_comment] = ACTIONS(1), - [sym__trivia_raw_env_verbatim] = ACTIONS(1), - [sym__trivia_raw_env_listing] = ACTIONS(1), - [sym__trivia_raw_env_minted] = ACTIONS(1), - [sym__trivia_raw_env_pycode] = ACTIONS(1), - }, - [1] = { - [sym_source_file] = STATE(3162), - [sym_block_comment] = STATE(95), - [sym__root_content] = STATE(95), - [sym__flat_content] = STATE(95), - [sym__text_with_env_content] = STATE(95), - [sym__text_content] = STATE(95), - [sym__section] = STATE(95), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(95), - [sym_text] = STATE(95), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(95), - [sym_inline_formula] = STATE(95), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(95), - [sym_comment_environment] = STATE(95), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(95), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(95), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(95), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(95), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(95), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(95), - [sym_generic_command] = STATE(95), - [sym_title_declaration] = STATE(95), - [sym_author_declaration] = STATE(95), - [sym_package_include] = STATE(95), - [sym_class_include] = STATE(95), - [sym_latex_include] = STATE(95), - [sym_biblatex_include] = STATE(95), - [sym_bibtex_include] = STATE(95), - [sym_graphics_include] = STATE(95), - [sym_svg_include] = STATE(95), - [sym_inkscape_include] = STATE(95), - [sym_verbatim_include] = STATE(95), - [sym_import_include] = STATE(95), - [sym_caption] = STATE(95), - [sym_citation] = STATE(95), - [sym_label_definition] = STATE(95), - [sym_label_reference] = STATE(95), - [sym_label_reference_range] = STATE(95), - [sym_label_number] = STATE(95), - [sym_new_command_definition] = STATE(95), - [sym_old_command_definition] = STATE(95), - [sym_let_command_definition] = STATE(95), - [sym_math_delimiter] = STATE(95), - [sym_paired_delimiter_definition] = STATE(95), - [sym_environment_definition] = STATE(95), - [sym_glossary_entry_definition] = STATE(95), - [sym_glossary_entry_reference] = STATE(95), - [sym_acronym_definition] = STATE(95), - [sym_acronym_reference] = STATE(95), - [sym_theorem_definition] = STATE(95), - [sym_color_definition] = STATE(95), - [sym_color_set_definition] = STATE(95), - [sym_color_reference] = STATE(95), - [sym_tikz_library_import] = STATE(95), - [sym_text_mode] = STATE(95), - [aux_sym_source_file_repeat1] = STATE(95), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(11), - [anon_sym_RBRACK] = ACTIONS(11), - [anon_sym_COMMA] = ACTIONS(11), - [anon_sym_EQ] = ACTIONS(11), - [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_RPAREN] = ACTIONS(11), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [2] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(149), - [anon_sym_BSLASHand] = ACTIONS(145), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [3] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [ts_builtin_sym_end] = ACTIONS(149), - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddpart] = ACTIONS(145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHchapter] = ACTIONS(145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddchap] = ACTIONS(145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), - [anon_sym_BSLASHsection] = ACTIONS(145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddsec] = ACTIONS(145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHparagraph] = ACTIONS(145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHitem] = ACTIONS(145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [4] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [ts_builtin_sym_end] = ACTIONS(185), - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(187), - [anon_sym_BSLASHpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddpart] = ACTIONS(187), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHchapter] = ACTIONS(187), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddchap] = ACTIONS(187), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(185), - [anon_sym_BSLASHsection] = ACTIONS(187), - [anon_sym_BSLASHsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddsec] = ACTIONS(187), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHparagraph] = ACTIONS(187), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph] = ACTIONS(187), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHitem] = ACTIONS(187), - [anon_sym_BSLASHitem_STAR] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [5] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(185), - [anon_sym_BSLASHand] = ACTIONS(187), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [6] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHend] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [7] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddpart] = ACTIONS(189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddsec] = ACTIONS(189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHparagraph] = ACTIONS(189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHright] = ACTIONS(189), - [anon_sym_BSLASHbigr] = ACTIONS(189), - [anon_sym_BSLASHBigr] = ACTIONS(189), - [anon_sym_BSLASHbiggr] = ACTIONS(189), - [anon_sym_BSLASHBiggr] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [8] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddpart] = ACTIONS(145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHchapter] = ACTIONS(145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddchap] = ACTIONS(145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), - [anon_sym_BSLASHsection] = ACTIONS(145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddsec] = ACTIONS(145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHparagraph] = ACTIONS(145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHitem] = ACTIONS(145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_BSLASH_RBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [9] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(187), - [anon_sym_BSLASHpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddpart] = ACTIONS(187), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHchapter] = ACTIONS(187), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddchap] = ACTIONS(187), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(185), - [anon_sym_BSLASHsection] = ACTIONS(187), - [anon_sym_BSLASHsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddsec] = ACTIONS(187), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHparagraph] = ACTIONS(187), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph] = ACTIONS(187), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHitem] = ACTIONS(187), - [anon_sym_BSLASHitem_STAR] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHend] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [10] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddpart] = ACTIONS(145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHchapter] = ACTIONS(145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddchap] = ACTIONS(145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), - [anon_sym_BSLASHsection] = ACTIONS(145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddsec] = ACTIONS(145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHparagraph] = ACTIONS(145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHitem] = ACTIONS(145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASH_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [11] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(187), - [anon_sym_BSLASHpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddpart] = ACTIONS(187), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHchapter] = ACTIONS(187), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddchap] = ACTIONS(187), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(185), - [anon_sym_BSLASHsection] = ACTIONS(187), - [anon_sym_BSLASHsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddsec] = ACTIONS(187), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHparagraph] = ACTIONS(187), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph] = ACTIONS(187), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHitem] = ACTIONS(187), - [anon_sym_BSLASHitem_STAR] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASH_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [12] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHend] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [13] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(195), - [anon_sym_BSLASHpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddpart] = ACTIONS(195), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(195), - [anon_sym_BSLASHsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddsec] = ACTIONS(195), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHparagraph] = ACTIONS(195), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubparagraph] = ACTIONS(195), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHitem] = ACTIONS(195), - [anon_sym_BSLASHitem_STAR] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHright] = ACTIONS(195), - [anon_sym_BSLASHbigr] = ACTIONS(195), - [anon_sym_BSLASHBigr] = ACTIONS(195), - [anon_sym_BSLASHbiggr] = ACTIONS(195), - [anon_sym_BSLASHBiggr] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [14] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [15] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddpart] = ACTIONS(145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHchapter] = ACTIONS(145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddchap] = ACTIONS(145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), - [anon_sym_BSLASHsection] = ACTIONS(145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddsec] = ACTIONS(145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHparagraph] = ACTIONS(145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHitem] = ACTIONS(145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHend] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [16] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(187), - [anon_sym_BSLASHpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddpart] = ACTIONS(187), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHchapter] = ACTIONS(187), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddchap] = ACTIONS(187), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(185), - [anon_sym_BSLASHsection] = ACTIONS(187), - [anon_sym_BSLASHsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddsec] = ACTIONS(187), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHparagraph] = ACTIONS(187), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph] = ACTIONS(187), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHitem] = ACTIONS(187), - [anon_sym_BSLASHitem_STAR] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_BSLASH_RBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [17] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(199), - [anon_sym_BSLASHpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddpart] = ACTIONS(199), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHchapter] = ACTIONS(199), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddchap] = ACTIONS(199), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHparagraph] = ACTIONS(199), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubparagraph] = ACTIONS(199), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHitem] = ACTIONS(199), - [anon_sym_BSLASHitem_STAR] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHright] = ACTIONS(199), - [anon_sym_BSLASHbigr] = ACTIONS(199), - [anon_sym_BSLASHBigr] = ACTIONS(199), - [anon_sym_BSLASHbiggr] = ACTIONS(199), - [anon_sym_BSLASHBiggr] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [18] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [19] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [20] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddpart] = ACTIONS(205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHchapter] = ACTIONS(205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddchap] = ACTIONS(205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(207), - [anon_sym_BSLASHsection] = ACTIONS(205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddsec] = ACTIONS(205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHitem] = ACTIONS(205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHright] = ACTIONS(205), - [anon_sym_BSLASHbigr] = ACTIONS(205), - [anon_sym_BSLASHBigr] = ACTIONS(205), - [anon_sym_BSLASHbiggr] = ACTIONS(205), - [anon_sym_BSLASHBiggr] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [21] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [22] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(28), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(28), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(28), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(28), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(28), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_title_declaration] = STATE(28), - [sym_author_declaration] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_math_delimiter] = STATE(28), - [sym_paired_delimiter_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [sym_text_mode] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(287), - [anon_sym_BSLASHBig] = ACTIONS(287), - [anon_sym_BSLASHbigg] = ACTIONS(287), - [anon_sym_BSLASHBigg] = ACTIONS(287), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(289), - [anon_sym_BSLASHbigr] = ACTIONS(289), - [anon_sym_BSLASHBigr] = ACTIONS(289), - [anon_sym_BSLASHbiggr] = ACTIONS(289), - [anon_sym_BSLASHBiggr] = ACTIONS(289), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [23] = { - [sym_block_comment] = STATE(49), - [sym__root_content] = STATE(49), - [sym__flat_content] = STATE(49), - [sym__text_with_env_content] = STATE(49), - [sym__text_content] = STATE(49), - [sym__section] = STATE(49), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(49), - [sym_text] = STATE(49), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(49), - [sym_inline_formula] = STATE(49), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(49), - [sym_comment_environment] = STATE(49), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(49), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(49), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(49), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(49), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(49), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(49), - [sym_generic_command] = STATE(49), - [sym_title_declaration] = STATE(49), - [sym_author_declaration] = STATE(49), - [sym_package_include] = STATE(49), - [sym_class_include] = STATE(49), - [sym_latex_include] = STATE(49), - [sym_biblatex_include] = STATE(49), - [sym_bibtex_include] = STATE(49), - [sym_graphics_include] = STATE(49), - [sym_svg_include] = STATE(49), - [sym_inkscape_include] = STATE(49), - [sym_verbatim_include] = STATE(49), - [sym_import_include] = STATE(49), - [sym_caption] = STATE(49), - [sym_citation] = STATE(49), - [sym_label_definition] = STATE(49), - [sym_label_reference] = STATE(49), - [sym_label_reference_range] = STATE(49), - [sym_label_number] = STATE(49), - [sym_new_command_definition] = STATE(49), - [sym_old_command_definition] = STATE(49), - [sym_let_command_definition] = STATE(49), - [sym_math_delimiter] = STATE(49), - [sym_paired_delimiter_definition] = STATE(49), - [sym_environment_definition] = STATE(49), - [sym_glossary_entry_definition] = STATE(49), - [sym_glossary_entry_reference] = STATE(49), - [sym_acronym_definition] = STATE(49), - [sym_acronym_reference] = STATE(49), - [sym_theorem_definition] = STATE(49), - [sym_color_definition] = STATE(49), - [sym_color_set_definition] = STATE(49), - [sym_color_reference] = STATE(49), - [sym_tikz_library_import] = STATE(49), - [sym_text_mode] = STATE(49), - [aux_sym_source_file_repeat1] = STATE(49), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(317), - [anon_sym_RBRACK] = ACTIONS(317), - [anon_sym_COMMA] = ACTIONS(317), - [anon_sym_EQ] = ACTIONS(317), - [anon_sym_LPAREN] = ACTIONS(317), - [anon_sym_RPAREN] = ACTIONS(317), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(319), - [anon_sym_BSLASHBig] = ACTIONS(319), - [anon_sym_BSLASHbigg] = ACTIONS(319), - [anon_sym_BSLASHBigg] = ACTIONS(319), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(321), - [anon_sym_BSLASHbigr] = ACTIONS(321), - [anon_sym_BSLASHBigr] = ACTIONS(321), - [anon_sym_BSLASHbiggr] = ACTIONS(321), - [anon_sym_BSLASHBiggr] = ACTIONS(321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [24] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [25] = { - [sym_block_comment] = STATE(29), - [sym__root_content] = STATE(29), - [sym__flat_content] = STATE(29), - [sym__text_with_env_content] = STATE(29), - [sym__text_content] = STATE(29), - [sym__section] = STATE(29), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(29), - [sym_text] = STATE(29), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(29), - [sym_inline_formula] = STATE(29), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(29), - [sym_comment_environment] = STATE(29), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(29), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(29), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(29), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(29), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(29), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(29), - [sym_generic_command] = STATE(29), - [sym_title_declaration] = STATE(29), - [sym_author_declaration] = STATE(29), - [sym_package_include] = STATE(29), - [sym_class_include] = STATE(29), - [sym_latex_include] = STATE(29), - [sym_biblatex_include] = STATE(29), - [sym_bibtex_include] = STATE(29), - [sym_graphics_include] = STATE(29), - [sym_svg_include] = STATE(29), - [sym_inkscape_include] = STATE(29), - [sym_verbatim_include] = STATE(29), - [sym_import_include] = STATE(29), - [sym_caption] = STATE(29), - [sym_citation] = STATE(29), - [sym_label_definition] = STATE(29), - [sym_label_reference] = STATE(29), - [sym_label_reference_range] = STATE(29), - [sym_label_number] = STATE(29), - [sym_new_command_definition] = STATE(29), - [sym_old_command_definition] = STATE(29), - [sym_let_command_definition] = STATE(29), - [sym_math_delimiter] = STATE(29), - [sym_paired_delimiter_definition] = STATE(29), - [sym_environment_definition] = STATE(29), - [sym_glossary_entry_definition] = STATE(29), - [sym_glossary_entry_reference] = STATE(29), - [sym_acronym_definition] = STATE(29), - [sym_acronym_reference] = STATE(29), - [sym_theorem_definition] = STATE(29), - [sym_color_definition] = STATE(29), - [sym_color_set_definition] = STATE(29), - [sym_color_reference] = STATE(29), - [sym_tikz_library_import] = STATE(29), - [sym_text_mode] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(323), - [anon_sym_RBRACK] = ACTIONS(323), - [anon_sym_COMMA] = ACTIONS(323), - [anon_sym_EQ] = ACTIONS(323), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_RPAREN] = ACTIONS(323), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(325), - [anon_sym_BSLASHBig] = ACTIONS(325), - [anon_sym_BSLASHbigg] = ACTIONS(325), - [anon_sym_BSLASHBigg] = ACTIONS(325), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(327), - [anon_sym_BSLASHbigr] = ACTIONS(327), - [anon_sym_BSLASHBigr] = ACTIONS(327), - [anon_sym_BSLASHbiggr] = ACTIONS(327), - [anon_sym_BSLASHBiggr] = ACTIONS(327), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [26] = { - [sym_block_comment] = STATE(33), - [sym__root_content] = STATE(33), - [sym__flat_content] = STATE(33), - [sym__text_with_env_content] = STATE(33), - [sym__text_content] = STATE(33), - [sym__section] = STATE(33), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(33), - [sym_text] = STATE(33), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(33), - [sym_inline_formula] = STATE(33), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(33), - [sym_comment_environment] = STATE(33), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(33), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(33), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(33), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(33), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(33), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(33), - [sym_generic_command] = STATE(33), - [sym_title_declaration] = STATE(33), - [sym_author_declaration] = STATE(33), - [sym_package_include] = STATE(33), - [sym_class_include] = STATE(33), - [sym_latex_include] = STATE(33), - [sym_biblatex_include] = STATE(33), - [sym_bibtex_include] = STATE(33), - [sym_graphics_include] = STATE(33), - [sym_svg_include] = STATE(33), - [sym_inkscape_include] = STATE(33), - [sym_verbatim_include] = STATE(33), - [sym_import_include] = STATE(33), - [sym_caption] = STATE(33), - [sym_citation] = STATE(33), - [sym_label_definition] = STATE(33), - [sym_label_reference] = STATE(33), - [sym_label_reference_range] = STATE(33), - [sym_label_number] = STATE(33), - [sym_new_command_definition] = STATE(33), - [sym_old_command_definition] = STATE(33), - [sym_let_command_definition] = STATE(33), - [sym_math_delimiter] = STATE(33), - [sym_paired_delimiter_definition] = STATE(33), - [sym_environment_definition] = STATE(33), - [sym_glossary_entry_definition] = STATE(33), - [sym_glossary_entry_reference] = STATE(33), - [sym_acronym_definition] = STATE(33), - [sym_acronym_reference] = STATE(33), - [sym_theorem_definition] = STATE(33), - [sym_color_definition] = STATE(33), - [sym_color_set_definition] = STATE(33), - [sym_color_reference] = STATE(33), - [sym_tikz_library_import] = STATE(33), - [sym_text_mode] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(329), - [anon_sym_RBRACK] = ACTIONS(329), - [anon_sym_COMMA] = ACTIONS(329), - [anon_sym_EQ] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(329), - [anon_sym_RPAREN] = ACTIONS(329), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(331), - [anon_sym_BSLASHBig] = ACTIONS(331), - [anon_sym_BSLASHbigg] = ACTIONS(331), - [anon_sym_BSLASHBigg] = ACTIONS(331), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(333), - [anon_sym_BSLASHbigr] = ACTIONS(333), - [anon_sym_BSLASHBigr] = ACTIONS(333), - [anon_sym_BSLASHbiggr] = ACTIONS(333), - [anon_sym_BSLASHBiggr] = ACTIONS(333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [27] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(28), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(28), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(28), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(28), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(28), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_title_declaration] = STATE(28), - [sym_author_declaration] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_math_delimiter] = STATE(28), - [sym_paired_delimiter_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [sym_text_mode] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(335), - [anon_sym_BSLASHBig] = ACTIONS(335), - [anon_sym_BSLASHbigg] = ACTIONS(335), - [anon_sym_BSLASHBigg] = ACTIONS(335), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(337), - [anon_sym_BSLASHbigr] = ACTIONS(337), - [anon_sym_BSLASHBigr] = ACTIONS(337), - [anon_sym_BSLASHbiggr] = ACTIONS(337), - [anon_sym_BSLASHBiggr] = ACTIONS(337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [28] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(28), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(28), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(28), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(28), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(28), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_title_declaration] = STATE(28), - [sym_author_declaration] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_math_delimiter] = STATE(28), - [sym_paired_delimiter_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [sym_text_mode] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(339), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(342), - [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_RBRACK] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(345), - [anon_sym_EQ] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(345), - [anon_sym_BSLASHpart] = ACTIONS(348), - [anon_sym_BSLASHpart_STAR] = ACTIONS(351), - [anon_sym_BSLASHaddpart] = ACTIONS(348), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(351), - [anon_sym_BSLASHchapter] = ACTIONS(354), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(357), - [anon_sym_BSLASHaddchap] = ACTIONS(354), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(357), - [anon_sym_BSLASHsection] = ACTIONS(360), - [anon_sym_BSLASHsection_STAR] = ACTIONS(363), - [anon_sym_BSLASHaddsec] = ACTIONS(360), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(363), - [anon_sym_BSLASHsubsection] = ACTIONS(366), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(369), - [anon_sym_BSLASHsubsubsection] = ACTIONS(372), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(375), - [anon_sym_BSLASHparagraph] = ACTIONS(378), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(381), - [anon_sym_BSLASHsubparagraph] = ACTIONS(384), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(387), - [anon_sym_BSLASHitem] = ACTIONS(390), - [anon_sym_BSLASHitem_STAR] = ACTIONS(393), - [anon_sym_LBRACE] = ACTIONS(396), - [sym_word] = ACTIONS(399), - [sym_placeholder] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(405), - [anon_sym_DASH] = ACTIONS(405), - [anon_sym_STAR] = ACTIONS(405), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_LT] = ACTIONS(408), - [anon_sym_GT] = ACTIONS(408), - [anon_sym_BANG] = ACTIONS(408), - [anon_sym_PIPE] = ACTIONS(408), - [anon_sym_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(408), - [anon_sym__] = ACTIONS(411), - [anon_sym_CARET] = ACTIONS(414), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(420), - [anon_sym_BSLASH_LPAREN] = ACTIONS(423), - [anon_sym_BSLASHbegin] = ACTIONS(426), - [anon_sym_BSLASHtitle] = ACTIONS(429), - [anon_sym_BSLASHauthor] = ACTIONS(432), - [anon_sym_BSLASHusepackage] = ACTIONS(435), - [anon_sym_BSLASHRequirePackage] = ACTIONS(435), - [anon_sym_BSLASHdocumentclass] = ACTIONS(438), - [anon_sym_BSLASHinclude] = ACTIONS(441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(441), - [anon_sym_BSLASHinput] = ACTIONS(441), - [anon_sym_BSLASHsubfile] = ACTIONS(441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(444), - [anon_sym_BSLASHbibliography] = ACTIONS(447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(450), - [anon_sym_BSLASHincludesvg] = ACTIONS(453), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(456), - [anon_sym_BSLASHverbatiminput] = ACTIONS(459), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(459), - [anon_sym_BSLASHimport] = ACTIONS(462), - [anon_sym_BSLASHsubimport] = ACTIONS(462), - [anon_sym_BSLASHinputfrom] = ACTIONS(462), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(462), - [anon_sym_BSLASHincludefrom] = ACTIONS(462), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(462), - [anon_sym_BSLASHcaption] = ACTIONS(465), - [anon_sym_BSLASHcite] = ACTIONS(468), - [anon_sym_BSLASHcite_STAR] = ACTIONS(471), - [anon_sym_BSLASHCite] = ACTIONS(468), - [anon_sym_BSLASHnocite] = ACTIONS(468), - [anon_sym_BSLASHcitet] = ACTIONS(468), - [anon_sym_BSLASHcitep] = ACTIONS(468), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(471), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(471), - [anon_sym_BSLASHciteauthor] = ACTIONS(468), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(471), - [anon_sym_BSLASHCiteauthor] = ACTIONS(468), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(471), - [anon_sym_BSLASHcitetitle] = ACTIONS(468), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(471), - [anon_sym_BSLASHciteyear] = ACTIONS(468), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(471), - [anon_sym_BSLASHcitedate] = ACTIONS(468), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(471), - [anon_sym_BSLASHciteurl] = ACTIONS(468), - [anon_sym_BSLASHfullcite] = ACTIONS(468), - [anon_sym_BSLASHciteyearpar] = ACTIONS(468), - [anon_sym_BSLASHcitealt] = ACTIONS(468), - [anon_sym_BSLASHcitealp] = ACTIONS(468), - [anon_sym_BSLASHcitetext] = ACTIONS(468), - [anon_sym_BSLASHparencite] = ACTIONS(468), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(471), - [anon_sym_BSLASHParencite] = ACTIONS(468), - [anon_sym_BSLASHfootcite] = ACTIONS(468), - [anon_sym_BSLASHfootfullcite] = ACTIONS(468), - [anon_sym_BSLASHfootcitetext] = ACTIONS(468), - [anon_sym_BSLASHtextcite] = ACTIONS(468), - [anon_sym_BSLASHTextcite] = ACTIONS(468), - [anon_sym_BSLASHsmartcite] = ACTIONS(468), - [anon_sym_BSLASHSmartcite] = ACTIONS(468), - [anon_sym_BSLASHsupercite] = ACTIONS(468), - [anon_sym_BSLASHautocite] = ACTIONS(468), - [anon_sym_BSLASHAutocite] = ACTIONS(468), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(471), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(471), - [anon_sym_BSLASHvolcite] = ACTIONS(468), - [anon_sym_BSLASHVolcite] = ACTIONS(468), - [anon_sym_BSLASHpvolcite] = ACTIONS(468), - [anon_sym_BSLASHPvolcite] = ACTIONS(468), - [anon_sym_BSLASHfvolcite] = ACTIONS(468), - [anon_sym_BSLASHftvolcite] = ACTIONS(468), - [anon_sym_BSLASHsvolcite] = ACTIONS(468), - [anon_sym_BSLASHSvolcite] = ACTIONS(468), - [anon_sym_BSLASHtvolcite] = ACTIONS(468), - [anon_sym_BSLASHTvolcite] = ACTIONS(468), - [anon_sym_BSLASHavolcite] = ACTIONS(468), - [anon_sym_BSLASHAvolcite] = ACTIONS(468), - [anon_sym_BSLASHnotecite] = ACTIONS(468), - [anon_sym_BSLASHNotecite] = ACTIONS(468), - [anon_sym_BSLASHpnotecite] = ACTIONS(468), - [anon_sym_BSLASHPnotecite] = ACTIONS(468), - [anon_sym_BSLASHfnotecite] = ACTIONS(468), - [anon_sym_BSLASHlabel] = ACTIONS(474), - [anon_sym_BSLASHref] = ACTIONS(477), - [anon_sym_BSLASHeqref] = ACTIONS(477), - [anon_sym_BSLASHvref] = ACTIONS(477), - [anon_sym_BSLASHVref] = ACTIONS(477), - [anon_sym_BSLASHautoref] = ACTIONS(477), - [anon_sym_BSLASHpageref] = ACTIONS(477), - [anon_sym_BSLASHcref] = ACTIONS(477), - [anon_sym_BSLASHCref] = ACTIONS(477), - [anon_sym_BSLASHcref_STAR] = ACTIONS(480), - [anon_sym_BSLASHCref_STAR] = ACTIONS(480), - [anon_sym_BSLASHnamecref] = ACTIONS(477), - [anon_sym_BSLASHnameCref] = ACTIONS(477), - [anon_sym_BSLASHlcnamecref] = ACTIONS(477), - [anon_sym_BSLASHnamecrefs] = ACTIONS(477), - [anon_sym_BSLASHnameCrefs] = ACTIONS(477), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(477), - [anon_sym_BSLASHlabelcref] = ACTIONS(477), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(477), - [anon_sym_BSLASHcrefrange] = ACTIONS(483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(486), - [anon_sym_BSLASHCrefrange] = ACTIONS(483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(486), - [anon_sym_BSLASHnewlabel] = ACTIONS(489), - [anon_sym_BSLASHnewcommand] = ACTIONS(492), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(495), - [anon_sym_BSLASHrenewcommand] = ACTIONS(492), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(495), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(492), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(495), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(492), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(495), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(492), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(492), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(492), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(492), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(492), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(492), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(492), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(492), - [anon_sym_BSLASHdef] = ACTIONS(498), - [anon_sym_BSLASHlet] = ACTIONS(501), - [anon_sym_BSLASHleft] = ACTIONS(504), - [anon_sym_BSLASHbig] = ACTIONS(504), - [anon_sym_BSLASHBig] = ACTIONS(504), - [anon_sym_BSLASHbigg] = ACTIONS(504), - [anon_sym_BSLASHBigg] = ACTIONS(504), - [anon_sym_BSLASHbigl] = ACTIONS(504), - [anon_sym_BSLASHBigl] = ACTIONS(504), - [anon_sym_BSLASHbiggl] = ACTIONS(504), - [anon_sym_BSLASHBiggl] = ACTIONS(504), - [anon_sym_BSLASHright] = ACTIONS(507), - [anon_sym_BSLASHbigr] = ACTIONS(507), - [anon_sym_BSLASHBigr] = ACTIONS(507), - [anon_sym_BSLASHbiggr] = ACTIONS(507), - [anon_sym_BSLASHBiggr] = ACTIONS(507), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(509), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(509), - [anon_sym_BSLASHnewenvironment] = ACTIONS(512), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(512), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(512), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(512), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(512), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(512), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(515), - [anon_sym_BSLASHgls] = ACTIONS(518), - [anon_sym_BSLASHGls] = ACTIONS(518), - [anon_sym_BSLASHGLS] = ACTIONS(518), - [anon_sym_BSLASHglspl] = ACTIONS(518), - [anon_sym_BSLASHGlspl] = ACTIONS(518), - [anon_sym_BSLASHGLSpl] = ACTIONS(518), - [anon_sym_BSLASHglsdisp] = ACTIONS(518), - [anon_sym_BSLASHglslink] = ACTIONS(518), - [anon_sym_BSLASHglstext] = ACTIONS(518), - [anon_sym_BSLASHGlstext] = ACTIONS(518), - [anon_sym_BSLASHGLStext] = ACTIONS(518), - [anon_sym_BSLASHglsfirst] = ACTIONS(518), - [anon_sym_BSLASHGlsfirst] = ACTIONS(518), - [anon_sym_BSLASHGLSfirst] = ACTIONS(518), - [anon_sym_BSLASHglsplural] = ACTIONS(518), - [anon_sym_BSLASHGlsplural] = ACTIONS(518), - [anon_sym_BSLASHGLSplural] = ACTIONS(518), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(518), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(518), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(518), - [anon_sym_BSLASHglsname] = ACTIONS(518), - [anon_sym_BSLASHGlsname] = ACTIONS(518), - [anon_sym_BSLASHGLSname] = ACTIONS(518), - [anon_sym_BSLASHglssymbol] = ACTIONS(518), - [anon_sym_BSLASHGlssymbol] = ACTIONS(518), - [anon_sym_BSLASHglsdesc] = ACTIONS(518), - [anon_sym_BSLASHGlsdesc] = ACTIONS(518), - [anon_sym_BSLASHGLSdesc] = ACTIONS(518), - [anon_sym_BSLASHglsuseri] = ACTIONS(518), - [anon_sym_BSLASHGlsuseri] = ACTIONS(518), - [anon_sym_BSLASHGLSuseri] = ACTIONS(518), - [anon_sym_BSLASHglsuserii] = ACTIONS(518), - [anon_sym_BSLASHGlsuserii] = ACTIONS(518), - [anon_sym_BSLASHGLSuserii] = ACTIONS(518), - [anon_sym_BSLASHglsuseriii] = ACTIONS(518), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(518), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(518), - [anon_sym_BSLASHglsuseriv] = ACTIONS(518), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(518), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(518), - [anon_sym_BSLASHglsuserv] = ACTIONS(518), - [anon_sym_BSLASHGlsuserv] = ACTIONS(518), - [anon_sym_BSLASHGLSuserv] = ACTIONS(518), - [anon_sym_BSLASHglsuservi] = ACTIONS(518), - [anon_sym_BSLASHGlsuservi] = ACTIONS(518), - [anon_sym_BSLASHGLSuservi] = ACTIONS(518), - [anon_sym_BSLASHnewacronym] = ACTIONS(521), - [anon_sym_BSLASHacrshort] = ACTIONS(524), - [anon_sym_BSLASHAcrshort] = ACTIONS(524), - [anon_sym_BSLASHACRshort] = ACTIONS(524), - [anon_sym_BSLASHacrshortpl] = ACTIONS(524), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(524), - [anon_sym_BSLASHACRshortpl] = ACTIONS(524), - [anon_sym_BSLASHacrlong] = ACTIONS(524), - [anon_sym_BSLASHAcrlong] = ACTIONS(524), - [anon_sym_BSLASHACRlong] = ACTIONS(524), - [anon_sym_BSLASHacrlongpl] = ACTIONS(524), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(524), - [anon_sym_BSLASHACRlongpl] = ACTIONS(524), - [anon_sym_BSLASHacrfull] = ACTIONS(524), - [anon_sym_BSLASHAcrfull] = ACTIONS(524), - [anon_sym_BSLASHACRfull] = ACTIONS(524), - [anon_sym_BSLASHacrfullpl] = ACTIONS(524), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(524), - [anon_sym_BSLASHACRfullpl] = ACTIONS(524), - [anon_sym_BSLASHacs] = ACTIONS(524), - [anon_sym_BSLASHAcs] = ACTIONS(524), - [anon_sym_BSLASHacsp] = ACTIONS(524), - [anon_sym_BSLASHAcsp] = ACTIONS(524), - [anon_sym_BSLASHacl] = ACTIONS(524), - [anon_sym_BSLASHAcl] = ACTIONS(524), - [anon_sym_BSLASHaclp] = ACTIONS(524), - [anon_sym_BSLASHAclp] = ACTIONS(524), - [anon_sym_BSLASHacf] = ACTIONS(524), - [anon_sym_BSLASHAcf] = ACTIONS(524), - [anon_sym_BSLASHacfp] = ACTIONS(524), - [anon_sym_BSLASHAcfp] = ACTIONS(524), - [anon_sym_BSLASHac] = ACTIONS(524), - [anon_sym_BSLASHAc] = ACTIONS(524), - [anon_sym_BSLASHacp] = ACTIONS(524), - [anon_sym_BSLASHglsentrylong] = ACTIONS(524), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(524), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(524), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(524), - [anon_sym_BSLASHglsentryshort] = ACTIONS(524), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(524), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(524), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(524), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(524), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(524), - [anon_sym_BSLASHnewtheorem] = ACTIONS(527), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(530), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(527), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(530), - [anon_sym_BSLASHdefinecolor] = ACTIONS(533), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(536), - [anon_sym_BSLASHcolor] = ACTIONS(539), - [anon_sym_BSLASHcolorbox] = ACTIONS(539), - [anon_sym_BSLASHtextcolor] = ACTIONS(539), - [anon_sym_BSLASHpagecolor] = ACTIONS(539), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(542), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(542), - [anon_sym_BSLASHtext] = ACTIONS(545), - [anon_sym_BSLASHintertext] = ACTIONS(545), - [anon_sym_shortintertext] = ACTIONS(545), - }, - [29] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(28), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(28), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(28), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(28), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(28), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_title_declaration] = STATE(28), - [sym_author_declaration] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_math_delimiter] = STATE(28), - [sym_paired_delimiter_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [sym_text_mode] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(548), - [anon_sym_BSLASHBig] = ACTIONS(548), - [anon_sym_BSLASHbigg] = ACTIONS(548), - [anon_sym_BSLASHBigg] = ACTIONS(548), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(550), - [anon_sym_BSLASHbigr] = ACTIONS(550), - [anon_sym_BSLASHBigr] = ACTIONS(550), - [anon_sym_BSLASHbiggr] = ACTIONS(550), - [anon_sym_BSLASHBiggr] = ACTIONS(550), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [30] = { - [sym_block_comment] = STATE(39), - [sym__root_content] = STATE(39), - [sym__flat_content] = STATE(39), - [sym__text_with_env_content] = STATE(39), - [sym__text_content] = STATE(39), - [sym__section] = STATE(39), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(39), - [sym_text] = STATE(39), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(39), - [sym_inline_formula] = STATE(39), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(39), - [sym_comment_environment] = STATE(39), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(39), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(39), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(39), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(39), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(39), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(39), - [sym_generic_command] = STATE(39), - [sym_title_declaration] = STATE(39), - [sym_author_declaration] = STATE(39), - [sym_package_include] = STATE(39), - [sym_class_include] = STATE(39), - [sym_latex_include] = STATE(39), - [sym_biblatex_include] = STATE(39), - [sym_bibtex_include] = STATE(39), - [sym_graphics_include] = STATE(39), - [sym_svg_include] = STATE(39), - [sym_inkscape_include] = STATE(39), - [sym_verbatim_include] = STATE(39), - [sym_import_include] = STATE(39), - [sym_caption] = STATE(39), - [sym_citation] = STATE(39), - [sym_label_definition] = STATE(39), - [sym_label_reference] = STATE(39), - [sym_label_reference_range] = STATE(39), - [sym_label_number] = STATE(39), - [sym_new_command_definition] = STATE(39), - [sym_old_command_definition] = STATE(39), - [sym_let_command_definition] = STATE(39), - [sym_math_delimiter] = STATE(39), - [sym_paired_delimiter_definition] = STATE(39), - [sym_environment_definition] = STATE(39), - [sym_glossary_entry_definition] = STATE(39), - [sym_glossary_entry_reference] = STATE(39), - [sym_acronym_definition] = STATE(39), - [sym_acronym_reference] = STATE(39), - [sym_theorem_definition] = STATE(39), - [sym_color_definition] = STATE(39), - [sym_color_set_definition] = STATE(39), - [sym_color_reference] = STATE(39), - [sym_tikz_library_import] = STATE(39), - [sym_text_mode] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(39), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(552), - [anon_sym_RBRACK] = ACTIONS(552), - [anon_sym_COMMA] = ACTIONS(552), - [anon_sym_EQ] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_RPAREN] = ACTIONS(552), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(554), - [anon_sym_BSLASHBig] = ACTIONS(554), - [anon_sym_BSLASHbigg] = ACTIONS(554), - [anon_sym_BSLASHBigg] = ACTIONS(554), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(556), - [anon_sym_BSLASHbigr] = ACTIONS(556), - [anon_sym_BSLASHBigr] = ACTIONS(556), - [anon_sym_BSLASHbiggr] = ACTIONS(556), - [anon_sym_BSLASHBiggr] = ACTIONS(556), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [31] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(28), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(28), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(28), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(28), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(28), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_title_declaration] = STATE(28), - [sym_author_declaration] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_math_delimiter] = STATE(28), - [sym_paired_delimiter_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [sym_text_mode] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(558), - [anon_sym_BSLASHBig] = ACTIONS(558), - [anon_sym_BSLASHbigg] = ACTIONS(558), - [anon_sym_BSLASHBigg] = ACTIONS(558), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(560), - [anon_sym_BSLASHbigr] = ACTIONS(560), - [anon_sym_BSLASHBigr] = ACTIONS(560), - [anon_sym_BSLASHbiggr] = ACTIONS(560), - [anon_sym_BSLASHBiggr] = ACTIONS(560), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [32] = { - [sym_block_comment] = STATE(31), - [sym__root_content] = STATE(31), - [sym__flat_content] = STATE(31), - [sym__text_with_env_content] = STATE(31), - [sym__text_content] = STATE(31), - [sym__section] = STATE(31), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(31), - [sym_text] = STATE(31), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(31), - [sym_inline_formula] = STATE(31), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(31), - [sym_comment_environment] = STATE(31), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(31), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(31), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(31), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(31), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(31), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(31), - [sym_generic_command] = STATE(31), - [sym_title_declaration] = STATE(31), - [sym_author_declaration] = STATE(31), - [sym_package_include] = STATE(31), - [sym_class_include] = STATE(31), - [sym_latex_include] = STATE(31), - [sym_biblatex_include] = STATE(31), - [sym_bibtex_include] = STATE(31), - [sym_graphics_include] = STATE(31), - [sym_svg_include] = STATE(31), - [sym_inkscape_include] = STATE(31), - [sym_verbatim_include] = STATE(31), - [sym_import_include] = STATE(31), - [sym_caption] = STATE(31), - [sym_citation] = STATE(31), - [sym_label_definition] = STATE(31), - [sym_label_reference] = STATE(31), - [sym_label_reference_range] = STATE(31), - [sym_label_number] = STATE(31), - [sym_new_command_definition] = STATE(31), - [sym_old_command_definition] = STATE(31), - [sym_let_command_definition] = STATE(31), - [sym_math_delimiter] = STATE(31), - [sym_paired_delimiter_definition] = STATE(31), - [sym_environment_definition] = STATE(31), - [sym_glossary_entry_definition] = STATE(31), - [sym_glossary_entry_reference] = STATE(31), - [sym_acronym_definition] = STATE(31), - [sym_acronym_reference] = STATE(31), - [sym_theorem_definition] = STATE(31), - [sym_color_definition] = STATE(31), - [sym_color_set_definition] = STATE(31), - [sym_color_reference] = STATE(31), - [sym_tikz_library_import] = STATE(31), - [sym_text_mode] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_RBRACK] = ACTIONS(562), - [anon_sym_COMMA] = ACTIONS(562), - [anon_sym_EQ] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_RPAREN] = ACTIONS(562), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(564), - [anon_sym_BSLASHBig] = ACTIONS(564), - [anon_sym_BSLASHbigg] = ACTIONS(564), - [anon_sym_BSLASHBigg] = ACTIONS(564), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(321), - [anon_sym_BSLASHbigr] = ACTIONS(321), - [anon_sym_BSLASHBigr] = ACTIONS(321), - [anon_sym_BSLASHbiggr] = ACTIONS(321), - [anon_sym_BSLASHBiggr] = ACTIONS(321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [33] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(28), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(28), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(28), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(28), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(28), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_title_declaration] = STATE(28), - [sym_author_declaration] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_math_delimiter] = STATE(28), - [sym_paired_delimiter_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [sym_text_mode] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(566), - [anon_sym_BSLASHBig] = ACTIONS(566), - [anon_sym_BSLASHbigg] = ACTIONS(566), - [anon_sym_BSLASHBigg] = ACTIONS(566), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(568), - [anon_sym_BSLASHbigr] = ACTIONS(568), - [anon_sym_BSLASHBigr] = ACTIONS(568), - [anon_sym_BSLASHbiggr] = ACTIONS(568), - [anon_sym_BSLASHBiggr] = ACTIONS(568), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [34] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(28), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(28), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(28), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(28), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(28), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_title_declaration] = STATE(28), - [sym_author_declaration] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_math_delimiter] = STATE(28), - [sym_paired_delimiter_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [sym_text_mode] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(570), - [anon_sym_BSLASHBig] = ACTIONS(570), - [anon_sym_BSLASHbigg] = ACTIONS(570), - [anon_sym_BSLASHBigg] = ACTIONS(570), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(572), - [anon_sym_BSLASHbigr] = ACTIONS(572), - [anon_sym_BSLASHBigr] = ACTIONS(572), - [anon_sym_BSLASHbiggr] = ACTIONS(572), - [anon_sym_BSLASHBiggr] = ACTIONS(572), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [35] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(28), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(28), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(28), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(28), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(28), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_title_declaration] = STATE(28), - [sym_author_declaration] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_math_delimiter] = STATE(28), - [sym_paired_delimiter_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [sym_text_mode] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(574), - [anon_sym_BSLASHBig] = ACTIONS(574), - [anon_sym_BSLASHbigg] = ACTIONS(574), - [anon_sym_BSLASHBigg] = ACTIONS(574), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(576), - [anon_sym_BSLASHbigr] = ACTIONS(576), - [anon_sym_BSLASHBigr] = ACTIONS(576), - [anon_sym_BSLASHbiggr] = ACTIONS(576), - [anon_sym_BSLASHBiggr] = ACTIONS(576), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [36] = { - [sym_block_comment] = STATE(22), - [sym__root_content] = STATE(22), - [sym__flat_content] = STATE(22), - [sym__text_with_env_content] = STATE(22), - [sym__text_content] = STATE(22), - [sym__section] = STATE(22), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(22), - [sym_text] = STATE(22), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(22), - [sym_inline_formula] = STATE(22), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(22), - [sym_comment_environment] = STATE(22), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(22), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(22), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(22), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(22), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(22), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(22), - [sym_generic_command] = STATE(22), - [sym_title_declaration] = STATE(22), - [sym_author_declaration] = STATE(22), - [sym_package_include] = STATE(22), - [sym_class_include] = STATE(22), - [sym_latex_include] = STATE(22), - [sym_biblatex_include] = STATE(22), - [sym_bibtex_include] = STATE(22), - [sym_graphics_include] = STATE(22), - [sym_svg_include] = STATE(22), - [sym_inkscape_include] = STATE(22), - [sym_verbatim_include] = STATE(22), - [sym_import_include] = STATE(22), - [sym_caption] = STATE(22), - [sym_citation] = STATE(22), - [sym_label_definition] = STATE(22), - [sym_label_reference] = STATE(22), - [sym_label_reference_range] = STATE(22), - [sym_label_number] = STATE(22), - [sym_new_command_definition] = STATE(22), - [sym_old_command_definition] = STATE(22), - [sym_let_command_definition] = STATE(22), - [sym_math_delimiter] = STATE(22), - [sym_paired_delimiter_definition] = STATE(22), - [sym_environment_definition] = STATE(22), - [sym_glossary_entry_definition] = STATE(22), - [sym_glossary_entry_reference] = STATE(22), - [sym_acronym_definition] = STATE(22), - [sym_acronym_reference] = STATE(22), - [sym_theorem_definition] = STATE(22), - [sym_color_definition] = STATE(22), - [sym_color_set_definition] = STATE(22), - [sym_color_reference] = STATE(22), - [sym_tikz_library_import] = STATE(22), - [sym_text_mode] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(22), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_RBRACK] = ACTIONS(578), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(578), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(578), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(580), - [anon_sym_BSLASHBig] = ACTIONS(580), - [anon_sym_BSLASHbigg] = ACTIONS(580), - [anon_sym_BSLASHBigg] = ACTIONS(580), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(582), - [anon_sym_BSLASHbigr] = ACTIONS(582), - [anon_sym_BSLASHBigr] = ACTIONS(582), - [anon_sym_BSLASHbiggr] = ACTIONS(582), - [anon_sym_BSLASHBiggr] = ACTIONS(582), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [37] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(28), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(28), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(28), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(28), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(28), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_title_declaration] = STATE(28), - [sym_author_declaration] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_math_delimiter] = STATE(28), - [sym_paired_delimiter_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [sym_text_mode] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(584), - [anon_sym_BSLASHBig] = ACTIONS(584), - [anon_sym_BSLASHbigg] = ACTIONS(584), - [anon_sym_BSLASHBigg] = ACTIONS(584), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(560), - [anon_sym_BSLASHbigr] = ACTIONS(560), - [anon_sym_BSLASHBigr] = ACTIONS(560), - [anon_sym_BSLASHbiggr] = ACTIONS(560), - [anon_sym_BSLASHBiggr] = ACTIONS(560), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [38] = { - [sym_block_comment] = STATE(37), - [sym__root_content] = STATE(37), - [sym__flat_content] = STATE(37), - [sym__text_with_env_content] = STATE(37), - [sym__text_content] = STATE(37), - [sym__section] = STATE(37), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(37), - [sym_text] = STATE(37), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(37), - [sym_inline_formula] = STATE(37), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(37), - [sym_comment_environment] = STATE(37), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(37), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(37), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(37), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(37), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(37), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(37), - [sym_generic_command] = STATE(37), - [sym_title_declaration] = STATE(37), - [sym_author_declaration] = STATE(37), - [sym_package_include] = STATE(37), - [sym_class_include] = STATE(37), - [sym_latex_include] = STATE(37), - [sym_biblatex_include] = STATE(37), - [sym_bibtex_include] = STATE(37), - [sym_graphics_include] = STATE(37), - [sym_svg_include] = STATE(37), - [sym_inkscape_include] = STATE(37), - [sym_verbatim_include] = STATE(37), - [sym_import_include] = STATE(37), - [sym_caption] = STATE(37), - [sym_citation] = STATE(37), - [sym_label_definition] = STATE(37), - [sym_label_reference] = STATE(37), - [sym_label_reference_range] = STATE(37), - [sym_label_number] = STATE(37), - [sym_new_command_definition] = STATE(37), - [sym_old_command_definition] = STATE(37), - [sym_let_command_definition] = STATE(37), - [sym_math_delimiter] = STATE(37), - [sym_paired_delimiter_definition] = STATE(37), - [sym_environment_definition] = STATE(37), - [sym_glossary_entry_definition] = STATE(37), - [sym_glossary_entry_reference] = STATE(37), - [sym_acronym_definition] = STATE(37), - [sym_acronym_reference] = STATE(37), - [sym_theorem_definition] = STATE(37), - [sym_color_definition] = STATE(37), - [sym_color_set_definition] = STATE(37), - [sym_color_reference] = STATE(37), - [sym_tikz_library_import] = STATE(37), - [sym_text_mode] = STATE(37), - [aux_sym_source_file_repeat1] = STATE(37), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(586), - [anon_sym_RBRACK] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(586), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_LPAREN] = ACTIONS(586), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(588), - [anon_sym_BSLASHBig] = ACTIONS(588), - [anon_sym_BSLASHbigg] = ACTIONS(588), - [anon_sym_BSLASHBigg] = ACTIONS(588), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(321), - [anon_sym_BSLASHbigr] = ACTIONS(321), - [anon_sym_BSLASHBigr] = ACTIONS(321), - [anon_sym_BSLASHbiggr] = ACTIONS(321), - [anon_sym_BSLASHBiggr] = ACTIONS(321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [39] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(28), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(28), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(28), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(28), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(28), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_title_declaration] = STATE(28), - [sym_author_declaration] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_math_delimiter] = STATE(28), - [sym_paired_delimiter_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [sym_text_mode] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(590), - [anon_sym_BSLASHBig] = ACTIONS(590), - [anon_sym_BSLASHbigg] = ACTIONS(590), - [anon_sym_BSLASHBigg] = ACTIONS(590), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(592), - [anon_sym_BSLASHbigr] = ACTIONS(592), - [anon_sym_BSLASHBigr] = ACTIONS(592), - [anon_sym_BSLASHbiggr] = ACTIONS(592), - [anon_sym_BSLASHBiggr] = ACTIONS(592), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [40] = { - [sym_block_comment] = STATE(35), - [sym__root_content] = STATE(35), - [sym__flat_content] = STATE(35), - [sym__text_with_env_content] = STATE(35), - [sym__text_content] = STATE(35), - [sym__section] = STATE(35), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(35), - [sym_text] = STATE(35), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(35), - [sym_inline_formula] = STATE(35), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(35), - [sym_comment_environment] = STATE(35), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(35), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(35), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(35), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(35), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(35), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(35), - [sym_generic_command] = STATE(35), - [sym_title_declaration] = STATE(35), - [sym_author_declaration] = STATE(35), - [sym_package_include] = STATE(35), - [sym_class_include] = STATE(35), - [sym_latex_include] = STATE(35), - [sym_biblatex_include] = STATE(35), - [sym_bibtex_include] = STATE(35), - [sym_graphics_include] = STATE(35), - [sym_svg_include] = STATE(35), - [sym_inkscape_include] = STATE(35), - [sym_verbatim_include] = STATE(35), - [sym_import_include] = STATE(35), - [sym_caption] = STATE(35), - [sym_citation] = STATE(35), - [sym_label_definition] = STATE(35), - [sym_label_reference] = STATE(35), - [sym_label_reference_range] = STATE(35), - [sym_label_number] = STATE(35), - [sym_new_command_definition] = STATE(35), - [sym_old_command_definition] = STATE(35), - [sym_let_command_definition] = STATE(35), - [sym_math_delimiter] = STATE(35), - [sym_paired_delimiter_definition] = STATE(35), - [sym_environment_definition] = STATE(35), - [sym_glossary_entry_definition] = STATE(35), - [sym_glossary_entry_reference] = STATE(35), - [sym_acronym_definition] = STATE(35), - [sym_acronym_reference] = STATE(35), - [sym_theorem_definition] = STATE(35), - [sym_color_definition] = STATE(35), - [sym_color_set_definition] = STATE(35), - [sym_color_reference] = STATE(35), - [sym_tikz_library_import] = STATE(35), - [sym_text_mode] = STATE(35), - [aux_sym_source_file_repeat1] = STATE(35), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_RBRACK] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(594), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(596), - [anon_sym_BSLASHBig] = ACTIONS(596), - [anon_sym_BSLASHbigg] = ACTIONS(596), - [anon_sym_BSLASHBigg] = ACTIONS(596), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(598), - [anon_sym_BSLASHbigr] = ACTIONS(598), - [anon_sym_BSLASHBigr] = ACTIONS(598), - [anon_sym_BSLASHbiggr] = ACTIONS(598), - [anon_sym_BSLASHBiggr] = ACTIONS(598), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [41] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [42] = { - [sym_block_comment] = STATE(34), - [sym__root_content] = STATE(34), - [sym__flat_content] = STATE(34), - [sym__text_with_env_content] = STATE(34), - [sym__text_content] = STATE(34), - [sym__section] = STATE(34), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(34), - [sym_text] = STATE(34), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(34), - [sym_inline_formula] = STATE(34), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(34), - [sym_comment_environment] = STATE(34), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(34), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(34), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(34), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(34), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(34), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(34), - [sym_generic_command] = STATE(34), - [sym_title_declaration] = STATE(34), - [sym_author_declaration] = STATE(34), - [sym_package_include] = STATE(34), - [sym_class_include] = STATE(34), - [sym_latex_include] = STATE(34), - [sym_biblatex_include] = STATE(34), - [sym_bibtex_include] = STATE(34), - [sym_graphics_include] = STATE(34), - [sym_svg_include] = STATE(34), - [sym_inkscape_include] = STATE(34), - [sym_verbatim_include] = STATE(34), - [sym_import_include] = STATE(34), - [sym_caption] = STATE(34), - [sym_citation] = STATE(34), - [sym_label_definition] = STATE(34), - [sym_label_reference] = STATE(34), - [sym_label_reference_range] = STATE(34), - [sym_label_number] = STATE(34), - [sym_new_command_definition] = STATE(34), - [sym_old_command_definition] = STATE(34), - [sym_let_command_definition] = STATE(34), - [sym_math_delimiter] = STATE(34), - [sym_paired_delimiter_definition] = STATE(34), - [sym_environment_definition] = STATE(34), - [sym_glossary_entry_definition] = STATE(34), - [sym_glossary_entry_reference] = STATE(34), - [sym_acronym_definition] = STATE(34), - [sym_acronym_reference] = STATE(34), - [sym_theorem_definition] = STATE(34), - [sym_color_definition] = STATE(34), - [sym_color_set_definition] = STATE(34), - [sym_color_reference] = STATE(34), - [sym_tikz_library_import] = STATE(34), - [sym_text_mode] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(34), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(600), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_COMMA] = ACTIONS(600), - [anon_sym_EQ] = ACTIONS(600), - [anon_sym_LPAREN] = ACTIONS(600), - [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(602), - [anon_sym_BSLASHBig] = ACTIONS(602), - [anon_sym_BSLASHbigg] = ACTIONS(602), - [anon_sym_BSLASHBigg] = ACTIONS(602), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(604), - [anon_sym_BSLASHbigr] = ACTIONS(604), - [anon_sym_BSLASHBigr] = ACTIONS(604), - [anon_sym_BSLASHbiggr] = ACTIONS(604), - [anon_sym_BSLASHBiggr] = ACTIONS(604), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [43] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(187), - [anon_sym_BSLASHpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddpart] = ACTIONS(187), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHchapter] = ACTIONS(187), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddchap] = ACTIONS(187), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(185), - [anon_sym_BSLASHsection] = ACTIONS(187), - [anon_sym_BSLASHsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddsec] = ACTIONS(187), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHparagraph] = ACTIONS(187), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph] = ACTIONS(187), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHitem] = ACTIONS(187), - [anon_sym_BSLASHitem_STAR] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHright] = ACTIONS(187), - [anon_sym_BSLASHbigr] = ACTIONS(187), - [anon_sym_BSLASHBigr] = ACTIONS(187), - [anon_sym_BSLASHbiggr] = ACTIONS(187), - [anon_sym_BSLASHBiggr] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [44] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(28), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(28), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(28), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(28), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(28), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_title_declaration] = STATE(28), - [sym_author_declaration] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_math_delimiter] = STATE(28), - [sym_paired_delimiter_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [sym_text_mode] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(606), - [anon_sym_BSLASHBig] = ACTIONS(606), - [anon_sym_BSLASHbigg] = ACTIONS(606), - [anon_sym_BSLASHBigg] = ACTIONS(606), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(608), - [anon_sym_BSLASHbigr] = ACTIONS(608), - [anon_sym_BSLASHBigr] = ACTIONS(608), - [anon_sym_BSLASHbiggr] = ACTIONS(608), - [anon_sym_BSLASHBiggr] = ACTIONS(608), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [45] = { - [sym_block_comment] = STATE(44), - [sym__root_content] = STATE(44), - [sym__flat_content] = STATE(44), - [sym__text_with_env_content] = STATE(44), - [sym__text_content] = STATE(44), - [sym__section] = STATE(44), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(44), - [sym_text] = STATE(44), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(44), - [sym_inline_formula] = STATE(44), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(44), - [sym_comment_environment] = STATE(44), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(44), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(44), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(44), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(44), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(44), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(44), - [sym_generic_command] = STATE(44), - [sym_title_declaration] = STATE(44), - [sym_author_declaration] = STATE(44), - [sym_package_include] = STATE(44), - [sym_class_include] = STATE(44), - [sym_latex_include] = STATE(44), - [sym_biblatex_include] = STATE(44), - [sym_bibtex_include] = STATE(44), - [sym_graphics_include] = STATE(44), - [sym_svg_include] = STATE(44), - [sym_inkscape_include] = STATE(44), - [sym_verbatim_include] = STATE(44), - [sym_import_include] = STATE(44), - [sym_caption] = STATE(44), - [sym_citation] = STATE(44), - [sym_label_definition] = STATE(44), - [sym_label_reference] = STATE(44), - [sym_label_reference_range] = STATE(44), - [sym_label_number] = STATE(44), - [sym_new_command_definition] = STATE(44), - [sym_old_command_definition] = STATE(44), - [sym_let_command_definition] = STATE(44), - [sym_math_delimiter] = STATE(44), - [sym_paired_delimiter_definition] = STATE(44), - [sym_environment_definition] = STATE(44), - [sym_glossary_entry_definition] = STATE(44), - [sym_glossary_entry_reference] = STATE(44), - [sym_acronym_definition] = STATE(44), - [sym_acronym_reference] = STATE(44), - [sym_theorem_definition] = STATE(44), - [sym_color_definition] = STATE(44), - [sym_color_set_definition] = STATE(44), - [sym_color_reference] = STATE(44), - [sym_tikz_library_import] = STATE(44), - [sym_text_mode] = STATE(44), - [aux_sym_source_file_repeat1] = STATE(44), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(610), - [anon_sym_RBRACK] = ACTIONS(610), - [anon_sym_COMMA] = ACTIONS(610), - [anon_sym_EQ] = ACTIONS(610), - [anon_sym_LPAREN] = ACTIONS(610), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(612), - [anon_sym_BSLASHBig] = ACTIONS(612), - [anon_sym_BSLASHbigg] = ACTIONS(612), - [anon_sym_BSLASHBigg] = ACTIONS(612), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(614), - [anon_sym_BSLASHbigr] = ACTIONS(614), - [anon_sym_BSLASHBigr] = ACTIONS(614), - [anon_sym_BSLASHbiggr] = ACTIONS(614), - [anon_sym_BSLASHBiggr] = ACTIONS(614), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [46] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddpart] = ACTIONS(145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHchapter] = ACTIONS(145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddchap] = ACTIONS(145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), - [anon_sym_BSLASHsection] = ACTIONS(145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddsec] = ACTIONS(145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHparagraph] = ACTIONS(145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHitem] = ACTIONS(145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHright] = ACTIONS(145), - [anon_sym_BSLASHbigr] = ACTIONS(145), - [anon_sym_BSLASHBigr] = ACTIONS(145), - [anon_sym_BSLASHbiggr] = ACTIONS(145), - [anon_sym_BSLASHBiggr] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [47] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [48] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(147), - [anon_sym_RBRACK] = ACTIONS(147), - [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_EQ] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(616), - [anon_sym_BSLASHBig] = ACTIONS(616), - [anon_sym_BSLASHbigg] = ACTIONS(616), - [anon_sym_BSLASHBigg] = ACTIONS(616), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [49] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(28), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(28), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(28), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(28), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(28), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_title_declaration] = STATE(28), - [sym_author_declaration] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_math_delimiter] = STATE(28), - [sym_paired_delimiter_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [sym_text_mode] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(213), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_COMMA] = ACTIONS(213), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_RPAREN] = ACTIONS(213), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(618), - [anon_sym_BSLASHBig] = ACTIONS(618), - [anon_sym_BSLASHbigg] = ACTIONS(618), - [anon_sym_BSLASHBigg] = ACTIONS(618), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(560), - [anon_sym_BSLASHbigr] = ACTIONS(560), - [anon_sym_BSLASHBigr] = ACTIONS(560), - [anon_sym_BSLASHbiggr] = ACTIONS(560), - [anon_sym_BSLASHBiggr] = ACTIONS(560), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [50] = { - [sym_block_comment] = STATE(27), - [sym__root_content] = STATE(27), - [sym__flat_content] = STATE(27), - [sym__text_with_env_content] = STATE(27), - [sym__text_content] = STATE(27), - [sym__section] = STATE(27), - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(367), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(368), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(369), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(370), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(371), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(373), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(374), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(375), - [sym_curly_group] = STATE(27), - [sym_text] = STATE(27), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(27), - [sym_inline_formula] = STATE(27), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(27), - [sym_comment_environment] = STATE(27), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(27), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(27), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(27), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(27), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(27), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(27), - [sym_generic_command] = STATE(27), - [sym_title_declaration] = STATE(27), - [sym_author_declaration] = STATE(27), - [sym_package_include] = STATE(27), - [sym_class_include] = STATE(27), - [sym_latex_include] = STATE(27), - [sym_biblatex_include] = STATE(27), - [sym_bibtex_include] = STATE(27), - [sym_graphics_include] = STATE(27), - [sym_svg_include] = STATE(27), - [sym_inkscape_include] = STATE(27), - [sym_verbatim_include] = STATE(27), - [sym_import_include] = STATE(27), - [sym_caption] = STATE(27), - [sym_citation] = STATE(27), - [sym_label_definition] = STATE(27), - [sym_label_reference] = STATE(27), - [sym_label_reference_range] = STATE(27), - [sym_label_number] = STATE(27), - [sym_new_command_definition] = STATE(27), - [sym_old_command_definition] = STATE(27), - [sym_let_command_definition] = STATE(27), - [sym_math_delimiter] = STATE(27), - [sym_paired_delimiter_definition] = STATE(27), - [sym_environment_definition] = STATE(27), - [sym_glossary_entry_definition] = STATE(27), - [sym_glossary_entry_reference] = STATE(27), - [sym_acronym_definition] = STATE(27), - [sym_acronym_reference] = STATE(27), - [sym_theorem_definition] = STATE(27), - [sym_color_definition] = STATE(27), - [sym_color_set_definition] = STATE(27), - [sym_color_reference] = STATE(27), - [sym_tikz_library_import] = STATE(27), - [sym_text_mode] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym__section_repeat1] = STATE(367), - [aux_sym__section_repeat2] = STATE(368), - [aux_sym__section_repeat3] = STATE(369), - [aux_sym__section_repeat4] = STATE(370), - [aux_sym__section_repeat5] = STATE(371), - [aux_sym__section_repeat6] = STATE(373), - [aux_sym__section_repeat7] = STATE(374), - [aux_sym__section_repeat8] = STATE(375), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHright] = ACTIONS(183), - [anon_sym_BSLASHbigr] = ACTIONS(183), - [anon_sym_BSLASHBigr] = ACTIONS(183), - [anon_sym_BSLASHbiggr] = ACTIONS(183), - [anon_sym_BSLASHBiggr] = ACTIONS(183), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [51] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_RBRACK] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(620), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_BSLASHand] = ACTIONS(199), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [52] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_RBRACK] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(197), - [anon_sym_BSLASHand] = ACTIONS(195), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [53] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_RBRACK] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(620), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_BSLASHand] = ACTIONS(205), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [54] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [ts_builtin_sym_end] = ACTIONS(201), - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(199), - [anon_sym_BSLASHpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddpart] = ACTIONS(199), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHchapter] = ACTIONS(199), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddchap] = ACTIONS(199), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHparagraph] = ACTIONS(199), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubparagraph] = ACTIONS(199), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHitem] = ACTIONS(199), - [anon_sym_BSLASHitem_STAR] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [55] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [ts_builtin_sym_end] = ACTIONS(197), - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(195), - [anon_sym_BSLASHpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddpart] = ACTIONS(195), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(195), - [anon_sym_BSLASHsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddsec] = ACTIONS(195), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHparagraph] = ACTIONS(195), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubparagraph] = ACTIONS(195), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHitem] = ACTIONS(195), - [anon_sym_BSLASHitem_STAR] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [56] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_RBRACK] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(191), - [anon_sym_BSLASHand] = ACTIONS(189), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [57] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [ts_builtin_sym_end] = ACTIONS(207), - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddpart] = ACTIONS(205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHchapter] = ACTIONS(205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddchap] = ACTIONS(205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(207), - [anon_sym_BSLASHsection] = ACTIONS(205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddsec] = ACTIONS(205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHitem] = ACTIONS(205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [58] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [ts_builtin_sym_end] = ACTIONS(191), - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddpart] = ACTIONS(189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddsec] = ACTIONS(189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHparagraph] = ACTIONS(189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [59] = { - [sym_block_comment] = STATE(79), - [sym__root_content] = STATE(79), - [sym__flat_content] = STATE(79), - [sym__text_with_env_content] = STATE(79), - [sym__text_content] = STATE(79), - [sym__section] = STATE(79), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(79), - [sym_text] = STATE(79), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(79), - [sym_inline_formula] = STATE(79), - [sym_begin] = STATE(93), - [sym_end] = STATE(1486), - [sym_generic_environment] = STATE(79), - [sym_comment_environment] = STATE(79), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(79), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(79), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(79), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(79), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(79), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(79), - [sym_generic_command] = STATE(79), - [sym_title_declaration] = STATE(79), - [sym_author_declaration] = STATE(79), - [sym_package_include] = STATE(79), - [sym_class_include] = STATE(79), - [sym_latex_include] = STATE(79), - [sym_biblatex_include] = STATE(79), - [sym_bibtex_include] = STATE(79), - [sym_graphics_include] = STATE(79), - [sym_svg_include] = STATE(79), - [sym_inkscape_include] = STATE(79), - [sym_verbatim_include] = STATE(79), - [sym_import_include] = STATE(79), - [sym_caption] = STATE(79), - [sym_citation] = STATE(79), - [sym_label_definition] = STATE(79), - [sym_label_reference] = STATE(79), - [sym_label_reference_range] = STATE(79), - [sym_label_number] = STATE(79), - [sym_new_command_definition] = STATE(79), - [sym_old_command_definition] = STATE(79), - [sym_let_command_definition] = STATE(79), - [sym_math_delimiter] = STATE(79), - [sym_paired_delimiter_definition] = STATE(79), - [sym_environment_definition] = STATE(79), - [sym_glossary_entry_definition] = STATE(79), - [sym_glossary_entry_reference] = STATE(79), - [sym_acronym_definition] = STATE(79), - [sym_acronym_reference] = STATE(79), - [sym_theorem_definition] = STATE(79), - [sym_color_definition] = STATE(79), - [sym_color_set_definition] = STATE(79), - [sym_color_reference] = STATE(79), - [sym_tikz_library_import] = STATE(79), - [sym_text_mode] = STATE(79), - [aux_sym_source_file_repeat1] = STATE(79), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(692), - [anon_sym_RBRACK] = ACTIONS(692), - [anon_sym_COMMA] = ACTIONS(692), - [anon_sym_EQ] = ACTIONS(692), - [anon_sym_LPAREN] = ACTIONS(692), - [anon_sym_RPAREN] = ACTIONS(692), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(746), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [60] = { - [sym_block_comment] = STATE(103), - [sym__root_content] = STATE(103), - [sym__flat_content] = STATE(103), - [sym__text_with_env_content] = STATE(103), - [sym__text_content] = STATE(103), - [sym__section] = STATE(103), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(103), - [sym_text] = STATE(103), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(103), - [sym_inline_formula] = STATE(103), - [sym_begin] = STATE(93), - [sym_end] = STATE(1710), - [sym_generic_environment] = STATE(103), - [sym_comment_environment] = STATE(103), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(103), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(103), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(103), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(103), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(103), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(103), - [sym_generic_command] = STATE(103), - [sym_title_declaration] = STATE(103), - [sym_author_declaration] = STATE(103), - [sym_package_include] = STATE(103), - [sym_class_include] = STATE(103), - [sym_latex_include] = STATE(103), - [sym_biblatex_include] = STATE(103), - [sym_bibtex_include] = STATE(103), - [sym_graphics_include] = STATE(103), - [sym_svg_include] = STATE(103), - [sym_inkscape_include] = STATE(103), - [sym_verbatim_include] = STATE(103), - [sym_import_include] = STATE(103), - [sym_caption] = STATE(103), - [sym_citation] = STATE(103), - [sym_label_definition] = STATE(103), - [sym_label_reference] = STATE(103), - [sym_label_reference_range] = STATE(103), - [sym_label_number] = STATE(103), - [sym_new_command_definition] = STATE(103), - [sym_old_command_definition] = STATE(103), - [sym_let_command_definition] = STATE(103), - [sym_math_delimiter] = STATE(103), - [sym_paired_delimiter_definition] = STATE(103), - [sym_environment_definition] = STATE(103), - [sym_glossary_entry_definition] = STATE(103), - [sym_glossary_entry_reference] = STATE(103), - [sym_acronym_definition] = STATE(103), - [sym_acronym_reference] = STATE(103), - [sym_theorem_definition] = STATE(103), - [sym_color_definition] = STATE(103), - [sym_color_set_definition] = STATE(103), - [sym_color_reference] = STATE(103), - [sym_tikz_library_import] = STATE(103), - [sym_text_mode] = STATE(103), - [aux_sym_source_file_repeat1] = STATE(103), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(826), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_COMMA] = ACTIONS(826), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(828), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [61] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [62] = { - [sym_block_comment] = STATE(103), - [sym__root_content] = STATE(103), - [sym__flat_content] = STATE(103), - [sym__text_with_env_content] = STATE(103), - [sym__text_content] = STATE(103), - [sym__section] = STATE(103), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(103), - [sym_text] = STATE(103), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(103), - [sym_inline_formula] = STATE(103), - [sym_begin] = STATE(93), - [sym_end] = STATE(1398), - [sym_generic_environment] = STATE(103), - [sym_comment_environment] = STATE(103), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(103), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(103), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(103), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(103), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(103), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(103), - [sym_generic_command] = STATE(103), - [sym_title_declaration] = STATE(103), - [sym_author_declaration] = STATE(103), - [sym_package_include] = STATE(103), - [sym_class_include] = STATE(103), - [sym_latex_include] = STATE(103), - [sym_biblatex_include] = STATE(103), - [sym_bibtex_include] = STATE(103), - [sym_graphics_include] = STATE(103), - [sym_svg_include] = STATE(103), - [sym_inkscape_include] = STATE(103), - [sym_verbatim_include] = STATE(103), - [sym_import_include] = STATE(103), - [sym_caption] = STATE(103), - [sym_citation] = STATE(103), - [sym_label_definition] = STATE(103), - [sym_label_reference] = STATE(103), - [sym_label_reference_range] = STATE(103), - [sym_label_number] = STATE(103), - [sym_new_command_definition] = STATE(103), - [sym_old_command_definition] = STATE(103), - [sym_let_command_definition] = STATE(103), - [sym_math_delimiter] = STATE(103), - [sym_paired_delimiter_definition] = STATE(103), - [sym_environment_definition] = STATE(103), - [sym_glossary_entry_definition] = STATE(103), - [sym_glossary_entry_reference] = STATE(103), - [sym_acronym_definition] = STATE(103), - [sym_acronym_reference] = STATE(103), - [sym_theorem_definition] = STATE(103), - [sym_color_definition] = STATE(103), - [sym_color_set_definition] = STATE(103), - [sym_color_reference] = STATE(103), - [sym_tikz_library_import] = STATE(103), - [sym_text_mode] = STATE(103), - [aux_sym_source_file_repeat1] = STATE(103), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(826), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_COMMA] = ACTIONS(826), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(830), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [63] = { - [sym_block_comment] = STATE(69), - [sym__root_content] = STATE(69), - [sym__flat_content] = STATE(69), - [sym__text_with_env_content] = STATE(69), - [sym__text_content] = STATE(69), - [sym__section] = STATE(69), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(69), - [sym_text] = STATE(69), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(69), - [sym_inline_formula] = STATE(69), - [sym_begin] = STATE(93), - [sym_end] = STATE(956), - [sym_generic_environment] = STATE(69), - [sym_comment_environment] = STATE(69), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(69), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(69), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(69), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(69), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(69), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(69), - [sym_generic_command] = STATE(69), - [sym_title_declaration] = STATE(69), - [sym_author_declaration] = STATE(69), - [sym_package_include] = STATE(69), - [sym_class_include] = STATE(69), - [sym_latex_include] = STATE(69), - [sym_biblatex_include] = STATE(69), - [sym_bibtex_include] = STATE(69), - [sym_graphics_include] = STATE(69), - [sym_svg_include] = STATE(69), - [sym_inkscape_include] = STATE(69), - [sym_verbatim_include] = STATE(69), - [sym_import_include] = STATE(69), - [sym_caption] = STATE(69), - [sym_citation] = STATE(69), - [sym_label_definition] = STATE(69), - [sym_label_reference] = STATE(69), - [sym_label_reference_range] = STATE(69), - [sym_label_number] = STATE(69), - [sym_new_command_definition] = STATE(69), - [sym_old_command_definition] = STATE(69), - [sym_let_command_definition] = STATE(69), - [sym_math_delimiter] = STATE(69), - [sym_paired_delimiter_definition] = STATE(69), - [sym_environment_definition] = STATE(69), - [sym_glossary_entry_definition] = STATE(69), - [sym_glossary_entry_reference] = STATE(69), - [sym_acronym_definition] = STATE(69), - [sym_acronym_reference] = STATE(69), - [sym_theorem_definition] = STATE(69), - [sym_color_definition] = STATE(69), - [sym_color_set_definition] = STATE(69), - [sym_color_reference] = STATE(69), - [sym_tikz_library_import] = STATE(69), - [sym_text_mode] = STATE(69), - [aux_sym_source_file_repeat1] = STATE(69), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(832), - [anon_sym_RBRACK] = ACTIONS(832), - [anon_sym_COMMA] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(832), - [anon_sym_LPAREN] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(834), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [64] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [65] = { - [sym_block_comment] = STATE(70), - [sym__root_content] = STATE(70), - [sym__flat_content] = STATE(70), - [sym__text_with_env_content] = STATE(70), - [sym__text_content] = STATE(70), - [sym__section] = STATE(70), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(70), - [sym_text] = STATE(70), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(70), - [sym_inline_formula] = STATE(70), - [sym_begin] = STATE(93), - [sym_end] = STATE(516), - [sym_generic_environment] = STATE(70), - [sym_comment_environment] = STATE(70), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(70), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(70), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(70), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(70), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(70), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(70), - [sym_generic_command] = STATE(70), - [sym_title_declaration] = STATE(70), - [sym_author_declaration] = STATE(70), - [sym_package_include] = STATE(70), - [sym_class_include] = STATE(70), - [sym_latex_include] = STATE(70), - [sym_biblatex_include] = STATE(70), - [sym_bibtex_include] = STATE(70), - [sym_graphics_include] = STATE(70), - [sym_svg_include] = STATE(70), - [sym_inkscape_include] = STATE(70), - [sym_verbatim_include] = STATE(70), - [sym_import_include] = STATE(70), - [sym_caption] = STATE(70), - [sym_citation] = STATE(70), - [sym_label_definition] = STATE(70), - [sym_label_reference] = STATE(70), - [sym_label_reference_range] = STATE(70), - [sym_label_number] = STATE(70), - [sym_new_command_definition] = STATE(70), - [sym_old_command_definition] = STATE(70), - [sym_let_command_definition] = STATE(70), - [sym_math_delimiter] = STATE(70), - [sym_paired_delimiter_definition] = STATE(70), - [sym_environment_definition] = STATE(70), - [sym_glossary_entry_definition] = STATE(70), - [sym_glossary_entry_reference] = STATE(70), - [sym_acronym_definition] = STATE(70), - [sym_acronym_reference] = STATE(70), - [sym_theorem_definition] = STATE(70), - [sym_color_definition] = STATE(70), - [sym_color_set_definition] = STATE(70), - [sym_color_reference] = STATE(70), - [sym_tikz_library_import] = STATE(70), - [sym_text_mode] = STATE(70), - [aux_sym_source_file_repeat1] = STATE(70), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_RBRACK] = ACTIONS(836), - [anon_sym_COMMA] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(836), - [anon_sym_LPAREN] = ACTIONS(836), - [anon_sym_RPAREN] = ACTIONS(836), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(838), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [66] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(66), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(66), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(66), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(66), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(66), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_title_declaration] = STATE(66), - [sym_author_declaration] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_math_delimiter] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(840), - [sym_command_name] = ACTIONS(842), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(845), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(848), - [anon_sym_COMMA] = ACTIONS(848), - [anon_sym_EQ] = ACTIONS(848), - [anon_sym_LPAREN] = ACTIONS(848), - [anon_sym_RPAREN] = ACTIONS(848), - [anon_sym_BSLASHpart] = ACTIONS(851), - [anon_sym_BSLASHpart_STAR] = ACTIONS(854), - [anon_sym_BSLASHaddpart] = ACTIONS(851), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(854), - [anon_sym_BSLASHchapter] = ACTIONS(857), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(860), - [anon_sym_BSLASHaddchap] = ACTIONS(857), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(860), - [anon_sym_BSLASHsection] = ACTIONS(863), - [anon_sym_BSLASHsection_STAR] = ACTIONS(866), - [anon_sym_BSLASHaddsec] = ACTIONS(863), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(866), - [anon_sym_BSLASHsubsection] = ACTIONS(869), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(872), - [anon_sym_BSLASHsubsubsection] = ACTIONS(875), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(878), - [anon_sym_BSLASHparagraph] = ACTIONS(881), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(887), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(890), - [anon_sym_BSLASHitem] = ACTIONS(893), - [anon_sym_BSLASHitem_STAR] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(840), - [sym_word] = ACTIONS(902), - [sym_placeholder] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(908), - [anon_sym_DASH] = ACTIONS(908), - [anon_sym_STAR] = ACTIONS(908), - [anon_sym_SLASH] = ACTIONS(908), - [anon_sym_LT] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_COLON] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(911), - [anon_sym__] = ACTIONS(914), - [anon_sym_CARET] = ACTIONS(917), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(920), - [anon_sym_BSLASH_LBRACK] = ACTIONS(920), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(926), - [anon_sym_BSLASHbegin] = ACTIONS(426), - [anon_sym_BSLASHtitle] = ACTIONS(929), - [anon_sym_BSLASHauthor] = ACTIONS(932), - [anon_sym_BSLASHusepackage] = ACTIONS(935), - [anon_sym_BSLASHRequirePackage] = ACTIONS(935), - [anon_sym_BSLASHdocumentclass] = ACTIONS(938), - [anon_sym_BSLASHinclude] = ACTIONS(941), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(941), - [anon_sym_BSLASHinput] = ACTIONS(941), - [anon_sym_BSLASHsubfile] = ACTIONS(941), - [anon_sym_BSLASHaddbibresource] = ACTIONS(944), - [anon_sym_BSLASHbibliography] = ACTIONS(947), - [anon_sym_BSLASHincludegraphics] = ACTIONS(950), - [anon_sym_BSLASHincludesvg] = ACTIONS(953), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(956), - [anon_sym_BSLASHverbatiminput] = ACTIONS(959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(959), - [anon_sym_BSLASHimport] = ACTIONS(962), - [anon_sym_BSLASHsubimport] = ACTIONS(962), - [anon_sym_BSLASHinputfrom] = ACTIONS(962), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(962), - [anon_sym_BSLASHincludefrom] = ACTIONS(962), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(962), - [anon_sym_BSLASHcaption] = ACTIONS(965), - [anon_sym_BSLASHcite] = ACTIONS(968), - [anon_sym_BSLASHcite_STAR] = ACTIONS(971), - [anon_sym_BSLASHCite] = ACTIONS(968), - [anon_sym_BSLASHnocite] = ACTIONS(968), - [anon_sym_BSLASHcitet] = ACTIONS(968), - [anon_sym_BSLASHcitep] = ACTIONS(968), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(971), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(971), - [anon_sym_BSLASHciteauthor] = ACTIONS(968), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(971), - [anon_sym_BSLASHCiteauthor] = ACTIONS(968), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(971), - [anon_sym_BSLASHcitetitle] = ACTIONS(968), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(971), - [anon_sym_BSLASHciteyear] = ACTIONS(968), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(971), - [anon_sym_BSLASHcitedate] = ACTIONS(968), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(971), - [anon_sym_BSLASHciteurl] = ACTIONS(968), - [anon_sym_BSLASHfullcite] = ACTIONS(968), - [anon_sym_BSLASHciteyearpar] = ACTIONS(968), - [anon_sym_BSLASHcitealt] = ACTIONS(968), - [anon_sym_BSLASHcitealp] = ACTIONS(968), - [anon_sym_BSLASHcitetext] = ACTIONS(968), - [anon_sym_BSLASHparencite] = ACTIONS(968), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(971), - [anon_sym_BSLASHParencite] = ACTIONS(968), - [anon_sym_BSLASHfootcite] = ACTIONS(968), - [anon_sym_BSLASHfootfullcite] = ACTIONS(968), - [anon_sym_BSLASHfootcitetext] = ACTIONS(968), - [anon_sym_BSLASHtextcite] = ACTIONS(968), - [anon_sym_BSLASHTextcite] = ACTIONS(968), - [anon_sym_BSLASHsmartcite] = ACTIONS(968), - [anon_sym_BSLASHSmartcite] = ACTIONS(968), - [anon_sym_BSLASHsupercite] = ACTIONS(968), - [anon_sym_BSLASHautocite] = ACTIONS(968), - [anon_sym_BSLASHAutocite] = ACTIONS(968), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(971), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(971), - [anon_sym_BSLASHvolcite] = ACTIONS(968), - [anon_sym_BSLASHVolcite] = ACTIONS(968), - [anon_sym_BSLASHpvolcite] = ACTIONS(968), - [anon_sym_BSLASHPvolcite] = ACTIONS(968), - [anon_sym_BSLASHfvolcite] = ACTIONS(968), - [anon_sym_BSLASHftvolcite] = ACTIONS(968), - [anon_sym_BSLASHsvolcite] = ACTIONS(968), - [anon_sym_BSLASHSvolcite] = ACTIONS(968), - [anon_sym_BSLASHtvolcite] = ACTIONS(968), - [anon_sym_BSLASHTvolcite] = ACTIONS(968), - [anon_sym_BSLASHavolcite] = ACTIONS(968), - [anon_sym_BSLASHAvolcite] = ACTIONS(968), - [anon_sym_BSLASHnotecite] = ACTIONS(968), - [anon_sym_BSLASHNotecite] = ACTIONS(968), - [anon_sym_BSLASHpnotecite] = ACTIONS(968), - [anon_sym_BSLASHPnotecite] = ACTIONS(968), - [anon_sym_BSLASHfnotecite] = ACTIONS(968), - [anon_sym_BSLASHlabel] = ACTIONS(974), - [anon_sym_BSLASHref] = ACTIONS(977), - [anon_sym_BSLASHeqref] = ACTIONS(977), - [anon_sym_BSLASHvref] = ACTIONS(977), - [anon_sym_BSLASHVref] = ACTIONS(977), - [anon_sym_BSLASHautoref] = ACTIONS(977), - [anon_sym_BSLASHpageref] = ACTIONS(977), - [anon_sym_BSLASHcref] = ACTIONS(977), - [anon_sym_BSLASHCref] = ACTIONS(977), - [anon_sym_BSLASHcref_STAR] = ACTIONS(980), - [anon_sym_BSLASHCref_STAR] = ACTIONS(980), - [anon_sym_BSLASHnamecref] = ACTIONS(977), - [anon_sym_BSLASHnameCref] = ACTIONS(977), - [anon_sym_BSLASHlcnamecref] = ACTIONS(977), - [anon_sym_BSLASHnamecrefs] = ACTIONS(977), - [anon_sym_BSLASHnameCrefs] = ACTIONS(977), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(977), - [anon_sym_BSLASHlabelcref] = ACTIONS(977), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(977), - [anon_sym_BSLASHcrefrange] = ACTIONS(983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(986), - [anon_sym_BSLASHCrefrange] = ACTIONS(983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(986), - [anon_sym_BSLASHnewlabel] = ACTIONS(989), - [anon_sym_BSLASHnewcommand] = ACTIONS(992), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(992), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(992), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(992), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(995), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(992), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(992), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(992), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(992), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(992), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(992), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(992), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(992), - [anon_sym_BSLASHdef] = ACTIONS(998), - [anon_sym_BSLASHlet] = ACTIONS(1001), - [anon_sym_BSLASHleft] = ACTIONS(1004), - [anon_sym_BSLASHbig] = ACTIONS(1004), - [anon_sym_BSLASHBig] = ACTIONS(1004), - [anon_sym_BSLASHbigg] = ACTIONS(1004), - [anon_sym_BSLASHBigg] = ACTIONS(1004), - [anon_sym_BSLASHbigl] = ACTIONS(1004), - [anon_sym_BSLASHBigl] = ACTIONS(1004), - [anon_sym_BSLASHbiggl] = ACTIONS(1004), - [anon_sym_BSLASHBiggl] = ACTIONS(1004), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1007), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1010), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1010), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1010), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1010), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1010), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1010), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1013), - [anon_sym_BSLASHgls] = ACTIONS(1016), - [anon_sym_BSLASHGls] = ACTIONS(1016), - [anon_sym_BSLASHGLS] = ACTIONS(1016), - [anon_sym_BSLASHglspl] = ACTIONS(1016), - [anon_sym_BSLASHGlspl] = ACTIONS(1016), - [anon_sym_BSLASHGLSpl] = ACTIONS(1016), - [anon_sym_BSLASHglsdisp] = ACTIONS(1016), - [anon_sym_BSLASHglslink] = ACTIONS(1016), - [anon_sym_BSLASHglstext] = ACTIONS(1016), - [anon_sym_BSLASHGlstext] = ACTIONS(1016), - [anon_sym_BSLASHGLStext] = ACTIONS(1016), - [anon_sym_BSLASHglsfirst] = ACTIONS(1016), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1016), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1016), - [anon_sym_BSLASHglsplural] = ACTIONS(1016), - [anon_sym_BSLASHGlsplural] = ACTIONS(1016), - [anon_sym_BSLASHGLSplural] = ACTIONS(1016), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1016), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1016), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1016), - [anon_sym_BSLASHglsname] = ACTIONS(1016), - [anon_sym_BSLASHGlsname] = ACTIONS(1016), - [anon_sym_BSLASHGLSname] = ACTIONS(1016), - [anon_sym_BSLASHglssymbol] = ACTIONS(1016), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1016), - [anon_sym_BSLASHglsdesc] = ACTIONS(1016), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1016), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1016), - [anon_sym_BSLASHglsuseri] = ACTIONS(1016), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1016), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1016), - [anon_sym_BSLASHglsuserii] = ACTIONS(1016), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1016), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1016), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1016), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1016), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1016), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1016), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1016), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1016), - [anon_sym_BSLASHglsuserv] = ACTIONS(1016), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1016), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1016), - [anon_sym_BSLASHglsuservi] = ACTIONS(1016), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1016), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1016), - [anon_sym_BSLASHnewacronym] = ACTIONS(1019), - [anon_sym_BSLASHacrshort] = ACTIONS(1022), - [anon_sym_BSLASHAcrshort] = ACTIONS(1022), - [anon_sym_BSLASHACRshort] = ACTIONS(1022), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1022), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1022), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1022), - [anon_sym_BSLASHacrlong] = ACTIONS(1022), - [anon_sym_BSLASHAcrlong] = ACTIONS(1022), - [anon_sym_BSLASHACRlong] = ACTIONS(1022), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1022), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1022), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1022), - [anon_sym_BSLASHacrfull] = ACTIONS(1022), - [anon_sym_BSLASHAcrfull] = ACTIONS(1022), - [anon_sym_BSLASHACRfull] = ACTIONS(1022), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1022), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1022), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1022), - [anon_sym_BSLASHacs] = ACTIONS(1022), - [anon_sym_BSLASHAcs] = ACTIONS(1022), - [anon_sym_BSLASHacsp] = ACTIONS(1022), - [anon_sym_BSLASHAcsp] = ACTIONS(1022), - [anon_sym_BSLASHacl] = ACTIONS(1022), - [anon_sym_BSLASHAcl] = ACTIONS(1022), - [anon_sym_BSLASHaclp] = ACTIONS(1022), - [anon_sym_BSLASHAclp] = ACTIONS(1022), - [anon_sym_BSLASHacf] = ACTIONS(1022), - [anon_sym_BSLASHAcf] = ACTIONS(1022), - [anon_sym_BSLASHacfp] = ACTIONS(1022), - [anon_sym_BSLASHAcfp] = ACTIONS(1022), - [anon_sym_BSLASHac] = ACTIONS(1022), - [anon_sym_BSLASHAc] = ACTIONS(1022), - [anon_sym_BSLASHacp] = ACTIONS(1022), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1022), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1022), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1022), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1022), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1022), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1022), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1022), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1022), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1022), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1022), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1025), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1028), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1025), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1028), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1031), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1034), - [anon_sym_BSLASHcolor] = ACTIONS(1037), - [anon_sym_BSLASHcolorbox] = ACTIONS(1037), - [anon_sym_BSLASHtextcolor] = ACTIONS(1037), - [anon_sym_BSLASHpagecolor] = ACTIONS(1037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1040), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1040), - [anon_sym_BSLASHtext] = ACTIONS(1043), - [anon_sym_BSLASHintertext] = ACTIONS(1043), - [anon_sym_shortintertext] = ACTIONS(1043), - }, - [67] = { - [sym_block_comment] = STATE(60), - [sym__root_content] = STATE(60), - [sym__flat_content] = STATE(60), - [sym__text_with_env_content] = STATE(60), - [sym__text_content] = STATE(60), - [sym__section] = STATE(60), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(60), - [sym_text] = STATE(60), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(60), - [sym_inline_formula] = STATE(60), - [sym_begin] = STATE(93), - [sym_end] = STATE(1623), - [sym_generic_environment] = STATE(60), - [sym_comment_environment] = STATE(60), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(60), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(60), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(60), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(60), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(60), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(60), - [sym_generic_command] = STATE(60), - [sym_title_declaration] = STATE(60), - [sym_author_declaration] = STATE(60), - [sym_package_include] = STATE(60), - [sym_class_include] = STATE(60), - [sym_latex_include] = STATE(60), - [sym_biblatex_include] = STATE(60), - [sym_bibtex_include] = STATE(60), - [sym_graphics_include] = STATE(60), - [sym_svg_include] = STATE(60), - [sym_inkscape_include] = STATE(60), - [sym_verbatim_include] = STATE(60), - [sym_import_include] = STATE(60), - [sym_caption] = STATE(60), - [sym_citation] = STATE(60), - [sym_label_definition] = STATE(60), - [sym_label_reference] = STATE(60), - [sym_label_reference_range] = STATE(60), - [sym_label_number] = STATE(60), - [sym_new_command_definition] = STATE(60), - [sym_old_command_definition] = STATE(60), - [sym_let_command_definition] = STATE(60), - [sym_math_delimiter] = STATE(60), - [sym_paired_delimiter_definition] = STATE(60), - [sym_environment_definition] = STATE(60), - [sym_glossary_entry_definition] = STATE(60), - [sym_glossary_entry_reference] = STATE(60), - [sym_acronym_definition] = STATE(60), - [sym_acronym_reference] = STATE(60), - [sym_theorem_definition] = STATE(60), - [sym_color_definition] = STATE(60), - [sym_color_set_definition] = STATE(60), - [sym_color_reference] = STATE(60), - [sym_tikz_library_import] = STATE(60), - [sym_text_mode] = STATE(60), - [aux_sym_source_file_repeat1] = STATE(60), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_RBRACK] = ACTIONS(1046), - [anon_sym_COMMA] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_RPAREN] = ACTIONS(1046), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(828), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [68] = { - [sym_block_comment] = STATE(103), - [sym__root_content] = STATE(103), - [sym__flat_content] = STATE(103), - [sym__text_with_env_content] = STATE(103), - [sym__text_content] = STATE(103), - [sym__section] = STATE(103), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(103), - [sym_text] = STATE(103), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(103), - [sym_inline_formula] = STATE(103), - [sym_begin] = STATE(93), - [sym_end] = STATE(1120), - [sym_generic_environment] = STATE(103), - [sym_comment_environment] = STATE(103), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(103), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(103), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(103), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(103), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(103), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(103), - [sym_generic_command] = STATE(103), - [sym_title_declaration] = STATE(103), - [sym_author_declaration] = STATE(103), - [sym_package_include] = STATE(103), - [sym_class_include] = STATE(103), - [sym_latex_include] = STATE(103), - [sym_biblatex_include] = STATE(103), - [sym_bibtex_include] = STATE(103), - [sym_graphics_include] = STATE(103), - [sym_svg_include] = STATE(103), - [sym_inkscape_include] = STATE(103), - [sym_verbatim_include] = STATE(103), - [sym_import_include] = STATE(103), - [sym_caption] = STATE(103), - [sym_citation] = STATE(103), - [sym_label_definition] = STATE(103), - [sym_label_reference] = STATE(103), - [sym_label_reference_range] = STATE(103), - [sym_label_number] = STATE(103), - [sym_new_command_definition] = STATE(103), - [sym_old_command_definition] = STATE(103), - [sym_let_command_definition] = STATE(103), - [sym_math_delimiter] = STATE(103), - [sym_paired_delimiter_definition] = STATE(103), - [sym_environment_definition] = STATE(103), - [sym_glossary_entry_definition] = STATE(103), - [sym_glossary_entry_reference] = STATE(103), - [sym_acronym_definition] = STATE(103), - [sym_acronym_reference] = STATE(103), - [sym_theorem_definition] = STATE(103), - [sym_color_definition] = STATE(103), - [sym_color_set_definition] = STATE(103), - [sym_color_reference] = STATE(103), - [sym_tikz_library_import] = STATE(103), - [sym_text_mode] = STATE(103), - [aux_sym_source_file_repeat1] = STATE(103), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(826), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_COMMA] = ACTIONS(826), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(1048), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [69] = { - [sym_block_comment] = STATE(103), - [sym__root_content] = STATE(103), - [sym__flat_content] = STATE(103), - [sym__text_with_env_content] = STATE(103), - [sym__text_content] = STATE(103), - [sym__section] = STATE(103), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(103), - [sym_text] = STATE(103), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(103), - [sym_inline_formula] = STATE(103), - [sym_begin] = STATE(93), - [sym_end] = STATE(1001), - [sym_generic_environment] = STATE(103), - [sym_comment_environment] = STATE(103), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(103), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(103), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(103), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(103), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(103), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(103), - [sym_generic_command] = STATE(103), - [sym_title_declaration] = STATE(103), - [sym_author_declaration] = STATE(103), - [sym_package_include] = STATE(103), - [sym_class_include] = STATE(103), - [sym_latex_include] = STATE(103), - [sym_biblatex_include] = STATE(103), - [sym_bibtex_include] = STATE(103), - [sym_graphics_include] = STATE(103), - [sym_svg_include] = STATE(103), - [sym_inkscape_include] = STATE(103), - [sym_verbatim_include] = STATE(103), - [sym_import_include] = STATE(103), - [sym_caption] = STATE(103), - [sym_citation] = STATE(103), - [sym_label_definition] = STATE(103), - [sym_label_reference] = STATE(103), - [sym_label_reference_range] = STATE(103), - [sym_label_number] = STATE(103), - [sym_new_command_definition] = STATE(103), - [sym_old_command_definition] = STATE(103), - [sym_let_command_definition] = STATE(103), - [sym_math_delimiter] = STATE(103), - [sym_paired_delimiter_definition] = STATE(103), - [sym_environment_definition] = STATE(103), - [sym_glossary_entry_definition] = STATE(103), - [sym_glossary_entry_reference] = STATE(103), - [sym_acronym_definition] = STATE(103), - [sym_acronym_reference] = STATE(103), - [sym_theorem_definition] = STATE(103), - [sym_color_definition] = STATE(103), - [sym_color_set_definition] = STATE(103), - [sym_color_reference] = STATE(103), - [sym_tikz_library_import] = STATE(103), - [sym_text_mode] = STATE(103), - [aux_sym_source_file_repeat1] = STATE(103), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(826), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_COMMA] = ACTIONS(826), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(834), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [70] = { - [sym_block_comment] = STATE(103), - [sym__root_content] = STATE(103), - [sym__flat_content] = STATE(103), - [sym__text_with_env_content] = STATE(103), - [sym__text_content] = STATE(103), - [sym__section] = STATE(103), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(103), - [sym_text] = STATE(103), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(103), - [sym_inline_formula] = STATE(103), - [sym_begin] = STATE(93), - [sym_end] = STATE(529), - [sym_generic_environment] = STATE(103), - [sym_comment_environment] = STATE(103), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(103), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(103), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(103), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(103), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(103), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(103), - [sym_generic_command] = STATE(103), - [sym_title_declaration] = STATE(103), - [sym_author_declaration] = STATE(103), - [sym_package_include] = STATE(103), - [sym_class_include] = STATE(103), - [sym_latex_include] = STATE(103), - [sym_biblatex_include] = STATE(103), - [sym_bibtex_include] = STATE(103), - [sym_graphics_include] = STATE(103), - [sym_svg_include] = STATE(103), - [sym_inkscape_include] = STATE(103), - [sym_verbatim_include] = STATE(103), - [sym_import_include] = STATE(103), - [sym_caption] = STATE(103), - [sym_citation] = STATE(103), - [sym_label_definition] = STATE(103), - [sym_label_reference] = STATE(103), - [sym_label_reference_range] = STATE(103), - [sym_label_number] = STATE(103), - [sym_new_command_definition] = STATE(103), - [sym_old_command_definition] = STATE(103), - [sym_let_command_definition] = STATE(103), - [sym_math_delimiter] = STATE(103), - [sym_paired_delimiter_definition] = STATE(103), - [sym_environment_definition] = STATE(103), - [sym_glossary_entry_definition] = STATE(103), - [sym_glossary_entry_reference] = STATE(103), - [sym_acronym_definition] = STATE(103), - [sym_acronym_reference] = STATE(103), - [sym_theorem_definition] = STATE(103), - [sym_color_definition] = STATE(103), - [sym_color_set_definition] = STATE(103), - [sym_color_reference] = STATE(103), - [sym_tikz_library_import] = STATE(103), - [sym_text_mode] = STATE(103), - [aux_sym_source_file_repeat1] = STATE(103), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(826), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_COMMA] = ACTIONS(826), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(838), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [71] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [72] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [73] = { - [sym_block_comment] = STATE(91), - [sym__root_content] = STATE(91), - [sym__flat_content] = STATE(91), - [sym__text_with_env_content] = STATE(91), - [sym__text_content] = STATE(91), - [sym__section] = STATE(91), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(91), - [sym_text] = STATE(91), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(91), - [sym_inline_formula] = STATE(91), - [sym_begin] = STATE(93), - [sym_end] = STATE(1358), - [sym_generic_environment] = STATE(91), - [sym_comment_environment] = STATE(91), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(91), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(91), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(91), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(91), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(91), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(91), - [sym_generic_command] = STATE(91), - [sym_title_declaration] = STATE(91), - [sym_author_declaration] = STATE(91), - [sym_package_include] = STATE(91), - [sym_class_include] = STATE(91), - [sym_latex_include] = STATE(91), - [sym_biblatex_include] = STATE(91), - [sym_bibtex_include] = STATE(91), - [sym_graphics_include] = STATE(91), - [sym_svg_include] = STATE(91), - [sym_inkscape_include] = STATE(91), - [sym_verbatim_include] = STATE(91), - [sym_import_include] = STATE(91), - [sym_caption] = STATE(91), - [sym_citation] = STATE(91), - [sym_label_definition] = STATE(91), - [sym_label_reference] = STATE(91), - [sym_label_reference_range] = STATE(91), - [sym_label_number] = STATE(91), - [sym_new_command_definition] = STATE(91), - [sym_old_command_definition] = STATE(91), - [sym_let_command_definition] = STATE(91), - [sym_math_delimiter] = STATE(91), - [sym_paired_delimiter_definition] = STATE(91), - [sym_environment_definition] = STATE(91), - [sym_glossary_entry_definition] = STATE(91), - [sym_glossary_entry_reference] = STATE(91), - [sym_acronym_definition] = STATE(91), - [sym_acronym_reference] = STATE(91), - [sym_theorem_definition] = STATE(91), - [sym_color_definition] = STATE(91), - [sym_color_set_definition] = STATE(91), - [sym_color_reference] = STATE(91), - [sym_tikz_library_import] = STATE(91), - [sym_text_mode] = STATE(91), - [aux_sym_source_file_repeat1] = STATE(91), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(1050), - [anon_sym_RBRACK] = ACTIONS(1050), - [anon_sym_COMMA] = ACTIONS(1050), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_RPAREN] = ACTIONS(1050), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(1052), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [74] = { - [sym_block_comment] = STATE(62), - [sym__root_content] = STATE(62), - [sym__flat_content] = STATE(62), - [sym__text_with_env_content] = STATE(62), - [sym__text_content] = STATE(62), - [sym__section] = STATE(62), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(62), - [sym_text] = STATE(62), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(62), - [sym_inline_formula] = STATE(62), - [sym_begin] = STATE(93), - [sym_end] = STATE(1201), - [sym_generic_environment] = STATE(62), - [sym_comment_environment] = STATE(62), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(62), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(62), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(62), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(62), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(62), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(62), - [sym_generic_command] = STATE(62), - [sym_title_declaration] = STATE(62), - [sym_author_declaration] = STATE(62), - [sym_package_include] = STATE(62), - [sym_class_include] = STATE(62), - [sym_latex_include] = STATE(62), - [sym_biblatex_include] = STATE(62), - [sym_bibtex_include] = STATE(62), - [sym_graphics_include] = STATE(62), - [sym_svg_include] = STATE(62), - [sym_inkscape_include] = STATE(62), - [sym_verbatim_include] = STATE(62), - [sym_import_include] = STATE(62), - [sym_caption] = STATE(62), - [sym_citation] = STATE(62), - [sym_label_definition] = STATE(62), - [sym_label_reference] = STATE(62), - [sym_label_reference_range] = STATE(62), - [sym_label_number] = STATE(62), - [sym_new_command_definition] = STATE(62), - [sym_old_command_definition] = STATE(62), - [sym_let_command_definition] = STATE(62), - [sym_math_delimiter] = STATE(62), - [sym_paired_delimiter_definition] = STATE(62), - [sym_environment_definition] = STATE(62), - [sym_glossary_entry_definition] = STATE(62), - [sym_glossary_entry_reference] = STATE(62), - [sym_acronym_definition] = STATE(62), - [sym_acronym_reference] = STATE(62), - [sym_theorem_definition] = STATE(62), - [sym_color_definition] = STATE(62), - [sym_color_set_definition] = STATE(62), - [sym_color_reference] = STATE(62), - [sym_tikz_library_import] = STATE(62), - [sym_text_mode] = STATE(62), - [aux_sym_source_file_repeat1] = STATE(62), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(1054), - [anon_sym_RBRACK] = ACTIONS(1054), - [anon_sym_COMMA] = ACTIONS(1054), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(830), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [75] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHend] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [76] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHend] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [77] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(199), - [anon_sym_BSLASHpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddpart] = ACTIONS(199), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHchapter] = ACTIONS(199), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddchap] = ACTIONS(199), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHparagraph] = ACTIONS(199), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubparagraph] = ACTIONS(199), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHitem] = ACTIONS(199), - [anon_sym_BSLASHitem_STAR] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASH_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [78] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddpart] = ACTIONS(189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddsec] = ACTIONS(189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHparagraph] = ACTIONS(189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_BSLASH_RBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [79] = { - [sym_block_comment] = STATE(103), - [sym__root_content] = STATE(103), - [sym__flat_content] = STATE(103), - [sym__text_with_env_content] = STATE(103), - [sym__text_content] = STATE(103), - [sym__section] = STATE(103), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(103), - [sym_text] = STATE(103), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(103), - [sym_inline_formula] = STATE(103), - [sym_begin] = STATE(93), - [sym_end] = STATE(1557), - [sym_generic_environment] = STATE(103), - [sym_comment_environment] = STATE(103), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(103), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(103), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(103), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(103), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(103), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(103), - [sym_generic_command] = STATE(103), - [sym_title_declaration] = STATE(103), - [sym_author_declaration] = STATE(103), - [sym_package_include] = STATE(103), - [sym_class_include] = STATE(103), - [sym_latex_include] = STATE(103), - [sym_biblatex_include] = STATE(103), - [sym_bibtex_include] = STATE(103), - [sym_graphics_include] = STATE(103), - [sym_svg_include] = STATE(103), - [sym_inkscape_include] = STATE(103), - [sym_verbatim_include] = STATE(103), - [sym_import_include] = STATE(103), - [sym_caption] = STATE(103), - [sym_citation] = STATE(103), - [sym_label_definition] = STATE(103), - [sym_label_reference] = STATE(103), - [sym_label_reference_range] = STATE(103), - [sym_label_number] = STATE(103), - [sym_new_command_definition] = STATE(103), - [sym_old_command_definition] = STATE(103), - [sym_let_command_definition] = STATE(103), - [sym_math_delimiter] = STATE(103), - [sym_paired_delimiter_definition] = STATE(103), - [sym_environment_definition] = STATE(103), - [sym_glossary_entry_definition] = STATE(103), - [sym_glossary_entry_reference] = STATE(103), - [sym_acronym_definition] = STATE(103), - [sym_acronym_reference] = STATE(103), - [sym_theorem_definition] = STATE(103), - [sym_color_definition] = STATE(103), - [sym_color_set_definition] = STATE(103), - [sym_color_reference] = STATE(103), - [sym_tikz_library_import] = STATE(103), - [sym_text_mode] = STATE(103), - [aux_sym_source_file_repeat1] = STATE(103), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(826), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_COMMA] = ACTIONS(826), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(746), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [80] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddpart] = ACTIONS(205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHchapter] = ACTIONS(205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddchap] = ACTIONS(205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(207), - [anon_sym_BSLASHsection] = ACTIONS(205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddsec] = ACTIONS(205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHitem] = ACTIONS(205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHend] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [81] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [82] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHend] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [83] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [84] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHend] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [85] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [86] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddpart] = ACTIONS(189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddsec] = ACTIONS(189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHparagraph] = ACTIONS(189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHend] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [87] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [88] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(195), - [anon_sym_BSLASHpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddpart] = ACTIONS(195), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(195), - [anon_sym_BSLASHsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddsec] = ACTIONS(195), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHparagraph] = ACTIONS(195), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubparagraph] = ACTIONS(195), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHitem] = ACTIONS(195), - [anon_sym_BSLASHitem_STAR] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHend] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [89] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddpart] = ACTIONS(205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHchapter] = ACTIONS(205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddchap] = ACTIONS(205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(207), - [anon_sym_BSLASHsection] = ACTIONS(205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddsec] = ACTIONS(205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHitem] = ACTIONS(205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASH_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [90] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(195), - [anon_sym_BSLASHpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddpart] = ACTIONS(195), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(195), - [anon_sym_BSLASHsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddsec] = ACTIONS(195), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHparagraph] = ACTIONS(195), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubparagraph] = ACTIONS(195), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHitem] = ACTIONS(195), - [anon_sym_BSLASHitem_STAR] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_BSLASH_RBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [91] = { - [sym_block_comment] = STATE(103), - [sym__root_content] = STATE(103), - [sym__flat_content] = STATE(103), - [sym__text_with_env_content] = STATE(103), - [sym__text_content] = STATE(103), - [sym__section] = STATE(103), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(103), - [sym_text] = STATE(103), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(103), - [sym_inline_formula] = STATE(103), - [sym_begin] = STATE(93), - [sym_end] = STATE(1329), - [sym_generic_environment] = STATE(103), - [sym_comment_environment] = STATE(103), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(103), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(103), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(103), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(103), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(103), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(103), - [sym_generic_command] = STATE(103), - [sym_title_declaration] = STATE(103), - [sym_author_declaration] = STATE(103), - [sym_package_include] = STATE(103), - [sym_class_include] = STATE(103), - [sym_latex_include] = STATE(103), - [sym_biblatex_include] = STATE(103), - [sym_bibtex_include] = STATE(103), - [sym_graphics_include] = STATE(103), - [sym_svg_include] = STATE(103), - [sym_inkscape_include] = STATE(103), - [sym_verbatim_include] = STATE(103), - [sym_import_include] = STATE(103), - [sym_caption] = STATE(103), - [sym_citation] = STATE(103), - [sym_label_definition] = STATE(103), - [sym_label_reference] = STATE(103), - [sym_label_reference_range] = STATE(103), - [sym_label_number] = STATE(103), - [sym_new_command_definition] = STATE(103), - [sym_old_command_definition] = STATE(103), - [sym_let_command_definition] = STATE(103), - [sym_math_delimiter] = STATE(103), - [sym_paired_delimiter_definition] = STATE(103), - [sym_environment_definition] = STATE(103), - [sym_glossary_entry_definition] = STATE(103), - [sym_glossary_entry_reference] = STATE(103), - [sym_acronym_definition] = STATE(103), - [sym_acronym_reference] = STATE(103), - [sym_theorem_definition] = STATE(103), - [sym_color_definition] = STATE(103), - [sym_color_set_definition] = STATE(103), - [sym_color_reference] = STATE(103), - [sym_tikz_library_import] = STATE(103), - [sym_text_mode] = STATE(103), - [aux_sym_source_file_repeat1] = STATE(103), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(826), - [anon_sym_RBRACK] = ACTIONS(826), - [anon_sym_COMMA] = ACTIONS(826), - [anon_sym_EQ] = ACTIONS(826), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(1052), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [92] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(199), - [anon_sym_BSLASHpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddpart] = ACTIONS(199), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHchapter] = ACTIONS(199), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddchap] = ACTIONS(199), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHparagraph] = ACTIONS(199), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubparagraph] = ACTIONS(199), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHitem] = ACTIONS(199), - [anon_sym_BSLASHitem_STAR] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHend] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [93] = { - [sym_block_comment] = STATE(68), - [sym__root_content] = STATE(68), - [sym__flat_content] = STATE(68), - [sym__text_with_env_content] = STATE(68), - [sym__text_content] = STATE(68), - [sym__section] = STATE(68), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(68), - [sym_text] = STATE(68), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(68), - [sym_inline_formula] = STATE(68), - [sym_begin] = STATE(93), - [sym_end] = STATE(1057), - [sym_generic_environment] = STATE(68), - [sym_comment_environment] = STATE(68), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(68), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(68), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(68), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(68), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(68), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(68), - [sym_generic_command] = STATE(68), - [sym_title_declaration] = STATE(68), - [sym_author_declaration] = STATE(68), - [sym_package_include] = STATE(68), - [sym_class_include] = STATE(68), - [sym_latex_include] = STATE(68), - [sym_biblatex_include] = STATE(68), - [sym_bibtex_include] = STATE(68), - [sym_graphics_include] = STATE(68), - [sym_svg_include] = STATE(68), - [sym_inkscape_include] = STATE(68), - [sym_verbatim_include] = STATE(68), - [sym_import_include] = STATE(68), - [sym_caption] = STATE(68), - [sym_citation] = STATE(68), - [sym_label_definition] = STATE(68), - [sym_label_reference] = STATE(68), - [sym_label_reference_range] = STATE(68), - [sym_label_number] = STATE(68), - [sym_new_command_definition] = STATE(68), - [sym_old_command_definition] = STATE(68), - [sym_let_command_definition] = STATE(68), - [sym_math_delimiter] = STATE(68), - [sym_paired_delimiter_definition] = STATE(68), - [sym_environment_definition] = STATE(68), - [sym_glossary_entry_definition] = STATE(68), - [sym_glossary_entry_reference] = STATE(68), - [sym_acronym_definition] = STATE(68), - [sym_acronym_reference] = STATE(68), - [sym_theorem_definition] = STATE(68), - [sym_color_definition] = STATE(68), - [sym_color_set_definition] = STATE(68), - [sym_color_reference] = STATE(68), - [sym_tikz_library_import] = STATE(68), - [sym_text_mode] = STATE(68), - [aux_sym_source_file_repeat1] = STATE(68), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(1056), - [anon_sym_RBRACK] = ACTIONS(1056), - [anon_sym_COMMA] = ACTIONS(1056), - [anon_sym_EQ] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_RPAREN] = ACTIONS(1056), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(1048), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [94] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddpart] = ACTIONS(205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHchapter] = ACTIONS(205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddchap] = ACTIONS(205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(207), - [anon_sym_BSLASHsection] = ACTIONS(205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddsec] = ACTIONS(205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHitem] = ACTIONS(205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [95] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(66), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(66), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(66), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(66), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(66), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_title_declaration] = STATE(66), - [sym_author_declaration] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_math_delimiter] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(1058), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [96] = { - [sym_block_comment] = STATE(115), - [sym__root_content] = STATE(115), - [sym__flat_content] = STATE(115), - [sym__text_with_env_content] = STATE(115), - [sym__text_content] = STATE(115), - [sym__section] = STATE(115), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(115), - [sym_text] = STATE(115), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(115), - [sym_inline_formula] = STATE(115), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(115), - [sym_comment_environment] = STATE(115), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(115), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(115), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(115), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(115), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(115), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(115), - [sym_generic_command] = STATE(115), - [sym_title_declaration] = STATE(115), - [sym_author_declaration] = STATE(115), - [sym_package_include] = STATE(115), - [sym_class_include] = STATE(115), - [sym_latex_include] = STATE(115), - [sym_biblatex_include] = STATE(115), - [sym_bibtex_include] = STATE(115), - [sym_graphics_include] = STATE(115), - [sym_svg_include] = STATE(115), - [sym_inkscape_include] = STATE(115), - [sym_verbatim_include] = STATE(115), - [sym_import_include] = STATE(115), - [sym_caption] = STATE(115), - [sym_citation] = STATE(115), - [sym_label_definition] = STATE(115), - [sym_label_reference] = STATE(115), - [sym_label_reference_range] = STATE(115), - [sym_label_number] = STATE(115), - [sym_new_command_definition] = STATE(115), - [sym_old_command_definition] = STATE(115), - [sym_let_command_definition] = STATE(115), - [sym_math_delimiter] = STATE(115), - [sym_paired_delimiter_definition] = STATE(115), - [sym_environment_definition] = STATE(115), - [sym_glossary_entry_definition] = STATE(115), - [sym_glossary_entry_reference] = STATE(115), - [sym_acronym_definition] = STATE(115), - [sym_acronym_reference] = STATE(115), - [sym_theorem_definition] = STATE(115), - [sym_color_definition] = STATE(115), - [sym_color_set_definition] = STATE(115), - [sym_color_reference] = STATE(115), - [sym_tikz_library_import] = STATE(115), - [sym_text_mode] = STATE(115), - [aux_sym_source_file_repeat1] = STATE(115), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1062), - [anon_sym_RBRACK] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(1062), - [anon_sym_EQ] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1062), - [anon_sym_RPAREN] = ACTIONS(1062), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1064), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [97] = { - [sym_block_comment] = STATE(117), - [sym__root_content] = STATE(117), - [sym__flat_content] = STATE(117), - [sym__text_with_env_content] = STATE(117), - [sym__text_content] = STATE(117), - [sym__section] = STATE(117), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(117), - [sym_text] = STATE(117), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(117), - [sym_inline_formula] = STATE(117), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(117), - [sym_comment_environment] = STATE(117), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(117), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(117), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(117), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(117), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(117), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(117), - [sym_generic_command] = STATE(117), - [sym_title_declaration] = STATE(117), - [sym_author_declaration] = STATE(117), - [sym_package_include] = STATE(117), - [sym_class_include] = STATE(117), - [sym_latex_include] = STATE(117), - [sym_biblatex_include] = STATE(117), - [sym_bibtex_include] = STATE(117), - [sym_graphics_include] = STATE(117), - [sym_svg_include] = STATE(117), - [sym_inkscape_include] = STATE(117), - [sym_verbatim_include] = STATE(117), - [sym_import_include] = STATE(117), - [sym_caption] = STATE(117), - [sym_citation] = STATE(117), - [sym_label_definition] = STATE(117), - [sym_label_reference] = STATE(117), - [sym_label_reference_range] = STATE(117), - [sym_label_number] = STATE(117), - [sym_new_command_definition] = STATE(117), - [sym_old_command_definition] = STATE(117), - [sym_let_command_definition] = STATE(117), - [sym_math_delimiter] = STATE(117), - [sym_paired_delimiter_definition] = STATE(117), - [sym_environment_definition] = STATE(117), - [sym_glossary_entry_definition] = STATE(117), - [sym_glossary_entry_reference] = STATE(117), - [sym_acronym_definition] = STATE(117), - [sym_acronym_reference] = STATE(117), - [sym_theorem_definition] = STATE(117), - [sym_color_definition] = STATE(117), - [sym_color_set_definition] = STATE(117), - [sym_color_reference] = STATE(117), - [sym_tikz_library_import] = STATE(117), - [sym_text_mode] = STATE(117), - [aux_sym_source_file_repeat1] = STATE(117), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1070), - [anon_sym_RBRACK] = ACTIONS(1070), - [anon_sym_COMMA] = ACTIONS(1070), - [anon_sym_EQ] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1070), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1086), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1090), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [98] = { - [sym_block_comment] = STATE(160), - [sym__root_content] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__section] = STATE(160), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(160), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(160), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(160), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(160), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(160), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_title_declaration] = STATE(160), - [sym_author_declaration] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_math_delimiter] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym_source_file_repeat1] = STATE(160), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1200), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [99] = { - [sym_block_comment] = STATE(118), - [sym__root_content] = STATE(118), - [sym__flat_content] = STATE(118), - [sym__text_with_env_content] = STATE(118), - [sym__text_content] = STATE(118), - [sym__section] = STATE(118), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(118), - [sym_text] = STATE(118), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(118), - [sym_inline_formula] = STATE(118), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(118), - [sym_comment_environment] = STATE(118), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(118), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(118), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(118), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(118), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(118), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(118), - [sym_generic_command] = STATE(118), - [sym_title_declaration] = STATE(118), - [sym_author_declaration] = STATE(118), - [sym_package_include] = STATE(118), - [sym_class_include] = STATE(118), - [sym_latex_include] = STATE(118), - [sym_biblatex_include] = STATE(118), - [sym_bibtex_include] = STATE(118), - [sym_graphics_include] = STATE(118), - [sym_svg_include] = STATE(118), - [sym_inkscape_include] = STATE(118), - [sym_verbatim_include] = STATE(118), - [sym_import_include] = STATE(118), - [sym_caption] = STATE(118), - [sym_citation] = STATE(118), - [sym_label_definition] = STATE(118), - [sym_label_reference] = STATE(118), - [sym_label_reference_range] = STATE(118), - [sym_label_number] = STATE(118), - [sym_new_command_definition] = STATE(118), - [sym_old_command_definition] = STATE(118), - [sym_let_command_definition] = STATE(118), - [sym_math_delimiter] = STATE(118), - [sym_paired_delimiter_definition] = STATE(118), - [sym_environment_definition] = STATE(118), - [sym_glossary_entry_definition] = STATE(118), - [sym_glossary_entry_reference] = STATE(118), - [sym_acronym_definition] = STATE(118), - [sym_acronym_reference] = STATE(118), - [sym_theorem_definition] = STATE(118), - [sym_color_definition] = STATE(118), - [sym_color_set_definition] = STATE(118), - [sym_color_reference] = STATE(118), - [sym_tikz_library_import] = STATE(118), - [sym_text_mode] = STATE(118), - [aux_sym_source_file_repeat1] = STATE(118), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1280), - [anon_sym_RBRACK] = ACTIONS(1280), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_LPAREN] = ACTIONS(1280), - [anon_sym_RPAREN] = ACTIONS(1280), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1282), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1284), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [100] = { - [sym_block_comment] = STATE(130), - [sym__root_content] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__section] = STATE(130), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(130), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(130), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(130), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(130), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(130), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_title_declaration] = STATE(130), - [sym_author_declaration] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_math_delimiter] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym_source_file_repeat1] = STATE(130), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1288), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [101] = { - [sym_block_comment] = STATE(140), - [sym__root_content] = STATE(140), - [sym__flat_content] = STATE(140), - [sym__text_with_env_content] = STATE(140), - [sym__text_content] = STATE(140), - [sym__section] = STATE(140), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(140), - [sym_text] = STATE(140), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(140), - [sym_inline_formula] = STATE(140), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(140), - [sym_comment_environment] = STATE(140), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(140), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(140), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(140), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(140), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(140), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(140), - [sym_generic_command] = STATE(140), - [sym_title_declaration] = STATE(140), - [sym_author_declaration] = STATE(140), - [sym_package_include] = STATE(140), - [sym_class_include] = STATE(140), - [sym_latex_include] = STATE(140), - [sym_biblatex_include] = STATE(140), - [sym_bibtex_include] = STATE(140), - [sym_graphics_include] = STATE(140), - [sym_svg_include] = STATE(140), - [sym_inkscape_include] = STATE(140), - [sym_verbatim_include] = STATE(140), - [sym_import_include] = STATE(140), - [sym_caption] = STATE(140), - [sym_citation] = STATE(140), - [sym_label_definition] = STATE(140), - [sym_label_reference] = STATE(140), - [sym_label_reference_range] = STATE(140), - [sym_label_number] = STATE(140), - [sym_new_command_definition] = STATE(140), - [sym_old_command_definition] = STATE(140), - [sym_let_command_definition] = STATE(140), - [sym_math_delimiter] = STATE(140), - [sym_paired_delimiter_definition] = STATE(140), - [sym_environment_definition] = STATE(140), - [sym_glossary_entry_definition] = STATE(140), - [sym_glossary_entry_reference] = STATE(140), - [sym_acronym_definition] = STATE(140), - [sym_acronym_reference] = STATE(140), - [sym_theorem_definition] = STATE(140), - [sym_color_definition] = STATE(140), - [sym_color_set_definition] = STATE(140), - [sym_color_reference] = STATE(140), - [sym_tikz_library_import] = STATE(140), - [sym_text_mode] = STATE(140), - [aux_sym_source_file_repeat1] = STATE(140), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1292), - [anon_sym_RBRACK] = ACTIONS(1292), - [anon_sym_COMMA] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1294), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [102] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(66), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(66), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(66), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(66), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(66), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_title_declaration] = STATE(66), - [sym_author_declaration] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_math_delimiter] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1298), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [103] = { - [sym_block_comment] = STATE(103), - [sym__root_content] = STATE(103), - [sym__flat_content] = STATE(103), - [sym__text_with_env_content] = STATE(103), - [sym__text_content] = STATE(103), - [sym__section] = STATE(103), - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(748), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(747), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(745), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(741), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(740), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(739), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(738), - [sym_curly_group] = STATE(103), - [sym_text] = STATE(103), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(103), - [sym_inline_formula] = STATE(103), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(103), - [sym_comment_environment] = STATE(103), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(103), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(103), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(103), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(103), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(103), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(103), - [sym_generic_command] = STATE(103), - [sym_title_declaration] = STATE(103), - [sym_author_declaration] = STATE(103), - [sym_package_include] = STATE(103), - [sym_class_include] = STATE(103), - [sym_latex_include] = STATE(103), - [sym_biblatex_include] = STATE(103), - [sym_bibtex_include] = STATE(103), - [sym_graphics_include] = STATE(103), - [sym_svg_include] = STATE(103), - [sym_inkscape_include] = STATE(103), - [sym_verbatim_include] = STATE(103), - [sym_import_include] = STATE(103), - [sym_caption] = STATE(103), - [sym_citation] = STATE(103), - [sym_label_definition] = STATE(103), - [sym_label_reference] = STATE(103), - [sym_label_reference_range] = STATE(103), - [sym_label_number] = STATE(103), - [sym_new_command_definition] = STATE(103), - [sym_old_command_definition] = STATE(103), - [sym_let_command_definition] = STATE(103), - [sym_math_delimiter] = STATE(103), - [sym_paired_delimiter_definition] = STATE(103), - [sym_environment_definition] = STATE(103), - [sym_glossary_entry_definition] = STATE(103), - [sym_glossary_entry_reference] = STATE(103), - [sym_acronym_definition] = STATE(103), - [sym_acronym_reference] = STATE(103), - [sym_theorem_definition] = STATE(103), - [sym_color_definition] = STATE(103), - [sym_color_set_definition] = STATE(103), - [sym_color_reference] = STATE(103), - [sym_tikz_library_import] = STATE(103), - [sym_text_mode] = STATE(103), - [aux_sym_source_file_repeat1] = STATE(103), - [aux_sym__section_repeat1] = STATE(748), - [aux_sym__section_repeat2] = STATE(747), - [aux_sym__section_repeat3] = STATE(745), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(741), - [aux_sym__section_repeat6] = STATE(740), - [aux_sym__section_repeat7] = STATE(739), - [aux_sym__section_repeat8] = STATE(738), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(1300), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1303), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_RBRACK] = ACTIONS(1306), - [anon_sym_COMMA] = ACTIONS(1306), - [anon_sym_EQ] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1306), - [anon_sym_RPAREN] = ACTIONS(1306), - [anon_sym_BSLASHpart] = ACTIONS(1309), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1312), - [anon_sym_BSLASHaddpart] = ACTIONS(1309), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1312), - [anon_sym_BSLASHchapter] = ACTIONS(1315), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1318), - [anon_sym_BSLASHaddchap] = ACTIONS(1315), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1318), - [anon_sym_BSLASHsection] = ACTIONS(1321), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1324), - [anon_sym_BSLASHaddsec] = ACTIONS(1321), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1324), - [anon_sym_BSLASHsubsection] = ACTIONS(1327), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1330), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1336), - [anon_sym_BSLASHparagraph] = ACTIONS(1339), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1342), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1348), - [anon_sym_BSLASHitem] = ACTIONS(1351), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1357), - [sym_word] = ACTIONS(1360), - [sym_placeholder] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1366), - [anon_sym_SLASH] = ACTIONS(1366), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_BANG] = ACTIONS(1369), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_COLON] = ACTIONS(1369), - [anon_sym_SQUOTE] = ACTIONS(1369), - [anon_sym__] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1378), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(1381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1384), - [anon_sym_BSLASHbegin] = ACTIONS(426), - [anon_sym_BSLASHend] = ACTIONS(507), - [anon_sym_BSLASHtitle] = ACTIONS(1387), - [anon_sym_BSLASHauthor] = ACTIONS(1390), - [anon_sym_BSLASHusepackage] = ACTIONS(1393), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1393), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1396), - [anon_sym_BSLASHinclude] = ACTIONS(1399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1399), - [anon_sym_BSLASHinput] = ACTIONS(1399), - [anon_sym_BSLASHsubfile] = ACTIONS(1399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1402), - [anon_sym_BSLASHbibliography] = ACTIONS(1405), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1408), - [anon_sym_BSLASHincludesvg] = ACTIONS(1411), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1414), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1417), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1417), - [anon_sym_BSLASHimport] = ACTIONS(1420), - [anon_sym_BSLASHsubimport] = ACTIONS(1420), - [anon_sym_BSLASHinputfrom] = ACTIONS(1420), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1420), - [anon_sym_BSLASHincludefrom] = ACTIONS(1420), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1420), - [anon_sym_BSLASHcaption] = ACTIONS(1423), - [anon_sym_BSLASHcite] = ACTIONS(1426), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1429), - [anon_sym_BSLASHCite] = ACTIONS(1426), - [anon_sym_BSLASHnocite] = ACTIONS(1426), - [anon_sym_BSLASHcitet] = ACTIONS(1426), - [anon_sym_BSLASHcitep] = ACTIONS(1426), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1429), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1429), - [anon_sym_BSLASHciteauthor] = ACTIONS(1426), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1429), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1426), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1429), - [anon_sym_BSLASHcitetitle] = ACTIONS(1426), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1429), - [anon_sym_BSLASHciteyear] = ACTIONS(1426), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1429), - [anon_sym_BSLASHcitedate] = ACTIONS(1426), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1429), - [anon_sym_BSLASHciteurl] = ACTIONS(1426), - [anon_sym_BSLASHfullcite] = ACTIONS(1426), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1426), - [anon_sym_BSLASHcitealt] = ACTIONS(1426), - [anon_sym_BSLASHcitealp] = ACTIONS(1426), - [anon_sym_BSLASHcitetext] = ACTIONS(1426), - [anon_sym_BSLASHparencite] = ACTIONS(1426), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1429), - [anon_sym_BSLASHParencite] = ACTIONS(1426), - [anon_sym_BSLASHfootcite] = ACTIONS(1426), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1426), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1426), - [anon_sym_BSLASHtextcite] = ACTIONS(1426), - [anon_sym_BSLASHTextcite] = ACTIONS(1426), - [anon_sym_BSLASHsmartcite] = ACTIONS(1426), - [anon_sym_BSLASHSmartcite] = ACTIONS(1426), - [anon_sym_BSLASHsupercite] = ACTIONS(1426), - [anon_sym_BSLASHautocite] = ACTIONS(1426), - [anon_sym_BSLASHAutocite] = ACTIONS(1426), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1429), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1429), - [anon_sym_BSLASHvolcite] = ACTIONS(1426), - [anon_sym_BSLASHVolcite] = ACTIONS(1426), - [anon_sym_BSLASHpvolcite] = ACTIONS(1426), - [anon_sym_BSLASHPvolcite] = ACTIONS(1426), - [anon_sym_BSLASHfvolcite] = ACTIONS(1426), - [anon_sym_BSLASHftvolcite] = ACTIONS(1426), - [anon_sym_BSLASHsvolcite] = ACTIONS(1426), - [anon_sym_BSLASHSvolcite] = ACTIONS(1426), - [anon_sym_BSLASHtvolcite] = ACTIONS(1426), - [anon_sym_BSLASHTvolcite] = ACTIONS(1426), - [anon_sym_BSLASHavolcite] = ACTIONS(1426), - [anon_sym_BSLASHAvolcite] = ACTIONS(1426), - [anon_sym_BSLASHnotecite] = ACTIONS(1426), - [anon_sym_BSLASHNotecite] = ACTIONS(1426), - [anon_sym_BSLASHpnotecite] = ACTIONS(1426), - [anon_sym_BSLASHPnotecite] = ACTIONS(1426), - [anon_sym_BSLASHfnotecite] = ACTIONS(1426), - [anon_sym_BSLASHlabel] = ACTIONS(1432), - [anon_sym_BSLASHref] = ACTIONS(1435), - [anon_sym_BSLASHeqref] = ACTIONS(1435), - [anon_sym_BSLASHvref] = ACTIONS(1435), - [anon_sym_BSLASHVref] = ACTIONS(1435), - [anon_sym_BSLASHautoref] = ACTIONS(1435), - [anon_sym_BSLASHpageref] = ACTIONS(1435), - [anon_sym_BSLASHcref] = ACTIONS(1435), - [anon_sym_BSLASHCref] = ACTIONS(1435), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1438), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1438), - [anon_sym_BSLASHnamecref] = ACTIONS(1435), - [anon_sym_BSLASHnameCref] = ACTIONS(1435), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1435), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1435), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1435), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1435), - [anon_sym_BSLASHlabelcref] = ACTIONS(1435), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1435), - [anon_sym_BSLASHcrefrange] = ACTIONS(1441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1444), - [anon_sym_BSLASHCrefrange] = ACTIONS(1441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1444), - [anon_sym_BSLASHnewlabel] = ACTIONS(1447), - [anon_sym_BSLASHnewcommand] = ACTIONS(1450), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1450), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1450), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1450), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1453), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1450), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1450), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1450), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1450), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1450), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1450), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1450), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1450), - [anon_sym_BSLASHdef] = ACTIONS(1456), - [anon_sym_BSLASHlet] = ACTIONS(1459), - [anon_sym_BSLASHleft] = ACTIONS(1462), - [anon_sym_BSLASHbig] = ACTIONS(1462), - [anon_sym_BSLASHBig] = ACTIONS(1462), - [anon_sym_BSLASHbigg] = ACTIONS(1462), - [anon_sym_BSLASHBigg] = ACTIONS(1462), - [anon_sym_BSLASHbigl] = ACTIONS(1462), - [anon_sym_BSLASHBigl] = ACTIONS(1462), - [anon_sym_BSLASHbiggl] = ACTIONS(1462), - [anon_sym_BSLASHBiggl] = ACTIONS(1462), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1465), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1468), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1468), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1468), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1468), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1468), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1468), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1471), - [anon_sym_BSLASHgls] = ACTIONS(1474), - [anon_sym_BSLASHGls] = ACTIONS(1474), - [anon_sym_BSLASHGLS] = ACTIONS(1474), - [anon_sym_BSLASHglspl] = ACTIONS(1474), - [anon_sym_BSLASHGlspl] = ACTIONS(1474), - [anon_sym_BSLASHGLSpl] = ACTIONS(1474), - [anon_sym_BSLASHglsdisp] = ACTIONS(1474), - [anon_sym_BSLASHglslink] = ACTIONS(1474), - [anon_sym_BSLASHglstext] = ACTIONS(1474), - [anon_sym_BSLASHGlstext] = ACTIONS(1474), - [anon_sym_BSLASHGLStext] = ACTIONS(1474), - [anon_sym_BSLASHglsfirst] = ACTIONS(1474), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1474), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1474), - [anon_sym_BSLASHglsplural] = ACTIONS(1474), - [anon_sym_BSLASHGlsplural] = ACTIONS(1474), - [anon_sym_BSLASHGLSplural] = ACTIONS(1474), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1474), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1474), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1474), - [anon_sym_BSLASHglsname] = ACTIONS(1474), - [anon_sym_BSLASHGlsname] = ACTIONS(1474), - [anon_sym_BSLASHGLSname] = ACTIONS(1474), - [anon_sym_BSLASHglssymbol] = ACTIONS(1474), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1474), - [anon_sym_BSLASHglsdesc] = ACTIONS(1474), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1474), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1474), - [anon_sym_BSLASHglsuseri] = ACTIONS(1474), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1474), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1474), - [anon_sym_BSLASHglsuserii] = ACTIONS(1474), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1474), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1474), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1474), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1474), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1474), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1474), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1474), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1474), - [anon_sym_BSLASHglsuserv] = ACTIONS(1474), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1474), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1474), - [anon_sym_BSLASHglsuservi] = ACTIONS(1474), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1474), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1474), - [anon_sym_BSLASHnewacronym] = ACTIONS(1477), - [anon_sym_BSLASHacrshort] = ACTIONS(1480), - [anon_sym_BSLASHAcrshort] = ACTIONS(1480), - [anon_sym_BSLASHACRshort] = ACTIONS(1480), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1480), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1480), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1480), - [anon_sym_BSLASHacrlong] = ACTIONS(1480), - [anon_sym_BSLASHAcrlong] = ACTIONS(1480), - [anon_sym_BSLASHACRlong] = ACTIONS(1480), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1480), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1480), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1480), - [anon_sym_BSLASHacrfull] = ACTIONS(1480), - [anon_sym_BSLASHAcrfull] = ACTIONS(1480), - [anon_sym_BSLASHACRfull] = ACTIONS(1480), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1480), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1480), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1480), - [anon_sym_BSLASHacs] = ACTIONS(1480), - [anon_sym_BSLASHAcs] = ACTIONS(1480), - [anon_sym_BSLASHacsp] = ACTIONS(1480), - [anon_sym_BSLASHAcsp] = ACTIONS(1480), - [anon_sym_BSLASHacl] = ACTIONS(1480), - [anon_sym_BSLASHAcl] = ACTIONS(1480), - [anon_sym_BSLASHaclp] = ACTIONS(1480), - [anon_sym_BSLASHAclp] = ACTIONS(1480), - [anon_sym_BSLASHacf] = ACTIONS(1480), - [anon_sym_BSLASHAcf] = ACTIONS(1480), - [anon_sym_BSLASHacfp] = ACTIONS(1480), - [anon_sym_BSLASHAcfp] = ACTIONS(1480), - [anon_sym_BSLASHac] = ACTIONS(1480), - [anon_sym_BSLASHAc] = ACTIONS(1480), - [anon_sym_BSLASHacp] = ACTIONS(1480), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1480), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1480), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1480), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1480), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1480), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1480), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1480), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1480), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1480), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1480), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1483), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1486), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1483), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1486), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1492), - [anon_sym_BSLASHcolor] = ACTIONS(1495), - [anon_sym_BSLASHcolorbox] = ACTIONS(1495), - [anon_sym_BSLASHtextcolor] = ACTIONS(1495), - [anon_sym_BSLASHpagecolor] = ACTIONS(1495), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1498), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1498), - [anon_sym_BSLASHtext] = ACTIONS(1501), - [anon_sym_BSLASHintertext] = ACTIONS(1501), - [anon_sym_shortintertext] = ACTIONS(1501), - }, - [104] = { - [sym_block_comment] = STATE(98), - [sym__root_content] = STATE(98), - [sym__flat_content] = STATE(98), - [sym__text_with_env_content] = STATE(98), - [sym__text_content] = STATE(98), - [sym__section] = STATE(98), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(98), - [sym_text] = STATE(98), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(98), - [sym_inline_formula] = STATE(98), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(98), - [sym_comment_environment] = STATE(98), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(98), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(98), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(98), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(98), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(98), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(98), - [sym_generic_command] = STATE(98), - [sym_title_declaration] = STATE(98), - [sym_author_declaration] = STATE(98), - [sym_package_include] = STATE(98), - [sym_class_include] = STATE(98), - [sym_latex_include] = STATE(98), - [sym_biblatex_include] = STATE(98), - [sym_bibtex_include] = STATE(98), - [sym_graphics_include] = STATE(98), - [sym_svg_include] = STATE(98), - [sym_inkscape_include] = STATE(98), - [sym_verbatim_include] = STATE(98), - [sym_import_include] = STATE(98), - [sym_caption] = STATE(98), - [sym_citation] = STATE(98), - [sym_label_definition] = STATE(98), - [sym_label_reference] = STATE(98), - [sym_label_reference_range] = STATE(98), - [sym_label_number] = STATE(98), - [sym_new_command_definition] = STATE(98), - [sym_old_command_definition] = STATE(98), - [sym_let_command_definition] = STATE(98), - [sym_math_delimiter] = STATE(98), - [sym_paired_delimiter_definition] = STATE(98), - [sym_environment_definition] = STATE(98), - [sym_glossary_entry_definition] = STATE(98), - [sym_glossary_entry_reference] = STATE(98), - [sym_acronym_definition] = STATE(98), - [sym_acronym_reference] = STATE(98), - [sym_theorem_definition] = STATE(98), - [sym_color_definition] = STATE(98), - [sym_color_set_definition] = STATE(98), - [sym_color_reference] = STATE(98), - [sym_tikz_library_import] = STATE(98), - [sym_text_mode] = STATE(98), - [aux_sym_source_file_repeat1] = STATE(98), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1506), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1508), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [105] = { - [sym_block_comment] = STATE(130), - [sym__root_content] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__section] = STATE(130), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(130), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(130), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(130), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(130), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(130), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_title_declaration] = STATE(130), - [sym_author_declaration] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_math_delimiter] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym_source_file_repeat1] = STATE(130), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1510), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1512), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [106] = { - [sym_block_comment] = STATE(160), - [sym__root_content] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__section] = STATE(160), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(160), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(160), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(160), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(160), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(160), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_title_declaration] = STATE(160), - [sym_author_declaration] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_math_delimiter] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym_source_file_repeat1] = STATE(160), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1514), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1516), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [107] = { - [sym_block_comment] = STATE(142), - [sym__root_content] = STATE(142), - [sym__flat_content] = STATE(142), - [sym__text_with_env_content] = STATE(142), - [sym__text_content] = STATE(142), - [sym__section] = STATE(142), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(142), - [sym_text] = STATE(142), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(142), - [sym_inline_formula] = STATE(142), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(142), - [sym_comment_environment] = STATE(142), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(142), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(142), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(142), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(142), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(142), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(142), - [sym_generic_command] = STATE(142), - [sym_title_declaration] = STATE(142), - [sym_author_declaration] = STATE(142), - [sym_package_include] = STATE(142), - [sym_class_include] = STATE(142), - [sym_latex_include] = STATE(142), - [sym_biblatex_include] = STATE(142), - [sym_bibtex_include] = STATE(142), - [sym_graphics_include] = STATE(142), - [sym_svg_include] = STATE(142), - [sym_inkscape_include] = STATE(142), - [sym_verbatim_include] = STATE(142), - [sym_import_include] = STATE(142), - [sym_caption] = STATE(142), - [sym_citation] = STATE(142), - [sym_label_definition] = STATE(142), - [sym_label_reference] = STATE(142), - [sym_label_reference_range] = STATE(142), - [sym_label_number] = STATE(142), - [sym_new_command_definition] = STATE(142), - [sym_old_command_definition] = STATE(142), - [sym_let_command_definition] = STATE(142), - [sym_math_delimiter] = STATE(142), - [sym_paired_delimiter_definition] = STATE(142), - [sym_environment_definition] = STATE(142), - [sym_glossary_entry_definition] = STATE(142), - [sym_glossary_entry_reference] = STATE(142), - [sym_acronym_definition] = STATE(142), - [sym_acronym_reference] = STATE(142), - [sym_theorem_definition] = STATE(142), - [sym_color_definition] = STATE(142), - [sym_color_set_definition] = STATE(142), - [sym_color_reference] = STATE(142), - [sym_tikz_library_import] = STATE(142), - [sym_text_mode] = STATE(142), - [aux_sym_source_file_repeat1] = STATE(142), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_RBRACK] = ACTIONS(1518), - [anon_sym_COMMA] = ACTIONS(1518), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1522), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [108] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(100), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(100), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(100), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(100), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(100), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_title_declaration] = STATE(100), - [sym_author_declaration] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_math_delimiter] = STATE(100), - [sym_paired_delimiter_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [sym_text_mode] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(1524), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1526), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [109] = { - [sym_block_comment] = STATE(130), - [sym__root_content] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__section] = STATE(130), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(130), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(130), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(130), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(130), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(130), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_title_declaration] = STATE(130), - [sym_author_declaration] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_math_delimiter] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym_source_file_repeat1] = STATE(130), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1530), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [110] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(66), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(66), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(66), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(66), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(66), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_title_declaration] = STATE(66), - [sym_author_declaration] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_math_delimiter] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1532), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [111] = { - [sym_block_comment] = STATE(150), - [sym__root_content] = STATE(150), - [sym__flat_content] = STATE(150), - [sym__text_with_env_content] = STATE(150), - [sym__text_content] = STATE(150), - [sym__section] = STATE(150), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(150), - [sym_text] = STATE(150), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(150), - [sym_inline_formula] = STATE(150), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(150), - [sym_comment_environment] = STATE(150), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(150), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(150), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(150), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(150), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(150), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(150), - [sym_generic_command] = STATE(150), - [sym_title_declaration] = STATE(150), - [sym_author_declaration] = STATE(150), - [sym_package_include] = STATE(150), - [sym_class_include] = STATE(150), - [sym_latex_include] = STATE(150), - [sym_biblatex_include] = STATE(150), - [sym_bibtex_include] = STATE(150), - [sym_graphics_include] = STATE(150), - [sym_svg_include] = STATE(150), - [sym_inkscape_include] = STATE(150), - [sym_verbatim_include] = STATE(150), - [sym_import_include] = STATE(150), - [sym_caption] = STATE(150), - [sym_citation] = STATE(150), - [sym_label_definition] = STATE(150), - [sym_label_reference] = STATE(150), - [sym_label_reference_range] = STATE(150), - [sym_label_number] = STATE(150), - [sym_new_command_definition] = STATE(150), - [sym_old_command_definition] = STATE(150), - [sym_let_command_definition] = STATE(150), - [sym_math_delimiter] = STATE(150), - [sym_paired_delimiter_definition] = STATE(150), - [sym_environment_definition] = STATE(150), - [sym_glossary_entry_definition] = STATE(150), - [sym_glossary_entry_reference] = STATE(150), - [sym_acronym_definition] = STATE(150), - [sym_acronym_reference] = STATE(150), - [sym_theorem_definition] = STATE(150), - [sym_color_definition] = STATE(150), - [sym_color_set_definition] = STATE(150), - [sym_color_reference] = STATE(150), - [sym_tikz_library_import] = STATE(150), - [sym_text_mode] = STATE(150), - [aux_sym_source_file_repeat1] = STATE(150), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1534), - [anon_sym_RBRACK] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(1534), - [anon_sym_EQ] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1508), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [112] = { - [sym_block_comment] = STATE(109), - [sym__root_content] = STATE(109), - [sym__flat_content] = STATE(109), - [sym__text_with_env_content] = STATE(109), - [sym__text_content] = STATE(109), - [sym__section] = STATE(109), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(109), - [sym_text] = STATE(109), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(109), - [sym_inline_formula] = STATE(109), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(109), - [sym_comment_environment] = STATE(109), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(109), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(109), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(109), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(109), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(109), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(109), - [sym_generic_command] = STATE(109), - [sym_title_declaration] = STATE(109), - [sym_author_declaration] = STATE(109), - [sym_package_include] = STATE(109), - [sym_class_include] = STATE(109), - [sym_latex_include] = STATE(109), - [sym_biblatex_include] = STATE(109), - [sym_bibtex_include] = STATE(109), - [sym_graphics_include] = STATE(109), - [sym_svg_include] = STATE(109), - [sym_inkscape_include] = STATE(109), - [sym_verbatim_include] = STATE(109), - [sym_import_include] = STATE(109), - [sym_caption] = STATE(109), - [sym_citation] = STATE(109), - [sym_label_definition] = STATE(109), - [sym_label_reference] = STATE(109), - [sym_label_reference_range] = STATE(109), - [sym_label_number] = STATE(109), - [sym_new_command_definition] = STATE(109), - [sym_old_command_definition] = STATE(109), - [sym_let_command_definition] = STATE(109), - [sym_math_delimiter] = STATE(109), - [sym_paired_delimiter_definition] = STATE(109), - [sym_environment_definition] = STATE(109), - [sym_glossary_entry_definition] = STATE(109), - [sym_glossary_entry_reference] = STATE(109), - [sym_acronym_definition] = STATE(109), - [sym_acronym_reference] = STATE(109), - [sym_theorem_definition] = STATE(109), - [sym_color_definition] = STATE(109), - [sym_color_set_definition] = STATE(109), - [sym_color_reference] = STATE(109), - [sym_tikz_library_import] = STATE(109), - [sym_text_mode] = STATE(109), - [aux_sym_source_file_repeat1] = STATE(109), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_RBRACK] = ACTIONS(1538), - [anon_sym_COMMA] = ACTIONS(1538), - [anon_sym_EQ] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1540), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [113] = { - [sym_block_comment] = STATE(110), - [sym__root_content] = STATE(110), - [sym__flat_content] = STATE(110), - [sym__text_with_env_content] = STATE(110), - [sym__text_content] = STATE(110), - [sym__section] = STATE(110), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(110), - [sym_text] = STATE(110), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(110), - [sym_inline_formula] = STATE(110), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(110), - [sym_comment_environment] = STATE(110), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(110), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(110), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(110), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(110), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(110), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(110), - [sym_generic_command] = STATE(110), - [sym_title_declaration] = STATE(110), - [sym_author_declaration] = STATE(110), - [sym_package_include] = STATE(110), - [sym_class_include] = STATE(110), - [sym_latex_include] = STATE(110), - [sym_biblatex_include] = STATE(110), - [sym_bibtex_include] = STATE(110), - [sym_graphics_include] = STATE(110), - [sym_svg_include] = STATE(110), - [sym_inkscape_include] = STATE(110), - [sym_verbatim_include] = STATE(110), - [sym_import_include] = STATE(110), - [sym_caption] = STATE(110), - [sym_citation] = STATE(110), - [sym_label_definition] = STATE(110), - [sym_label_reference] = STATE(110), - [sym_label_reference_range] = STATE(110), - [sym_label_number] = STATE(110), - [sym_new_command_definition] = STATE(110), - [sym_old_command_definition] = STATE(110), - [sym_let_command_definition] = STATE(110), - [sym_math_delimiter] = STATE(110), - [sym_paired_delimiter_definition] = STATE(110), - [sym_environment_definition] = STATE(110), - [sym_glossary_entry_definition] = STATE(110), - [sym_glossary_entry_reference] = STATE(110), - [sym_acronym_definition] = STATE(110), - [sym_acronym_reference] = STATE(110), - [sym_theorem_definition] = STATE(110), - [sym_color_definition] = STATE(110), - [sym_color_set_definition] = STATE(110), - [sym_color_reference] = STATE(110), - [sym_tikz_library_import] = STATE(110), - [sym_text_mode] = STATE(110), - [aux_sym_source_file_repeat1] = STATE(110), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACK] = ACTIONS(1542), - [anon_sym_COMMA] = ACTIONS(1542), - [anon_sym_EQ] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1544), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [114] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(199), - [anon_sym_BSLASHpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddpart] = ACTIONS(199), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHchapter] = ACTIONS(199), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddchap] = ACTIONS(199), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHparagraph] = ACTIONS(199), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubparagraph] = ACTIONS(199), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHitem] = ACTIONS(199), - [anon_sym_BSLASHitem_STAR] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_BSLASH_RBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [115] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(66), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(66), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(66), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(66), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(66), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_title_declaration] = STATE(66), - [sym_author_declaration] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_math_delimiter] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1546), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [116] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [117] = { - [sym_block_comment] = STATE(130), - [sym__root_content] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__section] = STATE(130), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(130), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(130), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(130), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(130), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(130), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_title_declaration] = STATE(130), - [sym_author_declaration] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_math_delimiter] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym_source_file_repeat1] = STATE(130), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1548), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [118] = { - [sym_block_comment] = STATE(160), - [sym__root_content] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__section] = STATE(160), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(160), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(160), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(160), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(160), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(160), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_title_declaration] = STATE(160), - [sym_author_declaration] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_math_delimiter] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym_source_file_repeat1] = STATE(160), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1552), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1554), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [119] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [120] = { - [sym_block_comment] = STATE(146), - [sym__root_content] = STATE(146), - [sym__flat_content] = STATE(146), - [sym__text_with_env_content] = STATE(146), - [sym__text_content] = STATE(146), - [sym__section] = STATE(146), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(146), - [sym_text] = STATE(146), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(146), - [sym_inline_formula] = STATE(146), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(146), - [sym_comment_environment] = STATE(146), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(146), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(146), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(146), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(146), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(146), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(146), - [sym_generic_command] = STATE(146), - [sym_title_declaration] = STATE(146), - [sym_author_declaration] = STATE(146), - [sym_package_include] = STATE(146), - [sym_class_include] = STATE(146), - [sym_latex_include] = STATE(146), - [sym_biblatex_include] = STATE(146), - [sym_bibtex_include] = STATE(146), - [sym_graphics_include] = STATE(146), - [sym_svg_include] = STATE(146), - [sym_inkscape_include] = STATE(146), - [sym_verbatim_include] = STATE(146), - [sym_import_include] = STATE(146), - [sym_caption] = STATE(146), - [sym_citation] = STATE(146), - [sym_label_definition] = STATE(146), - [sym_label_reference] = STATE(146), - [sym_label_reference_range] = STATE(146), - [sym_label_number] = STATE(146), - [sym_new_command_definition] = STATE(146), - [sym_old_command_definition] = STATE(146), - [sym_let_command_definition] = STATE(146), - [sym_math_delimiter] = STATE(146), - [sym_paired_delimiter_definition] = STATE(146), - [sym_environment_definition] = STATE(146), - [sym_glossary_entry_definition] = STATE(146), - [sym_glossary_entry_reference] = STATE(146), - [sym_acronym_definition] = STATE(146), - [sym_acronym_reference] = STATE(146), - [sym_theorem_definition] = STATE(146), - [sym_color_definition] = STATE(146), - [sym_color_set_definition] = STATE(146), - [sym_color_reference] = STATE(146), - [sym_tikz_library_import] = STATE(146), - [sym_text_mode] = STATE(146), - [aux_sym_source_file_repeat1] = STATE(146), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_RBRACK] = ACTIONS(1556), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1558), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [121] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [122] = { - [sym_block_comment] = STATE(148), - [sym__root_content] = STATE(148), - [sym__flat_content] = STATE(148), - [sym__text_with_env_content] = STATE(148), - [sym__text_content] = STATE(148), - [sym__section] = STATE(148), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(148), - [sym_text] = STATE(148), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(148), - [sym_inline_formula] = STATE(148), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(148), - [sym_comment_environment] = STATE(148), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(148), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(148), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(148), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(148), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(148), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(148), - [sym_generic_command] = STATE(148), - [sym_title_declaration] = STATE(148), - [sym_author_declaration] = STATE(148), - [sym_package_include] = STATE(148), - [sym_class_include] = STATE(148), - [sym_latex_include] = STATE(148), - [sym_biblatex_include] = STATE(148), - [sym_bibtex_include] = STATE(148), - [sym_graphics_include] = STATE(148), - [sym_svg_include] = STATE(148), - [sym_inkscape_include] = STATE(148), - [sym_verbatim_include] = STATE(148), - [sym_import_include] = STATE(148), - [sym_caption] = STATE(148), - [sym_citation] = STATE(148), - [sym_label_definition] = STATE(148), - [sym_label_reference] = STATE(148), - [sym_label_reference_range] = STATE(148), - [sym_label_number] = STATE(148), - [sym_new_command_definition] = STATE(148), - [sym_old_command_definition] = STATE(148), - [sym_let_command_definition] = STATE(148), - [sym_math_delimiter] = STATE(148), - [sym_paired_delimiter_definition] = STATE(148), - [sym_environment_definition] = STATE(148), - [sym_glossary_entry_definition] = STATE(148), - [sym_glossary_entry_reference] = STATE(148), - [sym_acronym_definition] = STATE(148), - [sym_acronym_reference] = STATE(148), - [sym_theorem_definition] = STATE(148), - [sym_color_definition] = STATE(148), - [sym_color_set_definition] = STATE(148), - [sym_color_reference] = STATE(148), - [sym_tikz_library_import] = STATE(148), - [sym_text_mode] = STATE(148), - [aux_sym_source_file_repeat1] = STATE(148), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_RBRACK] = ACTIONS(1560), - [anon_sym_COMMA] = ACTIONS(1560), - [anon_sym_EQ] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1562), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1564), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [123] = { - [sym_block_comment] = STATE(149), - [sym__root_content] = STATE(149), - [sym__flat_content] = STATE(149), - [sym__text_with_env_content] = STATE(149), - [sym__text_content] = STATE(149), - [sym__section] = STATE(149), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(149), - [sym_text] = STATE(149), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(149), - [sym_inline_formula] = STATE(149), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(149), - [sym_comment_environment] = STATE(149), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(149), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(149), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(149), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(149), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(149), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(149), - [sym_generic_command] = STATE(149), - [sym_title_declaration] = STATE(149), - [sym_author_declaration] = STATE(149), - [sym_package_include] = STATE(149), - [sym_class_include] = STATE(149), - [sym_latex_include] = STATE(149), - [sym_biblatex_include] = STATE(149), - [sym_bibtex_include] = STATE(149), - [sym_graphics_include] = STATE(149), - [sym_svg_include] = STATE(149), - [sym_inkscape_include] = STATE(149), - [sym_verbatim_include] = STATE(149), - [sym_import_include] = STATE(149), - [sym_caption] = STATE(149), - [sym_citation] = STATE(149), - [sym_label_definition] = STATE(149), - [sym_label_reference] = STATE(149), - [sym_label_reference_range] = STATE(149), - [sym_label_number] = STATE(149), - [sym_new_command_definition] = STATE(149), - [sym_old_command_definition] = STATE(149), - [sym_let_command_definition] = STATE(149), - [sym_math_delimiter] = STATE(149), - [sym_paired_delimiter_definition] = STATE(149), - [sym_environment_definition] = STATE(149), - [sym_glossary_entry_definition] = STATE(149), - [sym_glossary_entry_reference] = STATE(149), - [sym_acronym_definition] = STATE(149), - [sym_acronym_reference] = STATE(149), - [sym_theorem_definition] = STATE(149), - [sym_color_definition] = STATE(149), - [sym_color_set_definition] = STATE(149), - [sym_color_reference] = STATE(149), - [sym_tikz_library_import] = STATE(149), - [sym_text_mode] = STATE(149), - [aux_sym_source_file_repeat1] = STATE(149), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1566), - [anon_sym_RBRACK] = ACTIONS(1566), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_EQ] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1566), - [anon_sym_RPAREN] = ACTIONS(1566), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1568), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1570), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [124] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [125] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [126] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [127] = { - [sym_block_comment] = STATE(167), - [sym__root_content] = STATE(167), - [sym__flat_content] = STATE(167), - [sym__text_with_env_content] = STATE(167), - [sym__text_content] = STATE(167), - [sym__section] = STATE(167), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(167), - [sym_text] = STATE(167), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(167), - [sym_inline_formula] = STATE(167), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(167), - [sym_comment_environment] = STATE(167), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(167), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(167), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(167), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(167), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(167), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(167), - [sym_generic_command] = STATE(167), - [sym_title_declaration] = STATE(167), - [sym_author_declaration] = STATE(167), - [sym_package_include] = STATE(167), - [sym_class_include] = STATE(167), - [sym_latex_include] = STATE(167), - [sym_biblatex_include] = STATE(167), - [sym_bibtex_include] = STATE(167), - [sym_graphics_include] = STATE(167), - [sym_svg_include] = STATE(167), - [sym_inkscape_include] = STATE(167), - [sym_verbatim_include] = STATE(167), - [sym_import_include] = STATE(167), - [sym_caption] = STATE(167), - [sym_citation] = STATE(167), - [sym_label_definition] = STATE(167), - [sym_label_reference] = STATE(167), - [sym_label_reference_range] = STATE(167), - [sym_label_number] = STATE(167), - [sym_new_command_definition] = STATE(167), - [sym_old_command_definition] = STATE(167), - [sym_let_command_definition] = STATE(167), - [sym_math_delimiter] = STATE(167), - [sym_paired_delimiter_definition] = STATE(167), - [sym_environment_definition] = STATE(167), - [sym_glossary_entry_definition] = STATE(167), - [sym_glossary_entry_reference] = STATE(167), - [sym_acronym_definition] = STATE(167), - [sym_acronym_reference] = STATE(167), - [sym_theorem_definition] = STATE(167), - [sym_color_definition] = STATE(167), - [sym_color_set_definition] = STATE(167), - [sym_color_reference] = STATE(167), - [sym_tikz_library_import] = STATE(167), - [sym_text_mode] = STATE(167), - [aux_sym_source_file_repeat1] = STATE(167), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_RBRACK] = ACTIONS(1572), - [anon_sym_COMMA] = ACTIONS(1572), - [anon_sym_EQ] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1574), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [128] = { - [sym_block_comment] = STATE(160), - [sym__root_content] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__section] = STATE(160), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(160), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(160), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(160), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(160), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(160), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_title_declaration] = STATE(160), - [sym_author_declaration] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_math_delimiter] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym_source_file_repeat1] = STATE(160), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1578), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1200), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [129] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(654), - [anon_sym_RBRACK] = ACTIONS(654), - [anon_sym_COMMA] = ACTIONS(654), - [anon_sym_EQ] = ACTIONS(654), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(654), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1580), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [130] = { - [sym_block_comment] = STATE(130), - [sym__root_content] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__section] = STATE(130), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(130), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(130), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(130), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(130), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(130), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_title_declaration] = STATE(130), - [sym_author_declaration] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_math_delimiter] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym_source_file_repeat1] = STATE(130), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1582), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACK] = ACTIONS(1588), - [anon_sym_COMMA] = ACTIONS(1588), - [anon_sym_EQ] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_RPAREN] = ACTIONS(1588), - [anon_sym_BSLASHpart] = ACTIONS(1591), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1594), - [anon_sym_BSLASHaddpart] = ACTIONS(1591), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1594), - [anon_sym_BSLASHchapter] = ACTIONS(1597), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1600), - [anon_sym_BSLASHaddchap] = ACTIONS(1597), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1600), - [anon_sym_BSLASHsection] = ACTIONS(1603), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1606), - [anon_sym_BSLASHaddsec] = ACTIONS(1603), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1606), - [anon_sym_BSLASHsubsection] = ACTIONS(1609), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1612), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1615), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1618), - [anon_sym_BSLASHparagraph] = ACTIONS(1621), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1624), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1627), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1630), - [anon_sym_BSLASHitem] = ACTIONS(1633), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1639), - [sym_word] = ACTIONS(1642), - [sym_placeholder] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_STAR] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1648), - [anon_sym_LT] = ACTIONS(1651), - [anon_sym_GT] = ACTIONS(1651), - [anon_sym_BANG] = ACTIONS(1651), - [anon_sym_PIPE] = ACTIONS(1651), - [anon_sym_COLON] = ACTIONS(1651), - [anon_sym_SQUOTE] = ACTIONS(1651), - [anon_sym__] = ACTIONS(1654), - [anon_sym_CARET] = ACTIONS(1657), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1660), - [anon_sym_BSLASH_RBRACK] = ACTIONS(840), - [anon_sym_DOLLAR] = ACTIONS(1663), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1666), - [anon_sym_BSLASHbegin] = ACTIONS(426), - [anon_sym_BSLASHtitle] = ACTIONS(1669), - [anon_sym_BSLASHauthor] = ACTIONS(1672), - [anon_sym_BSLASHusepackage] = ACTIONS(1675), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1675), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1678), - [anon_sym_BSLASHinclude] = ACTIONS(1681), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1681), - [anon_sym_BSLASHinput] = ACTIONS(1681), - [anon_sym_BSLASHsubfile] = ACTIONS(1681), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1684), - [anon_sym_BSLASHbibliography] = ACTIONS(1687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1690), - [anon_sym_BSLASHincludesvg] = ACTIONS(1693), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1696), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1699), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1699), - [anon_sym_BSLASHimport] = ACTIONS(1702), - [anon_sym_BSLASHsubimport] = ACTIONS(1702), - [anon_sym_BSLASHinputfrom] = ACTIONS(1702), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1702), - [anon_sym_BSLASHincludefrom] = ACTIONS(1702), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1702), - [anon_sym_BSLASHcaption] = ACTIONS(1705), - [anon_sym_BSLASHcite] = ACTIONS(1708), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1711), - [anon_sym_BSLASHCite] = ACTIONS(1708), - [anon_sym_BSLASHnocite] = ACTIONS(1708), - [anon_sym_BSLASHcitet] = ACTIONS(1708), - [anon_sym_BSLASHcitep] = ACTIONS(1708), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1711), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1711), - [anon_sym_BSLASHciteauthor] = ACTIONS(1708), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1711), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1708), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1711), - [anon_sym_BSLASHcitetitle] = ACTIONS(1708), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1711), - [anon_sym_BSLASHciteyear] = ACTIONS(1708), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1711), - [anon_sym_BSLASHcitedate] = ACTIONS(1708), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1711), - [anon_sym_BSLASHciteurl] = ACTIONS(1708), - [anon_sym_BSLASHfullcite] = ACTIONS(1708), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1708), - [anon_sym_BSLASHcitealt] = ACTIONS(1708), - [anon_sym_BSLASHcitealp] = ACTIONS(1708), - [anon_sym_BSLASHcitetext] = ACTIONS(1708), - [anon_sym_BSLASHparencite] = ACTIONS(1708), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1711), - [anon_sym_BSLASHParencite] = ACTIONS(1708), - [anon_sym_BSLASHfootcite] = ACTIONS(1708), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1708), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1708), - [anon_sym_BSLASHtextcite] = ACTIONS(1708), - [anon_sym_BSLASHTextcite] = ACTIONS(1708), - [anon_sym_BSLASHsmartcite] = ACTIONS(1708), - [anon_sym_BSLASHSmartcite] = ACTIONS(1708), - [anon_sym_BSLASHsupercite] = ACTIONS(1708), - [anon_sym_BSLASHautocite] = ACTIONS(1708), - [anon_sym_BSLASHAutocite] = ACTIONS(1708), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1711), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1711), - [anon_sym_BSLASHvolcite] = ACTIONS(1708), - [anon_sym_BSLASHVolcite] = ACTIONS(1708), - [anon_sym_BSLASHpvolcite] = ACTIONS(1708), - [anon_sym_BSLASHPvolcite] = ACTIONS(1708), - [anon_sym_BSLASHfvolcite] = ACTIONS(1708), - [anon_sym_BSLASHftvolcite] = ACTIONS(1708), - [anon_sym_BSLASHsvolcite] = ACTIONS(1708), - [anon_sym_BSLASHSvolcite] = ACTIONS(1708), - [anon_sym_BSLASHtvolcite] = ACTIONS(1708), - [anon_sym_BSLASHTvolcite] = ACTIONS(1708), - [anon_sym_BSLASHavolcite] = ACTIONS(1708), - [anon_sym_BSLASHAvolcite] = ACTIONS(1708), - [anon_sym_BSLASHnotecite] = ACTIONS(1708), - [anon_sym_BSLASHNotecite] = ACTIONS(1708), - [anon_sym_BSLASHpnotecite] = ACTIONS(1708), - [anon_sym_BSLASHPnotecite] = ACTIONS(1708), - [anon_sym_BSLASHfnotecite] = ACTIONS(1708), - [anon_sym_BSLASHlabel] = ACTIONS(1714), - [anon_sym_BSLASHref] = ACTIONS(1717), - [anon_sym_BSLASHeqref] = ACTIONS(1717), - [anon_sym_BSLASHvref] = ACTIONS(1717), - [anon_sym_BSLASHVref] = ACTIONS(1717), - [anon_sym_BSLASHautoref] = ACTIONS(1717), - [anon_sym_BSLASHpageref] = ACTIONS(1717), - [anon_sym_BSLASHcref] = ACTIONS(1717), - [anon_sym_BSLASHCref] = ACTIONS(1717), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1720), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1720), - [anon_sym_BSLASHnamecref] = ACTIONS(1717), - [anon_sym_BSLASHnameCref] = ACTIONS(1717), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1717), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1717), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1717), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1717), - [anon_sym_BSLASHlabelcref] = ACTIONS(1717), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1717), - [anon_sym_BSLASHcrefrange] = ACTIONS(1723), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1726), - [anon_sym_BSLASHCrefrange] = ACTIONS(1723), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1726), - [anon_sym_BSLASHnewlabel] = ACTIONS(1729), - [anon_sym_BSLASHnewcommand] = ACTIONS(1732), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1735), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1732), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1735), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1732), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1735), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1732), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1735), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1732), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1732), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1732), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1732), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1732), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1732), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1732), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1732), - [anon_sym_BSLASHdef] = ACTIONS(1738), - [anon_sym_BSLASHlet] = ACTIONS(1741), - [anon_sym_BSLASHleft] = ACTIONS(1744), - [anon_sym_BSLASHbig] = ACTIONS(1744), - [anon_sym_BSLASHBig] = ACTIONS(1744), - [anon_sym_BSLASHbigg] = ACTIONS(1744), - [anon_sym_BSLASHBigg] = ACTIONS(1744), - [anon_sym_BSLASHbigl] = ACTIONS(1744), - [anon_sym_BSLASHBigl] = ACTIONS(1744), - [anon_sym_BSLASHbiggl] = ACTIONS(1744), - [anon_sym_BSLASHBiggl] = ACTIONS(1744), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1747), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1747), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1750), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1750), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1750), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1750), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1750), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1750), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1753), - [anon_sym_BSLASHgls] = ACTIONS(1756), - [anon_sym_BSLASHGls] = ACTIONS(1756), - [anon_sym_BSLASHGLS] = ACTIONS(1756), - [anon_sym_BSLASHglspl] = ACTIONS(1756), - [anon_sym_BSLASHGlspl] = ACTIONS(1756), - [anon_sym_BSLASHGLSpl] = ACTIONS(1756), - [anon_sym_BSLASHglsdisp] = ACTIONS(1756), - [anon_sym_BSLASHglslink] = ACTIONS(1756), - [anon_sym_BSLASHglstext] = ACTIONS(1756), - [anon_sym_BSLASHGlstext] = ACTIONS(1756), - [anon_sym_BSLASHGLStext] = ACTIONS(1756), - [anon_sym_BSLASHglsfirst] = ACTIONS(1756), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1756), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1756), - [anon_sym_BSLASHglsplural] = ACTIONS(1756), - [anon_sym_BSLASHGlsplural] = ACTIONS(1756), - [anon_sym_BSLASHGLSplural] = ACTIONS(1756), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1756), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1756), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1756), - [anon_sym_BSLASHglsname] = ACTIONS(1756), - [anon_sym_BSLASHGlsname] = ACTIONS(1756), - [anon_sym_BSLASHGLSname] = ACTIONS(1756), - [anon_sym_BSLASHglssymbol] = ACTIONS(1756), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1756), - [anon_sym_BSLASHglsdesc] = ACTIONS(1756), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1756), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1756), - [anon_sym_BSLASHglsuseri] = ACTIONS(1756), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1756), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1756), - [anon_sym_BSLASHglsuserii] = ACTIONS(1756), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1756), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1756), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1756), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1756), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1756), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1756), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1756), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1756), - [anon_sym_BSLASHglsuserv] = ACTIONS(1756), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1756), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1756), - [anon_sym_BSLASHglsuservi] = ACTIONS(1756), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1756), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1756), - [anon_sym_BSLASHnewacronym] = ACTIONS(1759), - [anon_sym_BSLASHacrshort] = ACTIONS(1762), - [anon_sym_BSLASHAcrshort] = ACTIONS(1762), - [anon_sym_BSLASHACRshort] = ACTIONS(1762), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1762), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1762), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1762), - [anon_sym_BSLASHacrlong] = ACTIONS(1762), - [anon_sym_BSLASHAcrlong] = ACTIONS(1762), - [anon_sym_BSLASHACRlong] = ACTIONS(1762), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1762), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1762), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1762), - [anon_sym_BSLASHacrfull] = ACTIONS(1762), - [anon_sym_BSLASHAcrfull] = ACTIONS(1762), - [anon_sym_BSLASHACRfull] = ACTIONS(1762), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1762), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1762), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1762), - [anon_sym_BSLASHacs] = ACTIONS(1762), - [anon_sym_BSLASHAcs] = ACTIONS(1762), - [anon_sym_BSLASHacsp] = ACTIONS(1762), - [anon_sym_BSLASHAcsp] = ACTIONS(1762), - [anon_sym_BSLASHacl] = ACTIONS(1762), - [anon_sym_BSLASHAcl] = ACTIONS(1762), - [anon_sym_BSLASHaclp] = ACTIONS(1762), - [anon_sym_BSLASHAclp] = ACTIONS(1762), - [anon_sym_BSLASHacf] = ACTIONS(1762), - [anon_sym_BSLASHAcf] = ACTIONS(1762), - [anon_sym_BSLASHacfp] = ACTIONS(1762), - [anon_sym_BSLASHAcfp] = ACTIONS(1762), - [anon_sym_BSLASHac] = ACTIONS(1762), - [anon_sym_BSLASHAc] = ACTIONS(1762), - [anon_sym_BSLASHacp] = ACTIONS(1762), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1762), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1762), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1762), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1762), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1762), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1762), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1762), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1762), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1762), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1762), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1765), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1768), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1765), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1768), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1771), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1774), - [anon_sym_BSLASHcolor] = ACTIONS(1777), - [anon_sym_BSLASHcolorbox] = ACTIONS(1777), - [anon_sym_BSLASHtextcolor] = ACTIONS(1777), - [anon_sym_BSLASHpagecolor] = ACTIONS(1777), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1780), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1780), - [anon_sym_BSLASHtext] = ACTIONS(1783), - [anon_sym_BSLASHintertext] = ACTIONS(1783), - [anon_sym_shortintertext] = ACTIONS(1783), - }, - [131] = { - [sym_block_comment] = STATE(130), - [sym__root_content] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__section] = STATE(130), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(130), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(130), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(130), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(130), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(130), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_title_declaration] = STATE(130), - [sym_author_declaration] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_math_delimiter] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym_source_file_repeat1] = STATE(130), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1786), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1290), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [132] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(66), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(66), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(66), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(66), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(66), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_title_declaration] = STATE(66), - [sym_author_declaration] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_math_delimiter] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1788), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [133] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(66), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(66), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(66), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(66), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(66), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_title_declaration] = STATE(66), - [sym_author_declaration] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_math_delimiter] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1790), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [134] = { - [sym_block_comment] = STATE(102), - [sym__root_content] = STATE(102), - [sym__flat_content] = STATE(102), - [sym__text_with_env_content] = STATE(102), - [sym__text_content] = STATE(102), - [sym__section] = STATE(102), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(102), - [sym_text] = STATE(102), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(102), - [sym_inline_formula] = STATE(102), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(102), - [sym_comment_environment] = STATE(102), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(102), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(102), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(102), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(102), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(102), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(102), - [sym_generic_command] = STATE(102), - [sym_title_declaration] = STATE(102), - [sym_author_declaration] = STATE(102), - [sym_package_include] = STATE(102), - [sym_class_include] = STATE(102), - [sym_latex_include] = STATE(102), - [sym_biblatex_include] = STATE(102), - [sym_bibtex_include] = STATE(102), - [sym_graphics_include] = STATE(102), - [sym_svg_include] = STATE(102), - [sym_inkscape_include] = STATE(102), - [sym_verbatim_include] = STATE(102), - [sym_import_include] = STATE(102), - [sym_caption] = STATE(102), - [sym_citation] = STATE(102), - [sym_label_definition] = STATE(102), - [sym_label_reference] = STATE(102), - [sym_label_reference_range] = STATE(102), - [sym_label_number] = STATE(102), - [sym_new_command_definition] = STATE(102), - [sym_old_command_definition] = STATE(102), - [sym_let_command_definition] = STATE(102), - [sym_math_delimiter] = STATE(102), - [sym_paired_delimiter_definition] = STATE(102), - [sym_environment_definition] = STATE(102), - [sym_glossary_entry_definition] = STATE(102), - [sym_glossary_entry_reference] = STATE(102), - [sym_acronym_definition] = STATE(102), - [sym_acronym_reference] = STATE(102), - [sym_theorem_definition] = STATE(102), - [sym_color_definition] = STATE(102), - [sym_color_set_definition] = STATE(102), - [sym_color_reference] = STATE(102), - [sym_tikz_library_import] = STATE(102), - [sym_text_mode] = STATE(102), - [aux_sym_source_file_repeat1] = STATE(102), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1792), - [anon_sym_RBRACK] = ACTIONS(1792), - [anon_sym_COMMA] = ACTIONS(1792), - [anon_sym_EQ] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1794), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [135] = { - [sym_block_comment] = STATE(128), - [sym__root_content] = STATE(128), - [sym__flat_content] = STATE(128), - [sym__text_with_env_content] = STATE(128), - [sym__text_content] = STATE(128), - [sym__section] = STATE(128), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(128), - [sym_text] = STATE(128), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(128), - [sym_inline_formula] = STATE(128), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(128), - [sym_comment_environment] = STATE(128), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(128), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(128), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(128), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(128), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(128), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(128), - [sym_generic_command] = STATE(128), - [sym_title_declaration] = STATE(128), - [sym_author_declaration] = STATE(128), - [sym_package_include] = STATE(128), - [sym_class_include] = STATE(128), - [sym_latex_include] = STATE(128), - [sym_biblatex_include] = STATE(128), - [sym_bibtex_include] = STATE(128), - [sym_graphics_include] = STATE(128), - [sym_svg_include] = STATE(128), - [sym_inkscape_include] = STATE(128), - [sym_verbatim_include] = STATE(128), - [sym_import_include] = STATE(128), - [sym_caption] = STATE(128), - [sym_citation] = STATE(128), - [sym_label_definition] = STATE(128), - [sym_label_reference] = STATE(128), - [sym_label_reference_range] = STATE(128), - [sym_label_number] = STATE(128), - [sym_new_command_definition] = STATE(128), - [sym_old_command_definition] = STATE(128), - [sym_let_command_definition] = STATE(128), - [sym_math_delimiter] = STATE(128), - [sym_paired_delimiter_definition] = STATE(128), - [sym_environment_definition] = STATE(128), - [sym_glossary_entry_definition] = STATE(128), - [sym_glossary_entry_reference] = STATE(128), - [sym_acronym_definition] = STATE(128), - [sym_acronym_reference] = STATE(128), - [sym_theorem_definition] = STATE(128), - [sym_color_definition] = STATE(128), - [sym_color_set_definition] = STATE(128), - [sym_color_reference] = STATE(128), - [sym_tikz_library_import] = STATE(128), - [sym_text_mode] = STATE(128), - [aux_sym_source_file_repeat1] = STATE(128), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_RBRACK] = ACTIONS(1796), - [anon_sym_COMMA] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1798), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1508), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [136] = { - [sym_block_comment] = STATE(160), - [sym__root_content] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__section] = STATE(160), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(160), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(160), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(160), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(160), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(160), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_title_declaration] = STATE(160), - [sym_author_declaration] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_math_delimiter] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym_source_file_repeat1] = STATE(160), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1800), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1802), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [137] = { - [sym_block_comment] = STATE(131), - [sym__root_content] = STATE(131), - [sym__flat_content] = STATE(131), - [sym__text_with_env_content] = STATE(131), - [sym__text_content] = STATE(131), - [sym__section] = STATE(131), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(131), - [sym_text] = STATE(131), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(131), - [sym_inline_formula] = STATE(131), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(131), - [sym_comment_environment] = STATE(131), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(131), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(131), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(131), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(131), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(131), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(131), - [sym_generic_command] = STATE(131), - [sym_title_declaration] = STATE(131), - [sym_author_declaration] = STATE(131), - [sym_package_include] = STATE(131), - [sym_class_include] = STATE(131), - [sym_latex_include] = STATE(131), - [sym_biblatex_include] = STATE(131), - [sym_bibtex_include] = STATE(131), - [sym_graphics_include] = STATE(131), - [sym_svg_include] = STATE(131), - [sym_inkscape_include] = STATE(131), - [sym_verbatim_include] = STATE(131), - [sym_import_include] = STATE(131), - [sym_caption] = STATE(131), - [sym_citation] = STATE(131), - [sym_label_definition] = STATE(131), - [sym_label_reference] = STATE(131), - [sym_label_reference_range] = STATE(131), - [sym_label_number] = STATE(131), - [sym_new_command_definition] = STATE(131), - [sym_old_command_definition] = STATE(131), - [sym_let_command_definition] = STATE(131), - [sym_math_delimiter] = STATE(131), - [sym_paired_delimiter_definition] = STATE(131), - [sym_environment_definition] = STATE(131), - [sym_glossary_entry_definition] = STATE(131), - [sym_glossary_entry_reference] = STATE(131), - [sym_acronym_definition] = STATE(131), - [sym_acronym_reference] = STATE(131), - [sym_theorem_definition] = STATE(131), - [sym_color_definition] = STATE(131), - [sym_color_set_definition] = STATE(131), - [sym_color_reference] = STATE(131), - [sym_tikz_library_import] = STATE(131), - [sym_text_mode] = STATE(131), - [aux_sym_source_file_repeat1] = STATE(131), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1804), - [anon_sym_RBRACK] = ACTIONS(1804), - [anon_sym_COMMA] = ACTIONS(1804), - [anon_sym_EQ] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1804), - [anon_sym_RPAREN] = ACTIONS(1804), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1806), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1528), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [138] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(193), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [139] = { - [sym_block_comment] = STATE(133), - [sym__root_content] = STATE(133), - [sym__flat_content] = STATE(133), - [sym__text_with_env_content] = STATE(133), - [sym__text_content] = STATE(133), - [sym__section] = STATE(133), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(133), - [sym_text] = STATE(133), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(133), - [sym_inline_formula] = STATE(133), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(133), - [sym_comment_environment] = STATE(133), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(133), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(133), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(133), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(133), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(133), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(133), - [sym_generic_command] = STATE(133), - [sym_title_declaration] = STATE(133), - [sym_author_declaration] = STATE(133), - [sym_package_include] = STATE(133), - [sym_class_include] = STATE(133), - [sym_latex_include] = STATE(133), - [sym_biblatex_include] = STATE(133), - [sym_bibtex_include] = STATE(133), - [sym_graphics_include] = STATE(133), - [sym_svg_include] = STATE(133), - [sym_inkscape_include] = STATE(133), - [sym_verbatim_include] = STATE(133), - [sym_import_include] = STATE(133), - [sym_caption] = STATE(133), - [sym_citation] = STATE(133), - [sym_label_definition] = STATE(133), - [sym_label_reference] = STATE(133), - [sym_label_reference_range] = STATE(133), - [sym_label_number] = STATE(133), - [sym_new_command_definition] = STATE(133), - [sym_old_command_definition] = STATE(133), - [sym_let_command_definition] = STATE(133), - [sym_math_delimiter] = STATE(133), - [sym_paired_delimiter_definition] = STATE(133), - [sym_environment_definition] = STATE(133), - [sym_glossary_entry_definition] = STATE(133), - [sym_glossary_entry_reference] = STATE(133), - [sym_acronym_definition] = STATE(133), - [sym_acronym_reference] = STATE(133), - [sym_theorem_definition] = STATE(133), - [sym_color_definition] = STATE(133), - [sym_color_set_definition] = STATE(133), - [sym_color_reference] = STATE(133), - [sym_tikz_library_import] = STATE(133), - [sym_text_mode] = STATE(133), - [aux_sym_source_file_repeat1] = STATE(133), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1808), - [anon_sym_RBRACK] = ACTIONS(1808), - [anon_sym_COMMA] = ACTIONS(1808), - [anon_sym_EQ] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1808), - [anon_sym_RPAREN] = ACTIONS(1808), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1810), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [140] = { - [sym_block_comment] = STATE(130), - [sym__root_content] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__section] = STATE(130), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(130), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(130), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(130), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(130), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(130), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_title_declaration] = STATE(130), - [sym_author_declaration] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_math_delimiter] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym_source_file_repeat1] = STATE(130), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1814), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [141] = { - [sym_block_comment] = STATE(130), - [sym__root_content] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__section] = STATE(130), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(130), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(130), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(130), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(130), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(130), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_title_declaration] = STATE(130), - [sym_author_declaration] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_math_delimiter] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym_source_file_repeat1] = STATE(130), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [142] = { - [sym_block_comment] = STATE(160), - [sym__root_content] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__section] = STATE(160), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(160), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(160), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(160), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(160), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(160), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_title_declaration] = STATE(160), - [sym_author_declaration] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_math_delimiter] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym_source_file_repeat1] = STATE(160), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1820), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1822), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [143] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(66), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(66), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(66), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(66), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(66), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_title_declaration] = STATE(66), - [sym_author_declaration] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_math_delimiter] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1824), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [144] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(195), - [anon_sym_BSLASHpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddpart] = ACTIONS(195), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(195), - [anon_sym_BSLASHsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddsec] = ACTIONS(195), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHparagraph] = ACTIONS(195), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubparagraph] = ACTIONS(195), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHitem] = ACTIONS(195), - [anon_sym_BSLASHitem_STAR] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASH_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [145] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [146] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(66), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(66), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(66), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(66), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(66), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_title_declaration] = STATE(66), - [sym_author_declaration] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_math_delimiter] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1826), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [147] = { - [sym_block_comment] = STATE(132), - [sym__root_content] = STATE(132), - [sym__flat_content] = STATE(132), - [sym__text_with_env_content] = STATE(132), - [sym__text_content] = STATE(132), - [sym__section] = STATE(132), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(132), - [sym_text] = STATE(132), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(132), - [sym_inline_formula] = STATE(132), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(132), - [sym_comment_environment] = STATE(132), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(132), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(132), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(132), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(132), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(132), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(132), - [sym_generic_command] = STATE(132), - [sym_title_declaration] = STATE(132), - [sym_author_declaration] = STATE(132), - [sym_package_include] = STATE(132), - [sym_class_include] = STATE(132), - [sym_latex_include] = STATE(132), - [sym_biblatex_include] = STATE(132), - [sym_bibtex_include] = STATE(132), - [sym_graphics_include] = STATE(132), - [sym_svg_include] = STATE(132), - [sym_inkscape_include] = STATE(132), - [sym_verbatim_include] = STATE(132), - [sym_import_include] = STATE(132), - [sym_caption] = STATE(132), - [sym_citation] = STATE(132), - [sym_label_definition] = STATE(132), - [sym_label_reference] = STATE(132), - [sym_label_reference_range] = STATE(132), - [sym_label_number] = STATE(132), - [sym_new_command_definition] = STATE(132), - [sym_old_command_definition] = STATE(132), - [sym_let_command_definition] = STATE(132), - [sym_math_delimiter] = STATE(132), - [sym_paired_delimiter_definition] = STATE(132), - [sym_environment_definition] = STATE(132), - [sym_glossary_entry_definition] = STATE(132), - [sym_glossary_entry_reference] = STATE(132), - [sym_acronym_definition] = STATE(132), - [sym_acronym_reference] = STATE(132), - [sym_theorem_definition] = STATE(132), - [sym_color_definition] = STATE(132), - [sym_color_set_definition] = STATE(132), - [sym_color_reference] = STATE(132), - [sym_tikz_library_import] = STATE(132), - [sym_text_mode] = STATE(132), - [aux_sym_source_file_repeat1] = STATE(132), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_EQ] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1830), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [148] = { - [sym_block_comment] = STATE(130), - [sym__root_content] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__section] = STATE(130), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(130), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(130), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(130), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(130), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(130), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_title_declaration] = STATE(130), - [sym_author_declaration] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_math_delimiter] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym_source_file_repeat1] = STATE(130), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1832), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [149] = { - [sym_block_comment] = STATE(160), - [sym__root_content] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__section] = STATE(160), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(160), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(160), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(160), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(160), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(160), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_title_declaration] = STATE(160), - [sym_author_declaration] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_math_delimiter] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym_source_file_repeat1] = STATE(160), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1836), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1838), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [150] = { - [sym_block_comment] = STATE(160), - [sym__root_content] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__section] = STATE(160), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(160), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(160), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(160), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(160), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(160), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_title_declaration] = STATE(160), - [sym_author_declaration] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_math_delimiter] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym_source_file_repeat1] = STATE(160), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1840), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1200), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [151] = { - [sym_block_comment] = STATE(105), - [sym__root_content] = STATE(105), - [sym__flat_content] = STATE(105), - [sym__text_with_env_content] = STATE(105), - [sym__text_content] = STATE(105), - [sym__section] = STATE(105), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(105), - [sym_text] = STATE(105), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(105), - [sym_inline_formula] = STATE(105), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(105), - [sym_comment_environment] = STATE(105), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(105), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(105), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(105), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(105), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(105), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(105), - [sym_generic_command] = STATE(105), - [sym_title_declaration] = STATE(105), - [sym_author_declaration] = STATE(105), - [sym_package_include] = STATE(105), - [sym_class_include] = STATE(105), - [sym_latex_include] = STATE(105), - [sym_biblatex_include] = STATE(105), - [sym_bibtex_include] = STATE(105), - [sym_graphics_include] = STATE(105), - [sym_svg_include] = STATE(105), - [sym_inkscape_include] = STATE(105), - [sym_verbatim_include] = STATE(105), - [sym_import_include] = STATE(105), - [sym_caption] = STATE(105), - [sym_citation] = STATE(105), - [sym_label_definition] = STATE(105), - [sym_label_reference] = STATE(105), - [sym_label_reference_range] = STATE(105), - [sym_label_number] = STATE(105), - [sym_new_command_definition] = STATE(105), - [sym_old_command_definition] = STATE(105), - [sym_let_command_definition] = STATE(105), - [sym_math_delimiter] = STATE(105), - [sym_paired_delimiter_definition] = STATE(105), - [sym_environment_definition] = STATE(105), - [sym_glossary_entry_definition] = STATE(105), - [sym_glossary_entry_reference] = STATE(105), - [sym_acronym_definition] = STATE(105), - [sym_acronym_reference] = STATE(105), - [sym_theorem_definition] = STATE(105), - [sym_color_definition] = STATE(105), - [sym_color_set_definition] = STATE(105), - [sym_color_reference] = STATE(105), - [sym_tikz_library_import] = STATE(105), - [sym_text_mode] = STATE(105), - [aux_sym_source_file_repeat1] = STATE(105), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [152] = { - [sym_block_comment] = STATE(136), - [sym__root_content] = STATE(136), - [sym__flat_content] = STATE(136), - [sym__text_with_env_content] = STATE(136), - [sym__text_content] = STATE(136), - [sym__section] = STATE(136), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(136), - [sym_text] = STATE(136), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(136), - [sym_inline_formula] = STATE(136), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(136), - [sym_comment_environment] = STATE(136), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(136), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(136), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(136), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(136), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(136), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(136), - [sym_generic_command] = STATE(136), - [sym_title_declaration] = STATE(136), - [sym_author_declaration] = STATE(136), - [sym_package_include] = STATE(136), - [sym_class_include] = STATE(136), - [sym_latex_include] = STATE(136), - [sym_biblatex_include] = STATE(136), - [sym_bibtex_include] = STATE(136), - [sym_graphics_include] = STATE(136), - [sym_svg_include] = STATE(136), - [sym_inkscape_include] = STATE(136), - [sym_verbatim_include] = STATE(136), - [sym_import_include] = STATE(136), - [sym_caption] = STATE(136), - [sym_citation] = STATE(136), - [sym_label_definition] = STATE(136), - [sym_label_reference] = STATE(136), - [sym_label_reference_range] = STATE(136), - [sym_label_number] = STATE(136), - [sym_new_command_definition] = STATE(136), - [sym_old_command_definition] = STATE(136), - [sym_let_command_definition] = STATE(136), - [sym_math_delimiter] = STATE(136), - [sym_paired_delimiter_definition] = STATE(136), - [sym_environment_definition] = STATE(136), - [sym_glossary_entry_definition] = STATE(136), - [sym_glossary_entry_reference] = STATE(136), - [sym_acronym_definition] = STATE(136), - [sym_acronym_reference] = STATE(136), - [sym_theorem_definition] = STATE(136), - [sym_color_definition] = STATE(136), - [sym_color_set_definition] = STATE(136), - [sym_color_reference] = STATE(136), - [sym_tikz_library_import] = STATE(136), - [sym_text_mode] = STATE(136), - [aux_sym_source_file_repeat1] = STATE(136), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_RBRACK] = ACTIONS(1848), - [anon_sym_COMMA] = ACTIONS(1848), - [anon_sym_EQ] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1850), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1852), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [153] = { - [sym_block_comment] = STATE(160), - [sym__root_content] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__section] = STATE(160), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(160), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(160), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(160), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(160), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(160), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_title_declaration] = STATE(160), - [sym_author_declaration] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_math_delimiter] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym_source_file_repeat1] = STATE(160), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1854), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1856), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [154] = { - [sym_block_comment] = STATE(130), - [sym__root_content] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__section] = STATE(130), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(130), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(130), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(130), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(130), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(130), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_title_declaration] = STATE(130), - [sym_author_declaration] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_math_delimiter] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym_source_file_repeat1] = STATE(130), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1858), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1860), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [155] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(66), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(66), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(66), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(66), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(66), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_title_declaration] = STATE(66), - [sym_author_declaration] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_math_delimiter] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1862), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [156] = { - [sym_block_comment] = STATE(141), - [sym__root_content] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section] = STATE(141), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(141), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(141), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(141), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(141), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(141), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_title_declaration] = STATE(141), - [sym_author_declaration] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_math_delimiter] = STATE(141), - [sym_paired_delimiter_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [sym_text_mode] = STATE(141), - [aux_sym_source_file_repeat1] = STATE(141), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(620), - [anon_sym_RBRACK] = ACTIONS(620), - [anon_sym_COMMA] = ACTIONS(620), - [anon_sym_EQ] = ACTIONS(620), - [anon_sym_LPAREN] = ACTIONS(620), - [anon_sym_RPAREN] = ACTIONS(620), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1864), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [157] = { - [sym_block_comment] = STATE(153), - [sym__root_content] = STATE(153), - [sym__flat_content] = STATE(153), - [sym__text_with_env_content] = STATE(153), - [sym__text_content] = STATE(153), - [sym__section] = STATE(153), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(153), - [sym_text] = STATE(153), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(153), - [sym_inline_formula] = STATE(153), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(153), - [sym_comment_environment] = STATE(153), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(153), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(153), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(153), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(153), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(153), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(153), - [sym_generic_command] = STATE(153), - [sym_title_declaration] = STATE(153), - [sym_author_declaration] = STATE(153), - [sym_package_include] = STATE(153), - [sym_class_include] = STATE(153), - [sym_latex_include] = STATE(153), - [sym_biblatex_include] = STATE(153), - [sym_bibtex_include] = STATE(153), - [sym_graphics_include] = STATE(153), - [sym_svg_include] = STATE(153), - [sym_inkscape_include] = STATE(153), - [sym_verbatim_include] = STATE(153), - [sym_import_include] = STATE(153), - [sym_caption] = STATE(153), - [sym_citation] = STATE(153), - [sym_label_definition] = STATE(153), - [sym_label_reference] = STATE(153), - [sym_label_reference_range] = STATE(153), - [sym_label_number] = STATE(153), - [sym_new_command_definition] = STATE(153), - [sym_old_command_definition] = STATE(153), - [sym_let_command_definition] = STATE(153), - [sym_math_delimiter] = STATE(153), - [sym_paired_delimiter_definition] = STATE(153), - [sym_environment_definition] = STATE(153), - [sym_glossary_entry_definition] = STATE(153), - [sym_glossary_entry_reference] = STATE(153), - [sym_acronym_definition] = STATE(153), - [sym_acronym_reference] = STATE(153), - [sym_theorem_definition] = STATE(153), - [sym_color_definition] = STATE(153), - [sym_color_set_definition] = STATE(153), - [sym_color_reference] = STATE(153), - [sym_tikz_library_import] = STATE(153), - [sym_text_mode] = STATE(153), - [aux_sym_source_file_repeat1] = STATE(153), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1870), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [158] = { - [sym_block_comment] = STATE(154), - [sym__root_content] = STATE(154), - [sym__flat_content] = STATE(154), - [sym__text_with_env_content] = STATE(154), - [sym__text_content] = STATE(154), - [sym__section] = STATE(154), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(154), - [sym_text] = STATE(154), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(154), - [sym_inline_formula] = STATE(154), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(154), - [sym_comment_environment] = STATE(154), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(154), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(154), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(154), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(154), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(154), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(154), - [sym_generic_command] = STATE(154), - [sym_title_declaration] = STATE(154), - [sym_author_declaration] = STATE(154), - [sym_package_include] = STATE(154), - [sym_class_include] = STATE(154), - [sym_latex_include] = STATE(154), - [sym_biblatex_include] = STATE(154), - [sym_bibtex_include] = STATE(154), - [sym_graphics_include] = STATE(154), - [sym_svg_include] = STATE(154), - [sym_inkscape_include] = STATE(154), - [sym_verbatim_include] = STATE(154), - [sym_import_include] = STATE(154), - [sym_caption] = STATE(154), - [sym_citation] = STATE(154), - [sym_label_definition] = STATE(154), - [sym_label_reference] = STATE(154), - [sym_label_reference_range] = STATE(154), - [sym_label_number] = STATE(154), - [sym_new_command_definition] = STATE(154), - [sym_old_command_definition] = STATE(154), - [sym_let_command_definition] = STATE(154), - [sym_math_delimiter] = STATE(154), - [sym_paired_delimiter_definition] = STATE(154), - [sym_environment_definition] = STATE(154), - [sym_glossary_entry_definition] = STATE(154), - [sym_glossary_entry_reference] = STATE(154), - [sym_acronym_definition] = STATE(154), - [sym_acronym_reference] = STATE(154), - [sym_theorem_definition] = STATE(154), - [sym_color_definition] = STATE(154), - [sym_color_set_definition] = STATE(154), - [sym_color_reference] = STATE(154), - [sym_tikz_library_import] = STATE(154), - [sym_text_mode] = STATE(154), - [aux_sym_source_file_repeat1] = STATE(154), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_RBRACK] = ACTIONS(1872), - [anon_sym_COMMA] = ACTIONS(1872), - [anon_sym_EQ] = ACTIONS(1872), - [anon_sym_LPAREN] = ACTIONS(1872), - [anon_sym_RPAREN] = ACTIONS(1872), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1874), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [159] = { - [sym_block_comment] = STATE(155), - [sym__root_content] = STATE(155), - [sym__flat_content] = STATE(155), - [sym__text_with_env_content] = STATE(155), - [sym__text_content] = STATE(155), - [sym__section] = STATE(155), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(155), - [sym_text] = STATE(155), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(155), - [sym_inline_formula] = STATE(155), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(155), - [sym_comment_environment] = STATE(155), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(155), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(155), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(155), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(155), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(155), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(155), - [sym_generic_command] = STATE(155), - [sym_title_declaration] = STATE(155), - [sym_author_declaration] = STATE(155), - [sym_package_include] = STATE(155), - [sym_class_include] = STATE(155), - [sym_latex_include] = STATE(155), - [sym_biblatex_include] = STATE(155), - [sym_bibtex_include] = STATE(155), - [sym_graphics_include] = STATE(155), - [sym_svg_include] = STATE(155), - [sym_inkscape_include] = STATE(155), - [sym_verbatim_include] = STATE(155), - [sym_import_include] = STATE(155), - [sym_caption] = STATE(155), - [sym_citation] = STATE(155), - [sym_label_definition] = STATE(155), - [sym_label_reference] = STATE(155), - [sym_label_reference_range] = STATE(155), - [sym_label_number] = STATE(155), - [sym_new_command_definition] = STATE(155), - [sym_old_command_definition] = STATE(155), - [sym_let_command_definition] = STATE(155), - [sym_math_delimiter] = STATE(155), - [sym_paired_delimiter_definition] = STATE(155), - [sym_environment_definition] = STATE(155), - [sym_glossary_entry_definition] = STATE(155), - [sym_glossary_entry_reference] = STATE(155), - [sym_acronym_definition] = STATE(155), - [sym_acronym_reference] = STATE(155), - [sym_theorem_definition] = STATE(155), - [sym_color_definition] = STATE(155), - [sym_color_set_definition] = STATE(155), - [sym_color_reference] = STATE(155), - [sym_tikz_library_import] = STATE(155), - [sym_text_mode] = STATE(155), - [aux_sym_source_file_repeat1] = STATE(155), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_RBRACK] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1878), - [anon_sym_EQ] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1878), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1880), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [160] = { - [sym_block_comment] = STATE(160), - [sym__root_content] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__section] = STATE(160), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(160), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(160), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(160), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(160), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(160), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_title_declaration] = STATE(160), - [sym_author_declaration] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_math_delimiter] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym_source_file_repeat1] = STATE(160), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1882), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_RBRACK] = ACTIONS(1888), - [anon_sym_COMMA] = ACTIONS(1888), - [anon_sym_EQ] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_BSLASHpart] = ACTIONS(1891), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1894), - [anon_sym_BSLASHaddpart] = ACTIONS(1891), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1894), - [anon_sym_BSLASHchapter] = ACTIONS(1897), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddchap] = ACTIONS(1897), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsection] = ACTIONS(1903), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1906), - [anon_sym_BSLASHaddsec] = ACTIONS(1903), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1906), - [anon_sym_BSLASHsubsection] = ACTIONS(1909), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1912), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1915), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1918), - [anon_sym_BSLASHparagraph] = ACTIONS(1921), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1924), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1927), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1930), - [anon_sym_BSLASHitem] = ACTIONS(1933), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1939), - [sym_word] = ACTIONS(1942), - [sym_placeholder] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_STAR] = ACTIONS(1948), - [anon_sym_SLASH] = ACTIONS(1948), - [anon_sym_LT] = ACTIONS(1951), - [anon_sym_GT] = ACTIONS(1951), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1951), - [anon_sym_SQUOTE] = ACTIONS(1951), - [anon_sym__] = ACTIONS(1954), - [anon_sym_CARET] = ACTIONS(1957), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1960), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1960), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1966), - [anon_sym_BSLASH_RPAREN] = ACTIONS(840), - [anon_sym_BSLASHbegin] = ACTIONS(426), - [anon_sym_BSLASHtitle] = ACTIONS(1969), - [anon_sym_BSLASHauthor] = ACTIONS(1972), - [anon_sym_BSLASHusepackage] = ACTIONS(1975), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1975), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1978), - [anon_sym_BSLASHinclude] = ACTIONS(1981), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1981), - [anon_sym_BSLASHinput] = ACTIONS(1981), - [anon_sym_BSLASHsubfile] = ACTIONS(1981), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1984), - [anon_sym_BSLASHbibliography] = ACTIONS(1987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1990), - [anon_sym_BSLASHincludesvg] = ACTIONS(1993), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1996), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1999), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1999), - [anon_sym_BSLASHimport] = ACTIONS(2002), - [anon_sym_BSLASHsubimport] = ACTIONS(2002), - [anon_sym_BSLASHinputfrom] = ACTIONS(2002), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2002), - [anon_sym_BSLASHincludefrom] = ACTIONS(2002), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2002), - [anon_sym_BSLASHcaption] = ACTIONS(2005), - [anon_sym_BSLASHcite] = ACTIONS(2008), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2011), - [anon_sym_BSLASHCite] = ACTIONS(2008), - [anon_sym_BSLASHnocite] = ACTIONS(2008), - [anon_sym_BSLASHcitet] = ACTIONS(2008), - [anon_sym_BSLASHcitep] = ACTIONS(2008), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2011), - [anon_sym_BSLASHciteauthor] = ACTIONS(2008), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2008), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2011), - [anon_sym_BSLASHcitetitle] = ACTIONS(2008), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2011), - [anon_sym_BSLASHciteyear] = ACTIONS(2008), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2011), - [anon_sym_BSLASHcitedate] = ACTIONS(2008), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2011), - [anon_sym_BSLASHciteurl] = ACTIONS(2008), - [anon_sym_BSLASHfullcite] = ACTIONS(2008), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2008), - [anon_sym_BSLASHcitealt] = ACTIONS(2008), - [anon_sym_BSLASHcitealp] = ACTIONS(2008), - [anon_sym_BSLASHcitetext] = ACTIONS(2008), - [anon_sym_BSLASHparencite] = ACTIONS(2008), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2011), - [anon_sym_BSLASHParencite] = ACTIONS(2008), - [anon_sym_BSLASHfootcite] = ACTIONS(2008), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2008), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2008), - [anon_sym_BSLASHtextcite] = ACTIONS(2008), - [anon_sym_BSLASHTextcite] = ACTIONS(2008), - [anon_sym_BSLASHsmartcite] = ACTIONS(2008), - [anon_sym_BSLASHSmartcite] = ACTIONS(2008), - [anon_sym_BSLASHsupercite] = ACTIONS(2008), - [anon_sym_BSLASHautocite] = ACTIONS(2008), - [anon_sym_BSLASHAutocite] = ACTIONS(2008), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2011), - [anon_sym_BSLASHvolcite] = ACTIONS(2008), - [anon_sym_BSLASHVolcite] = ACTIONS(2008), - [anon_sym_BSLASHpvolcite] = ACTIONS(2008), - [anon_sym_BSLASHPvolcite] = ACTIONS(2008), - [anon_sym_BSLASHfvolcite] = ACTIONS(2008), - [anon_sym_BSLASHftvolcite] = ACTIONS(2008), - [anon_sym_BSLASHsvolcite] = ACTIONS(2008), - [anon_sym_BSLASHSvolcite] = ACTIONS(2008), - [anon_sym_BSLASHtvolcite] = ACTIONS(2008), - [anon_sym_BSLASHTvolcite] = ACTIONS(2008), - [anon_sym_BSLASHavolcite] = ACTIONS(2008), - [anon_sym_BSLASHAvolcite] = ACTIONS(2008), - [anon_sym_BSLASHnotecite] = ACTIONS(2008), - [anon_sym_BSLASHNotecite] = ACTIONS(2008), - [anon_sym_BSLASHpnotecite] = ACTIONS(2008), - [anon_sym_BSLASHPnotecite] = ACTIONS(2008), - [anon_sym_BSLASHfnotecite] = ACTIONS(2008), - [anon_sym_BSLASHlabel] = ACTIONS(2014), - [anon_sym_BSLASHref] = ACTIONS(2017), - [anon_sym_BSLASHeqref] = ACTIONS(2017), - [anon_sym_BSLASHvref] = ACTIONS(2017), - [anon_sym_BSLASHVref] = ACTIONS(2017), - [anon_sym_BSLASHautoref] = ACTIONS(2017), - [anon_sym_BSLASHpageref] = ACTIONS(2017), - [anon_sym_BSLASHcref] = ACTIONS(2017), - [anon_sym_BSLASHCref] = ACTIONS(2017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2020), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2020), - [anon_sym_BSLASHnamecref] = ACTIONS(2017), - [anon_sym_BSLASHnameCref] = ACTIONS(2017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2017), - [anon_sym_BSLASHlabelcref] = ACTIONS(2017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2017), - [anon_sym_BSLASHcrefrange] = ACTIONS(2023), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2026), - [anon_sym_BSLASHCrefrange] = ACTIONS(2023), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2026), - [anon_sym_BSLASHnewlabel] = ACTIONS(2029), - [anon_sym_BSLASHnewcommand] = ACTIONS(2032), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2032), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2032), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2032), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2035), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2032), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2032), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2032), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2032), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2032), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2032), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2032), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2032), - [anon_sym_BSLASHdef] = ACTIONS(2038), - [anon_sym_BSLASHlet] = ACTIONS(2041), - [anon_sym_BSLASHleft] = ACTIONS(2044), - [anon_sym_BSLASHbig] = ACTIONS(2044), - [anon_sym_BSLASHBig] = ACTIONS(2044), - [anon_sym_BSLASHbigg] = ACTIONS(2044), - [anon_sym_BSLASHBigg] = ACTIONS(2044), - [anon_sym_BSLASHbigl] = ACTIONS(2044), - [anon_sym_BSLASHBigl] = ACTIONS(2044), - [anon_sym_BSLASHbiggl] = ACTIONS(2044), - [anon_sym_BSLASHBiggl] = ACTIONS(2044), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2047), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2047), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2050), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2050), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2050), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2050), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2050), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2050), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2053), - [anon_sym_BSLASHgls] = ACTIONS(2056), - [anon_sym_BSLASHGls] = ACTIONS(2056), - [anon_sym_BSLASHGLS] = ACTIONS(2056), - [anon_sym_BSLASHglspl] = ACTIONS(2056), - [anon_sym_BSLASHGlspl] = ACTIONS(2056), - [anon_sym_BSLASHGLSpl] = ACTIONS(2056), - [anon_sym_BSLASHglsdisp] = ACTIONS(2056), - [anon_sym_BSLASHglslink] = ACTIONS(2056), - [anon_sym_BSLASHglstext] = ACTIONS(2056), - [anon_sym_BSLASHGlstext] = ACTIONS(2056), - [anon_sym_BSLASHGLStext] = ACTIONS(2056), - [anon_sym_BSLASHglsfirst] = ACTIONS(2056), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2056), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2056), - [anon_sym_BSLASHglsplural] = ACTIONS(2056), - [anon_sym_BSLASHGlsplural] = ACTIONS(2056), - [anon_sym_BSLASHGLSplural] = ACTIONS(2056), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2056), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2056), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2056), - [anon_sym_BSLASHglsname] = ACTIONS(2056), - [anon_sym_BSLASHGlsname] = ACTIONS(2056), - [anon_sym_BSLASHGLSname] = ACTIONS(2056), - [anon_sym_BSLASHglssymbol] = ACTIONS(2056), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2056), - [anon_sym_BSLASHglsdesc] = ACTIONS(2056), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2056), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2056), - [anon_sym_BSLASHglsuseri] = ACTIONS(2056), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2056), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2056), - [anon_sym_BSLASHglsuserii] = ACTIONS(2056), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2056), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2056), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2056), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2056), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2056), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2056), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2056), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2056), - [anon_sym_BSLASHglsuserv] = ACTIONS(2056), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2056), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2056), - [anon_sym_BSLASHglsuservi] = ACTIONS(2056), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2056), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2056), - [anon_sym_BSLASHnewacronym] = ACTIONS(2059), - [anon_sym_BSLASHacrshort] = ACTIONS(2062), - [anon_sym_BSLASHAcrshort] = ACTIONS(2062), - [anon_sym_BSLASHACRshort] = ACTIONS(2062), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2062), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2062), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2062), - [anon_sym_BSLASHacrlong] = ACTIONS(2062), - [anon_sym_BSLASHAcrlong] = ACTIONS(2062), - [anon_sym_BSLASHACRlong] = ACTIONS(2062), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2062), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2062), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2062), - [anon_sym_BSLASHacrfull] = ACTIONS(2062), - [anon_sym_BSLASHAcrfull] = ACTIONS(2062), - [anon_sym_BSLASHACRfull] = ACTIONS(2062), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2062), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2062), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2062), - [anon_sym_BSLASHacs] = ACTIONS(2062), - [anon_sym_BSLASHAcs] = ACTIONS(2062), - [anon_sym_BSLASHacsp] = ACTIONS(2062), - [anon_sym_BSLASHAcsp] = ACTIONS(2062), - [anon_sym_BSLASHacl] = ACTIONS(2062), - [anon_sym_BSLASHAcl] = ACTIONS(2062), - [anon_sym_BSLASHaclp] = ACTIONS(2062), - [anon_sym_BSLASHAclp] = ACTIONS(2062), - [anon_sym_BSLASHacf] = ACTIONS(2062), - [anon_sym_BSLASHAcf] = ACTIONS(2062), - [anon_sym_BSLASHacfp] = ACTIONS(2062), - [anon_sym_BSLASHAcfp] = ACTIONS(2062), - [anon_sym_BSLASHac] = ACTIONS(2062), - [anon_sym_BSLASHAc] = ACTIONS(2062), - [anon_sym_BSLASHacp] = ACTIONS(2062), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2062), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2062), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2062), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2062), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2062), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2062), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2062), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2062), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2062), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2062), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2065), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2065), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2071), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2074), - [anon_sym_BSLASHcolor] = ACTIONS(2077), - [anon_sym_BSLASHcolorbox] = ACTIONS(2077), - [anon_sym_BSLASHtextcolor] = ACTIONS(2077), - [anon_sym_BSLASHpagecolor] = ACTIONS(2077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2080), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2080), - [anon_sym_BSLASHtext] = ACTIONS(2083), - [anon_sym_BSLASHintertext] = ACTIONS(2083), - [anon_sym_shortintertext] = ACTIONS(2083), - }, - [161] = { - [sym_block_comment] = STATE(173), - [sym__root_content] = STATE(173), - [sym__flat_content] = STATE(173), - [sym__text_with_env_content] = STATE(173), - [sym__text_content] = STATE(173), - [sym__section] = STATE(173), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(173), - [sym_text] = STATE(173), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(173), - [sym_inline_formula] = STATE(173), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(173), - [sym_comment_environment] = STATE(173), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(173), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(173), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(173), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(173), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(173), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(173), - [sym_generic_command] = STATE(173), - [sym_title_declaration] = STATE(173), - [sym_author_declaration] = STATE(173), - [sym_package_include] = STATE(173), - [sym_class_include] = STATE(173), - [sym_latex_include] = STATE(173), - [sym_biblatex_include] = STATE(173), - [sym_bibtex_include] = STATE(173), - [sym_graphics_include] = STATE(173), - [sym_svg_include] = STATE(173), - [sym_inkscape_include] = STATE(173), - [sym_verbatim_include] = STATE(173), - [sym_import_include] = STATE(173), - [sym_caption] = STATE(173), - [sym_citation] = STATE(173), - [sym_label_definition] = STATE(173), - [sym_label_reference] = STATE(173), - [sym_label_reference_range] = STATE(173), - [sym_label_number] = STATE(173), - [sym_new_command_definition] = STATE(173), - [sym_old_command_definition] = STATE(173), - [sym_let_command_definition] = STATE(173), - [sym_math_delimiter] = STATE(173), - [sym_paired_delimiter_definition] = STATE(173), - [sym_environment_definition] = STATE(173), - [sym_glossary_entry_definition] = STATE(173), - [sym_glossary_entry_reference] = STATE(173), - [sym_acronym_definition] = STATE(173), - [sym_acronym_reference] = STATE(173), - [sym_theorem_definition] = STATE(173), - [sym_color_definition] = STATE(173), - [sym_color_set_definition] = STATE(173), - [sym_color_reference] = STATE(173), - [sym_tikz_library_import] = STATE(173), - [sym_text_mode] = STATE(173), - [aux_sym_source_file_repeat1] = STATE(173), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2086), - [anon_sym_RBRACK] = ACTIONS(2086), - [anon_sym_COMMA] = ACTIONS(2086), - [anon_sym_EQ] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_RPAREN] = ACTIONS(2086), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2088), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [162] = { - [sym_block_comment] = STATE(160), - [sym__root_content] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__section] = STATE(160), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(160), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(160), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(160), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(160), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(160), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_title_declaration] = STATE(160), - [sym_author_declaration] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_math_delimiter] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym_source_file_repeat1] = STATE(160), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2090), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2092), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [163] = { - [sym_block_comment] = STATE(130), - [sym__root_content] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__section] = STATE(130), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(130), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(130), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(130), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(130), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(130), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_title_declaration] = STATE(130), - [sym_author_declaration] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_math_delimiter] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym_source_file_repeat1] = STATE(130), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2094), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2096), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [164] = { - [sym_block_comment] = STATE(106), - [sym__root_content] = STATE(106), - [sym__flat_content] = STATE(106), - [sym__text_with_env_content] = STATE(106), - [sym__text_content] = STATE(106), - [sym__section] = STATE(106), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(106), - [sym_text] = STATE(106), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(106), - [sym_inline_formula] = STATE(106), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(106), - [sym_comment_environment] = STATE(106), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(106), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(106), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(106), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(106), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(106), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(106), - [sym_generic_command] = STATE(106), - [sym_title_declaration] = STATE(106), - [sym_author_declaration] = STATE(106), - [sym_package_include] = STATE(106), - [sym_class_include] = STATE(106), - [sym_latex_include] = STATE(106), - [sym_biblatex_include] = STATE(106), - [sym_bibtex_include] = STATE(106), - [sym_graphics_include] = STATE(106), - [sym_svg_include] = STATE(106), - [sym_inkscape_include] = STATE(106), - [sym_verbatim_include] = STATE(106), - [sym_import_include] = STATE(106), - [sym_caption] = STATE(106), - [sym_citation] = STATE(106), - [sym_label_definition] = STATE(106), - [sym_label_reference] = STATE(106), - [sym_label_reference_range] = STATE(106), - [sym_label_number] = STATE(106), - [sym_new_command_definition] = STATE(106), - [sym_old_command_definition] = STATE(106), - [sym_let_command_definition] = STATE(106), - [sym_math_delimiter] = STATE(106), - [sym_paired_delimiter_definition] = STATE(106), - [sym_environment_definition] = STATE(106), - [sym_glossary_entry_definition] = STATE(106), - [sym_glossary_entry_reference] = STATE(106), - [sym_acronym_definition] = STATE(106), - [sym_acronym_reference] = STATE(106), - [sym_theorem_definition] = STATE(106), - [sym_color_definition] = STATE(106), - [sym_color_set_definition] = STATE(106), - [sym_color_reference] = STATE(106), - [sym_tikz_library_import] = STATE(106), - [sym_text_mode] = STATE(106), - [aux_sym_source_file_repeat1] = STATE(106), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_RBRACK] = ACTIONS(2098), - [anon_sym_COMMA] = ACTIONS(2098), - [anon_sym_EQ] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_RPAREN] = ACTIONS(2098), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2102), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [165] = { - [sym_block_comment] = STATE(160), - [sym__root_content] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__section] = STATE(160), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(160), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(160), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(160), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(160), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(160), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_title_declaration] = STATE(160), - [sym_author_declaration] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_math_delimiter] = STATE(160), - [sym_paired_delimiter_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [sym_text_mode] = STATE(160), - [aux_sym_source_file_repeat1] = STATE(160), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2106), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [166] = { - [sym_block_comment] = STATE(165), - [sym__root_content] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__section] = STATE(165), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(165), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(165), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(165), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(165), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(165), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_title_declaration] = STATE(165), - [sym_author_declaration] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_math_delimiter] = STATE(165), - [sym_paired_delimiter_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [sym_text_mode] = STATE(165), - [aux_sym_source_file_repeat1] = STATE(165), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddpart] = ACTIONS(189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddsec] = ACTIONS(189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHparagraph] = ACTIONS(189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [167] = { - [sym_block_comment] = STATE(130), - [sym__root_content] = STATE(130), - [sym__flat_content] = STATE(130), - [sym__text_with_env_content] = STATE(130), - [sym__text_content] = STATE(130), - [sym__section] = STATE(130), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(130), - [sym_text] = STATE(130), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(130), - [sym_comment_environment] = STATE(130), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(130), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(130), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(130), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(130), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(130), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(130), - [sym_generic_command] = STATE(130), - [sym_title_declaration] = STATE(130), - [sym_author_declaration] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import_include] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_new_command_definition] = STATE(130), - [sym_old_command_definition] = STATE(130), - [sym_let_command_definition] = STATE(130), - [sym_math_delimiter] = STATE(130), - [sym_paired_delimiter_definition] = STATE(130), - [sym_environment_definition] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_text_mode] = STATE(130), - [aux_sym_source_file_repeat1] = STATE(130), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(1286), - [anon_sym_RBRACK] = ACTIONS(1286), - [anon_sym_COMMA] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2108), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2110), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [168] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(66), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(66), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(66), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(66), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(66), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_title_declaration] = STATE(66), - [sym_author_declaration] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_math_delimiter] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2112), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [169] = { - [sym_block_comment] = STATE(143), - [sym__root_content] = STATE(143), - [sym__flat_content] = STATE(143), - [sym__text_with_env_content] = STATE(143), - [sym__text_content] = STATE(143), - [sym__section] = STATE(143), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(143), - [sym_text] = STATE(143), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(143), - [sym_inline_formula] = STATE(143), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(143), - [sym_comment_environment] = STATE(143), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(143), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(143), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(143), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(143), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(143), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(143), - [sym_generic_command] = STATE(143), - [sym_title_declaration] = STATE(143), - [sym_author_declaration] = STATE(143), - [sym_package_include] = STATE(143), - [sym_class_include] = STATE(143), - [sym_latex_include] = STATE(143), - [sym_biblatex_include] = STATE(143), - [sym_bibtex_include] = STATE(143), - [sym_graphics_include] = STATE(143), - [sym_svg_include] = STATE(143), - [sym_inkscape_include] = STATE(143), - [sym_verbatim_include] = STATE(143), - [sym_import_include] = STATE(143), - [sym_caption] = STATE(143), - [sym_citation] = STATE(143), - [sym_label_definition] = STATE(143), - [sym_label_reference] = STATE(143), - [sym_label_reference_range] = STATE(143), - [sym_label_number] = STATE(143), - [sym_new_command_definition] = STATE(143), - [sym_old_command_definition] = STATE(143), - [sym_let_command_definition] = STATE(143), - [sym_math_delimiter] = STATE(143), - [sym_paired_delimiter_definition] = STATE(143), - [sym_environment_definition] = STATE(143), - [sym_glossary_entry_definition] = STATE(143), - [sym_glossary_entry_reference] = STATE(143), - [sym_acronym_definition] = STATE(143), - [sym_acronym_reference] = STATE(143), - [sym_theorem_definition] = STATE(143), - [sym_color_definition] = STATE(143), - [sym_color_set_definition] = STATE(143), - [sym_color_reference] = STATE(143), - [sym_tikz_library_import] = STATE(143), - [sym_text_mode] = STATE(143), - [aux_sym_source_file_repeat1] = STATE(143), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_RBRACK] = ACTIONS(2114), - [anon_sym_COMMA] = ACTIONS(2114), - [anon_sym_EQ] = ACTIONS(2114), - [anon_sym_LPAREN] = ACTIONS(2114), - [anon_sym_RPAREN] = ACTIONS(2114), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2116), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [170] = { - [sym_block_comment] = STATE(162), - [sym__root_content] = STATE(162), - [sym__flat_content] = STATE(162), - [sym__text_with_env_content] = STATE(162), - [sym__text_content] = STATE(162), - [sym__section] = STATE(162), - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(721), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(722), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(723), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(724), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(725), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(726), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(727), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(728), - [sym_curly_group] = STATE(162), - [sym_text] = STATE(162), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(162), - [sym_inline_formula] = STATE(162), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(162), - [sym_comment_environment] = STATE(162), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(162), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(162), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(162), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(162), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(162), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(162), - [sym_generic_command] = STATE(162), - [sym_title_declaration] = STATE(162), - [sym_author_declaration] = STATE(162), - [sym_package_include] = STATE(162), - [sym_class_include] = STATE(162), - [sym_latex_include] = STATE(162), - [sym_biblatex_include] = STATE(162), - [sym_bibtex_include] = STATE(162), - [sym_graphics_include] = STATE(162), - [sym_svg_include] = STATE(162), - [sym_inkscape_include] = STATE(162), - [sym_verbatim_include] = STATE(162), - [sym_import_include] = STATE(162), - [sym_caption] = STATE(162), - [sym_citation] = STATE(162), - [sym_label_definition] = STATE(162), - [sym_label_reference] = STATE(162), - [sym_label_reference_range] = STATE(162), - [sym_label_number] = STATE(162), - [sym_new_command_definition] = STATE(162), - [sym_old_command_definition] = STATE(162), - [sym_let_command_definition] = STATE(162), - [sym_math_delimiter] = STATE(162), - [sym_paired_delimiter_definition] = STATE(162), - [sym_environment_definition] = STATE(162), - [sym_glossary_entry_definition] = STATE(162), - [sym_glossary_entry_reference] = STATE(162), - [sym_acronym_definition] = STATE(162), - [sym_acronym_reference] = STATE(162), - [sym_theorem_definition] = STATE(162), - [sym_color_definition] = STATE(162), - [sym_color_set_definition] = STATE(162), - [sym_color_reference] = STATE(162), - [sym_tikz_library_import] = STATE(162), - [sym_text_mode] = STATE(162), - [aux_sym_source_file_repeat1] = STATE(162), - [aux_sym__section_repeat1] = STATE(721), - [aux_sym__section_repeat2] = STATE(722), - [aux_sym__section_repeat3] = STATE(723), - [aux_sym__section_repeat4] = STATE(724), - [aux_sym__section_repeat5] = STATE(725), - [aux_sym__section_repeat6] = STATE(726), - [aux_sym__section_repeat7] = STATE(727), - [aux_sym__section_repeat8] = STATE(728), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_RBRACK] = ACTIONS(2118), - [anon_sym_COMMA] = ACTIONS(2118), - [anon_sym_EQ] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_RPAREN] = ACTIONS(2118), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2122), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [171] = { - [sym_block_comment] = STATE(163), - [sym__root_content] = STATE(163), - [sym__flat_content] = STATE(163), - [sym__text_with_env_content] = STATE(163), - [sym__text_content] = STATE(163), - [sym__section] = STATE(163), - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(841), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(842), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(843), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(844), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(845), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(644), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(847), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(848), - [sym_curly_group] = STATE(163), - [sym_text] = STATE(163), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(163), - [sym_inline_formula] = STATE(163), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(163), - [sym_comment_environment] = STATE(163), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(163), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(163), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(163), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(163), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(163), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(163), - [sym_generic_command] = STATE(163), - [sym_title_declaration] = STATE(163), - [sym_author_declaration] = STATE(163), - [sym_package_include] = STATE(163), - [sym_class_include] = STATE(163), - [sym_latex_include] = STATE(163), - [sym_biblatex_include] = STATE(163), - [sym_bibtex_include] = STATE(163), - [sym_graphics_include] = STATE(163), - [sym_svg_include] = STATE(163), - [sym_inkscape_include] = STATE(163), - [sym_verbatim_include] = STATE(163), - [sym_import_include] = STATE(163), - [sym_caption] = STATE(163), - [sym_citation] = STATE(163), - [sym_label_definition] = STATE(163), - [sym_label_reference] = STATE(163), - [sym_label_reference_range] = STATE(163), - [sym_label_number] = STATE(163), - [sym_new_command_definition] = STATE(163), - [sym_old_command_definition] = STATE(163), - [sym_let_command_definition] = STATE(163), - [sym_math_delimiter] = STATE(163), - [sym_paired_delimiter_definition] = STATE(163), - [sym_environment_definition] = STATE(163), - [sym_glossary_entry_definition] = STATE(163), - [sym_glossary_entry_reference] = STATE(163), - [sym_acronym_definition] = STATE(163), - [sym_acronym_reference] = STATE(163), - [sym_theorem_definition] = STATE(163), - [sym_color_definition] = STATE(163), - [sym_color_set_definition] = STATE(163), - [sym_color_reference] = STATE(163), - [sym_tikz_library_import] = STATE(163), - [sym_text_mode] = STATE(163), - [aux_sym_source_file_repeat1] = STATE(163), - [aux_sym__section_repeat1] = STATE(841), - [aux_sym__section_repeat2] = STATE(842), - [aux_sym__section_repeat3] = STATE(843), - [aux_sym__section_repeat4] = STATE(844), - [aux_sym__section_repeat5] = STATE(845), - [aux_sym__section_repeat6] = STATE(644), - [aux_sym__section_repeat7] = STATE(847), - [aux_sym__section_repeat8] = STATE(848), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2124), - [anon_sym_RBRACK] = ACTIONS(2124), - [anon_sym_COMMA] = ACTIONS(2124), - [anon_sym_EQ] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(2124), - [anon_sym_RPAREN] = ACTIONS(2124), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2126), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2128), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [172] = { - [sym_block_comment] = STATE(168), - [sym__root_content] = STATE(168), - [sym__flat_content] = STATE(168), - [sym__text_with_env_content] = STATE(168), - [sym__text_content] = STATE(168), - [sym__section] = STATE(168), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(168), - [sym_text] = STATE(168), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(168), - [sym_inline_formula] = STATE(168), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(168), - [sym_comment_environment] = STATE(168), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(168), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(168), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(168), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(168), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(168), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(168), - [sym_generic_command] = STATE(168), - [sym_title_declaration] = STATE(168), - [sym_author_declaration] = STATE(168), - [sym_package_include] = STATE(168), - [sym_class_include] = STATE(168), - [sym_latex_include] = STATE(168), - [sym_biblatex_include] = STATE(168), - [sym_bibtex_include] = STATE(168), - [sym_graphics_include] = STATE(168), - [sym_svg_include] = STATE(168), - [sym_inkscape_include] = STATE(168), - [sym_verbatim_include] = STATE(168), - [sym_import_include] = STATE(168), - [sym_caption] = STATE(168), - [sym_citation] = STATE(168), - [sym_label_definition] = STATE(168), - [sym_label_reference] = STATE(168), - [sym_label_reference_range] = STATE(168), - [sym_label_number] = STATE(168), - [sym_new_command_definition] = STATE(168), - [sym_old_command_definition] = STATE(168), - [sym_let_command_definition] = STATE(168), - [sym_math_delimiter] = STATE(168), - [sym_paired_delimiter_definition] = STATE(168), - [sym_environment_definition] = STATE(168), - [sym_glossary_entry_definition] = STATE(168), - [sym_glossary_entry_reference] = STATE(168), - [sym_acronym_definition] = STATE(168), - [sym_acronym_reference] = STATE(168), - [sym_theorem_definition] = STATE(168), - [sym_color_definition] = STATE(168), - [sym_color_set_definition] = STATE(168), - [sym_color_reference] = STATE(168), - [sym_tikz_library_import] = STATE(168), - [sym_text_mode] = STATE(168), - [aux_sym_source_file_repeat1] = STATE(168), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_RBRACK] = ACTIONS(2130), - [anon_sym_COMMA] = ACTIONS(2130), - [anon_sym_EQ] = ACTIONS(2130), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_RPAREN] = ACTIONS(2130), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2132), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [173] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(613), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(612), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(611), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(610), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(609), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(608), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(607), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(66), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(66), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(66), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(66), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(66), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_title_declaration] = STATE(66), - [sym_author_declaration] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_math_delimiter] = STATE(66), - [sym_paired_delimiter_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [sym_text_mode] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(613), - [aux_sym__section_repeat2] = STATE(612), - [aux_sym__section_repeat3] = STATE(611), - [aux_sym__section_repeat4] = STATE(610), - [aux_sym__section_repeat5] = STATE(609), - [aux_sym__section_repeat6] = STATE(608), - [aux_sym__section_repeat7] = STATE(607), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_text_repeat1] = STATE(284), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_RBRACK] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2134), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [174] = { - [sym_block_comment] = STATE(240), - [sym__flat_content] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(414), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(415), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(417), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(418), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(422), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(352), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(429), - [sym_curly_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(240), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(240), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(240), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(240), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(240), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_title_declaration] = STATE(240), - [sym_author_declaration] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_math_delimiter] = STATE(240), - [sym_paired_delimiter_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_text_mode] = STATE(240), - [aux_sym__section_repeat2] = STATE(414), - [aux_sym__section_repeat3] = STATE(415), - [aux_sym__section_repeat4] = STATE(417), - [aux_sym__section_repeat5] = STATE(418), - [aux_sym__section_repeat6] = STATE(422), - [aux_sym__section_repeat7] = STATE(352), - [aux_sym__section_repeat8] = STATE(429), - [aux_sym_part_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_RBRACK] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2136), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2138), - [anon_sym_BSLASHbigr] = ACTIONS(2138), - [anon_sym_BSLASHBigr] = ACTIONS(2138), - [anon_sym_BSLASHbiggr] = ACTIONS(2138), - [anon_sym_BSLASHBiggr] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [175] = { - [sym_block_comment] = STATE(174), - [sym__flat_content] = STATE(174), - [sym__text_with_env_content] = STATE(174), - [sym__text_content] = STATE(174), - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(376), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(377), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(378), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(379), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(380), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(381), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(382), - [sym_curly_group] = STATE(174), - [sym_text] = STATE(174), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(174), - [sym_inline_formula] = STATE(174), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(174), - [sym_comment_environment] = STATE(174), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(174), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(174), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(174), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(174), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(174), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(174), - [sym_generic_command] = STATE(174), - [sym_title_declaration] = STATE(174), - [sym_author_declaration] = STATE(174), - [sym_package_include] = STATE(174), - [sym_class_include] = STATE(174), - [sym_latex_include] = STATE(174), - [sym_biblatex_include] = STATE(174), - [sym_bibtex_include] = STATE(174), - [sym_graphics_include] = STATE(174), - [sym_svg_include] = STATE(174), - [sym_inkscape_include] = STATE(174), - [sym_verbatim_include] = STATE(174), - [sym_import_include] = STATE(174), - [sym_caption] = STATE(174), - [sym_citation] = STATE(174), - [sym_label_definition] = STATE(174), - [sym_label_reference] = STATE(174), - [sym_label_reference_range] = STATE(174), - [sym_label_number] = STATE(174), - [sym_new_command_definition] = STATE(174), - [sym_old_command_definition] = STATE(174), - [sym_let_command_definition] = STATE(174), - [sym_math_delimiter] = STATE(174), - [sym_paired_delimiter_definition] = STATE(174), - [sym_environment_definition] = STATE(174), - [sym_glossary_entry_definition] = STATE(174), - [sym_glossary_entry_reference] = STATE(174), - [sym_acronym_definition] = STATE(174), - [sym_acronym_reference] = STATE(174), - [sym_theorem_definition] = STATE(174), - [sym_color_definition] = STATE(174), - [sym_color_set_definition] = STATE(174), - [sym_color_reference] = STATE(174), - [sym_tikz_library_import] = STATE(174), - [sym_text_mode] = STATE(174), - [aux_sym__section_repeat2] = STATE(376), - [aux_sym__section_repeat3] = STATE(377), - [aux_sym__section_repeat4] = STATE(378), - [aux_sym__section_repeat5] = STATE(379), - [aux_sym__section_repeat6] = STATE(380), - [aux_sym__section_repeat7] = STATE(381), - [aux_sym__section_repeat8] = STATE(382), - [aux_sym_part_repeat1] = STATE(174), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_RBRACK] = ACTIONS(2142), - [anon_sym_COMMA] = ACTIONS(2142), - [anon_sym_EQ] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_RPAREN] = ACTIONS(2142), - [anon_sym_BSLASHpart] = ACTIONS(2144), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2146), - [anon_sym_BSLASHaddpart] = ACTIONS(2144), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2146), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2144), - [anon_sym_BSLASHbigr] = ACTIONS(2144), - [anon_sym_BSLASHBigr] = ACTIONS(2144), - [anon_sym_BSLASHbiggr] = ACTIONS(2144), - [anon_sym_BSLASHBiggr] = ACTIONS(2144), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [176] = { - [sym_block_comment] = STATE(247), - [sym__flat_content] = STATE(247), - [sym__text_with_env_content] = STATE(247), - [sym__text_content] = STATE(247), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(510), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(513), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(514), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(515), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(517), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(519), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(520), - [sym_curly_group] = STATE(247), - [sym_text] = STATE(247), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(247), - [sym_inline_formula] = STATE(247), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(247), - [sym_comment_environment] = STATE(247), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(247), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(247), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(247), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(247), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(247), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(247), - [sym_generic_command] = STATE(247), - [sym_title_declaration] = STATE(247), - [sym_author_declaration] = STATE(247), - [sym_package_include] = STATE(247), - [sym_class_include] = STATE(247), - [sym_latex_include] = STATE(247), - [sym_biblatex_include] = STATE(247), - [sym_bibtex_include] = STATE(247), - [sym_graphics_include] = STATE(247), - [sym_svg_include] = STATE(247), - [sym_inkscape_include] = STATE(247), - [sym_verbatim_include] = STATE(247), - [sym_import_include] = STATE(247), - [sym_caption] = STATE(247), - [sym_citation] = STATE(247), - [sym_label_definition] = STATE(247), - [sym_label_reference] = STATE(247), - [sym_label_reference_range] = STATE(247), - [sym_label_number] = STATE(247), - [sym_new_command_definition] = STATE(247), - [sym_old_command_definition] = STATE(247), - [sym_let_command_definition] = STATE(247), - [sym_math_delimiter] = STATE(247), - [sym_paired_delimiter_definition] = STATE(247), - [sym_environment_definition] = STATE(247), - [sym_glossary_entry_definition] = STATE(247), - [sym_glossary_entry_reference] = STATE(247), - [sym_acronym_definition] = STATE(247), - [sym_acronym_reference] = STATE(247), - [sym_theorem_definition] = STATE(247), - [sym_color_definition] = STATE(247), - [sym_color_set_definition] = STATE(247), - [sym_color_reference] = STATE(247), - [sym_tikz_library_import] = STATE(247), - [sym_text_mode] = STATE(247), - [aux_sym__section_repeat2] = STATE(510), - [aux_sym__section_repeat3] = STATE(513), - [aux_sym__section_repeat4] = STATE(514), - [aux_sym__section_repeat5] = STATE(515), - [aux_sym__section_repeat6] = STATE(517), - [aux_sym__section_repeat7] = STATE(519), - [aux_sym__section_repeat8] = STATE(520), - [aux_sym_part_repeat1] = STATE(247), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2148), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [177] = { - [sym_block_comment] = STATE(179), - [sym__flat_content] = STATE(179), - [sym__text_with_env_content] = STATE(179), - [sym__text_content] = STATE(179), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(383), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(384), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(385), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(386), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(388), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(389), - [sym_curly_group] = STATE(179), - [sym_text] = STATE(179), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(179), - [sym_inline_formula] = STATE(179), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(179), - [sym_comment_environment] = STATE(179), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(179), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(179), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(179), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(179), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(179), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(179), - [sym_generic_command] = STATE(179), - [sym_title_declaration] = STATE(179), - [sym_author_declaration] = STATE(179), - [sym_package_include] = STATE(179), - [sym_class_include] = STATE(179), - [sym_latex_include] = STATE(179), - [sym_biblatex_include] = STATE(179), - [sym_bibtex_include] = STATE(179), - [sym_graphics_include] = STATE(179), - [sym_svg_include] = STATE(179), - [sym_inkscape_include] = STATE(179), - [sym_verbatim_include] = STATE(179), - [sym_import_include] = STATE(179), - [sym_caption] = STATE(179), - [sym_citation] = STATE(179), - [sym_label_definition] = STATE(179), - [sym_label_reference] = STATE(179), - [sym_label_reference_range] = STATE(179), - [sym_label_number] = STATE(179), - [sym_new_command_definition] = STATE(179), - [sym_old_command_definition] = STATE(179), - [sym_let_command_definition] = STATE(179), - [sym_math_delimiter] = STATE(179), - [sym_paired_delimiter_definition] = STATE(179), - [sym_environment_definition] = STATE(179), - [sym_glossary_entry_definition] = STATE(179), - [sym_glossary_entry_reference] = STATE(179), - [sym_acronym_definition] = STATE(179), - [sym_acronym_reference] = STATE(179), - [sym_theorem_definition] = STATE(179), - [sym_color_definition] = STATE(179), - [sym_color_set_definition] = STATE(179), - [sym_color_reference] = STATE(179), - [sym_tikz_library_import] = STATE(179), - [sym_text_mode] = STATE(179), - [aux_sym__section_repeat3] = STATE(383), - [aux_sym__section_repeat4] = STATE(384), - [aux_sym__section_repeat5] = STATE(385), - [aux_sym__section_repeat6] = STATE(386), - [aux_sym__section_repeat7] = STATE(388), - [aux_sym__section_repeat8] = STATE(389), - [aux_sym_part_repeat1] = STATE(179), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_RBRACK] = ACTIONS(2150), - [anon_sym_COMMA] = ACTIONS(2150), - [anon_sym_EQ] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_BSLASHpart] = ACTIONS(2152), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2154), - [anon_sym_BSLASHaddpart] = ACTIONS(2152), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2154), - [anon_sym_BSLASHchapter] = ACTIONS(2152), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2154), - [anon_sym_BSLASHaddchap] = ACTIONS(2152), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2154), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2152), - [anon_sym_BSLASHbigr] = ACTIONS(2152), - [anon_sym_BSLASHBigr] = ACTIONS(2152), - [anon_sym_BSLASHbiggr] = ACTIONS(2152), - [anon_sym_BSLASHBiggr] = ACTIONS(2152), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [178] = { - [sym_block_comment] = STATE(176), - [sym__flat_content] = STATE(176), - [sym__text_with_env_content] = STATE(176), - [sym__text_content] = STATE(176), - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(508), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(505), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(503), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(502), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(501), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(500), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(499), - [sym_curly_group] = STATE(176), - [sym_text] = STATE(176), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(176), - [sym_comment_environment] = STATE(176), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(176), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(176), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(176), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(176), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(176), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(176), - [sym_generic_command] = STATE(176), - [sym_title_declaration] = STATE(176), - [sym_author_declaration] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import_include] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_new_command_definition] = STATE(176), - [sym_old_command_definition] = STATE(176), - [sym_let_command_definition] = STATE(176), - [sym_math_delimiter] = STATE(176), - [sym_paired_delimiter_definition] = STATE(176), - [sym_environment_definition] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_text_mode] = STATE(176), - [aux_sym__section_repeat2] = STATE(508), - [aux_sym__section_repeat3] = STATE(505), - [aux_sym__section_repeat4] = STATE(503), - [aux_sym__section_repeat5] = STATE(502), - [aux_sym__section_repeat6] = STATE(501), - [aux_sym__section_repeat7] = STATE(500), - [aux_sym__section_repeat8] = STATE(499), - [aux_sym_part_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2146), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_RBRACK] = ACTIONS(2156), - [anon_sym_COMMA] = ACTIONS(2156), - [anon_sym_EQ] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_RPAREN] = ACTIONS(2156), - [anon_sym_BSLASHpart] = ACTIONS(2144), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2146), - [anon_sym_BSLASHaddpart] = ACTIONS(2144), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2146), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2146), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [179] = { - [sym_block_comment] = STATE(240), - [sym__flat_content] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(430), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(421), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(419), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(397), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(358), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(362), - [sym_curly_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(240), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(240), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(240), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(240), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(240), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_title_declaration] = STATE(240), - [sym_author_declaration] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_math_delimiter] = STATE(240), - [sym_paired_delimiter_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_text_mode] = STATE(240), - [aux_sym__section_repeat3] = STATE(430), - [aux_sym__section_repeat4] = STATE(421), - [aux_sym__section_repeat5] = STATE(419), - [aux_sym__section_repeat6] = STATE(397), - [aux_sym__section_repeat7] = STATE(358), - [aux_sym__section_repeat8] = STATE(362), - [aux_sym_part_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_RBRACK] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2136), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2158), - [anon_sym_BSLASHbigr] = ACTIONS(2158), - [anon_sym_BSLASHBigr] = ACTIONS(2158), - [anon_sym_BSLASHbiggr] = ACTIONS(2158), - [anon_sym_BSLASHBiggr] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [180] = { - [sym_block_comment] = STATE(181), - [sym__flat_content] = STATE(181), - [sym__text_with_env_content] = STATE(181), - [sym__text_content] = STATE(181), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(772), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(773), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(774), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(775), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(776), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(777), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(778), - [sym_curly_group] = STATE(181), - [sym_text] = STATE(181), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(181), - [sym_inline_formula] = STATE(181), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(181), - [sym_comment_environment] = STATE(181), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(181), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(181), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(181), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(181), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(181), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(181), - [sym_generic_command] = STATE(181), - [sym_title_declaration] = STATE(181), - [sym_author_declaration] = STATE(181), - [sym_package_include] = STATE(181), - [sym_class_include] = STATE(181), - [sym_latex_include] = STATE(181), - [sym_biblatex_include] = STATE(181), - [sym_bibtex_include] = STATE(181), - [sym_graphics_include] = STATE(181), - [sym_svg_include] = STATE(181), - [sym_inkscape_include] = STATE(181), - [sym_verbatim_include] = STATE(181), - [sym_import_include] = STATE(181), - [sym_caption] = STATE(181), - [sym_citation] = STATE(181), - [sym_label_definition] = STATE(181), - [sym_label_reference] = STATE(181), - [sym_label_reference_range] = STATE(181), - [sym_label_number] = STATE(181), - [sym_new_command_definition] = STATE(181), - [sym_old_command_definition] = STATE(181), - [sym_let_command_definition] = STATE(181), - [sym_math_delimiter] = STATE(181), - [sym_paired_delimiter_definition] = STATE(181), - [sym_environment_definition] = STATE(181), - [sym_glossary_entry_definition] = STATE(181), - [sym_glossary_entry_reference] = STATE(181), - [sym_acronym_definition] = STATE(181), - [sym_acronym_reference] = STATE(181), - [sym_theorem_definition] = STATE(181), - [sym_color_definition] = STATE(181), - [sym_color_set_definition] = STATE(181), - [sym_color_reference] = STATE(181), - [sym_tikz_library_import] = STATE(181), - [sym_text_mode] = STATE(181), - [aux_sym__section_repeat2] = STATE(772), - [aux_sym__section_repeat3] = STATE(773), - [aux_sym__section_repeat4] = STATE(774), - [aux_sym__section_repeat5] = STATE(775), - [aux_sym__section_repeat6] = STATE(776), - [aux_sym__section_repeat7] = STATE(777), - [aux_sym__section_repeat8] = STATE(778), - [aux_sym_part_repeat1] = STATE(181), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_RBRACK] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_BSLASHpart] = ACTIONS(2144), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2146), - [anon_sym_BSLASHaddpart] = ACTIONS(2144), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2146), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2146), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [181] = { - [sym_block_comment] = STATE(258), - [sym__flat_content] = STATE(258), - [sym__text_with_env_content] = STATE(258), - [sym__text_content] = STATE(258), - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(851), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(852), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(853), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(854), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(855), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(856), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(857), - [sym_curly_group] = STATE(258), - [sym_text] = STATE(258), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(258), - [sym_inline_formula] = STATE(258), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(258), - [sym_comment_environment] = STATE(258), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(258), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(258), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(258), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(258), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(258), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(258), - [sym_generic_command] = STATE(258), - [sym_title_declaration] = STATE(258), - [sym_author_declaration] = STATE(258), - [sym_package_include] = STATE(258), - [sym_class_include] = STATE(258), - [sym_latex_include] = STATE(258), - [sym_biblatex_include] = STATE(258), - [sym_bibtex_include] = STATE(258), - [sym_graphics_include] = STATE(258), - [sym_svg_include] = STATE(258), - [sym_inkscape_include] = STATE(258), - [sym_verbatim_include] = STATE(258), - [sym_import_include] = STATE(258), - [sym_caption] = STATE(258), - [sym_citation] = STATE(258), - [sym_label_definition] = STATE(258), - [sym_label_reference] = STATE(258), - [sym_label_reference_range] = STATE(258), - [sym_label_number] = STATE(258), - [sym_new_command_definition] = STATE(258), - [sym_old_command_definition] = STATE(258), - [sym_let_command_definition] = STATE(258), - [sym_math_delimiter] = STATE(258), - [sym_paired_delimiter_definition] = STATE(258), - [sym_environment_definition] = STATE(258), - [sym_glossary_entry_definition] = STATE(258), - [sym_glossary_entry_reference] = STATE(258), - [sym_acronym_definition] = STATE(258), - [sym_acronym_reference] = STATE(258), - [sym_theorem_definition] = STATE(258), - [sym_color_definition] = STATE(258), - [sym_color_set_definition] = STATE(258), - [sym_color_reference] = STATE(258), - [sym_tikz_library_import] = STATE(258), - [sym_text_mode] = STATE(258), - [aux_sym__section_repeat2] = STATE(851), - [aux_sym__section_repeat3] = STATE(852), - [aux_sym__section_repeat4] = STATE(853), - [aux_sym__section_repeat5] = STATE(854), - [aux_sym__section_repeat6] = STATE(855), - [aux_sym__section_repeat7] = STATE(856), - [aux_sym__section_repeat8] = STATE(857), - [aux_sym_part_repeat1] = STATE(258), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_RBRACK] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [182] = { - [sym_block_comment] = STATE(251), - [sym__flat_content] = STATE(251), - [sym__text_with_env_content] = STATE(251), - [sym__text_content] = STATE(251), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(681), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(682), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(683), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(684), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(685), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(687), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(688), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(251), - [sym_comment_environment] = STATE(251), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(251), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(251), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(251), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(251), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(251), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_title_declaration] = STATE(251), - [sym_author_declaration] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_math_delimiter] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym__section_repeat2] = STATE(681), - [aux_sym__section_repeat3] = STATE(682), - [aux_sym__section_repeat4] = STATE(683), - [aux_sym__section_repeat5] = STATE(684), - [aux_sym__section_repeat6] = STATE(685), - [aux_sym__section_repeat7] = STATE(687), - [aux_sym__section_repeat8] = STATE(688), - [aux_sym_part_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2168), - [anon_sym_EQ] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [183] = { - [sym_block_comment] = STATE(182), - [sym__flat_content] = STATE(182), - [sym__text_with_env_content] = STATE(182), - [sym__text_content] = STATE(182), - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(680), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(679), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(678), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(677), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(676), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(675), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(674), - [sym_curly_group] = STATE(182), - [sym_text] = STATE(182), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(182), - [sym_inline_formula] = STATE(182), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(182), - [sym_comment_environment] = STATE(182), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(182), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(182), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(182), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(182), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(182), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(182), - [sym_generic_command] = STATE(182), - [sym_title_declaration] = STATE(182), - [sym_author_declaration] = STATE(182), - [sym_package_include] = STATE(182), - [sym_class_include] = STATE(182), - [sym_latex_include] = STATE(182), - [sym_biblatex_include] = STATE(182), - [sym_bibtex_include] = STATE(182), - [sym_graphics_include] = STATE(182), - [sym_svg_include] = STATE(182), - [sym_inkscape_include] = STATE(182), - [sym_verbatim_include] = STATE(182), - [sym_import_include] = STATE(182), - [sym_caption] = STATE(182), - [sym_citation] = STATE(182), - [sym_label_definition] = STATE(182), - [sym_label_reference] = STATE(182), - [sym_label_reference_range] = STATE(182), - [sym_label_number] = STATE(182), - [sym_new_command_definition] = STATE(182), - [sym_old_command_definition] = STATE(182), - [sym_let_command_definition] = STATE(182), - [sym_math_delimiter] = STATE(182), - [sym_paired_delimiter_definition] = STATE(182), - [sym_environment_definition] = STATE(182), - [sym_glossary_entry_definition] = STATE(182), - [sym_glossary_entry_reference] = STATE(182), - [sym_acronym_definition] = STATE(182), - [sym_acronym_reference] = STATE(182), - [sym_theorem_definition] = STATE(182), - [sym_color_definition] = STATE(182), - [sym_color_set_definition] = STATE(182), - [sym_color_reference] = STATE(182), - [sym_tikz_library_import] = STATE(182), - [sym_text_mode] = STATE(182), - [aux_sym__section_repeat2] = STATE(680), - [aux_sym__section_repeat3] = STATE(679), - [aux_sym__section_repeat4] = STATE(678), - [aux_sym__section_repeat5] = STATE(677), - [aux_sym__section_repeat6] = STATE(676), - [aux_sym__section_repeat7] = STATE(675), - [aux_sym__section_repeat8] = STATE(674), - [aux_sym_part_repeat1] = STATE(182), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2170), - [anon_sym_RBRACK] = ACTIONS(2170), - [anon_sym_COMMA] = ACTIONS(2170), - [anon_sym_EQ] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2170), - [anon_sym_RPAREN] = ACTIONS(2170), - [anon_sym_BSLASHpart] = ACTIONS(2144), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2146), - [anon_sym_BSLASHaddpart] = ACTIONS(2144), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2146), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2144), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [184] = { - [sym_block_comment] = STATE(252), - [sym__flat_content] = STATE(252), - [sym__text_with_env_content] = STATE(252), - [sym__text_content] = STATE(252), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(749), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(750), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(751), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(752), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(753), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(754), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(827), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(252), - [sym_comment_environment] = STATE(252), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(252), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(252), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(252), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(252), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(252), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_title_declaration] = STATE(252), - [sym_author_declaration] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_math_delimiter] = STATE(252), - [sym_paired_delimiter_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [sym_text_mode] = STATE(252), - [aux_sym__section_repeat2] = STATE(749), - [aux_sym__section_repeat3] = STATE(750), - [aux_sym__section_repeat4] = STATE(751), - [aux_sym__section_repeat5] = STATE(752), - [aux_sym__section_repeat6] = STATE(753), - [aux_sym__section_repeat7] = STATE(754), - [aux_sym__section_repeat8] = STATE(827), - [aux_sym_part_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_RBRACK] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_EQ] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [185] = { - [sym_block_comment] = STATE(184), - [sym__flat_content] = STATE(184), - [sym__text_with_env_content] = STATE(184), - [sym__text_content] = STATE(184), - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(884), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(883), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(882), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(881), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(880), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(850), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(849), - [sym_curly_group] = STATE(184), - [sym_text] = STATE(184), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(184), - [sym_inline_formula] = STATE(184), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(184), - [sym_comment_environment] = STATE(184), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(184), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(184), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(184), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(184), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(184), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(184), - [sym_generic_command] = STATE(184), - [sym_title_declaration] = STATE(184), - [sym_author_declaration] = STATE(184), - [sym_package_include] = STATE(184), - [sym_class_include] = STATE(184), - [sym_latex_include] = STATE(184), - [sym_biblatex_include] = STATE(184), - [sym_bibtex_include] = STATE(184), - [sym_graphics_include] = STATE(184), - [sym_svg_include] = STATE(184), - [sym_inkscape_include] = STATE(184), - [sym_verbatim_include] = STATE(184), - [sym_import_include] = STATE(184), - [sym_caption] = STATE(184), - [sym_citation] = STATE(184), - [sym_label_definition] = STATE(184), - [sym_label_reference] = STATE(184), - [sym_label_reference_range] = STATE(184), - [sym_label_number] = STATE(184), - [sym_new_command_definition] = STATE(184), - [sym_old_command_definition] = STATE(184), - [sym_let_command_definition] = STATE(184), - [sym_math_delimiter] = STATE(184), - [sym_paired_delimiter_definition] = STATE(184), - [sym_environment_definition] = STATE(184), - [sym_glossary_entry_definition] = STATE(184), - [sym_glossary_entry_reference] = STATE(184), - [sym_acronym_definition] = STATE(184), - [sym_acronym_reference] = STATE(184), - [sym_theorem_definition] = STATE(184), - [sym_color_definition] = STATE(184), - [sym_color_set_definition] = STATE(184), - [sym_color_reference] = STATE(184), - [sym_tikz_library_import] = STATE(184), - [sym_text_mode] = STATE(184), - [aux_sym__section_repeat2] = STATE(884), - [aux_sym__section_repeat3] = STATE(883), - [aux_sym__section_repeat4] = STATE(882), - [aux_sym__section_repeat5] = STATE(881), - [aux_sym__section_repeat6] = STATE(880), - [aux_sym__section_repeat7] = STATE(850), - [aux_sym__section_repeat8] = STATE(849), - [aux_sym_part_repeat1] = STATE(184), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2174), - [anon_sym_RBRACK] = ACTIONS(2174), - [anon_sym_COMMA] = ACTIONS(2174), - [anon_sym_EQ] = ACTIONS(2174), - [anon_sym_LPAREN] = ACTIONS(2174), - [anon_sym_RPAREN] = ACTIONS(2174), - [anon_sym_BSLASHpart] = ACTIONS(2144), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2146), - [anon_sym_BSLASHaddpart] = ACTIONS(2144), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2146), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2146), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [186] = { - [sym_block_comment] = STATE(188), - [sym__flat_content] = STATE(188), - [sym__text_with_env_content] = STATE(188), - [sym__text_content] = STATE(188), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(490), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(488), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(487), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(485), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(481), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(480), - [sym_curly_group] = STATE(188), - [sym_text] = STATE(188), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(188), - [sym_inline_formula] = STATE(188), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(188), - [sym_comment_environment] = STATE(188), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(188), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(188), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(188), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(188), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(188), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(188), - [sym_generic_command] = STATE(188), - [sym_title_declaration] = STATE(188), - [sym_author_declaration] = STATE(188), - [sym_package_include] = STATE(188), - [sym_class_include] = STATE(188), - [sym_latex_include] = STATE(188), - [sym_biblatex_include] = STATE(188), - [sym_bibtex_include] = STATE(188), - [sym_graphics_include] = STATE(188), - [sym_svg_include] = STATE(188), - [sym_inkscape_include] = STATE(188), - [sym_verbatim_include] = STATE(188), - [sym_import_include] = STATE(188), - [sym_caption] = STATE(188), - [sym_citation] = STATE(188), - [sym_label_definition] = STATE(188), - [sym_label_reference] = STATE(188), - [sym_label_reference_range] = STATE(188), - [sym_label_number] = STATE(188), - [sym_new_command_definition] = STATE(188), - [sym_old_command_definition] = STATE(188), - [sym_let_command_definition] = STATE(188), - [sym_math_delimiter] = STATE(188), - [sym_paired_delimiter_definition] = STATE(188), - [sym_environment_definition] = STATE(188), - [sym_glossary_entry_definition] = STATE(188), - [sym_glossary_entry_reference] = STATE(188), - [sym_acronym_definition] = STATE(188), - [sym_acronym_reference] = STATE(188), - [sym_theorem_definition] = STATE(188), - [sym_color_definition] = STATE(188), - [sym_color_set_definition] = STATE(188), - [sym_color_reference] = STATE(188), - [sym_tikz_library_import] = STATE(188), - [sym_text_mode] = STATE(188), - [aux_sym__section_repeat3] = STATE(490), - [aux_sym__section_repeat4] = STATE(488), - [aux_sym__section_repeat5] = STATE(487), - [aux_sym__section_repeat6] = STATE(485), - [aux_sym__section_repeat7] = STATE(481), - [aux_sym__section_repeat8] = STATE(480), - [aux_sym_part_repeat1] = STATE(188), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_RBRACK] = ACTIONS(2176), - [anon_sym_COMMA] = ACTIONS(2176), - [anon_sym_EQ] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_RPAREN] = ACTIONS(2176), - [anon_sym_BSLASHpart] = ACTIONS(2152), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2154), - [anon_sym_BSLASHaddpart] = ACTIONS(2152), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2154), - [anon_sym_BSLASHchapter] = ACTIONS(2152), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2154), - [anon_sym_BSLASHaddchap] = ACTIONS(2152), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2154), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2154), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [187] = { - [sym_block_comment] = STATE(189), - [sym__flat_content] = STATE(189), - [sym__text_with_env_content] = STATE(189), - [sym__text_content] = STATE(189), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(390), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(391), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(392), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(393), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(394), - [sym_curly_group] = STATE(189), - [sym_text] = STATE(189), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(189), - [sym_inline_formula] = STATE(189), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(189), - [sym_comment_environment] = STATE(189), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(189), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(189), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(189), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(189), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(189), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(189), - [sym_generic_command] = STATE(189), - [sym_title_declaration] = STATE(189), - [sym_author_declaration] = STATE(189), - [sym_package_include] = STATE(189), - [sym_class_include] = STATE(189), - [sym_latex_include] = STATE(189), - [sym_biblatex_include] = STATE(189), - [sym_bibtex_include] = STATE(189), - [sym_graphics_include] = STATE(189), - [sym_svg_include] = STATE(189), - [sym_inkscape_include] = STATE(189), - [sym_verbatim_include] = STATE(189), - [sym_import_include] = STATE(189), - [sym_caption] = STATE(189), - [sym_citation] = STATE(189), - [sym_label_definition] = STATE(189), - [sym_label_reference] = STATE(189), - [sym_label_reference_range] = STATE(189), - [sym_label_number] = STATE(189), - [sym_new_command_definition] = STATE(189), - [sym_old_command_definition] = STATE(189), - [sym_let_command_definition] = STATE(189), - [sym_math_delimiter] = STATE(189), - [sym_paired_delimiter_definition] = STATE(189), - [sym_environment_definition] = STATE(189), - [sym_glossary_entry_definition] = STATE(189), - [sym_glossary_entry_reference] = STATE(189), - [sym_acronym_definition] = STATE(189), - [sym_acronym_reference] = STATE(189), - [sym_theorem_definition] = STATE(189), - [sym_color_definition] = STATE(189), - [sym_color_set_definition] = STATE(189), - [sym_color_reference] = STATE(189), - [sym_tikz_library_import] = STATE(189), - [sym_text_mode] = STATE(189), - [aux_sym__section_repeat4] = STATE(390), - [aux_sym__section_repeat5] = STATE(391), - [aux_sym__section_repeat6] = STATE(392), - [aux_sym__section_repeat7] = STATE(393), - [aux_sym__section_repeat8] = STATE(394), - [aux_sym_part_repeat1] = STATE(189), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_RBRACK] = ACTIONS(2178), - [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_EQ] = ACTIONS(2178), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_RPAREN] = ACTIONS(2178), - [anon_sym_BSLASHpart] = ACTIONS(2180), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddpart] = ACTIONS(2180), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2182), - [anon_sym_BSLASHchapter] = ACTIONS(2180), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddchap] = ACTIONS(2180), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2182), - [anon_sym_BSLASHsection] = ACTIONS(2180), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddsec] = ACTIONS(2180), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2182), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2180), - [anon_sym_BSLASHbigr] = ACTIONS(2180), - [anon_sym_BSLASHBigr] = ACTIONS(2180), - [anon_sym_BSLASHbiggr] = ACTIONS(2180), - [anon_sym_BSLASHBiggr] = ACTIONS(2180), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [188] = { - [sym_block_comment] = STATE(247), - [sym__flat_content] = STATE(247), - [sym__text_with_env_content] = STATE(247), - [sym__text_content] = STATE(247), - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(521), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(522), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(524), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(525), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(448), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(504), - [sym_curly_group] = STATE(247), - [sym_text] = STATE(247), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(247), - [sym_inline_formula] = STATE(247), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(247), - [sym_comment_environment] = STATE(247), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(247), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(247), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(247), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(247), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(247), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(247), - [sym_generic_command] = STATE(247), - [sym_title_declaration] = STATE(247), - [sym_author_declaration] = STATE(247), - [sym_package_include] = STATE(247), - [sym_class_include] = STATE(247), - [sym_latex_include] = STATE(247), - [sym_biblatex_include] = STATE(247), - [sym_bibtex_include] = STATE(247), - [sym_graphics_include] = STATE(247), - [sym_svg_include] = STATE(247), - [sym_inkscape_include] = STATE(247), - [sym_verbatim_include] = STATE(247), - [sym_import_include] = STATE(247), - [sym_caption] = STATE(247), - [sym_citation] = STATE(247), - [sym_label_definition] = STATE(247), - [sym_label_reference] = STATE(247), - [sym_label_reference_range] = STATE(247), - [sym_label_number] = STATE(247), - [sym_new_command_definition] = STATE(247), - [sym_old_command_definition] = STATE(247), - [sym_let_command_definition] = STATE(247), - [sym_math_delimiter] = STATE(247), - [sym_paired_delimiter_definition] = STATE(247), - [sym_environment_definition] = STATE(247), - [sym_glossary_entry_definition] = STATE(247), - [sym_glossary_entry_reference] = STATE(247), - [sym_acronym_definition] = STATE(247), - [sym_acronym_reference] = STATE(247), - [sym_theorem_definition] = STATE(247), - [sym_color_definition] = STATE(247), - [sym_color_set_definition] = STATE(247), - [sym_color_reference] = STATE(247), - [sym_tikz_library_import] = STATE(247), - [sym_text_mode] = STATE(247), - [aux_sym__section_repeat3] = STATE(521), - [aux_sym__section_repeat4] = STATE(522), - [aux_sym__section_repeat5] = STATE(524), - [aux_sym__section_repeat6] = STATE(525), - [aux_sym__section_repeat7] = STATE(448), - [aux_sym__section_repeat8] = STATE(504), - [aux_sym_part_repeat1] = STATE(247), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2148), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [189] = { - [sym_block_comment] = STATE(240), - [sym__flat_content] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(363), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(364), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(365), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(366), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(372), - [sym_curly_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(240), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(240), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(240), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(240), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(240), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_title_declaration] = STATE(240), - [sym_author_declaration] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_math_delimiter] = STATE(240), - [sym_paired_delimiter_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_text_mode] = STATE(240), - [aux_sym__section_repeat4] = STATE(363), - [aux_sym__section_repeat5] = STATE(364), - [aux_sym__section_repeat6] = STATE(365), - [aux_sym__section_repeat7] = STATE(366), - [aux_sym__section_repeat8] = STATE(372), - [aux_sym_part_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_RBRACK] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2136), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2184), - [anon_sym_BSLASHbigr] = ACTIONS(2184), - [anon_sym_BSLASHBigr] = ACTIONS(2184), - [anon_sym_BSLASHbiggr] = ACTIONS(2184), - [anon_sym_BSLASHBiggr] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [190] = { - [sym_block_comment] = STATE(251), - [sym__flat_content] = STATE(251), - [sym__text_with_env_content] = STATE(251), - [sym__text_content] = STATE(251), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(689), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(690), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(691), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(692), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(694), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(695), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(251), - [sym_comment_environment] = STATE(251), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(251), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(251), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(251), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(251), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(251), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_title_declaration] = STATE(251), - [sym_author_declaration] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_math_delimiter] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym__section_repeat3] = STATE(689), - [aux_sym__section_repeat4] = STATE(690), - [aux_sym__section_repeat5] = STATE(691), - [aux_sym__section_repeat6] = STATE(692), - [aux_sym__section_repeat7] = STATE(694), - [aux_sym__section_repeat8] = STATE(695), - [aux_sym_part_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2168), - [anon_sym_EQ] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [191] = { - [sym_block_comment] = STATE(194), - [sym__flat_content] = STATE(194), - [sym__text_with_env_content] = STATE(194), - [sym__text_content] = STATE(194), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(780), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(781), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(782), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(783), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(784), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(785), - [sym_curly_group] = STATE(194), - [sym_text] = STATE(194), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(194), - [sym_inline_formula] = STATE(194), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(194), - [sym_comment_environment] = STATE(194), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(194), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(194), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(194), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(194), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(194), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(194), - [sym_generic_command] = STATE(194), - [sym_title_declaration] = STATE(194), - [sym_author_declaration] = STATE(194), - [sym_package_include] = STATE(194), - [sym_class_include] = STATE(194), - [sym_latex_include] = STATE(194), - [sym_biblatex_include] = STATE(194), - [sym_bibtex_include] = STATE(194), - [sym_graphics_include] = STATE(194), - [sym_svg_include] = STATE(194), - [sym_inkscape_include] = STATE(194), - [sym_verbatim_include] = STATE(194), - [sym_import_include] = STATE(194), - [sym_caption] = STATE(194), - [sym_citation] = STATE(194), - [sym_label_definition] = STATE(194), - [sym_label_reference] = STATE(194), - [sym_label_reference_range] = STATE(194), - [sym_label_number] = STATE(194), - [sym_new_command_definition] = STATE(194), - [sym_old_command_definition] = STATE(194), - [sym_let_command_definition] = STATE(194), - [sym_math_delimiter] = STATE(194), - [sym_paired_delimiter_definition] = STATE(194), - [sym_environment_definition] = STATE(194), - [sym_glossary_entry_definition] = STATE(194), - [sym_glossary_entry_reference] = STATE(194), - [sym_acronym_definition] = STATE(194), - [sym_acronym_reference] = STATE(194), - [sym_theorem_definition] = STATE(194), - [sym_color_definition] = STATE(194), - [sym_color_set_definition] = STATE(194), - [sym_color_reference] = STATE(194), - [sym_tikz_library_import] = STATE(194), - [sym_text_mode] = STATE(194), - [aux_sym__section_repeat3] = STATE(780), - [aux_sym__section_repeat4] = STATE(781), - [aux_sym__section_repeat5] = STATE(782), - [aux_sym__section_repeat6] = STATE(783), - [aux_sym__section_repeat7] = STATE(784), - [aux_sym__section_repeat8] = STATE(785), - [aux_sym_part_repeat1] = STATE(194), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2188), - [anon_sym_RBRACK] = ACTIONS(2188), - [anon_sym_COMMA] = ACTIONS(2188), - [anon_sym_EQ] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_RPAREN] = ACTIONS(2188), - [anon_sym_BSLASHpart] = ACTIONS(2152), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2154), - [anon_sym_BSLASHaddpart] = ACTIONS(2152), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2154), - [anon_sym_BSLASHchapter] = ACTIONS(2152), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2154), - [anon_sym_BSLASHaddchap] = ACTIONS(2152), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2154), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2154), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [192] = { - [sym_block_comment] = STATE(193), - [sym__flat_content] = STATE(193), - [sym__text_with_env_content] = STATE(193), - [sym__text_content] = STATE(193), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(846), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(840), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(839), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(831), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(830), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(828), - [sym_curly_group] = STATE(193), - [sym_text] = STATE(193), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(193), - [sym_inline_formula] = STATE(193), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(193), - [sym_comment_environment] = STATE(193), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(193), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(193), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(193), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(193), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(193), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(193), - [sym_generic_command] = STATE(193), - [sym_title_declaration] = STATE(193), - [sym_author_declaration] = STATE(193), - [sym_package_include] = STATE(193), - [sym_class_include] = STATE(193), - [sym_latex_include] = STATE(193), - [sym_biblatex_include] = STATE(193), - [sym_bibtex_include] = STATE(193), - [sym_graphics_include] = STATE(193), - [sym_svg_include] = STATE(193), - [sym_inkscape_include] = STATE(193), - [sym_verbatim_include] = STATE(193), - [sym_import_include] = STATE(193), - [sym_caption] = STATE(193), - [sym_citation] = STATE(193), - [sym_label_definition] = STATE(193), - [sym_label_reference] = STATE(193), - [sym_label_reference_range] = STATE(193), - [sym_label_number] = STATE(193), - [sym_new_command_definition] = STATE(193), - [sym_old_command_definition] = STATE(193), - [sym_let_command_definition] = STATE(193), - [sym_math_delimiter] = STATE(193), - [sym_paired_delimiter_definition] = STATE(193), - [sym_environment_definition] = STATE(193), - [sym_glossary_entry_definition] = STATE(193), - [sym_glossary_entry_reference] = STATE(193), - [sym_acronym_definition] = STATE(193), - [sym_acronym_reference] = STATE(193), - [sym_theorem_definition] = STATE(193), - [sym_color_definition] = STATE(193), - [sym_color_set_definition] = STATE(193), - [sym_color_reference] = STATE(193), - [sym_tikz_library_import] = STATE(193), - [sym_text_mode] = STATE(193), - [aux_sym__section_repeat3] = STATE(846), - [aux_sym__section_repeat4] = STATE(840), - [aux_sym__section_repeat5] = STATE(839), - [aux_sym__section_repeat6] = STATE(831), - [aux_sym__section_repeat7] = STATE(830), - [aux_sym__section_repeat8] = STATE(828), - [aux_sym_part_repeat1] = STATE(193), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_RBRACK] = ACTIONS(2190), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_BSLASHpart] = ACTIONS(2152), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2154), - [anon_sym_BSLASHaddpart] = ACTIONS(2152), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2154), - [anon_sym_BSLASHchapter] = ACTIONS(2152), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2154), - [anon_sym_BSLASHaddchap] = ACTIONS(2152), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2154), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2154), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [193] = { - [sym_block_comment] = STATE(252), - [sym__flat_content] = STATE(252), - [sym__text_with_env_content] = STATE(252), - [sym__text_content] = STATE(252), - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(779), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(858), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(826), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(824), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(819), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(810), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(252), - [sym_comment_environment] = STATE(252), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(252), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(252), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(252), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(252), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(252), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_title_declaration] = STATE(252), - [sym_author_declaration] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_math_delimiter] = STATE(252), - [sym_paired_delimiter_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [sym_text_mode] = STATE(252), - [aux_sym__section_repeat3] = STATE(779), - [aux_sym__section_repeat4] = STATE(858), - [aux_sym__section_repeat5] = STATE(826), - [aux_sym__section_repeat6] = STATE(824), - [aux_sym__section_repeat7] = STATE(819), - [aux_sym__section_repeat8] = STATE(810), - [aux_sym_part_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_RBRACK] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_EQ] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [194] = { - [sym_block_comment] = STATE(258), - [sym__flat_content] = STATE(258), - [sym__text_with_env_content] = STATE(258), - [sym__text_content] = STATE(258), - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(859), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(860), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(861), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(862), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(863), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(864), - [sym_curly_group] = STATE(258), - [sym_text] = STATE(258), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(258), - [sym_inline_formula] = STATE(258), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(258), - [sym_comment_environment] = STATE(258), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(258), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(258), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(258), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(258), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(258), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(258), - [sym_generic_command] = STATE(258), - [sym_title_declaration] = STATE(258), - [sym_author_declaration] = STATE(258), - [sym_package_include] = STATE(258), - [sym_class_include] = STATE(258), - [sym_latex_include] = STATE(258), - [sym_biblatex_include] = STATE(258), - [sym_bibtex_include] = STATE(258), - [sym_graphics_include] = STATE(258), - [sym_svg_include] = STATE(258), - [sym_inkscape_include] = STATE(258), - [sym_verbatim_include] = STATE(258), - [sym_import_include] = STATE(258), - [sym_caption] = STATE(258), - [sym_citation] = STATE(258), - [sym_label_definition] = STATE(258), - [sym_label_reference] = STATE(258), - [sym_label_reference_range] = STATE(258), - [sym_label_number] = STATE(258), - [sym_new_command_definition] = STATE(258), - [sym_old_command_definition] = STATE(258), - [sym_let_command_definition] = STATE(258), - [sym_math_delimiter] = STATE(258), - [sym_paired_delimiter_definition] = STATE(258), - [sym_environment_definition] = STATE(258), - [sym_glossary_entry_definition] = STATE(258), - [sym_glossary_entry_reference] = STATE(258), - [sym_acronym_definition] = STATE(258), - [sym_acronym_reference] = STATE(258), - [sym_theorem_definition] = STATE(258), - [sym_color_definition] = STATE(258), - [sym_color_set_definition] = STATE(258), - [sym_color_reference] = STATE(258), - [sym_tikz_library_import] = STATE(258), - [sym_text_mode] = STATE(258), - [aux_sym__section_repeat3] = STATE(859), - [aux_sym__section_repeat4] = STATE(860), - [aux_sym__section_repeat5] = STATE(861), - [aux_sym__section_repeat6] = STATE(862), - [aux_sym__section_repeat7] = STATE(863), - [aux_sym__section_repeat8] = STATE(864), - [aux_sym_part_repeat1] = STATE(258), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_RBRACK] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [195] = { - [sym_block_comment] = STATE(190), - [sym__flat_content] = STATE(190), - [sym__text_with_env_content] = STATE(190), - [sym__text_content] = STATE(190), - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(673), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(672), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(671), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(670), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(669), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(668), - [sym_curly_group] = STATE(190), - [sym_text] = STATE(190), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(190), - [sym_inline_formula] = STATE(190), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(190), - [sym_comment_environment] = STATE(190), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(190), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(190), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(190), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(190), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(190), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(190), - [sym_generic_command] = STATE(190), - [sym_title_declaration] = STATE(190), - [sym_author_declaration] = STATE(190), - [sym_package_include] = STATE(190), - [sym_class_include] = STATE(190), - [sym_latex_include] = STATE(190), - [sym_biblatex_include] = STATE(190), - [sym_bibtex_include] = STATE(190), - [sym_graphics_include] = STATE(190), - [sym_svg_include] = STATE(190), - [sym_inkscape_include] = STATE(190), - [sym_verbatim_include] = STATE(190), - [sym_import_include] = STATE(190), - [sym_caption] = STATE(190), - [sym_citation] = STATE(190), - [sym_label_definition] = STATE(190), - [sym_label_reference] = STATE(190), - [sym_label_reference_range] = STATE(190), - [sym_label_number] = STATE(190), - [sym_new_command_definition] = STATE(190), - [sym_old_command_definition] = STATE(190), - [sym_let_command_definition] = STATE(190), - [sym_math_delimiter] = STATE(190), - [sym_paired_delimiter_definition] = STATE(190), - [sym_environment_definition] = STATE(190), - [sym_glossary_entry_definition] = STATE(190), - [sym_glossary_entry_reference] = STATE(190), - [sym_acronym_definition] = STATE(190), - [sym_acronym_reference] = STATE(190), - [sym_theorem_definition] = STATE(190), - [sym_color_definition] = STATE(190), - [sym_color_set_definition] = STATE(190), - [sym_color_reference] = STATE(190), - [sym_tikz_library_import] = STATE(190), - [sym_text_mode] = STATE(190), - [aux_sym__section_repeat3] = STATE(673), - [aux_sym__section_repeat4] = STATE(672), - [aux_sym__section_repeat5] = STATE(671), - [aux_sym__section_repeat6] = STATE(670), - [aux_sym__section_repeat7] = STATE(669), - [aux_sym__section_repeat8] = STATE(668), - [aux_sym_part_repeat1] = STATE(190), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_RBRACK] = ACTIONS(2192), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_EQ] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_BSLASHpart] = ACTIONS(2152), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2154), - [anon_sym_BSLASHaddpart] = ACTIONS(2152), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2154), - [anon_sym_BSLASHchapter] = ACTIONS(2152), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2154), - [anon_sym_BSLASHaddchap] = ACTIONS(2152), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2154), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2152), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [196] = { - [sym_block_comment] = STATE(198), - [sym__flat_content] = STATE(198), - [sym__text_with_env_content] = STATE(198), - [sym__text_content] = STATE(198), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(396), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(353), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(398), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(399), - [sym_curly_group] = STATE(198), - [sym_text] = STATE(198), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(198), - [sym_inline_formula] = STATE(198), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(198), - [sym_comment_environment] = STATE(198), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(198), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(198), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(198), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(198), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(198), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(198), - [sym_generic_command] = STATE(198), - [sym_title_declaration] = STATE(198), - [sym_author_declaration] = STATE(198), - [sym_package_include] = STATE(198), - [sym_class_include] = STATE(198), - [sym_latex_include] = STATE(198), - [sym_biblatex_include] = STATE(198), - [sym_bibtex_include] = STATE(198), - [sym_graphics_include] = STATE(198), - [sym_svg_include] = STATE(198), - [sym_inkscape_include] = STATE(198), - [sym_verbatim_include] = STATE(198), - [sym_import_include] = STATE(198), - [sym_caption] = STATE(198), - [sym_citation] = STATE(198), - [sym_label_definition] = STATE(198), - [sym_label_reference] = STATE(198), - [sym_label_reference_range] = STATE(198), - [sym_label_number] = STATE(198), - [sym_new_command_definition] = STATE(198), - [sym_old_command_definition] = STATE(198), - [sym_let_command_definition] = STATE(198), - [sym_math_delimiter] = STATE(198), - [sym_paired_delimiter_definition] = STATE(198), - [sym_environment_definition] = STATE(198), - [sym_glossary_entry_definition] = STATE(198), - [sym_glossary_entry_reference] = STATE(198), - [sym_acronym_definition] = STATE(198), - [sym_acronym_reference] = STATE(198), - [sym_theorem_definition] = STATE(198), - [sym_color_definition] = STATE(198), - [sym_color_set_definition] = STATE(198), - [sym_color_reference] = STATE(198), - [sym_tikz_library_import] = STATE(198), - [sym_text_mode] = STATE(198), - [aux_sym__section_repeat5] = STATE(396), - [aux_sym__section_repeat6] = STATE(353), - [aux_sym__section_repeat7] = STATE(398), - [aux_sym__section_repeat8] = STATE(399), - [aux_sym_part_repeat1] = STATE(198), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_RBRACK] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2194), - [anon_sym_EQ] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_RPAREN] = ACTIONS(2194), - [anon_sym_BSLASHpart] = ACTIONS(2196), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddpart] = ACTIONS(2196), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2198), - [anon_sym_BSLASHchapter] = ACTIONS(2196), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddchap] = ACTIONS(2196), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsection] = ACTIONS(2196), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddsec] = ACTIONS(2196), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsubsection] = ACTIONS(2196), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2196), - [anon_sym_BSLASHbigr] = ACTIONS(2196), - [anon_sym_BSLASHBigr] = ACTIONS(2196), - [anon_sym_BSLASHbiggr] = ACTIONS(2196), - [anon_sym_BSLASHBiggr] = ACTIONS(2196), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [197] = { - [sym_block_comment] = STATE(199), - [sym__flat_content] = STATE(199), - [sym__text_with_env_content] = STATE(199), - [sym__text_content] = STATE(199), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(479), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(478), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(477), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(476), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(475), - [sym_curly_group] = STATE(199), - [sym_text] = STATE(199), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(199), - [sym_inline_formula] = STATE(199), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(199), - [sym_comment_environment] = STATE(199), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(199), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(199), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(199), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(199), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(199), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(199), - [sym_generic_command] = STATE(199), - [sym_title_declaration] = STATE(199), - [sym_author_declaration] = STATE(199), - [sym_package_include] = STATE(199), - [sym_class_include] = STATE(199), - [sym_latex_include] = STATE(199), - [sym_biblatex_include] = STATE(199), - [sym_bibtex_include] = STATE(199), - [sym_graphics_include] = STATE(199), - [sym_svg_include] = STATE(199), - [sym_inkscape_include] = STATE(199), - [sym_verbatim_include] = STATE(199), - [sym_import_include] = STATE(199), - [sym_caption] = STATE(199), - [sym_citation] = STATE(199), - [sym_label_definition] = STATE(199), - [sym_label_reference] = STATE(199), - [sym_label_reference_range] = STATE(199), - [sym_label_number] = STATE(199), - [sym_new_command_definition] = STATE(199), - [sym_old_command_definition] = STATE(199), - [sym_let_command_definition] = STATE(199), - [sym_math_delimiter] = STATE(199), - [sym_paired_delimiter_definition] = STATE(199), - [sym_environment_definition] = STATE(199), - [sym_glossary_entry_definition] = STATE(199), - [sym_glossary_entry_reference] = STATE(199), - [sym_acronym_definition] = STATE(199), - [sym_acronym_reference] = STATE(199), - [sym_theorem_definition] = STATE(199), - [sym_color_definition] = STATE(199), - [sym_color_set_definition] = STATE(199), - [sym_color_reference] = STATE(199), - [sym_tikz_library_import] = STATE(199), - [sym_text_mode] = STATE(199), - [aux_sym__section_repeat4] = STATE(479), - [aux_sym__section_repeat5] = STATE(478), - [aux_sym__section_repeat6] = STATE(477), - [aux_sym__section_repeat7] = STATE(476), - [aux_sym__section_repeat8] = STATE(475), - [aux_sym_part_repeat1] = STATE(199), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2182), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_RBRACK] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2200), - [anon_sym_EQ] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_RPAREN] = ACTIONS(2200), - [anon_sym_BSLASHpart] = ACTIONS(2180), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddpart] = ACTIONS(2180), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2182), - [anon_sym_BSLASHchapter] = ACTIONS(2180), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddchap] = ACTIONS(2180), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2182), - [anon_sym_BSLASHsection] = ACTIONS(2180), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddsec] = ACTIONS(2180), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2182), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2182), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [198] = { - [sym_block_comment] = STATE(240), - [sym__flat_content] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(387), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(395), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(416), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(420), - [sym_curly_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(240), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(240), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(240), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(240), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(240), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_title_declaration] = STATE(240), - [sym_author_declaration] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_math_delimiter] = STATE(240), - [sym_paired_delimiter_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_text_mode] = STATE(240), - [aux_sym__section_repeat5] = STATE(387), - [aux_sym__section_repeat6] = STATE(395), - [aux_sym__section_repeat7] = STATE(416), - [aux_sym__section_repeat8] = STATE(420), - [aux_sym_part_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_RBRACK] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2136), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2202), - [anon_sym_BSLASHbigr] = ACTIONS(2202), - [anon_sym_BSLASHBigr] = ACTIONS(2202), - [anon_sym_BSLASHbiggr] = ACTIONS(2202), - [anon_sym_BSLASHBiggr] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [199] = { - [sym_block_comment] = STATE(247), - [sym__flat_content] = STATE(247), - [sym__text_with_env_content] = STATE(247), - [sym__text_content] = STATE(247), - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(626), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(619), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(605), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(596), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(595), - [sym_curly_group] = STATE(247), - [sym_text] = STATE(247), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(247), - [sym_inline_formula] = STATE(247), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(247), - [sym_comment_environment] = STATE(247), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(247), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(247), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(247), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(247), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(247), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(247), - [sym_generic_command] = STATE(247), - [sym_title_declaration] = STATE(247), - [sym_author_declaration] = STATE(247), - [sym_package_include] = STATE(247), - [sym_class_include] = STATE(247), - [sym_latex_include] = STATE(247), - [sym_biblatex_include] = STATE(247), - [sym_bibtex_include] = STATE(247), - [sym_graphics_include] = STATE(247), - [sym_svg_include] = STATE(247), - [sym_inkscape_include] = STATE(247), - [sym_verbatim_include] = STATE(247), - [sym_import_include] = STATE(247), - [sym_caption] = STATE(247), - [sym_citation] = STATE(247), - [sym_label_definition] = STATE(247), - [sym_label_reference] = STATE(247), - [sym_label_reference_range] = STATE(247), - [sym_label_number] = STATE(247), - [sym_new_command_definition] = STATE(247), - [sym_old_command_definition] = STATE(247), - [sym_let_command_definition] = STATE(247), - [sym_math_delimiter] = STATE(247), - [sym_paired_delimiter_definition] = STATE(247), - [sym_environment_definition] = STATE(247), - [sym_glossary_entry_definition] = STATE(247), - [sym_glossary_entry_reference] = STATE(247), - [sym_acronym_definition] = STATE(247), - [sym_acronym_reference] = STATE(247), - [sym_theorem_definition] = STATE(247), - [sym_color_definition] = STATE(247), - [sym_color_set_definition] = STATE(247), - [sym_color_reference] = STATE(247), - [sym_tikz_library_import] = STATE(247), - [sym_text_mode] = STATE(247), - [aux_sym__section_repeat4] = STATE(626), - [aux_sym__section_repeat5] = STATE(619), - [aux_sym__section_repeat6] = STATE(605), - [aux_sym__section_repeat7] = STATE(596), - [aux_sym__section_repeat8] = STATE(595), - [aux_sym_part_repeat1] = STATE(247), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2148), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [200] = { - [sym_block_comment] = STATE(252), - [sym__flat_content] = STATE(252), - [sym__text_with_env_content] = STATE(252), - [sym__text_content] = STATE(252), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(807), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(806), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(804), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(801), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(797), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(252), - [sym_comment_environment] = STATE(252), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(252), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(252), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(252), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(252), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(252), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_title_declaration] = STATE(252), - [sym_author_declaration] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_math_delimiter] = STATE(252), - [sym_paired_delimiter_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [sym_text_mode] = STATE(252), - [aux_sym__section_repeat4] = STATE(807), - [aux_sym__section_repeat5] = STATE(806), - [aux_sym__section_repeat6] = STATE(804), - [aux_sym__section_repeat7] = STATE(801), - [aux_sym__section_repeat8] = STATE(797), - [aux_sym_part_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_RBRACK] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_EQ] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [201] = { - [sym_block_comment] = STATE(204), - [sym__flat_content] = STATE(204), - [sym__text_with_env_content] = STATE(204), - [sym__text_content] = STATE(204), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(667), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(666), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(665), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(664), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(663), - [sym_curly_group] = STATE(204), - [sym_text] = STATE(204), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(204), - [sym_inline_formula] = STATE(204), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(204), - [sym_comment_environment] = STATE(204), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(204), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(204), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(204), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(204), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(204), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(204), - [sym_generic_command] = STATE(204), - [sym_title_declaration] = STATE(204), - [sym_author_declaration] = STATE(204), - [sym_package_include] = STATE(204), - [sym_class_include] = STATE(204), - [sym_latex_include] = STATE(204), - [sym_biblatex_include] = STATE(204), - [sym_bibtex_include] = STATE(204), - [sym_graphics_include] = STATE(204), - [sym_svg_include] = STATE(204), - [sym_inkscape_include] = STATE(204), - [sym_verbatim_include] = STATE(204), - [sym_import_include] = STATE(204), - [sym_caption] = STATE(204), - [sym_citation] = STATE(204), - [sym_label_definition] = STATE(204), - [sym_label_reference] = STATE(204), - [sym_label_reference_range] = STATE(204), - [sym_label_number] = STATE(204), - [sym_new_command_definition] = STATE(204), - [sym_old_command_definition] = STATE(204), - [sym_let_command_definition] = STATE(204), - [sym_math_delimiter] = STATE(204), - [sym_paired_delimiter_definition] = STATE(204), - [sym_environment_definition] = STATE(204), - [sym_glossary_entry_definition] = STATE(204), - [sym_glossary_entry_reference] = STATE(204), - [sym_acronym_definition] = STATE(204), - [sym_acronym_reference] = STATE(204), - [sym_theorem_definition] = STATE(204), - [sym_color_definition] = STATE(204), - [sym_color_set_definition] = STATE(204), - [sym_color_reference] = STATE(204), - [sym_tikz_library_import] = STATE(204), - [sym_text_mode] = STATE(204), - [aux_sym__section_repeat4] = STATE(667), - [aux_sym__section_repeat5] = STATE(666), - [aux_sym__section_repeat6] = STATE(665), - [aux_sym__section_repeat7] = STATE(664), - [aux_sym__section_repeat8] = STATE(663), - [aux_sym_part_repeat1] = STATE(204), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2206), - [anon_sym_RBRACK] = ACTIONS(2206), - [anon_sym_COMMA] = ACTIONS(2206), - [anon_sym_EQ] = ACTIONS(2206), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_RPAREN] = ACTIONS(2206), - [anon_sym_BSLASHpart] = ACTIONS(2180), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddpart] = ACTIONS(2180), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2182), - [anon_sym_BSLASHchapter] = ACTIONS(2180), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddchap] = ACTIONS(2180), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2182), - [anon_sym_BSLASHsection] = ACTIONS(2180), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddsec] = ACTIONS(2180), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2182), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2180), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [202] = { - [sym_block_comment] = STATE(258), - [sym__flat_content] = STATE(258), - [sym__text_with_env_content] = STATE(258), - [sym__text_content] = STATE(258), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(865), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(866), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(867), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(868), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(869), - [sym_curly_group] = STATE(258), - [sym_text] = STATE(258), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(258), - [sym_inline_formula] = STATE(258), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(258), - [sym_comment_environment] = STATE(258), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(258), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(258), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(258), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(258), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(258), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(258), - [sym_generic_command] = STATE(258), - [sym_title_declaration] = STATE(258), - [sym_author_declaration] = STATE(258), - [sym_package_include] = STATE(258), - [sym_class_include] = STATE(258), - [sym_latex_include] = STATE(258), - [sym_biblatex_include] = STATE(258), - [sym_bibtex_include] = STATE(258), - [sym_graphics_include] = STATE(258), - [sym_svg_include] = STATE(258), - [sym_inkscape_include] = STATE(258), - [sym_verbatim_include] = STATE(258), - [sym_import_include] = STATE(258), - [sym_caption] = STATE(258), - [sym_citation] = STATE(258), - [sym_label_definition] = STATE(258), - [sym_label_reference] = STATE(258), - [sym_label_reference_range] = STATE(258), - [sym_label_number] = STATE(258), - [sym_new_command_definition] = STATE(258), - [sym_old_command_definition] = STATE(258), - [sym_let_command_definition] = STATE(258), - [sym_math_delimiter] = STATE(258), - [sym_paired_delimiter_definition] = STATE(258), - [sym_environment_definition] = STATE(258), - [sym_glossary_entry_definition] = STATE(258), - [sym_glossary_entry_reference] = STATE(258), - [sym_acronym_definition] = STATE(258), - [sym_acronym_reference] = STATE(258), - [sym_theorem_definition] = STATE(258), - [sym_color_definition] = STATE(258), - [sym_color_set_definition] = STATE(258), - [sym_color_reference] = STATE(258), - [sym_tikz_library_import] = STATE(258), - [sym_text_mode] = STATE(258), - [aux_sym__section_repeat4] = STATE(865), - [aux_sym__section_repeat5] = STATE(866), - [aux_sym__section_repeat6] = STATE(867), - [aux_sym__section_repeat7] = STATE(868), - [aux_sym__section_repeat8] = STATE(869), - [aux_sym_part_repeat1] = STATE(258), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_RBRACK] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [203] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(787), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(788), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(789), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(790), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(791), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(202), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(202), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(202), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(202), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(202), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_title_declaration] = STATE(202), - [sym_author_declaration] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_math_delimiter] = STATE(202), - [sym_paired_delimiter_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [sym_text_mode] = STATE(202), - [aux_sym__section_repeat4] = STATE(787), - [aux_sym__section_repeat5] = STATE(788), - [aux_sym__section_repeat6] = STATE(789), - [aux_sym__section_repeat7] = STATE(790), - [aux_sym__section_repeat8] = STATE(791), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_RBRACK] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2208), - [anon_sym_EQ] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_RPAREN] = ACTIONS(2208), - [anon_sym_BSLASHpart] = ACTIONS(2180), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddpart] = ACTIONS(2180), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2182), - [anon_sym_BSLASHchapter] = ACTIONS(2180), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddchap] = ACTIONS(2180), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2182), - [anon_sym_BSLASHsection] = ACTIONS(2180), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddsec] = ACTIONS(2180), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2182), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2182), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [204] = { - [sym_block_comment] = STATE(251), - [sym__flat_content] = STATE(251), - [sym__text_with_env_content] = STATE(251), - [sym__text_content] = STATE(251), - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(696), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(697), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(698), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(699), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(700), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(251), - [sym_comment_environment] = STATE(251), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(251), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(251), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(251), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(251), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(251), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_title_declaration] = STATE(251), - [sym_author_declaration] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_math_delimiter] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym__section_repeat4] = STATE(696), - [aux_sym__section_repeat5] = STATE(697), - [aux_sym__section_repeat6] = STATE(698), - [aux_sym__section_repeat7] = STATE(699), - [aux_sym__section_repeat8] = STATE(700), - [aux_sym_part_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2168), - [anon_sym_EQ] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [205] = { - [sym_block_comment] = STATE(200), - [sym__flat_content] = STATE(200), - [sym__text_with_env_content] = STATE(200), - [sym__text_content] = STATE(200), - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(825), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(823), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(822), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(821), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(820), - [sym_curly_group] = STATE(200), - [sym_text] = STATE(200), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(200), - [sym_inline_formula] = STATE(200), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(200), - [sym_comment_environment] = STATE(200), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(200), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(200), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(200), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(200), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(200), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(200), - [sym_generic_command] = STATE(200), - [sym_title_declaration] = STATE(200), - [sym_author_declaration] = STATE(200), - [sym_package_include] = STATE(200), - [sym_class_include] = STATE(200), - [sym_latex_include] = STATE(200), - [sym_biblatex_include] = STATE(200), - [sym_bibtex_include] = STATE(200), - [sym_graphics_include] = STATE(200), - [sym_svg_include] = STATE(200), - [sym_inkscape_include] = STATE(200), - [sym_verbatim_include] = STATE(200), - [sym_import_include] = STATE(200), - [sym_caption] = STATE(200), - [sym_citation] = STATE(200), - [sym_label_definition] = STATE(200), - [sym_label_reference] = STATE(200), - [sym_label_reference_range] = STATE(200), - [sym_label_number] = STATE(200), - [sym_new_command_definition] = STATE(200), - [sym_old_command_definition] = STATE(200), - [sym_let_command_definition] = STATE(200), - [sym_math_delimiter] = STATE(200), - [sym_paired_delimiter_definition] = STATE(200), - [sym_environment_definition] = STATE(200), - [sym_glossary_entry_definition] = STATE(200), - [sym_glossary_entry_reference] = STATE(200), - [sym_acronym_definition] = STATE(200), - [sym_acronym_reference] = STATE(200), - [sym_theorem_definition] = STATE(200), - [sym_color_definition] = STATE(200), - [sym_color_set_definition] = STATE(200), - [sym_color_reference] = STATE(200), - [sym_tikz_library_import] = STATE(200), - [sym_text_mode] = STATE(200), - [aux_sym__section_repeat4] = STATE(825), - [aux_sym__section_repeat5] = STATE(823), - [aux_sym__section_repeat6] = STATE(822), - [aux_sym__section_repeat7] = STATE(821), - [aux_sym__section_repeat8] = STATE(820), - [aux_sym_part_repeat1] = STATE(200), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_RBRACK] = ACTIONS(2210), - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_EQ] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_RPAREN] = ACTIONS(2210), - [anon_sym_BSLASHpart] = ACTIONS(2180), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddpart] = ACTIONS(2180), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2182), - [anon_sym_BSLASHchapter] = ACTIONS(2180), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddchap] = ACTIONS(2180), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2182), - [anon_sym_BSLASHsection] = ACTIONS(2180), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2182), - [anon_sym_BSLASHaddsec] = ACTIONS(2180), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2182), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2182), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [206] = { - [sym_block_comment] = STATE(209), - [sym__flat_content] = STATE(209), - [sym__text_with_env_content] = STATE(209), - [sym__text_content] = STATE(209), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(474), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(473), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(472), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(471), - [sym_curly_group] = STATE(209), - [sym_text] = STATE(209), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(209), - [sym_inline_formula] = STATE(209), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(209), - [sym_comment_environment] = STATE(209), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(209), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(209), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(209), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(209), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(209), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(209), - [sym_generic_command] = STATE(209), - [sym_title_declaration] = STATE(209), - [sym_author_declaration] = STATE(209), - [sym_package_include] = STATE(209), - [sym_class_include] = STATE(209), - [sym_latex_include] = STATE(209), - [sym_biblatex_include] = STATE(209), - [sym_bibtex_include] = STATE(209), - [sym_graphics_include] = STATE(209), - [sym_svg_include] = STATE(209), - [sym_inkscape_include] = STATE(209), - [sym_verbatim_include] = STATE(209), - [sym_import_include] = STATE(209), - [sym_caption] = STATE(209), - [sym_citation] = STATE(209), - [sym_label_definition] = STATE(209), - [sym_label_reference] = STATE(209), - [sym_label_reference_range] = STATE(209), - [sym_label_number] = STATE(209), - [sym_new_command_definition] = STATE(209), - [sym_old_command_definition] = STATE(209), - [sym_let_command_definition] = STATE(209), - [sym_math_delimiter] = STATE(209), - [sym_paired_delimiter_definition] = STATE(209), - [sym_environment_definition] = STATE(209), - [sym_glossary_entry_definition] = STATE(209), - [sym_glossary_entry_reference] = STATE(209), - [sym_acronym_definition] = STATE(209), - [sym_acronym_reference] = STATE(209), - [sym_theorem_definition] = STATE(209), - [sym_color_definition] = STATE(209), - [sym_color_set_definition] = STATE(209), - [sym_color_reference] = STATE(209), - [sym_tikz_library_import] = STATE(209), - [sym_text_mode] = STATE(209), - [aux_sym__section_repeat5] = STATE(474), - [aux_sym__section_repeat6] = STATE(473), - [aux_sym__section_repeat7] = STATE(472), - [aux_sym__section_repeat8] = STATE(471), - [aux_sym_part_repeat1] = STATE(209), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2198), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2212), - [anon_sym_RBRACK] = ACTIONS(2212), - [anon_sym_COMMA] = ACTIONS(2212), - [anon_sym_EQ] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2212), - [anon_sym_RPAREN] = ACTIONS(2212), - [anon_sym_BSLASHpart] = ACTIONS(2196), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddpart] = ACTIONS(2196), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2198), - [anon_sym_BSLASHchapter] = ACTIONS(2196), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddchap] = ACTIONS(2196), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsection] = ACTIONS(2196), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddsec] = ACTIONS(2196), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsubsection] = ACTIONS(2196), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2198), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [207] = { - [sym_block_comment] = STATE(208), - [sym__flat_content] = STATE(208), - [sym__text_with_env_content] = STATE(208), - [sym__text_content] = STATE(208), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(400), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(401), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(402), - [sym_curly_group] = STATE(208), - [sym_text] = STATE(208), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(208), - [sym_inline_formula] = STATE(208), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(208), - [sym_comment_environment] = STATE(208), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(208), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(208), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(208), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(208), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(208), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(208), - [sym_generic_command] = STATE(208), - [sym_title_declaration] = STATE(208), - [sym_author_declaration] = STATE(208), - [sym_package_include] = STATE(208), - [sym_class_include] = STATE(208), - [sym_latex_include] = STATE(208), - [sym_biblatex_include] = STATE(208), - [sym_bibtex_include] = STATE(208), - [sym_graphics_include] = STATE(208), - [sym_svg_include] = STATE(208), - [sym_inkscape_include] = STATE(208), - [sym_verbatim_include] = STATE(208), - [sym_import_include] = STATE(208), - [sym_caption] = STATE(208), - [sym_citation] = STATE(208), - [sym_label_definition] = STATE(208), - [sym_label_reference] = STATE(208), - [sym_label_reference_range] = STATE(208), - [sym_label_number] = STATE(208), - [sym_new_command_definition] = STATE(208), - [sym_old_command_definition] = STATE(208), - [sym_let_command_definition] = STATE(208), - [sym_math_delimiter] = STATE(208), - [sym_paired_delimiter_definition] = STATE(208), - [sym_environment_definition] = STATE(208), - [sym_glossary_entry_definition] = STATE(208), - [sym_glossary_entry_reference] = STATE(208), - [sym_acronym_definition] = STATE(208), - [sym_acronym_reference] = STATE(208), - [sym_theorem_definition] = STATE(208), - [sym_color_definition] = STATE(208), - [sym_color_set_definition] = STATE(208), - [sym_color_reference] = STATE(208), - [sym_tikz_library_import] = STATE(208), - [sym_text_mode] = STATE(208), - [aux_sym__section_repeat6] = STATE(400), - [aux_sym__section_repeat7] = STATE(401), - [aux_sym__section_repeat8] = STATE(402), - [aux_sym_part_repeat1] = STATE(208), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_RBRACK] = ACTIONS(2214), - [anon_sym_COMMA] = ACTIONS(2214), - [anon_sym_EQ] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_RPAREN] = ACTIONS(2214), - [anon_sym_BSLASHpart] = ACTIONS(2216), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddpart] = ACTIONS(2216), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2218), - [anon_sym_BSLASHchapter] = ACTIONS(2216), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddchap] = ACTIONS(2216), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsection] = ACTIONS(2216), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddsec] = ACTIONS(2216), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsubsection] = ACTIONS(2216), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2216), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2216), - [anon_sym_BSLASHbigr] = ACTIONS(2216), - [anon_sym_BSLASHBigr] = ACTIONS(2216), - [anon_sym_BSLASHbiggr] = ACTIONS(2216), - [anon_sym_BSLASHBiggr] = ACTIONS(2216), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [208] = { - [sym_block_comment] = STATE(240), - [sym__flat_content] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(425), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(428), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(427), - [sym_curly_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(240), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(240), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(240), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(240), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(240), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_title_declaration] = STATE(240), - [sym_author_declaration] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_math_delimiter] = STATE(240), - [sym_paired_delimiter_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_text_mode] = STATE(240), - [aux_sym__section_repeat6] = STATE(425), - [aux_sym__section_repeat7] = STATE(428), - [aux_sym__section_repeat8] = STATE(427), - [aux_sym_part_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_RBRACK] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2136), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2220), - [anon_sym_BSLASHbigr] = ACTIONS(2220), - [anon_sym_BSLASHBigr] = ACTIONS(2220), - [anon_sym_BSLASHbiggr] = ACTIONS(2220), - [anon_sym_BSLASHBiggr] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [209] = { - [sym_block_comment] = STATE(247), - [sym__flat_content] = STATE(247), - [sym__text_with_env_content] = STATE(247), - [sym__text_content] = STATE(247), - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(585), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(584), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(583), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(581), - [sym_curly_group] = STATE(247), - [sym_text] = STATE(247), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(247), - [sym_inline_formula] = STATE(247), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(247), - [sym_comment_environment] = STATE(247), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(247), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(247), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(247), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(247), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(247), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(247), - [sym_generic_command] = STATE(247), - [sym_title_declaration] = STATE(247), - [sym_author_declaration] = STATE(247), - [sym_package_include] = STATE(247), - [sym_class_include] = STATE(247), - [sym_latex_include] = STATE(247), - [sym_biblatex_include] = STATE(247), - [sym_bibtex_include] = STATE(247), - [sym_graphics_include] = STATE(247), - [sym_svg_include] = STATE(247), - [sym_inkscape_include] = STATE(247), - [sym_verbatim_include] = STATE(247), - [sym_import_include] = STATE(247), - [sym_caption] = STATE(247), - [sym_citation] = STATE(247), - [sym_label_definition] = STATE(247), - [sym_label_reference] = STATE(247), - [sym_label_reference_range] = STATE(247), - [sym_label_number] = STATE(247), - [sym_new_command_definition] = STATE(247), - [sym_old_command_definition] = STATE(247), - [sym_let_command_definition] = STATE(247), - [sym_math_delimiter] = STATE(247), - [sym_paired_delimiter_definition] = STATE(247), - [sym_environment_definition] = STATE(247), - [sym_glossary_entry_definition] = STATE(247), - [sym_glossary_entry_reference] = STATE(247), - [sym_acronym_definition] = STATE(247), - [sym_acronym_reference] = STATE(247), - [sym_theorem_definition] = STATE(247), - [sym_color_definition] = STATE(247), - [sym_color_set_definition] = STATE(247), - [sym_color_reference] = STATE(247), - [sym_tikz_library_import] = STATE(247), - [sym_text_mode] = STATE(247), - [aux_sym__section_repeat5] = STATE(585), - [aux_sym__section_repeat6] = STATE(584), - [aux_sym__section_repeat7] = STATE(583), - [aux_sym__section_repeat8] = STATE(581), - [aux_sym_part_repeat1] = STATE(247), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2204), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2148), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [210] = { - [sym_block_comment] = STATE(213), - [sym__flat_content] = STATE(213), - [sym__text_with_env_content] = STATE(213), - [sym__text_content] = STATE(213), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(662), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(661), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(660), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(659), - [sym_curly_group] = STATE(213), - [sym_text] = STATE(213), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(213), - [sym_inline_formula] = STATE(213), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(213), - [sym_comment_environment] = STATE(213), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(213), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(213), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(213), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(213), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(213), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(213), - [sym_generic_command] = STATE(213), - [sym_title_declaration] = STATE(213), - [sym_author_declaration] = STATE(213), - [sym_package_include] = STATE(213), - [sym_class_include] = STATE(213), - [sym_latex_include] = STATE(213), - [sym_biblatex_include] = STATE(213), - [sym_bibtex_include] = STATE(213), - [sym_graphics_include] = STATE(213), - [sym_svg_include] = STATE(213), - [sym_inkscape_include] = STATE(213), - [sym_verbatim_include] = STATE(213), - [sym_import_include] = STATE(213), - [sym_caption] = STATE(213), - [sym_citation] = STATE(213), - [sym_label_definition] = STATE(213), - [sym_label_reference] = STATE(213), - [sym_label_reference_range] = STATE(213), - [sym_label_number] = STATE(213), - [sym_new_command_definition] = STATE(213), - [sym_old_command_definition] = STATE(213), - [sym_let_command_definition] = STATE(213), - [sym_math_delimiter] = STATE(213), - [sym_paired_delimiter_definition] = STATE(213), - [sym_environment_definition] = STATE(213), - [sym_glossary_entry_definition] = STATE(213), - [sym_glossary_entry_reference] = STATE(213), - [sym_acronym_definition] = STATE(213), - [sym_acronym_reference] = STATE(213), - [sym_theorem_definition] = STATE(213), - [sym_color_definition] = STATE(213), - [sym_color_set_definition] = STATE(213), - [sym_color_reference] = STATE(213), - [sym_tikz_library_import] = STATE(213), - [sym_text_mode] = STATE(213), - [aux_sym__section_repeat5] = STATE(662), - [aux_sym__section_repeat6] = STATE(661), - [aux_sym__section_repeat7] = STATE(660), - [aux_sym__section_repeat8] = STATE(659), - [aux_sym_part_repeat1] = STATE(213), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2224), - [anon_sym_RBRACK] = ACTIONS(2224), - [anon_sym_COMMA] = ACTIONS(2224), - [anon_sym_EQ] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2224), - [anon_sym_BSLASHpart] = ACTIONS(2196), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddpart] = ACTIONS(2196), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2198), - [anon_sym_BSLASHchapter] = ACTIONS(2196), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddchap] = ACTIONS(2196), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsection] = ACTIONS(2196), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddsec] = ACTIONS(2196), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsubsection] = ACTIONS(2196), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2196), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [211] = { - [sym_block_comment] = STATE(215), - [sym__flat_content] = STATE(215), - [sym__text_with_env_content] = STATE(215), - [sym__text_content] = STATE(215), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(809), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(771), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(770), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(769), - [sym_curly_group] = STATE(215), - [sym_text] = STATE(215), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(215), - [sym_inline_formula] = STATE(215), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(215), - [sym_comment_environment] = STATE(215), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(215), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(215), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(215), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(215), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(215), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(215), - [sym_generic_command] = STATE(215), - [sym_title_declaration] = STATE(215), - [sym_author_declaration] = STATE(215), - [sym_package_include] = STATE(215), - [sym_class_include] = STATE(215), - [sym_latex_include] = STATE(215), - [sym_biblatex_include] = STATE(215), - [sym_bibtex_include] = STATE(215), - [sym_graphics_include] = STATE(215), - [sym_svg_include] = STATE(215), - [sym_inkscape_include] = STATE(215), - [sym_verbatim_include] = STATE(215), - [sym_import_include] = STATE(215), - [sym_caption] = STATE(215), - [sym_citation] = STATE(215), - [sym_label_definition] = STATE(215), - [sym_label_reference] = STATE(215), - [sym_label_reference_range] = STATE(215), - [sym_label_number] = STATE(215), - [sym_new_command_definition] = STATE(215), - [sym_old_command_definition] = STATE(215), - [sym_let_command_definition] = STATE(215), - [sym_math_delimiter] = STATE(215), - [sym_paired_delimiter_definition] = STATE(215), - [sym_environment_definition] = STATE(215), - [sym_glossary_entry_definition] = STATE(215), - [sym_glossary_entry_reference] = STATE(215), - [sym_acronym_definition] = STATE(215), - [sym_acronym_reference] = STATE(215), - [sym_theorem_definition] = STATE(215), - [sym_color_definition] = STATE(215), - [sym_color_set_definition] = STATE(215), - [sym_color_reference] = STATE(215), - [sym_tikz_library_import] = STATE(215), - [sym_text_mode] = STATE(215), - [aux_sym__section_repeat5] = STATE(809), - [aux_sym__section_repeat6] = STATE(771), - [aux_sym__section_repeat7] = STATE(770), - [aux_sym__section_repeat8] = STATE(769), - [aux_sym_part_repeat1] = STATE(215), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_RBRACK] = ACTIONS(2226), - [anon_sym_COMMA] = ACTIONS(2226), - [anon_sym_EQ] = ACTIONS(2226), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_RPAREN] = ACTIONS(2226), - [anon_sym_BSLASHpart] = ACTIONS(2196), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddpart] = ACTIONS(2196), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2198), - [anon_sym_BSLASHchapter] = ACTIONS(2196), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddchap] = ACTIONS(2196), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsection] = ACTIONS(2196), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddsec] = ACTIONS(2196), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsubsection] = ACTIONS(2196), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [212] = { - [sym_block_comment] = STATE(258), - [sym__flat_content] = STATE(258), - [sym__text_with_env_content] = STATE(258), - [sym__text_content] = STATE(258), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(870), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(871), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(872), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(873), - [sym_curly_group] = STATE(258), - [sym_text] = STATE(258), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(258), - [sym_inline_formula] = STATE(258), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(258), - [sym_comment_environment] = STATE(258), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(258), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(258), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(258), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(258), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(258), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(258), - [sym_generic_command] = STATE(258), - [sym_title_declaration] = STATE(258), - [sym_author_declaration] = STATE(258), - [sym_package_include] = STATE(258), - [sym_class_include] = STATE(258), - [sym_latex_include] = STATE(258), - [sym_biblatex_include] = STATE(258), - [sym_bibtex_include] = STATE(258), - [sym_graphics_include] = STATE(258), - [sym_svg_include] = STATE(258), - [sym_inkscape_include] = STATE(258), - [sym_verbatim_include] = STATE(258), - [sym_import_include] = STATE(258), - [sym_caption] = STATE(258), - [sym_citation] = STATE(258), - [sym_label_definition] = STATE(258), - [sym_label_reference] = STATE(258), - [sym_label_reference_range] = STATE(258), - [sym_label_number] = STATE(258), - [sym_new_command_definition] = STATE(258), - [sym_old_command_definition] = STATE(258), - [sym_let_command_definition] = STATE(258), - [sym_math_delimiter] = STATE(258), - [sym_paired_delimiter_definition] = STATE(258), - [sym_environment_definition] = STATE(258), - [sym_glossary_entry_definition] = STATE(258), - [sym_glossary_entry_reference] = STATE(258), - [sym_acronym_definition] = STATE(258), - [sym_acronym_reference] = STATE(258), - [sym_theorem_definition] = STATE(258), - [sym_color_definition] = STATE(258), - [sym_color_set_definition] = STATE(258), - [sym_color_reference] = STATE(258), - [sym_tikz_library_import] = STATE(258), - [sym_text_mode] = STATE(258), - [aux_sym__section_repeat5] = STATE(870), - [aux_sym__section_repeat6] = STATE(871), - [aux_sym__section_repeat7] = STATE(872), - [aux_sym__section_repeat8] = STATE(873), - [aux_sym_part_repeat1] = STATE(258), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_RBRACK] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [213] = { - [sym_block_comment] = STATE(251), - [sym__flat_content] = STATE(251), - [sym__text_with_env_content] = STATE(251), - [sym__text_content] = STATE(251), - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(701), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(709), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(710), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(711), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(251), - [sym_comment_environment] = STATE(251), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(251), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(251), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(251), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(251), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(251), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_title_declaration] = STATE(251), - [sym_author_declaration] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_math_delimiter] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym__section_repeat5] = STATE(701), - [aux_sym__section_repeat6] = STATE(709), - [aux_sym__section_repeat7] = STATE(710), - [aux_sym__section_repeat8] = STATE(711), - [aux_sym_part_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2168), - [anon_sym_EQ] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [214] = { - [sym_block_comment] = STATE(212), - [sym__flat_content] = STATE(212), - [sym__text_with_env_content] = STATE(212), - [sym__text_content] = STATE(212), - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(793), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(794), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(795), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(796), - [sym_curly_group] = STATE(212), - [sym_text] = STATE(212), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(212), - [sym_inline_formula] = STATE(212), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(212), - [sym_comment_environment] = STATE(212), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(212), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(212), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(212), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(212), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(212), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(212), - [sym_generic_command] = STATE(212), - [sym_title_declaration] = STATE(212), - [sym_author_declaration] = STATE(212), - [sym_package_include] = STATE(212), - [sym_class_include] = STATE(212), - [sym_latex_include] = STATE(212), - [sym_biblatex_include] = STATE(212), - [sym_bibtex_include] = STATE(212), - [sym_graphics_include] = STATE(212), - [sym_svg_include] = STATE(212), - [sym_inkscape_include] = STATE(212), - [sym_verbatim_include] = STATE(212), - [sym_import_include] = STATE(212), - [sym_caption] = STATE(212), - [sym_citation] = STATE(212), - [sym_label_definition] = STATE(212), - [sym_label_reference] = STATE(212), - [sym_label_reference_range] = STATE(212), - [sym_label_number] = STATE(212), - [sym_new_command_definition] = STATE(212), - [sym_old_command_definition] = STATE(212), - [sym_let_command_definition] = STATE(212), - [sym_math_delimiter] = STATE(212), - [sym_paired_delimiter_definition] = STATE(212), - [sym_environment_definition] = STATE(212), - [sym_glossary_entry_definition] = STATE(212), - [sym_glossary_entry_reference] = STATE(212), - [sym_acronym_definition] = STATE(212), - [sym_acronym_reference] = STATE(212), - [sym_theorem_definition] = STATE(212), - [sym_color_definition] = STATE(212), - [sym_color_set_definition] = STATE(212), - [sym_color_reference] = STATE(212), - [sym_tikz_library_import] = STATE(212), - [sym_text_mode] = STATE(212), - [aux_sym__section_repeat5] = STATE(793), - [aux_sym__section_repeat6] = STATE(794), - [aux_sym__section_repeat7] = STATE(795), - [aux_sym__section_repeat8] = STATE(796), - [aux_sym_part_repeat1] = STATE(212), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_RBRACK] = ACTIONS(2228), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_EQ] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_BSLASHpart] = ACTIONS(2196), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddpart] = ACTIONS(2196), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2198), - [anon_sym_BSLASHchapter] = ACTIONS(2196), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddchap] = ACTIONS(2196), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsection] = ACTIONS(2196), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2198), - [anon_sym_BSLASHaddsec] = ACTIONS(2196), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsubsection] = ACTIONS(2196), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2198), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [215] = { - [sym_block_comment] = STATE(252), - [sym__flat_content] = STATE(252), - [sym__text_with_env_content] = STATE(252), - [sym__text_content] = STATE(252), - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(792), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(786), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(686), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(746), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(252), - [sym_comment_environment] = STATE(252), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(252), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(252), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(252), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(252), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(252), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_title_declaration] = STATE(252), - [sym_author_declaration] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_math_delimiter] = STATE(252), - [sym_paired_delimiter_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [sym_text_mode] = STATE(252), - [aux_sym__section_repeat5] = STATE(792), - [aux_sym__section_repeat6] = STATE(786), - [aux_sym__section_repeat7] = STATE(686), - [aux_sym__section_repeat8] = STATE(746), - [aux_sym_part_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_RBRACK] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_EQ] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [216] = { - [sym_block_comment] = STATE(240), - [sym__flat_content] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(426), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(424), - [sym_curly_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(240), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(240), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(240), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(240), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(240), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_title_declaration] = STATE(240), - [sym_author_declaration] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_math_delimiter] = STATE(240), - [sym_paired_delimiter_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_text_mode] = STATE(240), - [aux_sym__section_repeat7] = STATE(426), - [aux_sym__section_repeat8] = STATE(424), - [aux_sym_part_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_RBRACK] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2136), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2230), - [anon_sym_BSLASHbigr] = ACTIONS(2230), - [anon_sym_BSLASHBigr] = ACTIONS(2230), - [anon_sym_BSLASHbiggr] = ACTIONS(2230), - [anon_sym_BSLASHBiggr] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [217] = { - [sym_block_comment] = STATE(219), - [sym__flat_content] = STATE(219), - [sym__text_with_env_content] = STATE(219), - [sym__text_content] = STATE(219), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(470), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(469), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(467), - [sym_curly_group] = STATE(219), - [sym_text] = STATE(219), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(219), - [sym_inline_formula] = STATE(219), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(219), - [sym_comment_environment] = STATE(219), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(219), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(219), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(219), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(219), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(219), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(219), - [sym_generic_command] = STATE(219), - [sym_title_declaration] = STATE(219), - [sym_author_declaration] = STATE(219), - [sym_package_include] = STATE(219), - [sym_class_include] = STATE(219), - [sym_latex_include] = STATE(219), - [sym_biblatex_include] = STATE(219), - [sym_bibtex_include] = STATE(219), - [sym_graphics_include] = STATE(219), - [sym_svg_include] = STATE(219), - [sym_inkscape_include] = STATE(219), - [sym_verbatim_include] = STATE(219), - [sym_import_include] = STATE(219), - [sym_caption] = STATE(219), - [sym_citation] = STATE(219), - [sym_label_definition] = STATE(219), - [sym_label_reference] = STATE(219), - [sym_label_reference_range] = STATE(219), - [sym_label_number] = STATE(219), - [sym_new_command_definition] = STATE(219), - [sym_old_command_definition] = STATE(219), - [sym_let_command_definition] = STATE(219), - [sym_math_delimiter] = STATE(219), - [sym_paired_delimiter_definition] = STATE(219), - [sym_environment_definition] = STATE(219), - [sym_glossary_entry_definition] = STATE(219), - [sym_glossary_entry_reference] = STATE(219), - [sym_acronym_definition] = STATE(219), - [sym_acronym_reference] = STATE(219), - [sym_theorem_definition] = STATE(219), - [sym_color_definition] = STATE(219), - [sym_color_set_definition] = STATE(219), - [sym_color_reference] = STATE(219), - [sym_tikz_library_import] = STATE(219), - [sym_text_mode] = STATE(219), - [aux_sym__section_repeat6] = STATE(470), - [aux_sym__section_repeat7] = STATE(469), - [aux_sym__section_repeat8] = STATE(467), - [aux_sym_part_repeat1] = STATE(219), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_RBRACK] = ACTIONS(2234), - [anon_sym_COMMA] = ACTIONS(2234), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_RPAREN] = ACTIONS(2234), - [anon_sym_BSLASHpart] = ACTIONS(2216), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddpart] = ACTIONS(2216), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2218), - [anon_sym_BSLASHchapter] = ACTIONS(2216), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddchap] = ACTIONS(2216), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsection] = ACTIONS(2216), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddsec] = ACTIONS(2216), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsubsection] = ACTIONS(2216), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2216), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2218), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [218] = { - [sym_block_comment] = STATE(216), - [sym__flat_content] = STATE(216), - [sym__text_with_env_content] = STATE(216), - [sym__text_content] = STATE(216), - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(403), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(404), - [sym_curly_group] = STATE(216), - [sym_text] = STATE(216), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(216), - [sym_inline_formula] = STATE(216), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(216), - [sym_comment_environment] = STATE(216), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(216), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(216), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(216), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(216), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(216), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(216), - [sym_generic_command] = STATE(216), - [sym_title_declaration] = STATE(216), - [sym_author_declaration] = STATE(216), - [sym_package_include] = STATE(216), - [sym_class_include] = STATE(216), - [sym_latex_include] = STATE(216), - [sym_biblatex_include] = STATE(216), - [sym_bibtex_include] = STATE(216), - [sym_graphics_include] = STATE(216), - [sym_svg_include] = STATE(216), - [sym_inkscape_include] = STATE(216), - [sym_verbatim_include] = STATE(216), - [sym_import_include] = STATE(216), - [sym_caption] = STATE(216), - [sym_citation] = STATE(216), - [sym_label_definition] = STATE(216), - [sym_label_reference] = STATE(216), - [sym_label_reference_range] = STATE(216), - [sym_label_number] = STATE(216), - [sym_new_command_definition] = STATE(216), - [sym_old_command_definition] = STATE(216), - [sym_let_command_definition] = STATE(216), - [sym_math_delimiter] = STATE(216), - [sym_paired_delimiter_definition] = STATE(216), - [sym_environment_definition] = STATE(216), - [sym_glossary_entry_definition] = STATE(216), - [sym_glossary_entry_reference] = STATE(216), - [sym_acronym_definition] = STATE(216), - [sym_acronym_reference] = STATE(216), - [sym_theorem_definition] = STATE(216), - [sym_color_definition] = STATE(216), - [sym_color_set_definition] = STATE(216), - [sym_color_reference] = STATE(216), - [sym_tikz_library_import] = STATE(216), - [sym_text_mode] = STATE(216), - [aux_sym__section_repeat7] = STATE(403), - [aux_sym__section_repeat8] = STATE(404), - [aux_sym_part_repeat1] = STATE(216), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_RBRACK] = ACTIONS(2236), - [anon_sym_COMMA] = ACTIONS(2236), - [anon_sym_EQ] = ACTIONS(2236), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_RPAREN] = ACTIONS(2236), - [anon_sym_BSLASHpart] = ACTIONS(2238), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddpart] = ACTIONS(2238), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2240), - [anon_sym_BSLASHchapter] = ACTIONS(2238), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddchap] = ACTIONS(2238), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsection] = ACTIONS(2238), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddsec] = ACTIONS(2238), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubsection] = ACTIONS(2238), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2238), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHparagraph] = ACTIONS(2238), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2238), - [anon_sym_BSLASHbigr] = ACTIONS(2238), - [anon_sym_BSLASHBigr] = ACTIONS(2238), - [anon_sym_BSLASHbiggr] = ACTIONS(2238), - [anon_sym_BSLASHBiggr] = ACTIONS(2238), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [219] = { - [sym_block_comment] = STATE(247), - [sym__flat_content] = STATE(247), - [sym__text_with_env_content] = STATE(247), - [sym__text_content] = STATE(247), - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(579), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(578), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(577), - [sym_curly_group] = STATE(247), - [sym_text] = STATE(247), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(247), - [sym_inline_formula] = STATE(247), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(247), - [sym_comment_environment] = STATE(247), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(247), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(247), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(247), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(247), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(247), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(247), - [sym_generic_command] = STATE(247), - [sym_title_declaration] = STATE(247), - [sym_author_declaration] = STATE(247), - [sym_package_include] = STATE(247), - [sym_class_include] = STATE(247), - [sym_latex_include] = STATE(247), - [sym_biblatex_include] = STATE(247), - [sym_bibtex_include] = STATE(247), - [sym_graphics_include] = STATE(247), - [sym_svg_include] = STATE(247), - [sym_inkscape_include] = STATE(247), - [sym_verbatim_include] = STATE(247), - [sym_import_include] = STATE(247), - [sym_caption] = STATE(247), - [sym_citation] = STATE(247), - [sym_label_definition] = STATE(247), - [sym_label_reference] = STATE(247), - [sym_label_reference_range] = STATE(247), - [sym_label_number] = STATE(247), - [sym_new_command_definition] = STATE(247), - [sym_old_command_definition] = STATE(247), - [sym_let_command_definition] = STATE(247), - [sym_math_delimiter] = STATE(247), - [sym_paired_delimiter_definition] = STATE(247), - [sym_environment_definition] = STATE(247), - [sym_glossary_entry_definition] = STATE(247), - [sym_glossary_entry_reference] = STATE(247), - [sym_acronym_definition] = STATE(247), - [sym_acronym_reference] = STATE(247), - [sym_theorem_definition] = STATE(247), - [sym_color_definition] = STATE(247), - [sym_color_set_definition] = STATE(247), - [sym_color_reference] = STATE(247), - [sym_tikz_library_import] = STATE(247), - [sym_text_mode] = STATE(247), - [aux_sym__section_repeat6] = STATE(579), - [aux_sym__section_repeat7] = STATE(578), - [aux_sym__section_repeat8] = STATE(577), - [aux_sym_part_repeat1] = STATE(247), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2148), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [220] = { - [sym_block_comment] = STATE(258), - [sym__flat_content] = STATE(258), - [sym__text_with_env_content] = STATE(258), - [sym__text_content] = STATE(258), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(874), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(875), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(876), - [sym_curly_group] = STATE(258), - [sym_text] = STATE(258), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(258), - [sym_inline_formula] = STATE(258), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(258), - [sym_comment_environment] = STATE(258), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(258), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(258), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(258), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(258), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(258), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(258), - [sym_generic_command] = STATE(258), - [sym_title_declaration] = STATE(258), - [sym_author_declaration] = STATE(258), - [sym_package_include] = STATE(258), - [sym_class_include] = STATE(258), - [sym_latex_include] = STATE(258), - [sym_biblatex_include] = STATE(258), - [sym_bibtex_include] = STATE(258), - [sym_graphics_include] = STATE(258), - [sym_svg_include] = STATE(258), - [sym_inkscape_include] = STATE(258), - [sym_verbatim_include] = STATE(258), - [sym_import_include] = STATE(258), - [sym_caption] = STATE(258), - [sym_citation] = STATE(258), - [sym_label_definition] = STATE(258), - [sym_label_reference] = STATE(258), - [sym_label_reference_range] = STATE(258), - [sym_label_number] = STATE(258), - [sym_new_command_definition] = STATE(258), - [sym_old_command_definition] = STATE(258), - [sym_let_command_definition] = STATE(258), - [sym_math_delimiter] = STATE(258), - [sym_paired_delimiter_definition] = STATE(258), - [sym_environment_definition] = STATE(258), - [sym_glossary_entry_definition] = STATE(258), - [sym_glossary_entry_reference] = STATE(258), - [sym_acronym_definition] = STATE(258), - [sym_acronym_reference] = STATE(258), - [sym_theorem_definition] = STATE(258), - [sym_color_definition] = STATE(258), - [sym_color_set_definition] = STATE(258), - [sym_color_reference] = STATE(258), - [sym_tikz_library_import] = STATE(258), - [sym_text_mode] = STATE(258), - [aux_sym__section_repeat6] = STATE(874), - [aux_sym__section_repeat7] = STATE(875), - [aux_sym__section_repeat8] = STATE(876), - [aux_sym_part_repeat1] = STATE(258), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_RBRACK] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [221] = { - [sym_block_comment] = STATE(252), - [sym__flat_content] = STATE(252), - [sym__text_with_env_content] = STATE(252), - [sym__text_content] = STATE(252), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(744), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(729), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(720), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(252), - [sym_comment_environment] = STATE(252), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(252), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(252), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(252), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(252), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(252), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_title_declaration] = STATE(252), - [sym_author_declaration] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_math_delimiter] = STATE(252), - [sym_paired_delimiter_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [sym_text_mode] = STATE(252), - [aux_sym__section_repeat6] = STATE(744), - [aux_sym__section_repeat7] = STATE(729), - [aux_sym__section_repeat8] = STATE(720), - [aux_sym_part_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_RBRACK] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_EQ] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [222] = { - [sym_block_comment] = STATE(225), - [sym__flat_content] = STATE(225), - [sym__text_with_env_content] = STATE(225), - [sym__text_content] = STATE(225), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(658), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(657), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(656), - [sym_curly_group] = STATE(225), - [sym_text] = STATE(225), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(225), - [sym_inline_formula] = STATE(225), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(225), - [sym_comment_environment] = STATE(225), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(225), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(225), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(225), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(225), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(225), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(225), - [sym_generic_command] = STATE(225), - [sym_title_declaration] = STATE(225), - [sym_author_declaration] = STATE(225), - [sym_package_include] = STATE(225), - [sym_class_include] = STATE(225), - [sym_latex_include] = STATE(225), - [sym_biblatex_include] = STATE(225), - [sym_bibtex_include] = STATE(225), - [sym_graphics_include] = STATE(225), - [sym_svg_include] = STATE(225), - [sym_inkscape_include] = STATE(225), - [sym_verbatim_include] = STATE(225), - [sym_import_include] = STATE(225), - [sym_caption] = STATE(225), - [sym_citation] = STATE(225), - [sym_label_definition] = STATE(225), - [sym_label_reference] = STATE(225), - [sym_label_reference_range] = STATE(225), - [sym_label_number] = STATE(225), - [sym_new_command_definition] = STATE(225), - [sym_old_command_definition] = STATE(225), - [sym_let_command_definition] = STATE(225), - [sym_math_delimiter] = STATE(225), - [sym_paired_delimiter_definition] = STATE(225), - [sym_environment_definition] = STATE(225), - [sym_glossary_entry_definition] = STATE(225), - [sym_glossary_entry_reference] = STATE(225), - [sym_acronym_definition] = STATE(225), - [sym_acronym_reference] = STATE(225), - [sym_theorem_definition] = STATE(225), - [sym_color_definition] = STATE(225), - [sym_color_set_definition] = STATE(225), - [sym_color_reference] = STATE(225), - [sym_tikz_library_import] = STATE(225), - [sym_text_mode] = STATE(225), - [aux_sym__section_repeat6] = STATE(658), - [aux_sym__section_repeat7] = STATE(657), - [aux_sym__section_repeat8] = STATE(656), - [aux_sym_part_repeat1] = STATE(225), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_RBRACK] = ACTIONS(2242), - [anon_sym_COMMA] = ACTIONS(2242), - [anon_sym_EQ] = ACTIONS(2242), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_RPAREN] = ACTIONS(2242), - [anon_sym_BSLASHpart] = ACTIONS(2216), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddpart] = ACTIONS(2216), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2218), - [anon_sym_BSLASHchapter] = ACTIONS(2216), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddchap] = ACTIONS(2216), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsection] = ACTIONS(2216), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddsec] = ACTIONS(2216), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsubsection] = ACTIONS(2216), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2216), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2216), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [223] = { - [sym_block_comment] = STATE(220), - [sym__flat_content] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(798), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(799), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(800), - [sym_curly_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(220), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(220), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(220), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(220), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(220), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_title_declaration] = STATE(220), - [sym_author_declaration] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_math_delimiter] = STATE(220), - [sym_paired_delimiter_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [sym_text_mode] = STATE(220), - [aux_sym__section_repeat6] = STATE(798), - [aux_sym__section_repeat7] = STATE(799), - [aux_sym__section_repeat8] = STATE(800), - [aux_sym_part_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2244), - [anon_sym_RBRACK] = ACTIONS(2244), - [anon_sym_COMMA] = ACTIONS(2244), - [anon_sym_EQ] = ACTIONS(2244), - [anon_sym_LPAREN] = ACTIONS(2244), - [anon_sym_RPAREN] = ACTIONS(2244), - [anon_sym_BSLASHpart] = ACTIONS(2216), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddpart] = ACTIONS(2216), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2218), - [anon_sym_BSLASHchapter] = ACTIONS(2216), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddchap] = ACTIONS(2216), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsection] = ACTIONS(2216), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddsec] = ACTIONS(2216), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsubsection] = ACTIONS(2216), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2216), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2218), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [224] = { - [sym_block_comment] = STATE(221), - [sym__flat_content] = STATE(221), - [sym__text_with_env_content] = STATE(221), - [sym__text_content] = STATE(221), - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(768), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(767), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(766), - [sym_curly_group] = STATE(221), - [sym_text] = STATE(221), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(221), - [sym_inline_formula] = STATE(221), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(221), - [sym_comment_environment] = STATE(221), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(221), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(221), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(221), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(221), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(221), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(221), - [sym_generic_command] = STATE(221), - [sym_title_declaration] = STATE(221), - [sym_author_declaration] = STATE(221), - [sym_package_include] = STATE(221), - [sym_class_include] = STATE(221), - [sym_latex_include] = STATE(221), - [sym_biblatex_include] = STATE(221), - [sym_bibtex_include] = STATE(221), - [sym_graphics_include] = STATE(221), - [sym_svg_include] = STATE(221), - [sym_inkscape_include] = STATE(221), - [sym_verbatim_include] = STATE(221), - [sym_import_include] = STATE(221), - [sym_caption] = STATE(221), - [sym_citation] = STATE(221), - [sym_label_definition] = STATE(221), - [sym_label_reference] = STATE(221), - [sym_label_reference_range] = STATE(221), - [sym_label_number] = STATE(221), - [sym_new_command_definition] = STATE(221), - [sym_old_command_definition] = STATE(221), - [sym_let_command_definition] = STATE(221), - [sym_math_delimiter] = STATE(221), - [sym_paired_delimiter_definition] = STATE(221), - [sym_environment_definition] = STATE(221), - [sym_glossary_entry_definition] = STATE(221), - [sym_glossary_entry_reference] = STATE(221), - [sym_acronym_definition] = STATE(221), - [sym_acronym_reference] = STATE(221), - [sym_theorem_definition] = STATE(221), - [sym_color_definition] = STATE(221), - [sym_color_set_definition] = STATE(221), - [sym_color_reference] = STATE(221), - [sym_tikz_library_import] = STATE(221), - [sym_text_mode] = STATE(221), - [aux_sym__section_repeat6] = STATE(768), - [aux_sym__section_repeat7] = STATE(767), - [aux_sym__section_repeat8] = STATE(766), - [aux_sym_part_repeat1] = STATE(221), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_RBRACK] = ACTIONS(2246), - [anon_sym_COMMA] = ACTIONS(2246), - [anon_sym_EQ] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2246), - [anon_sym_BSLASHpart] = ACTIONS(2216), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddpart] = ACTIONS(2216), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2218), - [anon_sym_BSLASHchapter] = ACTIONS(2216), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddchap] = ACTIONS(2216), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsection] = ACTIONS(2216), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHaddsec] = ACTIONS(2216), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsubsection] = ACTIONS(2216), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2216), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2218), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [225] = { - [sym_block_comment] = STATE(251), - [sym__flat_content] = STATE(251), - [sym__text_with_env_content] = STATE(251), - [sym__text_content] = STATE(251), - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(712), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(713), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(714), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(251), - [sym_comment_environment] = STATE(251), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(251), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(251), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(251), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(251), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(251), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_title_declaration] = STATE(251), - [sym_author_declaration] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_math_delimiter] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym__section_repeat6] = STATE(712), - [aux_sym__section_repeat7] = STATE(713), - [aux_sym__section_repeat8] = STATE(714), - [aux_sym_part_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2168), - [anon_sym_EQ] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [226] = { - [sym_block_comment] = STATE(247), - [sym__flat_content] = STATE(247), - [sym__text_with_env_content] = STATE(247), - [sym__text_content] = STATE(247), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(576), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(565), - [sym_curly_group] = STATE(247), - [sym_text] = STATE(247), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(247), - [sym_inline_formula] = STATE(247), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(247), - [sym_comment_environment] = STATE(247), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(247), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(247), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(247), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(247), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(247), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(247), - [sym_generic_command] = STATE(247), - [sym_title_declaration] = STATE(247), - [sym_author_declaration] = STATE(247), - [sym_package_include] = STATE(247), - [sym_class_include] = STATE(247), - [sym_latex_include] = STATE(247), - [sym_biblatex_include] = STATE(247), - [sym_bibtex_include] = STATE(247), - [sym_graphics_include] = STATE(247), - [sym_svg_include] = STATE(247), - [sym_inkscape_include] = STATE(247), - [sym_verbatim_include] = STATE(247), - [sym_import_include] = STATE(247), - [sym_caption] = STATE(247), - [sym_citation] = STATE(247), - [sym_label_definition] = STATE(247), - [sym_label_reference] = STATE(247), - [sym_label_reference_range] = STATE(247), - [sym_label_number] = STATE(247), - [sym_new_command_definition] = STATE(247), - [sym_old_command_definition] = STATE(247), - [sym_let_command_definition] = STATE(247), - [sym_math_delimiter] = STATE(247), - [sym_paired_delimiter_definition] = STATE(247), - [sym_environment_definition] = STATE(247), - [sym_glossary_entry_definition] = STATE(247), - [sym_glossary_entry_reference] = STATE(247), - [sym_acronym_definition] = STATE(247), - [sym_acronym_reference] = STATE(247), - [sym_theorem_definition] = STATE(247), - [sym_color_definition] = STATE(247), - [sym_color_set_definition] = STATE(247), - [sym_color_reference] = STATE(247), - [sym_tikz_library_import] = STATE(247), - [sym_text_mode] = STATE(247), - [aux_sym__section_repeat7] = STATE(576), - [aux_sym__section_repeat8] = STATE(565), - [aux_sym_part_repeat1] = STATE(247), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2232), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2148), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2232), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [227] = { - [sym_block_comment] = STATE(226), - [sym__flat_content] = STATE(226), - [sym__text_with_env_content] = STATE(226), - [sym__text_content] = STATE(226), - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(466), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(465), - [sym_curly_group] = STATE(226), - [sym_text] = STATE(226), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(226), - [sym_inline_formula] = STATE(226), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(226), - [sym_comment_environment] = STATE(226), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(226), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(226), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(226), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(226), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(226), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(226), - [sym_generic_command] = STATE(226), - [sym_title_declaration] = STATE(226), - [sym_author_declaration] = STATE(226), - [sym_package_include] = STATE(226), - [sym_class_include] = STATE(226), - [sym_latex_include] = STATE(226), - [sym_biblatex_include] = STATE(226), - [sym_bibtex_include] = STATE(226), - [sym_graphics_include] = STATE(226), - [sym_svg_include] = STATE(226), - [sym_inkscape_include] = STATE(226), - [sym_verbatim_include] = STATE(226), - [sym_import_include] = STATE(226), - [sym_caption] = STATE(226), - [sym_citation] = STATE(226), - [sym_label_definition] = STATE(226), - [sym_label_reference] = STATE(226), - [sym_label_reference_range] = STATE(226), - [sym_label_number] = STATE(226), - [sym_new_command_definition] = STATE(226), - [sym_old_command_definition] = STATE(226), - [sym_let_command_definition] = STATE(226), - [sym_math_delimiter] = STATE(226), - [sym_paired_delimiter_definition] = STATE(226), - [sym_environment_definition] = STATE(226), - [sym_glossary_entry_definition] = STATE(226), - [sym_glossary_entry_reference] = STATE(226), - [sym_acronym_definition] = STATE(226), - [sym_acronym_reference] = STATE(226), - [sym_theorem_definition] = STATE(226), - [sym_color_definition] = STATE(226), - [sym_color_set_definition] = STATE(226), - [sym_color_reference] = STATE(226), - [sym_tikz_library_import] = STATE(226), - [sym_text_mode] = STATE(226), - [aux_sym__section_repeat7] = STATE(466), - [aux_sym__section_repeat8] = STATE(465), - [aux_sym_part_repeat1] = STATE(226), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2240), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2248), - [anon_sym_RBRACK] = ACTIONS(2248), - [anon_sym_COMMA] = ACTIONS(2248), - [anon_sym_EQ] = ACTIONS(2248), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_RPAREN] = ACTIONS(2248), - [anon_sym_BSLASHpart] = ACTIONS(2238), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddpart] = ACTIONS(2238), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2240), - [anon_sym_BSLASHchapter] = ACTIONS(2238), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddchap] = ACTIONS(2238), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsection] = ACTIONS(2238), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddsec] = ACTIONS(2238), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubsection] = ACTIONS(2238), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2238), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHparagraph] = ACTIONS(2238), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2240), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [228] = { - [sym_block_comment] = STATE(229), - [sym__flat_content] = STATE(229), - [sym__text_with_env_content] = STATE(229), - [sym__text_content] = STATE(229), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(405), - [sym_curly_group] = STATE(229), - [sym_text] = STATE(229), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(229), - [sym_inline_formula] = STATE(229), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(229), - [sym_comment_environment] = STATE(229), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(229), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(229), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(229), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(229), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(229), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(229), - [sym_generic_command] = STATE(229), - [sym_title_declaration] = STATE(229), - [sym_author_declaration] = STATE(229), - [sym_package_include] = STATE(229), - [sym_class_include] = STATE(229), - [sym_latex_include] = STATE(229), - [sym_biblatex_include] = STATE(229), - [sym_bibtex_include] = STATE(229), - [sym_graphics_include] = STATE(229), - [sym_svg_include] = STATE(229), - [sym_inkscape_include] = STATE(229), - [sym_verbatim_include] = STATE(229), - [sym_import_include] = STATE(229), - [sym_caption] = STATE(229), - [sym_citation] = STATE(229), - [sym_label_definition] = STATE(229), - [sym_label_reference] = STATE(229), - [sym_label_reference_range] = STATE(229), - [sym_label_number] = STATE(229), - [sym_new_command_definition] = STATE(229), - [sym_old_command_definition] = STATE(229), - [sym_let_command_definition] = STATE(229), - [sym_math_delimiter] = STATE(229), - [sym_paired_delimiter_definition] = STATE(229), - [sym_environment_definition] = STATE(229), - [sym_glossary_entry_definition] = STATE(229), - [sym_glossary_entry_reference] = STATE(229), - [sym_acronym_definition] = STATE(229), - [sym_acronym_reference] = STATE(229), - [sym_theorem_definition] = STATE(229), - [sym_color_definition] = STATE(229), - [sym_color_set_definition] = STATE(229), - [sym_color_reference] = STATE(229), - [sym_tikz_library_import] = STATE(229), - [sym_text_mode] = STATE(229), - [aux_sym__section_repeat8] = STATE(405), - [aux_sym_part_repeat1] = STATE(229), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_RBRACK] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2250), - [anon_sym_EQ] = ACTIONS(2250), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_RPAREN] = ACTIONS(2250), - [anon_sym_BSLASHpart] = ACTIONS(2252), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddpart] = ACTIONS(2252), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2254), - [anon_sym_BSLASHchapter] = ACTIONS(2252), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddchap] = ACTIONS(2252), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsection] = ACTIONS(2252), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddsec] = ACTIONS(2252), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubsection] = ACTIONS(2252), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2252), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHparagraph] = ACTIONS(2252), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2252), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2254), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2252), - [anon_sym_BSLASHbigr] = ACTIONS(2252), - [anon_sym_BSLASHBigr] = ACTIONS(2252), - [anon_sym_BSLASHbiggr] = ACTIONS(2252), - [anon_sym_BSLASHBiggr] = ACTIONS(2252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [229] = { - [sym_block_comment] = STATE(240), - [sym__flat_content] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(423), - [sym_curly_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(240), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(240), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(240), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(240), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(240), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_title_declaration] = STATE(240), - [sym_author_declaration] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_math_delimiter] = STATE(240), - [sym_paired_delimiter_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_text_mode] = STATE(240), - [aux_sym__section_repeat8] = STATE(423), - [aux_sym_part_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_RBRACK] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2136), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_BSLASHpart] = ACTIONS(2256), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddpart] = ACTIONS(2256), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHchapter] = ACTIONS(2256), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddchap] = ACTIONS(2256), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsection] = ACTIONS(2256), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddsec] = ACTIONS(2256), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHparagraph] = ACTIONS(2256), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2256), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2256), - [anon_sym_BSLASHbigr] = ACTIONS(2256), - [anon_sym_BSLASHBigr] = ACTIONS(2256), - [anon_sym_BSLASHbiggr] = ACTIONS(2256), - [anon_sym_BSLASHBiggr] = ACTIONS(2256), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [230] = { - [sym_block_comment] = STATE(235), - [sym__flat_content] = STATE(235), - [sym__text_with_env_content] = STATE(235), - [sym__text_content] = STATE(235), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(655), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(654), - [sym_curly_group] = STATE(235), - [sym_text] = STATE(235), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(235), - [sym_inline_formula] = STATE(235), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(235), - [sym_comment_environment] = STATE(235), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(235), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(235), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(235), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(235), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(235), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(235), - [sym_generic_command] = STATE(235), - [sym_title_declaration] = STATE(235), - [sym_author_declaration] = STATE(235), - [sym_package_include] = STATE(235), - [sym_class_include] = STATE(235), - [sym_latex_include] = STATE(235), - [sym_biblatex_include] = STATE(235), - [sym_bibtex_include] = STATE(235), - [sym_graphics_include] = STATE(235), - [sym_svg_include] = STATE(235), - [sym_inkscape_include] = STATE(235), - [sym_verbatim_include] = STATE(235), - [sym_import_include] = STATE(235), - [sym_caption] = STATE(235), - [sym_citation] = STATE(235), - [sym_label_definition] = STATE(235), - [sym_label_reference] = STATE(235), - [sym_label_reference_range] = STATE(235), - [sym_label_number] = STATE(235), - [sym_new_command_definition] = STATE(235), - [sym_old_command_definition] = STATE(235), - [sym_let_command_definition] = STATE(235), - [sym_math_delimiter] = STATE(235), - [sym_paired_delimiter_definition] = STATE(235), - [sym_environment_definition] = STATE(235), - [sym_glossary_entry_definition] = STATE(235), - [sym_glossary_entry_reference] = STATE(235), - [sym_acronym_definition] = STATE(235), - [sym_acronym_reference] = STATE(235), - [sym_theorem_definition] = STATE(235), - [sym_color_definition] = STATE(235), - [sym_color_set_definition] = STATE(235), - [sym_color_reference] = STATE(235), - [sym_tikz_library_import] = STATE(235), - [sym_text_mode] = STATE(235), - [aux_sym__section_repeat7] = STATE(655), - [aux_sym__section_repeat8] = STATE(654), - [aux_sym_part_repeat1] = STATE(235), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_RBRACK] = ACTIONS(2260), - [anon_sym_COMMA] = ACTIONS(2260), - [anon_sym_EQ] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2260), - [anon_sym_RPAREN] = ACTIONS(2260), - [anon_sym_BSLASHpart] = ACTIONS(2238), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddpart] = ACTIONS(2238), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2240), - [anon_sym_BSLASHchapter] = ACTIONS(2238), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddchap] = ACTIONS(2238), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsection] = ACTIONS(2238), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddsec] = ACTIONS(2238), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubsection] = ACTIONS(2238), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2238), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHparagraph] = ACTIONS(2238), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2238), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [231] = { - [sym_block_comment] = STATE(258), - [sym__flat_content] = STATE(258), - [sym__text_with_env_content] = STATE(258), - [sym__text_content] = STATE(258), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(877), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(878), - [sym_curly_group] = STATE(258), - [sym_text] = STATE(258), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(258), - [sym_inline_formula] = STATE(258), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(258), - [sym_comment_environment] = STATE(258), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(258), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(258), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(258), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(258), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(258), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(258), - [sym_generic_command] = STATE(258), - [sym_title_declaration] = STATE(258), - [sym_author_declaration] = STATE(258), - [sym_package_include] = STATE(258), - [sym_class_include] = STATE(258), - [sym_latex_include] = STATE(258), - [sym_biblatex_include] = STATE(258), - [sym_bibtex_include] = STATE(258), - [sym_graphics_include] = STATE(258), - [sym_svg_include] = STATE(258), - [sym_inkscape_include] = STATE(258), - [sym_verbatim_include] = STATE(258), - [sym_import_include] = STATE(258), - [sym_caption] = STATE(258), - [sym_citation] = STATE(258), - [sym_label_definition] = STATE(258), - [sym_label_reference] = STATE(258), - [sym_label_reference_range] = STATE(258), - [sym_label_number] = STATE(258), - [sym_new_command_definition] = STATE(258), - [sym_old_command_definition] = STATE(258), - [sym_let_command_definition] = STATE(258), - [sym_math_delimiter] = STATE(258), - [sym_paired_delimiter_definition] = STATE(258), - [sym_environment_definition] = STATE(258), - [sym_glossary_entry_definition] = STATE(258), - [sym_glossary_entry_reference] = STATE(258), - [sym_acronym_definition] = STATE(258), - [sym_acronym_reference] = STATE(258), - [sym_theorem_definition] = STATE(258), - [sym_color_definition] = STATE(258), - [sym_color_set_definition] = STATE(258), - [sym_color_reference] = STATE(258), - [sym_tikz_library_import] = STATE(258), - [sym_text_mode] = STATE(258), - [aux_sym__section_repeat7] = STATE(877), - [aux_sym__section_repeat8] = STATE(878), - [aux_sym_part_repeat1] = STATE(258), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_RBRACK] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [232] = { - [sym_block_comment] = STATE(252), - [sym__flat_content] = STATE(252), - [sym__text_with_env_content] = STATE(252), - [sym__text_content] = STATE(252), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(719), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(718), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(252), - [sym_comment_environment] = STATE(252), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(252), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(252), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(252), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(252), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(252), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_title_declaration] = STATE(252), - [sym_author_declaration] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_math_delimiter] = STATE(252), - [sym_paired_delimiter_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [sym_text_mode] = STATE(252), - [aux_sym__section_repeat7] = STATE(719), - [aux_sym__section_repeat8] = STATE(718), - [aux_sym_part_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_RBRACK] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_EQ] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [233] = { - [sym_block_comment] = STATE(232), - [sym__flat_content] = STATE(232), - [sym__text_with_env_content] = STATE(232), - [sym__text_content] = STATE(232), - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(765), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(756), - [sym_curly_group] = STATE(232), - [sym_text] = STATE(232), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(232), - [sym_inline_formula] = STATE(232), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(232), - [sym_comment_environment] = STATE(232), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(232), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(232), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(232), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(232), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(232), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(232), - [sym_generic_command] = STATE(232), - [sym_title_declaration] = STATE(232), - [sym_author_declaration] = STATE(232), - [sym_package_include] = STATE(232), - [sym_class_include] = STATE(232), - [sym_latex_include] = STATE(232), - [sym_biblatex_include] = STATE(232), - [sym_bibtex_include] = STATE(232), - [sym_graphics_include] = STATE(232), - [sym_svg_include] = STATE(232), - [sym_inkscape_include] = STATE(232), - [sym_verbatim_include] = STATE(232), - [sym_import_include] = STATE(232), - [sym_caption] = STATE(232), - [sym_citation] = STATE(232), - [sym_label_definition] = STATE(232), - [sym_label_reference] = STATE(232), - [sym_label_reference_range] = STATE(232), - [sym_label_number] = STATE(232), - [sym_new_command_definition] = STATE(232), - [sym_old_command_definition] = STATE(232), - [sym_let_command_definition] = STATE(232), - [sym_math_delimiter] = STATE(232), - [sym_paired_delimiter_definition] = STATE(232), - [sym_environment_definition] = STATE(232), - [sym_glossary_entry_definition] = STATE(232), - [sym_glossary_entry_reference] = STATE(232), - [sym_acronym_definition] = STATE(232), - [sym_acronym_reference] = STATE(232), - [sym_theorem_definition] = STATE(232), - [sym_color_definition] = STATE(232), - [sym_color_set_definition] = STATE(232), - [sym_color_reference] = STATE(232), - [sym_tikz_library_import] = STATE(232), - [sym_text_mode] = STATE(232), - [aux_sym__section_repeat7] = STATE(765), - [aux_sym__section_repeat8] = STATE(756), - [aux_sym_part_repeat1] = STATE(232), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_RBRACK] = ACTIONS(2262), - [anon_sym_COMMA] = ACTIONS(2262), - [anon_sym_EQ] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_RPAREN] = ACTIONS(2262), - [anon_sym_BSLASHpart] = ACTIONS(2238), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddpart] = ACTIONS(2238), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2240), - [anon_sym_BSLASHchapter] = ACTIONS(2238), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddchap] = ACTIONS(2238), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsection] = ACTIONS(2238), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddsec] = ACTIONS(2238), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubsection] = ACTIONS(2238), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2238), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHparagraph] = ACTIONS(2238), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2240), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [234] = { - [sym_block_comment] = STATE(231), - [sym__flat_content] = STATE(231), - [sym__text_with_env_content] = STATE(231), - [sym__text_content] = STATE(231), - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(802), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(803), - [sym_curly_group] = STATE(231), - [sym_text] = STATE(231), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(231), - [sym_inline_formula] = STATE(231), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(231), - [sym_comment_environment] = STATE(231), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(231), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(231), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(231), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(231), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(231), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(231), - [sym_generic_command] = STATE(231), - [sym_title_declaration] = STATE(231), - [sym_author_declaration] = STATE(231), - [sym_package_include] = STATE(231), - [sym_class_include] = STATE(231), - [sym_latex_include] = STATE(231), - [sym_biblatex_include] = STATE(231), - [sym_bibtex_include] = STATE(231), - [sym_graphics_include] = STATE(231), - [sym_svg_include] = STATE(231), - [sym_inkscape_include] = STATE(231), - [sym_verbatim_include] = STATE(231), - [sym_import_include] = STATE(231), - [sym_caption] = STATE(231), - [sym_citation] = STATE(231), - [sym_label_definition] = STATE(231), - [sym_label_reference] = STATE(231), - [sym_label_reference_range] = STATE(231), - [sym_label_number] = STATE(231), - [sym_new_command_definition] = STATE(231), - [sym_old_command_definition] = STATE(231), - [sym_let_command_definition] = STATE(231), - [sym_math_delimiter] = STATE(231), - [sym_paired_delimiter_definition] = STATE(231), - [sym_environment_definition] = STATE(231), - [sym_glossary_entry_definition] = STATE(231), - [sym_glossary_entry_reference] = STATE(231), - [sym_acronym_definition] = STATE(231), - [sym_acronym_reference] = STATE(231), - [sym_theorem_definition] = STATE(231), - [sym_color_definition] = STATE(231), - [sym_color_set_definition] = STATE(231), - [sym_color_reference] = STATE(231), - [sym_tikz_library_import] = STATE(231), - [sym_text_mode] = STATE(231), - [aux_sym__section_repeat7] = STATE(802), - [aux_sym__section_repeat8] = STATE(803), - [aux_sym_part_repeat1] = STATE(231), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_RBRACK] = ACTIONS(2264), - [anon_sym_COMMA] = ACTIONS(2264), - [anon_sym_EQ] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_RPAREN] = ACTIONS(2264), - [anon_sym_BSLASHpart] = ACTIONS(2238), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddpart] = ACTIONS(2238), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2240), - [anon_sym_BSLASHchapter] = ACTIONS(2238), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddchap] = ACTIONS(2238), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsection] = ACTIONS(2238), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHaddsec] = ACTIONS(2238), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubsection] = ACTIONS(2238), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2238), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2240), - [anon_sym_BSLASHparagraph] = ACTIONS(2238), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2240), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2240), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [235] = { - [sym_block_comment] = STATE(251), - [sym__flat_content] = STATE(251), - [sym__text_with_env_content] = STATE(251), - [sym__text_content] = STATE(251), - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(715), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(716), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(251), - [sym_comment_environment] = STATE(251), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(251), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(251), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(251), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(251), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(251), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_title_declaration] = STATE(251), - [sym_author_declaration] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_math_delimiter] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym__section_repeat7] = STATE(715), - [aux_sym__section_repeat8] = STATE(716), - [aux_sym_part_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2168), - [anon_sym_EQ] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2230), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [236] = { - [sym_block_comment] = STATE(240), - [sym__flat_content] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym_curly_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(240), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(240), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(240), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(240), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(240), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_title_declaration] = STATE(240), - [sym_author_declaration] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_math_delimiter] = STATE(240), - [sym_paired_delimiter_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_text_mode] = STATE(240), - [aux_sym_part_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2136), - [anon_sym_RBRACK] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2136), - [anon_sym_EQ] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_BSLASHpart] = ACTIONS(2266), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddpart] = ACTIONS(2266), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2268), - [anon_sym_BSLASHchapter] = ACTIONS(2266), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddchap] = ACTIONS(2266), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsection] = ACTIONS(2266), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddsec] = ACTIONS(2266), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubsection] = ACTIONS(2266), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2266), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHparagraph] = ACTIONS(2266), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2266), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2268), - [anon_sym_BSLASHitem] = ACTIONS(2266), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2266), - [anon_sym_BSLASHbigr] = ACTIONS(2266), - [anon_sym_BSLASHBigr] = ACTIONS(2266), - [anon_sym_BSLASHbiggr] = ACTIONS(2266), - [anon_sym_BSLASHBiggr] = ACTIONS(2266), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [237] = { - [sym_block_comment] = STATE(239), - [sym__flat_content] = STATE(239), - [sym__text_with_env_content] = STATE(239), - [sym__text_content] = STATE(239), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(464), - [sym_curly_group] = STATE(239), - [sym_text] = STATE(239), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(239), - [sym_inline_formula] = STATE(239), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(239), - [sym_comment_environment] = STATE(239), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(239), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(239), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(239), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(239), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(239), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(239), - [sym_generic_command] = STATE(239), - [sym_title_declaration] = STATE(239), - [sym_author_declaration] = STATE(239), - [sym_package_include] = STATE(239), - [sym_class_include] = STATE(239), - [sym_latex_include] = STATE(239), - [sym_biblatex_include] = STATE(239), - [sym_bibtex_include] = STATE(239), - [sym_graphics_include] = STATE(239), - [sym_svg_include] = STATE(239), - [sym_inkscape_include] = STATE(239), - [sym_verbatim_include] = STATE(239), - [sym_import_include] = STATE(239), - [sym_caption] = STATE(239), - [sym_citation] = STATE(239), - [sym_label_definition] = STATE(239), - [sym_label_reference] = STATE(239), - [sym_label_reference_range] = STATE(239), - [sym_label_number] = STATE(239), - [sym_new_command_definition] = STATE(239), - [sym_old_command_definition] = STATE(239), - [sym_let_command_definition] = STATE(239), - [sym_math_delimiter] = STATE(239), - [sym_paired_delimiter_definition] = STATE(239), - [sym_environment_definition] = STATE(239), - [sym_glossary_entry_definition] = STATE(239), - [sym_glossary_entry_reference] = STATE(239), - [sym_acronym_definition] = STATE(239), - [sym_acronym_reference] = STATE(239), - [sym_theorem_definition] = STATE(239), - [sym_color_definition] = STATE(239), - [sym_color_set_definition] = STATE(239), - [sym_color_reference] = STATE(239), - [sym_tikz_library_import] = STATE(239), - [sym_text_mode] = STATE(239), - [aux_sym__section_repeat8] = STATE(464), - [aux_sym_part_repeat1] = STATE(239), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2254), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_RBRACK] = ACTIONS(2270), - [anon_sym_COMMA] = ACTIONS(2270), - [anon_sym_EQ] = ACTIONS(2270), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_RPAREN] = ACTIONS(2270), - [anon_sym_BSLASHpart] = ACTIONS(2252), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddpart] = ACTIONS(2252), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2254), - [anon_sym_BSLASHchapter] = ACTIONS(2252), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddchap] = ACTIONS(2252), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsection] = ACTIONS(2252), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddsec] = ACTIONS(2252), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubsection] = ACTIONS(2252), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2252), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHparagraph] = ACTIONS(2252), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2252), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2254), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2254), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [238] = { - [sym_block_comment] = STATE(236), - [sym__flat_content] = STATE(236), - [sym__text_with_env_content] = STATE(236), - [sym__text_content] = STATE(236), - [sym_curly_group] = STATE(236), - [sym_text] = STATE(236), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(236), - [sym_inline_formula] = STATE(236), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(236), - [sym_comment_environment] = STATE(236), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(236), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(236), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(236), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(236), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(236), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(236), - [sym_generic_command] = STATE(236), - [sym_title_declaration] = STATE(236), - [sym_author_declaration] = STATE(236), - [sym_package_include] = STATE(236), - [sym_class_include] = STATE(236), - [sym_latex_include] = STATE(236), - [sym_biblatex_include] = STATE(236), - [sym_bibtex_include] = STATE(236), - [sym_graphics_include] = STATE(236), - [sym_svg_include] = STATE(236), - [sym_inkscape_include] = STATE(236), - [sym_verbatim_include] = STATE(236), - [sym_import_include] = STATE(236), - [sym_caption] = STATE(236), - [sym_citation] = STATE(236), - [sym_label_definition] = STATE(236), - [sym_label_reference] = STATE(236), - [sym_label_reference_range] = STATE(236), - [sym_label_number] = STATE(236), - [sym_new_command_definition] = STATE(236), - [sym_old_command_definition] = STATE(236), - [sym_let_command_definition] = STATE(236), - [sym_math_delimiter] = STATE(236), - [sym_paired_delimiter_definition] = STATE(236), - [sym_environment_definition] = STATE(236), - [sym_glossary_entry_definition] = STATE(236), - [sym_glossary_entry_reference] = STATE(236), - [sym_acronym_definition] = STATE(236), - [sym_acronym_reference] = STATE(236), - [sym_theorem_definition] = STATE(236), - [sym_color_definition] = STATE(236), - [sym_color_set_definition] = STATE(236), - [sym_color_reference] = STATE(236), - [sym_tikz_library_import] = STATE(236), - [sym_text_mode] = STATE(236), - [aux_sym_part_repeat1] = STATE(236), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_RBRACK] = ACTIONS(2272), - [anon_sym_COMMA] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_RPAREN] = ACTIONS(2272), - [anon_sym_BSLASHpart] = ACTIONS(2274), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddpart] = ACTIONS(2274), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2276), - [anon_sym_BSLASHchapter] = ACTIONS(2274), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddchap] = ACTIONS(2274), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsection] = ACTIONS(2274), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddsec] = ACTIONS(2274), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubsection] = ACTIONS(2274), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2274), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHparagraph] = ACTIONS(2274), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2274), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2276), - [anon_sym_BSLASHitem] = ACTIONS(2274), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(229), - [anon_sym_DOLLAR] = ACTIONS(231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(233), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(285), - [anon_sym_BSLASHbig] = ACTIONS(285), - [anon_sym_BSLASHBig] = ACTIONS(285), - [anon_sym_BSLASHbigg] = ACTIONS(285), - [anon_sym_BSLASHBigg] = ACTIONS(285), - [anon_sym_BSLASHbigl] = ACTIONS(285), - [anon_sym_BSLASHBigl] = ACTIONS(285), - [anon_sym_BSLASHbiggl] = ACTIONS(285), - [anon_sym_BSLASHBiggl] = ACTIONS(285), - [anon_sym_BSLASHright] = ACTIONS(2274), - [anon_sym_BSLASHbigr] = ACTIONS(2274), - [anon_sym_BSLASHBigr] = ACTIONS(2274), - [anon_sym_BSLASHbiggr] = ACTIONS(2274), - [anon_sym_BSLASHBiggr] = ACTIONS(2274), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(315), - [anon_sym_BSLASHintertext] = ACTIONS(315), - [anon_sym_shortintertext] = ACTIONS(315), - }, - [239] = { - [sym_block_comment] = STATE(247), - [sym__flat_content] = STATE(247), - [sym__text_with_env_content] = STATE(247), - [sym__text_content] = STATE(247), - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(564), - [sym_curly_group] = STATE(247), - [sym_text] = STATE(247), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(247), - [sym_inline_formula] = STATE(247), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(247), - [sym_comment_environment] = STATE(247), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(247), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(247), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(247), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(247), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(247), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(247), - [sym_generic_command] = STATE(247), - [sym_title_declaration] = STATE(247), - [sym_author_declaration] = STATE(247), - [sym_package_include] = STATE(247), - [sym_class_include] = STATE(247), - [sym_latex_include] = STATE(247), - [sym_biblatex_include] = STATE(247), - [sym_bibtex_include] = STATE(247), - [sym_graphics_include] = STATE(247), - [sym_svg_include] = STATE(247), - [sym_inkscape_include] = STATE(247), - [sym_verbatim_include] = STATE(247), - [sym_import_include] = STATE(247), - [sym_caption] = STATE(247), - [sym_citation] = STATE(247), - [sym_label_definition] = STATE(247), - [sym_label_reference] = STATE(247), - [sym_label_reference_range] = STATE(247), - [sym_label_number] = STATE(247), - [sym_new_command_definition] = STATE(247), - [sym_old_command_definition] = STATE(247), - [sym_let_command_definition] = STATE(247), - [sym_math_delimiter] = STATE(247), - [sym_paired_delimiter_definition] = STATE(247), - [sym_environment_definition] = STATE(247), - [sym_glossary_entry_definition] = STATE(247), - [sym_glossary_entry_reference] = STATE(247), - [sym_acronym_definition] = STATE(247), - [sym_acronym_reference] = STATE(247), - [sym_theorem_definition] = STATE(247), - [sym_color_definition] = STATE(247), - [sym_color_set_definition] = STATE(247), - [sym_color_reference] = STATE(247), - [sym_tikz_library_import] = STATE(247), - [sym_text_mode] = STATE(247), - [aux_sym__section_repeat8] = STATE(564), - [aux_sym_part_repeat1] = STATE(247), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2258), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2148), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_BSLASHpart] = ACTIONS(2256), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddpart] = ACTIONS(2256), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHchapter] = ACTIONS(2256), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddchap] = ACTIONS(2256), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsection] = ACTIONS(2256), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddsec] = ACTIONS(2256), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHparagraph] = ACTIONS(2256), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2256), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2258), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [240] = { - [sym_block_comment] = STATE(240), - [sym__flat_content] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym_curly_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_begin] = STATE(65), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__comment_environment_begin] = STATE(3120), - [sym_verbatim_environment] = STATE(240), - [sym__verbatim_environment_begin] = STATE(3121), - [sym_listing_environment] = STATE(240), - [sym__listing_environment_begin] = STATE(3122), - [sym_minted_environment] = STATE(240), - [sym__minted_environment_begin] = STATE(3123), - [sym_pycode_environment] = STATE(240), - [sym__pycode_environment_begin] = STATE(3124), - [sym_math_environment] = STATE(240), - [sym__math_environment_begin] = STATE(269), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_title_declaration] = STATE(240), - [sym_author_declaration] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_math_delimiter] = STATE(240), - [sym_paired_delimiter_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_text_mode] = STATE(240), - [aux_sym_part_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(259), - [sym_command_name] = ACTIONS(2278), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_RBRACK] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2284), - [anon_sym_EQ] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_RPAREN] = ACTIONS(2284), - [anon_sym_BSLASHpart] = ACTIONS(2287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddpart] = ACTIONS(2287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2289), - [anon_sym_BSLASHchapter] = ACTIONS(2287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddchap] = ACTIONS(2287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsection] = ACTIONS(2287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddsec] = ACTIONS(2287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubsection] = ACTIONS(2287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHparagraph] = ACTIONS(2287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2289), - [anon_sym_BSLASHitem] = ACTIONS(2287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2291), - [sym_word] = ACTIONS(2294), - [sym_placeholder] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2303), - [anon_sym_GT] = ACTIONS(2303), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_PIPE] = ACTIONS(2303), - [anon_sym_COLON] = ACTIONS(2303), - [anon_sym_SQUOTE] = ACTIONS(2303), - [anon_sym__] = ACTIONS(2306), - [anon_sym_CARET] = ACTIONS(2309), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2312), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2312), - [anon_sym_DOLLAR] = ACTIONS(2315), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2318), - [anon_sym_BSLASHbegin] = ACTIONS(2321), - [anon_sym_BSLASHtitle] = ACTIONS(2324), - [anon_sym_BSLASHauthor] = ACTIONS(2327), - [anon_sym_BSLASHusepackage] = ACTIONS(2330), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2330), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2333), - [anon_sym_BSLASHinclude] = ACTIONS(2336), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2336), - [anon_sym_BSLASHinput] = ACTIONS(2336), - [anon_sym_BSLASHsubfile] = ACTIONS(2336), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2339), - [anon_sym_BSLASHbibliography] = ACTIONS(2342), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2345), - [anon_sym_BSLASHincludesvg] = ACTIONS(2348), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2351), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2354), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2354), - [anon_sym_BSLASHimport] = ACTIONS(2357), - [anon_sym_BSLASHsubimport] = ACTIONS(2357), - [anon_sym_BSLASHinputfrom] = ACTIONS(2357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2357), - [anon_sym_BSLASHincludefrom] = ACTIONS(2357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2357), - [anon_sym_BSLASHcaption] = ACTIONS(2360), - [anon_sym_BSLASHcite] = ACTIONS(2363), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2366), - [anon_sym_BSLASHCite] = ACTIONS(2363), - [anon_sym_BSLASHnocite] = ACTIONS(2363), - [anon_sym_BSLASHcitet] = ACTIONS(2363), - [anon_sym_BSLASHcitep] = ACTIONS(2363), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2366), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2366), - [anon_sym_BSLASHciteauthor] = ACTIONS(2363), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2366), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2363), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2366), - [anon_sym_BSLASHcitetitle] = ACTIONS(2363), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2366), - [anon_sym_BSLASHciteyear] = ACTIONS(2363), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2366), - [anon_sym_BSLASHcitedate] = ACTIONS(2363), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2366), - [anon_sym_BSLASHciteurl] = ACTIONS(2363), - [anon_sym_BSLASHfullcite] = ACTIONS(2363), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2363), - [anon_sym_BSLASHcitealt] = ACTIONS(2363), - [anon_sym_BSLASHcitealp] = ACTIONS(2363), - [anon_sym_BSLASHcitetext] = ACTIONS(2363), - [anon_sym_BSLASHparencite] = ACTIONS(2363), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2366), - [anon_sym_BSLASHParencite] = ACTIONS(2363), - [anon_sym_BSLASHfootcite] = ACTIONS(2363), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2363), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2363), - [anon_sym_BSLASHtextcite] = ACTIONS(2363), - [anon_sym_BSLASHTextcite] = ACTIONS(2363), - [anon_sym_BSLASHsmartcite] = ACTIONS(2363), - [anon_sym_BSLASHSmartcite] = ACTIONS(2363), - [anon_sym_BSLASHsupercite] = ACTIONS(2363), - [anon_sym_BSLASHautocite] = ACTIONS(2363), - [anon_sym_BSLASHAutocite] = ACTIONS(2363), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2366), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2366), - [anon_sym_BSLASHvolcite] = ACTIONS(2363), - [anon_sym_BSLASHVolcite] = ACTIONS(2363), - [anon_sym_BSLASHpvolcite] = ACTIONS(2363), - [anon_sym_BSLASHPvolcite] = ACTIONS(2363), - [anon_sym_BSLASHfvolcite] = ACTIONS(2363), - [anon_sym_BSLASHftvolcite] = ACTIONS(2363), - [anon_sym_BSLASHsvolcite] = ACTIONS(2363), - [anon_sym_BSLASHSvolcite] = ACTIONS(2363), - [anon_sym_BSLASHtvolcite] = ACTIONS(2363), - [anon_sym_BSLASHTvolcite] = ACTIONS(2363), - [anon_sym_BSLASHavolcite] = ACTIONS(2363), - [anon_sym_BSLASHAvolcite] = ACTIONS(2363), - [anon_sym_BSLASHnotecite] = ACTIONS(2363), - [anon_sym_BSLASHNotecite] = ACTIONS(2363), - [anon_sym_BSLASHpnotecite] = ACTIONS(2363), - [anon_sym_BSLASHPnotecite] = ACTIONS(2363), - [anon_sym_BSLASHfnotecite] = ACTIONS(2363), - [anon_sym_BSLASHlabel] = ACTIONS(2369), - [anon_sym_BSLASHref] = ACTIONS(2372), - [anon_sym_BSLASHeqref] = ACTIONS(2372), - [anon_sym_BSLASHvref] = ACTIONS(2372), - [anon_sym_BSLASHVref] = ACTIONS(2372), - [anon_sym_BSLASHautoref] = ACTIONS(2372), - [anon_sym_BSLASHpageref] = ACTIONS(2372), - [anon_sym_BSLASHcref] = ACTIONS(2372), - [anon_sym_BSLASHCref] = ACTIONS(2372), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2375), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2375), - [anon_sym_BSLASHnamecref] = ACTIONS(2372), - [anon_sym_BSLASHnameCref] = ACTIONS(2372), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2372), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2372), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2372), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2372), - [anon_sym_BSLASHlabelcref] = ACTIONS(2372), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2372), - [anon_sym_BSLASHcrefrange] = ACTIONS(2378), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2381), - [anon_sym_BSLASHCrefrange] = ACTIONS(2378), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2381), - [anon_sym_BSLASHnewlabel] = ACTIONS(2384), - [anon_sym_BSLASHnewcommand] = ACTIONS(2387), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2390), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2387), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2390), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2387), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2390), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2387), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2390), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2387), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2387), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2387), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2387), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2387), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2387), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2387), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2387), - [anon_sym_BSLASHdef] = ACTIONS(2393), - [anon_sym_BSLASHlet] = ACTIONS(2396), - [anon_sym_BSLASHleft] = ACTIONS(2399), - [anon_sym_BSLASHbig] = ACTIONS(2399), - [anon_sym_BSLASHBig] = ACTIONS(2399), - [anon_sym_BSLASHbigg] = ACTIONS(2399), - [anon_sym_BSLASHBigg] = ACTIONS(2399), - [anon_sym_BSLASHbigl] = ACTIONS(2399), - [anon_sym_BSLASHBigl] = ACTIONS(2399), - [anon_sym_BSLASHbiggl] = ACTIONS(2399), - [anon_sym_BSLASHBiggl] = ACTIONS(2399), - [anon_sym_BSLASHright] = ACTIONS(2287), - [anon_sym_BSLASHbigr] = ACTIONS(2287), - [anon_sym_BSLASHBigr] = ACTIONS(2287), - [anon_sym_BSLASHbiggr] = ACTIONS(2287), - [anon_sym_BSLASHBiggr] = ACTIONS(2287), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2402), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2402), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2405), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2405), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2405), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2405), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2405), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2405), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2408), - [anon_sym_BSLASHgls] = ACTIONS(2411), - [anon_sym_BSLASHGls] = ACTIONS(2411), - [anon_sym_BSLASHGLS] = ACTIONS(2411), - [anon_sym_BSLASHglspl] = ACTIONS(2411), - [anon_sym_BSLASHGlspl] = ACTIONS(2411), - [anon_sym_BSLASHGLSpl] = ACTIONS(2411), - [anon_sym_BSLASHglsdisp] = ACTIONS(2411), - [anon_sym_BSLASHglslink] = ACTIONS(2411), - [anon_sym_BSLASHglstext] = ACTIONS(2411), - [anon_sym_BSLASHGlstext] = ACTIONS(2411), - [anon_sym_BSLASHGLStext] = ACTIONS(2411), - [anon_sym_BSLASHglsfirst] = ACTIONS(2411), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2411), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2411), - [anon_sym_BSLASHglsplural] = ACTIONS(2411), - [anon_sym_BSLASHGlsplural] = ACTIONS(2411), - [anon_sym_BSLASHGLSplural] = ACTIONS(2411), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2411), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2411), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2411), - [anon_sym_BSLASHglsname] = ACTIONS(2411), - [anon_sym_BSLASHGlsname] = ACTIONS(2411), - [anon_sym_BSLASHGLSname] = ACTIONS(2411), - [anon_sym_BSLASHglssymbol] = ACTIONS(2411), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2411), - [anon_sym_BSLASHglsdesc] = ACTIONS(2411), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2411), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2411), - [anon_sym_BSLASHglsuseri] = ACTIONS(2411), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2411), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2411), - [anon_sym_BSLASHglsuserii] = ACTIONS(2411), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2411), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2411), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2411), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2411), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2411), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2411), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2411), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2411), - [anon_sym_BSLASHglsuserv] = ACTIONS(2411), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2411), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2411), - [anon_sym_BSLASHglsuservi] = ACTIONS(2411), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2411), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2411), - [anon_sym_BSLASHnewacronym] = ACTIONS(2414), - [anon_sym_BSLASHacrshort] = ACTIONS(2417), - [anon_sym_BSLASHAcrshort] = ACTIONS(2417), - [anon_sym_BSLASHACRshort] = ACTIONS(2417), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2417), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2417), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2417), - [anon_sym_BSLASHacrlong] = ACTIONS(2417), - [anon_sym_BSLASHAcrlong] = ACTIONS(2417), - [anon_sym_BSLASHACRlong] = ACTIONS(2417), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2417), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2417), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2417), - [anon_sym_BSLASHacrfull] = ACTIONS(2417), - [anon_sym_BSLASHAcrfull] = ACTIONS(2417), - [anon_sym_BSLASHACRfull] = ACTIONS(2417), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2417), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2417), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2417), - [anon_sym_BSLASHacs] = ACTIONS(2417), - [anon_sym_BSLASHAcs] = ACTIONS(2417), - [anon_sym_BSLASHacsp] = ACTIONS(2417), - [anon_sym_BSLASHAcsp] = ACTIONS(2417), - [anon_sym_BSLASHacl] = ACTIONS(2417), - [anon_sym_BSLASHAcl] = ACTIONS(2417), - [anon_sym_BSLASHaclp] = ACTIONS(2417), - [anon_sym_BSLASHAclp] = ACTIONS(2417), - [anon_sym_BSLASHacf] = ACTIONS(2417), - [anon_sym_BSLASHAcf] = ACTIONS(2417), - [anon_sym_BSLASHacfp] = ACTIONS(2417), - [anon_sym_BSLASHAcfp] = ACTIONS(2417), - [anon_sym_BSLASHac] = ACTIONS(2417), - [anon_sym_BSLASHAc] = ACTIONS(2417), - [anon_sym_BSLASHacp] = ACTIONS(2417), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2417), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2417), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2417), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2417), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2417), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2417), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2417), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2417), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2417), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2417), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2420), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2420), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2426), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2429), - [anon_sym_BSLASHcolor] = ACTIONS(2432), - [anon_sym_BSLASHcolorbox] = ACTIONS(2432), - [anon_sym_BSLASHtextcolor] = ACTIONS(2432), - [anon_sym_BSLASHpagecolor] = ACTIONS(2432), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2435), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2435), - [anon_sym_BSLASHtext] = ACTIONS(2438), - [anon_sym_BSLASHintertext] = ACTIONS(2438), - [anon_sym_shortintertext] = ACTIONS(2438), - }, - [241] = { - [sym_block_comment] = STATE(242), - [sym__flat_content] = STATE(242), - [sym__text_with_env_content] = STATE(242), - [sym__text_content] = STATE(242), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(805), - [sym_curly_group] = STATE(242), - [sym_text] = STATE(242), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(242), - [sym_inline_formula] = STATE(242), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(242), - [sym_comment_environment] = STATE(242), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(242), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(242), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(242), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(242), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(242), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(242), - [sym_generic_command] = STATE(242), - [sym_title_declaration] = STATE(242), - [sym_author_declaration] = STATE(242), - [sym_package_include] = STATE(242), - [sym_class_include] = STATE(242), - [sym_latex_include] = STATE(242), - [sym_biblatex_include] = STATE(242), - [sym_bibtex_include] = STATE(242), - [sym_graphics_include] = STATE(242), - [sym_svg_include] = STATE(242), - [sym_inkscape_include] = STATE(242), - [sym_verbatim_include] = STATE(242), - [sym_import_include] = STATE(242), - [sym_caption] = STATE(242), - [sym_citation] = STATE(242), - [sym_label_definition] = STATE(242), - [sym_label_reference] = STATE(242), - [sym_label_reference_range] = STATE(242), - [sym_label_number] = STATE(242), - [sym_new_command_definition] = STATE(242), - [sym_old_command_definition] = STATE(242), - [sym_let_command_definition] = STATE(242), - [sym_math_delimiter] = STATE(242), - [sym_paired_delimiter_definition] = STATE(242), - [sym_environment_definition] = STATE(242), - [sym_glossary_entry_definition] = STATE(242), - [sym_glossary_entry_reference] = STATE(242), - [sym_acronym_definition] = STATE(242), - [sym_acronym_reference] = STATE(242), - [sym_theorem_definition] = STATE(242), - [sym_color_definition] = STATE(242), - [sym_color_set_definition] = STATE(242), - [sym_color_reference] = STATE(242), - [sym_tikz_library_import] = STATE(242), - [sym_text_mode] = STATE(242), - [aux_sym__section_repeat8] = STATE(805), - [aux_sym_part_repeat1] = STATE(242), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_RBRACK] = ACTIONS(2441), - [anon_sym_COMMA] = ACTIONS(2441), - [anon_sym_EQ] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_RPAREN] = ACTIONS(2441), - [anon_sym_BSLASHpart] = ACTIONS(2252), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddpart] = ACTIONS(2252), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2254), - [anon_sym_BSLASHchapter] = ACTIONS(2252), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddchap] = ACTIONS(2252), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsection] = ACTIONS(2252), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddsec] = ACTIONS(2252), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubsection] = ACTIONS(2252), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2252), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHparagraph] = ACTIONS(2252), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2252), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2254), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2254), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [242] = { - [sym_block_comment] = STATE(258), - [sym__flat_content] = STATE(258), - [sym__text_with_env_content] = STATE(258), - [sym__text_content] = STATE(258), - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(879), - [sym_curly_group] = STATE(258), - [sym_text] = STATE(258), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(258), - [sym_inline_formula] = STATE(258), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(258), - [sym_comment_environment] = STATE(258), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(258), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(258), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(258), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(258), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(258), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(258), - [sym_generic_command] = STATE(258), - [sym_title_declaration] = STATE(258), - [sym_author_declaration] = STATE(258), - [sym_package_include] = STATE(258), - [sym_class_include] = STATE(258), - [sym_latex_include] = STATE(258), - [sym_biblatex_include] = STATE(258), - [sym_bibtex_include] = STATE(258), - [sym_graphics_include] = STATE(258), - [sym_svg_include] = STATE(258), - [sym_inkscape_include] = STATE(258), - [sym_verbatim_include] = STATE(258), - [sym_import_include] = STATE(258), - [sym_caption] = STATE(258), - [sym_citation] = STATE(258), - [sym_label_definition] = STATE(258), - [sym_label_reference] = STATE(258), - [sym_label_reference_range] = STATE(258), - [sym_label_number] = STATE(258), - [sym_new_command_definition] = STATE(258), - [sym_old_command_definition] = STATE(258), - [sym_let_command_definition] = STATE(258), - [sym_math_delimiter] = STATE(258), - [sym_paired_delimiter_definition] = STATE(258), - [sym_environment_definition] = STATE(258), - [sym_glossary_entry_definition] = STATE(258), - [sym_glossary_entry_reference] = STATE(258), - [sym_acronym_definition] = STATE(258), - [sym_acronym_reference] = STATE(258), - [sym_theorem_definition] = STATE(258), - [sym_color_definition] = STATE(258), - [sym_color_set_definition] = STATE(258), - [sym_color_reference] = STATE(258), - [sym_tikz_library_import] = STATE(258), - [sym_text_mode] = STATE(258), - [aux_sym__section_repeat8] = STATE(879), - [aux_sym_part_repeat1] = STATE(258), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_RBRACK] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_BSLASHpart] = ACTIONS(2256), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddpart] = ACTIONS(2256), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHchapter] = ACTIONS(2256), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddchap] = ACTIONS(2256), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsection] = ACTIONS(2256), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddsec] = ACTIONS(2256), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHparagraph] = ACTIONS(2256), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2256), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2258), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [243] = { - [sym_block_comment] = STATE(251), - [sym__flat_content] = STATE(251), - [sym__text_with_env_content] = STATE(251), - [sym__text_content] = STATE(251), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(730), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(251), - [sym_comment_environment] = STATE(251), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(251), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(251), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(251), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(251), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(251), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_title_declaration] = STATE(251), - [sym_author_declaration] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_math_delimiter] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym__section_repeat8] = STATE(730), - [aux_sym_part_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2168), - [anon_sym_EQ] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_BSLASHpart] = ACTIONS(2256), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddpart] = ACTIONS(2256), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHchapter] = ACTIONS(2256), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddchap] = ACTIONS(2256), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsection] = ACTIONS(2256), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddsec] = ACTIONS(2256), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHparagraph] = ACTIONS(2256), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2256), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2256), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [244] = { - [sym_block_comment] = STATE(252), - [sym__flat_content] = STATE(252), - [sym__text_with_env_content] = STATE(252), - [sym__text_content] = STATE(252), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(717), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(252), - [sym_comment_environment] = STATE(252), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(252), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(252), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(252), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(252), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(252), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_title_declaration] = STATE(252), - [sym_author_declaration] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_math_delimiter] = STATE(252), - [sym_paired_delimiter_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [sym_text_mode] = STATE(252), - [aux_sym__section_repeat8] = STATE(717), - [aux_sym_part_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_RBRACK] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_EQ] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_BSLASHpart] = ACTIONS(2256), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddpart] = ACTIONS(2256), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHchapter] = ACTIONS(2256), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddchap] = ACTIONS(2256), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsection] = ACTIONS(2256), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddsec] = ACTIONS(2256), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHparagraph] = ACTIONS(2256), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2256), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [245] = { - [sym_block_comment] = STATE(243), - [sym__flat_content] = STATE(243), - [sym__text_with_env_content] = STATE(243), - [sym__text_content] = STATE(243), - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(653), - [sym_curly_group] = STATE(243), - [sym_text] = STATE(243), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(243), - [sym_inline_formula] = STATE(243), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(243), - [sym_comment_environment] = STATE(243), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(243), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(243), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(243), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(243), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(243), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(243), - [sym_generic_command] = STATE(243), - [sym_title_declaration] = STATE(243), - [sym_author_declaration] = STATE(243), - [sym_package_include] = STATE(243), - [sym_class_include] = STATE(243), - [sym_latex_include] = STATE(243), - [sym_biblatex_include] = STATE(243), - [sym_bibtex_include] = STATE(243), - [sym_graphics_include] = STATE(243), - [sym_svg_include] = STATE(243), - [sym_inkscape_include] = STATE(243), - [sym_verbatim_include] = STATE(243), - [sym_import_include] = STATE(243), - [sym_caption] = STATE(243), - [sym_citation] = STATE(243), - [sym_label_definition] = STATE(243), - [sym_label_reference] = STATE(243), - [sym_label_reference_range] = STATE(243), - [sym_label_number] = STATE(243), - [sym_new_command_definition] = STATE(243), - [sym_old_command_definition] = STATE(243), - [sym_let_command_definition] = STATE(243), - [sym_math_delimiter] = STATE(243), - [sym_paired_delimiter_definition] = STATE(243), - [sym_environment_definition] = STATE(243), - [sym_glossary_entry_definition] = STATE(243), - [sym_glossary_entry_reference] = STATE(243), - [sym_acronym_definition] = STATE(243), - [sym_acronym_reference] = STATE(243), - [sym_theorem_definition] = STATE(243), - [sym_color_definition] = STATE(243), - [sym_color_set_definition] = STATE(243), - [sym_color_reference] = STATE(243), - [sym_tikz_library_import] = STATE(243), - [sym_text_mode] = STATE(243), - [aux_sym__section_repeat8] = STATE(653), - [aux_sym_part_repeat1] = STATE(243), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2443), - [anon_sym_RBRACK] = ACTIONS(2443), - [anon_sym_COMMA] = ACTIONS(2443), - [anon_sym_EQ] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_RPAREN] = ACTIONS(2443), - [anon_sym_BSLASHpart] = ACTIONS(2252), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddpart] = ACTIONS(2252), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2254), - [anon_sym_BSLASHchapter] = ACTIONS(2252), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddchap] = ACTIONS(2252), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsection] = ACTIONS(2252), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddsec] = ACTIONS(2252), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubsection] = ACTIONS(2252), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2252), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHparagraph] = ACTIONS(2252), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2252), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2254), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2252), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [246] = { - [sym_block_comment] = STATE(244), - [sym__flat_content] = STATE(244), - [sym__text_with_env_content] = STATE(244), - [sym__text_content] = STATE(244), - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(755), - [sym_curly_group] = STATE(244), - [sym_text] = STATE(244), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(244), - [sym_inline_formula] = STATE(244), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(244), - [sym_comment_environment] = STATE(244), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(244), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(244), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(244), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(244), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(244), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(244), - [sym_generic_command] = STATE(244), - [sym_title_declaration] = STATE(244), - [sym_author_declaration] = STATE(244), - [sym_package_include] = STATE(244), - [sym_class_include] = STATE(244), - [sym_latex_include] = STATE(244), - [sym_biblatex_include] = STATE(244), - [sym_bibtex_include] = STATE(244), - [sym_graphics_include] = STATE(244), - [sym_svg_include] = STATE(244), - [sym_inkscape_include] = STATE(244), - [sym_verbatim_include] = STATE(244), - [sym_import_include] = STATE(244), - [sym_caption] = STATE(244), - [sym_citation] = STATE(244), - [sym_label_definition] = STATE(244), - [sym_label_reference] = STATE(244), - [sym_label_reference_range] = STATE(244), - [sym_label_number] = STATE(244), - [sym_new_command_definition] = STATE(244), - [sym_old_command_definition] = STATE(244), - [sym_let_command_definition] = STATE(244), - [sym_math_delimiter] = STATE(244), - [sym_paired_delimiter_definition] = STATE(244), - [sym_environment_definition] = STATE(244), - [sym_glossary_entry_definition] = STATE(244), - [sym_glossary_entry_reference] = STATE(244), - [sym_acronym_definition] = STATE(244), - [sym_acronym_reference] = STATE(244), - [sym_theorem_definition] = STATE(244), - [sym_color_definition] = STATE(244), - [sym_color_set_definition] = STATE(244), - [sym_color_reference] = STATE(244), - [sym_tikz_library_import] = STATE(244), - [sym_text_mode] = STATE(244), - [aux_sym__section_repeat8] = STATE(755), - [aux_sym_part_repeat1] = STATE(244), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_RBRACK] = ACTIONS(2445), - [anon_sym_COMMA] = ACTIONS(2445), - [anon_sym_EQ] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2445), - [anon_sym_RPAREN] = ACTIONS(2445), - [anon_sym_BSLASHpart] = ACTIONS(2252), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddpart] = ACTIONS(2252), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2254), - [anon_sym_BSLASHchapter] = ACTIONS(2252), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddchap] = ACTIONS(2252), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsection] = ACTIONS(2252), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHaddsec] = ACTIONS(2252), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubsection] = ACTIONS(2252), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2252), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2254), - [anon_sym_BSLASHparagraph] = ACTIONS(2252), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2254), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2252), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2254), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2254), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [247] = { - [sym_block_comment] = STATE(247), - [sym__flat_content] = STATE(247), - [sym__text_with_env_content] = STATE(247), - [sym__text_content] = STATE(247), - [sym_curly_group] = STATE(247), - [sym_text] = STATE(247), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(247), - [sym_inline_formula] = STATE(247), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(247), - [sym_comment_environment] = STATE(247), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(247), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(247), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(247), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(247), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(247), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(247), - [sym_generic_command] = STATE(247), - [sym_title_declaration] = STATE(247), - [sym_author_declaration] = STATE(247), - [sym_package_include] = STATE(247), - [sym_class_include] = STATE(247), - [sym_latex_include] = STATE(247), - [sym_biblatex_include] = STATE(247), - [sym_bibtex_include] = STATE(247), - [sym_graphics_include] = STATE(247), - [sym_svg_include] = STATE(247), - [sym_inkscape_include] = STATE(247), - [sym_verbatim_include] = STATE(247), - [sym_import_include] = STATE(247), - [sym_caption] = STATE(247), - [sym_citation] = STATE(247), - [sym_label_definition] = STATE(247), - [sym_label_reference] = STATE(247), - [sym_label_reference_range] = STATE(247), - [sym_label_number] = STATE(247), - [sym_new_command_definition] = STATE(247), - [sym_old_command_definition] = STATE(247), - [sym_let_command_definition] = STATE(247), - [sym_math_delimiter] = STATE(247), - [sym_paired_delimiter_definition] = STATE(247), - [sym_environment_definition] = STATE(247), - [sym_glossary_entry_definition] = STATE(247), - [sym_glossary_entry_reference] = STATE(247), - [sym_acronym_definition] = STATE(247), - [sym_acronym_reference] = STATE(247), - [sym_theorem_definition] = STATE(247), - [sym_color_definition] = STATE(247), - [sym_color_set_definition] = STATE(247), - [sym_color_reference] = STATE(247), - [sym_tikz_library_import] = STATE(247), - [sym_text_mode] = STATE(247), - [aux_sym_part_repeat1] = STATE(247), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2289), - [sym_command_name] = ACTIONS(2447), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_RBRACK] = ACTIONS(2453), - [anon_sym_COMMA] = ACTIONS(2453), - [anon_sym_EQ] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym_RPAREN] = ACTIONS(2453), - [anon_sym_BSLASHpart] = ACTIONS(2287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddpart] = ACTIONS(2287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2289), - [anon_sym_BSLASHchapter] = ACTIONS(2287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddchap] = ACTIONS(2287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsection] = ACTIONS(2287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddsec] = ACTIONS(2287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubsection] = ACTIONS(2287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHparagraph] = ACTIONS(2287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2289), - [anon_sym_BSLASHitem] = ACTIONS(2287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2456), - [anon_sym_RBRACE] = ACTIONS(2289), - [sym_word] = ACTIONS(2459), - [sym_placeholder] = ACTIONS(2462), - [anon_sym_PLUS] = ACTIONS(2465), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_SLASH] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_COLON] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2468), - [anon_sym__] = ACTIONS(2471), - [anon_sym_CARET] = ACTIONS(2474), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2477), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2477), - [anon_sym_DOLLAR] = ACTIONS(2480), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2483), - [anon_sym_BSLASHbegin] = ACTIONS(2321), - [anon_sym_BSLASHtitle] = ACTIONS(2486), - [anon_sym_BSLASHauthor] = ACTIONS(2489), - [anon_sym_BSLASHusepackage] = ACTIONS(2492), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2492), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2495), - [anon_sym_BSLASHinclude] = ACTIONS(2498), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2498), - [anon_sym_BSLASHinput] = ACTIONS(2498), - [anon_sym_BSLASHsubfile] = ACTIONS(2498), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2501), - [anon_sym_BSLASHbibliography] = ACTIONS(2504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2507), - [anon_sym_BSLASHincludesvg] = ACTIONS(2510), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2516), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2516), - [anon_sym_BSLASHimport] = ACTIONS(2519), - [anon_sym_BSLASHsubimport] = ACTIONS(2519), - [anon_sym_BSLASHinputfrom] = ACTIONS(2519), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2519), - [anon_sym_BSLASHincludefrom] = ACTIONS(2519), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2519), - [anon_sym_BSLASHcaption] = ACTIONS(2522), - [anon_sym_BSLASHcite] = ACTIONS(2525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2528), - [anon_sym_BSLASHCite] = ACTIONS(2525), - [anon_sym_BSLASHnocite] = ACTIONS(2525), - [anon_sym_BSLASHcitet] = ACTIONS(2525), - [anon_sym_BSLASHcitep] = ACTIONS(2525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2528), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2528), - [anon_sym_BSLASHciteauthor] = ACTIONS(2525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2528), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2528), - [anon_sym_BSLASHcitetitle] = ACTIONS(2525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2528), - [anon_sym_BSLASHciteyear] = ACTIONS(2525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2528), - [anon_sym_BSLASHcitedate] = ACTIONS(2525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2528), - [anon_sym_BSLASHciteurl] = ACTIONS(2525), - [anon_sym_BSLASHfullcite] = ACTIONS(2525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2525), - [anon_sym_BSLASHcitealt] = ACTIONS(2525), - [anon_sym_BSLASHcitealp] = ACTIONS(2525), - [anon_sym_BSLASHcitetext] = ACTIONS(2525), - [anon_sym_BSLASHparencite] = ACTIONS(2525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2528), - [anon_sym_BSLASHParencite] = ACTIONS(2525), - [anon_sym_BSLASHfootcite] = ACTIONS(2525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2525), - [anon_sym_BSLASHtextcite] = ACTIONS(2525), - [anon_sym_BSLASHTextcite] = ACTIONS(2525), - [anon_sym_BSLASHsmartcite] = ACTIONS(2525), - [anon_sym_BSLASHSmartcite] = ACTIONS(2525), - [anon_sym_BSLASHsupercite] = ACTIONS(2525), - [anon_sym_BSLASHautocite] = ACTIONS(2525), - [anon_sym_BSLASHAutocite] = ACTIONS(2525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2528), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2528), - [anon_sym_BSLASHvolcite] = ACTIONS(2525), - [anon_sym_BSLASHVolcite] = ACTIONS(2525), - [anon_sym_BSLASHpvolcite] = ACTIONS(2525), - [anon_sym_BSLASHPvolcite] = ACTIONS(2525), - [anon_sym_BSLASHfvolcite] = ACTIONS(2525), - [anon_sym_BSLASHftvolcite] = ACTIONS(2525), - [anon_sym_BSLASHsvolcite] = ACTIONS(2525), - [anon_sym_BSLASHSvolcite] = ACTIONS(2525), - [anon_sym_BSLASHtvolcite] = ACTIONS(2525), - [anon_sym_BSLASHTvolcite] = ACTIONS(2525), - [anon_sym_BSLASHavolcite] = ACTIONS(2525), - [anon_sym_BSLASHAvolcite] = ACTIONS(2525), - [anon_sym_BSLASHnotecite] = ACTIONS(2525), - [anon_sym_BSLASHNotecite] = ACTIONS(2525), - [anon_sym_BSLASHpnotecite] = ACTIONS(2525), - [anon_sym_BSLASHPnotecite] = ACTIONS(2525), - [anon_sym_BSLASHfnotecite] = ACTIONS(2525), - [anon_sym_BSLASHlabel] = ACTIONS(2531), - [anon_sym_BSLASHref] = ACTIONS(2534), - [anon_sym_BSLASHeqref] = ACTIONS(2534), - [anon_sym_BSLASHvref] = ACTIONS(2534), - [anon_sym_BSLASHVref] = ACTIONS(2534), - [anon_sym_BSLASHautoref] = ACTIONS(2534), - [anon_sym_BSLASHpageref] = ACTIONS(2534), - [anon_sym_BSLASHcref] = ACTIONS(2534), - [anon_sym_BSLASHCref] = ACTIONS(2534), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2537), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2537), - [anon_sym_BSLASHnamecref] = ACTIONS(2534), - [anon_sym_BSLASHnameCref] = ACTIONS(2534), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2534), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2534), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2534), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2534), - [anon_sym_BSLASHlabelcref] = ACTIONS(2534), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2534), - [anon_sym_BSLASHcrefrange] = ACTIONS(2540), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2543), - [anon_sym_BSLASHCrefrange] = ACTIONS(2540), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2543), - [anon_sym_BSLASHnewlabel] = ACTIONS(2546), - [anon_sym_BSLASHnewcommand] = ACTIONS(2549), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2552), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2549), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2552), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2549), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2552), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2549), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2552), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2549), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2549), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2549), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2549), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2549), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2549), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2549), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2549), - [anon_sym_BSLASHdef] = ACTIONS(2555), - [anon_sym_BSLASHlet] = ACTIONS(2558), - [anon_sym_BSLASHleft] = ACTIONS(2561), - [anon_sym_BSLASHbig] = ACTIONS(2561), - [anon_sym_BSLASHBig] = ACTIONS(2561), - [anon_sym_BSLASHbigg] = ACTIONS(2561), - [anon_sym_BSLASHBigg] = ACTIONS(2561), - [anon_sym_BSLASHbigl] = ACTIONS(2561), - [anon_sym_BSLASHBigl] = ACTIONS(2561), - [anon_sym_BSLASHbiggl] = ACTIONS(2561), - [anon_sym_BSLASHBiggl] = ACTIONS(2561), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2564), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2564), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2567), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2567), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2567), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2567), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2567), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2567), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2570), - [anon_sym_BSLASHgls] = ACTIONS(2573), - [anon_sym_BSLASHGls] = ACTIONS(2573), - [anon_sym_BSLASHGLS] = ACTIONS(2573), - [anon_sym_BSLASHglspl] = ACTIONS(2573), - [anon_sym_BSLASHGlspl] = ACTIONS(2573), - [anon_sym_BSLASHGLSpl] = ACTIONS(2573), - [anon_sym_BSLASHglsdisp] = ACTIONS(2573), - [anon_sym_BSLASHglslink] = ACTIONS(2573), - [anon_sym_BSLASHglstext] = ACTIONS(2573), - [anon_sym_BSLASHGlstext] = ACTIONS(2573), - [anon_sym_BSLASHGLStext] = ACTIONS(2573), - [anon_sym_BSLASHglsfirst] = ACTIONS(2573), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2573), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2573), - [anon_sym_BSLASHglsplural] = ACTIONS(2573), - [anon_sym_BSLASHGlsplural] = ACTIONS(2573), - [anon_sym_BSLASHGLSplural] = ACTIONS(2573), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2573), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2573), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2573), - [anon_sym_BSLASHglsname] = ACTIONS(2573), - [anon_sym_BSLASHGlsname] = ACTIONS(2573), - [anon_sym_BSLASHGLSname] = ACTIONS(2573), - [anon_sym_BSLASHglssymbol] = ACTIONS(2573), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2573), - [anon_sym_BSLASHglsdesc] = ACTIONS(2573), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2573), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2573), - [anon_sym_BSLASHglsuseri] = ACTIONS(2573), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2573), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2573), - [anon_sym_BSLASHglsuserii] = ACTIONS(2573), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2573), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2573), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2573), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2573), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2573), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2573), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2573), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2573), - [anon_sym_BSLASHglsuserv] = ACTIONS(2573), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2573), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2573), - [anon_sym_BSLASHglsuservi] = ACTIONS(2573), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2573), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2573), - [anon_sym_BSLASHnewacronym] = ACTIONS(2576), - [anon_sym_BSLASHacrshort] = ACTIONS(2579), - [anon_sym_BSLASHAcrshort] = ACTIONS(2579), - [anon_sym_BSLASHACRshort] = ACTIONS(2579), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2579), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2579), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2579), - [anon_sym_BSLASHacrlong] = ACTIONS(2579), - [anon_sym_BSLASHAcrlong] = ACTIONS(2579), - [anon_sym_BSLASHACRlong] = ACTIONS(2579), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2579), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2579), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2579), - [anon_sym_BSLASHacrfull] = ACTIONS(2579), - [anon_sym_BSLASHAcrfull] = ACTIONS(2579), - [anon_sym_BSLASHACRfull] = ACTIONS(2579), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2579), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2579), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2579), - [anon_sym_BSLASHacs] = ACTIONS(2579), - [anon_sym_BSLASHAcs] = ACTIONS(2579), - [anon_sym_BSLASHacsp] = ACTIONS(2579), - [anon_sym_BSLASHAcsp] = ACTIONS(2579), - [anon_sym_BSLASHacl] = ACTIONS(2579), - [anon_sym_BSLASHAcl] = ACTIONS(2579), - [anon_sym_BSLASHaclp] = ACTIONS(2579), - [anon_sym_BSLASHAclp] = ACTIONS(2579), - [anon_sym_BSLASHacf] = ACTIONS(2579), - [anon_sym_BSLASHAcf] = ACTIONS(2579), - [anon_sym_BSLASHacfp] = ACTIONS(2579), - [anon_sym_BSLASHAcfp] = ACTIONS(2579), - [anon_sym_BSLASHac] = ACTIONS(2579), - [anon_sym_BSLASHAc] = ACTIONS(2579), - [anon_sym_BSLASHacp] = ACTIONS(2579), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2579), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2579), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2579), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2579), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2579), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2579), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2579), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2579), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2579), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2579), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2582), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2585), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2582), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2585), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2588), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2591), - [anon_sym_BSLASHcolor] = ACTIONS(2594), - [anon_sym_BSLASHcolorbox] = ACTIONS(2594), - [anon_sym_BSLASHtextcolor] = ACTIONS(2594), - [anon_sym_BSLASHpagecolor] = ACTIONS(2594), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2597), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2597), - [anon_sym_BSLASHtext] = ACTIONS(2600), - [anon_sym_BSLASHintertext] = ACTIONS(2600), - [anon_sym_shortintertext] = ACTIONS(2600), - }, - [248] = { - [sym_block_comment] = STATE(247), - [sym__flat_content] = STATE(247), - [sym__text_with_env_content] = STATE(247), - [sym__text_content] = STATE(247), - [sym_curly_group] = STATE(247), - [sym_text] = STATE(247), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(247), - [sym_inline_formula] = STATE(247), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(247), - [sym_comment_environment] = STATE(247), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(247), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(247), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(247), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(247), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(247), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(247), - [sym_generic_command] = STATE(247), - [sym_title_declaration] = STATE(247), - [sym_author_declaration] = STATE(247), - [sym_package_include] = STATE(247), - [sym_class_include] = STATE(247), - [sym_latex_include] = STATE(247), - [sym_biblatex_include] = STATE(247), - [sym_bibtex_include] = STATE(247), - [sym_graphics_include] = STATE(247), - [sym_svg_include] = STATE(247), - [sym_inkscape_include] = STATE(247), - [sym_verbatim_include] = STATE(247), - [sym_import_include] = STATE(247), - [sym_caption] = STATE(247), - [sym_citation] = STATE(247), - [sym_label_definition] = STATE(247), - [sym_label_reference] = STATE(247), - [sym_label_reference_range] = STATE(247), - [sym_label_number] = STATE(247), - [sym_new_command_definition] = STATE(247), - [sym_old_command_definition] = STATE(247), - [sym_let_command_definition] = STATE(247), - [sym_math_delimiter] = STATE(247), - [sym_paired_delimiter_definition] = STATE(247), - [sym_environment_definition] = STATE(247), - [sym_glossary_entry_definition] = STATE(247), - [sym_glossary_entry_reference] = STATE(247), - [sym_acronym_definition] = STATE(247), - [sym_acronym_reference] = STATE(247), - [sym_theorem_definition] = STATE(247), - [sym_color_definition] = STATE(247), - [sym_color_set_definition] = STATE(247), - [sym_color_reference] = STATE(247), - [sym_tikz_library_import] = STATE(247), - [sym_text_mode] = STATE(247), - [aux_sym_part_repeat1] = STATE(247), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2268), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2148), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_COMMA] = ACTIONS(2148), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_BSLASHpart] = ACTIONS(2266), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddpart] = ACTIONS(2266), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2268), - [anon_sym_BSLASHchapter] = ACTIONS(2266), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddchap] = ACTIONS(2266), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsection] = ACTIONS(2266), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddsec] = ACTIONS(2266), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubsection] = ACTIONS(2266), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2266), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHparagraph] = ACTIONS(2266), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2266), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2268), - [anon_sym_BSLASHitem] = ACTIONS(2266), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2268), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [249] = { - [sym_block_comment] = STATE(248), - [sym__flat_content] = STATE(248), - [sym__text_with_env_content] = STATE(248), - [sym__text_content] = STATE(248), - [sym_curly_group] = STATE(248), - [sym_text] = STATE(248), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym_displayed_equation] = STATE(248), - [sym_inline_formula] = STATE(248), - [sym_begin] = STATE(63), - [sym_generic_environment] = STATE(248), - [sym_comment_environment] = STATE(248), - [sym__comment_environment_begin] = STATE(3163), - [sym_verbatim_environment] = STATE(248), - [sym__verbatim_environment_begin] = STATE(3164), - [sym_listing_environment] = STATE(248), - [sym__listing_environment_begin] = STATE(3165), - [sym_minted_environment] = STATE(248), - [sym__minted_environment_begin] = STATE(3171), - [sym_pycode_environment] = STATE(248), - [sym__pycode_environment_begin] = STATE(3174), - [sym_math_environment] = STATE(248), - [sym__math_environment_begin] = STATE(273), - [sym__command] = STATE(248), - [sym_generic_command] = STATE(248), - [sym_title_declaration] = STATE(248), - [sym_author_declaration] = STATE(248), - [sym_package_include] = STATE(248), - [sym_class_include] = STATE(248), - [sym_latex_include] = STATE(248), - [sym_biblatex_include] = STATE(248), - [sym_bibtex_include] = STATE(248), - [sym_graphics_include] = STATE(248), - [sym_svg_include] = STATE(248), - [sym_inkscape_include] = STATE(248), - [sym_verbatim_include] = STATE(248), - [sym_import_include] = STATE(248), - [sym_caption] = STATE(248), - [sym_citation] = STATE(248), - [sym_label_definition] = STATE(248), - [sym_label_reference] = STATE(248), - [sym_label_reference_range] = STATE(248), - [sym_label_number] = STATE(248), - [sym_new_command_definition] = STATE(248), - [sym_old_command_definition] = STATE(248), - [sym_let_command_definition] = STATE(248), - [sym_math_delimiter] = STATE(248), - [sym_paired_delimiter_definition] = STATE(248), - [sym_environment_definition] = STATE(248), - [sym_glossary_entry_definition] = STATE(248), - [sym_glossary_entry_reference] = STATE(248), - [sym_acronym_definition] = STATE(248), - [sym_acronym_reference] = STATE(248), - [sym_theorem_definition] = STATE(248), - [sym_color_definition] = STATE(248), - [sym_color_set_definition] = STATE(248), - [sym_color_reference] = STATE(248), - [sym_tikz_library_import] = STATE(248), - [sym_text_mode] = STATE(248), - [aux_sym_part_repeat1] = STATE(248), - [aux_sym_text_repeat1] = STATE(284), - [ts_builtin_sym_end] = ACTIONS(2276), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_RBRACK] = ACTIONS(2603), - [anon_sym_COMMA] = ACTIONS(2603), - [anon_sym_EQ] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2603), - [anon_sym_RPAREN] = ACTIONS(2603), - [anon_sym_BSLASHpart] = ACTIONS(2274), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddpart] = ACTIONS(2274), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2276), - [anon_sym_BSLASHchapter] = ACTIONS(2274), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddchap] = ACTIONS(2274), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsection] = ACTIONS(2274), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddsec] = ACTIONS(2274), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubsection] = ACTIONS(2274), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2274), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHparagraph] = ACTIONS(2274), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2274), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2276), - [anon_sym_BSLASHitem] = ACTIONS(2274), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2276), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(59), - [anon_sym_BSLASH_LBRACK] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_BSLASH_LPAREN] = ACTIONS(63), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(117), - [anon_sym_BSLASHbig] = ACTIONS(117), - [anon_sym_BSLASHBig] = ACTIONS(117), - [anon_sym_BSLASHbigg] = ACTIONS(117), - [anon_sym_BSLASHBigg] = ACTIONS(117), - [anon_sym_BSLASHbigl] = ACTIONS(117), - [anon_sym_BSLASHBigl] = ACTIONS(117), - [anon_sym_BSLASHbiggl] = ACTIONS(117), - [anon_sym_BSLASHBiggl] = ACTIONS(117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(143), - [anon_sym_BSLASHintertext] = ACTIONS(143), - [anon_sym_shortintertext] = ACTIONS(143), - }, - [250] = { - [sym_block_comment] = STATE(258), - [sym__flat_content] = STATE(258), - [sym__text_with_env_content] = STATE(258), - [sym__text_content] = STATE(258), - [sym_curly_group] = STATE(258), - [sym_text] = STATE(258), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(258), - [sym_inline_formula] = STATE(258), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(258), - [sym_comment_environment] = STATE(258), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(258), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(258), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(258), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(258), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(258), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(258), - [sym_generic_command] = STATE(258), - [sym_title_declaration] = STATE(258), - [sym_author_declaration] = STATE(258), - [sym_package_include] = STATE(258), - [sym_class_include] = STATE(258), - [sym_latex_include] = STATE(258), - [sym_biblatex_include] = STATE(258), - [sym_bibtex_include] = STATE(258), - [sym_graphics_include] = STATE(258), - [sym_svg_include] = STATE(258), - [sym_inkscape_include] = STATE(258), - [sym_verbatim_include] = STATE(258), - [sym_import_include] = STATE(258), - [sym_caption] = STATE(258), - [sym_citation] = STATE(258), - [sym_label_definition] = STATE(258), - [sym_label_reference] = STATE(258), - [sym_label_reference_range] = STATE(258), - [sym_label_number] = STATE(258), - [sym_new_command_definition] = STATE(258), - [sym_old_command_definition] = STATE(258), - [sym_let_command_definition] = STATE(258), - [sym_math_delimiter] = STATE(258), - [sym_paired_delimiter_definition] = STATE(258), - [sym_environment_definition] = STATE(258), - [sym_glossary_entry_definition] = STATE(258), - [sym_glossary_entry_reference] = STATE(258), - [sym_acronym_definition] = STATE(258), - [sym_acronym_reference] = STATE(258), - [sym_theorem_definition] = STATE(258), - [sym_color_definition] = STATE(258), - [sym_color_set_definition] = STATE(258), - [sym_color_reference] = STATE(258), - [sym_tikz_library_import] = STATE(258), - [sym_text_mode] = STATE(258), - [aux_sym_part_repeat1] = STATE(258), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_RBRACK] = ACTIONS(2166), - [anon_sym_COMMA] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_BSLASHpart] = ACTIONS(2266), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddpart] = ACTIONS(2266), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2268), - [anon_sym_BSLASHchapter] = ACTIONS(2266), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddchap] = ACTIONS(2266), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsection] = ACTIONS(2266), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddsec] = ACTIONS(2266), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubsection] = ACTIONS(2266), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2266), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHparagraph] = ACTIONS(2266), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2266), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2268), - [anon_sym_BSLASHitem] = ACTIONS(2266), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2268), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [251] = { - [sym_block_comment] = STATE(251), - [sym__flat_content] = STATE(251), - [sym__text_with_env_content] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(251), - [sym_comment_environment] = STATE(251), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(251), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(251), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(251), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(251), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(251), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_title_declaration] = STATE(251), - [sym_author_declaration] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_math_delimiter] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym_part_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(2605), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2611), - [anon_sym_RBRACK] = ACTIONS(2611), - [anon_sym_COMMA] = ACTIONS(2611), - [anon_sym_EQ] = ACTIONS(2611), - [anon_sym_LPAREN] = ACTIONS(2611), - [anon_sym_RPAREN] = ACTIONS(2611), - [anon_sym_BSLASHpart] = ACTIONS(2287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddpart] = ACTIONS(2287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2289), - [anon_sym_BSLASHchapter] = ACTIONS(2287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddchap] = ACTIONS(2287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsection] = ACTIONS(2287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddsec] = ACTIONS(2287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubsection] = ACTIONS(2287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHparagraph] = ACTIONS(2287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2289), - [anon_sym_BSLASHitem] = ACTIONS(2287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2614), - [sym_word] = ACTIONS(2617), - [sym_placeholder] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2623), - [anon_sym_STAR] = ACTIONS(2623), - [anon_sym_SLASH] = ACTIONS(2623), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_GT] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_COLON] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym__] = ACTIONS(2629), - [anon_sym_CARET] = ACTIONS(2632), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2635), - [anon_sym_DOLLAR] = ACTIONS(2638), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2641), - [anon_sym_BSLASHbegin] = ACTIONS(2321), - [anon_sym_BSLASHend] = ACTIONS(2287), - [anon_sym_BSLASHtitle] = ACTIONS(2644), - [anon_sym_BSLASHauthor] = ACTIONS(2647), - [anon_sym_BSLASHusepackage] = ACTIONS(2650), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2650), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2653), - [anon_sym_BSLASHinclude] = ACTIONS(2656), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2656), - [anon_sym_BSLASHinput] = ACTIONS(2656), - [anon_sym_BSLASHsubfile] = ACTIONS(2656), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2659), - [anon_sym_BSLASHbibliography] = ACTIONS(2662), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2665), - [anon_sym_BSLASHincludesvg] = ACTIONS(2668), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2671), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2674), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2674), - [anon_sym_BSLASHimport] = ACTIONS(2677), - [anon_sym_BSLASHsubimport] = ACTIONS(2677), - [anon_sym_BSLASHinputfrom] = ACTIONS(2677), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2677), - [anon_sym_BSLASHincludefrom] = ACTIONS(2677), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2677), - [anon_sym_BSLASHcaption] = ACTIONS(2680), - [anon_sym_BSLASHcite] = ACTIONS(2683), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2686), - [anon_sym_BSLASHCite] = ACTIONS(2683), - [anon_sym_BSLASHnocite] = ACTIONS(2683), - [anon_sym_BSLASHcitet] = ACTIONS(2683), - [anon_sym_BSLASHcitep] = ACTIONS(2683), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2686), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2686), - [anon_sym_BSLASHciteauthor] = ACTIONS(2683), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2686), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2683), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2686), - [anon_sym_BSLASHcitetitle] = ACTIONS(2683), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2686), - [anon_sym_BSLASHciteyear] = ACTIONS(2683), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2686), - [anon_sym_BSLASHcitedate] = ACTIONS(2683), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2686), - [anon_sym_BSLASHciteurl] = ACTIONS(2683), - [anon_sym_BSLASHfullcite] = ACTIONS(2683), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2683), - [anon_sym_BSLASHcitealt] = ACTIONS(2683), - [anon_sym_BSLASHcitealp] = ACTIONS(2683), - [anon_sym_BSLASHcitetext] = ACTIONS(2683), - [anon_sym_BSLASHparencite] = ACTIONS(2683), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2686), - [anon_sym_BSLASHParencite] = ACTIONS(2683), - [anon_sym_BSLASHfootcite] = ACTIONS(2683), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2683), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2683), - [anon_sym_BSLASHtextcite] = ACTIONS(2683), - [anon_sym_BSLASHTextcite] = ACTIONS(2683), - [anon_sym_BSLASHsmartcite] = ACTIONS(2683), - [anon_sym_BSLASHSmartcite] = ACTIONS(2683), - [anon_sym_BSLASHsupercite] = ACTIONS(2683), - [anon_sym_BSLASHautocite] = ACTIONS(2683), - [anon_sym_BSLASHAutocite] = ACTIONS(2683), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2686), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2686), - [anon_sym_BSLASHvolcite] = ACTIONS(2683), - [anon_sym_BSLASHVolcite] = ACTIONS(2683), - [anon_sym_BSLASHpvolcite] = ACTIONS(2683), - [anon_sym_BSLASHPvolcite] = ACTIONS(2683), - [anon_sym_BSLASHfvolcite] = ACTIONS(2683), - [anon_sym_BSLASHftvolcite] = ACTIONS(2683), - [anon_sym_BSLASHsvolcite] = ACTIONS(2683), - [anon_sym_BSLASHSvolcite] = ACTIONS(2683), - [anon_sym_BSLASHtvolcite] = ACTIONS(2683), - [anon_sym_BSLASHTvolcite] = ACTIONS(2683), - [anon_sym_BSLASHavolcite] = ACTIONS(2683), - [anon_sym_BSLASHAvolcite] = ACTIONS(2683), - [anon_sym_BSLASHnotecite] = ACTIONS(2683), - [anon_sym_BSLASHNotecite] = ACTIONS(2683), - [anon_sym_BSLASHpnotecite] = ACTIONS(2683), - [anon_sym_BSLASHPnotecite] = ACTIONS(2683), - [anon_sym_BSLASHfnotecite] = ACTIONS(2683), - [anon_sym_BSLASHlabel] = ACTIONS(2689), - [anon_sym_BSLASHref] = ACTIONS(2692), - [anon_sym_BSLASHeqref] = ACTIONS(2692), - [anon_sym_BSLASHvref] = ACTIONS(2692), - [anon_sym_BSLASHVref] = ACTIONS(2692), - [anon_sym_BSLASHautoref] = ACTIONS(2692), - [anon_sym_BSLASHpageref] = ACTIONS(2692), - [anon_sym_BSLASHcref] = ACTIONS(2692), - [anon_sym_BSLASHCref] = ACTIONS(2692), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2695), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2695), - [anon_sym_BSLASHnamecref] = ACTIONS(2692), - [anon_sym_BSLASHnameCref] = ACTIONS(2692), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2692), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2692), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2692), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2692), - [anon_sym_BSLASHlabelcref] = ACTIONS(2692), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2692), - [anon_sym_BSLASHcrefrange] = ACTIONS(2698), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2701), - [anon_sym_BSLASHCrefrange] = ACTIONS(2698), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2701), - [anon_sym_BSLASHnewlabel] = ACTIONS(2704), - [anon_sym_BSLASHnewcommand] = ACTIONS(2707), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2707), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2707), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2707), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2710), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2707), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2707), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2707), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2707), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2707), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2707), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2707), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2707), - [anon_sym_BSLASHdef] = ACTIONS(2713), - [anon_sym_BSLASHlet] = ACTIONS(2716), - [anon_sym_BSLASHleft] = ACTIONS(2719), - [anon_sym_BSLASHbig] = ACTIONS(2719), - [anon_sym_BSLASHBig] = ACTIONS(2719), - [anon_sym_BSLASHbigg] = ACTIONS(2719), - [anon_sym_BSLASHBigg] = ACTIONS(2719), - [anon_sym_BSLASHbigl] = ACTIONS(2719), - [anon_sym_BSLASHBigl] = ACTIONS(2719), - [anon_sym_BSLASHbiggl] = ACTIONS(2719), - [anon_sym_BSLASHBiggl] = ACTIONS(2719), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2722), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2722), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2725), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2725), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2725), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2725), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2725), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2728), - [anon_sym_BSLASHgls] = ACTIONS(2731), - [anon_sym_BSLASHGls] = ACTIONS(2731), - [anon_sym_BSLASHGLS] = ACTIONS(2731), - [anon_sym_BSLASHglspl] = ACTIONS(2731), - [anon_sym_BSLASHGlspl] = ACTIONS(2731), - [anon_sym_BSLASHGLSpl] = ACTIONS(2731), - [anon_sym_BSLASHglsdisp] = ACTIONS(2731), - [anon_sym_BSLASHglslink] = ACTIONS(2731), - [anon_sym_BSLASHglstext] = ACTIONS(2731), - [anon_sym_BSLASHGlstext] = ACTIONS(2731), - [anon_sym_BSLASHGLStext] = ACTIONS(2731), - [anon_sym_BSLASHglsfirst] = ACTIONS(2731), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2731), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2731), - [anon_sym_BSLASHglsplural] = ACTIONS(2731), - [anon_sym_BSLASHGlsplural] = ACTIONS(2731), - [anon_sym_BSLASHGLSplural] = ACTIONS(2731), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2731), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2731), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2731), - [anon_sym_BSLASHglsname] = ACTIONS(2731), - [anon_sym_BSLASHGlsname] = ACTIONS(2731), - [anon_sym_BSLASHGLSname] = ACTIONS(2731), - [anon_sym_BSLASHglssymbol] = ACTIONS(2731), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2731), - [anon_sym_BSLASHglsdesc] = ACTIONS(2731), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2731), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2731), - [anon_sym_BSLASHglsuseri] = ACTIONS(2731), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2731), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2731), - [anon_sym_BSLASHglsuserii] = ACTIONS(2731), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2731), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2731), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2731), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2731), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2731), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2731), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2731), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2731), - [anon_sym_BSLASHglsuserv] = ACTIONS(2731), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2731), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2731), - [anon_sym_BSLASHglsuservi] = ACTIONS(2731), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2731), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2731), - [anon_sym_BSLASHnewacronym] = ACTIONS(2734), - [anon_sym_BSLASHacrshort] = ACTIONS(2737), - [anon_sym_BSLASHAcrshort] = ACTIONS(2737), - [anon_sym_BSLASHACRshort] = ACTIONS(2737), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2737), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2737), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2737), - [anon_sym_BSLASHacrlong] = ACTIONS(2737), - [anon_sym_BSLASHAcrlong] = ACTIONS(2737), - [anon_sym_BSLASHACRlong] = ACTIONS(2737), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2737), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2737), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2737), - [anon_sym_BSLASHacrfull] = ACTIONS(2737), - [anon_sym_BSLASHAcrfull] = ACTIONS(2737), - [anon_sym_BSLASHACRfull] = ACTIONS(2737), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2737), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2737), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2737), - [anon_sym_BSLASHacs] = ACTIONS(2737), - [anon_sym_BSLASHAcs] = ACTIONS(2737), - [anon_sym_BSLASHacsp] = ACTIONS(2737), - [anon_sym_BSLASHAcsp] = ACTIONS(2737), - [anon_sym_BSLASHacl] = ACTIONS(2737), - [anon_sym_BSLASHAcl] = ACTIONS(2737), - [anon_sym_BSLASHaclp] = ACTIONS(2737), - [anon_sym_BSLASHAclp] = ACTIONS(2737), - [anon_sym_BSLASHacf] = ACTIONS(2737), - [anon_sym_BSLASHAcf] = ACTIONS(2737), - [anon_sym_BSLASHacfp] = ACTIONS(2737), - [anon_sym_BSLASHAcfp] = ACTIONS(2737), - [anon_sym_BSLASHac] = ACTIONS(2737), - [anon_sym_BSLASHAc] = ACTIONS(2737), - [anon_sym_BSLASHacp] = ACTIONS(2737), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2737), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2737), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2737), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2737), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2737), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2737), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2737), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2737), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2737), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2737), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2740), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2743), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2740), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2743), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2746), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2749), - [anon_sym_BSLASHcolor] = ACTIONS(2752), - [anon_sym_BSLASHcolorbox] = ACTIONS(2752), - [anon_sym_BSLASHtextcolor] = ACTIONS(2752), - [anon_sym_BSLASHpagecolor] = ACTIONS(2752), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2755), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2755), - [anon_sym_BSLASHtext] = ACTIONS(2758), - [anon_sym_BSLASHintertext] = ACTIONS(2758), - [anon_sym_shortintertext] = ACTIONS(2758), - }, - [252] = { - [sym_block_comment] = STATE(252), - [sym__flat_content] = STATE(252), - [sym__text_with_env_content] = STATE(252), - [sym__text_content] = STATE(252), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(252), - [sym_comment_environment] = STATE(252), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(252), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(252), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(252), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(252), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(252), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_title_declaration] = STATE(252), - [sym_author_declaration] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_math_delimiter] = STATE(252), - [sym_paired_delimiter_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [sym_text_mode] = STATE(252), - [aux_sym_part_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(2761), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(2767), - [anon_sym_RBRACK] = ACTIONS(2767), - [anon_sym_COMMA] = ACTIONS(2767), - [anon_sym_EQ] = ACTIONS(2767), - [anon_sym_LPAREN] = ACTIONS(2767), - [anon_sym_RPAREN] = ACTIONS(2767), - [anon_sym_BSLASHpart] = ACTIONS(2287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddpart] = ACTIONS(2287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2289), - [anon_sym_BSLASHchapter] = ACTIONS(2287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddchap] = ACTIONS(2287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsection] = ACTIONS(2287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddsec] = ACTIONS(2287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubsection] = ACTIONS(2287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHparagraph] = ACTIONS(2287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2289), - [anon_sym_BSLASHitem] = ACTIONS(2287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2770), - [sym_word] = ACTIONS(2773), - [sym_placeholder] = ACTIONS(2776), - [anon_sym_PLUS] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2779), - [anon_sym_STAR] = ACTIONS(2779), - [anon_sym_SLASH] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_GT] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_COLON] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2782), - [anon_sym__] = ACTIONS(2785), - [anon_sym_CARET] = ACTIONS(2788), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2791), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2791), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2289), - [anon_sym_DOLLAR] = ACTIONS(2794), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2797), - [anon_sym_BSLASHbegin] = ACTIONS(2321), - [anon_sym_BSLASHtitle] = ACTIONS(2800), - [anon_sym_BSLASHauthor] = ACTIONS(2803), - [anon_sym_BSLASHusepackage] = ACTIONS(2806), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2806), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2809), - [anon_sym_BSLASHinclude] = ACTIONS(2812), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2812), - [anon_sym_BSLASHinput] = ACTIONS(2812), - [anon_sym_BSLASHsubfile] = ACTIONS(2812), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2815), - [anon_sym_BSLASHbibliography] = ACTIONS(2818), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2821), - [anon_sym_BSLASHincludesvg] = ACTIONS(2824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2827), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2830), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2830), - [anon_sym_BSLASHimport] = ACTIONS(2833), - [anon_sym_BSLASHsubimport] = ACTIONS(2833), - [anon_sym_BSLASHinputfrom] = ACTIONS(2833), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2833), - [anon_sym_BSLASHincludefrom] = ACTIONS(2833), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2833), - [anon_sym_BSLASHcaption] = ACTIONS(2836), - [anon_sym_BSLASHcite] = ACTIONS(2839), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2842), - [anon_sym_BSLASHCite] = ACTIONS(2839), - [anon_sym_BSLASHnocite] = ACTIONS(2839), - [anon_sym_BSLASHcitet] = ACTIONS(2839), - [anon_sym_BSLASHcitep] = ACTIONS(2839), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2842), - [anon_sym_BSLASHciteauthor] = ACTIONS(2839), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2839), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2842), - [anon_sym_BSLASHcitetitle] = ACTIONS(2839), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2842), - [anon_sym_BSLASHciteyear] = ACTIONS(2839), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2842), - [anon_sym_BSLASHcitedate] = ACTIONS(2839), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2842), - [anon_sym_BSLASHciteurl] = ACTIONS(2839), - [anon_sym_BSLASHfullcite] = ACTIONS(2839), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2839), - [anon_sym_BSLASHcitealt] = ACTIONS(2839), - [anon_sym_BSLASHcitealp] = ACTIONS(2839), - [anon_sym_BSLASHcitetext] = ACTIONS(2839), - [anon_sym_BSLASHparencite] = ACTIONS(2839), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2842), - [anon_sym_BSLASHParencite] = ACTIONS(2839), - [anon_sym_BSLASHfootcite] = ACTIONS(2839), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2839), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2839), - [anon_sym_BSLASHtextcite] = ACTIONS(2839), - [anon_sym_BSLASHTextcite] = ACTIONS(2839), - [anon_sym_BSLASHsmartcite] = ACTIONS(2839), - [anon_sym_BSLASHSmartcite] = ACTIONS(2839), - [anon_sym_BSLASHsupercite] = ACTIONS(2839), - [anon_sym_BSLASHautocite] = ACTIONS(2839), - [anon_sym_BSLASHAutocite] = ACTIONS(2839), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2842), - [anon_sym_BSLASHvolcite] = ACTIONS(2839), - [anon_sym_BSLASHVolcite] = ACTIONS(2839), - [anon_sym_BSLASHpvolcite] = ACTIONS(2839), - [anon_sym_BSLASHPvolcite] = ACTIONS(2839), - [anon_sym_BSLASHfvolcite] = ACTIONS(2839), - [anon_sym_BSLASHftvolcite] = ACTIONS(2839), - [anon_sym_BSLASHsvolcite] = ACTIONS(2839), - [anon_sym_BSLASHSvolcite] = ACTIONS(2839), - [anon_sym_BSLASHtvolcite] = ACTIONS(2839), - [anon_sym_BSLASHTvolcite] = ACTIONS(2839), - [anon_sym_BSLASHavolcite] = ACTIONS(2839), - [anon_sym_BSLASHAvolcite] = ACTIONS(2839), - [anon_sym_BSLASHnotecite] = ACTIONS(2839), - [anon_sym_BSLASHNotecite] = ACTIONS(2839), - [anon_sym_BSLASHpnotecite] = ACTIONS(2839), - [anon_sym_BSLASHPnotecite] = ACTIONS(2839), - [anon_sym_BSLASHfnotecite] = ACTIONS(2839), - [anon_sym_BSLASHlabel] = ACTIONS(2845), - [anon_sym_BSLASHref] = ACTIONS(2848), - [anon_sym_BSLASHeqref] = ACTIONS(2848), - [anon_sym_BSLASHvref] = ACTIONS(2848), - [anon_sym_BSLASHVref] = ACTIONS(2848), - [anon_sym_BSLASHautoref] = ACTIONS(2848), - [anon_sym_BSLASHpageref] = ACTIONS(2848), - [anon_sym_BSLASHcref] = ACTIONS(2848), - [anon_sym_BSLASHCref] = ACTIONS(2848), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2851), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2851), - [anon_sym_BSLASHnamecref] = ACTIONS(2848), - [anon_sym_BSLASHnameCref] = ACTIONS(2848), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2848), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2848), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2848), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2848), - [anon_sym_BSLASHlabelcref] = ACTIONS(2848), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2848), - [anon_sym_BSLASHcrefrange] = ACTIONS(2854), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2857), - [anon_sym_BSLASHCrefrange] = ACTIONS(2854), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2857), - [anon_sym_BSLASHnewlabel] = ACTIONS(2860), - [anon_sym_BSLASHnewcommand] = ACTIONS(2863), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2863), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2863), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2863), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2863), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2863), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2863), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2863), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2863), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2863), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2863), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2863), - [anon_sym_BSLASHdef] = ACTIONS(2869), - [anon_sym_BSLASHlet] = ACTIONS(2872), - [anon_sym_BSLASHleft] = ACTIONS(2875), - [anon_sym_BSLASHbig] = ACTIONS(2875), - [anon_sym_BSLASHBig] = ACTIONS(2875), - [anon_sym_BSLASHbigg] = ACTIONS(2875), - [anon_sym_BSLASHBigg] = ACTIONS(2875), - [anon_sym_BSLASHbigl] = ACTIONS(2875), - [anon_sym_BSLASHBigl] = ACTIONS(2875), - [anon_sym_BSLASHbiggl] = ACTIONS(2875), - [anon_sym_BSLASHBiggl] = ACTIONS(2875), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2878), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2878), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2881), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2881), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2881), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2881), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2881), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2881), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2884), - [anon_sym_BSLASHgls] = ACTIONS(2887), - [anon_sym_BSLASHGls] = ACTIONS(2887), - [anon_sym_BSLASHGLS] = ACTIONS(2887), - [anon_sym_BSLASHglspl] = ACTIONS(2887), - [anon_sym_BSLASHGlspl] = ACTIONS(2887), - [anon_sym_BSLASHGLSpl] = ACTIONS(2887), - [anon_sym_BSLASHglsdisp] = ACTIONS(2887), - [anon_sym_BSLASHglslink] = ACTIONS(2887), - [anon_sym_BSLASHglstext] = ACTIONS(2887), - [anon_sym_BSLASHGlstext] = ACTIONS(2887), - [anon_sym_BSLASHGLStext] = ACTIONS(2887), - [anon_sym_BSLASHglsfirst] = ACTIONS(2887), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2887), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2887), - [anon_sym_BSLASHglsplural] = ACTIONS(2887), - [anon_sym_BSLASHGlsplural] = ACTIONS(2887), - [anon_sym_BSLASHGLSplural] = ACTIONS(2887), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2887), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2887), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2887), - [anon_sym_BSLASHglsname] = ACTIONS(2887), - [anon_sym_BSLASHGlsname] = ACTIONS(2887), - [anon_sym_BSLASHGLSname] = ACTIONS(2887), - [anon_sym_BSLASHglssymbol] = ACTIONS(2887), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2887), - [anon_sym_BSLASHglsdesc] = ACTIONS(2887), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2887), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2887), - [anon_sym_BSLASHglsuseri] = ACTIONS(2887), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2887), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2887), - [anon_sym_BSLASHglsuserii] = ACTIONS(2887), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2887), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2887), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2887), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2887), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2887), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2887), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2887), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2887), - [anon_sym_BSLASHglsuserv] = ACTIONS(2887), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2887), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2887), - [anon_sym_BSLASHglsuservi] = ACTIONS(2887), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2887), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2887), - [anon_sym_BSLASHnewacronym] = ACTIONS(2890), - [anon_sym_BSLASHacrshort] = ACTIONS(2893), - [anon_sym_BSLASHAcrshort] = ACTIONS(2893), - [anon_sym_BSLASHACRshort] = ACTIONS(2893), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2893), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2893), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2893), - [anon_sym_BSLASHacrlong] = ACTIONS(2893), - [anon_sym_BSLASHAcrlong] = ACTIONS(2893), - [anon_sym_BSLASHACRlong] = ACTIONS(2893), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2893), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2893), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2893), - [anon_sym_BSLASHacrfull] = ACTIONS(2893), - [anon_sym_BSLASHAcrfull] = ACTIONS(2893), - [anon_sym_BSLASHACRfull] = ACTIONS(2893), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2893), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2893), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2893), - [anon_sym_BSLASHacs] = ACTIONS(2893), - [anon_sym_BSLASHAcs] = ACTIONS(2893), - [anon_sym_BSLASHacsp] = ACTIONS(2893), - [anon_sym_BSLASHAcsp] = ACTIONS(2893), - [anon_sym_BSLASHacl] = ACTIONS(2893), - [anon_sym_BSLASHAcl] = ACTIONS(2893), - [anon_sym_BSLASHaclp] = ACTIONS(2893), - [anon_sym_BSLASHAclp] = ACTIONS(2893), - [anon_sym_BSLASHacf] = ACTIONS(2893), - [anon_sym_BSLASHAcf] = ACTIONS(2893), - [anon_sym_BSLASHacfp] = ACTIONS(2893), - [anon_sym_BSLASHAcfp] = ACTIONS(2893), - [anon_sym_BSLASHac] = ACTIONS(2893), - [anon_sym_BSLASHAc] = ACTIONS(2893), - [anon_sym_BSLASHacp] = ACTIONS(2893), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2893), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2893), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2893), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2893), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2893), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2893), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2893), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2893), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2893), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2893), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2896), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2899), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2896), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2899), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2902), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2905), - [anon_sym_BSLASHcolor] = ACTIONS(2908), - [anon_sym_BSLASHcolorbox] = ACTIONS(2908), - [anon_sym_BSLASHtextcolor] = ACTIONS(2908), - [anon_sym_BSLASHpagecolor] = ACTIONS(2908), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2911), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2911), - [anon_sym_BSLASHtext] = ACTIONS(2914), - [anon_sym_BSLASHintertext] = ACTIONS(2914), - [anon_sym_shortintertext] = ACTIONS(2914), - }, - [253] = { - [sym_block_comment] = STATE(252), - [sym__flat_content] = STATE(252), - [sym__text_with_env_content] = STATE(252), - [sym__text_content] = STATE(252), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(252), - [sym_comment_environment] = STATE(252), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(252), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(252), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(252), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(252), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(252), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_title_declaration] = STATE(252), - [sym_author_declaration] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_math_delimiter] = STATE(252), - [sym_paired_delimiter_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [sym_text_mode] = STATE(252), - [aux_sym_part_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_RBRACK] = ACTIONS(2172), - [anon_sym_COMMA] = ACTIONS(2172), - [anon_sym_EQ] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_RPAREN] = ACTIONS(2172), - [anon_sym_BSLASHpart] = ACTIONS(2266), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddpart] = ACTIONS(2266), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2268), - [anon_sym_BSLASHchapter] = ACTIONS(2266), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddchap] = ACTIONS(2266), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsection] = ACTIONS(2266), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddsec] = ACTIONS(2266), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubsection] = ACTIONS(2266), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2266), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHparagraph] = ACTIONS(2266), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2266), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2268), - [anon_sym_BSLASHitem] = ACTIONS(2266), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2268), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [254] = { - [sym_block_comment] = STATE(251), - [sym__flat_content] = STATE(251), - [sym__text_with_env_content] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(251), - [sym_comment_environment] = STATE(251), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(251), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(251), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(251), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(251), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(251), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_title_declaration] = STATE(251), - [sym_author_declaration] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_math_delimiter] = STATE(251), - [sym_paired_delimiter_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_text_mode] = STATE(251), - [aux_sym_part_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2168), - [anon_sym_EQ] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_RPAREN] = ACTIONS(2168), - [anon_sym_BSLASHpart] = ACTIONS(2266), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddpart] = ACTIONS(2266), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2268), - [anon_sym_BSLASHchapter] = ACTIONS(2266), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddchap] = ACTIONS(2266), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsection] = ACTIONS(2266), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHaddsec] = ACTIONS(2266), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubsection] = ACTIONS(2266), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2266), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2268), - [anon_sym_BSLASHparagraph] = ACTIONS(2266), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2268), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2266), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2268), - [anon_sym_BSLASHitem] = ACTIONS(2266), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2266), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [255] = { - [sym_block_comment] = STATE(253), - [sym__flat_content] = STATE(253), - [sym__text_with_env_content] = STATE(253), - [sym__text_content] = STATE(253), - [sym_curly_group] = STATE(253), - [sym_text] = STATE(253), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym_displayed_equation] = STATE(253), - [sym_inline_formula] = STATE(253), - [sym_begin] = STATE(74), - [sym_generic_environment] = STATE(253), - [sym_comment_environment] = STATE(253), - [sym__comment_environment_begin] = STATE(3159), - [sym_verbatim_environment] = STATE(253), - [sym__verbatim_environment_begin] = STATE(3158), - [sym_listing_environment] = STATE(253), - [sym__listing_environment_begin] = STATE(3157), - [sym_minted_environment] = STATE(253), - [sym__minted_environment_begin] = STATE(3156), - [sym_pycode_environment] = STATE(253), - [sym__pycode_environment_begin] = STATE(3155), - [sym_math_environment] = STATE(253), - [sym__math_environment_begin] = STATE(261), - [sym__command] = STATE(253), - [sym_generic_command] = STATE(253), - [sym_title_declaration] = STATE(253), - [sym_author_declaration] = STATE(253), - [sym_package_include] = STATE(253), - [sym_class_include] = STATE(253), - [sym_latex_include] = STATE(253), - [sym_biblatex_include] = STATE(253), - [sym_bibtex_include] = STATE(253), - [sym_graphics_include] = STATE(253), - [sym_svg_include] = STATE(253), - [sym_inkscape_include] = STATE(253), - [sym_verbatim_include] = STATE(253), - [sym_import_include] = STATE(253), - [sym_caption] = STATE(253), - [sym_citation] = STATE(253), - [sym_label_definition] = STATE(253), - [sym_label_reference] = STATE(253), - [sym_label_reference_range] = STATE(253), - [sym_label_number] = STATE(253), - [sym_new_command_definition] = STATE(253), - [sym_old_command_definition] = STATE(253), - [sym_let_command_definition] = STATE(253), - [sym_math_delimiter] = STATE(253), - [sym_paired_delimiter_definition] = STATE(253), - [sym_environment_definition] = STATE(253), - [sym_glossary_entry_definition] = STATE(253), - [sym_glossary_entry_reference] = STATE(253), - [sym_acronym_definition] = STATE(253), - [sym_acronym_reference] = STATE(253), - [sym_theorem_definition] = STATE(253), - [sym_color_definition] = STATE(253), - [sym_color_set_definition] = STATE(253), - [sym_color_reference] = STATE(253), - [sym_tikz_library_import] = STATE(253), - [sym_text_mode] = STATE(253), - [aux_sym_part_repeat1] = STATE(253), - [aux_sym_text_repeat1] = STATE(286), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_RBRACK] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_RPAREN] = ACTIONS(2917), - [anon_sym_BSLASHpart] = ACTIONS(2274), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddpart] = ACTIONS(2274), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2276), - [anon_sym_BSLASHchapter] = ACTIONS(2274), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddchap] = ACTIONS(2274), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsection] = ACTIONS(2274), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddsec] = ACTIONS(2274), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubsection] = ACTIONS(2274), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2274), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHparagraph] = ACTIONS(2274), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2274), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2276), - [anon_sym_BSLASHitem] = ACTIONS(2274), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1088), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1088), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2276), - [anon_sym_DOLLAR] = ACTIONS(1092), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1094), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(1146), - [anon_sym_BSLASHbig] = ACTIONS(1146), - [anon_sym_BSLASHBig] = ACTIONS(1146), - [anon_sym_BSLASHbigg] = ACTIONS(1146), - [anon_sym_BSLASHBigg] = ACTIONS(1146), - [anon_sym_BSLASHbigl] = ACTIONS(1146), - [anon_sym_BSLASHBigl] = ACTIONS(1146), - [anon_sym_BSLASHbiggl] = ACTIONS(1146), - [anon_sym_BSLASHBiggl] = ACTIONS(1146), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(1172), - [anon_sym_BSLASHintertext] = ACTIONS(1172), - [anon_sym_shortintertext] = ACTIONS(1172), - }, - [256] = { - [sym_block_comment] = STATE(254), - [sym__flat_content] = STATE(254), - [sym__text_with_env_content] = STATE(254), - [sym__text_content] = STATE(254), - [sym_curly_group] = STATE(254), - [sym_text] = STATE(254), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym_displayed_equation] = STATE(254), - [sym_inline_formula] = STATE(254), - [sym_begin] = STATE(93), - [sym_generic_environment] = STATE(254), - [sym_comment_environment] = STATE(254), - [sym__comment_environment_begin] = STATE(3141), - [sym_verbatim_environment] = STATE(254), - [sym__verbatim_environment_begin] = STATE(3140), - [sym_listing_environment] = STATE(254), - [sym__listing_environment_begin] = STATE(3139), - [sym_minted_environment] = STATE(254), - [sym__minted_environment_begin] = STATE(3138), - [sym_pycode_environment] = STATE(254), - [sym__pycode_environment_begin] = STATE(3137), - [sym_math_environment] = STATE(254), - [sym__math_environment_begin] = STATE(270), - [sym__command] = STATE(254), - [sym_generic_command] = STATE(254), - [sym_title_declaration] = STATE(254), - [sym_author_declaration] = STATE(254), - [sym_package_include] = STATE(254), - [sym_class_include] = STATE(254), - [sym_latex_include] = STATE(254), - [sym_biblatex_include] = STATE(254), - [sym_bibtex_include] = STATE(254), - [sym_graphics_include] = STATE(254), - [sym_svg_include] = STATE(254), - [sym_inkscape_include] = STATE(254), - [sym_verbatim_include] = STATE(254), - [sym_import_include] = STATE(254), - [sym_caption] = STATE(254), - [sym_citation] = STATE(254), - [sym_label_definition] = STATE(254), - [sym_label_reference] = STATE(254), - [sym_label_reference_range] = STATE(254), - [sym_label_number] = STATE(254), - [sym_new_command_definition] = STATE(254), - [sym_old_command_definition] = STATE(254), - [sym_let_command_definition] = STATE(254), - [sym_math_delimiter] = STATE(254), - [sym_paired_delimiter_definition] = STATE(254), - [sym_environment_definition] = STATE(254), - [sym_glossary_entry_definition] = STATE(254), - [sym_glossary_entry_reference] = STATE(254), - [sym_acronym_definition] = STATE(254), - [sym_acronym_reference] = STATE(254), - [sym_theorem_definition] = STATE(254), - [sym_color_definition] = STATE(254), - [sym_color_set_definition] = STATE(254), - [sym_color_reference] = STATE(254), - [sym_tikz_library_import] = STATE(254), - [sym_text_mode] = STATE(254), - [aux_sym_part_repeat1] = STATE(254), - [aux_sym_text_repeat1] = STATE(289), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_RBRACK] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_RPAREN] = ACTIONS(2919), - [anon_sym_BSLASHpart] = ACTIONS(2274), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddpart] = ACTIONS(2274), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2276), - [anon_sym_BSLASHchapter] = ACTIONS(2274), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddchap] = ACTIONS(2274), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsection] = ACTIONS(2274), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddsec] = ACTIONS(2274), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubsection] = ACTIONS(2274), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2274), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHparagraph] = ACTIONS(2274), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2274), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2276), - [anon_sym_BSLASHitem] = ACTIONS(2274), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(740), - [anon_sym_BSLASH_LBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_BSLASH_LPAREN] = ACTIONS(744), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(2274), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(798), - [anon_sym_BSLASHbig] = ACTIONS(798), - [anon_sym_BSLASHBig] = ACTIONS(798), - [anon_sym_BSLASHbigg] = ACTIONS(798), - [anon_sym_BSLASHBigg] = ACTIONS(798), - [anon_sym_BSLASHbigl] = ACTIONS(798), - [anon_sym_BSLASHBigl] = ACTIONS(798), - [anon_sym_BSLASHbiggl] = ACTIONS(798), - [anon_sym_BSLASHBiggl] = ACTIONS(798), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(824), - [anon_sym_BSLASHintertext] = ACTIONS(824), - [anon_sym_shortintertext] = ACTIONS(824), - }, - [257] = { - [sym_block_comment] = STATE(250), - [sym__flat_content] = STATE(250), - [sym__text_with_env_content] = STATE(250), - [sym__text_content] = STATE(250), - [sym_curly_group] = STATE(250), - [sym_text] = STATE(250), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(250), - [sym_inline_formula] = STATE(250), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(250), - [sym_comment_environment] = STATE(250), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(250), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(250), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(250), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(250), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(250), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(250), - [sym_generic_command] = STATE(250), - [sym_title_declaration] = STATE(250), - [sym_author_declaration] = STATE(250), - [sym_package_include] = STATE(250), - [sym_class_include] = STATE(250), - [sym_latex_include] = STATE(250), - [sym_biblatex_include] = STATE(250), - [sym_bibtex_include] = STATE(250), - [sym_graphics_include] = STATE(250), - [sym_svg_include] = STATE(250), - [sym_inkscape_include] = STATE(250), - [sym_verbatim_include] = STATE(250), - [sym_import_include] = STATE(250), - [sym_caption] = STATE(250), - [sym_citation] = STATE(250), - [sym_label_definition] = STATE(250), - [sym_label_reference] = STATE(250), - [sym_label_reference_range] = STATE(250), - [sym_label_number] = STATE(250), - [sym_new_command_definition] = STATE(250), - [sym_old_command_definition] = STATE(250), - [sym_let_command_definition] = STATE(250), - [sym_math_delimiter] = STATE(250), - [sym_paired_delimiter_definition] = STATE(250), - [sym_environment_definition] = STATE(250), - [sym_glossary_entry_definition] = STATE(250), - [sym_glossary_entry_reference] = STATE(250), - [sym_acronym_definition] = STATE(250), - [sym_acronym_reference] = STATE(250), - [sym_theorem_definition] = STATE(250), - [sym_color_definition] = STATE(250), - [sym_color_set_definition] = STATE(250), - [sym_color_reference] = STATE(250), - [sym_tikz_library_import] = STATE(250), - [sym_text_mode] = STATE(250), - [aux_sym_part_repeat1] = STATE(250), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_RBRACK] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(2921), - [anon_sym_EQ] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_BSLASHpart] = ACTIONS(2274), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddpart] = ACTIONS(2274), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2276), - [anon_sym_BSLASHchapter] = ACTIONS(2274), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddchap] = ACTIONS(2274), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsection] = ACTIONS(2274), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHaddsec] = ACTIONS(2274), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubsection] = ACTIONS(2274), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2274), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2276), - [anon_sym_BSLASHparagraph] = ACTIONS(2274), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2276), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2274), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2276), - [anon_sym_BSLASHitem] = ACTIONS(2274), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1194), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1198), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2276), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(1252), - [anon_sym_BSLASHbig] = ACTIONS(1252), - [anon_sym_BSLASHBig] = ACTIONS(1252), - [anon_sym_BSLASHbigg] = ACTIONS(1252), - [anon_sym_BSLASHBigg] = ACTIONS(1252), - [anon_sym_BSLASHbigl] = ACTIONS(1252), - [anon_sym_BSLASHBigl] = ACTIONS(1252), - [anon_sym_BSLASHbiggl] = ACTIONS(1252), - [anon_sym_BSLASHBiggl] = ACTIONS(1252), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(1278), - [anon_sym_BSLASHintertext] = ACTIONS(1278), - [anon_sym_shortintertext] = ACTIONS(1278), - }, - [258] = { - [sym_block_comment] = STATE(258), - [sym__flat_content] = STATE(258), - [sym__text_with_env_content] = STATE(258), - [sym__text_content] = STATE(258), - [sym_curly_group] = STATE(258), - [sym_text] = STATE(258), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym_displayed_equation] = STATE(258), - [sym_inline_formula] = STATE(258), - [sym_begin] = STATE(73), - [sym_generic_environment] = STATE(258), - [sym_comment_environment] = STATE(258), - [sym__comment_environment_begin] = STATE(3152), - [sym_verbatim_environment] = STATE(258), - [sym__verbatim_environment_begin] = STATE(3151), - [sym_listing_environment] = STATE(258), - [sym__listing_environment_begin] = STATE(3149), - [sym_minted_environment] = STATE(258), - [sym__minted_environment_begin] = STATE(3148), - [sym_pycode_environment] = STATE(258), - [sym__pycode_environment_begin] = STATE(3146), - [sym_math_environment] = STATE(258), - [sym__math_environment_begin] = STATE(271), - [sym__command] = STATE(258), - [sym_generic_command] = STATE(258), - [sym_title_declaration] = STATE(258), - [sym_author_declaration] = STATE(258), - [sym_package_include] = STATE(258), - [sym_class_include] = STATE(258), - [sym_latex_include] = STATE(258), - [sym_biblatex_include] = STATE(258), - [sym_bibtex_include] = STATE(258), - [sym_graphics_include] = STATE(258), - [sym_svg_include] = STATE(258), - [sym_inkscape_include] = STATE(258), - [sym_verbatim_include] = STATE(258), - [sym_import_include] = STATE(258), - [sym_caption] = STATE(258), - [sym_citation] = STATE(258), - [sym_label_definition] = STATE(258), - [sym_label_reference] = STATE(258), - [sym_label_reference_range] = STATE(258), - [sym_label_number] = STATE(258), - [sym_new_command_definition] = STATE(258), - [sym_old_command_definition] = STATE(258), - [sym_let_command_definition] = STATE(258), - [sym_math_delimiter] = STATE(258), - [sym_paired_delimiter_definition] = STATE(258), - [sym_environment_definition] = STATE(258), - [sym_glossary_entry_definition] = STATE(258), - [sym_glossary_entry_reference] = STATE(258), - [sym_acronym_definition] = STATE(258), - [sym_acronym_reference] = STATE(258), - [sym_theorem_definition] = STATE(258), - [sym_color_definition] = STATE(258), - [sym_color_set_definition] = STATE(258), - [sym_color_reference] = STATE(258), - [sym_tikz_library_import] = STATE(258), - [sym_text_mode] = STATE(258), - [aux_sym_part_repeat1] = STATE(258), - [aux_sym_text_repeat1] = STATE(288), - [sym_command_name] = ACTIONS(2923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2926), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_RBRACK] = ACTIONS(2929), - [anon_sym_COMMA] = ACTIONS(2929), - [anon_sym_EQ] = ACTIONS(2929), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_RPAREN] = ACTIONS(2929), - [anon_sym_BSLASHpart] = ACTIONS(2287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddpart] = ACTIONS(2287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2289), - [anon_sym_BSLASHchapter] = ACTIONS(2287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddchap] = ACTIONS(2287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsection] = ACTIONS(2287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHaddsec] = ACTIONS(2287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubsection] = ACTIONS(2287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2289), - [anon_sym_BSLASHparagraph] = ACTIONS(2287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2289), - [anon_sym_BSLASHitem] = ACTIONS(2287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2932), - [sym_word] = ACTIONS(2935), - [sym_placeholder] = ACTIONS(2938), - [anon_sym_PLUS] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_SLASH] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2944), - [anon_sym_GT] = ACTIONS(2944), - [anon_sym_BANG] = ACTIONS(2944), - [anon_sym_PIPE] = ACTIONS(2944), - [anon_sym_COLON] = ACTIONS(2944), - [anon_sym_SQUOTE] = ACTIONS(2944), - [anon_sym__] = ACTIONS(2947), - [anon_sym_CARET] = ACTIONS(2950), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2953), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2953), - [anon_sym_DOLLAR] = ACTIONS(2956), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2959), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2289), - [anon_sym_BSLASHbegin] = ACTIONS(2321), - [anon_sym_BSLASHtitle] = ACTIONS(2962), - [anon_sym_BSLASHauthor] = ACTIONS(2965), - [anon_sym_BSLASHusepackage] = ACTIONS(2968), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2968), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2971), - [anon_sym_BSLASHinclude] = ACTIONS(2974), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2974), - [anon_sym_BSLASHinput] = ACTIONS(2974), - [anon_sym_BSLASHsubfile] = ACTIONS(2974), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2977), - [anon_sym_BSLASHbibliography] = ACTIONS(2980), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2983), - [anon_sym_BSLASHincludesvg] = ACTIONS(2986), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2989), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2992), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2992), - [anon_sym_BSLASHimport] = ACTIONS(2995), - [anon_sym_BSLASHsubimport] = ACTIONS(2995), - [anon_sym_BSLASHinputfrom] = ACTIONS(2995), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2995), - [anon_sym_BSLASHincludefrom] = ACTIONS(2995), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2995), - [anon_sym_BSLASHcaption] = ACTIONS(2998), - [anon_sym_BSLASHcite] = ACTIONS(3001), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3004), - [anon_sym_BSLASHCite] = ACTIONS(3001), - [anon_sym_BSLASHnocite] = ACTIONS(3001), - [anon_sym_BSLASHcitet] = ACTIONS(3001), - [anon_sym_BSLASHcitep] = ACTIONS(3001), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3004), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3004), - [anon_sym_BSLASHciteauthor] = ACTIONS(3001), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3004), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3001), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3004), - [anon_sym_BSLASHcitetitle] = ACTIONS(3001), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3004), - [anon_sym_BSLASHciteyear] = ACTIONS(3001), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3004), - [anon_sym_BSLASHcitedate] = ACTIONS(3001), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3004), - [anon_sym_BSLASHciteurl] = ACTIONS(3001), - [anon_sym_BSLASHfullcite] = ACTIONS(3001), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3001), - [anon_sym_BSLASHcitealt] = ACTIONS(3001), - [anon_sym_BSLASHcitealp] = ACTIONS(3001), - [anon_sym_BSLASHcitetext] = ACTIONS(3001), - [anon_sym_BSLASHparencite] = ACTIONS(3001), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3004), - [anon_sym_BSLASHParencite] = ACTIONS(3001), - [anon_sym_BSLASHfootcite] = ACTIONS(3001), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3001), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3001), - [anon_sym_BSLASHtextcite] = ACTIONS(3001), - [anon_sym_BSLASHTextcite] = ACTIONS(3001), - [anon_sym_BSLASHsmartcite] = ACTIONS(3001), - [anon_sym_BSLASHSmartcite] = ACTIONS(3001), - [anon_sym_BSLASHsupercite] = ACTIONS(3001), - [anon_sym_BSLASHautocite] = ACTIONS(3001), - [anon_sym_BSLASHAutocite] = ACTIONS(3001), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3004), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3004), - [anon_sym_BSLASHvolcite] = ACTIONS(3001), - [anon_sym_BSLASHVolcite] = ACTIONS(3001), - [anon_sym_BSLASHpvolcite] = ACTIONS(3001), - [anon_sym_BSLASHPvolcite] = ACTIONS(3001), - [anon_sym_BSLASHfvolcite] = ACTIONS(3001), - [anon_sym_BSLASHftvolcite] = ACTIONS(3001), - [anon_sym_BSLASHsvolcite] = ACTIONS(3001), - [anon_sym_BSLASHSvolcite] = ACTIONS(3001), - [anon_sym_BSLASHtvolcite] = ACTIONS(3001), - [anon_sym_BSLASHTvolcite] = ACTIONS(3001), - [anon_sym_BSLASHavolcite] = ACTIONS(3001), - [anon_sym_BSLASHAvolcite] = ACTIONS(3001), - [anon_sym_BSLASHnotecite] = ACTIONS(3001), - [anon_sym_BSLASHNotecite] = ACTIONS(3001), - [anon_sym_BSLASHpnotecite] = ACTIONS(3001), - [anon_sym_BSLASHPnotecite] = ACTIONS(3001), - [anon_sym_BSLASHfnotecite] = ACTIONS(3001), - [anon_sym_BSLASHlabel] = ACTIONS(3007), - [anon_sym_BSLASHref] = ACTIONS(3010), - [anon_sym_BSLASHeqref] = ACTIONS(3010), - [anon_sym_BSLASHvref] = ACTIONS(3010), - [anon_sym_BSLASHVref] = ACTIONS(3010), - [anon_sym_BSLASHautoref] = ACTIONS(3010), - [anon_sym_BSLASHpageref] = ACTIONS(3010), - [anon_sym_BSLASHcref] = ACTIONS(3010), - [anon_sym_BSLASHCref] = ACTIONS(3010), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3013), - [anon_sym_BSLASHnamecref] = ACTIONS(3010), - [anon_sym_BSLASHnameCref] = ACTIONS(3010), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3010), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3010), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3010), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3010), - [anon_sym_BSLASHlabelcref] = ACTIONS(3010), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3010), - [anon_sym_BSLASHcrefrange] = ACTIONS(3016), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3019), - [anon_sym_BSLASHCrefrange] = ACTIONS(3016), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3019), - [anon_sym_BSLASHnewlabel] = ACTIONS(3022), - [anon_sym_BSLASHnewcommand] = ACTIONS(3025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3028), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3028), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3028), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3028), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3025), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3025), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3025), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3025), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3025), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3025), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3025), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3025), - [anon_sym_BSLASHdef] = ACTIONS(3031), - [anon_sym_BSLASHlet] = ACTIONS(3034), - [anon_sym_BSLASHleft] = ACTIONS(3037), - [anon_sym_BSLASHbig] = ACTIONS(3037), - [anon_sym_BSLASHBig] = ACTIONS(3037), - [anon_sym_BSLASHbigg] = ACTIONS(3037), - [anon_sym_BSLASHBigg] = ACTIONS(3037), - [anon_sym_BSLASHbigl] = ACTIONS(3037), - [anon_sym_BSLASHBigl] = ACTIONS(3037), - [anon_sym_BSLASHbiggl] = ACTIONS(3037), - [anon_sym_BSLASHBiggl] = ACTIONS(3037), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3040), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3040), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3043), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3043), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3043), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3043), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3043), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3043), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3046), - [anon_sym_BSLASHgls] = ACTIONS(3049), - [anon_sym_BSLASHGls] = ACTIONS(3049), - [anon_sym_BSLASHGLS] = ACTIONS(3049), - [anon_sym_BSLASHglspl] = ACTIONS(3049), - [anon_sym_BSLASHGlspl] = ACTIONS(3049), - [anon_sym_BSLASHGLSpl] = ACTIONS(3049), - [anon_sym_BSLASHglsdisp] = ACTIONS(3049), - [anon_sym_BSLASHglslink] = ACTIONS(3049), - [anon_sym_BSLASHglstext] = ACTIONS(3049), - [anon_sym_BSLASHGlstext] = ACTIONS(3049), - [anon_sym_BSLASHGLStext] = ACTIONS(3049), - [anon_sym_BSLASHglsfirst] = ACTIONS(3049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3049), - [anon_sym_BSLASHglsplural] = ACTIONS(3049), - [anon_sym_BSLASHGlsplural] = ACTIONS(3049), - [anon_sym_BSLASHGLSplural] = ACTIONS(3049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3049), - [anon_sym_BSLASHglsname] = ACTIONS(3049), - [anon_sym_BSLASHGlsname] = ACTIONS(3049), - [anon_sym_BSLASHGLSname] = ACTIONS(3049), - [anon_sym_BSLASHglssymbol] = ACTIONS(3049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3049), - [anon_sym_BSLASHglsdesc] = ACTIONS(3049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3049), - [anon_sym_BSLASHglsuseri] = ACTIONS(3049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3049), - [anon_sym_BSLASHglsuserii] = ACTIONS(3049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3049), - [anon_sym_BSLASHglsuserv] = ACTIONS(3049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3049), - [anon_sym_BSLASHglsuservi] = ACTIONS(3049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3049), - [anon_sym_BSLASHnewacronym] = ACTIONS(3052), - [anon_sym_BSLASHacrshort] = ACTIONS(3055), - [anon_sym_BSLASHAcrshort] = ACTIONS(3055), - [anon_sym_BSLASHACRshort] = ACTIONS(3055), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3055), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3055), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3055), - [anon_sym_BSLASHacrlong] = ACTIONS(3055), - [anon_sym_BSLASHAcrlong] = ACTIONS(3055), - [anon_sym_BSLASHACRlong] = ACTIONS(3055), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3055), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3055), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3055), - [anon_sym_BSLASHacrfull] = ACTIONS(3055), - [anon_sym_BSLASHAcrfull] = ACTIONS(3055), - [anon_sym_BSLASHACRfull] = ACTIONS(3055), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3055), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3055), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3055), - [anon_sym_BSLASHacs] = ACTIONS(3055), - [anon_sym_BSLASHAcs] = ACTIONS(3055), - [anon_sym_BSLASHacsp] = ACTIONS(3055), - [anon_sym_BSLASHAcsp] = ACTIONS(3055), - [anon_sym_BSLASHacl] = ACTIONS(3055), - [anon_sym_BSLASHAcl] = ACTIONS(3055), - [anon_sym_BSLASHaclp] = ACTIONS(3055), - [anon_sym_BSLASHAclp] = ACTIONS(3055), - [anon_sym_BSLASHacf] = ACTIONS(3055), - [anon_sym_BSLASHAcf] = ACTIONS(3055), - [anon_sym_BSLASHacfp] = ACTIONS(3055), - [anon_sym_BSLASHAcfp] = ACTIONS(3055), - [anon_sym_BSLASHac] = ACTIONS(3055), - [anon_sym_BSLASHAc] = ACTIONS(3055), - [anon_sym_BSLASHacp] = ACTIONS(3055), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3055), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3055), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3055), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3055), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3055), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3055), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3055), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3055), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3055), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3055), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3058), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3061), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3058), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3061), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3064), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3067), - [anon_sym_BSLASHcolor] = ACTIONS(3070), - [anon_sym_BSLASHcolorbox] = ACTIONS(3070), - [anon_sym_BSLASHtextcolor] = ACTIONS(3070), - [anon_sym_BSLASHpagecolor] = ACTIONS(3070), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3073), - [anon_sym_BSLASHtext] = ACTIONS(3076), - [anon_sym_BSLASHintertext] = ACTIONS(3076), - [anon_sym_shortintertext] = ACTIONS(3076), - }, - [259] = { - [sym_block_comment] = STATE(484), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym__command] = STATE(484), - [sym_generic_command] = STATE(484), - [sym_title_declaration] = STATE(484), - [sym_author_declaration] = STATE(484), - [sym_package_include] = STATE(484), - [sym_class_include] = STATE(484), - [sym_latex_include] = STATE(484), - [sym_biblatex_include] = STATE(484), - [sym_bibtex_include] = STATE(484), - [sym_graphics_include] = STATE(484), - [sym_svg_include] = STATE(484), - [sym_inkscape_include] = STATE(484), - [sym_verbatim_include] = STATE(484), - [sym_import_include] = STATE(484), - [sym_caption] = STATE(484), - [sym_citation] = STATE(484), - [sym_label_definition] = STATE(484), - [sym_label_reference] = STATE(484), - [sym_label_reference_range] = STATE(484), - [sym_label_number] = STATE(484), - [sym_new_command_definition] = STATE(484), - [sym_old_command_definition] = STATE(484), - [sym_let_command_definition] = STATE(484), - [sym_paired_delimiter_definition] = STATE(484), - [sym_environment_definition] = STATE(484), - [sym_glossary_entry_definition] = STATE(484), - [sym_glossary_entry_reference] = STATE(484), - [sym_acronym_definition] = STATE(484), - [sym_acronym_reference] = STATE(484), - [sym_theorem_definition] = STATE(484), - [sym_color_definition] = STATE(484), - [sym_color_set_definition] = STATE(484), - [sym_color_reference] = STATE(484), - [sym_tikz_library_import] = STATE(484), - [aux_sym_text_repeat1] = STATE(260), - [sym_command_name] = ACTIONS(209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_BSLASHpart] = ACTIONS(3081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddpart] = ACTIONS(3081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(3079), - [anon_sym_BSLASHchapter] = ACTIONS(3081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddchap] = ACTIONS(3081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsection] = ACTIONS(3081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddsec] = ACTIONS(3081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubsection] = ACTIONS(3081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(3081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHparagraph] = ACTIONS(3081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(3081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(3079), - [anon_sym_BSLASHitem] = ACTIONS(3081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3079), - [sym_word] = ACTIONS(217), - [sym_placeholder] = ACTIONS(219), - [anon_sym_PLUS] = ACTIONS(221), - [anon_sym_DASH] = ACTIONS(221), - [anon_sym_STAR] = ACTIONS(221), - [anon_sym_SLASH] = ACTIONS(221), - [anon_sym_LT] = ACTIONS(223), - [anon_sym_GT] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(223), - [anon_sym_PIPE] = ACTIONS(223), - [anon_sym_COLON] = ACTIONS(223), - [anon_sym_SQUOTE] = ACTIONS(223), - [anon_sym__] = ACTIONS(225), - [anon_sym_CARET] = ACTIONS(227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3079), - [anon_sym_DOLLAR] = ACTIONS(3081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3079), - [anon_sym_BSLASHbegin] = ACTIONS(3081), - [anon_sym_BSLASHtitle] = ACTIONS(235), - [anon_sym_BSLASHauthor] = ACTIONS(237), - [anon_sym_BSLASHusepackage] = ACTIONS(239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(241), - [anon_sym_BSLASHinclude] = ACTIONS(243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(243), - [anon_sym_BSLASHinput] = ACTIONS(243), - [anon_sym_BSLASHsubfile] = ACTIONS(243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(245), - [anon_sym_BSLASHbibliography] = ACTIONS(247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(249), - [anon_sym_BSLASHincludesvg] = ACTIONS(251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(255), - [anon_sym_BSLASHimport] = ACTIONS(257), - [anon_sym_BSLASHsubimport] = ACTIONS(257), - [anon_sym_BSLASHinputfrom] = ACTIONS(257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(257), - [anon_sym_BSLASHincludefrom] = ACTIONS(257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(257), - [anon_sym_BSLASHcaption] = ACTIONS(259), - [anon_sym_BSLASHcite] = ACTIONS(261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(263), - [anon_sym_BSLASHCite] = ACTIONS(261), - [anon_sym_BSLASHnocite] = ACTIONS(261), - [anon_sym_BSLASHcitet] = ACTIONS(261), - [anon_sym_BSLASHcitep] = ACTIONS(261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteauthor] = ACTIONS(261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitetitle] = ACTIONS(261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteyear] = ACTIONS(261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(263), - [anon_sym_BSLASHcitedate] = ACTIONS(261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(263), - [anon_sym_BSLASHciteurl] = ACTIONS(261), - [anon_sym_BSLASHfullcite] = ACTIONS(261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(261), - [anon_sym_BSLASHcitealt] = ACTIONS(261), - [anon_sym_BSLASHcitealp] = ACTIONS(261), - [anon_sym_BSLASHcitetext] = ACTIONS(261), - [anon_sym_BSLASHparencite] = ACTIONS(261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(263), - [anon_sym_BSLASHParencite] = ACTIONS(261), - [anon_sym_BSLASHfootcite] = ACTIONS(261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(261), - [anon_sym_BSLASHtextcite] = ACTIONS(261), - [anon_sym_BSLASHTextcite] = ACTIONS(261), - [anon_sym_BSLASHsmartcite] = ACTIONS(261), - [anon_sym_BSLASHSmartcite] = ACTIONS(261), - [anon_sym_BSLASHsupercite] = ACTIONS(261), - [anon_sym_BSLASHautocite] = ACTIONS(261), - [anon_sym_BSLASHAutocite] = ACTIONS(261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(263), - [anon_sym_BSLASHvolcite] = ACTIONS(261), - [anon_sym_BSLASHVolcite] = ACTIONS(261), - [anon_sym_BSLASHpvolcite] = ACTIONS(261), - [anon_sym_BSLASHPvolcite] = ACTIONS(261), - [anon_sym_BSLASHfvolcite] = ACTIONS(261), - [anon_sym_BSLASHftvolcite] = ACTIONS(261), - [anon_sym_BSLASHsvolcite] = ACTIONS(261), - [anon_sym_BSLASHSvolcite] = ACTIONS(261), - [anon_sym_BSLASHtvolcite] = ACTIONS(261), - [anon_sym_BSLASHTvolcite] = ACTIONS(261), - [anon_sym_BSLASHavolcite] = ACTIONS(261), - [anon_sym_BSLASHAvolcite] = ACTIONS(261), - [anon_sym_BSLASHnotecite] = ACTIONS(261), - [anon_sym_BSLASHNotecite] = ACTIONS(261), - [anon_sym_BSLASHpnotecite] = ACTIONS(261), - [anon_sym_BSLASHPnotecite] = ACTIONS(261), - [anon_sym_BSLASHfnotecite] = ACTIONS(261), - [anon_sym_BSLASHlabel] = ACTIONS(265), - [anon_sym_BSLASHref] = ACTIONS(267), - [anon_sym_BSLASHeqref] = ACTIONS(267), - [anon_sym_BSLASHvref] = ACTIONS(267), - [anon_sym_BSLASHVref] = ACTIONS(267), - [anon_sym_BSLASHautoref] = ACTIONS(267), - [anon_sym_BSLASHpageref] = ACTIONS(267), - [anon_sym_BSLASHcref] = ACTIONS(267), - [anon_sym_BSLASHCref] = ACTIONS(267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(269), - [anon_sym_BSLASHnamecref] = ACTIONS(267), - [anon_sym_BSLASHnameCref] = ACTIONS(267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(267), - [anon_sym_BSLASHlabelcref] = ACTIONS(267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(267), - [anon_sym_BSLASHcrefrange] = ACTIONS(271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHCrefrange] = ACTIONS(271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(273), - [anon_sym_BSLASHnewlabel] = ACTIONS(275), - [anon_sym_BSLASHnewcommand] = ACTIONS(277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(277), - [anon_sym_BSLASHdef] = ACTIONS(281), - [anon_sym_BSLASHlet] = ACTIONS(283), - [anon_sym_BSLASHleft] = ACTIONS(3081), - [anon_sym_BSLASHbig] = ACTIONS(3081), - [anon_sym_BSLASHBig] = ACTIONS(3081), - [anon_sym_BSLASHbigg] = ACTIONS(3081), - [anon_sym_BSLASHBigg] = ACTIONS(3081), - [anon_sym_BSLASHbigl] = ACTIONS(3081), - [anon_sym_BSLASHBigl] = ACTIONS(3081), - [anon_sym_BSLASHbiggl] = ACTIONS(3081), - [anon_sym_BSLASHBiggl] = ACTIONS(3081), - [anon_sym_BSLASHright] = ACTIONS(3081), - [anon_sym_BSLASHbigr] = ACTIONS(3081), - [anon_sym_BSLASHBigr] = ACTIONS(3081), - [anon_sym_BSLASHbiggr] = ACTIONS(3081), - [anon_sym_BSLASHBiggr] = ACTIONS(3081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(291), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(295), - [anon_sym_BSLASHgls] = ACTIONS(297), - [anon_sym_BSLASHGls] = ACTIONS(297), - [anon_sym_BSLASHGLS] = ACTIONS(297), - [anon_sym_BSLASHglspl] = ACTIONS(297), - [anon_sym_BSLASHGlspl] = ACTIONS(297), - [anon_sym_BSLASHGLSpl] = ACTIONS(297), - [anon_sym_BSLASHglsdisp] = ACTIONS(297), - [anon_sym_BSLASHglslink] = ACTIONS(297), - [anon_sym_BSLASHglstext] = ACTIONS(297), - [anon_sym_BSLASHGlstext] = ACTIONS(297), - [anon_sym_BSLASHGLStext] = ACTIONS(297), - [anon_sym_BSLASHglsfirst] = ACTIONS(297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(297), - [anon_sym_BSLASHglsplural] = ACTIONS(297), - [anon_sym_BSLASHGlsplural] = ACTIONS(297), - [anon_sym_BSLASHGLSplural] = ACTIONS(297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(297), - [anon_sym_BSLASHglsname] = ACTIONS(297), - [anon_sym_BSLASHGlsname] = ACTIONS(297), - [anon_sym_BSLASHGLSname] = ACTIONS(297), - [anon_sym_BSLASHglssymbol] = ACTIONS(297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(297), - [anon_sym_BSLASHglsdesc] = ACTIONS(297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(297), - [anon_sym_BSLASHglsuseri] = ACTIONS(297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(297), - [anon_sym_BSLASHglsuserii] = ACTIONS(297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(297), - [anon_sym_BSLASHglsuserv] = ACTIONS(297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(297), - [anon_sym_BSLASHglsuservi] = ACTIONS(297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(297), - [anon_sym_BSLASHnewacronym] = ACTIONS(299), - [anon_sym_BSLASHacrshort] = ACTIONS(301), - [anon_sym_BSLASHAcrshort] = ACTIONS(301), - [anon_sym_BSLASHACRshort] = ACTIONS(301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(301), - [anon_sym_BSLASHacrlong] = ACTIONS(301), - [anon_sym_BSLASHAcrlong] = ACTIONS(301), - [anon_sym_BSLASHACRlong] = ACTIONS(301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(301), - [anon_sym_BSLASHacrfull] = ACTIONS(301), - [anon_sym_BSLASHAcrfull] = ACTIONS(301), - [anon_sym_BSLASHACRfull] = ACTIONS(301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(301), - [anon_sym_BSLASHacs] = ACTIONS(301), - [anon_sym_BSLASHAcs] = ACTIONS(301), - [anon_sym_BSLASHacsp] = ACTIONS(301), - [anon_sym_BSLASHAcsp] = ACTIONS(301), - [anon_sym_BSLASHacl] = ACTIONS(301), - [anon_sym_BSLASHAcl] = ACTIONS(301), - [anon_sym_BSLASHaclp] = ACTIONS(301), - [anon_sym_BSLASHAclp] = ACTIONS(301), - [anon_sym_BSLASHacf] = ACTIONS(301), - [anon_sym_BSLASHAcf] = ACTIONS(301), - [anon_sym_BSLASHacfp] = ACTIONS(301), - [anon_sym_BSLASHAcfp] = ACTIONS(301), - [anon_sym_BSLASHac] = ACTIONS(301), - [anon_sym_BSLASHAc] = ACTIONS(301), - [anon_sym_BSLASHacp] = ACTIONS(301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(303), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(303), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(307), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(309), - [anon_sym_BSLASHcolor] = ACTIONS(311), - [anon_sym_BSLASHcolorbox] = ACTIONS(311), - [anon_sym_BSLASHtextcolor] = ACTIONS(311), - [anon_sym_BSLASHpagecolor] = ACTIONS(311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(313), - [anon_sym_BSLASHtext] = ACTIONS(3081), - [anon_sym_BSLASHintertext] = ACTIONS(3081), - [anon_sym_shortintertext] = ACTIONS(3081), - }, - [260] = { - [sym_block_comment] = STATE(484), - [sym_operator] = STATE(484), - [sym_subscript] = STATE(484), - [sym_superscript] = STATE(484), - [sym__command] = STATE(484), - [sym_generic_command] = STATE(484), - [sym_title_declaration] = STATE(484), - [sym_author_declaration] = STATE(484), - [sym_package_include] = STATE(484), - [sym_class_include] = STATE(484), - [sym_latex_include] = STATE(484), - [sym_biblatex_include] = STATE(484), - [sym_bibtex_include] = STATE(484), - [sym_graphics_include] = STATE(484), - [sym_svg_include] = STATE(484), - [sym_inkscape_include] = STATE(484), - [sym_verbatim_include] = STATE(484), - [sym_import_include] = STATE(484), - [sym_caption] = STATE(484), - [sym_citation] = STATE(484), - [sym_label_definition] = STATE(484), - [sym_label_reference] = STATE(484), - [sym_label_reference_range] = STATE(484), - [sym_label_number] = STATE(484), - [sym_new_command_definition] = STATE(484), - [sym_old_command_definition] = STATE(484), - [sym_let_command_definition] = STATE(484), - [sym_paired_delimiter_definition] = STATE(484), - [sym_environment_definition] = STATE(484), - [sym_glossary_entry_definition] = STATE(484), - [sym_glossary_entry_reference] = STATE(484), - [sym_acronym_definition] = STATE(484), - [sym_acronym_reference] = STATE(484), - [sym_theorem_definition] = STATE(484), - [sym_color_definition] = STATE(484), - [sym_color_set_definition] = STATE(484), - [sym_color_reference] = STATE(484), - [sym_tikz_library_import] = STATE(484), - [aux_sym_text_repeat1] = STATE(260), - [sym_command_name] = ACTIONS(3083), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_BSLASHpart] = ACTIONS(3091), - [anon_sym_BSLASHpart_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddpart] = ACTIONS(3091), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(3089), - [anon_sym_BSLASHchapter] = ACTIONS(3091), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddchap] = ACTIONS(3091), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsection] = ACTIONS(3091), - [anon_sym_BSLASHsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddsec] = ACTIONS(3091), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubsection] = ACTIONS(3091), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubsubsection] = ACTIONS(3091), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHparagraph] = ACTIONS(3091), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubparagraph] = ACTIONS(3091), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(3089), - [anon_sym_BSLASHitem] = ACTIONS(3091), - [anon_sym_BSLASHitem_STAR] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [sym_word] = ACTIONS(3093), - [sym_placeholder] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_SLASH] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3102), - [anon_sym_GT] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3102), - [anon_sym_PIPE] = ACTIONS(3102), - [anon_sym_COLON] = ACTIONS(3102), - [anon_sym_SQUOTE] = ACTIONS(3102), - [anon_sym__] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3108), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3089), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3089), - [anon_sym_BSLASHbegin] = ACTIONS(3091), - [anon_sym_BSLASHtitle] = ACTIONS(3111), - [anon_sym_BSLASHauthor] = ACTIONS(3114), - [anon_sym_BSLASHusepackage] = ACTIONS(3117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3120), - [anon_sym_BSLASHinclude] = ACTIONS(3123), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3123), - [anon_sym_BSLASHinput] = ACTIONS(3123), - [anon_sym_BSLASHsubfile] = ACTIONS(3123), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3126), - [anon_sym_BSLASHbibliography] = ACTIONS(3129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3132), - [anon_sym_BSLASHincludesvg] = ACTIONS(3135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3141), - [anon_sym_BSLASHimport] = ACTIONS(3144), - [anon_sym_BSLASHsubimport] = ACTIONS(3144), - [anon_sym_BSLASHinputfrom] = ACTIONS(3144), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3144), - [anon_sym_BSLASHincludefrom] = ACTIONS(3144), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3144), - [anon_sym_BSLASHcaption] = ACTIONS(3147), - [anon_sym_BSLASHcite] = ACTIONS(3150), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3153), - [anon_sym_BSLASHCite] = ACTIONS(3150), - [anon_sym_BSLASHnocite] = ACTIONS(3150), - [anon_sym_BSLASHcitet] = ACTIONS(3150), - [anon_sym_BSLASHcitep] = ACTIONS(3150), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3153), - [anon_sym_BSLASHciteauthor] = ACTIONS(3150), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3150), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3153), - [anon_sym_BSLASHcitetitle] = ACTIONS(3150), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3153), - [anon_sym_BSLASHciteyear] = ACTIONS(3150), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3153), - [anon_sym_BSLASHcitedate] = ACTIONS(3150), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3153), - [anon_sym_BSLASHciteurl] = ACTIONS(3150), - [anon_sym_BSLASHfullcite] = ACTIONS(3150), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3150), - [anon_sym_BSLASHcitealt] = ACTIONS(3150), - [anon_sym_BSLASHcitealp] = ACTIONS(3150), - [anon_sym_BSLASHcitetext] = ACTIONS(3150), - [anon_sym_BSLASHparencite] = ACTIONS(3150), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3153), - [anon_sym_BSLASHParencite] = ACTIONS(3150), - [anon_sym_BSLASHfootcite] = ACTIONS(3150), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3150), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3150), - [anon_sym_BSLASHtextcite] = ACTIONS(3150), - [anon_sym_BSLASHTextcite] = ACTIONS(3150), - [anon_sym_BSLASHsmartcite] = ACTIONS(3150), - [anon_sym_BSLASHSmartcite] = ACTIONS(3150), - [anon_sym_BSLASHsupercite] = ACTIONS(3150), - [anon_sym_BSLASHautocite] = ACTIONS(3150), - [anon_sym_BSLASHAutocite] = ACTIONS(3150), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3153), - [anon_sym_BSLASHvolcite] = ACTIONS(3150), - [anon_sym_BSLASHVolcite] = ACTIONS(3150), - [anon_sym_BSLASHpvolcite] = ACTIONS(3150), - [anon_sym_BSLASHPvolcite] = ACTIONS(3150), - [anon_sym_BSLASHfvolcite] = ACTIONS(3150), - [anon_sym_BSLASHftvolcite] = ACTIONS(3150), - [anon_sym_BSLASHsvolcite] = ACTIONS(3150), - [anon_sym_BSLASHSvolcite] = ACTIONS(3150), - [anon_sym_BSLASHtvolcite] = ACTIONS(3150), - [anon_sym_BSLASHTvolcite] = ACTIONS(3150), - [anon_sym_BSLASHavolcite] = ACTIONS(3150), - [anon_sym_BSLASHAvolcite] = ACTIONS(3150), - [anon_sym_BSLASHnotecite] = ACTIONS(3150), - [anon_sym_BSLASHNotecite] = ACTIONS(3150), - [anon_sym_BSLASHpnotecite] = ACTIONS(3150), - [anon_sym_BSLASHPnotecite] = ACTIONS(3150), - [anon_sym_BSLASHfnotecite] = ACTIONS(3150), - [anon_sym_BSLASHlabel] = ACTIONS(3156), - [anon_sym_BSLASHref] = ACTIONS(3159), - [anon_sym_BSLASHeqref] = ACTIONS(3159), - [anon_sym_BSLASHvref] = ACTIONS(3159), - [anon_sym_BSLASHVref] = ACTIONS(3159), - [anon_sym_BSLASHautoref] = ACTIONS(3159), - [anon_sym_BSLASHpageref] = ACTIONS(3159), - [anon_sym_BSLASHcref] = ACTIONS(3159), - [anon_sym_BSLASHCref] = ACTIONS(3159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3162), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3162), - [anon_sym_BSLASHnamecref] = ACTIONS(3159), - [anon_sym_BSLASHnameCref] = ACTIONS(3159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3159), - [anon_sym_BSLASHlabelcref] = ACTIONS(3159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3159), - [anon_sym_BSLASHcrefrange] = ACTIONS(3165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3168), - [anon_sym_BSLASHCrefrange] = ACTIONS(3165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3168), - [anon_sym_BSLASHnewlabel] = ACTIONS(3171), - [anon_sym_BSLASHnewcommand] = ACTIONS(3174), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3174), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3174), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3174), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3177), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3174), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3174), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3174), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3174), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3174), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3174), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3174), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3174), - [anon_sym_BSLASHdef] = ACTIONS(3180), - [anon_sym_BSLASHlet] = ACTIONS(3183), - [anon_sym_BSLASHleft] = ACTIONS(3091), - [anon_sym_BSLASHbig] = ACTIONS(3091), - [anon_sym_BSLASHBig] = ACTIONS(3091), - [anon_sym_BSLASHbigg] = ACTIONS(3091), - [anon_sym_BSLASHBigg] = ACTIONS(3091), - [anon_sym_BSLASHbigl] = ACTIONS(3091), - [anon_sym_BSLASHBigl] = ACTIONS(3091), - [anon_sym_BSLASHbiggl] = ACTIONS(3091), - [anon_sym_BSLASHBiggl] = ACTIONS(3091), - [anon_sym_BSLASHright] = ACTIONS(3091), - [anon_sym_BSLASHbigr] = ACTIONS(3091), - [anon_sym_BSLASHBigr] = ACTIONS(3091), - [anon_sym_BSLASHbiggr] = ACTIONS(3091), - [anon_sym_BSLASHBiggr] = ACTIONS(3091), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3186), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3186), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3192), - [anon_sym_BSLASHgls] = ACTIONS(3195), - [anon_sym_BSLASHGls] = ACTIONS(3195), - [anon_sym_BSLASHGLS] = ACTIONS(3195), - [anon_sym_BSLASHglspl] = ACTIONS(3195), - [anon_sym_BSLASHGlspl] = ACTIONS(3195), - [anon_sym_BSLASHGLSpl] = ACTIONS(3195), - [anon_sym_BSLASHglsdisp] = ACTIONS(3195), - [anon_sym_BSLASHglslink] = ACTIONS(3195), - [anon_sym_BSLASHglstext] = ACTIONS(3195), - [anon_sym_BSLASHGlstext] = ACTIONS(3195), - [anon_sym_BSLASHGLStext] = ACTIONS(3195), - [anon_sym_BSLASHglsfirst] = ACTIONS(3195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3195), - [anon_sym_BSLASHglsplural] = ACTIONS(3195), - [anon_sym_BSLASHGlsplural] = ACTIONS(3195), - [anon_sym_BSLASHGLSplural] = ACTIONS(3195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3195), - [anon_sym_BSLASHglsname] = ACTIONS(3195), - [anon_sym_BSLASHGlsname] = ACTIONS(3195), - [anon_sym_BSLASHGLSname] = ACTIONS(3195), - [anon_sym_BSLASHglssymbol] = ACTIONS(3195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3195), - [anon_sym_BSLASHglsdesc] = ACTIONS(3195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3195), - [anon_sym_BSLASHglsuseri] = ACTIONS(3195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3195), - [anon_sym_BSLASHglsuserii] = ACTIONS(3195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3195), - [anon_sym_BSLASHglsuserv] = ACTIONS(3195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3195), - [anon_sym_BSLASHglsuservi] = ACTIONS(3195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3195), - [anon_sym_BSLASHnewacronym] = ACTIONS(3198), - [anon_sym_BSLASHacrshort] = ACTIONS(3201), - [anon_sym_BSLASHAcrshort] = ACTIONS(3201), - [anon_sym_BSLASHACRshort] = ACTIONS(3201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3201), - [anon_sym_BSLASHacrlong] = ACTIONS(3201), - [anon_sym_BSLASHAcrlong] = ACTIONS(3201), - [anon_sym_BSLASHACRlong] = ACTIONS(3201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3201), - [anon_sym_BSLASHacrfull] = ACTIONS(3201), - [anon_sym_BSLASHAcrfull] = ACTIONS(3201), - [anon_sym_BSLASHACRfull] = ACTIONS(3201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3201), - [anon_sym_BSLASHacs] = ACTIONS(3201), - [anon_sym_BSLASHAcs] = ACTIONS(3201), - [anon_sym_BSLASHacsp] = ACTIONS(3201), - [anon_sym_BSLASHAcsp] = ACTIONS(3201), - [anon_sym_BSLASHacl] = ACTIONS(3201), - [anon_sym_BSLASHAcl] = ACTIONS(3201), - [anon_sym_BSLASHaclp] = ACTIONS(3201), - [anon_sym_BSLASHAclp] = ACTIONS(3201), - [anon_sym_BSLASHacf] = ACTIONS(3201), - [anon_sym_BSLASHAcf] = ACTIONS(3201), - [anon_sym_BSLASHacfp] = ACTIONS(3201), - [anon_sym_BSLASHAcfp] = ACTIONS(3201), - [anon_sym_BSLASHac] = ACTIONS(3201), - [anon_sym_BSLASHAc] = ACTIONS(3201), - [anon_sym_BSLASHacp] = ACTIONS(3201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3204), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3204), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3210), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3213), - [anon_sym_BSLASHcolor] = ACTIONS(3216), - [anon_sym_BSLASHcolorbox] = ACTIONS(3216), - [anon_sym_BSLASHtextcolor] = ACTIONS(3216), - [anon_sym_BSLASHpagecolor] = ACTIONS(3216), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3219), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3219), - [anon_sym_BSLASHtext] = ACTIONS(3091), - [anon_sym_BSLASHintertext] = ACTIONS(3091), - [anon_sym_shortintertext] = ACTIONS(3091), - }, - [261] = { - [sym_block_comment] = STATE(268), - [sym__flat_content] = STATE(268), - [sym__text_with_env_content] = STATE(268), - [sym__text_content] = STATE(268), - [sym_curly_group] = STATE(268), - [sym_text] = STATE(268), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(268), - [sym_inline_formula] = STATE(268), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(268), - [sym_comment_environment] = STATE(268), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(268), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(268), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(268), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(268), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(268), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(1200), - [sym__command] = STATE(268), - [sym_generic_command] = STATE(268), - [sym_title_declaration] = STATE(268), - [sym_author_declaration] = STATE(268), - [sym_package_include] = STATE(268), - [sym_class_include] = STATE(268), - [sym_latex_include] = STATE(268), - [sym_biblatex_include] = STATE(268), - [sym_bibtex_include] = STATE(268), - [sym_graphics_include] = STATE(268), - [sym_svg_include] = STATE(268), - [sym_inkscape_include] = STATE(268), - [sym_verbatim_include] = STATE(268), - [sym_import_include] = STATE(268), - [sym_caption] = STATE(268), - [sym_citation] = STATE(268), - [sym_label_definition] = STATE(268), - [sym_label_reference] = STATE(268), - [sym_label_reference_range] = STATE(268), - [sym_label_number] = STATE(268), - [sym_new_command_definition] = STATE(268), - [sym_old_command_definition] = STATE(268), - [sym_let_command_definition] = STATE(268), - [sym_math_delimiter] = STATE(268), - [sym_paired_delimiter_definition] = STATE(268), - [sym_environment_definition] = STATE(268), - [sym_glossary_entry_definition] = STATE(268), - [sym_glossary_entry_reference] = STATE(268), - [sym_acronym_definition] = STATE(268), - [sym_acronym_reference] = STATE(268), - [sym_theorem_definition] = STATE(268), - [sym_color_definition] = STATE(268), - [sym_color_set_definition] = STATE(268), - [sym_color_reference] = STATE(268), - [sym_tikz_library_import] = STATE(268), - [sym_text_mode] = STATE(268), - [aux_sym_part_repeat1] = STATE(268), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_RBRACK] = ACTIONS(3226), - [anon_sym_COMMA] = ACTIONS(3226), - [anon_sym_EQ] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_RPAREN] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3248), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [262] = { - [sym_block_comment] = STATE(267), - [sym__flat_content] = STATE(267), - [sym__text_with_env_content] = STATE(267), - [sym__text_content] = STATE(267), - [sym_curly_group] = STATE(267), - [sym_text] = STATE(267), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(267), - [sym_inline_formula] = STATE(267), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(267), - [sym_comment_environment] = STATE(267), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(267), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(267), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(267), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(267), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(267), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(1527), - [sym__command] = STATE(267), - [sym_generic_command] = STATE(267), - [sym_title_declaration] = STATE(267), - [sym_author_declaration] = STATE(267), - [sym_package_include] = STATE(267), - [sym_class_include] = STATE(267), - [sym_latex_include] = STATE(267), - [sym_biblatex_include] = STATE(267), - [sym_bibtex_include] = STATE(267), - [sym_graphics_include] = STATE(267), - [sym_svg_include] = STATE(267), - [sym_inkscape_include] = STATE(267), - [sym_verbatim_include] = STATE(267), - [sym_import_include] = STATE(267), - [sym_caption] = STATE(267), - [sym_citation] = STATE(267), - [sym_label_definition] = STATE(267), - [sym_label_reference] = STATE(267), - [sym_label_reference_range] = STATE(267), - [sym_label_number] = STATE(267), - [sym_new_command_definition] = STATE(267), - [sym_old_command_definition] = STATE(267), - [sym_let_command_definition] = STATE(267), - [sym_math_delimiter] = STATE(267), - [sym_paired_delimiter_definition] = STATE(267), - [sym_environment_definition] = STATE(267), - [sym_glossary_entry_definition] = STATE(267), - [sym_glossary_entry_reference] = STATE(267), - [sym_acronym_definition] = STATE(267), - [sym_acronym_reference] = STATE(267), - [sym_theorem_definition] = STATE(267), - [sym_color_definition] = STATE(267), - [sym_color_set_definition] = STATE(267), - [sym_color_reference] = STATE(267), - [sym_tikz_library_import] = STATE(267), - [sym_text_mode] = STATE(267), - [aux_sym_part_repeat1] = STATE(267), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_RBRACK] = ACTIONS(3328), - [anon_sym_COMMA] = ACTIONS(3328), - [anon_sym_EQ] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_RPAREN] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3330), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [263] = { - [sym_block_comment] = STATE(275), - [sym__flat_content] = STATE(275), - [sym__text_with_env_content] = STATE(275), - [sym__text_content] = STATE(275), - [sym_curly_group] = STATE(275), - [sym_text] = STATE(275), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(275), - [sym_inline_formula] = STATE(275), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(275), - [sym_comment_environment] = STATE(275), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(275), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(275), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(275), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(275), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(275), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(538), - [sym__command] = STATE(275), - [sym_generic_command] = STATE(275), - [sym_title_declaration] = STATE(275), - [sym_author_declaration] = STATE(275), - [sym_package_include] = STATE(275), - [sym_class_include] = STATE(275), - [sym_latex_include] = STATE(275), - [sym_biblatex_include] = STATE(275), - [sym_bibtex_include] = STATE(275), - [sym_graphics_include] = STATE(275), - [sym_svg_include] = STATE(275), - [sym_inkscape_include] = STATE(275), - [sym_verbatim_include] = STATE(275), - [sym_import_include] = STATE(275), - [sym_caption] = STATE(275), - [sym_citation] = STATE(275), - [sym_label_definition] = STATE(275), - [sym_label_reference] = STATE(275), - [sym_label_reference_range] = STATE(275), - [sym_label_number] = STATE(275), - [sym_new_command_definition] = STATE(275), - [sym_old_command_definition] = STATE(275), - [sym_let_command_definition] = STATE(275), - [sym_math_delimiter] = STATE(275), - [sym_paired_delimiter_definition] = STATE(275), - [sym_environment_definition] = STATE(275), - [sym_glossary_entry_definition] = STATE(275), - [sym_glossary_entry_reference] = STATE(275), - [sym_acronym_definition] = STATE(275), - [sym_acronym_reference] = STATE(275), - [sym_theorem_definition] = STATE(275), - [sym_color_definition] = STATE(275), - [sym_color_set_definition] = STATE(275), - [sym_color_reference] = STATE(275), - [sym_tikz_library_import] = STATE(275), - [sym_text_mode] = STATE(275), - [aux_sym_part_repeat1] = STATE(275), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_RBRACK] = ACTIONS(3332), - [anon_sym_COMMA] = ACTIONS(3332), - [anon_sym_EQ] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_RPAREN] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3334), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [264] = { - [sym_block_comment] = STATE(275), - [sym__flat_content] = STATE(275), - [sym__text_with_env_content] = STATE(275), - [sym__text_content] = STATE(275), - [sym_curly_group] = STATE(275), - [sym_text] = STATE(275), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(275), - [sym_inline_formula] = STATE(275), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(275), - [sym_comment_environment] = STATE(275), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(275), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(275), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(275), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(275), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(275), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(1011), - [sym__command] = STATE(275), - [sym_generic_command] = STATE(275), - [sym_title_declaration] = STATE(275), - [sym_author_declaration] = STATE(275), - [sym_package_include] = STATE(275), - [sym_class_include] = STATE(275), - [sym_latex_include] = STATE(275), - [sym_biblatex_include] = STATE(275), - [sym_bibtex_include] = STATE(275), - [sym_graphics_include] = STATE(275), - [sym_svg_include] = STATE(275), - [sym_inkscape_include] = STATE(275), - [sym_verbatim_include] = STATE(275), - [sym_import_include] = STATE(275), - [sym_caption] = STATE(275), - [sym_citation] = STATE(275), - [sym_label_definition] = STATE(275), - [sym_label_reference] = STATE(275), - [sym_label_reference_range] = STATE(275), - [sym_label_number] = STATE(275), - [sym_new_command_definition] = STATE(275), - [sym_old_command_definition] = STATE(275), - [sym_let_command_definition] = STATE(275), - [sym_math_delimiter] = STATE(275), - [sym_paired_delimiter_definition] = STATE(275), - [sym_environment_definition] = STATE(275), - [sym_glossary_entry_definition] = STATE(275), - [sym_glossary_entry_reference] = STATE(275), - [sym_acronym_definition] = STATE(275), - [sym_acronym_reference] = STATE(275), - [sym_theorem_definition] = STATE(275), - [sym_color_definition] = STATE(275), - [sym_color_set_definition] = STATE(275), - [sym_color_reference] = STATE(275), - [sym_tikz_library_import] = STATE(275), - [sym_text_mode] = STATE(275), - [aux_sym_part_repeat1] = STATE(275), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_RBRACK] = ACTIONS(3332), - [anon_sym_COMMA] = ACTIONS(3332), - [anon_sym_EQ] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_RPAREN] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3336), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [265] = { - [sym_block_comment] = STATE(275), - [sym__flat_content] = STATE(275), - [sym__text_with_env_content] = STATE(275), - [sym__text_content] = STATE(275), - [sym_curly_group] = STATE(275), - [sym_text] = STATE(275), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(275), - [sym_inline_formula] = STATE(275), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(275), - [sym_comment_environment] = STATE(275), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(275), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(275), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(275), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(275), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(275), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(1316), - [sym__command] = STATE(275), - [sym_generic_command] = STATE(275), - [sym_title_declaration] = STATE(275), - [sym_author_declaration] = STATE(275), - [sym_package_include] = STATE(275), - [sym_class_include] = STATE(275), - [sym_latex_include] = STATE(275), - [sym_biblatex_include] = STATE(275), - [sym_bibtex_include] = STATE(275), - [sym_graphics_include] = STATE(275), - [sym_svg_include] = STATE(275), - [sym_inkscape_include] = STATE(275), - [sym_verbatim_include] = STATE(275), - [sym_import_include] = STATE(275), - [sym_caption] = STATE(275), - [sym_citation] = STATE(275), - [sym_label_definition] = STATE(275), - [sym_label_reference] = STATE(275), - [sym_label_reference_range] = STATE(275), - [sym_label_number] = STATE(275), - [sym_new_command_definition] = STATE(275), - [sym_old_command_definition] = STATE(275), - [sym_let_command_definition] = STATE(275), - [sym_math_delimiter] = STATE(275), - [sym_paired_delimiter_definition] = STATE(275), - [sym_environment_definition] = STATE(275), - [sym_glossary_entry_definition] = STATE(275), - [sym_glossary_entry_reference] = STATE(275), - [sym_acronym_definition] = STATE(275), - [sym_acronym_reference] = STATE(275), - [sym_theorem_definition] = STATE(275), - [sym_color_definition] = STATE(275), - [sym_color_set_definition] = STATE(275), - [sym_color_reference] = STATE(275), - [sym_tikz_library_import] = STATE(275), - [sym_text_mode] = STATE(275), - [aux_sym_part_repeat1] = STATE(275), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_RBRACK] = ACTIONS(3332), - [anon_sym_COMMA] = ACTIONS(3332), - [anon_sym_EQ] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_RPAREN] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3338), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [266] = { - [sym_block_comment] = STATE(275), - [sym__flat_content] = STATE(275), - [sym__text_with_env_content] = STATE(275), - [sym__text_content] = STATE(275), - [sym_curly_group] = STATE(275), - [sym_text] = STATE(275), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(275), - [sym_inline_formula] = STATE(275), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(275), - [sym_comment_environment] = STATE(275), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(275), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(275), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(275), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(275), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(275), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(1725), - [sym__command] = STATE(275), - [sym_generic_command] = STATE(275), - [sym_title_declaration] = STATE(275), - [sym_author_declaration] = STATE(275), - [sym_package_include] = STATE(275), - [sym_class_include] = STATE(275), - [sym_latex_include] = STATE(275), - [sym_biblatex_include] = STATE(275), - [sym_bibtex_include] = STATE(275), - [sym_graphics_include] = STATE(275), - [sym_svg_include] = STATE(275), - [sym_inkscape_include] = STATE(275), - [sym_verbatim_include] = STATE(275), - [sym_import_include] = STATE(275), - [sym_caption] = STATE(275), - [sym_citation] = STATE(275), - [sym_label_definition] = STATE(275), - [sym_label_reference] = STATE(275), - [sym_label_reference_range] = STATE(275), - [sym_label_number] = STATE(275), - [sym_new_command_definition] = STATE(275), - [sym_old_command_definition] = STATE(275), - [sym_let_command_definition] = STATE(275), - [sym_math_delimiter] = STATE(275), - [sym_paired_delimiter_definition] = STATE(275), - [sym_environment_definition] = STATE(275), - [sym_glossary_entry_definition] = STATE(275), - [sym_glossary_entry_reference] = STATE(275), - [sym_acronym_definition] = STATE(275), - [sym_acronym_reference] = STATE(275), - [sym_theorem_definition] = STATE(275), - [sym_color_definition] = STATE(275), - [sym_color_set_definition] = STATE(275), - [sym_color_reference] = STATE(275), - [sym_tikz_library_import] = STATE(275), - [sym_text_mode] = STATE(275), - [aux_sym_part_repeat1] = STATE(275), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_RBRACK] = ACTIONS(3332), - [anon_sym_COMMA] = ACTIONS(3332), - [anon_sym_EQ] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_RPAREN] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3340), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [267] = { - [sym_block_comment] = STATE(275), - [sym__flat_content] = STATE(275), - [sym__text_with_env_content] = STATE(275), - [sym__text_content] = STATE(275), - [sym_curly_group] = STATE(275), - [sym_text] = STATE(275), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(275), - [sym_inline_formula] = STATE(275), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(275), - [sym_comment_environment] = STATE(275), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(275), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(275), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(275), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(275), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(275), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(1564), - [sym__command] = STATE(275), - [sym_generic_command] = STATE(275), - [sym_title_declaration] = STATE(275), - [sym_author_declaration] = STATE(275), - [sym_package_include] = STATE(275), - [sym_class_include] = STATE(275), - [sym_latex_include] = STATE(275), - [sym_biblatex_include] = STATE(275), - [sym_bibtex_include] = STATE(275), - [sym_graphics_include] = STATE(275), - [sym_svg_include] = STATE(275), - [sym_inkscape_include] = STATE(275), - [sym_verbatim_include] = STATE(275), - [sym_import_include] = STATE(275), - [sym_caption] = STATE(275), - [sym_citation] = STATE(275), - [sym_label_definition] = STATE(275), - [sym_label_reference] = STATE(275), - [sym_label_reference_range] = STATE(275), - [sym_label_number] = STATE(275), - [sym_new_command_definition] = STATE(275), - [sym_old_command_definition] = STATE(275), - [sym_let_command_definition] = STATE(275), - [sym_math_delimiter] = STATE(275), - [sym_paired_delimiter_definition] = STATE(275), - [sym_environment_definition] = STATE(275), - [sym_glossary_entry_definition] = STATE(275), - [sym_glossary_entry_reference] = STATE(275), - [sym_acronym_definition] = STATE(275), - [sym_acronym_reference] = STATE(275), - [sym_theorem_definition] = STATE(275), - [sym_color_definition] = STATE(275), - [sym_color_set_definition] = STATE(275), - [sym_color_reference] = STATE(275), - [sym_tikz_library_import] = STATE(275), - [sym_text_mode] = STATE(275), - [aux_sym_part_repeat1] = STATE(275), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_RBRACK] = ACTIONS(3332), - [anon_sym_COMMA] = ACTIONS(3332), - [anon_sym_EQ] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_RPAREN] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3330), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [268] = { - [sym_block_comment] = STATE(275), - [sym__flat_content] = STATE(275), - [sym__text_with_env_content] = STATE(275), - [sym__text_content] = STATE(275), - [sym_curly_group] = STATE(275), - [sym_text] = STATE(275), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(275), - [sym_inline_formula] = STATE(275), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(275), - [sym_comment_environment] = STATE(275), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(275), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(275), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(275), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(275), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(275), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(1064), - [sym__command] = STATE(275), - [sym_generic_command] = STATE(275), - [sym_title_declaration] = STATE(275), - [sym_author_declaration] = STATE(275), - [sym_package_include] = STATE(275), - [sym_class_include] = STATE(275), - [sym_latex_include] = STATE(275), - [sym_biblatex_include] = STATE(275), - [sym_bibtex_include] = STATE(275), - [sym_graphics_include] = STATE(275), - [sym_svg_include] = STATE(275), - [sym_inkscape_include] = STATE(275), - [sym_verbatim_include] = STATE(275), - [sym_import_include] = STATE(275), - [sym_caption] = STATE(275), - [sym_citation] = STATE(275), - [sym_label_definition] = STATE(275), - [sym_label_reference] = STATE(275), - [sym_label_reference_range] = STATE(275), - [sym_label_number] = STATE(275), - [sym_new_command_definition] = STATE(275), - [sym_old_command_definition] = STATE(275), - [sym_let_command_definition] = STATE(275), - [sym_math_delimiter] = STATE(275), - [sym_paired_delimiter_definition] = STATE(275), - [sym_environment_definition] = STATE(275), - [sym_glossary_entry_definition] = STATE(275), - [sym_glossary_entry_reference] = STATE(275), - [sym_acronym_definition] = STATE(275), - [sym_acronym_reference] = STATE(275), - [sym_theorem_definition] = STATE(275), - [sym_color_definition] = STATE(275), - [sym_color_set_definition] = STATE(275), - [sym_color_reference] = STATE(275), - [sym_tikz_library_import] = STATE(275), - [sym_text_mode] = STATE(275), - [aux_sym_part_repeat1] = STATE(275), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_RBRACK] = ACTIONS(3332), - [anon_sym_COMMA] = ACTIONS(3332), - [anon_sym_EQ] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_RPAREN] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3248), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [269] = { - [sym_block_comment] = STATE(263), - [sym__flat_content] = STATE(263), - [sym__text_with_env_content] = STATE(263), - [sym__text_content] = STATE(263), - [sym_curly_group] = STATE(263), - [sym_text] = STATE(263), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(263), - [sym_inline_formula] = STATE(263), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(263), - [sym_comment_environment] = STATE(263), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(263), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(263), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(263), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(263), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(263), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(518), - [sym__command] = STATE(263), - [sym_generic_command] = STATE(263), - [sym_title_declaration] = STATE(263), - [sym_author_declaration] = STATE(263), - [sym_package_include] = STATE(263), - [sym_class_include] = STATE(263), - [sym_latex_include] = STATE(263), - [sym_biblatex_include] = STATE(263), - [sym_bibtex_include] = STATE(263), - [sym_graphics_include] = STATE(263), - [sym_svg_include] = STATE(263), - [sym_inkscape_include] = STATE(263), - [sym_verbatim_include] = STATE(263), - [sym_import_include] = STATE(263), - [sym_caption] = STATE(263), - [sym_citation] = STATE(263), - [sym_label_definition] = STATE(263), - [sym_label_reference] = STATE(263), - [sym_label_reference_range] = STATE(263), - [sym_label_number] = STATE(263), - [sym_new_command_definition] = STATE(263), - [sym_old_command_definition] = STATE(263), - [sym_let_command_definition] = STATE(263), - [sym_math_delimiter] = STATE(263), - [sym_paired_delimiter_definition] = STATE(263), - [sym_environment_definition] = STATE(263), - [sym_glossary_entry_definition] = STATE(263), - [sym_glossary_entry_reference] = STATE(263), - [sym_acronym_definition] = STATE(263), - [sym_acronym_reference] = STATE(263), - [sym_theorem_definition] = STATE(263), - [sym_color_definition] = STATE(263), - [sym_color_set_definition] = STATE(263), - [sym_color_reference] = STATE(263), - [sym_tikz_library_import] = STATE(263), - [sym_text_mode] = STATE(263), - [aux_sym_part_repeat1] = STATE(263), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_RBRACK] = ACTIONS(3342), - [anon_sym_COMMA] = ACTIONS(3342), - [anon_sym_EQ] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_RPAREN] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3334), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [270] = { - [sym_block_comment] = STATE(274), - [sym__flat_content] = STATE(274), - [sym__text_with_env_content] = STATE(274), - [sym__text_content] = STATE(274), - [sym_curly_group] = STATE(274), - [sym_text] = STATE(274), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(274), - [sym_inline_formula] = STATE(274), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(274), - [sym_comment_environment] = STATE(274), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(274), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(274), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(274), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(274), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(274), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(1058), - [sym__command] = STATE(274), - [sym_generic_command] = STATE(274), - [sym_title_declaration] = STATE(274), - [sym_author_declaration] = STATE(274), - [sym_package_include] = STATE(274), - [sym_class_include] = STATE(274), - [sym_latex_include] = STATE(274), - [sym_biblatex_include] = STATE(274), - [sym_bibtex_include] = STATE(274), - [sym_graphics_include] = STATE(274), - [sym_svg_include] = STATE(274), - [sym_inkscape_include] = STATE(274), - [sym_verbatim_include] = STATE(274), - [sym_import_include] = STATE(274), - [sym_caption] = STATE(274), - [sym_citation] = STATE(274), - [sym_label_definition] = STATE(274), - [sym_label_reference] = STATE(274), - [sym_label_reference_range] = STATE(274), - [sym_label_number] = STATE(274), - [sym_new_command_definition] = STATE(274), - [sym_old_command_definition] = STATE(274), - [sym_let_command_definition] = STATE(274), - [sym_math_delimiter] = STATE(274), - [sym_paired_delimiter_definition] = STATE(274), - [sym_environment_definition] = STATE(274), - [sym_glossary_entry_definition] = STATE(274), - [sym_glossary_entry_reference] = STATE(274), - [sym_acronym_definition] = STATE(274), - [sym_acronym_reference] = STATE(274), - [sym_theorem_definition] = STATE(274), - [sym_color_definition] = STATE(274), - [sym_color_set_definition] = STATE(274), - [sym_color_reference] = STATE(274), - [sym_tikz_library_import] = STATE(274), - [sym_text_mode] = STATE(274), - [aux_sym_part_repeat1] = STATE(274), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_RBRACK] = ACTIONS(3344), - [anon_sym_COMMA] = ACTIONS(3344), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_RPAREN] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3346), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [271] = { - [sym_block_comment] = STATE(265), - [sym__flat_content] = STATE(265), - [sym__text_with_env_content] = STATE(265), - [sym__text_content] = STATE(265), - [sym_curly_group] = STATE(265), - [sym_text] = STATE(265), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(265), - [sym_inline_formula] = STATE(265), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(265), - [sym_comment_environment] = STATE(265), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(265), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(265), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(265), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(265), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(265), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(1300), - [sym__command] = STATE(265), - [sym_generic_command] = STATE(265), - [sym_title_declaration] = STATE(265), - [sym_author_declaration] = STATE(265), - [sym_package_include] = STATE(265), - [sym_class_include] = STATE(265), - [sym_latex_include] = STATE(265), - [sym_biblatex_include] = STATE(265), - [sym_bibtex_include] = STATE(265), - [sym_graphics_include] = STATE(265), - [sym_svg_include] = STATE(265), - [sym_inkscape_include] = STATE(265), - [sym_verbatim_include] = STATE(265), - [sym_import_include] = STATE(265), - [sym_caption] = STATE(265), - [sym_citation] = STATE(265), - [sym_label_definition] = STATE(265), - [sym_label_reference] = STATE(265), - [sym_label_reference_range] = STATE(265), - [sym_label_number] = STATE(265), - [sym_new_command_definition] = STATE(265), - [sym_old_command_definition] = STATE(265), - [sym_let_command_definition] = STATE(265), - [sym_math_delimiter] = STATE(265), - [sym_paired_delimiter_definition] = STATE(265), - [sym_environment_definition] = STATE(265), - [sym_glossary_entry_definition] = STATE(265), - [sym_glossary_entry_reference] = STATE(265), - [sym_acronym_definition] = STATE(265), - [sym_acronym_reference] = STATE(265), - [sym_theorem_definition] = STATE(265), - [sym_color_definition] = STATE(265), - [sym_color_set_definition] = STATE(265), - [sym_color_reference] = STATE(265), - [sym_tikz_library_import] = STATE(265), - [sym_text_mode] = STATE(265), - [aux_sym_part_repeat1] = STATE(265), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_RBRACK] = ACTIONS(3348), - [anon_sym_COMMA] = ACTIONS(3348), - [anon_sym_EQ] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3348), - [anon_sym_RPAREN] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3338), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [272] = { - [sym_block_comment] = STATE(266), - [sym__flat_content] = STATE(266), - [sym__text_with_env_content] = STATE(266), - [sym__text_content] = STATE(266), - [sym_curly_group] = STATE(266), - [sym_text] = STATE(266), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(266), - [sym_inline_formula] = STATE(266), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(266), - [sym_comment_environment] = STATE(266), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(266), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(266), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(266), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(266), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(266), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(1622), - [sym__command] = STATE(266), - [sym_generic_command] = STATE(266), - [sym_title_declaration] = STATE(266), - [sym_author_declaration] = STATE(266), - [sym_package_include] = STATE(266), - [sym_class_include] = STATE(266), - [sym_latex_include] = STATE(266), - [sym_biblatex_include] = STATE(266), - [sym_bibtex_include] = STATE(266), - [sym_graphics_include] = STATE(266), - [sym_svg_include] = STATE(266), - [sym_inkscape_include] = STATE(266), - [sym_verbatim_include] = STATE(266), - [sym_import_include] = STATE(266), - [sym_caption] = STATE(266), - [sym_citation] = STATE(266), - [sym_label_definition] = STATE(266), - [sym_label_reference] = STATE(266), - [sym_label_reference_range] = STATE(266), - [sym_label_number] = STATE(266), - [sym_new_command_definition] = STATE(266), - [sym_old_command_definition] = STATE(266), - [sym_let_command_definition] = STATE(266), - [sym_math_delimiter] = STATE(266), - [sym_paired_delimiter_definition] = STATE(266), - [sym_environment_definition] = STATE(266), - [sym_glossary_entry_definition] = STATE(266), - [sym_glossary_entry_reference] = STATE(266), - [sym_acronym_definition] = STATE(266), - [sym_acronym_reference] = STATE(266), - [sym_theorem_definition] = STATE(266), - [sym_color_definition] = STATE(266), - [sym_color_set_definition] = STATE(266), - [sym_color_reference] = STATE(266), - [sym_tikz_library_import] = STATE(266), - [sym_text_mode] = STATE(266), - [aux_sym_part_repeat1] = STATE(266), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_RBRACK] = ACTIONS(3350), - [anon_sym_COMMA] = ACTIONS(3350), - [anon_sym_EQ] = ACTIONS(3350), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_RPAREN] = ACTIONS(3350), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3340), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [273] = { - [sym_block_comment] = STATE(264), - [sym__flat_content] = STATE(264), - [sym__text_with_env_content] = STATE(264), - [sym__text_content] = STATE(264), - [sym_curly_group] = STATE(264), - [sym_text] = STATE(264), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(264), - [sym_inline_formula] = STATE(264), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(264), - [sym_comment_environment] = STATE(264), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(264), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(264), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(264), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(264), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(264), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(957), - [sym__command] = STATE(264), - [sym_generic_command] = STATE(264), - [sym_title_declaration] = STATE(264), - [sym_author_declaration] = STATE(264), - [sym_package_include] = STATE(264), - [sym_class_include] = STATE(264), - [sym_latex_include] = STATE(264), - [sym_biblatex_include] = STATE(264), - [sym_bibtex_include] = STATE(264), - [sym_graphics_include] = STATE(264), - [sym_svg_include] = STATE(264), - [sym_inkscape_include] = STATE(264), - [sym_verbatim_include] = STATE(264), - [sym_import_include] = STATE(264), - [sym_caption] = STATE(264), - [sym_citation] = STATE(264), - [sym_label_definition] = STATE(264), - [sym_label_reference] = STATE(264), - [sym_label_reference_range] = STATE(264), - [sym_label_number] = STATE(264), - [sym_new_command_definition] = STATE(264), - [sym_old_command_definition] = STATE(264), - [sym_let_command_definition] = STATE(264), - [sym_math_delimiter] = STATE(264), - [sym_paired_delimiter_definition] = STATE(264), - [sym_environment_definition] = STATE(264), - [sym_glossary_entry_definition] = STATE(264), - [sym_glossary_entry_reference] = STATE(264), - [sym_acronym_definition] = STATE(264), - [sym_acronym_reference] = STATE(264), - [sym_theorem_definition] = STATE(264), - [sym_color_definition] = STATE(264), - [sym_color_set_definition] = STATE(264), - [sym_color_reference] = STATE(264), - [sym_tikz_library_import] = STATE(264), - [sym_text_mode] = STATE(264), - [aux_sym_part_repeat1] = STATE(264), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_RBRACK] = ACTIONS(3352), - [anon_sym_COMMA] = ACTIONS(3352), - [anon_sym_EQ] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3352), - [anon_sym_RPAREN] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3336), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [274] = { - [sym_block_comment] = STATE(275), - [sym__flat_content] = STATE(275), - [sym__text_with_env_content] = STATE(275), - [sym__text_content] = STATE(275), - [sym_curly_group] = STATE(275), - [sym_text] = STATE(275), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(275), - [sym_inline_formula] = STATE(275), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(275), - [sym_comment_environment] = STATE(275), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(275), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(275), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(275), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(275), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(275), - [sym__math_environment_begin] = STATE(262), - [sym__math_environment_end] = STATE(1127), - [sym__command] = STATE(275), - [sym_generic_command] = STATE(275), - [sym_title_declaration] = STATE(275), - [sym_author_declaration] = STATE(275), - [sym_package_include] = STATE(275), - [sym_class_include] = STATE(275), - [sym_latex_include] = STATE(275), - [sym_biblatex_include] = STATE(275), - [sym_bibtex_include] = STATE(275), - [sym_graphics_include] = STATE(275), - [sym_svg_include] = STATE(275), - [sym_inkscape_include] = STATE(275), - [sym_verbatim_include] = STATE(275), - [sym_import_include] = STATE(275), - [sym_caption] = STATE(275), - [sym_citation] = STATE(275), - [sym_label_definition] = STATE(275), - [sym_label_reference] = STATE(275), - [sym_label_reference_range] = STATE(275), - [sym_label_number] = STATE(275), - [sym_new_command_definition] = STATE(275), - [sym_old_command_definition] = STATE(275), - [sym_let_command_definition] = STATE(275), - [sym_math_delimiter] = STATE(275), - [sym_paired_delimiter_definition] = STATE(275), - [sym_environment_definition] = STATE(275), - [sym_glossary_entry_definition] = STATE(275), - [sym_glossary_entry_reference] = STATE(275), - [sym_acronym_definition] = STATE(275), - [sym_acronym_reference] = STATE(275), - [sym_theorem_definition] = STATE(275), - [sym_color_definition] = STATE(275), - [sym_color_set_definition] = STATE(275), - [sym_color_reference] = STATE(275), - [sym_tikz_library_import] = STATE(275), - [sym_text_mode] = STATE(275), - [aux_sym_part_repeat1] = STATE(275), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_RBRACK] = ACTIONS(3332), - [anon_sym_COMMA] = ACTIONS(3332), - [anon_sym_EQ] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_RPAREN] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3242), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3242), - [anon_sym_DOLLAR] = ACTIONS(3244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3246), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHend] = ACTIONS(3346), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3300), - [anon_sym_BSLASHbig] = ACTIONS(3300), - [anon_sym_BSLASHBig] = ACTIONS(3300), - [anon_sym_BSLASHbigg] = ACTIONS(3300), - [anon_sym_BSLASHBigg] = ACTIONS(3300), - [anon_sym_BSLASHbigl] = ACTIONS(3300), - [anon_sym_BSLASHBigl] = ACTIONS(3300), - [anon_sym_BSLASHbiggl] = ACTIONS(3300), - [anon_sym_BSLASHBiggl] = ACTIONS(3300), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3326), - [anon_sym_BSLASHintertext] = ACTIONS(3326), - [anon_sym_shortintertext] = ACTIONS(3326), - }, - [275] = { - [sym_block_comment] = STATE(275), - [sym__flat_content] = STATE(275), - [sym__text_with_env_content] = STATE(275), - [sym__text_content] = STATE(275), - [sym_curly_group] = STATE(275), - [sym_text] = STATE(275), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym_displayed_equation] = STATE(275), - [sym_inline_formula] = STATE(275), - [sym_begin] = STATE(59), - [sym_generic_environment] = STATE(275), - [sym_comment_environment] = STATE(275), - [sym__comment_environment_begin] = STATE(3133), - [sym_verbatim_environment] = STATE(275), - [sym__verbatim_environment_begin] = STATE(3134), - [sym_listing_environment] = STATE(275), - [sym__listing_environment_begin] = STATE(3115), - [sym_minted_environment] = STATE(275), - [sym__minted_environment_begin] = STATE(3116), - [sym_pycode_environment] = STATE(275), - [sym__pycode_environment_begin] = STATE(3129), - [sym_math_environment] = STATE(275), - [sym__math_environment_begin] = STATE(262), - [sym__command] = STATE(275), - [sym_generic_command] = STATE(275), - [sym_title_declaration] = STATE(275), - [sym_author_declaration] = STATE(275), - [sym_package_include] = STATE(275), - [sym_class_include] = STATE(275), - [sym_latex_include] = STATE(275), - [sym_biblatex_include] = STATE(275), - [sym_bibtex_include] = STATE(275), - [sym_graphics_include] = STATE(275), - [sym_svg_include] = STATE(275), - [sym_inkscape_include] = STATE(275), - [sym_verbatim_include] = STATE(275), - [sym_import_include] = STATE(275), - [sym_caption] = STATE(275), - [sym_citation] = STATE(275), - [sym_label_definition] = STATE(275), - [sym_label_reference] = STATE(275), - [sym_label_reference_range] = STATE(275), - [sym_label_number] = STATE(275), - [sym_new_command_definition] = STATE(275), - [sym_old_command_definition] = STATE(275), - [sym_let_command_definition] = STATE(275), - [sym_math_delimiter] = STATE(275), - [sym_paired_delimiter_definition] = STATE(275), - [sym_environment_definition] = STATE(275), - [sym_glossary_entry_definition] = STATE(275), - [sym_glossary_entry_reference] = STATE(275), - [sym_acronym_definition] = STATE(275), - [sym_acronym_reference] = STATE(275), - [sym_theorem_definition] = STATE(275), - [sym_color_definition] = STATE(275), - [sym_color_set_definition] = STATE(275), - [sym_color_reference] = STATE(275), - [sym_tikz_library_import] = STATE(275), - [sym_text_mode] = STATE(275), - [aux_sym_part_repeat1] = STATE(275), - [aux_sym_text_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(3354), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_RBRACK] = ACTIONS(3360), - [anon_sym_COMMA] = ACTIONS(3360), - [anon_sym_EQ] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_RPAREN] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3363), - [sym_word] = ACTIONS(3366), - [sym_placeholder] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_STAR] = ACTIONS(3372), - [anon_sym_SLASH] = ACTIONS(3372), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_COLON] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym__] = ACTIONS(3378), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3384), - [anon_sym_DOLLAR] = ACTIONS(3387), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3390), - [anon_sym_BSLASHbegin] = ACTIONS(2321), - [anon_sym_BSLASHend] = ACTIONS(2287), - [anon_sym_BSLASHtitle] = ACTIONS(3393), - [anon_sym_BSLASHauthor] = ACTIONS(3396), - [anon_sym_BSLASHusepackage] = ACTIONS(3399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3402), - [anon_sym_BSLASHinclude] = ACTIONS(3405), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3405), - [anon_sym_BSLASHinput] = ACTIONS(3405), - [anon_sym_BSLASHsubfile] = ACTIONS(3405), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3408), - [anon_sym_BSLASHbibliography] = ACTIONS(3411), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3414), - [anon_sym_BSLASHincludesvg] = ACTIONS(3417), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3420), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3423), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3423), - [anon_sym_BSLASHimport] = ACTIONS(3426), - [anon_sym_BSLASHsubimport] = ACTIONS(3426), - [anon_sym_BSLASHinputfrom] = ACTIONS(3426), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3426), - [anon_sym_BSLASHincludefrom] = ACTIONS(3426), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3426), - [anon_sym_BSLASHcaption] = ACTIONS(3429), - [anon_sym_BSLASHcite] = ACTIONS(3432), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3435), - [anon_sym_BSLASHCite] = ACTIONS(3432), - [anon_sym_BSLASHnocite] = ACTIONS(3432), - [anon_sym_BSLASHcitet] = ACTIONS(3432), - [anon_sym_BSLASHcitep] = ACTIONS(3432), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3435), - [anon_sym_BSLASHciteauthor] = ACTIONS(3432), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3432), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3435), - [anon_sym_BSLASHcitetitle] = ACTIONS(3432), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3435), - [anon_sym_BSLASHciteyear] = ACTIONS(3432), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3435), - [anon_sym_BSLASHcitedate] = ACTIONS(3432), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3435), - [anon_sym_BSLASHciteurl] = ACTIONS(3432), - [anon_sym_BSLASHfullcite] = ACTIONS(3432), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3432), - [anon_sym_BSLASHcitealt] = ACTIONS(3432), - [anon_sym_BSLASHcitealp] = ACTIONS(3432), - [anon_sym_BSLASHcitetext] = ACTIONS(3432), - [anon_sym_BSLASHparencite] = ACTIONS(3432), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3435), - [anon_sym_BSLASHParencite] = ACTIONS(3432), - [anon_sym_BSLASHfootcite] = ACTIONS(3432), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3432), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3432), - [anon_sym_BSLASHtextcite] = ACTIONS(3432), - [anon_sym_BSLASHTextcite] = ACTIONS(3432), - [anon_sym_BSLASHsmartcite] = ACTIONS(3432), - [anon_sym_BSLASHSmartcite] = ACTIONS(3432), - [anon_sym_BSLASHsupercite] = ACTIONS(3432), - [anon_sym_BSLASHautocite] = ACTIONS(3432), - [anon_sym_BSLASHAutocite] = ACTIONS(3432), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3435), - [anon_sym_BSLASHvolcite] = ACTIONS(3432), - [anon_sym_BSLASHVolcite] = ACTIONS(3432), - [anon_sym_BSLASHpvolcite] = ACTIONS(3432), - [anon_sym_BSLASHPvolcite] = ACTIONS(3432), - [anon_sym_BSLASHfvolcite] = ACTIONS(3432), - [anon_sym_BSLASHftvolcite] = ACTIONS(3432), - [anon_sym_BSLASHsvolcite] = ACTIONS(3432), - [anon_sym_BSLASHSvolcite] = ACTIONS(3432), - [anon_sym_BSLASHtvolcite] = ACTIONS(3432), - [anon_sym_BSLASHTvolcite] = ACTIONS(3432), - [anon_sym_BSLASHavolcite] = ACTIONS(3432), - [anon_sym_BSLASHAvolcite] = ACTIONS(3432), - [anon_sym_BSLASHnotecite] = ACTIONS(3432), - [anon_sym_BSLASHNotecite] = ACTIONS(3432), - [anon_sym_BSLASHpnotecite] = ACTIONS(3432), - [anon_sym_BSLASHPnotecite] = ACTIONS(3432), - [anon_sym_BSLASHfnotecite] = ACTIONS(3432), - [anon_sym_BSLASHlabel] = ACTIONS(3438), - [anon_sym_BSLASHref] = ACTIONS(3441), - [anon_sym_BSLASHeqref] = ACTIONS(3441), - [anon_sym_BSLASHvref] = ACTIONS(3441), - [anon_sym_BSLASHVref] = ACTIONS(3441), - [anon_sym_BSLASHautoref] = ACTIONS(3441), - [anon_sym_BSLASHpageref] = ACTIONS(3441), - [anon_sym_BSLASHcref] = ACTIONS(3441), - [anon_sym_BSLASHCref] = ACTIONS(3441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3444), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3444), - [anon_sym_BSLASHnamecref] = ACTIONS(3441), - [anon_sym_BSLASHnameCref] = ACTIONS(3441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3441), - [anon_sym_BSLASHlabelcref] = ACTIONS(3441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3441), - [anon_sym_BSLASHcrefrange] = ACTIONS(3447), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3450), - [anon_sym_BSLASHCrefrange] = ACTIONS(3447), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3450), - [anon_sym_BSLASHnewlabel] = ACTIONS(3453), - [anon_sym_BSLASHnewcommand] = ACTIONS(3456), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3456), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3456), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3456), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3459), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3456), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3456), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3456), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3456), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3456), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3456), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3456), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3456), - [anon_sym_BSLASHdef] = ACTIONS(3462), - [anon_sym_BSLASHlet] = ACTIONS(3465), - [anon_sym_BSLASHleft] = ACTIONS(3468), - [anon_sym_BSLASHbig] = ACTIONS(3468), - [anon_sym_BSLASHBig] = ACTIONS(3468), - [anon_sym_BSLASHbigg] = ACTIONS(3468), - [anon_sym_BSLASHBigg] = ACTIONS(3468), - [anon_sym_BSLASHbigl] = ACTIONS(3468), - [anon_sym_BSLASHBigl] = ACTIONS(3468), - [anon_sym_BSLASHbiggl] = ACTIONS(3468), - [anon_sym_BSLASHBiggl] = ACTIONS(3468), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3471), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3471), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3474), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3474), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3474), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3474), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3474), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3474), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3477), - [anon_sym_BSLASHgls] = ACTIONS(3480), - [anon_sym_BSLASHGls] = ACTIONS(3480), - [anon_sym_BSLASHGLS] = ACTIONS(3480), - [anon_sym_BSLASHglspl] = ACTIONS(3480), - [anon_sym_BSLASHGlspl] = ACTIONS(3480), - [anon_sym_BSLASHGLSpl] = ACTIONS(3480), - [anon_sym_BSLASHglsdisp] = ACTIONS(3480), - [anon_sym_BSLASHglslink] = ACTIONS(3480), - [anon_sym_BSLASHglstext] = ACTIONS(3480), - [anon_sym_BSLASHGlstext] = ACTIONS(3480), - [anon_sym_BSLASHGLStext] = ACTIONS(3480), - [anon_sym_BSLASHglsfirst] = ACTIONS(3480), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3480), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3480), - [anon_sym_BSLASHglsplural] = ACTIONS(3480), - [anon_sym_BSLASHGlsplural] = ACTIONS(3480), - [anon_sym_BSLASHGLSplural] = ACTIONS(3480), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3480), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3480), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3480), - [anon_sym_BSLASHglsname] = ACTIONS(3480), - [anon_sym_BSLASHGlsname] = ACTIONS(3480), - [anon_sym_BSLASHGLSname] = ACTIONS(3480), - [anon_sym_BSLASHglssymbol] = ACTIONS(3480), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3480), - [anon_sym_BSLASHglsdesc] = ACTIONS(3480), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3480), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3480), - [anon_sym_BSLASHglsuseri] = ACTIONS(3480), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3480), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3480), - [anon_sym_BSLASHglsuserii] = ACTIONS(3480), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3480), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3480), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3480), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3480), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3480), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3480), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3480), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3480), - [anon_sym_BSLASHglsuserv] = ACTIONS(3480), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3480), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3480), - [anon_sym_BSLASHglsuservi] = ACTIONS(3480), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3480), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3480), - [anon_sym_BSLASHnewacronym] = ACTIONS(3483), - [anon_sym_BSLASHacrshort] = ACTIONS(3486), - [anon_sym_BSLASHAcrshort] = ACTIONS(3486), - [anon_sym_BSLASHACRshort] = ACTIONS(3486), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3486), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3486), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3486), - [anon_sym_BSLASHacrlong] = ACTIONS(3486), - [anon_sym_BSLASHAcrlong] = ACTIONS(3486), - [anon_sym_BSLASHACRlong] = ACTIONS(3486), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3486), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3486), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3486), - [anon_sym_BSLASHacrfull] = ACTIONS(3486), - [anon_sym_BSLASHAcrfull] = ACTIONS(3486), - [anon_sym_BSLASHACRfull] = ACTIONS(3486), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3486), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3486), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3486), - [anon_sym_BSLASHacs] = ACTIONS(3486), - [anon_sym_BSLASHAcs] = ACTIONS(3486), - [anon_sym_BSLASHacsp] = ACTIONS(3486), - [anon_sym_BSLASHAcsp] = ACTIONS(3486), - [anon_sym_BSLASHacl] = ACTIONS(3486), - [anon_sym_BSLASHAcl] = ACTIONS(3486), - [anon_sym_BSLASHaclp] = ACTIONS(3486), - [anon_sym_BSLASHAclp] = ACTIONS(3486), - [anon_sym_BSLASHacf] = ACTIONS(3486), - [anon_sym_BSLASHAcf] = ACTIONS(3486), - [anon_sym_BSLASHacfp] = ACTIONS(3486), - [anon_sym_BSLASHAcfp] = ACTIONS(3486), - [anon_sym_BSLASHac] = ACTIONS(3486), - [anon_sym_BSLASHAc] = ACTIONS(3486), - [anon_sym_BSLASHacp] = ACTIONS(3486), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3486), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3486), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3486), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3486), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3486), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3486), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3486), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3486), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3486), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3486), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3489), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3492), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3489), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3492), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3495), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3498), - [anon_sym_BSLASHcolor] = ACTIONS(3501), - [anon_sym_BSLASHcolorbox] = ACTIONS(3501), - [anon_sym_BSLASHtextcolor] = ACTIONS(3501), - [anon_sym_BSLASHpagecolor] = ACTIONS(3501), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3504), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3504), - [anon_sym_BSLASHtext] = ACTIONS(3507), - [anon_sym_BSLASHintertext] = ACTIONS(3507), - [anon_sym_shortintertext] = ACTIONS(3507), - }, - [276] = { - [sym_block_comment] = STATE(277), - [sym__text_with_env_content] = STATE(277), - [sym__text_content] = STATE(277), - [sym_curly_group] = STATE(277), - [sym_brack_group] = STATE(277), - [sym_text] = STATE(277), - [sym_operator] = STATE(1750), - [sym_subscript] = STATE(1750), - [sym_superscript] = STATE(1750), - [sym_displayed_equation] = STATE(277), - [sym_inline_formula] = STATE(277), - [sym_begin] = STATE(67), - [sym_generic_environment] = STATE(277), - [sym_comment_environment] = STATE(277), - [sym__comment_environment_begin] = STATE(3118), - [sym_verbatim_environment] = STATE(277), - [sym__verbatim_environment_begin] = STATE(3119), - [sym_listing_environment] = STATE(277), - [sym__listing_environment_begin] = STATE(3125), - [sym_minted_environment] = STATE(277), - [sym__minted_environment_begin] = STATE(3127), - [sym_pycode_environment] = STATE(277), - [sym__pycode_environment_begin] = STATE(3128), - [sym_math_environment] = STATE(277), - [sym__math_environment_begin] = STATE(272), - [sym__command] = STATE(277), - [sym_generic_command] = STATE(277), - [sym_title_declaration] = STATE(277), - [sym_author_declaration] = STATE(277), - [sym_package_include] = STATE(277), - [sym_class_include] = STATE(277), - [sym_latex_include] = STATE(277), - [sym_biblatex_include] = STATE(277), - [sym_bibtex_include] = STATE(277), - [sym_graphics_include] = STATE(277), - [sym_svg_include] = STATE(277), - [sym_inkscape_include] = STATE(277), - [sym_verbatim_include] = STATE(277), - [sym_import_include] = STATE(277), - [sym_caption] = STATE(277), - [sym_citation] = STATE(277), - [sym_label_definition] = STATE(277), - [sym_label_reference] = STATE(277), - [sym_label_reference_range] = STATE(277), - [sym_label_number] = STATE(277), - [sym_new_command_definition] = STATE(277), - [sym_old_command_definition] = STATE(277), - [sym_let_command_definition] = STATE(277), - [sym_math_delimiter] = STATE(277), - [sym_paired_delimiter_definition] = STATE(277), - [sym_environment_definition] = STATE(277), - [sym_glossary_entry_definition] = STATE(277), - [sym_glossary_entry_reference] = STATE(277), - [sym_acronym_definition] = STATE(277), - [sym_acronym_reference] = STATE(277), - [sym_theorem_definition] = STATE(277), - [sym_color_definition] = STATE(277), - [sym_color_set_definition] = STATE(277), - [sym_color_reference] = STATE(277), - [sym_tikz_library_import] = STATE(277), - [sym_text_mode] = STATE(277), - [aux_sym_brack_group_repeat1] = STATE(277), - [aux_sym_text_repeat1] = STATE(349), - [sym_command_name] = ACTIONS(3510), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(3516), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3520), - [sym_word] = ACTIONS(3522), - [sym_placeholder] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_SLASH] = ACTIONS(3526), - [anon_sym_LT] = ACTIONS(3528), - [anon_sym_GT] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_PIPE] = ACTIONS(3528), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3528), - [anon_sym__] = ACTIONS(3530), - [anon_sym_CARET] = ACTIONS(3532), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3534), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3534), - [anon_sym_DOLLAR] = ACTIONS(3536), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3538), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(3540), - [anon_sym_BSLASHauthor] = ACTIONS(3542), - [anon_sym_BSLASHusepackage] = ACTIONS(3544), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3544), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3546), - [anon_sym_BSLASHinclude] = ACTIONS(3548), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3548), - [anon_sym_BSLASHinput] = ACTIONS(3548), - [anon_sym_BSLASHsubfile] = ACTIONS(3548), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3550), - [anon_sym_BSLASHbibliography] = ACTIONS(3552), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3554), - [anon_sym_BSLASHincludesvg] = ACTIONS(3556), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3558), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3560), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3560), - [anon_sym_BSLASHimport] = ACTIONS(3562), - [anon_sym_BSLASHsubimport] = ACTIONS(3562), - [anon_sym_BSLASHinputfrom] = ACTIONS(3562), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3562), - [anon_sym_BSLASHincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHcaption] = ACTIONS(3564), - [anon_sym_BSLASHcite] = ACTIONS(3566), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCite] = ACTIONS(3566), - [anon_sym_BSLASHnocite] = ACTIONS(3566), - [anon_sym_BSLASHcitet] = ACTIONS(3566), - [anon_sym_BSLASHcitep] = ACTIONS(3566), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteauthor] = ACTIONS(3566), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3566), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitetitle] = ACTIONS(3566), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteyear] = ACTIONS(3566), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitedate] = ACTIONS(3566), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteurl] = ACTIONS(3566), - [anon_sym_BSLASHfullcite] = ACTIONS(3566), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3566), - [anon_sym_BSLASHcitealt] = ACTIONS(3566), - [anon_sym_BSLASHcitealp] = ACTIONS(3566), - [anon_sym_BSLASHcitetext] = ACTIONS(3566), - [anon_sym_BSLASHparencite] = ACTIONS(3566), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHParencite] = ACTIONS(3566), - [anon_sym_BSLASHfootcite] = ACTIONS(3566), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3566), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3566), - [anon_sym_BSLASHtextcite] = ACTIONS(3566), - [anon_sym_BSLASHTextcite] = ACTIONS(3566), - [anon_sym_BSLASHsmartcite] = ACTIONS(3566), - [anon_sym_BSLASHSmartcite] = ACTIONS(3566), - [anon_sym_BSLASHsupercite] = ACTIONS(3566), - [anon_sym_BSLASHautocite] = ACTIONS(3566), - [anon_sym_BSLASHAutocite] = ACTIONS(3566), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHvolcite] = ACTIONS(3566), - [anon_sym_BSLASHVolcite] = ACTIONS(3566), - [anon_sym_BSLASHpvolcite] = ACTIONS(3566), - [anon_sym_BSLASHPvolcite] = ACTIONS(3566), - [anon_sym_BSLASHfvolcite] = ACTIONS(3566), - [anon_sym_BSLASHftvolcite] = ACTIONS(3566), - [anon_sym_BSLASHsvolcite] = ACTIONS(3566), - [anon_sym_BSLASHSvolcite] = ACTIONS(3566), - [anon_sym_BSLASHtvolcite] = ACTIONS(3566), - [anon_sym_BSLASHTvolcite] = ACTIONS(3566), - [anon_sym_BSLASHavolcite] = ACTIONS(3566), - [anon_sym_BSLASHAvolcite] = ACTIONS(3566), - [anon_sym_BSLASHnotecite] = ACTIONS(3566), - [anon_sym_BSLASHNotecite] = ACTIONS(3566), - [anon_sym_BSLASHpnotecite] = ACTIONS(3566), - [anon_sym_BSLASHPnotecite] = ACTIONS(3566), - [anon_sym_BSLASHfnotecite] = ACTIONS(3566), - [anon_sym_BSLASHlabel] = ACTIONS(3570), - [anon_sym_BSLASHref] = ACTIONS(3572), - [anon_sym_BSLASHeqref] = ACTIONS(3572), - [anon_sym_BSLASHvref] = ACTIONS(3572), - [anon_sym_BSLASHVref] = ACTIONS(3572), - [anon_sym_BSLASHautoref] = ACTIONS(3572), - [anon_sym_BSLASHpageref] = ACTIONS(3572), - [anon_sym_BSLASHcref] = ACTIONS(3572), - [anon_sym_BSLASHCref] = ACTIONS(3572), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnameCref] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHlabelcref] = ACTIONS(3572), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3572), - [anon_sym_BSLASHcrefrange] = ACTIONS(3576), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHCrefrange] = ACTIONS(3576), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHnewlabel] = ACTIONS(3580), - [anon_sym_BSLASHnewcommand] = ACTIONS(3582), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3582), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3582), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3584), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHdef] = ACTIONS(3586), - [anon_sym_BSLASHlet] = ACTIONS(3588), - [anon_sym_BSLASHleft] = ACTIONS(3590), - [anon_sym_BSLASHbig] = ACTIONS(3590), - [anon_sym_BSLASHBig] = ACTIONS(3590), - [anon_sym_BSLASHbigg] = ACTIONS(3590), - [anon_sym_BSLASHBigg] = ACTIONS(3590), - [anon_sym_BSLASHbigl] = ACTIONS(3590), - [anon_sym_BSLASHBigl] = ACTIONS(3590), - [anon_sym_BSLASHbiggl] = ACTIONS(3590), - [anon_sym_BSLASHBiggl] = ACTIONS(3590), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3592), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3592), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3596), - [anon_sym_BSLASHgls] = ACTIONS(3598), - [anon_sym_BSLASHGls] = ACTIONS(3598), - [anon_sym_BSLASHGLS] = ACTIONS(3598), - [anon_sym_BSLASHglspl] = ACTIONS(3598), - [anon_sym_BSLASHGlspl] = ACTIONS(3598), - [anon_sym_BSLASHGLSpl] = ACTIONS(3598), - [anon_sym_BSLASHglsdisp] = ACTIONS(3598), - [anon_sym_BSLASHglslink] = ACTIONS(3598), - [anon_sym_BSLASHglstext] = ACTIONS(3598), - [anon_sym_BSLASHGlstext] = ACTIONS(3598), - [anon_sym_BSLASHGLStext] = ACTIONS(3598), - [anon_sym_BSLASHglsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3598), - [anon_sym_BSLASHglsplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSplural] = ACTIONS(3598), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHglsname] = ACTIONS(3598), - [anon_sym_BSLASHGlsname] = ACTIONS(3598), - [anon_sym_BSLASHGLSname] = ACTIONS(3598), - [anon_sym_BSLASHglssymbol] = ACTIONS(3598), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3598), - [anon_sym_BSLASHglsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3598), - [anon_sym_BSLASHglsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3598), - [anon_sym_BSLASHglsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3598), - [anon_sym_BSLASHglsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3598), - [anon_sym_BSLASHglsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3598), - [anon_sym_BSLASHnewacronym] = ACTIONS(3600), - [anon_sym_BSLASHacrshort] = ACTIONS(3602), - [anon_sym_BSLASHAcrshort] = ACTIONS(3602), - [anon_sym_BSLASHACRshort] = ACTIONS(3602), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3602), - [anon_sym_BSLASHacrlong] = ACTIONS(3602), - [anon_sym_BSLASHAcrlong] = ACTIONS(3602), - [anon_sym_BSLASHACRlong] = ACTIONS(3602), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3602), - [anon_sym_BSLASHacrfull] = ACTIONS(3602), - [anon_sym_BSLASHAcrfull] = ACTIONS(3602), - [anon_sym_BSLASHACRfull] = ACTIONS(3602), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3602), - [anon_sym_BSLASHacs] = ACTIONS(3602), - [anon_sym_BSLASHAcs] = ACTIONS(3602), - [anon_sym_BSLASHacsp] = ACTIONS(3602), - [anon_sym_BSLASHAcsp] = ACTIONS(3602), - [anon_sym_BSLASHacl] = ACTIONS(3602), - [anon_sym_BSLASHAcl] = ACTIONS(3602), - [anon_sym_BSLASHaclp] = ACTIONS(3602), - [anon_sym_BSLASHAclp] = ACTIONS(3602), - [anon_sym_BSLASHacf] = ACTIONS(3602), - [anon_sym_BSLASHAcf] = ACTIONS(3602), - [anon_sym_BSLASHacfp] = ACTIONS(3602), - [anon_sym_BSLASHAcfp] = ACTIONS(3602), - [anon_sym_BSLASHac] = ACTIONS(3602), - [anon_sym_BSLASHAc] = ACTIONS(3602), - [anon_sym_BSLASHacp] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3604), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3604), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3608), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3610), - [anon_sym_BSLASHcolor] = ACTIONS(3612), - [anon_sym_BSLASHcolorbox] = ACTIONS(3612), - [anon_sym_BSLASHtextcolor] = ACTIONS(3612), - [anon_sym_BSLASHpagecolor] = ACTIONS(3612), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3614), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3614), - [anon_sym_BSLASHtext] = ACTIONS(3616), - [anon_sym_BSLASHintertext] = ACTIONS(3616), - [anon_sym_shortintertext] = ACTIONS(3616), - }, - [277] = { - [sym_block_comment] = STATE(277), - [sym__text_with_env_content] = STATE(277), - [sym__text_content] = STATE(277), - [sym_curly_group] = STATE(277), - [sym_brack_group] = STATE(277), - [sym_text] = STATE(277), - [sym_operator] = STATE(1750), - [sym_subscript] = STATE(1750), - [sym_superscript] = STATE(1750), - [sym_displayed_equation] = STATE(277), - [sym_inline_formula] = STATE(277), - [sym_begin] = STATE(67), - [sym_generic_environment] = STATE(277), - [sym_comment_environment] = STATE(277), - [sym__comment_environment_begin] = STATE(3118), - [sym_verbatim_environment] = STATE(277), - [sym__verbatim_environment_begin] = STATE(3119), - [sym_listing_environment] = STATE(277), - [sym__listing_environment_begin] = STATE(3125), - [sym_minted_environment] = STATE(277), - [sym__minted_environment_begin] = STATE(3127), - [sym_pycode_environment] = STATE(277), - [sym__pycode_environment_begin] = STATE(3128), - [sym_math_environment] = STATE(277), - [sym__math_environment_begin] = STATE(272), - [sym__command] = STATE(277), - [sym_generic_command] = STATE(277), - [sym_title_declaration] = STATE(277), - [sym_author_declaration] = STATE(277), - [sym_package_include] = STATE(277), - [sym_class_include] = STATE(277), - [sym_latex_include] = STATE(277), - [sym_biblatex_include] = STATE(277), - [sym_bibtex_include] = STATE(277), - [sym_graphics_include] = STATE(277), - [sym_svg_include] = STATE(277), - [sym_inkscape_include] = STATE(277), - [sym_verbatim_include] = STATE(277), - [sym_import_include] = STATE(277), - [sym_caption] = STATE(277), - [sym_citation] = STATE(277), - [sym_label_definition] = STATE(277), - [sym_label_reference] = STATE(277), - [sym_label_reference_range] = STATE(277), - [sym_label_number] = STATE(277), - [sym_new_command_definition] = STATE(277), - [sym_old_command_definition] = STATE(277), - [sym_let_command_definition] = STATE(277), - [sym_math_delimiter] = STATE(277), - [sym_paired_delimiter_definition] = STATE(277), - [sym_environment_definition] = STATE(277), - [sym_glossary_entry_definition] = STATE(277), - [sym_glossary_entry_reference] = STATE(277), - [sym_acronym_definition] = STATE(277), - [sym_acronym_reference] = STATE(277), - [sym_theorem_definition] = STATE(277), - [sym_color_definition] = STATE(277), - [sym_color_set_definition] = STATE(277), - [sym_color_reference] = STATE(277), - [sym_tikz_library_import] = STATE(277), - [sym_text_mode] = STATE(277), - [aux_sym_brack_group_repeat1] = STATE(277), - [aux_sym_text_repeat1] = STATE(349), - [sym_command_name] = ACTIONS(3618), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_RBRACK] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3629), - [anon_sym_EQ] = ACTIONS(3629), - [anon_sym_LPAREN] = ACTIONS(3629), - [anon_sym_RPAREN] = ACTIONS(3629), - [anon_sym_LBRACE] = ACTIONS(3632), - [sym_word] = ACTIONS(3635), - [sym_placeholder] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3641), - [anon_sym_DASH] = ACTIONS(3641), - [anon_sym_STAR] = ACTIONS(3641), - [anon_sym_SLASH] = ACTIONS(3641), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_COLON] = ACTIONS(3644), - [anon_sym_SQUOTE] = ACTIONS(3644), - [anon_sym__] = ACTIONS(3647), - [anon_sym_CARET] = ACTIONS(3650), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3653), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3653), - [anon_sym_DOLLAR] = ACTIONS(3656), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3659), - [anon_sym_BSLASHbegin] = ACTIONS(3662), - [anon_sym_BSLASHtitle] = ACTIONS(3665), - [anon_sym_BSLASHauthor] = ACTIONS(3668), - [anon_sym_BSLASHusepackage] = ACTIONS(3671), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3671), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3674), - [anon_sym_BSLASHinclude] = ACTIONS(3677), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3677), - [anon_sym_BSLASHinput] = ACTIONS(3677), - [anon_sym_BSLASHsubfile] = ACTIONS(3677), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3680), - [anon_sym_BSLASHbibliography] = ACTIONS(3683), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3686), - [anon_sym_BSLASHincludesvg] = ACTIONS(3689), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3692), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3698), - [anon_sym_BSLASHsubimport] = ACTIONS(3698), - [anon_sym_BSLASHinputfrom] = ACTIONS(3698), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3698), - [anon_sym_BSLASHincludefrom] = ACTIONS(3698), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3698), - [anon_sym_BSLASHcaption] = ACTIONS(3701), - [anon_sym_BSLASHcite] = ACTIONS(3704), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3707), - [anon_sym_BSLASHCite] = ACTIONS(3704), - [anon_sym_BSLASHnocite] = ACTIONS(3704), - [anon_sym_BSLASHcitet] = ACTIONS(3704), - [anon_sym_BSLASHcitep] = ACTIONS(3704), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3707), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3707), - [anon_sym_BSLASHciteauthor] = ACTIONS(3704), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3707), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3704), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3707), - [anon_sym_BSLASHcitetitle] = ACTIONS(3704), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3707), - [anon_sym_BSLASHciteyear] = ACTIONS(3704), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3707), - [anon_sym_BSLASHcitedate] = ACTIONS(3704), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3707), - [anon_sym_BSLASHciteurl] = ACTIONS(3704), - [anon_sym_BSLASHfullcite] = ACTIONS(3704), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3704), - [anon_sym_BSLASHcitealt] = ACTIONS(3704), - [anon_sym_BSLASHcitealp] = ACTIONS(3704), - [anon_sym_BSLASHcitetext] = ACTIONS(3704), - [anon_sym_BSLASHparencite] = ACTIONS(3704), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3707), - [anon_sym_BSLASHParencite] = ACTIONS(3704), - [anon_sym_BSLASHfootcite] = ACTIONS(3704), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3704), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3704), - [anon_sym_BSLASHtextcite] = ACTIONS(3704), - [anon_sym_BSLASHTextcite] = ACTIONS(3704), - [anon_sym_BSLASHsmartcite] = ACTIONS(3704), - [anon_sym_BSLASHSmartcite] = ACTIONS(3704), - [anon_sym_BSLASHsupercite] = ACTIONS(3704), - [anon_sym_BSLASHautocite] = ACTIONS(3704), - [anon_sym_BSLASHAutocite] = ACTIONS(3704), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3707), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3707), - [anon_sym_BSLASHvolcite] = ACTIONS(3704), - [anon_sym_BSLASHVolcite] = ACTIONS(3704), - [anon_sym_BSLASHpvolcite] = ACTIONS(3704), - [anon_sym_BSLASHPvolcite] = ACTIONS(3704), - [anon_sym_BSLASHfvolcite] = ACTIONS(3704), - [anon_sym_BSLASHftvolcite] = ACTIONS(3704), - [anon_sym_BSLASHsvolcite] = ACTIONS(3704), - [anon_sym_BSLASHSvolcite] = ACTIONS(3704), - [anon_sym_BSLASHtvolcite] = ACTIONS(3704), - [anon_sym_BSLASHTvolcite] = ACTIONS(3704), - [anon_sym_BSLASHavolcite] = ACTIONS(3704), - [anon_sym_BSLASHAvolcite] = ACTIONS(3704), - [anon_sym_BSLASHnotecite] = ACTIONS(3704), - [anon_sym_BSLASHNotecite] = ACTIONS(3704), - [anon_sym_BSLASHpnotecite] = ACTIONS(3704), - [anon_sym_BSLASHPnotecite] = ACTIONS(3704), - [anon_sym_BSLASHfnotecite] = ACTIONS(3704), - [anon_sym_BSLASHlabel] = ACTIONS(3710), - [anon_sym_BSLASHref] = ACTIONS(3713), - [anon_sym_BSLASHeqref] = ACTIONS(3713), - [anon_sym_BSLASHvref] = ACTIONS(3713), - [anon_sym_BSLASHVref] = ACTIONS(3713), - [anon_sym_BSLASHautoref] = ACTIONS(3713), - [anon_sym_BSLASHpageref] = ACTIONS(3713), - [anon_sym_BSLASHcref] = ACTIONS(3713), - [anon_sym_BSLASHCref] = ACTIONS(3713), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3716), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3716), - [anon_sym_BSLASHnamecref] = ACTIONS(3713), - [anon_sym_BSLASHnameCref] = ACTIONS(3713), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3713), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3713), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3713), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3713), - [anon_sym_BSLASHlabelcref] = ACTIONS(3713), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3713), - [anon_sym_BSLASHcrefrange] = ACTIONS(3719), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3722), - [anon_sym_BSLASHCrefrange] = ACTIONS(3719), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3722), - [anon_sym_BSLASHnewlabel] = ACTIONS(3725), - [anon_sym_BSLASHnewcommand] = ACTIONS(3728), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3731), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3728), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3731), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3728), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3731), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3728), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3731), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3728), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3728), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3728), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3728), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3728), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3728), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3728), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3728), - [anon_sym_BSLASHdef] = ACTIONS(3734), - [anon_sym_BSLASHlet] = ACTIONS(3737), - [anon_sym_BSLASHleft] = ACTIONS(3740), - [anon_sym_BSLASHbig] = ACTIONS(3740), - [anon_sym_BSLASHBig] = ACTIONS(3740), - [anon_sym_BSLASHbigg] = ACTIONS(3740), - [anon_sym_BSLASHBigg] = ACTIONS(3740), - [anon_sym_BSLASHbigl] = ACTIONS(3740), - [anon_sym_BSLASHBigl] = ACTIONS(3740), - [anon_sym_BSLASHbiggl] = ACTIONS(3740), - [anon_sym_BSLASHBiggl] = ACTIONS(3740), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3743), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3743), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3746), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3746), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3746), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3746), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3746), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3746), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3749), - [anon_sym_BSLASHgls] = ACTIONS(3752), - [anon_sym_BSLASHGls] = ACTIONS(3752), - [anon_sym_BSLASHGLS] = ACTIONS(3752), - [anon_sym_BSLASHglspl] = ACTIONS(3752), - [anon_sym_BSLASHGlspl] = ACTIONS(3752), - [anon_sym_BSLASHGLSpl] = ACTIONS(3752), - [anon_sym_BSLASHglsdisp] = ACTIONS(3752), - [anon_sym_BSLASHglslink] = ACTIONS(3752), - [anon_sym_BSLASHglstext] = ACTIONS(3752), - [anon_sym_BSLASHGlstext] = ACTIONS(3752), - [anon_sym_BSLASHGLStext] = ACTIONS(3752), - [anon_sym_BSLASHglsfirst] = ACTIONS(3752), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3752), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3752), - [anon_sym_BSLASHglsplural] = ACTIONS(3752), - [anon_sym_BSLASHGlsplural] = ACTIONS(3752), - [anon_sym_BSLASHGLSplural] = ACTIONS(3752), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3752), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3752), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3752), - [anon_sym_BSLASHglsname] = ACTIONS(3752), - [anon_sym_BSLASHGlsname] = ACTIONS(3752), - [anon_sym_BSLASHGLSname] = ACTIONS(3752), - [anon_sym_BSLASHglssymbol] = ACTIONS(3752), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3752), - [anon_sym_BSLASHglsdesc] = ACTIONS(3752), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3752), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3752), - [anon_sym_BSLASHglsuseri] = ACTIONS(3752), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3752), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3752), - [anon_sym_BSLASHglsuserii] = ACTIONS(3752), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3752), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3752), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3752), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3752), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3752), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3752), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3752), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3752), - [anon_sym_BSLASHglsuserv] = ACTIONS(3752), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3752), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3752), - [anon_sym_BSLASHglsuservi] = ACTIONS(3752), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3752), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3752), - [anon_sym_BSLASHnewacronym] = ACTIONS(3755), - [anon_sym_BSLASHacrshort] = ACTIONS(3758), - [anon_sym_BSLASHAcrshort] = ACTIONS(3758), - [anon_sym_BSLASHACRshort] = ACTIONS(3758), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3758), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3758), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3758), - [anon_sym_BSLASHacrlong] = ACTIONS(3758), - [anon_sym_BSLASHAcrlong] = ACTIONS(3758), - [anon_sym_BSLASHACRlong] = ACTIONS(3758), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3758), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3758), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3758), - [anon_sym_BSLASHacrfull] = ACTIONS(3758), - [anon_sym_BSLASHAcrfull] = ACTIONS(3758), - [anon_sym_BSLASHACRfull] = ACTIONS(3758), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3758), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3758), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3758), - [anon_sym_BSLASHacs] = ACTIONS(3758), - [anon_sym_BSLASHAcs] = ACTIONS(3758), - [anon_sym_BSLASHacsp] = ACTIONS(3758), - [anon_sym_BSLASHAcsp] = ACTIONS(3758), - [anon_sym_BSLASHacl] = ACTIONS(3758), - [anon_sym_BSLASHAcl] = ACTIONS(3758), - [anon_sym_BSLASHaclp] = ACTIONS(3758), - [anon_sym_BSLASHAclp] = ACTIONS(3758), - [anon_sym_BSLASHacf] = ACTIONS(3758), - [anon_sym_BSLASHAcf] = ACTIONS(3758), - [anon_sym_BSLASHacfp] = ACTIONS(3758), - [anon_sym_BSLASHAcfp] = ACTIONS(3758), - [anon_sym_BSLASHac] = ACTIONS(3758), - [anon_sym_BSLASHAc] = ACTIONS(3758), - [anon_sym_BSLASHacp] = ACTIONS(3758), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3758), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3758), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3758), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3758), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3758), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3758), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3758), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3758), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3758), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3758), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3761), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3764), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3761), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3764), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3767), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3770), - [anon_sym_BSLASHcolor] = ACTIONS(3773), - [anon_sym_BSLASHcolorbox] = ACTIONS(3773), - [anon_sym_BSLASHtextcolor] = ACTIONS(3773), - [anon_sym_BSLASHpagecolor] = ACTIONS(3773), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3776), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3776), - [anon_sym_BSLASHtext] = ACTIONS(3779), - [anon_sym_BSLASHintertext] = ACTIONS(3779), - [anon_sym_shortintertext] = ACTIONS(3779), - }, - [278] = { - [sym_block_comment] = STATE(1019), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym__command] = STATE(1019), - [sym_generic_command] = STATE(1019), - [sym_title_declaration] = STATE(1019), - [sym_author_declaration] = STATE(1019), - [sym_package_include] = STATE(1019), - [sym_class_include] = STATE(1019), - [sym_latex_include] = STATE(1019), - [sym_biblatex_include] = STATE(1019), - [sym_bibtex_include] = STATE(1019), - [sym_graphics_include] = STATE(1019), - [sym_svg_include] = STATE(1019), - [sym_inkscape_include] = STATE(1019), - [sym_verbatim_include] = STATE(1019), - [sym_import_include] = STATE(1019), - [sym_caption] = STATE(1019), - [sym_citation] = STATE(1019), - [sym_label_definition] = STATE(1019), - [sym_label_reference] = STATE(1019), - [sym_label_reference_range] = STATE(1019), - [sym_label_number] = STATE(1019), - [sym_new_command_definition] = STATE(1019), - [sym_old_command_definition] = STATE(1019), - [sym_let_command_definition] = STATE(1019), - [sym_paired_delimiter_definition] = STATE(1019), - [sym_environment_definition] = STATE(1019), - [sym_glossary_entry_definition] = STATE(1019), - [sym_glossary_entry_reference] = STATE(1019), - [sym_acronym_definition] = STATE(1019), - [sym_acronym_reference] = STATE(1019), - [sym_theorem_definition] = STATE(1019), - [sym_color_definition] = STATE(1019), - [sym_color_set_definition] = STATE(1019), - [sym_color_reference] = STATE(1019), - [sym_tikz_library_import] = STATE(1019), - [aux_sym_text_repeat1] = STATE(278), - [ts_builtin_sym_end] = ACTIONS(3089), - [sym_command_name] = ACTIONS(3782), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3785), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_BSLASHpart] = ACTIONS(3091), - [anon_sym_BSLASHpart_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddpart] = ACTIONS(3091), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(3089), - [anon_sym_BSLASHchapter] = ACTIONS(3091), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddchap] = ACTIONS(3091), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsection] = ACTIONS(3091), - [anon_sym_BSLASHsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddsec] = ACTIONS(3091), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubsection] = ACTIONS(3091), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubsubsection] = ACTIONS(3091), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHparagraph] = ACTIONS(3091), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubparagraph] = ACTIONS(3091), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(3089), - [anon_sym_BSLASHitem] = ACTIONS(3091), - [anon_sym_BSLASHitem_STAR] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [sym_word] = ACTIONS(3788), - [sym_placeholder] = ACTIONS(3791), - [anon_sym_PLUS] = ACTIONS(3794), - [anon_sym_DASH] = ACTIONS(3794), - [anon_sym_STAR] = ACTIONS(3794), - [anon_sym_SLASH] = ACTIONS(3794), - [anon_sym_LT] = ACTIONS(3797), - [anon_sym_GT] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(3797), - [anon_sym_PIPE] = ACTIONS(3797), - [anon_sym_COLON] = ACTIONS(3797), - [anon_sym_SQUOTE] = ACTIONS(3797), - [anon_sym__] = ACTIONS(3800), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3089), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3089), - [anon_sym_BSLASHbegin] = ACTIONS(3091), - [anon_sym_BSLASHtitle] = ACTIONS(3806), - [anon_sym_BSLASHauthor] = ACTIONS(3809), - [anon_sym_BSLASHusepackage] = ACTIONS(3812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3815), - [anon_sym_BSLASHinclude] = ACTIONS(3818), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3818), - [anon_sym_BSLASHinput] = ACTIONS(3818), - [anon_sym_BSLASHsubfile] = ACTIONS(3818), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3821), - [anon_sym_BSLASHbibliography] = ACTIONS(3824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3827), - [anon_sym_BSLASHincludesvg] = ACTIONS(3830), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3833), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3836), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3836), - [anon_sym_BSLASHimport] = ACTIONS(3839), - [anon_sym_BSLASHsubimport] = ACTIONS(3839), - [anon_sym_BSLASHinputfrom] = ACTIONS(3839), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3839), - [anon_sym_BSLASHincludefrom] = ACTIONS(3839), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3839), - [anon_sym_BSLASHcaption] = ACTIONS(3842), - [anon_sym_BSLASHcite] = ACTIONS(3845), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3848), - [anon_sym_BSLASHCite] = ACTIONS(3845), - [anon_sym_BSLASHnocite] = ACTIONS(3845), - [anon_sym_BSLASHcitet] = ACTIONS(3845), - [anon_sym_BSLASHcitep] = ACTIONS(3845), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3848), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3848), - [anon_sym_BSLASHciteauthor] = ACTIONS(3845), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3848), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3845), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3848), - [anon_sym_BSLASHcitetitle] = ACTIONS(3845), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3848), - [anon_sym_BSLASHciteyear] = ACTIONS(3845), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3848), - [anon_sym_BSLASHcitedate] = ACTIONS(3845), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3848), - [anon_sym_BSLASHciteurl] = ACTIONS(3845), - [anon_sym_BSLASHfullcite] = ACTIONS(3845), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3845), - [anon_sym_BSLASHcitealt] = ACTIONS(3845), - [anon_sym_BSLASHcitealp] = ACTIONS(3845), - [anon_sym_BSLASHcitetext] = ACTIONS(3845), - [anon_sym_BSLASHparencite] = ACTIONS(3845), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3848), - [anon_sym_BSLASHParencite] = ACTIONS(3845), - [anon_sym_BSLASHfootcite] = ACTIONS(3845), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3845), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3845), - [anon_sym_BSLASHtextcite] = ACTIONS(3845), - [anon_sym_BSLASHTextcite] = ACTIONS(3845), - [anon_sym_BSLASHsmartcite] = ACTIONS(3845), - [anon_sym_BSLASHSmartcite] = ACTIONS(3845), - [anon_sym_BSLASHsupercite] = ACTIONS(3845), - [anon_sym_BSLASHautocite] = ACTIONS(3845), - [anon_sym_BSLASHAutocite] = ACTIONS(3845), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3848), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3848), - [anon_sym_BSLASHvolcite] = ACTIONS(3845), - [anon_sym_BSLASHVolcite] = ACTIONS(3845), - [anon_sym_BSLASHpvolcite] = ACTIONS(3845), - [anon_sym_BSLASHPvolcite] = ACTIONS(3845), - [anon_sym_BSLASHfvolcite] = ACTIONS(3845), - [anon_sym_BSLASHftvolcite] = ACTIONS(3845), - [anon_sym_BSLASHsvolcite] = ACTIONS(3845), - [anon_sym_BSLASHSvolcite] = ACTIONS(3845), - [anon_sym_BSLASHtvolcite] = ACTIONS(3845), - [anon_sym_BSLASHTvolcite] = ACTIONS(3845), - [anon_sym_BSLASHavolcite] = ACTIONS(3845), - [anon_sym_BSLASHAvolcite] = ACTIONS(3845), - [anon_sym_BSLASHnotecite] = ACTIONS(3845), - [anon_sym_BSLASHNotecite] = ACTIONS(3845), - [anon_sym_BSLASHpnotecite] = ACTIONS(3845), - [anon_sym_BSLASHPnotecite] = ACTIONS(3845), - [anon_sym_BSLASHfnotecite] = ACTIONS(3845), - [anon_sym_BSLASHlabel] = ACTIONS(3851), - [anon_sym_BSLASHref] = ACTIONS(3854), - [anon_sym_BSLASHeqref] = ACTIONS(3854), - [anon_sym_BSLASHvref] = ACTIONS(3854), - [anon_sym_BSLASHVref] = ACTIONS(3854), - [anon_sym_BSLASHautoref] = ACTIONS(3854), - [anon_sym_BSLASHpageref] = ACTIONS(3854), - [anon_sym_BSLASHcref] = ACTIONS(3854), - [anon_sym_BSLASHCref] = ACTIONS(3854), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3857), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3857), - [anon_sym_BSLASHnamecref] = ACTIONS(3854), - [anon_sym_BSLASHnameCref] = ACTIONS(3854), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3854), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3854), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3854), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3854), - [anon_sym_BSLASHlabelcref] = ACTIONS(3854), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3854), - [anon_sym_BSLASHcrefrange] = ACTIONS(3860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3863), - [anon_sym_BSLASHCrefrange] = ACTIONS(3860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3863), - [anon_sym_BSLASHnewlabel] = ACTIONS(3866), - [anon_sym_BSLASHnewcommand] = ACTIONS(3869), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3872), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3869), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3872), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3869), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3872), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3869), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3872), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3869), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3869), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3869), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3869), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3869), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3869), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3869), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3869), - [anon_sym_BSLASHdef] = ACTIONS(3875), - [anon_sym_BSLASHlet] = ACTIONS(3878), - [anon_sym_BSLASHleft] = ACTIONS(3091), - [anon_sym_BSLASHbig] = ACTIONS(3091), - [anon_sym_BSLASHBig] = ACTIONS(3091), - [anon_sym_BSLASHbigg] = ACTIONS(3091), - [anon_sym_BSLASHBigg] = ACTIONS(3091), - [anon_sym_BSLASHbigl] = ACTIONS(3091), - [anon_sym_BSLASHBigl] = ACTIONS(3091), - [anon_sym_BSLASHbiggl] = ACTIONS(3091), - [anon_sym_BSLASHBiggl] = ACTIONS(3091), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3881), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3881), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3884), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3884), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3884), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3884), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3884), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3884), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3887), - [anon_sym_BSLASHgls] = ACTIONS(3890), - [anon_sym_BSLASHGls] = ACTIONS(3890), - [anon_sym_BSLASHGLS] = ACTIONS(3890), - [anon_sym_BSLASHglspl] = ACTIONS(3890), - [anon_sym_BSLASHGlspl] = ACTIONS(3890), - [anon_sym_BSLASHGLSpl] = ACTIONS(3890), - [anon_sym_BSLASHglsdisp] = ACTIONS(3890), - [anon_sym_BSLASHglslink] = ACTIONS(3890), - [anon_sym_BSLASHglstext] = ACTIONS(3890), - [anon_sym_BSLASHGlstext] = ACTIONS(3890), - [anon_sym_BSLASHGLStext] = ACTIONS(3890), - [anon_sym_BSLASHglsfirst] = ACTIONS(3890), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3890), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3890), - [anon_sym_BSLASHglsplural] = ACTIONS(3890), - [anon_sym_BSLASHGlsplural] = ACTIONS(3890), - [anon_sym_BSLASHGLSplural] = ACTIONS(3890), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3890), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3890), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3890), - [anon_sym_BSLASHglsname] = ACTIONS(3890), - [anon_sym_BSLASHGlsname] = ACTIONS(3890), - [anon_sym_BSLASHGLSname] = ACTIONS(3890), - [anon_sym_BSLASHglssymbol] = ACTIONS(3890), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3890), - [anon_sym_BSLASHglsdesc] = ACTIONS(3890), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3890), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3890), - [anon_sym_BSLASHglsuseri] = ACTIONS(3890), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3890), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3890), - [anon_sym_BSLASHglsuserii] = ACTIONS(3890), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3890), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3890), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3890), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3890), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3890), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3890), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3890), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3890), - [anon_sym_BSLASHglsuserv] = ACTIONS(3890), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3890), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3890), - [anon_sym_BSLASHglsuservi] = ACTIONS(3890), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3890), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3890), - [anon_sym_BSLASHnewacronym] = ACTIONS(3893), - [anon_sym_BSLASHacrshort] = ACTIONS(3896), - [anon_sym_BSLASHAcrshort] = ACTIONS(3896), - [anon_sym_BSLASHACRshort] = ACTIONS(3896), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3896), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3896), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3896), - [anon_sym_BSLASHacrlong] = ACTIONS(3896), - [anon_sym_BSLASHAcrlong] = ACTIONS(3896), - [anon_sym_BSLASHACRlong] = ACTIONS(3896), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3896), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3896), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3896), - [anon_sym_BSLASHacrfull] = ACTIONS(3896), - [anon_sym_BSLASHAcrfull] = ACTIONS(3896), - [anon_sym_BSLASHACRfull] = ACTIONS(3896), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3896), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3896), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3896), - [anon_sym_BSLASHacs] = ACTIONS(3896), - [anon_sym_BSLASHAcs] = ACTIONS(3896), - [anon_sym_BSLASHacsp] = ACTIONS(3896), - [anon_sym_BSLASHAcsp] = ACTIONS(3896), - [anon_sym_BSLASHacl] = ACTIONS(3896), - [anon_sym_BSLASHAcl] = ACTIONS(3896), - [anon_sym_BSLASHaclp] = ACTIONS(3896), - [anon_sym_BSLASHAclp] = ACTIONS(3896), - [anon_sym_BSLASHacf] = ACTIONS(3896), - [anon_sym_BSLASHAcf] = ACTIONS(3896), - [anon_sym_BSLASHacfp] = ACTIONS(3896), - [anon_sym_BSLASHAcfp] = ACTIONS(3896), - [anon_sym_BSLASHac] = ACTIONS(3896), - [anon_sym_BSLASHAc] = ACTIONS(3896), - [anon_sym_BSLASHacp] = ACTIONS(3896), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3896), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3896), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3896), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3896), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3896), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3896), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3896), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3896), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3896), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3896), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3899), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3902), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3899), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3902), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3905), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3908), - [anon_sym_BSLASHcolor] = ACTIONS(3911), - [anon_sym_BSLASHcolorbox] = ACTIONS(3911), - [anon_sym_BSLASHtextcolor] = ACTIONS(3911), - [anon_sym_BSLASHpagecolor] = ACTIONS(3911), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3914), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3914), - [anon_sym_BSLASHtext] = ACTIONS(3091), - [anon_sym_BSLASHintertext] = ACTIONS(3091), - [anon_sym_shortintertext] = ACTIONS(3091), - }, - [279] = { - [sym_block_comment] = STATE(277), - [sym__text_with_env_content] = STATE(277), - [sym__text_content] = STATE(277), - [sym_curly_group] = STATE(277), - [sym_brack_group] = STATE(277), - [sym_text] = STATE(277), - [sym_operator] = STATE(1750), - [sym_subscript] = STATE(1750), - [sym_superscript] = STATE(1750), - [sym_displayed_equation] = STATE(277), - [sym_inline_formula] = STATE(277), - [sym_begin] = STATE(67), - [sym_generic_environment] = STATE(277), - [sym_comment_environment] = STATE(277), - [sym__comment_environment_begin] = STATE(3118), - [sym_verbatim_environment] = STATE(277), - [sym__verbatim_environment_begin] = STATE(3119), - [sym_listing_environment] = STATE(277), - [sym__listing_environment_begin] = STATE(3125), - [sym_minted_environment] = STATE(277), - [sym__minted_environment_begin] = STATE(3127), - [sym_pycode_environment] = STATE(277), - [sym__pycode_environment_begin] = STATE(3128), - [sym_math_environment] = STATE(277), - [sym__math_environment_begin] = STATE(272), - [sym__command] = STATE(277), - [sym_generic_command] = STATE(277), - [sym_title_declaration] = STATE(277), - [sym_author_declaration] = STATE(277), - [sym_package_include] = STATE(277), - [sym_class_include] = STATE(277), - [sym_latex_include] = STATE(277), - [sym_biblatex_include] = STATE(277), - [sym_bibtex_include] = STATE(277), - [sym_graphics_include] = STATE(277), - [sym_svg_include] = STATE(277), - [sym_inkscape_include] = STATE(277), - [sym_verbatim_include] = STATE(277), - [sym_import_include] = STATE(277), - [sym_caption] = STATE(277), - [sym_citation] = STATE(277), - [sym_label_definition] = STATE(277), - [sym_label_reference] = STATE(277), - [sym_label_reference_range] = STATE(277), - [sym_label_number] = STATE(277), - [sym_new_command_definition] = STATE(277), - [sym_old_command_definition] = STATE(277), - [sym_let_command_definition] = STATE(277), - [sym_math_delimiter] = STATE(277), - [sym_paired_delimiter_definition] = STATE(277), - [sym_environment_definition] = STATE(277), - [sym_glossary_entry_definition] = STATE(277), - [sym_glossary_entry_reference] = STATE(277), - [sym_acronym_definition] = STATE(277), - [sym_acronym_reference] = STATE(277), - [sym_theorem_definition] = STATE(277), - [sym_color_definition] = STATE(277), - [sym_color_set_definition] = STATE(277), - [sym_color_reference] = STATE(277), - [sym_tikz_library_import] = STATE(277), - [sym_text_mode] = STATE(277), - [aux_sym_brack_group_repeat1] = STATE(277), - [aux_sym_text_repeat1] = STATE(349), - [sym_command_name] = ACTIONS(3510), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(3917), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3520), - [sym_word] = ACTIONS(3522), - [sym_placeholder] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_SLASH] = ACTIONS(3526), - [anon_sym_LT] = ACTIONS(3528), - [anon_sym_GT] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_PIPE] = ACTIONS(3528), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3528), - [anon_sym__] = ACTIONS(3530), - [anon_sym_CARET] = ACTIONS(3532), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3534), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3534), - [anon_sym_DOLLAR] = ACTIONS(3536), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3538), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(3540), - [anon_sym_BSLASHauthor] = ACTIONS(3542), - [anon_sym_BSLASHusepackage] = ACTIONS(3544), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3544), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3546), - [anon_sym_BSLASHinclude] = ACTIONS(3548), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3548), - [anon_sym_BSLASHinput] = ACTIONS(3548), - [anon_sym_BSLASHsubfile] = ACTIONS(3548), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3550), - [anon_sym_BSLASHbibliography] = ACTIONS(3552), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3554), - [anon_sym_BSLASHincludesvg] = ACTIONS(3556), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3558), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3560), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3560), - [anon_sym_BSLASHimport] = ACTIONS(3562), - [anon_sym_BSLASHsubimport] = ACTIONS(3562), - [anon_sym_BSLASHinputfrom] = ACTIONS(3562), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3562), - [anon_sym_BSLASHincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHcaption] = ACTIONS(3564), - [anon_sym_BSLASHcite] = ACTIONS(3566), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCite] = ACTIONS(3566), - [anon_sym_BSLASHnocite] = ACTIONS(3566), - [anon_sym_BSLASHcitet] = ACTIONS(3566), - [anon_sym_BSLASHcitep] = ACTIONS(3566), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteauthor] = ACTIONS(3566), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3566), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitetitle] = ACTIONS(3566), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteyear] = ACTIONS(3566), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitedate] = ACTIONS(3566), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteurl] = ACTIONS(3566), - [anon_sym_BSLASHfullcite] = ACTIONS(3566), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3566), - [anon_sym_BSLASHcitealt] = ACTIONS(3566), - [anon_sym_BSLASHcitealp] = ACTIONS(3566), - [anon_sym_BSLASHcitetext] = ACTIONS(3566), - [anon_sym_BSLASHparencite] = ACTIONS(3566), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHParencite] = ACTIONS(3566), - [anon_sym_BSLASHfootcite] = ACTIONS(3566), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3566), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3566), - [anon_sym_BSLASHtextcite] = ACTIONS(3566), - [anon_sym_BSLASHTextcite] = ACTIONS(3566), - [anon_sym_BSLASHsmartcite] = ACTIONS(3566), - [anon_sym_BSLASHSmartcite] = ACTIONS(3566), - [anon_sym_BSLASHsupercite] = ACTIONS(3566), - [anon_sym_BSLASHautocite] = ACTIONS(3566), - [anon_sym_BSLASHAutocite] = ACTIONS(3566), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHvolcite] = ACTIONS(3566), - [anon_sym_BSLASHVolcite] = ACTIONS(3566), - [anon_sym_BSLASHpvolcite] = ACTIONS(3566), - [anon_sym_BSLASHPvolcite] = ACTIONS(3566), - [anon_sym_BSLASHfvolcite] = ACTIONS(3566), - [anon_sym_BSLASHftvolcite] = ACTIONS(3566), - [anon_sym_BSLASHsvolcite] = ACTIONS(3566), - [anon_sym_BSLASHSvolcite] = ACTIONS(3566), - [anon_sym_BSLASHtvolcite] = ACTIONS(3566), - [anon_sym_BSLASHTvolcite] = ACTIONS(3566), - [anon_sym_BSLASHavolcite] = ACTIONS(3566), - [anon_sym_BSLASHAvolcite] = ACTIONS(3566), - [anon_sym_BSLASHnotecite] = ACTIONS(3566), - [anon_sym_BSLASHNotecite] = ACTIONS(3566), - [anon_sym_BSLASHpnotecite] = ACTIONS(3566), - [anon_sym_BSLASHPnotecite] = ACTIONS(3566), - [anon_sym_BSLASHfnotecite] = ACTIONS(3566), - [anon_sym_BSLASHlabel] = ACTIONS(3570), - [anon_sym_BSLASHref] = ACTIONS(3572), - [anon_sym_BSLASHeqref] = ACTIONS(3572), - [anon_sym_BSLASHvref] = ACTIONS(3572), - [anon_sym_BSLASHVref] = ACTIONS(3572), - [anon_sym_BSLASHautoref] = ACTIONS(3572), - [anon_sym_BSLASHpageref] = ACTIONS(3572), - [anon_sym_BSLASHcref] = ACTIONS(3572), - [anon_sym_BSLASHCref] = ACTIONS(3572), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnameCref] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHlabelcref] = ACTIONS(3572), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3572), - [anon_sym_BSLASHcrefrange] = ACTIONS(3576), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHCrefrange] = ACTIONS(3576), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHnewlabel] = ACTIONS(3580), - [anon_sym_BSLASHnewcommand] = ACTIONS(3582), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3582), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3582), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3584), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHdef] = ACTIONS(3586), - [anon_sym_BSLASHlet] = ACTIONS(3588), - [anon_sym_BSLASHleft] = ACTIONS(3590), - [anon_sym_BSLASHbig] = ACTIONS(3590), - [anon_sym_BSLASHBig] = ACTIONS(3590), - [anon_sym_BSLASHbigg] = ACTIONS(3590), - [anon_sym_BSLASHBigg] = ACTIONS(3590), - [anon_sym_BSLASHbigl] = ACTIONS(3590), - [anon_sym_BSLASHBigl] = ACTIONS(3590), - [anon_sym_BSLASHbiggl] = ACTIONS(3590), - [anon_sym_BSLASHBiggl] = ACTIONS(3590), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3592), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3592), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3596), - [anon_sym_BSLASHgls] = ACTIONS(3598), - [anon_sym_BSLASHGls] = ACTIONS(3598), - [anon_sym_BSLASHGLS] = ACTIONS(3598), - [anon_sym_BSLASHglspl] = ACTIONS(3598), - [anon_sym_BSLASHGlspl] = ACTIONS(3598), - [anon_sym_BSLASHGLSpl] = ACTIONS(3598), - [anon_sym_BSLASHglsdisp] = ACTIONS(3598), - [anon_sym_BSLASHglslink] = ACTIONS(3598), - [anon_sym_BSLASHglstext] = ACTIONS(3598), - [anon_sym_BSLASHGlstext] = ACTIONS(3598), - [anon_sym_BSLASHGLStext] = ACTIONS(3598), - [anon_sym_BSLASHglsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3598), - [anon_sym_BSLASHglsplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSplural] = ACTIONS(3598), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHglsname] = ACTIONS(3598), - [anon_sym_BSLASHGlsname] = ACTIONS(3598), - [anon_sym_BSLASHGLSname] = ACTIONS(3598), - [anon_sym_BSLASHglssymbol] = ACTIONS(3598), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3598), - [anon_sym_BSLASHglsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3598), - [anon_sym_BSLASHglsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3598), - [anon_sym_BSLASHglsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3598), - [anon_sym_BSLASHglsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3598), - [anon_sym_BSLASHglsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3598), - [anon_sym_BSLASHnewacronym] = ACTIONS(3600), - [anon_sym_BSLASHacrshort] = ACTIONS(3602), - [anon_sym_BSLASHAcrshort] = ACTIONS(3602), - [anon_sym_BSLASHACRshort] = ACTIONS(3602), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3602), - [anon_sym_BSLASHacrlong] = ACTIONS(3602), - [anon_sym_BSLASHAcrlong] = ACTIONS(3602), - [anon_sym_BSLASHACRlong] = ACTIONS(3602), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3602), - [anon_sym_BSLASHacrfull] = ACTIONS(3602), - [anon_sym_BSLASHAcrfull] = ACTIONS(3602), - [anon_sym_BSLASHACRfull] = ACTIONS(3602), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3602), - [anon_sym_BSLASHacs] = ACTIONS(3602), - [anon_sym_BSLASHAcs] = ACTIONS(3602), - [anon_sym_BSLASHacsp] = ACTIONS(3602), - [anon_sym_BSLASHAcsp] = ACTIONS(3602), - [anon_sym_BSLASHacl] = ACTIONS(3602), - [anon_sym_BSLASHAcl] = ACTIONS(3602), - [anon_sym_BSLASHaclp] = ACTIONS(3602), - [anon_sym_BSLASHAclp] = ACTIONS(3602), - [anon_sym_BSLASHacf] = ACTIONS(3602), - [anon_sym_BSLASHAcf] = ACTIONS(3602), - [anon_sym_BSLASHacfp] = ACTIONS(3602), - [anon_sym_BSLASHAcfp] = ACTIONS(3602), - [anon_sym_BSLASHac] = ACTIONS(3602), - [anon_sym_BSLASHAc] = ACTIONS(3602), - [anon_sym_BSLASHacp] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3604), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3604), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3608), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3610), - [anon_sym_BSLASHcolor] = ACTIONS(3612), - [anon_sym_BSLASHcolorbox] = ACTIONS(3612), - [anon_sym_BSLASHtextcolor] = ACTIONS(3612), - [anon_sym_BSLASHpagecolor] = ACTIONS(3612), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3614), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3614), - [anon_sym_BSLASHtext] = ACTIONS(3616), - [anon_sym_BSLASHintertext] = ACTIONS(3616), - [anon_sym_shortintertext] = ACTIONS(3616), - }, - [280] = { - [sym_block_comment] = STATE(277), - [sym__text_with_env_content] = STATE(277), - [sym__text_content] = STATE(277), - [sym_curly_group] = STATE(277), - [sym_brack_group] = STATE(277), - [sym_text] = STATE(277), - [sym_operator] = STATE(1750), - [sym_subscript] = STATE(1750), - [sym_superscript] = STATE(1750), - [sym_displayed_equation] = STATE(277), - [sym_inline_formula] = STATE(277), - [sym_begin] = STATE(67), - [sym_generic_environment] = STATE(277), - [sym_comment_environment] = STATE(277), - [sym__comment_environment_begin] = STATE(3118), - [sym_verbatim_environment] = STATE(277), - [sym__verbatim_environment_begin] = STATE(3119), - [sym_listing_environment] = STATE(277), - [sym__listing_environment_begin] = STATE(3125), - [sym_minted_environment] = STATE(277), - [sym__minted_environment_begin] = STATE(3127), - [sym_pycode_environment] = STATE(277), - [sym__pycode_environment_begin] = STATE(3128), - [sym_math_environment] = STATE(277), - [sym__math_environment_begin] = STATE(272), - [sym__command] = STATE(277), - [sym_generic_command] = STATE(277), - [sym_title_declaration] = STATE(277), - [sym_author_declaration] = STATE(277), - [sym_package_include] = STATE(277), - [sym_class_include] = STATE(277), - [sym_latex_include] = STATE(277), - [sym_biblatex_include] = STATE(277), - [sym_bibtex_include] = STATE(277), - [sym_graphics_include] = STATE(277), - [sym_svg_include] = STATE(277), - [sym_inkscape_include] = STATE(277), - [sym_verbatim_include] = STATE(277), - [sym_import_include] = STATE(277), - [sym_caption] = STATE(277), - [sym_citation] = STATE(277), - [sym_label_definition] = STATE(277), - [sym_label_reference] = STATE(277), - [sym_label_reference_range] = STATE(277), - [sym_label_number] = STATE(277), - [sym_new_command_definition] = STATE(277), - [sym_old_command_definition] = STATE(277), - [sym_let_command_definition] = STATE(277), - [sym_math_delimiter] = STATE(277), - [sym_paired_delimiter_definition] = STATE(277), - [sym_environment_definition] = STATE(277), - [sym_glossary_entry_definition] = STATE(277), - [sym_glossary_entry_reference] = STATE(277), - [sym_acronym_definition] = STATE(277), - [sym_acronym_reference] = STATE(277), - [sym_theorem_definition] = STATE(277), - [sym_color_definition] = STATE(277), - [sym_color_set_definition] = STATE(277), - [sym_color_reference] = STATE(277), - [sym_tikz_library_import] = STATE(277), - [sym_text_mode] = STATE(277), - [aux_sym_brack_group_repeat1] = STATE(277), - [aux_sym_text_repeat1] = STATE(349), - [sym_command_name] = ACTIONS(3510), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(3919), - [anon_sym_COMMA] = ACTIONS(3518), - [anon_sym_EQ] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3520), - [sym_word] = ACTIONS(3522), - [sym_placeholder] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_SLASH] = ACTIONS(3526), - [anon_sym_LT] = ACTIONS(3528), - [anon_sym_GT] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_PIPE] = ACTIONS(3528), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3528), - [anon_sym__] = ACTIONS(3530), - [anon_sym_CARET] = ACTIONS(3532), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3534), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3534), - [anon_sym_DOLLAR] = ACTIONS(3536), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3538), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(3540), - [anon_sym_BSLASHauthor] = ACTIONS(3542), - [anon_sym_BSLASHusepackage] = ACTIONS(3544), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3544), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3546), - [anon_sym_BSLASHinclude] = ACTIONS(3548), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3548), - [anon_sym_BSLASHinput] = ACTIONS(3548), - [anon_sym_BSLASHsubfile] = ACTIONS(3548), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3550), - [anon_sym_BSLASHbibliography] = ACTIONS(3552), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3554), - [anon_sym_BSLASHincludesvg] = ACTIONS(3556), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3558), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3560), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3560), - [anon_sym_BSLASHimport] = ACTIONS(3562), - [anon_sym_BSLASHsubimport] = ACTIONS(3562), - [anon_sym_BSLASHinputfrom] = ACTIONS(3562), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3562), - [anon_sym_BSLASHincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHcaption] = ACTIONS(3564), - [anon_sym_BSLASHcite] = ACTIONS(3566), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCite] = ACTIONS(3566), - [anon_sym_BSLASHnocite] = ACTIONS(3566), - [anon_sym_BSLASHcitet] = ACTIONS(3566), - [anon_sym_BSLASHcitep] = ACTIONS(3566), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteauthor] = ACTIONS(3566), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3566), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitetitle] = ACTIONS(3566), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteyear] = ACTIONS(3566), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitedate] = ACTIONS(3566), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteurl] = ACTIONS(3566), - [anon_sym_BSLASHfullcite] = ACTIONS(3566), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3566), - [anon_sym_BSLASHcitealt] = ACTIONS(3566), - [anon_sym_BSLASHcitealp] = ACTIONS(3566), - [anon_sym_BSLASHcitetext] = ACTIONS(3566), - [anon_sym_BSLASHparencite] = ACTIONS(3566), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHParencite] = ACTIONS(3566), - [anon_sym_BSLASHfootcite] = ACTIONS(3566), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3566), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3566), - [anon_sym_BSLASHtextcite] = ACTIONS(3566), - [anon_sym_BSLASHTextcite] = ACTIONS(3566), - [anon_sym_BSLASHsmartcite] = ACTIONS(3566), - [anon_sym_BSLASHSmartcite] = ACTIONS(3566), - [anon_sym_BSLASHsupercite] = ACTIONS(3566), - [anon_sym_BSLASHautocite] = ACTIONS(3566), - [anon_sym_BSLASHAutocite] = ACTIONS(3566), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHvolcite] = ACTIONS(3566), - [anon_sym_BSLASHVolcite] = ACTIONS(3566), - [anon_sym_BSLASHpvolcite] = ACTIONS(3566), - [anon_sym_BSLASHPvolcite] = ACTIONS(3566), - [anon_sym_BSLASHfvolcite] = ACTIONS(3566), - [anon_sym_BSLASHftvolcite] = ACTIONS(3566), - [anon_sym_BSLASHsvolcite] = ACTIONS(3566), - [anon_sym_BSLASHSvolcite] = ACTIONS(3566), - [anon_sym_BSLASHtvolcite] = ACTIONS(3566), - [anon_sym_BSLASHTvolcite] = ACTIONS(3566), - [anon_sym_BSLASHavolcite] = ACTIONS(3566), - [anon_sym_BSLASHAvolcite] = ACTIONS(3566), - [anon_sym_BSLASHnotecite] = ACTIONS(3566), - [anon_sym_BSLASHNotecite] = ACTIONS(3566), - [anon_sym_BSLASHpnotecite] = ACTIONS(3566), - [anon_sym_BSLASHPnotecite] = ACTIONS(3566), - [anon_sym_BSLASHfnotecite] = ACTIONS(3566), - [anon_sym_BSLASHlabel] = ACTIONS(3570), - [anon_sym_BSLASHref] = ACTIONS(3572), - [anon_sym_BSLASHeqref] = ACTIONS(3572), - [anon_sym_BSLASHvref] = ACTIONS(3572), - [anon_sym_BSLASHVref] = ACTIONS(3572), - [anon_sym_BSLASHautoref] = ACTIONS(3572), - [anon_sym_BSLASHpageref] = ACTIONS(3572), - [anon_sym_BSLASHcref] = ACTIONS(3572), - [anon_sym_BSLASHCref] = ACTIONS(3572), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnameCref] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHlabelcref] = ACTIONS(3572), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3572), - [anon_sym_BSLASHcrefrange] = ACTIONS(3576), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHCrefrange] = ACTIONS(3576), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHnewlabel] = ACTIONS(3580), - [anon_sym_BSLASHnewcommand] = ACTIONS(3582), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3582), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3582), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3584), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHdef] = ACTIONS(3586), - [anon_sym_BSLASHlet] = ACTIONS(3588), - [anon_sym_BSLASHleft] = ACTIONS(3590), - [anon_sym_BSLASHbig] = ACTIONS(3590), - [anon_sym_BSLASHBig] = ACTIONS(3590), - [anon_sym_BSLASHbigg] = ACTIONS(3590), - [anon_sym_BSLASHBigg] = ACTIONS(3590), - [anon_sym_BSLASHbigl] = ACTIONS(3590), - [anon_sym_BSLASHBigl] = ACTIONS(3590), - [anon_sym_BSLASHbiggl] = ACTIONS(3590), - [anon_sym_BSLASHBiggl] = ACTIONS(3590), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3592), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3592), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3596), - [anon_sym_BSLASHgls] = ACTIONS(3598), - [anon_sym_BSLASHGls] = ACTIONS(3598), - [anon_sym_BSLASHGLS] = ACTIONS(3598), - [anon_sym_BSLASHglspl] = ACTIONS(3598), - [anon_sym_BSLASHGlspl] = ACTIONS(3598), - [anon_sym_BSLASHGLSpl] = ACTIONS(3598), - [anon_sym_BSLASHglsdisp] = ACTIONS(3598), - [anon_sym_BSLASHglslink] = ACTIONS(3598), - [anon_sym_BSLASHglstext] = ACTIONS(3598), - [anon_sym_BSLASHGlstext] = ACTIONS(3598), - [anon_sym_BSLASHGLStext] = ACTIONS(3598), - [anon_sym_BSLASHglsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3598), - [anon_sym_BSLASHglsplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSplural] = ACTIONS(3598), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHglsname] = ACTIONS(3598), - [anon_sym_BSLASHGlsname] = ACTIONS(3598), - [anon_sym_BSLASHGLSname] = ACTIONS(3598), - [anon_sym_BSLASHglssymbol] = ACTIONS(3598), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3598), - [anon_sym_BSLASHglsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3598), - [anon_sym_BSLASHglsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3598), - [anon_sym_BSLASHglsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3598), - [anon_sym_BSLASHglsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3598), - [anon_sym_BSLASHglsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3598), - [anon_sym_BSLASHnewacronym] = ACTIONS(3600), - [anon_sym_BSLASHacrshort] = ACTIONS(3602), - [anon_sym_BSLASHAcrshort] = ACTIONS(3602), - [anon_sym_BSLASHACRshort] = ACTIONS(3602), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3602), - [anon_sym_BSLASHacrlong] = ACTIONS(3602), - [anon_sym_BSLASHAcrlong] = ACTIONS(3602), - [anon_sym_BSLASHACRlong] = ACTIONS(3602), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3602), - [anon_sym_BSLASHacrfull] = ACTIONS(3602), - [anon_sym_BSLASHAcrfull] = ACTIONS(3602), - [anon_sym_BSLASHACRfull] = ACTIONS(3602), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3602), - [anon_sym_BSLASHacs] = ACTIONS(3602), - [anon_sym_BSLASHAcs] = ACTIONS(3602), - [anon_sym_BSLASHacsp] = ACTIONS(3602), - [anon_sym_BSLASHAcsp] = ACTIONS(3602), - [anon_sym_BSLASHacl] = ACTIONS(3602), - [anon_sym_BSLASHAcl] = ACTIONS(3602), - [anon_sym_BSLASHaclp] = ACTIONS(3602), - [anon_sym_BSLASHAclp] = ACTIONS(3602), - [anon_sym_BSLASHacf] = ACTIONS(3602), - [anon_sym_BSLASHAcf] = ACTIONS(3602), - [anon_sym_BSLASHacfp] = ACTIONS(3602), - [anon_sym_BSLASHAcfp] = ACTIONS(3602), - [anon_sym_BSLASHac] = ACTIONS(3602), - [anon_sym_BSLASHAc] = ACTIONS(3602), - [anon_sym_BSLASHacp] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3604), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3604), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3608), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3610), - [anon_sym_BSLASHcolor] = ACTIONS(3612), - [anon_sym_BSLASHcolorbox] = ACTIONS(3612), - [anon_sym_BSLASHtextcolor] = ACTIONS(3612), - [anon_sym_BSLASHpagecolor] = ACTIONS(3612), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3614), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3614), - [anon_sym_BSLASHtext] = ACTIONS(3616), - [anon_sym_BSLASHintertext] = ACTIONS(3616), - [anon_sym_shortintertext] = ACTIONS(3616), - }, - [281] = { - [sym_block_comment] = STATE(279), - [sym__text_with_env_content] = STATE(279), - [sym__text_content] = STATE(279), - [sym_curly_group] = STATE(279), - [sym_brack_group] = STATE(279), - [sym_text] = STATE(279), - [sym_operator] = STATE(1750), - [sym_subscript] = STATE(1750), - [sym_superscript] = STATE(1750), - [sym_displayed_equation] = STATE(279), - [sym_inline_formula] = STATE(279), - [sym_begin] = STATE(67), - [sym_generic_environment] = STATE(279), - [sym_comment_environment] = STATE(279), - [sym__comment_environment_begin] = STATE(3118), - [sym_verbatim_environment] = STATE(279), - [sym__verbatim_environment_begin] = STATE(3119), - [sym_listing_environment] = STATE(279), - [sym__listing_environment_begin] = STATE(3125), - [sym_minted_environment] = STATE(279), - [sym__minted_environment_begin] = STATE(3127), - [sym_pycode_environment] = STATE(279), - [sym__pycode_environment_begin] = STATE(3128), - [sym_math_environment] = STATE(279), - [sym__math_environment_begin] = STATE(272), - [sym__command] = STATE(279), - [sym_generic_command] = STATE(279), - [sym_title_declaration] = STATE(279), - [sym_author_declaration] = STATE(279), - [sym_package_include] = STATE(279), - [sym_class_include] = STATE(279), - [sym_latex_include] = STATE(279), - [sym_biblatex_include] = STATE(279), - [sym_bibtex_include] = STATE(279), - [sym_graphics_include] = STATE(279), - [sym_svg_include] = STATE(279), - [sym_inkscape_include] = STATE(279), - [sym_verbatim_include] = STATE(279), - [sym_import_include] = STATE(279), - [sym_caption] = STATE(279), - [sym_citation] = STATE(279), - [sym_label_definition] = STATE(279), - [sym_label_reference] = STATE(279), - [sym_label_reference_range] = STATE(279), - [sym_label_number] = STATE(279), - [sym_new_command_definition] = STATE(279), - [sym_old_command_definition] = STATE(279), - [sym_let_command_definition] = STATE(279), - [sym_math_delimiter] = STATE(279), - [sym_paired_delimiter_definition] = STATE(279), - [sym_environment_definition] = STATE(279), - [sym_glossary_entry_definition] = STATE(279), - [sym_glossary_entry_reference] = STATE(279), - [sym_acronym_definition] = STATE(279), - [sym_acronym_reference] = STATE(279), - [sym_theorem_definition] = STATE(279), - [sym_color_definition] = STATE(279), - [sym_color_set_definition] = STATE(279), - [sym_color_reference] = STATE(279), - [sym_tikz_library_import] = STATE(279), - [sym_text_mode] = STATE(279), - [aux_sym_brack_group_repeat1] = STATE(279), - [aux_sym_text_repeat1] = STATE(349), - [sym_command_name] = ACTIONS(3510), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(3921), - [anon_sym_COMMA] = ACTIONS(3923), - [anon_sym_EQ] = ACTIONS(3923), - [anon_sym_LPAREN] = ACTIONS(3923), - [anon_sym_RPAREN] = ACTIONS(3923), - [anon_sym_LBRACE] = ACTIONS(3520), - [sym_word] = ACTIONS(3522), - [sym_placeholder] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_SLASH] = ACTIONS(3526), - [anon_sym_LT] = ACTIONS(3528), - [anon_sym_GT] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_PIPE] = ACTIONS(3528), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3528), - [anon_sym__] = ACTIONS(3530), - [anon_sym_CARET] = ACTIONS(3532), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3534), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3534), - [anon_sym_DOLLAR] = ACTIONS(3536), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3538), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(3540), - [anon_sym_BSLASHauthor] = ACTIONS(3542), - [anon_sym_BSLASHusepackage] = ACTIONS(3544), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3544), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3546), - [anon_sym_BSLASHinclude] = ACTIONS(3548), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3548), - [anon_sym_BSLASHinput] = ACTIONS(3548), - [anon_sym_BSLASHsubfile] = ACTIONS(3548), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3550), - [anon_sym_BSLASHbibliography] = ACTIONS(3552), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3554), - [anon_sym_BSLASHincludesvg] = ACTIONS(3556), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3558), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3560), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3560), - [anon_sym_BSLASHimport] = ACTIONS(3562), - [anon_sym_BSLASHsubimport] = ACTIONS(3562), - [anon_sym_BSLASHinputfrom] = ACTIONS(3562), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3562), - [anon_sym_BSLASHincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHcaption] = ACTIONS(3564), - [anon_sym_BSLASHcite] = ACTIONS(3566), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCite] = ACTIONS(3566), - [anon_sym_BSLASHnocite] = ACTIONS(3566), - [anon_sym_BSLASHcitet] = ACTIONS(3566), - [anon_sym_BSLASHcitep] = ACTIONS(3566), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteauthor] = ACTIONS(3566), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3566), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitetitle] = ACTIONS(3566), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteyear] = ACTIONS(3566), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitedate] = ACTIONS(3566), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteurl] = ACTIONS(3566), - [anon_sym_BSLASHfullcite] = ACTIONS(3566), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3566), - [anon_sym_BSLASHcitealt] = ACTIONS(3566), - [anon_sym_BSLASHcitealp] = ACTIONS(3566), - [anon_sym_BSLASHcitetext] = ACTIONS(3566), - [anon_sym_BSLASHparencite] = ACTIONS(3566), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHParencite] = ACTIONS(3566), - [anon_sym_BSLASHfootcite] = ACTIONS(3566), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3566), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3566), - [anon_sym_BSLASHtextcite] = ACTIONS(3566), - [anon_sym_BSLASHTextcite] = ACTIONS(3566), - [anon_sym_BSLASHsmartcite] = ACTIONS(3566), - [anon_sym_BSLASHSmartcite] = ACTIONS(3566), - [anon_sym_BSLASHsupercite] = ACTIONS(3566), - [anon_sym_BSLASHautocite] = ACTIONS(3566), - [anon_sym_BSLASHAutocite] = ACTIONS(3566), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHvolcite] = ACTIONS(3566), - [anon_sym_BSLASHVolcite] = ACTIONS(3566), - [anon_sym_BSLASHpvolcite] = ACTIONS(3566), - [anon_sym_BSLASHPvolcite] = ACTIONS(3566), - [anon_sym_BSLASHfvolcite] = ACTIONS(3566), - [anon_sym_BSLASHftvolcite] = ACTIONS(3566), - [anon_sym_BSLASHsvolcite] = ACTIONS(3566), - [anon_sym_BSLASHSvolcite] = ACTIONS(3566), - [anon_sym_BSLASHtvolcite] = ACTIONS(3566), - [anon_sym_BSLASHTvolcite] = ACTIONS(3566), - [anon_sym_BSLASHavolcite] = ACTIONS(3566), - [anon_sym_BSLASHAvolcite] = ACTIONS(3566), - [anon_sym_BSLASHnotecite] = ACTIONS(3566), - [anon_sym_BSLASHNotecite] = ACTIONS(3566), - [anon_sym_BSLASHpnotecite] = ACTIONS(3566), - [anon_sym_BSLASHPnotecite] = ACTIONS(3566), - [anon_sym_BSLASHfnotecite] = ACTIONS(3566), - [anon_sym_BSLASHlabel] = ACTIONS(3570), - [anon_sym_BSLASHref] = ACTIONS(3572), - [anon_sym_BSLASHeqref] = ACTIONS(3572), - [anon_sym_BSLASHvref] = ACTIONS(3572), - [anon_sym_BSLASHVref] = ACTIONS(3572), - [anon_sym_BSLASHautoref] = ACTIONS(3572), - [anon_sym_BSLASHpageref] = ACTIONS(3572), - [anon_sym_BSLASHcref] = ACTIONS(3572), - [anon_sym_BSLASHCref] = ACTIONS(3572), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnameCref] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHlabelcref] = ACTIONS(3572), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3572), - [anon_sym_BSLASHcrefrange] = ACTIONS(3576), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHCrefrange] = ACTIONS(3576), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHnewlabel] = ACTIONS(3580), - [anon_sym_BSLASHnewcommand] = ACTIONS(3582), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3582), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3582), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3584), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHdef] = ACTIONS(3586), - [anon_sym_BSLASHlet] = ACTIONS(3588), - [anon_sym_BSLASHleft] = ACTIONS(3590), - [anon_sym_BSLASHbig] = ACTIONS(3590), - [anon_sym_BSLASHBig] = ACTIONS(3590), - [anon_sym_BSLASHbigg] = ACTIONS(3590), - [anon_sym_BSLASHBigg] = ACTIONS(3590), - [anon_sym_BSLASHbigl] = ACTIONS(3590), - [anon_sym_BSLASHBigl] = ACTIONS(3590), - [anon_sym_BSLASHbiggl] = ACTIONS(3590), - [anon_sym_BSLASHBiggl] = ACTIONS(3590), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3592), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3592), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3596), - [anon_sym_BSLASHgls] = ACTIONS(3598), - [anon_sym_BSLASHGls] = ACTIONS(3598), - [anon_sym_BSLASHGLS] = ACTIONS(3598), - [anon_sym_BSLASHglspl] = ACTIONS(3598), - [anon_sym_BSLASHGlspl] = ACTIONS(3598), - [anon_sym_BSLASHGLSpl] = ACTIONS(3598), - [anon_sym_BSLASHglsdisp] = ACTIONS(3598), - [anon_sym_BSLASHglslink] = ACTIONS(3598), - [anon_sym_BSLASHglstext] = ACTIONS(3598), - [anon_sym_BSLASHGlstext] = ACTIONS(3598), - [anon_sym_BSLASHGLStext] = ACTIONS(3598), - [anon_sym_BSLASHglsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3598), - [anon_sym_BSLASHglsplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSplural] = ACTIONS(3598), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHglsname] = ACTIONS(3598), - [anon_sym_BSLASHGlsname] = ACTIONS(3598), - [anon_sym_BSLASHGLSname] = ACTIONS(3598), - [anon_sym_BSLASHglssymbol] = ACTIONS(3598), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3598), - [anon_sym_BSLASHglsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3598), - [anon_sym_BSLASHglsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3598), - [anon_sym_BSLASHglsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3598), - [anon_sym_BSLASHglsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3598), - [anon_sym_BSLASHglsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3598), - [anon_sym_BSLASHnewacronym] = ACTIONS(3600), - [anon_sym_BSLASHacrshort] = ACTIONS(3602), - [anon_sym_BSLASHAcrshort] = ACTIONS(3602), - [anon_sym_BSLASHACRshort] = ACTIONS(3602), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3602), - [anon_sym_BSLASHacrlong] = ACTIONS(3602), - [anon_sym_BSLASHAcrlong] = ACTIONS(3602), - [anon_sym_BSLASHACRlong] = ACTIONS(3602), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3602), - [anon_sym_BSLASHacrfull] = ACTIONS(3602), - [anon_sym_BSLASHAcrfull] = ACTIONS(3602), - [anon_sym_BSLASHACRfull] = ACTIONS(3602), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3602), - [anon_sym_BSLASHacs] = ACTIONS(3602), - [anon_sym_BSLASHAcs] = ACTIONS(3602), - [anon_sym_BSLASHacsp] = ACTIONS(3602), - [anon_sym_BSLASHAcsp] = ACTIONS(3602), - [anon_sym_BSLASHacl] = ACTIONS(3602), - [anon_sym_BSLASHAcl] = ACTIONS(3602), - [anon_sym_BSLASHaclp] = ACTIONS(3602), - [anon_sym_BSLASHAclp] = ACTIONS(3602), - [anon_sym_BSLASHacf] = ACTIONS(3602), - [anon_sym_BSLASHAcf] = ACTIONS(3602), - [anon_sym_BSLASHacfp] = ACTIONS(3602), - [anon_sym_BSLASHAcfp] = ACTIONS(3602), - [anon_sym_BSLASHac] = ACTIONS(3602), - [anon_sym_BSLASHAc] = ACTIONS(3602), - [anon_sym_BSLASHacp] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3604), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3604), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3608), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3610), - [anon_sym_BSLASHcolor] = ACTIONS(3612), - [anon_sym_BSLASHcolorbox] = ACTIONS(3612), - [anon_sym_BSLASHtextcolor] = ACTIONS(3612), - [anon_sym_BSLASHpagecolor] = ACTIONS(3612), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3614), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3614), - [anon_sym_BSLASHtext] = ACTIONS(3616), - [anon_sym_BSLASHintertext] = ACTIONS(3616), - [anon_sym_shortintertext] = ACTIONS(3616), - }, - [282] = { - [sym_block_comment] = STATE(276), - [sym__text_with_env_content] = STATE(276), - [sym__text_content] = STATE(276), - [sym_curly_group] = STATE(276), - [sym_brack_group] = STATE(276), - [sym_text] = STATE(276), - [sym_operator] = STATE(1750), - [sym_subscript] = STATE(1750), - [sym_superscript] = STATE(1750), - [sym_displayed_equation] = STATE(276), - [sym_inline_formula] = STATE(276), - [sym_begin] = STATE(67), - [sym_generic_environment] = STATE(276), - [sym_comment_environment] = STATE(276), - [sym__comment_environment_begin] = STATE(3118), - [sym_verbatim_environment] = STATE(276), - [sym__verbatim_environment_begin] = STATE(3119), - [sym_listing_environment] = STATE(276), - [sym__listing_environment_begin] = STATE(3125), - [sym_minted_environment] = STATE(276), - [sym__minted_environment_begin] = STATE(3127), - [sym_pycode_environment] = STATE(276), - [sym__pycode_environment_begin] = STATE(3128), - [sym_math_environment] = STATE(276), - [sym__math_environment_begin] = STATE(272), - [sym__command] = STATE(276), - [sym_generic_command] = STATE(276), - [sym_title_declaration] = STATE(276), - [sym_author_declaration] = STATE(276), - [sym_package_include] = STATE(276), - [sym_class_include] = STATE(276), - [sym_latex_include] = STATE(276), - [sym_biblatex_include] = STATE(276), - [sym_bibtex_include] = STATE(276), - [sym_graphics_include] = STATE(276), - [sym_svg_include] = STATE(276), - [sym_inkscape_include] = STATE(276), - [sym_verbatim_include] = STATE(276), - [sym_import_include] = STATE(276), - [sym_caption] = STATE(276), - [sym_citation] = STATE(276), - [sym_label_definition] = STATE(276), - [sym_label_reference] = STATE(276), - [sym_label_reference_range] = STATE(276), - [sym_label_number] = STATE(276), - [sym_new_command_definition] = STATE(276), - [sym_old_command_definition] = STATE(276), - [sym_let_command_definition] = STATE(276), - [sym_math_delimiter] = STATE(276), - [sym_paired_delimiter_definition] = STATE(276), - [sym_environment_definition] = STATE(276), - [sym_glossary_entry_definition] = STATE(276), - [sym_glossary_entry_reference] = STATE(276), - [sym_acronym_definition] = STATE(276), - [sym_acronym_reference] = STATE(276), - [sym_theorem_definition] = STATE(276), - [sym_color_definition] = STATE(276), - [sym_color_set_definition] = STATE(276), - [sym_color_reference] = STATE(276), - [sym_tikz_library_import] = STATE(276), - [sym_text_mode] = STATE(276), - [aux_sym_brack_group_repeat1] = STATE(276), - [aux_sym_text_repeat1] = STATE(349), - [sym_command_name] = ACTIONS(3510), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(3925), - [anon_sym_COMMA] = ACTIONS(3927), - [anon_sym_EQ] = ACTIONS(3927), - [anon_sym_LPAREN] = ACTIONS(3927), - [anon_sym_RPAREN] = ACTIONS(3927), - [anon_sym_LBRACE] = ACTIONS(3520), - [sym_word] = ACTIONS(3522), - [sym_placeholder] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_SLASH] = ACTIONS(3526), - [anon_sym_LT] = ACTIONS(3528), - [anon_sym_GT] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_PIPE] = ACTIONS(3528), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3528), - [anon_sym__] = ACTIONS(3530), - [anon_sym_CARET] = ACTIONS(3532), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3534), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3534), - [anon_sym_DOLLAR] = ACTIONS(3536), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3538), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(3540), - [anon_sym_BSLASHauthor] = ACTIONS(3542), - [anon_sym_BSLASHusepackage] = ACTIONS(3544), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3544), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3546), - [anon_sym_BSLASHinclude] = ACTIONS(3548), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3548), - [anon_sym_BSLASHinput] = ACTIONS(3548), - [anon_sym_BSLASHsubfile] = ACTIONS(3548), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3550), - [anon_sym_BSLASHbibliography] = ACTIONS(3552), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3554), - [anon_sym_BSLASHincludesvg] = ACTIONS(3556), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3558), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3560), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3560), - [anon_sym_BSLASHimport] = ACTIONS(3562), - [anon_sym_BSLASHsubimport] = ACTIONS(3562), - [anon_sym_BSLASHinputfrom] = ACTIONS(3562), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3562), - [anon_sym_BSLASHincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHcaption] = ACTIONS(3564), - [anon_sym_BSLASHcite] = ACTIONS(3566), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCite] = ACTIONS(3566), - [anon_sym_BSLASHnocite] = ACTIONS(3566), - [anon_sym_BSLASHcitet] = ACTIONS(3566), - [anon_sym_BSLASHcitep] = ACTIONS(3566), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteauthor] = ACTIONS(3566), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3566), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitetitle] = ACTIONS(3566), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteyear] = ACTIONS(3566), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitedate] = ACTIONS(3566), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteurl] = ACTIONS(3566), - [anon_sym_BSLASHfullcite] = ACTIONS(3566), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3566), - [anon_sym_BSLASHcitealt] = ACTIONS(3566), - [anon_sym_BSLASHcitealp] = ACTIONS(3566), - [anon_sym_BSLASHcitetext] = ACTIONS(3566), - [anon_sym_BSLASHparencite] = ACTIONS(3566), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHParencite] = ACTIONS(3566), - [anon_sym_BSLASHfootcite] = ACTIONS(3566), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3566), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3566), - [anon_sym_BSLASHtextcite] = ACTIONS(3566), - [anon_sym_BSLASHTextcite] = ACTIONS(3566), - [anon_sym_BSLASHsmartcite] = ACTIONS(3566), - [anon_sym_BSLASHSmartcite] = ACTIONS(3566), - [anon_sym_BSLASHsupercite] = ACTIONS(3566), - [anon_sym_BSLASHautocite] = ACTIONS(3566), - [anon_sym_BSLASHAutocite] = ACTIONS(3566), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHvolcite] = ACTIONS(3566), - [anon_sym_BSLASHVolcite] = ACTIONS(3566), - [anon_sym_BSLASHpvolcite] = ACTIONS(3566), - [anon_sym_BSLASHPvolcite] = ACTIONS(3566), - [anon_sym_BSLASHfvolcite] = ACTIONS(3566), - [anon_sym_BSLASHftvolcite] = ACTIONS(3566), - [anon_sym_BSLASHsvolcite] = ACTIONS(3566), - [anon_sym_BSLASHSvolcite] = ACTIONS(3566), - [anon_sym_BSLASHtvolcite] = ACTIONS(3566), - [anon_sym_BSLASHTvolcite] = ACTIONS(3566), - [anon_sym_BSLASHavolcite] = ACTIONS(3566), - [anon_sym_BSLASHAvolcite] = ACTIONS(3566), - [anon_sym_BSLASHnotecite] = ACTIONS(3566), - [anon_sym_BSLASHNotecite] = ACTIONS(3566), - [anon_sym_BSLASHpnotecite] = ACTIONS(3566), - [anon_sym_BSLASHPnotecite] = ACTIONS(3566), - [anon_sym_BSLASHfnotecite] = ACTIONS(3566), - [anon_sym_BSLASHlabel] = ACTIONS(3570), - [anon_sym_BSLASHref] = ACTIONS(3572), - [anon_sym_BSLASHeqref] = ACTIONS(3572), - [anon_sym_BSLASHvref] = ACTIONS(3572), - [anon_sym_BSLASHVref] = ACTIONS(3572), - [anon_sym_BSLASHautoref] = ACTIONS(3572), - [anon_sym_BSLASHpageref] = ACTIONS(3572), - [anon_sym_BSLASHcref] = ACTIONS(3572), - [anon_sym_BSLASHCref] = ACTIONS(3572), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnameCref] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHlabelcref] = ACTIONS(3572), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3572), - [anon_sym_BSLASHcrefrange] = ACTIONS(3576), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHCrefrange] = ACTIONS(3576), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHnewlabel] = ACTIONS(3580), - [anon_sym_BSLASHnewcommand] = ACTIONS(3582), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3582), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3582), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3584), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHdef] = ACTIONS(3586), - [anon_sym_BSLASHlet] = ACTIONS(3588), - [anon_sym_BSLASHleft] = ACTIONS(3590), - [anon_sym_BSLASHbig] = ACTIONS(3590), - [anon_sym_BSLASHBig] = ACTIONS(3590), - [anon_sym_BSLASHbigg] = ACTIONS(3590), - [anon_sym_BSLASHBigg] = ACTIONS(3590), - [anon_sym_BSLASHbigl] = ACTIONS(3590), - [anon_sym_BSLASHBigl] = ACTIONS(3590), - [anon_sym_BSLASHbiggl] = ACTIONS(3590), - [anon_sym_BSLASHBiggl] = ACTIONS(3590), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3592), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3592), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3596), - [anon_sym_BSLASHgls] = ACTIONS(3598), - [anon_sym_BSLASHGls] = ACTIONS(3598), - [anon_sym_BSLASHGLS] = ACTIONS(3598), - [anon_sym_BSLASHglspl] = ACTIONS(3598), - [anon_sym_BSLASHGlspl] = ACTIONS(3598), - [anon_sym_BSLASHGLSpl] = ACTIONS(3598), - [anon_sym_BSLASHglsdisp] = ACTIONS(3598), - [anon_sym_BSLASHglslink] = ACTIONS(3598), - [anon_sym_BSLASHglstext] = ACTIONS(3598), - [anon_sym_BSLASHGlstext] = ACTIONS(3598), - [anon_sym_BSLASHGLStext] = ACTIONS(3598), - [anon_sym_BSLASHglsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3598), - [anon_sym_BSLASHglsplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSplural] = ACTIONS(3598), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHglsname] = ACTIONS(3598), - [anon_sym_BSLASHGlsname] = ACTIONS(3598), - [anon_sym_BSLASHGLSname] = ACTIONS(3598), - [anon_sym_BSLASHglssymbol] = ACTIONS(3598), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3598), - [anon_sym_BSLASHglsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3598), - [anon_sym_BSLASHglsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3598), - [anon_sym_BSLASHglsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3598), - [anon_sym_BSLASHglsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3598), - [anon_sym_BSLASHglsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3598), - [anon_sym_BSLASHnewacronym] = ACTIONS(3600), - [anon_sym_BSLASHacrshort] = ACTIONS(3602), - [anon_sym_BSLASHAcrshort] = ACTIONS(3602), - [anon_sym_BSLASHACRshort] = ACTIONS(3602), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3602), - [anon_sym_BSLASHacrlong] = ACTIONS(3602), - [anon_sym_BSLASHAcrlong] = ACTIONS(3602), - [anon_sym_BSLASHACRlong] = ACTIONS(3602), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3602), - [anon_sym_BSLASHacrfull] = ACTIONS(3602), - [anon_sym_BSLASHAcrfull] = ACTIONS(3602), - [anon_sym_BSLASHACRfull] = ACTIONS(3602), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3602), - [anon_sym_BSLASHacs] = ACTIONS(3602), - [anon_sym_BSLASHAcs] = ACTIONS(3602), - [anon_sym_BSLASHacsp] = ACTIONS(3602), - [anon_sym_BSLASHAcsp] = ACTIONS(3602), - [anon_sym_BSLASHacl] = ACTIONS(3602), - [anon_sym_BSLASHAcl] = ACTIONS(3602), - [anon_sym_BSLASHaclp] = ACTIONS(3602), - [anon_sym_BSLASHAclp] = ACTIONS(3602), - [anon_sym_BSLASHacf] = ACTIONS(3602), - [anon_sym_BSLASHAcf] = ACTIONS(3602), - [anon_sym_BSLASHacfp] = ACTIONS(3602), - [anon_sym_BSLASHAcfp] = ACTIONS(3602), - [anon_sym_BSLASHac] = ACTIONS(3602), - [anon_sym_BSLASHAc] = ACTIONS(3602), - [anon_sym_BSLASHacp] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3604), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3604), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3608), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3610), - [anon_sym_BSLASHcolor] = ACTIONS(3612), - [anon_sym_BSLASHcolorbox] = ACTIONS(3612), - [anon_sym_BSLASHtextcolor] = ACTIONS(3612), - [anon_sym_BSLASHpagecolor] = ACTIONS(3612), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3614), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3614), - [anon_sym_BSLASHtext] = ACTIONS(3616), - [anon_sym_BSLASHintertext] = ACTIONS(3616), - [anon_sym_shortintertext] = ACTIONS(3616), - }, - [283] = { - [sym_block_comment] = STATE(280), - [sym__text_with_env_content] = STATE(280), - [sym__text_content] = STATE(280), - [sym_curly_group] = STATE(280), - [sym_brack_group] = STATE(280), - [sym_text] = STATE(280), - [sym_operator] = STATE(1750), - [sym_subscript] = STATE(1750), - [sym_superscript] = STATE(1750), - [sym_displayed_equation] = STATE(280), - [sym_inline_formula] = STATE(280), - [sym_begin] = STATE(67), - [sym_generic_environment] = STATE(280), - [sym_comment_environment] = STATE(280), - [sym__comment_environment_begin] = STATE(3118), - [sym_verbatim_environment] = STATE(280), - [sym__verbatim_environment_begin] = STATE(3119), - [sym_listing_environment] = STATE(280), - [sym__listing_environment_begin] = STATE(3125), - [sym_minted_environment] = STATE(280), - [sym__minted_environment_begin] = STATE(3127), - [sym_pycode_environment] = STATE(280), - [sym__pycode_environment_begin] = STATE(3128), - [sym_math_environment] = STATE(280), - [sym__math_environment_begin] = STATE(272), - [sym__command] = STATE(280), - [sym_generic_command] = STATE(280), - [sym_title_declaration] = STATE(280), - [sym_author_declaration] = STATE(280), - [sym_package_include] = STATE(280), - [sym_class_include] = STATE(280), - [sym_latex_include] = STATE(280), - [sym_biblatex_include] = STATE(280), - [sym_bibtex_include] = STATE(280), - [sym_graphics_include] = STATE(280), - [sym_svg_include] = STATE(280), - [sym_inkscape_include] = STATE(280), - [sym_verbatim_include] = STATE(280), - [sym_import_include] = STATE(280), - [sym_caption] = STATE(280), - [sym_citation] = STATE(280), - [sym_label_definition] = STATE(280), - [sym_label_reference] = STATE(280), - [sym_label_reference_range] = STATE(280), - [sym_label_number] = STATE(280), - [sym_new_command_definition] = STATE(280), - [sym_old_command_definition] = STATE(280), - [sym_let_command_definition] = STATE(280), - [sym_math_delimiter] = STATE(280), - [sym_paired_delimiter_definition] = STATE(280), - [sym_environment_definition] = STATE(280), - [sym_glossary_entry_definition] = STATE(280), - [sym_glossary_entry_reference] = STATE(280), - [sym_acronym_definition] = STATE(280), - [sym_acronym_reference] = STATE(280), - [sym_theorem_definition] = STATE(280), - [sym_color_definition] = STATE(280), - [sym_color_set_definition] = STATE(280), - [sym_color_reference] = STATE(280), - [sym_tikz_library_import] = STATE(280), - [sym_text_mode] = STATE(280), - [aux_sym_brack_group_repeat1] = STATE(280), - [aux_sym_text_repeat1] = STATE(349), - [sym_command_name] = ACTIONS(3510), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(3929), - [anon_sym_COMMA] = ACTIONS(3931), - [anon_sym_EQ] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3931), - [anon_sym_RPAREN] = ACTIONS(3931), - [anon_sym_LBRACE] = ACTIONS(3520), - [sym_word] = ACTIONS(3522), - [sym_placeholder] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_SLASH] = ACTIONS(3526), - [anon_sym_LT] = ACTIONS(3528), - [anon_sym_GT] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_PIPE] = ACTIONS(3528), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3528), - [anon_sym__] = ACTIONS(3530), - [anon_sym_CARET] = ACTIONS(3532), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3534), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3534), - [anon_sym_DOLLAR] = ACTIONS(3536), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3538), - [anon_sym_BSLASHbegin] = ACTIONS(65), - [anon_sym_BSLASHtitle] = ACTIONS(3540), - [anon_sym_BSLASHauthor] = ACTIONS(3542), - [anon_sym_BSLASHusepackage] = ACTIONS(3544), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3544), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3546), - [anon_sym_BSLASHinclude] = ACTIONS(3548), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3548), - [anon_sym_BSLASHinput] = ACTIONS(3548), - [anon_sym_BSLASHsubfile] = ACTIONS(3548), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3550), - [anon_sym_BSLASHbibliography] = ACTIONS(3552), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3554), - [anon_sym_BSLASHincludesvg] = ACTIONS(3556), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3558), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3560), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3560), - [anon_sym_BSLASHimport] = ACTIONS(3562), - [anon_sym_BSLASHsubimport] = ACTIONS(3562), - [anon_sym_BSLASHinputfrom] = ACTIONS(3562), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3562), - [anon_sym_BSLASHincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHcaption] = ACTIONS(3564), - [anon_sym_BSLASHcite] = ACTIONS(3566), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCite] = ACTIONS(3566), - [anon_sym_BSLASHnocite] = ACTIONS(3566), - [anon_sym_BSLASHcitet] = ACTIONS(3566), - [anon_sym_BSLASHcitep] = ACTIONS(3566), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteauthor] = ACTIONS(3566), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3566), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitetitle] = ACTIONS(3566), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteyear] = ACTIONS(3566), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitedate] = ACTIONS(3566), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteurl] = ACTIONS(3566), - [anon_sym_BSLASHfullcite] = ACTIONS(3566), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3566), - [anon_sym_BSLASHcitealt] = ACTIONS(3566), - [anon_sym_BSLASHcitealp] = ACTIONS(3566), - [anon_sym_BSLASHcitetext] = ACTIONS(3566), - [anon_sym_BSLASHparencite] = ACTIONS(3566), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHParencite] = ACTIONS(3566), - [anon_sym_BSLASHfootcite] = ACTIONS(3566), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3566), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3566), - [anon_sym_BSLASHtextcite] = ACTIONS(3566), - [anon_sym_BSLASHTextcite] = ACTIONS(3566), - [anon_sym_BSLASHsmartcite] = ACTIONS(3566), - [anon_sym_BSLASHSmartcite] = ACTIONS(3566), - [anon_sym_BSLASHsupercite] = ACTIONS(3566), - [anon_sym_BSLASHautocite] = ACTIONS(3566), - [anon_sym_BSLASHAutocite] = ACTIONS(3566), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHvolcite] = ACTIONS(3566), - [anon_sym_BSLASHVolcite] = ACTIONS(3566), - [anon_sym_BSLASHpvolcite] = ACTIONS(3566), - [anon_sym_BSLASHPvolcite] = ACTIONS(3566), - [anon_sym_BSLASHfvolcite] = ACTIONS(3566), - [anon_sym_BSLASHftvolcite] = ACTIONS(3566), - [anon_sym_BSLASHsvolcite] = ACTIONS(3566), - [anon_sym_BSLASHSvolcite] = ACTIONS(3566), - [anon_sym_BSLASHtvolcite] = ACTIONS(3566), - [anon_sym_BSLASHTvolcite] = ACTIONS(3566), - [anon_sym_BSLASHavolcite] = ACTIONS(3566), - [anon_sym_BSLASHAvolcite] = ACTIONS(3566), - [anon_sym_BSLASHnotecite] = ACTIONS(3566), - [anon_sym_BSLASHNotecite] = ACTIONS(3566), - [anon_sym_BSLASHpnotecite] = ACTIONS(3566), - [anon_sym_BSLASHPnotecite] = ACTIONS(3566), - [anon_sym_BSLASHfnotecite] = ACTIONS(3566), - [anon_sym_BSLASHlabel] = ACTIONS(3570), - [anon_sym_BSLASHref] = ACTIONS(3572), - [anon_sym_BSLASHeqref] = ACTIONS(3572), - [anon_sym_BSLASHvref] = ACTIONS(3572), - [anon_sym_BSLASHVref] = ACTIONS(3572), - [anon_sym_BSLASHautoref] = ACTIONS(3572), - [anon_sym_BSLASHpageref] = ACTIONS(3572), - [anon_sym_BSLASHcref] = ACTIONS(3572), - [anon_sym_BSLASHCref] = ACTIONS(3572), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnameCref] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHlabelcref] = ACTIONS(3572), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3572), - [anon_sym_BSLASHcrefrange] = ACTIONS(3576), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHCrefrange] = ACTIONS(3576), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHnewlabel] = ACTIONS(3580), - [anon_sym_BSLASHnewcommand] = ACTIONS(3582), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3582), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3582), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3584), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHdef] = ACTIONS(3586), - [anon_sym_BSLASHlet] = ACTIONS(3588), - [anon_sym_BSLASHleft] = ACTIONS(3590), - [anon_sym_BSLASHbig] = ACTIONS(3590), - [anon_sym_BSLASHBig] = ACTIONS(3590), - [anon_sym_BSLASHbigg] = ACTIONS(3590), - [anon_sym_BSLASHBigg] = ACTIONS(3590), - [anon_sym_BSLASHbigl] = ACTIONS(3590), - [anon_sym_BSLASHBigl] = ACTIONS(3590), - [anon_sym_BSLASHbiggl] = ACTIONS(3590), - [anon_sym_BSLASHBiggl] = ACTIONS(3590), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3592), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3592), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3596), - [anon_sym_BSLASHgls] = ACTIONS(3598), - [anon_sym_BSLASHGls] = ACTIONS(3598), - [anon_sym_BSLASHGLS] = ACTIONS(3598), - [anon_sym_BSLASHglspl] = ACTIONS(3598), - [anon_sym_BSLASHGlspl] = ACTIONS(3598), - [anon_sym_BSLASHGLSpl] = ACTIONS(3598), - [anon_sym_BSLASHglsdisp] = ACTIONS(3598), - [anon_sym_BSLASHglslink] = ACTIONS(3598), - [anon_sym_BSLASHglstext] = ACTIONS(3598), - [anon_sym_BSLASHGlstext] = ACTIONS(3598), - [anon_sym_BSLASHGLStext] = ACTIONS(3598), - [anon_sym_BSLASHglsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3598), - [anon_sym_BSLASHglsplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSplural] = ACTIONS(3598), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHglsname] = ACTIONS(3598), - [anon_sym_BSLASHGlsname] = ACTIONS(3598), - [anon_sym_BSLASHGLSname] = ACTIONS(3598), - [anon_sym_BSLASHglssymbol] = ACTIONS(3598), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3598), - [anon_sym_BSLASHglsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3598), - [anon_sym_BSLASHglsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3598), - [anon_sym_BSLASHglsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3598), - [anon_sym_BSLASHglsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3598), - [anon_sym_BSLASHglsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3598), - [anon_sym_BSLASHnewacronym] = ACTIONS(3600), - [anon_sym_BSLASHacrshort] = ACTIONS(3602), - [anon_sym_BSLASHAcrshort] = ACTIONS(3602), - [anon_sym_BSLASHACRshort] = ACTIONS(3602), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3602), - [anon_sym_BSLASHacrlong] = ACTIONS(3602), - [anon_sym_BSLASHAcrlong] = ACTIONS(3602), - [anon_sym_BSLASHACRlong] = ACTIONS(3602), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3602), - [anon_sym_BSLASHacrfull] = ACTIONS(3602), - [anon_sym_BSLASHAcrfull] = ACTIONS(3602), - [anon_sym_BSLASHACRfull] = ACTIONS(3602), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3602), - [anon_sym_BSLASHacs] = ACTIONS(3602), - [anon_sym_BSLASHAcs] = ACTIONS(3602), - [anon_sym_BSLASHacsp] = ACTIONS(3602), - [anon_sym_BSLASHAcsp] = ACTIONS(3602), - [anon_sym_BSLASHacl] = ACTIONS(3602), - [anon_sym_BSLASHAcl] = ACTIONS(3602), - [anon_sym_BSLASHaclp] = ACTIONS(3602), - [anon_sym_BSLASHAclp] = ACTIONS(3602), - [anon_sym_BSLASHacf] = ACTIONS(3602), - [anon_sym_BSLASHAcf] = ACTIONS(3602), - [anon_sym_BSLASHacfp] = ACTIONS(3602), - [anon_sym_BSLASHAcfp] = ACTIONS(3602), - [anon_sym_BSLASHac] = ACTIONS(3602), - [anon_sym_BSLASHAc] = ACTIONS(3602), - [anon_sym_BSLASHacp] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3604), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3604), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3608), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3610), - [anon_sym_BSLASHcolor] = ACTIONS(3612), - [anon_sym_BSLASHcolorbox] = ACTIONS(3612), - [anon_sym_BSLASHtextcolor] = ACTIONS(3612), - [anon_sym_BSLASHpagecolor] = ACTIONS(3612), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3614), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3614), - [anon_sym_BSLASHtext] = ACTIONS(3616), - [anon_sym_BSLASHintertext] = ACTIONS(3616), - [anon_sym_shortintertext] = ACTIONS(3616), - }, - [284] = { - [sym_block_comment] = STATE(1019), - [sym_operator] = STATE(1019), - [sym_subscript] = STATE(1019), - [sym_superscript] = STATE(1019), - [sym__command] = STATE(1019), - [sym_generic_command] = STATE(1019), - [sym_title_declaration] = STATE(1019), - [sym_author_declaration] = STATE(1019), - [sym_package_include] = STATE(1019), - [sym_class_include] = STATE(1019), - [sym_latex_include] = STATE(1019), - [sym_biblatex_include] = STATE(1019), - [sym_bibtex_include] = STATE(1019), - [sym_graphics_include] = STATE(1019), - [sym_svg_include] = STATE(1019), - [sym_inkscape_include] = STATE(1019), - [sym_verbatim_include] = STATE(1019), - [sym_import_include] = STATE(1019), - [sym_caption] = STATE(1019), - [sym_citation] = STATE(1019), - [sym_label_definition] = STATE(1019), - [sym_label_reference] = STATE(1019), - [sym_label_reference_range] = STATE(1019), - [sym_label_number] = STATE(1019), - [sym_new_command_definition] = STATE(1019), - [sym_old_command_definition] = STATE(1019), - [sym_let_command_definition] = STATE(1019), - [sym_paired_delimiter_definition] = STATE(1019), - [sym_environment_definition] = STATE(1019), - [sym_glossary_entry_definition] = STATE(1019), - [sym_glossary_entry_reference] = STATE(1019), - [sym_acronym_definition] = STATE(1019), - [sym_acronym_reference] = STATE(1019), - [sym_theorem_definition] = STATE(1019), - [sym_color_definition] = STATE(1019), - [sym_color_set_definition] = STATE(1019), - [sym_color_reference] = STATE(1019), - [sym_tikz_library_import] = STATE(1019), - [aux_sym_text_repeat1] = STATE(278), - [ts_builtin_sym_end] = ACTIONS(3079), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_BSLASHpart] = ACTIONS(3081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddpart] = ACTIONS(3081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(3079), - [anon_sym_BSLASHchapter] = ACTIONS(3081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddchap] = ACTIONS(3081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsection] = ACTIONS(3081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddsec] = ACTIONS(3081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubsection] = ACTIONS(3081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(3081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHparagraph] = ACTIONS(3081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(3081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(3079), - [anon_sym_BSLASHitem] = ACTIONS(3081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3079), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(53), - [anon_sym_GT] = ACTIONS(53), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_COLON] = ACTIONS(53), - [anon_sym_SQUOTE] = ACTIONS(53), - [anon_sym__] = ACTIONS(55), - [anon_sym_CARET] = ACTIONS(57), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3079), - [anon_sym_DOLLAR] = ACTIONS(3081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3079), - [anon_sym_BSLASHbegin] = ACTIONS(3081), - [anon_sym_BSLASHtitle] = ACTIONS(67), - [anon_sym_BSLASHauthor] = ACTIONS(69), - [anon_sym_BSLASHusepackage] = ACTIONS(71), - [anon_sym_BSLASHRequirePackage] = ACTIONS(71), - [anon_sym_BSLASHdocumentclass] = ACTIONS(73), - [anon_sym_BSLASHinclude] = ACTIONS(75), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(75), - [anon_sym_BSLASHinput] = ACTIONS(75), - [anon_sym_BSLASHsubfile] = ACTIONS(75), - [anon_sym_BSLASHaddbibresource] = ACTIONS(77), - [anon_sym_BSLASHbibliography] = ACTIONS(79), - [anon_sym_BSLASHincludegraphics] = ACTIONS(81), - [anon_sym_BSLASHincludesvg] = ACTIONS(83), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(85), - [anon_sym_BSLASHverbatiminput] = ACTIONS(87), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(87), - [anon_sym_BSLASHimport] = ACTIONS(89), - [anon_sym_BSLASHsubimport] = ACTIONS(89), - [anon_sym_BSLASHinputfrom] = ACTIONS(89), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(89), - [anon_sym_BSLASHincludefrom] = ACTIONS(89), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(89), - [anon_sym_BSLASHcaption] = ACTIONS(91), - [anon_sym_BSLASHcite] = ACTIONS(93), - [anon_sym_BSLASHcite_STAR] = ACTIONS(95), - [anon_sym_BSLASHCite] = ACTIONS(93), - [anon_sym_BSLASHnocite] = ACTIONS(93), - [anon_sym_BSLASHcitet] = ACTIONS(93), - [anon_sym_BSLASHcitep] = ACTIONS(93), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteauthor] = ACTIONS(93), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHCiteauthor] = ACTIONS(93), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitetitle] = ACTIONS(93), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteyear] = ACTIONS(93), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(95), - [anon_sym_BSLASHcitedate] = ACTIONS(93), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(95), - [anon_sym_BSLASHciteurl] = ACTIONS(93), - [anon_sym_BSLASHfullcite] = ACTIONS(93), - [anon_sym_BSLASHciteyearpar] = ACTIONS(93), - [anon_sym_BSLASHcitealt] = ACTIONS(93), - [anon_sym_BSLASHcitealp] = ACTIONS(93), - [anon_sym_BSLASHcitetext] = ACTIONS(93), - [anon_sym_BSLASHparencite] = ACTIONS(93), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(95), - [anon_sym_BSLASHParencite] = ACTIONS(93), - [anon_sym_BSLASHfootcite] = ACTIONS(93), - [anon_sym_BSLASHfootfullcite] = ACTIONS(93), - [anon_sym_BSLASHfootcitetext] = ACTIONS(93), - [anon_sym_BSLASHtextcite] = ACTIONS(93), - [anon_sym_BSLASHTextcite] = ACTIONS(93), - [anon_sym_BSLASHsmartcite] = ACTIONS(93), - [anon_sym_BSLASHSmartcite] = ACTIONS(93), - [anon_sym_BSLASHsupercite] = ACTIONS(93), - [anon_sym_BSLASHautocite] = ACTIONS(93), - [anon_sym_BSLASHAutocite] = ACTIONS(93), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(95), - [anon_sym_BSLASHvolcite] = ACTIONS(93), - [anon_sym_BSLASHVolcite] = ACTIONS(93), - [anon_sym_BSLASHpvolcite] = ACTIONS(93), - [anon_sym_BSLASHPvolcite] = ACTIONS(93), - [anon_sym_BSLASHfvolcite] = ACTIONS(93), - [anon_sym_BSLASHftvolcite] = ACTIONS(93), - [anon_sym_BSLASHsvolcite] = ACTIONS(93), - [anon_sym_BSLASHSvolcite] = ACTIONS(93), - [anon_sym_BSLASHtvolcite] = ACTIONS(93), - [anon_sym_BSLASHTvolcite] = ACTIONS(93), - [anon_sym_BSLASHavolcite] = ACTIONS(93), - [anon_sym_BSLASHAvolcite] = ACTIONS(93), - [anon_sym_BSLASHnotecite] = ACTIONS(93), - [anon_sym_BSLASHNotecite] = ACTIONS(93), - [anon_sym_BSLASHpnotecite] = ACTIONS(93), - [anon_sym_BSLASHPnotecite] = ACTIONS(93), - [anon_sym_BSLASHfnotecite] = ACTIONS(93), - [anon_sym_BSLASHlabel] = ACTIONS(97), - [anon_sym_BSLASHref] = ACTIONS(99), - [anon_sym_BSLASHeqref] = ACTIONS(99), - [anon_sym_BSLASHvref] = ACTIONS(99), - [anon_sym_BSLASHVref] = ACTIONS(99), - [anon_sym_BSLASHautoref] = ACTIONS(99), - [anon_sym_BSLASHpageref] = ACTIONS(99), - [anon_sym_BSLASHcref] = ACTIONS(99), - [anon_sym_BSLASHCref] = ACTIONS(99), - [anon_sym_BSLASHcref_STAR] = ACTIONS(101), - [anon_sym_BSLASHCref_STAR] = ACTIONS(101), - [anon_sym_BSLASHnamecref] = ACTIONS(99), - [anon_sym_BSLASHnameCref] = ACTIONS(99), - [anon_sym_BSLASHlcnamecref] = ACTIONS(99), - [anon_sym_BSLASHnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHnameCrefs] = ACTIONS(99), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(99), - [anon_sym_BSLASHlabelcref] = ACTIONS(99), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(99), - [anon_sym_BSLASHcrefrange] = ACTIONS(103), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHCrefrange] = ACTIONS(103), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(105), - [anon_sym_BSLASHnewlabel] = ACTIONS(107), - [anon_sym_BSLASHnewcommand] = ACTIONS(109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(109), - [anon_sym_BSLASHdef] = ACTIONS(113), - [anon_sym_BSLASHlet] = ACTIONS(115), - [anon_sym_BSLASHleft] = ACTIONS(3081), - [anon_sym_BSLASHbig] = ACTIONS(3081), - [anon_sym_BSLASHBig] = ACTIONS(3081), - [anon_sym_BSLASHbigg] = ACTIONS(3081), - [anon_sym_BSLASHBigg] = ACTIONS(3081), - [anon_sym_BSLASHbigl] = ACTIONS(3081), - [anon_sym_BSLASHBigl] = ACTIONS(3081), - [anon_sym_BSLASHbiggl] = ACTIONS(3081), - [anon_sym_BSLASHBiggl] = ACTIONS(3081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(119), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(119), - [anon_sym_BSLASHnewenvironment] = ACTIONS(121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), - [anon_sym_BSLASHgls] = ACTIONS(125), - [anon_sym_BSLASHGls] = ACTIONS(125), - [anon_sym_BSLASHGLS] = ACTIONS(125), - [anon_sym_BSLASHglspl] = ACTIONS(125), - [anon_sym_BSLASHGlspl] = ACTIONS(125), - [anon_sym_BSLASHGLSpl] = ACTIONS(125), - [anon_sym_BSLASHglsdisp] = ACTIONS(125), - [anon_sym_BSLASHglslink] = ACTIONS(125), - [anon_sym_BSLASHglstext] = ACTIONS(125), - [anon_sym_BSLASHGlstext] = ACTIONS(125), - [anon_sym_BSLASHGLStext] = ACTIONS(125), - [anon_sym_BSLASHglsfirst] = ACTIONS(125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(125), - [anon_sym_BSLASHglsplural] = ACTIONS(125), - [anon_sym_BSLASHGlsplural] = ACTIONS(125), - [anon_sym_BSLASHGLSplural] = ACTIONS(125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(125), - [anon_sym_BSLASHglsname] = ACTIONS(125), - [anon_sym_BSLASHGlsname] = ACTIONS(125), - [anon_sym_BSLASHGLSname] = ACTIONS(125), - [anon_sym_BSLASHglssymbol] = ACTIONS(125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(125), - [anon_sym_BSLASHglsdesc] = ACTIONS(125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(125), - [anon_sym_BSLASHglsuseri] = ACTIONS(125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(125), - [anon_sym_BSLASHglsuserii] = ACTIONS(125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(125), - [anon_sym_BSLASHglsuserv] = ACTIONS(125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(125), - [anon_sym_BSLASHglsuservi] = ACTIONS(125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(125), - [anon_sym_BSLASHnewacronym] = ACTIONS(127), - [anon_sym_BSLASHacrshort] = ACTIONS(129), - [anon_sym_BSLASHAcrshort] = ACTIONS(129), - [anon_sym_BSLASHACRshort] = ACTIONS(129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(129), - [anon_sym_BSLASHacrlong] = ACTIONS(129), - [anon_sym_BSLASHAcrlong] = ACTIONS(129), - [anon_sym_BSLASHACRlong] = ACTIONS(129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(129), - [anon_sym_BSLASHacrfull] = ACTIONS(129), - [anon_sym_BSLASHAcrfull] = ACTIONS(129), - [anon_sym_BSLASHACRfull] = ACTIONS(129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(129), - [anon_sym_BSLASHacs] = ACTIONS(129), - [anon_sym_BSLASHAcs] = ACTIONS(129), - [anon_sym_BSLASHacsp] = ACTIONS(129), - [anon_sym_BSLASHAcsp] = ACTIONS(129), - [anon_sym_BSLASHacl] = ACTIONS(129), - [anon_sym_BSLASHAcl] = ACTIONS(129), - [anon_sym_BSLASHaclp] = ACTIONS(129), - [anon_sym_BSLASHAclp] = ACTIONS(129), - [anon_sym_BSLASHacf] = ACTIONS(129), - [anon_sym_BSLASHAcf] = ACTIONS(129), - [anon_sym_BSLASHacfp] = ACTIONS(129), - [anon_sym_BSLASHAcfp] = ACTIONS(129), - [anon_sym_BSLASHac] = ACTIONS(129), - [anon_sym_BSLASHAc] = ACTIONS(129), - [anon_sym_BSLASHacp] = ACTIONS(129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(133), - [anon_sym_BSLASHdefinecolor] = ACTIONS(135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(139), - [anon_sym_BSLASHcolorbox] = ACTIONS(139), - [anon_sym_BSLASHtextcolor] = ACTIONS(139), - [anon_sym_BSLASHpagecolor] = ACTIONS(139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - [anon_sym_BSLASHtext] = ACTIONS(3081), - [anon_sym_BSLASHintertext] = ACTIONS(3081), - [anon_sym_shortintertext] = ACTIONS(3081), - }, - [285] = { - [sym_block_comment] = STATE(1385), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym__command] = STATE(1385), - [sym_generic_command] = STATE(1385), - [sym_title_declaration] = STATE(1385), - [sym_author_declaration] = STATE(1385), - [sym_package_include] = STATE(1385), - [sym_class_include] = STATE(1385), - [sym_latex_include] = STATE(1385), - [sym_biblatex_include] = STATE(1385), - [sym_bibtex_include] = STATE(1385), - [sym_graphics_include] = STATE(1385), - [sym_svg_include] = STATE(1385), - [sym_inkscape_include] = STATE(1385), - [sym_verbatim_include] = STATE(1385), - [sym_import_include] = STATE(1385), - [sym_caption] = STATE(1385), - [sym_citation] = STATE(1385), - [sym_label_definition] = STATE(1385), - [sym_label_reference] = STATE(1385), - [sym_label_reference_range] = STATE(1385), - [sym_label_number] = STATE(1385), - [sym_new_command_definition] = STATE(1385), - [sym_old_command_definition] = STATE(1385), - [sym_let_command_definition] = STATE(1385), - [sym_paired_delimiter_definition] = STATE(1385), - [sym_environment_definition] = STATE(1385), - [sym_glossary_entry_definition] = STATE(1385), - [sym_glossary_entry_reference] = STATE(1385), - [sym_acronym_definition] = STATE(1385), - [sym_acronym_reference] = STATE(1385), - [sym_theorem_definition] = STATE(1385), - [sym_color_definition] = STATE(1385), - [sym_color_set_definition] = STATE(1385), - [sym_color_reference] = STATE(1385), - [sym_tikz_library_import] = STATE(1385), - [aux_sym_text_repeat1] = STATE(285), - [sym_command_name] = ACTIONS(3933), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3936), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_BSLASHpart] = ACTIONS(3091), - [anon_sym_BSLASHpart_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddpart] = ACTIONS(3091), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(3089), - [anon_sym_BSLASHchapter] = ACTIONS(3091), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddchap] = ACTIONS(3091), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsection] = ACTIONS(3091), - [anon_sym_BSLASHsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddsec] = ACTIONS(3091), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubsection] = ACTIONS(3091), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubsubsection] = ACTIONS(3091), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHparagraph] = ACTIONS(3091), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubparagraph] = ACTIONS(3091), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(3089), - [anon_sym_BSLASHitem] = ACTIONS(3091), - [anon_sym_BSLASHitem_STAR] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [sym_word] = ACTIONS(3939), - [sym_placeholder] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3945), - [anon_sym_DASH] = ACTIONS(3945), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_SLASH] = ACTIONS(3945), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(3948), - [anon_sym_SQUOTE] = ACTIONS(3948), - [anon_sym__] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3954), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3089), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3089), - [anon_sym_BSLASH_RPAREN] = ACTIONS(3089), - [anon_sym_BSLASHbegin] = ACTIONS(3091), - [anon_sym_BSLASHtitle] = ACTIONS(3957), - [anon_sym_BSLASHauthor] = ACTIONS(3960), - [anon_sym_BSLASHusepackage] = ACTIONS(3963), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3963), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3966), - [anon_sym_BSLASHinclude] = ACTIONS(3969), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3969), - [anon_sym_BSLASHinput] = ACTIONS(3969), - [anon_sym_BSLASHsubfile] = ACTIONS(3969), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3972), - [anon_sym_BSLASHbibliography] = ACTIONS(3975), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3978), - [anon_sym_BSLASHincludesvg] = ACTIONS(3981), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3984), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3987), - [anon_sym_BSLASHimport] = ACTIONS(3990), - [anon_sym_BSLASHsubimport] = ACTIONS(3990), - [anon_sym_BSLASHinputfrom] = ACTIONS(3990), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3990), - [anon_sym_BSLASHincludefrom] = ACTIONS(3990), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3990), - [anon_sym_BSLASHcaption] = ACTIONS(3993), - [anon_sym_BSLASHcite] = ACTIONS(3996), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3999), - [anon_sym_BSLASHCite] = ACTIONS(3996), - [anon_sym_BSLASHnocite] = ACTIONS(3996), - [anon_sym_BSLASHcitet] = ACTIONS(3996), - [anon_sym_BSLASHcitep] = ACTIONS(3996), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3999), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3999), - [anon_sym_BSLASHciteauthor] = ACTIONS(3996), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3999), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3996), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3999), - [anon_sym_BSLASHcitetitle] = ACTIONS(3996), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3999), - [anon_sym_BSLASHciteyear] = ACTIONS(3996), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3999), - [anon_sym_BSLASHcitedate] = ACTIONS(3996), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3999), - [anon_sym_BSLASHciteurl] = ACTIONS(3996), - [anon_sym_BSLASHfullcite] = ACTIONS(3996), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3996), - [anon_sym_BSLASHcitealt] = ACTIONS(3996), - [anon_sym_BSLASHcitealp] = ACTIONS(3996), - [anon_sym_BSLASHcitetext] = ACTIONS(3996), - [anon_sym_BSLASHparencite] = ACTIONS(3996), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3999), - [anon_sym_BSLASHParencite] = ACTIONS(3996), - [anon_sym_BSLASHfootcite] = ACTIONS(3996), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3996), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3996), - [anon_sym_BSLASHtextcite] = ACTIONS(3996), - [anon_sym_BSLASHTextcite] = ACTIONS(3996), - [anon_sym_BSLASHsmartcite] = ACTIONS(3996), - [anon_sym_BSLASHSmartcite] = ACTIONS(3996), - [anon_sym_BSLASHsupercite] = ACTIONS(3996), - [anon_sym_BSLASHautocite] = ACTIONS(3996), - [anon_sym_BSLASHAutocite] = ACTIONS(3996), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3999), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3999), - [anon_sym_BSLASHvolcite] = ACTIONS(3996), - [anon_sym_BSLASHVolcite] = ACTIONS(3996), - [anon_sym_BSLASHpvolcite] = ACTIONS(3996), - [anon_sym_BSLASHPvolcite] = ACTIONS(3996), - [anon_sym_BSLASHfvolcite] = ACTIONS(3996), - [anon_sym_BSLASHftvolcite] = ACTIONS(3996), - [anon_sym_BSLASHsvolcite] = ACTIONS(3996), - [anon_sym_BSLASHSvolcite] = ACTIONS(3996), - [anon_sym_BSLASHtvolcite] = ACTIONS(3996), - [anon_sym_BSLASHTvolcite] = ACTIONS(3996), - [anon_sym_BSLASHavolcite] = ACTIONS(3996), - [anon_sym_BSLASHAvolcite] = ACTIONS(3996), - [anon_sym_BSLASHnotecite] = ACTIONS(3996), - [anon_sym_BSLASHNotecite] = ACTIONS(3996), - [anon_sym_BSLASHpnotecite] = ACTIONS(3996), - [anon_sym_BSLASHPnotecite] = ACTIONS(3996), - [anon_sym_BSLASHfnotecite] = ACTIONS(3996), - [anon_sym_BSLASHlabel] = ACTIONS(4002), - [anon_sym_BSLASHref] = ACTIONS(4005), - [anon_sym_BSLASHeqref] = ACTIONS(4005), - [anon_sym_BSLASHvref] = ACTIONS(4005), - [anon_sym_BSLASHVref] = ACTIONS(4005), - [anon_sym_BSLASHautoref] = ACTIONS(4005), - [anon_sym_BSLASHpageref] = ACTIONS(4005), - [anon_sym_BSLASHcref] = ACTIONS(4005), - [anon_sym_BSLASHCref] = ACTIONS(4005), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4008), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4008), - [anon_sym_BSLASHnamecref] = ACTIONS(4005), - [anon_sym_BSLASHnameCref] = ACTIONS(4005), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4005), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4005), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4005), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4005), - [anon_sym_BSLASHlabelcref] = ACTIONS(4005), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4005), - [anon_sym_BSLASHcrefrange] = ACTIONS(4011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4014), - [anon_sym_BSLASHCrefrange] = ACTIONS(4011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4014), - [anon_sym_BSLASHnewlabel] = ACTIONS(4017), - [anon_sym_BSLASHnewcommand] = ACTIONS(4020), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4020), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4020), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4020), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4023), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4020), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4020), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4020), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4020), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4020), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4020), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4020), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4020), - [anon_sym_BSLASHdef] = ACTIONS(4026), - [anon_sym_BSLASHlet] = ACTIONS(4029), - [anon_sym_BSLASHleft] = ACTIONS(3091), - [anon_sym_BSLASHbig] = ACTIONS(3091), - [anon_sym_BSLASHBig] = ACTIONS(3091), - [anon_sym_BSLASHbigg] = ACTIONS(3091), - [anon_sym_BSLASHBigg] = ACTIONS(3091), - [anon_sym_BSLASHbigl] = ACTIONS(3091), - [anon_sym_BSLASHBigl] = ACTIONS(3091), - [anon_sym_BSLASHbiggl] = ACTIONS(3091), - [anon_sym_BSLASHBiggl] = ACTIONS(3091), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4032), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4032), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4035), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4035), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4035), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4035), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4035), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4035), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4038), - [anon_sym_BSLASHgls] = ACTIONS(4041), - [anon_sym_BSLASHGls] = ACTIONS(4041), - [anon_sym_BSLASHGLS] = ACTIONS(4041), - [anon_sym_BSLASHglspl] = ACTIONS(4041), - [anon_sym_BSLASHGlspl] = ACTIONS(4041), - [anon_sym_BSLASHGLSpl] = ACTIONS(4041), - [anon_sym_BSLASHglsdisp] = ACTIONS(4041), - [anon_sym_BSLASHglslink] = ACTIONS(4041), - [anon_sym_BSLASHglstext] = ACTIONS(4041), - [anon_sym_BSLASHGlstext] = ACTIONS(4041), - [anon_sym_BSLASHGLStext] = ACTIONS(4041), - [anon_sym_BSLASHglsfirst] = ACTIONS(4041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4041), - [anon_sym_BSLASHglsplural] = ACTIONS(4041), - [anon_sym_BSLASHGlsplural] = ACTIONS(4041), - [anon_sym_BSLASHGLSplural] = ACTIONS(4041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4041), - [anon_sym_BSLASHglsname] = ACTIONS(4041), - [anon_sym_BSLASHGlsname] = ACTIONS(4041), - [anon_sym_BSLASHGLSname] = ACTIONS(4041), - [anon_sym_BSLASHglssymbol] = ACTIONS(4041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4041), - [anon_sym_BSLASHglsdesc] = ACTIONS(4041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4041), - [anon_sym_BSLASHglsuseri] = ACTIONS(4041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4041), - [anon_sym_BSLASHglsuserii] = ACTIONS(4041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4041), - [anon_sym_BSLASHglsuserv] = ACTIONS(4041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4041), - [anon_sym_BSLASHglsuservi] = ACTIONS(4041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4041), - [anon_sym_BSLASHnewacronym] = ACTIONS(4044), - [anon_sym_BSLASHacrshort] = ACTIONS(4047), - [anon_sym_BSLASHAcrshort] = ACTIONS(4047), - [anon_sym_BSLASHACRshort] = ACTIONS(4047), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4047), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4047), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4047), - [anon_sym_BSLASHacrlong] = ACTIONS(4047), - [anon_sym_BSLASHAcrlong] = ACTIONS(4047), - [anon_sym_BSLASHACRlong] = ACTIONS(4047), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4047), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4047), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4047), - [anon_sym_BSLASHacrfull] = ACTIONS(4047), - [anon_sym_BSLASHAcrfull] = ACTIONS(4047), - [anon_sym_BSLASHACRfull] = ACTIONS(4047), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4047), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4047), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4047), - [anon_sym_BSLASHacs] = ACTIONS(4047), - [anon_sym_BSLASHAcs] = ACTIONS(4047), - [anon_sym_BSLASHacsp] = ACTIONS(4047), - [anon_sym_BSLASHAcsp] = ACTIONS(4047), - [anon_sym_BSLASHacl] = ACTIONS(4047), - [anon_sym_BSLASHAcl] = ACTIONS(4047), - [anon_sym_BSLASHaclp] = ACTIONS(4047), - [anon_sym_BSLASHAclp] = ACTIONS(4047), - [anon_sym_BSLASHacf] = ACTIONS(4047), - [anon_sym_BSLASHAcf] = ACTIONS(4047), - [anon_sym_BSLASHacfp] = ACTIONS(4047), - [anon_sym_BSLASHAcfp] = ACTIONS(4047), - [anon_sym_BSLASHac] = ACTIONS(4047), - [anon_sym_BSLASHAc] = ACTIONS(4047), - [anon_sym_BSLASHacp] = ACTIONS(4047), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4047), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4047), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4047), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4047), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4047), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4047), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4047), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4047), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4047), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4047), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4050), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4053), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4050), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4053), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4056), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4059), - [anon_sym_BSLASHcolor] = ACTIONS(4062), - [anon_sym_BSLASHcolorbox] = ACTIONS(4062), - [anon_sym_BSLASHtextcolor] = ACTIONS(4062), - [anon_sym_BSLASHpagecolor] = ACTIONS(4062), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4065), - [anon_sym_BSLASHtext] = ACTIONS(3091), - [anon_sym_BSLASHintertext] = ACTIONS(3091), - [anon_sym_shortintertext] = ACTIONS(3091), - }, - [286] = { - [sym_block_comment] = STATE(1340), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym__command] = STATE(1340), - [sym_generic_command] = STATE(1340), - [sym_title_declaration] = STATE(1340), - [sym_author_declaration] = STATE(1340), - [sym_package_include] = STATE(1340), - [sym_class_include] = STATE(1340), - [sym_latex_include] = STATE(1340), - [sym_biblatex_include] = STATE(1340), - [sym_bibtex_include] = STATE(1340), - [sym_graphics_include] = STATE(1340), - [sym_svg_include] = STATE(1340), - [sym_inkscape_include] = STATE(1340), - [sym_verbatim_include] = STATE(1340), - [sym_import_include] = STATE(1340), - [sym_caption] = STATE(1340), - [sym_citation] = STATE(1340), - [sym_label_definition] = STATE(1340), - [sym_label_reference] = STATE(1340), - [sym_label_reference_range] = STATE(1340), - [sym_label_number] = STATE(1340), - [sym_new_command_definition] = STATE(1340), - [sym_old_command_definition] = STATE(1340), - [sym_let_command_definition] = STATE(1340), - [sym_paired_delimiter_definition] = STATE(1340), - [sym_environment_definition] = STATE(1340), - [sym_glossary_entry_definition] = STATE(1340), - [sym_glossary_entry_reference] = STATE(1340), - [sym_acronym_definition] = STATE(1340), - [sym_acronym_reference] = STATE(1340), - [sym_theorem_definition] = STATE(1340), - [sym_color_definition] = STATE(1340), - [sym_color_set_definition] = STATE(1340), - [sym_color_reference] = STATE(1340), - [sym_tikz_library_import] = STATE(1340), - [aux_sym_text_repeat1] = STATE(290), - [sym_command_name] = ACTIONS(1066), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1068), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_BSLASHpart] = ACTIONS(3081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddpart] = ACTIONS(3081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(3079), - [anon_sym_BSLASHchapter] = ACTIONS(3081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddchap] = ACTIONS(3081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsection] = ACTIONS(3081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddsec] = ACTIONS(3081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubsection] = ACTIONS(3081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(3081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHparagraph] = ACTIONS(3081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(3081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(3079), - [anon_sym_BSLASHitem] = ACTIONS(3081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3079), - [sym_word] = ACTIONS(1074), - [sym_placeholder] = ACTIONS(1076), - [anon_sym_PLUS] = ACTIONS(1078), - [anon_sym_DASH] = ACTIONS(1078), - [anon_sym_STAR] = ACTIONS(1078), - [anon_sym_SLASH] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_COLON] = ACTIONS(1080), - [anon_sym_SQUOTE] = ACTIONS(1080), - [anon_sym__] = ACTIONS(1082), - [anon_sym_CARET] = ACTIONS(1084), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3079), - [anon_sym_BSLASH_RBRACK] = ACTIONS(3079), - [anon_sym_DOLLAR] = ACTIONS(3081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3079), - [anon_sym_BSLASHbegin] = ACTIONS(3081), - [anon_sym_BSLASHtitle] = ACTIONS(1096), - [anon_sym_BSLASHauthor] = ACTIONS(1098), - [anon_sym_BSLASHusepackage] = ACTIONS(1100), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1100), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1102), - [anon_sym_BSLASHinclude] = ACTIONS(1104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1104), - [anon_sym_BSLASHinput] = ACTIONS(1104), - [anon_sym_BSLASHsubfile] = ACTIONS(1104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1106), - [anon_sym_BSLASHbibliography] = ACTIONS(1108), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1110), - [anon_sym_BSLASHincludesvg] = ACTIONS(1112), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1114), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1116), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1116), - [anon_sym_BSLASHimport] = ACTIONS(1118), - [anon_sym_BSLASHsubimport] = ACTIONS(1118), - [anon_sym_BSLASHinputfrom] = ACTIONS(1118), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1118), - [anon_sym_BSLASHincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1118), - [anon_sym_BSLASHcaption] = ACTIONS(1120), - [anon_sym_BSLASHcite] = ACTIONS(1122), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCite] = ACTIONS(1122), - [anon_sym_BSLASHnocite] = ACTIONS(1122), - [anon_sym_BSLASHcitet] = ACTIONS(1122), - [anon_sym_BSLASHcitep] = ACTIONS(1122), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteauthor] = ACTIONS(1122), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1122), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitetitle] = ACTIONS(1122), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteyear] = ACTIONS(1122), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1124), - [anon_sym_BSLASHcitedate] = ACTIONS(1122), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1124), - [anon_sym_BSLASHciteurl] = ACTIONS(1122), - [anon_sym_BSLASHfullcite] = ACTIONS(1122), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1122), - [anon_sym_BSLASHcitealt] = ACTIONS(1122), - [anon_sym_BSLASHcitealp] = ACTIONS(1122), - [anon_sym_BSLASHcitetext] = ACTIONS(1122), - [anon_sym_BSLASHparencite] = ACTIONS(1122), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHParencite] = ACTIONS(1122), - [anon_sym_BSLASHfootcite] = ACTIONS(1122), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1122), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1122), - [anon_sym_BSLASHtextcite] = ACTIONS(1122), - [anon_sym_BSLASHTextcite] = ACTIONS(1122), - [anon_sym_BSLASHsmartcite] = ACTIONS(1122), - [anon_sym_BSLASHSmartcite] = ACTIONS(1122), - [anon_sym_BSLASHsupercite] = ACTIONS(1122), - [anon_sym_BSLASHautocite] = ACTIONS(1122), - [anon_sym_BSLASHAutocite] = ACTIONS(1122), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1124), - [anon_sym_BSLASHvolcite] = ACTIONS(1122), - [anon_sym_BSLASHVolcite] = ACTIONS(1122), - [anon_sym_BSLASHpvolcite] = ACTIONS(1122), - [anon_sym_BSLASHPvolcite] = ACTIONS(1122), - [anon_sym_BSLASHfvolcite] = ACTIONS(1122), - [anon_sym_BSLASHftvolcite] = ACTIONS(1122), - [anon_sym_BSLASHsvolcite] = ACTIONS(1122), - [anon_sym_BSLASHSvolcite] = ACTIONS(1122), - [anon_sym_BSLASHtvolcite] = ACTIONS(1122), - [anon_sym_BSLASHTvolcite] = ACTIONS(1122), - [anon_sym_BSLASHavolcite] = ACTIONS(1122), - [anon_sym_BSLASHAvolcite] = ACTIONS(1122), - [anon_sym_BSLASHnotecite] = ACTIONS(1122), - [anon_sym_BSLASHNotecite] = ACTIONS(1122), - [anon_sym_BSLASHpnotecite] = ACTIONS(1122), - [anon_sym_BSLASHPnotecite] = ACTIONS(1122), - [anon_sym_BSLASHfnotecite] = ACTIONS(1122), - [anon_sym_BSLASHlabel] = ACTIONS(1126), - [anon_sym_BSLASHref] = ACTIONS(1128), - [anon_sym_BSLASHeqref] = ACTIONS(1128), - [anon_sym_BSLASHvref] = ACTIONS(1128), - [anon_sym_BSLASHVref] = ACTIONS(1128), - [anon_sym_BSLASHautoref] = ACTIONS(1128), - [anon_sym_BSLASHpageref] = ACTIONS(1128), - [anon_sym_BSLASHcref] = ACTIONS(1128), - [anon_sym_BSLASHCref] = ACTIONS(1128), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1130), - [anon_sym_BSLASHnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnameCref] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1128), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1128), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1128), - [anon_sym_BSLASHlabelcref] = ACTIONS(1128), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1128), - [anon_sym_BSLASHcrefrange] = ACTIONS(1132), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHCrefrange] = ACTIONS(1132), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1134), - [anon_sym_BSLASHnewlabel] = ACTIONS(1136), - [anon_sym_BSLASHnewcommand] = ACTIONS(1138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1138), - [anon_sym_BSLASHdef] = ACTIONS(1142), - [anon_sym_BSLASHlet] = ACTIONS(1144), - [anon_sym_BSLASHleft] = ACTIONS(3081), - [anon_sym_BSLASHbig] = ACTIONS(3081), - [anon_sym_BSLASHBig] = ACTIONS(3081), - [anon_sym_BSLASHbigg] = ACTIONS(3081), - [anon_sym_BSLASHBigg] = ACTIONS(3081), - [anon_sym_BSLASHbigl] = ACTIONS(3081), - [anon_sym_BSLASHBigl] = ACTIONS(3081), - [anon_sym_BSLASHbiggl] = ACTIONS(3081), - [anon_sym_BSLASHBiggl] = ACTIONS(3081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1148), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1148), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1150), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1150), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1152), - [anon_sym_BSLASHgls] = ACTIONS(1154), - [anon_sym_BSLASHGls] = ACTIONS(1154), - [anon_sym_BSLASHGLS] = ACTIONS(1154), - [anon_sym_BSLASHglspl] = ACTIONS(1154), - [anon_sym_BSLASHGlspl] = ACTIONS(1154), - [anon_sym_BSLASHGLSpl] = ACTIONS(1154), - [anon_sym_BSLASHglsdisp] = ACTIONS(1154), - [anon_sym_BSLASHglslink] = ACTIONS(1154), - [anon_sym_BSLASHglstext] = ACTIONS(1154), - [anon_sym_BSLASHGlstext] = ACTIONS(1154), - [anon_sym_BSLASHGLStext] = ACTIONS(1154), - [anon_sym_BSLASHglsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1154), - [anon_sym_BSLASHglsplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSplural] = ACTIONS(1154), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1154), - [anon_sym_BSLASHglsname] = ACTIONS(1154), - [anon_sym_BSLASHGlsname] = ACTIONS(1154), - [anon_sym_BSLASHGLSname] = ACTIONS(1154), - [anon_sym_BSLASHglssymbol] = ACTIONS(1154), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1154), - [anon_sym_BSLASHglsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1154), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1154), - [anon_sym_BSLASHglsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1154), - [anon_sym_BSLASHglsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1154), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1154), - [anon_sym_BSLASHglsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1154), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1154), - [anon_sym_BSLASHglsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1154), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1154), - [anon_sym_BSLASHnewacronym] = ACTIONS(1156), - [anon_sym_BSLASHacrshort] = ACTIONS(1158), - [anon_sym_BSLASHAcrshort] = ACTIONS(1158), - [anon_sym_BSLASHACRshort] = ACTIONS(1158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1158), - [anon_sym_BSLASHacrlong] = ACTIONS(1158), - [anon_sym_BSLASHAcrlong] = ACTIONS(1158), - [anon_sym_BSLASHACRlong] = ACTIONS(1158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1158), - [anon_sym_BSLASHacrfull] = ACTIONS(1158), - [anon_sym_BSLASHAcrfull] = ACTIONS(1158), - [anon_sym_BSLASHACRfull] = ACTIONS(1158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1158), - [anon_sym_BSLASHacs] = ACTIONS(1158), - [anon_sym_BSLASHAcs] = ACTIONS(1158), - [anon_sym_BSLASHacsp] = ACTIONS(1158), - [anon_sym_BSLASHAcsp] = ACTIONS(1158), - [anon_sym_BSLASHacl] = ACTIONS(1158), - [anon_sym_BSLASHAcl] = ACTIONS(1158), - [anon_sym_BSLASHaclp] = ACTIONS(1158), - [anon_sym_BSLASHAclp] = ACTIONS(1158), - [anon_sym_BSLASHacf] = ACTIONS(1158), - [anon_sym_BSLASHAcf] = ACTIONS(1158), - [anon_sym_BSLASHacfp] = ACTIONS(1158), - [anon_sym_BSLASHAcfp] = ACTIONS(1158), - [anon_sym_BSLASHac] = ACTIONS(1158), - [anon_sym_BSLASHAc] = ACTIONS(1158), - [anon_sym_BSLASHacp] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1160), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1160), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1162), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1164), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1166), - [anon_sym_BSLASHcolor] = ACTIONS(1168), - [anon_sym_BSLASHcolorbox] = ACTIONS(1168), - [anon_sym_BSLASHtextcolor] = ACTIONS(1168), - [anon_sym_BSLASHpagecolor] = ACTIONS(1168), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1170), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1170), - [anon_sym_BSLASHtext] = ACTIONS(3081), - [anon_sym_BSLASHintertext] = ACTIONS(3081), - [anon_sym_shortintertext] = ACTIONS(3081), - }, - [287] = { - [sym_block_comment] = STATE(1204), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym__command] = STATE(1204), - [sym_generic_command] = STATE(1204), - [sym_title_declaration] = STATE(1204), - [sym_author_declaration] = STATE(1204), - [sym_package_include] = STATE(1204), - [sym_class_include] = STATE(1204), - [sym_latex_include] = STATE(1204), - [sym_biblatex_include] = STATE(1204), - [sym_bibtex_include] = STATE(1204), - [sym_graphics_include] = STATE(1204), - [sym_svg_include] = STATE(1204), - [sym_inkscape_include] = STATE(1204), - [sym_verbatim_include] = STATE(1204), - [sym_import_include] = STATE(1204), - [sym_caption] = STATE(1204), - [sym_citation] = STATE(1204), - [sym_label_definition] = STATE(1204), - [sym_label_reference] = STATE(1204), - [sym_label_reference_range] = STATE(1204), - [sym_label_number] = STATE(1204), - [sym_new_command_definition] = STATE(1204), - [sym_old_command_definition] = STATE(1204), - [sym_let_command_definition] = STATE(1204), - [sym_paired_delimiter_definition] = STATE(1204), - [sym_environment_definition] = STATE(1204), - [sym_glossary_entry_definition] = STATE(1204), - [sym_glossary_entry_reference] = STATE(1204), - [sym_acronym_definition] = STATE(1204), - [sym_acronym_reference] = STATE(1204), - [sym_theorem_definition] = STATE(1204), - [sym_color_definition] = STATE(1204), - [sym_color_set_definition] = STATE(1204), - [sym_color_reference] = STATE(1204), - [sym_tikz_library_import] = STATE(1204), - [aux_sym_text_repeat1] = STATE(287), - [sym_command_name] = ACTIONS(4068), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4071), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_BSLASHpart] = ACTIONS(3091), - [anon_sym_BSLASHpart_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddpart] = ACTIONS(3091), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(3089), - [anon_sym_BSLASHchapter] = ACTIONS(3091), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddchap] = ACTIONS(3091), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsection] = ACTIONS(3091), - [anon_sym_BSLASHsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddsec] = ACTIONS(3091), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubsection] = ACTIONS(3091), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubsubsection] = ACTIONS(3091), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHparagraph] = ACTIONS(3091), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubparagraph] = ACTIONS(3091), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(3089), - [anon_sym_BSLASHitem] = ACTIONS(3091), - [anon_sym_BSLASHitem_STAR] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [sym_word] = ACTIONS(4074), - [sym_placeholder] = ACTIONS(4077), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4080), - [anon_sym_SLASH] = ACTIONS(4080), - [anon_sym_LT] = ACTIONS(4083), - [anon_sym_GT] = ACTIONS(4083), - [anon_sym_BANG] = ACTIONS(4083), - [anon_sym_PIPE] = ACTIONS(4083), - [anon_sym_COLON] = ACTIONS(4083), - [anon_sym_SQUOTE] = ACTIONS(4083), - [anon_sym__] = ACTIONS(4086), - [anon_sym_CARET] = ACTIONS(4089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3089), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3089), - [anon_sym_BSLASHbegin] = ACTIONS(3091), - [anon_sym_BSLASHend] = ACTIONS(3091), - [anon_sym_BSLASHtitle] = ACTIONS(4092), - [anon_sym_BSLASHauthor] = ACTIONS(4095), - [anon_sym_BSLASHusepackage] = ACTIONS(4098), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4098), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4101), - [anon_sym_BSLASHinclude] = ACTIONS(4104), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4104), - [anon_sym_BSLASHinput] = ACTIONS(4104), - [anon_sym_BSLASHsubfile] = ACTIONS(4104), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4107), - [anon_sym_BSLASHbibliography] = ACTIONS(4110), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4113), - [anon_sym_BSLASHincludesvg] = ACTIONS(4116), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4119), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4122), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4122), - [anon_sym_BSLASHimport] = ACTIONS(4125), - [anon_sym_BSLASHsubimport] = ACTIONS(4125), - [anon_sym_BSLASHinputfrom] = ACTIONS(4125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4125), - [anon_sym_BSLASHincludefrom] = ACTIONS(4125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4125), - [anon_sym_BSLASHcaption] = ACTIONS(4128), - [anon_sym_BSLASHcite] = ACTIONS(4131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4134), - [anon_sym_BSLASHCite] = ACTIONS(4131), - [anon_sym_BSLASHnocite] = ACTIONS(4131), - [anon_sym_BSLASHcitet] = ACTIONS(4131), - [anon_sym_BSLASHcitep] = ACTIONS(4131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4134), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4134), - [anon_sym_BSLASHciteauthor] = ACTIONS(4131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4134), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4134), - [anon_sym_BSLASHcitetitle] = ACTIONS(4131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4134), - [anon_sym_BSLASHciteyear] = ACTIONS(4131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4134), - [anon_sym_BSLASHcitedate] = ACTIONS(4131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4134), - [anon_sym_BSLASHciteurl] = ACTIONS(4131), - [anon_sym_BSLASHfullcite] = ACTIONS(4131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4131), - [anon_sym_BSLASHcitealt] = ACTIONS(4131), - [anon_sym_BSLASHcitealp] = ACTIONS(4131), - [anon_sym_BSLASHcitetext] = ACTIONS(4131), - [anon_sym_BSLASHparencite] = ACTIONS(4131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4134), - [anon_sym_BSLASHParencite] = ACTIONS(4131), - [anon_sym_BSLASHfootcite] = ACTIONS(4131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4131), - [anon_sym_BSLASHtextcite] = ACTIONS(4131), - [anon_sym_BSLASHTextcite] = ACTIONS(4131), - [anon_sym_BSLASHsmartcite] = ACTIONS(4131), - [anon_sym_BSLASHSmartcite] = ACTIONS(4131), - [anon_sym_BSLASHsupercite] = ACTIONS(4131), - [anon_sym_BSLASHautocite] = ACTIONS(4131), - [anon_sym_BSLASHAutocite] = ACTIONS(4131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4134), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4134), - [anon_sym_BSLASHvolcite] = ACTIONS(4131), - [anon_sym_BSLASHVolcite] = ACTIONS(4131), - [anon_sym_BSLASHpvolcite] = ACTIONS(4131), - [anon_sym_BSLASHPvolcite] = ACTIONS(4131), - [anon_sym_BSLASHfvolcite] = ACTIONS(4131), - [anon_sym_BSLASHftvolcite] = ACTIONS(4131), - [anon_sym_BSLASHsvolcite] = ACTIONS(4131), - [anon_sym_BSLASHSvolcite] = ACTIONS(4131), - [anon_sym_BSLASHtvolcite] = ACTIONS(4131), - [anon_sym_BSLASHTvolcite] = ACTIONS(4131), - [anon_sym_BSLASHavolcite] = ACTIONS(4131), - [anon_sym_BSLASHAvolcite] = ACTIONS(4131), - [anon_sym_BSLASHnotecite] = ACTIONS(4131), - [anon_sym_BSLASHNotecite] = ACTIONS(4131), - [anon_sym_BSLASHpnotecite] = ACTIONS(4131), - [anon_sym_BSLASHPnotecite] = ACTIONS(4131), - [anon_sym_BSLASHfnotecite] = ACTIONS(4131), - [anon_sym_BSLASHlabel] = ACTIONS(4137), - [anon_sym_BSLASHref] = ACTIONS(4140), - [anon_sym_BSLASHeqref] = ACTIONS(4140), - [anon_sym_BSLASHvref] = ACTIONS(4140), - [anon_sym_BSLASHVref] = ACTIONS(4140), - [anon_sym_BSLASHautoref] = ACTIONS(4140), - [anon_sym_BSLASHpageref] = ACTIONS(4140), - [anon_sym_BSLASHcref] = ACTIONS(4140), - [anon_sym_BSLASHCref] = ACTIONS(4140), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4143), - [anon_sym_BSLASHnamecref] = ACTIONS(4140), - [anon_sym_BSLASHnameCref] = ACTIONS(4140), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4140), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4140), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4140), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4140), - [anon_sym_BSLASHlabelcref] = ACTIONS(4140), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4140), - [anon_sym_BSLASHcrefrange] = ACTIONS(4146), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4149), - [anon_sym_BSLASHCrefrange] = ACTIONS(4146), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4149), - [anon_sym_BSLASHnewlabel] = ACTIONS(4152), - [anon_sym_BSLASHnewcommand] = ACTIONS(4155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4158), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4158), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4158), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4158), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4155), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4155), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4155), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4155), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4155), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4155), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4155), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4155), - [anon_sym_BSLASHdef] = ACTIONS(4161), - [anon_sym_BSLASHlet] = ACTIONS(4164), - [anon_sym_BSLASHleft] = ACTIONS(3091), - [anon_sym_BSLASHbig] = ACTIONS(3091), - [anon_sym_BSLASHBig] = ACTIONS(3091), - [anon_sym_BSLASHbigg] = ACTIONS(3091), - [anon_sym_BSLASHBigg] = ACTIONS(3091), - [anon_sym_BSLASHbigl] = ACTIONS(3091), - [anon_sym_BSLASHBigl] = ACTIONS(3091), - [anon_sym_BSLASHbiggl] = ACTIONS(3091), - [anon_sym_BSLASHBiggl] = ACTIONS(3091), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4167), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4170), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4170), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4170), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4170), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4170), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4170), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4173), - [anon_sym_BSLASHgls] = ACTIONS(4176), - [anon_sym_BSLASHGls] = ACTIONS(4176), - [anon_sym_BSLASHGLS] = ACTIONS(4176), - [anon_sym_BSLASHglspl] = ACTIONS(4176), - [anon_sym_BSLASHGlspl] = ACTIONS(4176), - [anon_sym_BSLASHGLSpl] = ACTIONS(4176), - [anon_sym_BSLASHglsdisp] = ACTIONS(4176), - [anon_sym_BSLASHglslink] = ACTIONS(4176), - [anon_sym_BSLASHglstext] = ACTIONS(4176), - [anon_sym_BSLASHGlstext] = ACTIONS(4176), - [anon_sym_BSLASHGLStext] = ACTIONS(4176), - [anon_sym_BSLASHglsfirst] = ACTIONS(4176), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4176), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4176), - [anon_sym_BSLASHglsplural] = ACTIONS(4176), - [anon_sym_BSLASHGlsplural] = ACTIONS(4176), - [anon_sym_BSLASHGLSplural] = ACTIONS(4176), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4176), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4176), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4176), - [anon_sym_BSLASHglsname] = ACTIONS(4176), - [anon_sym_BSLASHGlsname] = ACTIONS(4176), - [anon_sym_BSLASHGLSname] = ACTIONS(4176), - [anon_sym_BSLASHglssymbol] = ACTIONS(4176), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4176), - [anon_sym_BSLASHglsdesc] = ACTIONS(4176), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4176), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4176), - [anon_sym_BSLASHglsuseri] = ACTIONS(4176), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4176), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4176), - [anon_sym_BSLASHglsuserii] = ACTIONS(4176), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4176), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4176), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4176), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4176), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4176), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4176), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4176), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4176), - [anon_sym_BSLASHglsuserv] = ACTIONS(4176), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4176), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4176), - [anon_sym_BSLASHglsuservi] = ACTIONS(4176), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4176), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4176), - [anon_sym_BSLASHnewacronym] = ACTIONS(4179), - [anon_sym_BSLASHacrshort] = ACTIONS(4182), - [anon_sym_BSLASHAcrshort] = ACTIONS(4182), - [anon_sym_BSLASHACRshort] = ACTIONS(4182), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4182), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4182), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4182), - [anon_sym_BSLASHacrlong] = ACTIONS(4182), - [anon_sym_BSLASHAcrlong] = ACTIONS(4182), - [anon_sym_BSLASHACRlong] = ACTIONS(4182), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4182), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4182), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4182), - [anon_sym_BSLASHacrfull] = ACTIONS(4182), - [anon_sym_BSLASHAcrfull] = ACTIONS(4182), - [anon_sym_BSLASHACRfull] = ACTIONS(4182), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4182), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4182), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4182), - [anon_sym_BSLASHacs] = ACTIONS(4182), - [anon_sym_BSLASHAcs] = ACTIONS(4182), - [anon_sym_BSLASHacsp] = ACTIONS(4182), - [anon_sym_BSLASHAcsp] = ACTIONS(4182), - [anon_sym_BSLASHacl] = ACTIONS(4182), - [anon_sym_BSLASHAcl] = ACTIONS(4182), - [anon_sym_BSLASHaclp] = ACTIONS(4182), - [anon_sym_BSLASHAclp] = ACTIONS(4182), - [anon_sym_BSLASHacf] = ACTIONS(4182), - [anon_sym_BSLASHAcf] = ACTIONS(4182), - [anon_sym_BSLASHacfp] = ACTIONS(4182), - [anon_sym_BSLASHAcfp] = ACTIONS(4182), - [anon_sym_BSLASHac] = ACTIONS(4182), - [anon_sym_BSLASHAc] = ACTIONS(4182), - [anon_sym_BSLASHacp] = ACTIONS(4182), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4182), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4182), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4182), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4182), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4182), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4182), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4182), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4182), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4182), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4182), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4188), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4188), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4191), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4194), - [anon_sym_BSLASHcolor] = ACTIONS(4197), - [anon_sym_BSLASHcolorbox] = ACTIONS(4197), - [anon_sym_BSLASHtextcolor] = ACTIONS(4197), - [anon_sym_BSLASHpagecolor] = ACTIONS(4197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4200), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4200), - [anon_sym_BSLASHtext] = ACTIONS(3091), - [anon_sym_BSLASHintertext] = ACTIONS(3091), - [anon_sym_shortintertext] = ACTIONS(3091), - }, - [288] = { - [sym_block_comment] = STATE(1385), - [sym_operator] = STATE(1385), - [sym_subscript] = STATE(1385), - [sym_superscript] = STATE(1385), - [sym__command] = STATE(1385), - [sym_generic_command] = STATE(1385), - [sym_title_declaration] = STATE(1385), - [sym_author_declaration] = STATE(1385), - [sym_package_include] = STATE(1385), - [sym_class_include] = STATE(1385), - [sym_latex_include] = STATE(1385), - [sym_biblatex_include] = STATE(1385), - [sym_bibtex_include] = STATE(1385), - [sym_graphics_include] = STATE(1385), - [sym_svg_include] = STATE(1385), - [sym_inkscape_include] = STATE(1385), - [sym_verbatim_include] = STATE(1385), - [sym_import_include] = STATE(1385), - [sym_caption] = STATE(1385), - [sym_citation] = STATE(1385), - [sym_label_definition] = STATE(1385), - [sym_label_reference] = STATE(1385), - [sym_label_reference_range] = STATE(1385), - [sym_label_number] = STATE(1385), - [sym_new_command_definition] = STATE(1385), - [sym_old_command_definition] = STATE(1385), - [sym_let_command_definition] = STATE(1385), - [sym_paired_delimiter_definition] = STATE(1385), - [sym_environment_definition] = STATE(1385), - [sym_glossary_entry_definition] = STATE(1385), - [sym_glossary_entry_reference] = STATE(1385), - [sym_acronym_definition] = STATE(1385), - [sym_acronym_reference] = STATE(1385), - [sym_theorem_definition] = STATE(1385), - [sym_color_definition] = STATE(1385), - [sym_color_set_definition] = STATE(1385), - [sym_color_reference] = STATE(1385), - [sym_tikz_library_import] = STATE(1385), - [aux_sym_text_repeat1] = STATE(285), - [sym_command_name] = ACTIONS(1174), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_BSLASHpart] = ACTIONS(3081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddpart] = ACTIONS(3081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(3079), - [anon_sym_BSLASHchapter] = ACTIONS(3081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddchap] = ACTIONS(3081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsection] = ACTIONS(3081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddsec] = ACTIONS(3081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubsection] = ACTIONS(3081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(3081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHparagraph] = ACTIONS(3081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(3081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(3079), - [anon_sym_BSLASHitem] = ACTIONS(3081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3079), - [sym_word] = ACTIONS(1182), - [sym_placeholder] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_STAR] = ACTIONS(1186), - [anon_sym_SLASH] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_PIPE] = ACTIONS(1188), - [anon_sym_COLON] = ACTIONS(1188), - [anon_sym_SQUOTE] = ACTIONS(1188), - [anon_sym__] = ACTIONS(1190), - [anon_sym_CARET] = ACTIONS(1192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3079), - [anon_sym_DOLLAR] = ACTIONS(3081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3079), - [anon_sym_BSLASH_RPAREN] = ACTIONS(3079), - [anon_sym_BSLASHbegin] = ACTIONS(3081), - [anon_sym_BSLASHtitle] = ACTIONS(1202), - [anon_sym_BSLASHauthor] = ACTIONS(1204), - [anon_sym_BSLASHusepackage] = ACTIONS(1206), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1206), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1208), - [anon_sym_BSLASHinclude] = ACTIONS(1210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1210), - [anon_sym_BSLASHinput] = ACTIONS(1210), - [anon_sym_BSLASHsubfile] = ACTIONS(1210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1212), - [anon_sym_BSLASHbibliography] = ACTIONS(1214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1216), - [anon_sym_BSLASHincludesvg] = ACTIONS(1218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1222), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1222), - [anon_sym_BSLASHimport] = ACTIONS(1224), - [anon_sym_BSLASHsubimport] = ACTIONS(1224), - [anon_sym_BSLASHinputfrom] = ACTIONS(1224), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1224), - [anon_sym_BSLASHincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1224), - [anon_sym_BSLASHcaption] = ACTIONS(1226), - [anon_sym_BSLASHcite] = ACTIONS(1228), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCite] = ACTIONS(1228), - [anon_sym_BSLASHnocite] = ACTIONS(1228), - [anon_sym_BSLASHcitet] = ACTIONS(1228), - [anon_sym_BSLASHcitep] = ACTIONS(1228), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteauthor] = ACTIONS(1228), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1228), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitetitle] = ACTIONS(1228), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteyear] = ACTIONS(1228), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1230), - [anon_sym_BSLASHcitedate] = ACTIONS(1228), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1230), - [anon_sym_BSLASHciteurl] = ACTIONS(1228), - [anon_sym_BSLASHfullcite] = ACTIONS(1228), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1228), - [anon_sym_BSLASHcitealt] = ACTIONS(1228), - [anon_sym_BSLASHcitealp] = ACTIONS(1228), - [anon_sym_BSLASHcitetext] = ACTIONS(1228), - [anon_sym_BSLASHparencite] = ACTIONS(1228), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHParencite] = ACTIONS(1228), - [anon_sym_BSLASHfootcite] = ACTIONS(1228), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1228), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1228), - [anon_sym_BSLASHtextcite] = ACTIONS(1228), - [anon_sym_BSLASHTextcite] = ACTIONS(1228), - [anon_sym_BSLASHsmartcite] = ACTIONS(1228), - [anon_sym_BSLASHSmartcite] = ACTIONS(1228), - [anon_sym_BSLASHsupercite] = ACTIONS(1228), - [anon_sym_BSLASHautocite] = ACTIONS(1228), - [anon_sym_BSLASHAutocite] = ACTIONS(1228), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1230), - [anon_sym_BSLASHvolcite] = ACTIONS(1228), - [anon_sym_BSLASHVolcite] = ACTIONS(1228), - [anon_sym_BSLASHpvolcite] = ACTIONS(1228), - [anon_sym_BSLASHPvolcite] = ACTIONS(1228), - [anon_sym_BSLASHfvolcite] = ACTIONS(1228), - [anon_sym_BSLASHftvolcite] = ACTIONS(1228), - [anon_sym_BSLASHsvolcite] = ACTIONS(1228), - [anon_sym_BSLASHSvolcite] = ACTIONS(1228), - [anon_sym_BSLASHtvolcite] = ACTIONS(1228), - [anon_sym_BSLASHTvolcite] = ACTIONS(1228), - [anon_sym_BSLASHavolcite] = ACTIONS(1228), - [anon_sym_BSLASHAvolcite] = ACTIONS(1228), - [anon_sym_BSLASHnotecite] = ACTIONS(1228), - [anon_sym_BSLASHNotecite] = ACTIONS(1228), - [anon_sym_BSLASHpnotecite] = ACTIONS(1228), - [anon_sym_BSLASHPnotecite] = ACTIONS(1228), - [anon_sym_BSLASHfnotecite] = ACTIONS(1228), - [anon_sym_BSLASHlabel] = ACTIONS(1232), - [anon_sym_BSLASHref] = ACTIONS(1234), - [anon_sym_BSLASHeqref] = ACTIONS(1234), - [anon_sym_BSLASHvref] = ACTIONS(1234), - [anon_sym_BSLASHVref] = ACTIONS(1234), - [anon_sym_BSLASHautoref] = ACTIONS(1234), - [anon_sym_BSLASHpageref] = ACTIONS(1234), - [anon_sym_BSLASHcref] = ACTIONS(1234), - [anon_sym_BSLASHCref] = ACTIONS(1234), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1236), - [anon_sym_BSLASHnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnameCref] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1234), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1234), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1234), - [anon_sym_BSLASHlabelcref] = ACTIONS(1234), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1234), - [anon_sym_BSLASHcrefrange] = ACTIONS(1238), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHCrefrange] = ACTIONS(1238), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1240), - [anon_sym_BSLASHnewlabel] = ACTIONS(1242), - [anon_sym_BSLASHnewcommand] = ACTIONS(1244), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1244), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1246), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1244), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1246), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(1244), - [anon_sym_BSLASHdef] = ACTIONS(1248), - [anon_sym_BSLASHlet] = ACTIONS(1250), - [anon_sym_BSLASHleft] = ACTIONS(3081), - [anon_sym_BSLASHbig] = ACTIONS(3081), - [anon_sym_BSLASHBig] = ACTIONS(3081), - [anon_sym_BSLASHbigg] = ACTIONS(3081), - [anon_sym_BSLASHBigg] = ACTIONS(3081), - [anon_sym_BSLASHbigl] = ACTIONS(3081), - [anon_sym_BSLASHBigl] = ACTIONS(3081), - [anon_sym_BSLASHbiggl] = ACTIONS(3081), - [anon_sym_BSLASHBiggl] = ACTIONS(3081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(1254), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(1254), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(1256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(1256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1258), - [anon_sym_BSLASHgls] = ACTIONS(1260), - [anon_sym_BSLASHGls] = ACTIONS(1260), - [anon_sym_BSLASHGLS] = ACTIONS(1260), - [anon_sym_BSLASHglspl] = ACTIONS(1260), - [anon_sym_BSLASHGlspl] = ACTIONS(1260), - [anon_sym_BSLASHGLSpl] = ACTIONS(1260), - [anon_sym_BSLASHglsdisp] = ACTIONS(1260), - [anon_sym_BSLASHglslink] = ACTIONS(1260), - [anon_sym_BSLASHglstext] = ACTIONS(1260), - [anon_sym_BSLASHGlstext] = ACTIONS(1260), - [anon_sym_BSLASHGLStext] = ACTIONS(1260), - [anon_sym_BSLASHglsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1260), - [anon_sym_BSLASHglsplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSplural] = ACTIONS(1260), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1260), - [anon_sym_BSLASHglsname] = ACTIONS(1260), - [anon_sym_BSLASHGlsname] = ACTIONS(1260), - [anon_sym_BSLASHGLSname] = ACTIONS(1260), - [anon_sym_BSLASHglssymbol] = ACTIONS(1260), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1260), - [anon_sym_BSLASHglsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1260), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1260), - [anon_sym_BSLASHglsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1260), - [anon_sym_BSLASHglsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1260), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1260), - [anon_sym_BSLASHglsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1260), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1260), - [anon_sym_BSLASHglsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1260), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1260), - [anon_sym_BSLASHnewacronym] = ACTIONS(1262), - [anon_sym_BSLASHacrshort] = ACTIONS(1264), - [anon_sym_BSLASHAcrshort] = ACTIONS(1264), - [anon_sym_BSLASHACRshort] = ACTIONS(1264), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1264), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1264), - [anon_sym_BSLASHacrlong] = ACTIONS(1264), - [anon_sym_BSLASHAcrlong] = ACTIONS(1264), - [anon_sym_BSLASHACRlong] = ACTIONS(1264), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1264), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1264), - [anon_sym_BSLASHacrfull] = ACTIONS(1264), - [anon_sym_BSLASHAcrfull] = ACTIONS(1264), - [anon_sym_BSLASHACRfull] = ACTIONS(1264), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1264), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1264), - [anon_sym_BSLASHacs] = ACTIONS(1264), - [anon_sym_BSLASHAcs] = ACTIONS(1264), - [anon_sym_BSLASHacsp] = ACTIONS(1264), - [anon_sym_BSLASHAcsp] = ACTIONS(1264), - [anon_sym_BSLASHacl] = ACTIONS(1264), - [anon_sym_BSLASHAcl] = ACTIONS(1264), - [anon_sym_BSLASHaclp] = ACTIONS(1264), - [anon_sym_BSLASHAclp] = ACTIONS(1264), - [anon_sym_BSLASHacf] = ACTIONS(1264), - [anon_sym_BSLASHAcf] = ACTIONS(1264), - [anon_sym_BSLASHacfp] = ACTIONS(1264), - [anon_sym_BSLASHAcfp] = ACTIONS(1264), - [anon_sym_BSLASHac] = ACTIONS(1264), - [anon_sym_BSLASHAc] = ACTIONS(1264), - [anon_sym_BSLASHacp] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1264), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1264), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1264), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1264), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1266), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1266), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(1268), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1270), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1272), - [anon_sym_BSLASHcolor] = ACTIONS(1274), - [anon_sym_BSLASHcolorbox] = ACTIONS(1274), - [anon_sym_BSLASHtextcolor] = ACTIONS(1274), - [anon_sym_BSLASHpagecolor] = ACTIONS(1274), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1276), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1276), - [anon_sym_BSLASHtext] = ACTIONS(3081), - [anon_sym_BSLASHintertext] = ACTIONS(3081), - [anon_sym_shortintertext] = ACTIONS(3081), - }, - [289] = { - [sym_block_comment] = STATE(1204), - [sym_operator] = STATE(1204), - [sym_subscript] = STATE(1204), - [sym_superscript] = STATE(1204), - [sym__command] = STATE(1204), - [sym_generic_command] = STATE(1204), - [sym_title_declaration] = STATE(1204), - [sym_author_declaration] = STATE(1204), - [sym_package_include] = STATE(1204), - [sym_class_include] = STATE(1204), - [sym_latex_include] = STATE(1204), - [sym_biblatex_include] = STATE(1204), - [sym_bibtex_include] = STATE(1204), - [sym_graphics_include] = STATE(1204), - [sym_svg_include] = STATE(1204), - [sym_inkscape_include] = STATE(1204), - [sym_verbatim_include] = STATE(1204), - [sym_import_include] = STATE(1204), - [sym_caption] = STATE(1204), - [sym_citation] = STATE(1204), - [sym_label_definition] = STATE(1204), - [sym_label_reference] = STATE(1204), - [sym_label_reference_range] = STATE(1204), - [sym_label_number] = STATE(1204), - [sym_new_command_definition] = STATE(1204), - [sym_old_command_definition] = STATE(1204), - [sym_let_command_definition] = STATE(1204), - [sym_paired_delimiter_definition] = STATE(1204), - [sym_environment_definition] = STATE(1204), - [sym_glossary_entry_definition] = STATE(1204), - [sym_glossary_entry_reference] = STATE(1204), - [sym_acronym_definition] = STATE(1204), - [sym_acronym_reference] = STATE(1204), - [sym_theorem_definition] = STATE(1204), - [sym_color_definition] = STATE(1204), - [sym_color_set_definition] = STATE(1204), - [sym_color_reference] = STATE(1204), - [sym_tikz_library_import] = STATE(1204), - [aux_sym_text_repeat1] = STATE(287), - [sym_command_name] = ACTIONS(688), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(690), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_BSLASHpart] = ACTIONS(3081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddpart] = ACTIONS(3081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(3079), - [anon_sym_BSLASHchapter] = ACTIONS(3081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddchap] = ACTIONS(3081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsection] = ACTIONS(3081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHaddsec] = ACTIONS(3081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubsection] = ACTIONS(3081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(3081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(3079), - [anon_sym_BSLASHparagraph] = ACTIONS(3081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(3079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(3081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(3079), - [anon_sym_BSLASHitem] = ACTIONS(3081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3079), - [sym_word] = ACTIONS(728), - [sym_placeholder] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_LT] = ACTIONS(734), - [anon_sym_GT] = ACTIONS(734), - [anon_sym_BANG] = ACTIONS(734), - [anon_sym_PIPE] = ACTIONS(734), - [anon_sym_COLON] = ACTIONS(734), - [anon_sym_SQUOTE] = ACTIONS(734), - [anon_sym__] = ACTIONS(736), - [anon_sym_CARET] = ACTIONS(738), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3079), - [anon_sym_DOLLAR] = ACTIONS(3081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3079), - [anon_sym_BSLASHbegin] = ACTIONS(3081), - [anon_sym_BSLASHend] = ACTIONS(3081), - [anon_sym_BSLASHtitle] = ACTIONS(748), - [anon_sym_BSLASHauthor] = ACTIONS(750), - [anon_sym_BSLASHusepackage] = ACTIONS(752), - [anon_sym_BSLASHRequirePackage] = ACTIONS(752), - [anon_sym_BSLASHdocumentclass] = ACTIONS(754), - [anon_sym_BSLASHinclude] = ACTIONS(756), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(756), - [anon_sym_BSLASHinput] = ACTIONS(756), - [anon_sym_BSLASHsubfile] = ACTIONS(756), - [anon_sym_BSLASHaddbibresource] = ACTIONS(758), - [anon_sym_BSLASHbibliography] = ACTIONS(760), - [anon_sym_BSLASHincludegraphics] = ACTIONS(762), - [anon_sym_BSLASHincludesvg] = ACTIONS(764), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(766), - [anon_sym_BSLASHverbatiminput] = ACTIONS(768), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(768), - [anon_sym_BSLASHimport] = ACTIONS(770), - [anon_sym_BSLASHsubimport] = ACTIONS(770), - [anon_sym_BSLASHinputfrom] = ACTIONS(770), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(770), - [anon_sym_BSLASHincludefrom] = ACTIONS(770), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(770), - [anon_sym_BSLASHcaption] = ACTIONS(772), - [anon_sym_BSLASHcite] = ACTIONS(774), - [anon_sym_BSLASHcite_STAR] = ACTIONS(776), - [anon_sym_BSLASHCite] = ACTIONS(774), - [anon_sym_BSLASHnocite] = ACTIONS(774), - [anon_sym_BSLASHcitet] = ACTIONS(774), - [anon_sym_BSLASHcitep] = ACTIONS(774), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteauthor] = ACTIONS(774), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHCiteauthor] = ACTIONS(774), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitetitle] = ACTIONS(774), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteyear] = ACTIONS(774), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(776), - [anon_sym_BSLASHcitedate] = ACTIONS(774), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(776), - [anon_sym_BSLASHciteurl] = ACTIONS(774), - [anon_sym_BSLASHfullcite] = ACTIONS(774), - [anon_sym_BSLASHciteyearpar] = ACTIONS(774), - [anon_sym_BSLASHcitealt] = ACTIONS(774), - [anon_sym_BSLASHcitealp] = ACTIONS(774), - [anon_sym_BSLASHcitetext] = ACTIONS(774), - [anon_sym_BSLASHparencite] = ACTIONS(774), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(776), - [anon_sym_BSLASHParencite] = ACTIONS(774), - [anon_sym_BSLASHfootcite] = ACTIONS(774), - [anon_sym_BSLASHfootfullcite] = ACTIONS(774), - [anon_sym_BSLASHfootcitetext] = ACTIONS(774), - [anon_sym_BSLASHtextcite] = ACTIONS(774), - [anon_sym_BSLASHTextcite] = ACTIONS(774), - [anon_sym_BSLASHsmartcite] = ACTIONS(774), - [anon_sym_BSLASHSmartcite] = ACTIONS(774), - [anon_sym_BSLASHsupercite] = ACTIONS(774), - [anon_sym_BSLASHautocite] = ACTIONS(774), - [anon_sym_BSLASHAutocite] = ACTIONS(774), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(776), - [anon_sym_BSLASHvolcite] = ACTIONS(774), - [anon_sym_BSLASHVolcite] = ACTIONS(774), - [anon_sym_BSLASHpvolcite] = ACTIONS(774), - [anon_sym_BSLASHPvolcite] = ACTIONS(774), - [anon_sym_BSLASHfvolcite] = ACTIONS(774), - [anon_sym_BSLASHftvolcite] = ACTIONS(774), - [anon_sym_BSLASHsvolcite] = ACTIONS(774), - [anon_sym_BSLASHSvolcite] = ACTIONS(774), - [anon_sym_BSLASHtvolcite] = ACTIONS(774), - [anon_sym_BSLASHTvolcite] = ACTIONS(774), - [anon_sym_BSLASHavolcite] = ACTIONS(774), - [anon_sym_BSLASHAvolcite] = ACTIONS(774), - [anon_sym_BSLASHnotecite] = ACTIONS(774), - [anon_sym_BSLASHNotecite] = ACTIONS(774), - [anon_sym_BSLASHpnotecite] = ACTIONS(774), - [anon_sym_BSLASHPnotecite] = ACTIONS(774), - [anon_sym_BSLASHfnotecite] = ACTIONS(774), - [anon_sym_BSLASHlabel] = ACTIONS(778), - [anon_sym_BSLASHref] = ACTIONS(780), - [anon_sym_BSLASHeqref] = ACTIONS(780), - [anon_sym_BSLASHvref] = ACTIONS(780), - [anon_sym_BSLASHVref] = ACTIONS(780), - [anon_sym_BSLASHautoref] = ACTIONS(780), - [anon_sym_BSLASHpageref] = ACTIONS(780), - [anon_sym_BSLASHcref] = ACTIONS(780), - [anon_sym_BSLASHCref] = ACTIONS(780), - [anon_sym_BSLASHcref_STAR] = ACTIONS(782), - [anon_sym_BSLASHCref_STAR] = ACTIONS(782), - [anon_sym_BSLASHnamecref] = ACTIONS(780), - [anon_sym_BSLASHnameCref] = ACTIONS(780), - [anon_sym_BSLASHlcnamecref] = ACTIONS(780), - [anon_sym_BSLASHnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHnameCrefs] = ACTIONS(780), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(780), - [anon_sym_BSLASHlabelcref] = ACTIONS(780), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(780), - [anon_sym_BSLASHcrefrange] = ACTIONS(784), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHCrefrange] = ACTIONS(784), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(786), - [anon_sym_BSLASHnewlabel] = ACTIONS(788), - [anon_sym_BSLASHnewcommand] = ACTIONS(790), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHrenewcommand] = ACTIONS(790), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(792), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(790), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(792), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(790), - [anon_sym_BSLASHdef] = ACTIONS(794), - [anon_sym_BSLASHlet] = ACTIONS(796), - [anon_sym_BSLASHleft] = ACTIONS(3081), - [anon_sym_BSLASHbig] = ACTIONS(3081), - [anon_sym_BSLASHBig] = ACTIONS(3081), - [anon_sym_BSLASHbigg] = ACTIONS(3081), - [anon_sym_BSLASHBigg] = ACTIONS(3081), - [anon_sym_BSLASHbigl] = ACTIONS(3081), - [anon_sym_BSLASHBigl] = ACTIONS(3081), - [anon_sym_BSLASHbiggl] = ACTIONS(3081), - [anon_sym_BSLASHBiggl] = ACTIONS(3081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(800), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(800), - [anon_sym_BSLASHnewenvironment] = ACTIONS(802), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(802), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(802), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(804), - [anon_sym_BSLASHgls] = ACTIONS(806), - [anon_sym_BSLASHGls] = ACTIONS(806), - [anon_sym_BSLASHGLS] = ACTIONS(806), - [anon_sym_BSLASHglspl] = ACTIONS(806), - [anon_sym_BSLASHGlspl] = ACTIONS(806), - [anon_sym_BSLASHGLSpl] = ACTIONS(806), - [anon_sym_BSLASHglsdisp] = ACTIONS(806), - [anon_sym_BSLASHglslink] = ACTIONS(806), - [anon_sym_BSLASHglstext] = ACTIONS(806), - [anon_sym_BSLASHGlstext] = ACTIONS(806), - [anon_sym_BSLASHGLStext] = ACTIONS(806), - [anon_sym_BSLASHglsfirst] = ACTIONS(806), - [anon_sym_BSLASHGlsfirst] = ACTIONS(806), - [anon_sym_BSLASHGLSfirst] = ACTIONS(806), - [anon_sym_BSLASHglsplural] = ACTIONS(806), - [anon_sym_BSLASHGlsplural] = ACTIONS(806), - [anon_sym_BSLASHGLSplural] = ACTIONS(806), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(806), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(806), - [anon_sym_BSLASHglsname] = ACTIONS(806), - [anon_sym_BSLASHGlsname] = ACTIONS(806), - [anon_sym_BSLASHGLSname] = ACTIONS(806), - [anon_sym_BSLASHglssymbol] = ACTIONS(806), - [anon_sym_BSLASHGlssymbol] = ACTIONS(806), - [anon_sym_BSLASHglsdesc] = ACTIONS(806), - [anon_sym_BSLASHGlsdesc] = ACTIONS(806), - [anon_sym_BSLASHGLSdesc] = ACTIONS(806), - [anon_sym_BSLASHglsuseri] = ACTIONS(806), - [anon_sym_BSLASHGlsuseri] = ACTIONS(806), - [anon_sym_BSLASHGLSuseri] = ACTIONS(806), - [anon_sym_BSLASHglsuserii] = ACTIONS(806), - [anon_sym_BSLASHGlsuserii] = ACTIONS(806), - [anon_sym_BSLASHGLSuserii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(806), - [anon_sym_BSLASHglsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(806), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(806), - [anon_sym_BSLASHglsuserv] = ACTIONS(806), - [anon_sym_BSLASHGlsuserv] = ACTIONS(806), - [anon_sym_BSLASHGLSuserv] = ACTIONS(806), - [anon_sym_BSLASHglsuservi] = ACTIONS(806), - [anon_sym_BSLASHGlsuservi] = ACTIONS(806), - [anon_sym_BSLASHGLSuservi] = ACTIONS(806), - [anon_sym_BSLASHnewacronym] = ACTIONS(808), - [anon_sym_BSLASHacrshort] = ACTIONS(810), - [anon_sym_BSLASHAcrshort] = ACTIONS(810), - [anon_sym_BSLASHACRshort] = ACTIONS(810), - [anon_sym_BSLASHacrshortpl] = ACTIONS(810), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(810), - [anon_sym_BSLASHACRshortpl] = ACTIONS(810), - [anon_sym_BSLASHacrlong] = ACTIONS(810), - [anon_sym_BSLASHAcrlong] = ACTIONS(810), - [anon_sym_BSLASHACRlong] = ACTIONS(810), - [anon_sym_BSLASHacrlongpl] = ACTIONS(810), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(810), - [anon_sym_BSLASHACRlongpl] = ACTIONS(810), - [anon_sym_BSLASHacrfull] = ACTIONS(810), - [anon_sym_BSLASHAcrfull] = ACTIONS(810), - [anon_sym_BSLASHACRfull] = ACTIONS(810), - [anon_sym_BSLASHacrfullpl] = ACTIONS(810), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(810), - [anon_sym_BSLASHACRfullpl] = ACTIONS(810), - [anon_sym_BSLASHacs] = ACTIONS(810), - [anon_sym_BSLASHAcs] = ACTIONS(810), - [anon_sym_BSLASHacsp] = ACTIONS(810), - [anon_sym_BSLASHAcsp] = ACTIONS(810), - [anon_sym_BSLASHacl] = ACTIONS(810), - [anon_sym_BSLASHAcl] = ACTIONS(810), - [anon_sym_BSLASHaclp] = ACTIONS(810), - [anon_sym_BSLASHAclp] = ACTIONS(810), - [anon_sym_BSLASHacf] = ACTIONS(810), - [anon_sym_BSLASHAcf] = ACTIONS(810), - [anon_sym_BSLASHacfp] = ACTIONS(810), - [anon_sym_BSLASHAcfp] = ACTIONS(810), - [anon_sym_BSLASHac] = ACTIONS(810), - [anon_sym_BSLASHAc] = ACTIONS(810), - [anon_sym_BSLASHacp] = ACTIONS(810), - [anon_sym_BSLASHglsentrylong] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(810), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryshort] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(810), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(810), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(810), - [anon_sym_BSLASHnewtheorem] = ACTIONS(812), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(812), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(814), - [anon_sym_BSLASHdefinecolor] = ACTIONS(816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(818), - [anon_sym_BSLASHcolor] = ACTIONS(820), - [anon_sym_BSLASHcolorbox] = ACTIONS(820), - [anon_sym_BSLASHtextcolor] = ACTIONS(820), - [anon_sym_BSLASHpagecolor] = ACTIONS(820), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(822), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(822), - [anon_sym_BSLASHtext] = ACTIONS(3081), - [anon_sym_BSLASHintertext] = ACTIONS(3081), - [anon_sym_shortintertext] = ACTIONS(3081), - }, - [290] = { - [sym_block_comment] = STATE(1340), - [sym_operator] = STATE(1340), - [sym_subscript] = STATE(1340), - [sym_superscript] = STATE(1340), - [sym__command] = STATE(1340), - [sym_generic_command] = STATE(1340), - [sym_title_declaration] = STATE(1340), - [sym_author_declaration] = STATE(1340), - [sym_package_include] = STATE(1340), - [sym_class_include] = STATE(1340), - [sym_latex_include] = STATE(1340), - [sym_biblatex_include] = STATE(1340), - [sym_bibtex_include] = STATE(1340), - [sym_graphics_include] = STATE(1340), - [sym_svg_include] = STATE(1340), - [sym_inkscape_include] = STATE(1340), - [sym_verbatim_include] = STATE(1340), - [sym_import_include] = STATE(1340), - [sym_caption] = STATE(1340), - [sym_citation] = STATE(1340), - [sym_label_definition] = STATE(1340), - [sym_label_reference] = STATE(1340), - [sym_label_reference_range] = STATE(1340), - [sym_label_number] = STATE(1340), - [sym_new_command_definition] = STATE(1340), - [sym_old_command_definition] = STATE(1340), - [sym_let_command_definition] = STATE(1340), - [sym_paired_delimiter_definition] = STATE(1340), - [sym_environment_definition] = STATE(1340), - [sym_glossary_entry_definition] = STATE(1340), - [sym_glossary_entry_reference] = STATE(1340), - [sym_acronym_definition] = STATE(1340), - [sym_acronym_reference] = STATE(1340), - [sym_theorem_definition] = STATE(1340), - [sym_color_definition] = STATE(1340), - [sym_color_set_definition] = STATE(1340), - [sym_color_reference] = STATE(1340), - [sym_tikz_library_import] = STATE(1340), - [aux_sym_text_repeat1] = STATE(290), - [sym_command_name] = ACTIONS(4203), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4206), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_BSLASHpart] = ACTIONS(3091), - [anon_sym_BSLASHpart_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddpart] = ACTIONS(3091), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(3089), - [anon_sym_BSLASHchapter] = ACTIONS(3091), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddchap] = ACTIONS(3091), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsection] = ACTIONS(3091), - [anon_sym_BSLASHsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHaddsec] = ACTIONS(3091), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubsection] = ACTIONS(3091), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubsubsection] = ACTIONS(3091), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(3089), - [anon_sym_BSLASHparagraph] = ACTIONS(3091), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(3089), - [anon_sym_BSLASHsubparagraph] = ACTIONS(3091), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(3089), - [anon_sym_BSLASHitem] = ACTIONS(3091), - [anon_sym_BSLASHitem_STAR] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [sym_word] = ACTIONS(4209), - [sym_placeholder] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4215), - [anon_sym_DASH] = ACTIONS(4215), - [anon_sym_STAR] = ACTIONS(4215), - [anon_sym_SLASH] = ACTIONS(4215), - [anon_sym_LT] = ACTIONS(4218), - [anon_sym_GT] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4218), - [anon_sym_PIPE] = ACTIONS(4218), - [anon_sym_COLON] = ACTIONS(4218), - [anon_sym_SQUOTE] = ACTIONS(4218), - [anon_sym__] = ACTIONS(4221), - [anon_sym_CARET] = ACTIONS(4224), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3089), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3089), - [anon_sym_BSLASH_RBRACK] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3089), - [anon_sym_BSLASHbegin] = ACTIONS(3091), - [anon_sym_BSLASHtitle] = ACTIONS(4227), - [anon_sym_BSLASHauthor] = ACTIONS(4230), - [anon_sym_BSLASHusepackage] = ACTIONS(4233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4236), - [anon_sym_BSLASHinclude] = ACTIONS(4239), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4239), - [anon_sym_BSLASHinput] = ACTIONS(4239), - [anon_sym_BSLASHsubfile] = ACTIONS(4239), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4242), - [anon_sym_BSLASHbibliography] = ACTIONS(4245), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4248), - [anon_sym_BSLASHincludesvg] = ACTIONS(4251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4254), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4257), - [anon_sym_BSLASHimport] = ACTIONS(4260), - [anon_sym_BSLASHsubimport] = ACTIONS(4260), - [anon_sym_BSLASHinputfrom] = ACTIONS(4260), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4260), - [anon_sym_BSLASHincludefrom] = ACTIONS(4260), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4260), - [anon_sym_BSLASHcaption] = ACTIONS(4263), - [anon_sym_BSLASHcite] = ACTIONS(4266), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4269), - [anon_sym_BSLASHCite] = ACTIONS(4266), - [anon_sym_BSLASHnocite] = ACTIONS(4266), - [anon_sym_BSLASHcitet] = ACTIONS(4266), - [anon_sym_BSLASHcitep] = ACTIONS(4266), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4269), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4269), - [anon_sym_BSLASHciteauthor] = ACTIONS(4266), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4269), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4266), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4269), - [anon_sym_BSLASHcitetitle] = ACTIONS(4266), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4269), - [anon_sym_BSLASHciteyear] = ACTIONS(4266), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4269), - [anon_sym_BSLASHcitedate] = ACTIONS(4266), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4269), - [anon_sym_BSLASHciteurl] = ACTIONS(4266), - [anon_sym_BSLASHfullcite] = ACTIONS(4266), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4266), - [anon_sym_BSLASHcitealt] = ACTIONS(4266), - [anon_sym_BSLASHcitealp] = ACTIONS(4266), - [anon_sym_BSLASHcitetext] = ACTIONS(4266), - [anon_sym_BSLASHparencite] = ACTIONS(4266), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4269), - [anon_sym_BSLASHParencite] = ACTIONS(4266), - [anon_sym_BSLASHfootcite] = ACTIONS(4266), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4266), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4266), - [anon_sym_BSLASHtextcite] = ACTIONS(4266), - [anon_sym_BSLASHTextcite] = ACTIONS(4266), - [anon_sym_BSLASHsmartcite] = ACTIONS(4266), - [anon_sym_BSLASHSmartcite] = ACTIONS(4266), - [anon_sym_BSLASHsupercite] = ACTIONS(4266), - [anon_sym_BSLASHautocite] = ACTIONS(4266), - [anon_sym_BSLASHAutocite] = ACTIONS(4266), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4269), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4269), - [anon_sym_BSLASHvolcite] = ACTIONS(4266), - [anon_sym_BSLASHVolcite] = ACTIONS(4266), - [anon_sym_BSLASHpvolcite] = ACTIONS(4266), - [anon_sym_BSLASHPvolcite] = ACTIONS(4266), - [anon_sym_BSLASHfvolcite] = ACTIONS(4266), - [anon_sym_BSLASHftvolcite] = ACTIONS(4266), - [anon_sym_BSLASHsvolcite] = ACTIONS(4266), - [anon_sym_BSLASHSvolcite] = ACTIONS(4266), - [anon_sym_BSLASHtvolcite] = ACTIONS(4266), - [anon_sym_BSLASHTvolcite] = ACTIONS(4266), - [anon_sym_BSLASHavolcite] = ACTIONS(4266), - [anon_sym_BSLASHAvolcite] = ACTIONS(4266), - [anon_sym_BSLASHnotecite] = ACTIONS(4266), - [anon_sym_BSLASHNotecite] = ACTIONS(4266), - [anon_sym_BSLASHpnotecite] = ACTIONS(4266), - [anon_sym_BSLASHPnotecite] = ACTIONS(4266), - [anon_sym_BSLASHfnotecite] = ACTIONS(4266), - [anon_sym_BSLASHlabel] = ACTIONS(4272), - [anon_sym_BSLASHref] = ACTIONS(4275), - [anon_sym_BSLASHeqref] = ACTIONS(4275), - [anon_sym_BSLASHvref] = ACTIONS(4275), - [anon_sym_BSLASHVref] = ACTIONS(4275), - [anon_sym_BSLASHautoref] = ACTIONS(4275), - [anon_sym_BSLASHpageref] = ACTIONS(4275), - [anon_sym_BSLASHcref] = ACTIONS(4275), - [anon_sym_BSLASHCref] = ACTIONS(4275), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4278), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4278), - [anon_sym_BSLASHnamecref] = ACTIONS(4275), - [anon_sym_BSLASHnameCref] = ACTIONS(4275), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4275), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4275), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4275), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4275), - [anon_sym_BSLASHlabelcref] = ACTIONS(4275), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4275), - [anon_sym_BSLASHcrefrange] = ACTIONS(4281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4284), - [anon_sym_BSLASHCrefrange] = ACTIONS(4281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4284), - [anon_sym_BSLASHnewlabel] = ACTIONS(4287), - [anon_sym_BSLASHnewcommand] = ACTIONS(4290), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4293), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4290), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4293), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4290), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4293), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4290), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4293), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4290), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4290), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4290), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4290), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4290), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4290), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4290), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4290), - [anon_sym_BSLASHdef] = ACTIONS(4296), - [anon_sym_BSLASHlet] = ACTIONS(4299), - [anon_sym_BSLASHleft] = ACTIONS(3091), - [anon_sym_BSLASHbig] = ACTIONS(3091), - [anon_sym_BSLASHBig] = ACTIONS(3091), - [anon_sym_BSLASHbigg] = ACTIONS(3091), - [anon_sym_BSLASHBigg] = ACTIONS(3091), - [anon_sym_BSLASHbigl] = ACTIONS(3091), - [anon_sym_BSLASHBigl] = ACTIONS(3091), - [anon_sym_BSLASHbiggl] = ACTIONS(3091), - [anon_sym_BSLASHBiggl] = ACTIONS(3091), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4305), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4305), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4305), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4305), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4305), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4308), - [anon_sym_BSLASHgls] = ACTIONS(4311), - [anon_sym_BSLASHGls] = ACTIONS(4311), - [anon_sym_BSLASHGLS] = ACTIONS(4311), - [anon_sym_BSLASHglspl] = ACTIONS(4311), - [anon_sym_BSLASHGlspl] = ACTIONS(4311), - [anon_sym_BSLASHGLSpl] = ACTIONS(4311), - [anon_sym_BSLASHglsdisp] = ACTIONS(4311), - [anon_sym_BSLASHglslink] = ACTIONS(4311), - [anon_sym_BSLASHglstext] = ACTIONS(4311), - [anon_sym_BSLASHGlstext] = ACTIONS(4311), - [anon_sym_BSLASHGLStext] = ACTIONS(4311), - [anon_sym_BSLASHglsfirst] = ACTIONS(4311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4311), - [anon_sym_BSLASHglsplural] = ACTIONS(4311), - [anon_sym_BSLASHGlsplural] = ACTIONS(4311), - [anon_sym_BSLASHGLSplural] = ACTIONS(4311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4311), - [anon_sym_BSLASHglsname] = ACTIONS(4311), - [anon_sym_BSLASHGlsname] = ACTIONS(4311), - [anon_sym_BSLASHGLSname] = ACTIONS(4311), - [anon_sym_BSLASHglssymbol] = ACTIONS(4311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4311), - [anon_sym_BSLASHglsdesc] = ACTIONS(4311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4311), - [anon_sym_BSLASHglsuseri] = ACTIONS(4311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4311), - [anon_sym_BSLASHglsuserii] = ACTIONS(4311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4311), - [anon_sym_BSLASHglsuserv] = ACTIONS(4311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4311), - [anon_sym_BSLASHglsuservi] = ACTIONS(4311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4311), - [anon_sym_BSLASHnewacronym] = ACTIONS(4314), - [anon_sym_BSLASHacrshort] = ACTIONS(4317), - [anon_sym_BSLASHAcrshort] = ACTIONS(4317), - [anon_sym_BSLASHACRshort] = ACTIONS(4317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4317), - [anon_sym_BSLASHacrlong] = ACTIONS(4317), - [anon_sym_BSLASHAcrlong] = ACTIONS(4317), - [anon_sym_BSLASHACRlong] = ACTIONS(4317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4317), - [anon_sym_BSLASHacrfull] = ACTIONS(4317), - [anon_sym_BSLASHAcrfull] = ACTIONS(4317), - [anon_sym_BSLASHACRfull] = ACTIONS(4317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4317), - [anon_sym_BSLASHacs] = ACTIONS(4317), - [anon_sym_BSLASHAcs] = ACTIONS(4317), - [anon_sym_BSLASHacsp] = ACTIONS(4317), - [anon_sym_BSLASHAcsp] = ACTIONS(4317), - [anon_sym_BSLASHacl] = ACTIONS(4317), - [anon_sym_BSLASHAcl] = ACTIONS(4317), - [anon_sym_BSLASHaclp] = ACTIONS(4317), - [anon_sym_BSLASHAclp] = ACTIONS(4317), - [anon_sym_BSLASHacf] = ACTIONS(4317), - [anon_sym_BSLASHAcf] = ACTIONS(4317), - [anon_sym_BSLASHacfp] = ACTIONS(4317), - [anon_sym_BSLASHAcfp] = ACTIONS(4317), - [anon_sym_BSLASHac] = ACTIONS(4317), - [anon_sym_BSLASHAc] = ACTIONS(4317), - [anon_sym_BSLASHacp] = ACTIONS(4317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4320), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4323), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4320), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4323), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4326), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4329), - [anon_sym_BSLASHcolor] = ACTIONS(4332), - [anon_sym_BSLASHcolorbox] = ACTIONS(4332), - [anon_sym_BSLASHtextcolor] = ACTIONS(4332), - [anon_sym_BSLASHpagecolor] = ACTIONS(4332), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4335), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4335), - [anon_sym_BSLASHtext] = ACTIONS(3091), - [anon_sym_BSLASHintertext] = ACTIONS(3091), - [anon_sym_shortintertext] = ACTIONS(3091), - }, - [291] = { - [sym_block_comment] = STATE(297), - [sym__text_content] = STATE(297), - [sym_curly_group] = STATE(297), - [sym_text] = STATE(297), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(297), - [sym_inline_formula] = STATE(297), - [sym__command] = STATE(297), - [sym_generic_command] = STATE(297), - [sym_title_declaration] = STATE(297), - [sym_author_declaration] = STATE(297), - [sym_package_include] = STATE(297), - [sym_class_include] = STATE(297), - [sym_latex_include] = STATE(297), - [sym_biblatex_include] = STATE(297), - [sym_bibtex_include] = STATE(297), - [sym_graphics_include] = STATE(297), - [sym_svg_include] = STATE(297), - [sym_inkscape_include] = STATE(297), - [sym_verbatim_include] = STATE(297), - [sym_import_include] = STATE(297), - [sym_caption] = STATE(297), - [sym_citation] = STATE(297), - [sym_label_definition] = STATE(297), - [sym_label_reference] = STATE(297), - [sym_label_reference_range] = STATE(297), - [sym_label_number] = STATE(297), - [sym_new_command_definition] = STATE(297), - [sym_old_command_definition] = STATE(297), - [sym_let_command_definition] = STATE(297), - [sym_math_delimiter] = STATE(297), - [sym_paired_delimiter_definition] = STATE(297), - [sym_environment_definition] = STATE(297), - [sym_glossary_entry_definition] = STATE(297), - [sym_glossary_entry_reference] = STATE(297), - [sym_acronym_definition] = STATE(297), - [sym_acronym_reference] = STATE(297), - [sym_theorem_definition] = STATE(297), - [sym_color_definition] = STATE(297), - [sym_color_set_definition] = STATE(297), - [sym_color_reference] = STATE(297), - [sym_tikz_library_import] = STATE(297), - [sym_text_mode] = STATE(297), - [aux_sym_curly_group_impl_repeat1] = STATE(297), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4346), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [292] = { - [sym_block_comment] = STATE(295), - [sym__text_content] = STATE(295), - [sym_curly_group] = STATE(295), - [sym_text] = STATE(295), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(295), - [sym_inline_formula] = STATE(295), - [sym__command] = STATE(295), - [sym_generic_command] = STATE(295), - [sym_title_declaration] = STATE(295), - [sym_author_declaration] = STATE(295), - [sym_package_include] = STATE(295), - [sym_class_include] = STATE(295), - [sym_latex_include] = STATE(295), - [sym_biblatex_include] = STATE(295), - [sym_bibtex_include] = STATE(295), - [sym_graphics_include] = STATE(295), - [sym_svg_include] = STATE(295), - [sym_inkscape_include] = STATE(295), - [sym_verbatim_include] = STATE(295), - [sym_import_include] = STATE(295), - [sym_caption] = STATE(295), - [sym_citation] = STATE(295), - [sym_label_definition] = STATE(295), - [sym_label_reference] = STATE(295), - [sym_label_reference_range] = STATE(295), - [sym_label_number] = STATE(295), - [sym_new_command_definition] = STATE(295), - [sym_old_command_definition] = STATE(295), - [sym_let_command_definition] = STATE(295), - [sym_math_delimiter] = STATE(295), - [sym_paired_delimiter_definition] = STATE(295), - [sym_environment_definition] = STATE(295), - [sym_glossary_entry_definition] = STATE(295), - [sym_glossary_entry_reference] = STATE(295), - [sym_acronym_definition] = STATE(295), - [sym_acronym_reference] = STATE(295), - [sym_theorem_definition] = STATE(295), - [sym_color_definition] = STATE(295), - [sym_color_set_definition] = STATE(295), - [sym_color_reference] = STATE(295), - [sym_tikz_library_import] = STATE(295), - [sym_text_mode] = STATE(295), - [aux_sym_curly_group_impl_repeat1] = STATE(295), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_EQ] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_RPAREN] = ACTIONS(4444), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4446), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [293] = { - [sym_block_comment] = STATE(291), - [sym__text_content] = STATE(291), - [sym_curly_group] = STATE(291), - [sym_text] = STATE(291), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(291), - [sym_inline_formula] = STATE(291), - [sym__command] = STATE(291), - [sym_generic_command] = STATE(291), - [sym_title_declaration] = STATE(291), - [sym_author_declaration] = STATE(291), - [sym_package_include] = STATE(291), - [sym_class_include] = STATE(291), - [sym_latex_include] = STATE(291), - [sym_biblatex_include] = STATE(291), - [sym_bibtex_include] = STATE(291), - [sym_graphics_include] = STATE(291), - [sym_svg_include] = STATE(291), - [sym_inkscape_include] = STATE(291), - [sym_verbatim_include] = STATE(291), - [sym_import_include] = STATE(291), - [sym_caption] = STATE(291), - [sym_citation] = STATE(291), - [sym_label_definition] = STATE(291), - [sym_label_reference] = STATE(291), - [sym_label_reference_range] = STATE(291), - [sym_label_number] = STATE(291), - [sym_new_command_definition] = STATE(291), - [sym_old_command_definition] = STATE(291), - [sym_let_command_definition] = STATE(291), - [sym_math_delimiter] = STATE(291), - [sym_paired_delimiter_definition] = STATE(291), - [sym_environment_definition] = STATE(291), - [sym_glossary_entry_definition] = STATE(291), - [sym_glossary_entry_reference] = STATE(291), - [sym_acronym_definition] = STATE(291), - [sym_acronym_reference] = STATE(291), - [sym_theorem_definition] = STATE(291), - [sym_color_definition] = STATE(291), - [sym_color_set_definition] = STATE(291), - [sym_color_reference] = STATE(291), - [sym_tikz_library_import] = STATE(291), - [sym_text_mode] = STATE(291), - [aux_sym_curly_group_impl_repeat1] = STATE(291), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4448), - [anon_sym_RBRACK] = ACTIONS(4448), - [anon_sym_COMMA] = ACTIONS(4448), - [anon_sym_EQ] = ACTIONS(4448), - [anon_sym_LPAREN] = ACTIONS(4448), - [anon_sym_RPAREN] = ACTIONS(4448), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4450), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [294] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3218), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__comment_environment_name] = STATE(3219), - [sym__verbatim_environment_name] = STATE(3220), - [sym__listing_environment_name] = STATE(3224), - [sym__minted_environment_name] = STATE(3233), - [sym__pycode_environment_name] = STATE(3234), - [sym__math_environment_name] = STATE(3207), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_comment] = ACTIONS(4468), - [anon_sym_verbatim] = ACTIONS(4470), - [anon_sym_lstlisting] = ACTIONS(4472), - [anon_sym_minted] = ACTIONS(4474), - [anon_sym_pycode] = ACTIONS(4476), - [anon_sym_displaymath] = ACTIONS(4478), - [anon_sym_displaymath_STAR] = ACTIONS(4480), - [anon_sym_equation] = ACTIONS(4478), - [anon_sym_equation_STAR] = ACTIONS(4480), - [anon_sym_multline] = ACTIONS(4478), - [anon_sym_multline_STAR] = ACTIONS(4480), - [anon_sym_eqnarray] = ACTIONS(4478), - [anon_sym_eqnarray_STAR] = ACTIONS(4480), - [anon_sym_align] = ACTIONS(4478), - [anon_sym_align_STAR] = ACTIONS(4480), - [anon_sym_array] = ACTIONS(4478), - [anon_sym_array_STAR] = ACTIONS(4480), - [anon_sym_split] = ACTIONS(4478), - [anon_sym_split_STAR] = ACTIONS(4480), - [anon_sym_alignat] = ACTIONS(4478), - [anon_sym_alignat_STAR] = ACTIONS(4480), - [anon_sym_gather] = ACTIONS(4478), - [anon_sym_gather_STAR] = ACTIONS(4480), - [anon_sym_flalign] = ACTIONS(4478), - [anon_sym_flalign_STAR] = ACTIONS(4480), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [295] = { - [sym_block_comment] = STATE(297), - [sym__text_content] = STATE(297), - [sym_curly_group] = STATE(297), - [sym_text] = STATE(297), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(297), - [sym_inline_formula] = STATE(297), - [sym__command] = STATE(297), - [sym_generic_command] = STATE(297), - [sym_title_declaration] = STATE(297), - [sym_author_declaration] = STATE(297), - [sym_package_include] = STATE(297), - [sym_class_include] = STATE(297), - [sym_latex_include] = STATE(297), - [sym_biblatex_include] = STATE(297), - [sym_bibtex_include] = STATE(297), - [sym_graphics_include] = STATE(297), - [sym_svg_include] = STATE(297), - [sym_inkscape_include] = STATE(297), - [sym_verbatim_include] = STATE(297), - [sym_import_include] = STATE(297), - [sym_caption] = STATE(297), - [sym_citation] = STATE(297), - [sym_label_definition] = STATE(297), - [sym_label_reference] = STATE(297), - [sym_label_reference_range] = STATE(297), - [sym_label_number] = STATE(297), - [sym_new_command_definition] = STATE(297), - [sym_old_command_definition] = STATE(297), - [sym_let_command_definition] = STATE(297), - [sym_math_delimiter] = STATE(297), - [sym_paired_delimiter_definition] = STATE(297), - [sym_environment_definition] = STATE(297), - [sym_glossary_entry_definition] = STATE(297), - [sym_glossary_entry_reference] = STATE(297), - [sym_acronym_definition] = STATE(297), - [sym_acronym_reference] = STATE(297), - [sym_theorem_definition] = STATE(297), - [sym_color_definition] = STATE(297), - [sym_color_set_definition] = STATE(297), - [sym_color_reference] = STATE(297), - [sym_tikz_library_import] = STATE(297), - [sym_text_mode] = STATE(297), - [aux_sym_curly_group_impl_repeat1] = STATE(297), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4556), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [296] = { - [sym_block_comment] = STATE(297), - [sym__text_content] = STATE(297), - [sym_curly_group] = STATE(297), - [sym_text] = STATE(297), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(297), - [sym_inline_formula] = STATE(297), - [sym__command] = STATE(297), - [sym_generic_command] = STATE(297), - [sym_title_declaration] = STATE(297), - [sym_author_declaration] = STATE(297), - [sym_package_include] = STATE(297), - [sym_class_include] = STATE(297), - [sym_latex_include] = STATE(297), - [sym_biblatex_include] = STATE(297), - [sym_bibtex_include] = STATE(297), - [sym_graphics_include] = STATE(297), - [sym_svg_include] = STATE(297), - [sym_inkscape_include] = STATE(297), - [sym_verbatim_include] = STATE(297), - [sym_import_include] = STATE(297), - [sym_caption] = STATE(297), - [sym_citation] = STATE(297), - [sym_label_definition] = STATE(297), - [sym_label_reference] = STATE(297), - [sym_label_reference_range] = STATE(297), - [sym_label_number] = STATE(297), - [sym_new_command_definition] = STATE(297), - [sym_old_command_definition] = STATE(297), - [sym_let_command_definition] = STATE(297), - [sym_math_delimiter] = STATE(297), - [sym_paired_delimiter_definition] = STATE(297), - [sym_environment_definition] = STATE(297), - [sym_glossary_entry_definition] = STATE(297), - [sym_glossary_entry_reference] = STATE(297), - [sym_acronym_definition] = STATE(297), - [sym_acronym_reference] = STATE(297), - [sym_theorem_definition] = STATE(297), - [sym_color_definition] = STATE(297), - [sym_color_set_definition] = STATE(297), - [sym_color_reference] = STATE(297), - [sym_tikz_library_import] = STATE(297), - [sym_text_mode] = STATE(297), - [aux_sym_curly_group_impl_repeat1] = STATE(297), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4558), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [297] = { - [sym_block_comment] = STATE(297), - [sym__text_content] = STATE(297), - [sym_curly_group] = STATE(297), - [sym_text] = STATE(297), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(297), - [sym_inline_formula] = STATE(297), - [sym__command] = STATE(297), - [sym_generic_command] = STATE(297), - [sym_title_declaration] = STATE(297), - [sym_author_declaration] = STATE(297), - [sym_package_include] = STATE(297), - [sym_class_include] = STATE(297), - [sym_latex_include] = STATE(297), - [sym_biblatex_include] = STATE(297), - [sym_bibtex_include] = STATE(297), - [sym_graphics_include] = STATE(297), - [sym_svg_include] = STATE(297), - [sym_inkscape_include] = STATE(297), - [sym_verbatim_include] = STATE(297), - [sym_import_include] = STATE(297), - [sym_caption] = STATE(297), - [sym_citation] = STATE(297), - [sym_label_definition] = STATE(297), - [sym_label_reference] = STATE(297), - [sym_label_reference_range] = STATE(297), - [sym_label_number] = STATE(297), - [sym_new_command_definition] = STATE(297), - [sym_old_command_definition] = STATE(297), - [sym_let_command_definition] = STATE(297), - [sym_math_delimiter] = STATE(297), - [sym_paired_delimiter_definition] = STATE(297), - [sym_environment_definition] = STATE(297), - [sym_glossary_entry_definition] = STATE(297), - [sym_glossary_entry_reference] = STATE(297), - [sym_acronym_definition] = STATE(297), - [sym_acronym_reference] = STATE(297), - [sym_theorem_definition] = STATE(297), - [sym_color_definition] = STATE(297), - [sym_color_set_definition] = STATE(297), - [sym_color_reference] = STATE(297), - [sym_tikz_library_import] = STATE(297), - [sym_text_mode] = STATE(297), - [aux_sym_curly_group_impl_repeat1] = STATE(297), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4560), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4566), - [anon_sym_RBRACK] = ACTIONS(4566), - [anon_sym_COMMA] = ACTIONS(4566), - [anon_sym_EQ] = ACTIONS(4566), - [anon_sym_LPAREN] = ACTIONS(4566), - [anon_sym_RPAREN] = ACTIONS(4566), - [anon_sym_LBRACE] = ACTIONS(4569), - [anon_sym_RBRACE] = ACTIONS(4572), - [sym_word] = ACTIONS(4574), - [sym_placeholder] = ACTIONS(4577), - [anon_sym_PLUS] = ACTIONS(4580), - [anon_sym_DASH] = ACTIONS(4580), - [anon_sym_STAR] = ACTIONS(4580), - [anon_sym_SLASH] = ACTIONS(4580), - [anon_sym_LT] = ACTIONS(4583), - [anon_sym_GT] = ACTIONS(4583), - [anon_sym_BANG] = ACTIONS(4583), - [anon_sym_PIPE] = ACTIONS(4583), - [anon_sym_COLON] = ACTIONS(4583), - [anon_sym_SQUOTE] = ACTIONS(4583), - [anon_sym__] = ACTIONS(4586), - [anon_sym_CARET] = ACTIONS(4589), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4592), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4592), - [anon_sym_DOLLAR] = ACTIONS(4595), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4598), - [anon_sym_BSLASHtitle] = ACTIONS(4601), - [anon_sym_BSLASHauthor] = ACTIONS(4604), - [anon_sym_BSLASHusepackage] = ACTIONS(4607), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4607), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4610), - [anon_sym_BSLASHinclude] = ACTIONS(4613), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4613), - [anon_sym_BSLASHinput] = ACTIONS(4613), - [anon_sym_BSLASHsubfile] = ACTIONS(4613), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4616), - [anon_sym_BSLASHbibliography] = ACTIONS(4619), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4622), - [anon_sym_BSLASHincludesvg] = ACTIONS(4625), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4628), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4631), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4631), - [anon_sym_BSLASHimport] = ACTIONS(4634), - [anon_sym_BSLASHsubimport] = ACTIONS(4634), - [anon_sym_BSLASHinputfrom] = ACTIONS(4634), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4634), - [anon_sym_BSLASHincludefrom] = ACTIONS(4634), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4634), - [anon_sym_BSLASHcaption] = ACTIONS(4637), - [anon_sym_BSLASHcite] = ACTIONS(4640), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4643), - [anon_sym_BSLASHCite] = ACTIONS(4640), - [anon_sym_BSLASHnocite] = ACTIONS(4640), - [anon_sym_BSLASHcitet] = ACTIONS(4640), - [anon_sym_BSLASHcitep] = ACTIONS(4640), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4643), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4643), - [anon_sym_BSLASHciteauthor] = ACTIONS(4640), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4643), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4640), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4643), - [anon_sym_BSLASHcitetitle] = ACTIONS(4640), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4643), - [anon_sym_BSLASHciteyear] = ACTIONS(4640), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4643), - [anon_sym_BSLASHcitedate] = ACTIONS(4640), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4643), - [anon_sym_BSLASHciteurl] = ACTIONS(4640), - [anon_sym_BSLASHfullcite] = ACTIONS(4640), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4640), - [anon_sym_BSLASHcitealt] = ACTIONS(4640), - [anon_sym_BSLASHcitealp] = ACTIONS(4640), - [anon_sym_BSLASHcitetext] = ACTIONS(4640), - [anon_sym_BSLASHparencite] = ACTIONS(4640), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4643), - [anon_sym_BSLASHParencite] = ACTIONS(4640), - [anon_sym_BSLASHfootcite] = ACTIONS(4640), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4640), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4640), - [anon_sym_BSLASHtextcite] = ACTIONS(4640), - [anon_sym_BSLASHTextcite] = ACTIONS(4640), - [anon_sym_BSLASHsmartcite] = ACTIONS(4640), - [anon_sym_BSLASHSmartcite] = ACTIONS(4640), - [anon_sym_BSLASHsupercite] = ACTIONS(4640), - [anon_sym_BSLASHautocite] = ACTIONS(4640), - [anon_sym_BSLASHAutocite] = ACTIONS(4640), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4643), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4643), - [anon_sym_BSLASHvolcite] = ACTIONS(4640), - [anon_sym_BSLASHVolcite] = ACTIONS(4640), - [anon_sym_BSLASHpvolcite] = ACTIONS(4640), - [anon_sym_BSLASHPvolcite] = ACTIONS(4640), - [anon_sym_BSLASHfvolcite] = ACTIONS(4640), - [anon_sym_BSLASHftvolcite] = ACTIONS(4640), - [anon_sym_BSLASHsvolcite] = ACTIONS(4640), - [anon_sym_BSLASHSvolcite] = ACTIONS(4640), - [anon_sym_BSLASHtvolcite] = ACTIONS(4640), - [anon_sym_BSLASHTvolcite] = ACTIONS(4640), - [anon_sym_BSLASHavolcite] = ACTIONS(4640), - [anon_sym_BSLASHAvolcite] = ACTIONS(4640), - [anon_sym_BSLASHnotecite] = ACTIONS(4640), - [anon_sym_BSLASHNotecite] = ACTIONS(4640), - [anon_sym_BSLASHpnotecite] = ACTIONS(4640), - [anon_sym_BSLASHPnotecite] = ACTIONS(4640), - [anon_sym_BSLASHfnotecite] = ACTIONS(4640), - [anon_sym_BSLASHlabel] = ACTIONS(4646), - [anon_sym_BSLASHref] = ACTIONS(4649), - [anon_sym_BSLASHeqref] = ACTIONS(4649), - [anon_sym_BSLASHvref] = ACTIONS(4649), - [anon_sym_BSLASHVref] = ACTIONS(4649), - [anon_sym_BSLASHautoref] = ACTIONS(4649), - [anon_sym_BSLASHpageref] = ACTIONS(4649), - [anon_sym_BSLASHcref] = ACTIONS(4649), - [anon_sym_BSLASHCref] = ACTIONS(4649), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4652), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4652), - [anon_sym_BSLASHnamecref] = ACTIONS(4649), - [anon_sym_BSLASHnameCref] = ACTIONS(4649), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4649), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4649), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4649), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4649), - [anon_sym_BSLASHlabelcref] = ACTIONS(4649), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4649), - [anon_sym_BSLASHcrefrange] = ACTIONS(4655), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4658), - [anon_sym_BSLASHCrefrange] = ACTIONS(4655), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4658), - [anon_sym_BSLASHnewlabel] = ACTIONS(4661), - [anon_sym_BSLASHnewcommand] = ACTIONS(4664), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4667), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4664), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4667), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4664), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4667), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4664), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4667), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4664), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4664), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4664), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4664), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4664), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4664), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4664), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4664), - [anon_sym_BSLASHdef] = ACTIONS(4670), - [anon_sym_BSLASHlet] = ACTIONS(4673), - [anon_sym_BSLASHleft] = ACTIONS(4676), - [anon_sym_BSLASHbig] = ACTIONS(4676), - [anon_sym_BSLASHBig] = ACTIONS(4676), - [anon_sym_BSLASHbigg] = ACTIONS(4676), - [anon_sym_BSLASHBigg] = ACTIONS(4676), - [anon_sym_BSLASHbigl] = ACTIONS(4676), - [anon_sym_BSLASHBigl] = ACTIONS(4676), - [anon_sym_BSLASHbiggl] = ACTIONS(4676), - [anon_sym_BSLASHBiggl] = ACTIONS(4676), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4679), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4679), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4682), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4682), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4682), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4682), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4682), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4682), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4685), - [anon_sym_BSLASHgls] = ACTIONS(4688), - [anon_sym_BSLASHGls] = ACTIONS(4688), - [anon_sym_BSLASHGLS] = ACTIONS(4688), - [anon_sym_BSLASHglspl] = ACTIONS(4688), - [anon_sym_BSLASHGlspl] = ACTIONS(4688), - [anon_sym_BSLASHGLSpl] = ACTIONS(4688), - [anon_sym_BSLASHglsdisp] = ACTIONS(4688), - [anon_sym_BSLASHglslink] = ACTIONS(4688), - [anon_sym_BSLASHglstext] = ACTIONS(4688), - [anon_sym_BSLASHGlstext] = ACTIONS(4688), - [anon_sym_BSLASHGLStext] = ACTIONS(4688), - [anon_sym_BSLASHglsfirst] = ACTIONS(4688), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4688), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4688), - [anon_sym_BSLASHglsplural] = ACTIONS(4688), - [anon_sym_BSLASHGlsplural] = ACTIONS(4688), - [anon_sym_BSLASHGLSplural] = ACTIONS(4688), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4688), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4688), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4688), - [anon_sym_BSLASHglsname] = ACTIONS(4688), - [anon_sym_BSLASHGlsname] = ACTIONS(4688), - [anon_sym_BSLASHGLSname] = ACTIONS(4688), - [anon_sym_BSLASHglssymbol] = ACTIONS(4688), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4688), - [anon_sym_BSLASHglsdesc] = ACTIONS(4688), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4688), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4688), - [anon_sym_BSLASHglsuseri] = ACTIONS(4688), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4688), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4688), - [anon_sym_BSLASHglsuserii] = ACTIONS(4688), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4688), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4688), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4688), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4688), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4688), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4688), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4688), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4688), - [anon_sym_BSLASHglsuserv] = ACTIONS(4688), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4688), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4688), - [anon_sym_BSLASHglsuservi] = ACTIONS(4688), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4688), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4688), - [anon_sym_BSLASHnewacronym] = ACTIONS(4691), - [anon_sym_BSLASHacrshort] = ACTIONS(4694), - [anon_sym_BSLASHAcrshort] = ACTIONS(4694), - [anon_sym_BSLASHACRshort] = ACTIONS(4694), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4694), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4694), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4694), - [anon_sym_BSLASHacrlong] = ACTIONS(4694), - [anon_sym_BSLASHAcrlong] = ACTIONS(4694), - [anon_sym_BSLASHACRlong] = ACTIONS(4694), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4694), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4694), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4694), - [anon_sym_BSLASHacrfull] = ACTIONS(4694), - [anon_sym_BSLASHAcrfull] = ACTIONS(4694), - [anon_sym_BSLASHACRfull] = ACTIONS(4694), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4694), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4694), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4694), - [anon_sym_BSLASHacs] = ACTIONS(4694), - [anon_sym_BSLASHAcs] = ACTIONS(4694), - [anon_sym_BSLASHacsp] = ACTIONS(4694), - [anon_sym_BSLASHAcsp] = ACTIONS(4694), - [anon_sym_BSLASHacl] = ACTIONS(4694), - [anon_sym_BSLASHAcl] = ACTIONS(4694), - [anon_sym_BSLASHaclp] = ACTIONS(4694), - [anon_sym_BSLASHAclp] = ACTIONS(4694), - [anon_sym_BSLASHacf] = ACTIONS(4694), - [anon_sym_BSLASHAcf] = ACTIONS(4694), - [anon_sym_BSLASHacfp] = ACTIONS(4694), - [anon_sym_BSLASHAcfp] = ACTIONS(4694), - [anon_sym_BSLASHac] = ACTIONS(4694), - [anon_sym_BSLASHAc] = ACTIONS(4694), - [anon_sym_BSLASHacp] = ACTIONS(4694), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4694), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4694), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4694), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4694), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4694), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4694), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4694), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4694), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4694), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4694), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4697), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4700), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4700), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4703), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4706), - [anon_sym_BSLASHcolor] = ACTIONS(4709), - [anon_sym_BSLASHcolorbox] = ACTIONS(4709), - [anon_sym_BSLASHtextcolor] = ACTIONS(4709), - [anon_sym_BSLASHpagecolor] = ACTIONS(4709), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4712), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4712), - [anon_sym_BSLASHtext] = ACTIONS(4715), - [anon_sym_BSLASHintertext] = ACTIONS(4715), - [anon_sym_shortintertext] = ACTIONS(4715), - }, - [298] = { - [sym_block_comment] = STATE(297), - [sym__text_content] = STATE(297), - [sym_curly_group] = STATE(297), - [sym_text] = STATE(297), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(297), - [sym_inline_formula] = STATE(297), - [sym__command] = STATE(297), - [sym_generic_command] = STATE(297), - [sym_title_declaration] = STATE(297), - [sym_author_declaration] = STATE(297), - [sym_package_include] = STATE(297), - [sym_class_include] = STATE(297), - [sym_latex_include] = STATE(297), - [sym_biblatex_include] = STATE(297), - [sym_bibtex_include] = STATE(297), - [sym_graphics_include] = STATE(297), - [sym_svg_include] = STATE(297), - [sym_inkscape_include] = STATE(297), - [sym_verbatim_include] = STATE(297), - [sym_import_include] = STATE(297), - [sym_caption] = STATE(297), - [sym_citation] = STATE(297), - [sym_label_definition] = STATE(297), - [sym_label_reference] = STATE(297), - [sym_label_reference_range] = STATE(297), - [sym_label_number] = STATE(297), - [sym_new_command_definition] = STATE(297), - [sym_old_command_definition] = STATE(297), - [sym_let_command_definition] = STATE(297), - [sym_math_delimiter] = STATE(297), - [sym_paired_delimiter_definition] = STATE(297), - [sym_environment_definition] = STATE(297), - [sym_glossary_entry_definition] = STATE(297), - [sym_glossary_entry_reference] = STATE(297), - [sym_acronym_definition] = STATE(297), - [sym_acronym_reference] = STATE(297), - [sym_theorem_definition] = STATE(297), - [sym_color_definition] = STATE(297), - [sym_color_set_definition] = STATE(297), - [sym_color_reference] = STATE(297), - [sym_tikz_library_import] = STATE(297), - [sym_text_mode] = STATE(297), - [aux_sym_curly_group_impl_repeat1] = STATE(297), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4718), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [299] = { - [sym_block_comment] = STATE(298), - [sym__text_content] = STATE(298), - [sym_curly_group] = STATE(298), - [sym_text] = STATE(298), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(298), - [sym_inline_formula] = STATE(298), - [sym__command] = STATE(298), - [sym_generic_command] = STATE(298), - [sym_title_declaration] = STATE(298), - [sym_author_declaration] = STATE(298), - [sym_package_include] = STATE(298), - [sym_class_include] = STATE(298), - [sym_latex_include] = STATE(298), - [sym_biblatex_include] = STATE(298), - [sym_bibtex_include] = STATE(298), - [sym_graphics_include] = STATE(298), - [sym_svg_include] = STATE(298), - [sym_inkscape_include] = STATE(298), - [sym_verbatim_include] = STATE(298), - [sym_import_include] = STATE(298), - [sym_caption] = STATE(298), - [sym_citation] = STATE(298), - [sym_label_definition] = STATE(298), - [sym_label_reference] = STATE(298), - [sym_label_reference_range] = STATE(298), - [sym_label_number] = STATE(298), - [sym_new_command_definition] = STATE(298), - [sym_old_command_definition] = STATE(298), - [sym_let_command_definition] = STATE(298), - [sym_math_delimiter] = STATE(298), - [sym_paired_delimiter_definition] = STATE(298), - [sym_environment_definition] = STATE(298), - [sym_glossary_entry_definition] = STATE(298), - [sym_glossary_entry_reference] = STATE(298), - [sym_acronym_definition] = STATE(298), - [sym_acronym_reference] = STATE(298), - [sym_theorem_definition] = STATE(298), - [sym_color_definition] = STATE(298), - [sym_color_set_definition] = STATE(298), - [sym_color_reference] = STATE(298), - [sym_tikz_library_import] = STATE(298), - [sym_text_mode] = STATE(298), - [aux_sym_curly_group_impl_repeat1] = STATE(298), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4720), - [anon_sym_RBRACK] = ACTIONS(4720), - [anon_sym_COMMA] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(4720), - [anon_sym_LPAREN] = ACTIONS(4720), - [anon_sym_RPAREN] = ACTIONS(4720), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4722), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [300] = { - [sym_block_comment] = STATE(296), - [sym__text_content] = STATE(296), - [sym_curly_group] = STATE(296), - [sym_text] = STATE(296), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(296), - [sym_inline_formula] = STATE(296), - [sym__command] = STATE(296), - [sym_generic_command] = STATE(296), - [sym_title_declaration] = STATE(296), - [sym_author_declaration] = STATE(296), - [sym_package_include] = STATE(296), - [sym_class_include] = STATE(296), - [sym_latex_include] = STATE(296), - [sym_biblatex_include] = STATE(296), - [sym_bibtex_include] = STATE(296), - [sym_graphics_include] = STATE(296), - [sym_svg_include] = STATE(296), - [sym_inkscape_include] = STATE(296), - [sym_verbatim_include] = STATE(296), - [sym_import_include] = STATE(296), - [sym_caption] = STATE(296), - [sym_citation] = STATE(296), - [sym_label_definition] = STATE(296), - [sym_label_reference] = STATE(296), - [sym_label_reference_range] = STATE(296), - [sym_label_number] = STATE(296), - [sym_new_command_definition] = STATE(296), - [sym_old_command_definition] = STATE(296), - [sym_let_command_definition] = STATE(296), - [sym_math_delimiter] = STATE(296), - [sym_paired_delimiter_definition] = STATE(296), - [sym_environment_definition] = STATE(296), - [sym_glossary_entry_definition] = STATE(296), - [sym_glossary_entry_reference] = STATE(296), - [sym_acronym_definition] = STATE(296), - [sym_acronym_reference] = STATE(296), - [sym_theorem_definition] = STATE(296), - [sym_color_definition] = STATE(296), - [sym_color_set_definition] = STATE(296), - [sym_color_reference] = STATE(296), - [sym_tikz_library_import] = STATE(296), - [sym_text_mode] = STATE(296), - [aux_sym_curly_group_impl_repeat1] = STATE(296), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4724), - [anon_sym_RBRACK] = ACTIONS(4724), - [anon_sym_COMMA] = ACTIONS(4724), - [anon_sym_EQ] = ACTIONS(4724), - [anon_sym_LPAREN] = ACTIONS(4724), - [anon_sym_RPAREN] = ACTIONS(4724), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4726), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [301] = { - [sym_block_comment] = STATE(297), - [sym__text_content] = STATE(297), - [sym_curly_group] = STATE(297), - [sym_text] = STATE(297), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(297), - [sym_inline_formula] = STATE(297), - [sym__command] = STATE(297), - [sym_generic_command] = STATE(297), - [sym_title_declaration] = STATE(297), - [sym_author_declaration] = STATE(297), - [sym_package_include] = STATE(297), - [sym_class_include] = STATE(297), - [sym_latex_include] = STATE(297), - [sym_biblatex_include] = STATE(297), - [sym_bibtex_include] = STATE(297), - [sym_graphics_include] = STATE(297), - [sym_svg_include] = STATE(297), - [sym_inkscape_include] = STATE(297), - [sym_verbatim_include] = STATE(297), - [sym_import_include] = STATE(297), - [sym_caption] = STATE(297), - [sym_citation] = STATE(297), - [sym_label_definition] = STATE(297), - [sym_label_reference] = STATE(297), - [sym_label_reference_range] = STATE(297), - [sym_label_number] = STATE(297), - [sym_new_command_definition] = STATE(297), - [sym_old_command_definition] = STATE(297), - [sym_let_command_definition] = STATE(297), - [sym_math_delimiter] = STATE(297), - [sym_paired_delimiter_definition] = STATE(297), - [sym_environment_definition] = STATE(297), - [sym_glossary_entry_definition] = STATE(297), - [sym_glossary_entry_reference] = STATE(297), - [sym_acronym_definition] = STATE(297), - [sym_acronym_reference] = STATE(297), - [sym_theorem_definition] = STATE(297), - [sym_color_definition] = STATE(297), - [sym_color_set_definition] = STATE(297), - [sym_color_reference] = STATE(297), - [sym_tikz_library_import] = STATE(297), - [sym_text_mode] = STATE(297), - [aux_sym_curly_group_impl_repeat1] = STATE(297), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4728), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [302] = { - [sym_block_comment] = STATE(297), - [sym__text_content] = STATE(297), - [sym_curly_group] = STATE(297), - [sym_text] = STATE(297), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(297), - [sym_inline_formula] = STATE(297), - [sym__command] = STATE(297), - [sym_generic_command] = STATE(297), - [sym_title_declaration] = STATE(297), - [sym_author_declaration] = STATE(297), - [sym_package_include] = STATE(297), - [sym_class_include] = STATE(297), - [sym_latex_include] = STATE(297), - [sym_biblatex_include] = STATE(297), - [sym_bibtex_include] = STATE(297), - [sym_graphics_include] = STATE(297), - [sym_svg_include] = STATE(297), - [sym_inkscape_include] = STATE(297), - [sym_verbatim_include] = STATE(297), - [sym_import_include] = STATE(297), - [sym_caption] = STATE(297), - [sym_citation] = STATE(297), - [sym_label_definition] = STATE(297), - [sym_label_reference] = STATE(297), - [sym_label_reference_range] = STATE(297), - [sym_label_number] = STATE(297), - [sym_new_command_definition] = STATE(297), - [sym_old_command_definition] = STATE(297), - [sym_let_command_definition] = STATE(297), - [sym_math_delimiter] = STATE(297), - [sym_paired_delimiter_definition] = STATE(297), - [sym_environment_definition] = STATE(297), - [sym_glossary_entry_definition] = STATE(297), - [sym_glossary_entry_reference] = STATE(297), - [sym_acronym_definition] = STATE(297), - [sym_acronym_reference] = STATE(297), - [sym_theorem_definition] = STATE(297), - [sym_color_definition] = STATE(297), - [sym_color_set_definition] = STATE(297), - [sym_color_reference] = STATE(297), - [sym_tikz_library_import] = STATE(297), - [sym_text_mode] = STATE(297), - [aux_sym_curly_group_impl_repeat1] = STATE(297), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4730), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [303] = { - [sym_block_comment] = STATE(306), - [sym__text_content] = STATE(306), - [sym_curly_group] = STATE(306), - [sym_text] = STATE(306), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(306), - [sym_inline_formula] = STATE(306), - [sym__command] = STATE(306), - [sym_generic_command] = STATE(306), - [sym_title_declaration] = STATE(306), - [sym_author_declaration] = STATE(306), - [sym_package_include] = STATE(306), - [sym_class_include] = STATE(306), - [sym_latex_include] = STATE(306), - [sym_biblatex_include] = STATE(306), - [sym_bibtex_include] = STATE(306), - [sym_graphics_include] = STATE(306), - [sym_svg_include] = STATE(306), - [sym_inkscape_include] = STATE(306), - [sym_verbatim_include] = STATE(306), - [sym_import_include] = STATE(306), - [sym_caption] = STATE(306), - [sym_citation] = STATE(306), - [sym_label_definition] = STATE(306), - [sym_label_reference] = STATE(306), - [sym_label_reference_range] = STATE(306), - [sym_label_number] = STATE(306), - [sym_new_command_definition] = STATE(306), - [sym_old_command_definition] = STATE(306), - [sym_let_command_definition] = STATE(306), - [sym_math_delimiter] = STATE(306), - [sym_paired_delimiter_definition] = STATE(306), - [sym_environment_definition] = STATE(306), - [sym_glossary_entry_definition] = STATE(306), - [sym_glossary_entry_reference] = STATE(306), - [sym_acronym_definition] = STATE(306), - [sym_acronym_reference] = STATE(306), - [sym_theorem_definition] = STATE(306), - [sym_color_definition] = STATE(306), - [sym_color_set_definition] = STATE(306), - [sym_color_reference] = STATE(306), - [sym_tikz_library_import] = STATE(306), - [sym_text_mode] = STATE(306), - [aux_sym_curly_group_impl_repeat1] = STATE(306), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4732), - [anon_sym_RBRACK] = ACTIONS(4732), - [anon_sym_COMMA] = ACTIONS(4732), - [anon_sym_EQ] = ACTIONS(4732), - [anon_sym_LPAREN] = ACTIONS(4732), - [anon_sym_RPAREN] = ACTIONS(4732), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4734), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [304] = { - [sym_block_comment] = STATE(301), - [sym__text_content] = STATE(301), - [sym_curly_group] = STATE(301), - [sym_text] = STATE(301), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(301), - [sym_inline_formula] = STATE(301), - [sym__command] = STATE(301), - [sym_generic_command] = STATE(301), - [sym_title_declaration] = STATE(301), - [sym_author_declaration] = STATE(301), - [sym_package_include] = STATE(301), - [sym_class_include] = STATE(301), - [sym_latex_include] = STATE(301), - [sym_biblatex_include] = STATE(301), - [sym_bibtex_include] = STATE(301), - [sym_graphics_include] = STATE(301), - [sym_svg_include] = STATE(301), - [sym_inkscape_include] = STATE(301), - [sym_verbatim_include] = STATE(301), - [sym_import_include] = STATE(301), - [sym_caption] = STATE(301), - [sym_citation] = STATE(301), - [sym_label_definition] = STATE(301), - [sym_label_reference] = STATE(301), - [sym_label_reference_range] = STATE(301), - [sym_label_number] = STATE(301), - [sym_new_command_definition] = STATE(301), - [sym_old_command_definition] = STATE(301), - [sym_let_command_definition] = STATE(301), - [sym_math_delimiter] = STATE(301), - [sym_paired_delimiter_definition] = STATE(301), - [sym_environment_definition] = STATE(301), - [sym_glossary_entry_definition] = STATE(301), - [sym_glossary_entry_reference] = STATE(301), - [sym_acronym_definition] = STATE(301), - [sym_acronym_reference] = STATE(301), - [sym_theorem_definition] = STATE(301), - [sym_color_definition] = STATE(301), - [sym_color_set_definition] = STATE(301), - [sym_color_reference] = STATE(301), - [sym_tikz_library_import] = STATE(301), - [sym_text_mode] = STATE(301), - [aux_sym_curly_group_impl_repeat1] = STATE(301), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4736), - [anon_sym_RBRACK] = ACTIONS(4736), - [anon_sym_COMMA] = ACTIONS(4736), - [anon_sym_EQ] = ACTIONS(4736), - [anon_sym_LPAREN] = ACTIONS(4736), - [anon_sym_RPAREN] = ACTIONS(4736), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4738), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [305] = { - [sym_block_comment] = STATE(309), - [sym__text_content] = STATE(309), - [sym_curly_group] = STATE(309), - [sym_text] = STATE(309), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(309), - [sym_inline_formula] = STATE(309), - [sym__command] = STATE(309), - [sym_generic_command] = STATE(309), - [sym_title_declaration] = STATE(309), - [sym_author_declaration] = STATE(309), - [sym_package_include] = STATE(309), - [sym_class_include] = STATE(309), - [sym_latex_include] = STATE(309), - [sym_biblatex_include] = STATE(309), - [sym_bibtex_include] = STATE(309), - [sym_graphics_include] = STATE(309), - [sym_svg_include] = STATE(309), - [sym_inkscape_include] = STATE(309), - [sym_verbatim_include] = STATE(309), - [sym_import_include] = STATE(309), - [sym_caption] = STATE(309), - [sym_citation] = STATE(309), - [sym_label_definition] = STATE(309), - [sym_label_reference] = STATE(309), - [sym_label_reference_range] = STATE(309), - [sym_label_number] = STATE(309), - [sym_new_command_definition] = STATE(309), - [sym_old_command_definition] = STATE(309), - [sym_let_command_definition] = STATE(309), - [sym_math_delimiter] = STATE(309), - [sym_paired_delimiter_definition] = STATE(309), - [sym_environment_definition] = STATE(309), - [sym_glossary_entry_definition] = STATE(309), - [sym_glossary_entry_reference] = STATE(309), - [sym_acronym_definition] = STATE(309), - [sym_acronym_reference] = STATE(309), - [sym_theorem_definition] = STATE(309), - [sym_color_definition] = STATE(309), - [sym_color_set_definition] = STATE(309), - [sym_color_reference] = STATE(309), - [sym_tikz_library_import] = STATE(309), - [sym_text_mode] = STATE(309), - [aux_sym_curly_group_impl_repeat1] = STATE(309), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4740), - [anon_sym_RBRACK] = ACTIONS(4740), - [anon_sym_COMMA] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(4740), - [anon_sym_LPAREN] = ACTIONS(4740), - [anon_sym_RPAREN] = ACTIONS(4740), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4742), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [306] = { - [sym_block_comment] = STATE(297), - [sym__text_content] = STATE(297), - [sym_curly_group] = STATE(297), - [sym_text] = STATE(297), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(297), - [sym_inline_formula] = STATE(297), - [sym__command] = STATE(297), - [sym_generic_command] = STATE(297), - [sym_title_declaration] = STATE(297), - [sym_author_declaration] = STATE(297), - [sym_package_include] = STATE(297), - [sym_class_include] = STATE(297), - [sym_latex_include] = STATE(297), - [sym_biblatex_include] = STATE(297), - [sym_bibtex_include] = STATE(297), - [sym_graphics_include] = STATE(297), - [sym_svg_include] = STATE(297), - [sym_inkscape_include] = STATE(297), - [sym_verbatim_include] = STATE(297), - [sym_import_include] = STATE(297), - [sym_caption] = STATE(297), - [sym_citation] = STATE(297), - [sym_label_definition] = STATE(297), - [sym_label_reference] = STATE(297), - [sym_label_reference_range] = STATE(297), - [sym_label_number] = STATE(297), - [sym_new_command_definition] = STATE(297), - [sym_old_command_definition] = STATE(297), - [sym_let_command_definition] = STATE(297), - [sym_math_delimiter] = STATE(297), - [sym_paired_delimiter_definition] = STATE(297), - [sym_environment_definition] = STATE(297), - [sym_glossary_entry_definition] = STATE(297), - [sym_glossary_entry_reference] = STATE(297), - [sym_acronym_definition] = STATE(297), - [sym_acronym_reference] = STATE(297), - [sym_theorem_definition] = STATE(297), - [sym_color_definition] = STATE(297), - [sym_color_set_definition] = STATE(297), - [sym_color_reference] = STATE(297), - [sym_tikz_library_import] = STATE(297), - [sym_text_mode] = STATE(297), - [aux_sym_curly_group_impl_repeat1] = STATE(297), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4744), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [307] = { - [sym_block_comment] = STATE(302), - [sym__text_content] = STATE(302), - [sym_curly_group] = STATE(302), - [sym_text] = STATE(302), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(302), - [sym_inline_formula] = STATE(302), - [sym__command] = STATE(302), - [sym_generic_command] = STATE(302), - [sym_title_declaration] = STATE(302), - [sym_author_declaration] = STATE(302), - [sym_package_include] = STATE(302), - [sym_class_include] = STATE(302), - [sym_latex_include] = STATE(302), - [sym_biblatex_include] = STATE(302), - [sym_bibtex_include] = STATE(302), - [sym_graphics_include] = STATE(302), - [sym_svg_include] = STATE(302), - [sym_inkscape_include] = STATE(302), - [sym_verbatim_include] = STATE(302), - [sym_import_include] = STATE(302), - [sym_caption] = STATE(302), - [sym_citation] = STATE(302), - [sym_label_definition] = STATE(302), - [sym_label_reference] = STATE(302), - [sym_label_reference_range] = STATE(302), - [sym_label_number] = STATE(302), - [sym_new_command_definition] = STATE(302), - [sym_old_command_definition] = STATE(302), - [sym_let_command_definition] = STATE(302), - [sym_math_delimiter] = STATE(302), - [sym_paired_delimiter_definition] = STATE(302), - [sym_environment_definition] = STATE(302), - [sym_glossary_entry_definition] = STATE(302), - [sym_glossary_entry_reference] = STATE(302), - [sym_acronym_definition] = STATE(302), - [sym_acronym_reference] = STATE(302), - [sym_theorem_definition] = STATE(302), - [sym_color_definition] = STATE(302), - [sym_color_set_definition] = STATE(302), - [sym_color_reference] = STATE(302), - [sym_tikz_library_import] = STATE(302), - [sym_text_mode] = STATE(302), - [aux_sym_curly_group_impl_repeat1] = STATE(302), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4746), - [anon_sym_RBRACK] = ACTIONS(4746), - [anon_sym_COMMA] = ACTIONS(4746), - [anon_sym_EQ] = ACTIONS(4746), - [anon_sym_LPAREN] = ACTIONS(4746), - [anon_sym_RPAREN] = ACTIONS(4746), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4748), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [308] = { - [sym_block_comment] = STATE(297), - [sym__text_content] = STATE(297), - [sym_curly_group] = STATE(297), - [sym_text] = STATE(297), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(297), - [sym_inline_formula] = STATE(297), - [sym__command] = STATE(297), - [sym_generic_command] = STATE(297), - [sym_title_declaration] = STATE(297), - [sym_author_declaration] = STATE(297), - [sym_package_include] = STATE(297), - [sym_class_include] = STATE(297), - [sym_latex_include] = STATE(297), - [sym_biblatex_include] = STATE(297), - [sym_bibtex_include] = STATE(297), - [sym_graphics_include] = STATE(297), - [sym_svg_include] = STATE(297), - [sym_inkscape_include] = STATE(297), - [sym_verbatim_include] = STATE(297), - [sym_import_include] = STATE(297), - [sym_caption] = STATE(297), - [sym_citation] = STATE(297), - [sym_label_definition] = STATE(297), - [sym_label_reference] = STATE(297), - [sym_label_reference_range] = STATE(297), - [sym_label_number] = STATE(297), - [sym_new_command_definition] = STATE(297), - [sym_old_command_definition] = STATE(297), - [sym_let_command_definition] = STATE(297), - [sym_math_delimiter] = STATE(297), - [sym_paired_delimiter_definition] = STATE(297), - [sym_environment_definition] = STATE(297), - [sym_glossary_entry_definition] = STATE(297), - [sym_glossary_entry_reference] = STATE(297), - [sym_acronym_definition] = STATE(297), - [sym_acronym_reference] = STATE(297), - [sym_theorem_definition] = STATE(297), - [sym_color_definition] = STATE(297), - [sym_color_set_definition] = STATE(297), - [sym_color_reference] = STATE(297), - [sym_tikz_library_import] = STATE(297), - [sym_text_mode] = STATE(297), - [aux_sym_curly_group_impl_repeat1] = STATE(297), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4750), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [309] = { - [sym_block_comment] = STATE(297), - [sym__text_content] = STATE(297), - [sym_curly_group] = STATE(297), - [sym_text] = STATE(297), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(297), - [sym_inline_formula] = STATE(297), - [sym__command] = STATE(297), - [sym_generic_command] = STATE(297), - [sym_title_declaration] = STATE(297), - [sym_author_declaration] = STATE(297), - [sym_package_include] = STATE(297), - [sym_class_include] = STATE(297), - [sym_latex_include] = STATE(297), - [sym_biblatex_include] = STATE(297), - [sym_bibtex_include] = STATE(297), - [sym_graphics_include] = STATE(297), - [sym_svg_include] = STATE(297), - [sym_inkscape_include] = STATE(297), - [sym_verbatim_include] = STATE(297), - [sym_import_include] = STATE(297), - [sym_caption] = STATE(297), - [sym_citation] = STATE(297), - [sym_label_definition] = STATE(297), - [sym_label_reference] = STATE(297), - [sym_label_reference_range] = STATE(297), - [sym_label_number] = STATE(297), - [sym_new_command_definition] = STATE(297), - [sym_old_command_definition] = STATE(297), - [sym_let_command_definition] = STATE(297), - [sym_math_delimiter] = STATE(297), - [sym_paired_delimiter_definition] = STATE(297), - [sym_environment_definition] = STATE(297), - [sym_glossary_entry_definition] = STATE(297), - [sym_glossary_entry_reference] = STATE(297), - [sym_acronym_definition] = STATE(297), - [sym_acronym_reference] = STATE(297), - [sym_theorem_definition] = STATE(297), - [sym_color_definition] = STATE(297), - [sym_color_set_definition] = STATE(297), - [sym_color_reference] = STATE(297), - [sym_tikz_library_import] = STATE(297), - [sym_text_mode] = STATE(297), - [aux_sym_curly_group_impl_repeat1] = STATE(297), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4752), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [310] = { - [sym_block_comment] = STATE(308), - [sym__text_content] = STATE(308), - [sym_curly_group] = STATE(308), - [sym_text] = STATE(308), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(308), - [sym_inline_formula] = STATE(308), - [sym__command] = STATE(308), - [sym_generic_command] = STATE(308), - [sym_title_declaration] = STATE(308), - [sym_author_declaration] = STATE(308), - [sym_package_include] = STATE(308), - [sym_class_include] = STATE(308), - [sym_latex_include] = STATE(308), - [sym_biblatex_include] = STATE(308), - [sym_bibtex_include] = STATE(308), - [sym_graphics_include] = STATE(308), - [sym_svg_include] = STATE(308), - [sym_inkscape_include] = STATE(308), - [sym_verbatim_include] = STATE(308), - [sym_import_include] = STATE(308), - [sym_caption] = STATE(308), - [sym_citation] = STATE(308), - [sym_label_definition] = STATE(308), - [sym_label_reference] = STATE(308), - [sym_label_reference_range] = STATE(308), - [sym_label_number] = STATE(308), - [sym_new_command_definition] = STATE(308), - [sym_old_command_definition] = STATE(308), - [sym_let_command_definition] = STATE(308), - [sym_math_delimiter] = STATE(308), - [sym_paired_delimiter_definition] = STATE(308), - [sym_environment_definition] = STATE(308), - [sym_glossary_entry_definition] = STATE(308), - [sym_glossary_entry_reference] = STATE(308), - [sym_acronym_definition] = STATE(308), - [sym_acronym_reference] = STATE(308), - [sym_theorem_definition] = STATE(308), - [sym_color_definition] = STATE(308), - [sym_color_set_definition] = STATE(308), - [sym_color_reference] = STATE(308), - [sym_tikz_library_import] = STATE(308), - [sym_text_mode] = STATE(308), - [aux_sym_curly_group_impl_repeat1] = STATE(308), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4754), - [anon_sym_RBRACK] = ACTIONS(4754), - [anon_sym_COMMA] = ACTIONS(4754), - [anon_sym_EQ] = ACTIONS(4754), - [anon_sym_LPAREN] = ACTIONS(4754), - [anon_sym_RPAREN] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4756), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [311] = { - [sym_block_comment] = STATE(314), - [sym__text_content] = STATE(314), - [sym_curly_group] = STATE(314), - [sym_text] = STATE(314), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(314), - [sym_inline_formula] = STATE(314), - [sym__command] = STATE(314), - [sym_generic_command] = STATE(314), - [sym_title_declaration] = STATE(314), - [sym_author_declaration] = STATE(314), - [sym_package_include] = STATE(314), - [sym_class_include] = STATE(314), - [sym_latex_include] = STATE(314), - [sym_biblatex_include] = STATE(314), - [sym_bibtex_include] = STATE(314), - [sym_graphics_include] = STATE(314), - [sym_svg_include] = STATE(314), - [sym_inkscape_include] = STATE(314), - [sym_verbatim_include] = STATE(314), - [sym_import_include] = STATE(314), - [sym_caption] = STATE(314), - [sym_citation] = STATE(314), - [sym_label_definition] = STATE(314), - [sym_label_reference] = STATE(314), - [sym_label_reference_range] = STATE(314), - [sym_label_number] = STATE(314), - [sym_new_command_definition] = STATE(314), - [sym_old_command_definition] = STATE(314), - [sym_let_command_definition] = STATE(314), - [sym_math_delimiter] = STATE(314), - [sym_paired_delimiter_definition] = STATE(314), - [sym_environment_definition] = STATE(314), - [sym_glossary_entry_definition] = STATE(314), - [sym_glossary_entry_reference] = STATE(314), - [sym_acronym_definition] = STATE(314), - [sym_acronym_reference] = STATE(314), - [sym_theorem_definition] = STATE(314), - [sym_color_definition] = STATE(314), - [sym_color_set_definition] = STATE(314), - [sym_color_reference] = STATE(314), - [sym_tikz_library_import] = STATE(314), - [sym_text_mode] = STATE(314), - [aux_sym_curly_group_impl_repeat1] = STATE(314), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4758), - [anon_sym_RBRACK] = ACTIONS(4758), - [anon_sym_COMMA] = ACTIONS(4758), - [anon_sym_EQ] = ACTIONS(4758), - [anon_sym_LPAREN] = ACTIONS(4758), - [anon_sym_RPAREN] = ACTIONS(4758), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4760), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [312] = { - [sym_block_comment] = STATE(313), - [sym__text_content] = STATE(313), - [sym_curly_group] = STATE(313), - [sym_text] = STATE(313), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(313), - [sym_inline_formula] = STATE(313), - [sym__command] = STATE(313), - [sym_generic_command] = STATE(313), - [sym_title_declaration] = STATE(313), - [sym_author_declaration] = STATE(313), - [sym_package_include] = STATE(313), - [sym_class_include] = STATE(313), - [sym_latex_include] = STATE(313), - [sym_biblatex_include] = STATE(313), - [sym_bibtex_include] = STATE(313), - [sym_graphics_include] = STATE(313), - [sym_svg_include] = STATE(313), - [sym_inkscape_include] = STATE(313), - [sym_verbatim_include] = STATE(313), - [sym_import_include] = STATE(313), - [sym_caption] = STATE(313), - [sym_citation] = STATE(313), - [sym_label_definition] = STATE(313), - [sym_label_reference] = STATE(313), - [sym_label_reference_range] = STATE(313), - [sym_label_number] = STATE(313), - [sym_new_command_definition] = STATE(313), - [sym_old_command_definition] = STATE(313), - [sym_let_command_definition] = STATE(313), - [sym_math_delimiter] = STATE(313), - [sym_paired_delimiter_definition] = STATE(313), - [sym_environment_definition] = STATE(313), - [sym_glossary_entry_definition] = STATE(313), - [sym_glossary_entry_reference] = STATE(313), - [sym_acronym_definition] = STATE(313), - [sym_acronym_reference] = STATE(313), - [sym_theorem_definition] = STATE(313), - [sym_color_definition] = STATE(313), - [sym_color_set_definition] = STATE(313), - [sym_color_reference] = STATE(313), - [sym_tikz_library_import] = STATE(313), - [sym_text_mode] = STATE(313), - [aux_sym_curly_group_impl_repeat1] = STATE(313), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4762), - [anon_sym_RBRACK] = ACTIONS(4762), - [anon_sym_COMMA] = ACTIONS(4762), - [anon_sym_EQ] = ACTIONS(4762), - [anon_sym_LPAREN] = ACTIONS(4762), - [anon_sym_RPAREN] = ACTIONS(4762), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4764), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [313] = { - [sym_block_comment] = STATE(297), - [sym__text_content] = STATE(297), - [sym_curly_group] = STATE(297), - [sym_text] = STATE(297), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(297), - [sym_inline_formula] = STATE(297), - [sym__command] = STATE(297), - [sym_generic_command] = STATE(297), - [sym_title_declaration] = STATE(297), - [sym_author_declaration] = STATE(297), - [sym_package_include] = STATE(297), - [sym_class_include] = STATE(297), - [sym_latex_include] = STATE(297), - [sym_biblatex_include] = STATE(297), - [sym_bibtex_include] = STATE(297), - [sym_graphics_include] = STATE(297), - [sym_svg_include] = STATE(297), - [sym_inkscape_include] = STATE(297), - [sym_verbatim_include] = STATE(297), - [sym_import_include] = STATE(297), - [sym_caption] = STATE(297), - [sym_citation] = STATE(297), - [sym_label_definition] = STATE(297), - [sym_label_reference] = STATE(297), - [sym_label_reference_range] = STATE(297), - [sym_label_number] = STATE(297), - [sym_new_command_definition] = STATE(297), - [sym_old_command_definition] = STATE(297), - [sym_let_command_definition] = STATE(297), - [sym_math_delimiter] = STATE(297), - [sym_paired_delimiter_definition] = STATE(297), - [sym_environment_definition] = STATE(297), - [sym_glossary_entry_definition] = STATE(297), - [sym_glossary_entry_reference] = STATE(297), - [sym_acronym_definition] = STATE(297), - [sym_acronym_reference] = STATE(297), - [sym_theorem_definition] = STATE(297), - [sym_color_definition] = STATE(297), - [sym_color_set_definition] = STATE(297), - [sym_color_reference] = STATE(297), - [sym_tikz_library_import] = STATE(297), - [sym_text_mode] = STATE(297), - [aux_sym_curly_group_impl_repeat1] = STATE(297), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4766), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [314] = { - [sym_block_comment] = STATE(297), - [sym__text_content] = STATE(297), - [sym_curly_group] = STATE(297), - [sym_text] = STATE(297), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(297), - [sym_inline_formula] = STATE(297), - [sym__command] = STATE(297), - [sym_generic_command] = STATE(297), - [sym_title_declaration] = STATE(297), - [sym_author_declaration] = STATE(297), - [sym_package_include] = STATE(297), - [sym_class_include] = STATE(297), - [sym_latex_include] = STATE(297), - [sym_biblatex_include] = STATE(297), - [sym_bibtex_include] = STATE(297), - [sym_graphics_include] = STATE(297), - [sym_svg_include] = STATE(297), - [sym_inkscape_include] = STATE(297), - [sym_verbatim_include] = STATE(297), - [sym_import_include] = STATE(297), - [sym_caption] = STATE(297), - [sym_citation] = STATE(297), - [sym_label_definition] = STATE(297), - [sym_label_reference] = STATE(297), - [sym_label_reference_range] = STATE(297), - [sym_label_number] = STATE(297), - [sym_new_command_definition] = STATE(297), - [sym_old_command_definition] = STATE(297), - [sym_let_command_definition] = STATE(297), - [sym_math_delimiter] = STATE(297), - [sym_paired_delimiter_definition] = STATE(297), - [sym_environment_definition] = STATE(297), - [sym_glossary_entry_definition] = STATE(297), - [sym_glossary_entry_reference] = STATE(297), - [sym_acronym_definition] = STATE(297), - [sym_acronym_reference] = STATE(297), - [sym_theorem_definition] = STATE(297), - [sym_color_definition] = STATE(297), - [sym_color_set_definition] = STATE(297), - [sym_color_reference] = STATE(297), - [sym_tikz_library_import] = STATE(297), - [sym_text_mode] = STATE(297), - [aux_sym_curly_group_impl_repeat1] = STATE(297), - [aux_sym_text_repeat1] = STATE(348), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_EQ] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4768), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4360), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4360), - [anon_sym_DOLLAR] = ACTIONS(4362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4364), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4416), - [anon_sym_BSLASHbig] = ACTIONS(4416), - [anon_sym_BSLASHBig] = ACTIONS(4416), - [anon_sym_BSLASHbigg] = ACTIONS(4416), - [anon_sym_BSLASHBigg] = ACTIONS(4416), - [anon_sym_BSLASHbigl] = ACTIONS(4416), - [anon_sym_BSLASHBigl] = ACTIONS(4416), - [anon_sym_BSLASHbiggl] = ACTIONS(4416), - [anon_sym_BSLASHBiggl] = ACTIONS(4416), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [315] = { - [sym_block_comment] = STATE(317), - [sym__text_content] = STATE(317), - [sym_curly_group] = STATE(317), - [sym_brack_group] = STATE(317), - [sym_text] = STATE(317), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(317), - [sym_inline_formula] = STATE(317), - [sym__command] = STATE(317), - [sym_generic_command] = STATE(317), - [sym_title_declaration] = STATE(317), - [sym_author_declaration] = STATE(317), - [sym_package_include] = STATE(317), - [sym_class_include] = STATE(317), - [sym_latex_include] = STATE(317), - [sym_biblatex_include] = STATE(317), - [sym_bibtex_include] = STATE(317), - [sym_graphics_include] = STATE(317), - [sym_svg_include] = STATE(317), - [sym_inkscape_include] = STATE(317), - [sym_verbatim_include] = STATE(317), - [sym_import_include] = STATE(317), - [sym_caption] = STATE(317), - [sym_citation] = STATE(317), - [sym_label_definition] = STATE(317), - [sym_label_reference] = STATE(317), - [sym_label_reference_range] = STATE(317), - [sym_label_number] = STATE(317), - [sym_new_command_definition] = STATE(317), - [sym_old_command_definition] = STATE(317), - [sym_let_command_definition] = STATE(317), - [sym_math_delimiter] = STATE(317), - [sym_paired_delimiter_definition] = STATE(317), - [sym_environment_definition] = STATE(317), - [sym_glossary_entry_definition] = STATE(317), - [sym_glossary_entry_reference] = STATE(317), - [sym_acronym_definition] = STATE(317), - [sym_acronym_reference] = STATE(317), - [sym_theorem_definition] = STATE(317), - [sym_color_definition] = STATE(317), - [sym_color_set_definition] = STATE(317), - [sym_color_reference] = STATE(317), - [sym_tikz_library_import] = STATE(317), - [sym_text_mode] = STATE(317), - [aux_sym_text_repeat1] = STATE(348), - [aux_sym_value_repeat1] = STATE(317), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4770), - [anon_sym_RBRACK] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4774), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_LBRACE] = ACTIONS(4344), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4776), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4776), - [anon_sym_DOLLAR] = ACTIONS(4778), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4780), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4782), - [anon_sym_BSLASHbig] = ACTIONS(4782), - [anon_sym_BSLASHBig] = ACTIONS(4782), - [anon_sym_BSLASHbigg] = ACTIONS(4782), - [anon_sym_BSLASHBigg] = ACTIONS(4782), - [anon_sym_BSLASHbigl] = ACTIONS(4782), - [anon_sym_BSLASHBigl] = ACTIONS(4782), - [anon_sym_BSLASHbiggl] = ACTIONS(4782), - [anon_sym_BSLASHBiggl] = ACTIONS(4782), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [316] = { - [sym_block_comment] = STATE(316), - [sym__text_content] = STATE(316), - [sym_curly_group] = STATE(316), - [sym_brack_group] = STATE(316), - [sym_text] = STATE(316), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(316), - [sym_inline_formula] = STATE(316), - [sym__command] = STATE(316), - [sym_generic_command] = STATE(316), - [sym_title_declaration] = STATE(316), - [sym_author_declaration] = STATE(316), - [sym_package_include] = STATE(316), - [sym_class_include] = STATE(316), - [sym_latex_include] = STATE(316), - [sym_biblatex_include] = STATE(316), - [sym_bibtex_include] = STATE(316), - [sym_graphics_include] = STATE(316), - [sym_svg_include] = STATE(316), - [sym_inkscape_include] = STATE(316), - [sym_verbatim_include] = STATE(316), - [sym_import_include] = STATE(316), - [sym_caption] = STATE(316), - [sym_citation] = STATE(316), - [sym_label_definition] = STATE(316), - [sym_label_reference] = STATE(316), - [sym_label_reference_range] = STATE(316), - [sym_label_number] = STATE(316), - [sym_new_command_definition] = STATE(316), - [sym_old_command_definition] = STATE(316), - [sym_let_command_definition] = STATE(316), - [sym_math_delimiter] = STATE(316), - [sym_paired_delimiter_definition] = STATE(316), - [sym_environment_definition] = STATE(316), - [sym_glossary_entry_definition] = STATE(316), - [sym_glossary_entry_reference] = STATE(316), - [sym_acronym_definition] = STATE(316), - [sym_acronym_reference] = STATE(316), - [sym_theorem_definition] = STATE(316), - [sym_color_definition] = STATE(316), - [sym_color_set_definition] = STATE(316), - [sym_color_reference] = STATE(316), - [sym_tikz_library_import] = STATE(316), - [sym_text_mode] = STATE(316), - [aux_sym_text_repeat1] = STATE(348), - [aux_sym_value_repeat1] = STATE(316), - [sym_command_name] = ACTIONS(4784), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4787), - [anon_sym_LBRACK] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4798), - [anon_sym_RBRACE] = ACTIONS(4793), - [sym_word] = ACTIONS(4801), - [sym_placeholder] = ACTIONS(4804), - [anon_sym_PLUS] = ACTIONS(4807), - [anon_sym_DASH] = ACTIONS(4807), - [anon_sym_STAR] = ACTIONS(4807), - [anon_sym_SLASH] = ACTIONS(4807), - [anon_sym_LT] = ACTIONS(4810), - [anon_sym_GT] = ACTIONS(4810), - [anon_sym_BANG] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_COLON] = ACTIONS(4810), - [anon_sym_SQUOTE] = ACTIONS(4810), - [anon_sym__] = ACTIONS(4813), - [anon_sym_CARET] = ACTIONS(4816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4819), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4819), - [anon_sym_DOLLAR] = ACTIONS(4822), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4825), - [anon_sym_BSLASHtitle] = ACTIONS(4828), - [anon_sym_BSLASHauthor] = ACTIONS(4831), - [anon_sym_BSLASHusepackage] = ACTIONS(4834), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4834), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4837), - [anon_sym_BSLASHinclude] = ACTIONS(4840), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4840), - [anon_sym_BSLASHinput] = ACTIONS(4840), - [anon_sym_BSLASHsubfile] = ACTIONS(4840), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4843), - [anon_sym_BSLASHbibliography] = ACTIONS(4846), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4849), - [anon_sym_BSLASHincludesvg] = ACTIONS(4852), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4855), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4858), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4858), - [anon_sym_BSLASHimport] = ACTIONS(4861), - [anon_sym_BSLASHsubimport] = ACTIONS(4861), - [anon_sym_BSLASHinputfrom] = ACTIONS(4861), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4861), - [anon_sym_BSLASHincludefrom] = ACTIONS(4861), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4861), - [anon_sym_BSLASHcaption] = ACTIONS(4864), - [anon_sym_BSLASHcite] = ACTIONS(4867), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4870), - [anon_sym_BSLASHCite] = ACTIONS(4867), - [anon_sym_BSLASHnocite] = ACTIONS(4867), - [anon_sym_BSLASHcitet] = ACTIONS(4867), - [anon_sym_BSLASHcitep] = ACTIONS(4867), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4870), - [anon_sym_BSLASHciteauthor] = ACTIONS(4867), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4867), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4870), - [anon_sym_BSLASHcitetitle] = ACTIONS(4867), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4870), - [anon_sym_BSLASHciteyear] = ACTIONS(4867), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4870), - [anon_sym_BSLASHcitedate] = ACTIONS(4867), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4870), - [anon_sym_BSLASHciteurl] = ACTIONS(4867), - [anon_sym_BSLASHfullcite] = ACTIONS(4867), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4867), - [anon_sym_BSLASHcitealt] = ACTIONS(4867), - [anon_sym_BSLASHcitealp] = ACTIONS(4867), - [anon_sym_BSLASHcitetext] = ACTIONS(4867), - [anon_sym_BSLASHparencite] = ACTIONS(4867), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4870), - [anon_sym_BSLASHParencite] = ACTIONS(4867), - [anon_sym_BSLASHfootcite] = ACTIONS(4867), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4867), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4867), - [anon_sym_BSLASHtextcite] = ACTIONS(4867), - [anon_sym_BSLASHTextcite] = ACTIONS(4867), - [anon_sym_BSLASHsmartcite] = ACTIONS(4867), - [anon_sym_BSLASHSmartcite] = ACTIONS(4867), - [anon_sym_BSLASHsupercite] = ACTIONS(4867), - [anon_sym_BSLASHautocite] = ACTIONS(4867), - [anon_sym_BSLASHAutocite] = ACTIONS(4867), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4870), - [anon_sym_BSLASHvolcite] = ACTIONS(4867), - [anon_sym_BSLASHVolcite] = ACTIONS(4867), - [anon_sym_BSLASHpvolcite] = ACTIONS(4867), - [anon_sym_BSLASHPvolcite] = ACTIONS(4867), - [anon_sym_BSLASHfvolcite] = ACTIONS(4867), - [anon_sym_BSLASHftvolcite] = ACTIONS(4867), - [anon_sym_BSLASHsvolcite] = ACTIONS(4867), - [anon_sym_BSLASHSvolcite] = ACTIONS(4867), - [anon_sym_BSLASHtvolcite] = ACTIONS(4867), - [anon_sym_BSLASHTvolcite] = ACTIONS(4867), - [anon_sym_BSLASHavolcite] = ACTIONS(4867), - [anon_sym_BSLASHAvolcite] = ACTIONS(4867), - [anon_sym_BSLASHnotecite] = ACTIONS(4867), - [anon_sym_BSLASHNotecite] = ACTIONS(4867), - [anon_sym_BSLASHpnotecite] = ACTIONS(4867), - [anon_sym_BSLASHPnotecite] = ACTIONS(4867), - [anon_sym_BSLASHfnotecite] = ACTIONS(4867), - [anon_sym_BSLASHlabel] = ACTIONS(4873), - [anon_sym_BSLASHref] = ACTIONS(4876), - [anon_sym_BSLASHeqref] = ACTIONS(4876), - [anon_sym_BSLASHvref] = ACTIONS(4876), - [anon_sym_BSLASHVref] = ACTIONS(4876), - [anon_sym_BSLASHautoref] = ACTIONS(4876), - [anon_sym_BSLASHpageref] = ACTIONS(4876), - [anon_sym_BSLASHcref] = ACTIONS(4876), - [anon_sym_BSLASHCref] = ACTIONS(4876), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4879), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4879), - [anon_sym_BSLASHnamecref] = ACTIONS(4876), - [anon_sym_BSLASHnameCref] = ACTIONS(4876), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4876), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4876), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4876), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4876), - [anon_sym_BSLASHlabelcref] = ACTIONS(4876), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4876), - [anon_sym_BSLASHcrefrange] = ACTIONS(4882), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCrefrange] = ACTIONS(4882), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnewlabel] = ACTIONS(4888), - [anon_sym_BSLASHnewcommand] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4894), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4894), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4894), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4894), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHdef] = ACTIONS(4897), - [anon_sym_BSLASHlet] = ACTIONS(4900), - [anon_sym_BSLASHleft] = ACTIONS(4903), - [anon_sym_BSLASHbig] = ACTIONS(4903), - [anon_sym_BSLASHBig] = ACTIONS(4903), - [anon_sym_BSLASHbigg] = ACTIONS(4903), - [anon_sym_BSLASHBigg] = ACTIONS(4903), - [anon_sym_BSLASHbigl] = ACTIONS(4903), - [anon_sym_BSLASHBigl] = ACTIONS(4903), - [anon_sym_BSLASHbiggl] = ACTIONS(4903), - [anon_sym_BSLASHBiggl] = ACTIONS(4903), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4906), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4906), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4909), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4909), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4909), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4909), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4909), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4912), - [anon_sym_BSLASHgls] = ACTIONS(4915), - [anon_sym_BSLASHGls] = ACTIONS(4915), - [anon_sym_BSLASHGLS] = ACTIONS(4915), - [anon_sym_BSLASHglspl] = ACTIONS(4915), - [anon_sym_BSLASHGlspl] = ACTIONS(4915), - [anon_sym_BSLASHGLSpl] = ACTIONS(4915), - [anon_sym_BSLASHglsdisp] = ACTIONS(4915), - [anon_sym_BSLASHglslink] = ACTIONS(4915), - [anon_sym_BSLASHglstext] = ACTIONS(4915), - [anon_sym_BSLASHGlstext] = ACTIONS(4915), - [anon_sym_BSLASHGLStext] = ACTIONS(4915), - [anon_sym_BSLASHglsfirst] = ACTIONS(4915), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4915), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4915), - [anon_sym_BSLASHglsplural] = ACTIONS(4915), - [anon_sym_BSLASHGlsplural] = ACTIONS(4915), - [anon_sym_BSLASHGLSplural] = ACTIONS(4915), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4915), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4915), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4915), - [anon_sym_BSLASHglsname] = ACTIONS(4915), - [anon_sym_BSLASHGlsname] = ACTIONS(4915), - [anon_sym_BSLASHGLSname] = ACTIONS(4915), - [anon_sym_BSLASHglssymbol] = ACTIONS(4915), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4915), - [anon_sym_BSLASHglsdesc] = ACTIONS(4915), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4915), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4915), - [anon_sym_BSLASHglsuseri] = ACTIONS(4915), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4915), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4915), - [anon_sym_BSLASHglsuserii] = ACTIONS(4915), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4915), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4915), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4915), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4915), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4915), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4915), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4915), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4915), - [anon_sym_BSLASHglsuserv] = ACTIONS(4915), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4915), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4915), - [anon_sym_BSLASHglsuservi] = ACTIONS(4915), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4915), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4915), - [anon_sym_BSLASHnewacronym] = ACTIONS(4918), - [anon_sym_BSLASHacrshort] = ACTIONS(4921), - [anon_sym_BSLASHAcrshort] = ACTIONS(4921), - [anon_sym_BSLASHACRshort] = ACTIONS(4921), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), - [anon_sym_BSLASHacrlong] = ACTIONS(4921), - [anon_sym_BSLASHAcrlong] = ACTIONS(4921), - [anon_sym_BSLASHACRlong] = ACTIONS(4921), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), - [anon_sym_BSLASHacrfull] = ACTIONS(4921), - [anon_sym_BSLASHAcrfull] = ACTIONS(4921), - [anon_sym_BSLASHACRfull] = ACTIONS(4921), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), - [anon_sym_BSLASHacs] = ACTIONS(4921), - [anon_sym_BSLASHAcs] = ACTIONS(4921), - [anon_sym_BSLASHacsp] = ACTIONS(4921), - [anon_sym_BSLASHAcsp] = ACTIONS(4921), - [anon_sym_BSLASHacl] = ACTIONS(4921), - [anon_sym_BSLASHAcl] = ACTIONS(4921), - [anon_sym_BSLASHaclp] = ACTIONS(4921), - [anon_sym_BSLASHAclp] = ACTIONS(4921), - [anon_sym_BSLASHacf] = ACTIONS(4921), - [anon_sym_BSLASHAcf] = ACTIONS(4921), - [anon_sym_BSLASHacfp] = ACTIONS(4921), - [anon_sym_BSLASHAcfp] = ACTIONS(4921), - [anon_sym_BSLASHac] = ACTIONS(4921), - [anon_sym_BSLASHAc] = ACTIONS(4921), - [anon_sym_BSLASHacp] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4924), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4924), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4930), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4933), - [anon_sym_BSLASHcolor] = ACTIONS(4936), - [anon_sym_BSLASHcolorbox] = ACTIONS(4936), - [anon_sym_BSLASHtextcolor] = ACTIONS(4936), - [anon_sym_BSLASHpagecolor] = ACTIONS(4936), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), - [anon_sym_BSLASHtext] = ACTIONS(4942), - [anon_sym_BSLASHintertext] = ACTIONS(4942), - [anon_sym_shortintertext] = ACTIONS(4942), - }, - [317] = { - [sym_block_comment] = STATE(317), - [sym__text_content] = STATE(317), - [sym_curly_group] = STATE(317), - [sym_brack_group] = STATE(317), - [sym_text] = STATE(317), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(317), - [sym_inline_formula] = STATE(317), - [sym__command] = STATE(317), - [sym_generic_command] = STATE(317), - [sym_title_declaration] = STATE(317), - [sym_author_declaration] = STATE(317), - [sym_package_include] = STATE(317), - [sym_class_include] = STATE(317), - [sym_latex_include] = STATE(317), - [sym_biblatex_include] = STATE(317), - [sym_bibtex_include] = STATE(317), - [sym_graphics_include] = STATE(317), - [sym_svg_include] = STATE(317), - [sym_inkscape_include] = STATE(317), - [sym_verbatim_include] = STATE(317), - [sym_import_include] = STATE(317), - [sym_caption] = STATE(317), - [sym_citation] = STATE(317), - [sym_label_definition] = STATE(317), - [sym_label_reference] = STATE(317), - [sym_label_reference_range] = STATE(317), - [sym_label_number] = STATE(317), - [sym_new_command_definition] = STATE(317), - [sym_old_command_definition] = STATE(317), - [sym_let_command_definition] = STATE(317), - [sym_math_delimiter] = STATE(317), - [sym_paired_delimiter_definition] = STATE(317), - [sym_environment_definition] = STATE(317), - [sym_glossary_entry_definition] = STATE(317), - [sym_glossary_entry_reference] = STATE(317), - [sym_acronym_definition] = STATE(317), - [sym_acronym_reference] = STATE(317), - [sym_theorem_definition] = STATE(317), - [sym_color_definition] = STATE(317), - [sym_color_set_definition] = STATE(317), - [sym_color_reference] = STATE(317), - [sym_tikz_library_import] = STATE(317), - [sym_text_mode] = STATE(317), - [aux_sym_text_repeat1] = STATE(348), - [aux_sym_value_repeat1] = STATE(317), - [sym_command_name] = ACTIONS(4784), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4787), - [anon_sym_LBRACK] = ACTIONS(4790), - [anon_sym_RBRACK] = ACTIONS(4793), - [anon_sym_COMMA] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4945), - [anon_sym_RPAREN] = ACTIONS(4945), - [anon_sym_LBRACE] = ACTIONS(4798), - [sym_word] = ACTIONS(4801), - [sym_placeholder] = ACTIONS(4804), - [anon_sym_PLUS] = ACTIONS(4807), - [anon_sym_DASH] = ACTIONS(4807), - [anon_sym_STAR] = ACTIONS(4807), - [anon_sym_SLASH] = ACTIONS(4807), - [anon_sym_LT] = ACTIONS(4810), - [anon_sym_GT] = ACTIONS(4810), - [anon_sym_BANG] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_COLON] = ACTIONS(4810), - [anon_sym_SQUOTE] = ACTIONS(4810), - [anon_sym__] = ACTIONS(4813), - [anon_sym_CARET] = ACTIONS(4816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4948), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4948), - [anon_sym_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4954), - [anon_sym_BSLASHtitle] = ACTIONS(4828), - [anon_sym_BSLASHauthor] = ACTIONS(4831), - [anon_sym_BSLASHusepackage] = ACTIONS(4834), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4834), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4837), - [anon_sym_BSLASHinclude] = ACTIONS(4840), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4840), - [anon_sym_BSLASHinput] = ACTIONS(4840), - [anon_sym_BSLASHsubfile] = ACTIONS(4840), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4843), - [anon_sym_BSLASHbibliography] = ACTIONS(4846), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4849), - [anon_sym_BSLASHincludesvg] = ACTIONS(4852), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4855), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4858), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4858), - [anon_sym_BSLASHimport] = ACTIONS(4861), - [anon_sym_BSLASHsubimport] = ACTIONS(4861), - [anon_sym_BSLASHinputfrom] = ACTIONS(4861), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4861), - [anon_sym_BSLASHincludefrom] = ACTIONS(4861), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4861), - [anon_sym_BSLASHcaption] = ACTIONS(4864), - [anon_sym_BSLASHcite] = ACTIONS(4867), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4870), - [anon_sym_BSLASHCite] = ACTIONS(4867), - [anon_sym_BSLASHnocite] = ACTIONS(4867), - [anon_sym_BSLASHcitet] = ACTIONS(4867), - [anon_sym_BSLASHcitep] = ACTIONS(4867), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4870), - [anon_sym_BSLASHciteauthor] = ACTIONS(4867), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4867), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4870), - [anon_sym_BSLASHcitetitle] = ACTIONS(4867), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4870), - [anon_sym_BSLASHciteyear] = ACTIONS(4867), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4870), - [anon_sym_BSLASHcitedate] = ACTIONS(4867), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4870), - [anon_sym_BSLASHciteurl] = ACTIONS(4867), - [anon_sym_BSLASHfullcite] = ACTIONS(4867), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4867), - [anon_sym_BSLASHcitealt] = ACTIONS(4867), - [anon_sym_BSLASHcitealp] = ACTIONS(4867), - [anon_sym_BSLASHcitetext] = ACTIONS(4867), - [anon_sym_BSLASHparencite] = ACTIONS(4867), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4870), - [anon_sym_BSLASHParencite] = ACTIONS(4867), - [anon_sym_BSLASHfootcite] = ACTIONS(4867), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4867), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4867), - [anon_sym_BSLASHtextcite] = ACTIONS(4867), - [anon_sym_BSLASHTextcite] = ACTIONS(4867), - [anon_sym_BSLASHsmartcite] = ACTIONS(4867), - [anon_sym_BSLASHSmartcite] = ACTIONS(4867), - [anon_sym_BSLASHsupercite] = ACTIONS(4867), - [anon_sym_BSLASHautocite] = ACTIONS(4867), - [anon_sym_BSLASHAutocite] = ACTIONS(4867), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4870), - [anon_sym_BSLASHvolcite] = ACTIONS(4867), - [anon_sym_BSLASHVolcite] = ACTIONS(4867), - [anon_sym_BSLASHpvolcite] = ACTIONS(4867), - [anon_sym_BSLASHPvolcite] = ACTIONS(4867), - [anon_sym_BSLASHfvolcite] = ACTIONS(4867), - [anon_sym_BSLASHftvolcite] = ACTIONS(4867), - [anon_sym_BSLASHsvolcite] = ACTIONS(4867), - [anon_sym_BSLASHSvolcite] = ACTIONS(4867), - [anon_sym_BSLASHtvolcite] = ACTIONS(4867), - [anon_sym_BSLASHTvolcite] = ACTIONS(4867), - [anon_sym_BSLASHavolcite] = ACTIONS(4867), - [anon_sym_BSLASHAvolcite] = ACTIONS(4867), - [anon_sym_BSLASHnotecite] = ACTIONS(4867), - [anon_sym_BSLASHNotecite] = ACTIONS(4867), - [anon_sym_BSLASHpnotecite] = ACTIONS(4867), - [anon_sym_BSLASHPnotecite] = ACTIONS(4867), - [anon_sym_BSLASHfnotecite] = ACTIONS(4867), - [anon_sym_BSLASHlabel] = ACTIONS(4873), - [anon_sym_BSLASHref] = ACTIONS(4876), - [anon_sym_BSLASHeqref] = ACTIONS(4876), - [anon_sym_BSLASHvref] = ACTIONS(4876), - [anon_sym_BSLASHVref] = ACTIONS(4876), - [anon_sym_BSLASHautoref] = ACTIONS(4876), - [anon_sym_BSLASHpageref] = ACTIONS(4876), - [anon_sym_BSLASHcref] = ACTIONS(4876), - [anon_sym_BSLASHCref] = ACTIONS(4876), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4879), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4879), - [anon_sym_BSLASHnamecref] = ACTIONS(4876), - [anon_sym_BSLASHnameCref] = ACTIONS(4876), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4876), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4876), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4876), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4876), - [anon_sym_BSLASHlabelcref] = ACTIONS(4876), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4876), - [anon_sym_BSLASHcrefrange] = ACTIONS(4882), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHCrefrange] = ACTIONS(4882), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), - [anon_sym_BSLASHnewlabel] = ACTIONS(4888), - [anon_sym_BSLASHnewcommand] = ACTIONS(4891), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4894), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4894), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4894), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4894), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4891), - [anon_sym_BSLASHdef] = ACTIONS(4897), - [anon_sym_BSLASHlet] = ACTIONS(4900), - [anon_sym_BSLASHleft] = ACTIONS(4957), - [anon_sym_BSLASHbig] = ACTIONS(4957), - [anon_sym_BSLASHBig] = ACTIONS(4957), - [anon_sym_BSLASHbigg] = ACTIONS(4957), - [anon_sym_BSLASHBigg] = ACTIONS(4957), - [anon_sym_BSLASHbigl] = ACTIONS(4957), - [anon_sym_BSLASHBigl] = ACTIONS(4957), - [anon_sym_BSLASHbiggl] = ACTIONS(4957), - [anon_sym_BSLASHBiggl] = ACTIONS(4957), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4906), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4906), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4909), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4909), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4909), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4909), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4909), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4912), - [anon_sym_BSLASHgls] = ACTIONS(4915), - [anon_sym_BSLASHGls] = ACTIONS(4915), - [anon_sym_BSLASHGLS] = ACTIONS(4915), - [anon_sym_BSLASHglspl] = ACTIONS(4915), - [anon_sym_BSLASHGlspl] = ACTIONS(4915), - [anon_sym_BSLASHGLSpl] = ACTIONS(4915), - [anon_sym_BSLASHglsdisp] = ACTIONS(4915), - [anon_sym_BSLASHglslink] = ACTIONS(4915), - [anon_sym_BSLASHglstext] = ACTIONS(4915), - [anon_sym_BSLASHGlstext] = ACTIONS(4915), - [anon_sym_BSLASHGLStext] = ACTIONS(4915), - [anon_sym_BSLASHglsfirst] = ACTIONS(4915), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4915), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4915), - [anon_sym_BSLASHglsplural] = ACTIONS(4915), - [anon_sym_BSLASHGlsplural] = ACTIONS(4915), - [anon_sym_BSLASHGLSplural] = ACTIONS(4915), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4915), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4915), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4915), - [anon_sym_BSLASHglsname] = ACTIONS(4915), - [anon_sym_BSLASHGlsname] = ACTIONS(4915), - [anon_sym_BSLASHGLSname] = ACTIONS(4915), - [anon_sym_BSLASHglssymbol] = ACTIONS(4915), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4915), - [anon_sym_BSLASHglsdesc] = ACTIONS(4915), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4915), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4915), - [anon_sym_BSLASHglsuseri] = ACTIONS(4915), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4915), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4915), - [anon_sym_BSLASHglsuserii] = ACTIONS(4915), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4915), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4915), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4915), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4915), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4915), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4915), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4915), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4915), - [anon_sym_BSLASHglsuserv] = ACTIONS(4915), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4915), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4915), - [anon_sym_BSLASHglsuservi] = ACTIONS(4915), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4915), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4915), - [anon_sym_BSLASHnewacronym] = ACTIONS(4918), - [anon_sym_BSLASHacrshort] = ACTIONS(4921), - [anon_sym_BSLASHAcrshort] = ACTIONS(4921), - [anon_sym_BSLASHACRshort] = ACTIONS(4921), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), - [anon_sym_BSLASHacrlong] = ACTIONS(4921), - [anon_sym_BSLASHAcrlong] = ACTIONS(4921), - [anon_sym_BSLASHACRlong] = ACTIONS(4921), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), - [anon_sym_BSLASHacrfull] = ACTIONS(4921), - [anon_sym_BSLASHAcrfull] = ACTIONS(4921), - [anon_sym_BSLASHACRfull] = ACTIONS(4921), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), - [anon_sym_BSLASHacs] = ACTIONS(4921), - [anon_sym_BSLASHAcs] = ACTIONS(4921), - [anon_sym_BSLASHacsp] = ACTIONS(4921), - [anon_sym_BSLASHAcsp] = ACTIONS(4921), - [anon_sym_BSLASHacl] = ACTIONS(4921), - [anon_sym_BSLASHAcl] = ACTIONS(4921), - [anon_sym_BSLASHaclp] = ACTIONS(4921), - [anon_sym_BSLASHAclp] = ACTIONS(4921), - [anon_sym_BSLASHacf] = ACTIONS(4921), - [anon_sym_BSLASHAcf] = ACTIONS(4921), - [anon_sym_BSLASHacfp] = ACTIONS(4921), - [anon_sym_BSLASHAcfp] = ACTIONS(4921), - [anon_sym_BSLASHac] = ACTIONS(4921), - [anon_sym_BSLASHAc] = ACTIONS(4921), - [anon_sym_BSLASHacp] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4924), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4924), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4930), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4933), - [anon_sym_BSLASHcolor] = ACTIONS(4936), - [anon_sym_BSLASHcolorbox] = ACTIONS(4936), - [anon_sym_BSLASHtextcolor] = ACTIONS(4936), - [anon_sym_BSLASHpagecolor] = ACTIONS(4936), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), - [anon_sym_BSLASHtext] = ACTIONS(4942), - [anon_sym_BSLASHintertext] = ACTIONS(4942), - [anon_sym_shortintertext] = ACTIONS(4942), - }, - [318] = { - [sym_block_comment] = STATE(316), - [sym__text_content] = STATE(316), - [sym_curly_group] = STATE(316), - [sym_brack_group] = STATE(316), - [sym_text] = STATE(316), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_displayed_equation] = STATE(316), - [sym_inline_formula] = STATE(316), - [sym__command] = STATE(316), - [sym_generic_command] = STATE(316), - [sym_title_declaration] = STATE(316), - [sym_author_declaration] = STATE(316), - [sym_package_include] = STATE(316), - [sym_class_include] = STATE(316), - [sym_latex_include] = STATE(316), - [sym_biblatex_include] = STATE(316), - [sym_bibtex_include] = STATE(316), - [sym_graphics_include] = STATE(316), - [sym_svg_include] = STATE(316), - [sym_inkscape_include] = STATE(316), - [sym_verbatim_include] = STATE(316), - [sym_import_include] = STATE(316), - [sym_caption] = STATE(316), - [sym_citation] = STATE(316), - [sym_label_definition] = STATE(316), - [sym_label_reference] = STATE(316), - [sym_label_reference_range] = STATE(316), - [sym_label_number] = STATE(316), - [sym_new_command_definition] = STATE(316), - [sym_old_command_definition] = STATE(316), - [sym_let_command_definition] = STATE(316), - [sym_math_delimiter] = STATE(316), - [sym_paired_delimiter_definition] = STATE(316), - [sym_environment_definition] = STATE(316), - [sym_glossary_entry_definition] = STATE(316), - [sym_glossary_entry_reference] = STATE(316), - [sym_acronym_definition] = STATE(316), - [sym_acronym_reference] = STATE(316), - [sym_theorem_definition] = STATE(316), - [sym_color_definition] = STATE(316), - [sym_color_set_definition] = STATE(316), - [sym_color_reference] = STATE(316), - [sym_tikz_library_import] = STATE(316), - [sym_text_mode] = STATE(316), - [aux_sym_text_repeat1] = STATE(348), - [aux_sym_value_repeat1] = STATE(316), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4770), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4960), - [anon_sym_RPAREN] = ACTIONS(4960), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4772), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4962), - [anon_sym_DOLLAR] = ACTIONS(4964), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4966), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4968), - [anon_sym_BSLASHbig] = ACTIONS(4968), - [anon_sym_BSLASHBig] = ACTIONS(4968), - [anon_sym_BSLASHbigg] = ACTIONS(4968), - [anon_sym_BSLASHBigg] = ACTIONS(4968), - [anon_sym_BSLASHbigl] = ACTIONS(4968), - [anon_sym_BSLASHBigl] = ACTIONS(4968), - [anon_sym_BSLASHbiggl] = ACTIONS(4968), - [anon_sym_BSLASHBiggl] = ACTIONS(4968), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [319] = { - [sym_block_comment] = STATE(318), - [sym__text_content] = STATE(318), - [sym_curly_group] = STATE(318), - [sym_brack_group] = STATE(318), - [sym_text] = STATE(318), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_value] = STATE(2365), - [sym_displayed_equation] = STATE(318), - [sym_inline_formula] = STATE(318), - [sym__command] = STATE(318), - [sym_generic_command] = STATE(318), - [sym_title_declaration] = STATE(318), - [sym_author_declaration] = STATE(318), - [sym_package_include] = STATE(318), - [sym_class_include] = STATE(318), - [sym_latex_include] = STATE(318), - [sym_biblatex_include] = STATE(318), - [sym_bibtex_include] = STATE(318), - [sym_graphics_include] = STATE(318), - [sym_svg_include] = STATE(318), - [sym_inkscape_include] = STATE(318), - [sym_verbatim_include] = STATE(318), - [sym_import_include] = STATE(318), - [sym_caption] = STATE(318), - [sym_citation] = STATE(318), - [sym_label_definition] = STATE(318), - [sym_label_reference] = STATE(318), - [sym_label_reference_range] = STATE(318), - [sym_label_number] = STATE(318), - [sym_new_command_definition] = STATE(318), - [sym_old_command_definition] = STATE(318), - [sym_let_command_definition] = STATE(318), - [sym_math_delimiter] = STATE(318), - [sym_paired_delimiter_definition] = STATE(318), - [sym_environment_definition] = STATE(318), - [sym_glossary_entry_definition] = STATE(318), - [sym_glossary_entry_reference] = STATE(318), - [sym_acronym_definition] = STATE(318), - [sym_acronym_reference] = STATE(318), - [sym_theorem_definition] = STATE(318), - [sym_color_definition] = STATE(318), - [sym_color_set_definition] = STATE(318), - [sym_color_reference] = STATE(318), - [sym_tikz_library_import] = STATE(318), - [sym_text_mode] = STATE(318), - [aux_sym_text_repeat1] = STATE(348), - [aux_sym_value_repeat1] = STATE(318), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4770), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_LBRACE] = ACTIONS(4344), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4962), - [anon_sym_DOLLAR] = ACTIONS(4964), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4966), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4968), - [anon_sym_BSLASHbig] = ACTIONS(4968), - [anon_sym_BSLASHBig] = ACTIONS(4968), - [anon_sym_BSLASHbigg] = ACTIONS(4968), - [anon_sym_BSLASHBigg] = ACTIONS(4968), - [anon_sym_BSLASHbigl] = ACTIONS(4968), - [anon_sym_BSLASHBigl] = ACTIONS(4968), - [anon_sym_BSLASHbiggl] = ACTIONS(4968), - [anon_sym_BSLASHBiggl] = ACTIONS(4968), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [320] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(331), - [aux_sym_curly_group_author_list_repeat2] = STATE(2336), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(4980), - [anon_sym_BSLASHand] = ACTIONS(4982), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [321] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(331), - [aux_sym_curly_group_author_list_repeat2] = STATE(2367), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5080), - [anon_sym_BSLASHand] = ACTIONS(4982), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [322] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(331), - [aux_sym_curly_group_author_list_repeat2] = STATE(2321), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5082), - [anon_sym_BSLASHand] = ACTIONS(4982), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [323] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(331), - [aux_sym_curly_group_author_list_repeat2] = STATE(2404), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5084), - [anon_sym_BSLASHand] = ACTIONS(4982), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [324] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(331), - [aux_sym_curly_group_author_list_repeat2] = STATE(2329), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5086), - [anon_sym_BSLASHand] = ACTIONS(4982), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [325] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(331), - [aux_sym_curly_group_author_list_repeat2] = STATE(2342), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5088), - [anon_sym_BSLASHand] = ACTIONS(4982), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [326] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(331), - [aux_sym_curly_group_author_list_repeat2] = STATE(2406), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5090), - [anon_sym_BSLASHand] = ACTIONS(4982), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [327] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(331), - [aux_sym_curly_group_author_list_repeat2] = STATE(2307), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5092), - [anon_sym_BSLASHand] = ACTIONS(4982), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [328] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(331), - [aux_sym_curly_group_author_list_repeat2] = STATE(2382), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5094), - [anon_sym_BSLASHand] = ACTIONS(4982), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [329] = { - [sym_block_comment] = STATE(315), - [sym__text_content] = STATE(315), - [sym_curly_group] = STATE(315), - [sym_brack_group] = STATE(315), - [sym_text] = STATE(315), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym_value] = STATE(2365), - [sym_displayed_equation] = STATE(315), - [sym_inline_formula] = STATE(315), - [sym__command] = STATE(315), - [sym_generic_command] = STATE(315), - [sym_title_declaration] = STATE(315), - [sym_author_declaration] = STATE(315), - [sym_package_include] = STATE(315), - [sym_class_include] = STATE(315), - [sym_latex_include] = STATE(315), - [sym_biblatex_include] = STATE(315), - [sym_bibtex_include] = STATE(315), - [sym_graphics_include] = STATE(315), - [sym_svg_include] = STATE(315), - [sym_inkscape_include] = STATE(315), - [sym_verbatim_include] = STATE(315), - [sym_import_include] = STATE(315), - [sym_caption] = STATE(315), - [sym_citation] = STATE(315), - [sym_label_definition] = STATE(315), - [sym_label_reference] = STATE(315), - [sym_label_reference_range] = STATE(315), - [sym_label_number] = STATE(315), - [sym_new_command_definition] = STATE(315), - [sym_old_command_definition] = STATE(315), - [sym_let_command_definition] = STATE(315), - [sym_math_delimiter] = STATE(315), - [sym_paired_delimiter_definition] = STATE(315), - [sym_environment_definition] = STATE(315), - [sym_glossary_entry_definition] = STATE(315), - [sym_glossary_entry_reference] = STATE(315), - [sym_acronym_definition] = STATE(315), - [sym_acronym_reference] = STATE(315), - [sym_theorem_definition] = STATE(315), - [sym_color_definition] = STATE(315), - [sym_color_set_definition] = STATE(315), - [sym_color_reference] = STATE(315), - [sym_tikz_library_import] = STATE(315), - [sym_text_mode] = STATE(315), - [aux_sym_text_repeat1] = STATE(348), - [aux_sym_value_repeat1] = STATE(315), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4770), - [anon_sym_LPAREN] = ACTIONS(5096), - [anon_sym_RPAREN] = ACTIONS(5096), - [anon_sym_LBRACE] = ACTIONS(4344), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4776), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4776), - [anon_sym_DOLLAR] = ACTIONS(4778), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4780), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(4782), - [anon_sym_BSLASHbig] = ACTIONS(4782), - [anon_sym_BSLASHBig] = ACTIONS(4782), - [anon_sym_BSLASHbigg] = ACTIONS(4782), - [anon_sym_BSLASHBigg] = ACTIONS(4782), - [anon_sym_BSLASHbigl] = ACTIONS(4782), - [anon_sym_BSLASHBigl] = ACTIONS(4782), - [anon_sym_BSLASHbiggl] = ACTIONS(4782), - [anon_sym_BSLASHBiggl] = ACTIONS(4782), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(4442), - [anon_sym_BSLASHintertext] = ACTIONS(4442), - [anon_sym_shortintertext] = ACTIONS(4442), - }, - [330] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(331), - [aux_sym_curly_group_author_list_repeat2] = STATE(2400), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5098), - [anon_sym_BSLASHand] = ACTIONS(4982), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [331] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(331), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(5100), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5103), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_RPAREN] = ACTIONS(5106), - [anon_sym_LBRACE] = ACTIONS(5109), - [anon_sym_RBRACE] = ACTIONS(5112), - [anon_sym_BSLASHand] = ACTIONS(5114), - [sym_word] = ACTIONS(5116), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5122), - [anon_sym_DASH] = ACTIONS(5122), - [anon_sym_STAR] = ACTIONS(5122), - [anon_sym_SLASH] = ACTIONS(5122), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5128), - [anon_sym_CARET] = ACTIONS(5131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5134), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5134), - [anon_sym_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5140), - [anon_sym_BSLASHtitle] = ACTIONS(5143), - [anon_sym_BSLASHauthor] = ACTIONS(5146), - [anon_sym_BSLASHusepackage] = ACTIONS(5149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5152), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5158), - [anon_sym_BSLASHbibliography] = ACTIONS(5161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5164), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5170), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5173), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5173), - [anon_sym_BSLASHimport] = ACTIONS(5176), - [anon_sym_BSLASHsubimport] = ACTIONS(5176), - [anon_sym_BSLASHinputfrom] = ACTIONS(5176), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5176), - [anon_sym_BSLASHincludefrom] = ACTIONS(5176), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5176), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5182), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5185), - [anon_sym_BSLASHCite] = ACTIONS(5182), - [anon_sym_BSLASHnocite] = ACTIONS(5182), - [anon_sym_BSLASHcitet] = ACTIONS(5182), - [anon_sym_BSLASHcitep] = ACTIONS(5182), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor] = ACTIONS(5182), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5182), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle] = ACTIONS(5182), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5185), - [anon_sym_BSLASHciteyear] = ACTIONS(5182), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5185), - [anon_sym_BSLASHcitedate] = ACTIONS(5182), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5185), - [anon_sym_BSLASHciteurl] = ACTIONS(5182), - [anon_sym_BSLASHfullcite] = ACTIONS(5182), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5182), - [anon_sym_BSLASHcitealt] = ACTIONS(5182), - [anon_sym_BSLASHcitealp] = ACTIONS(5182), - [anon_sym_BSLASHcitetext] = ACTIONS(5182), - [anon_sym_BSLASHparencite] = ACTIONS(5182), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5185), - [anon_sym_BSLASHParencite] = ACTIONS(5182), - [anon_sym_BSLASHfootcite] = ACTIONS(5182), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5182), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5182), - [anon_sym_BSLASHtextcite] = ACTIONS(5182), - [anon_sym_BSLASHTextcite] = ACTIONS(5182), - [anon_sym_BSLASHsmartcite] = ACTIONS(5182), - [anon_sym_BSLASHSmartcite] = ACTIONS(5182), - [anon_sym_BSLASHsupercite] = ACTIONS(5182), - [anon_sym_BSLASHautocite] = ACTIONS(5182), - [anon_sym_BSLASHAutocite] = ACTIONS(5182), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5185), - [anon_sym_BSLASHvolcite] = ACTIONS(5182), - [anon_sym_BSLASHVolcite] = ACTIONS(5182), - [anon_sym_BSLASHpvolcite] = ACTIONS(5182), - [anon_sym_BSLASHPvolcite] = ACTIONS(5182), - [anon_sym_BSLASHfvolcite] = ACTIONS(5182), - [anon_sym_BSLASHftvolcite] = ACTIONS(5182), - [anon_sym_BSLASHsvolcite] = ACTIONS(5182), - [anon_sym_BSLASHSvolcite] = ACTIONS(5182), - [anon_sym_BSLASHtvolcite] = ACTIONS(5182), - [anon_sym_BSLASHTvolcite] = ACTIONS(5182), - [anon_sym_BSLASHavolcite] = ACTIONS(5182), - [anon_sym_BSLASHAvolcite] = ACTIONS(5182), - [anon_sym_BSLASHnotecite] = ACTIONS(5182), - [anon_sym_BSLASHNotecite] = ACTIONS(5182), - [anon_sym_BSLASHpnotecite] = ACTIONS(5182), - [anon_sym_BSLASHPnotecite] = ACTIONS(5182), - [anon_sym_BSLASHfnotecite] = ACTIONS(5182), - [anon_sym_BSLASHlabel] = ACTIONS(5188), - [anon_sym_BSLASHref] = ACTIONS(5191), - [anon_sym_BSLASHeqref] = ACTIONS(5191), - [anon_sym_BSLASHvref] = ACTIONS(5191), - [anon_sym_BSLASHVref] = ACTIONS(5191), - [anon_sym_BSLASHautoref] = ACTIONS(5191), - [anon_sym_BSLASHpageref] = ACTIONS(5191), - [anon_sym_BSLASHcref] = ACTIONS(5191), - [anon_sym_BSLASHCref] = ACTIONS(5191), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5194), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5194), - [anon_sym_BSLASHnamecref] = ACTIONS(5191), - [anon_sym_BSLASHnameCref] = ACTIONS(5191), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5191), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5191), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5191), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5191), - [anon_sym_BSLASHlabelcref] = ACTIONS(5191), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5191), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5200), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5200), - [anon_sym_BSLASHnewlabel] = ACTIONS(5203), - [anon_sym_BSLASHnewcommand] = ACTIONS(5206), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5206), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5206), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5206), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5209), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5206), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5206), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5206), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5206), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5206), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5206), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5206), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5206), - [anon_sym_BSLASHdef] = ACTIONS(5212), - [anon_sym_BSLASHlet] = ACTIONS(5215), - [anon_sym_BSLASHleft] = ACTIONS(5218), - [anon_sym_BSLASHbig] = ACTIONS(5218), - [anon_sym_BSLASHBig] = ACTIONS(5218), - [anon_sym_BSLASHbigg] = ACTIONS(5218), - [anon_sym_BSLASHBigg] = ACTIONS(5218), - [anon_sym_BSLASHbigl] = ACTIONS(5218), - [anon_sym_BSLASHBigl] = ACTIONS(5218), - [anon_sym_BSLASHbiggl] = ACTIONS(5218), - [anon_sym_BSLASHBiggl] = ACTIONS(5218), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5224), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5224), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5224), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5224), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5224), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5224), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5227), - [anon_sym_BSLASHgls] = ACTIONS(5230), - [anon_sym_BSLASHGls] = ACTIONS(5230), - [anon_sym_BSLASHGLS] = ACTIONS(5230), - [anon_sym_BSLASHglspl] = ACTIONS(5230), - [anon_sym_BSLASHGlspl] = ACTIONS(5230), - [anon_sym_BSLASHGLSpl] = ACTIONS(5230), - [anon_sym_BSLASHglsdisp] = ACTIONS(5230), - [anon_sym_BSLASHglslink] = ACTIONS(5230), - [anon_sym_BSLASHglstext] = ACTIONS(5230), - [anon_sym_BSLASHGlstext] = ACTIONS(5230), - [anon_sym_BSLASHGLStext] = ACTIONS(5230), - [anon_sym_BSLASHglsfirst] = ACTIONS(5230), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5230), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5230), - [anon_sym_BSLASHglsplural] = ACTIONS(5230), - [anon_sym_BSLASHGlsplural] = ACTIONS(5230), - [anon_sym_BSLASHGLSplural] = ACTIONS(5230), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5230), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5230), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5230), - [anon_sym_BSLASHglsname] = ACTIONS(5230), - [anon_sym_BSLASHGlsname] = ACTIONS(5230), - [anon_sym_BSLASHGLSname] = ACTIONS(5230), - [anon_sym_BSLASHglssymbol] = ACTIONS(5230), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5230), - [anon_sym_BSLASHglsdesc] = ACTIONS(5230), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5230), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5230), - [anon_sym_BSLASHglsuseri] = ACTIONS(5230), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5230), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5230), - [anon_sym_BSLASHglsuserii] = ACTIONS(5230), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5230), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5230), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5230), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5230), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5230), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5230), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5230), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5230), - [anon_sym_BSLASHglsuserv] = ACTIONS(5230), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5230), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5230), - [anon_sym_BSLASHglsuservi] = ACTIONS(5230), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5230), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5230), - [anon_sym_BSLASHnewacronym] = ACTIONS(5233), - [anon_sym_BSLASHacrshort] = ACTIONS(5236), - [anon_sym_BSLASHAcrshort] = ACTIONS(5236), - [anon_sym_BSLASHACRshort] = ACTIONS(5236), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5236), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5236), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5236), - [anon_sym_BSLASHacrlong] = ACTIONS(5236), - [anon_sym_BSLASHAcrlong] = ACTIONS(5236), - [anon_sym_BSLASHACRlong] = ACTIONS(5236), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5236), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5236), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5236), - [anon_sym_BSLASHacrfull] = ACTIONS(5236), - [anon_sym_BSLASHAcrfull] = ACTIONS(5236), - [anon_sym_BSLASHACRfull] = ACTIONS(5236), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5236), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5236), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5236), - [anon_sym_BSLASHacs] = ACTIONS(5236), - [anon_sym_BSLASHAcs] = ACTIONS(5236), - [anon_sym_BSLASHacsp] = ACTIONS(5236), - [anon_sym_BSLASHAcsp] = ACTIONS(5236), - [anon_sym_BSLASHacl] = ACTIONS(5236), - [anon_sym_BSLASHAcl] = ACTIONS(5236), - [anon_sym_BSLASHaclp] = ACTIONS(5236), - [anon_sym_BSLASHAclp] = ACTIONS(5236), - [anon_sym_BSLASHacf] = ACTIONS(5236), - [anon_sym_BSLASHAcf] = ACTIONS(5236), - [anon_sym_BSLASHacfp] = ACTIONS(5236), - [anon_sym_BSLASHAcfp] = ACTIONS(5236), - [anon_sym_BSLASHac] = ACTIONS(5236), - [anon_sym_BSLASHAc] = ACTIONS(5236), - [anon_sym_BSLASHacp] = ACTIONS(5236), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5236), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5236), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5236), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5236), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5236), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5236), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5236), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5236), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5236), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5236), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5242), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5242), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5248), - [anon_sym_BSLASHcolor] = ACTIONS(5251), - [anon_sym_BSLASHcolorbox] = ACTIONS(5251), - [anon_sym_BSLASHtextcolor] = ACTIONS(5251), - [anon_sym_BSLASHpagecolor] = ACTIONS(5251), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5254), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5254), - [anon_sym_BSLASHtext] = ACTIONS(5257), - [anon_sym_BSLASHintertext] = ACTIONS(5257), - [anon_sym_shortintertext] = ACTIONS(5257), - }, - [332] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(331), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5260), - [anon_sym_BSLASHand] = ACTIONS(5262), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [333] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(321), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5264), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [334] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(326), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5266), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [335] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(324), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5268), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [336] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(328), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5270), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [337] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(330), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5272), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [338] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(327), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5274), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [339] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(323), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5276), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [340] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(322), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5278), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [341] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(320), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5280), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [342] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(325), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5282), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [343] = { - [sym_block_comment] = STATE(1844), - [sym__text_content] = STATE(1844), - [sym_curly_group] = STATE(1844), - [sym_text] = STATE(1844), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym_displayed_equation] = STATE(1844), - [sym_inline_formula] = STATE(1844), - [sym__command] = STATE(1844), - [sym_generic_command] = STATE(1844), - [sym_title_declaration] = STATE(1844), - [sym_author_declaration] = STATE(1844), - [sym_package_include] = STATE(1844), - [sym_class_include] = STATE(1844), - [sym_latex_include] = STATE(1844), - [sym_biblatex_include] = STATE(1844), - [sym_bibtex_include] = STATE(1844), - [sym_graphics_include] = STATE(1844), - [sym_svg_include] = STATE(1844), - [sym_inkscape_include] = STATE(1844), - [sym_verbatim_include] = STATE(1844), - [sym_import_include] = STATE(1844), - [sym_caption] = STATE(1844), - [sym_citation] = STATE(1844), - [sym_label_definition] = STATE(1844), - [sym_label_reference] = STATE(1844), - [sym_label_reference_range] = STATE(1844), - [sym_label_number] = STATE(1844), - [sym_new_command_definition] = STATE(1844), - [sym_old_command_definition] = STATE(1844), - [sym_let_command_definition] = STATE(1844), - [sym_math_delimiter] = STATE(1844), - [sym_paired_delimiter_definition] = STATE(1844), - [sym_environment_definition] = STATE(1844), - [sym_glossary_entry_definition] = STATE(1844), - [sym_glossary_entry_reference] = STATE(1844), - [sym_acronym_definition] = STATE(1844), - [sym_acronym_reference] = STATE(1844), - [sym_theorem_definition] = STATE(1844), - [sym_color_definition] = STATE(1844), - [sym_color_set_definition] = STATE(1844), - [sym_color_reference] = STATE(1844), - [sym_tikz_library_import] = STATE(1844), - [sym_text_mode] = STATE(1844), - [aux_sym_curly_group_author_list_repeat1] = STATE(332), - [aux_sym_text_repeat1] = STATE(350), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4976), - [anon_sym_RPAREN] = ACTIONS(4976), - [anon_sym_LBRACE] = ACTIONS(4978), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4996), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5000), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(5052), - [anon_sym_BSLASHbig] = ACTIONS(5052), - [anon_sym_BSLASHBig] = ACTIONS(5052), - [anon_sym_BSLASHbigg] = ACTIONS(5052), - [anon_sym_BSLASHBigg] = ACTIONS(5052), - [anon_sym_BSLASHbigl] = ACTIONS(5052), - [anon_sym_BSLASHBigl] = ACTIONS(5052), - [anon_sym_BSLASHbiggl] = ACTIONS(5052), - [anon_sym_BSLASHBiggl] = ACTIONS(5052), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(5078), - [anon_sym_BSLASHintertext] = ACTIONS(5078), - [anon_sym_shortintertext] = ACTIONS(5078), - }, - [344] = { - [sym_block_comment] = STATE(1534), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym__command] = STATE(1534), - [sym_generic_command] = STATE(1534), - [sym_title_declaration] = STATE(1534), - [sym_author_declaration] = STATE(1534), - [sym_package_include] = STATE(1534), - [sym_class_include] = STATE(1534), - [sym_latex_include] = STATE(1534), - [sym_biblatex_include] = STATE(1534), - [sym_bibtex_include] = STATE(1534), - [sym_graphics_include] = STATE(1534), - [sym_svg_include] = STATE(1534), - [sym_inkscape_include] = STATE(1534), - [sym_verbatim_include] = STATE(1534), - [sym_import_include] = STATE(1534), - [sym_caption] = STATE(1534), - [sym_citation] = STATE(1534), - [sym_label_definition] = STATE(1534), - [sym_label_reference] = STATE(1534), - [sym_label_reference_range] = STATE(1534), - [sym_label_number] = STATE(1534), - [sym_new_command_definition] = STATE(1534), - [sym_old_command_definition] = STATE(1534), - [sym_let_command_definition] = STATE(1534), - [sym_paired_delimiter_definition] = STATE(1534), - [sym_environment_definition] = STATE(1534), - [sym_glossary_entry_definition] = STATE(1534), - [sym_glossary_entry_reference] = STATE(1534), - [sym_acronym_definition] = STATE(1534), - [sym_acronym_reference] = STATE(1534), - [sym_theorem_definition] = STATE(1534), - [sym_color_definition] = STATE(1534), - [sym_color_set_definition] = STATE(1534), - [sym_color_reference] = STATE(1534), - [sym_tikz_library_import] = STATE(1534), - [aux_sym_text_repeat1] = STATE(345), - [sym_command_name] = ACTIONS(3222), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3079), - [sym_word] = ACTIONS(3230), - [sym_placeholder] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_GT] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_PIPE] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym__] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3240), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3079), - [anon_sym_DOLLAR] = ACTIONS(3081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3079), - [anon_sym_BSLASHbegin] = ACTIONS(3081), - [anon_sym_BSLASHend] = ACTIONS(3081), - [anon_sym_BSLASHtitle] = ACTIONS(3250), - [anon_sym_BSLASHauthor] = ACTIONS(3252), - [anon_sym_BSLASHusepackage] = ACTIONS(3254), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3254), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3256), - [anon_sym_BSLASHinclude] = ACTIONS(3258), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3258), - [anon_sym_BSLASHinput] = ACTIONS(3258), - [anon_sym_BSLASHsubfile] = ACTIONS(3258), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3260), - [anon_sym_BSLASHbibliography] = ACTIONS(3262), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3264), - [anon_sym_BSLASHincludesvg] = ACTIONS(3266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3268), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3270), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3270), - [anon_sym_BSLASHimport] = ACTIONS(3272), - [anon_sym_BSLASHsubimport] = ACTIONS(3272), - [anon_sym_BSLASHinputfrom] = ACTIONS(3272), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3272), - [anon_sym_BSLASHincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3272), - [anon_sym_BSLASHcaption] = ACTIONS(3274), - [anon_sym_BSLASHcite] = ACTIONS(3276), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCite] = ACTIONS(3276), - [anon_sym_BSLASHnocite] = ACTIONS(3276), - [anon_sym_BSLASHcitet] = ACTIONS(3276), - [anon_sym_BSLASHcitep] = ACTIONS(3276), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteauthor] = ACTIONS(3276), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3276), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitetitle] = ACTIONS(3276), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteyear] = ACTIONS(3276), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3278), - [anon_sym_BSLASHcitedate] = ACTIONS(3276), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3278), - [anon_sym_BSLASHciteurl] = ACTIONS(3276), - [anon_sym_BSLASHfullcite] = ACTIONS(3276), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3276), - [anon_sym_BSLASHcitealt] = ACTIONS(3276), - [anon_sym_BSLASHcitealp] = ACTIONS(3276), - [anon_sym_BSLASHcitetext] = ACTIONS(3276), - [anon_sym_BSLASHparencite] = ACTIONS(3276), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHParencite] = ACTIONS(3276), - [anon_sym_BSLASHfootcite] = ACTIONS(3276), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3276), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3276), - [anon_sym_BSLASHtextcite] = ACTIONS(3276), - [anon_sym_BSLASHTextcite] = ACTIONS(3276), - [anon_sym_BSLASHsmartcite] = ACTIONS(3276), - [anon_sym_BSLASHSmartcite] = ACTIONS(3276), - [anon_sym_BSLASHsupercite] = ACTIONS(3276), - [anon_sym_BSLASHautocite] = ACTIONS(3276), - [anon_sym_BSLASHAutocite] = ACTIONS(3276), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3278), - [anon_sym_BSLASHvolcite] = ACTIONS(3276), - [anon_sym_BSLASHVolcite] = ACTIONS(3276), - [anon_sym_BSLASHpvolcite] = ACTIONS(3276), - [anon_sym_BSLASHPvolcite] = ACTIONS(3276), - [anon_sym_BSLASHfvolcite] = ACTIONS(3276), - [anon_sym_BSLASHftvolcite] = ACTIONS(3276), - [anon_sym_BSLASHsvolcite] = ACTIONS(3276), - [anon_sym_BSLASHSvolcite] = ACTIONS(3276), - [anon_sym_BSLASHtvolcite] = ACTIONS(3276), - [anon_sym_BSLASHTvolcite] = ACTIONS(3276), - [anon_sym_BSLASHavolcite] = ACTIONS(3276), - [anon_sym_BSLASHAvolcite] = ACTIONS(3276), - [anon_sym_BSLASHnotecite] = ACTIONS(3276), - [anon_sym_BSLASHNotecite] = ACTIONS(3276), - [anon_sym_BSLASHpnotecite] = ACTIONS(3276), - [anon_sym_BSLASHPnotecite] = ACTIONS(3276), - [anon_sym_BSLASHfnotecite] = ACTIONS(3276), - [anon_sym_BSLASHlabel] = ACTIONS(3280), - [anon_sym_BSLASHref] = ACTIONS(3282), - [anon_sym_BSLASHeqref] = ACTIONS(3282), - [anon_sym_BSLASHvref] = ACTIONS(3282), - [anon_sym_BSLASHVref] = ACTIONS(3282), - [anon_sym_BSLASHautoref] = ACTIONS(3282), - [anon_sym_BSLASHpageref] = ACTIONS(3282), - [anon_sym_BSLASHcref] = ACTIONS(3282), - [anon_sym_BSLASHCref] = ACTIONS(3282), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3284), - [anon_sym_BSLASHnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnameCref] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3282), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3282), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3282), - [anon_sym_BSLASHlabelcref] = ACTIONS(3282), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3282), - [anon_sym_BSLASHcrefrange] = ACTIONS(3286), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHCrefrange] = ACTIONS(3286), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3288), - [anon_sym_BSLASHnewlabel] = ACTIONS(3290), - [anon_sym_BSLASHnewcommand] = ACTIONS(3292), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3292), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3294), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3292), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3294), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3292), - [anon_sym_BSLASHdef] = ACTIONS(3296), - [anon_sym_BSLASHlet] = ACTIONS(3298), - [anon_sym_BSLASHleft] = ACTIONS(3081), - [anon_sym_BSLASHbig] = ACTIONS(3081), - [anon_sym_BSLASHBig] = ACTIONS(3081), - [anon_sym_BSLASHbigg] = ACTIONS(3081), - [anon_sym_BSLASHBigg] = ACTIONS(3081), - [anon_sym_BSLASHbigl] = ACTIONS(3081), - [anon_sym_BSLASHBigl] = ACTIONS(3081), - [anon_sym_BSLASHbiggl] = ACTIONS(3081), - [anon_sym_BSLASHBiggl] = ACTIONS(3081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3302), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3302), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3304), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3304), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3306), - [anon_sym_BSLASHgls] = ACTIONS(3308), - [anon_sym_BSLASHGls] = ACTIONS(3308), - [anon_sym_BSLASHGLS] = ACTIONS(3308), - [anon_sym_BSLASHglspl] = ACTIONS(3308), - [anon_sym_BSLASHGlspl] = ACTIONS(3308), - [anon_sym_BSLASHGLSpl] = ACTIONS(3308), - [anon_sym_BSLASHglsdisp] = ACTIONS(3308), - [anon_sym_BSLASHglslink] = ACTIONS(3308), - [anon_sym_BSLASHglstext] = ACTIONS(3308), - [anon_sym_BSLASHGlstext] = ACTIONS(3308), - [anon_sym_BSLASHGLStext] = ACTIONS(3308), - [anon_sym_BSLASHglsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3308), - [anon_sym_BSLASHglsplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSplural] = ACTIONS(3308), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3308), - [anon_sym_BSLASHglsname] = ACTIONS(3308), - [anon_sym_BSLASHGlsname] = ACTIONS(3308), - [anon_sym_BSLASHGLSname] = ACTIONS(3308), - [anon_sym_BSLASHglssymbol] = ACTIONS(3308), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3308), - [anon_sym_BSLASHglsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3308), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3308), - [anon_sym_BSLASHglsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3308), - [anon_sym_BSLASHglsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3308), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3308), - [anon_sym_BSLASHglsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3308), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3308), - [anon_sym_BSLASHglsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3308), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3308), - [anon_sym_BSLASHnewacronym] = ACTIONS(3310), - [anon_sym_BSLASHacrshort] = ACTIONS(3312), - [anon_sym_BSLASHAcrshort] = ACTIONS(3312), - [anon_sym_BSLASHACRshort] = ACTIONS(3312), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3312), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3312), - [anon_sym_BSLASHacrlong] = ACTIONS(3312), - [anon_sym_BSLASHAcrlong] = ACTIONS(3312), - [anon_sym_BSLASHACRlong] = ACTIONS(3312), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3312), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3312), - [anon_sym_BSLASHacrfull] = ACTIONS(3312), - [anon_sym_BSLASHAcrfull] = ACTIONS(3312), - [anon_sym_BSLASHACRfull] = ACTIONS(3312), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3312), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3312), - [anon_sym_BSLASHacs] = ACTIONS(3312), - [anon_sym_BSLASHAcs] = ACTIONS(3312), - [anon_sym_BSLASHacsp] = ACTIONS(3312), - [anon_sym_BSLASHAcsp] = ACTIONS(3312), - [anon_sym_BSLASHacl] = ACTIONS(3312), - [anon_sym_BSLASHAcl] = ACTIONS(3312), - [anon_sym_BSLASHaclp] = ACTIONS(3312), - [anon_sym_BSLASHAclp] = ACTIONS(3312), - [anon_sym_BSLASHacf] = ACTIONS(3312), - [anon_sym_BSLASHAcf] = ACTIONS(3312), - [anon_sym_BSLASHacfp] = ACTIONS(3312), - [anon_sym_BSLASHAcfp] = ACTIONS(3312), - [anon_sym_BSLASHac] = ACTIONS(3312), - [anon_sym_BSLASHAc] = ACTIONS(3312), - [anon_sym_BSLASHacp] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3312), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3312), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3312), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3312), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3314), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3314), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3316), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3320), - [anon_sym_BSLASHcolor] = ACTIONS(3322), - [anon_sym_BSLASHcolorbox] = ACTIONS(3322), - [anon_sym_BSLASHtextcolor] = ACTIONS(3322), - [anon_sym_BSLASHpagecolor] = ACTIONS(3322), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3324), - [anon_sym_BSLASHtext] = ACTIONS(3081), - [anon_sym_BSLASHintertext] = ACTIONS(3081), - [anon_sym_shortintertext] = ACTIONS(3081), - }, - [345] = { - [sym_block_comment] = STATE(1534), - [sym_operator] = STATE(1534), - [sym_subscript] = STATE(1534), - [sym_superscript] = STATE(1534), - [sym__command] = STATE(1534), - [sym_generic_command] = STATE(1534), - [sym_title_declaration] = STATE(1534), - [sym_author_declaration] = STATE(1534), - [sym_package_include] = STATE(1534), - [sym_class_include] = STATE(1534), - [sym_latex_include] = STATE(1534), - [sym_biblatex_include] = STATE(1534), - [sym_bibtex_include] = STATE(1534), - [sym_graphics_include] = STATE(1534), - [sym_svg_include] = STATE(1534), - [sym_inkscape_include] = STATE(1534), - [sym_verbatim_include] = STATE(1534), - [sym_import_include] = STATE(1534), - [sym_caption] = STATE(1534), - [sym_citation] = STATE(1534), - [sym_label_definition] = STATE(1534), - [sym_label_reference] = STATE(1534), - [sym_label_reference_range] = STATE(1534), - [sym_label_number] = STATE(1534), - [sym_new_command_definition] = STATE(1534), - [sym_old_command_definition] = STATE(1534), - [sym_let_command_definition] = STATE(1534), - [sym_paired_delimiter_definition] = STATE(1534), - [sym_environment_definition] = STATE(1534), - [sym_glossary_entry_definition] = STATE(1534), - [sym_glossary_entry_reference] = STATE(1534), - [sym_acronym_definition] = STATE(1534), - [sym_acronym_reference] = STATE(1534), - [sym_theorem_definition] = STATE(1534), - [sym_color_definition] = STATE(1534), - [sym_color_set_definition] = STATE(1534), - [sym_color_reference] = STATE(1534), - [sym_tikz_library_import] = STATE(1534), - [aux_sym_text_repeat1] = STATE(345), - [sym_command_name] = ACTIONS(5284), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [sym_word] = ACTIONS(5290), - [sym_placeholder] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(5296), - [anon_sym_DASH] = ACTIONS(5296), - [anon_sym_STAR] = ACTIONS(5296), - [anon_sym_SLASH] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5302), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3089), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3089), - [anon_sym_BSLASHbegin] = ACTIONS(3091), - [anon_sym_BSLASHend] = ACTIONS(3091), - [anon_sym_BSLASHtitle] = ACTIONS(5308), - [anon_sym_BSLASHauthor] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5314), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5314), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), - [anon_sym_BSLASHinclude] = ACTIONS(5320), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5320), - [anon_sym_BSLASHinput] = ACTIONS(5320), - [anon_sym_BSLASHsubfile] = ACTIONS(5320), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), - [anon_sym_BSLASHbibliography] = ACTIONS(5326), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5329), - [anon_sym_BSLASHincludesvg] = ACTIONS(5332), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5335), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5338), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5338), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5344), - [anon_sym_BSLASHcite] = ACTIONS(5347), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5350), - [anon_sym_BSLASHCite] = ACTIONS(5347), - [anon_sym_BSLASHnocite] = ACTIONS(5347), - [anon_sym_BSLASHcitet] = ACTIONS(5347), - [anon_sym_BSLASHcitep] = ACTIONS(5347), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5350), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5350), - [anon_sym_BSLASHciteauthor] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5350), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5350), - [anon_sym_BSLASHcitetitle] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5350), - [anon_sym_BSLASHciteyear] = ACTIONS(5347), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5350), - [anon_sym_BSLASHcitedate] = ACTIONS(5347), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5350), - [anon_sym_BSLASHciteurl] = ACTIONS(5347), - [anon_sym_BSLASHfullcite] = ACTIONS(5347), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5347), - [anon_sym_BSLASHcitealt] = ACTIONS(5347), - [anon_sym_BSLASHcitealp] = ACTIONS(5347), - [anon_sym_BSLASHcitetext] = ACTIONS(5347), - [anon_sym_BSLASHparencite] = ACTIONS(5347), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5350), - [anon_sym_BSLASHParencite] = ACTIONS(5347), - [anon_sym_BSLASHfootcite] = ACTIONS(5347), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5347), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5347), - [anon_sym_BSLASHtextcite] = ACTIONS(5347), - [anon_sym_BSLASHTextcite] = ACTIONS(5347), - [anon_sym_BSLASHsmartcite] = ACTIONS(5347), - [anon_sym_BSLASHSmartcite] = ACTIONS(5347), - [anon_sym_BSLASHsupercite] = ACTIONS(5347), - [anon_sym_BSLASHautocite] = ACTIONS(5347), - [anon_sym_BSLASHAutocite] = ACTIONS(5347), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5350), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5350), - [anon_sym_BSLASHvolcite] = ACTIONS(5347), - [anon_sym_BSLASHVolcite] = ACTIONS(5347), - [anon_sym_BSLASHpvolcite] = ACTIONS(5347), - [anon_sym_BSLASHPvolcite] = ACTIONS(5347), - [anon_sym_BSLASHfvolcite] = ACTIONS(5347), - [anon_sym_BSLASHftvolcite] = ACTIONS(5347), - [anon_sym_BSLASHsvolcite] = ACTIONS(5347), - [anon_sym_BSLASHSvolcite] = ACTIONS(5347), - [anon_sym_BSLASHtvolcite] = ACTIONS(5347), - [anon_sym_BSLASHTvolcite] = ACTIONS(5347), - [anon_sym_BSLASHavolcite] = ACTIONS(5347), - [anon_sym_BSLASHAvolcite] = ACTIONS(5347), - [anon_sym_BSLASHnotecite] = ACTIONS(5347), - [anon_sym_BSLASHNotecite] = ACTIONS(5347), - [anon_sym_BSLASHpnotecite] = ACTIONS(5347), - [anon_sym_BSLASHPnotecite] = ACTIONS(5347), - [anon_sym_BSLASHfnotecite] = ACTIONS(5347), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5356), - [anon_sym_BSLASHeqref] = ACTIONS(5356), - [anon_sym_BSLASHvref] = ACTIONS(5356), - [anon_sym_BSLASHVref] = ACTIONS(5356), - [anon_sym_BSLASHautoref] = ACTIONS(5356), - [anon_sym_BSLASHpageref] = ACTIONS(5356), - [anon_sym_BSLASHcref] = ACTIONS(5356), - [anon_sym_BSLASHCref] = ACTIONS(5356), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5356), - [anon_sym_BSLASHnameCref] = ACTIONS(5356), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5356), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5356), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5356), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5356), - [anon_sym_BSLASHlabelcref] = ACTIONS(5356), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5356), - [anon_sym_BSLASHcrefrange] = ACTIONS(5362), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange] = ACTIONS(5362), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnewlabel] = ACTIONS(5368), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5374), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5374), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5374), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5374), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5371), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5371), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5371), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5371), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5371), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5371), - [anon_sym_BSLASHdef] = ACTIONS(5377), - [anon_sym_BSLASHlet] = ACTIONS(5380), - [anon_sym_BSLASHleft] = ACTIONS(3091), - [anon_sym_BSLASHbig] = ACTIONS(3091), - [anon_sym_BSLASHBig] = ACTIONS(3091), - [anon_sym_BSLASHbigg] = ACTIONS(3091), - [anon_sym_BSLASHBigg] = ACTIONS(3091), - [anon_sym_BSLASHbigl] = ACTIONS(3091), - [anon_sym_BSLASHBigl] = ACTIONS(3091), - [anon_sym_BSLASHbiggl] = ACTIONS(3091), - [anon_sym_BSLASHBiggl] = ACTIONS(3091), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5383), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5383), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5386), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5386), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5386), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5386), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5386), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5386), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5389), - [anon_sym_BSLASHgls] = ACTIONS(5392), - [anon_sym_BSLASHGls] = ACTIONS(5392), - [anon_sym_BSLASHGLS] = ACTIONS(5392), - [anon_sym_BSLASHglspl] = ACTIONS(5392), - [anon_sym_BSLASHGlspl] = ACTIONS(5392), - [anon_sym_BSLASHGLSpl] = ACTIONS(5392), - [anon_sym_BSLASHglsdisp] = ACTIONS(5392), - [anon_sym_BSLASHglslink] = ACTIONS(5392), - [anon_sym_BSLASHglstext] = ACTIONS(5392), - [anon_sym_BSLASHGlstext] = ACTIONS(5392), - [anon_sym_BSLASHGLStext] = ACTIONS(5392), - [anon_sym_BSLASHglsfirst] = ACTIONS(5392), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5392), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5392), - [anon_sym_BSLASHglsplural] = ACTIONS(5392), - [anon_sym_BSLASHGlsplural] = ACTIONS(5392), - [anon_sym_BSLASHGLSplural] = ACTIONS(5392), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5392), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5392), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5392), - [anon_sym_BSLASHglsname] = ACTIONS(5392), - [anon_sym_BSLASHGlsname] = ACTIONS(5392), - [anon_sym_BSLASHGLSname] = ACTIONS(5392), - [anon_sym_BSLASHglssymbol] = ACTIONS(5392), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5392), - [anon_sym_BSLASHglsdesc] = ACTIONS(5392), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5392), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5392), - [anon_sym_BSLASHglsuseri] = ACTIONS(5392), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5392), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5392), - [anon_sym_BSLASHglsuserii] = ACTIONS(5392), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5392), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5392), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5392), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5392), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5392), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5392), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5392), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5392), - [anon_sym_BSLASHglsuserv] = ACTIONS(5392), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5392), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5392), - [anon_sym_BSLASHglsuservi] = ACTIONS(5392), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5392), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5392), - [anon_sym_BSLASHnewacronym] = ACTIONS(5395), - [anon_sym_BSLASHacrshort] = ACTIONS(5398), - [anon_sym_BSLASHAcrshort] = ACTIONS(5398), - [anon_sym_BSLASHACRshort] = ACTIONS(5398), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5398), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5398), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5398), - [anon_sym_BSLASHacrlong] = ACTIONS(5398), - [anon_sym_BSLASHAcrlong] = ACTIONS(5398), - [anon_sym_BSLASHACRlong] = ACTIONS(5398), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5398), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5398), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5398), - [anon_sym_BSLASHacrfull] = ACTIONS(5398), - [anon_sym_BSLASHAcrfull] = ACTIONS(5398), - [anon_sym_BSLASHACRfull] = ACTIONS(5398), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5398), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5398), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5398), - [anon_sym_BSLASHacs] = ACTIONS(5398), - [anon_sym_BSLASHAcs] = ACTIONS(5398), - [anon_sym_BSLASHacsp] = ACTIONS(5398), - [anon_sym_BSLASHAcsp] = ACTIONS(5398), - [anon_sym_BSLASHacl] = ACTIONS(5398), - [anon_sym_BSLASHAcl] = ACTIONS(5398), - [anon_sym_BSLASHaclp] = ACTIONS(5398), - [anon_sym_BSLASHAclp] = ACTIONS(5398), - [anon_sym_BSLASHacf] = ACTIONS(5398), - [anon_sym_BSLASHAcf] = ACTIONS(5398), - [anon_sym_BSLASHacfp] = ACTIONS(5398), - [anon_sym_BSLASHAcfp] = ACTIONS(5398), - [anon_sym_BSLASHac] = ACTIONS(5398), - [anon_sym_BSLASHAc] = ACTIONS(5398), - [anon_sym_BSLASHacp] = ACTIONS(5398), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5398), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5398), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5398), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5398), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5398), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5398), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5398), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5398), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5398), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5398), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5401), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5404), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5401), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5404), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5410), - [anon_sym_BSLASHcolor] = ACTIONS(5413), - [anon_sym_BSLASHcolorbox] = ACTIONS(5413), - [anon_sym_BSLASHtextcolor] = ACTIONS(5413), - [anon_sym_BSLASHpagecolor] = ACTIONS(5413), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5416), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5416), - [anon_sym_BSLASHtext] = ACTIONS(3091), - [anon_sym_BSLASHintertext] = ACTIONS(3091), - [anon_sym_shortintertext] = ACTIONS(3091), - }, - [346] = { - [sym_block_comment] = STATE(1705), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym__command] = STATE(1705), - [sym_generic_command] = STATE(1705), - [sym_title_declaration] = STATE(1705), - [sym_author_declaration] = STATE(1705), - [sym_package_include] = STATE(1705), - [sym_class_include] = STATE(1705), - [sym_latex_include] = STATE(1705), - [sym_biblatex_include] = STATE(1705), - [sym_bibtex_include] = STATE(1705), - [sym_graphics_include] = STATE(1705), - [sym_svg_include] = STATE(1705), - [sym_inkscape_include] = STATE(1705), - [sym_verbatim_include] = STATE(1705), - [sym_import_include] = STATE(1705), - [sym_caption] = STATE(1705), - [sym_citation] = STATE(1705), - [sym_label_definition] = STATE(1705), - [sym_label_reference] = STATE(1705), - [sym_label_reference_range] = STATE(1705), - [sym_label_number] = STATE(1705), - [sym_new_command_definition] = STATE(1705), - [sym_old_command_definition] = STATE(1705), - [sym_let_command_definition] = STATE(1705), - [sym_paired_delimiter_definition] = STATE(1705), - [sym_environment_definition] = STATE(1705), - [sym_glossary_entry_definition] = STATE(1705), - [sym_glossary_entry_reference] = STATE(1705), - [sym_acronym_definition] = STATE(1705), - [sym_acronym_reference] = STATE(1705), - [sym_theorem_definition] = STATE(1705), - [sym_color_definition] = STATE(1705), - [sym_color_set_definition] = STATE(1705), - [sym_color_reference] = STATE(1705), - [sym_tikz_library_import] = STATE(1705), - [aux_sym_text_repeat1] = STATE(346), - [sym_command_name] = ACTIONS(5419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5422), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [sym_word] = ACTIONS(5425), - [sym_placeholder] = ACTIONS(5428), - [anon_sym_PLUS] = ACTIONS(5431), - [anon_sym_DASH] = ACTIONS(5431), - [anon_sym_STAR] = ACTIONS(5431), - [anon_sym_SLASH] = ACTIONS(5431), - [anon_sym_LT] = ACTIONS(5434), - [anon_sym_GT] = ACTIONS(5434), - [anon_sym_BANG] = ACTIONS(5434), - [anon_sym_PIPE] = ACTIONS(5434), - [anon_sym_COLON] = ACTIONS(5434), - [anon_sym_SQUOTE] = ACTIONS(5434), - [anon_sym__] = ACTIONS(5437), - [anon_sym_CARET] = ACTIONS(5440), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3089), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3089), - [anon_sym_BSLASHtitle] = ACTIONS(5443), - [anon_sym_BSLASHauthor] = ACTIONS(5446), - [anon_sym_BSLASHusepackage] = ACTIONS(5449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5452), - [anon_sym_BSLASHinclude] = ACTIONS(5455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5455), - [anon_sym_BSLASHinput] = ACTIONS(5455), - [anon_sym_BSLASHsubfile] = ACTIONS(5455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5458), - [anon_sym_BSLASHbibliography] = ACTIONS(5461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5464), - [anon_sym_BSLASHincludesvg] = ACTIONS(5467), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5470), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5473), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5473), - [anon_sym_BSLASHimport] = ACTIONS(5476), - [anon_sym_BSLASHsubimport] = ACTIONS(5476), - [anon_sym_BSLASHinputfrom] = ACTIONS(5476), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5476), - [anon_sym_BSLASHincludefrom] = ACTIONS(5476), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5476), - [anon_sym_BSLASHcaption] = ACTIONS(5479), - [anon_sym_BSLASHcite] = ACTIONS(5482), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCite] = ACTIONS(5482), - [anon_sym_BSLASHnocite] = ACTIONS(5482), - [anon_sym_BSLASHcitet] = ACTIONS(5482), - [anon_sym_BSLASHcitep] = ACTIONS(5482), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteauthor] = ACTIONS(5482), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5482), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitetitle] = ACTIONS(5482), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteyear] = ACTIONS(5482), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5485), - [anon_sym_BSLASHcitedate] = ACTIONS(5482), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5485), - [anon_sym_BSLASHciteurl] = ACTIONS(5482), - [anon_sym_BSLASHfullcite] = ACTIONS(5482), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5482), - [anon_sym_BSLASHcitealt] = ACTIONS(5482), - [anon_sym_BSLASHcitealp] = ACTIONS(5482), - [anon_sym_BSLASHcitetext] = ACTIONS(5482), - [anon_sym_BSLASHparencite] = ACTIONS(5482), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHParencite] = ACTIONS(5482), - [anon_sym_BSLASHfootcite] = ACTIONS(5482), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5482), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5482), - [anon_sym_BSLASHtextcite] = ACTIONS(5482), - [anon_sym_BSLASHTextcite] = ACTIONS(5482), - [anon_sym_BSLASHsmartcite] = ACTIONS(5482), - [anon_sym_BSLASHSmartcite] = ACTIONS(5482), - [anon_sym_BSLASHsupercite] = ACTIONS(5482), - [anon_sym_BSLASHautocite] = ACTIONS(5482), - [anon_sym_BSLASHAutocite] = ACTIONS(5482), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5485), - [anon_sym_BSLASHvolcite] = ACTIONS(5482), - [anon_sym_BSLASHVolcite] = ACTIONS(5482), - [anon_sym_BSLASHpvolcite] = ACTIONS(5482), - [anon_sym_BSLASHPvolcite] = ACTIONS(5482), - [anon_sym_BSLASHfvolcite] = ACTIONS(5482), - [anon_sym_BSLASHftvolcite] = ACTIONS(5482), - [anon_sym_BSLASHsvolcite] = ACTIONS(5482), - [anon_sym_BSLASHSvolcite] = ACTIONS(5482), - [anon_sym_BSLASHtvolcite] = ACTIONS(5482), - [anon_sym_BSLASHTvolcite] = ACTIONS(5482), - [anon_sym_BSLASHavolcite] = ACTIONS(5482), - [anon_sym_BSLASHAvolcite] = ACTIONS(5482), - [anon_sym_BSLASHnotecite] = ACTIONS(5482), - [anon_sym_BSLASHNotecite] = ACTIONS(5482), - [anon_sym_BSLASHpnotecite] = ACTIONS(5482), - [anon_sym_BSLASHPnotecite] = ACTIONS(5482), - [anon_sym_BSLASHfnotecite] = ACTIONS(5482), - [anon_sym_BSLASHlabel] = ACTIONS(5488), - [anon_sym_BSLASHref] = ACTIONS(5491), - [anon_sym_BSLASHeqref] = ACTIONS(5491), - [anon_sym_BSLASHvref] = ACTIONS(5491), - [anon_sym_BSLASHVref] = ACTIONS(5491), - [anon_sym_BSLASHautoref] = ACTIONS(5491), - [anon_sym_BSLASHpageref] = ACTIONS(5491), - [anon_sym_BSLASHcref] = ACTIONS(5491), - [anon_sym_BSLASHCref] = ACTIONS(5491), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5494), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5494), - [anon_sym_BSLASHnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnameCref] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5491), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5491), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5491), - [anon_sym_BSLASHlabelcref] = ACTIONS(5491), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5491), - [anon_sym_BSLASHcrefrange] = ACTIONS(5497), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5500), - [anon_sym_BSLASHCrefrange] = ACTIONS(5497), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5500), - [anon_sym_BSLASHnewlabel] = ACTIONS(5503), - [anon_sym_BSLASHnewcommand] = ACTIONS(5506), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5509), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5506), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5509), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5506), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5509), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5506), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5509), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5506), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5506), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5506), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5506), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5506), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5506), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5506), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5506), - [anon_sym_BSLASHdef] = ACTIONS(5512), - [anon_sym_BSLASHlet] = ACTIONS(5515), - [anon_sym_BSLASHleft] = ACTIONS(3091), - [anon_sym_BSLASHbig] = ACTIONS(3091), - [anon_sym_BSLASHBig] = ACTIONS(3091), - [anon_sym_BSLASHbigg] = ACTIONS(3091), - [anon_sym_BSLASHBigg] = ACTIONS(3091), - [anon_sym_BSLASHbigl] = ACTIONS(3091), - [anon_sym_BSLASHBigl] = ACTIONS(3091), - [anon_sym_BSLASHbiggl] = ACTIONS(3091), - [anon_sym_BSLASHBiggl] = ACTIONS(3091), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5518), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5518), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5521), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5521), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5521), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5521), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5521), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5521), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5524), - [anon_sym_BSLASHgls] = ACTIONS(5527), - [anon_sym_BSLASHGls] = ACTIONS(5527), - [anon_sym_BSLASHGLS] = ACTIONS(5527), - [anon_sym_BSLASHglspl] = ACTIONS(5527), - [anon_sym_BSLASHGlspl] = ACTIONS(5527), - [anon_sym_BSLASHGLSpl] = ACTIONS(5527), - [anon_sym_BSLASHglsdisp] = ACTIONS(5527), - [anon_sym_BSLASHglslink] = ACTIONS(5527), - [anon_sym_BSLASHglstext] = ACTIONS(5527), - [anon_sym_BSLASHGlstext] = ACTIONS(5527), - [anon_sym_BSLASHGLStext] = ACTIONS(5527), - [anon_sym_BSLASHglsfirst] = ACTIONS(5527), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5527), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5527), - [anon_sym_BSLASHglsplural] = ACTIONS(5527), - [anon_sym_BSLASHGlsplural] = ACTIONS(5527), - [anon_sym_BSLASHGLSplural] = ACTIONS(5527), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5527), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5527), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5527), - [anon_sym_BSLASHglsname] = ACTIONS(5527), - [anon_sym_BSLASHGlsname] = ACTIONS(5527), - [anon_sym_BSLASHGLSname] = ACTIONS(5527), - [anon_sym_BSLASHglssymbol] = ACTIONS(5527), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5527), - [anon_sym_BSLASHglsdesc] = ACTIONS(5527), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5527), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5527), - [anon_sym_BSLASHglsuseri] = ACTIONS(5527), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5527), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5527), - [anon_sym_BSLASHglsuserii] = ACTIONS(5527), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5527), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5527), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5527), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5527), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5527), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5527), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5527), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5527), - [anon_sym_BSLASHglsuserv] = ACTIONS(5527), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5527), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5527), - [anon_sym_BSLASHglsuservi] = ACTIONS(5527), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5527), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5527), - [anon_sym_BSLASHnewacronym] = ACTIONS(5530), - [anon_sym_BSLASHacrshort] = ACTIONS(5533), - [anon_sym_BSLASHAcrshort] = ACTIONS(5533), - [anon_sym_BSLASHACRshort] = ACTIONS(5533), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5533), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5533), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5533), - [anon_sym_BSLASHacrlong] = ACTIONS(5533), - [anon_sym_BSLASHAcrlong] = ACTIONS(5533), - [anon_sym_BSLASHACRlong] = ACTIONS(5533), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5533), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5533), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5533), - [anon_sym_BSLASHacrfull] = ACTIONS(5533), - [anon_sym_BSLASHAcrfull] = ACTIONS(5533), - [anon_sym_BSLASHACRfull] = ACTIONS(5533), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5533), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5533), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5533), - [anon_sym_BSLASHacs] = ACTIONS(5533), - [anon_sym_BSLASHAcs] = ACTIONS(5533), - [anon_sym_BSLASHacsp] = ACTIONS(5533), - [anon_sym_BSLASHAcsp] = ACTIONS(5533), - [anon_sym_BSLASHacl] = ACTIONS(5533), - [anon_sym_BSLASHAcl] = ACTIONS(5533), - [anon_sym_BSLASHaclp] = ACTIONS(5533), - [anon_sym_BSLASHAclp] = ACTIONS(5533), - [anon_sym_BSLASHacf] = ACTIONS(5533), - [anon_sym_BSLASHAcf] = ACTIONS(5533), - [anon_sym_BSLASHacfp] = ACTIONS(5533), - [anon_sym_BSLASHAcfp] = ACTIONS(5533), - [anon_sym_BSLASHac] = ACTIONS(5533), - [anon_sym_BSLASHAc] = ACTIONS(5533), - [anon_sym_BSLASHacp] = ACTIONS(5533), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5533), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5533), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5533), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5533), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5533), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5533), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5533), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5533), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5533), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5533), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5536), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5539), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5536), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5539), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5545), - [anon_sym_BSLASHcolor] = ACTIONS(5548), - [anon_sym_BSLASHcolorbox] = ACTIONS(5548), - [anon_sym_BSLASHtextcolor] = ACTIONS(5548), - [anon_sym_BSLASHpagecolor] = ACTIONS(5548), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5551), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5551), - [anon_sym_BSLASHtext] = ACTIONS(3091), - [anon_sym_BSLASHintertext] = ACTIONS(3091), - [anon_sym_shortintertext] = ACTIONS(3091), - }, - [347] = { - [sym_block_comment] = STATE(1750), - [sym_operator] = STATE(1750), - [sym_subscript] = STATE(1750), - [sym_superscript] = STATE(1750), - [sym__command] = STATE(1750), - [sym_generic_command] = STATE(1750), - [sym_title_declaration] = STATE(1750), - [sym_author_declaration] = STATE(1750), - [sym_package_include] = STATE(1750), - [sym_class_include] = STATE(1750), - [sym_latex_include] = STATE(1750), - [sym_biblatex_include] = STATE(1750), - [sym_bibtex_include] = STATE(1750), - [sym_graphics_include] = STATE(1750), - [sym_svg_include] = STATE(1750), - [sym_inkscape_include] = STATE(1750), - [sym_verbatim_include] = STATE(1750), - [sym_import_include] = STATE(1750), - [sym_caption] = STATE(1750), - [sym_citation] = STATE(1750), - [sym_label_definition] = STATE(1750), - [sym_label_reference] = STATE(1750), - [sym_label_reference_range] = STATE(1750), - [sym_label_number] = STATE(1750), - [sym_new_command_definition] = STATE(1750), - [sym_old_command_definition] = STATE(1750), - [sym_let_command_definition] = STATE(1750), - [sym_paired_delimiter_definition] = STATE(1750), - [sym_environment_definition] = STATE(1750), - [sym_glossary_entry_definition] = STATE(1750), - [sym_glossary_entry_reference] = STATE(1750), - [sym_acronym_definition] = STATE(1750), - [sym_acronym_reference] = STATE(1750), - [sym_theorem_definition] = STATE(1750), - [sym_color_definition] = STATE(1750), - [sym_color_set_definition] = STATE(1750), - [sym_color_reference] = STATE(1750), - [sym_tikz_library_import] = STATE(1750), - [aux_sym_text_repeat1] = STATE(347), - [sym_command_name] = ACTIONS(5554), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5557), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [sym_word] = ACTIONS(5560), - [sym_placeholder] = ACTIONS(5563), - [anon_sym_PLUS] = ACTIONS(5566), - [anon_sym_DASH] = ACTIONS(5566), - [anon_sym_STAR] = ACTIONS(5566), - [anon_sym_SLASH] = ACTIONS(5566), - [anon_sym_LT] = ACTIONS(5569), - [anon_sym_GT] = ACTIONS(5569), - [anon_sym_BANG] = ACTIONS(5569), - [anon_sym_PIPE] = ACTIONS(5569), - [anon_sym_COLON] = ACTIONS(5569), - [anon_sym_SQUOTE] = ACTIONS(5569), - [anon_sym__] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5575), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3089), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3089), - [anon_sym_BSLASHbegin] = ACTIONS(3091), - [anon_sym_BSLASHtitle] = ACTIONS(5578), - [anon_sym_BSLASHauthor] = ACTIONS(5581), - [anon_sym_BSLASHusepackage] = ACTIONS(5584), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5584), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5587), - [anon_sym_BSLASHinclude] = ACTIONS(5590), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5590), - [anon_sym_BSLASHinput] = ACTIONS(5590), - [anon_sym_BSLASHsubfile] = ACTIONS(5590), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5593), - [anon_sym_BSLASHbibliography] = ACTIONS(5596), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5599), - [anon_sym_BSLASHincludesvg] = ACTIONS(5602), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5605), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5608), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5608), - [anon_sym_BSLASHimport] = ACTIONS(5611), - [anon_sym_BSLASHsubimport] = ACTIONS(5611), - [anon_sym_BSLASHinputfrom] = ACTIONS(5611), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5611), - [anon_sym_BSLASHincludefrom] = ACTIONS(5611), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5611), - [anon_sym_BSLASHcaption] = ACTIONS(5614), - [anon_sym_BSLASHcite] = ACTIONS(5617), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5620), - [anon_sym_BSLASHCite] = ACTIONS(5617), - [anon_sym_BSLASHnocite] = ACTIONS(5617), - [anon_sym_BSLASHcitet] = ACTIONS(5617), - [anon_sym_BSLASHcitep] = ACTIONS(5617), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5620), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5620), - [anon_sym_BSLASHciteauthor] = ACTIONS(5617), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5620), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5617), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5620), - [anon_sym_BSLASHcitetitle] = ACTIONS(5617), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5620), - [anon_sym_BSLASHciteyear] = ACTIONS(5617), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5620), - [anon_sym_BSLASHcitedate] = ACTIONS(5617), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5620), - [anon_sym_BSLASHciteurl] = ACTIONS(5617), - [anon_sym_BSLASHfullcite] = ACTIONS(5617), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5617), - [anon_sym_BSLASHcitealt] = ACTIONS(5617), - [anon_sym_BSLASHcitealp] = ACTIONS(5617), - [anon_sym_BSLASHcitetext] = ACTIONS(5617), - [anon_sym_BSLASHparencite] = ACTIONS(5617), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5620), - [anon_sym_BSLASHParencite] = ACTIONS(5617), - [anon_sym_BSLASHfootcite] = ACTIONS(5617), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5617), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5617), - [anon_sym_BSLASHtextcite] = ACTIONS(5617), - [anon_sym_BSLASHTextcite] = ACTIONS(5617), - [anon_sym_BSLASHsmartcite] = ACTIONS(5617), - [anon_sym_BSLASHSmartcite] = ACTIONS(5617), - [anon_sym_BSLASHsupercite] = ACTIONS(5617), - [anon_sym_BSLASHautocite] = ACTIONS(5617), - [anon_sym_BSLASHAutocite] = ACTIONS(5617), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5620), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5620), - [anon_sym_BSLASHvolcite] = ACTIONS(5617), - [anon_sym_BSLASHVolcite] = ACTIONS(5617), - [anon_sym_BSLASHpvolcite] = ACTIONS(5617), - [anon_sym_BSLASHPvolcite] = ACTIONS(5617), - [anon_sym_BSLASHfvolcite] = ACTIONS(5617), - [anon_sym_BSLASHftvolcite] = ACTIONS(5617), - [anon_sym_BSLASHsvolcite] = ACTIONS(5617), - [anon_sym_BSLASHSvolcite] = ACTIONS(5617), - [anon_sym_BSLASHtvolcite] = ACTIONS(5617), - [anon_sym_BSLASHTvolcite] = ACTIONS(5617), - [anon_sym_BSLASHavolcite] = ACTIONS(5617), - [anon_sym_BSLASHAvolcite] = ACTIONS(5617), - [anon_sym_BSLASHnotecite] = ACTIONS(5617), - [anon_sym_BSLASHNotecite] = ACTIONS(5617), - [anon_sym_BSLASHpnotecite] = ACTIONS(5617), - [anon_sym_BSLASHPnotecite] = ACTIONS(5617), - [anon_sym_BSLASHfnotecite] = ACTIONS(5617), - [anon_sym_BSLASHlabel] = ACTIONS(5623), - [anon_sym_BSLASHref] = ACTIONS(5626), - [anon_sym_BSLASHeqref] = ACTIONS(5626), - [anon_sym_BSLASHvref] = ACTIONS(5626), - [anon_sym_BSLASHVref] = ACTIONS(5626), - [anon_sym_BSLASHautoref] = ACTIONS(5626), - [anon_sym_BSLASHpageref] = ACTIONS(5626), - [anon_sym_BSLASHcref] = ACTIONS(5626), - [anon_sym_BSLASHCref] = ACTIONS(5626), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5629), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5629), - [anon_sym_BSLASHnamecref] = ACTIONS(5626), - [anon_sym_BSLASHnameCref] = ACTIONS(5626), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5626), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5626), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5626), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5626), - [anon_sym_BSLASHlabelcref] = ACTIONS(5626), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5626), - [anon_sym_BSLASHcrefrange] = ACTIONS(5632), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5635), - [anon_sym_BSLASHCrefrange] = ACTIONS(5632), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5635), - [anon_sym_BSLASHnewlabel] = ACTIONS(5638), - [anon_sym_BSLASHnewcommand] = ACTIONS(5641), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5644), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5641), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5644), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5641), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5644), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5641), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5644), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5641), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5641), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5641), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5641), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5641), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5641), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5641), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5641), - [anon_sym_BSLASHdef] = ACTIONS(5647), - [anon_sym_BSLASHlet] = ACTIONS(5650), - [anon_sym_BSLASHleft] = ACTIONS(3091), - [anon_sym_BSLASHbig] = ACTIONS(3091), - [anon_sym_BSLASHBig] = ACTIONS(3091), - [anon_sym_BSLASHbigg] = ACTIONS(3091), - [anon_sym_BSLASHBigg] = ACTIONS(3091), - [anon_sym_BSLASHbigl] = ACTIONS(3091), - [anon_sym_BSLASHBigl] = ACTIONS(3091), - [anon_sym_BSLASHbiggl] = ACTIONS(3091), - [anon_sym_BSLASHBiggl] = ACTIONS(3091), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5653), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5653), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5656), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5656), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5656), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5656), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5656), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5656), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5659), - [anon_sym_BSLASHgls] = ACTIONS(5662), - [anon_sym_BSLASHGls] = ACTIONS(5662), - [anon_sym_BSLASHGLS] = ACTIONS(5662), - [anon_sym_BSLASHglspl] = ACTIONS(5662), - [anon_sym_BSLASHGlspl] = ACTIONS(5662), - [anon_sym_BSLASHGLSpl] = ACTIONS(5662), - [anon_sym_BSLASHglsdisp] = ACTIONS(5662), - [anon_sym_BSLASHglslink] = ACTIONS(5662), - [anon_sym_BSLASHglstext] = ACTIONS(5662), - [anon_sym_BSLASHGlstext] = ACTIONS(5662), - [anon_sym_BSLASHGLStext] = ACTIONS(5662), - [anon_sym_BSLASHglsfirst] = ACTIONS(5662), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5662), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5662), - [anon_sym_BSLASHglsplural] = ACTIONS(5662), - [anon_sym_BSLASHGlsplural] = ACTIONS(5662), - [anon_sym_BSLASHGLSplural] = ACTIONS(5662), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5662), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5662), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5662), - [anon_sym_BSLASHglsname] = ACTIONS(5662), - [anon_sym_BSLASHGlsname] = ACTIONS(5662), - [anon_sym_BSLASHGLSname] = ACTIONS(5662), - [anon_sym_BSLASHglssymbol] = ACTIONS(5662), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5662), - [anon_sym_BSLASHglsdesc] = ACTIONS(5662), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5662), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5662), - [anon_sym_BSLASHglsuseri] = ACTIONS(5662), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5662), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5662), - [anon_sym_BSLASHglsuserii] = ACTIONS(5662), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5662), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5662), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5662), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5662), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5662), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5662), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5662), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5662), - [anon_sym_BSLASHglsuserv] = ACTIONS(5662), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5662), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5662), - [anon_sym_BSLASHglsuservi] = ACTIONS(5662), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5662), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5662), - [anon_sym_BSLASHnewacronym] = ACTIONS(5665), - [anon_sym_BSLASHacrshort] = ACTIONS(5668), - [anon_sym_BSLASHAcrshort] = ACTIONS(5668), - [anon_sym_BSLASHACRshort] = ACTIONS(5668), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5668), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5668), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5668), - [anon_sym_BSLASHacrlong] = ACTIONS(5668), - [anon_sym_BSLASHAcrlong] = ACTIONS(5668), - [anon_sym_BSLASHACRlong] = ACTIONS(5668), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5668), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5668), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5668), - [anon_sym_BSLASHacrfull] = ACTIONS(5668), - [anon_sym_BSLASHAcrfull] = ACTIONS(5668), - [anon_sym_BSLASHACRfull] = ACTIONS(5668), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5668), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5668), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5668), - [anon_sym_BSLASHacs] = ACTIONS(5668), - [anon_sym_BSLASHAcs] = ACTIONS(5668), - [anon_sym_BSLASHacsp] = ACTIONS(5668), - [anon_sym_BSLASHAcsp] = ACTIONS(5668), - [anon_sym_BSLASHacl] = ACTIONS(5668), - [anon_sym_BSLASHAcl] = ACTIONS(5668), - [anon_sym_BSLASHaclp] = ACTIONS(5668), - [anon_sym_BSLASHAclp] = ACTIONS(5668), - [anon_sym_BSLASHacf] = ACTIONS(5668), - [anon_sym_BSLASHAcf] = ACTIONS(5668), - [anon_sym_BSLASHacfp] = ACTIONS(5668), - [anon_sym_BSLASHAcfp] = ACTIONS(5668), - [anon_sym_BSLASHac] = ACTIONS(5668), - [anon_sym_BSLASHAc] = ACTIONS(5668), - [anon_sym_BSLASHacp] = ACTIONS(5668), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5668), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5668), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5668), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5668), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5668), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5668), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5668), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5668), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5668), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5668), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5671), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5674), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5671), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5674), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5677), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5680), - [anon_sym_BSLASHcolor] = ACTIONS(5683), - [anon_sym_BSLASHcolorbox] = ACTIONS(5683), - [anon_sym_BSLASHtextcolor] = ACTIONS(5683), - [anon_sym_BSLASHpagecolor] = ACTIONS(5683), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5686), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5686), - [anon_sym_BSLASHtext] = ACTIONS(3091), - [anon_sym_BSLASHintertext] = ACTIONS(3091), - [anon_sym_shortintertext] = ACTIONS(3091), - }, - [348] = { - [sym_block_comment] = STATE(1705), - [sym_operator] = STATE(1705), - [sym_subscript] = STATE(1705), - [sym_superscript] = STATE(1705), - [sym__command] = STATE(1705), - [sym_generic_command] = STATE(1705), - [sym_title_declaration] = STATE(1705), - [sym_author_declaration] = STATE(1705), - [sym_package_include] = STATE(1705), - [sym_class_include] = STATE(1705), - [sym_latex_include] = STATE(1705), - [sym_biblatex_include] = STATE(1705), - [sym_bibtex_include] = STATE(1705), - [sym_graphics_include] = STATE(1705), - [sym_svg_include] = STATE(1705), - [sym_inkscape_include] = STATE(1705), - [sym_verbatim_include] = STATE(1705), - [sym_import_include] = STATE(1705), - [sym_caption] = STATE(1705), - [sym_citation] = STATE(1705), - [sym_label_definition] = STATE(1705), - [sym_label_reference] = STATE(1705), - [sym_label_reference_range] = STATE(1705), - [sym_label_number] = STATE(1705), - [sym_new_command_definition] = STATE(1705), - [sym_old_command_definition] = STATE(1705), - [sym_let_command_definition] = STATE(1705), - [sym_paired_delimiter_definition] = STATE(1705), - [sym_environment_definition] = STATE(1705), - [sym_glossary_entry_definition] = STATE(1705), - [sym_glossary_entry_reference] = STATE(1705), - [sym_acronym_definition] = STATE(1705), - [sym_acronym_reference] = STATE(1705), - [sym_theorem_definition] = STATE(1705), - [sym_color_definition] = STATE(1705), - [sym_color_set_definition] = STATE(1705), - [sym_color_reference] = STATE(1705), - [sym_tikz_library_import] = STATE(1705), - [aux_sym_text_repeat1] = STATE(346), - [sym_command_name] = ACTIONS(4338), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3079), - [sym_word] = ACTIONS(4348), - [sym_placeholder] = ACTIONS(4350), - [anon_sym_PLUS] = ACTIONS(4352), - [anon_sym_DASH] = ACTIONS(4352), - [anon_sym_STAR] = ACTIONS(4352), - [anon_sym_SLASH] = ACTIONS(4352), - [anon_sym_LT] = ACTIONS(4354), - [anon_sym_GT] = ACTIONS(4354), - [anon_sym_BANG] = ACTIONS(4354), - [anon_sym_PIPE] = ACTIONS(4354), - [anon_sym_COLON] = ACTIONS(4354), - [anon_sym_SQUOTE] = ACTIONS(4354), - [anon_sym__] = ACTIONS(4356), - [anon_sym_CARET] = ACTIONS(4358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3079), - [anon_sym_DOLLAR] = ACTIONS(3081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3079), - [anon_sym_BSLASHtitle] = ACTIONS(4366), - [anon_sym_BSLASHauthor] = ACTIONS(4368), - [anon_sym_BSLASHusepackage] = ACTIONS(4370), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4370), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4372), - [anon_sym_BSLASHinclude] = ACTIONS(4374), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4374), - [anon_sym_BSLASHinput] = ACTIONS(4374), - [anon_sym_BSLASHsubfile] = ACTIONS(4374), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4376), - [anon_sym_BSLASHbibliography] = ACTIONS(4378), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4380), - [anon_sym_BSLASHincludesvg] = ACTIONS(4382), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4384), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4386), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4386), - [anon_sym_BSLASHimport] = ACTIONS(4388), - [anon_sym_BSLASHsubimport] = ACTIONS(4388), - [anon_sym_BSLASHinputfrom] = ACTIONS(4388), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4388), - [anon_sym_BSLASHincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4388), - [anon_sym_BSLASHcaption] = ACTIONS(4390), - [anon_sym_BSLASHcite] = ACTIONS(4392), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCite] = ACTIONS(4392), - [anon_sym_BSLASHnocite] = ACTIONS(4392), - [anon_sym_BSLASHcitet] = ACTIONS(4392), - [anon_sym_BSLASHcitep] = ACTIONS(4392), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteauthor] = ACTIONS(4392), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4392), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitetitle] = ACTIONS(4392), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteyear] = ACTIONS(4392), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4394), - [anon_sym_BSLASHcitedate] = ACTIONS(4392), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4394), - [anon_sym_BSLASHciteurl] = ACTIONS(4392), - [anon_sym_BSLASHfullcite] = ACTIONS(4392), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4392), - [anon_sym_BSLASHcitealt] = ACTIONS(4392), - [anon_sym_BSLASHcitealp] = ACTIONS(4392), - [anon_sym_BSLASHcitetext] = ACTIONS(4392), - [anon_sym_BSLASHparencite] = ACTIONS(4392), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHParencite] = ACTIONS(4392), - [anon_sym_BSLASHfootcite] = ACTIONS(4392), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4392), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4392), - [anon_sym_BSLASHtextcite] = ACTIONS(4392), - [anon_sym_BSLASHTextcite] = ACTIONS(4392), - [anon_sym_BSLASHsmartcite] = ACTIONS(4392), - [anon_sym_BSLASHSmartcite] = ACTIONS(4392), - [anon_sym_BSLASHsupercite] = ACTIONS(4392), - [anon_sym_BSLASHautocite] = ACTIONS(4392), - [anon_sym_BSLASHAutocite] = ACTIONS(4392), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4394), - [anon_sym_BSLASHvolcite] = ACTIONS(4392), - [anon_sym_BSLASHVolcite] = ACTIONS(4392), - [anon_sym_BSLASHpvolcite] = ACTIONS(4392), - [anon_sym_BSLASHPvolcite] = ACTIONS(4392), - [anon_sym_BSLASHfvolcite] = ACTIONS(4392), - [anon_sym_BSLASHftvolcite] = ACTIONS(4392), - [anon_sym_BSLASHsvolcite] = ACTIONS(4392), - [anon_sym_BSLASHSvolcite] = ACTIONS(4392), - [anon_sym_BSLASHtvolcite] = ACTIONS(4392), - [anon_sym_BSLASHTvolcite] = ACTIONS(4392), - [anon_sym_BSLASHavolcite] = ACTIONS(4392), - [anon_sym_BSLASHAvolcite] = ACTIONS(4392), - [anon_sym_BSLASHnotecite] = ACTIONS(4392), - [anon_sym_BSLASHNotecite] = ACTIONS(4392), - [anon_sym_BSLASHpnotecite] = ACTIONS(4392), - [anon_sym_BSLASHPnotecite] = ACTIONS(4392), - [anon_sym_BSLASHfnotecite] = ACTIONS(4392), - [anon_sym_BSLASHlabel] = ACTIONS(4396), - [anon_sym_BSLASHref] = ACTIONS(4398), - [anon_sym_BSLASHeqref] = ACTIONS(4398), - [anon_sym_BSLASHvref] = ACTIONS(4398), - [anon_sym_BSLASHVref] = ACTIONS(4398), - [anon_sym_BSLASHautoref] = ACTIONS(4398), - [anon_sym_BSLASHpageref] = ACTIONS(4398), - [anon_sym_BSLASHcref] = ACTIONS(4398), - [anon_sym_BSLASHCref] = ACTIONS(4398), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4400), - [anon_sym_BSLASHnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnameCref] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4398), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4398), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4398), - [anon_sym_BSLASHlabelcref] = ACTIONS(4398), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4398), - [anon_sym_BSLASHcrefrange] = ACTIONS(4402), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHCrefrange] = ACTIONS(4402), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4404), - [anon_sym_BSLASHnewlabel] = ACTIONS(4406), - [anon_sym_BSLASHnewcommand] = ACTIONS(4408), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4408), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4410), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4410), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4408), - [anon_sym_BSLASHdef] = ACTIONS(4412), - [anon_sym_BSLASHlet] = ACTIONS(4414), - [anon_sym_BSLASHleft] = ACTIONS(3081), - [anon_sym_BSLASHbig] = ACTIONS(3081), - [anon_sym_BSLASHBig] = ACTIONS(3081), - [anon_sym_BSLASHbigg] = ACTIONS(3081), - [anon_sym_BSLASHBigg] = ACTIONS(3081), - [anon_sym_BSLASHbigl] = ACTIONS(3081), - [anon_sym_BSLASHBigl] = ACTIONS(3081), - [anon_sym_BSLASHbiggl] = ACTIONS(3081), - [anon_sym_BSLASHBiggl] = ACTIONS(3081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4418), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4420), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4420), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4422), - [anon_sym_BSLASHgls] = ACTIONS(4424), - [anon_sym_BSLASHGls] = ACTIONS(4424), - [anon_sym_BSLASHGLS] = ACTIONS(4424), - [anon_sym_BSLASHglspl] = ACTIONS(4424), - [anon_sym_BSLASHGlspl] = ACTIONS(4424), - [anon_sym_BSLASHGLSpl] = ACTIONS(4424), - [anon_sym_BSLASHglsdisp] = ACTIONS(4424), - [anon_sym_BSLASHglslink] = ACTIONS(4424), - [anon_sym_BSLASHglstext] = ACTIONS(4424), - [anon_sym_BSLASHGlstext] = ACTIONS(4424), - [anon_sym_BSLASHGLStext] = ACTIONS(4424), - [anon_sym_BSLASHglsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4424), - [anon_sym_BSLASHglsplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSplural] = ACTIONS(4424), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4424), - [anon_sym_BSLASHglsname] = ACTIONS(4424), - [anon_sym_BSLASHGlsname] = ACTIONS(4424), - [anon_sym_BSLASHGLSname] = ACTIONS(4424), - [anon_sym_BSLASHglssymbol] = ACTIONS(4424), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4424), - [anon_sym_BSLASHglsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4424), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4424), - [anon_sym_BSLASHglsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4424), - [anon_sym_BSLASHglsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4424), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4424), - [anon_sym_BSLASHglsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4424), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4424), - [anon_sym_BSLASHglsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4424), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4424), - [anon_sym_BSLASHnewacronym] = ACTIONS(4426), - [anon_sym_BSLASHacrshort] = ACTIONS(4428), - [anon_sym_BSLASHAcrshort] = ACTIONS(4428), - [anon_sym_BSLASHACRshort] = ACTIONS(4428), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4428), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4428), - [anon_sym_BSLASHacrlong] = ACTIONS(4428), - [anon_sym_BSLASHAcrlong] = ACTIONS(4428), - [anon_sym_BSLASHACRlong] = ACTIONS(4428), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4428), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4428), - [anon_sym_BSLASHacrfull] = ACTIONS(4428), - [anon_sym_BSLASHAcrfull] = ACTIONS(4428), - [anon_sym_BSLASHACRfull] = ACTIONS(4428), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4428), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4428), - [anon_sym_BSLASHacs] = ACTIONS(4428), - [anon_sym_BSLASHAcs] = ACTIONS(4428), - [anon_sym_BSLASHacsp] = ACTIONS(4428), - [anon_sym_BSLASHAcsp] = ACTIONS(4428), - [anon_sym_BSLASHacl] = ACTIONS(4428), - [anon_sym_BSLASHAcl] = ACTIONS(4428), - [anon_sym_BSLASHaclp] = ACTIONS(4428), - [anon_sym_BSLASHAclp] = ACTIONS(4428), - [anon_sym_BSLASHacf] = ACTIONS(4428), - [anon_sym_BSLASHAcf] = ACTIONS(4428), - [anon_sym_BSLASHacfp] = ACTIONS(4428), - [anon_sym_BSLASHAcfp] = ACTIONS(4428), - [anon_sym_BSLASHac] = ACTIONS(4428), - [anon_sym_BSLASHAc] = ACTIONS(4428), - [anon_sym_BSLASHacp] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4428), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4428), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4428), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4428), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4430), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4430), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4432), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4434), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4436), - [anon_sym_BSLASHcolor] = ACTIONS(4438), - [anon_sym_BSLASHcolorbox] = ACTIONS(4438), - [anon_sym_BSLASHtextcolor] = ACTIONS(4438), - [anon_sym_BSLASHpagecolor] = ACTIONS(4438), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4440), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4440), - [anon_sym_BSLASHtext] = ACTIONS(3081), - [anon_sym_BSLASHintertext] = ACTIONS(3081), - [anon_sym_shortintertext] = ACTIONS(3081), - }, - [349] = { - [sym_block_comment] = STATE(1750), - [sym_operator] = STATE(1750), - [sym_subscript] = STATE(1750), - [sym_superscript] = STATE(1750), - [sym__command] = STATE(1750), - [sym_generic_command] = STATE(1750), - [sym_title_declaration] = STATE(1750), - [sym_author_declaration] = STATE(1750), - [sym_package_include] = STATE(1750), - [sym_class_include] = STATE(1750), - [sym_latex_include] = STATE(1750), - [sym_biblatex_include] = STATE(1750), - [sym_bibtex_include] = STATE(1750), - [sym_graphics_include] = STATE(1750), - [sym_svg_include] = STATE(1750), - [sym_inkscape_include] = STATE(1750), - [sym_verbatim_include] = STATE(1750), - [sym_import_include] = STATE(1750), - [sym_caption] = STATE(1750), - [sym_citation] = STATE(1750), - [sym_label_definition] = STATE(1750), - [sym_label_reference] = STATE(1750), - [sym_label_reference_range] = STATE(1750), - [sym_label_number] = STATE(1750), - [sym_new_command_definition] = STATE(1750), - [sym_old_command_definition] = STATE(1750), - [sym_let_command_definition] = STATE(1750), - [sym_paired_delimiter_definition] = STATE(1750), - [sym_environment_definition] = STATE(1750), - [sym_glossary_entry_definition] = STATE(1750), - [sym_glossary_entry_reference] = STATE(1750), - [sym_acronym_definition] = STATE(1750), - [sym_acronym_reference] = STATE(1750), - [sym_theorem_definition] = STATE(1750), - [sym_color_definition] = STATE(1750), - [sym_color_set_definition] = STATE(1750), - [sym_color_reference] = STATE(1750), - [sym_tikz_library_import] = STATE(1750), - [aux_sym_text_repeat1] = STATE(347), - [sym_command_name] = ACTIONS(3510), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3079), - [sym_word] = ACTIONS(3522), - [sym_placeholder] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_SLASH] = ACTIONS(3526), - [anon_sym_LT] = ACTIONS(3528), - [anon_sym_GT] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_PIPE] = ACTIONS(3528), - [anon_sym_COLON] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3528), - [anon_sym__] = ACTIONS(3530), - [anon_sym_CARET] = ACTIONS(3532), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3079), - [anon_sym_DOLLAR] = ACTIONS(3081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3079), - [anon_sym_BSLASHbegin] = ACTIONS(3081), - [anon_sym_BSLASHtitle] = ACTIONS(3540), - [anon_sym_BSLASHauthor] = ACTIONS(3542), - [anon_sym_BSLASHusepackage] = ACTIONS(3544), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3544), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3546), - [anon_sym_BSLASHinclude] = ACTIONS(3548), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3548), - [anon_sym_BSLASHinput] = ACTIONS(3548), - [anon_sym_BSLASHsubfile] = ACTIONS(3548), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3550), - [anon_sym_BSLASHbibliography] = ACTIONS(3552), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3554), - [anon_sym_BSLASHincludesvg] = ACTIONS(3556), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3558), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3560), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3560), - [anon_sym_BSLASHimport] = ACTIONS(3562), - [anon_sym_BSLASHsubimport] = ACTIONS(3562), - [anon_sym_BSLASHinputfrom] = ACTIONS(3562), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3562), - [anon_sym_BSLASHincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3562), - [anon_sym_BSLASHcaption] = ACTIONS(3564), - [anon_sym_BSLASHcite] = ACTIONS(3566), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCite] = ACTIONS(3566), - [anon_sym_BSLASHnocite] = ACTIONS(3566), - [anon_sym_BSLASHcitet] = ACTIONS(3566), - [anon_sym_BSLASHcitep] = ACTIONS(3566), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteauthor] = ACTIONS(3566), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3566), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitetitle] = ACTIONS(3566), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteyear] = ACTIONS(3566), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3568), - [anon_sym_BSLASHcitedate] = ACTIONS(3566), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3568), - [anon_sym_BSLASHciteurl] = ACTIONS(3566), - [anon_sym_BSLASHfullcite] = ACTIONS(3566), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3566), - [anon_sym_BSLASHcitealt] = ACTIONS(3566), - [anon_sym_BSLASHcitealp] = ACTIONS(3566), - [anon_sym_BSLASHcitetext] = ACTIONS(3566), - [anon_sym_BSLASHparencite] = ACTIONS(3566), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHParencite] = ACTIONS(3566), - [anon_sym_BSLASHfootcite] = ACTIONS(3566), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3566), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3566), - [anon_sym_BSLASHtextcite] = ACTIONS(3566), - [anon_sym_BSLASHTextcite] = ACTIONS(3566), - [anon_sym_BSLASHsmartcite] = ACTIONS(3566), - [anon_sym_BSLASHSmartcite] = ACTIONS(3566), - [anon_sym_BSLASHsupercite] = ACTIONS(3566), - [anon_sym_BSLASHautocite] = ACTIONS(3566), - [anon_sym_BSLASHAutocite] = ACTIONS(3566), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3568), - [anon_sym_BSLASHvolcite] = ACTIONS(3566), - [anon_sym_BSLASHVolcite] = ACTIONS(3566), - [anon_sym_BSLASHpvolcite] = ACTIONS(3566), - [anon_sym_BSLASHPvolcite] = ACTIONS(3566), - [anon_sym_BSLASHfvolcite] = ACTIONS(3566), - [anon_sym_BSLASHftvolcite] = ACTIONS(3566), - [anon_sym_BSLASHsvolcite] = ACTIONS(3566), - [anon_sym_BSLASHSvolcite] = ACTIONS(3566), - [anon_sym_BSLASHtvolcite] = ACTIONS(3566), - [anon_sym_BSLASHTvolcite] = ACTIONS(3566), - [anon_sym_BSLASHavolcite] = ACTIONS(3566), - [anon_sym_BSLASHAvolcite] = ACTIONS(3566), - [anon_sym_BSLASHnotecite] = ACTIONS(3566), - [anon_sym_BSLASHNotecite] = ACTIONS(3566), - [anon_sym_BSLASHpnotecite] = ACTIONS(3566), - [anon_sym_BSLASHPnotecite] = ACTIONS(3566), - [anon_sym_BSLASHfnotecite] = ACTIONS(3566), - [anon_sym_BSLASHlabel] = ACTIONS(3570), - [anon_sym_BSLASHref] = ACTIONS(3572), - [anon_sym_BSLASHeqref] = ACTIONS(3572), - [anon_sym_BSLASHvref] = ACTIONS(3572), - [anon_sym_BSLASHVref] = ACTIONS(3572), - [anon_sym_BSLASHautoref] = ACTIONS(3572), - [anon_sym_BSLASHpageref] = ACTIONS(3572), - [anon_sym_BSLASHcref] = ACTIONS(3572), - [anon_sym_BSLASHCref] = ACTIONS(3572), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3574), - [anon_sym_BSLASHnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnameCref] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3572), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3572), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3572), - [anon_sym_BSLASHlabelcref] = ACTIONS(3572), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3572), - [anon_sym_BSLASHcrefrange] = ACTIONS(3576), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHCrefrange] = ACTIONS(3576), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3578), - [anon_sym_BSLASHnewlabel] = ACTIONS(3580), - [anon_sym_BSLASHnewcommand] = ACTIONS(3582), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3582), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3584), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3582), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3584), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(3582), - [anon_sym_BSLASHdef] = ACTIONS(3586), - [anon_sym_BSLASHlet] = ACTIONS(3588), - [anon_sym_BSLASHleft] = ACTIONS(3081), - [anon_sym_BSLASHbig] = ACTIONS(3081), - [anon_sym_BSLASHBig] = ACTIONS(3081), - [anon_sym_BSLASHbigg] = ACTIONS(3081), - [anon_sym_BSLASHBigg] = ACTIONS(3081), - [anon_sym_BSLASHbigl] = ACTIONS(3081), - [anon_sym_BSLASHBigl] = ACTIONS(3081), - [anon_sym_BSLASHbiggl] = ACTIONS(3081), - [anon_sym_BSLASHBiggl] = ACTIONS(3081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(3592), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(3592), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(3594), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(3594), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3596), - [anon_sym_BSLASHgls] = ACTIONS(3598), - [anon_sym_BSLASHGls] = ACTIONS(3598), - [anon_sym_BSLASHGLS] = ACTIONS(3598), - [anon_sym_BSLASHglspl] = ACTIONS(3598), - [anon_sym_BSLASHGlspl] = ACTIONS(3598), - [anon_sym_BSLASHGLSpl] = ACTIONS(3598), - [anon_sym_BSLASHglsdisp] = ACTIONS(3598), - [anon_sym_BSLASHglslink] = ACTIONS(3598), - [anon_sym_BSLASHglstext] = ACTIONS(3598), - [anon_sym_BSLASHGlstext] = ACTIONS(3598), - [anon_sym_BSLASHGLStext] = ACTIONS(3598), - [anon_sym_BSLASHglsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3598), - [anon_sym_BSLASHglsplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSplural] = ACTIONS(3598), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3598), - [anon_sym_BSLASHglsname] = ACTIONS(3598), - [anon_sym_BSLASHGlsname] = ACTIONS(3598), - [anon_sym_BSLASHGLSname] = ACTIONS(3598), - [anon_sym_BSLASHglssymbol] = ACTIONS(3598), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3598), - [anon_sym_BSLASHglsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3598), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3598), - [anon_sym_BSLASHglsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3598), - [anon_sym_BSLASHglsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3598), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3598), - [anon_sym_BSLASHglsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3598), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3598), - [anon_sym_BSLASHglsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3598), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3598), - [anon_sym_BSLASHnewacronym] = ACTIONS(3600), - [anon_sym_BSLASHacrshort] = ACTIONS(3602), - [anon_sym_BSLASHAcrshort] = ACTIONS(3602), - [anon_sym_BSLASHACRshort] = ACTIONS(3602), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3602), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3602), - [anon_sym_BSLASHacrlong] = ACTIONS(3602), - [anon_sym_BSLASHAcrlong] = ACTIONS(3602), - [anon_sym_BSLASHACRlong] = ACTIONS(3602), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3602), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3602), - [anon_sym_BSLASHacrfull] = ACTIONS(3602), - [anon_sym_BSLASHAcrfull] = ACTIONS(3602), - [anon_sym_BSLASHACRfull] = ACTIONS(3602), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3602), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3602), - [anon_sym_BSLASHacs] = ACTIONS(3602), - [anon_sym_BSLASHAcs] = ACTIONS(3602), - [anon_sym_BSLASHacsp] = ACTIONS(3602), - [anon_sym_BSLASHAcsp] = ACTIONS(3602), - [anon_sym_BSLASHacl] = ACTIONS(3602), - [anon_sym_BSLASHAcl] = ACTIONS(3602), - [anon_sym_BSLASHaclp] = ACTIONS(3602), - [anon_sym_BSLASHAclp] = ACTIONS(3602), - [anon_sym_BSLASHacf] = ACTIONS(3602), - [anon_sym_BSLASHAcf] = ACTIONS(3602), - [anon_sym_BSLASHacfp] = ACTIONS(3602), - [anon_sym_BSLASHAcfp] = ACTIONS(3602), - [anon_sym_BSLASHac] = ACTIONS(3602), - [anon_sym_BSLASHAc] = ACTIONS(3602), - [anon_sym_BSLASHacp] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3602), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3602), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3602), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3602), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3604), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3604), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(3606), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3608), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3610), - [anon_sym_BSLASHcolor] = ACTIONS(3612), - [anon_sym_BSLASHcolorbox] = ACTIONS(3612), - [anon_sym_BSLASHtextcolor] = ACTIONS(3612), - [anon_sym_BSLASHpagecolor] = ACTIONS(3612), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3614), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3614), - [anon_sym_BSLASHtext] = ACTIONS(3081), - [anon_sym_BSLASHintertext] = ACTIONS(3081), - [anon_sym_shortintertext] = ACTIONS(3081), - }, - [350] = { - [sym_block_comment] = STATE(1842), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym__command] = STATE(1842), - [sym_generic_command] = STATE(1842), - [sym_title_declaration] = STATE(1842), - [sym_author_declaration] = STATE(1842), - [sym_package_include] = STATE(1842), - [sym_class_include] = STATE(1842), - [sym_latex_include] = STATE(1842), - [sym_biblatex_include] = STATE(1842), - [sym_bibtex_include] = STATE(1842), - [sym_graphics_include] = STATE(1842), - [sym_svg_include] = STATE(1842), - [sym_inkscape_include] = STATE(1842), - [sym_verbatim_include] = STATE(1842), - [sym_import_include] = STATE(1842), - [sym_caption] = STATE(1842), - [sym_citation] = STATE(1842), - [sym_label_definition] = STATE(1842), - [sym_label_reference] = STATE(1842), - [sym_label_reference_range] = STATE(1842), - [sym_label_number] = STATE(1842), - [sym_new_command_definition] = STATE(1842), - [sym_old_command_definition] = STATE(1842), - [sym_let_command_definition] = STATE(1842), - [sym_paired_delimiter_definition] = STATE(1842), - [sym_environment_definition] = STATE(1842), - [sym_glossary_entry_definition] = STATE(1842), - [sym_glossary_entry_reference] = STATE(1842), - [sym_acronym_definition] = STATE(1842), - [sym_acronym_reference] = STATE(1842), - [sym_theorem_definition] = STATE(1842), - [sym_color_definition] = STATE(1842), - [sym_color_set_definition] = STATE(1842), - [sym_color_reference] = STATE(1842), - [sym_tikz_library_import] = STATE(1842), - [aux_sym_text_repeat1] = STATE(351), - [sym_command_name] = ACTIONS(4972), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3079), - [anon_sym_BSLASHand] = ACTIONS(3081), - [sym_word] = ACTIONS(4984), - [sym_placeholder] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4988), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_LT] = ACTIONS(4990), - [anon_sym_GT] = ACTIONS(4990), - [anon_sym_BANG] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_SQUOTE] = ACTIONS(4990), - [anon_sym__] = ACTIONS(4992), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3079), - [anon_sym_DOLLAR] = ACTIONS(3081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3079), - [anon_sym_BSLASHtitle] = ACTIONS(5002), - [anon_sym_BSLASHauthor] = ACTIONS(5004), - [anon_sym_BSLASHusepackage] = ACTIONS(5006), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5006), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5008), - [anon_sym_BSLASHinclude] = ACTIONS(5010), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5010), - [anon_sym_BSLASHinput] = ACTIONS(5010), - [anon_sym_BSLASHsubfile] = ACTIONS(5010), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5012), - [anon_sym_BSLASHbibliography] = ACTIONS(5014), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5016), - [anon_sym_BSLASHincludesvg] = ACTIONS(5018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5020), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5022), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5022), - [anon_sym_BSLASHimport] = ACTIONS(5024), - [anon_sym_BSLASHsubimport] = ACTIONS(5024), - [anon_sym_BSLASHinputfrom] = ACTIONS(5024), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5024), - [anon_sym_BSLASHincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5024), - [anon_sym_BSLASHcaption] = ACTIONS(5026), - [anon_sym_BSLASHcite] = ACTIONS(5028), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCite] = ACTIONS(5028), - [anon_sym_BSLASHnocite] = ACTIONS(5028), - [anon_sym_BSLASHcitet] = ACTIONS(5028), - [anon_sym_BSLASHcitep] = ACTIONS(5028), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteauthor] = ACTIONS(5028), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5028), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitetitle] = ACTIONS(5028), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteyear] = ACTIONS(5028), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5030), - [anon_sym_BSLASHcitedate] = ACTIONS(5028), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5030), - [anon_sym_BSLASHciteurl] = ACTIONS(5028), - [anon_sym_BSLASHfullcite] = ACTIONS(5028), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5028), - [anon_sym_BSLASHcitealt] = ACTIONS(5028), - [anon_sym_BSLASHcitealp] = ACTIONS(5028), - [anon_sym_BSLASHcitetext] = ACTIONS(5028), - [anon_sym_BSLASHparencite] = ACTIONS(5028), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHParencite] = ACTIONS(5028), - [anon_sym_BSLASHfootcite] = ACTIONS(5028), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5028), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5028), - [anon_sym_BSLASHtextcite] = ACTIONS(5028), - [anon_sym_BSLASHTextcite] = ACTIONS(5028), - [anon_sym_BSLASHsmartcite] = ACTIONS(5028), - [anon_sym_BSLASHSmartcite] = ACTIONS(5028), - [anon_sym_BSLASHsupercite] = ACTIONS(5028), - [anon_sym_BSLASHautocite] = ACTIONS(5028), - [anon_sym_BSLASHAutocite] = ACTIONS(5028), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5030), - [anon_sym_BSLASHvolcite] = ACTIONS(5028), - [anon_sym_BSLASHVolcite] = ACTIONS(5028), - [anon_sym_BSLASHpvolcite] = ACTIONS(5028), - [anon_sym_BSLASHPvolcite] = ACTIONS(5028), - [anon_sym_BSLASHfvolcite] = ACTIONS(5028), - [anon_sym_BSLASHftvolcite] = ACTIONS(5028), - [anon_sym_BSLASHsvolcite] = ACTIONS(5028), - [anon_sym_BSLASHSvolcite] = ACTIONS(5028), - [anon_sym_BSLASHtvolcite] = ACTIONS(5028), - [anon_sym_BSLASHTvolcite] = ACTIONS(5028), - [anon_sym_BSLASHavolcite] = ACTIONS(5028), - [anon_sym_BSLASHAvolcite] = ACTIONS(5028), - [anon_sym_BSLASHnotecite] = ACTIONS(5028), - [anon_sym_BSLASHNotecite] = ACTIONS(5028), - [anon_sym_BSLASHpnotecite] = ACTIONS(5028), - [anon_sym_BSLASHPnotecite] = ACTIONS(5028), - [anon_sym_BSLASHfnotecite] = ACTIONS(5028), - [anon_sym_BSLASHlabel] = ACTIONS(5032), - [anon_sym_BSLASHref] = ACTIONS(5034), - [anon_sym_BSLASHeqref] = ACTIONS(5034), - [anon_sym_BSLASHvref] = ACTIONS(5034), - [anon_sym_BSLASHVref] = ACTIONS(5034), - [anon_sym_BSLASHautoref] = ACTIONS(5034), - [anon_sym_BSLASHpageref] = ACTIONS(5034), - [anon_sym_BSLASHcref] = ACTIONS(5034), - [anon_sym_BSLASHCref] = ACTIONS(5034), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5036), - [anon_sym_BSLASHnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnameCref] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5034), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5034), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5034), - [anon_sym_BSLASHlabelcref] = ACTIONS(5034), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5034), - [anon_sym_BSLASHcrefrange] = ACTIONS(5038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHCrefrange] = ACTIONS(5038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5040), - [anon_sym_BSLASHnewlabel] = ACTIONS(5042), - [anon_sym_BSLASHnewcommand] = ACTIONS(5044), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5044), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5046), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5044), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5046), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5044), - [anon_sym_BSLASHdef] = ACTIONS(5048), - [anon_sym_BSLASHlet] = ACTIONS(5050), - [anon_sym_BSLASHleft] = ACTIONS(3081), - [anon_sym_BSLASHbig] = ACTIONS(3081), - [anon_sym_BSLASHBig] = ACTIONS(3081), - [anon_sym_BSLASHbigg] = ACTIONS(3081), - [anon_sym_BSLASHBigg] = ACTIONS(3081), - [anon_sym_BSLASHbigl] = ACTIONS(3081), - [anon_sym_BSLASHBigl] = ACTIONS(3081), - [anon_sym_BSLASHbiggl] = ACTIONS(3081), - [anon_sym_BSLASHBiggl] = ACTIONS(3081), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5054), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5054), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5056), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5056), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5058), - [anon_sym_BSLASHgls] = ACTIONS(5060), - [anon_sym_BSLASHGls] = ACTIONS(5060), - [anon_sym_BSLASHGLS] = ACTIONS(5060), - [anon_sym_BSLASHglspl] = ACTIONS(5060), - [anon_sym_BSLASHGlspl] = ACTIONS(5060), - [anon_sym_BSLASHGLSpl] = ACTIONS(5060), - [anon_sym_BSLASHglsdisp] = ACTIONS(5060), - [anon_sym_BSLASHglslink] = ACTIONS(5060), - [anon_sym_BSLASHglstext] = ACTIONS(5060), - [anon_sym_BSLASHGlstext] = ACTIONS(5060), - [anon_sym_BSLASHGLStext] = ACTIONS(5060), - [anon_sym_BSLASHglsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5060), - [anon_sym_BSLASHglsplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSplural] = ACTIONS(5060), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5060), - [anon_sym_BSLASHglsname] = ACTIONS(5060), - [anon_sym_BSLASHGlsname] = ACTIONS(5060), - [anon_sym_BSLASHGLSname] = ACTIONS(5060), - [anon_sym_BSLASHglssymbol] = ACTIONS(5060), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5060), - [anon_sym_BSLASHglsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5060), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5060), - [anon_sym_BSLASHglsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5060), - [anon_sym_BSLASHglsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5060), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5060), - [anon_sym_BSLASHglsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5060), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5060), - [anon_sym_BSLASHglsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5060), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5060), - [anon_sym_BSLASHnewacronym] = ACTIONS(5062), - [anon_sym_BSLASHacrshort] = ACTIONS(5064), - [anon_sym_BSLASHAcrshort] = ACTIONS(5064), - [anon_sym_BSLASHACRshort] = ACTIONS(5064), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5064), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5064), - [anon_sym_BSLASHacrlong] = ACTIONS(5064), - [anon_sym_BSLASHAcrlong] = ACTIONS(5064), - [anon_sym_BSLASHACRlong] = ACTIONS(5064), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5064), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5064), - [anon_sym_BSLASHacrfull] = ACTIONS(5064), - [anon_sym_BSLASHAcrfull] = ACTIONS(5064), - [anon_sym_BSLASHACRfull] = ACTIONS(5064), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5064), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5064), - [anon_sym_BSLASHacs] = ACTIONS(5064), - [anon_sym_BSLASHAcs] = ACTIONS(5064), - [anon_sym_BSLASHacsp] = ACTIONS(5064), - [anon_sym_BSLASHAcsp] = ACTIONS(5064), - [anon_sym_BSLASHacl] = ACTIONS(5064), - [anon_sym_BSLASHAcl] = ACTIONS(5064), - [anon_sym_BSLASHaclp] = ACTIONS(5064), - [anon_sym_BSLASHAclp] = ACTIONS(5064), - [anon_sym_BSLASHacf] = ACTIONS(5064), - [anon_sym_BSLASHAcf] = ACTIONS(5064), - [anon_sym_BSLASHacfp] = ACTIONS(5064), - [anon_sym_BSLASHAcfp] = ACTIONS(5064), - [anon_sym_BSLASHac] = ACTIONS(5064), - [anon_sym_BSLASHAc] = ACTIONS(5064), - [anon_sym_BSLASHacp] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5064), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5064), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5064), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5064), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5066), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5066), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5068), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5070), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5072), - [anon_sym_BSLASHcolor] = ACTIONS(5074), - [anon_sym_BSLASHcolorbox] = ACTIONS(5074), - [anon_sym_BSLASHtextcolor] = ACTIONS(5074), - [anon_sym_BSLASHpagecolor] = ACTIONS(5074), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5076), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5076), - [anon_sym_BSLASHtext] = ACTIONS(3081), - [anon_sym_BSLASHintertext] = ACTIONS(3081), - [anon_sym_shortintertext] = ACTIONS(3081), - }, - [351] = { - [sym_block_comment] = STATE(1842), - [sym_operator] = STATE(1842), - [sym_subscript] = STATE(1842), - [sym_superscript] = STATE(1842), - [sym__command] = STATE(1842), - [sym_generic_command] = STATE(1842), - [sym_title_declaration] = STATE(1842), - [sym_author_declaration] = STATE(1842), - [sym_package_include] = STATE(1842), - [sym_class_include] = STATE(1842), - [sym_latex_include] = STATE(1842), - [sym_biblatex_include] = STATE(1842), - [sym_bibtex_include] = STATE(1842), - [sym_graphics_include] = STATE(1842), - [sym_svg_include] = STATE(1842), - [sym_inkscape_include] = STATE(1842), - [sym_verbatim_include] = STATE(1842), - [sym_import_include] = STATE(1842), - [sym_caption] = STATE(1842), - [sym_citation] = STATE(1842), - [sym_label_definition] = STATE(1842), - [sym_label_reference] = STATE(1842), - [sym_label_reference_range] = STATE(1842), - [sym_label_number] = STATE(1842), - [sym_new_command_definition] = STATE(1842), - [sym_old_command_definition] = STATE(1842), - [sym_let_command_definition] = STATE(1842), - [sym_paired_delimiter_definition] = STATE(1842), - [sym_environment_definition] = STATE(1842), - [sym_glossary_entry_definition] = STATE(1842), - [sym_glossary_entry_reference] = STATE(1842), - [sym_acronym_definition] = STATE(1842), - [sym_acronym_reference] = STATE(1842), - [sym_theorem_definition] = STATE(1842), - [sym_color_definition] = STATE(1842), - [sym_color_set_definition] = STATE(1842), - [sym_color_reference] = STATE(1842), - [sym_tikz_library_import] = STATE(1842), - [aux_sym_text_repeat1] = STATE(351), - [sym_command_name] = ACTIONS(5689), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5692), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_BSLASHand] = ACTIONS(3091), - [sym_word] = ACTIONS(5695), - [sym_placeholder] = ACTIONS(5698), - [anon_sym_PLUS] = ACTIONS(5701), - [anon_sym_DASH] = ACTIONS(5701), - [anon_sym_STAR] = ACTIONS(5701), - [anon_sym_SLASH] = ACTIONS(5701), - [anon_sym_LT] = ACTIONS(5704), - [anon_sym_GT] = ACTIONS(5704), - [anon_sym_BANG] = ACTIONS(5704), - [anon_sym_PIPE] = ACTIONS(5704), - [anon_sym_COLON] = ACTIONS(5704), - [anon_sym_SQUOTE] = ACTIONS(5704), - [anon_sym__] = ACTIONS(5707), - [anon_sym_CARET] = ACTIONS(5710), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3089), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3089), - [anon_sym_DOLLAR] = ACTIONS(3091), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3089), - [anon_sym_BSLASHtitle] = ACTIONS(5713), - [anon_sym_BSLASHauthor] = ACTIONS(5716), - [anon_sym_BSLASHusepackage] = ACTIONS(5719), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5719), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5722), - [anon_sym_BSLASHinclude] = ACTIONS(5725), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5725), - [anon_sym_BSLASHinput] = ACTIONS(5725), - [anon_sym_BSLASHsubfile] = ACTIONS(5725), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5728), - [anon_sym_BSLASHbibliography] = ACTIONS(5731), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5734), - [anon_sym_BSLASHincludesvg] = ACTIONS(5737), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5740), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5743), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5743), - [anon_sym_BSLASHimport] = ACTIONS(5746), - [anon_sym_BSLASHsubimport] = ACTIONS(5746), - [anon_sym_BSLASHinputfrom] = ACTIONS(5746), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5746), - [anon_sym_BSLASHincludefrom] = ACTIONS(5746), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5746), - [anon_sym_BSLASHcaption] = ACTIONS(5749), - [anon_sym_BSLASHcite] = ACTIONS(5752), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5755), - [anon_sym_BSLASHCite] = ACTIONS(5752), - [anon_sym_BSLASHnocite] = ACTIONS(5752), - [anon_sym_BSLASHcitet] = ACTIONS(5752), - [anon_sym_BSLASHcitep] = ACTIONS(5752), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5755), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5755), - [anon_sym_BSLASHciteauthor] = ACTIONS(5752), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5755), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5752), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5755), - [anon_sym_BSLASHcitetitle] = ACTIONS(5752), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5755), - [anon_sym_BSLASHciteyear] = ACTIONS(5752), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5755), - [anon_sym_BSLASHcitedate] = ACTIONS(5752), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5755), - [anon_sym_BSLASHciteurl] = ACTIONS(5752), - [anon_sym_BSLASHfullcite] = ACTIONS(5752), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5752), - [anon_sym_BSLASHcitealt] = ACTIONS(5752), - [anon_sym_BSLASHcitealp] = ACTIONS(5752), - [anon_sym_BSLASHcitetext] = ACTIONS(5752), - [anon_sym_BSLASHparencite] = ACTIONS(5752), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5755), - [anon_sym_BSLASHParencite] = ACTIONS(5752), - [anon_sym_BSLASHfootcite] = ACTIONS(5752), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5752), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5752), - [anon_sym_BSLASHtextcite] = ACTIONS(5752), - [anon_sym_BSLASHTextcite] = ACTIONS(5752), - [anon_sym_BSLASHsmartcite] = ACTIONS(5752), - [anon_sym_BSLASHSmartcite] = ACTIONS(5752), - [anon_sym_BSLASHsupercite] = ACTIONS(5752), - [anon_sym_BSLASHautocite] = ACTIONS(5752), - [anon_sym_BSLASHAutocite] = ACTIONS(5752), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5755), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5755), - [anon_sym_BSLASHvolcite] = ACTIONS(5752), - [anon_sym_BSLASHVolcite] = ACTIONS(5752), - [anon_sym_BSLASHpvolcite] = ACTIONS(5752), - [anon_sym_BSLASHPvolcite] = ACTIONS(5752), - [anon_sym_BSLASHfvolcite] = ACTIONS(5752), - [anon_sym_BSLASHftvolcite] = ACTIONS(5752), - [anon_sym_BSLASHsvolcite] = ACTIONS(5752), - [anon_sym_BSLASHSvolcite] = ACTIONS(5752), - [anon_sym_BSLASHtvolcite] = ACTIONS(5752), - [anon_sym_BSLASHTvolcite] = ACTIONS(5752), - [anon_sym_BSLASHavolcite] = ACTIONS(5752), - [anon_sym_BSLASHAvolcite] = ACTIONS(5752), - [anon_sym_BSLASHnotecite] = ACTIONS(5752), - [anon_sym_BSLASHNotecite] = ACTIONS(5752), - [anon_sym_BSLASHpnotecite] = ACTIONS(5752), - [anon_sym_BSLASHPnotecite] = ACTIONS(5752), - [anon_sym_BSLASHfnotecite] = ACTIONS(5752), - [anon_sym_BSLASHlabel] = ACTIONS(5758), - [anon_sym_BSLASHref] = ACTIONS(5761), - [anon_sym_BSLASHeqref] = ACTIONS(5761), - [anon_sym_BSLASHvref] = ACTIONS(5761), - [anon_sym_BSLASHVref] = ACTIONS(5761), - [anon_sym_BSLASHautoref] = ACTIONS(5761), - [anon_sym_BSLASHpageref] = ACTIONS(5761), - [anon_sym_BSLASHcref] = ACTIONS(5761), - [anon_sym_BSLASHCref] = ACTIONS(5761), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5764), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5764), - [anon_sym_BSLASHnamecref] = ACTIONS(5761), - [anon_sym_BSLASHnameCref] = ACTIONS(5761), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5761), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5761), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5761), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5761), - [anon_sym_BSLASHlabelcref] = ACTIONS(5761), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5761), - [anon_sym_BSLASHcrefrange] = ACTIONS(5767), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5770), - [anon_sym_BSLASHCrefrange] = ACTIONS(5767), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5770), - [anon_sym_BSLASHnewlabel] = ACTIONS(5773), - [anon_sym_BSLASHnewcommand] = ACTIONS(5776), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5779), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5776), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5779), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5776), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5779), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5776), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5779), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5776), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5776), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5776), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5776), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5776), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5776), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5776), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5776), - [anon_sym_BSLASHdef] = ACTIONS(5782), - [anon_sym_BSLASHlet] = ACTIONS(5785), - [anon_sym_BSLASHleft] = ACTIONS(3091), - [anon_sym_BSLASHbig] = ACTIONS(3091), - [anon_sym_BSLASHBig] = ACTIONS(3091), - [anon_sym_BSLASHbigg] = ACTIONS(3091), - [anon_sym_BSLASHBigg] = ACTIONS(3091), - [anon_sym_BSLASHbigl] = ACTIONS(3091), - [anon_sym_BSLASHBigl] = ACTIONS(3091), - [anon_sym_BSLASHbiggl] = ACTIONS(3091), - [anon_sym_BSLASHBiggl] = ACTIONS(3091), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5788), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5788), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5791), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5791), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5791), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5791), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5791), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5791), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5794), - [anon_sym_BSLASHgls] = ACTIONS(5797), - [anon_sym_BSLASHGls] = ACTIONS(5797), - [anon_sym_BSLASHGLS] = ACTIONS(5797), - [anon_sym_BSLASHglspl] = ACTIONS(5797), - [anon_sym_BSLASHGlspl] = ACTIONS(5797), - [anon_sym_BSLASHGLSpl] = ACTIONS(5797), - [anon_sym_BSLASHglsdisp] = ACTIONS(5797), - [anon_sym_BSLASHglslink] = ACTIONS(5797), - [anon_sym_BSLASHglstext] = ACTIONS(5797), - [anon_sym_BSLASHGlstext] = ACTIONS(5797), - [anon_sym_BSLASHGLStext] = ACTIONS(5797), - [anon_sym_BSLASHglsfirst] = ACTIONS(5797), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5797), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5797), - [anon_sym_BSLASHglsplural] = ACTIONS(5797), - [anon_sym_BSLASHGlsplural] = ACTIONS(5797), - [anon_sym_BSLASHGLSplural] = ACTIONS(5797), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5797), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5797), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5797), - [anon_sym_BSLASHglsname] = ACTIONS(5797), - [anon_sym_BSLASHGlsname] = ACTIONS(5797), - [anon_sym_BSLASHGLSname] = ACTIONS(5797), - [anon_sym_BSLASHglssymbol] = ACTIONS(5797), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5797), - [anon_sym_BSLASHglsdesc] = ACTIONS(5797), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5797), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5797), - [anon_sym_BSLASHglsuseri] = ACTIONS(5797), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5797), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5797), - [anon_sym_BSLASHglsuserii] = ACTIONS(5797), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5797), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5797), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5797), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5797), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5797), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5797), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5797), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5797), - [anon_sym_BSLASHglsuserv] = ACTIONS(5797), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5797), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5797), - [anon_sym_BSLASHglsuservi] = ACTIONS(5797), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5797), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5797), - [anon_sym_BSLASHnewacronym] = ACTIONS(5800), - [anon_sym_BSLASHacrshort] = ACTIONS(5803), - [anon_sym_BSLASHAcrshort] = ACTIONS(5803), - [anon_sym_BSLASHACRshort] = ACTIONS(5803), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5803), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5803), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5803), - [anon_sym_BSLASHacrlong] = ACTIONS(5803), - [anon_sym_BSLASHAcrlong] = ACTIONS(5803), - [anon_sym_BSLASHACRlong] = ACTIONS(5803), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5803), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5803), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5803), - [anon_sym_BSLASHacrfull] = ACTIONS(5803), - [anon_sym_BSLASHAcrfull] = ACTIONS(5803), - [anon_sym_BSLASHACRfull] = ACTIONS(5803), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5803), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5803), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5803), - [anon_sym_BSLASHacs] = ACTIONS(5803), - [anon_sym_BSLASHAcs] = ACTIONS(5803), - [anon_sym_BSLASHacsp] = ACTIONS(5803), - [anon_sym_BSLASHAcsp] = ACTIONS(5803), - [anon_sym_BSLASHacl] = ACTIONS(5803), - [anon_sym_BSLASHAcl] = ACTIONS(5803), - [anon_sym_BSLASHaclp] = ACTIONS(5803), - [anon_sym_BSLASHAclp] = ACTIONS(5803), - [anon_sym_BSLASHacf] = ACTIONS(5803), - [anon_sym_BSLASHAcf] = ACTIONS(5803), - [anon_sym_BSLASHacfp] = ACTIONS(5803), - [anon_sym_BSLASHAcfp] = ACTIONS(5803), - [anon_sym_BSLASHac] = ACTIONS(5803), - [anon_sym_BSLASHAc] = ACTIONS(5803), - [anon_sym_BSLASHacp] = ACTIONS(5803), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5803), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5803), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5803), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5803), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5803), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5803), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5803), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5803), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5803), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5803), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5806), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5809), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5806), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5809), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5812), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5815), - [anon_sym_BSLASHcolor] = ACTIONS(5818), - [anon_sym_BSLASHcolorbox] = ACTIONS(5818), - [anon_sym_BSLASHtextcolor] = ACTIONS(5818), - [anon_sym_BSLASHpagecolor] = ACTIONS(5818), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5821), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5821), - [anon_sym_BSLASHtext] = ACTIONS(3091), - [anon_sym_BSLASHintertext] = ACTIONS(3091), - [anon_sym_shortintertext] = ACTIONS(3091), - }, - [352] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHright] = ACTIONS(5824), - [anon_sym_BSLASHbigr] = ACTIONS(5824), - [anon_sym_BSLASHBigr] = ACTIONS(5824), - [anon_sym_BSLASHbiggr] = ACTIONS(5824), - [anon_sym_BSLASHBiggr] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [353] = { - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(411), - [aux_sym__section_repeat6] = STATE(411), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHright] = ACTIONS(2202), - [anon_sym_BSLASHbigr] = ACTIONS(2202), - [anon_sym_BSLASHBigr] = ACTIONS(2202), - [anon_sym_BSLASHbiggr] = ACTIONS(2202), - [anon_sym_BSLASHBiggr] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [354] = { - [sym__section_part] = STATE(551), - [sym_curly_group] = STATE(550), - [sym_brack_group] = STATE(2476), - [sym_command_name] = ACTIONS(5828), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5828), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5830), - [anon_sym_COMMA] = ACTIONS(5830), - [anon_sym_EQ] = ACTIONS(5830), - [anon_sym_LPAREN] = ACTIONS(5830), - [anon_sym_RPAREN] = ACTIONS(5830), - [anon_sym_BSLASHpart] = ACTIONS(5828), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddpart] = ACTIONS(5828), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5830), - [anon_sym_BSLASHchapter] = ACTIONS(5828), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddchap] = ACTIONS(5828), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsection] = ACTIONS(5828), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddsec] = ACTIONS(5828), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubsection] = ACTIONS(5828), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5828), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHparagraph] = ACTIONS(5828), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5828), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5830), - [anon_sym_BSLASHitem] = ACTIONS(5828), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5830), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(5828), - [sym_placeholder] = ACTIONS(5830), - [anon_sym_PLUS] = ACTIONS(5830), - [anon_sym_DASH] = ACTIONS(5830), - [anon_sym_STAR] = ACTIONS(5830), - [anon_sym_SLASH] = ACTIONS(5830), - [anon_sym_LT] = ACTIONS(5828), - [anon_sym_GT] = ACTIONS(5828), - [anon_sym_BANG] = ACTIONS(5828), - [anon_sym_PIPE] = ACTIONS(5828), - [anon_sym_COLON] = ACTIONS(5828), - [anon_sym_SQUOTE] = ACTIONS(5828), - [anon_sym__] = ACTIONS(5830), - [anon_sym_CARET] = ACTIONS(5830), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5830), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5830), - [anon_sym_DOLLAR] = ACTIONS(5828), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5830), - [anon_sym_BSLASHbegin] = ACTIONS(5828), - [anon_sym_BSLASHtitle] = ACTIONS(5828), - [anon_sym_BSLASHauthor] = ACTIONS(5828), - [anon_sym_BSLASHusepackage] = ACTIONS(5828), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5828), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5828), - [anon_sym_BSLASHinclude] = ACTIONS(5828), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5828), - [anon_sym_BSLASHinput] = ACTIONS(5828), - [anon_sym_BSLASHsubfile] = ACTIONS(5828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5828), - [anon_sym_BSLASHbibliography] = ACTIONS(5828), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5828), - [anon_sym_BSLASHincludesvg] = ACTIONS(5828), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5828), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5828), - [anon_sym_BSLASHimport] = ACTIONS(5828), - [anon_sym_BSLASHsubimport] = ACTIONS(5828), - [anon_sym_BSLASHinputfrom] = ACTIONS(5828), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5828), - [anon_sym_BSLASHincludefrom] = ACTIONS(5828), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5828), - [anon_sym_BSLASHcaption] = ACTIONS(5828), - [anon_sym_BSLASHcite] = ACTIONS(5828), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCite] = ACTIONS(5828), - [anon_sym_BSLASHnocite] = ACTIONS(5828), - [anon_sym_BSLASHcitet] = ACTIONS(5828), - [anon_sym_BSLASHcitep] = ACTIONS(5828), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteauthor] = ACTIONS(5828), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5828), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitetitle] = ACTIONS(5828), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteyear] = ACTIONS(5828), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitedate] = ACTIONS(5828), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteurl] = ACTIONS(5828), - [anon_sym_BSLASHfullcite] = ACTIONS(5828), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5828), - [anon_sym_BSLASHcitealt] = ACTIONS(5828), - [anon_sym_BSLASHcitealp] = ACTIONS(5828), - [anon_sym_BSLASHcitetext] = ACTIONS(5828), - [anon_sym_BSLASHparencite] = ACTIONS(5828), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHParencite] = ACTIONS(5828), - [anon_sym_BSLASHfootcite] = ACTIONS(5828), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5828), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5828), - [anon_sym_BSLASHtextcite] = ACTIONS(5828), - [anon_sym_BSLASHTextcite] = ACTIONS(5828), - [anon_sym_BSLASHsmartcite] = ACTIONS(5828), - [anon_sym_BSLASHSmartcite] = ACTIONS(5828), - [anon_sym_BSLASHsupercite] = ACTIONS(5828), - [anon_sym_BSLASHautocite] = ACTIONS(5828), - [anon_sym_BSLASHAutocite] = ACTIONS(5828), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHvolcite] = ACTIONS(5828), - [anon_sym_BSLASHVolcite] = ACTIONS(5828), - [anon_sym_BSLASHpvolcite] = ACTIONS(5828), - [anon_sym_BSLASHPvolcite] = ACTIONS(5828), - [anon_sym_BSLASHfvolcite] = ACTIONS(5828), - [anon_sym_BSLASHftvolcite] = ACTIONS(5828), - [anon_sym_BSLASHsvolcite] = ACTIONS(5828), - [anon_sym_BSLASHSvolcite] = ACTIONS(5828), - [anon_sym_BSLASHtvolcite] = ACTIONS(5828), - [anon_sym_BSLASHTvolcite] = ACTIONS(5828), - [anon_sym_BSLASHavolcite] = ACTIONS(5828), - [anon_sym_BSLASHAvolcite] = ACTIONS(5828), - [anon_sym_BSLASHnotecite] = ACTIONS(5828), - [anon_sym_BSLASHNotecite] = ACTIONS(5828), - [anon_sym_BSLASHpnotecite] = ACTIONS(5828), - [anon_sym_BSLASHPnotecite] = ACTIONS(5828), - [anon_sym_BSLASHfnotecite] = ACTIONS(5828), - [anon_sym_BSLASHlabel] = ACTIONS(5828), - [anon_sym_BSLASHref] = ACTIONS(5828), - [anon_sym_BSLASHeqref] = ACTIONS(5828), - [anon_sym_BSLASHvref] = ACTIONS(5828), - [anon_sym_BSLASHVref] = ACTIONS(5828), - [anon_sym_BSLASHautoref] = ACTIONS(5828), - [anon_sym_BSLASHpageref] = ACTIONS(5828), - [anon_sym_BSLASHcref] = ACTIONS(5828), - [anon_sym_BSLASHCref] = ACTIONS(5828), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5830), - [anon_sym_BSLASHnamecref] = ACTIONS(5828), - [anon_sym_BSLASHnameCref] = ACTIONS(5828), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5828), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5828), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5828), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5828), - [anon_sym_BSLASHlabelcref] = ACTIONS(5828), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5828), - [anon_sym_BSLASHcrefrange] = ACTIONS(5828), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCrefrange] = ACTIONS(5828), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5830), - [anon_sym_BSLASHnewlabel] = ACTIONS(5828), - [anon_sym_BSLASHnewcommand] = ACTIONS(5828), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5828), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5828), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5830), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHdef] = ACTIONS(5828), - [anon_sym_BSLASHlet] = ACTIONS(5828), - [anon_sym_BSLASHleft] = ACTIONS(5828), - [anon_sym_BSLASHbig] = ACTIONS(5828), - [anon_sym_BSLASHBig] = ACTIONS(5828), - [anon_sym_BSLASHbigg] = ACTIONS(5828), - [anon_sym_BSLASHBigg] = ACTIONS(5828), - [anon_sym_BSLASHbigl] = ACTIONS(5828), - [anon_sym_BSLASHBigl] = ACTIONS(5828), - [anon_sym_BSLASHbiggl] = ACTIONS(5828), - [anon_sym_BSLASHBiggl] = ACTIONS(5828), - [anon_sym_BSLASHright] = ACTIONS(5828), - [anon_sym_BSLASHbigr] = ACTIONS(5828), - [anon_sym_BSLASHBigr] = ACTIONS(5828), - [anon_sym_BSLASHbiggr] = ACTIONS(5828), - [anon_sym_BSLASHBiggr] = ACTIONS(5828), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5828), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5828), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5828), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5828), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5828), - [anon_sym_BSLASHgls] = ACTIONS(5828), - [anon_sym_BSLASHGls] = ACTIONS(5828), - [anon_sym_BSLASHGLS] = ACTIONS(5828), - [anon_sym_BSLASHglspl] = ACTIONS(5828), - [anon_sym_BSLASHGlspl] = ACTIONS(5828), - [anon_sym_BSLASHGLSpl] = ACTIONS(5828), - [anon_sym_BSLASHglsdisp] = ACTIONS(5828), - [anon_sym_BSLASHglslink] = ACTIONS(5828), - [anon_sym_BSLASHglstext] = ACTIONS(5828), - [anon_sym_BSLASHGlstext] = ACTIONS(5828), - [anon_sym_BSLASHGLStext] = ACTIONS(5828), - [anon_sym_BSLASHglsfirst] = ACTIONS(5828), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5828), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5828), - [anon_sym_BSLASHglsplural] = ACTIONS(5828), - [anon_sym_BSLASHGlsplural] = ACTIONS(5828), - [anon_sym_BSLASHGLSplural] = ACTIONS(5828), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHglsname] = ACTIONS(5828), - [anon_sym_BSLASHGlsname] = ACTIONS(5828), - [anon_sym_BSLASHGLSname] = ACTIONS(5828), - [anon_sym_BSLASHglssymbol] = ACTIONS(5828), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5828), - [anon_sym_BSLASHglsdesc] = ACTIONS(5828), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5828), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5828), - [anon_sym_BSLASHglsuseri] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5828), - [anon_sym_BSLASHglsuserii] = ACTIONS(5828), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5828), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5828), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5828), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5828), - [anon_sym_BSLASHglsuserv] = ACTIONS(5828), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5828), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5828), - [anon_sym_BSLASHglsuservi] = ACTIONS(5828), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5828), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5828), - [anon_sym_BSLASHnewacronym] = ACTIONS(5828), - [anon_sym_BSLASHacrshort] = ACTIONS(5828), - [anon_sym_BSLASHAcrshort] = ACTIONS(5828), - [anon_sym_BSLASHACRshort] = ACTIONS(5828), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5828), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5828), - [anon_sym_BSLASHacrlong] = ACTIONS(5828), - [anon_sym_BSLASHAcrlong] = ACTIONS(5828), - [anon_sym_BSLASHACRlong] = ACTIONS(5828), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5828), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5828), - [anon_sym_BSLASHacrfull] = ACTIONS(5828), - [anon_sym_BSLASHAcrfull] = ACTIONS(5828), - [anon_sym_BSLASHACRfull] = ACTIONS(5828), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5828), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5828), - [anon_sym_BSLASHacs] = ACTIONS(5828), - [anon_sym_BSLASHAcs] = ACTIONS(5828), - [anon_sym_BSLASHacsp] = ACTIONS(5828), - [anon_sym_BSLASHAcsp] = ACTIONS(5828), - [anon_sym_BSLASHacl] = ACTIONS(5828), - [anon_sym_BSLASHAcl] = ACTIONS(5828), - [anon_sym_BSLASHaclp] = ACTIONS(5828), - [anon_sym_BSLASHAclp] = ACTIONS(5828), - [anon_sym_BSLASHacf] = ACTIONS(5828), - [anon_sym_BSLASHAcf] = ACTIONS(5828), - [anon_sym_BSLASHacfp] = ACTIONS(5828), - [anon_sym_BSLASHAcfp] = ACTIONS(5828), - [anon_sym_BSLASHac] = ACTIONS(5828), - [anon_sym_BSLASHAc] = ACTIONS(5828), - [anon_sym_BSLASHacp] = ACTIONS(5828), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5828), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5828), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5828), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5828), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5828), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5828), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5828), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5830), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5828), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5830), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5828), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5828), - [anon_sym_BSLASHcolor] = ACTIONS(5828), - [anon_sym_BSLASHcolorbox] = ACTIONS(5828), - [anon_sym_BSLASHtextcolor] = ACTIONS(5828), - [anon_sym_BSLASHpagecolor] = ACTIONS(5828), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5828), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5828), - [anon_sym_BSLASHtext] = ACTIONS(5828), - [anon_sym_BSLASHintertext] = ACTIONS(5828), - [anon_sym_shortintertext] = ACTIONS(5828), - }, - [355] = { - [sym__section_part] = STATE(549), - [sym_curly_group] = STATE(550), - [sym_brack_group] = STATE(2476), - [sym_command_name] = ACTIONS(5832), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5832), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5834), - [anon_sym_COMMA] = ACTIONS(5834), - [anon_sym_EQ] = ACTIONS(5834), - [anon_sym_LPAREN] = ACTIONS(5834), - [anon_sym_RPAREN] = ACTIONS(5834), - [anon_sym_BSLASHpart] = ACTIONS(5832), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddpart] = ACTIONS(5832), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5834), - [anon_sym_BSLASHchapter] = ACTIONS(5832), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddchap] = ACTIONS(5832), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsection] = ACTIONS(5832), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddsec] = ACTIONS(5832), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubsection] = ACTIONS(5832), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5832), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHparagraph] = ACTIONS(5832), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5832), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5834), - [anon_sym_BSLASHitem] = ACTIONS(5832), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5834), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(5832), - [sym_placeholder] = ACTIONS(5834), - [anon_sym_PLUS] = ACTIONS(5834), - [anon_sym_DASH] = ACTIONS(5834), - [anon_sym_STAR] = ACTIONS(5834), - [anon_sym_SLASH] = ACTIONS(5834), - [anon_sym_LT] = ACTIONS(5832), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_BANG] = ACTIONS(5832), - [anon_sym_PIPE] = ACTIONS(5832), - [anon_sym_COLON] = ACTIONS(5832), - [anon_sym_SQUOTE] = ACTIONS(5832), - [anon_sym__] = ACTIONS(5834), - [anon_sym_CARET] = ACTIONS(5834), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5834), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5834), - [anon_sym_DOLLAR] = ACTIONS(5832), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5834), - [anon_sym_BSLASHbegin] = ACTIONS(5832), - [anon_sym_BSLASHtitle] = ACTIONS(5832), - [anon_sym_BSLASHauthor] = ACTIONS(5832), - [anon_sym_BSLASHusepackage] = ACTIONS(5832), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5832), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5832), - [anon_sym_BSLASHinclude] = ACTIONS(5832), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5832), - [anon_sym_BSLASHinput] = ACTIONS(5832), - [anon_sym_BSLASHsubfile] = ACTIONS(5832), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5832), - [anon_sym_BSLASHbibliography] = ACTIONS(5832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5832), - [anon_sym_BSLASHincludesvg] = ACTIONS(5832), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5832), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5832), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5832), - [anon_sym_BSLASHimport] = ACTIONS(5832), - [anon_sym_BSLASHsubimport] = ACTIONS(5832), - [anon_sym_BSLASHinputfrom] = ACTIONS(5832), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5832), - [anon_sym_BSLASHincludefrom] = ACTIONS(5832), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5832), - [anon_sym_BSLASHcaption] = ACTIONS(5832), - [anon_sym_BSLASHcite] = ACTIONS(5832), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCite] = ACTIONS(5832), - [anon_sym_BSLASHnocite] = ACTIONS(5832), - [anon_sym_BSLASHcitet] = ACTIONS(5832), - [anon_sym_BSLASHcitep] = ACTIONS(5832), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteauthor] = ACTIONS(5832), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5832), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitetitle] = ACTIONS(5832), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteyear] = ACTIONS(5832), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitedate] = ACTIONS(5832), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteurl] = ACTIONS(5832), - [anon_sym_BSLASHfullcite] = ACTIONS(5832), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5832), - [anon_sym_BSLASHcitealt] = ACTIONS(5832), - [anon_sym_BSLASHcitealp] = ACTIONS(5832), - [anon_sym_BSLASHcitetext] = ACTIONS(5832), - [anon_sym_BSLASHparencite] = ACTIONS(5832), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHParencite] = ACTIONS(5832), - [anon_sym_BSLASHfootcite] = ACTIONS(5832), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5832), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5832), - [anon_sym_BSLASHtextcite] = ACTIONS(5832), - [anon_sym_BSLASHTextcite] = ACTIONS(5832), - [anon_sym_BSLASHsmartcite] = ACTIONS(5832), - [anon_sym_BSLASHSmartcite] = ACTIONS(5832), - [anon_sym_BSLASHsupercite] = ACTIONS(5832), - [anon_sym_BSLASHautocite] = ACTIONS(5832), - [anon_sym_BSLASHAutocite] = ACTIONS(5832), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHvolcite] = ACTIONS(5832), - [anon_sym_BSLASHVolcite] = ACTIONS(5832), - [anon_sym_BSLASHpvolcite] = ACTIONS(5832), - [anon_sym_BSLASHPvolcite] = ACTIONS(5832), - [anon_sym_BSLASHfvolcite] = ACTIONS(5832), - [anon_sym_BSLASHftvolcite] = ACTIONS(5832), - [anon_sym_BSLASHsvolcite] = ACTIONS(5832), - [anon_sym_BSLASHSvolcite] = ACTIONS(5832), - [anon_sym_BSLASHtvolcite] = ACTIONS(5832), - [anon_sym_BSLASHTvolcite] = ACTIONS(5832), - [anon_sym_BSLASHavolcite] = ACTIONS(5832), - [anon_sym_BSLASHAvolcite] = ACTIONS(5832), - [anon_sym_BSLASHnotecite] = ACTIONS(5832), - [anon_sym_BSLASHNotecite] = ACTIONS(5832), - [anon_sym_BSLASHpnotecite] = ACTIONS(5832), - [anon_sym_BSLASHPnotecite] = ACTIONS(5832), - [anon_sym_BSLASHfnotecite] = ACTIONS(5832), - [anon_sym_BSLASHlabel] = ACTIONS(5832), - [anon_sym_BSLASHref] = ACTIONS(5832), - [anon_sym_BSLASHeqref] = ACTIONS(5832), - [anon_sym_BSLASHvref] = ACTIONS(5832), - [anon_sym_BSLASHVref] = ACTIONS(5832), - [anon_sym_BSLASHautoref] = ACTIONS(5832), - [anon_sym_BSLASHpageref] = ACTIONS(5832), - [anon_sym_BSLASHcref] = ACTIONS(5832), - [anon_sym_BSLASHCref] = ACTIONS(5832), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5834), - [anon_sym_BSLASHnamecref] = ACTIONS(5832), - [anon_sym_BSLASHnameCref] = ACTIONS(5832), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5832), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5832), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5832), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5832), - [anon_sym_BSLASHlabelcref] = ACTIONS(5832), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5832), - [anon_sym_BSLASHcrefrange] = ACTIONS(5832), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCrefrange] = ACTIONS(5832), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5834), - [anon_sym_BSLASHnewlabel] = ACTIONS(5832), - [anon_sym_BSLASHnewcommand] = ACTIONS(5832), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5832), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5832), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5834), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHdef] = ACTIONS(5832), - [anon_sym_BSLASHlet] = ACTIONS(5832), - [anon_sym_BSLASHleft] = ACTIONS(5832), - [anon_sym_BSLASHbig] = ACTIONS(5832), - [anon_sym_BSLASHBig] = ACTIONS(5832), - [anon_sym_BSLASHbigg] = ACTIONS(5832), - [anon_sym_BSLASHBigg] = ACTIONS(5832), - [anon_sym_BSLASHbigl] = ACTIONS(5832), - [anon_sym_BSLASHBigl] = ACTIONS(5832), - [anon_sym_BSLASHbiggl] = ACTIONS(5832), - [anon_sym_BSLASHBiggl] = ACTIONS(5832), - [anon_sym_BSLASHright] = ACTIONS(5832), - [anon_sym_BSLASHbigr] = ACTIONS(5832), - [anon_sym_BSLASHBigr] = ACTIONS(5832), - [anon_sym_BSLASHbiggr] = ACTIONS(5832), - [anon_sym_BSLASHBiggr] = ACTIONS(5832), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5832), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5832), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5832), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5832), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5832), - [anon_sym_BSLASHgls] = ACTIONS(5832), - [anon_sym_BSLASHGls] = ACTIONS(5832), - [anon_sym_BSLASHGLS] = ACTIONS(5832), - [anon_sym_BSLASHglspl] = ACTIONS(5832), - [anon_sym_BSLASHGlspl] = ACTIONS(5832), - [anon_sym_BSLASHGLSpl] = ACTIONS(5832), - [anon_sym_BSLASHglsdisp] = ACTIONS(5832), - [anon_sym_BSLASHglslink] = ACTIONS(5832), - [anon_sym_BSLASHglstext] = ACTIONS(5832), - [anon_sym_BSLASHGlstext] = ACTIONS(5832), - [anon_sym_BSLASHGLStext] = ACTIONS(5832), - [anon_sym_BSLASHglsfirst] = ACTIONS(5832), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5832), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5832), - [anon_sym_BSLASHglsplural] = ACTIONS(5832), - [anon_sym_BSLASHGlsplural] = ACTIONS(5832), - [anon_sym_BSLASHGLSplural] = ACTIONS(5832), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHglsname] = ACTIONS(5832), - [anon_sym_BSLASHGlsname] = ACTIONS(5832), - [anon_sym_BSLASHGLSname] = ACTIONS(5832), - [anon_sym_BSLASHglssymbol] = ACTIONS(5832), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5832), - [anon_sym_BSLASHglsdesc] = ACTIONS(5832), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5832), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5832), - [anon_sym_BSLASHglsuseri] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5832), - [anon_sym_BSLASHglsuserii] = ACTIONS(5832), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5832), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5832), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5832), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5832), - [anon_sym_BSLASHglsuserv] = ACTIONS(5832), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5832), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5832), - [anon_sym_BSLASHglsuservi] = ACTIONS(5832), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5832), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5832), - [anon_sym_BSLASHnewacronym] = ACTIONS(5832), - [anon_sym_BSLASHacrshort] = ACTIONS(5832), - [anon_sym_BSLASHAcrshort] = ACTIONS(5832), - [anon_sym_BSLASHACRshort] = ACTIONS(5832), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5832), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5832), - [anon_sym_BSLASHacrlong] = ACTIONS(5832), - [anon_sym_BSLASHAcrlong] = ACTIONS(5832), - [anon_sym_BSLASHACRlong] = ACTIONS(5832), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5832), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5832), - [anon_sym_BSLASHacrfull] = ACTIONS(5832), - [anon_sym_BSLASHAcrfull] = ACTIONS(5832), - [anon_sym_BSLASHACRfull] = ACTIONS(5832), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5832), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5832), - [anon_sym_BSLASHacs] = ACTIONS(5832), - [anon_sym_BSLASHAcs] = ACTIONS(5832), - [anon_sym_BSLASHacsp] = ACTIONS(5832), - [anon_sym_BSLASHAcsp] = ACTIONS(5832), - [anon_sym_BSLASHacl] = ACTIONS(5832), - [anon_sym_BSLASHAcl] = ACTIONS(5832), - [anon_sym_BSLASHaclp] = ACTIONS(5832), - [anon_sym_BSLASHAclp] = ACTIONS(5832), - [anon_sym_BSLASHacf] = ACTIONS(5832), - [anon_sym_BSLASHAcf] = ACTIONS(5832), - [anon_sym_BSLASHacfp] = ACTIONS(5832), - [anon_sym_BSLASHAcfp] = ACTIONS(5832), - [anon_sym_BSLASHac] = ACTIONS(5832), - [anon_sym_BSLASHAc] = ACTIONS(5832), - [anon_sym_BSLASHacp] = ACTIONS(5832), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5832), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5832), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5832), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5832), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5832), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5832), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5832), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5834), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5832), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5834), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5832), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5832), - [anon_sym_BSLASHcolor] = ACTIONS(5832), - [anon_sym_BSLASHcolorbox] = ACTIONS(5832), - [anon_sym_BSLASHtextcolor] = ACTIONS(5832), - [anon_sym_BSLASHpagecolor] = ACTIONS(5832), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5832), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5832), - [anon_sym_BSLASHtext] = ACTIONS(5832), - [anon_sym_BSLASHintertext] = ACTIONS(5832), - [anon_sym_shortintertext] = ACTIONS(5832), - }, - [356] = { - [sym__section_part] = STATE(547), - [sym_curly_group] = STATE(550), - [sym_brack_group] = STATE(2476), - [sym_command_name] = ACTIONS(5836), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5836), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5838), - [anon_sym_COMMA] = ACTIONS(5838), - [anon_sym_EQ] = ACTIONS(5838), - [anon_sym_LPAREN] = ACTIONS(5838), - [anon_sym_RPAREN] = ACTIONS(5838), - [anon_sym_BSLASHpart] = ACTIONS(5836), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddpart] = ACTIONS(5836), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5838), - [anon_sym_BSLASHchapter] = ACTIONS(5836), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddchap] = ACTIONS(5836), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsection] = ACTIONS(5836), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddsec] = ACTIONS(5836), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubsection] = ACTIONS(5836), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5836), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHparagraph] = ACTIONS(5836), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5836), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5838), - [anon_sym_BSLASHitem] = ACTIONS(5836), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5838), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(5836), - [sym_placeholder] = ACTIONS(5838), - [anon_sym_PLUS] = ACTIONS(5838), - [anon_sym_DASH] = ACTIONS(5838), - [anon_sym_STAR] = ACTIONS(5838), - [anon_sym_SLASH] = ACTIONS(5838), - [anon_sym_LT] = ACTIONS(5836), - [anon_sym_GT] = ACTIONS(5836), - [anon_sym_BANG] = ACTIONS(5836), - [anon_sym_PIPE] = ACTIONS(5836), - [anon_sym_COLON] = ACTIONS(5836), - [anon_sym_SQUOTE] = ACTIONS(5836), - [anon_sym__] = ACTIONS(5838), - [anon_sym_CARET] = ACTIONS(5838), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5838), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5838), - [anon_sym_DOLLAR] = ACTIONS(5836), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5838), - [anon_sym_BSLASHbegin] = ACTIONS(5836), - [anon_sym_BSLASHtitle] = ACTIONS(5836), - [anon_sym_BSLASHauthor] = ACTIONS(5836), - [anon_sym_BSLASHusepackage] = ACTIONS(5836), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5836), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5836), - [anon_sym_BSLASHinclude] = ACTIONS(5836), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5836), - [anon_sym_BSLASHinput] = ACTIONS(5836), - [anon_sym_BSLASHsubfile] = ACTIONS(5836), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5836), - [anon_sym_BSLASHbibliography] = ACTIONS(5836), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5836), - [anon_sym_BSLASHincludesvg] = ACTIONS(5836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5836), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5836), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5836), - [anon_sym_BSLASHimport] = ACTIONS(5836), - [anon_sym_BSLASHsubimport] = ACTIONS(5836), - [anon_sym_BSLASHinputfrom] = ACTIONS(5836), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5836), - [anon_sym_BSLASHincludefrom] = ACTIONS(5836), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5836), - [anon_sym_BSLASHcaption] = ACTIONS(5836), - [anon_sym_BSLASHcite] = ACTIONS(5836), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCite] = ACTIONS(5836), - [anon_sym_BSLASHnocite] = ACTIONS(5836), - [anon_sym_BSLASHcitet] = ACTIONS(5836), - [anon_sym_BSLASHcitep] = ACTIONS(5836), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteauthor] = ACTIONS(5836), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5836), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitetitle] = ACTIONS(5836), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteyear] = ACTIONS(5836), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitedate] = ACTIONS(5836), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteurl] = ACTIONS(5836), - [anon_sym_BSLASHfullcite] = ACTIONS(5836), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5836), - [anon_sym_BSLASHcitealt] = ACTIONS(5836), - [anon_sym_BSLASHcitealp] = ACTIONS(5836), - [anon_sym_BSLASHcitetext] = ACTIONS(5836), - [anon_sym_BSLASHparencite] = ACTIONS(5836), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHParencite] = ACTIONS(5836), - [anon_sym_BSLASHfootcite] = ACTIONS(5836), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5836), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5836), - [anon_sym_BSLASHtextcite] = ACTIONS(5836), - [anon_sym_BSLASHTextcite] = ACTIONS(5836), - [anon_sym_BSLASHsmartcite] = ACTIONS(5836), - [anon_sym_BSLASHSmartcite] = ACTIONS(5836), - [anon_sym_BSLASHsupercite] = ACTIONS(5836), - [anon_sym_BSLASHautocite] = ACTIONS(5836), - [anon_sym_BSLASHAutocite] = ACTIONS(5836), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHvolcite] = ACTIONS(5836), - [anon_sym_BSLASHVolcite] = ACTIONS(5836), - [anon_sym_BSLASHpvolcite] = ACTIONS(5836), - [anon_sym_BSLASHPvolcite] = ACTIONS(5836), - [anon_sym_BSLASHfvolcite] = ACTIONS(5836), - [anon_sym_BSLASHftvolcite] = ACTIONS(5836), - [anon_sym_BSLASHsvolcite] = ACTIONS(5836), - [anon_sym_BSLASHSvolcite] = ACTIONS(5836), - [anon_sym_BSLASHtvolcite] = ACTIONS(5836), - [anon_sym_BSLASHTvolcite] = ACTIONS(5836), - [anon_sym_BSLASHavolcite] = ACTIONS(5836), - [anon_sym_BSLASHAvolcite] = ACTIONS(5836), - [anon_sym_BSLASHnotecite] = ACTIONS(5836), - [anon_sym_BSLASHNotecite] = ACTIONS(5836), - [anon_sym_BSLASHpnotecite] = ACTIONS(5836), - [anon_sym_BSLASHPnotecite] = ACTIONS(5836), - [anon_sym_BSLASHfnotecite] = ACTIONS(5836), - [anon_sym_BSLASHlabel] = ACTIONS(5836), - [anon_sym_BSLASHref] = ACTIONS(5836), - [anon_sym_BSLASHeqref] = ACTIONS(5836), - [anon_sym_BSLASHvref] = ACTIONS(5836), - [anon_sym_BSLASHVref] = ACTIONS(5836), - [anon_sym_BSLASHautoref] = ACTIONS(5836), - [anon_sym_BSLASHpageref] = ACTIONS(5836), - [anon_sym_BSLASHcref] = ACTIONS(5836), - [anon_sym_BSLASHCref] = ACTIONS(5836), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5838), - [anon_sym_BSLASHnamecref] = ACTIONS(5836), - [anon_sym_BSLASHnameCref] = ACTIONS(5836), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5836), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5836), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5836), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5836), - [anon_sym_BSLASHlabelcref] = ACTIONS(5836), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5836), - [anon_sym_BSLASHcrefrange] = ACTIONS(5836), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCrefrange] = ACTIONS(5836), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5838), - [anon_sym_BSLASHnewlabel] = ACTIONS(5836), - [anon_sym_BSLASHnewcommand] = ACTIONS(5836), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5836), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5836), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5838), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHdef] = ACTIONS(5836), - [anon_sym_BSLASHlet] = ACTIONS(5836), - [anon_sym_BSLASHleft] = ACTIONS(5836), - [anon_sym_BSLASHbig] = ACTIONS(5836), - [anon_sym_BSLASHBig] = ACTIONS(5836), - [anon_sym_BSLASHbigg] = ACTIONS(5836), - [anon_sym_BSLASHBigg] = ACTIONS(5836), - [anon_sym_BSLASHbigl] = ACTIONS(5836), - [anon_sym_BSLASHBigl] = ACTIONS(5836), - [anon_sym_BSLASHbiggl] = ACTIONS(5836), - [anon_sym_BSLASHBiggl] = ACTIONS(5836), - [anon_sym_BSLASHright] = ACTIONS(5836), - [anon_sym_BSLASHbigr] = ACTIONS(5836), - [anon_sym_BSLASHBigr] = ACTIONS(5836), - [anon_sym_BSLASHbiggr] = ACTIONS(5836), - [anon_sym_BSLASHBiggr] = ACTIONS(5836), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5836), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5836), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5836), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5836), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5836), - [anon_sym_BSLASHgls] = ACTIONS(5836), - [anon_sym_BSLASHGls] = ACTIONS(5836), - [anon_sym_BSLASHGLS] = ACTIONS(5836), - [anon_sym_BSLASHglspl] = ACTIONS(5836), - [anon_sym_BSLASHGlspl] = ACTIONS(5836), - [anon_sym_BSLASHGLSpl] = ACTIONS(5836), - [anon_sym_BSLASHglsdisp] = ACTIONS(5836), - [anon_sym_BSLASHglslink] = ACTIONS(5836), - [anon_sym_BSLASHglstext] = ACTIONS(5836), - [anon_sym_BSLASHGlstext] = ACTIONS(5836), - [anon_sym_BSLASHGLStext] = ACTIONS(5836), - [anon_sym_BSLASHglsfirst] = ACTIONS(5836), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5836), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5836), - [anon_sym_BSLASHglsplural] = ACTIONS(5836), - [anon_sym_BSLASHGlsplural] = ACTIONS(5836), - [anon_sym_BSLASHGLSplural] = ACTIONS(5836), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHglsname] = ACTIONS(5836), - [anon_sym_BSLASHGlsname] = ACTIONS(5836), - [anon_sym_BSLASHGLSname] = ACTIONS(5836), - [anon_sym_BSLASHglssymbol] = ACTIONS(5836), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5836), - [anon_sym_BSLASHglsdesc] = ACTIONS(5836), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5836), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5836), - [anon_sym_BSLASHglsuseri] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5836), - [anon_sym_BSLASHglsuserii] = ACTIONS(5836), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5836), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5836), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5836), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5836), - [anon_sym_BSLASHglsuserv] = ACTIONS(5836), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5836), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5836), - [anon_sym_BSLASHglsuservi] = ACTIONS(5836), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5836), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5836), - [anon_sym_BSLASHnewacronym] = ACTIONS(5836), - [anon_sym_BSLASHacrshort] = ACTIONS(5836), - [anon_sym_BSLASHAcrshort] = ACTIONS(5836), - [anon_sym_BSLASHACRshort] = ACTIONS(5836), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5836), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5836), - [anon_sym_BSLASHacrlong] = ACTIONS(5836), - [anon_sym_BSLASHAcrlong] = ACTIONS(5836), - [anon_sym_BSLASHACRlong] = ACTIONS(5836), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5836), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5836), - [anon_sym_BSLASHacrfull] = ACTIONS(5836), - [anon_sym_BSLASHAcrfull] = ACTIONS(5836), - [anon_sym_BSLASHACRfull] = ACTIONS(5836), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5836), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5836), - [anon_sym_BSLASHacs] = ACTIONS(5836), - [anon_sym_BSLASHAcs] = ACTIONS(5836), - [anon_sym_BSLASHacsp] = ACTIONS(5836), - [anon_sym_BSLASHAcsp] = ACTIONS(5836), - [anon_sym_BSLASHacl] = ACTIONS(5836), - [anon_sym_BSLASHAcl] = ACTIONS(5836), - [anon_sym_BSLASHaclp] = ACTIONS(5836), - [anon_sym_BSLASHAclp] = ACTIONS(5836), - [anon_sym_BSLASHacf] = ACTIONS(5836), - [anon_sym_BSLASHAcf] = ACTIONS(5836), - [anon_sym_BSLASHacfp] = ACTIONS(5836), - [anon_sym_BSLASHAcfp] = ACTIONS(5836), - [anon_sym_BSLASHac] = ACTIONS(5836), - [anon_sym_BSLASHAc] = ACTIONS(5836), - [anon_sym_BSLASHacp] = ACTIONS(5836), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5836), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5836), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5836), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5836), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5836), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5836), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5836), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5838), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5836), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5838), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5836), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5836), - [anon_sym_BSLASHcolor] = ACTIONS(5836), - [anon_sym_BSLASHcolorbox] = ACTIONS(5836), - [anon_sym_BSLASHtextcolor] = ACTIONS(5836), - [anon_sym_BSLASHpagecolor] = ACTIONS(5836), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5836), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5836), - [anon_sym_BSLASHtext] = ACTIONS(5836), - [anon_sym_BSLASHintertext] = ACTIONS(5836), - [anon_sym_shortintertext] = ACTIONS(5836), - }, - [357] = { - [sym__section_part] = STATE(546), - [sym_curly_group] = STATE(550), - [sym_brack_group] = STATE(2476), - [sym_command_name] = ACTIONS(5840), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5840), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5842), - [anon_sym_COMMA] = ACTIONS(5842), - [anon_sym_EQ] = ACTIONS(5842), - [anon_sym_LPAREN] = ACTIONS(5842), - [anon_sym_RPAREN] = ACTIONS(5842), - [anon_sym_BSLASHpart] = ACTIONS(5840), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddpart] = ACTIONS(5840), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5842), - [anon_sym_BSLASHchapter] = ACTIONS(5840), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddchap] = ACTIONS(5840), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsection] = ACTIONS(5840), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddsec] = ACTIONS(5840), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubsection] = ACTIONS(5840), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5840), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHparagraph] = ACTIONS(5840), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5840), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5842), - [anon_sym_BSLASHitem] = ACTIONS(5840), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5842), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(5840), - [sym_placeholder] = ACTIONS(5842), - [anon_sym_PLUS] = ACTIONS(5842), - [anon_sym_DASH] = ACTIONS(5842), - [anon_sym_STAR] = ACTIONS(5842), - [anon_sym_SLASH] = ACTIONS(5842), - [anon_sym_LT] = ACTIONS(5840), - [anon_sym_GT] = ACTIONS(5840), - [anon_sym_BANG] = ACTIONS(5840), - [anon_sym_PIPE] = ACTIONS(5840), - [anon_sym_COLON] = ACTIONS(5840), - [anon_sym_SQUOTE] = ACTIONS(5840), - [anon_sym__] = ACTIONS(5842), - [anon_sym_CARET] = ACTIONS(5842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5842), - [anon_sym_DOLLAR] = ACTIONS(5840), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5842), - [anon_sym_BSLASHbegin] = ACTIONS(5840), - [anon_sym_BSLASHtitle] = ACTIONS(5840), - [anon_sym_BSLASHauthor] = ACTIONS(5840), - [anon_sym_BSLASHusepackage] = ACTIONS(5840), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5840), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5840), - [anon_sym_BSLASHinclude] = ACTIONS(5840), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5840), - [anon_sym_BSLASHinput] = ACTIONS(5840), - [anon_sym_BSLASHsubfile] = ACTIONS(5840), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5840), - [anon_sym_BSLASHbibliography] = ACTIONS(5840), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5840), - [anon_sym_BSLASHincludesvg] = ACTIONS(5840), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5840), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5840), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5840), - [anon_sym_BSLASHimport] = ACTIONS(5840), - [anon_sym_BSLASHsubimport] = ACTIONS(5840), - [anon_sym_BSLASHinputfrom] = ACTIONS(5840), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5840), - [anon_sym_BSLASHincludefrom] = ACTIONS(5840), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5840), - [anon_sym_BSLASHcaption] = ACTIONS(5840), - [anon_sym_BSLASHcite] = ACTIONS(5840), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCite] = ACTIONS(5840), - [anon_sym_BSLASHnocite] = ACTIONS(5840), - [anon_sym_BSLASHcitet] = ACTIONS(5840), - [anon_sym_BSLASHcitep] = ACTIONS(5840), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteauthor] = ACTIONS(5840), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5840), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitetitle] = ACTIONS(5840), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteyear] = ACTIONS(5840), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitedate] = ACTIONS(5840), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteurl] = ACTIONS(5840), - [anon_sym_BSLASHfullcite] = ACTIONS(5840), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5840), - [anon_sym_BSLASHcitealt] = ACTIONS(5840), - [anon_sym_BSLASHcitealp] = ACTIONS(5840), - [anon_sym_BSLASHcitetext] = ACTIONS(5840), - [anon_sym_BSLASHparencite] = ACTIONS(5840), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHParencite] = ACTIONS(5840), - [anon_sym_BSLASHfootcite] = ACTIONS(5840), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5840), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5840), - [anon_sym_BSLASHtextcite] = ACTIONS(5840), - [anon_sym_BSLASHTextcite] = ACTIONS(5840), - [anon_sym_BSLASHsmartcite] = ACTIONS(5840), - [anon_sym_BSLASHSmartcite] = ACTIONS(5840), - [anon_sym_BSLASHsupercite] = ACTIONS(5840), - [anon_sym_BSLASHautocite] = ACTIONS(5840), - [anon_sym_BSLASHAutocite] = ACTIONS(5840), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHvolcite] = ACTIONS(5840), - [anon_sym_BSLASHVolcite] = ACTIONS(5840), - [anon_sym_BSLASHpvolcite] = ACTIONS(5840), - [anon_sym_BSLASHPvolcite] = ACTIONS(5840), - [anon_sym_BSLASHfvolcite] = ACTIONS(5840), - [anon_sym_BSLASHftvolcite] = ACTIONS(5840), - [anon_sym_BSLASHsvolcite] = ACTIONS(5840), - [anon_sym_BSLASHSvolcite] = ACTIONS(5840), - [anon_sym_BSLASHtvolcite] = ACTIONS(5840), - [anon_sym_BSLASHTvolcite] = ACTIONS(5840), - [anon_sym_BSLASHavolcite] = ACTIONS(5840), - [anon_sym_BSLASHAvolcite] = ACTIONS(5840), - [anon_sym_BSLASHnotecite] = ACTIONS(5840), - [anon_sym_BSLASHNotecite] = ACTIONS(5840), - [anon_sym_BSLASHpnotecite] = ACTIONS(5840), - [anon_sym_BSLASHPnotecite] = ACTIONS(5840), - [anon_sym_BSLASHfnotecite] = ACTIONS(5840), - [anon_sym_BSLASHlabel] = ACTIONS(5840), - [anon_sym_BSLASHref] = ACTIONS(5840), - [anon_sym_BSLASHeqref] = ACTIONS(5840), - [anon_sym_BSLASHvref] = ACTIONS(5840), - [anon_sym_BSLASHVref] = ACTIONS(5840), - [anon_sym_BSLASHautoref] = ACTIONS(5840), - [anon_sym_BSLASHpageref] = ACTIONS(5840), - [anon_sym_BSLASHcref] = ACTIONS(5840), - [anon_sym_BSLASHCref] = ACTIONS(5840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5842), - [anon_sym_BSLASHnamecref] = ACTIONS(5840), - [anon_sym_BSLASHnameCref] = ACTIONS(5840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5840), - [anon_sym_BSLASHlabelcref] = ACTIONS(5840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5840), - [anon_sym_BSLASHcrefrange] = ACTIONS(5840), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCrefrange] = ACTIONS(5840), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5842), - [anon_sym_BSLASHnewlabel] = ACTIONS(5840), - [anon_sym_BSLASHnewcommand] = ACTIONS(5840), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5840), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5840), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5842), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHdef] = ACTIONS(5840), - [anon_sym_BSLASHlet] = ACTIONS(5840), - [anon_sym_BSLASHleft] = ACTIONS(5840), - [anon_sym_BSLASHbig] = ACTIONS(5840), - [anon_sym_BSLASHBig] = ACTIONS(5840), - [anon_sym_BSLASHbigg] = ACTIONS(5840), - [anon_sym_BSLASHBigg] = ACTIONS(5840), - [anon_sym_BSLASHbigl] = ACTIONS(5840), - [anon_sym_BSLASHBigl] = ACTIONS(5840), - [anon_sym_BSLASHbiggl] = ACTIONS(5840), - [anon_sym_BSLASHBiggl] = ACTIONS(5840), - [anon_sym_BSLASHright] = ACTIONS(5840), - [anon_sym_BSLASHbigr] = ACTIONS(5840), - [anon_sym_BSLASHBigr] = ACTIONS(5840), - [anon_sym_BSLASHbiggr] = ACTIONS(5840), - [anon_sym_BSLASHBiggr] = ACTIONS(5840), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5840), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5840), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5840), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5840), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5840), - [anon_sym_BSLASHgls] = ACTIONS(5840), - [anon_sym_BSLASHGls] = ACTIONS(5840), - [anon_sym_BSLASHGLS] = ACTIONS(5840), - [anon_sym_BSLASHglspl] = ACTIONS(5840), - [anon_sym_BSLASHGlspl] = ACTIONS(5840), - [anon_sym_BSLASHGLSpl] = ACTIONS(5840), - [anon_sym_BSLASHglsdisp] = ACTIONS(5840), - [anon_sym_BSLASHglslink] = ACTIONS(5840), - [anon_sym_BSLASHglstext] = ACTIONS(5840), - [anon_sym_BSLASHGlstext] = ACTIONS(5840), - [anon_sym_BSLASHGLStext] = ACTIONS(5840), - [anon_sym_BSLASHglsfirst] = ACTIONS(5840), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5840), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5840), - [anon_sym_BSLASHglsplural] = ACTIONS(5840), - [anon_sym_BSLASHGlsplural] = ACTIONS(5840), - [anon_sym_BSLASHGLSplural] = ACTIONS(5840), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHglsname] = ACTIONS(5840), - [anon_sym_BSLASHGlsname] = ACTIONS(5840), - [anon_sym_BSLASHGLSname] = ACTIONS(5840), - [anon_sym_BSLASHglssymbol] = ACTIONS(5840), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5840), - [anon_sym_BSLASHglsdesc] = ACTIONS(5840), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5840), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5840), - [anon_sym_BSLASHglsuseri] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5840), - [anon_sym_BSLASHglsuserii] = ACTIONS(5840), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5840), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5840), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5840), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5840), - [anon_sym_BSLASHglsuserv] = ACTIONS(5840), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5840), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5840), - [anon_sym_BSLASHglsuservi] = ACTIONS(5840), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5840), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5840), - [anon_sym_BSLASHnewacronym] = ACTIONS(5840), - [anon_sym_BSLASHacrshort] = ACTIONS(5840), - [anon_sym_BSLASHAcrshort] = ACTIONS(5840), - [anon_sym_BSLASHACRshort] = ACTIONS(5840), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5840), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5840), - [anon_sym_BSLASHacrlong] = ACTIONS(5840), - [anon_sym_BSLASHAcrlong] = ACTIONS(5840), - [anon_sym_BSLASHACRlong] = ACTIONS(5840), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5840), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5840), - [anon_sym_BSLASHacrfull] = ACTIONS(5840), - [anon_sym_BSLASHAcrfull] = ACTIONS(5840), - [anon_sym_BSLASHACRfull] = ACTIONS(5840), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5840), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5840), - [anon_sym_BSLASHacs] = ACTIONS(5840), - [anon_sym_BSLASHAcs] = ACTIONS(5840), - [anon_sym_BSLASHacsp] = ACTIONS(5840), - [anon_sym_BSLASHAcsp] = ACTIONS(5840), - [anon_sym_BSLASHacl] = ACTIONS(5840), - [anon_sym_BSLASHAcl] = ACTIONS(5840), - [anon_sym_BSLASHaclp] = ACTIONS(5840), - [anon_sym_BSLASHAclp] = ACTIONS(5840), - [anon_sym_BSLASHacf] = ACTIONS(5840), - [anon_sym_BSLASHAcf] = ACTIONS(5840), - [anon_sym_BSLASHacfp] = ACTIONS(5840), - [anon_sym_BSLASHAcfp] = ACTIONS(5840), - [anon_sym_BSLASHac] = ACTIONS(5840), - [anon_sym_BSLASHAc] = ACTIONS(5840), - [anon_sym_BSLASHacp] = ACTIONS(5840), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5840), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5840), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5840), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5840), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5840), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5840), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5840), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5842), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5840), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5842), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5840), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5840), - [anon_sym_BSLASHcolor] = ACTIONS(5840), - [anon_sym_BSLASHcolorbox] = ACTIONS(5840), - [anon_sym_BSLASHtextcolor] = ACTIONS(5840), - [anon_sym_BSLASHpagecolor] = ACTIONS(5840), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5840), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5840), - [anon_sym_BSLASHtext] = ACTIONS(5840), - [anon_sym_BSLASHintertext] = ACTIONS(5840), - [anon_sym_shortintertext] = ACTIONS(5840), - }, - [358] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHright] = ACTIONS(5844), - [anon_sym_BSLASHbigr] = ACTIONS(5844), - [anon_sym_BSLASHBigr] = ACTIONS(5844), - [anon_sym_BSLASHbiggr] = ACTIONS(5844), - [anon_sym_BSLASHBiggr] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [359] = { - [sym__section_part] = STATE(545), - [sym_curly_group] = STATE(550), - [sym_brack_group] = STATE(2476), - [sym_command_name] = ACTIONS(5848), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5848), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5850), - [anon_sym_COMMA] = ACTIONS(5850), - [anon_sym_EQ] = ACTIONS(5850), - [anon_sym_LPAREN] = ACTIONS(5850), - [anon_sym_RPAREN] = ACTIONS(5850), - [anon_sym_BSLASHpart] = ACTIONS(5848), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddpart] = ACTIONS(5848), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5850), - [anon_sym_BSLASHchapter] = ACTIONS(5848), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddchap] = ACTIONS(5848), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsection] = ACTIONS(5848), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddsec] = ACTIONS(5848), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubsection] = ACTIONS(5848), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5848), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHparagraph] = ACTIONS(5848), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5848), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5850), - [anon_sym_BSLASHitem] = ACTIONS(5848), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5850), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(5848), - [sym_placeholder] = ACTIONS(5850), - [anon_sym_PLUS] = ACTIONS(5850), - [anon_sym_DASH] = ACTIONS(5850), - [anon_sym_STAR] = ACTIONS(5850), - [anon_sym_SLASH] = ACTIONS(5850), - [anon_sym_LT] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5848), - [anon_sym_BANG] = ACTIONS(5848), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_COLON] = ACTIONS(5848), - [anon_sym_SQUOTE] = ACTIONS(5848), - [anon_sym__] = ACTIONS(5850), - [anon_sym_CARET] = ACTIONS(5850), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5850), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5850), - [anon_sym_DOLLAR] = ACTIONS(5848), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5850), - [anon_sym_BSLASHbegin] = ACTIONS(5848), - [anon_sym_BSLASHtitle] = ACTIONS(5848), - [anon_sym_BSLASHauthor] = ACTIONS(5848), - [anon_sym_BSLASHusepackage] = ACTIONS(5848), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5848), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5848), - [anon_sym_BSLASHinclude] = ACTIONS(5848), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5848), - [anon_sym_BSLASHinput] = ACTIONS(5848), - [anon_sym_BSLASHsubfile] = ACTIONS(5848), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5848), - [anon_sym_BSLASHbibliography] = ACTIONS(5848), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5848), - [anon_sym_BSLASHincludesvg] = ACTIONS(5848), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5848), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5848), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5848), - [anon_sym_BSLASHimport] = ACTIONS(5848), - [anon_sym_BSLASHsubimport] = ACTIONS(5848), - [anon_sym_BSLASHinputfrom] = ACTIONS(5848), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5848), - [anon_sym_BSLASHincludefrom] = ACTIONS(5848), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5848), - [anon_sym_BSLASHcaption] = ACTIONS(5848), - [anon_sym_BSLASHcite] = ACTIONS(5848), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCite] = ACTIONS(5848), - [anon_sym_BSLASHnocite] = ACTIONS(5848), - [anon_sym_BSLASHcitet] = ACTIONS(5848), - [anon_sym_BSLASHcitep] = ACTIONS(5848), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteauthor] = ACTIONS(5848), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5848), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitetitle] = ACTIONS(5848), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteyear] = ACTIONS(5848), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitedate] = ACTIONS(5848), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteurl] = ACTIONS(5848), - [anon_sym_BSLASHfullcite] = ACTIONS(5848), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5848), - [anon_sym_BSLASHcitealt] = ACTIONS(5848), - [anon_sym_BSLASHcitealp] = ACTIONS(5848), - [anon_sym_BSLASHcitetext] = ACTIONS(5848), - [anon_sym_BSLASHparencite] = ACTIONS(5848), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHParencite] = ACTIONS(5848), - [anon_sym_BSLASHfootcite] = ACTIONS(5848), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5848), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5848), - [anon_sym_BSLASHtextcite] = ACTIONS(5848), - [anon_sym_BSLASHTextcite] = ACTIONS(5848), - [anon_sym_BSLASHsmartcite] = ACTIONS(5848), - [anon_sym_BSLASHSmartcite] = ACTIONS(5848), - [anon_sym_BSLASHsupercite] = ACTIONS(5848), - [anon_sym_BSLASHautocite] = ACTIONS(5848), - [anon_sym_BSLASHAutocite] = ACTIONS(5848), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHvolcite] = ACTIONS(5848), - [anon_sym_BSLASHVolcite] = ACTIONS(5848), - [anon_sym_BSLASHpvolcite] = ACTIONS(5848), - [anon_sym_BSLASHPvolcite] = ACTIONS(5848), - [anon_sym_BSLASHfvolcite] = ACTIONS(5848), - [anon_sym_BSLASHftvolcite] = ACTIONS(5848), - [anon_sym_BSLASHsvolcite] = ACTIONS(5848), - [anon_sym_BSLASHSvolcite] = ACTIONS(5848), - [anon_sym_BSLASHtvolcite] = ACTIONS(5848), - [anon_sym_BSLASHTvolcite] = ACTIONS(5848), - [anon_sym_BSLASHavolcite] = ACTIONS(5848), - [anon_sym_BSLASHAvolcite] = ACTIONS(5848), - [anon_sym_BSLASHnotecite] = ACTIONS(5848), - [anon_sym_BSLASHNotecite] = ACTIONS(5848), - [anon_sym_BSLASHpnotecite] = ACTIONS(5848), - [anon_sym_BSLASHPnotecite] = ACTIONS(5848), - [anon_sym_BSLASHfnotecite] = ACTIONS(5848), - [anon_sym_BSLASHlabel] = ACTIONS(5848), - [anon_sym_BSLASHref] = ACTIONS(5848), - [anon_sym_BSLASHeqref] = ACTIONS(5848), - [anon_sym_BSLASHvref] = ACTIONS(5848), - [anon_sym_BSLASHVref] = ACTIONS(5848), - [anon_sym_BSLASHautoref] = ACTIONS(5848), - [anon_sym_BSLASHpageref] = ACTIONS(5848), - [anon_sym_BSLASHcref] = ACTIONS(5848), - [anon_sym_BSLASHCref] = ACTIONS(5848), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5850), - [anon_sym_BSLASHnamecref] = ACTIONS(5848), - [anon_sym_BSLASHnameCref] = ACTIONS(5848), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5848), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5848), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5848), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5848), - [anon_sym_BSLASHlabelcref] = ACTIONS(5848), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5848), - [anon_sym_BSLASHcrefrange] = ACTIONS(5848), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCrefrange] = ACTIONS(5848), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5850), - [anon_sym_BSLASHnewlabel] = ACTIONS(5848), - [anon_sym_BSLASHnewcommand] = ACTIONS(5848), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5848), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5848), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5850), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHdef] = ACTIONS(5848), - [anon_sym_BSLASHlet] = ACTIONS(5848), - [anon_sym_BSLASHleft] = ACTIONS(5848), - [anon_sym_BSLASHbig] = ACTIONS(5848), - [anon_sym_BSLASHBig] = ACTIONS(5848), - [anon_sym_BSLASHbigg] = ACTIONS(5848), - [anon_sym_BSLASHBigg] = ACTIONS(5848), - [anon_sym_BSLASHbigl] = ACTIONS(5848), - [anon_sym_BSLASHBigl] = ACTIONS(5848), - [anon_sym_BSLASHbiggl] = ACTIONS(5848), - [anon_sym_BSLASHBiggl] = ACTIONS(5848), - [anon_sym_BSLASHright] = ACTIONS(5848), - [anon_sym_BSLASHbigr] = ACTIONS(5848), - [anon_sym_BSLASHBigr] = ACTIONS(5848), - [anon_sym_BSLASHbiggr] = ACTIONS(5848), - [anon_sym_BSLASHBiggr] = ACTIONS(5848), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5848), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5848), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5848), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5848), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5848), - [anon_sym_BSLASHgls] = ACTIONS(5848), - [anon_sym_BSLASHGls] = ACTIONS(5848), - [anon_sym_BSLASHGLS] = ACTIONS(5848), - [anon_sym_BSLASHglspl] = ACTIONS(5848), - [anon_sym_BSLASHGlspl] = ACTIONS(5848), - [anon_sym_BSLASHGLSpl] = ACTIONS(5848), - [anon_sym_BSLASHglsdisp] = ACTIONS(5848), - [anon_sym_BSLASHglslink] = ACTIONS(5848), - [anon_sym_BSLASHglstext] = ACTIONS(5848), - [anon_sym_BSLASHGlstext] = ACTIONS(5848), - [anon_sym_BSLASHGLStext] = ACTIONS(5848), - [anon_sym_BSLASHglsfirst] = ACTIONS(5848), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5848), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5848), - [anon_sym_BSLASHglsplural] = ACTIONS(5848), - [anon_sym_BSLASHGlsplural] = ACTIONS(5848), - [anon_sym_BSLASHGLSplural] = ACTIONS(5848), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHglsname] = ACTIONS(5848), - [anon_sym_BSLASHGlsname] = ACTIONS(5848), - [anon_sym_BSLASHGLSname] = ACTIONS(5848), - [anon_sym_BSLASHglssymbol] = ACTIONS(5848), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5848), - [anon_sym_BSLASHglsdesc] = ACTIONS(5848), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5848), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5848), - [anon_sym_BSLASHglsuseri] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5848), - [anon_sym_BSLASHglsuserii] = ACTIONS(5848), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5848), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5848), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5848), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5848), - [anon_sym_BSLASHglsuserv] = ACTIONS(5848), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5848), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5848), - [anon_sym_BSLASHglsuservi] = ACTIONS(5848), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5848), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5848), - [anon_sym_BSLASHnewacronym] = ACTIONS(5848), - [anon_sym_BSLASHacrshort] = ACTIONS(5848), - [anon_sym_BSLASHAcrshort] = ACTIONS(5848), - [anon_sym_BSLASHACRshort] = ACTIONS(5848), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5848), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5848), - [anon_sym_BSLASHacrlong] = ACTIONS(5848), - [anon_sym_BSLASHAcrlong] = ACTIONS(5848), - [anon_sym_BSLASHACRlong] = ACTIONS(5848), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5848), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5848), - [anon_sym_BSLASHacrfull] = ACTIONS(5848), - [anon_sym_BSLASHAcrfull] = ACTIONS(5848), - [anon_sym_BSLASHACRfull] = ACTIONS(5848), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5848), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5848), - [anon_sym_BSLASHacs] = ACTIONS(5848), - [anon_sym_BSLASHAcs] = ACTIONS(5848), - [anon_sym_BSLASHacsp] = ACTIONS(5848), - [anon_sym_BSLASHAcsp] = ACTIONS(5848), - [anon_sym_BSLASHacl] = ACTIONS(5848), - [anon_sym_BSLASHAcl] = ACTIONS(5848), - [anon_sym_BSLASHaclp] = ACTIONS(5848), - [anon_sym_BSLASHAclp] = ACTIONS(5848), - [anon_sym_BSLASHacf] = ACTIONS(5848), - [anon_sym_BSLASHAcf] = ACTIONS(5848), - [anon_sym_BSLASHacfp] = ACTIONS(5848), - [anon_sym_BSLASHAcfp] = ACTIONS(5848), - [anon_sym_BSLASHac] = ACTIONS(5848), - [anon_sym_BSLASHAc] = ACTIONS(5848), - [anon_sym_BSLASHacp] = ACTIONS(5848), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5848), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5848), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5848), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5848), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5848), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5848), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5848), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5850), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5848), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5850), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5848), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5848), - [anon_sym_BSLASHcolor] = ACTIONS(5848), - [anon_sym_BSLASHcolorbox] = ACTIONS(5848), - [anon_sym_BSLASHtextcolor] = ACTIONS(5848), - [anon_sym_BSLASHpagecolor] = ACTIONS(5848), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5848), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5848), - [anon_sym_BSLASHtext] = ACTIONS(5848), - [anon_sym_BSLASHintertext] = ACTIONS(5848), - [anon_sym_shortintertext] = ACTIONS(5848), - }, - [360] = { - [sym__section_part] = STATE(544), - [sym_curly_group] = STATE(550), - [sym_brack_group] = STATE(2476), - [sym_command_name] = ACTIONS(5852), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5852), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5854), - [anon_sym_COMMA] = ACTIONS(5854), - [anon_sym_EQ] = ACTIONS(5854), - [anon_sym_LPAREN] = ACTIONS(5854), - [anon_sym_RPAREN] = ACTIONS(5854), - [anon_sym_BSLASHpart] = ACTIONS(5852), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddpart] = ACTIONS(5852), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5854), - [anon_sym_BSLASHchapter] = ACTIONS(5852), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddchap] = ACTIONS(5852), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsection] = ACTIONS(5852), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddsec] = ACTIONS(5852), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubsection] = ACTIONS(5852), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5852), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHparagraph] = ACTIONS(5852), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5852), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5854), - [anon_sym_BSLASHitem] = ACTIONS(5852), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5854), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(5852), - [sym_placeholder] = ACTIONS(5854), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_STAR] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5854), - [anon_sym_LT] = ACTIONS(5852), - [anon_sym_GT] = ACTIONS(5852), - [anon_sym_BANG] = ACTIONS(5852), - [anon_sym_PIPE] = ACTIONS(5852), - [anon_sym_COLON] = ACTIONS(5852), - [anon_sym_SQUOTE] = ACTIONS(5852), - [anon_sym__] = ACTIONS(5854), - [anon_sym_CARET] = ACTIONS(5854), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5854), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5854), - [anon_sym_DOLLAR] = ACTIONS(5852), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5854), - [anon_sym_BSLASHbegin] = ACTIONS(5852), - [anon_sym_BSLASHtitle] = ACTIONS(5852), - [anon_sym_BSLASHauthor] = ACTIONS(5852), - [anon_sym_BSLASHusepackage] = ACTIONS(5852), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5852), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5852), - [anon_sym_BSLASHinclude] = ACTIONS(5852), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5852), - [anon_sym_BSLASHinput] = ACTIONS(5852), - [anon_sym_BSLASHsubfile] = ACTIONS(5852), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5852), - [anon_sym_BSLASHbibliography] = ACTIONS(5852), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5852), - [anon_sym_BSLASHincludesvg] = ACTIONS(5852), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5852), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5852), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5852), - [anon_sym_BSLASHimport] = ACTIONS(5852), - [anon_sym_BSLASHsubimport] = ACTIONS(5852), - [anon_sym_BSLASHinputfrom] = ACTIONS(5852), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5852), - [anon_sym_BSLASHincludefrom] = ACTIONS(5852), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5852), - [anon_sym_BSLASHcaption] = ACTIONS(5852), - [anon_sym_BSLASHcite] = ACTIONS(5852), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCite] = ACTIONS(5852), - [anon_sym_BSLASHnocite] = ACTIONS(5852), - [anon_sym_BSLASHcitet] = ACTIONS(5852), - [anon_sym_BSLASHcitep] = ACTIONS(5852), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteauthor] = ACTIONS(5852), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5852), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitetitle] = ACTIONS(5852), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteyear] = ACTIONS(5852), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitedate] = ACTIONS(5852), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteurl] = ACTIONS(5852), - [anon_sym_BSLASHfullcite] = ACTIONS(5852), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5852), - [anon_sym_BSLASHcitealt] = ACTIONS(5852), - [anon_sym_BSLASHcitealp] = ACTIONS(5852), - [anon_sym_BSLASHcitetext] = ACTIONS(5852), - [anon_sym_BSLASHparencite] = ACTIONS(5852), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHParencite] = ACTIONS(5852), - [anon_sym_BSLASHfootcite] = ACTIONS(5852), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5852), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5852), - [anon_sym_BSLASHtextcite] = ACTIONS(5852), - [anon_sym_BSLASHTextcite] = ACTIONS(5852), - [anon_sym_BSLASHsmartcite] = ACTIONS(5852), - [anon_sym_BSLASHSmartcite] = ACTIONS(5852), - [anon_sym_BSLASHsupercite] = ACTIONS(5852), - [anon_sym_BSLASHautocite] = ACTIONS(5852), - [anon_sym_BSLASHAutocite] = ACTIONS(5852), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHvolcite] = ACTIONS(5852), - [anon_sym_BSLASHVolcite] = ACTIONS(5852), - [anon_sym_BSLASHpvolcite] = ACTIONS(5852), - [anon_sym_BSLASHPvolcite] = ACTIONS(5852), - [anon_sym_BSLASHfvolcite] = ACTIONS(5852), - [anon_sym_BSLASHftvolcite] = ACTIONS(5852), - [anon_sym_BSLASHsvolcite] = ACTIONS(5852), - [anon_sym_BSLASHSvolcite] = ACTIONS(5852), - [anon_sym_BSLASHtvolcite] = ACTIONS(5852), - [anon_sym_BSLASHTvolcite] = ACTIONS(5852), - [anon_sym_BSLASHavolcite] = ACTIONS(5852), - [anon_sym_BSLASHAvolcite] = ACTIONS(5852), - [anon_sym_BSLASHnotecite] = ACTIONS(5852), - [anon_sym_BSLASHNotecite] = ACTIONS(5852), - [anon_sym_BSLASHpnotecite] = ACTIONS(5852), - [anon_sym_BSLASHPnotecite] = ACTIONS(5852), - [anon_sym_BSLASHfnotecite] = ACTIONS(5852), - [anon_sym_BSLASHlabel] = ACTIONS(5852), - [anon_sym_BSLASHref] = ACTIONS(5852), - [anon_sym_BSLASHeqref] = ACTIONS(5852), - [anon_sym_BSLASHvref] = ACTIONS(5852), - [anon_sym_BSLASHVref] = ACTIONS(5852), - [anon_sym_BSLASHautoref] = ACTIONS(5852), - [anon_sym_BSLASHpageref] = ACTIONS(5852), - [anon_sym_BSLASHcref] = ACTIONS(5852), - [anon_sym_BSLASHCref] = ACTIONS(5852), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5854), - [anon_sym_BSLASHnamecref] = ACTIONS(5852), - [anon_sym_BSLASHnameCref] = ACTIONS(5852), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5852), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5852), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5852), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5852), - [anon_sym_BSLASHlabelcref] = ACTIONS(5852), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5852), - [anon_sym_BSLASHcrefrange] = ACTIONS(5852), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCrefrange] = ACTIONS(5852), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5854), - [anon_sym_BSLASHnewlabel] = ACTIONS(5852), - [anon_sym_BSLASHnewcommand] = ACTIONS(5852), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5852), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5852), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5854), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHdef] = ACTIONS(5852), - [anon_sym_BSLASHlet] = ACTIONS(5852), - [anon_sym_BSLASHleft] = ACTIONS(5852), - [anon_sym_BSLASHbig] = ACTIONS(5852), - [anon_sym_BSLASHBig] = ACTIONS(5852), - [anon_sym_BSLASHbigg] = ACTIONS(5852), - [anon_sym_BSLASHBigg] = ACTIONS(5852), - [anon_sym_BSLASHbigl] = ACTIONS(5852), - [anon_sym_BSLASHBigl] = ACTIONS(5852), - [anon_sym_BSLASHbiggl] = ACTIONS(5852), - [anon_sym_BSLASHBiggl] = ACTIONS(5852), - [anon_sym_BSLASHright] = ACTIONS(5852), - [anon_sym_BSLASHbigr] = ACTIONS(5852), - [anon_sym_BSLASHBigr] = ACTIONS(5852), - [anon_sym_BSLASHbiggr] = ACTIONS(5852), - [anon_sym_BSLASHBiggr] = ACTIONS(5852), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5852), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5852), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5852), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5852), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5852), - [anon_sym_BSLASHgls] = ACTIONS(5852), - [anon_sym_BSLASHGls] = ACTIONS(5852), - [anon_sym_BSLASHGLS] = ACTIONS(5852), - [anon_sym_BSLASHglspl] = ACTIONS(5852), - [anon_sym_BSLASHGlspl] = ACTIONS(5852), - [anon_sym_BSLASHGLSpl] = ACTIONS(5852), - [anon_sym_BSLASHglsdisp] = ACTIONS(5852), - [anon_sym_BSLASHglslink] = ACTIONS(5852), - [anon_sym_BSLASHglstext] = ACTIONS(5852), - [anon_sym_BSLASHGlstext] = ACTIONS(5852), - [anon_sym_BSLASHGLStext] = ACTIONS(5852), - [anon_sym_BSLASHglsfirst] = ACTIONS(5852), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5852), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5852), - [anon_sym_BSLASHglsplural] = ACTIONS(5852), - [anon_sym_BSLASHGlsplural] = ACTIONS(5852), - [anon_sym_BSLASHGLSplural] = ACTIONS(5852), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHglsname] = ACTIONS(5852), - [anon_sym_BSLASHGlsname] = ACTIONS(5852), - [anon_sym_BSLASHGLSname] = ACTIONS(5852), - [anon_sym_BSLASHglssymbol] = ACTIONS(5852), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5852), - [anon_sym_BSLASHglsdesc] = ACTIONS(5852), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5852), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5852), - [anon_sym_BSLASHglsuseri] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5852), - [anon_sym_BSLASHglsuserii] = ACTIONS(5852), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5852), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5852), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5852), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5852), - [anon_sym_BSLASHglsuserv] = ACTIONS(5852), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5852), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5852), - [anon_sym_BSLASHglsuservi] = ACTIONS(5852), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5852), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5852), - [anon_sym_BSLASHnewacronym] = ACTIONS(5852), - [anon_sym_BSLASHacrshort] = ACTIONS(5852), - [anon_sym_BSLASHAcrshort] = ACTIONS(5852), - [anon_sym_BSLASHACRshort] = ACTIONS(5852), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5852), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5852), - [anon_sym_BSLASHacrlong] = ACTIONS(5852), - [anon_sym_BSLASHAcrlong] = ACTIONS(5852), - [anon_sym_BSLASHACRlong] = ACTIONS(5852), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5852), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5852), - [anon_sym_BSLASHacrfull] = ACTIONS(5852), - [anon_sym_BSLASHAcrfull] = ACTIONS(5852), - [anon_sym_BSLASHACRfull] = ACTIONS(5852), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5852), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5852), - [anon_sym_BSLASHacs] = ACTIONS(5852), - [anon_sym_BSLASHAcs] = ACTIONS(5852), - [anon_sym_BSLASHacsp] = ACTIONS(5852), - [anon_sym_BSLASHAcsp] = ACTIONS(5852), - [anon_sym_BSLASHacl] = ACTIONS(5852), - [anon_sym_BSLASHAcl] = ACTIONS(5852), - [anon_sym_BSLASHaclp] = ACTIONS(5852), - [anon_sym_BSLASHAclp] = ACTIONS(5852), - [anon_sym_BSLASHacf] = ACTIONS(5852), - [anon_sym_BSLASHAcf] = ACTIONS(5852), - [anon_sym_BSLASHacfp] = ACTIONS(5852), - [anon_sym_BSLASHAcfp] = ACTIONS(5852), - [anon_sym_BSLASHac] = ACTIONS(5852), - [anon_sym_BSLASHAc] = ACTIONS(5852), - [anon_sym_BSLASHacp] = ACTIONS(5852), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5852), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5852), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5852), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5852), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5852), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5852), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5852), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5854), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5852), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5854), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5852), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5852), - [anon_sym_BSLASHcolor] = ACTIONS(5852), - [anon_sym_BSLASHcolorbox] = ACTIONS(5852), - [anon_sym_BSLASHtextcolor] = ACTIONS(5852), - [anon_sym_BSLASHpagecolor] = ACTIONS(5852), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5852), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5852), - [anon_sym_BSLASHtext] = ACTIONS(5852), - [anon_sym_BSLASHintertext] = ACTIONS(5852), - [anon_sym_shortintertext] = ACTIONS(5852), - }, - [361] = { - [sym__section_part] = STATE(543), - [sym_curly_group] = STATE(550), - [sym_brack_group] = STATE(2476), - [sym_command_name] = ACTIONS(5856), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5856), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5858), - [anon_sym_COMMA] = ACTIONS(5858), - [anon_sym_EQ] = ACTIONS(5858), - [anon_sym_LPAREN] = ACTIONS(5858), - [anon_sym_RPAREN] = ACTIONS(5858), - [anon_sym_BSLASHpart] = ACTIONS(5856), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddpart] = ACTIONS(5856), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5858), - [anon_sym_BSLASHchapter] = ACTIONS(5856), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddchap] = ACTIONS(5856), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsection] = ACTIONS(5856), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddsec] = ACTIONS(5856), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubsection] = ACTIONS(5856), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5856), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHparagraph] = ACTIONS(5856), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5856), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5858), - [anon_sym_BSLASHitem] = ACTIONS(5856), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5858), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(5856), - [sym_placeholder] = ACTIONS(5858), - [anon_sym_PLUS] = ACTIONS(5858), - [anon_sym_DASH] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(5858), - [anon_sym_SLASH] = ACTIONS(5858), - [anon_sym_LT] = ACTIONS(5856), - [anon_sym_GT] = ACTIONS(5856), - [anon_sym_BANG] = ACTIONS(5856), - [anon_sym_PIPE] = ACTIONS(5856), - [anon_sym_COLON] = ACTIONS(5856), - [anon_sym_SQUOTE] = ACTIONS(5856), - [anon_sym__] = ACTIONS(5858), - [anon_sym_CARET] = ACTIONS(5858), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5858), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5858), - [anon_sym_DOLLAR] = ACTIONS(5856), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5858), - [anon_sym_BSLASHbegin] = ACTIONS(5856), - [anon_sym_BSLASHtitle] = ACTIONS(5856), - [anon_sym_BSLASHauthor] = ACTIONS(5856), - [anon_sym_BSLASHusepackage] = ACTIONS(5856), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5856), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5856), - [anon_sym_BSLASHinclude] = ACTIONS(5856), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5856), - [anon_sym_BSLASHinput] = ACTIONS(5856), - [anon_sym_BSLASHsubfile] = ACTIONS(5856), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5856), - [anon_sym_BSLASHbibliography] = ACTIONS(5856), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5856), - [anon_sym_BSLASHincludesvg] = ACTIONS(5856), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5856), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5856), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5856), - [anon_sym_BSLASHimport] = ACTIONS(5856), - [anon_sym_BSLASHsubimport] = ACTIONS(5856), - [anon_sym_BSLASHinputfrom] = ACTIONS(5856), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5856), - [anon_sym_BSLASHincludefrom] = ACTIONS(5856), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5856), - [anon_sym_BSLASHcaption] = ACTIONS(5856), - [anon_sym_BSLASHcite] = ACTIONS(5856), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCite] = ACTIONS(5856), - [anon_sym_BSLASHnocite] = ACTIONS(5856), - [anon_sym_BSLASHcitet] = ACTIONS(5856), - [anon_sym_BSLASHcitep] = ACTIONS(5856), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteauthor] = ACTIONS(5856), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5856), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitetitle] = ACTIONS(5856), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteyear] = ACTIONS(5856), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitedate] = ACTIONS(5856), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteurl] = ACTIONS(5856), - [anon_sym_BSLASHfullcite] = ACTIONS(5856), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5856), - [anon_sym_BSLASHcitealt] = ACTIONS(5856), - [anon_sym_BSLASHcitealp] = ACTIONS(5856), - [anon_sym_BSLASHcitetext] = ACTIONS(5856), - [anon_sym_BSLASHparencite] = ACTIONS(5856), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHParencite] = ACTIONS(5856), - [anon_sym_BSLASHfootcite] = ACTIONS(5856), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5856), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5856), - [anon_sym_BSLASHtextcite] = ACTIONS(5856), - [anon_sym_BSLASHTextcite] = ACTIONS(5856), - [anon_sym_BSLASHsmartcite] = ACTIONS(5856), - [anon_sym_BSLASHSmartcite] = ACTIONS(5856), - [anon_sym_BSLASHsupercite] = ACTIONS(5856), - [anon_sym_BSLASHautocite] = ACTIONS(5856), - [anon_sym_BSLASHAutocite] = ACTIONS(5856), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHvolcite] = ACTIONS(5856), - [anon_sym_BSLASHVolcite] = ACTIONS(5856), - [anon_sym_BSLASHpvolcite] = ACTIONS(5856), - [anon_sym_BSLASHPvolcite] = ACTIONS(5856), - [anon_sym_BSLASHfvolcite] = ACTIONS(5856), - [anon_sym_BSLASHftvolcite] = ACTIONS(5856), - [anon_sym_BSLASHsvolcite] = ACTIONS(5856), - [anon_sym_BSLASHSvolcite] = ACTIONS(5856), - [anon_sym_BSLASHtvolcite] = ACTIONS(5856), - [anon_sym_BSLASHTvolcite] = ACTIONS(5856), - [anon_sym_BSLASHavolcite] = ACTIONS(5856), - [anon_sym_BSLASHAvolcite] = ACTIONS(5856), - [anon_sym_BSLASHnotecite] = ACTIONS(5856), - [anon_sym_BSLASHNotecite] = ACTIONS(5856), - [anon_sym_BSLASHpnotecite] = ACTIONS(5856), - [anon_sym_BSLASHPnotecite] = ACTIONS(5856), - [anon_sym_BSLASHfnotecite] = ACTIONS(5856), - [anon_sym_BSLASHlabel] = ACTIONS(5856), - [anon_sym_BSLASHref] = ACTIONS(5856), - [anon_sym_BSLASHeqref] = ACTIONS(5856), - [anon_sym_BSLASHvref] = ACTIONS(5856), - [anon_sym_BSLASHVref] = ACTIONS(5856), - [anon_sym_BSLASHautoref] = ACTIONS(5856), - [anon_sym_BSLASHpageref] = ACTIONS(5856), - [anon_sym_BSLASHcref] = ACTIONS(5856), - [anon_sym_BSLASHCref] = ACTIONS(5856), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5858), - [anon_sym_BSLASHnamecref] = ACTIONS(5856), - [anon_sym_BSLASHnameCref] = ACTIONS(5856), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5856), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5856), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5856), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5856), - [anon_sym_BSLASHlabelcref] = ACTIONS(5856), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5856), - [anon_sym_BSLASHcrefrange] = ACTIONS(5856), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCrefrange] = ACTIONS(5856), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5858), - [anon_sym_BSLASHnewlabel] = ACTIONS(5856), - [anon_sym_BSLASHnewcommand] = ACTIONS(5856), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5856), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5856), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5858), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHdef] = ACTIONS(5856), - [anon_sym_BSLASHlet] = ACTIONS(5856), - [anon_sym_BSLASHleft] = ACTIONS(5856), - [anon_sym_BSLASHbig] = ACTIONS(5856), - [anon_sym_BSLASHBig] = ACTIONS(5856), - [anon_sym_BSLASHbigg] = ACTIONS(5856), - [anon_sym_BSLASHBigg] = ACTIONS(5856), - [anon_sym_BSLASHbigl] = ACTIONS(5856), - [anon_sym_BSLASHBigl] = ACTIONS(5856), - [anon_sym_BSLASHbiggl] = ACTIONS(5856), - [anon_sym_BSLASHBiggl] = ACTIONS(5856), - [anon_sym_BSLASHright] = ACTIONS(5856), - [anon_sym_BSLASHbigr] = ACTIONS(5856), - [anon_sym_BSLASHBigr] = ACTIONS(5856), - [anon_sym_BSLASHbiggr] = ACTIONS(5856), - [anon_sym_BSLASHBiggr] = ACTIONS(5856), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5856), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5856), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5856), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5856), - [anon_sym_BSLASHgls] = ACTIONS(5856), - [anon_sym_BSLASHGls] = ACTIONS(5856), - [anon_sym_BSLASHGLS] = ACTIONS(5856), - [anon_sym_BSLASHglspl] = ACTIONS(5856), - [anon_sym_BSLASHGlspl] = ACTIONS(5856), - [anon_sym_BSLASHGLSpl] = ACTIONS(5856), - [anon_sym_BSLASHglsdisp] = ACTIONS(5856), - [anon_sym_BSLASHglslink] = ACTIONS(5856), - [anon_sym_BSLASHglstext] = ACTIONS(5856), - [anon_sym_BSLASHGlstext] = ACTIONS(5856), - [anon_sym_BSLASHGLStext] = ACTIONS(5856), - [anon_sym_BSLASHglsfirst] = ACTIONS(5856), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5856), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5856), - [anon_sym_BSLASHglsplural] = ACTIONS(5856), - [anon_sym_BSLASHGlsplural] = ACTIONS(5856), - [anon_sym_BSLASHGLSplural] = ACTIONS(5856), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHglsname] = ACTIONS(5856), - [anon_sym_BSLASHGlsname] = ACTIONS(5856), - [anon_sym_BSLASHGLSname] = ACTIONS(5856), - [anon_sym_BSLASHglssymbol] = ACTIONS(5856), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5856), - [anon_sym_BSLASHglsdesc] = ACTIONS(5856), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5856), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5856), - [anon_sym_BSLASHglsuseri] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5856), - [anon_sym_BSLASHglsuserii] = ACTIONS(5856), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5856), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5856), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5856), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5856), - [anon_sym_BSLASHglsuserv] = ACTIONS(5856), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5856), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5856), - [anon_sym_BSLASHglsuservi] = ACTIONS(5856), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5856), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5856), - [anon_sym_BSLASHnewacronym] = ACTIONS(5856), - [anon_sym_BSLASHacrshort] = ACTIONS(5856), - [anon_sym_BSLASHAcrshort] = ACTIONS(5856), - [anon_sym_BSLASHACRshort] = ACTIONS(5856), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5856), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5856), - [anon_sym_BSLASHacrlong] = ACTIONS(5856), - [anon_sym_BSLASHAcrlong] = ACTIONS(5856), - [anon_sym_BSLASHACRlong] = ACTIONS(5856), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5856), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5856), - [anon_sym_BSLASHacrfull] = ACTIONS(5856), - [anon_sym_BSLASHAcrfull] = ACTIONS(5856), - [anon_sym_BSLASHACRfull] = ACTIONS(5856), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5856), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5856), - [anon_sym_BSLASHacs] = ACTIONS(5856), - [anon_sym_BSLASHAcs] = ACTIONS(5856), - [anon_sym_BSLASHacsp] = ACTIONS(5856), - [anon_sym_BSLASHAcsp] = ACTIONS(5856), - [anon_sym_BSLASHacl] = ACTIONS(5856), - [anon_sym_BSLASHAcl] = ACTIONS(5856), - [anon_sym_BSLASHaclp] = ACTIONS(5856), - [anon_sym_BSLASHAclp] = ACTIONS(5856), - [anon_sym_BSLASHacf] = ACTIONS(5856), - [anon_sym_BSLASHAcf] = ACTIONS(5856), - [anon_sym_BSLASHacfp] = ACTIONS(5856), - [anon_sym_BSLASHAcfp] = ACTIONS(5856), - [anon_sym_BSLASHac] = ACTIONS(5856), - [anon_sym_BSLASHAc] = ACTIONS(5856), - [anon_sym_BSLASHacp] = ACTIONS(5856), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5856), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5856), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5856), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5856), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5856), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5856), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5856), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5858), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5856), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5858), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5856), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5856), - [anon_sym_BSLASHcolor] = ACTIONS(5856), - [anon_sym_BSLASHcolorbox] = ACTIONS(5856), - [anon_sym_BSLASHtextcolor] = ACTIONS(5856), - [anon_sym_BSLASHpagecolor] = ACTIONS(5856), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5856), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5856), - [anon_sym_BSLASHtext] = ACTIONS(5856), - [anon_sym_BSLASHintertext] = ACTIONS(5856), - [anon_sym_shortintertext] = ACTIONS(5856), - }, - [362] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHright] = ACTIONS(5844), - [anon_sym_BSLASHbigr] = ACTIONS(5844), - [anon_sym_BSLASHBigr] = ACTIONS(5844), - [anon_sym_BSLASHbiggr] = ACTIONS(5844), - [anon_sym_BSLASHBiggr] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [363] = { - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(409), - [aux_sym__section_repeat4] = STATE(409), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHright] = ACTIONS(5860), - [anon_sym_BSLASHbigr] = ACTIONS(5860), - [anon_sym_BSLASHBigr] = ACTIONS(5860), - [anon_sym_BSLASHbiggr] = ACTIONS(5860), - [anon_sym_BSLASHBiggr] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [364] = { - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(410), - [aux_sym__section_repeat5] = STATE(410), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHright] = ACTIONS(5860), - [anon_sym_BSLASHbigr] = ACTIONS(5860), - [anon_sym_BSLASHBigr] = ACTIONS(5860), - [anon_sym_BSLASHbiggr] = ACTIONS(5860), - [anon_sym_BSLASHBiggr] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [365] = { - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(411), - [aux_sym__section_repeat6] = STATE(411), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHright] = ACTIONS(5860), - [anon_sym_BSLASHbigr] = ACTIONS(5860), - [anon_sym_BSLASHBigr] = ACTIONS(5860), - [anon_sym_BSLASHbiggr] = ACTIONS(5860), - [anon_sym_BSLASHBiggr] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [366] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHright] = ACTIONS(5860), - [anon_sym_BSLASHbigr] = ACTIONS(5860), - [anon_sym_BSLASHBigr] = ACTIONS(5860), - [anon_sym_BSLASHbiggr] = ACTIONS(5860), - [anon_sym_BSLASHBiggr] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [367] = { - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(406), - [aux_sym__section_repeat1] = STATE(406), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHright] = ACTIONS(5864), - [anon_sym_BSLASHbigr] = ACTIONS(5864), - [anon_sym_BSLASHBigr] = ACTIONS(5864), - [anon_sym_BSLASHbiggr] = ACTIONS(5864), - [anon_sym_BSLASHBiggr] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [368] = { - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(407), - [aux_sym__section_repeat2] = STATE(407), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHright] = ACTIONS(5864), - [anon_sym_BSLASHbigr] = ACTIONS(5864), - [anon_sym_BSLASHBigr] = ACTIONS(5864), - [anon_sym_BSLASHbiggr] = ACTIONS(5864), - [anon_sym_BSLASHBiggr] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [369] = { - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(408), - [aux_sym__section_repeat3] = STATE(408), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHright] = ACTIONS(5864), - [anon_sym_BSLASHbigr] = ACTIONS(5864), - [anon_sym_BSLASHBigr] = ACTIONS(5864), - [anon_sym_BSLASHbiggr] = ACTIONS(5864), - [anon_sym_BSLASHBiggr] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [370] = { - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(409), - [aux_sym__section_repeat4] = STATE(409), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHright] = ACTIONS(5864), - [anon_sym_BSLASHbigr] = ACTIONS(5864), - [anon_sym_BSLASHBigr] = ACTIONS(5864), - [anon_sym_BSLASHbiggr] = ACTIONS(5864), - [anon_sym_BSLASHBiggr] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [371] = { - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(410), - [aux_sym__section_repeat5] = STATE(410), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHright] = ACTIONS(5864), - [anon_sym_BSLASHbigr] = ACTIONS(5864), - [anon_sym_BSLASHBigr] = ACTIONS(5864), - [anon_sym_BSLASHbiggr] = ACTIONS(5864), - [anon_sym_BSLASHBiggr] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [372] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHright] = ACTIONS(5860), - [anon_sym_BSLASHbigr] = ACTIONS(5860), - [anon_sym_BSLASHBigr] = ACTIONS(5860), - [anon_sym_BSLASHbiggr] = ACTIONS(5860), - [anon_sym_BSLASHBiggr] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [373] = { - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(411), - [aux_sym__section_repeat6] = STATE(411), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHright] = ACTIONS(5864), - [anon_sym_BSLASHbigr] = ACTIONS(5864), - [anon_sym_BSLASHBigr] = ACTIONS(5864), - [anon_sym_BSLASHbiggr] = ACTIONS(5864), - [anon_sym_BSLASHBiggr] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [374] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHright] = ACTIONS(5864), - [anon_sym_BSLASHbigr] = ACTIONS(5864), - [anon_sym_BSLASHBigr] = ACTIONS(5864), - [anon_sym_BSLASHbiggr] = ACTIONS(5864), - [anon_sym_BSLASHBiggr] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [375] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHright] = ACTIONS(5864), - [anon_sym_BSLASHbigr] = ACTIONS(5864), - [anon_sym_BSLASHBigr] = ACTIONS(5864), - [anon_sym_BSLASHbiggr] = ACTIONS(5864), - [anon_sym_BSLASHBiggr] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [376] = { - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(407), - [aux_sym__section_repeat2] = STATE(407), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHright] = ACTIONS(2138), - [anon_sym_BSLASHbigr] = ACTIONS(2138), - [anon_sym_BSLASHBigr] = ACTIONS(2138), - [anon_sym_BSLASHbiggr] = ACTIONS(2138), - [anon_sym_BSLASHBiggr] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [377] = { - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(408), - [aux_sym__section_repeat3] = STATE(408), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHright] = ACTIONS(2138), - [anon_sym_BSLASHbigr] = ACTIONS(2138), - [anon_sym_BSLASHBigr] = ACTIONS(2138), - [anon_sym_BSLASHbiggr] = ACTIONS(2138), - [anon_sym_BSLASHBiggr] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [378] = { - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(409), - [aux_sym__section_repeat4] = STATE(409), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHright] = ACTIONS(2138), - [anon_sym_BSLASHbigr] = ACTIONS(2138), - [anon_sym_BSLASHBigr] = ACTIONS(2138), - [anon_sym_BSLASHbiggr] = ACTIONS(2138), - [anon_sym_BSLASHBiggr] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [379] = { - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(410), - [aux_sym__section_repeat5] = STATE(410), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHright] = ACTIONS(2138), - [anon_sym_BSLASHbigr] = ACTIONS(2138), - [anon_sym_BSLASHBigr] = ACTIONS(2138), - [anon_sym_BSLASHbiggr] = ACTIONS(2138), - [anon_sym_BSLASHBiggr] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [380] = { - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(411), - [aux_sym__section_repeat6] = STATE(411), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHright] = ACTIONS(2138), - [anon_sym_BSLASHbigr] = ACTIONS(2138), - [anon_sym_BSLASHBigr] = ACTIONS(2138), - [anon_sym_BSLASHbiggr] = ACTIONS(2138), - [anon_sym_BSLASHBiggr] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [381] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHright] = ACTIONS(2138), - [anon_sym_BSLASHbigr] = ACTIONS(2138), - [anon_sym_BSLASHBigr] = ACTIONS(2138), - [anon_sym_BSLASHbiggr] = ACTIONS(2138), - [anon_sym_BSLASHBiggr] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [382] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHright] = ACTIONS(2138), - [anon_sym_BSLASHbigr] = ACTIONS(2138), - [anon_sym_BSLASHBigr] = ACTIONS(2138), - [anon_sym_BSLASHbiggr] = ACTIONS(2138), - [anon_sym_BSLASHBiggr] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [383] = { - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(408), - [aux_sym__section_repeat3] = STATE(408), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHright] = ACTIONS(2158), - [anon_sym_BSLASHbigr] = ACTIONS(2158), - [anon_sym_BSLASHBigr] = ACTIONS(2158), - [anon_sym_BSLASHbiggr] = ACTIONS(2158), - [anon_sym_BSLASHBiggr] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [384] = { - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(409), - [aux_sym__section_repeat4] = STATE(409), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHright] = ACTIONS(2158), - [anon_sym_BSLASHbigr] = ACTIONS(2158), - [anon_sym_BSLASHBigr] = ACTIONS(2158), - [anon_sym_BSLASHbiggr] = ACTIONS(2158), - [anon_sym_BSLASHBiggr] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [385] = { - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(410), - [aux_sym__section_repeat5] = STATE(410), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHright] = ACTIONS(2158), - [anon_sym_BSLASHbigr] = ACTIONS(2158), - [anon_sym_BSLASHBigr] = ACTIONS(2158), - [anon_sym_BSLASHbiggr] = ACTIONS(2158), - [anon_sym_BSLASHBiggr] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [386] = { - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(411), - [aux_sym__section_repeat6] = STATE(411), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHright] = ACTIONS(2158), - [anon_sym_BSLASHbigr] = ACTIONS(2158), - [anon_sym_BSLASHBigr] = ACTIONS(2158), - [anon_sym_BSLASHbiggr] = ACTIONS(2158), - [anon_sym_BSLASHBiggr] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [387] = { - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(410), - [aux_sym__section_repeat5] = STATE(410), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHright] = ACTIONS(5868), - [anon_sym_BSLASHbigr] = ACTIONS(5868), - [anon_sym_BSLASHBigr] = ACTIONS(5868), - [anon_sym_BSLASHbiggr] = ACTIONS(5868), - [anon_sym_BSLASHBiggr] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [388] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHright] = ACTIONS(2158), - [anon_sym_BSLASHbigr] = ACTIONS(2158), - [anon_sym_BSLASHBigr] = ACTIONS(2158), - [anon_sym_BSLASHbiggr] = ACTIONS(2158), - [anon_sym_BSLASHBiggr] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [389] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHright] = ACTIONS(2158), - [anon_sym_BSLASHbigr] = ACTIONS(2158), - [anon_sym_BSLASHBigr] = ACTIONS(2158), - [anon_sym_BSLASHbiggr] = ACTIONS(2158), - [anon_sym_BSLASHBiggr] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [390] = { - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(409), - [aux_sym__section_repeat4] = STATE(409), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHright] = ACTIONS(2184), - [anon_sym_BSLASHbigr] = ACTIONS(2184), - [anon_sym_BSLASHBigr] = ACTIONS(2184), - [anon_sym_BSLASHbiggr] = ACTIONS(2184), - [anon_sym_BSLASHBiggr] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [391] = { - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(410), - [aux_sym__section_repeat5] = STATE(410), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHright] = ACTIONS(2184), - [anon_sym_BSLASHbigr] = ACTIONS(2184), - [anon_sym_BSLASHBigr] = ACTIONS(2184), - [anon_sym_BSLASHbiggr] = ACTIONS(2184), - [anon_sym_BSLASHBiggr] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [392] = { - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(411), - [aux_sym__section_repeat6] = STATE(411), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHright] = ACTIONS(2184), - [anon_sym_BSLASHbigr] = ACTIONS(2184), - [anon_sym_BSLASHBigr] = ACTIONS(2184), - [anon_sym_BSLASHbiggr] = ACTIONS(2184), - [anon_sym_BSLASHBiggr] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [393] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHright] = ACTIONS(2184), - [anon_sym_BSLASHbigr] = ACTIONS(2184), - [anon_sym_BSLASHBigr] = ACTIONS(2184), - [anon_sym_BSLASHbiggr] = ACTIONS(2184), - [anon_sym_BSLASHBiggr] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [394] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHright] = ACTIONS(2184), - [anon_sym_BSLASHbigr] = ACTIONS(2184), - [anon_sym_BSLASHBigr] = ACTIONS(2184), - [anon_sym_BSLASHbiggr] = ACTIONS(2184), - [anon_sym_BSLASHBiggr] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [395] = { - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(411), - [aux_sym__section_repeat6] = STATE(411), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHright] = ACTIONS(5868), - [anon_sym_BSLASHbigr] = ACTIONS(5868), - [anon_sym_BSLASHBigr] = ACTIONS(5868), - [anon_sym_BSLASHbiggr] = ACTIONS(5868), - [anon_sym_BSLASHBiggr] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [396] = { - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(410), - [aux_sym__section_repeat5] = STATE(410), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHright] = ACTIONS(2202), - [anon_sym_BSLASHbigr] = ACTIONS(2202), - [anon_sym_BSLASHBigr] = ACTIONS(2202), - [anon_sym_BSLASHbiggr] = ACTIONS(2202), - [anon_sym_BSLASHBiggr] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [397] = { - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(411), - [aux_sym__section_repeat6] = STATE(411), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHright] = ACTIONS(5844), - [anon_sym_BSLASHbigr] = ACTIONS(5844), - [anon_sym_BSLASHBigr] = ACTIONS(5844), - [anon_sym_BSLASHbiggr] = ACTIONS(5844), - [anon_sym_BSLASHBiggr] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [398] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHright] = ACTIONS(2202), - [anon_sym_BSLASHbigr] = ACTIONS(2202), - [anon_sym_BSLASHBigr] = ACTIONS(2202), - [anon_sym_BSLASHbiggr] = ACTIONS(2202), - [anon_sym_BSLASHBiggr] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [399] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHright] = ACTIONS(2202), - [anon_sym_BSLASHbigr] = ACTIONS(2202), - [anon_sym_BSLASHBigr] = ACTIONS(2202), - [anon_sym_BSLASHbiggr] = ACTIONS(2202), - [anon_sym_BSLASHBiggr] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [400] = { - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(411), - [aux_sym__section_repeat6] = STATE(411), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2220), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHitem] = ACTIONS(2220), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHright] = ACTIONS(2220), - [anon_sym_BSLASHbigr] = ACTIONS(2220), - [anon_sym_BSLASHBigr] = ACTIONS(2220), - [anon_sym_BSLASHbiggr] = ACTIONS(2220), - [anon_sym_BSLASHBiggr] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [401] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(2220), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(2220), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHright] = ACTIONS(2220), - [anon_sym_BSLASHbigr] = ACTIONS(2220), - [anon_sym_BSLASHBigr] = ACTIONS(2220), - [anon_sym_BSLASHbiggr] = ACTIONS(2220), - [anon_sym_BSLASHBiggr] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [402] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(2220), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2220), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHright] = ACTIONS(2220), - [anon_sym_BSLASHbigr] = ACTIONS(2220), - [anon_sym_BSLASHBigr] = ACTIONS(2220), - [anon_sym_BSLASHbiggr] = ACTIONS(2220), - [anon_sym_BSLASHBiggr] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [403] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(2230), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(2230), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2232), - [sym_word] = ACTIONS(2230), - [sym_placeholder] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_COLON] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym__] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2232), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2232), - [anon_sym_BSLASHbegin] = ACTIONS(2230), - [anon_sym_BSLASHtitle] = ACTIONS(2230), - [anon_sym_BSLASHauthor] = ACTIONS(2230), - [anon_sym_BSLASHusepackage] = ACTIONS(2230), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2230), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2230), - [anon_sym_BSLASHinclude] = ACTIONS(2230), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2230), - [anon_sym_BSLASHinput] = ACTIONS(2230), - [anon_sym_BSLASHsubfile] = ACTIONS(2230), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2230), - [anon_sym_BSLASHbibliography] = ACTIONS(2230), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2230), - [anon_sym_BSLASHincludesvg] = ACTIONS(2230), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2230), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2230), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2230), - [anon_sym_BSLASHimport] = ACTIONS(2230), - [anon_sym_BSLASHsubimport] = ACTIONS(2230), - [anon_sym_BSLASHinputfrom] = ACTIONS(2230), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2230), - [anon_sym_BSLASHincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHcaption] = ACTIONS(2230), - [anon_sym_BSLASHcite] = ACTIONS(2230), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCite] = ACTIONS(2230), - [anon_sym_BSLASHnocite] = ACTIONS(2230), - [anon_sym_BSLASHcitet] = ACTIONS(2230), - [anon_sym_BSLASHcitep] = ACTIONS(2230), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteauthor] = ACTIONS(2230), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2230), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitetitle] = ACTIONS(2230), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteyear] = ACTIONS(2230), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitedate] = ACTIONS(2230), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteurl] = ACTIONS(2230), - [anon_sym_BSLASHfullcite] = ACTIONS(2230), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2230), - [anon_sym_BSLASHcitealt] = ACTIONS(2230), - [anon_sym_BSLASHcitealp] = ACTIONS(2230), - [anon_sym_BSLASHcitetext] = ACTIONS(2230), - [anon_sym_BSLASHparencite] = ACTIONS(2230), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHParencite] = ACTIONS(2230), - [anon_sym_BSLASHfootcite] = ACTIONS(2230), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2230), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2230), - [anon_sym_BSLASHtextcite] = ACTIONS(2230), - [anon_sym_BSLASHTextcite] = ACTIONS(2230), - [anon_sym_BSLASHsmartcite] = ACTIONS(2230), - [anon_sym_BSLASHSmartcite] = ACTIONS(2230), - [anon_sym_BSLASHsupercite] = ACTIONS(2230), - [anon_sym_BSLASHautocite] = ACTIONS(2230), - [anon_sym_BSLASHAutocite] = ACTIONS(2230), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHvolcite] = ACTIONS(2230), - [anon_sym_BSLASHVolcite] = ACTIONS(2230), - [anon_sym_BSLASHpvolcite] = ACTIONS(2230), - [anon_sym_BSLASHPvolcite] = ACTIONS(2230), - [anon_sym_BSLASHfvolcite] = ACTIONS(2230), - [anon_sym_BSLASHftvolcite] = ACTIONS(2230), - [anon_sym_BSLASHsvolcite] = ACTIONS(2230), - [anon_sym_BSLASHSvolcite] = ACTIONS(2230), - [anon_sym_BSLASHtvolcite] = ACTIONS(2230), - [anon_sym_BSLASHTvolcite] = ACTIONS(2230), - [anon_sym_BSLASHavolcite] = ACTIONS(2230), - [anon_sym_BSLASHAvolcite] = ACTIONS(2230), - [anon_sym_BSLASHnotecite] = ACTIONS(2230), - [anon_sym_BSLASHNotecite] = ACTIONS(2230), - [anon_sym_BSLASHpnotecite] = ACTIONS(2230), - [anon_sym_BSLASHPnotecite] = ACTIONS(2230), - [anon_sym_BSLASHfnotecite] = ACTIONS(2230), - [anon_sym_BSLASHlabel] = ACTIONS(2230), - [anon_sym_BSLASHref] = ACTIONS(2230), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [anon_sym_BSLASHvref] = ACTIONS(2230), - [anon_sym_BSLASHVref] = ACTIONS(2230), - [anon_sym_BSLASHautoref] = ACTIONS(2230), - [anon_sym_BSLASHpageref] = ACTIONS(2230), - [anon_sym_BSLASHcref] = ACTIONS(2230), - [anon_sym_BSLASHCref] = ACTIONS(2230), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnameCref] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHlabelcref] = ACTIONS(2230), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCrefrange] = ACTIONS(2230), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2230), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2230), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2232), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHdef] = ACTIONS(2230), - [anon_sym_BSLASHlet] = ACTIONS(2230), - [anon_sym_BSLASHleft] = ACTIONS(2230), - [anon_sym_BSLASHbig] = ACTIONS(2230), - [anon_sym_BSLASHBig] = ACTIONS(2230), - [anon_sym_BSLASHbigg] = ACTIONS(2230), - [anon_sym_BSLASHBigg] = ACTIONS(2230), - [anon_sym_BSLASHbigl] = ACTIONS(2230), - [anon_sym_BSLASHBigl] = ACTIONS(2230), - [anon_sym_BSLASHbiggl] = ACTIONS(2230), - [anon_sym_BSLASHBiggl] = ACTIONS(2230), - [anon_sym_BSLASHright] = ACTIONS(2230), - [anon_sym_BSLASHbigr] = ACTIONS(2230), - [anon_sym_BSLASHBigr] = ACTIONS(2230), - [anon_sym_BSLASHbiggr] = ACTIONS(2230), - [anon_sym_BSLASHBiggr] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2230), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2230), - [anon_sym_BSLASHgls] = ACTIONS(2230), - [anon_sym_BSLASHGls] = ACTIONS(2230), - [anon_sym_BSLASHGLS] = ACTIONS(2230), - [anon_sym_BSLASHglspl] = ACTIONS(2230), - [anon_sym_BSLASHGlspl] = ACTIONS(2230), - [anon_sym_BSLASHGLSpl] = ACTIONS(2230), - [anon_sym_BSLASHglsdisp] = ACTIONS(2230), - [anon_sym_BSLASHglslink] = ACTIONS(2230), - [anon_sym_BSLASHglstext] = ACTIONS(2230), - [anon_sym_BSLASHGlstext] = ACTIONS(2230), - [anon_sym_BSLASHGLStext] = ACTIONS(2230), - [anon_sym_BSLASHglsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2230), - [anon_sym_BSLASHglsplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSplural] = ACTIONS(2230), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHglsname] = ACTIONS(2230), - [anon_sym_BSLASHGlsname] = ACTIONS(2230), - [anon_sym_BSLASHGLSname] = ACTIONS(2230), - [anon_sym_BSLASHglssymbol] = ACTIONS(2230), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2230), - [anon_sym_BSLASHglsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2230), - [anon_sym_BSLASHglsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2230), - [anon_sym_BSLASHglsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2230), - [anon_sym_BSLASHglsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2230), - [anon_sym_BSLASHglsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2230), - [anon_sym_BSLASHnewacronym] = ACTIONS(2230), - [anon_sym_BSLASHacrshort] = ACTIONS(2230), - [anon_sym_BSLASHAcrshort] = ACTIONS(2230), - [anon_sym_BSLASHACRshort] = ACTIONS(2230), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2230), - [anon_sym_BSLASHacrlong] = ACTIONS(2230), - [anon_sym_BSLASHAcrlong] = ACTIONS(2230), - [anon_sym_BSLASHACRlong] = ACTIONS(2230), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2230), - [anon_sym_BSLASHacrfull] = ACTIONS(2230), - [anon_sym_BSLASHAcrfull] = ACTIONS(2230), - [anon_sym_BSLASHACRfull] = ACTIONS(2230), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2230), - [anon_sym_BSLASHacs] = ACTIONS(2230), - [anon_sym_BSLASHAcs] = ACTIONS(2230), - [anon_sym_BSLASHacsp] = ACTIONS(2230), - [anon_sym_BSLASHAcsp] = ACTIONS(2230), - [anon_sym_BSLASHacl] = ACTIONS(2230), - [anon_sym_BSLASHAcl] = ACTIONS(2230), - [anon_sym_BSLASHaclp] = ACTIONS(2230), - [anon_sym_BSLASHAclp] = ACTIONS(2230), - [anon_sym_BSLASHacf] = ACTIONS(2230), - [anon_sym_BSLASHAcf] = ACTIONS(2230), - [anon_sym_BSLASHacfp] = ACTIONS(2230), - [anon_sym_BSLASHAcfp] = ACTIONS(2230), - [anon_sym_BSLASHac] = ACTIONS(2230), - [anon_sym_BSLASHAc] = ACTIONS(2230), - [anon_sym_BSLASHacp] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2230), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2230), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2230), - [anon_sym_BSLASHcolor] = ACTIONS(2230), - [anon_sym_BSLASHcolorbox] = ACTIONS(2230), - [anon_sym_BSLASHtextcolor] = ACTIONS(2230), - [anon_sym_BSLASHpagecolor] = ACTIONS(2230), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2230), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2230), - [anon_sym_BSLASHtext] = ACTIONS(2230), - [anon_sym_BSLASHintertext] = ACTIONS(2230), - [anon_sym_shortintertext] = ACTIONS(2230), - }, - [404] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(2230), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2230), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(2232), - [sym_word] = ACTIONS(2230), - [sym_placeholder] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_COLON] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym__] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2232), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2232), - [anon_sym_BSLASHbegin] = ACTIONS(2230), - [anon_sym_BSLASHtitle] = ACTIONS(2230), - [anon_sym_BSLASHauthor] = ACTIONS(2230), - [anon_sym_BSLASHusepackage] = ACTIONS(2230), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2230), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2230), - [anon_sym_BSLASHinclude] = ACTIONS(2230), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2230), - [anon_sym_BSLASHinput] = ACTIONS(2230), - [anon_sym_BSLASHsubfile] = ACTIONS(2230), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2230), - [anon_sym_BSLASHbibliography] = ACTIONS(2230), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2230), - [anon_sym_BSLASHincludesvg] = ACTIONS(2230), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2230), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2230), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2230), - [anon_sym_BSLASHimport] = ACTIONS(2230), - [anon_sym_BSLASHsubimport] = ACTIONS(2230), - [anon_sym_BSLASHinputfrom] = ACTIONS(2230), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2230), - [anon_sym_BSLASHincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHcaption] = ACTIONS(2230), - [anon_sym_BSLASHcite] = ACTIONS(2230), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCite] = ACTIONS(2230), - [anon_sym_BSLASHnocite] = ACTIONS(2230), - [anon_sym_BSLASHcitet] = ACTIONS(2230), - [anon_sym_BSLASHcitep] = ACTIONS(2230), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteauthor] = ACTIONS(2230), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2230), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitetitle] = ACTIONS(2230), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteyear] = ACTIONS(2230), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitedate] = ACTIONS(2230), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteurl] = ACTIONS(2230), - [anon_sym_BSLASHfullcite] = ACTIONS(2230), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2230), - [anon_sym_BSLASHcitealt] = ACTIONS(2230), - [anon_sym_BSLASHcitealp] = ACTIONS(2230), - [anon_sym_BSLASHcitetext] = ACTIONS(2230), - [anon_sym_BSLASHparencite] = ACTIONS(2230), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHParencite] = ACTIONS(2230), - [anon_sym_BSLASHfootcite] = ACTIONS(2230), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2230), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2230), - [anon_sym_BSLASHtextcite] = ACTIONS(2230), - [anon_sym_BSLASHTextcite] = ACTIONS(2230), - [anon_sym_BSLASHsmartcite] = ACTIONS(2230), - [anon_sym_BSLASHSmartcite] = ACTIONS(2230), - [anon_sym_BSLASHsupercite] = ACTIONS(2230), - [anon_sym_BSLASHautocite] = ACTIONS(2230), - [anon_sym_BSLASHAutocite] = ACTIONS(2230), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHvolcite] = ACTIONS(2230), - [anon_sym_BSLASHVolcite] = ACTIONS(2230), - [anon_sym_BSLASHpvolcite] = ACTIONS(2230), - [anon_sym_BSLASHPvolcite] = ACTIONS(2230), - [anon_sym_BSLASHfvolcite] = ACTIONS(2230), - [anon_sym_BSLASHftvolcite] = ACTIONS(2230), - [anon_sym_BSLASHsvolcite] = ACTIONS(2230), - [anon_sym_BSLASHSvolcite] = ACTIONS(2230), - [anon_sym_BSLASHtvolcite] = ACTIONS(2230), - [anon_sym_BSLASHTvolcite] = ACTIONS(2230), - [anon_sym_BSLASHavolcite] = ACTIONS(2230), - [anon_sym_BSLASHAvolcite] = ACTIONS(2230), - [anon_sym_BSLASHnotecite] = ACTIONS(2230), - [anon_sym_BSLASHNotecite] = ACTIONS(2230), - [anon_sym_BSLASHpnotecite] = ACTIONS(2230), - [anon_sym_BSLASHPnotecite] = ACTIONS(2230), - [anon_sym_BSLASHfnotecite] = ACTIONS(2230), - [anon_sym_BSLASHlabel] = ACTIONS(2230), - [anon_sym_BSLASHref] = ACTIONS(2230), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [anon_sym_BSLASHvref] = ACTIONS(2230), - [anon_sym_BSLASHVref] = ACTIONS(2230), - [anon_sym_BSLASHautoref] = ACTIONS(2230), - [anon_sym_BSLASHpageref] = ACTIONS(2230), - [anon_sym_BSLASHcref] = ACTIONS(2230), - [anon_sym_BSLASHCref] = ACTIONS(2230), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnameCref] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHlabelcref] = ACTIONS(2230), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCrefrange] = ACTIONS(2230), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2230), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2230), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2232), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHdef] = ACTIONS(2230), - [anon_sym_BSLASHlet] = ACTIONS(2230), - [anon_sym_BSLASHleft] = ACTIONS(2230), - [anon_sym_BSLASHbig] = ACTIONS(2230), - [anon_sym_BSLASHBig] = ACTIONS(2230), - [anon_sym_BSLASHbigg] = ACTIONS(2230), - [anon_sym_BSLASHBigg] = ACTIONS(2230), - [anon_sym_BSLASHbigl] = ACTIONS(2230), - [anon_sym_BSLASHBigl] = ACTIONS(2230), - [anon_sym_BSLASHbiggl] = ACTIONS(2230), - [anon_sym_BSLASHBiggl] = ACTIONS(2230), - [anon_sym_BSLASHright] = ACTIONS(2230), - [anon_sym_BSLASHbigr] = ACTIONS(2230), - [anon_sym_BSLASHBigr] = ACTIONS(2230), - [anon_sym_BSLASHbiggr] = ACTIONS(2230), - [anon_sym_BSLASHBiggr] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2230), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2230), - [anon_sym_BSLASHgls] = ACTIONS(2230), - [anon_sym_BSLASHGls] = ACTIONS(2230), - [anon_sym_BSLASHGLS] = ACTIONS(2230), - [anon_sym_BSLASHglspl] = ACTIONS(2230), - [anon_sym_BSLASHGlspl] = ACTIONS(2230), - [anon_sym_BSLASHGLSpl] = ACTIONS(2230), - [anon_sym_BSLASHglsdisp] = ACTIONS(2230), - [anon_sym_BSLASHglslink] = ACTIONS(2230), - [anon_sym_BSLASHglstext] = ACTIONS(2230), - [anon_sym_BSLASHGlstext] = ACTIONS(2230), - [anon_sym_BSLASHGLStext] = ACTIONS(2230), - [anon_sym_BSLASHglsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2230), - [anon_sym_BSLASHglsplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSplural] = ACTIONS(2230), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHglsname] = ACTIONS(2230), - [anon_sym_BSLASHGlsname] = ACTIONS(2230), - [anon_sym_BSLASHGLSname] = ACTIONS(2230), - [anon_sym_BSLASHglssymbol] = ACTIONS(2230), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2230), - [anon_sym_BSLASHglsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2230), - [anon_sym_BSLASHglsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2230), - [anon_sym_BSLASHglsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2230), - [anon_sym_BSLASHglsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2230), - [anon_sym_BSLASHglsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2230), - [anon_sym_BSLASHnewacronym] = ACTIONS(2230), - [anon_sym_BSLASHacrshort] = ACTIONS(2230), - [anon_sym_BSLASHAcrshort] = ACTIONS(2230), - [anon_sym_BSLASHACRshort] = ACTIONS(2230), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2230), - [anon_sym_BSLASHacrlong] = ACTIONS(2230), - [anon_sym_BSLASHAcrlong] = ACTIONS(2230), - [anon_sym_BSLASHACRlong] = ACTIONS(2230), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2230), - [anon_sym_BSLASHacrfull] = ACTIONS(2230), - [anon_sym_BSLASHAcrfull] = ACTIONS(2230), - [anon_sym_BSLASHACRfull] = ACTIONS(2230), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2230), - [anon_sym_BSLASHacs] = ACTIONS(2230), - [anon_sym_BSLASHAcs] = ACTIONS(2230), - [anon_sym_BSLASHacsp] = ACTIONS(2230), - [anon_sym_BSLASHAcsp] = ACTIONS(2230), - [anon_sym_BSLASHacl] = ACTIONS(2230), - [anon_sym_BSLASHAcl] = ACTIONS(2230), - [anon_sym_BSLASHaclp] = ACTIONS(2230), - [anon_sym_BSLASHAclp] = ACTIONS(2230), - [anon_sym_BSLASHacf] = ACTIONS(2230), - [anon_sym_BSLASHAcf] = ACTIONS(2230), - [anon_sym_BSLASHacfp] = ACTIONS(2230), - [anon_sym_BSLASHAcfp] = ACTIONS(2230), - [anon_sym_BSLASHac] = ACTIONS(2230), - [anon_sym_BSLASHAc] = ACTIONS(2230), - [anon_sym_BSLASHacp] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2230), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2230), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2230), - [anon_sym_BSLASHcolor] = ACTIONS(2230), - [anon_sym_BSLASHcolorbox] = ACTIONS(2230), - [anon_sym_BSLASHtextcolor] = ACTIONS(2230), - [anon_sym_BSLASHpagecolor] = ACTIONS(2230), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2230), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2230), - [anon_sym_BSLASHtext] = ACTIONS(2230), - [anon_sym_BSLASHintertext] = ACTIONS(2230), - [anon_sym_shortintertext] = ACTIONS(2230), - }, - [405] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(2256), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_RBRACK] = ACTIONS(2258), - [anon_sym_COMMA] = ACTIONS(2258), - [anon_sym_EQ] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_BSLASHpart] = ACTIONS(2256), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddpart] = ACTIONS(2256), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHchapter] = ACTIONS(2256), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddchap] = ACTIONS(2256), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsection] = ACTIONS(2256), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddsec] = ACTIONS(2256), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHparagraph] = ACTIONS(2256), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2256), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(2258), - [sym_word] = ACTIONS(2256), - [sym_placeholder] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2256), - [anon_sym_GT] = ACTIONS(2256), - [anon_sym_BANG] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym_SQUOTE] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2258), - [anon_sym_CARET] = ACTIONS(2258), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2258), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2256), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2258), - [anon_sym_BSLASHbegin] = ACTIONS(2256), - [anon_sym_BSLASHtitle] = ACTIONS(2256), - [anon_sym_BSLASHauthor] = ACTIONS(2256), - [anon_sym_BSLASHusepackage] = ACTIONS(2256), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2256), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2256), - [anon_sym_BSLASHinclude] = ACTIONS(2256), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2256), - [anon_sym_BSLASHinput] = ACTIONS(2256), - [anon_sym_BSLASHsubfile] = ACTIONS(2256), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2256), - [anon_sym_BSLASHbibliography] = ACTIONS(2256), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2256), - [anon_sym_BSLASHincludesvg] = ACTIONS(2256), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2256), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2256), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2256), - [anon_sym_BSLASHimport] = ACTIONS(2256), - [anon_sym_BSLASHsubimport] = ACTIONS(2256), - [anon_sym_BSLASHinputfrom] = ACTIONS(2256), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2256), - [anon_sym_BSLASHincludefrom] = ACTIONS(2256), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2256), - [anon_sym_BSLASHcaption] = ACTIONS(2256), - [anon_sym_BSLASHcite] = ACTIONS(2256), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCite] = ACTIONS(2256), - [anon_sym_BSLASHnocite] = ACTIONS(2256), - [anon_sym_BSLASHcitet] = ACTIONS(2256), - [anon_sym_BSLASHcitep] = ACTIONS(2256), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteauthor] = ACTIONS(2256), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2256), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitetitle] = ACTIONS(2256), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteyear] = ACTIONS(2256), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitedate] = ACTIONS(2256), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteurl] = ACTIONS(2256), - [anon_sym_BSLASHfullcite] = ACTIONS(2256), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2256), - [anon_sym_BSLASHcitealt] = ACTIONS(2256), - [anon_sym_BSLASHcitealp] = ACTIONS(2256), - [anon_sym_BSLASHcitetext] = ACTIONS(2256), - [anon_sym_BSLASHparencite] = ACTIONS(2256), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHParencite] = ACTIONS(2256), - [anon_sym_BSLASHfootcite] = ACTIONS(2256), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2256), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2256), - [anon_sym_BSLASHtextcite] = ACTIONS(2256), - [anon_sym_BSLASHTextcite] = ACTIONS(2256), - [anon_sym_BSLASHsmartcite] = ACTIONS(2256), - [anon_sym_BSLASHSmartcite] = ACTIONS(2256), - [anon_sym_BSLASHsupercite] = ACTIONS(2256), - [anon_sym_BSLASHautocite] = ACTIONS(2256), - [anon_sym_BSLASHAutocite] = ACTIONS(2256), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHvolcite] = ACTIONS(2256), - [anon_sym_BSLASHVolcite] = ACTIONS(2256), - [anon_sym_BSLASHpvolcite] = ACTIONS(2256), - [anon_sym_BSLASHPvolcite] = ACTIONS(2256), - [anon_sym_BSLASHfvolcite] = ACTIONS(2256), - [anon_sym_BSLASHftvolcite] = ACTIONS(2256), - [anon_sym_BSLASHsvolcite] = ACTIONS(2256), - [anon_sym_BSLASHSvolcite] = ACTIONS(2256), - [anon_sym_BSLASHtvolcite] = ACTIONS(2256), - [anon_sym_BSLASHTvolcite] = ACTIONS(2256), - [anon_sym_BSLASHavolcite] = ACTIONS(2256), - [anon_sym_BSLASHAvolcite] = ACTIONS(2256), - [anon_sym_BSLASHnotecite] = ACTIONS(2256), - [anon_sym_BSLASHNotecite] = ACTIONS(2256), - [anon_sym_BSLASHpnotecite] = ACTIONS(2256), - [anon_sym_BSLASHPnotecite] = ACTIONS(2256), - [anon_sym_BSLASHfnotecite] = ACTIONS(2256), - [anon_sym_BSLASHlabel] = ACTIONS(2256), - [anon_sym_BSLASHref] = ACTIONS(2256), - [anon_sym_BSLASHeqref] = ACTIONS(2256), - [anon_sym_BSLASHvref] = ACTIONS(2256), - [anon_sym_BSLASHVref] = ACTIONS(2256), - [anon_sym_BSLASHautoref] = ACTIONS(2256), - [anon_sym_BSLASHpageref] = ACTIONS(2256), - [anon_sym_BSLASHcref] = ACTIONS(2256), - [anon_sym_BSLASHCref] = ACTIONS(2256), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2258), - [anon_sym_BSLASHnamecref] = ACTIONS(2256), - [anon_sym_BSLASHnameCref] = ACTIONS(2256), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2256), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2256), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2256), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2256), - [anon_sym_BSLASHlabelcref] = ACTIONS(2256), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2256), - [anon_sym_BSLASHcrefrange] = ACTIONS(2256), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCrefrange] = ACTIONS(2256), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2258), - [anon_sym_BSLASHnewlabel] = ACTIONS(2256), - [anon_sym_BSLASHnewcommand] = ACTIONS(2256), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2256), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2256), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2258), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHdef] = ACTIONS(2256), - [anon_sym_BSLASHlet] = ACTIONS(2256), - [anon_sym_BSLASHleft] = ACTIONS(2256), - [anon_sym_BSLASHbig] = ACTIONS(2256), - [anon_sym_BSLASHBig] = ACTIONS(2256), - [anon_sym_BSLASHbigg] = ACTIONS(2256), - [anon_sym_BSLASHBigg] = ACTIONS(2256), - [anon_sym_BSLASHbigl] = ACTIONS(2256), - [anon_sym_BSLASHBigl] = ACTIONS(2256), - [anon_sym_BSLASHbiggl] = ACTIONS(2256), - [anon_sym_BSLASHBiggl] = ACTIONS(2256), - [anon_sym_BSLASHright] = ACTIONS(2256), - [anon_sym_BSLASHbigr] = ACTIONS(2256), - [anon_sym_BSLASHBigr] = ACTIONS(2256), - [anon_sym_BSLASHbiggr] = ACTIONS(2256), - [anon_sym_BSLASHBiggr] = ACTIONS(2256), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2256), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2256), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2256), - [anon_sym_BSLASHgls] = ACTIONS(2256), - [anon_sym_BSLASHGls] = ACTIONS(2256), - [anon_sym_BSLASHGLS] = ACTIONS(2256), - [anon_sym_BSLASHglspl] = ACTIONS(2256), - [anon_sym_BSLASHGlspl] = ACTIONS(2256), - [anon_sym_BSLASHGLSpl] = ACTIONS(2256), - [anon_sym_BSLASHglsdisp] = ACTIONS(2256), - [anon_sym_BSLASHglslink] = ACTIONS(2256), - [anon_sym_BSLASHglstext] = ACTIONS(2256), - [anon_sym_BSLASHGlstext] = ACTIONS(2256), - [anon_sym_BSLASHGLStext] = ACTIONS(2256), - [anon_sym_BSLASHglsfirst] = ACTIONS(2256), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2256), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2256), - [anon_sym_BSLASHglsplural] = ACTIONS(2256), - [anon_sym_BSLASHGlsplural] = ACTIONS(2256), - [anon_sym_BSLASHGLSplural] = ACTIONS(2256), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHglsname] = ACTIONS(2256), - [anon_sym_BSLASHGlsname] = ACTIONS(2256), - [anon_sym_BSLASHGLSname] = ACTIONS(2256), - [anon_sym_BSLASHglssymbol] = ACTIONS(2256), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2256), - [anon_sym_BSLASHglsdesc] = ACTIONS(2256), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2256), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2256), - [anon_sym_BSLASHglsuseri] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2256), - [anon_sym_BSLASHglsuserii] = ACTIONS(2256), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2256), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2256), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2256), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2256), - [anon_sym_BSLASHglsuserv] = ACTIONS(2256), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2256), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2256), - [anon_sym_BSLASHglsuservi] = ACTIONS(2256), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2256), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2256), - [anon_sym_BSLASHnewacronym] = ACTIONS(2256), - [anon_sym_BSLASHacrshort] = ACTIONS(2256), - [anon_sym_BSLASHAcrshort] = ACTIONS(2256), - [anon_sym_BSLASHACRshort] = ACTIONS(2256), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2256), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2256), - [anon_sym_BSLASHacrlong] = ACTIONS(2256), - [anon_sym_BSLASHAcrlong] = ACTIONS(2256), - [anon_sym_BSLASHACRlong] = ACTIONS(2256), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2256), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2256), - [anon_sym_BSLASHacrfull] = ACTIONS(2256), - [anon_sym_BSLASHAcrfull] = ACTIONS(2256), - [anon_sym_BSLASHACRfull] = ACTIONS(2256), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2256), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2256), - [anon_sym_BSLASHacs] = ACTIONS(2256), - [anon_sym_BSLASHAcs] = ACTIONS(2256), - [anon_sym_BSLASHacsp] = ACTIONS(2256), - [anon_sym_BSLASHAcsp] = ACTIONS(2256), - [anon_sym_BSLASHacl] = ACTIONS(2256), - [anon_sym_BSLASHAcl] = ACTIONS(2256), - [anon_sym_BSLASHaclp] = ACTIONS(2256), - [anon_sym_BSLASHAclp] = ACTIONS(2256), - [anon_sym_BSLASHacf] = ACTIONS(2256), - [anon_sym_BSLASHAcf] = ACTIONS(2256), - [anon_sym_BSLASHacfp] = ACTIONS(2256), - [anon_sym_BSLASHAcfp] = ACTIONS(2256), - [anon_sym_BSLASHac] = ACTIONS(2256), - [anon_sym_BSLASHAc] = ACTIONS(2256), - [anon_sym_BSLASHacp] = ACTIONS(2256), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2256), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2256), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2256), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2256), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2256), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2256), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2256), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2258), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2256), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2258), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2256), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2256), - [anon_sym_BSLASHcolor] = ACTIONS(2256), - [anon_sym_BSLASHcolorbox] = ACTIONS(2256), - [anon_sym_BSLASHtextcolor] = ACTIONS(2256), - [anon_sym_BSLASHpagecolor] = ACTIONS(2256), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2256), - [anon_sym_BSLASHtext] = ACTIONS(2256), - [anon_sym_BSLASHintertext] = ACTIONS(2256), - [anon_sym_shortintertext] = ACTIONS(2256), - }, - [406] = { - [sym__part_declaration] = STATE(175), - [sym_part] = STATE(406), - [aux_sym__section_repeat1] = STATE(406), - [sym_command_name] = ACTIONS(5872), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5872), - [anon_sym_LBRACK] = ACTIONS(5874), - [anon_sym_RBRACK] = ACTIONS(5874), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [anon_sym_LPAREN] = ACTIONS(5874), - [anon_sym_RPAREN] = ACTIONS(5874), - [anon_sym_BSLASHpart] = ACTIONS(5876), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5879), - [anon_sym_BSLASHaddpart] = ACTIONS(5876), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5879), - [anon_sym_BSLASHchapter] = ACTIONS(5872), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5874), - [anon_sym_BSLASHaddchap] = ACTIONS(5872), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsection] = ACTIONS(5872), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHaddsec] = ACTIONS(5872), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubsection] = ACTIONS(5872), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5872), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHparagraph] = ACTIONS(5872), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5872), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5874), - [anon_sym_BSLASHitem] = ACTIONS(5872), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5874), - [anon_sym_LBRACE] = ACTIONS(5874), - [sym_word] = ACTIONS(5872), - [sym_placeholder] = ACTIONS(5874), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_STAR] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_LT] = ACTIONS(5872), - [anon_sym_GT] = ACTIONS(5872), - [anon_sym_BANG] = ACTIONS(5872), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_COLON] = ACTIONS(5872), - [anon_sym_SQUOTE] = ACTIONS(5872), - [anon_sym__] = ACTIONS(5874), - [anon_sym_CARET] = ACTIONS(5874), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5874), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5874), - [anon_sym_DOLLAR] = ACTIONS(5872), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5874), - [anon_sym_BSLASHbegin] = ACTIONS(5872), - [anon_sym_BSLASHtitle] = ACTIONS(5872), - [anon_sym_BSLASHauthor] = ACTIONS(5872), - [anon_sym_BSLASHusepackage] = ACTIONS(5872), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5872), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5872), - [anon_sym_BSLASHinclude] = ACTIONS(5872), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5872), - [anon_sym_BSLASHinput] = ACTIONS(5872), - [anon_sym_BSLASHsubfile] = ACTIONS(5872), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5872), - [anon_sym_BSLASHbibliography] = ACTIONS(5872), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5872), - [anon_sym_BSLASHincludesvg] = ACTIONS(5872), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5872), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5872), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5872), - [anon_sym_BSLASHimport] = ACTIONS(5872), - [anon_sym_BSLASHsubimport] = ACTIONS(5872), - [anon_sym_BSLASHinputfrom] = ACTIONS(5872), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5872), - [anon_sym_BSLASHincludefrom] = ACTIONS(5872), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5872), - [anon_sym_BSLASHcaption] = ACTIONS(5872), - [anon_sym_BSLASHcite] = ACTIONS(5872), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCite] = ACTIONS(5872), - [anon_sym_BSLASHnocite] = ACTIONS(5872), - [anon_sym_BSLASHcitet] = ACTIONS(5872), - [anon_sym_BSLASHcitep] = ACTIONS(5872), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteauthor] = ACTIONS(5872), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5872), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitetitle] = ACTIONS(5872), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteyear] = ACTIONS(5872), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitedate] = ACTIONS(5872), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteurl] = ACTIONS(5872), - [anon_sym_BSLASHfullcite] = ACTIONS(5872), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5872), - [anon_sym_BSLASHcitealt] = ACTIONS(5872), - [anon_sym_BSLASHcitealp] = ACTIONS(5872), - [anon_sym_BSLASHcitetext] = ACTIONS(5872), - [anon_sym_BSLASHparencite] = ACTIONS(5872), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHParencite] = ACTIONS(5872), - [anon_sym_BSLASHfootcite] = ACTIONS(5872), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5872), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5872), - [anon_sym_BSLASHtextcite] = ACTIONS(5872), - [anon_sym_BSLASHTextcite] = ACTIONS(5872), - [anon_sym_BSLASHsmartcite] = ACTIONS(5872), - [anon_sym_BSLASHSmartcite] = ACTIONS(5872), - [anon_sym_BSLASHsupercite] = ACTIONS(5872), - [anon_sym_BSLASHautocite] = ACTIONS(5872), - [anon_sym_BSLASHAutocite] = ACTIONS(5872), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHvolcite] = ACTIONS(5872), - [anon_sym_BSLASHVolcite] = ACTIONS(5872), - [anon_sym_BSLASHpvolcite] = ACTIONS(5872), - [anon_sym_BSLASHPvolcite] = ACTIONS(5872), - [anon_sym_BSLASHfvolcite] = ACTIONS(5872), - [anon_sym_BSLASHftvolcite] = ACTIONS(5872), - [anon_sym_BSLASHsvolcite] = ACTIONS(5872), - [anon_sym_BSLASHSvolcite] = ACTIONS(5872), - [anon_sym_BSLASHtvolcite] = ACTIONS(5872), - [anon_sym_BSLASHTvolcite] = ACTIONS(5872), - [anon_sym_BSLASHavolcite] = ACTIONS(5872), - [anon_sym_BSLASHAvolcite] = ACTIONS(5872), - [anon_sym_BSLASHnotecite] = ACTIONS(5872), - [anon_sym_BSLASHNotecite] = ACTIONS(5872), - [anon_sym_BSLASHpnotecite] = ACTIONS(5872), - [anon_sym_BSLASHPnotecite] = ACTIONS(5872), - [anon_sym_BSLASHfnotecite] = ACTIONS(5872), - [anon_sym_BSLASHlabel] = ACTIONS(5872), - [anon_sym_BSLASHref] = ACTIONS(5872), - [anon_sym_BSLASHeqref] = ACTIONS(5872), - [anon_sym_BSLASHvref] = ACTIONS(5872), - [anon_sym_BSLASHVref] = ACTIONS(5872), - [anon_sym_BSLASHautoref] = ACTIONS(5872), - [anon_sym_BSLASHpageref] = ACTIONS(5872), - [anon_sym_BSLASHcref] = ACTIONS(5872), - [anon_sym_BSLASHCref] = ACTIONS(5872), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5874), - [anon_sym_BSLASHnamecref] = ACTIONS(5872), - [anon_sym_BSLASHnameCref] = ACTIONS(5872), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5872), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5872), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5872), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5872), - [anon_sym_BSLASHlabelcref] = ACTIONS(5872), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5872), - [anon_sym_BSLASHcrefrange] = ACTIONS(5872), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCrefrange] = ACTIONS(5872), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5874), - [anon_sym_BSLASHnewlabel] = ACTIONS(5872), - [anon_sym_BSLASHnewcommand] = ACTIONS(5872), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5872), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5872), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5874), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHdef] = ACTIONS(5872), - [anon_sym_BSLASHlet] = ACTIONS(5872), - [anon_sym_BSLASHleft] = ACTIONS(5872), - [anon_sym_BSLASHbig] = ACTIONS(5872), - [anon_sym_BSLASHBig] = ACTIONS(5872), - [anon_sym_BSLASHbigg] = ACTIONS(5872), - [anon_sym_BSLASHBigg] = ACTIONS(5872), - [anon_sym_BSLASHbigl] = ACTIONS(5872), - [anon_sym_BSLASHBigl] = ACTIONS(5872), - [anon_sym_BSLASHbiggl] = ACTIONS(5872), - [anon_sym_BSLASHBiggl] = ACTIONS(5872), - [anon_sym_BSLASHright] = ACTIONS(5872), - [anon_sym_BSLASHbigr] = ACTIONS(5872), - [anon_sym_BSLASHBigr] = ACTIONS(5872), - [anon_sym_BSLASHbiggr] = ACTIONS(5872), - [anon_sym_BSLASHBiggr] = ACTIONS(5872), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5872), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5872), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5872), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5872), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5872), - [anon_sym_BSLASHgls] = ACTIONS(5872), - [anon_sym_BSLASHGls] = ACTIONS(5872), - [anon_sym_BSLASHGLS] = ACTIONS(5872), - [anon_sym_BSLASHglspl] = ACTIONS(5872), - [anon_sym_BSLASHGlspl] = ACTIONS(5872), - [anon_sym_BSLASHGLSpl] = ACTIONS(5872), - [anon_sym_BSLASHglsdisp] = ACTIONS(5872), - [anon_sym_BSLASHglslink] = ACTIONS(5872), - [anon_sym_BSLASHglstext] = ACTIONS(5872), - [anon_sym_BSLASHGlstext] = ACTIONS(5872), - [anon_sym_BSLASHGLStext] = ACTIONS(5872), - [anon_sym_BSLASHglsfirst] = ACTIONS(5872), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5872), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5872), - [anon_sym_BSLASHglsplural] = ACTIONS(5872), - [anon_sym_BSLASHGlsplural] = ACTIONS(5872), - [anon_sym_BSLASHGLSplural] = ACTIONS(5872), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHglsname] = ACTIONS(5872), - [anon_sym_BSLASHGlsname] = ACTIONS(5872), - [anon_sym_BSLASHGLSname] = ACTIONS(5872), - [anon_sym_BSLASHglssymbol] = ACTIONS(5872), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5872), - [anon_sym_BSLASHglsdesc] = ACTIONS(5872), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5872), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5872), - [anon_sym_BSLASHglsuseri] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5872), - [anon_sym_BSLASHglsuserii] = ACTIONS(5872), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5872), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5872), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5872), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5872), - [anon_sym_BSLASHglsuserv] = ACTIONS(5872), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5872), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5872), - [anon_sym_BSLASHglsuservi] = ACTIONS(5872), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5872), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5872), - [anon_sym_BSLASHnewacronym] = ACTIONS(5872), - [anon_sym_BSLASHacrshort] = ACTIONS(5872), - [anon_sym_BSLASHAcrshort] = ACTIONS(5872), - [anon_sym_BSLASHACRshort] = ACTIONS(5872), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5872), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5872), - [anon_sym_BSLASHacrlong] = ACTIONS(5872), - [anon_sym_BSLASHAcrlong] = ACTIONS(5872), - [anon_sym_BSLASHACRlong] = ACTIONS(5872), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5872), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5872), - [anon_sym_BSLASHacrfull] = ACTIONS(5872), - [anon_sym_BSLASHAcrfull] = ACTIONS(5872), - [anon_sym_BSLASHACRfull] = ACTIONS(5872), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5872), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5872), - [anon_sym_BSLASHacs] = ACTIONS(5872), - [anon_sym_BSLASHAcs] = ACTIONS(5872), - [anon_sym_BSLASHacsp] = ACTIONS(5872), - [anon_sym_BSLASHAcsp] = ACTIONS(5872), - [anon_sym_BSLASHacl] = ACTIONS(5872), - [anon_sym_BSLASHAcl] = ACTIONS(5872), - [anon_sym_BSLASHaclp] = ACTIONS(5872), - [anon_sym_BSLASHAclp] = ACTIONS(5872), - [anon_sym_BSLASHacf] = ACTIONS(5872), - [anon_sym_BSLASHAcf] = ACTIONS(5872), - [anon_sym_BSLASHacfp] = ACTIONS(5872), - [anon_sym_BSLASHAcfp] = ACTIONS(5872), - [anon_sym_BSLASHac] = ACTIONS(5872), - [anon_sym_BSLASHAc] = ACTIONS(5872), - [anon_sym_BSLASHacp] = ACTIONS(5872), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5872), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5872), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5872), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5872), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5872), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5872), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5872), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5874), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5872), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5874), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5872), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5872), - [anon_sym_BSLASHcolor] = ACTIONS(5872), - [anon_sym_BSLASHcolorbox] = ACTIONS(5872), - [anon_sym_BSLASHtextcolor] = ACTIONS(5872), - [anon_sym_BSLASHpagecolor] = ACTIONS(5872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5872), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5872), - [anon_sym_BSLASHtext] = ACTIONS(5872), - [anon_sym_BSLASHintertext] = ACTIONS(5872), - [anon_sym_shortintertext] = ACTIONS(5872), - }, - [407] = { - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(407), - [aux_sym__section_repeat2] = STATE(407), - [sym_command_name] = ACTIONS(5882), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5882), - [anon_sym_LBRACK] = ACTIONS(5884), - [anon_sym_RBRACK] = ACTIONS(5884), - [anon_sym_COMMA] = ACTIONS(5884), - [anon_sym_EQ] = ACTIONS(5884), - [anon_sym_LPAREN] = ACTIONS(5884), - [anon_sym_RPAREN] = ACTIONS(5884), - [anon_sym_BSLASHpart] = ACTIONS(5882), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5884), - [anon_sym_BSLASHaddpart] = ACTIONS(5882), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5884), - [anon_sym_BSLASHchapter] = ACTIONS(5886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5889), - [anon_sym_BSLASHaddchap] = ACTIONS(5886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5889), - [anon_sym_BSLASHsection] = ACTIONS(5882), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHaddsec] = ACTIONS(5882), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubsection] = ACTIONS(5882), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5882), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHparagraph] = ACTIONS(5882), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5882), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5884), - [anon_sym_BSLASHitem] = ACTIONS(5882), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5884), - [anon_sym_LBRACE] = ACTIONS(5884), - [sym_word] = ACTIONS(5882), - [sym_placeholder] = ACTIONS(5884), - [anon_sym_PLUS] = ACTIONS(5884), - [anon_sym_DASH] = ACTIONS(5884), - [anon_sym_STAR] = ACTIONS(5884), - [anon_sym_SLASH] = ACTIONS(5884), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_BANG] = ACTIONS(5882), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_COLON] = ACTIONS(5882), - [anon_sym_SQUOTE] = ACTIONS(5882), - [anon_sym__] = ACTIONS(5884), - [anon_sym_CARET] = ACTIONS(5884), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5884), - [anon_sym_DOLLAR] = ACTIONS(5882), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5884), - [anon_sym_BSLASHbegin] = ACTIONS(5882), - [anon_sym_BSLASHtitle] = ACTIONS(5882), - [anon_sym_BSLASHauthor] = ACTIONS(5882), - [anon_sym_BSLASHusepackage] = ACTIONS(5882), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5882), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5882), - [anon_sym_BSLASHinclude] = ACTIONS(5882), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5882), - [anon_sym_BSLASHinput] = ACTIONS(5882), - [anon_sym_BSLASHsubfile] = ACTIONS(5882), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5882), - [anon_sym_BSLASHbibliography] = ACTIONS(5882), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5882), - [anon_sym_BSLASHincludesvg] = ACTIONS(5882), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5882), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5882), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5882), - [anon_sym_BSLASHimport] = ACTIONS(5882), - [anon_sym_BSLASHsubimport] = ACTIONS(5882), - [anon_sym_BSLASHinputfrom] = ACTIONS(5882), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5882), - [anon_sym_BSLASHincludefrom] = ACTIONS(5882), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5882), - [anon_sym_BSLASHcaption] = ACTIONS(5882), - [anon_sym_BSLASHcite] = ACTIONS(5882), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCite] = ACTIONS(5882), - [anon_sym_BSLASHnocite] = ACTIONS(5882), - [anon_sym_BSLASHcitet] = ACTIONS(5882), - [anon_sym_BSLASHcitep] = ACTIONS(5882), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteauthor] = ACTIONS(5882), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5882), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitetitle] = ACTIONS(5882), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteyear] = ACTIONS(5882), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitedate] = ACTIONS(5882), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteurl] = ACTIONS(5882), - [anon_sym_BSLASHfullcite] = ACTIONS(5882), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5882), - [anon_sym_BSLASHcitealt] = ACTIONS(5882), - [anon_sym_BSLASHcitealp] = ACTIONS(5882), - [anon_sym_BSLASHcitetext] = ACTIONS(5882), - [anon_sym_BSLASHparencite] = ACTIONS(5882), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHParencite] = ACTIONS(5882), - [anon_sym_BSLASHfootcite] = ACTIONS(5882), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5882), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5882), - [anon_sym_BSLASHtextcite] = ACTIONS(5882), - [anon_sym_BSLASHTextcite] = ACTIONS(5882), - [anon_sym_BSLASHsmartcite] = ACTIONS(5882), - [anon_sym_BSLASHSmartcite] = ACTIONS(5882), - [anon_sym_BSLASHsupercite] = ACTIONS(5882), - [anon_sym_BSLASHautocite] = ACTIONS(5882), - [anon_sym_BSLASHAutocite] = ACTIONS(5882), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHvolcite] = ACTIONS(5882), - [anon_sym_BSLASHVolcite] = ACTIONS(5882), - [anon_sym_BSLASHpvolcite] = ACTIONS(5882), - [anon_sym_BSLASHPvolcite] = ACTIONS(5882), - [anon_sym_BSLASHfvolcite] = ACTIONS(5882), - [anon_sym_BSLASHftvolcite] = ACTIONS(5882), - [anon_sym_BSLASHsvolcite] = ACTIONS(5882), - [anon_sym_BSLASHSvolcite] = ACTIONS(5882), - [anon_sym_BSLASHtvolcite] = ACTIONS(5882), - [anon_sym_BSLASHTvolcite] = ACTIONS(5882), - [anon_sym_BSLASHavolcite] = ACTIONS(5882), - [anon_sym_BSLASHAvolcite] = ACTIONS(5882), - [anon_sym_BSLASHnotecite] = ACTIONS(5882), - [anon_sym_BSLASHNotecite] = ACTIONS(5882), - [anon_sym_BSLASHpnotecite] = ACTIONS(5882), - [anon_sym_BSLASHPnotecite] = ACTIONS(5882), - [anon_sym_BSLASHfnotecite] = ACTIONS(5882), - [anon_sym_BSLASHlabel] = ACTIONS(5882), - [anon_sym_BSLASHref] = ACTIONS(5882), - [anon_sym_BSLASHeqref] = ACTIONS(5882), - [anon_sym_BSLASHvref] = ACTIONS(5882), - [anon_sym_BSLASHVref] = ACTIONS(5882), - [anon_sym_BSLASHautoref] = ACTIONS(5882), - [anon_sym_BSLASHpageref] = ACTIONS(5882), - [anon_sym_BSLASHcref] = ACTIONS(5882), - [anon_sym_BSLASHCref] = ACTIONS(5882), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5884), - [anon_sym_BSLASHnamecref] = ACTIONS(5882), - [anon_sym_BSLASHnameCref] = ACTIONS(5882), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5882), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5882), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5882), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5882), - [anon_sym_BSLASHlabelcref] = ACTIONS(5882), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5882), - [anon_sym_BSLASHcrefrange] = ACTIONS(5882), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCrefrange] = ACTIONS(5882), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5884), - [anon_sym_BSLASHnewlabel] = ACTIONS(5882), - [anon_sym_BSLASHnewcommand] = ACTIONS(5882), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5882), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5882), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5884), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHdef] = ACTIONS(5882), - [anon_sym_BSLASHlet] = ACTIONS(5882), - [anon_sym_BSLASHleft] = ACTIONS(5882), - [anon_sym_BSLASHbig] = ACTIONS(5882), - [anon_sym_BSLASHBig] = ACTIONS(5882), - [anon_sym_BSLASHbigg] = ACTIONS(5882), - [anon_sym_BSLASHBigg] = ACTIONS(5882), - [anon_sym_BSLASHbigl] = ACTIONS(5882), - [anon_sym_BSLASHBigl] = ACTIONS(5882), - [anon_sym_BSLASHbiggl] = ACTIONS(5882), - [anon_sym_BSLASHBiggl] = ACTIONS(5882), - [anon_sym_BSLASHright] = ACTIONS(5882), - [anon_sym_BSLASHbigr] = ACTIONS(5882), - [anon_sym_BSLASHBigr] = ACTIONS(5882), - [anon_sym_BSLASHbiggr] = ACTIONS(5882), - [anon_sym_BSLASHBiggr] = ACTIONS(5882), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5882), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5882), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5882), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5882), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5882), - [anon_sym_BSLASHgls] = ACTIONS(5882), - [anon_sym_BSLASHGls] = ACTIONS(5882), - [anon_sym_BSLASHGLS] = ACTIONS(5882), - [anon_sym_BSLASHglspl] = ACTIONS(5882), - [anon_sym_BSLASHGlspl] = ACTIONS(5882), - [anon_sym_BSLASHGLSpl] = ACTIONS(5882), - [anon_sym_BSLASHglsdisp] = ACTIONS(5882), - [anon_sym_BSLASHglslink] = ACTIONS(5882), - [anon_sym_BSLASHglstext] = ACTIONS(5882), - [anon_sym_BSLASHGlstext] = ACTIONS(5882), - [anon_sym_BSLASHGLStext] = ACTIONS(5882), - [anon_sym_BSLASHglsfirst] = ACTIONS(5882), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5882), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5882), - [anon_sym_BSLASHglsplural] = ACTIONS(5882), - [anon_sym_BSLASHGlsplural] = ACTIONS(5882), - [anon_sym_BSLASHGLSplural] = ACTIONS(5882), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHglsname] = ACTIONS(5882), - [anon_sym_BSLASHGlsname] = ACTIONS(5882), - [anon_sym_BSLASHGLSname] = ACTIONS(5882), - [anon_sym_BSLASHglssymbol] = ACTIONS(5882), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5882), - [anon_sym_BSLASHglsdesc] = ACTIONS(5882), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5882), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5882), - [anon_sym_BSLASHglsuseri] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5882), - [anon_sym_BSLASHglsuserii] = ACTIONS(5882), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5882), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5882), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5882), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5882), - [anon_sym_BSLASHglsuserv] = ACTIONS(5882), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5882), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5882), - [anon_sym_BSLASHglsuservi] = ACTIONS(5882), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5882), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5882), - [anon_sym_BSLASHnewacronym] = ACTIONS(5882), - [anon_sym_BSLASHacrshort] = ACTIONS(5882), - [anon_sym_BSLASHAcrshort] = ACTIONS(5882), - [anon_sym_BSLASHACRshort] = ACTIONS(5882), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5882), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5882), - [anon_sym_BSLASHacrlong] = ACTIONS(5882), - [anon_sym_BSLASHAcrlong] = ACTIONS(5882), - [anon_sym_BSLASHACRlong] = ACTIONS(5882), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5882), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5882), - [anon_sym_BSLASHacrfull] = ACTIONS(5882), - [anon_sym_BSLASHAcrfull] = ACTIONS(5882), - [anon_sym_BSLASHACRfull] = ACTIONS(5882), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5882), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5882), - [anon_sym_BSLASHacs] = ACTIONS(5882), - [anon_sym_BSLASHAcs] = ACTIONS(5882), - [anon_sym_BSLASHacsp] = ACTIONS(5882), - [anon_sym_BSLASHAcsp] = ACTIONS(5882), - [anon_sym_BSLASHacl] = ACTIONS(5882), - [anon_sym_BSLASHAcl] = ACTIONS(5882), - [anon_sym_BSLASHaclp] = ACTIONS(5882), - [anon_sym_BSLASHAclp] = ACTIONS(5882), - [anon_sym_BSLASHacf] = ACTIONS(5882), - [anon_sym_BSLASHAcf] = ACTIONS(5882), - [anon_sym_BSLASHacfp] = ACTIONS(5882), - [anon_sym_BSLASHAcfp] = ACTIONS(5882), - [anon_sym_BSLASHac] = ACTIONS(5882), - [anon_sym_BSLASHAc] = ACTIONS(5882), - [anon_sym_BSLASHacp] = ACTIONS(5882), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5882), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5882), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5882), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5882), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5882), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5882), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5882), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5884), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5882), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5884), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5882), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5882), - [anon_sym_BSLASHcolor] = ACTIONS(5882), - [anon_sym_BSLASHcolorbox] = ACTIONS(5882), - [anon_sym_BSLASHtextcolor] = ACTIONS(5882), - [anon_sym_BSLASHpagecolor] = ACTIONS(5882), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5882), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5882), - [anon_sym_BSLASHtext] = ACTIONS(5882), - [anon_sym_BSLASHintertext] = ACTIONS(5882), - [anon_sym_shortintertext] = ACTIONS(5882), - }, - [408] = { - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(408), - [aux_sym__section_repeat3] = STATE(408), - [sym_command_name] = ACTIONS(5892), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5894), - [anon_sym_RBRACK] = ACTIONS(5894), - [anon_sym_COMMA] = ACTIONS(5894), - [anon_sym_EQ] = ACTIONS(5894), - [anon_sym_LPAREN] = ACTIONS(5894), - [anon_sym_RPAREN] = ACTIONS(5894), - [anon_sym_BSLASHpart] = ACTIONS(5892), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5894), - [anon_sym_BSLASHaddpart] = ACTIONS(5892), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5894), - [anon_sym_BSLASHchapter] = ACTIONS(5892), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5894), - [anon_sym_BSLASHaddchap] = ACTIONS(5892), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsection] = ACTIONS(5896), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5899), - [anon_sym_BSLASHaddsec] = ACTIONS(5896), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5899), - [anon_sym_BSLASHsubsection] = ACTIONS(5892), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5892), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5894), - [anon_sym_BSLASHparagraph] = ACTIONS(5892), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5892), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5894), - [anon_sym_BSLASHitem] = ACTIONS(5892), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5894), - [anon_sym_LBRACE] = ACTIONS(5894), - [sym_word] = ACTIONS(5892), - [sym_placeholder] = ACTIONS(5894), - [anon_sym_PLUS] = ACTIONS(5894), - [anon_sym_DASH] = ACTIONS(5894), - [anon_sym_STAR] = ACTIONS(5894), - [anon_sym_SLASH] = ACTIONS(5894), - [anon_sym_LT] = ACTIONS(5892), - [anon_sym_GT] = ACTIONS(5892), - [anon_sym_BANG] = ACTIONS(5892), - [anon_sym_PIPE] = ACTIONS(5892), - [anon_sym_COLON] = ACTIONS(5892), - [anon_sym_SQUOTE] = ACTIONS(5892), - [anon_sym__] = ACTIONS(5894), - [anon_sym_CARET] = ACTIONS(5894), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5894), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5894), - [anon_sym_DOLLAR] = ACTIONS(5892), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5894), - [anon_sym_BSLASHbegin] = ACTIONS(5892), - [anon_sym_BSLASHtitle] = ACTIONS(5892), - [anon_sym_BSLASHauthor] = ACTIONS(5892), - [anon_sym_BSLASHusepackage] = ACTIONS(5892), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5892), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5892), - [anon_sym_BSLASHinclude] = ACTIONS(5892), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5892), - [anon_sym_BSLASHinput] = ACTIONS(5892), - [anon_sym_BSLASHsubfile] = ACTIONS(5892), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5892), - [anon_sym_BSLASHbibliography] = ACTIONS(5892), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5892), - [anon_sym_BSLASHincludesvg] = ACTIONS(5892), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5892), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5892), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5892), - [anon_sym_BSLASHimport] = ACTIONS(5892), - [anon_sym_BSLASHsubimport] = ACTIONS(5892), - [anon_sym_BSLASHinputfrom] = ACTIONS(5892), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5892), - [anon_sym_BSLASHincludefrom] = ACTIONS(5892), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5892), - [anon_sym_BSLASHcaption] = ACTIONS(5892), - [anon_sym_BSLASHcite] = ACTIONS(5892), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCite] = ACTIONS(5892), - [anon_sym_BSLASHnocite] = ACTIONS(5892), - [anon_sym_BSLASHcitet] = ACTIONS(5892), - [anon_sym_BSLASHcitep] = ACTIONS(5892), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteauthor] = ACTIONS(5892), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5892), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitetitle] = ACTIONS(5892), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteyear] = ACTIONS(5892), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitedate] = ACTIONS(5892), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteurl] = ACTIONS(5892), - [anon_sym_BSLASHfullcite] = ACTIONS(5892), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5892), - [anon_sym_BSLASHcitealt] = ACTIONS(5892), - [anon_sym_BSLASHcitealp] = ACTIONS(5892), - [anon_sym_BSLASHcitetext] = ACTIONS(5892), - [anon_sym_BSLASHparencite] = ACTIONS(5892), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHParencite] = ACTIONS(5892), - [anon_sym_BSLASHfootcite] = ACTIONS(5892), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5892), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5892), - [anon_sym_BSLASHtextcite] = ACTIONS(5892), - [anon_sym_BSLASHTextcite] = ACTIONS(5892), - [anon_sym_BSLASHsmartcite] = ACTIONS(5892), - [anon_sym_BSLASHSmartcite] = ACTIONS(5892), - [anon_sym_BSLASHsupercite] = ACTIONS(5892), - [anon_sym_BSLASHautocite] = ACTIONS(5892), - [anon_sym_BSLASHAutocite] = ACTIONS(5892), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHvolcite] = ACTIONS(5892), - [anon_sym_BSLASHVolcite] = ACTIONS(5892), - [anon_sym_BSLASHpvolcite] = ACTIONS(5892), - [anon_sym_BSLASHPvolcite] = ACTIONS(5892), - [anon_sym_BSLASHfvolcite] = ACTIONS(5892), - [anon_sym_BSLASHftvolcite] = ACTIONS(5892), - [anon_sym_BSLASHsvolcite] = ACTIONS(5892), - [anon_sym_BSLASHSvolcite] = ACTIONS(5892), - [anon_sym_BSLASHtvolcite] = ACTIONS(5892), - [anon_sym_BSLASHTvolcite] = ACTIONS(5892), - [anon_sym_BSLASHavolcite] = ACTIONS(5892), - [anon_sym_BSLASHAvolcite] = ACTIONS(5892), - [anon_sym_BSLASHnotecite] = ACTIONS(5892), - [anon_sym_BSLASHNotecite] = ACTIONS(5892), - [anon_sym_BSLASHpnotecite] = ACTIONS(5892), - [anon_sym_BSLASHPnotecite] = ACTIONS(5892), - [anon_sym_BSLASHfnotecite] = ACTIONS(5892), - [anon_sym_BSLASHlabel] = ACTIONS(5892), - [anon_sym_BSLASHref] = ACTIONS(5892), - [anon_sym_BSLASHeqref] = ACTIONS(5892), - [anon_sym_BSLASHvref] = ACTIONS(5892), - [anon_sym_BSLASHVref] = ACTIONS(5892), - [anon_sym_BSLASHautoref] = ACTIONS(5892), - [anon_sym_BSLASHpageref] = ACTIONS(5892), - [anon_sym_BSLASHcref] = ACTIONS(5892), - [anon_sym_BSLASHCref] = ACTIONS(5892), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5894), - [anon_sym_BSLASHnamecref] = ACTIONS(5892), - [anon_sym_BSLASHnameCref] = ACTIONS(5892), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5892), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5892), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5892), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5892), - [anon_sym_BSLASHlabelcref] = ACTIONS(5892), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5892), - [anon_sym_BSLASHcrefrange] = ACTIONS(5892), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCrefrange] = ACTIONS(5892), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5894), - [anon_sym_BSLASHnewlabel] = ACTIONS(5892), - [anon_sym_BSLASHnewcommand] = ACTIONS(5892), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5892), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5892), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5894), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHdef] = ACTIONS(5892), - [anon_sym_BSLASHlet] = ACTIONS(5892), - [anon_sym_BSLASHleft] = ACTIONS(5892), - [anon_sym_BSLASHbig] = ACTIONS(5892), - [anon_sym_BSLASHBig] = ACTIONS(5892), - [anon_sym_BSLASHbigg] = ACTIONS(5892), - [anon_sym_BSLASHBigg] = ACTIONS(5892), - [anon_sym_BSLASHbigl] = ACTIONS(5892), - [anon_sym_BSLASHBigl] = ACTIONS(5892), - [anon_sym_BSLASHbiggl] = ACTIONS(5892), - [anon_sym_BSLASHBiggl] = ACTIONS(5892), - [anon_sym_BSLASHright] = ACTIONS(5892), - [anon_sym_BSLASHbigr] = ACTIONS(5892), - [anon_sym_BSLASHBigr] = ACTIONS(5892), - [anon_sym_BSLASHbiggr] = ACTIONS(5892), - [anon_sym_BSLASHBiggr] = ACTIONS(5892), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5892), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5892), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5892), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5892), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5892), - [anon_sym_BSLASHgls] = ACTIONS(5892), - [anon_sym_BSLASHGls] = ACTIONS(5892), - [anon_sym_BSLASHGLS] = ACTIONS(5892), - [anon_sym_BSLASHglspl] = ACTIONS(5892), - [anon_sym_BSLASHGlspl] = ACTIONS(5892), - [anon_sym_BSLASHGLSpl] = ACTIONS(5892), - [anon_sym_BSLASHglsdisp] = ACTIONS(5892), - [anon_sym_BSLASHglslink] = ACTIONS(5892), - [anon_sym_BSLASHglstext] = ACTIONS(5892), - [anon_sym_BSLASHGlstext] = ACTIONS(5892), - [anon_sym_BSLASHGLStext] = ACTIONS(5892), - [anon_sym_BSLASHglsfirst] = ACTIONS(5892), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5892), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5892), - [anon_sym_BSLASHglsplural] = ACTIONS(5892), - [anon_sym_BSLASHGlsplural] = ACTIONS(5892), - [anon_sym_BSLASHGLSplural] = ACTIONS(5892), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHglsname] = ACTIONS(5892), - [anon_sym_BSLASHGlsname] = ACTIONS(5892), - [anon_sym_BSLASHGLSname] = ACTIONS(5892), - [anon_sym_BSLASHglssymbol] = ACTIONS(5892), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5892), - [anon_sym_BSLASHglsdesc] = ACTIONS(5892), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5892), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5892), - [anon_sym_BSLASHglsuseri] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5892), - [anon_sym_BSLASHglsuserii] = ACTIONS(5892), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5892), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5892), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5892), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5892), - [anon_sym_BSLASHglsuserv] = ACTIONS(5892), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5892), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5892), - [anon_sym_BSLASHglsuservi] = ACTIONS(5892), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5892), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5892), - [anon_sym_BSLASHnewacronym] = ACTIONS(5892), - [anon_sym_BSLASHacrshort] = ACTIONS(5892), - [anon_sym_BSLASHAcrshort] = ACTIONS(5892), - [anon_sym_BSLASHACRshort] = ACTIONS(5892), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5892), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5892), - [anon_sym_BSLASHacrlong] = ACTIONS(5892), - [anon_sym_BSLASHAcrlong] = ACTIONS(5892), - [anon_sym_BSLASHACRlong] = ACTIONS(5892), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5892), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5892), - [anon_sym_BSLASHacrfull] = ACTIONS(5892), - [anon_sym_BSLASHAcrfull] = ACTIONS(5892), - [anon_sym_BSLASHACRfull] = ACTIONS(5892), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5892), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5892), - [anon_sym_BSLASHacs] = ACTIONS(5892), - [anon_sym_BSLASHAcs] = ACTIONS(5892), - [anon_sym_BSLASHacsp] = ACTIONS(5892), - [anon_sym_BSLASHAcsp] = ACTIONS(5892), - [anon_sym_BSLASHacl] = ACTIONS(5892), - [anon_sym_BSLASHAcl] = ACTIONS(5892), - [anon_sym_BSLASHaclp] = ACTIONS(5892), - [anon_sym_BSLASHAclp] = ACTIONS(5892), - [anon_sym_BSLASHacf] = ACTIONS(5892), - [anon_sym_BSLASHAcf] = ACTIONS(5892), - [anon_sym_BSLASHacfp] = ACTIONS(5892), - [anon_sym_BSLASHAcfp] = ACTIONS(5892), - [anon_sym_BSLASHac] = ACTIONS(5892), - [anon_sym_BSLASHAc] = ACTIONS(5892), - [anon_sym_BSLASHacp] = ACTIONS(5892), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5892), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5892), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5892), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5892), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5892), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5892), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5892), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5894), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5892), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5894), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5892), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5892), - [anon_sym_BSLASHcolor] = ACTIONS(5892), - [anon_sym_BSLASHcolorbox] = ACTIONS(5892), - [anon_sym_BSLASHtextcolor] = ACTIONS(5892), - [anon_sym_BSLASHpagecolor] = ACTIONS(5892), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5892), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5892), - [anon_sym_BSLASHtext] = ACTIONS(5892), - [anon_sym_BSLASHintertext] = ACTIONS(5892), - [anon_sym_shortintertext] = ACTIONS(5892), - }, - [409] = { - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(409), - [aux_sym__section_repeat4] = STATE(409), - [sym_command_name] = ACTIONS(5902), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5902), - [anon_sym_LBRACK] = ACTIONS(5904), - [anon_sym_RBRACK] = ACTIONS(5904), - [anon_sym_COMMA] = ACTIONS(5904), - [anon_sym_EQ] = ACTIONS(5904), - [anon_sym_LPAREN] = ACTIONS(5904), - [anon_sym_RPAREN] = ACTIONS(5904), - [anon_sym_BSLASHpart] = ACTIONS(5902), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddpart] = ACTIONS(5902), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5904), - [anon_sym_BSLASHchapter] = ACTIONS(5902), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddchap] = ACTIONS(5902), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsection] = ACTIONS(5902), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddsec] = ACTIONS(5902), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsubsection] = ACTIONS(5906), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5909), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5902), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5904), - [anon_sym_BSLASHparagraph] = ACTIONS(5902), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5902), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5904), - [anon_sym_BSLASHitem] = ACTIONS(5902), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5904), - [anon_sym_LBRACE] = ACTIONS(5904), - [sym_word] = ACTIONS(5902), - [sym_placeholder] = ACTIONS(5904), - [anon_sym_PLUS] = ACTIONS(5904), - [anon_sym_DASH] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(5904), - [anon_sym_SLASH] = ACTIONS(5904), - [anon_sym_LT] = ACTIONS(5902), - [anon_sym_GT] = ACTIONS(5902), - [anon_sym_BANG] = ACTIONS(5902), - [anon_sym_PIPE] = ACTIONS(5902), - [anon_sym_COLON] = ACTIONS(5902), - [anon_sym_SQUOTE] = ACTIONS(5902), - [anon_sym__] = ACTIONS(5904), - [anon_sym_CARET] = ACTIONS(5904), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5904), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5904), - [anon_sym_DOLLAR] = ACTIONS(5902), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5904), - [anon_sym_BSLASHbegin] = ACTIONS(5902), - [anon_sym_BSLASHtitle] = ACTIONS(5902), - [anon_sym_BSLASHauthor] = ACTIONS(5902), - [anon_sym_BSLASHusepackage] = ACTIONS(5902), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5902), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5902), - [anon_sym_BSLASHinclude] = ACTIONS(5902), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5902), - [anon_sym_BSLASHinput] = ACTIONS(5902), - [anon_sym_BSLASHsubfile] = ACTIONS(5902), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5902), - [anon_sym_BSLASHbibliography] = ACTIONS(5902), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5902), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5902), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5902), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5902), - [anon_sym_BSLASHimport] = ACTIONS(5902), - [anon_sym_BSLASHsubimport] = ACTIONS(5902), - [anon_sym_BSLASHinputfrom] = ACTIONS(5902), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5902), - [anon_sym_BSLASHincludefrom] = ACTIONS(5902), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5902), - [anon_sym_BSLASHcaption] = ACTIONS(5902), - [anon_sym_BSLASHcite] = ACTIONS(5902), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCite] = ACTIONS(5902), - [anon_sym_BSLASHnocite] = ACTIONS(5902), - [anon_sym_BSLASHcitet] = ACTIONS(5902), - [anon_sym_BSLASHcitep] = ACTIONS(5902), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteauthor] = ACTIONS(5902), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5902), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitetitle] = ACTIONS(5902), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteyear] = ACTIONS(5902), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitedate] = ACTIONS(5902), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteurl] = ACTIONS(5902), - [anon_sym_BSLASHfullcite] = ACTIONS(5902), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5902), - [anon_sym_BSLASHcitealt] = ACTIONS(5902), - [anon_sym_BSLASHcitealp] = ACTIONS(5902), - [anon_sym_BSLASHcitetext] = ACTIONS(5902), - [anon_sym_BSLASHparencite] = ACTIONS(5902), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHParencite] = ACTIONS(5902), - [anon_sym_BSLASHfootcite] = ACTIONS(5902), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5902), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5902), - [anon_sym_BSLASHtextcite] = ACTIONS(5902), - [anon_sym_BSLASHTextcite] = ACTIONS(5902), - [anon_sym_BSLASHsmartcite] = ACTIONS(5902), - [anon_sym_BSLASHSmartcite] = ACTIONS(5902), - [anon_sym_BSLASHsupercite] = ACTIONS(5902), - [anon_sym_BSLASHautocite] = ACTIONS(5902), - [anon_sym_BSLASHAutocite] = ACTIONS(5902), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHvolcite] = ACTIONS(5902), - [anon_sym_BSLASHVolcite] = ACTIONS(5902), - [anon_sym_BSLASHpvolcite] = ACTIONS(5902), - [anon_sym_BSLASHPvolcite] = ACTIONS(5902), - [anon_sym_BSLASHfvolcite] = ACTIONS(5902), - [anon_sym_BSLASHftvolcite] = ACTIONS(5902), - [anon_sym_BSLASHsvolcite] = ACTIONS(5902), - [anon_sym_BSLASHSvolcite] = ACTIONS(5902), - [anon_sym_BSLASHtvolcite] = ACTIONS(5902), - [anon_sym_BSLASHTvolcite] = ACTIONS(5902), - [anon_sym_BSLASHavolcite] = ACTIONS(5902), - [anon_sym_BSLASHAvolcite] = ACTIONS(5902), - [anon_sym_BSLASHnotecite] = ACTIONS(5902), - [anon_sym_BSLASHNotecite] = ACTIONS(5902), - [anon_sym_BSLASHpnotecite] = ACTIONS(5902), - [anon_sym_BSLASHPnotecite] = ACTIONS(5902), - [anon_sym_BSLASHfnotecite] = ACTIONS(5902), - [anon_sym_BSLASHlabel] = ACTIONS(5902), - [anon_sym_BSLASHref] = ACTIONS(5902), - [anon_sym_BSLASHeqref] = ACTIONS(5902), - [anon_sym_BSLASHvref] = ACTIONS(5902), - [anon_sym_BSLASHVref] = ACTIONS(5902), - [anon_sym_BSLASHautoref] = ACTIONS(5902), - [anon_sym_BSLASHpageref] = ACTIONS(5902), - [anon_sym_BSLASHcref] = ACTIONS(5902), - [anon_sym_BSLASHCref] = ACTIONS(5902), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5904), - [anon_sym_BSLASHnamecref] = ACTIONS(5902), - [anon_sym_BSLASHnameCref] = ACTIONS(5902), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5902), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5902), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5902), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5902), - [anon_sym_BSLASHlabelcref] = ACTIONS(5902), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5902), - [anon_sym_BSLASHcrefrange] = ACTIONS(5902), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCrefrange] = ACTIONS(5902), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5904), - [anon_sym_BSLASHnewlabel] = ACTIONS(5902), - [anon_sym_BSLASHnewcommand] = ACTIONS(5902), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5902), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5902), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5904), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHdef] = ACTIONS(5902), - [anon_sym_BSLASHlet] = ACTIONS(5902), - [anon_sym_BSLASHleft] = ACTIONS(5902), - [anon_sym_BSLASHbig] = ACTIONS(5902), - [anon_sym_BSLASHBig] = ACTIONS(5902), - [anon_sym_BSLASHbigg] = ACTIONS(5902), - [anon_sym_BSLASHBigg] = ACTIONS(5902), - [anon_sym_BSLASHbigl] = ACTIONS(5902), - [anon_sym_BSLASHBigl] = ACTIONS(5902), - [anon_sym_BSLASHbiggl] = ACTIONS(5902), - [anon_sym_BSLASHBiggl] = ACTIONS(5902), - [anon_sym_BSLASHright] = ACTIONS(5902), - [anon_sym_BSLASHbigr] = ACTIONS(5902), - [anon_sym_BSLASHBigr] = ACTIONS(5902), - [anon_sym_BSLASHbiggr] = ACTIONS(5902), - [anon_sym_BSLASHBiggr] = ACTIONS(5902), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5902), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5902), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5902), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5902), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5902), - [anon_sym_BSLASHgls] = ACTIONS(5902), - [anon_sym_BSLASHGls] = ACTIONS(5902), - [anon_sym_BSLASHGLS] = ACTIONS(5902), - [anon_sym_BSLASHglspl] = ACTIONS(5902), - [anon_sym_BSLASHGlspl] = ACTIONS(5902), - [anon_sym_BSLASHGLSpl] = ACTIONS(5902), - [anon_sym_BSLASHglsdisp] = ACTIONS(5902), - [anon_sym_BSLASHglslink] = ACTIONS(5902), - [anon_sym_BSLASHglstext] = ACTIONS(5902), - [anon_sym_BSLASHGlstext] = ACTIONS(5902), - [anon_sym_BSLASHGLStext] = ACTIONS(5902), - [anon_sym_BSLASHglsfirst] = ACTIONS(5902), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5902), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5902), - [anon_sym_BSLASHglsplural] = ACTIONS(5902), - [anon_sym_BSLASHGlsplural] = ACTIONS(5902), - [anon_sym_BSLASHGLSplural] = ACTIONS(5902), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHglsname] = ACTIONS(5902), - [anon_sym_BSLASHGlsname] = ACTIONS(5902), - [anon_sym_BSLASHGLSname] = ACTIONS(5902), - [anon_sym_BSLASHglssymbol] = ACTIONS(5902), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5902), - [anon_sym_BSLASHglsdesc] = ACTIONS(5902), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5902), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5902), - [anon_sym_BSLASHglsuseri] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5902), - [anon_sym_BSLASHglsuserii] = ACTIONS(5902), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5902), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5902), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5902), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5902), - [anon_sym_BSLASHglsuserv] = ACTIONS(5902), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5902), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5902), - [anon_sym_BSLASHglsuservi] = ACTIONS(5902), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5902), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5902), - [anon_sym_BSLASHnewacronym] = ACTIONS(5902), - [anon_sym_BSLASHacrshort] = ACTIONS(5902), - [anon_sym_BSLASHAcrshort] = ACTIONS(5902), - [anon_sym_BSLASHACRshort] = ACTIONS(5902), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5902), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5902), - [anon_sym_BSLASHacrlong] = ACTIONS(5902), - [anon_sym_BSLASHAcrlong] = ACTIONS(5902), - [anon_sym_BSLASHACRlong] = ACTIONS(5902), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5902), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5902), - [anon_sym_BSLASHacrfull] = ACTIONS(5902), - [anon_sym_BSLASHAcrfull] = ACTIONS(5902), - [anon_sym_BSLASHACRfull] = ACTIONS(5902), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5902), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5902), - [anon_sym_BSLASHacs] = ACTIONS(5902), - [anon_sym_BSLASHAcs] = ACTIONS(5902), - [anon_sym_BSLASHacsp] = ACTIONS(5902), - [anon_sym_BSLASHAcsp] = ACTIONS(5902), - [anon_sym_BSLASHacl] = ACTIONS(5902), - [anon_sym_BSLASHAcl] = ACTIONS(5902), - [anon_sym_BSLASHaclp] = ACTIONS(5902), - [anon_sym_BSLASHAclp] = ACTIONS(5902), - [anon_sym_BSLASHacf] = ACTIONS(5902), - [anon_sym_BSLASHAcf] = ACTIONS(5902), - [anon_sym_BSLASHacfp] = ACTIONS(5902), - [anon_sym_BSLASHAcfp] = ACTIONS(5902), - [anon_sym_BSLASHac] = ACTIONS(5902), - [anon_sym_BSLASHAc] = ACTIONS(5902), - [anon_sym_BSLASHacp] = ACTIONS(5902), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5902), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5902), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5902), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5902), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5902), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5902), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5902), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5904), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5902), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5904), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5902), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5902), - [anon_sym_BSLASHcolor] = ACTIONS(5902), - [anon_sym_BSLASHcolorbox] = ACTIONS(5902), - [anon_sym_BSLASHtextcolor] = ACTIONS(5902), - [anon_sym_BSLASHpagecolor] = ACTIONS(5902), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5902), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5902), - [anon_sym_BSLASHtext] = ACTIONS(5902), - [anon_sym_BSLASHintertext] = ACTIONS(5902), - [anon_sym_shortintertext] = ACTIONS(5902), - }, - [410] = { - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(410), - [aux_sym__section_repeat5] = STATE(410), - [sym_command_name] = ACTIONS(5912), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5914), - [anon_sym_RBRACK] = ACTIONS(5914), - [anon_sym_COMMA] = ACTIONS(5914), - [anon_sym_EQ] = ACTIONS(5914), - [anon_sym_LPAREN] = ACTIONS(5914), - [anon_sym_RPAREN] = ACTIONS(5914), - [anon_sym_BSLASHpart] = ACTIONS(5912), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddpart] = ACTIONS(5912), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5914), - [anon_sym_BSLASHchapter] = ACTIONS(5912), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddchap] = ACTIONS(5912), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsection] = ACTIONS(5912), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddsec] = ACTIONS(5912), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubsection] = ACTIONS(5912), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5916), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5919), - [anon_sym_BSLASHparagraph] = ACTIONS(5912), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5912), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5914), - [anon_sym_BSLASHitem] = ACTIONS(5912), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5914), - [anon_sym_LBRACE] = ACTIONS(5914), - [sym_word] = ACTIONS(5912), - [sym_placeholder] = ACTIONS(5914), - [anon_sym_PLUS] = ACTIONS(5914), - [anon_sym_DASH] = ACTIONS(5914), - [anon_sym_STAR] = ACTIONS(5914), - [anon_sym_SLASH] = ACTIONS(5914), - [anon_sym_LT] = ACTIONS(5912), - [anon_sym_GT] = ACTIONS(5912), - [anon_sym_BANG] = ACTIONS(5912), - [anon_sym_PIPE] = ACTIONS(5912), - [anon_sym_COLON] = ACTIONS(5912), - [anon_sym_SQUOTE] = ACTIONS(5912), - [anon_sym__] = ACTIONS(5914), - [anon_sym_CARET] = ACTIONS(5914), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5914), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5914), - [anon_sym_DOLLAR] = ACTIONS(5912), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5914), - [anon_sym_BSLASHbegin] = ACTIONS(5912), - [anon_sym_BSLASHtitle] = ACTIONS(5912), - [anon_sym_BSLASHauthor] = ACTIONS(5912), - [anon_sym_BSLASHusepackage] = ACTIONS(5912), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5912), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5912), - [anon_sym_BSLASHinclude] = ACTIONS(5912), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5912), - [anon_sym_BSLASHinput] = ACTIONS(5912), - [anon_sym_BSLASHsubfile] = ACTIONS(5912), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5912), - [anon_sym_BSLASHbibliography] = ACTIONS(5912), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5912), - [anon_sym_BSLASHincludesvg] = ACTIONS(5912), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5912), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5912), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5912), - [anon_sym_BSLASHimport] = ACTIONS(5912), - [anon_sym_BSLASHsubimport] = ACTIONS(5912), - [anon_sym_BSLASHinputfrom] = ACTIONS(5912), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5912), - [anon_sym_BSLASHincludefrom] = ACTIONS(5912), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5912), - [anon_sym_BSLASHcaption] = ACTIONS(5912), - [anon_sym_BSLASHcite] = ACTIONS(5912), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCite] = ACTIONS(5912), - [anon_sym_BSLASHnocite] = ACTIONS(5912), - [anon_sym_BSLASHcitet] = ACTIONS(5912), - [anon_sym_BSLASHcitep] = ACTIONS(5912), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteauthor] = ACTIONS(5912), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5912), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitetitle] = ACTIONS(5912), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteyear] = ACTIONS(5912), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitedate] = ACTIONS(5912), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteurl] = ACTIONS(5912), - [anon_sym_BSLASHfullcite] = ACTIONS(5912), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5912), - [anon_sym_BSLASHcitealt] = ACTIONS(5912), - [anon_sym_BSLASHcitealp] = ACTIONS(5912), - [anon_sym_BSLASHcitetext] = ACTIONS(5912), - [anon_sym_BSLASHparencite] = ACTIONS(5912), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHParencite] = ACTIONS(5912), - [anon_sym_BSLASHfootcite] = ACTIONS(5912), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5912), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5912), - [anon_sym_BSLASHtextcite] = ACTIONS(5912), - [anon_sym_BSLASHTextcite] = ACTIONS(5912), - [anon_sym_BSLASHsmartcite] = ACTIONS(5912), - [anon_sym_BSLASHSmartcite] = ACTIONS(5912), - [anon_sym_BSLASHsupercite] = ACTIONS(5912), - [anon_sym_BSLASHautocite] = ACTIONS(5912), - [anon_sym_BSLASHAutocite] = ACTIONS(5912), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHvolcite] = ACTIONS(5912), - [anon_sym_BSLASHVolcite] = ACTIONS(5912), - [anon_sym_BSLASHpvolcite] = ACTIONS(5912), - [anon_sym_BSLASHPvolcite] = ACTIONS(5912), - [anon_sym_BSLASHfvolcite] = ACTIONS(5912), - [anon_sym_BSLASHftvolcite] = ACTIONS(5912), - [anon_sym_BSLASHsvolcite] = ACTIONS(5912), - [anon_sym_BSLASHSvolcite] = ACTIONS(5912), - [anon_sym_BSLASHtvolcite] = ACTIONS(5912), - [anon_sym_BSLASHTvolcite] = ACTIONS(5912), - [anon_sym_BSLASHavolcite] = ACTIONS(5912), - [anon_sym_BSLASHAvolcite] = ACTIONS(5912), - [anon_sym_BSLASHnotecite] = ACTIONS(5912), - [anon_sym_BSLASHNotecite] = ACTIONS(5912), - [anon_sym_BSLASHpnotecite] = ACTIONS(5912), - [anon_sym_BSLASHPnotecite] = ACTIONS(5912), - [anon_sym_BSLASHfnotecite] = ACTIONS(5912), - [anon_sym_BSLASHlabel] = ACTIONS(5912), - [anon_sym_BSLASHref] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5912), - [anon_sym_BSLASHvref] = ACTIONS(5912), - [anon_sym_BSLASHVref] = ACTIONS(5912), - [anon_sym_BSLASHautoref] = ACTIONS(5912), - [anon_sym_BSLASHpageref] = ACTIONS(5912), - [anon_sym_BSLASHcref] = ACTIONS(5912), - [anon_sym_BSLASHCref] = ACTIONS(5912), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5914), - [anon_sym_BSLASHnamecref] = ACTIONS(5912), - [anon_sym_BSLASHnameCref] = ACTIONS(5912), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5912), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5912), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5912), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5912), - [anon_sym_BSLASHlabelcref] = ACTIONS(5912), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5912), - [anon_sym_BSLASHcrefrange] = ACTIONS(5912), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCrefrange] = ACTIONS(5912), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5914), - [anon_sym_BSLASHnewlabel] = ACTIONS(5912), - [anon_sym_BSLASHnewcommand] = ACTIONS(5912), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5912), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5912), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5914), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHdef] = ACTIONS(5912), - [anon_sym_BSLASHlet] = ACTIONS(5912), - [anon_sym_BSLASHleft] = ACTIONS(5912), - [anon_sym_BSLASHbig] = ACTIONS(5912), - [anon_sym_BSLASHBig] = ACTIONS(5912), - [anon_sym_BSLASHbigg] = ACTIONS(5912), - [anon_sym_BSLASHBigg] = ACTIONS(5912), - [anon_sym_BSLASHbigl] = ACTIONS(5912), - [anon_sym_BSLASHBigl] = ACTIONS(5912), - [anon_sym_BSLASHbiggl] = ACTIONS(5912), - [anon_sym_BSLASHBiggl] = ACTIONS(5912), - [anon_sym_BSLASHright] = ACTIONS(5912), - [anon_sym_BSLASHbigr] = ACTIONS(5912), - [anon_sym_BSLASHBigr] = ACTIONS(5912), - [anon_sym_BSLASHbiggr] = ACTIONS(5912), - [anon_sym_BSLASHBiggr] = ACTIONS(5912), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5912), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5912), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5912), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5912), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5912), - [anon_sym_BSLASHgls] = ACTIONS(5912), - [anon_sym_BSLASHGls] = ACTIONS(5912), - [anon_sym_BSLASHGLS] = ACTIONS(5912), - [anon_sym_BSLASHglspl] = ACTIONS(5912), - [anon_sym_BSLASHGlspl] = ACTIONS(5912), - [anon_sym_BSLASHGLSpl] = ACTIONS(5912), - [anon_sym_BSLASHglsdisp] = ACTIONS(5912), - [anon_sym_BSLASHglslink] = ACTIONS(5912), - [anon_sym_BSLASHglstext] = ACTIONS(5912), - [anon_sym_BSLASHGlstext] = ACTIONS(5912), - [anon_sym_BSLASHGLStext] = ACTIONS(5912), - [anon_sym_BSLASHglsfirst] = ACTIONS(5912), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5912), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5912), - [anon_sym_BSLASHglsplural] = ACTIONS(5912), - [anon_sym_BSLASHGlsplural] = ACTIONS(5912), - [anon_sym_BSLASHGLSplural] = ACTIONS(5912), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHglsname] = ACTIONS(5912), - [anon_sym_BSLASHGlsname] = ACTIONS(5912), - [anon_sym_BSLASHGLSname] = ACTIONS(5912), - [anon_sym_BSLASHglssymbol] = ACTIONS(5912), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5912), - [anon_sym_BSLASHglsdesc] = ACTIONS(5912), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5912), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5912), - [anon_sym_BSLASHglsuseri] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5912), - [anon_sym_BSLASHglsuserii] = ACTIONS(5912), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5912), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5912), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5912), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5912), - [anon_sym_BSLASHglsuserv] = ACTIONS(5912), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5912), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5912), - [anon_sym_BSLASHglsuservi] = ACTIONS(5912), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5912), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5912), - [anon_sym_BSLASHnewacronym] = ACTIONS(5912), - [anon_sym_BSLASHacrshort] = ACTIONS(5912), - [anon_sym_BSLASHAcrshort] = ACTIONS(5912), - [anon_sym_BSLASHACRshort] = ACTIONS(5912), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5912), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5912), - [anon_sym_BSLASHacrlong] = ACTIONS(5912), - [anon_sym_BSLASHAcrlong] = ACTIONS(5912), - [anon_sym_BSLASHACRlong] = ACTIONS(5912), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5912), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5912), - [anon_sym_BSLASHacrfull] = ACTIONS(5912), - [anon_sym_BSLASHAcrfull] = ACTIONS(5912), - [anon_sym_BSLASHACRfull] = ACTIONS(5912), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5912), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5912), - [anon_sym_BSLASHacs] = ACTIONS(5912), - [anon_sym_BSLASHAcs] = ACTIONS(5912), - [anon_sym_BSLASHacsp] = ACTIONS(5912), - [anon_sym_BSLASHAcsp] = ACTIONS(5912), - [anon_sym_BSLASHacl] = ACTIONS(5912), - [anon_sym_BSLASHAcl] = ACTIONS(5912), - [anon_sym_BSLASHaclp] = ACTIONS(5912), - [anon_sym_BSLASHAclp] = ACTIONS(5912), - [anon_sym_BSLASHacf] = ACTIONS(5912), - [anon_sym_BSLASHAcf] = ACTIONS(5912), - [anon_sym_BSLASHacfp] = ACTIONS(5912), - [anon_sym_BSLASHAcfp] = ACTIONS(5912), - [anon_sym_BSLASHac] = ACTIONS(5912), - [anon_sym_BSLASHAc] = ACTIONS(5912), - [anon_sym_BSLASHacp] = ACTIONS(5912), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5912), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5912), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5912), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5912), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5912), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5912), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5912), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5914), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5912), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5914), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5912), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5912), - [anon_sym_BSLASHcolor] = ACTIONS(5912), - [anon_sym_BSLASHcolorbox] = ACTIONS(5912), - [anon_sym_BSLASHtextcolor] = ACTIONS(5912), - [anon_sym_BSLASHpagecolor] = ACTIONS(5912), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5912), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5912), - [anon_sym_BSLASHtext] = ACTIONS(5912), - [anon_sym_BSLASHintertext] = ACTIONS(5912), - [anon_sym_shortintertext] = ACTIONS(5912), - }, - [411] = { - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(411), - [aux_sym__section_repeat6] = STATE(411), - [sym_command_name] = ACTIONS(5922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5922), - [anon_sym_LBRACK] = ACTIONS(5924), - [anon_sym_RBRACK] = ACTIONS(5924), - [anon_sym_COMMA] = ACTIONS(5924), - [anon_sym_EQ] = ACTIONS(5924), - [anon_sym_LPAREN] = ACTIONS(5924), - [anon_sym_RPAREN] = ACTIONS(5924), - [anon_sym_BSLASHpart] = ACTIONS(5922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddpart] = ACTIONS(5922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5924), - [anon_sym_BSLASHchapter] = ACTIONS(5922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddchap] = ACTIONS(5922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsection] = ACTIONS(5922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddsec] = ACTIONS(5922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsubsection] = ACTIONS(5922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHparagraph] = ACTIONS(5926), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5929), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5922), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5924), - [anon_sym_BSLASHitem] = ACTIONS(5922), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5924), - [anon_sym_LBRACE] = ACTIONS(5924), - [sym_word] = ACTIONS(5922), - [sym_placeholder] = ACTIONS(5924), - [anon_sym_PLUS] = ACTIONS(5924), - [anon_sym_DASH] = ACTIONS(5924), - [anon_sym_STAR] = ACTIONS(5924), - [anon_sym_SLASH] = ACTIONS(5924), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_BANG] = ACTIONS(5922), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_COLON] = ACTIONS(5922), - [anon_sym_SQUOTE] = ACTIONS(5922), - [anon_sym__] = ACTIONS(5924), - [anon_sym_CARET] = ACTIONS(5924), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5924), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5924), - [anon_sym_DOLLAR] = ACTIONS(5922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5924), - [anon_sym_BSLASHbegin] = ACTIONS(5922), - [anon_sym_BSLASHtitle] = ACTIONS(5922), - [anon_sym_BSLASHauthor] = ACTIONS(5922), - [anon_sym_BSLASHusepackage] = ACTIONS(5922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5922), - [anon_sym_BSLASHinclude] = ACTIONS(5922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5922), - [anon_sym_BSLASHinput] = ACTIONS(5922), - [anon_sym_BSLASHsubfile] = ACTIONS(5922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5922), - [anon_sym_BSLASHbibliography] = ACTIONS(5922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5922), - [anon_sym_BSLASHincludesvg] = ACTIONS(5922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5922), - [anon_sym_BSLASHimport] = ACTIONS(5922), - [anon_sym_BSLASHsubimport] = ACTIONS(5922), - [anon_sym_BSLASHinputfrom] = ACTIONS(5922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5922), - [anon_sym_BSLASHincludefrom] = ACTIONS(5922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5922), - [anon_sym_BSLASHcaption] = ACTIONS(5922), - [anon_sym_BSLASHcite] = ACTIONS(5922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCite] = ACTIONS(5922), - [anon_sym_BSLASHnocite] = ACTIONS(5922), - [anon_sym_BSLASHcitet] = ACTIONS(5922), - [anon_sym_BSLASHcitep] = ACTIONS(5922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteauthor] = ACTIONS(5922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitetitle] = ACTIONS(5922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteyear] = ACTIONS(5922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitedate] = ACTIONS(5922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteurl] = ACTIONS(5922), - [anon_sym_BSLASHfullcite] = ACTIONS(5922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5922), - [anon_sym_BSLASHcitealt] = ACTIONS(5922), - [anon_sym_BSLASHcitealp] = ACTIONS(5922), - [anon_sym_BSLASHcitetext] = ACTIONS(5922), - [anon_sym_BSLASHparencite] = ACTIONS(5922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHParencite] = ACTIONS(5922), - [anon_sym_BSLASHfootcite] = ACTIONS(5922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5922), - [anon_sym_BSLASHtextcite] = ACTIONS(5922), - [anon_sym_BSLASHTextcite] = ACTIONS(5922), - [anon_sym_BSLASHsmartcite] = ACTIONS(5922), - [anon_sym_BSLASHSmartcite] = ACTIONS(5922), - [anon_sym_BSLASHsupercite] = ACTIONS(5922), - [anon_sym_BSLASHautocite] = ACTIONS(5922), - [anon_sym_BSLASHAutocite] = ACTIONS(5922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHvolcite] = ACTIONS(5922), - [anon_sym_BSLASHVolcite] = ACTIONS(5922), - [anon_sym_BSLASHpvolcite] = ACTIONS(5922), - [anon_sym_BSLASHPvolcite] = ACTIONS(5922), - [anon_sym_BSLASHfvolcite] = ACTIONS(5922), - [anon_sym_BSLASHftvolcite] = ACTIONS(5922), - [anon_sym_BSLASHsvolcite] = ACTIONS(5922), - [anon_sym_BSLASHSvolcite] = ACTIONS(5922), - [anon_sym_BSLASHtvolcite] = ACTIONS(5922), - [anon_sym_BSLASHTvolcite] = ACTIONS(5922), - [anon_sym_BSLASHavolcite] = ACTIONS(5922), - [anon_sym_BSLASHAvolcite] = ACTIONS(5922), - [anon_sym_BSLASHnotecite] = ACTIONS(5922), - [anon_sym_BSLASHNotecite] = ACTIONS(5922), - [anon_sym_BSLASHpnotecite] = ACTIONS(5922), - [anon_sym_BSLASHPnotecite] = ACTIONS(5922), - [anon_sym_BSLASHfnotecite] = ACTIONS(5922), - [anon_sym_BSLASHlabel] = ACTIONS(5922), - [anon_sym_BSLASHref] = ACTIONS(5922), - [anon_sym_BSLASHeqref] = ACTIONS(5922), - [anon_sym_BSLASHvref] = ACTIONS(5922), - [anon_sym_BSLASHVref] = ACTIONS(5922), - [anon_sym_BSLASHautoref] = ACTIONS(5922), - [anon_sym_BSLASHpageref] = ACTIONS(5922), - [anon_sym_BSLASHcref] = ACTIONS(5922), - [anon_sym_BSLASHCref] = ACTIONS(5922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5924), - [anon_sym_BSLASHnamecref] = ACTIONS(5922), - [anon_sym_BSLASHnameCref] = ACTIONS(5922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5922), - [anon_sym_BSLASHlabelcref] = ACTIONS(5922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5922), - [anon_sym_BSLASHcrefrange] = ACTIONS(5922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCrefrange] = ACTIONS(5922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5924), - [anon_sym_BSLASHnewlabel] = ACTIONS(5922), - [anon_sym_BSLASHnewcommand] = ACTIONS(5922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5924), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHdef] = ACTIONS(5922), - [anon_sym_BSLASHlet] = ACTIONS(5922), - [anon_sym_BSLASHleft] = ACTIONS(5922), - [anon_sym_BSLASHbig] = ACTIONS(5922), - [anon_sym_BSLASHBig] = ACTIONS(5922), - [anon_sym_BSLASHbigg] = ACTIONS(5922), - [anon_sym_BSLASHBigg] = ACTIONS(5922), - [anon_sym_BSLASHbigl] = ACTIONS(5922), - [anon_sym_BSLASHBigl] = ACTIONS(5922), - [anon_sym_BSLASHbiggl] = ACTIONS(5922), - [anon_sym_BSLASHBiggl] = ACTIONS(5922), - [anon_sym_BSLASHright] = ACTIONS(5922), - [anon_sym_BSLASHbigr] = ACTIONS(5922), - [anon_sym_BSLASHBigr] = ACTIONS(5922), - [anon_sym_BSLASHbiggr] = ACTIONS(5922), - [anon_sym_BSLASHBiggr] = ACTIONS(5922), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5922), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5922), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5922), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5922), - [anon_sym_BSLASHgls] = ACTIONS(5922), - [anon_sym_BSLASHGls] = ACTIONS(5922), - [anon_sym_BSLASHGLS] = ACTIONS(5922), - [anon_sym_BSLASHglspl] = ACTIONS(5922), - [anon_sym_BSLASHGlspl] = ACTIONS(5922), - [anon_sym_BSLASHGLSpl] = ACTIONS(5922), - [anon_sym_BSLASHglsdisp] = ACTIONS(5922), - [anon_sym_BSLASHglslink] = ACTIONS(5922), - [anon_sym_BSLASHglstext] = ACTIONS(5922), - [anon_sym_BSLASHGlstext] = ACTIONS(5922), - [anon_sym_BSLASHGLStext] = ACTIONS(5922), - [anon_sym_BSLASHglsfirst] = ACTIONS(5922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5922), - [anon_sym_BSLASHglsplural] = ACTIONS(5922), - [anon_sym_BSLASHGlsplural] = ACTIONS(5922), - [anon_sym_BSLASHGLSplural] = ACTIONS(5922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHglsname] = ACTIONS(5922), - [anon_sym_BSLASHGlsname] = ACTIONS(5922), - [anon_sym_BSLASHGLSname] = ACTIONS(5922), - [anon_sym_BSLASHglssymbol] = ACTIONS(5922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5922), - [anon_sym_BSLASHglsdesc] = ACTIONS(5922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5922), - [anon_sym_BSLASHglsuseri] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5922), - [anon_sym_BSLASHglsuserii] = ACTIONS(5922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5922), - [anon_sym_BSLASHglsuserv] = ACTIONS(5922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5922), - [anon_sym_BSLASHglsuservi] = ACTIONS(5922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5922), - [anon_sym_BSLASHnewacronym] = ACTIONS(5922), - [anon_sym_BSLASHacrshort] = ACTIONS(5922), - [anon_sym_BSLASHAcrshort] = ACTIONS(5922), - [anon_sym_BSLASHACRshort] = ACTIONS(5922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5922), - [anon_sym_BSLASHacrlong] = ACTIONS(5922), - [anon_sym_BSLASHAcrlong] = ACTIONS(5922), - [anon_sym_BSLASHACRlong] = ACTIONS(5922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5922), - [anon_sym_BSLASHacrfull] = ACTIONS(5922), - [anon_sym_BSLASHAcrfull] = ACTIONS(5922), - [anon_sym_BSLASHACRfull] = ACTIONS(5922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5922), - [anon_sym_BSLASHacs] = ACTIONS(5922), - [anon_sym_BSLASHAcs] = ACTIONS(5922), - [anon_sym_BSLASHacsp] = ACTIONS(5922), - [anon_sym_BSLASHAcsp] = ACTIONS(5922), - [anon_sym_BSLASHacl] = ACTIONS(5922), - [anon_sym_BSLASHAcl] = ACTIONS(5922), - [anon_sym_BSLASHaclp] = ACTIONS(5922), - [anon_sym_BSLASHAclp] = ACTIONS(5922), - [anon_sym_BSLASHacf] = ACTIONS(5922), - [anon_sym_BSLASHAcf] = ACTIONS(5922), - [anon_sym_BSLASHacfp] = ACTIONS(5922), - [anon_sym_BSLASHAcfp] = ACTIONS(5922), - [anon_sym_BSLASHac] = ACTIONS(5922), - [anon_sym_BSLASHAc] = ACTIONS(5922), - [anon_sym_BSLASHacp] = ACTIONS(5922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5922), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5924), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5922), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5924), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5922), - [anon_sym_BSLASHcolor] = ACTIONS(5922), - [anon_sym_BSLASHcolorbox] = ACTIONS(5922), - [anon_sym_BSLASHtextcolor] = ACTIONS(5922), - [anon_sym_BSLASHpagecolor] = ACTIONS(5922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5922), - [anon_sym_BSLASHtext] = ACTIONS(5922), - [anon_sym_BSLASHintertext] = ACTIONS(5922), - [anon_sym_shortintertext] = ACTIONS(5922), - }, - [412] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(5932), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5932), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_RBRACK] = ACTIONS(5934), - [anon_sym_COMMA] = ACTIONS(5934), - [anon_sym_EQ] = ACTIONS(5934), - [anon_sym_LPAREN] = ACTIONS(5934), - [anon_sym_RPAREN] = ACTIONS(5934), - [anon_sym_BSLASHpart] = ACTIONS(5932), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddpart] = ACTIONS(5932), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5934), - [anon_sym_BSLASHchapter] = ACTIONS(5932), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddchap] = ACTIONS(5932), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsection] = ACTIONS(5932), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddsec] = ACTIONS(5932), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubsection] = ACTIONS(5932), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5932), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHparagraph] = ACTIONS(5932), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5936), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5939), - [anon_sym_BSLASHitem] = ACTIONS(5932), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5934), - [anon_sym_LBRACE] = ACTIONS(5934), - [sym_word] = ACTIONS(5932), - [sym_placeholder] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_STAR] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5934), - [anon_sym_LT] = ACTIONS(5932), - [anon_sym_GT] = ACTIONS(5932), - [anon_sym_BANG] = ACTIONS(5932), - [anon_sym_PIPE] = ACTIONS(5932), - [anon_sym_COLON] = ACTIONS(5932), - [anon_sym_SQUOTE] = ACTIONS(5932), - [anon_sym__] = ACTIONS(5934), - [anon_sym_CARET] = ACTIONS(5934), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5934), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5934), - [anon_sym_DOLLAR] = ACTIONS(5932), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5934), - [anon_sym_BSLASHbegin] = ACTIONS(5932), - [anon_sym_BSLASHtitle] = ACTIONS(5932), - [anon_sym_BSLASHauthor] = ACTIONS(5932), - [anon_sym_BSLASHusepackage] = ACTIONS(5932), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5932), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5932), - [anon_sym_BSLASHinclude] = ACTIONS(5932), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5932), - [anon_sym_BSLASHinput] = ACTIONS(5932), - [anon_sym_BSLASHsubfile] = ACTIONS(5932), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5932), - [anon_sym_BSLASHbibliography] = ACTIONS(5932), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5932), - [anon_sym_BSLASHincludesvg] = ACTIONS(5932), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5932), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5932), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5932), - [anon_sym_BSLASHimport] = ACTIONS(5932), - [anon_sym_BSLASHsubimport] = ACTIONS(5932), - [anon_sym_BSLASHinputfrom] = ACTIONS(5932), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5932), - [anon_sym_BSLASHincludefrom] = ACTIONS(5932), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5932), - [anon_sym_BSLASHcaption] = ACTIONS(5932), - [anon_sym_BSLASHcite] = ACTIONS(5932), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCite] = ACTIONS(5932), - [anon_sym_BSLASHnocite] = ACTIONS(5932), - [anon_sym_BSLASHcitet] = ACTIONS(5932), - [anon_sym_BSLASHcitep] = ACTIONS(5932), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteauthor] = ACTIONS(5932), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5932), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitetitle] = ACTIONS(5932), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteyear] = ACTIONS(5932), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitedate] = ACTIONS(5932), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteurl] = ACTIONS(5932), - [anon_sym_BSLASHfullcite] = ACTIONS(5932), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5932), - [anon_sym_BSLASHcitealt] = ACTIONS(5932), - [anon_sym_BSLASHcitealp] = ACTIONS(5932), - [anon_sym_BSLASHcitetext] = ACTIONS(5932), - [anon_sym_BSLASHparencite] = ACTIONS(5932), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHParencite] = ACTIONS(5932), - [anon_sym_BSLASHfootcite] = ACTIONS(5932), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5932), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5932), - [anon_sym_BSLASHtextcite] = ACTIONS(5932), - [anon_sym_BSLASHTextcite] = ACTIONS(5932), - [anon_sym_BSLASHsmartcite] = ACTIONS(5932), - [anon_sym_BSLASHSmartcite] = ACTIONS(5932), - [anon_sym_BSLASHsupercite] = ACTIONS(5932), - [anon_sym_BSLASHautocite] = ACTIONS(5932), - [anon_sym_BSLASHAutocite] = ACTIONS(5932), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHvolcite] = ACTIONS(5932), - [anon_sym_BSLASHVolcite] = ACTIONS(5932), - [anon_sym_BSLASHpvolcite] = ACTIONS(5932), - [anon_sym_BSLASHPvolcite] = ACTIONS(5932), - [anon_sym_BSLASHfvolcite] = ACTIONS(5932), - [anon_sym_BSLASHftvolcite] = ACTIONS(5932), - [anon_sym_BSLASHsvolcite] = ACTIONS(5932), - [anon_sym_BSLASHSvolcite] = ACTIONS(5932), - [anon_sym_BSLASHtvolcite] = ACTIONS(5932), - [anon_sym_BSLASHTvolcite] = ACTIONS(5932), - [anon_sym_BSLASHavolcite] = ACTIONS(5932), - [anon_sym_BSLASHAvolcite] = ACTIONS(5932), - [anon_sym_BSLASHnotecite] = ACTIONS(5932), - [anon_sym_BSLASHNotecite] = ACTIONS(5932), - [anon_sym_BSLASHpnotecite] = ACTIONS(5932), - [anon_sym_BSLASHPnotecite] = ACTIONS(5932), - [anon_sym_BSLASHfnotecite] = ACTIONS(5932), - [anon_sym_BSLASHlabel] = ACTIONS(5932), - [anon_sym_BSLASHref] = ACTIONS(5932), - [anon_sym_BSLASHeqref] = ACTIONS(5932), - [anon_sym_BSLASHvref] = ACTIONS(5932), - [anon_sym_BSLASHVref] = ACTIONS(5932), - [anon_sym_BSLASHautoref] = ACTIONS(5932), - [anon_sym_BSLASHpageref] = ACTIONS(5932), - [anon_sym_BSLASHcref] = ACTIONS(5932), - [anon_sym_BSLASHCref] = ACTIONS(5932), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5934), - [anon_sym_BSLASHnamecref] = ACTIONS(5932), - [anon_sym_BSLASHnameCref] = ACTIONS(5932), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5932), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5932), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5932), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5932), - [anon_sym_BSLASHlabelcref] = ACTIONS(5932), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5932), - [anon_sym_BSLASHcrefrange] = ACTIONS(5932), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCrefrange] = ACTIONS(5932), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5934), - [anon_sym_BSLASHnewlabel] = ACTIONS(5932), - [anon_sym_BSLASHnewcommand] = ACTIONS(5932), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5932), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5932), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5934), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHdef] = ACTIONS(5932), - [anon_sym_BSLASHlet] = ACTIONS(5932), - [anon_sym_BSLASHleft] = ACTIONS(5932), - [anon_sym_BSLASHbig] = ACTIONS(5932), - [anon_sym_BSLASHBig] = ACTIONS(5932), - [anon_sym_BSLASHbigg] = ACTIONS(5932), - [anon_sym_BSLASHBigg] = ACTIONS(5932), - [anon_sym_BSLASHbigl] = ACTIONS(5932), - [anon_sym_BSLASHBigl] = ACTIONS(5932), - [anon_sym_BSLASHbiggl] = ACTIONS(5932), - [anon_sym_BSLASHBiggl] = ACTIONS(5932), - [anon_sym_BSLASHright] = ACTIONS(5932), - [anon_sym_BSLASHbigr] = ACTIONS(5932), - [anon_sym_BSLASHBigr] = ACTIONS(5932), - [anon_sym_BSLASHbiggr] = ACTIONS(5932), - [anon_sym_BSLASHBiggr] = ACTIONS(5932), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5932), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5932), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5932), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5932), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5932), - [anon_sym_BSLASHgls] = ACTIONS(5932), - [anon_sym_BSLASHGls] = ACTIONS(5932), - [anon_sym_BSLASHGLS] = ACTIONS(5932), - [anon_sym_BSLASHglspl] = ACTIONS(5932), - [anon_sym_BSLASHGlspl] = ACTIONS(5932), - [anon_sym_BSLASHGLSpl] = ACTIONS(5932), - [anon_sym_BSLASHglsdisp] = ACTIONS(5932), - [anon_sym_BSLASHglslink] = ACTIONS(5932), - [anon_sym_BSLASHglstext] = ACTIONS(5932), - [anon_sym_BSLASHGlstext] = ACTIONS(5932), - [anon_sym_BSLASHGLStext] = ACTIONS(5932), - [anon_sym_BSLASHglsfirst] = ACTIONS(5932), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5932), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5932), - [anon_sym_BSLASHglsplural] = ACTIONS(5932), - [anon_sym_BSLASHGlsplural] = ACTIONS(5932), - [anon_sym_BSLASHGLSplural] = ACTIONS(5932), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHglsname] = ACTIONS(5932), - [anon_sym_BSLASHGlsname] = ACTIONS(5932), - [anon_sym_BSLASHGLSname] = ACTIONS(5932), - [anon_sym_BSLASHglssymbol] = ACTIONS(5932), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5932), - [anon_sym_BSLASHglsdesc] = ACTIONS(5932), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5932), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5932), - [anon_sym_BSLASHglsuseri] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5932), - [anon_sym_BSLASHglsuserii] = ACTIONS(5932), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5932), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5932), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5932), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5932), - [anon_sym_BSLASHglsuserv] = ACTIONS(5932), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5932), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5932), - [anon_sym_BSLASHglsuservi] = ACTIONS(5932), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5932), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5932), - [anon_sym_BSLASHnewacronym] = ACTIONS(5932), - [anon_sym_BSLASHacrshort] = ACTIONS(5932), - [anon_sym_BSLASHAcrshort] = ACTIONS(5932), - [anon_sym_BSLASHACRshort] = ACTIONS(5932), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5932), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5932), - [anon_sym_BSLASHacrlong] = ACTIONS(5932), - [anon_sym_BSLASHAcrlong] = ACTIONS(5932), - [anon_sym_BSLASHACRlong] = ACTIONS(5932), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5932), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5932), - [anon_sym_BSLASHacrfull] = ACTIONS(5932), - [anon_sym_BSLASHAcrfull] = ACTIONS(5932), - [anon_sym_BSLASHACRfull] = ACTIONS(5932), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5932), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5932), - [anon_sym_BSLASHacs] = ACTIONS(5932), - [anon_sym_BSLASHAcs] = ACTIONS(5932), - [anon_sym_BSLASHacsp] = ACTIONS(5932), - [anon_sym_BSLASHAcsp] = ACTIONS(5932), - [anon_sym_BSLASHacl] = ACTIONS(5932), - [anon_sym_BSLASHAcl] = ACTIONS(5932), - [anon_sym_BSLASHaclp] = ACTIONS(5932), - [anon_sym_BSLASHAclp] = ACTIONS(5932), - [anon_sym_BSLASHacf] = ACTIONS(5932), - [anon_sym_BSLASHAcf] = ACTIONS(5932), - [anon_sym_BSLASHacfp] = ACTIONS(5932), - [anon_sym_BSLASHAcfp] = ACTIONS(5932), - [anon_sym_BSLASHac] = ACTIONS(5932), - [anon_sym_BSLASHAc] = ACTIONS(5932), - [anon_sym_BSLASHacp] = ACTIONS(5932), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5932), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5932), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5932), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5932), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5932), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5932), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5932), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5934), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5932), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5932), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5932), - [anon_sym_BSLASHcolor] = ACTIONS(5932), - [anon_sym_BSLASHcolorbox] = ACTIONS(5932), - [anon_sym_BSLASHtextcolor] = ACTIONS(5932), - [anon_sym_BSLASHpagecolor] = ACTIONS(5932), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5932), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5932), - [anon_sym_BSLASHtext] = ACTIONS(5932), - [anon_sym_BSLASHintertext] = ACTIONS(5932), - [anon_sym_shortintertext] = ACTIONS(5932), - }, - [413] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(5942), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5942), - [anon_sym_LBRACK] = ACTIONS(5944), - [anon_sym_RBRACK] = ACTIONS(5944), - [anon_sym_COMMA] = ACTIONS(5944), - [anon_sym_EQ] = ACTIONS(5944), - [anon_sym_LPAREN] = ACTIONS(5944), - [anon_sym_RPAREN] = ACTIONS(5944), - [anon_sym_BSLASHpart] = ACTIONS(5942), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddpart] = ACTIONS(5942), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5944), - [anon_sym_BSLASHchapter] = ACTIONS(5942), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddchap] = ACTIONS(5942), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsection] = ACTIONS(5942), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddsec] = ACTIONS(5942), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubsection] = ACTIONS(5942), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5942), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHparagraph] = ACTIONS(5942), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5942), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5944), - [anon_sym_BSLASHitem] = ACTIONS(5946), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5949), - [anon_sym_LBRACE] = ACTIONS(5944), - [sym_word] = ACTIONS(5942), - [sym_placeholder] = ACTIONS(5944), - [anon_sym_PLUS] = ACTIONS(5944), - [anon_sym_DASH] = ACTIONS(5944), - [anon_sym_STAR] = ACTIONS(5944), - [anon_sym_SLASH] = ACTIONS(5944), - [anon_sym_LT] = ACTIONS(5942), - [anon_sym_GT] = ACTIONS(5942), - [anon_sym_BANG] = ACTIONS(5942), - [anon_sym_PIPE] = ACTIONS(5942), - [anon_sym_COLON] = ACTIONS(5942), - [anon_sym_SQUOTE] = ACTIONS(5942), - [anon_sym__] = ACTIONS(5944), - [anon_sym_CARET] = ACTIONS(5944), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5944), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5944), - [anon_sym_DOLLAR] = ACTIONS(5942), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5944), - [anon_sym_BSLASHbegin] = ACTIONS(5942), - [anon_sym_BSLASHtitle] = ACTIONS(5942), - [anon_sym_BSLASHauthor] = ACTIONS(5942), - [anon_sym_BSLASHusepackage] = ACTIONS(5942), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5942), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5942), - [anon_sym_BSLASHinclude] = ACTIONS(5942), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5942), - [anon_sym_BSLASHinput] = ACTIONS(5942), - [anon_sym_BSLASHsubfile] = ACTIONS(5942), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5942), - [anon_sym_BSLASHbibliography] = ACTIONS(5942), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5942), - [anon_sym_BSLASHincludesvg] = ACTIONS(5942), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5942), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5942), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5942), - [anon_sym_BSLASHimport] = ACTIONS(5942), - [anon_sym_BSLASHsubimport] = ACTIONS(5942), - [anon_sym_BSLASHinputfrom] = ACTIONS(5942), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5942), - [anon_sym_BSLASHincludefrom] = ACTIONS(5942), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5942), - [anon_sym_BSLASHcaption] = ACTIONS(5942), - [anon_sym_BSLASHcite] = ACTIONS(5942), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCite] = ACTIONS(5942), - [anon_sym_BSLASHnocite] = ACTIONS(5942), - [anon_sym_BSLASHcitet] = ACTIONS(5942), - [anon_sym_BSLASHcitep] = ACTIONS(5942), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteauthor] = ACTIONS(5942), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5942), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitetitle] = ACTIONS(5942), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteyear] = ACTIONS(5942), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitedate] = ACTIONS(5942), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteurl] = ACTIONS(5942), - [anon_sym_BSLASHfullcite] = ACTIONS(5942), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5942), - [anon_sym_BSLASHcitealt] = ACTIONS(5942), - [anon_sym_BSLASHcitealp] = ACTIONS(5942), - [anon_sym_BSLASHcitetext] = ACTIONS(5942), - [anon_sym_BSLASHparencite] = ACTIONS(5942), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHParencite] = ACTIONS(5942), - [anon_sym_BSLASHfootcite] = ACTIONS(5942), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5942), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5942), - [anon_sym_BSLASHtextcite] = ACTIONS(5942), - [anon_sym_BSLASHTextcite] = ACTIONS(5942), - [anon_sym_BSLASHsmartcite] = ACTIONS(5942), - [anon_sym_BSLASHSmartcite] = ACTIONS(5942), - [anon_sym_BSLASHsupercite] = ACTIONS(5942), - [anon_sym_BSLASHautocite] = ACTIONS(5942), - [anon_sym_BSLASHAutocite] = ACTIONS(5942), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHvolcite] = ACTIONS(5942), - [anon_sym_BSLASHVolcite] = ACTIONS(5942), - [anon_sym_BSLASHpvolcite] = ACTIONS(5942), - [anon_sym_BSLASHPvolcite] = ACTIONS(5942), - [anon_sym_BSLASHfvolcite] = ACTIONS(5942), - [anon_sym_BSLASHftvolcite] = ACTIONS(5942), - [anon_sym_BSLASHsvolcite] = ACTIONS(5942), - [anon_sym_BSLASHSvolcite] = ACTIONS(5942), - [anon_sym_BSLASHtvolcite] = ACTIONS(5942), - [anon_sym_BSLASHTvolcite] = ACTIONS(5942), - [anon_sym_BSLASHavolcite] = ACTIONS(5942), - [anon_sym_BSLASHAvolcite] = ACTIONS(5942), - [anon_sym_BSLASHnotecite] = ACTIONS(5942), - [anon_sym_BSLASHNotecite] = ACTIONS(5942), - [anon_sym_BSLASHpnotecite] = ACTIONS(5942), - [anon_sym_BSLASHPnotecite] = ACTIONS(5942), - [anon_sym_BSLASHfnotecite] = ACTIONS(5942), - [anon_sym_BSLASHlabel] = ACTIONS(5942), - [anon_sym_BSLASHref] = ACTIONS(5942), - [anon_sym_BSLASHeqref] = ACTIONS(5942), - [anon_sym_BSLASHvref] = ACTIONS(5942), - [anon_sym_BSLASHVref] = ACTIONS(5942), - [anon_sym_BSLASHautoref] = ACTIONS(5942), - [anon_sym_BSLASHpageref] = ACTIONS(5942), - [anon_sym_BSLASHcref] = ACTIONS(5942), - [anon_sym_BSLASHCref] = ACTIONS(5942), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5944), - [anon_sym_BSLASHnamecref] = ACTIONS(5942), - [anon_sym_BSLASHnameCref] = ACTIONS(5942), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5942), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5942), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5942), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5942), - [anon_sym_BSLASHlabelcref] = ACTIONS(5942), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5942), - [anon_sym_BSLASHcrefrange] = ACTIONS(5942), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCrefrange] = ACTIONS(5942), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5944), - [anon_sym_BSLASHnewlabel] = ACTIONS(5942), - [anon_sym_BSLASHnewcommand] = ACTIONS(5942), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5942), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5942), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5944), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHdef] = ACTIONS(5942), - [anon_sym_BSLASHlet] = ACTIONS(5942), - [anon_sym_BSLASHleft] = ACTIONS(5942), - [anon_sym_BSLASHbig] = ACTIONS(5942), - [anon_sym_BSLASHBig] = ACTIONS(5942), - [anon_sym_BSLASHbigg] = ACTIONS(5942), - [anon_sym_BSLASHBigg] = ACTIONS(5942), - [anon_sym_BSLASHbigl] = ACTIONS(5942), - [anon_sym_BSLASHBigl] = ACTIONS(5942), - [anon_sym_BSLASHbiggl] = ACTIONS(5942), - [anon_sym_BSLASHBiggl] = ACTIONS(5942), - [anon_sym_BSLASHright] = ACTIONS(5942), - [anon_sym_BSLASHbigr] = ACTIONS(5942), - [anon_sym_BSLASHBigr] = ACTIONS(5942), - [anon_sym_BSLASHbiggr] = ACTIONS(5942), - [anon_sym_BSLASHBiggr] = ACTIONS(5942), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5942), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5942), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5942), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5942), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5942), - [anon_sym_BSLASHgls] = ACTIONS(5942), - [anon_sym_BSLASHGls] = ACTIONS(5942), - [anon_sym_BSLASHGLS] = ACTIONS(5942), - [anon_sym_BSLASHglspl] = ACTIONS(5942), - [anon_sym_BSLASHGlspl] = ACTIONS(5942), - [anon_sym_BSLASHGLSpl] = ACTIONS(5942), - [anon_sym_BSLASHglsdisp] = ACTIONS(5942), - [anon_sym_BSLASHglslink] = ACTIONS(5942), - [anon_sym_BSLASHglstext] = ACTIONS(5942), - [anon_sym_BSLASHGlstext] = ACTIONS(5942), - [anon_sym_BSLASHGLStext] = ACTIONS(5942), - [anon_sym_BSLASHglsfirst] = ACTIONS(5942), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5942), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5942), - [anon_sym_BSLASHglsplural] = ACTIONS(5942), - [anon_sym_BSLASHGlsplural] = ACTIONS(5942), - [anon_sym_BSLASHGLSplural] = ACTIONS(5942), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHglsname] = ACTIONS(5942), - [anon_sym_BSLASHGlsname] = ACTIONS(5942), - [anon_sym_BSLASHGLSname] = ACTIONS(5942), - [anon_sym_BSLASHglssymbol] = ACTIONS(5942), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5942), - [anon_sym_BSLASHglsdesc] = ACTIONS(5942), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5942), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5942), - [anon_sym_BSLASHglsuseri] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5942), - [anon_sym_BSLASHglsuserii] = ACTIONS(5942), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5942), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5942), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5942), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5942), - [anon_sym_BSLASHglsuserv] = ACTIONS(5942), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5942), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5942), - [anon_sym_BSLASHglsuservi] = ACTIONS(5942), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5942), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5942), - [anon_sym_BSLASHnewacronym] = ACTIONS(5942), - [anon_sym_BSLASHacrshort] = ACTIONS(5942), - [anon_sym_BSLASHAcrshort] = ACTIONS(5942), - [anon_sym_BSLASHACRshort] = ACTIONS(5942), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5942), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5942), - [anon_sym_BSLASHacrlong] = ACTIONS(5942), - [anon_sym_BSLASHAcrlong] = ACTIONS(5942), - [anon_sym_BSLASHACRlong] = ACTIONS(5942), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5942), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5942), - [anon_sym_BSLASHacrfull] = ACTIONS(5942), - [anon_sym_BSLASHAcrfull] = ACTIONS(5942), - [anon_sym_BSLASHACRfull] = ACTIONS(5942), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5942), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5942), - [anon_sym_BSLASHacs] = ACTIONS(5942), - [anon_sym_BSLASHAcs] = ACTIONS(5942), - [anon_sym_BSLASHacsp] = ACTIONS(5942), - [anon_sym_BSLASHAcsp] = ACTIONS(5942), - [anon_sym_BSLASHacl] = ACTIONS(5942), - [anon_sym_BSLASHAcl] = ACTIONS(5942), - [anon_sym_BSLASHaclp] = ACTIONS(5942), - [anon_sym_BSLASHAclp] = ACTIONS(5942), - [anon_sym_BSLASHacf] = ACTIONS(5942), - [anon_sym_BSLASHAcf] = ACTIONS(5942), - [anon_sym_BSLASHacfp] = ACTIONS(5942), - [anon_sym_BSLASHAcfp] = ACTIONS(5942), - [anon_sym_BSLASHac] = ACTIONS(5942), - [anon_sym_BSLASHAc] = ACTIONS(5942), - [anon_sym_BSLASHacp] = ACTIONS(5942), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5942), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5942), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5942), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5942), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5942), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5942), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5942), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5944), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5942), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5944), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5942), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5942), - [anon_sym_BSLASHcolor] = ACTIONS(5942), - [anon_sym_BSLASHcolorbox] = ACTIONS(5942), - [anon_sym_BSLASHtextcolor] = ACTIONS(5942), - [anon_sym_BSLASHpagecolor] = ACTIONS(5942), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5942), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - [anon_sym_BSLASHtext] = ACTIONS(5942), - [anon_sym_BSLASHintertext] = ACTIONS(5942), - [anon_sym_shortintertext] = ACTIONS(5942), - }, - [414] = { - [sym__chapter_declaration] = STATE(177), - [sym_chapter] = STATE(407), - [aux_sym__section_repeat2] = STATE(407), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHright] = ACTIONS(5824), - [anon_sym_BSLASHbigr] = ACTIONS(5824), - [anon_sym_BSLASHBigr] = ACTIONS(5824), - [anon_sym_BSLASHbiggr] = ACTIONS(5824), - [anon_sym_BSLASHBiggr] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [415] = { - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(408), - [aux_sym__section_repeat3] = STATE(408), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHright] = ACTIONS(5824), - [anon_sym_BSLASHbigr] = ACTIONS(5824), - [anon_sym_BSLASHBigr] = ACTIONS(5824), - [anon_sym_BSLASHbiggr] = ACTIONS(5824), - [anon_sym_BSLASHBiggr] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [416] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHright] = ACTIONS(5868), - [anon_sym_BSLASHbigr] = ACTIONS(5868), - [anon_sym_BSLASHBigr] = ACTIONS(5868), - [anon_sym_BSLASHbiggr] = ACTIONS(5868), - [anon_sym_BSLASHBiggr] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [417] = { - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(409), - [aux_sym__section_repeat4] = STATE(409), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHright] = ACTIONS(5824), - [anon_sym_BSLASHbigr] = ACTIONS(5824), - [anon_sym_BSLASHBigr] = ACTIONS(5824), - [anon_sym_BSLASHbiggr] = ACTIONS(5824), - [anon_sym_BSLASHBiggr] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [418] = { - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(410), - [aux_sym__section_repeat5] = STATE(410), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHright] = ACTIONS(5824), - [anon_sym_BSLASHbigr] = ACTIONS(5824), - [anon_sym_BSLASHBigr] = ACTIONS(5824), - [anon_sym_BSLASHbiggr] = ACTIONS(5824), - [anon_sym_BSLASHBiggr] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [419] = { - [sym__subsubsection_declaration] = STATE(207), - [sym_subsubsection] = STATE(410), - [aux_sym__section_repeat5] = STATE(410), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHright] = ACTIONS(5844), - [anon_sym_BSLASHbigr] = ACTIONS(5844), - [anon_sym_BSLASHBigr] = ACTIONS(5844), - [anon_sym_BSLASHbiggr] = ACTIONS(5844), - [anon_sym_BSLASHBiggr] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [420] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHright] = ACTIONS(5868), - [anon_sym_BSLASHbigr] = ACTIONS(5868), - [anon_sym_BSLASHBigr] = ACTIONS(5868), - [anon_sym_BSLASHbiggr] = ACTIONS(5868), - [anon_sym_BSLASHBiggr] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [421] = { - [sym__subsection_declaration] = STATE(196), - [sym_subsection] = STATE(409), - [aux_sym__section_repeat4] = STATE(409), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHright] = ACTIONS(5844), - [anon_sym_BSLASHbigr] = ACTIONS(5844), - [anon_sym_BSLASHBigr] = ACTIONS(5844), - [anon_sym_BSLASHbiggr] = ACTIONS(5844), - [anon_sym_BSLASHBiggr] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [422] = { - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(411), - [aux_sym__section_repeat6] = STATE(411), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHright] = ACTIONS(5824), - [anon_sym_BSLASHbigr] = ACTIONS(5824), - [anon_sym_BSLASHBigr] = ACTIONS(5824), - [anon_sym_BSLASHbiggr] = ACTIONS(5824), - [anon_sym_BSLASHBiggr] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [423] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(5952), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(5954), - [anon_sym_RBRACK] = ACTIONS(5954), - [anon_sym_COMMA] = ACTIONS(5954), - [anon_sym_EQ] = ACTIONS(5954), - [anon_sym_LPAREN] = ACTIONS(5954), - [anon_sym_RPAREN] = ACTIONS(5954), - [anon_sym_BSLASHpart] = ACTIONS(5952), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddpart] = ACTIONS(5952), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5954), - [anon_sym_BSLASHchapter] = ACTIONS(5952), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddchap] = ACTIONS(5952), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsection] = ACTIONS(5952), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddsec] = ACTIONS(5952), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubsection] = ACTIONS(5952), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5952), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHparagraph] = ACTIONS(5952), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5952), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5954), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(5954), - [sym_word] = ACTIONS(5952), - [sym_placeholder] = ACTIONS(5954), - [anon_sym_PLUS] = ACTIONS(5954), - [anon_sym_DASH] = ACTIONS(5954), - [anon_sym_STAR] = ACTIONS(5954), - [anon_sym_SLASH] = ACTIONS(5954), - [anon_sym_LT] = ACTIONS(5952), - [anon_sym_GT] = ACTIONS(5952), - [anon_sym_BANG] = ACTIONS(5952), - [anon_sym_PIPE] = ACTIONS(5952), - [anon_sym_COLON] = ACTIONS(5952), - [anon_sym_SQUOTE] = ACTIONS(5952), - [anon_sym__] = ACTIONS(5954), - [anon_sym_CARET] = ACTIONS(5954), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5954), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5954), - [anon_sym_DOLLAR] = ACTIONS(5952), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5954), - [anon_sym_BSLASHbegin] = ACTIONS(5952), - [anon_sym_BSLASHtitle] = ACTIONS(5952), - [anon_sym_BSLASHauthor] = ACTIONS(5952), - [anon_sym_BSLASHusepackage] = ACTIONS(5952), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5952), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5952), - [anon_sym_BSLASHinclude] = ACTIONS(5952), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5952), - [anon_sym_BSLASHinput] = ACTIONS(5952), - [anon_sym_BSLASHsubfile] = ACTIONS(5952), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5952), - [anon_sym_BSLASHbibliography] = ACTIONS(5952), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5952), - [anon_sym_BSLASHincludesvg] = ACTIONS(5952), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5952), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5952), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5952), - [anon_sym_BSLASHimport] = ACTIONS(5952), - [anon_sym_BSLASHsubimport] = ACTIONS(5952), - [anon_sym_BSLASHinputfrom] = ACTIONS(5952), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5952), - [anon_sym_BSLASHincludefrom] = ACTIONS(5952), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5952), - [anon_sym_BSLASHcaption] = ACTIONS(5952), - [anon_sym_BSLASHcite] = ACTIONS(5952), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCite] = ACTIONS(5952), - [anon_sym_BSLASHnocite] = ACTIONS(5952), - [anon_sym_BSLASHcitet] = ACTIONS(5952), - [anon_sym_BSLASHcitep] = ACTIONS(5952), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteauthor] = ACTIONS(5952), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5952), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitetitle] = ACTIONS(5952), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteyear] = ACTIONS(5952), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitedate] = ACTIONS(5952), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteurl] = ACTIONS(5952), - [anon_sym_BSLASHfullcite] = ACTIONS(5952), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5952), - [anon_sym_BSLASHcitealt] = ACTIONS(5952), - [anon_sym_BSLASHcitealp] = ACTIONS(5952), - [anon_sym_BSLASHcitetext] = ACTIONS(5952), - [anon_sym_BSLASHparencite] = ACTIONS(5952), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHParencite] = ACTIONS(5952), - [anon_sym_BSLASHfootcite] = ACTIONS(5952), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5952), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5952), - [anon_sym_BSLASHtextcite] = ACTIONS(5952), - [anon_sym_BSLASHTextcite] = ACTIONS(5952), - [anon_sym_BSLASHsmartcite] = ACTIONS(5952), - [anon_sym_BSLASHSmartcite] = ACTIONS(5952), - [anon_sym_BSLASHsupercite] = ACTIONS(5952), - [anon_sym_BSLASHautocite] = ACTIONS(5952), - [anon_sym_BSLASHAutocite] = ACTIONS(5952), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHvolcite] = ACTIONS(5952), - [anon_sym_BSLASHVolcite] = ACTIONS(5952), - [anon_sym_BSLASHpvolcite] = ACTIONS(5952), - [anon_sym_BSLASHPvolcite] = ACTIONS(5952), - [anon_sym_BSLASHfvolcite] = ACTIONS(5952), - [anon_sym_BSLASHftvolcite] = ACTIONS(5952), - [anon_sym_BSLASHsvolcite] = ACTIONS(5952), - [anon_sym_BSLASHSvolcite] = ACTIONS(5952), - [anon_sym_BSLASHtvolcite] = ACTIONS(5952), - [anon_sym_BSLASHTvolcite] = ACTIONS(5952), - [anon_sym_BSLASHavolcite] = ACTIONS(5952), - [anon_sym_BSLASHAvolcite] = ACTIONS(5952), - [anon_sym_BSLASHnotecite] = ACTIONS(5952), - [anon_sym_BSLASHNotecite] = ACTIONS(5952), - [anon_sym_BSLASHpnotecite] = ACTIONS(5952), - [anon_sym_BSLASHPnotecite] = ACTIONS(5952), - [anon_sym_BSLASHfnotecite] = ACTIONS(5952), - [anon_sym_BSLASHlabel] = ACTIONS(5952), - [anon_sym_BSLASHref] = ACTIONS(5952), - [anon_sym_BSLASHeqref] = ACTIONS(5952), - [anon_sym_BSLASHvref] = ACTIONS(5952), - [anon_sym_BSLASHVref] = ACTIONS(5952), - [anon_sym_BSLASHautoref] = ACTIONS(5952), - [anon_sym_BSLASHpageref] = ACTIONS(5952), - [anon_sym_BSLASHcref] = ACTIONS(5952), - [anon_sym_BSLASHCref] = ACTIONS(5952), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5954), - [anon_sym_BSLASHnamecref] = ACTIONS(5952), - [anon_sym_BSLASHnameCref] = ACTIONS(5952), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5952), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5952), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5952), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5952), - [anon_sym_BSLASHlabelcref] = ACTIONS(5952), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5952), - [anon_sym_BSLASHcrefrange] = ACTIONS(5952), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCrefrange] = ACTIONS(5952), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5954), - [anon_sym_BSLASHnewlabel] = ACTIONS(5952), - [anon_sym_BSLASHnewcommand] = ACTIONS(5952), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5952), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5952), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5954), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHdef] = ACTIONS(5952), - [anon_sym_BSLASHlet] = ACTIONS(5952), - [anon_sym_BSLASHleft] = ACTIONS(5952), - [anon_sym_BSLASHbig] = ACTIONS(5952), - [anon_sym_BSLASHBig] = ACTIONS(5952), - [anon_sym_BSLASHbigg] = ACTIONS(5952), - [anon_sym_BSLASHBigg] = ACTIONS(5952), - [anon_sym_BSLASHbigl] = ACTIONS(5952), - [anon_sym_BSLASHBigl] = ACTIONS(5952), - [anon_sym_BSLASHbiggl] = ACTIONS(5952), - [anon_sym_BSLASHBiggl] = ACTIONS(5952), - [anon_sym_BSLASHright] = ACTIONS(5952), - [anon_sym_BSLASHbigr] = ACTIONS(5952), - [anon_sym_BSLASHBigr] = ACTIONS(5952), - [anon_sym_BSLASHbiggr] = ACTIONS(5952), - [anon_sym_BSLASHBiggr] = ACTIONS(5952), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5952), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5952), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5952), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5952), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5952), - [anon_sym_BSLASHgls] = ACTIONS(5952), - [anon_sym_BSLASHGls] = ACTIONS(5952), - [anon_sym_BSLASHGLS] = ACTIONS(5952), - [anon_sym_BSLASHglspl] = ACTIONS(5952), - [anon_sym_BSLASHGlspl] = ACTIONS(5952), - [anon_sym_BSLASHGLSpl] = ACTIONS(5952), - [anon_sym_BSLASHglsdisp] = ACTIONS(5952), - [anon_sym_BSLASHglslink] = ACTIONS(5952), - [anon_sym_BSLASHglstext] = ACTIONS(5952), - [anon_sym_BSLASHGlstext] = ACTIONS(5952), - [anon_sym_BSLASHGLStext] = ACTIONS(5952), - [anon_sym_BSLASHglsfirst] = ACTIONS(5952), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5952), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5952), - [anon_sym_BSLASHglsplural] = ACTIONS(5952), - [anon_sym_BSLASHGlsplural] = ACTIONS(5952), - [anon_sym_BSLASHGLSplural] = ACTIONS(5952), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHglsname] = ACTIONS(5952), - [anon_sym_BSLASHGlsname] = ACTIONS(5952), - [anon_sym_BSLASHGLSname] = ACTIONS(5952), - [anon_sym_BSLASHglssymbol] = ACTIONS(5952), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5952), - [anon_sym_BSLASHglsdesc] = ACTIONS(5952), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5952), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5952), - [anon_sym_BSLASHglsuseri] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5952), - [anon_sym_BSLASHglsuserii] = ACTIONS(5952), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5952), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5952), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5952), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5952), - [anon_sym_BSLASHglsuserv] = ACTIONS(5952), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5952), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5952), - [anon_sym_BSLASHglsuservi] = ACTIONS(5952), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5952), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5952), - [anon_sym_BSLASHnewacronym] = ACTIONS(5952), - [anon_sym_BSLASHacrshort] = ACTIONS(5952), - [anon_sym_BSLASHAcrshort] = ACTIONS(5952), - [anon_sym_BSLASHACRshort] = ACTIONS(5952), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5952), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5952), - [anon_sym_BSLASHacrlong] = ACTIONS(5952), - [anon_sym_BSLASHAcrlong] = ACTIONS(5952), - [anon_sym_BSLASHACRlong] = ACTIONS(5952), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5952), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5952), - [anon_sym_BSLASHacrfull] = ACTIONS(5952), - [anon_sym_BSLASHAcrfull] = ACTIONS(5952), - [anon_sym_BSLASHACRfull] = ACTIONS(5952), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5952), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5952), - [anon_sym_BSLASHacs] = ACTIONS(5952), - [anon_sym_BSLASHAcs] = ACTIONS(5952), - [anon_sym_BSLASHacsp] = ACTIONS(5952), - [anon_sym_BSLASHAcsp] = ACTIONS(5952), - [anon_sym_BSLASHacl] = ACTIONS(5952), - [anon_sym_BSLASHAcl] = ACTIONS(5952), - [anon_sym_BSLASHaclp] = ACTIONS(5952), - [anon_sym_BSLASHAclp] = ACTIONS(5952), - [anon_sym_BSLASHacf] = ACTIONS(5952), - [anon_sym_BSLASHAcf] = ACTIONS(5952), - [anon_sym_BSLASHacfp] = ACTIONS(5952), - [anon_sym_BSLASHAcfp] = ACTIONS(5952), - [anon_sym_BSLASHac] = ACTIONS(5952), - [anon_sym_BSLASHAc] = ACTIONS(5952), - [anon_sym_BSLASHacp] = ACTIONS(5952), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5952), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5952), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5952), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5952), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5952), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5952), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5952), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5954), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5952), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5954), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5952), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5952), - [anon_sym_BSLASHcolor] = ACTIONS(5952), - [anon_sym_BSLASHcolorbox] = ACTIONS(5952), - [anon_sym_BSLASHtextcolor] = ACTIONS(5952), - [anon_sym_BSLASHpagecolor] = ACTIONS(5952), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5952), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5952), - [anon_sym_BSLASHtext] = ACTIONS(5952), - [anon_sym_BSLASHintertext] = ACTIONS(5952), - [anon_sym_shortintertext] = ACTIONS(5952), - }, - [424] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(5956), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_EQ] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_BSLASHpart] = ACTIONS(5956), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddpart] = ACTIONS(5956), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHchapter] = ACTIONS(5956), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddchap] = ACTIONS(5956), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsection] = ACTIONS(5956), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddsec] = ACTIONS(5956), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHparagraph] = ACTIONS(5956), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5956), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(5958), - [sym_word] = ACTIONS(5956), - [sym_placeholder] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5956), - [anon_sym_GT] = ACTIONS(5956), - [anon_sym_BANG] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_SQUOTE] = ACTIONS(5956), - [anon_sym__] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5958), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5958), - [anon_sym_DOLLAR] = ACTIONS(5956), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5958), - [anon_sym_BSLASHbegin] = ACTIONS(5956), - [anon_sym_BSLASHtitle] = ACTIONS(5956), - [anon_sym_BSLASHauthor] = ACTIONS(5956), - [anon_sym_BSLASHusepackage] = ACTIONS(5956), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5956), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5956), - [anon_sym_BSLASHinclude] = ACTIONS(5956), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5956), - [anon_sym_BSLASHinput] = ACTIONS(5956), - [anon_sym_BSLASHsubfile] = ACTIONS(5956), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5956), - [anon_sym_BSLASHbibliography] = ACTIONS(5956), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5956), - [anon_sym_BSLASHincludesvg] = ACTIONS(5956), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5956), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5956), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5956), - [anon_sym_BSLASHimport] = ACTIONS(5956), - [anon_sym_BSLASHsubimport] = ACTIONS(5956), - [anon_sym_BSLASHinputfrom] = ACTIONS(5956), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5956), - [anon_sym_BSLASHincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHcaption] = ACTIONS(5956), - [anon_sym_BSLASHcite] = ACTIONS(5956), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCite] = ACTIONS(5956), - [anon_sym_BSLASHnocite] = ACTIONS(5956), - [anon_sym_BSLASHcitet] = ACTIONS(5956), - [anon_sym_BSLASHcitep] = ACTIONS(5956), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteauthor] = ACTIONS(5956), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5956), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitetitle] = ACTIONS(5956), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteyear] = ACTIONS(5956), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitedate] = ACTIONS(5956), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteurl] = ACTIONS(5956), - [anon_sym_BSLASHfullcite] = ACTIONS(5956), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5956), - [anon_sym_BSLASHcitealt] = ACTIONS(5956), - [anon_sym_BSLASHcitealp] = ACTIONS(5956), - [anon_sym_BSLASHcitetext] = ACTIONS(5956), - [anon_sym_BSLASHparencite] = ACTIONS(5956), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHParencite] = ACTIONS(5956), - [anon_sym_BSLASHfootcite] = ACTIONS(5956), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5956), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5956), - [anon_sym_BSLASHtextcite] = ACTIONS(5956), - [anon_sym_BSLASHTextcite] = ACTIONS(5956), - [anon_sym_BSLASHsmartcite] = ACTIONS(5956), - [anon_sym_BSLASHSmartcite] = ACTIONS(5956), - [anon_sym_BSLASHsupercite] = ACTIONS(5956), - [anon_sym_BSLASHautocite] = ACTIONS(5956), - [anon_sym_BSLASHAutocite] = ACTIONS(5956), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHvolcite] = ACTIONS(5956), - [anon_sym_BSLASHVolcite] = ACTIONS(5956), - [anon_sym_BSLASHpvolcite] = ACTIONS(5956), - [anon_sym_BSLASHPvolcite] = ACTIONS(5956), - [anon_sym_BSLASHfvolcite] = ACTIONS(5956), - [anon_sym_BSLASHftvolcite] = ACTIONS(5956), - [anon_sym_BSLASHsvolcite] = ACTIONS(5956), - [anon_sym_BSLASHSvolcite] = ACTIONS(5956), - [anon_sym_BSLASHtvolcite] = ACTIONS(5956), - [anon_sym_BSLASHTvolcite] = ACTIONS(5956), - [anon_sym_BSLASHavolcite] = ACTIONS(5956), - [anon_sym_BSLASHAvolcite] = ACTIONS(5956), - [anon_sym_BSLASHnotecite] = ACTIONS(5956), - [anon_sym_BSLASHNotecite] = ACTIONS(5956), - [anon_sym_BSLASHpnotecite] = ACTIONS(5956), - [anon_sym_BSLASHPnotecite] = ACTIONS(5956), - [anon_sym_BSLASHfnotecite] = ACTIONS(5956), - [anon_sym_BSLASHlabel] = ACTIONS(5956), - [anon_sym_BSLASHref] = ACTIONS(5956), - [anon_sym_BSLASHeqref] = ACTIONS(5956), - [anon_sym_BSLASHvref] = ACTIONS(5956), - [anon_sym_BSLASHVref] = ACTIONS(5956), - [anon_sym_BSLASHautoref] = ACTIONS(5956), - [anon_sym_BSLASHpageref] = ACTIONS(5956), - [anon_sym_BSLASHcref] = ACTIONS(5956), - [anon_sym_BSLASHCref] = ACTIONS(5956), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnameCref] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHlabelcref] = ACTIONS(5956), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCrefrange] = ACTIONS(5956), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnewlabel] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5956), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5956), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5958), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHdef] = ACTIONS(5956), - [anon_sym_BSLASHlet] = ACTIONS(5956), - [anon_sym_BSLASHleft] = ACTIONS(5956), - [anon_sym_BSLASHbig] = ACTIONS(5956), - [anon_sym_BSLASHBig] = ACTIONS(5956), - [anon_sym_BSLASHbigg] = ACTIONS(5956), - [anon_sym_BSLASHBigg] = ACTIONS(5956), - [anon_sym_BSLASHbigl] = ACTIONS(5956), - [anon_sym_BSLASHBigl] = ACTIONS(5956), - [anon_sym_BSLASHbiggl] = ACTIONS(5956), - [anon_sym_BSLASHBiggl] = ACTIONS(5956), - [anon_sym_BSLASHright] = ACTIONS(5956), - [anon_sym_BSLASHbigr] = ACTIONS(5956), - [anon_sym_BSLASHBigr] = ACTIONS(5956), - [anon_sym_BSLASHbiggr] = ACTIONS(5956), - [anon_sym_BSLASHBiggr] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5956), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5956), - [anon_sym_BSLASHgls] = ACTIONS(5956), - [anon_sym_BSLASHGls] = ACTIONS(5956), - [anon_sym_BSLASHGLS] = ACTIONS(5956), - [anon_sym_BSLASHglspl] = ACTIONS(5956), - [anon_sym_BSLASHGlspl] = ACTIONS(5956), - [anon_sym_BSLASHGLSpl] = ACTIONS(5956), - [anon_sym_BSLASHglsdisp] = ACTIONS(5956), - [anon_sym_BSLASHglslink] = ACTIONS(5956), - [anon_sym_BSLASHglstext] = ACTIONS(5956), - [anon_sym_BSLASHGlstext] = ACTIONS(5956), - [anon_sym_BSLASHGLStext] = ACTIONS(5956), - [anon_sym_BSLASHglsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5956), - [anon_sym_BSLASHglsplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSplural] = ACTIONS(5956), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHglsname] = ACTIONS(5956), - [anon_sym_BSLASHGlsname] = ACTIONS(5956), - [anon_sym_BSLASHGLSname] = ACTIONS(5956), - [anon_sym_BSLASHglssymbol] = ACTIONS(5956), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5956), - [anon_sym_BSLASHglsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5956), - [anon_sym_BSLASHglsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5956), - [anon_sym_BSLASHglsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5956), - [anon_sym_BSLASHglsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5956), - [anon_sym_BSLASHglsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5956), - [anon_sym_BSLASHnewacronym] = ACTIONS(5956), - [anon_sym_BSLASHacrshort] = ACTIONS(5956), - [anon_sym_BSLASHAcrshort] = ACTIONS(5956), - [anon_sym_BSLASHACRshort] = ACTIONS(5956), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5956), - [anon_sym_BSLASHacrlong] = ACTIONS(5956), - [anon_sym_BSLASHAcrlong] = ACTIONS(5956), - [anon_sym_BSLASHACRlong] = ACTIONS(5956), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5956), - [anon_sym_BSLASHacrfull] = ACTIONS(5956), - [anon_sym_BSLASHAcrfull] = ACTIONS(5956), - [anon_sym_BSLASHACRfull] = ACTIONS(5956), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5956), - [anon_sym_BSLASHacs] = ACTIONS(5956), - [anon_sym_BSLASHAcs] = ACTIONS(5956), - [anon_sym_BSLASHacsp] = ACTIONS(5956), - [anon_sym_BSLASHAcsp] = ACTIONS(5956), - [anon_sym_BSLASHacl] = ACTIONS(5956), - [anon_sym_BSLASHAcl] = ACTIONS(5956), - [anon_sym_BSLASHaclp] = ACTIONS(5956), - [anon_sym_BSLASHAclp] = ACTIONS(5956), - [anon_sym_BSLASHacf] = ACTIONS(5956), - [anon_sym_BSLASHAcf] = ACTIONS(5956), - [anon_sym_BSLASHacfp] = ACTIONS(5956), - [anon_sym_BSLASHAcfp] = ACTIONS(5956), - [anon_sym_BSLASHac] = ACTIONS(5956), - [anon_sym_BSLASHAc] = ACTIONS(5956), - [anon_sym_BSLASHacp] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5956), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5956), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5956), - [anon_sym_BSLASHcolor] = ACTIONS(5956), - [anon_sym_BSLASHcolorbox] = ACTIONS(5956), - [anon_sym_BSLASHtextcolor] = ACTIONS(5956), - [anon_sym_BSLASHpagecolor] = ACTIONS(5956), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5956), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5956), - [anon_sym_BSLASHtext] = ACTIONS(5956), - [anon_sym_BSLASHintertext] = ACTIONS(5956), - [anon_sym_shortintertext] = ACTIONS(5956), - }, - [425] = { - [sym__paragraph_declaration] = STATE(218), - [sym_paragraph] = STATE(411), - [aux_sym__section_repeat6] = STATE(411), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5960), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHitem] = ACTIONS(5960), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5962), - [anon_sym_LBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHright] = ACTIONS(5960), - [anon_sym_BSLASHbigr] = ACTIONS(5960), - [anon_sym_BSLASHBigr] = ACTIONS(5960), - [anon_sym_BSLASHbiggr] = ACTIONS(5960), - [anon_sym_BSLASHBiggr] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [426] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(5956), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_EQ] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_BSLASHpart] = ACTIONS(5956), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddpart] = ACTIONS(5956), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHchapter] = ACTIONS(5956), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddchap] = ACTIONS(5956), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsection] = ACTIONS(5956), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddsec] = ACTIONS(5956), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHparagraph] = ACTIONS(5956), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(5956), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5958), - [anon_sym_LBRACE] = ACTIONS(5958), - [sym_word] = ACTIONS(5956), - [sym_placeholder] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5956), - [anon_sym_GT] = ACTIONS(5956), - [anon_sym_BANG] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_SQUOTE] = ACTIONS(5956), - [anon_sym__] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5958), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5958), - [anon_sym_DOLLAR] = ACTIONS(5956), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5958), - [anon_sym_BSLASHbegin] = ACTIONS(5956), - [anon_sym_BSLASHtitle] = ACTIONS(5956), - [anon_sym_BSLASHauthor] = ACTIONS(5956), - [anon_sym_BSLASHusepackage] = ACTIONS(5956), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5956), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5956), - [anon_sym_BSLASHinclude] = ACTIONS(5956), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5956), - [anon_sym_BSLASHinput] = ACTIONS(5956), - [anon_sym_BSLASHsubfile] = ACTIONS(5956), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5956), - [anon_sym_BSLASHbibliography] = ACTIONS(5956), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5956), - [anon_sym_BSLASHincludesvg] = ACTIONS(5956), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5956), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5956), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5956), - [anon_sym_BSLASHimport] = ACTIONS(5956), - [anon_sym_BSLASHsubimport] = ACTIONS(5956), - [anon_sym_BSLASHinputfrom] = ACTIONS(5956), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5956), - [anon_sym_BSLASHincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHcaption] = ACTIONS(5956), - [anon_sym_BSLASHcite] = ACTIONS(5956), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCite] = ACTIONS(5956), - [anon_sym_BSLASHnocite] = ACTIONS(5956), - [anon_sym_BSLASHcitet] = ACTIONS(5956), - [anon_sym_BSLASHcitep] = ACTIONS(5956), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteauthor] = ACTIONS(5956), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5956), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitetitle] = ACTIONS(5956), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteyear] = ACTIONS(5956), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitedate] = ACTIONS(5956), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteurl] = ACTIONS(5956), - [anon_sym_BSLASHfullcite] = ACTIONS(5956), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5956), - [anon_sym_BSLASHcitealt] = ACTIONS(5956), - [anon_sym_BSLASHcitealp] = ACTIONS(5956), - [anon_sym_BSLASHcitetext] = ACTIONS(5956), - [anon_sym_BSLASHparencite] = ACTIONS(5956), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHParencite] = ACTIONS(5956), - [anon_sym_BSLASHfootcite] = ACTIONS(5956), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5956), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5956), - [anon_sym_BSLASHtextcite] = ACTIONS(5956), - [anon_sym_BSLASHTextcite] = ACTIONS(5956), - [anon_sym_BSLASHsmartcite] = ACTIONS(5956), - [anon_sym_BSLASHSmartcite] = ACTIONS(5956), - [anon_sym_BSLASHsupercite] = ACTIONS(5956), - [anon_sym_BSLASHautocite] = ACTIONS(5956), - [anon_sym_BSLASHAutocite] = ACTIONS(5956), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHvolcite] = ACTIONS(5956), - [anon_sym_BSLASHVolcite] = ACTIONS(5956), - [anon_sym_BSLASHpvolcite] = ACTIONS(5956), - [anon_sym_BSLASHPvolcite] = ACTIONS(5956), - [anon_sym_BSLASHfvolcite] = ACTIONS(5956), - [anon_sym_BSLASHftvolcite] = ACTIONS(5956), - [anon_sym_BSLASHsvolcite] = ACTIONS(5956), - [anon_sym_BSLASHSvolcite] = ACTIONS(5956), - [anon_sym_BSLASHtvolcite] = ACTIONS(5956), - [anon_sym_BSLASHTvolcite] = ACTIONS(5956), - [anon_sym_BSLASHavolcite] = ACTIONS(5956), - [anon_sym_BSLASHAvolcite] = ACTIONS(5956), - [anon_sym_BSLASHnotecite] = ACTIONS(5956), - [anon_sym_BSLASHNotecite] = ACTIONS(5956), - [anon_sym_BSLASHpnotecite] = ACTIONS(5956), - [anon_sym_BSLASHPnotecite] = ACTIONS(5956), - [anon_sym_BSLASHfnotecite] = ACTIONS(5956), - [anon_sym_BSLASHlabel] = ACTIONS(5956), - [anon_sym_BSLASHref] = ACTIONS(5956), - [anon_sym_BSLASHeqref] = ACTIONS(5956), - [anon_sym_BSLASHvref] = ACTIONS(5956), - [anon_sym_BSLASHVref] = ACTIONS(5956), - [anon_sym_BSLASHautoref] = ACTIONS(5956), - [anon_sym_BSLASHpageref] = ACTIONS(5956), - [anon_sym_BSLASHcref] = ACTIONS(5956), - [anon_sym_BSLASHCref] = ACTIONS(5956), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnameCref] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHlabelcref] = ACTIONS(5956), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCrefrange] = ACTIONS(5956), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnewlabel] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5956), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5956), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5958), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHdef] = ACTIONS(5956), - [anon_sym_BSLASHlet] = ACTIONS(5956), - [anon_sym_BSLASHleft] = ACTIONS(5956), - [anon_sym_BSLASHbig] = ACTIONS(5956), - [anon_sym_BSLASHBig] = ACTIONS(5956), - [anon_sym_BSLASHbigg] = ACTIONS(5956), - [anon_sym_BSLASHBigg] = ACTIONS(5956), - [anon_sym_BSLASHbigl] = ACTIONS(5956), - [anon_sym_BSLASHBigl] = ACTIONS(5956), - [anon_sym_BSLASHbiggl] = ACTIONS(5956), - [anon_sym_BSLASHBiggl] = ACTIONS(5956), - [anon_sym_BSLASHright] = ACTIONS(5956), - [anon_sym_BSLASHbigr] = ACTIONS(5956), - [anon_sym_BSLASHBigr] = ACTIONS(5956), - [anon_sym_BSLASHbiggr] = ACTIONS(5956), - [anon_sym_BSLASHBiggr] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5956), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5956), - [anon_sym_BSLASHgls] = ACTIONS(5956), - [anon_sym_BSLASHGls] = ACTIONS(5956), - [anon_sym_BSLASHGLS] = ACTIONS(5956), - [anon_sym_BSLASHglspl] = ACTIONS(5956), - [anon_sym_BSLASHGlspl] = ACTIONS(5956), - [anon_sym_BSLASHGLSpl] = ACTIONS(5956), - [anon_sym_BSLASHglsdisp] = ACTIONS(5956), - [anon_sym_BSLASHglslink] = ACTIONS(5956), - [anon_sym_BSLASHglstext] = ACTIONS(5956), - [anon_sym_BSLASHGlstext] = ACTIONS(5956), - [anon_sym_BSLASHGLStext] = ACTIONS(5956), - [anon_sym_BSLASHglsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5956), - [anon_sym_BSLASHglsplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSplural] = ACTIONS(5956), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHglsname] = ACTIONS(5956), - [anon_sym_BSLASHGlsname] = ACTIONS(5956), - [anon_sym_BSLASHGLSname] = ACTIONS(5956), - [anon_sym_BSLASHglssymbol] = ACTIONS(5956), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5956), - [anon_sym_BSLASHglsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5956), - [anon_sym_BSLASHglsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5956), - [anon_sym_BSLASHglsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5956), - [anon_sym_BSLASHglsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5956), - [anon_sym_BSLASHglsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5956), - [anon_sym_BSLASHnewacronym] = ACTIONS(5956), - [anon_sym_BSLASHacrshort] = ACTIONS(5956), - [anon_sym_BSLASHAcrshort] = ACTIONS(5956), - [anon_sym_BSLASHACRshort] = ACTIONS(5956), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5956), - [anon_sym_BSLASHacrlong] = ACTIONS(5956), - [anon_sym_BSLASHAcrlong] = ACTIONS(5956), - [anon_sym_BSLASHACRlong] = ACTIONS(5956), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5956), - [anon_sym_BSLASHacrfull] = ACTIONS(5956), - [anon_sym_BSLASHAcrfull] = ACTIONS(5956), - [anon_sym_BSLASHACRfull] = ACTIONS(5956), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5956), - [anon_sym_BSLASHacs] = ACTIONS(5956), - [anon_sym_BSLASHAcs] = ACTIONS(5956), - [anon_sym_BSLASHacsp] = ACTIONS(5956), - [anon_sym_BSLASHAcsp] = ACTIONS(5956), - [anon_sym_BSLASHacl] = ACTIONS(5956), - [anon_sym_BSLASHAcl] = ACTIONS(5956), - [anon_sym_BSLASHaclp] = ACTIONS(5956), - [anon_sym_BSLASHAclp] = ACTIONS(5956), - [anon_sym_BSLASHacf] = ACTIONS(5956), - [anon_sym_BSLASHAcf] = ACTIONS(5956), - [anon_sym_BSLASHacfp] = ACTIONS(5956), - [anon_sym_BSLASHAcfp] = ACTIONS(5956), - [anon_sym_BSLASHac] = ACTIONS(5956), - [anon_sym_BSLASHAc] = ACTIONS(5956), - [anon_sym_BSLASHacp] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5956), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5956), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5956), - [anon_sym_BSLASHcolor] = ACTIONS(5956), - [anon_sym_BSLASHcolorbox] = ACTIONS(5956), - [anon_sym_BSLASHtextcolor] = ACTIONS(5956), - [anon_sym_BSLASHpagecolor] = ACTIONS(5956), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5956), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5956), - [anon_sym_BSLASHtext] = ACTIONS(5956), - [anon_sym_BSLASHintertext] = ACTIONS(5956), - [anon_sym_shortintertext] = ACTIONS(5956), - }, - [427] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(5960), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5960), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHright] = ACTIONS(5960), - [anon_sym_BSLASHbigr] = ACTIONS(5960), - [anon_sym_BSLASHBigr] = ACTIONS(5960), - [anon_sym_BSLASHbiggr] = ACTIONS(5960), - [anon_sym_BSLASHBiggr] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [428] = { - [sym__subparagraph_declaration] = STATE(228), - [sym_subparagraph] = STATE(412), - [aux_sym__section_repeat7] = STATE(412), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(5960), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(5960), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5962), - [anon_sym_LBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHright] = ACTIONS(5960), - [anon_sym_BSLASHbigr] = ACTIONS(5960), - [anon_sym_BSLASHBigr] = ACTIONS(5960), - [anon_sym_BSLASHbiggr] = ACTIONS(5960), - [anon_sym_BSLASHBiggr] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [429] = { - [sym__enum_itemdeclaration] = STATE(238), - [sym_enum_item] = STATE(413), - [aux_sym__section_repeat8] = STATE(413), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHright] = ACTIONS(5824), - [anon_sym_BSLASHbigr] = ACTIONS(5824), - [anon_sym_BSLASHBigr] = ACTIONS(5824), - [anon_sym_BSLASHbiggr] = ACTIONS(5824), - [anon_sym_BSLASHBiggr] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [430] = { - [sym__section_declaration] = STATE(187), - [sym_section] = STATE(408), - [aux_sym__section_repeat3] = STATE(408), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHright] = ACTIONS(5844), - [anon_sym_BSLASHbigr] = ACTIONS(5844), - [anon_sym_BSLASHBigr] = ACTIONS(5844), - [anon_sym_BSLASHbiggr] = ACTIONS(5844), - [anon_sym_BSLASHBiggr] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [431] = { - [sym_curly_group] = STATE(443), - [aux_sym_generic_command_repeat1] = STATE(433), - [sym_command_name] = ACTIONS(5964), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5964), - [anon_sym_LBRACK] = ACTIONS(5966), - [anon_sym_RBRACK] = ACTIONS(5966), - [anon_sym_COMMA] = ACTIONS(5966), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_LPAREN] = ACTIONS(5966), - [anon_sym_RPAREN] = ACTIONS(5966), - [anon_sym_BSLASHpart] = ACTIONS(5964), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddpart] = ACTIONS(5964), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5966), - [anon_sym_BSLASHchapter] = ACTIONS(5964), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddchap] = ACTIONS(5964), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsection] = ACTIONS(5964), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddsec] = ACTIONS(5964), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubsection] = ACTIONS(5964), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5964), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHparagraph] = ACTIONS(5964), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5964), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5966), - [anon_sym_BSLASHitem] = ACTIONS(5964), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5966), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(5964), - [sym_placeholder] = ACTIONS(5966), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5966), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_SQUOTE] = ACTIONS(5964), - [anon_sym__] = ACTIONS(5966), - [anon_sym_CARET] = ACTIONS(5966), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5966), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5966), - [anon_sym_DOLLAR] = ACTIONS(5964), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5966), - [anon_sym_BSLASHbegin] = ACTIONS(5964), - [anon_sym_BSLASHtitle] = ACTIONS(5964), - [anon_sym_BSLASHauthor] = ACTIONS(5964), - [anon_sym_BSLASHusepackage] = ACTIONS(5964), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5964), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5964), - [anon_sym_BSLASHinclude] = ACTIONS(5964), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5964), - [anon_sym_BSLASHinput] = ACTIONS(5964), - [anon_sym_BSLASHsubfile] = ACTIONS(5964), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5964), - [anon_sym_BSLASHbibliography] = ACTIONS(5964), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5964), - [anon_sym_BSLASHincludesvg] = ACTIONS(5964), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5964), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5964), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5964), - [anon_sym_BSLASHimport] = ACTIONS(5964), - [anon_sym_BSLASHsubimport] = ACTIONS(5964), - [anon_sym_BSLASHinputfrom] = ACTIONS(5964), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5964), - [anon_sym_BSLASHincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHcaption] = ACTIONS(5964), - [anon_sym_BSLASHcite] = ACTIONS(5964), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCite] = ACTIONS(5964), - [anon_sym_BSLASHnocite] = ACTIONS(5964), - [anon_sym_BSLASHcitet] = ACTIONS(5964), - [anon_sym_BSLASHcitep] = ACTIONS(5964), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteauthor] = ACTIONS(5964), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5964), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitetitle] = ACTIONS(5964), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteyear] = ACTIONS(5964), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitedate] = ACTIONS(5964), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteurl] = ACTIONS(5964), - [anon_sym_BSLASHfullcite] = ACTIONS(5964), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5964), - [anon_sym_BSLASHcitealt] = ACTIONS(5964), - [anon_sym_BSLASHcitealp] = ACTIONS(5964), - [anon_sym_BSLASHcitetext] = ACTIONS(5964), - [anon_sym_BSLASHparencite] = ACTIONS(5964), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHParencite] = ACTIONS(5964), - [anon_sym_BSLASHfootcite] = ACTIONS(5964), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5964), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5964), - [anon_sym_BSLASHtextcite] = ACTIONS(5964), - [anon_sym_BSLASHTextcite] = ACTIONS(5964), - [anon_sym_BSLASHsmartcite] = ACTIONS(5964), - [anon_sym_BSLASHSmartcite] = ACTIONS(5964), - [anon_sym_BSLASHsupercite] = ACTIONS(5964), - [anon_sym_BSLASHautocite] = ACTIONS(5964), - [anon_sym_BSLASHAutocite] = ACTIONS(5964), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHvolcite] = ACTIONS(5964), - [anon_sym_BSLASHVolcite] = ACTIONS(5964), - [anon_sym_BSLASHpvolcite] = ACTIONS(5964), - [anon_sym_BSLASHPvolcite] = ACTIONS(5964), - [anon_sym_BSLASHfvolcite] = ACTIONS(5964), - [anon_sym_BSLASHftvolcite] = ACTIONS(5964), - [anon_sym_BSLASHsvolcite] = ACTIONS(5964), - [anon_sym_BSLASHSvolcite] = ACTIONS(5964), - [anon_sym_BSLASHtvolcite] = ACTIONS(5964), - [anon_sym_BSLASHTvolcite] = ACTIONS(5964), - [anon_sym_BSLASHavolcite] = ACTIONS(5964), - [anon_sym_BSLASHAvolcite] = ACTIONS(5964), - [anon_sym_BSLASHnotecite] = ACTIONS(5964), - [anon_sym_BSLASHNotecite] = ACTIONS(5964), - [anon_sym_BSLASHpnotecite] = ACTIONS(5964), - [anon_sym_BSLASHPnotecite] = ACTIONS(5964), - [anon_sym_BSLASHfnotecite] = ACTIONS(5964), - [anon_sym_BSLASHlabel] = ACTIONS(5964), - [anon_sym_BSLASHref] = ACTIONS(5964), - [anon_sym_BSLASHeqref] = ACTIONS(5964), - [anon_sym_BSLASHvref] = ACTIONS(5964), - [anon_sym_BSLASHVref] = ACTIONS(5964), - [anon_sym_BSLASHautoref] = ACTIONS(5964), - [anon_sym_BSLASHpageref] = ACTIONS(5964), - [anon_sym_BSLASHcref] = ACTIONS(5964), - [anon_sym_BSLASHCref] = ACTIONS(5964), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnameCref] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHlabelcref] = ACTIONS(5964), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCrefrange] = ACTIONS(5964), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnewlabel] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5964), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5964), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5966), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHdef] = ACTIONS(5964), - [anon_sym_BSLASHlet] = ACTIONS(5964), - [anon_sym_BSLASHleft] = ACTIONS(5964), - [anon_sym_BSLASHbig] = ACTIONS(5964), - [anon_sym_BSLASHBig] = ACTIONS(5964), - [anon_sym_BSLASHbigg] = ACTIONS(5964), - [anon_sym_BSLASHBigg] = ACTIONS(5964), - [anon_sym_BSLASHbigl] = ACTIONS(5964), - [anon_sym_BSLASHBigl] = ACTIONS(5964), - [anon_sym_BSLASHbiggl] = ACTIONS(5964), - [anon_sym_BSLASHBiggl] = ACTIONS(5964), - [anon_sym_BSLASHright] = ACTIONS(5964), - [anon_sym_BSLASHbigr] = ACTIONS(5964), - [anon_sym_BSLASHBigr] = ACTIONS(5964), - [anon_sym_BSLASHbiggr] = ACTIONS(5964), - [anon_sym_BSLASHBiggr] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5964), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5964), - [anon_sym_BSLASHgls] = ACTIONS(5964), - [anon_sym_BSLASHGls] = ACTIONS(5964), - [anon_sym_BSLASHGLS] = ACTIONS(5964), - [anon_sym_BSLASHglspl] = ACTIONS(5964), - [anon_sym_BSLASHGlspl] = ACTIONS(5964), - [anon_sym_BSLASHGLSpl] = ACTIONS(5964), - [anon_sym_BSLASHglsdisp] = ACTIONS(5964), - [anon_sym_BSLASHglslink] = ACTIONS(5964), - [anon_sym_BSLASHglstext] = ACTIONS(5964), - [anon_sym_BSLASHGlstext] = ACTIONS(5964), - [anon_sym_BSLASHGLStext] = ACTIONS(5964), - [anon_sym_BSLASHglsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5964), - [anon_sym_BSLASHglsplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSplural] = ACTIONS(5964), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHglsname] = ACTIONS(5964), - [anon_sym_BSLASHGlsname] = ACTIONS(5964), - [anon_sym_BSLASHGLSname] = ACTIONS(5964), - [anon_sym_BSLASHglssymbol] = ACTIONS(5964), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5964), - [anon_sym_BSLASHglsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5964), - [anon_sym_BSLASHglsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5964), - [anon_sym_BSLASHglsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5964), - [anon_sym_BSLASHglsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5964), - [anon_sym_BSLASHglsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5964), - [anon_sym_BSLASHnewacronym] = ACTIONS(5964), - [anon_sym_BSLASHacrshort] = ACTIONS(5964), - [anon_sym_BSLASHAcrshort] = ACTIONS(5964), - [anon_sym_BSLASHACRshort] = ACTIONS(5964), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5964), - [anon_sym_BSLASHacrlong] = ACTIONS(5964), - [anon_sym_BSLASHAcrlong] = ACTIONS(5964), - [anon_sym_BSLASHACRlong] = ACTIONS(5964), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5964), - [anon_sym_BSLASHacrfull] = ACTIONS(5964), - [anon_sym_BSLASHAcrfull] = ACTIONS(5964), - [anon_sym_BSLASHACRfull] = ACTIONS(5964), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5964), - [anon_sym_BSLASHacs] = ACTIONS(5964), - [anon_sym_BSLASHAcs] = ACTIONS(5964), - [anon_sym_BSLASHacsp] = ACTIONS(5964), - [anon_sym_BSLASHAcsp] = ACTIONS(5964), - [anon_sym_BSLASHacl] = ACTIONS(5964), - [anon_sym_BSLASHAcl] = ACTIONS(5964), - [anon_sym_BSLASHaclp] = ACTIONS(5964), - [anon_sym_BSLASHAclp] = ACTIONS(5964), - [anon_sym_BSLASHacf] = ACTIONS(5964), - [anon_sym_BSLASHAcf] = ACTIONS(5964), - [anon_sym_BSLASHacfp] = ACTIONS(5964), - [anon_sym_BSLASHAcfp] = ACTIONS(5964), - [anon_sym_BSLASHac] = ACTIONS(5964), - [anon_sym_BSLASHAc] = ACTIONS(5964), - [anon_sym_BSLASHacp] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5964), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5964), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5964), - [anon_sym_BSLASHcolor] = ACTIONS(5964), - [anon_sym_BSLASHcolorbox] = ACTIONS(5964), - [anon_sym_BSLASHtextcolor] = ACTIONS(5964), - [anon_sym_BSLASHpagecolor] = ACTIONS(5964), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5964), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5964), - [anon_sym_BSLASHtext] = ACTIONS(5964), - [anon_sym_BSLASHintertext] = ACTIONS(5964), - [anon_sym_shortintertext] = ACTIONS(5964), - }, - [432] = { - [sym_command_name] = ACTIONS(5968), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5968), - [anon_sym_BSLASHfi] = ACTIONS(5970), - [anon_sym_LBRACK] = ACTIONS(5972), - [anon_sym_RBRACK] = ACTIONS(5972), - [anon_sym_COMMA] = ACTIONS(5972), - [anon_sym_EQ] = ACTIONS(5972), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_RPAREN] = ACTIONS(5972), - [anon_sym_BSLASHpart] = ACTIONS(5968), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddpart] = ACTIONS(5968), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5972), - [anon_sym_BSLASHchapter] = ACTIONS(5968), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddchap] = ACTIONS(5968), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsection] = ACTIONS(5968), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddsec] = ACTIONS(5968), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubsection] = ACTIONS(5968), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5968), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHparagraph] = ACTIONS(5968), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5968), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5972), - [anon_sym_BSLASHitem] = ACTIONS(5968), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5972), - [anon_sym_LBRACE] = ACTIONS(5972), - [sym_word] = ACTIONS(5968), - [sym_placeholder] = ACTIONS(5972), - [anon_sym_PLUS] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5972), - [anon_sym_STAR] = ACTIONS(5972), - [anon_sym_SLASH] = ACTIONS(5972), - [anon_sym_LT] = ACTIONS(5968), - [anon_sym_GT] = ACTIONS(5968), - [anon_sym_BANG] = ACTIONS(5968), - [anon_sym_PIPE] = ACTIONS(5968), - [anon_sym_COLON] = ACTIONS(5968), - [anon_sym_SQUOTE] = ACTIONS(5968), - [anon_sym__] = ACTIONS(5972), - [anon_sym_CARET] = ACTIONS(5972), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5972), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5972), - [anon_sym_DOLLAR] = ACTIONS(5968), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5972), - [anon_sym_BSLASHbegin] = ACTIONS(5968), - [anon_sym_BSLASHtitle] = ACTIONS(5968), - [anon_sym_BSLASHauthor] = ACTIONS(5968), - [anon_sym_BSLASHusepackage] = ACTIONS(5968), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5968), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5968), - [anon_sym_BSLASHinclude] = ACTIONS(5968), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5968), - [anon_sym_BSLASHinput] = ACTIONS(5968), - [anon_sym_BSLASHsubfile] = ACTIONS(5968), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5968), - [anon_sym_BSLASHbibliography] = ACTIONS(5968), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5968), - [anon_sym_BSLASHincludesvg] = ACTIONS(5968), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5968), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5968), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5968), - [anon_sym_BSLASHimport] = ACTIONS(5968), - [anon_sym_BSLASHsubimport] = ACTIONS(5968), - [anon_sym_BSLASHinputfrom] = ACTIONS(5968), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5968), - [anon_sym_BSLASHincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHcaption] = ACTIONS(5968), - [anon_sym_BSLASHcite] = ACTIONS(5968), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCite] = ACTIONS(5968), - [anon_sym_BSLASHnocite] = ACTIONS(5968), - [anon_sym_BSLASHcitet] = ACTIONS(5968), - [anon_sym_BSLASHcitep] = ACTIONS(5968), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteauthor] = ACTIONS(5968), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5968), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitetitle] = ACTIONS(5968), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteyear] = ACTIONS(5968), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitedate] = ACTIONS(5968), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteurl] = ACTIONS(5968), - [anon_sym_BSLASHfullcite] = ACTIONS(5968), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5968), - [anon_sym_BSLASHcitealt] = ACTIONS(5968), - [anon_sym_BSLASHcitealp] = ACTIONS(5968), - [anon_sym_BSLASHcitetext] = ACTIONS(5968), - [anon_sym_BSLASHparencite] = ACTIONS(5968), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHParencite] = ACTIONS(5968), - [anon_sym_BSLASHfootcite] = ACTIONS(5968), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5968), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5968), - [anon_sym_BSLASHtextcite] = ACTIONS(5968), - [anon_sym_BSLASHTextcite] = ACTIONS(5968), - [anon_sym_BSLASHsmartcite] = ACTIONS(5968), - [anon_sym_BSLASHSmartcite] = ACTIONS(5968), - [anon_sym_BSLASHsupercite] = ACTIONS(5968), - [anon_sym_BSLASHautocite] = ACTIONS(5968), - [anon_sym_BSLASHAutocite] = ACTIONS(5968), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHvolcite] = ACTIONS(5968), - [anon_sym_BSLASHVolcite] = ACTIONS(5968), - [anon_sym_BSLASHpvolcite] = ACTIONS(5968), - [anon_sym_BSLASHPvolcite] = ACTIONS(5968), - [anon_sym_BSLASHfvolcite] = ACTIONS(5968), - [anon_sym_BSLASHftvolcite] = ACTIONS(5968), - [anon_sym_BSLASHsvolcite] = ACTIONS(5968), - [anon_sym_BSLASHSvolcite] = ACTIONS(5968), - [anon_sym_BSLASHtvolcite] = ACTIONS(5968), - [anon_sym_BSLASHTvolcite] = ACTIONS(5968), - [anon_sym_BSLASHavolcite] = ACTIONS(5968), - [anon_sym_BSLASHAvolcite] = ACTIONS(5968), - [anon_sym_BSLASHnotecite] = ACTIONS(5968), - [anon_sym_BSLASHNotecite] = ACTIONS(5968), - [anon_sym_BSLASHpnotecite] = ACTIONS(5968), - [anon_sym_BSLASHPnotecite] = ACTIONS(5968), - [anon_sym_BSLASHfnotecite] = ACTIONS(5968), - [anon_sym_BSLASHlabel] = ACTIONS(5968), - [anon_sym_BSLASHref] = ACTIONS(5968), - [anon_sym_BSLASHeqref] = ACTIONS(5968), - [anon_sym_BSLASHvref] = ACTIONS(5968), - [anon_sym_BSLASHVref] = ACTIONS(5968), - [anon_sym_BSLASHautoref] = ACTIONS(5968), - [anon_sym_BSLASHpageref] = ACTIONS(5968), - [anon_sym_BSLASHcref] = ACTIONS(5968), - [anon_sym_BSLASHCref] = ACTIONS(5968), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnameCref] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHlabelcref] = ACTIONS(5968), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCrefrange] = ACTIONS(5968), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnewlabel] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5968), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5968), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5972), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHdef] = ACTIONS(5968), - [anon_sym_BSLASHlet] = ACTIONS(5968), - [anon_sym_BSLASHleft] = ACTIONS(5968), - [anon_sym_BSLASHbig] = ACTIONS(5968), - [anon_sym_BSLASHBig] = ACTIONS(5968), - [anon_sym_BSLASHbigg] = ACTIONS(5968), - [anon_sym_BSLASHBigg] = ACTIONS(5968), - [anon_sym_BSLASHbigl] = ACTIONS(5968), - [anon_sym_BSLASHBigl] = ACTIONS(5968), - [anon_sym_BSLASHbiggl] = ACTIONS(5968), - [anon_sym_BSLASHBiggl] = ACTIONS(5968), - [anon_sym_BSLASHright] = ACTIONS(5968), - [anon_sym_BSLASHbigr] = ACTIONS(5968), - [anon_sym_BSLASHBigr] = ACTIONS(5968), - [anon_sym_BSLASHbiggr] = ACTIONS(5968), - [anon_sym_BSLASHBiggr] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5968), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5968), - [anon_sym_BSLASHgls] = ACTIONS(5968), - [anon_sym_BSLASHGls] = ACTIONS(5968), - [anon_sym_BSLASHGLS] = ACTIONS(5968), - [anon_sym_BSLASHglspl] = ACTIONS(5968), - [anon_sym_BSLASHGlspl] = ACTIONS(5968), - [anon_sym_BSLASHGLSpl] = ACTIONS(5968), - [anon_sym_BSLASHglsdisp] = ACTIONS(5968), - [anon_sym_BSLASHglslink] = ACTIONS(5968), - [anon_sym_BSLASHglstext] = ACTIONS(5968), - [anon_sym_BSLASHGlstext] = ACTIONS(5968), - [anon_sym_BSLASHGLStext] = ACTIONS(5968), - [anon_sym_BSLASHglsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5968), - [anon_sym_BSLASHglsplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSplural] = ACTIONS(5968), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHglsname] = ACTIONS(5968), - [anon_sym_BSLASHGlsname] = ACTIONS(5968), - [anon_sym_BSLASHGLSname] = ACTIONS(5968), - [anon_sym_BSLASHglssymbol] = ACTIONS(5968), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5968), - [anon_sym_BSLASHglsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5968), - [anon_sym_BSLASHglsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5968), - [anon_sym_BSLASHglsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5968), - [anon_sym_BSLASHglsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5968), - [anon_sym_BSLASHglsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5968), - [anon_sym_BSLASHnewacronym] = ACTIONS(5968), - [anon_sym_BSLASHacrshort] = ACTIONS(5968), - [anon_sym_BSLASHAcrshort] = ACTIONS(5968), - [anon_sym_BSLASHACRshort] = ACTIONS(5968), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5968), - [anon_sym_BSLASHacrlong] = ACTIONS(5968), - [anon_sym_BSLASHAcrlong] = ACTIONS(5968), - [anon_sym_BSLASHACRlong] = ACTIONS(5968), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5968), - [anon_sym_BSLASHacrfull] = ACTIONS(5968), - [anon_sym_BSLASHAcrfull] = ACTIONS(5968), - [anon_sym_BSLASHACRfull] = ACTIONS(5968), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5968), - [anon_sym_BSLASHacs] = ACTIONS(5968), - [anon_sym_BSLASHAcs] = ACTIONS(5968), - [anon_sym_BSLASHacsp] = ACTIONS(5968), - [anon_sym_BSLASHAcsp] = ACTIONS(5968), - [anon_sym_BSLASHacl] = ACTIONS(5968), - [anon_sym_BSLASHAcl] = ACTIONS(5968), - [anon_sym_BSLASHaclp] = ACTIONS(5968), - [anon_sym_BSLASHAclp] = ACTIONS(5968), - [anon_sym_BSLASHacf] = ACTIONS(5968), - [anon_sym_BSLASHAcf] = ACTIONS(5968), - [anon_sym_BSLASHacfp] = ACTIONS(5968), - [anon_sym_BSLASHAcfp] = ACTIONS(5968), - [anon_sym_BSLASHac] = ACTIONS(5968), - [anon_sym_BSLASHAc] = ACTIONS(5968), - [anon_sym_BSLASHacp] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5968), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5968), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5968), - [anon_sym_BSLASHcolor] = ACTIONS(5968), - [anon_sym_BSLASHcolorbox] = ACTIONS(5968), - [anon_sym_BSLASHtextcolor] = ACTIONS(5968), - [anon_sym_BSLASHpagecolor] = ACTIONS(5968), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5968), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5968), - [anon_sym_BSLASHtext] = ACTIONS(5968), - [anon_sym_BSLASHintertext] = ACTIONS(5968), - [anon_sym_shortintertext] = ACTIONS(5968), - [sym__trivia_raw_fi] = ACTIONS(5974), - }, - [433] = { - [sym_curly_group] = STATE(443), - [aux_sym_generic_command_repeat1] = STATE(433), - [sym_command_name] = ACTIONS(5976), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5976), - [anon_sym_LBRACK] = ACTIONS(5978), - [anon_sym_RBRACK] = ACTIONS(5978), - [anon_sym_COMMA] = ACTIONS(5978), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LPAREN] = ACTIONS(5978), - [anon_sym_RPAREN] = ACTIONS(5978), - [anon_sym_BSLASHpart] = ACTIONS(5976), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddpart] = ACTIONS(5976), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5978), - [anon_sym_BSLASHchapter] = ACTIONS(5976), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddchap] = ACTIONS(5976), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsection] = ACTIONS(5976), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddsec] = ACTIONS(5976), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubsection] = ACTIONS(5976), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5976), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHparagraph] = ACTIONS(5976), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5976), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5978), - [anon_sym_BSLASHitem] = ACTIONS(5976), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5978), - [anon_sym_LBRACE] = ACTIONS(5980), - [sym_word] = ACTIONS(5976), - [sym_placeholder] = ACTIONS(5978), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_STAR] = ACTIONS(5978), - [anon_sym_SLASH] = ACTIONS(5978), - [anon_sym_LT] = ACTIONS(5976), - [anon_sym_GT] = ACTIONS(5976), - [anon_sym_BANG] = ACTIONS(5976), - [anon_sym_PIPE] = ACTIONS(5976), - [anon_sym_COLON] = ACTIONS(5976), - [anon_sym_SQUOTE] = ACTIONS(5976), - [anon_sym__] = ACTIONS(5978), - [anon_sym_CARET] = ACTIONS(5978), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5978), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5978), - [anon_sym_DOLLAR] = ACTIONS(5976), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5978), - [anon_sym_BSLASHbegin] = ACTIONS(5976), - [anon_sym_BSLASHtitle] = ACTIONS(5976), - [anon_sym_BSLASHauthor] = ACTIONS(5976), - [anon_sym_BSLASHusepackage] = ACTIONS(5976), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5976), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5976), - [anon_sym_BSLASHinclude] = ACTIONS(5976), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5976), - [anon_sym_BSLASHinput] = ACTIONS(5976), - [anon_sym_BSLASHsubfile] = ACTIONS(5976), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5976), - [anon_sym_BSLASHbibliography] = ACTIONS(5976), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5976), - [anon_sym_BSLASHincludesvg] = ACTIONS(5976), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5976), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5976), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5976), - [anon_sym_BSLASHimport] = ACTIONS(5976), - [anon_sym_BSLASHsubimport] = ACTIONS(5976), - [anon_sym_BSLASHinputfrom] = ACTIONS(5976), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5976), - [anon_sym_BSLASHincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHcaption] = ACTIONS(5976), - [anon_sym_BSLASHcite] = ACTIONS(5976), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCite] = ACTIONS(5976), - [anon_sym_BSLASHnocite] = ACTIONS(5976), - [anon_sym_BSLASHcitet] = ACTIONS(5976), - [anon_sym_BSLASHcitep] = ACTIONS(5976), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteauthor] = ACTIONS(5976), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5976), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitetitle] = ACTIONS(5976), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteyear] = ACTIONS(5976), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitedate] = ACTIONS(5976), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteurl] = ACTIONS(5976), - [anon_sym_BSLASHfullcite] = ACTIONS(5976), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5976), - [anon_sym_BSLASHcitealt] = ACTIONS(5976), - [anon_sym_BSLASHcitealp] = ACTIONS(5976), - [anon_sym_BSLASHcitetext] = ACTIONS(5976), - [anon_sym_BSLASHparencite] = ACTIONS(5976), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHParencite] = ACTIONS(5976), - [anon_sym_BSLASHfootcite] = ACTIONS(5976), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5976), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5976), - [anon_sym_BSLASHtextcite] = ACTIONS(5976), - [anon_sym_BSLASHTextcite] = ACTIONS(5976), - [anon_sym_BSLASHsmartcite] = ACTIONS(5976), - [anon_sym_BSLASHSmartcite] = ACTIONS(5976), - [anon_sym_BSLASHsupercite] = ACTIONS(5976), - [anon_sym_BSLASHautocite] = ACTIONS(5976), - [anon_sym_BSLASHAutocite] = ACTIONS(5976), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHvolcite] = ACTIONS(5976), - [anon_sym_BSLASHVolcite] = ACTIONS(5976), - [anon_sym_BSLASHpvolcite] = ACTIONS(5976), - [anon_sym_BSLASHPvolcite] = ACTIONS(5976), - [anon_sym_BSLASHfvolcite] = ACTIONS(5976), - [anon_sym_BSLASHftvolcite] = ACTIONS(5976), - [anon_sym_BSLASHsvolcite] = ACTIONS(5976), - [anon_sym_BSLASHSvolcite] = ACTIONS(5976), - [anon_sym_BSLASHtvolcite] = ACTIONS(5976), - [anon_sym_BSLASHTvolcite] = ACTIONS(5976), - [anon_sym_BSLASHavolcite] = ACTIONS(5976), - [anon_sym_BSLASHAvolcite] = ACTIONS(5976), - [anon_sym_BSLASHnotecite] = ACTIONS(5976), - [anon_sym_BSLASHNotecite] = ACTIONS(5976), - [anon_sym_BSLASHpnotecite] = ACTIONS(5976), - [anon_sym_BSLASHPnotecite] = ACTIONS(5976), - [anon_sym_BSLASHfnotecite] = ACTIONS(5976), - [anon_sym_BSLASHlabel] = ACTIONS(5976), - [anon_sym_BSLASHref] = ACTIONS(5976), - [anon_sym_BSLASHeqref] = ACTIONS(5976), - [anon_sym_BSLASHvref] = ACTIONS(5976), - [anon_sym_BSLASHVref] = ACTIONS(5976), - [anon_sym_BSLASHautoref] = ACTIONS(5976), - [anon_sym_BSLASHpageref] = ACTIONS(5976), - [anon_sym_BSLASHcref] = ACTIONS(5976), - [anon_sym_BSLASHCref] = ACTIONS(5976), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnameCref] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHlabelcref] = ACTIONS(5976), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCrefrange] = ACTIONS(5976), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnewlabel] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5976), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5976), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5978), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHdef] = ACTIONS(5976), - [anon_sym_BSLASHlet] = ACTIONS(5976), - [anon_sym_BSLASHleft] = ACTIONS(5976), - [anon_sym_BSLASHbig] = ACTIONS(5976), - [anon_sym_BSLASHBig] = ACTIONS(5976), - [anon_sym_BSLASHbigg] = ACTIONS(5976), - [anon_sym_BSLASHBigg] = ACTIONS(5976), - [anon_sym_BSLASHbigl] = ACTIONS(5976), - [anon_sym_BSLASHBigl] = ACTIONS(5976), - [anon_sym_BSLASHbiggl] = ACTIONS(5976), - [anon_sym_BSLASHBiggl] = ACTIONS(5976), - [anon_sym_BSLASHright] = ACTIONS(5976), - [anon_sym_BSLASHbigr] = ACTIONS(5976), - [anon_sym_BSLASHBigr] = ACTIONS(5976), - [anon_sym_BSLASHbiggr] = ACTIONS(5976), - [anon_sym_BSLASHBiggr] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5976), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5976), - [anon_sym_BSLASHgls] = ACTIONS(5976), - [anon_sym_BSLASHGls] = ACTIONS(5976), - [anon_sym_BSLASHGLS] = ACTIONS(5976), - [anon_sym_BSLASHglspl] = ACTIONS(5976), - [anon_sym_BSLASHGlspl] = ACTIONS(5976), - [anon_sym_BSLASHGLSpl] = ACTIONS(5976), - [anon_sym_BSLASHglsdisp] = ACTIONS(5976), - [anon_sym_BSLASHglslink] = ACTIONS(5976), - [anon_sym_BSLASHglstext] = ACTIONS(5976), - [anon_sym_BSLASHGlstext] = ACTIONS(5976), - [anon_sym_BSLASHGLStext] = ACTIONS(5976), - [anon_sym_BSLASHglsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5976), - [anon_sym_BSLASHglsplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSplural] = ACTIONS(5976), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHglsname] = ACTIONS(5976), - [anon_sym_BSLASHGlsname] = ACTIONS(5976), - [anon_sym_BSLASHGLSname] = ACTIONS(5976), - [anon_sym_BSLASHglssymbol] = ACTIONS(5976), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5976), - [anon_sym_BSLASHglsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5976), - [anon_sym_BSLASHglsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5976), - [anon_sym_BSLASHglsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5976), - [anon_sym_BSLASHglsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5976), - [anon_sym_BSLASHglsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5976), - [anon_sym_BSLASHnewacronym] = ACTIONS(5976), - [anon_sym_BSLASHacrshort] = ACTIONS(5976), - [anon_sym_BSLASHAcrshort] = ACTIONS(5976), - [anon_sym_BSLASHACRshort] = ACTIONS(5976), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5976), - [anon_sym_BSLASHacrlong] = ACTIONS(5976), - [anon_sym_BSLASHAcrlong] = ACTIONS(5976), - [anon_sym_BSLASHACRlong] = ACTIONS(5976), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5976), - [anon_sym_BSLASHacrfull] = ACTIONS(5976), - [anon_sym_BSLASHAcrfull] = ACTIONS(5976), - [anon_sym_BSLASHACRfull] = ACTIONS(5976), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5976), - [anon_sym_BSLASHacs] = ACTIONS(5976), - [anon_sym_BSLASHAcs] = ACTIONS(5976), - [anon_sym_BSLASHacsp] = ACTIONS(5976), - [anon_sym_BSLASHAcsp] = ACTIONS(5976), - [anon_sym_BSLASHacl] = ACTIONS(5976), - [anon_sym_BSLASHAcl] = ACTIONS(5976), - [anon_sym_BSLASHaclp] = ACTIONS(5976), - [anon_sym_BSLASHAclp] = ACTIONS(5976), - [anon_sym_BSLASHacf] = ACTIONS(5976), - [anon_sym_BSLASHAcf] = ACTIONS(5976), - [anon_sym_BSLASHacfp] = ACTIONS(5976), - [anon_sym_BSLASHAcfp] = ACTIONS(5976), - [anon_sym_BSLASHac] = ACTIONS(5976), - [anon_sym_BSLASHAc] = ACTIONS(5976), - [anon_sym_BSLASHacp] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5976), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5976), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5976), - [anon_sym_BSLASHcolor] = ACTIONS(5976), - [anon_sym_BSLASHcolorbox] = ACTIONS(5976), - [anon_sym_BSLASHtextcolor] = ACTIONS(5976), - [anon_sym_BSLASHpagecolor] = ACTIONS(5976), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5976), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5976), - [anon_sym_BSLASHtext] = ACTIONS(5976), - [anon_sym_BSLASHintertext] = ACTIONS(5976), - [anon_sym_shortintertext] = ACTIONS(5976), - }, - [434] = { - [sym_curly_group] = STATE(443), - [aux_sym_generic_command_repeat1] = STATE(431), - [sym_command_name] = ACTIONS(5983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5983), - [anon_sym_LBRACK] = ACTIONS(5985), - [anon_sym_RBRACK] = ACTIONS(5985), - [anon_sym_COMMA] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(5985), - [anon_sym_LPAREN] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_BSLASHpart] = ACTIONS(5983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddpart] = ACTIONS(5983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5985), - [anon_sym_BSLASHchapter] = ACTIONS(5983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddchap] = ACTIONS(5983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsection] = ACTIONS(5983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddsec] = ACTIONS(5983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubsection] = ACTIONS(5983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHparagraph] = ACTIONS(5983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5985), - [anon_sym_BSLASHitem] = ACTIONS(5983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(5983), - [sym_placeholder] = ACTIONS(5985), - [anon_sym_PLUS] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(5985), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_SLASH] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(5983), - [anon_sym_GT] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5983), - [anon_sym_PIPE] = ACTIONS(5983), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_SQUOTE] = ACTIONS(5983), - [anon_sym__] = ACTIONS(5985), - [anon_sym_CARET] = ACTIONS(5985), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(5983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), - [anon_sym_BSLASHbegin] = ACTIONS(5983), - [anon_sym_BSLASHtitle] = ACTIONS(5983), - [anon_sym_BSLASHauthor] = ACTIONS(5983), - [anon_sym_BSLASHusepackage] = ACTIONS(5983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), - [anon_sym_BSLASHinclude] = ACTIONS(5983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), - [anon_sym_BSLASHinput] = ACTIONS(5983), - [anon_sym_BSLASHsubfile] = ACTIONS(5983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), - [anon_sym_BSLASHbibliography] = ACTIONS(5983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), - [anon_sym_BSLASHincludesvg] = ACTIONS(5983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), - [anon_sym_BSLASHimport] = ACTIONS(5983), - [anon_sym_BSLASHsubimport] = ACTIONS(5983), - [anon_sym_BSLASHinputfrom] = ACTIONS(5983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), - [anon_sym_BSLASHincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHcaption] = ACTIONS(5983), - [anon_sym_BSLASHcite] = ACTIONS(5983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCite] = ACTIONS(5983), - [anon_sym_BSLASHnocite] = ACTIONS(5983), - [anon_sym_BSLASHcitet] = ACTIONS(5983), - [anon_sym_BSLASHcitep] = ACTIONS(5983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteauthor] = ACTIONS(5983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitetitle] = ACTIONS(5983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteyear] = ACTIONS(5983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitedate] = ACTIONS(5983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteurl] = ACTIONS(5983), - [anon_sym_BSLASHfullcite] = ACTIONS(5983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), - [anon_sym_BSLASHcitealt] = ACTIONS(5983), - [anon_sym_BSLASHcitealp] = ACTIONS(5983), - [anon_sym_BSLASHcitetext] = ACTIONS(5983), - [anon_sym_BSLASHparencite] = ACTIONS(5983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHParencite] = ACTIONS(5983), - [anon_sym_BSLASHfootcite] = ACTIONS(5983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), - [anon_sym_BSLASHtextcite] = ACTIONS(5983), - [anon_sym_BSLASHTextcite] = ACTIONS(5983), - [anon_sym_BSLASHsmartcite] = ACTIONS(5983), - [anon_sym_BSLASHSmartcite] = ACTIONS(5983), - [anon_sym_BSLASHsupercite] = ACTIONS(5983), - [anon_sym_BSLASHautocite] = ACTIONS(5983), - [anon_sym_BSLASHAutocite] = ACTIONS(5983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHvolcite] = ACTIONS(5983), - [anon_sym_BSLASHVolcite] = ACTIONS(5983), - [anon_sym_BSLASHpvolcite] = ACTIONS(5983), - [anon_sym_BSLASHPvolcite] = ACTIONS(5983), - [anon_sym_BSLASHfvolcite] = ACTIONS(5983), - [anon_sym_BSLASHftvolcite] = ACTIONS(5983), - [anon_sym_BSLASHsvolcite] = ACTIONS(5983), - [anon_sym_BSLASHSvolcite] = ACTIONS(5983), - [anon_sym_BSLASHtvolcite] = ACTIONS(5983), - [anon_sym_BSLASHTvolcite] = ACTIONS(5983), - [anon_sym_BSLASHavolcite] = ACTIONS(5983), - [anon_sym_BSLASHAvolcite] = ACTIONS(5983), - [anon_sym_BSLASHnotecite] = ACTIONS(5983), - [anon_sym_BSLASHNotecite] = ACTIONS(5983), - [anon_sym_BSLASHpnotecite] = ACTIONS(5983), - [anon_sym_BSLASHPnotecite] = ACTIONS(5983), - [anon_sym_BSLASHfnotecite] = ACTIONS(5983), - [anon_sym_BSLASHlabel] = ACTIONS(5983), - [anon_sym_BSLASHref] = ACTIONS(5983), - [anon_sym_BSLASHeqref] = ACTIONS(5983), - [anon_sym_BSLASHvref] = ACTIONS(5983), - [anon_sym_BSLASHVref] = ACTIONS(5983), - [anon_sym_BSLASHautoref] = ACTIONS(5983), - [anon_sym_BSLASHpageref] = ACTIONS(5983), - [anon_sym_BSLASHcref] = ACTIONS(5983), - [anon_sym_BSLASHCref] = ACTIONS(5983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnameCref] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHlabelcref] = ACTIONS(5983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCrefrange] = ACTIONS(5983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnewlabel] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHdef] = ACTIONS(5983), - [anon_sym_BSLASHlet] = ACTIONS(5983), - [anon_sym_BSLASHleft] = ACTIONS(5983), - [anon_sym_BSLASHbig] = ACTIONS(5983), - [anon_sym_BSLASHBig] = ACTIONS(5983), - [anon_sym_BSLASHbigg] = ACTIONS(5983), - [anon_sym_BSLASHBigg] = ACTIONS(5983), - [anon_sym_BSLASHbigl] = ACTIONS(5983), - [anon_sym_BSLASHBigl] = ACTIONS(5983), - [anon_sym_BSLASHbiggl] = ACTIONS(5983), - [anon_sym_BSLASHBiggl] = ACTIONS(5983), - [anon_sym_BSLASHright] = ACTIONS(5983), - [anon_sym_BSLASHbigr] = ACTIONS(5983), - [anon_sym_BSLASHBigr] = ACTIONS(5983), - [anon_sym_BSLASHbiggr] = ACTIONS(5983), - [anon_sym_BSLASHBiggr] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), - [anon_sym_BSLASHgls] = ACTIONS(5983), - [anon_sym_BSLASHGls] = ACTIONS(5983), - [anon_sym_BSLASHGLS] = ACTIONS(5983), - [anon_sym_BSLASHglspl] = ACTIONS(5983), - [anon_sym_BSLASHGlspl] = ACTIONS(5983), - [anon_sym_BSLASHGLSpl] = ACTIONS(5983), - [anon_sym_BSLASHglsdisp] = ACTIONS(5983), - [anon_sym_BSLASHglslink] = ACTIONS(5983), - [anon_sym_BSLASHglstext] = ACTIONS(5983), - [anon_sym_BSLASHGlstext] = ACTIONS(5983), - [anon_sym_BSLASHGLStext] = ACTIONS(5983), - [anon_sym_BSLASHglsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), - [anon_sym_BSLASHglsplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSplural] = ACTIONS(5983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHglsname] = ACTIONS(5983), - [anon_sym_BSLASHGlsname] = ACTIONS(5983), - [anon_sym_BSLASHGLSname] = ACTIONS(5983), - [anon_sym_BSLASHglssymbol] = ACTIONS(5983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), - [anon_sym_BSLASHglsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), - [anon_sym_BSLASHglsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), - [anon_sym_BSLASHglsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), - [anon_sym_BSLASHglsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), - [anon_sym_BSLASHglsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), - [anon_sym_BSLASHnewacronym] = ACTIONS(5983), - [anon_sym_BSLASHacrshort] = ACTIONS(5983), - [anon_sym_BSLASHAcrshort] = ACTIONS(5983), - [anon_sym_BSLASHACRshort] = ACTIONS(5983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), - [anon_sym_BSLASHacrlong] = ACTIONS(5983), - [anon_sym_BSLASHAcrlong] = ACTIONS(5983), - [anon_sym_BSLASHACRlong] = ACTIONS(5983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), - [anon_sym_BSLASHacrfull] = ACTIONS(5983), - [anon_sym_BSLASHAcrfull] = ACTIONS(5983), - [anon_sym_BSLASHACRfull] = ACTIONS(5983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), - [anon_sym_BSLASHacs] = ACTIONS(5983), - [anon_sym_BSLASHAcs] = ACTIONS(5983), - [anon_sym_BSLASHacsp] = ACTIONS(5983), - [anon_sym_BSLASHAcsp] = ACTIONS(5983), - [anon_sym_BSLASHacl] = ACTIONS(5983), - [anon_sym_BSLASHAcl] = ACTIONS(5983), - [anon_sym_BSLASHaclp] = ACTIONS(5983), - [anon_sym_BSLASHAclp] = ACTIONS(5983), - [anon_sym_BSLASHacf] = ACTIONS(5983), - [anon_sym_BSLASHAcf] = ACTIONS(5983), - [anon_sym_BSLASHacfp] = ACTIONS(5983), - [anon_sym_BSLASHAcfp] = ACTIONS(5983), - [anon_sym_BSLASHac] = ACTIONS(5983), - [anon_sym_BSLASHAc] = ACTIONS(5983), - [anon_sym_BSLASHacp] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), - [anon_sym_BSLASHcolor] = ACTIONS(5983), - [anon_sym_BSLASHcolorbox] = ACTIONS(5983), - [anon_sym_BSLASHtextcolor] = ACTIONS(5983), - [anon_sym_BSLASHpagecolor] = ACTIONS(5983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), - [anon_sym_BSLASHtext] = ACTIONS(5983), - [anon_sym_BSLASHintertext] = ACTIONS(5983), - [anon_sym_shortintertext] = ACTIONS(5983), - }, - [435] = { - [sym_curly_group] = STATE(439), - [sym_brack_group_text] = STATE(2843), - [sym_command_name] = ACTIONS(5987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5991), - [anon_sym_COMMA] = ACTIONS(5991), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_LPAREN] = ACTIONS(5991), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_BSLASHpart] = ACTIONS(5987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddpart] = ACTIONS(5987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5991), - [anon_sym_BSLASHchapter] = ACTIONS(5987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddchap] = ACTIONS(5987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsection] = ACTIONS(5987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddsec] = ACTIONS(5987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubsection] = ACTIONS(5987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHparagraph] = ACTIONS(5987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5991), - [anon_sym_BSLASHitem] = ACTIONS(5987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5991), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(5987), - [sym_placeholder] = ACTIONS(5991), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_SQUOTE] = ACTIONS(5987), - [anon_sym__] = ACTIONS(5991), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5991), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(5987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5991), - [anon_sym_BSLASHbegin] = ACTIONS(5987), - [anon_sym_BSLASHtitle] = ACTIONS(5987), - [anon_sym_BSLASHauthor] = ACTIONS(5987), - [anon_sym_BSLASHusepackage] = ACTIONS(5987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), - [anon_sym_BSLASHinclude] = ACTIONS(5987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), - [anon_sym_BSLASHinput] = ACTIONS(5987), - [anon_sym_BSLASHsubfile] = ACTIONS(5987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), - [anon_sym_BSLASHbibliography] = ACTIONS(5987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), - [anon_sym_BSLASHincludesvg] = ACTIONS(5987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), - [anon_sym_BSLASHimport] = ACTIONS(5987), - [anon_sym_BSLASHsubimport] = ACTIONS(5987), - [anon_sym_BSLASHinputfrom] = ACTIONS(5987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), - [anon_sym_BSLASHincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHcaption] = ACTIONS(5987), - [anon_sym_BSLASHcite] = ACTIONS(5987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCite] = ACTIONS(5987), - [anon_sym_BSLASHnocite] = ACTIONS(5987), - [anon_sym_BSLASHcitet] = ACTIONS(5987), - [anon_sym_BSLASHcitep] = ACTIONS(5987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteauthor] = ACTIONS(5987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitetitle] = ACTIONS(5987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteyear] = ACTIONS(5987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitedate] = ACTIONS(5987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteurl] = ACTIONS(5987), - [anon_sym_BSLASHfullcite] = ACTIONS(5987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), - [anon_sym_BSLASHcitealt] = ACTIONS(5987), - [anon_sym_BSLASHcitealp] = ACTIONS(5987), - [anon_sym_BSLASHcitetext] = ACTIONS(5987), - [anon_sym_BSLASHparencite] = ACTIONS(5987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHParencite] = ACTIONS(5987), - [anon_sym_BSLASHfootcite] = ACTIONS(5987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), - [anon_sym_BSLASHtextcite] = ACTIONS(5987), - [anon_sym_BSLASHTextcite] = ACTIONS(5987), - [anon_sym_BSLASHsmartcite] = ACTIONS(5987), - [anon_sym_BSLASHSmartcite] = ACTIONS(5987), - [anon_sym_BSLASHsupercite] = ACTIONS(5987), - [anon_sym_BSLASHautocite] = ACTIONS(5987), - [anon_sym_BSLASHAutocite] = ACTIONS(5987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHvolcite] = ACTIONS(5987), - [anon_sym_BSLASHVolcite] = ACTIONS(5987), - [anon_sym_BSLASHpvolcite] = ACTIONS(5987), - [anon_sym_BSLASHPvolcite] = ACTIONS(5987), - [anon_sym_BSLASHfvolcite] = ACTIONS(5987), - [anon_sym_BSLASHftvolcite] = ACTIONS(5987), - [anon_sym_BSLASHsvolcite] = ACTIONS(5987), - [anon_sym_BSLASHSvolcite] = ACTIONS(5987), - [anon_sym_BSLASHtvolcite] = ACTIONS(5987), - [anon_sym_BSLASHTvolcite] = ACTIONS(5987), - [anon_sym_BSLASHavolcite] = ACTIONS(5987), - [anon_sym_BSLASHAvolcite] = ACTIONS(5987), - [anon_sym_BSLASHnotecite] = ACTIONS(5987), - [anon_sym_BSLASHNotecite] = ACTIONS(5987), - [anon_sym_BSLASHpnotecite] = ACTIONS(5987), - [anon_sym_BSLASHPnotecite] = ACTIONS(5987), - [anon_sym_BSLASHfnotecite] = ACTIONS(5987), - [anon_sym_BSLASHlabel] = ACTIONS(5987), - [anon_sym_BSLASHref] = ACTIONS(5987), - [anon_sym_BSLASHeqref] = ACTIONS(5987), - [anon_sym_BSLASHvref] = ACTIONS(5987), - [anon_sym_BSLASHVref] = ACTIONS(5987), - [anon_sym_BSLASHautoref] = ACTIONS(5987), - [anon_sym_BSLASHpageref] = ACTIONS(5987), - [anon_sym_BSLASHcref] = ACTIONS(5987), - [anon_sym_BSLASHCref] = ACTIONS(5987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnameCref] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHlabelcref] = ACTIONS(5987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCrefrange] = ACTIONS(5987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnewlabel] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5991), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHdef] = ACTIONS(5987), - [anon_sym_BSLASHlet] = ACTIONS(5987), - [anon_sym_BSLASHleft] = ACTIONS(5987), - [anon_sym_BSLASHbig] = ACTIONS(5987), - [anon_sym_BSLASHBig] = ACTIONS(5987), - [anon_sym_BSLASHbigg] = ACTIONS(5987), - [anon_sym_BSLASHBigg] = ACTIONS(5987), - [anon_sym_BSLASHbigl] = ACTIONS(5987), - [anon_sym_BSLASHBigl] = ACTIONS(5987), - [anon_sym_BSLASHbiggl] = ACTIONS(5987), - [anon_sym_BSLASHBiggl] = ACTIONS(5987), - [anon_sym_BSLASHright] = ACTIONS(5987), - [anon_sym_BSLASHbigr] = ACTIONS(5987), - [anon_sym_BSLASHBigr] = ACTIONS(5987), - [anon_sym_BSLASHbiggr] = ACTIONS(5987), - [anon_sym_BSLASHBiggr] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), - [anon_sym_BSLASHgls] = ACTIONS(5987), - [anon_sym_BSLASHGls] = ACTIONS(5987), - [anon_sym_BSLASHGLS] = ACTIONS(5987), - [anon_sym_BSLASHglspl] = ACTIONS(5987), - [anon_sym_BSLASHGlspl] = ACTIONS(5987), - [anon_sym_BSLASHGLSpl] = ACTIONS(5987), - [anon_sym_BSLASHglsdisp] = ACTIONS(5987), - [anon_sym_BSLASHglslink] = ACTIONS(5987), - [anon_sym_BSLASHglstext] = ACTIONS(5987), - [anon_sym_BSLASHGlstext] = ACTIONS(5987), - [anon_sym_BSLASHGLStext] = ACTIONS(5987), - [anon_sym_BSLASHglsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), - [anon_sym_BSLASHglsplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSplural] = ACTIONS(5987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHglsname] = ACTIONS(5987), - [anon_sym_BSLASHGlsname] = ACTIONS(5987), - [anon_sym_BSLASHGLSname] = ACTIONS(5987), - [anon_sym_BSLASHglssymbol] = ACTIONS(5987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), - [anon_sym_BSLASHglsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), - [anon_sym_BSLASHglsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), - [anon_sym_BSLASHglsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), - [anon_sym_BSLASHglsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), - [anon_sym_BSLASHglsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), - [anon_sym_BSLASHnewacronym] = ACTIONS(5987), - [anon_sym_BSLASHacrshort] = ACTIONS(5987), - [anon_sym_BSLASHAcrshort] = ACTIONS(5987), - [anon_sym_BSLASHACRshort] = ACTIONS(5987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), - [anon_sym_BSLASHacrlong] = ACTIONS(5987), - [anon_sym_BSLASHAcrlong] = ACTIONS(5987), - [anon_sym_BSLASHACRlong] = ACTIONS(5987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), - [anon_sym_BSLASHacrfull] = ACTIONS(5987), - [anon_sym_BSLASHAcrfull] = ACTIONS(5987), - [anon_sym_BSLASHACRfull] = ACTIONS(5987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), - [anon_sym_BSLASHacs] = ACTIONS(5987), - [anon_sym_BSLASHAcs] = ACTIONS(5987), - [anon_sym_BSLASHacsp] = ACTIONS(5987), - [anon_sym_BSLASHAcsp] = ACTIONS(5987), - [anon_sym_BSLASHacl] = ACTIONS(5987), - [anon_sym_BSLASHAcl] = ACTIONS(5987), - [anon_sym_BSLASHaclp] = ACTIONS(5987), - [anon_sym_BSLASHAclp] = ACTIONS(5987), - [anon_sym_BSLASHacf] = ACTIONS(5987), - [anon_sym_BSLASHAcf] = ACTIONS(5987), - [anon_sym_BSLASHacfp] = ACTIONS(5987), - [anon_sym_BSLASHAcfp] = ACTIONS(5987), - [anon_sym_BSLASHac] = ACTIONS(5987), - [anon_sym_BSLASHAc] = ACTIONS(5987), - [anon_sym_BSLASHacp] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), - [anon_sym_BSLASHcolor] = ACTIONS(5987), - [anon_sym_BSLASHcolorbox] = ACTIONS(5987), - [anon_sym_BSLASHtextcolor] = ACTIONS(5987), - [anon_sym_BSLASHpagecolor] = ACTIONS(5987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), - [anon_sym_BSLASHtext] = ACTIONS(5987), - [anon_sym_BSLASHintertext] = ACTIONS(5987), - [anon_sym_shortintertext] = ACTIONS(5987), - }, - [436] = { - [sym_curly_group] = STATE(441), - [sym_brack_group_text] = STATE(2854), - [sym_command_name] = ACTIONS(5993), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5995), - [anon_sym_COMMA] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(5995), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_BSLASHpart] = ACTIONS(5993), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddpart] = ACTIONS(5993), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5995), - [anon_sym_BSLASHchapter] = ACTIONS(5993), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddchap] = ACTIONS(5993), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsection] = ACTIONS(5993), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddsec] = ACTIONS(5993), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubsection] = ACTIONS(5993), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5993), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHparagraph] = ACTIONS(5993), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5993), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5995), - [anon_sym_BSLASHitem] = ACTIONS(5993), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5995), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(5993), - [sym_placeholder] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_BANG] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_SQUOTE] = ACTIONS(5993), - [anon_sym__] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5993), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5995), - [anon_sym_BSLASHbegin] = ACTIONS(5993), - [anon_sym_BSLASHtitle] = ACTIONS(5993), - [anon_sym_BSLASHauthor] = ACTIONS(5993), - [anon_sym_BSLASHusepackage] = ACTIONS(5993), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5993), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5993), - [anon_sym_BSLASHinclude] = ACTIONS(5993), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5993), - [anon_sym_BSLASHinput] = ACTIONS(5993), - [anon_sym_BSLASHsubfile] = ACTIONS(5993), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5993), - [anon_sym_BSLASHbibliography] = ACTIONS(5993), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5993), - [anon_sym_BSLASHincludesvg] = ACTIONS(5993), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5993), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5993), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5993), - [anon_sym_BSLASHimport] = ACTIONS(5993), - [anon_sym_BSLASHsubimport] = ACTIONS(5993), - [anon_sym_BSLASHinputfrom] = ACTIONS(5993), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5993), - [anon_sym_BSLASHincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHcaption] = ACTIONS(5993), - [anon_sym_BSLASHcite] = ACTIONS(5993), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCite] = ACTIONS(5993), - [anon_sym_BSLASHnocite] = ACTIONS(5993), - [anon_sym_BSLASHcitet] = ACTIONS(5993), - [anon_sym_BSLASHcitep] = ACTIONS(5993), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteauthor] = ACTIONS(5993), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5993), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitetitle] = ACTIONS(5993), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteyear] = ACTIONS(5993), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitedate] = ACTIONS(5993), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteurl] = ACTIONS(5993), - [anon_sym_BSLASHfullcite] = ACTIONS(5993), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5993), - [anon_sym_BSLASHcitealt] = ACTIONS(5993), - [anon_sym_BSLASHcitealp] = ACTIONS(5993), - [anon_sym_BSLASHcitetext] = ACTIONS(5993), - [anon_sym_BSLASHparencite] = ACTIONS(5993), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHParencite] = ACTIONS(5993), - [anon_sym_BSLASHfootcite] = ACTIONS(5993), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5993), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5993), - [anon_sym_BSLASHtextcite] = ACTIONS(5993), - [anon_sym_BSLASHTextcite] = ACTIONS(5993), - [anon_sym_BSLASHsmartcite] = ACTIONS(5993), - [anon_sym_BSLASHSmartcite] = ACTIONS(5993), - [anon_sym_BSLASHsupercite] = ACTIONS(5993), - [anon_sym_BSLASHautocite] = ACTIONS(5993), - [anon_sym_BSLASHAutocite] = ACTIONS(5993), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHvolcite] = ACTIONS(5993), - [anon_sym_BSLASHVolcite] = ACTIONS(5993), - [anon_sym_BSLASHpvolcite] = ACTIONS(5993), - [anon_sym_BSLASHPvolcite] = ACTIONS(5993), - [anon_sym_BSLASHfvolcite] = ACTIONS(5993), - [anon_sym_BSLASHftvolcite] = ACTIONS(5993), - [anon_sym_BSLASHsvolcite] = ACTIONS(5993), - [anon_sym_BSLASHSvolcite] = ACTIONS(5993), - [anon_sym_BSLASHtvolcite] = ACTIONS(5993), - [anon_sym_BSLASHTvolcite] = ACTIONS(5993), - [anon_sym_BSLASHavolcite] = ACTIONS(5993), - [anon_sym_BSLASHAvolcite] = ACTIONS(5993), - [anon_sym_BSLASHnotecite] = ACTIONS(5993), - [anon_sym_BSLASHNotecite] = ACTIONS(5993), - [anon_sym_BSLASHpnotecite] = ACTIONS(5993), - [anon_sym_BSLASHPnotecite] = ACTIONS(5993), - [anon_sym_BSLASHfnotecite] = ACTIONS(5993), - [anon_sym_BSLASHlabel] = ACTIONS(5993), - [anon_sym_BSLASHref] = ACTIONS(5993), - [anon_sym_BSLASHeqref] = ACTIONS(5993), - [anon_sym_BSLASHvref] = ACTIONS(5993), - [anon_sym_BSLASHVref] = ACTIONS(5993), - [anon_sym_BSLASHautoref] = ACTIONS(5993), - [anon_sym_BSLASHpageref] = ACTIONS(5993), - [anon_sym_BSLASHcref] = ACTIONS(5993), - [anon_sym_BSLASHCref] = ACTIONS(5993), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnameCref] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHlabelcref] = ACTIONS(5993), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCrefrange] = ACTIONS(5993), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnewlabel] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5993), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5993), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5995), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHdef] = ACTIONS(5993), - [anon_sym_BSLASHlet] = ACTIONS(5993), - [anon_sym_BSLASHleft] = ACTIONS(5993), - [anon_sym_BSLASHbig] = ACTIONS(5993), - [anon_sym_BSLASHBig] = ACTIONS(5993), - [anon_sym_BSLASHbigg] = ACTIONS(5993), - [anon_sym_BSLASHBigg] = ACTIONS(5993), - [anon_sym_BSLASHbigl] = ACTIONS(5993), - [anon_sym_BSLASHBigl] = ACTIONS(5993), - [anon_sym_BSLASHbiggl] = ACTIONS(5993), - [anon_sym_BSLASHBiggl] = ACTIONS(5993), - [anon_sym_BSLASHright] = ACTIONS(5993), - [anon_sym_BSLASHbigr] = ACTIONS(5993), - [anon_sym_BSLASHBigr] = ACTIONS(5993), - [anon_sym_BSLASHbiggr] = ACTIONS(5993), - [anon_sym_BSLASHBiggr] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5993), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5993), - [anon_sym_BSLASHgls] = ACTIONS(5993), - [anon_sym_BSLASHGls] = ACTIONS(5993), - [anon_sym_BSLASHGLS] = ACTIONS(5993), - [anon_sym_BSLASHglspl] = ACTIONS(5993), - [anon_sym_BSLASHGlspl] = ACTIONS(5993), - [anon_sym_BSLASHGLSpl] = ACTIONS(5993), - [anon_sym_BSLASHglsdisp] = ACTIONS(5993), - [anon_sym_BSLASHglslink] = ACTIONS(5993), - [anon_sym_BSLASHglstext] = ACTIONS(5993), - [anon_sym_BSLASHGlstext] = ACTIONS(5993), - [anon_sym_BSLASHGLStext] = ACTIONS(5993), - [anon_sym_BSLASHglsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5993), - [anon_sym_BSLASHglsplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSplural] = ACTIONS(5993), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHglsname] = ACTIONS(5993), - [anon_sym_BSLASHGlsname] = ACTIONS(5993), - [anon_sym_BSLASHGLSname] = ACTIONS(5993), - [anon_sym_BSLASHglssymbol] = ACTIONS(5993), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5993), - [anon_sym_BSLASHglsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5993), - [anon_sym_BSLASHglsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5993), - [anon_sym_BSLASHglsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5993), - [anon_sym_BSLASHglsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5993), - [anon_sym_BSLASHglsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5993), - [anon_sym_BSLASHnewacronym] = ACTIONS(5993), - [anon_sym_BSLASHacrshort] = ACTIONS(5993), - [anon_sym_BSLASHAcrshort] = ACTIONS(5993), - [anon_sym_BSLASHACRshort] = ACTIONS(5993), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5993), - [anon_sym_BSLASHacrlong] = ACTIONS(5993), - [anon_sym_BSLASHAcrlong] = ACTIONS(5993), - [anon_sym_BSLASHACRlong] = ACTIONS(5993), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5993), - [anon_sym_BSLASHacrfull] = ACTIONS(5993), - [anon_sym_BSLASHAcrfull] = ACTIONS(5993), - [anon_sym_BSLASHACRfull] = ACTIONS(5993), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5993), - [anon_sym_BSLASHacs] = ACTIONS(5993), - [anon_sym_BSLASHAcs] = ACTIONS(5993), - [anon_sym_BSLASHacsp] = ACTIONS(5993), - [anon_sym_BSLASHAcsp] = ACTIONS(5993), - [anon_sym_BSLASHacl] = ACTIONS(5993), - [anon_sym_BSLASHAcl] = ACTIONS(5993), - [anon_sym_BSLASHaclp] = ACTIONS(5993), - [anon_sym_BSLASHAclp] = ACTIONS(5993), - [anon_sym_BSLASHacf] = ACTIONS(5993), - [anon_sym_BSLASHAcf] = ACTIONS(5993), - [anon_sym_BSLASHacfp] = ACTIONS(5993), - [anon_sym_BSLASHAcfp] = ACTIONS(5993), - [anon_sym_BSLASHac] = ACTIONS(5993), - [anon_sym_BSLASHAc] = ACTIONS(5993), - [anon_sym_BSLASHacp] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5993), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5993), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5993), - [anon_sym_BSLASHcolor] = ACTIONS(5993), - [anon_sym_BSLASHcolorbox] = ACTIONS(5993), - [anon_sym_BSLASHtextcolor] = ACTIONS(5993), - [anon_sym_BSLASHpagecolor] = ACTIONS(5993), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5993), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5993), - [anon_sym_BSLASHtext] = ACTIONS(5993), - [anon_sym_BSLASHintertext] = ACTIONS(5993), - [anon_sym_shortintertext] = ACTIONS(5993), - }, - [437] = { - [sym_command_name] = ACTIONS(5997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5997), - [anon_sym_BSLASHfi] = ACTIONS(5999), - [anon_sym_LBRACK] = ACTIONS(6001), - [anon_sym_RBRACK] = ACTIONS(6001), - [anon_sym_COMMA] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(6001), - [anon_sym_LPAREN] = ACTIONS(6001), - [anon_sym_RPAREN] = ACTIONS(6001), - [anon_sym_BSLASHpart] = ACTIONS(5997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddpart] = ACTIONS(5997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6001), - [anon_sym_BSLASHchapter] = ACTIONS(5997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddchap] = ACTIONS(5997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsection] = ACTIONS(5997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddsec] = ACTIONS(5997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubsection] = ACTIONS(5997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHparagraph] = ACTIONS(5997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5997), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6001), - [anon_sym_BSLASHitem] = ACTIONS(5997), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6001), - [anon_sym_LBRACE] = ACTIONS(6001), - [sym_word] = ACTIONS(5997), - [sym_placeholder] = ACTIONS(6001), - [anon_sym_PLUS] = ACTIONS(6001), - [anon_sym_DASH] = ACTIONS(6001), - [anon_sym_STAR] = ACTIONS(6001), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_COLON] = ACTIONS(5997), - [anon_sym_SQUOTE] = ACTIONS(5997), - [anon_sym__] = ACTIONS(6001), - [anon_sym_CARET] = ACTIONS(6001), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), - [anon_sym_BSLASHbegin] = ACTIONS(5997), - [anon_sym_BSLASHtitle] = ACTIONS(5997), - [anon_sym_BSLASHauthor] = ACTIONS(5997), - [anon_sym_BSLASHusepackage] = ACTIONS(5997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5997), - [anon_sym_BSLASHinclude] = ACTIONS(5997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5997), - [anon_sym_BSLASHinput] = ACTIONS(5997), - [anon_sym_BSLASHsubfile] = ACTIONS(5997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5997), - [anon_sym_BSLASHbibliography] = ACTIONS(5997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5997), - [anon_sym_BSLASHincludesvg] = ACTIONS(5997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5997), - [anon_sym_BSLASHimport] = ACTIONS(5997), - [anon_sym_BSLASHsubimport] = ACTIONS(5997), - [anon_sym_BSLASHinputfrom] = ACTIONS(5997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5997), - [anon_sym_BSLASHincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHcaption] = ACTIONS(5997), - [anon_sym_BSLASHcite] = ACTIONS(5997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCite] = ACTIONS(5997), - [anon_sym_BSLASHnocite] = ACTIONS(5997), - [anon_sym_BSLASHcitet] = ACTIONS(5997), - [anon_sym_BSLASHcitep] = ACTIONS(5997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteyear] = ACTIONS(5997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitedate] = ACTIONS(5997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteurl] = ACTIONS(5997), - [anon_sym_BSLASHfullcite] = ACTIONS(5997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5997), - [anon_sym_BSLASHcitealt] = ACTIONS(5997), - [anon_sym_BSLASHcitealp] = ACTIONS(5997), - [anon_sym_BSLASHcitetext] = ACTIONS(5997), - [anon_sym_BSLASHparencite] = ACTIONS(5997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHParencite] = ACTIONS(5997), - [anon_sym_BSLASHfootcite] = ACTIONS(5997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5997), - [anon_sym_BSLASHtextcite] = ACTIONS(5997), - [anon_sym_BSLASHTextcite] = ACTIONS(5997), - [anon_sym_BSLASHsmartcite] = ACTIONS(5997), - [anon_sym_BSLASHSmartcite] = ACTIONS(5997), - [anon_sym_BSLASHsupercite] = ACTIONS(5997), - [anon_sym_BSLASHautocite] = ACTIONS(5997), - [anon_sym_BSLASHAutocite] = ACTIONS(5997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHvolcite] = ACTIONS(5997), - [anon_sym_BSLASHVolcite] = ACTIONS(5997), - [anon_sym_BSLASHpvolcite] = ACTIONS(5997), - [anon_sym_BSLASHPvolcite] = ACTIONS(5997), - [anon_sym_BSLASHfvolcite] = ACTIONS(5997), - [anon_sym_BSLASHftvolcite] = ACTIONS(5997), - [anon_sym_BSLASHsvolcite] = ACTIONS(5997), - [anon_sym_BSLASHSvolcite] = ACTIONS(5997), - [anon_sym_BSLASHtvolcite] = ACTIONS(5997), - [anon_sym_BSLASHTvolcite] = ACTIONS(5997), - [anon_sym_BSLASHavolcite] = ACTIONS(5997), - [anon_sym_BSLASHAvolcite] = ACTIONS(5997), - [anon_sym_BSLASHnotecite] = ACTIONS(5997), - [anon_sym_BSLASHNotecite] = ACTIONS(5997), - [anon_sym_BSLASHpnotecite] = ACTIONS(5997), - [anon_sym_BSLASHPnotecite] = ACTIONS(5997), - [anon_sym_BSLASHfnotecite] = ACTIONS(5997), - [anon_sym_BSLASHlabel] = ACTIONS(5997), - [anon_sym_BSLASHref] = ACTIONS(5997), - [anon_sym_BSLASHeqref] = ACTIONS(5997), - [anon_sym_BSLASHvref] = ACTIONS(5997), - [anon_sym_BSLASHVref] = ACTIONS(5997), - [anon_sym_BSLASHautoref] = ACTIONS(5997), - [anon_sym_BSLASHpageref] = ACTIONS(5997), - [anon_sym_BSLASHcref] = ACTIONS(5997), - [anon_sym_BSLASHCref] = ACTIONS(5997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnameCref] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHlabelcref] = ACTIONS(5997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHdef] = ACTIONS(5997), - [anon_sym_BSLASHlet] = ACTIONS(5997), - [anon_sym_BSLASHleft] = ACTIONS(5997), - [anon_sym_BSLASHbig] = ACTIONS(5997), - [anon_sym_BSLASHBig] = ACTIONS(5997), - [anon_sym_BSLASHbigg] = ACTIONS(5997), - [anon_sym_BSLASHBigg] = ACTIONS(5997), - [anon_sym_BSLASHbigl] = ACTIONS(5997), - [anon_sym_BSLASHBigl] = ACTIONS(5997), - [anon_sym_BSLASHbiggl] = ACTIONS(5997), - [anon_sym_BSLASHBiggl] = ACTIONS(5997), - [anon_sym_BSLASHright] = ACTIONS(5997), - [anon_sym_BSLASHbigr] = ACTIONS(5997), - [anon_sym_BSLASHBigr] = ACTIONS(5997), - [anon_sym_BSLASHbiggr] = ACTIONS(5997), - [anon_sym_BSLASHBiggr] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5997), - [anon_sym_BSLASHgls] = ACTIONS(5997), - [anon_sym_BSLASHGls] = ACTIONS(5997), - [anon_sym_BSLASHGLS] = ACTIONS(5997), - [anon_sym_BSLASHglspl] = ACTIONS(5997), - [anon_sym_BSLASHGlspl] = ACTIONS(5997), - [anon_sym_BSLASHGLSpl] = ACTIONS(5997), - [anon_sym_BSLASHglsdisp] = ACTIONS(5997), - [anon_sym_BSLASHglslink] = ACTIONS(5997), - [anon_sym_BSLASHglstext] = ACTIONS(5997), - [anon_sym_BSLASHGlstext] = ACTIONS(5997), - [anon_sym_BSLASHGLStext] = ACTIONS(5997), - [anon_sym_BSLASHglsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5997), - [anon_sym_BSLASHglsplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSplural] = ACTIONS(5997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHglsname] = ACTIONS(5997), - [anon_sym_BSLASHGlsname] = ACTIONS(5997), - [anon_sym_BSLASHGLSname] = ACTIONS(5997), - [anon_sym_BSLASHglssymbol] = ACTIONS(5997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5997), - [anon_sym_BSLASHglsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5997), - [anon_sym_BSLASHglsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5997), - [anon_sym_BSLASHglsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5997), - [anon_sym_BSLASHglsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5997), - [anon_sym_BSLASHglsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5997), - [anon_sym_BSLASHnewacronym] = ACTIONS(5997), - [anon_sym_BSLASHacrshort] = ACTIONS(5997), - [anon_sym_BSLASHAcrshort] = ACTIONS(5997), - [anon_sym_BSLASHACRshort] = ACTIONS(5997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5997), - [anon_sym_BSLASHacrlong] = ACTIONS(5997), - [anon_sym_BSLASHAcrlong] = ACTIONS(5997), - [anon_sym_BSLASHACRlong] = ACTIONS(5997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5997), - [anon_sym_BSLASHacrfull] = ACTIONS(5997), - [anon_sym_BSLASHAcrfull] = ACTIONS(5997), - [anon_sym_BSLASHACRfull] = ACTIONS(5997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5997), - [anon_sym_BSLASHacs] = ACTIONS(5997), - [anon_sym_BSLASHAcs] = ACTIONS(5997), - [anon_sym_BSLASHacsp] = ACTIONS(5997), - [anon_sym_BSLASHAcsp] = ACTIONS(5997), - [anon_sym_BSLASHacl] = ACTIONS(5997), - [anon_sym_BSLASHAcl] = ACTIONS(5997), - [anon_sym_BSLASHaclp] = ACTIONS(5997), - [anon_sym_BSLASHAclp] = ACTIONS(5997), - [anon_sym_BSLASHacf] = ACTIONS(5997), - [anon_sym_BSLASHAcf] = ACTIONS(5997), - [anon_sym_BSLASHacfp] = ACTIONS(5997), - [anon_sym_BSLASHAcfp] = ACTIONS(5997), - [anon_sym_BSLASHac] = ACTIONS(5997), - [anon_sym_BSLASHAc] = ACTIONS(5997), - [anon_sym_BSLASHacp] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5997), - [anon_sym_BSLASHcolor] = ACTIONS(5997), - [anon_sym_BSLASHcolorbox] = ACTIONS(5997), - [anon_sym_BSLASHtextcolor] = ACTIONS(5997), - [anon_sym_BSLASHpagecolor] = ACTIONS(5997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5997), - [anon_sym_BSLASHtext] = ACTIONS(5997), - [anon_sym_BSLASHintertext] = ACTIONS(5997), - [anon_sym_shortintertext] = ACTIONS(5997), - }, - [438] = { - [sym_brack_group_text] = STATE(541), - [sym_command_name] = ACTIONS(6003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6003), - [anon_sym_LBRACK] = ACTIONS(6005), - [anon_sym_RBRACK] = ACTIONS(6007), - [anon_sym_COMMA] = ACTIONS(6007), - [anon_sym_EQ] = ACTIONS(6007), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_RPAREN] = ACTIONS(6007), - [anon_sym_BSLASHpart] = ACTIONS(6003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddpart] = ACTIONS(6003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6007), - [anon_sym_BSLASHchapter] = ACTIONS(6003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddchap] = ACTIONS(6003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsection] = ACTIONS(6003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddsec] = ACTIONS(6003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubsection] = ACTIONS(6003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHparagraph] = ACTIONS(6003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6007), - [anon_sym_BSLASHitem] = ACTIONS(6003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6007), - [anon_sym_LBRACE] = ACTIONS(6007), - [sym_word] = ACTIONS(6003), - [sym_placeholder] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6007), - [anon_sym_DASH] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_SLASH] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6003), - [anon_sym_GT] = ACTIONS(6003), - [anon_sym_BANG] = ACTIONS(6003), - [anon_sym_PIPE] = ACTIONS(6003), - [anon_sym_COLON] = ACTIONS(6003), - [anon_sym_SQUOTE] = ACTIONS(6003), - [anon_sym__] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6007), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6007), - [anon_sym_DOLLAR] = ACTIONS(6003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6007), - [anon_sym_BSLASHbegin] = ACTIONS(6003), - [anon_sym_BSLASHtitle] = ACTIONS(6003), - [anon_sym_BSLASHauthor] = ACTIONS(6003), - [anon_sym_BSLASHusepackage] = ACTIONS(6003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), - [anon_sym_BSLASHinclude] = ACTIONS(6003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), - [anon_sym_BSLASHinput] = ACTIONS(6003), - [anon_sym_BSLASHsubfile] = ACTIONS(6003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), - [anon_sym_BSLASHbibliography] = ACTIONS(6003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), - [anon_sym_BSLASHincludesvg] = ACTIONS(6003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), - [anon_sym_BSLASHimport] = ACTIONS(6003), - [anon_sym_BSLASHsubimport] = ACTIONS(6003), - [anon_sym_BSLASHinputfrom] = ACTIONS(6003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), - [anon_sym_BSLASHincludefrom] = ACTIONS(6003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), - [anon_sym_BSLASHcaption] = ACTIONS(6003), - [anon_sym_BSLASHcite] = ACTIONS(6003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCite] = ACTIONS(6003), - [anon_sym_BSLASHnocite] = ACTIONS(6003), - [anon_sym_BSLASHcitet] = ACTIONS(6003), - [anon_sym_BSLASHcitep] = ACTIONS(6003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteauthor] = ACTIONS(6003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitetitle] = ACTIONS(6003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteyear] = ACTIONS(6003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitedate] = ACTIONS(6003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteurl] = ACTIONS(6003), - [anon_sym_BSLASHfullcite] = ACTIONS(6003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), - [anon_sym_BSLASHcitealt] = ACTIONS(6003), - [anon_sym_BSLASHcitealp] = ACTIONS(6003), - [anon_sym_BSLASHcitetext] = ACTIONS(6003), - [anon_sym_BSLASHparencite] = ACTIONS(6003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHParencite] = ACTIONS(6003), - [anon_sym_BSLASHfootcite] = ACTIONS(6003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), - [anon_sym_BSLASHtextcite] = ACTIONS(6003), - [anon_sym_BSLASHTextcite] = ACTIONS(6003), - [anon_sym_BSLASHsmartcite] = ACTIONS(6003), - [anon_sym_BSLASHSmartcite] = ACTIONS(6003), - [anon_sym_BSLASHsupercite] = ACTIONS(6003), - [anon_sym_BSLASHautocite] = ACTIONS(6003), - [anon_sym_BSLASHAutocite] = ACTIONS(6003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHvolcite] = ACTIONS(6003), - [anon_sym_BSLASHVolcite] = ACTIONS(6003), - [anon_sym_BSLASHpvolcite] = ACTIONS(6003), - [anon_sym_BSLASHPvolcite] = ACTIONS(6003), - [anon_sym_BSLASHfvolcite] = ACTIONS(6003), - [anon_sym_BSLASHftvolcite] = ACTIONS(6003), - [anon_sym_BSLASHsvolcite] = ACTIONS(6003), - [anon_sym_BSLASHSvolcite] = ACTIONS(6003), - [anon_sym_BSLASHtvolcite] = ACTIONS(6003), - [anon_sym_BSLASHTvolcite] = ACTIONS(6003), - [anon_sym_BSLASHavolcite] = ACTIONS(6003), - [anon_sym_BSLASHAvolcite] = ACTIONS(6003), - [anon_sym_BSLASHnotecite] = ACTIONS(6003), - [anon_sym_BSLASHNotecite] = ACTIONS(6003), - [anon_sym_BSLASHpnotecite] = ACTIONS(6003), - [anon_sym_BSLASHPnotecite] = ACTIONS(6003), - [anon_sym_BSLASHfnotecite] = ACTIONS(6003), - [anon_sym_BSLASHlabel] = ACTIONS(6003), - [anon_sym_BSLASHref] = ACTIONS(6003), - [anon_sym_BSLASHeqref] = ACTIONS(6003), - [anon_sym_BSLASHvref] = ACTIONS(6003), - [anon_sym_BSLASHVref] = ACTIONS(6003), - [anon_sym_BSLASHautoref] = ACTIONS(6003), - [anon_sym_BSLASHpageref] = ACTIONS(6003), - [anon_sym_BSLASHcref] = ACTIONS(6003), - [anon_sym_BSLASHCref] = ACTIONS(6003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6007), - [anon_sym_BSLASHnamecref] = ACTIONS(6003), - [anon_sym_BSLASHnameCref] = ACTIONS(6003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), - [anon_sym_BSLASHlabelcref] = ACTIONS(6003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), - [anon_sym_BSLASHcrefrange] = ACTIONS(6003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCrefrange] = ACTIONS(6003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6007), - [anon_sym_BSLASHnewlabel] = ACTIONS(6003), - [anon_sym_BSLASHnewcommand] = ACTIONS(6003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6007), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHdef] = ACTIONS(6003), - [anon_sym_BSLASHlet] = ACTIONS(6003), - [anon_sym_BSLASHleft] = ACTIONS(6003), - [anon_sym_BSLASHbig] = ACTIONS(6003), - [anon_sym_BSLASHBig] = ACTIONS(6003), - [anon_sym_BSLASHbigg] = ACTIONS(6003), - [anon_sym_BSLASHBigg] = ACTIONS(6003), - [anon_sym_BSLASHbigl] = ACTIONS(6003), - [anon_sym_BSLASHBigl] = ACTIONS(6003), - [anon_sym_BSLASHbiggl] = ACTIONS(6003), - [anon_sym_BSLASHBiggl] = ACTIONS(6003), - [anon_sym_BSLASHright] = ACTIONS(6003), - [anon_sym_BSLASHbigr] = ACTIONS(6003), - [anon_sym_BSLASHBigr] = ACTIONS(6003), - [anon_sym_BSLASHbiggr] = ACTIONS(6003), - [anon_sym_BSLASHBiggr] = ACTIONS(6003), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6003), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), - [anon_sym_BSLASHgls] = ACTIONS(6003), - [anon_sym_BSLASHGls] = ACTIONS(6003), - [anon_sym_BSLASHGLS] = ACTIONS(6003), - [anon_sym_BSLASHglspl] = ACTIONS(6003), - [anon_sym_BSLASHGlspl] = ACTIONS(6003), - [anon_sym_BSLASHGLSpl] = ACTIONS(6003), - [anon_sym_BSLASHglsdisp] = ACTIONS(6003), - [anon_sym_BSLASHglslink] = ACTIONS(6003), - [anon_sym_BSLASHglstext] = ACTIONS(6003), - [anon_sym_BSLASHGlstext] = ACTIONS(6003), - [anon_sym_BSLASHGLStext] = ACTIONS(6003), - [anon_sym_BSLASHglsfirst] = ACTIONS(6003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), - [anon_sym_BSLASHglsplural] = ACTIONS(6003), - [anon_sym_BSLASHGlsplural] = ACTIONS(6003), - [anon_sym_BSLASHGLSplural] = ACTIONS(6003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHglsname] = ACTIONS(6003), - [anon_sym_BSLASHGlsname] = ACTIONS(6003), - [anon_sym_BSLASHGLSname] = ACTIONS(6003), - [anon_sym_BSLASHglssymbol] = ACTIONS(6003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), - [anon_sym_BSLASHglsdesc] = ACTIONS(6003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), - [anon_sym_BSLASHglsuseri] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), - [anon_sym_BSLASHglsuserii] = ACTIONS(6003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), - [anon_sym_BSLASHglsuserv] = ACTIONS(6003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), - [anon_sym_BSLASHglsuservi] = ACTIONS(6003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), - [anon_sym_BSLASHnewacronym] = ACTIONS(6003), - [anon_sym_BSLASHacrshort] = ACTIONS(6003), - [anon_sym_BSLASHAcrshort] = ACTIONS(6003), - [anon_sym_BSLASHACRshort] = ACTIONS(6003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), - [anon_sym_BSLASHacrlong] = ACTIONS(6003), - [anon_sym_BSLASHAcrlong] = ACTIONS(6003), - [anon_sym_BSLASHACRlong] = ACTIONS(6003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), - [anon_sym_BSLASHacrfull] = ACTIONS(6003), - [anon_sym_BSLASHAcrfull] = ACTIONS(6003), - [anon_sym_BSLASHACRfull] = ACTIONS(6003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), - [anon_sym_BSLASHacs] = ACTIONS(6003), - [anon_sym_BSLASHAcs] = ACTIONS(6003), - [anon_sym_BSLASHacsp] = ACTIONS(6003), - [anon_sym_BSLASHAcsp] = ACTIONS(6003), - [anon_sym_BSLASHacl] = ACTIONS(6003), - [anon_sym_BSLASHAcl] = ACTIONS(6003), - [anon_sym_BSLASHaclp] = ACTIONS(6003), - [anon_sym_BSLASHAclp] = ACTIONS(6003), - [anon_sym_BSLASHacf] = ACTIONS(6003), - [anon_sym_BSLASHAcf] = ACTIONS(6003), - [anon_sym_BSLASHacfp] = ACTIONS(6003), - [anon_sym_BSLASHAcfp] = ACTIONS(6003), - [anon_sym_BSLASHac] = ACTIONS(6003), - [anon_sym_BSLASHAc] = ACTIONS(6003), - [anon_sym_BSLASHacp] = ACTIONS(6003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), - [anon_sym_BSLASHcolor] = ACTIONS(6003), - [anon_sym_BSLASHcolorbox] = ACTIONS(6003), - [anon_sym_BSLASHtextcolor] = ACTIONS(6003), - [anon_sym_BSLASHpagecolor] = ACTIONS(6003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), - [anon_sym_BSLASHtext] = ACTIONS(6003), - [anon_sym_BSLASHintertext] = ACTIONS(6003), - [anon_sym_shortintertext] = ACTIONS(6003), - }, - [439] = { - [sym_brack_group_text] = STATE(617), - [sym_command_name] = ACTIONS(6009), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6005), - [anon_sym_RBRACK] = ACTIONS(6011), - [anon_sym_COMMA] = ACTIONS(6011), - [anon_sym_EQ] = ACTIONS(6011), - [anon_sym_LPAREN] = ACTIONS(6011), - [anon_sym_RPAREN] = ACTIONS(6011), - [anon_sym_BSLASHpart] = ACTIONS(6009), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddpart] = ACTIONS(6009), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6011), - [anon_sym_BSLASHchapter] = ACTIONS(6009), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddchap] = ACTIONS(6009), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsection] = ACTIONS(6009), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddsec] = ACTIONS(6009), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubsection] = ACTIONS(6009), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6009), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHparagraph] = ACTIONS(6009), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6009), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6011), - [anon_sym_BSLASHitem] = ACTIONS(6009), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6011), - [anon_sym_LBRACE] = ACTIONS(6011), - [sym_word] = ACTIONS(6009), - [sym_placeholder] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_SQUOTE] = ACTIONS(6009), - [anon_sym__] = ACTIONS(6011), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6011), - [anon_sym_DOLLAR] = ACTIONS(6009), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6011), - [anon_sym_BSLASHbegin] = ACTIONS(6009), - [anon_sym_BSLASHtitle] = ACTIONS(6009), - [anon_sym_BSLASHauthor] = ACTIONS(6009), - [anon_sym_BSLASHusepackage] = ACTIONS(6009), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6009), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6009), - [anon_sym_BSLASHinclude] = ACTIONS(6009), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6009), - [anon_sym_BSLASHinput] = ACTIONS(6009), - [anon_sym_BSLASHsubfile] = ACTIONS(6009), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6009), - [anon_sym_BSLASHbibliography] = ACTIONS(6009), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6009), - [anon_sym_BSLASHincludesvg] = ACTIONS(6009), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6009), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6009), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6009), - [anon_sym_BSLASHimport] = ACTIONS(6009), - [anon_sym_BSLASHsubimport] = ACTIONS(6009), - [anon_sym_BSLASHinputfrom] = ACTIONS(6009), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6009), - [anon_sym_BSLASHincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHcaption] = ACTIONS(6009), - [anon_sym_BSLASHcite] = ACTIONS(6009), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCite] = ACTIONS(6009), - [anon_sym_BSLASHnocite] = ACTIONS(6009), - [anon_sym_BSLASHcitet] = ACTIONS(6009), - [anon_sym_BSLASHcitep] = ACTIONS(6009), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteauthor] = ACTIONS(6009), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6009), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitetitle] = ACTIONS(6009), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteyear] = ACTIONS(6009), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitedate] = ACTIONS(6009), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteurl] = ACTIONS(6009), - [anon_sym_BSLASHfullcite] = ACTIONS(6009), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6009), - [anon_sym_BSLASHcitealt] = ACTIONS(6009), - [anon_sym_BSLASHcitealp] = ACTIONS(6009), - [anon_sym_BSLASHcitetext] = ACTIONS(6009), - [anon_sym_BSLASHparencite] = ACTIONS(6009), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHParencite] = ACTIONS(6009), - [anon_sym_BSLASHfootcite] = ACTIONS(6009), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6009), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6009), - [anon_sym_BSLASHtextcite] = ACTIONS(6009), - [anon_sym_BSLASHTextcite] = ACTIONS(6009), - [anon_sym_BSLASHsmartcite] = ACTIONS(6009), - [anon_sym_BSLASHSmartcite] = ACTIONS(6009), - [anon_sym_BSLASHsupercite] = ACTIONS(6009), - [anon_sym_BSLASHautocite] = ACTIONS(6009), - [anon_sym_BSLASHAutocite] = ACTIONS(6009), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHvolcite] = ACTIONS(6009), - [anon_sym_BSLASHVolcite] = ACTIONS(6009), - [anon_sym_BSLASHpvolcite] = ACTIONS(6009), - [anon_sym_BSLASHPvolcite] = ACTIONS(6009), - [anon_sym_BSLASHfvolcite] = ACTIONS(6009), - [anon_sym_BSLASHftvolcite] = ACTIONS(6009), - [anon_sym_BSLASHsvolcite] = ACTIONS(6009), - [anon_sym_BSLASHSvolcite] = ACTIONS(6009), - [anon_sym_BSLASHtvolcite] = ACTIONS(6009), - [anon_sym_BSLASHTvolcite] = ACTIONS(6009), - [anon_sym_BSLASHavolcite] = ACTIONS(6009), - [anon_sym_BSLASHAvolcite] = ACTIONS(6009), - [anon_sym_BSLASHnotecite] = ACTIONS(6009), - [anon_sym_BSLASHNotecite] = ACTIONS(6009), - [anon_sym_BSLASHpnotecite] = ACTIONS(6009), - [anon_sym_BSLASHPnotecite] = ACTIONS(6009), - [anon_sym_BSLASHfnotecite] = ACTIONS(6009), - [anon_sym_BSLASHlabel] = ACTIONS(6009), - [anon_sym_BSLASHref] = ACTIONS(6009), - [anon_sym_BSLASHeqref] = ACTIONS(6009), - [anon_sym_BSLASHvref] = ACTIONS(6009), - [anon_sym_BSLASHVref] = ACTIONS(6009), - [anon_sym_BSLASHautoref] = ACTIONS(6009), - [anon_sym_BSLASHpageref] = ACTIONS(6009), - [anon_sym_BSLASHcref] = ACTIONS(6009), - [anon_sym_BSLASHCref] = ACTIONS(6009), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnameCref] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHlabelcref] = ACTIONS(6009), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCrefrange] = ACTIONS(6009), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnewlabel] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6009), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6009), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6011), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHdef] = ACTIONS(6009), - [anon_sym_BSLASHlet] = ACTIONS(6009), - [anon_sym_BSLASHleft] = ACTIONS(6009), - [anon_sym_BSLASHbig] = ACTIONS(6009), - [anon_sym_BSLASHBig] = ACTIONS(6009), - [anon_sym_BSLASHbigg] = ACTIONS(6009), - [anon_sym_BSLASHBigg] = ACTIONS(6009), - [anon_sym_BSLASHbigl] = ACTIONS(6009), - [anon_sym_BSLASHBigl] = ACTIONS(6009), - [anon_sym_BSLASHbiggl] = ACTIONS(6009), - [anon_sym_BSLASHBiggl] = ACTIONS(6009), - [anon_sym_BSLASHright] = ACTIONS(6009), - [anon_sym_BSLASHbigr] = ACTIONS(6009), - [anon_sym_BSLASHBigr] = ACTIONS(6009), - [anon_sym_BSLASHbiggr] = ACTIONS(6009), - [anon_sym_BSLASHBiggr] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6009), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6009), - [anon_sym_BSLASHgls] = ACTIONS(6009), - [anon_sym_BSLASHGls] = ACTIONS(6009), - [anon_sym_BSLASHGLS] = ACTIONS(6009), - [anon_sym_BSLASHglspl] = ACTIONS(6009), - [anon_sym_BSLASHGlspl] = ACTIONS(6009), - [anon_sym_BSLASHGLSpl] = ACTIONS(6009), - [anon_sym_BSLASHglsdisp] = ACTIONS(6009), - [anon_sym_BSLASHglslink] = ACTIONS(6009), - [anon_sym_BSLASHglstext] = ACTIONS(6009), - [anon_sym_BSLASHGlstext] = ACTIONS(6009), - [anon_sym_BSLASHGLStext] = ACTIONS(6009), - [anon_sym_BSLASHglsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6009), - [anon_sym_BSLASHglsplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSplural] = ACTIONS(6009), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHglsname] = ACTIONS(6009), - [anon_sym_BSLASHGlsname] = ACTIONS(6009), - [anon_sym_BSLASHGLSname] = ACTIONS(6009), - [anon_sym_BSLASHglssymbol] = ACTIONS(6009), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6009), - [anon_sym_BSLASHglsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6009), - [anon_sym_BSLASHglsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6009), - [anon_sym_BSLASHglsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6009), - [anon_sym_BSLASHglsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6009), - [anon_sym_BSLASHglsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6009), - [anon_sym_BSLASHnewacronym] = ACTIONS(6009), - [anon_sym_BSLASHacrshort] = ACTIONS(6009), - [anon_sym_BSLASHAcrshort] = ACTIONS(6009), - [anon_sym_BSLASHACRshort] = ACTIONS(6009), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6009), - [anon_sym_BSLASHacrlong] = ACTIONS(6009), - [anon_sym_BSLASHAcrlong] = ACTIONS(6009), - [anon_sym_BSLASHACRlong] = ACTIONS(6009), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6009), - [anon_sym_BSLASHacrfull] = ACTIONS(6009), - [anon_sym_BSLASHAcrfull] = ACTIONS(6009), - [anon_sym_BSLASHACRfull] = ACTIONS(6009), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6009), - [anon_sym_BSLASHacs] = ACTIONS(6009), - [anon_sym_BSLASHAcs] = ACTIONS(6009), - [anon_sym_BSLASHacsp] = ACTIONS(6009), - [anon_sym_BSLASHAcsp] = ACTIONS(6009), - [anon_sym_BSLASHacl] = ACTIONS(6009), - [anon_sym_BSLASHAcl] = ACTIONS(6009), - [anon_sym_BSLASHaclp] = ACTIONS(6009), - [anon_sym_BSLASHAclp] = ACTIONS(6009), - [anon_sym_BSLASHacf] = ACTIONS(6009), - [anon_sym_BSLASHAcf] = ACTIONS(6009), - [anon_sym_BSLASHacfp] = ACTIONS(6009), - [anon_sym_BSLASHAcfp] = ACTIONS(6009), - [anon_sym_BSLASHac] = ACTIONS(6009), - [anon_sym_BSLASHAc] = ACTIONS(6009), - [anon_sym_BSLASHacp] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6009), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6009), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6009), - [anon_sym_BSLASHcolor] = ACTIONS(6009), - [anon_sym_BSLASHcolorbox] = ACTIONS(6009), - [anon_sym_BSLASHtextcolor] = ACTIONS(6009), - [anon_sym_BSLASHpagecolor] = ACTIONS(6009), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6009), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6009), - [anon_sym_BSLASHtext] = ACTIONS(6009), - [anon_sym_BSLASHintertext] = ACTIONS(6009), - [anon_sym_shortintertext] = ACTIONS(6009), - }, - [440] = { - [sym_curly_group] = STATE(625), - [sym_command_name] = ACTIONS(6013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6013), - [anon_sym_LBRACK] = ACTIONS(6015), - [anon_sym_RBRACK] = ACTIONS(6015), - [anon_sym_COMMA] = ACTIONS(6015), - [anon_sym_EQ] = ACTIONS(6015), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_RPAREN] = ACTIONS(6015), - [anon_sym_BSLASHpart] = ACTIONS(6013), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddpart] = ACTIONS(6013), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6015), - [anon_sym_BSLASHchapter] = ACTIONS(6013), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddchap] = ACTIONS(6013), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsection] = ACTIONS(6013), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddsec] = ACTIONS(6013), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubsection] = ACTIONS(6013), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6013), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHparagraph] = ACTIONS(6013), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6013), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6015), - [anon_sym_BSLASHitem] = ACTIONS(6013), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6015), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(6013), - [sym_placeholder] = ACTIONS(6015), - [anon_sym_PLUS] = ACTIONS(6015), - [anon_sym_DASH] = ACTIONS(6015), - [anon_sym_STAR] = ACTIONS(6015), - [anon_sym_SLASH] = ACTIONS(6015), - [anon_sym_LT] = ACTIONS(6013), - [anon_sym_GT] = ACTIONS(6013), - [anon_sym_BANG] = ACTIONS(6013), - [anon_sym_PIPE] = ACTIONS(6013), - [anon_sym_COLON] = ACTIONS(6013), - [anon_sym_SQUOTE] = ACTIONS(6013), - [anon_sym__] = ACTIONS(6015), - [anon_sym_CARET] = ACTIONS(6015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), - [anon_sym_DOLLAR] = ACTIONS(6013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), - [anon_sym_BSLASHbegin] = ACTIONS(6013), - [anon_sym_BSLASHtitle] = ACTIONS(6013), - [anon_sym_BSLASHauthor] = ACTIONS(6013), - [anon_sym_BSLASHusepackage] = ACTIONS(6013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6013), - [anon_sym_BSLASHinclude] = ACTIONS(6013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6013), - [anon_sym_BSLASHinput] = ACTIONS(6013), - [anon_sym_BSLASHsubfile] = ACTIONS(6013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6013), - [anon_sym_BSLASHbibliography] = ACTIONS(6013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6013), - [anon_sym_BSLASHincludesvg] = ACTIONS(6013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6013), - [anon_sym_BSLASHimport] = ACTIONS(6013), - [anon_sym_BSLASHsubimport] = ACTIONS(6013), - [anon_sym_BSLASHinputfrom] = ACTIONS(6013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6013), - [anon_sym_BSLASHincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHcaption] = ACTIONS(6013), - [anon_sym_BSLASHcite] = ACTIONS(6013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCite] = ACTIONS(6013), - [anon_sym_BSLASHnocite] = ACTIONS(6013), - [anon_sym_BSLASHcitet] = ACTIONS(6013), - [anon_sym_BSLASHcitep] = ACTIONS(6013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteauthor] = ACTIONS(6013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitetitle] = ACTIONS(6013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteyear] = ACTIONS(6013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitedate] = ACTIONS(6013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteurl] = ACTIONS(6013), - [anon_sym_BSLASHfullcite] = ACTIONS(6013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6013), - [anon_sym_BSLASHcitealt] = ACTIONS(6013), - [anon_sym_BSLASHcitealp] = ACTIONS(6013), - [anon_sym_BSLASHcitetext] = ACTIONS(6013), - [anon_sym_BSLASHparencite] = ACTIONS(6013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHParencite] = ACTIONS(6013), - [anon_sym_BSLASHfootcite] = ACTIONS(6013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6013), - [anon_sym_BSLASHtextcite] = ACTIONS(6013), - [anon_sym_BSLASHTextcite] = ACTIONS(6013), - [anon_sym_BSLASHsmartcite] = ACTIONS(6013), - [anon_sym_BSLASHSmartcite] = ACTIONS(6013), - [anon_sym_BSLASHsupercite] = ACTIONS(6013), - [anon_sym_BSLASHautocite] = ACTIONS(6013), - [anon_sym_BSLASHAutocite] = ACTIONS(6013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHvolcite] = ACTIONS(6013), - [anon_sym_BSLASHVolcite] = ACTIONS(6013), - [anon_sym_BSLASHpvolcite] = ACTIONS(6013), - [anon_sym_BSLASHPvolcite] = ACTIONS(6013), - [anon_sym_BSLASHfvolcite] = ACTIONS(6013), - [anon_sym_BSLASHftvolcite] = ACTIONS(6013), - [anon_sym_BSLASHsvolcite] = ACTIONS(6013), - [anon_sym_BSLASHSvolcite] = ACTIONS(6013), - [anon_sym_BSLASHtvolcite] = ACTIONS(6013), - [anon_sym_BSLASHTvolcite] = ACTIONS(6013), - [anon_sym_BSLASHavolcite] = ACTIONS(6013), - [anon_sym_BSLASHAvolcite] = ACTIONS(6013), - [anon_sym_BSLASHnotecite] = ACTIONS(6013), - [anon_sym_BSLASHNotecite] = ACTIONS(6013), - [anon_sym_BSLASHpnotecite] = ACTIONS(6013), - [anon_sym_BSLASHPnotecite] = ACTIONS(6013), - [anon_sym_BSLASHfnotecite] = ACTIONS(6013), - [anon_sym_BSLASHlabel] = ACTIONS(6013), - [anon_sym_BSLASHref] = ACTIONS(6013), - [anon_sym_BSLASHeqref] = ACTIONS(6013), - [anon_sym_BSLASHvref] = ACTIONS(6013), - [anon_sym_BSLASHVref] = ACTIONS(6013), - [anon_sym_BSLASHautoref] = ACTIONS(6013), - [anon_sym_BSLASHpageref] = ACTIONS(6013), - [anon_sym_BSLASHcref] = ACTIONS(6013), - [anon_sym_BSLASHCref] = ACTIONS(6013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnameCref] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHlabelcref] = ACTIONS(6013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCrefrange] = ACTIONS(6013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnewlabel] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHdef] = ACTIONS(6013), - [anon_sym_BSLASHlet] = ACTIONS(6013), - [anon_sym_BSLASHleft] = ACTIONS(6013), - [anon_sym_BSLASHbig] = ACTIONS(6013), - [anon_sym_BSLASHBig] = ACTIONS(6013), - [anon_sym_BSLASHbigg] = ACTIONS(6013), - [anon_sym_BSLASHBigg] = ACTIONS(6013), - [anon_sym_BSLASHbigl] = ACTIONS(6013), - [anon_sym_BSLASHBigl] = ACTIONS(6013), - [anon_sym_BSLASHbiggl] = ACTIONS(6013), - [anon_sym_BSLASHBiggl] = ACTIONS(6013), - [anon_sym_BSLASHright] = ACTIONS(6013), - [anon_sym_BSLASHbigr] = ACTIONS(6013), - [anon_sym_BSLASHBigr] = ACTIONS(6013), - [anon_sym_BSLASHbiggr] = ACTIONS(6013), - [anon_sym_BSLASHBiggr] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6013), - [anon_sym_BSLASHgls] = ACTIONS(6013), - [anon_sym_BSLASHGls] = ACTIONS(6013), - [anon_sym_BSLASHGLS] = ACTIONS(6013), - [anon_sym_BSLASHglspl] = ACTIONS(6013), - [anon_sym_BSLASHGlspl] = ACTIONS(6013), - [anon_sym_BSLASHGLSpl] = ACTIONS(6013), - [anon_sym_BSLASHglsdisp] = ACTIONS(6013), - [anon_sym_BSLASHglslink] = ACTIONS(6013), - [anon_sym_BSLASHglstext] = ACTIONS(6013), - [anon_sym_BSLASHGlstext] = ACTIONS(6013), - [anon_sym_BSLASHGLStext] = ACTIONS(6013), - [anon_sym_BSLASHglsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6013), - [anon_sym_BSLASHglsplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSplural] = ACTIONS(6013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHglsname] = ACTIONS(6013), - [anon_sym_BSLASHGlsname] = ACTIONS(6013), - [anon_sym_BSLASHGLSname] = ACTIONS(6013), - [anon_sym_BSLASHglssymbol] = ACTIONS(6013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6013), - [anon_sym_BSLASHglsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6013), - [anon_sym_BSLASHglsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6013), - [anon_sym_BSLASHglsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6013), - [anon_sym_BSLASHglsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6013), - [anon_sym_BSLASHglsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6013), - [anon_sym_BSLASHnewacronym] = ACTIONS(6013), - [anon_sym_BSLASHacrshort] = ACTIONS(6013), - [anon_sym_BSLASHAcrshort] = ACTIONS(6013), - [anon_sym_BSLASHACRshort] = ACTIONS(6013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6013), - [anon_sym_BSLASHacrlong] = ACTIONS(6013), - [anon_sym_BSLASHAcrlong] = ACTIONS(6013), - [anon_sym_BSLASHACRlong] = ACTIONS(6013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6013), - [anon_sym_BSLASHacrfull] = ACTIONS(6013), - [anon_sym_BSLASHAcrfull] = ACTIONS(6013), - [anon_sym_BSLASHACRfull] = ACTIONS(6013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6013), - [anon_sym_BSLASHacs] = ACTIONS(6013), - [anon_sym_BSLASHAcs] = ACTIONS(6013), - [anon_sym_BSLASHacsp] = ACTIONS(6013), - [anon_sym_BSLASHAcsp] = ACTIONS(6013), - [anon_sym_BSLASHacl] = ACTIONS(6013), - [anon_sym_BSLASHAcl] = ACTIONS(6013), - [anon_sym_BSLASHaclp] = ACTIONS(6013), - [anon_sym_BSLASHAclp] = ACTIONS(6013), - [anon_sym_BSLASHacf] = ACTIONS(6013), - [anon_sym_BSLASHAcf] = ACTIONS(6013), - [anon_sym_BSLASHacfp] = ACTIONS(6013), - [anon_sym_BSLASHAcfp] = ACTIONS(6013), - [anon_sym_BSLASHac] = ACTIONS(6013), - [anon_sym_BSLASHAc] = ACTIONS(6013), - [anon_sym_BSLASHacp] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6013), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6013), - [anon_sym_BSLASHcolor] = ACTIONS(6013), - [anon_sym_BSLASHcolorbox] = ACTIONS(6013), - [anon_sym_BSLASHtextcolor] = ACTIONS(6013), - [anon_sym_BSLASHpagecolor] = ACTIONS(6013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6013), - [anon_sym_BSLASHtext] = ACTIONS(6013), - [anon_sym_BSLASHintertext] = ACTIONS(6013), - [anon_sym_shortintertext] = ACTIONS(6013), - }, - [441] = { - [sym_brack_group_text] = STATE(630), - [sym_command_name] = ACTIONS(6017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6017), - [anon_sym_LBRACK] = ACTIONS(6005), - [anon_sym_RBRACK] = ACTIONS(6019), - [anon_sym_COMMA] = ACTIONS(6019), - [anon_sym_EQ] = ACTIONS(6019), - [anon_sym_LPAREN] = ACTIONS(6019), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_BSLASHpart] = ACTIONS(6017), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddpart] = ACTIONS(6017), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6019), - [anon_sym_BSLASHchapter] = ACTIONS(6017), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddchap] = ACTIONS(6017), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsection] = ACTIONS(6017), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddsec] = ACTIONS(6017), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubsection] = ACTIONS(6017), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6017), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHparagraph] = ACTIONS(6017), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6017), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6019), - [anon_sym_BSLASHitem] = ACTIONS(6017), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6019), - [anon_sym_LBRACE] = ACTIONS(6019), - [sym_word] = ACTIONS(6017), - [sym_placeholder] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(6017), - [anon_sym_PIPE] = ACTIONS(6017), - [anon_sym_COLON] = ACTIONS(6017), - [anon_sym_SQUOTE] = ACTIONS(6017), - [anon_sym__] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), - [anon_sym_DOLLAR] = ACTIONS(6017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), - [anon_sym_BSLASHbegin] = ACTIONS(6017), - [anon_sym_BSLASHtitle] = ACTIONS(6017), - [anon_sym_BSLASHauthor] = ACTIONS(6017), - [anon_sym_BSLASHusepackage] = ACTIONS(6017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), - [anon_sym_BSLASHinclude] = ACTIONS(6017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), - [anon_sym_BSLASHinput] = ACTIONS(6017), - [anon_sym_BSLASHsubfile] = ACTIONS(6017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), - [anon_sym_BSLASHbibliography] = ACTIONS(6017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), - [anon_sym_BSLASHincludesvg] = ACTIONS(6017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), - [anon_sym_BSLASHimport] = ACTIONS(6017), - [anon_sym_BSLASHsubimport] = ACTIONS(6017), - [anon_sym_BSLASHinputfrom] = ACTIONS(6017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), - [anon_sym_BSLASHincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHcaption] = ACTIONS(6017), - [anon_sym_BSLASHcite] = ACTIONS(6017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCite] = ACTIONS(6017), - [anon_sym_BSLASHnocite] = ACTIONS(6017), - [anon_sym_BSLASHcitet] = ACTIONS(6017), - [anon_sym_BSLASHcitep] = ACTIONS(6017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteauthor] = ACTIONS(6017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitetitle] = ACTIONS(6017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteyear] = ACTIONS(6017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitedate] = ACTIONS(6017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteurl] = ACTIONS(6017), - [anon_sym_BSLASHfullcite] = ACTIONS(6017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), - [anon_sym_BSLASHcitealt] = ACTIONS(6017), - [anon_sym_BSLASHcitealp] = ACTIONS(6017), - [anon_sym_BSLASHcitetext] = ACTIONS(6017), - [anon_sym_BSLASHparencite] = ACTIONS(6017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHParencite] = ACTIONS(6017), - [anon_sym_BSLASHfootcite] = ACTIONS(6017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), - [anon_sym_BSLASHtextcite] = ACTIONS(6017), - [anon_sym_BSLASHTextcite] = ACTIONS(6017), - [anon_sym_BSLASHsmartcite] = ACTIONS(6017), - [anon_sym_BSLASHSmartcite] = ACTIONS(6017), - [anon_sym_BSLASHsupercite] = ACTIONS(6017), - [anon_sym_BSLASHautocite] = ACTIONS(6017), - [anon_sym_BSLASHAutocite] = ACTIONS(6017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHvolcite] = ACTIONS(6017), - [anon_sym_BSLASHVolcite] = ACTIONS(6017), - [anon_sym_BSLASHpvolcite] = ACTIONS(6017), - [anon_sym_BSLASHPvolcite] = ACTIONS(6017), - [anon_sym_BSLASHfvolcite] = ACTIONS(6017), - [anon_sym_BSLASHftvolcite] = ACTIONS(6017), - [anon_sym_BSLASHsvolcite] = ACTIONS(6017), - [anon_sym_BSLASHSvolcite] = ACTIONS(6017), - [anon_sym_BSLASHtvolcite] = ACTIONS(6017), - [anon_sym_BSLASHTvolcite] = ACTIONS(6017), - [anon_sym_BSLASHavolcite] = ACTIONS(6017), - [anon_sym_BSLASHAvolcite] = ACTIONS(6017), - [anon_sym_BSLASHnotecite] = ACTIONS(6017), - [anon_sym_BSLASHNotecite] = ACTIONS(6017), - [anon_sym_BSLASHpnotecite] = ACTIONS(6017), - [anon_sym_BSLASHPnotecite] = ACTIONS(6017), - [anon_sym_BSLASHfnotecite] = ACTIONS(6017), - [anon_sym_BSLASHlabel] = ACTIONS(6017), - [anon_sym_BSLASHref] = ACTIONS(6017), - [anon_sym_BSLASHeqref] = ACTIONS(6017), - [anon_sym_BSLASHvref] = ACTIONS(6017), - [anon_sym_BSLASHVref] = ACTIONS(6017), - [anon_sym_BSLASHautoref] = ACTIONS(6017), - [anon_sym_BSLASHpageref] = ACTIONS(6017), - [anon_sym_BSLASHcref] = ACTIONS(6017), - [anon_sym_BSLASHCref] = ACTIONS(6017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnameCref] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHlabelcref] = ACTIONS(6017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCrefrange] = ACTIONS(6017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnewlabel] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHdef] = ACTIONS(6017), - [anon_sym_BSLASHlet] = ACTIONS(6017), - [anon_sym_BSLASHleft] = ACTIONS(6017), - [anon_sym_BSLASHbig] = ACTIONS(6017), - [anon_sym_BSLASHBig] = ACTIONS(6017), - [anon_sym_BSLASHbigg] = ACTIONS(6017), - [anon_sym_BSLASHBigg] = ACTIONS(6017), - [anon_sym_BSLASHbigl] = ACTIONS(6017), - [anon_sym_BSLASHBigl] = ACTIONS(6017), - [anon_sym_BSLASHbiggl] = ACTIONS(6017), - [anon_sym_BSLASHBiggl] = ACTIONS(6017), - [anon_sym_BSLASHright] = ACTIONS(6017), - [anon_sym_BSLASHbigr] = ACTIONS(6017), - [anon_sym_BSLASHBigr] = ACTIONS(6017), - [anon_sym_BSLASHbiggr] = ACTIONS(6017), - [anon_sym_BSLASHBiggr] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), - [anon_sym_BSLASHgls] = ACTIONS(6017), - [anon_sym_BSLASHGls] = ACTIONS(6017), - [anon_sym_BSLASHGLS] = ACTIONS(6017), - [anon_sym_BSLASHglspl] = ACTIONS(6017), - [anon_sym_BSLASHGlspl] = ACTIONS(6017), - [anon_sym_BSLASHGLSpl] = ACTIONS(6017), - [anon_sym_BSLASHglsdisp] = ACTIONS(6017), - [anon_sym_BSLASHglslink] = ACTIONS(6017), - [anon_sym_BSLASHglstext] = ACTIONS(6017), - [anon_sym_BSLASHGlstext] = ACTIONS(6017), - [anon_sym_BSLASHGLStext] = ACTIONS(6017), - [anon_sym_BSLASHglsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), - [anon_sym_BSLASHglsplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSplural] = ACTIONS(6017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHglsname] = ACTIONS(6017), - [anon_sym_BSLASHGlsname] = ACTIONS(6017), - [anon_sym_BSLASHGLSname] = ACTIONS(6017), - [anon_sym_BSLASHglssymbol] = ACTIONS(6017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), - [anon_sym_BSLASHglsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), - [anon_sym_BSLASHglsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), - [anon_sym_BSLASHglsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), - [anon_sym_BSLASHglsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), - [anon_sym_BSLASHglsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), - [anon_sym_BSLASHnewacronym] = ACTIONS(6017), - [anon_sym_BSLASHacrshort] = ACTIONS(6017), - [anon_sym_BSLASHAcrshort] = ACTIONS(6017), - [anon_sym_BSLASHACRshort] = ACTIONS(6017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), - [anon_sym_BSLASHacrlong] = ACTIONS(6017), - [anon_sym_BSLASHAcrlong] = ACTIONS(6017), - [anon_sym_BSLASHACRlong] = ACTIONS(6017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), - [anon_sym_BSLASHacrfull] = ACTIONS(6017), - [anon_sym_BSLASHAcrfull] = ACTIONS(6017), - [anon_sym_BSLASHACRfull] = ACTIONS(6017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), - [anon_sym_BSLASHacs] = ACTIONS(6017), - [anon_sym_BSLASHAcs] = ACTIONS(6017), - [anon_sym_BSLASHacsp] = ACTIONS(6017), - [anon_sym_BSLASHAcsp] = ACTIONS(6017), - [anon_sym_BSLASHacl] = ACTIONS(6017), - [anon_sym_BSLASHAcl] = ACTIONS(6017), - [anon_sym_BSLASHaclp] = ACTIONS(6017), - [anon_sym_BSLASHAclp] = ACTIONS(6017), - [anon_sym_BSLASHacf] = ACTIONS(6017), - [anon_sym_BSLASHAcf] = ACTIONS(6017), - [anon_sym_BSLASHacfp] = ACTIONS(6017), - [anon_sym_BSLASHAcfp] = ACTIONS(6017), - [anon_sym_BSLASHac] = ACTIONS(6017), - [anon_sym_BSLASHAc] = ACTIONS(6017), - [anon_sym_BSLASHacp] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), - [anon_sym_BSLASHcolor] = ACTIONS(6017), - [anon_sym_BSLASHcolorbox] = ACTIONS(6017), - [anon_sym_BSLASHtextcolor] = ACTIONS(6017), - [anon_sym_BSLASHpagecolor] = ACTIONS(6017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), - [anon_sym_BSLASHtext] = ACTIONS(6017), - [anon_sym_BSLASHintertext] = ACTIONS(6017), - [anon_sym_shortintertext] = ACTIONS(6017), - }, - [442] = { - [sym_curly_group] = STATE(634), - [sym_command_name] = ACTIONS(6021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6021), - [anon_sym_LBRACK] = ACTIONS(6023), - [anon_sym_RBRACK] = ACTIONS(6023), - [anon_sym_COMMA] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(6023), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_RPAREN] = ACTIONS(6023), - [anon_sym_BSLASHpart] = ACTIONS(6021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddpart] = ACTIONS(6021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6023), - [anon_sym_BSLASHchapter] = ACTIONS(6021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddchap] = ACTIONS(6021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsection] = ACTIONS(6021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddsec] = ACTIONS(6021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubsection] = ACTIONS(6021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHparagraph] = ACTIONS(6021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6023), - [anon_sym_BSLASHitem] = ACTIONS(6021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6023), - [anon_sym_LBRACE] = ACTIONS(215), - [sym_word] = ACTIONS(6021), - [sym_placeholder] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6023), - [anon_sym_DASH] = ACTIONS(6023), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6023), - [anon_sym_LT] = ACTIONS(6021), - [anon_sym_GT] = ACTIONS(6021), - [anon_sym_BANG] = ACTIONS(6021), - [anon_sym_PIPE] = ACTIONS(6021), - [anon_sym_COLON] = ACTIONS(6021), - [anon_sym_SQUOTE] = ACTIONS(6021), - [anon_sym__] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), - [anon_sym_BSLASHbegin] = ACTIONS(6021), - [anon_sym_BSLASHtitle] = ACTIONS(6021), - [anon_sym_BSLASHauthor] = ACTIONS(6021), - [anon_sym_BSLASHusepackage] = ACTIONS(6021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), - [anon_sym_BSLASHinclude] = ACTIONS(6021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), - [anon_sym_BSLASHinput] = ACTIONS(6021), - [anon_sym_BSLASHsubfile] = ACTIONS(6021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), - [anon_sym_BSLASHbibliography] = ACTIONS(6021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), - [anon_sym_BSLASHincludesvg] = ACTIONS(6021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), - [anon_sym_BSLASHimport] = ACTIONS(6021), - [anon_sym_BSLASHsubimport] = ACTIONS(6021), - [anon_sym_BSLASHinputfrom] = ACTIONS(6021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), - [anon_sym_BSLASHincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHcaption] = ACTIONS(6021), - [anon_sym_BSLASHcite] = ACTIONS(6021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCite] = ACTIONS(6021), - [anon_sym_BSLASHnocite] = ACTIONS(6021), - [anon_sym_BSLASHcitet] = ACTIONS(6021), - [anon_sym_BSLASHcitep] = ACTIONS(6021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteauthor] = ACTIONS(6021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitetitle] = ACTIONS(6021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteyear] = ACTIONS(6021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitedate] = ACTIONS(6021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteurl] = ACTIONS(6021), - [anon_sym_BSLASHfullcite] = ACTIONS(6021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), - [anon_sym_BSLASHcitealt] = ACTIONS(6021), - [anon_sym_BSLASHcitealp] = ACTIONS(6021), - [anon_sym_BSLASHcitetext] = ACTIONS(6021), - [anon_sym_BSLASHparencite] = ACTIONS(6021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHParencite] = ACTIONS(6021), - [anon_sym_BSLASHfootcite] = ACTIONS(6021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), - [anon_sym_BSLASHtextcite] = ACTIONS(6021), - [anon_sym_BSLASHTextcite] = ACTIONS(6021), - [anon_sym_BSLASHsmartcite] = ACTIONS(6021), - [anon_sym_BSLASHSmartcite] = ACTIONS(6021), - [anon_sym_BSLASHsupercite] = ACTIONS(6021), - [anon_sym_BSLASHautocite] = ACTIONS(6021), - [anon_sym_BSLASHAutocite] = ACTIONS(6021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHvolcite] = ACTIONS(6021), - [anon_sym_BSLASHVolcite] = ACTIONS(6021), - [anon_sym_BSLASHpvolcite] = ACTIONS(6021), - [anon_sym_BSLASHPvolcite] = ACTIONS(6021), - [anon_sym_BSLASHfvolcite] = ACTIONS(6021), - [anon_sym_BSLASHftvolcite] = ACTIONS(6021), - [anon_sym_BSLASHsvolcite] = ACTIONS(6021), - [anon_sym_BSLASHSvolcite] = ACTIONS(6021), - [anon_sym_BSLASHtvolcite] = ACTIONS(6021), - [anon_sym_BSLASHTvolcite] = ACTIONS(6021), - [anon_sym_BSLASHavolcite] = ACTIONS(6021), - [anon_sym_BSLASHAvolcite] = ACTIONS(6021), - [anon_sym_BSLASHnotecite] = ACTIONS(6021), - [anon_sym_BSLASHNotecite] = ACTIONS(6021), - [anon_sym_BSLASHpnotecite] = ACTIONS(6021), - [anon_sym_BSLASHPnotecite] = ACTIONS(6021), - [anon_sym_BSLASHfnotecite] = ACTIONS(6021), - [anon_sym_BSLASHlabel] = ACTIONS(6021), - [anon_sym_BSLASHref] = ACTIONS(6021), - [anon_sym_BSLASHeqref] = ACTIONS(6021), - [anon_sym_BSLASHvref] = ACTIONS(6021), - [anon_sym_BSLASHVref] = ACTIONS(6021), - [anon_sym_BSLASHautoref] = ACTIONS(6021), - [anon_sym_BSLASHpageref] = ACTIONS(6021), - [anon_sym_BSLASHcref] = ACTIONS(6021), - [anon_sym_BSLASHCref] = ACTIONS(6021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnameCref] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHlabelcref] = ACTIONS(6021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCrefrange] = ACTIONS(6021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnewlabel] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHdef] = ACTIONS(6021), - [anon_sym_BSLASHlet] = ACTIONS(6021), - [anon_sym_BSLASHleft] = ACTIONS(6021), - [anon_sym_BSLASHbig] = ACTIONS(6021), - [anon_sym_BSLASHBig] = ACTIONS(6021), - [anon_sym_BSLASHbigg] = ACTIONS(6021), - [anon_sym_BSLASHBigg] = ACTIONS(6021), - [anon_sym_BSLASHbigl] = ACTIONS(6021), - [anon_sym_BSLASHBigl] = ACTIONS(6021), - [anon_sym_BSLASHbiggl] = ACTIONS(6021), - [anon_sym_BSLASHBiggl] = ACTIONS(6021), - [anon_sym_BSLASHright] = ACTIONS(6021), - [anon_sym_BSLASHbigr] = ACTIONS(6021), - [anon_sym_BSLASHBigr] = ACTIONS(6021), - [anon_sym_BSLASHbiggr] = ACTIONS(6021), - [anon_sym_BSLASHBiggr] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), - [anon_sym_BSLASHgls] = ACTIONS(6021), - [anon_sym_BSLASHGls] = ACTIONS(6021), - [anon_sym_BSLASHGLS] = ACTIONS(6021), - [anon_sym_BSLASHglspl] = ACTIONS(6021), - [anon_sym_BSLASHGlspl] = ACTIONS(6021), - [anon_sym_BSLASHGLSpl] = ACTIONS(6021), - [anon_sym_BSLASHglsdisp] = ACTIONS(6021), - [anon_sym_BSLASHglslink] = ACTIONS(6021), - [anon_sym_BSLASHglstext] = ACTIONS(6021), - [anon_sym_BSLASHGlstext] = ACTIONS(6021), - [anon_sym_BSLASHGLStext] = ACTIONS(6021), - [anon_sym_BSLASHglsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), - [anon_sym_BSLASHglsplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSplural] = ACTIONS(6021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHglsname] = ACTIONS(6021), - [anon_sym_BSLASHGlsname] = ACTIONS(6021), - [anon_sym_BSLASHGLSname] = ACTIONS(6021), - [anon_sym_BSLASHglssymbol] = ACTIONS(6021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), - [anon_sym_BSLASHglsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), - [anon_sym_BSLASHglsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), - [anon_sym_BSLASHglsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), - [anon_sym_BSLASHglsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), - [anon_sym_BSLASHglsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), - [anon_sym_BSLASHnewacronym] = ACTIONS(6021), - [anon_sym_BSLASHacrshort] = ACTIONS(6021), - [anon_sym_BSLASHAcrshort] = ACTIONS(6021), - [anon_sym_BSLASHACRshort] = ACTIONS(6021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), - [anon_sym_BSLASHacrlong] = ACTIONS(6021), - [anon_sym_BSLASHAcrlong] = ACTIONS(6021), - [anon_sym_BSLASHACRlong] = ACTIONS(6021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), - [anon_sym_BSLASHacrfull] = ACTIONS(6021), - [anon_sym_BSLASHAcrfull] = ACTIONS(6021), - [anon_sym_BSLASHACRfull] = ACTIONS(6021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), - [anon_sym_BSLASHacs] = ACTIONS(6021), - [anon_sym_BSLASHAcs] = ACTIONS(6021), - [anon_sym_BSLASHacsp] = ACTIONS(6021), - [anon_sym_BSLASHAcsp] = ACTIONS(6021), - [anon_sym_BSLASHacl] = ACTIONS(6021), - [anon_sym_BSLASHAcl] = ACTIONS(6021), - [anon_sym_BSLASHaclp] = ACTIONS(6021), - [anon_sym_BSLASHAclp] = ACTIONS(6021), - [anon_sym_BSLASHacf] = ACTIONS(6021), - [anon_sym_BSLASHAcf] = ACTIONS(6021), - [anon_sym_BSLASHacfp] = ACTIONS(6021), - [anon_sym_BSLASHAcfp] = ACTIONS(6021), - [anon_sym_BSLASHac] = ACTIONS(6021), - [anon_sym_BSLASHAc] = ACTIONS(6021), - [anon_sym_BSLASHacp] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), - [anon_sym_BSLASHcolor] = ACTIONS(6021), - [anon_sym_BSLASHcolorbox] = ACTIONS(6021), - [anon_sym_BSLASHtextcolor] = ACTIONS(6021), - [anon_sym_BSLASHpagecolor] = ACTIONS(6021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), - [anon_sym_BSLASHtext] = ACTIONS(6021), - [anon_sym_BSLASHintertext] = ACTIONS(6021), - [anon_sym_shortintertext] = ACTIONS(6021), - }, - [443] = { - [sym_command_name] = ACTIONS(6025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6025), - [anon_sym_LBRACK] = ACTIONS(6027), - [anon_sym_RBRACK] = ACTIONS(6027), - [anon_sym_COMMA] = ACTIONS(6027), - [anon_sym_EQ] = ACTIONS(6027), - [anon_sym_LPAREN] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_BSLASHpart] = ACTIONS(6025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddpart] = ACTIONS(6025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6027), - [anon_sym_BSLASHchapter] = ACTIONS(6025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddchap] = ACTIONS(6025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsection] = ACTIONS(6025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddsec] = ACTIONS(6025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubsection] = ACTIONS(6025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHparagraph] = ACTIONS(6025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6027), - [anon_sym_BSLASHitem] = ACTIONS(6025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6027), - [anon_sym_LBRACE] = ACTIONS(6027), - [sym_word] = ACTIONS(6025), - [sym_placeholder] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6025), - [anon_sym_GT] = ACTIONS(6025), - [anon_sym_BANG] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_SQUOTE] = ACTIONS(6025), - [anon_sym__] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), - [anon_sym_BSLASHbegin] = ACTIONS(6025), - [anon_sym_BSLASHtitle] = ACTIONS(6025), - [anon_sym_BSLASHauthor] = ACTIONS(6025), - [anon_sym_BSLASHusepackage] = ACTIONS(6025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), - [anon_sym_BSLASHinclude] = ACTIONS(6025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), - [anon_sym_BSLASHinput] = ACTIONS(6025), - [anon_sym_BSLASHsubfile] = ACTIONS(6025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), - [anon_sym_BSLASHbibliography] = ACTIONS(6025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), - [anon_sym_BSLASHincludesvg] = ACTIONS(6025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), - [anon_sym_BSLASHimport] = ACTIONS(6025), - [anon_sym_BSLASHsubimport] = ACTIONS(6025), - [anon_sym_BSLASHinputfrom] = ACTIONS(6025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), - [anon_sym_BSLASHincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHcaption] = ACTIONS(6025), - [anon_sym_BSLASHcite] = ACTIONS(6025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCite] = ACTIONS(6025), - [anon_sym_BSLASHnocite] = ACTIONS(6025), - [anon_sym_BSLASHcitet] = ACTIONS(6025), - [anon_sym_BSLASHcitep] = ACTIONS(6025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteauthor] = ACTIONS(6025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitetitle] = ACTIONS(6025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteyear] = ACTIONS(6025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitedate] = ACTIONS(6025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteurl] = ACTIONS(6025), - [anon_sym_BSLASHfullcite] = ACTIONS(6025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), - [anon_sym_BSLASHcitealt] = ACTIONS(6025), - [anon_sym_BSLASHcitealp] = ACTIONS(6025), - [anon_sym_BSLASHcitetext] = ACTIONS(6025), - [anon_sym_BSLASHparencite] = ACTIONS(6025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHParencite] = ACTIONS(6025), - [anon_sym_BSLASHfootcite] = ACTIONS(6025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), - [anon_sym_BSLASHtextcite] = ACTIONS(6025), - [anon_sym_BSLASHTextcite] = ACTIONS(6025), - [anon_sym_BSLASHsmartcite] = ACTIONS(6025), - [anon_sym_BSLASHSmartcite] = ACTIONS(6025), - [anon_sym_BSLASHsupercite] = ACTIONS(6025), - [anon_sym_BSLASHautocite] = ACTIONS(6025), - [anon_sym_BSLASHAutocite] = ACTIONS(6025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHvolcite] = ACTIONS(6025), - [anon_sym_BSLASHVolcite] = ACTIONS(6025), - [anon_sym_BSLASHpvolcite] = ACTIONS(6025), - [anon_sym_BSLASHPvolcite] = ACTIONS(6025), - [anon_sym_BSLASHfvolcite] = ACTIONS(6025), - [anon_sym_BSLASHftvolcite] = ACTIONS(6025), - [anon_sym_BSLASHsvolcite] = ACTIONS(6025), - [anon_sym_BSLASHSvolcite] = ACTIONS(6025), - [anon_sym_BSLASHtvolcite] = ACTIONS(6025), - [anon_sym_BSLASHTvolcite] = ACTIONS(6025), - [anon_sym_BSLASHavolcite] = ACTIONS(6025), - [anon_sym_BSLASHAvolcite] = ACTIONS(6025), - [anon_sym_BSLASHnotecite] = ACTIONS(6025), - [anon_sym_BSLASHNotecite] = ACTIONS(6025), - [anon_sym_BSLASHpnotecite] = ACTIONS(6025), - [anon_sym_BSLASHPnotecite] = ACTIONS(6025), - [anon_sym_BSLASHfnotecite] = ACTIONS(6025), - [anon_sym_BSLASHlabel] = ACTIONS(6025), - [anon_sym_BSLASHref] = ACTIONS(6025), - [anon_sym_BSLASHeqref] = ACTIONS(6025), - [anon_sym_BSLASHvref] = ACTIONS(6025), - [anon_sym_BSLASHVref] = ACTIONS(6025), - [anon_sym_BSLASHautoref] = ACTIONS(6025), - [anon_sym_BSLASHpageref] = ACTIONS(6025), - [anon_sym_BSLASHcref] = ACTIONS(6025), - [anon_sym_BSLASHCref] = ACTIONS(6025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnameCref] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHlabelcref] = ACTIONS(6025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCrefrange] = ACTIONS(6025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnewlabel] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHdef] = ACTIONS(6025), - [anon_sym_BSLASHlet] = ACTIONS(6025), - [anon_sym_BSLASHleft] = ACTIONS(6025), - [anon_sym_BSLASHbig] = ACTIONS(6025), - [anon_sym_BSLASHBig] = ACTIONS(6025), - [anon_sym_BSLASHbigg] = ACTIONS(6025), - [anon_sym_BSLASHBigg] = ACTIONS(6025), - [anon_sym_BSLASHbigl] = ACTIONS(6025), - [anon_sym_BSLASHBigl] = ACTIONS(6025), - [anon_sym_BSLASHbiggl] = ACTIONS(6025), - [anon_sym_BSLASHBiggl] = ACTIONS(6025), - [anon_sym_BSLASHright] = ACTIONS(6025), - [anon_sym_BSLASHbigr] = ACTIONS(6025), - [anon_sym_BSLASHBigr] = ACTIONS(6025), - [anon_sym_BSLASHbiggr] = ACTIONS(6025), - [anon_sym_BSLASHBiggr] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), - [anon_sym_BSLASHgls] = ACTIONS(6025), - [anon_sym_BSLASHGls] = ACTIONS(6025), - [anon_sym_BSLASHGLS] = ACTIONS(6025), - [anon_sym_BSLASHglspl] = ACTIONS(6025), - [anon_sym_BSLASHGlspl] = ACTIONS(6025), - [anon_sym_BSLASHGLSpl] = ACTIONS(6025), - [anon_sym_BSLASHglsdisp] = ACTIONS(6025), - [anon_sym_BSLASHglslink] = ACTIONS(6025), - [anon_sym_BSLASHglstext] = ACTIONS(6025), - [anon_sym_BSLASHGlstext] = ACTIONS(6025), - [anon_sym_BSLASHGLStext] = ACTIONS(6025), - [anon_sym_BSLASHglsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), - [anon_sym_BSLASHglsplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSplural] = ACTIONS(6025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHglsname] = ACTIONS(6025), - [anon_sym_BSLASHGlsname] = ACTIONS(6025), - [anon_sym_BSLASHGLSname] = ACTIONS(6025), - [anon_sym_BSLASHglssymbol] = ACTIONS(6025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), - [anon_sym_BSLASHglsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), - [anon_sym_BSLASHglsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), - [anon_sym_BSLASHglsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), - [anon_sym_BSLASHglsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), - [anon_sym_BSLASHglsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), - [anon_sym_BSLASHnewacronym] = ACTIONS(6025), - [anon_sym_BSLASHacrshort] = ACTIONS(6025), - [anon_sym_BSLASHAcrshort] = ACTIONS(6025), - [anon_sym_BSLASHACRshort] = ACTIONS(6025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), - [anon_sym_BSLASHacrlong] = ACTIONS(6025), - [anon_sym_BSLASHAcrlong] = ACTIONS(6025), - [anon_sym_BSLASHACRlong] = ACTIONS(6025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), - [anon_sym_BSLASHacrfull] = ACTIONS(6025), - [anon_sym_BSLASHAcrfull] = ACTIONS(6025), - [anon_sym_BSLASHACRfull] = ACTIONS(6025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), - [anon_sym_BSLASHacs] = ACTIONS(6025), - [anon_sym_BSLASHAcs] = ACTIONS(6025), - [anon_sym_BSLASHacsp] = ACTIONS(6025), - [anon_sym_BSLASHAcsp] = ACTIONS(6025), - [anon_sym_BSLASHacl] = ACTIONS(6025), - [anon_sym_BSLASHAcl] = ACTIONS(6025), - [anon_sym_BSLASHaclp] = ACTIONS(6025), - [anon_sym_BSLASHAclp] = ACTIONS(6025), - [anon_sym_BSLASHacf] = ACTIONS(6025), - [anon_sym_BSLASHAcf] = ACTIONS(6025), - [anon_sym_BSLASHacfp] = ACTIONS(6025), - [anon_sym_BSLASHAcfp] = ACTIONS(6025), - [anon_sym_BSLASHac] = ACTIONS(6025), - [anon_sym_BSLASHAc] = ACTIONS(6025), - [anon_sym_BSLASHacp] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), - [anon_sym_BSLASHcolor] = ACTIONS(6025), - [anon_sym_BSLASHcolorbox] = ACTIONS(6025), - [anon_sym_BSLASHtextcolor] = ACTIONS(6025), - [anon_sym_BSLASHpagecolor] = ACTIONS(6025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), - [anon_sym_BSLASHtext] = ACTIONS(6025), - [anon_sym_BSLASHintertext] = ACTIONS(6025), - [anon_sym_shortintertext] = ACTIONS(6025), - }, - [444] = { - [sym_command_name] = ACTIONS(6029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6029), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_EQ] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_BSLASHpart] = ACTIONS(6029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddpart] = ACTIONS(6029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6031), - [anon_sym_BSLASHchapter] = ACTIONS(6029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddchap] = ACTIONS(6029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsection] = ACTIONS(6029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddsec] = ACTIONS(6029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubsection] = ACTIONS(6029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHparagraph] = ACTIONS(6029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6031), - [anon_sym_BSLASHitem] = ACTIONS(6029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6031), - [anon_sym_LBRACE] = ACTIONS(6031), - [sym_word] = ACTIONS(6029), - [sym_placeholder] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6031), - [anon_sym_DASH] = ACTIONS(6031), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6029), - [anon_sym_GT] = ACTIONS(6029), - [anon_sym_BANG] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_COLON] = ACTIONS(6029), - [anon_sym_SQUOTE] = ACTIONS(6029), - [anon_sym__] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), - [anon_sym_BSLASHbegin] = ACTIONS(6029), - [anon_sym_BSLASHtitle] = ACTIONS(6029), - [anon_sym_BSLASHauthor] = ACTIONS(6029), - [anon_sym_BSLASHusepackage] = ACTIONS(6029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), - [anon_sym_BSLASHinclude] = ACTIONS(6029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), - [anon_sym_BSLASHinput] = ACTIONS(6029), - [anon_sym_BSLASHsubfile] = ACTIONS(6029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), - [anon_sym_BSLASHbibliography] = ACTIONS(6029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), - [anon_sym_BSLASHincludesvg] = ACTIONS(6029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), - [anon_sym_BSLASHimport] = ACTIONS(6029), - [anon_sym_BSLASHsubimport] = ACTIONS(6029), - [anon_sym_BSLASHinputfrom] = ACTIONS(6029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), - [anon_sym_BSLASHincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHcaption] = ACTIONS(6029), - [anon_sym_BSLASHcite] = ACTIONS(6029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCite] = ACTIONS(6029), - [anon_sym_BSLASHnocite] = ACTIONS(6029), - [anon_sym_BSLASHcitet] = ACTIONS(6029), - [anon_sym_BSLASHcitep] = ACTIONS(6029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteauthor] = ACTIONS(6029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitetitle] = ACTIONS(6029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteyear] = ACTIONS(6029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitedate] = ACTIONS(6029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteurl] = ACTIONS(6029), - [anon_sym_BSLASHfullcite] = ACTIONS(6029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), - [anon_sym_BSLASHcitealt] = ACTIONS(6029), - [anon_sym_BSLASHcitealp] = ACTIONS(6029), - [anon_sym_BSLASHcitetext] = ACTIONS(6029), - [anon_sym_BSLASHparencite] = ACTIONS(6029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHParencite] = ACTIONS(6029), - [anon_sym_BSLASHfootcite] = ACTIONS(6029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), - [anon_sym_BSLASHtextcite] = ACTIONS(6029), - [anon_sym_BSLASHTextcite] = ACTIONS(6029), - [anon_sym_BSLASHsmartcite] = ACTIONS(6029), - [anon_sym_BSLASHSmartcite] = ACTIONS(6029), - [anon_sym_BSLASHsupercite] = ACTIONS(6029), - [anon_sym_BSLASHautocite] = ACTIONS(6029), - [anon_sym_BSLASHAutocite] = ACTIONS(6029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHvolcite] = ACTIONS(6029), - [anon_sym_BSLASHVolcite] = ACTIONS(6029), - [anon_sym_BSLASHpvolcite] = ACTIONS(6029), - [anon_sym_BSLASHPvolcite] = ACTIONS(6029), - [anon_sym_BSLASHfvolcite] = ACTIONS(6029), - [anon_sym_BSLASHftvolcite] = ACTIONS(6029), - [anon_sym_BSLASHsvolcite] = ACTIONS(6029), - [anon_sym_BSLASHSvolcite] = ACTIONS(6029), - [anon_sym_BSLASHtvolcite] = ACTIONS(6029), - [anon_sym_BSLASHTvolcite] = ACTIONS(6029), - [anon_sym_BSLASHavolcite] = ACTIONS(6029), - [anon_sym_BSLASHAvolcite] = ACTIONS(6029), - [anon_sym_BSLASHnotecite] = ACTIONS(6029), - [anon_sym_BSLASHNotecite] = ACTIONS(6029), - [anon_sym_BSLASHpnotecite] = ACTIONS(6029), - [anon_sym_BSLASHPnotecite] = ACTIONS(6029), - [anon_sym_BSLASHfnotecite] = ACTIONS(6029), - [anon_sym_BSLASHlabel] = ACTIONS(6029), - [anon_sym_BSLASHref] = ACTIONS(6029), - [anon_sym_BSLASHeqref] = ACTIONS(6029), - [anon_sym_BSLASHvref] = ACTIONS(6029), - [anon_sym_BSLASHVref] = ACTIONS(6029), - [anon_sym_BSLASHautoref] = ACTIONS(6029), - [anon_sym_BSLASHpageref] = ACTIONS(6029), - [anon_sym_BSLASHcref] = ACTIONS(6029), - [anon_sym_BSLASHCref] = ACTIONS(6029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnameCref] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHlabelcref] = ACTIONS(6029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCrefrange] = ACTIONS(6029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnewlabel] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHdef] = ACTIONS(6029), - [anon_sym_BSLASHlet] = ACTIONS(6029), - [anon_sym_BSLASHleft] = ACTIONS(6029), - [anon_sym_BSLASHbig] = ACTIONS(6029), - [anon_sym_BSLASHBig] = ACTIONS(6029), - [anon_sym_BSLASHbigg] = ACTIONS(6029), - [anon_sym_BSLASHBigg] = ACTIONS(6029), - [anon_sym_BSLASHbigl] = ACTIONS(6029), - [anon_sym_BSLASHBigl] = ACTIONS(6029), - [anon_sym_BSLASHbiggl] = ACTIONS(6029), - [anon_sym_BSLASHBiggl] = ACTIONS(6029), - [anon_sym_BSLASHright] = ACTIONS(6029), - [anon_sym_BSLASHbigr] = ACTIONS(6029), - [anon_sym_BSLASHBigr] = ACTIONS(6029), - [anon_sym_BSLASHbiggr] = ACTIONS(6029), - [anon_sym_BSLASHBiggr] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), - [anon_sym_BSLASHgls] = ACTIONS(6029), - [anon_sym_BSLASHGls] = ACTIONS(6029), - [anon_sym_BSLASHGLS] = ACTIONS(6029), - [anon_sym_BSLASHglspl] = ACTIONS(6029), - [anon_sym_BSLASHGlspl] = ACTIONS(6029), - [anon_sym_BSLASHGLSpl] = ACTIONS(6029), - [anon_sym_BSLASHglsdisp] = ACTIONS(6029), - [anon_sym_BSLASHglslink] = ACTIONS(6029), - [anon_sym_BSLASHglstext] = ACTIONS(6029), - [anon_sym_BSLASHGlstext] = ACTIONS(6029), - [anon_sym_BSLASHGLStext] = ACTIONS(6029), - [anon_sym_BSLASHglsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), - [anon_sym_BSLASHglsplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSplural] = ACTIONS(6029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHglsname] = ACTIONS(6029), - [anon_sym_BSLASHGlsname] = ACTIONS(6029), - [anon_sym_BSLASHGLSname] = ACTIONS(6029), - [anon_sym_BSLASHglssymbol] = ACTIONS(6029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), - [anon_sym_BSLASHglsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), - [anon_sym_BSLASHglsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), - [anon_sym_BSLASHglsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), - [anon_sym_BSLASHglsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), - [anon_sym_BSLASHglsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), - [anon_sym_BSLASHnewacronym] = ACTIONS(6029), - [anon_sym_BSLASHacrshort] = ACTIONS(6029), - [anon_sym_BSLASHAcrshort] = ACTIONS(6029), - [anon_sym_BSLASHACRshort] = ACTIONS(6029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), - [anon_sym_BSLASHacrlong] = ACTIONS(6029), - [anon_sym_BSLASHAcrlong] = ACTIONS(6029), - [anon_sym_BSLASHACRlong] = ACTIONS(6029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), - [anon_sym_BSLASHacrfull] = ACTIONS(6029), - [anon_sym_BSLASHAcrfull] = ACTIONS(6029), - [anon_sym_BSLASHACRfull] = ACTIONS(6029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), - [anon_sym_BSLASHacs] = ACTIONS(6029), - [anon_sym_BSLASHAcs] = ACTIONS(6029), - [anon_sym_BSLASHacsp] = ACTIONS(6029), - [anon_sym_BSLASHAcsp] = ACTIONS(6029), - [anon_sym_BSLASHacl] = ACTIONS(6029), - [anon_sym_BSLASHAcl] = ACTIONS(6029), - [anon_sym_BSLASHaclp] = ACTIONS(6029), - [anon_sym_BSLASHAclp] = ACTIONS(6029), - [anon_sym_BSLASHacf] = ACTIONS(6029), - [anon_sym_BSLASHAcf] = ACTIONS(6029), - [anon_sym_BSLASHacfp] = ACTIONS(6029), - [anon_sym_BSLASHAcfp] = ACTIONS(6029), - [anon_sym_BSLASHac] = ACTIONS(6029), - [anon_sym_BSLASHAc] = ACTIONS(6029), - [anon_sym_BSLASHacp] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), - [anon_sym_BSLASHcolor] = ACTIONS(6029), - [anon_sym_BSLASHcolorbox] = ACTIONS(6029), - [anon_sym_BSLASHtextcolor] = ACTIONS(6029), - [anon_sym_BSLASHpagecolor] = ACTIONS(6029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), - [anon_sym_BSLASHtext] = ACTIONS(6029), - [anon_sym_BSLASHintertext] = ACTIONS(6029), - [anon_sym_shortintertext] = ACTIONS(6029), - }, - [445] = { - [sym_command_name] = ACTIONS(6033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6033), - [anon_sym_LBRACK] = ACTIONS(6035), - [anon_sym_RBRACK] = ACTIONS(6035), - [anon_sym_COMMA] = ACTIONS(6035), - [anon_sym_EQ] = ACTIONS(6035), - [anon_sym_LPAREN] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_BSLASHpart] = ACTIONS(6033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddpart] = ACTIONS(6033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6035), - [anon_sym_BSLASHchapter] = ACTIONS(6033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddchap] = ACTIONS(6033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsection] = ACTIONS(6033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddsec] = ACTIONS(6033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubsection] = ACTIONS(6033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHparagraph] = ACTIONS(6033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6035), - [anon_sym_BSLASHitem] = ACTIONS(6033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6035), - [anon_sym_LBRACE] = ACTIONS(6035), - [sym_word] = ACTIONS(6033), - [sym_placeholder] = ACTIONS(6035), - [anon_sym_PLUS] = ACTIONS(6035), - [anon_sym_DASH] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6035), - [anon_sym_SLASH] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_COLON] = ACTIONS(6033), - [anon_sym_SQUOTE] = ACTIONS(6033), - [anon_sym__] = ACTIONS(6035), - [anon_sym_CARET] = ACTIONS(6035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6035), - [anon_sym_BSLASHbegin] = ACTIONS(6033), - [anon_sym_BSLASHtitle] = ACTIONS(6033), - [anon_sym_BSLASHauthor] = ACTIONS(6033), - [anon_sym_BSLASHusepackage] = ACTIONS(6033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), - [anon_sym_BSLASHinclude] = ACTIONS(6033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), - [anon_sym_BSLASHinput] = ACTIONS(6033), - [anon_sym_BSLASHsubfile] = ACTIONS(6033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), - [anon_sym_BSLASHbibliography] = ACTIONS(6033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), - [anon_sym_BSLASHincludesvg] = ACTIONS(6033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), - [anon_sym_BSLASHimport] = ACTIONS(6033), - [anon_sym_BSLASHsubimport] = ACTIONS(6033), - [anon_sym_BSLASHinputfrom] = ACTIONS(6033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), - [anon_sym_BSLASHincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHcaption] = ACTIONS(6033), - [anon_sym_BSLASHcite] = ACTIONS(6033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCite] = ACTIONS(6033), - [anon_sym_BSLASHnocite] = ACTIONS(6033), - [anon_sym_BSLASHcitet] = ACTIONS(6033), - [anon_sym_BSLASHcitep] = ACTIONS(6033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteauthor] = ACTIONS(6033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitetitle] = ACTIONS(6033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteyear] = ACTIONS(6033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitedate] = ACTIONS(6033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteurl] = ACTIONS(6033), - [anon_sym_BSLASHfullcite] = ACTIONS(6033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), - [anon_sym_BSLASHcitealt] = ACTIONS(6033), - [anon_sym_BSLASHcitealp] = ACTIONS(6033), - [anon_sym_BSLASHcitetext] = ACTIONS(6033), - [anon_sym_BSLASHparencite] = ACTIONS(6033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHParencite] = ACTIONS(6033), - [anon_sym_BSLASHfootcite] = ACTIONS(6033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), - [anon_sym_BSLASHtextcite] = ACTIONS(6033), - [anon_sym_BSLASHTextcite] = ACTIONS(6033), - [anon_sym_BSLASHsmartcite] = ACTIONS(6033), - [anon_sym_BSLASHSmartcite] = ACTIONS(6033), - [anon_sym_BSLASHsupercite] = ACTIONS(6033), - [anon_sym_BSLASHautocite] = ACTIONS(6033), - [anon_sym_BSLASHAutocite] = ACTIONS(6033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHvolcite] = ACTIONS(6033), - [anon_sym_BSLASHVolcite] = ACTIONS(6033), - [anon_sym_BSLASHpvolcite] = ACTIONS(6033), - [anon_sym_BSLASHPvolcite] = ACTIONS(6033), - [anon_sym_BSLASHfvolcite] = ACTIONS(6033), - [anon_sym_BSLASHftvolcite] = ACTIONS(6033), - [anon_sym_BSLASHsvolcite] = ACTIONS(6033), - [anon_sym_BSLASHSvolcite] = ACTIONS(6033), - [anon_sym_BSLASHtvolcite] = ACTIONS(6033), - [anon_sym_BSLASHTvolcite] = ACTIONS(6033), - [anon_sym_BSLASHavolcite] = ACTIONS(6033), - [anon_sym_BSLASHAvolcite] = ACTIONS(6033), - [anon_sym_BSLASHnotecite] = ACTIONS(6033), - [anon_sym_BSLASHNotecite] = ACTIONS(6033), - [anon_sym_BSLASHpnotecite] = ACTIONS(6033), - [anon_sym_BSLASHPnotecite] = ACTIONS(6033), - [anon_sym_BSLASHfnotecite] = ACTIONS(6033), - [anon_sym_BSLASHlabel] = ACTIONS(6033), - [anon_sym_BSLASHref] = ACTIONS(6033), - [anon_sym_BSLASHeqref] = ACTIONS(6033), - [anon_sym_BSLASHvref] = ACTIONS(6033), - [anon_sym_BSLASHVref] = ACTIONS(6033), - [anon_sym_BSLASHautoref] = ACTIONS(6033), - [anon_sym_BSLASHpageref] = ACTIONS(6033), - [anon_sym_BSLASHcref] = ACTIONS(6033), - [anon_sym_BSLASHCref] = ACTIONS(6033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnameCref] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHlabelcref] = ACTIONS(6033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCrefrange] = ACTIONS(6033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnewlabel] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6035), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHdef] = ACTIONS(6033), - [anon_sym_BSLASHlet] = ACTIONS(6033), - [anon_sym_BSLASHleft] = ACTIONS(6033), - [anon_sym_BSLASHbig] = ACTIONS(6033), - [anon_sym_BSLASHBig] = ACTIONS(6033), - [anon_sym_BSLASHbigg] = ACTIONS(6033), - [anon_sym_BSLASHBigg] = ACTIONS(6033), - [anon_sym_BSLASHbigl] = ACTIONS(6033), - [anon_sym_BSLASHBigl] = ACTIONS(6033), - [anon_sym_BSLASHbiggl] = ACTIONS(6033), - [anon_sym_BSLASHBiggl] = ACTIONS(6033), - [anon_sym_BSLASHright] = ACTIONS(6033), - [anon_sym_BSLASHbigr] = ACTIONS(6033), - [anon_sym_BSLASHBigr] = ACTIONS(6033), - [anon_sym_BSLASHbiggr] = ACTIONS(6033), - [anon_sym_BSLASHBiggr] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), - [anon_sym_BSLASHgls] = ACTIONS(6033), - [anon_sym_BSLASHGls] = ACTIONS(6033), - [anon_sym_BSLASHGLS] = ACTIONS(6033), - [anon_sym_BSLASHglspl] = ACTIONS(6033), - [anon_sym_BSLASHGlspl] = ACTIONS(6033), - [anon_sym_BSLASHGLSpl] = ACTIONS(6033), - [anon_sym_BSLASHglsdisp] = ACTIONS(6033), - [anon_sym_BSLASHglslink] = ACTIONS(6033), - [anon_sym_BSLASHglstext] = ACTIONS(6033), - [anon_sym_BSLASHGlstext] = ACTIONS(6033), - [anon_sym_BSLASHGLStext] = ACTIONS(6033), - [anon_sym_BSLASHglsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), - [anon_sym_BSLASHglsplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSplural] = ACTIONS(6033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHglsname] = ACTIONS(6033), - [anon_sym_BSLASHGlsname] = ACTIONS(6033), - [anon_sym_BSLASHGLSname] = ACTIONS(6033), - [anon_sym_BSLASHglssymbol] = ACTIONS(6033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), - [anon_sym_BSLASHglsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), - [anon_sym_BSLASHglsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), - [anon_sym_BSLASHglsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), - [anon_sym_BSLASHglsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), - [anon_sym_BSLASHglsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), - [anon_sym_BSLASHnewacronym] = ACTIONS(6033), - [anon_sym_BSLASHacrshort] = ACTIONS(6033), - [anon_sym_BSLASHAcrshort] = ACTIONS(6033), - [anon_sym_BSLASHACRshort] = ACTIONS(6033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), - [anon_sym_BSLASHacrlong] = ACTIONS(6033), - [anon_sym_BSLASHAcrlong] = ACTIONS(6033), - [anon_sym_BSLASHACRlong] = ACTIONS(6033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), - [anon_sym_BSLASHacrfull] = ACTIONS(6033), - [anon_sym_BSLASHAcrfull] = ACTIONS(6033), - [anon_sym_BSLASHACRfull] = ACTIONS(6033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), - [anon_sym_BSLASHacs] = ACTIONS(6033), - [anon_sym_BSLASHAcs] = ACTIONS(6033), - [anon_sym_BSLASHacsp] = ACTIONS(6033), - [anon_sym_BSLASHAcsp] = ACTIONS(6033), - [anon_sym_BSLASHacl] = ACTIONS(6033), - [anon_sym_BSLASHAcl] = ACTIONS(6033), - [anon_sym_BSLASHaclp] = ACTIONS(6033), - [anon_sym_BSLASHAclp] = ACTIONS(6033), - [anon_sym_BSLASHacf] = ACTIONS(6033), - [anon_sym_BSLASHAcf] = ACTIONS(6033), - [anon_sym_BSLASHacfp] = ACTIONS(6033), - [anon_sym_BSLASHAcfp] = ACTIONS(6033), - [anon_sym_BSLASHac] = ACTIONS(6033), - [anon_sym_BSLASHAc] = ACTIONS(6033), - [anon_sym_BSLASHacp] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), - [anon_sym_BSLASHcolor] = ACTIONS(6033), - [anon_sym_BSLASHcolorbox] = ACTIONS(6033), - [anon_sym_BSLASHtextcolor] = ACTIONS(6033), - [anon_sym_BSLASHpagecolor] = ACTIONS(6033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), - [anon_sym_BSLASHtext] = ACTIONS(6033), - [anon_sym_BSLASHintertext] = ACTIONS(6033), - [anon_sym_shortintertext] = ACTIONS(6033), - }, - [446] = { - [sym_command_name] = ACTIONS(6037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6037), - [anon_sym_LBRACK] = ACTIONS(6039), - [anon_sym_RBRACK] = ACTIONS(6039), - [anon_sym_COMMA] = ACTIONS(6039), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_LPAREN] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_BSLASHpart] = ACTIONS(6037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddpart] = ACTIONS(6037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6039), - [anon_sym_BSLASHchapter] = ACTIONS(6037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddchap] = ACTIONS(6037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsection] = ACTIONS(6037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddsec] = ACTIONS(6037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubsection] = ACTIONS(6037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHparagraph] = ACTIONS(6037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6039), - [anon_sym_BSLASHitem] = ACTIONS(6037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6039), - [anon_sym_LBRACE] = ACTIONS(6039), - [sym_word] = ACTIONS(6037), - [sym_placeholder] = ACTIONS(6039), - [anon_sym_PLUS] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [anon_sym_STAR] = ACTIONS(6039), - [anon_sym_SLASH] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6037), - [anon_sym_GT] = ACTIONS(6037), - [anon_sym_BANG] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_COLON] = ACTIONS(6037), - [anon_sym_SQUOTE] = ACTIONS(6037), - [anon_sym__] = ACTIONS(6039), - [anon_sym_CARET] = ACTIONS(6039), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6039), - [anon_sym_BSLASHbegin] = ACTIONS(6037), - [anon_sym_BSLASHtitle] = ACTIONS(6037), - [anon_sym_BSLASHauthor] = ACTIONS(6037), - [anon_sym_BSLASHusepackage] = ACTIONS(6037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6037), - [anon_sym_BSLASHinclude] = ACTIONS(6037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6037), - [anon_sym_BSLASHinput] = ACTIONS(6037), - [anon_sym_BSLASHsubfile] = ACTIONS(6037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6037), - [anon_sym_BSLASHbibliography] = ACTIONS(6037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6037), - [anon_sym_BSLASHincludesvg] = ACTIONS(6037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6037), - [anon_sym_BSLASHimport] = ACTIONS(6037), - [anon_sym_BSLASHsubimport] = ACTIONS(6037), - [anon_sym_BSLASHinputfrom] = ACTIONS(6037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6037), - [anon_sym_BSLASHincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHcaption] = ACTIONS(6037), - [anon_sym_BSLASHcite] = ACTIONS(6037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCite] = ACTIONS(6037), - [anon_sym_BSLASHnocite] = ACTIONS(6037), - [anon_sym_BSLASHcitet] = ACTIONS(6037), - [anon_sym_BSLASHcitep] = ACTIONS(6037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteauthor] = ACTIONS(6037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitetitle] = ACTIONS(6037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteyear] = ACTIONS(6037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitedate] = ACTIONS(6037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteurl] = ACTIONS(6037), - [anon_sym_BSLASHfullcite] = ACTIONS(6037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6037), - [anon_sym_BSLASHcitealt] = ACTIONS(6037), - [anon_sym_BSLASHcitealp] = ACTIONS(6037), - [anon_sym_BSLASHcitetext] = ACTIONS(6037), - [anon_sym_BSLASHparencite] = ACTIONS(6037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHParencite] = ACTIONS(6037), - [anon_sym_BSLASHfootcite] = ACTIONS(6037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6037), - [anon_sym_BSLASHtextcite] = ACTIONS(6037), - [anon_sym_BSLASHTextcite] = ACTIONS(6037), - [anon_sym_BSLASHsmartcite] = ACTIONS(6037), - [anon_sym_BSLASHSmartcite] = ACTIONS(6037), - [anon_sym_BSLASHsupercite] = ACTIONS(6037), - [anon_sym_BSLASHautocite] = ACTIONS(6037), - [anon_sym_BSLASHAutocite] = ACTIONS(6037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHvolcite] = ACTIONS(6037), - [anon_sym_BSLASHVolcite] = ACTIONS(6037), - [anon_sym_BSLASHpvolcite] = ACTIONS(6037), - [anon_sym_BSLASHPvolcite] = ACTIONS(6037), - [anon_sym_BSLASHfvolcite] = ACTIONS(6037), - [anon_sym_BSLASHftvolcite] = ACTIONS(6037), - [anon_sym_BSLASHsvolcite] = ACTIONS(6037), - [anon_sym_BSLASHSvolcite] = ACTIONS(6037), - [anon_sym_BSLASHtvolcite] = ACTIONS(6037), - [anon_sym_BSLASHTvolcite] = ACTIONS(6037), - [anon_sym_BSLASHavolcite] = ACTIONS(6037), - [anon_sym_BSLASHAvolcite] = ACTIONS(6037), - [anon_sym_BSLASHnotecite] = ACTIONS(6037), - [anon_sym_BSLASHNotecite] = ACTIONS(6037), - [anon_sym_BSLASHpnotecite] = ACTIONS(6037), - [anon_sym_BSLASHPnotecite] = ACTIONS(6037), - [anon_sym_BSLASHfnotecite] = ACTIONS(6037), - [anon_sym_BSLASHlabel] = ACTIONS(6037), - [anon_sym_BSLASHref] = ACTIONS(6037), - [anon_sym_BSLASHeqref] = ACTIONS(6037), - [anon_sym_BSLASHvref] = ACTIONS(6037), - [anon_sym_BSLASHVref] = ACTIONS(6037), - [anon_sym_BSLASHautoref] = ACTIONS(6037), - [anon_sym_BSLASHpageref] = ACTIONS(6037), - [anon_sym_BSLASHcref] = ACTIONS(6037), - [anon_sym_BSLASHCref] = ACTIONS(6037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnameCref] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHlabelcref] = ACTIONS(6037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCrefrange] = ACTIONS(6037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnewlabel] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6039), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHdef] = ACTIONS(6037), - [anon_sym_BSLASHlet] = ACTIONS(6037), - [anon_sym_BSLASHleft] = ACTIONS(6037), - [anon_sym_BSLASHbig] = ACTIONS(6037), - [anon_sym_BSLASHBig] = ACTIONS(6037), - [anon_sym_BSLASHbigg] = ACTIONS(6037), - [anon_sym_BSLASHBigg] = ACTIONS(6037), - [anon_sym_BSLASHbigl] = ACTIONS(6037), - [anon_sym_BSLASHBigl] = ACTIONS(6037), - [anon_sym_BSLASHbiggl] = ACTIONS(6037), - [anon_sym_BSLASHBiggl] = ACTIONS(6037), - [anon_sym_BSLASHright] = ACTIONS(6037), - [anon_sym_BSLASHbigr] = ACTIONS(6037), - [anon_sym_BSLASHBigr] = ACTIONS(6037), - [anon_sym_BSLASHbiggr] = ACTIONS(6037), - [anon_sym_BSLASHBiggr] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6037), - [anon_sym_BSLASHgls] = ACTIONS(6037), - [anon_sym_BSLASHGls] = ACTIONS(6037), - [anon_sym_BSLASHGLS] = ACTIONS(6037), - [anon_sym_BSLASHglspl] = ACTIONS(6037), - [anon_sym_BSLASHGlspl] = ACTIONS(6037), - [anon_sym_BSLASHGLSpl] = ACTIONS(6037), - [anon_sym_BSLASHglsdisp] = ACTIONS(6037), - [anon_sym_BSLASHglslink] = ACTIONS(6037), - [anon_sym_BSLASHglstext] = ACTIONS(6037), - [anon_sym_BSLASHGlstext] = ACTIONS(6037), - [anon_sym_BSLASHGLStext] = ACTIONS(6037), - [anon_sym_BSLASHglsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6037), - [anon_sym_BSLASHglsplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSplural] = ACTIONS(6037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHglsname] = ACTIONS(6037), - [anon_sym_BSLASHGlsname] = ACTIONS(6037), - [anon_sym_BSLASHGLSname] = ACTIONS(6037), - [anon_sym_BSLASHglssymbol] = ACTIONS(6037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6037), - [anon_sym_BSLASHglsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6037), - [anon_sym_BSLASHglsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6037), - [anon_sym_BSLASHglsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6037), - [anon_sym_BSLASHglsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6037), - [anon_sym_BSLASHglsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6037), - [anon_sym_BSLASHnewacronym] = ACTIONS(6037), - [anon_sym_BSLASHacrshort] = ACTIONS(6037), - [anon_sym_BSLASHAcrshort] = ACTIONS(6037), - [anon_sym_BSLASHACRshort] = ACTIONS(6037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6037), - [anon_sym_BSLASHacrlong] = ACTIONS(6037), - [anon_sym_BSLASHAcrlong] = ACTIONS(6037), - [anon_sym_BSLASHACRlong] = ACTIONS(6037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6037), - [anon_sym_BSLASHacrfull] = ACTIONS(6037), - [anon_sym_BSLASHAcrfull] = ACTIONS(6037), - [anon_sym_BSLASHACRfull] = ACTIONS(6037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6037), - [anon_sym_BSLASHacs] = ACTIONS(6037), - [anon_sym_BSLASHAcs] = ACTIONS(6037), - [anon_sym_BSLASHacsp] = ACTIONS(6037), - [anon_sym_BSLASHAcsp] = ACTIONS(6037), - [anon_sym_BSLASHacl] = ACTIONS(6037), - [anon_sym_BSLASHAcl] = ACTIONS(6037), - [anon_sym_BSLASHaclp] = ACTIONS(6037), - [anon_sym_BSLASHAclp] = ACTIONS(6037), - [anon_sym_BSLASHacf] = ACTIONS(6037), - [anon_sym_BSLASHAcf] = ACTIONS(6037), - [anon_sym_BSLASHacfp] = ACTIONS(6037), - [anon_sym_BSLASHAcfp] = ACTIONS(6037), - [anon_sym_BSLASHac] = ACTIONS(6037), - [anon_sym_BSLASHAc] = ACTIONS(6037), - [anon_sym_BSLASHacp] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6037), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6037), - [anon_sym_BSLASHcolor] = ACTIONS(6037), - [anon_sym_BSLASHcolorbox] = ACTIONS(6037), - [anon_sym_BSLASHtextcolor] = ACTIONS(6037), - [anon_sym_BSLASHpagecolor] = ACTIONS(6037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6037), - [anon_sym_BSLASHtext] = ACTIONS(6037), - [anon_sym_BSLASHintertext] = ACTIONS(6037), - [anon_sym_shortintertext] = ACTIONS(6037), - }, - [447] = { - [sym_command_name] = ACTIONS(6041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6041), - [anon_sym_LBRACK] = ACTIONS(6043), - [anon_sym_RBRACK] = ACTIONS(6043), - [anon_sym_COMMA] = ACTIONS(6043), - [anon_sym_EQ] = ACTIONS(6043), - [anon_sym_LPAREN] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_BSLASHpart] = ACTIONS(6041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddpart] = ACTIONS(6041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6043), - [anon_sym_BSLASHchapter] = ACTIONS(6041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddchap] = ACTIONS(6041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsection] = ACTIONS(6041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddsec] = ACTIONS(6041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubsection] = ACTIONS(6041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHparagraph] = ACTIONS(6041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6043), - [anon_sym_BSLASHitem] = ACTIONS(6041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6043), - [anon_sym_LBRACE] = ACTIONS(6043), - [sym_word] = ACTIONS(6041), - [sym_placeholder] = ACTIONS(6043), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6043), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6041), - [anon_sym_GT] = ACTIONS(6041), - [anon_sym_BANG] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_SQUOTE] = ACTIONS(6041), - [anon_sym__] = ACTIONS(6043), - [anon_sym_CARET] = ACTIONS(6043), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6043), - [anon_sym_BSLASHbegin] = ACTIONS(6041), - [anon_sym_BSLASHtitle] = ACTIONS(6041), - [anon_sym_BSLASHauthor] = ACTIONS(6041), - [anon_sym_BSLASHusepackage] = ACTIONS(6041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6041), - [anon_sym_BSLASHinclude] = ACTIONS(6041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6041), - [anon_sym_BSLASHinput] = ACTIONS(6041), - [anon_sym_BSLASHsubfile] = ACTIONS(6041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6041), - [anon_sym_BSLASHbibliography] = ACTIONS(6041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6041), - [anon_sym_BSLASHincludesvg] = ACTIONS(6041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6041), - [anon_sym_BSLASHimport] = ACTIONS(6041), - [anon_sym_BSLASHsubimport] = ACTIONS(6041), - [anon_sym_BSLASHinputfrom] = ACTIONS(6041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6041), - [anon_sym_BSLASHincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHcaption] = ACTIONS(6041), - [anon_sym_BSLASHcite] = ACTIONS(6041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCite] = ACTIONS(6041), - [anon_sym_BSLASHnocite] = ACTIONS(6041), - [anon_sym_BSLASHcitet] = ACTIONS(6041), - [anon_sym_BSLASHcitep] = ACTIONS(6041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteauthor] = ACTIONS(6041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitetitle] = ACTIONS(6041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteyear] = ACTIONS(6041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitedate] = ACTIONS(6041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteurl] = ACTIONS(6041), - [anon_sym_BSLASHfullcite] = ACTIONS(6041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6041), - [anon_sym_BSLASHcitealt] = ACTIONS(6041), - [anon_sym_BSLASHcitealp] = ACTIONS(6041), - [anon_sym_BSLASHcitetext] = ACTIONS(6041), - [anon_sym_BSLASHparencite] = ACTIONS(6041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHParencite] = ACTIONS(6041), - [anon_sym_BSLASHfootcite] = ACTIONS(6041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6041), - [anon_sym_BSLASHtextcite] = ACTIONS(6041), - [anon_sym_BSLASHTextcite] = ACTIONS(6041), - [anon_sym_BSLASHsmartcite] = ACTIONS(6041), - [anon_sym_BSLASHSmartcite] = ACTIONS(6041), - [anon_sym_BSLASHsupercite] = ACTIONS(6041), - [anon_sym_BSLASHautocite] = ACTIONS(6041), - [anon_sym_BSLASHAutocite] = ACTIONS(6041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHvolcite] = ACTIONS(6041), - [anon_sym_BSLASHVolcite] = ACTIONS(6041), - [anon_sym_BSLASHpvolcite] = ACTIONS(6041), - [anon_sym_BSLASHPvolcite] = ACTIONS(6041), - [anon_sym_BSLASHfvolcite] = ACTIONS(6041), - [anon_sym_BSLASHftvolcite] = ACTIONS(6041), - [anon_sym_BSLASHsvolcite] = ACTIONS(6041), - [anon_sym_BSLASHSvolcite] = ACTIONS(6041), - [anon_sym_BSLASHtvolcite] = ACTIONS(6041), - [anon_sym_BSLASHTvolcite] = ACTIONS(6041), - [anon_sym_BSLASHavolcite] = ACTIONS(6041), - [anon_sym_BSLASHAvolcite] = ACTIONS(6041), - [anon_sym_BSLASHnotecite] = ACTIONS(6041), - [anon_sym_BSLASHNotecite] = ACTIONS(6041), - [anon_sym_BSLASHpnotecite] = ACTIONS(6041), - [anon_sym_BSLASHPnotecite] = ACTIONS(6041), - [anon_sym_BSLASHfnotecite] = ACTIONS(6041), - [anon_sym_BSLASHlabel] = ACTIONS(6041), - [anon_sym_BSLASHref] = ACTIONS(6041), - [anon_sym_BSLASHeqref] = ACTIONS(6041), - [anon_sym_BSLASHvref] = ACTIONS(6041), - [anon_sym_BSLASHVref] = ACTIONS(6041), - [anon_sym_BSLASHautoref] = ACTIONS(6041), - [anon_sym_BSLASHpageref] = ACTIONS(6041), - [anon_sym_BSLASHcref] = ACTIONS(6041), - [anon_sym_BSLASHCref] = ACTIONS(6041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnameCref] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHlabelcref] = ACTIONS(6041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCrefrange] = ACTIONS(6041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnewlabel] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6043), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHdef] = ACTIONS(6041), - [anon_sym_BSLASHlet] = ACTIONS(6041), - [anon_sym_BSLASHleft] = ACTIONS(6041), - [anon_sym_BSLASHbig] = ACTIONS(6041), - [anon_sym_BSLASHBig] = ACTIONS(6041), - [anon_sym_BSLASHbigg] = ACTIONS(6041), - [anon_sym_BSLASHBigg] = ACTIONS(6041), - [anon_sym_BSLASHbigl] = ACTIONS(6041), - [anon_sym_BSLASHBigl] = ACTIONS(6041), - [anon_sym_BSLASHbiggl] = ACTIONS(6041), - [anon_sym_BSLASHBiggl] = ACTIONS(6041), - [anon_sym_BSLASHright] = ACTIONS(6041), - [anon_sym_BSLASHbigr] = ACTIONS(6041), - [anon_sym_BSLASHBigr] = ACTIONS(6041), - [anon_sym_BSLASHbiggr] = ACTIONS(6041), - [anon_sym_BSLASHBiggr] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6041), - [anon_sym_BSLASHgls] = ACTIONS(6041), - [anon_sym_BSLASHGls] = ACTIONS(6041), - [anon_sym_BSLASHGLS] = ACTIONS(6041), - [anon_sym_BSLASHglspl] = ACTIONS(6041), - [anon_sym_BSLASHGlspl] = ACTIONS(6041), - [anon_sym_BSLASHGLSpl] = ACTIONS(6041), - [anon_sym_BSLASHglsdisp] = ACTIONS(6041), - [anon_sym_BSLASHglslink] = ACTIONS(6041), - [anon_sym_BSLASHglstext] = ACTIONS(6041), - [anon_sym_BSLASHGlstext] = ACTIONS(6041), - [anon_sym_BSLASHGLStext] = ACTIONS(6041), - [anon_sym_BSLASHglsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6041), - [anon_sym_BSLASHglsplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSplural] = ACTIONS(6041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHglsname] = ACTIONS(6041), - [anon_sym_BSLASHGlsname] = ACTIONS(6041), - [anon_sym_BSLASHGLSname] = ACTIONS(6041), - [anon_sym_BSLASHglssymbol] = ACTIONS(6041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6041), - [anon_sym_BSLASHglsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6041), - [anon_sym_BSLASHglsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6041), - [anon_sym_BSLASHglsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6041), - [anon_sym_BSLASHglsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6041), - [anon_sym_BSLASHglsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6041), - [anon_sym_BSLASHnewacronym] = ACTIONS(6041), - [anon_sym_BSLASHacrshort] = ACTIONS(6041), - [anon_sym_BSLASHAcrshort] = ACTIONS(6041), - [anon_sym_BSLASHACRshort] = ACTIONS(6041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6041), - [anon_sym_BSLASHacrlong] = ACTIONS(6041), - [anon_sym_BSLASHAcrlong] = ACTIONS(6041), - [anon_sym_BSLASHACRlong] = ACTIONS(6041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6041), - [anon_sym_BSLASHacrfull] = ACTIONS(6041), - [anon_sym_BSLASHAcrfull] = ACTIONS(6041), - [anon_sym_BSLASHACRfull] = ACTIONS(6041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6041), - [anon_sym_BSLASHacs] = ACTIONS(6041), - [anon_sym_BSLASHAcs] = ACTIONS(6041), - [anon_sym_BSLASHacsp] = ACTIONS(6041), - [anon_sym_BSLASHAcsp] = ACTIONS(6041), - [anon_sym_BSLASHacl] = ACTIONS(6041), - [anon_sym_BSLASHAcl] = ACTIONS(6041), - [anon_sym_BSLASHaclp] = ACTIONS(6041), - [anon_sym_BSLASHAclp] = ACTIONS(6041), - [anon_sym_BSLASHacf] = ACTIONS(6041), - [anon_sym_BSLASHAcf] = ACTIONS(6041), - [anon_sym_BSLASHacfp] = ACTIONS(6041), - [anon_sym_BSLASHAcfp] = ACTIONS(6041), - [anon_sym_BSLASHac] = ACTIONS(6041), - [anon_sym_BSLASHAc] = ACTIONS(6041), - [anon_sym_BSLASHacp] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6041), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6041), - [anon_sym_BSLASHcolor] = ACTIONS(6041), - [anon_sym_BSLASHcolorbox] = ACTIONS(6041), - [anon_sym_BSLASHtextcolor] = ACTIONS(6041), - [anon_sym_BSLASHpagecolor] = ACTIONS(6041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6041), - [anon_sym_BSLASHtext] = ACTIONS(6041), - [anon_sym_BSLASHintertext] = ACTIONS(6041), - [anon_sym_shortintertext] = ACTIONS(6041), - }, - [448] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(5846), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [anon_sym_RBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [449] = { - [sym_command_name] = ACTIONS(6045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6045), - [anon_sym_LBRACK] = ACTIONS(6047), - [anon_sym_RBRACK] = ACTIONS(6047), - [anon_sym_COMMA] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(6047), - [anon_sym_LPAREN] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_BSLASHpart] = ACTIONS(6045), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddpart] = ACTIONS(6045), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6047), - [anon_sym_BSLASHchapter] = ACTIONS(6045), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddchap] = ACTIONS(6045), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsection] = ACTIONS(6045), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddsec] = ACTIONS(6045), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubsection] = ACTIONS(6045), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6045), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHparagraph] = ACTIONS(6045), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6045), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6047), - [anon_sym_BSLASHitem] = ACTIONS(6045), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6047), - [anon_sym_LBRACE] = ACTIONS(6047), - [sym_word] = ACTIONS(6045), - [sym_placeholder] = ACTIONS(6047), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6047), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_BANG] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_SQUOTE] = ACTIONS(6045), - [anon_sym__] = ACTIONS(6047), - [anon_sym_CARET] = ACTIONS(6047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6047), - [anon_sym_BSLASHbegin] = ACTIONS(6045), - [anon_sym_BSLASHtitle] = ACTIONS(6045), - [anon_sym_BSLASHauthor] = ACTIONS(6045), - [anon_sym_BSLASHusepackage] = ACTIONS(6045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6045), - [anon_sym_BSLASHinclude] = ACTIONS(6045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6045), - [anon_sym_BSLASHinput] = ACTIONS(6045), - [anon_sym_BSLASHsubfile] = ACTIONS(6045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6045), - [anon_sym_BSLASHbibliography] = ACTIONS(6045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6045), - [anon_sym_BSLASHincludesvg] = ACTIONS(6045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6045), - [anon_sym_BSLASHimport] = ACTIONS(6045), - [anon_sym_BSLASHsubimport] = ACTIONS(6045), - [anon_sym_BSLASHinputfrom] = ACTIONS(6045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6045), - [anon_sym_BSLASHincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHcaption] = ACTIONS(6045), - [anon_sym_BSLASHcite] = ACTIONS(6045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCite] = ACTIONS(6045), - [anon_sym_BSLASHnocite] = ACTIONS(6045), - [anon_sym_BSLASHcitet] = ACTIONS(6045), - [anon_sym_BSLASHcitep] = ACTIONS(6045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteauthor] = ACTIONS(6045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitetitle] = ACTIONS(6045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteyear] = ACTIONS(6045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitedate] = ACTIONS(6045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteurl] = ACTIONS(6045), - [anon_sym_BSLASHfullcite] = ACTIONS(6045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6045), - [anon_sym_BSLASHcitealt] = ACTIONS(6045), - [anon_sym_BSLASHcitealp] = ACTIONS(6045), - [anon_sym_BSLASHcitetext] = ACTIONS(6045), - [anon_sym_BSLASHparencite] = ACTIONS(6045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHParencite] = ACTIONS(6045), - [anon_sym_BSLASHfootcite] = ACTIONS(6045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6045), - [anon_sym_BSLASHtextcite] = ACTIONS(6045), - [anon_sym_BSLASHTextcite] = ACTIONS(6045), - [anon_sym_BSLASHsmartcite] = ACTIONS(6045), - [anon_sym_BSLASHSmartcite] = ACTIONS(6045), - [anon_sym_BSLASHsupercite] = ACTIONS(6045), - [anon_sym_BSLASHautocite] = ACTIONS(6045), - [anon_sym_BSLASHAutocite] = ACTIONS(6045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHvolcite] = ACTIONS(6045), - [anon_sym_BSLASHVolcite] = ACTIONS(6045), - [anon_sym_BSLASHpvolcite] = ACTIONS(6045), - [anon_sym_BSLASHPvolcite] = ACTIONS(6045), - [anon_sym_BSLASHfvolcite] = ACTIONS(6045), - [anon_sym_BSLASHftvolcite] = ACTIONS(6045), - [anon_sym_BSLASHsvolcite] = ACTIONS(6045), - [anon_sym_BSLASHSvolcite] = ACTIONS(6045), - [anon_sym_BSLASHtvolcite] = ACTIONS(6045), - [anon_sym_BSLASHTvolcite] = ACTIONS(6045), - [anon_sym_BSLASHavolcite] = ACTIONS(6045), - [anon_sym_BSLASHAvolcite] = ACTIONS(6045), - [anon_sym_BSLASHnotecite] = ACTIONS(6045), - [anon_sym_BSLASHNotecite] = ACTIONS(6045), - [anon_sym_BSLASHpnotecite] = ACTIONS(6045), - [anon_sym_BSLASHPnotecite] = ACTIONS(6045), - [anon_sym_BSLASHfnotecite] = ACTIONS(6045), - [anon_sym_BSLASHlabel] = ACTIONS(6045), - [anon_sym_BSLASHref] = ACTIONS(6045), - [anon_sym_BSLASHeqref] = ACTIONS(6045), - [anon_sym_BSLASHvref] = ACTIONS(6045), - [anon_sym_BSLASHVref] = ACTIONS(6045), - [anon_sym_BSLASHautoref] = ACTIONS(6045), - [anon_sym_BSLASHpageref] = ACTIONS(6045), - [anon_sym_BSLASHcref] = ACTIONS(6045), - [anon_sym_BSLASHCref] = ACTIONS(6045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnameCref] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHlabelcref] = ACTIONS(6045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCrefrange] = ACTIONS(6045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnewlabel] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6047), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHdef] = ACTIONS(6045), - [anon_sym_BSLASHlet] = ACTIONS(6045), - [anon_sym_BSLASHleft] = ACTIONS(6045), - [anon_sym_BSLASHbig] = ACTIONS(6045), - [anon_sym_BSLASHBig] = ACTIONS(6045), - [anon_sym_BSLASHbigg] = ACTIONS(6045), - [anon_sym_BSLASHBigg] = ACTIONS(6045), - [anon_sym_BSLASHbigl] = ACTIONS(6045), - [anon_sym_BSLASHBigl] = ACTIONS(6045), - [anon_sym_BSLASHbiggl] = ACTIONS(6045), - [anon_sym_BSLASHBiggl] = ACTIONS(6045), - [anon_sym_BSLASHright] = ACTIONS(6045), - [anon_sym_BSLASHbigr] = ACTIONS(6045), - [anon_sym_BSLASHBigr] = ACTIONS(6045), - [anon_sym_BSLASHbiggr] = ACTIONS(6045), - [anon_sym_BSLASHBiggr] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6045), - [anon_sym_BSLASHgls] = ACTIONS(6045), - [anon_sym_BSLASHGls] = ACTIONS(6045), - [anon_sym_BSLASHGLS] = ACTIONS(6045), - [anon_sym_BSLASHglspl] = ACTIONS(6045), - [anon_sym_BSLASHGlspl] = ACTIONS(6045), - [anon_sym_BSLASHGLSpl] = ACTIONS(6045), - [anon_sym_BSLASHglsdisp] = ACTIONS(6045), - [anon_sym_BSLASHglslink] = ACTIONS(6045), - [anon_sym_BSLASHglstext] = ACTIONS(6045), - [anon_sym_BSLASHGlstext] = ACTIONS(6045), - [anon_sym_BSLASHGLStext] = ACTIONS(6045), - [anon_sym_BSLASHglsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6045), - [anon_sym_BSLASHglsplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSplural] = ACTIONS(6045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHglsname] = ACTIONS(6045), - [anon_sym_BSLASHGlsname] = ACTIONS(6045), - [anon_sym_BSLASHGLSname] = ACTIONS(6045), - [anon_sym_BSLASHglssymbol] = ACTIONS(6045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6045), - [anon_sym_BSLASHglsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6045), - [anon_sym_BSLASHglsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6045), - [anon_sym_BSLASHglsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6045), - [anon_sym_BSLASHglsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6045), - [anon_sym_BSLASHglsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6045), - [anon_sym_BSLASHnewacronym] = ACTIONS(6045), - [anon_sym_BSLASHacrshort] = ACTIONS(6045), - [anon_sym_BSLASHAcrshort] = ACTIONS(6045), - [anon_sym_BSLASHACRshort] = ACTIONS(6045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6045), - [anon_sym_BSLASHacrlong] = ACTIONS(6045), - [anon_sym_BSLASHAcrlong] = ACTIONS(6045), - [anon_sym_BSLASHACRlong] = ACTIONS(6045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6045), - [anon_sym_BSLASHacrfull] = ACTIONS(6045), - [anon_sym_BSLASHAcrfull] = ACTIONS(6045), - [anon_sym_BSLASHACRfull] = ACTIONS(6045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6045), - [anon_sym_BSLASHacs] = ACTIONS(6045), - [anon_sym_BSLASHAcs] = ACTIONS(6045), - [anon_sym_BSLASHacsp] = ACTIONS(6045), - [anon_sym_BSLASHAcsp] = ACTIONS(6045), - [anon_sym_BSLASHacl] = ACTIONS(6045), - [anon_sym_BSLASHAcl] = ACTIONS(6045), - [anon_sym_BSLASHaclp] = ACTIONS(6045), - [anon_sym_BSLASHAclp] = ACTIONS(6045), - [anon_sym_BSLASHacf] = ACTIONS(6045), - [anon_sym_BSLASHAcf] = ACTIONS(6045), - [anon_sym_BSLASHacfp] = ACTIONS(6045), - [anon_sym_BSLASHAcfp] = ACTIONS(6045), - [anon_sym_BSLASHac] = ACTIONS(6045), - [anon_sym_BSLASHAc] = ACTIONS(6045), - [anon_sym_BSLASHacp] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6045), - [anon_sym_BSLASHcolor] = ACTIONS(6045), - [anon_sym_BSLASHcolorbox] = ACTIONS(6045), - [anon_sym_BSLASHtextcolor] = ACTIONS(6045), - [anon_sym_BSLASHpagecolor] = ACTIONS(6045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6045), - [anon_sym_BSLASHtext] = ACTIONS(6045), - [anon_sym_BSLASHintertext] = ACTIONS(6045), - [anon_sym_shortintertext] = ACTIONS(6045), - }, - [450] = { - [sym_command_name] = ACTIONS(6049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6049), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_BSLASHpart] = ACTIONS(6049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddpart] = ACTIONS(6049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6051), - [anon_sym_BSLASHchapter] = ACTIONS(6049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddchap] = ACTIONS(6049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsection] = ACTIONS(6049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddsec] = ACTIONS(6049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubsection] = ACTIONS(6049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHparagraph] = ACTIONS(6049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6051), - [anon_sym_BSLASHitem] = ACTIONS(6049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6051), - [anon_sym_LBRACE] = ACTIONS(6051), - [sym_word] = ACTIONS(6049), - [sym_placeholder] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6051), - [anon_sym_DASH] = ACTIONS(6051), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6049), - [anon_sym_GT] = ACTIONS(6049), - [anon_sym_BANG] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6049), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_SQUOTE] = ACTIONS(6049), - [anon_sym__] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), - [anon_sym_BSLASHbegin] = ACTIONS(6049), - [anon_sym_BSLASHtitle] = ACTIONS(6049), - [anon_sym_BSLASHauthor] = ACTIONS(6049), - [anon_sym_BSLASHusepackage] = ACTIONS(6049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6049), - [anon_sym_BSLASHinclude] = ACTIONS(6049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6049), - [anon_sym_BSLASHinput] = ACTIONS(6049), - [anon_sym_BSLASHsubfile] = ACTIONS(6049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6049), - [anon_sym_BSLASHbibliography] = ACTIONS(6049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6049), - [anon_sym_BSLASHincludesvg] = ACTIONS(6049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6049), - [anon_sym_BSLASHimport] = ACTIONS(6049), - [anon_sym_BSLASHsubimport] = ACTIONS(6049), - [anon_sym_BSLASHinputfrom] = ACTIONS(6049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6049), - [anon_sym_BSLASHincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHcaption] = ACTIONS(6049), - [anon_sym_BSLASHcite] = ACTIONS(6049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCite] = ACTIONS(6049), - [anon_sym_BSLASHnocite] = ACTIONS(6049), - [anon_sym_BSLASHcitet] = ACTIONS(6049), - [anon_sym_BSLASHcitep] = ACTIONS(6049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteauthor] = ACTIONS(6049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitetitle] = ACTIONS(6049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteyear] = ACTIONS(6049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitedate] = ACTIONS(6049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteurl] = ACTIONS(6049), - [anon_sym_BSLASHfullcite] = ACTIONS(6049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6049), - [anon_sym_BSLASHcitealt] = ACTIONS(6049), - [anon_sym_BSLASHcitealp] = ACTIONS(6049), - [anon_sym_BSLASHcitetext] = ACTIONS(6049), - [anon_sym_BSLASHparencite] = ACTIONS(6049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHParencite] = ACTIONS(6049), - [anon_sym_BSLASHfootcite] = ACTIONS(6049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6049), - [anon_sym_BSLASHtextcite] = ACTIONS(6049), - [anon_sym_BSLASHTextcite] = ACTIONS(6049), - [anon_sym_BSLASHsmartcite] = ACTIONS(6049), - [anon_sym_BSLASHSmartcite] = ACTIONS(6049), - [anon_sym_BSLASHsupercite] = ACTIONS(6049), - [anon_sym_BSLASHautocite] = ACTIONS(6049), - [anon_sym_BSLASHAutocite] = ACTIONS(6049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHvolcite] = ACTIONS(6049), - [anon_sym_BSLASHVolcite] = ACTIONS(6049), - [anon_sym_BSLASHpvolcite] = ACTIONS(6049), - [anon_sym_BSLASHPvolcite] = ACTIONS(6049), - [anon_sym_BSLASHfvolcite] = ACTIONS(6049), - [anon_sym_BSLASHftvolcite] = ACTIONS(6049), - [anon_sym_BSLASHsvolcite] = ACTIONS(6049), - [anon_sym_BSLASHSvolcite] = ACTIONS(6049), - [anon_sym_BSLASHtvolcite] = ACTIONS(6049), - [anon_sym_BSLASHTvolcite] = ACTIONS(6049), - [anon_sym_BSLASHavolcite] = ACTIONS(6049), - [anon_sym_BSLASHAvolcite] = ACTIONS(6049), - [anon_sym_BSLASHnotecite] = ACTIONS(6049), - [anon_sym_BSLASHNotecite] = ACTIONS(6049), - [anon_sym_BSLASHpnotecite] = ACTIONS(6049), - [anon_sym_BSLASHPnotecite] = ACTIONS(6049), - [anon_sym_BSLASHfnotecite] = ACTIONS(6049), - [anon_sym_BSLASHlabel] = ACTIONS(6049), - [anon_sym_BSLASHref] = ACTIONS(6049), - [anon_sym_BSLASHeqref] = ACTIONS(6049), - [anon_sym_BSLASHvref] = ACTIONS(6049), - [anon_sym_BSLASHVref] = ACTIONS(6049), - [anon_sym_BSLASHautoref] = ACTIONS(6049), - [anon_sym_BSLASHpageref] = ACTIONS(6049), - [anon_sym_BSLASHcref] = ACTIONS(6049), - [anon_sym_BSLASHCref] = ACTIONS(6049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnameCref] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHlabelcref] = ACTIONS(6049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCrefrange] = ACTIONS(6049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnewlabel] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHdef] = ACTIONS(6049), - [anon_sym_BSLASHlet] = ACTIONS(6049), - [anon_sym_BSLASHleft] = ACTIONS(6049), - [anon_sym_BSLASHbig] = ACTIONS(6049), - [anon_sym_BSLASHBig] = ACTIONS(6049), - [anon_sym_BSLASHbigg] = ACTIONS(6049), - [anon_sym_BSLASHBigg] = ACTIONS(6049), - [anon_sym_BSLASHbigl] = ACTIONS(6049), - [anon_sym_BSLASHBigl] = ACTIONS(6049), - [anon_sym_BSLASHbiggl] = ACTIONS(6049), - [anon_sym_BSLASHBiggl] = ACTIONS(6049), - [anon_sym_BSLASHright] = ACTIONS(6049), - [anon_sym_BSLASHbigr] = ACTIONS(6049), - [anon_sym_BSLASHBigr] = ACTIONS(6049), - [anon_sym_BSLASHbiggr] = ACTIONS(6049), - [anon_sym_BSLASHBiggr] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6049), - [anon_sym_BSLASHgls] = ACTIONS(6049), - [anon_sym_BSLASHGls] = ACTIONS(6049), - [anon_sym_BSLASHGLS] = ACTIONS(6049), - [anon_sym_BSLASHglspl] = ACTIONS(6049), - [anon_sym_BSLASHGlspl] = ACTIONS(6049), - [anon_sym_BSLASHGLSpl] = ACTIONS(6049), - [anon_sym_BSLASHglsdisp] = ACTIONS(6049), - [anon_sym_BSLASHglslink] = ACTIONS(6049), - [anon_sym_BSLASHglstext] = ACTIONS(6049), - [anon_sym_BSLASHGlstext] = ACTIONS(6049), - [anon_sym_BSLASHGLStext] = ACTIONS(6049), - [anon_sym_BSLASHglsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6049), - [anon_sym_BSLASHglsplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSplural] = ACTIONS(6049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHglsname] = ACTIONS(6049), - [anon_sym_BSLASHGlsname] = ACTIONS(6049), - [anon_sym_BSLASHGLSname] = ACTIONS(6049), - [anon_sym_BSLASHglssymbol] = ACTIONS(6049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6049), - [anon_sym_BSLASHglsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6049), - [anon_sym_BSLASHglsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6049), - [anon_sym_BSLASHglsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6049), - [anon_sym_BSLASHglsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6049), - [anon_sym_BSLASHglsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6049), - [anon_sym_BSLASHnewacronym] = ACTIONS(6049), - [anon_sym_BSLASHacrshort] = ACTIONS(6049), - [anon_sym_BSLASHAcrshort] = ACTIONS(6049), - [anon_sym_BSLASHACRshort] = ACTIONS(6049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6049), - [anon_sym_BSLASHacrlong] = ACTIONS(6049), - [anon_sym_BSLASHAcrlong] = ACTIONS(6049), - [anon_sym_BSLASHACRlong] = ACTIONS(6049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6049), - [anon_sym_BSLASHacrfull] = ACTIONS(6049), - [anon_sym_BSLASHAcrfull] = ACTIONS(6049), - [anon_sym_BSLASHACRfull] = ACTIONS(6049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6049), - [anon_sym_BSLASHacs] = ACTIONS(6049), - [anon_sym_BSLASHAcs] = ACTIONS(6049), - [anon_sym_BSLASHacsp] = ACTIONS(6049), - [anon_sym_BSLASHAcsp] = ACTIONS(6049), - [anon_sym_BSLASHacl] = ACTIONS(6049), - [anon_sym_BSLASHAcl] = ACTIONS(6049), - [anon_sym_BSLASHaclp] = ACTIONS(6049), - [anon_sym_BSLASHAclp] = ACTIONS(6049), - [anon_sym_BSLASHacf] = ACTIONS(6049), - [anon_sym_BSLASHAcf] = ACTIONS(6049), - [anon_sym_BSLASHacfp] = ACTIONS(6049), - [anon_sym_BSLASHAcfp] = ACTIONS(6049), - [anon_sym_BSLASHac] = ACTIONS(6049), - [anon_sym_BSLASHAc] = ACTIONS(6049), - [anon_sym_BSLASHacp] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6049), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6049), - [anon_sym_BSLASHcolor] = ACTIONS(6049), - [anon_sym_BSLASHcolorbox] = ACTIONS(6049), - [anon_sym_BSLASHtextcolor] = ACTIONS(6049), - [anon_sym_BSLASHpagecolor] = ACTIONS(6049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6049), - [anon_sym_BSLASHtext] = ACTIONS(6049), - [anon_sym_BSLASHintertext] = ACTIONS(6049), - [anon_sym_shortintertext] = ACTIONS(6049), - }, - [451] = { - [sym_command_name] = ACTIONS(6053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6053), - [anon_sym_LBRACK] = ACTIONS(6055), - [anon_sym_RBRACK] = ACTIONS(6055), - [anon_sym_COMMA] = ACTIONS(6055), - [anon_sym_EQ] = ACTIONS(6055), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_BSLASHpart] = ACTIONS(6053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddpart] = ACTIONS(6053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6055), - [anon_sym_BSLASHchapter] = ACTIONS(6053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddchap] = ACTIONS(6053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsection] = ACTIONS(6053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddsec] = ACTIONS(6053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubsection] = ACTIONS(6053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHparagraph] = ACTIONS(6053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6055), - [anon_sym_BSLASHitem] = ACTIONS(6053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6055), - [anon_sym_LBRACE] = ACTIONS(6055), - [sym_word] = ACTIONS(6053), - [sym_placeholder] = ACTIONS(6055), - [anon_sym_PLUS] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(6055), - [anon_sym_STAR] = ACTIONS(6055), - [anon_sym_SLASH] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_COLON] = ACTIONS(6053), - [anon_sym_SQUOTE] = ACTIONS(6053), - [anon_sym__] = ACTIONS(6055), - [anon_sym_CARET] = ACTIONS(6055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), - [anon_sym_BSLASHbegin] = ACTIONS(6053), - [anon_sym_BSLASHtitle] = ACTIONS(6053), - [anon_sym_BSLASHauthor] = ACTIONS(6053), - [anon_sym_BSLASHusepackage] = ACTIONS(6053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), - [anon_sym_BSLASHinclude] = ACTIONS(6053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), - [anon_sym_BSLASHinput] = ACTIONS(6053), - [anon_sym_BSLASHsubfile] = ACTIONS(6053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), - [anon_sym_BSLASHbibliography] = ACTIONS(6053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), - [anon_sym_BSLASHincludesvg] = ACTIONS(6053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), - [anon_sym_BSLASHimport] = ACTIONS(6053), - [anon_sym_BSLASHsubimport] = ACTIONS(6053), - [anon_sym_BSLASHinputfrom] = ACTIONS(6053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), - [anon_sym_BSLASHincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHcaption] = ACTIONS(6053), - [anon_sym_BSLASHcite] = ACTIONS(6053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCite] = ACTIONS(6053), - [anon_sym_BSLASHnocite] = ACTIONS(6053), - [anon_sym_BSLASHcitet] = ACTIONS(6053), - [anon_sym_BSLASHcitep] = ACTIONS(6053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteauthor] = ACTIONS(6053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitetitle] = ACTIONS(6053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteyear] = ACTIONS(6053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitedate] = ACTIONS(6053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteurl] = ACTIONS(6053), - [anon_sym_BSLASHfullcite] = ACTIONS(6053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), - [anon_sym_BSLASHcitealt] = ACTIONS(6053), - [anon_sym_BSLASHcitealp] = ACTIONS(6053), - [anon_sym_BSLASHcitetext] = ACTIONS(6053), - [anon_sym_BSLASHparencite] = ACTIONS(6053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHParencite] = ACTIONS(6053), - [anon_sym_BSLASHfootcite] = ACTIONS(6053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), - [anon_sym_BSLASHtextcite] = ACTIONS(6053), - [anon_sym_BSLASHTextcite] = ACTIONS(6053), - [anon_sym_BSLASHsmartcite] = ACTIONS(6053), - [anon_sym_BSLASHSmartcite] = ACTIONS(6053), - [anon_sym_BSLASHsupercite] = ACTIONS(6053), - [anon_sym_BSLASHautocite] = ACTIONS(6053), - [anon_sym_BSLASHAutocite] = ACTIONS(6053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHvolcite] = ACTIONS(6053), - [anon_sym_BSLASHVolcite] = ACTIONS(6053), - [anon_sym_BSLASHpvolcite] = ACTIONS(6053), - [anon_sym_BSLASHPvolcite] = ACTIONS(6053), - [anon_sym_BSLASHfvolcite] = ACTIONS(6053), - [anon_sym_BSLASHftvolcite] = ACTIONS(6053), - [anon_sym_BSLASHsvolcite] = ACTIONS(6053), - [anon_sym_BSLASHSvolcite] = ACTIONS(6053), - [anon_sym_BSLASHtvolcite] = ACTIONS(6053), - [anon_sym_BSLASHTvolcite] = ACTIONS(6053), - [anon_sym_BSLASHavolcite] = ACTIONS(6053), - [anon_sym_BSLASHAvolcite] = ACTIONS(6053), - [anon_sym_BSLASHnotecite] = ACTIONS(6053), - [anon_sym_BSLASHNotecite] = ACTIONS(6053), - [anon_sym_BSLASHpnotecite] = ACTIONS(6053), - [anon_sym_BSLASHPnotecite] = ACTIONS(6053), - [anon_sym_BSLASHfnotecite] = ACTIONS(6053), - [anon_sym_BSLASHlabel] = ACTIONS(6053), - [anon_sym_BSLASHref] = ACTIONS(6053), - [anon_sym_BSLASHeqref] = ACTIONS(6053), - [anon_sym_BSLASHvref] = ACTIONS(6053), - [anon_sym_BSLASHVref] = ACTIONS(6053), - [anon_sym_BSLASHautoref] = ACTIONS(6053), - [anon_sym_BSLASHpageref] = ACTIONS(6053), - [anon_sym_BSLASHcref] = ACTIONS(6053), - [anon_sym_BSLASHCref] = ACTIONS(6053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnameCref] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHlabelcref] = ACTIONS(6053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCrefrange] = ACTIONS(6053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnewlabel] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHdef] = ACTIONS(6053), - [anon_sym_BSLASHlet] = ACTIONS(6053), - [anon_sym_BSLASHleft] = ACTIONS(6053), - [anon_sym_BSLASHbig] = ACTIONS(6053), - [anon_sym_BSLASHBig] = ACTIONS(6053), - [anon_sym_BSLASHbigg] = ACTIONS(6053), - [anon_sym_BSLASHBigg] = ACTIONS(6053), - [anon_sym_BSLASHbigl] = ACTIONS(6053), - [anon_sym_BSLASHBigl] = ACTIONS(6053), - [anon_sym_BSLASHbiggl] = ACTIONS(6053), - [anon_sym_BSLASHBiggl] = ACTIONS(6053), - [anon_sym_BSLASHright] = ACTIONS(6053), - [anon_sym_BSLASHbigr] = ACTIONS(6053), - [anon_sym_BSLASHBigr] = ACTIONS(6053), - [anon_sym_BSLASHbiggr] = ACTIONS(6053), - [anon_sym_BSLASHBiggr] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), - [anon_sym_BSLASHgls] = ACTIONS(6053), - [anon_sym_BSLASHGls] = ACTIONS(6053), - [anon_sym_BSLASHGLS] = ACTIONS(6053), - [anon_sym_BSLASHglspl] = ACTIONS(6053), - [anon_sym_BSLASHGlspl] = ACTIONS(6053), - [anon_sym_BSLASHGLSpl] = ACTIONS(6053), - [anon_sym_BSLASHglsdisp] = ACTIONS(6053), - [anon_sym_BSLASHglslink] = ACTIONS(6053), - [anon_sym_BSLASHglstext] = ACTIONS(6053), - [anon_sym_BSLASHGlstext] = ACTIONS(6053), - [anon_sym_BSLASHGLStext] = ACTIONS(6053), - [anon_sym_BSLASHglsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), - [anon_sym_BSLASHglsplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSplural] = ACTIONS(6053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHglsname] = ACTIONS(6053), - [anon_sym_BSLASHGlsname] = ACTIONS(6053), - [anon_sym_BSLASHGLSname] = ACTIONS(6053), - [anon_sym_BSLASHglssymbol] = ACTIONS(6053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), - [anon_sym_BSLASHglsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), - [anon_sym_BSLASHglsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), - [anon_sym_BSLASHglsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), - [anon_sym_BSLASHglsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), - [anon_sym_BSLASHglsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), - [anon_sym_BSLASHnewacronym] = ACTIONS(6053), - [anon_sym_BSLASHacrshort] = ACTIONS(6053), - [anon_sym_BSLASHAcrshort] = ACTIONS(6053), - [anon_sym_BSLASHACRshort] = ACTIONS(6053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), - [anon_sym_BSLASHacrlong] = ACTIONS(6053), - [anon_sym_BSLASHAcrlong] = ACTIONS(6053), - [anon_sym_BSLASHACRlong] = ACTIONS(6053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), - [anon_sym_BSLASHacrfull] = ACTIONS(6053), - [anon_sym_BSLASHAcrfull] = ACTIONS(6053), - [anon_sym_BSLASHACRfull] = ACTIONS(6053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), - [anon_sym_BSLASHacs] = ACTIONS(6053), - [anon_sym_BSLASHAcs] = ACTIONS(6053), - [anon_sym_BSLASHacsp] = ACTIONS(6053), - [anon_sym_BSLASHAcsp] = ACTIONS(6053), - [anon_sym_BSLASHacl] = ACTIONS(6053), - [anon_sym_BSLASHAcl] = ACTIONS(6053), - [anon_sym_BSLASHaclp] = ACTIONS(6053), - [anon_sym_BSLASHAclp] = ACTIONS(6053), - [anon_sym_BSLASHacf] = ACTIONS(6053), - [anon_sym_BSLASHAcf] = ACTIONS(6053), - [anon_sym_BSLASHacfp] = ACTIONS(6053), - [anon_sym_BSLASHAcfp] = ACTIONS(6053), - [anon_sym_BSLASHac] = ACTIONS(6053), - [anon_sym_BSLASHAc] = ACTIONS(6053), - [anon_sym_BSLASHacp] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), - [anon_sym_BSLASHcolor] = ACTIONS(6053), - [anon_sym_BSLASHcolorbox] = ACTIONS(6053), - [anon_sym_BSLASHtextcolor] = ACTIONS(6053), - [anon_sym_BSLASHpagecolor] = ACTIONS(6053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), - [anon_sym_BSLASHtext] = ACTIONS(6053), - [anon_sym_BSLASHintertext] = ACTIONS(6053), - [anon_sym_shortintertext] = ACTIONS(6053), - }, - [452] = { - [sym_command_name] = ACTIONS(6057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6057), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_BSLASHpart] = ACTIONS(6057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddpart] = ACTIONS(6057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6059), - [anon_sym_BSLASHchapter] = ACTIONS(6057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddchap] = ACTIONS(6057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsection] = ACTIONS(6057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddsec] = ACTIONS(6057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubsection] = ACTIONS(6057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHparagraph] = ACTIONS(6057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6059), - [anon_sym_BSLASHitem] = ACTIONS(6057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6059), - [sym_word] = ACTIONS(6057), - [sym_placeholder] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_BANG] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_SQUOTE] = ACTIONS(6057), - [anon_sym__] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), - [anon_sym_BSLASHbegin] = ACTIONS(6057), - [anon_sym_BSLASHtitle] = ACTIONS(6057), - [anon_sym_BSLASHauthor] = ACTIONS(6057), - [anon_sym_BSLASHusepackage] = ACTIONS(6057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), - [anon_sym_BSLASHinclude] = ACTIONS(6057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), - [anon_sym_BSLASHinput] = ACTIONS(6057), - [anon_sym_BSLASHsubfile] = ACTIONS(6057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), - [anon_sym_BSLASHbibliography] = ACTIONS(6057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), - [anon_sym_BSLASHincludesvg] = ACTIONS(6057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), - [anon_sym_BSLASHimport] = ACTIONS(6057), - [anon_sym_BSLASHsubimport] = ACTIONS(6057), - [anon_sym_BSLASHinputfrom] = ACTIONS(6057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), - [anon_sym_BSLASHincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHcaption] = ACTIONS(6057), - [anon_sym_BSLASHcite] = ACTIONS(6057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCite] = ACTIONS(6057), - [anon_sym_BSLASHnocite] = ACTIONS(6057), - [anon_sym_BSLASHcitet] = ACTIONS(6057), - [anon_sym_BSLASHcitep] = ACTIONS(6057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteauthor] = ACTIONS(6057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitetitle] = ACTIONS(6057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteyear] = ACTIONS(6057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitedate] = ACTIONS(6057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteurl] = ACTIONS(6057), - [anon_sym_BSLASHfullcite] = ACTIONS(6057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), - [anon_sym_BSLASHcitealt] = ACTIONS(6057), - [anon_sym_BSLASHcitealp] = ACTIONS(6057), - [anon_sym_BSLASHcitetext] = ACTIONS(6057), - [anon_sym_BSLASHparencite] = ACTIONS(6057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHParencite] = ACTIONS(6057), - [anon_sym_BSLASHfootcite] = ACTIONS(6057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), - [anon_sym_BSLASHtextcite] = ACTIONS(6057), - [anon_sym_BSLASHTextcite] = ACTIONS(6057), - [anon_sym_BSLASHsmartcite] = ACTIONS(6057), - [anon_sym_BSLASHSmartcite] = ACTIONS(6057), - [anon_sym_BSLASHsupercite] = ACTIONS(6057), - [anon_sym_BSLASHautocite] = ACTIONS(6057), - [anon_sym_BSLASHAutocite] = ACTIONS(6057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHvolcite] = ACTIONS(6057), - [anon_sym_BSLASHVolcite] = ACTIONS(6057), - [anon_sym_BSLASHpvolcite] = ACTIONS(6057), - [anon_sym_BSLASHPvolcite] = ACTIONS(6057), - [anon_sym_BSLASHfvolcite] = ACTIONS(6057), - [anon_sym_BSLASHftvolcite] = ACTIONS(6057), - [anon_sym_BSLASHsvolcite] = ACTIONS(6057), - [anon_sym_BSLASHSvolcite] = ACTIONS(6057), - [anon_sym_BSLASHtvolcite] = ACTIONS(6057), - [anon_sym_BSLASHTvolcite] = ACTIONS(6057), - [anon_sym_BSLASHavolcite] = ACTIONS(6057), - [anon_sym_BSLASHAvolcite] = ACTIONS(6057), - [anon_sym_BSLASHnotecite] = ACTIONS(6057), - [anon_sym_BSLASHNotecite] = ACTIONS(6057), - [anon_sym_BSLASHpnotecite] = ACTIONS(6057), - [anon_sym_BSLASHPnotecite] = ACTIONS(6057), - [anon_sym_BSLASHfnotecite] = ACTIONS(6057), - [anon_sym_BSLASHlabel] = ACTIONS(6057), - [anon_sym_BSLASHref] = ACTIONS(6057), - [anon_sym_BSLASHeqref] = ACTIONS(6057), - [anon_sym_BSLASHvref] = ACTIONS(6057), - [anon_sym_BSLASHVref] = ACTIONS(6057), - [anon_sym_BSLASHautoref] = ACTIONS(6057), - [anon_sym_BSLASHpageref] = ACTIONS(6057), - [anon_sym_BSLASHcref] = ACTIONS(6057), - [anon_sym_BSLASHCref] = ACTIONS(6057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnameCref] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHlabelcref] = ACTIONS(6057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCrefrange] = ACTIONS(6057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnewlabel] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHdef] = ACTIONS(6057), - [anon_sym_BSLASHlet] = ACTIONS(6057), - [anon_sym_BSLASHleft] = ACTIONS(6057), - [anon_sym_BSLASHbig] = ACTIONS(6057), - [anon_sym_BSLASHBig] = ACTIONS(6057), - [anon_sym_BSLASHbigg] = ACTIONS(6057), - [anon_sym_BSLASHBigg] = ACTIONS(6057), - [anon_sym_BSLASHbigl] = ACTIONS(6057), - [anon_sym_BSLASHBigl] = ACTIONS(6057), - [anon_sym_BSLASHbiggl] = ACTIONS(6057), - [anon_sym_BSLASHBiggl] = ACTIONS(6057), - [anon_sym_BSLASHright] = ACTIONS(6057), - [anon_sym_BSLASHbigr] = ACTIONS(6057), - [anon_sym_BSLASHBigr] = ACTIONS(6057), - [anon_sym_BSLASHbiggr] = ACTIONS(6057), - [anon_sym_BSLASHBiggr] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), - [anon_sym_BSLASHgls] = ACTIONS(6057), - [anon_sym_BSLASHGls] = ACTIONS(6057), - [anon_sym_BSLASHGLS] = ACTIONS(6057), - [anon_sym_BSLASHglspl] = ACTIONS(6057), - [anon_sym_BSLASHGlspl] = ACTIONS(6057), - [anon_sym_BSLASHGLSpl] = ACTIONS(6057), - [anon_sym_BSLASHglsdisp] = ACTIONS(6057), - [anon_sym_BSLASHglslink] = ACTIONS(6057), - [anon_sym_BSLASHglstext] = ACTIONS(6057), - [anon_sym_BSLASHGlstext] = ACTIONS(6057), - [anon_sym_BSLASHGLStext] = ACTIONS(6057), - [anon_sym_BSLASHglsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), - [anon_sym_BSLASHglsplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSplural] = ACTIONS(6057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHglsname] = ACTIONS(6057), - [anon_sym_BSLASHGlsname] = ACTIONS(6057), - [anon_sym_BSLASHGLSname] = ACTIONS(6057), - [anon_sym_BSLASHglssymbol] = ACTIONS(6057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), - [anon_sym_BSLASHglsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), - [anon_sym_BSLASHglsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), - [anon_sym_BSLASHglsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), - [anon_sym_BSLASHglsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), - [anon_sym_BSLASHglsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), - [anon_sym_BSLASHnewacronym] = ACTIONS(6057), - [anon_sym_BSLASHacrshort] = ACTIONS(6057), - [anon_sym_BSLASHAcrshort] = ACTIONS(6057), - [anon_sym_BSLASHACRshort] = ACTIONS(6057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), - [anon_sym_BSLASHacrlong] = ACTIONS(6057), - [anon_sym_BSLASHAcrlong] = ACTIONS(6057), - [anon_sym_BSLASHACRlong] = ACTIONS(6057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), - [anon_sym_BSLASHacrfull] = ACTIONS(6057), - [anon_sym_BSLASHAcrfull] = ACTIONS(6057), - [anon_sym_BSLASHACRfull] = ACTIONS(6057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), - [anon_sym_BSLASHacs] = ACTIONS(6057), - [anon_sym_BSLASHAcs] = ACTIONS(6057), - [anon_sym_BSLASHacsp] = ACTIONS(6057), - [anon_sym_BSLASHAcsp] = ACTIONS(6057), - [anon_sym_BSLASHacl] = ACTIONS(6057), - [anon_sym_BSLASHAcl] = ACTIONS(6057), - [anon_sym_BSLASHaclp] = ACTIONS(6057), - [anon_sym_BSLASHAclp] = ACTIONS(6057), - [anon_sym_BSLASHacf] = ACTIONS(6057), - [anon_sym_BSLASHAcf] = ACTIONS(6057), - [anon_sym_BSLASHacfp] = ACTIONS(6057), - [anon_sym_BSLASHAcfp] = ACTIONS(6057), - [anon_sym_BSLASHac] = ACTIONS(6057), - [anon_sym_BSLASHAc] = ACTIONS(6057), - [anon_sym_BSLASHacp] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), - [anon_sym_BSLASHcolor] = ACTIONS(6057), - [anon_sym_BSLASHcolorbox] = ACTIONS(6057), - [anon_sym_BSLASHtextcolor] = ACTIONS(6057), - [anon_sym_BSLASHpagecolor] = ACTIONS(6057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), - [anon_sym_BSLASHtext] = ACTIONS(6057), - [anon_sym_BSLASHintertext] = ACTIONS(6057), - [anon_sym_shortintertext] = ACTIONS(6057), - }, - [453] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(5944), - [sym_command_name] = ACTIONS(5942), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5942), - [anon_sym_LBRACK] = ACTIONS(5944), - [anon_sym_RBRACK] = ACTIONS(5944), - [anon_sym_COMMA] = ACTIONS(5944), - [anon_sym_EQ] = ACTIONS(5944), - [anon_sym_LPAREN] = ACTIONS(5944), - [anon_sym_RPAREN] = ACTIONS(5944), - [anon_sym_BSLASHpart] = ACTIONS(5942), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddpart] = ACTIONS(5942), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5944), - [anon_sym_BSLASHchapter] = ACTIONS(5942), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddchap] = ACTIONS(5942), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsection] = ACTIONS(5942), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddsec] = ACTIONS(5942), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubsection] = ACTIONS(5942), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5942), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHparagraph] = ACTIONS(5942), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5942), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5944), - [anon_sym_BSLASHitem] = ACTIONS(6061), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6064), - [anon_sym_LBRACE] = ACTIONS(5944), - [anon_sym_RBRACE] = ACTIONS(5944), - [sym_word] = ACTIONS(5942), - [sym_placeholder] = ACTIONS(5944), - [anon_sym_PLUS] = ACTIONS(5944), - [anon_sym_DASH] = ACTIONS(5944), - [anon_sym_STAR] = ACTIONS(5944), - [anon_sym_SLASH] = ACTIONS(5944), - [anon_sym_LT] = ACTIONS(5942), - [anon_sym_GT] = ACTIONS(5942), - [anon_sym_BANG] = ACTIONS(5942), - [anon_sym_PIPE] = ACTIONS(5942), - [anon_sym_COLON] = ACTIONS(5942), - [anon_sym_SQUOTE] = ACTIONS(5942), - [anon_sym__] = ACTIONS(5944), - [anon_sym_CARET] = ACTIONS(5944), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5944), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5944), - [anon_sym_DOLLAR] = ACTIONS(5942), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5944), - [anon_sym_BSLASHbegin] = ACTIONS(5942), - [anon_sym_BSLASHtitle] = ACTIONS(5942), - [anon_sym_BSLASHauthor] = ACTIONS(5942), - [anon_sym_BSLASHusepackage] = ACTIONS(5942), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5942), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5942), - [anon_sym_BSLASHinclude] = ACTIONS(5942), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5942), - [anon_sym_BSLASHinput] = ACTIONS(5942), - [anon_sym_BSLASHsubfile] = ACTIONS(5942), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5942), - [anon_sym_BSLASHbibliography] = ACTIONS(5942), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5942), - [anon_sym_BSLASHincludesvg] = ACTIONS(5942), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5942), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5942), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5942), - [anon_sym_BSLASHimport] = ACTIONS(5942), - [anon_sym_BSLASHsubimport] = ACTIONS(5942), - [anon_sym_BSLASHinputfrom] = ACTIONS(5942), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5942), - [anon_sym_BSLASHincludefrom] = ACTIONS(5942), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5942), - [anon_sym_BSLASHcaption] = ACTIONS(5942), - [anon_sym_BSLASHcite] = ACTIONS(5942), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCite] = ACTIONS(5942), - [anon_sym_BSLASHnocite] = ACTIONS(5942), - [anon_sym_BSLASHcitet] = ACTIONS(5942), - [anon_sym_BSLASHcitep] = ACTIONS(5942), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteauthor] = ACTIONS(5942), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5942), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitetitle] = ACTIONS(5942), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteyear] = ACTIONS(5942), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitedate] = ACTIONS(5942), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteurl] = ACTIONS(5942), - [anon_sym_BSLASHfullcite] = ACTIONS(5942), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5942), - [anon_sym_BSLASHcitealt] = ACTIONS(5942), - [anon_sym_BSLASHcitealp] = ACTIONS(5942), - [anon_sym_BSLASHcitetext] = ACTIONS(5942), - [anon_sym_BSLASHparencite] = ACTIONS(5942), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHParencite] = ACTIONS(5942), - [anon_sym_BSLASHfootcite] = ACTIONS(5942), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5942), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5942), - [anon_sym_BSLASHtextcite] = ACTIONS(5942), - [anon_sym_BSLASHTextcite] = ACTIONS(5942), - [anon_sym_BSLASHsmartcite] = ACTIONS(5942), - [anon_sym_BSLASHSmartcite] = ACTIONS(5942), - [anon_sym_BSLASHsupercite] = ACTIONS(5942), - [anon_sym_BSLASHautocite] = ACTIONS(5942), - [anon_sym_BSLASHAutocite] = ACTIONS(5942), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHvolcite] = ACTIONS(5942), - [anon_sym_BSLASHVolcite] = ACTIONS(5942), - [anon_sym_BSLASHpvolcite] = ACTIONS(5942), - [anon_sym_BSLASHPvolcite] = ACTIONS(5942), - [anon_sym_BSLASHfvolcite] = ACTIONS(5942), - [anon_sym_BSLASHftvolcite] = ACTIONS(5942), - [anon_sym_BSLASHsvolcite] = ACTIONS(5942), - [anon_sym_BSLASHSvolcite] = ACTIONS(5942), - [anon_sym_BSLASHtvolcite] = ACTIONS(5942), - [anon_sym_BSLASHTvolcite] = ACTIONS(5942), - [anon_sym_BSLASHavolcite] = ACTIONS(5942), - [anon_sym_BSLASHAvolcite] = ACTIONS(5942), - [anon_sym_BSLASHnotecite] = ACTIONS(5942), - [anon_sym_BSLASHNotecite] = ACTIONS(5942), - [anon_sym_BSLASHpnotecite] = ACTIONS(5942), - [anon_sym_BSLASHPnotecite] = ACTIONS(5942), - [anon_sym_BSLASHfnotecite] = ACTIONS(5942), - [anon_sym_BSLASHlabel] = ACTIONS(5942), - [anon_sym_BSLASHref] = ACTIONS(5942), - [anon_sym_BSLASHeqref] = ACTIONS(5942), - [anon_sym_BSLASHvref] = ACTIONS(5942), - [anon_sym_BSLASHVref] = ACTIONS(5942), - [anon_sym_BSLASHautoref] = ACTIONS(5942), - [anon_sym_BSLASHpageref] = ACTIONS(5942), - [anon_sym_BSLASHcref] = ACTIONS(5942), - [anon_sym_BSLASHCref] = ACTIONS(5942), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5944), - [anon_sym_BSLASHnamecref] = ACTIONS(5942), - [anon_sym_BSLASHnameCref] = ACTIONS(5942), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5942), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5942), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5942), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5942), - [anon_sym_BSLASHlabelcref] = ACTIONS(5942), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5942), - [anon_sym_BSLASHcrefrange] = ACTIONS(5942), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCrefrange] = ACTIONS(5942), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5944), - [anon_sym_BSLASHnewlabel] = ACTIONS(5942), - [anon_sym_BSLASHnewcommand] = ACTIONS(5942), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5942), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5942), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5944), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHdef] = ACTIONS(5942), - [anon_sym_BSLASHlet] = ACTIONS(5942), - [anon_sym_BSLASHleft] = ACTIONS(5942), - [anon_sym_BSLASHbig] = ACTIONS(5942), - [anon_sym_BSLASHBig] = ACTIONS(5942), - [anon_sym_BSLASHbigg] = ACTIONS(5942), - [anon_sym_BSLASHBigg] = ACTIONS(5942), - [anon_sym_BSLASHbigl] = ACTIONS(5942), - [anon_sym_BSLASHBigl] = ACTIONS(5942), - [anon_sym_BSLASHbiggl] = ACTIONS(5942), - [anon_sym_BSLASHBiggl] = ACTIONS(5942), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5942), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5942), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5942), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5942), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5942), - [anon_sym_BSLASHgls] = ACTIONS(5942), - [anon_sym_BSLASHGls] = ACTIONS(5942), - [anon_sym_BSLASHGLS] = ACTIONS(5942), - [anon_sym_BSLASHglspl] = ACTIONS(5942), - [anon_sym_BSLASHGlspl] = ACTIONS(5942), - [anon_sym_BSLASHGLSpl] = ACTIONS(5942), - [anon_sym_BSLASHglsdisp] = ACTIONS(5942), - [anon_sym_BSLASHglslink] = ACTIONS(5942), - [anon_sym_BSLASHglstext] = ACTIONS(5942), - [anon_sym_BSLASHGlstext] = ACTIONS(5942), - [anon_sym_BSLASHGLStext] = ACTIONS(5942), - [anon_sym_BSLASHglsfirst] = ACTIONS(5942), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5942), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5942), - [anon_sym_BSLASHglsplural] = ACTIONS(5942), - [anon_sym_BSLASHGlsplural] = ACTIONS(5942), - [anon_sym_BSLASHGLSplural] = ACTIONS(5942), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHglsname] = ACTIONS(5942), - [anon_sym_BSLASHGlsname] = ACTIONS(5942), - [anon_sym_BSLASHGLSname] = ACTIONS(5942), - [anon_sym_BSLASHglssymbol] = ACTIONS(5942), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5942), - [anon_sym_BSLASHglsdesc] = ACTIONS(5942), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5942), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5942), - [anon_sym_BSLASHglsuseri] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5942), - [anon_sym_BSLASHglsuserii] = ACTIONS(5942), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5942), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5942), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5942), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5942), - [anon_sym_BSLASHglsuserv] = ACTIONS(5942), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5942), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5942), - [anon_sym_BSLASHglsuservi] = ACTIONS(5942), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5942), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5942), - [anon_sym_BSLASHnewacronym] = ACTIONS(5942), - [anon_sym_BSLASHacrshort] = ACTIONS(5942), - [anon_sym_BSLASHAcrshort] = ACTIONS(5942), - [anon_sym_BSLASHACRshort] = ACTIONS(5942), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5942), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5942), - [anon_sym_BSLASHacrlong] = ACTIONS(5942), - [anon_sym_BSLASHAcrlong] = ACTIONS(5942), - [anon_sym_BSLASHACRlong] = ACTIONS(5942), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5942), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5942), - [anon_sym_BSLASHacrfull] = ACTIONS(5942), - [anon_sym_BSLASHAcrfull] = ACTIONS(5942), - [anon_sym_BSLASHACRfull] = ACTIONS(5942), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5942), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5942), - [anon_sym_BSLASHacs] = ACTIONS(5942), - [anon_sym_BSLASHAcs] = ACTIONS(5942), - [anon_sym_BSLASHacsp] = ACTIONS(5942), - [anon_sym_BSLASHAcsp] = ACTIONS(5942), - [anon_sym_BSLASHacl] = ACTIONS(5942), - [anon_sym_BSLASHAcl] = ACTIONS(5942), - [anon_sym_BSLASHaclp] = ACTIONS(5942), - [anon_sym_BSLASHAclp] = ACTIONS(5942), - [anon_sym_BSLASHacf] = ACTIONS(5942), - [anon_sym_BSLASHAcf] = ACTIONS(5942), - [anon_sym_BSLASHacfp] = ACTIONS(5942), - [anon_sym_BSLASHAcfp] = ACTIONS(5942), - [anon_sym_BSLASHac] = ACTIONS(5942), - [anon_sym_BSLASHAc] = ACTIONS(5942), - [anon_sym_BSLASHacp] = ACTIONS(5942), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5942), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5942), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5942), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5942), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5942), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5942), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5942), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5944), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5942), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5944), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5942), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5942), - [anon_sym_BSLASHcolor] = ACTIONS(5942), - [anon_sym_BSLASHcolorbox] = ACTIONS(5942), - [anon_sym_BSLASHtextcolor] = ACTIONS(5942), - [anon_sym_BSLASHpagecolor] = ACTIONS(5942), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5942), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - [anon_sym_BSLASHtext] = ACTIONS(5942), - [anon_sym_BSLASHintertext] = ACTIONS(5942), - [anon_sym_shortintertext] = ACTIONS(5942), - }, - [454] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(5934), - [sym_command_name] = ACTIONS(5932), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5932), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_RBRACK] = ACTIONS(5934), - [anon_sym_COMMA] = ACTIONS(5934), - [anon_sym_EQ] = ACTIONS(5934), - [anon_sym_LPAREN] = ACTIONS(5934), - [anon_sym_RPAREN] = ACTIONS(5934), - [anon_sym_BSLASHpart] = ACTIONS(5932), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddpart] = ACTIONS(5932), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5934), - [anon_sym_BSLASHchapter] = ACTIONS(5932), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddchap] = ACTIONS(5932), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsection] = ACTIONS(5932), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddsec] = ACTIONS(5932), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubsection] = ACTIONS(5932), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5932), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHparagraph] = ACTIONS(5932), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6067), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6070), - [anon_sym_BSLASHitem] = ACTIONS(5932), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5934), - [anon_sym_LBRACE] = ACTIONS(5934), - [anon_sym_RBRACE] = ACTIONS(5934), - [sym_word] = ACTIONS(5932), - [sym_placeholder] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_STAR] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5934), - [anon_sym_LT] = ACTIONS(5932), - [anon_sym_GT] = ACTIONS(5932), - [anon_sym_BANG] = ACTIONS(5932), - [anon_sym_PIPE] = ACTIONS(5932), - [anon_sym_COLON] = ACTIONS(5932), - [anon_sym_SQUOTE] = ACTIONS(5932), - [anon_sym__] = ACTIONS(5934), - [anon_sym_CARET] = ACTIONS(5934), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5934), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5934), - [anon_sym_DOLLAR] = ACTIONS(5932), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5934), - [anon_sym_BSLASHbegin] = ACTIONS(5932), - [anon_sym_BSLASHtitle] = ACTIONS(5932), - [anon_sym_BSLASHauthor] = ACTIONS(5932), - [anon_sym_BSLASHusepackage] = ACTIONS(5932), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5932), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5932), - [anon_sym_BSLASHinclude] = ACTIONS(5932), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5932), - [anon_sym_BSLASHinput] = ACTIONS(5932), - [anon_sym_BSLASHsubfile] = ACTIONS(5932), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5932), - [anon_sym_BSLASHbibliography] = ACTIONS(5932), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5932), - [anon_sym_BSLASHincludesvg] = ACTIONS(5932), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5932), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5932), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5932), - [anon_sym_BSLASHimport] = ACTIONS(5932), - [anon_sym_BSLASHsubimport] = ACTIONS(5932), - [anon_sym_BSLASHinputfrom] = ACTIONS(5932), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5932), - [anon_sym_BSLASHincludefrom] = ACTIONS(5932), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5932), - [anon_sym_BSLASHcaption] = ACTIONS(5932), - [anon_sym_BSLASHcite] = ACTIONS(5932), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCite] = ACTIONS(5932), - [anon_sym_BSLASHnocite] = ACTIONS(5932), - [anon_sym_BSLASHcitet] = ACTIONS(5932), - [anon_sym_BSLASHcitep] = ACTIONS(5932), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteauthor] = ACTIONS(5932), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5932), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitetitle] = ACTIONS(5932), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteyear] = ACTIONS(5932), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitedate] = ACTIONS(5932), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteurl] = ACTIONS(5932), - [anon_sym_BSLASHfullcite] = ACTIONS(5932), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5932), - [anon_sym_BSLASHcitealt] = ACTIONS(5932), - [anon_sym_BSLASHcitealp] = ACTIONS(5932), - [anon_sym_BSLASHcitetext] = ACTIONS(5932), - [anon_sym_BSLASHparencite] = ACTIONS(5932), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHParencite] = ACTIONS(5932), - [anon_sym_BSLASHfootcite] = ACTIONS(5932), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5932), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5932), - [anon_sym_BSLASHtextcite] = ACTIONS(5932), - [anon_sym_BSLASHTextcite] = ACTIONS(5932), - [anon_sym_BSLASHsmartcite] = ACTIONS(5932), - [anon_sym_BSLASHSmartcite] = ACTIONS(5932), - [anon_sym_BSLASHsupercite] = ACTIONS(5932), - [anon_sym_BSLASHautocite] = ACTIONS(5932), - [anon_sym_BSLASHAutocite] = ACTIONS(5932), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHvolcite] = ACTIONS(5932), - [anon_sym_BSLASHVolcite] = ACTIONS(5932), - [anon_sym_BSLASHpvolcite] = ACTIONS(5932), - [anon_sym_BSLASHPvolcite] = ACTIONS(5932), - [anon_sym_BSLASHfvolcite] = ACTIONS(5932), - [anon_sym_BSLASHftvolcite] = ACTIONS(5932), - [anon_sym_BSLASHsvolcite] = ACTIONS(5932), - [anon_sym_BSLASHSvolcite] = ACTIONS(5932), - [anon_sym_BSLASHtvolcite] = ACTIONS(5932), - [anon_sym_BSLASHTvolcite] = ACTIONS(5932), - [anon_sym_BSLASHavolcite] = ACTIONS(5932), - [anon_sym_BSLASHAvolcite] = ACTIONS(5932), - [anon_sym_BSLASHnotecite] = ACTIONS(5932), - [anon_sym_BSLASHNotecite] = ACTIONS(5932), - [anon_sym_BSLASHpnotecite] = ACTIONS(5932), - [anon_sym_BSLASHPnotecite] = ACTIONS(5932), - [anon_sym_BSLASHfnotecite] = ACTIONS(5932), - [anon_sym_BSLASHlabel] = ACTIONS(5932), - [anon_sym_BSLASHref] = ACTIONS(5932), - [anon_sym_BSLASHeqref] = ACTIONS(5932), - [anon_sym_BSLASHvref] = ACTIONS(5932), - [anon_sym_BSLASHVref] = ACTIONS(5932), - [anon_sym_BSLASHautoref] = ACTIONS(5932), - [anon_sym_BSLASHpageref] = ACTIONS(5932), - [anon_sym_BSLASHcref] = ACTIONS(5932), - [anon_sym_BSLASHCref] = ACTIONS(5932), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5934), - [anon_sym_BSLASHnamecref] = ACTIONS(5932), - [anon_sym_BSLASHnameCref] = ACTIONS(5932), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5932), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5932), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5932), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5932), - [anon_sym_BSLASHlabelcref] = ACTIONS(5932), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5932), - [anon_sym_BSLASHcrefrange] = ACTIONS(5932), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCrefrange] = ACTIONS(5932), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5934), - [anon_sym_BSLASHnewlabel] = ACTIONS(5932), - [anon_sym_BSLASHnewcommand] = ACTIONS(5932), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5932), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5932), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5934), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHdef] = ACTIONS(5932), - [anon_sym_BSLASHlet] = ACTIONS(5932), - [anon_sym_BSLASHleft] = ACTIONS(5932), - [anon_sym_BSLASHbig] = ACTIONS(5932), - [anon_sym_BSLASHBig] = ACTIONS(5932), - [anon_sym_BSLASHbigg] = ACTIONS(5932), - [anon_sym_BSLASHBigg] = ACTIONS(5932), - [anon_sym_BSLASHbigl] = ACTIONS(5932), - [anon_sym_BSLASHBigl] = ACTIONS(5932), - [anon_sym_BSLASHbiggl] = ACTIONS(5932), - [anon_sym_BSLASHBiggl] = ACTIONS(5932), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5932), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5932), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5932), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5932), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5932), - [anon_sym_BSLASHgls] = ACTIONS(5932), - [anon_sym_BSLASHGls] = ACTIONS(5932), - [anon_sym_BSLASHGLS] = ACTIONS(5932), - [anon_sym_BSLASHglspl] = ACTIONS(5932), - [anon_sym_BSLASHGlspl] = ACTIONS(5932), - [anon_sym_BSLASHGLSpl] = ACTIONS(5932), - [anon_sym_BSLASHglsdisp] = ACTIONS(5932), - [anon_sym_BSLASHglslink] = ACTIONS(5932), - [anon_sym_BSLASHglstext] = ACTIONS(5932), - [anon_sym_BSLASHGlstext] = ACTIONS(5932), - [anon_sym_BSLASHGLStext] = ACTIONS(5932), - [anon_sym_BSLASHglsfirst] = ACTIONS(5932), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5932), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5932), - [anon_sym_BSLASHglsplural] = ACTIONS(5932), - [anon_sym_BSLASHGlsplural] = ACTIONS(5932), - [anon_sym_BSLASHGLSplural] = ACTIONS(5932), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHglsname] = ACTIONS(5932), - [anon_sym_BSLASHGlsname] = ACTIONS(5932), - [anon_sym_BSLASHGLSname] = ACTIONS(5932), - [anon_sym_BSLASHglssymbol] = ACTIONS(5932), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5932), - [anon_sym_BSLASHglsdesc] = ACTIONS(5932), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5932), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5932), - [anon_sym_BSLASHglsuseri] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5932), - [anon_sym_BSLASHglsuserii] = ACTIONS(5932), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5932), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5932), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5932), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5932), - [anon_sym_BSLASHglsuserv] = ACTIONS(5932), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5932), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5932), - [anon_sym_BSLASHglsuservi] = ACTIONS(5932), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5932), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5932), - [anon_sym_BSLASHnewacronym] = ACTIONS(5932), - [anon_sym_BSLASHacrshort] = ACTIONS(5932), - [anon_sym_BSLASHAcrshort] = ACTIONS(5932), - [anon_sym_BSLASHACRshort] = ACTIONS(5932), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5932), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5932), - [anon_sym_BSLASHacrlong] = ACTIONS(5932), - [anon_sym_BSLASHAcrlong] = ACTIONS(5932), - [anon_sym_BSLASHACRlong] = ACTIONS(5932), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5932), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5932), - [anon_sym_BSLASHacrfull] = ACTIONS(5932), - [anon_sym_BSLASHAcrfull] = ACTIONS(5932), - [anon_sym_BSLASHACRfull] = ACTIONS(5932), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5932), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5932), - [anon_sym_BSLASHacs] = ACTIONS(5932), - [anon_sym_BSLASHAcs] = ACTIONS(5932), - [anon_sym_BSLASHacsp] = ACTIONS(5932), - [anon_sym_BSLASHAcsp] = ACTIONS(5932), - [anon_sym_BSLASHacl] = ACTIONS(5932), - [anon_sym_BSLASHAcl] = ACTIONS(5932), - [anon_sym_BSLASHaclp] = ACTIONS(5932), - [anon_sym_BSLASHAclp] = ACTIONS(5932), - [anon_sym_BSLASHacf] = ACTIONS(5932), - [anon_sym_BSLASHAcf] = ACTIONS(5932), - [anon_sym_BSLASHacfp] = ACTIONS(5932), - [anon_sym_BSLASHAcfp] = ACTIONS(5932), - [anon_sym_BSLASHac] = ACTIONS(5932), - [anon_sym_BSLASHAc] = ACTIONS(5932), - [anon_sym_BSLASHacp] = ACTIONS(5932), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5932), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5932), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5932), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5932), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5932), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5932), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5932), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5934), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5932), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5932), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5932), - [anon_sym_BSLASHcolor] = ACTIONS(5932), - [anon_sym_BSLASHcolorbox] = ACTIONS(5932), - [anon_sym_BSLASHtextcolor] = ACTIONS(5932), - [anon_sym_BSLASHpagecolor] = ACTIONS(5932), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5932), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5932), - [anon_sym_BSLASHtext] = ACTIONS(5932), - [anon_sym_BSLASHintertext] = ACTIONS(5932), - [anon_sym_shortintertext] = ACTIONS(5932), - }, - [455] = { - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(455), - [aux_sym__section_repeat6] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(5924), - [sym_command_name] = ACTIONS(5922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5922), - [anon_sym_LBRACK] = ACTIONS(5924), - [anon_sym_RBRACK] = ACTIONS(5924), - [anon_sym_COMMA] = ACTIONS(5924), - [anon_sym_EQ] = ACTIONS(5924), - [anon_sym_LPAREN] = ACTIONS(5924), - [anon_sym_RPAREN] = ACTIONS(5924), - [anon_sym_BSLASHpart] = ACTIONS(5922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddpart] = ACTIONS(5922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5924), - [anon_sym_BSLASHchapter] = ACTIONS(5922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddchap] = ACTIONS(5922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsection] = ACTIONS(5922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddsec] = ACTIONS(5922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsubsection] = ACTIONS(5922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHparagraph] = ACTIONS(6073), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6076), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5922), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5924), - [anon_sym_BSLASHitem] = ACTIONS(5922), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5924), - [anon_sym_LBRACE] = ACTIONS(5924), - [anon_sym_RBRACE] = ACTIONS(5924), - [sym_word] = ACTIONS(5922), - [sym_placeholder] = ACTIONS(5924), - [anon_sym_PLUS] = ACTIONS(5924), - [anon_sym_DASH] = ACTIONS(5924), - [anon_sym_STAR] = ACTIONS(5924), - [anon_sym_SLASH] = ACTIONS(5924), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_BANG] = ACTIONS(5922), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_COLON] = ACTIONS(5922), - [anon_sym_SQUOTE] = ACTIONS(5922), - [anon_sym__] = ACTIONS(5924), - [anon_sym_CARET] = ACTIONS(5924), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5924), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5924), - [anon_sym_DOLLAR] = ACTIONS(5922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5924), - [anon_sym_BSLASHbegin] = ACTIONS(5922), - [anon_sym_BSLASHtitle] = ACTIONS(5922), - [anon_sym_BSLASHauthor] = ACTIONS(5922), - [anon_sym_BSLASHusepackage] = ACTIONS(5922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5922), - [anon_sym_BSLASHinclude] = ACTIONS(5922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5922), - [anon_sym_BSLASHinput] = ACTIONS(5922), - [anon_sym_BSLASHsubfile] = ACTIONS(5922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5922), - [anon_sym_BSLASHbibliography] = ACTIONS(5922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5922), - [anon_sym_BSLASHincludesvg] = ACTIONS(5922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5922), - [anon_sym_BSLASHimport] = ACTIONS(5922), - [anon_sym_BSLASHsubimport] = ACTIONS(5922), - [anon_sym_BSLASHinputfrom] = ACTIONS(5922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5922), - [anon_sym_BSLASHincludefrom] = ACTIONS(5922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5922), - [anon_sym_BSLASHcaption] = ACTIONS(5922), - [anon_sym_BSLASHcite] = ACTIONS(5922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCite] = ACTIONS(5922), - [anon_sym_BSLASHnocite] = ACTIONS(5922), - [anon_sym_BSLASHcitet] = ACTIONS(5922), - [anon_sym_BSLASHcitep] = ACTIONS(5922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteauthor] = ACTIONS(5922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitetitle] = ACTIONS(5922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteyear] = ACTIONS(5922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitedate] = ACTIONS(5922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteurl] = ACTIONS(5922), - [anon_sym_BSLASHfullcite] = ACTIONS(5922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5922), - [anon_sym_BSLASHcitealt] = ACTIONS(5922), - [anon_sym_BSLASHcitealp] = ACTIONS(5922), - [anon_sym_BSLASHcitetext] = ACTIONS(5922), - [anon_sym_BSLASHparencite] = ACTIONS(5922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHParencite] = ACTIONS(5922), - [anon_sym_BSLASHfootcite] = ACTIONS(5922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5922), - [anon_sym_BSLASHtextcite] = ACTIONS(5922), - [anon_sym_BSLASHTextcite] = ACTIONS(5922), - [anon_sym_BSLASHsmartcite] = ACTIONS(5922), - [anon_sym_BSLASHSmartcite] = ACTIONS(5922), - [anon_sym_BSLASHsupercite] = ACTIONS(5922), - [anon_sym_BSLASHautocite] = ACTIONS(5922), - [anon_sym_BSLASHAutocite] = ACTIONS(5922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHvolcite] = ACTIONS(5922), - [anon_sym_BSLASHVolcite] = ACTIONS(5922), - [anon_sym_BSLASHpvolcite] = ACTIONS(5922), - [anon_sym_BSLASHPvolcite] = ACTIONS(5922), - [anon_sym_BSLASHfvolcite] = ACTIONS(5922), - [anon_sym_BSLASHftvolcite] = ACTIONS(5922), - [anon_sym_BSLASHsvolcite] = ACTIONS(5922), - [anon_sym_BSLASHSvolcite] = ACTIONS(5922), - [anon_sym_BSLASHtvolcite] = ACTIONS(5922), - [anon_sym_BSLASHTvolcite] = ACTIONS(5922), - [anon_sym_BSLASHavolcite] = ACTIONS(5922), - [anon_sym_BSLASHAvolcite] = ACTIONS(5922), - [anon_sym_BSLASHnotecite] = ACTIONS(5922), - [anon_sym_BSLASHNotecite] = ACTIONS(5922), - [anon_sym_BSLASHpnotecite] = ACTIONS(5922), - [anon_sym_BSLASHPnotecite] = ACTIONS(5922), - [anon_sym_BSLASHfnotecite] = ACTIONS(5922), - [anon_sym_BSLASHlabel] = ACTIONS(5922), - [anon_sym_BSLASHref] = ACTIONS(5922), - [anon_sym_BSLASHeqref] = ACTIONS(5922), - [anon_sym_BSLASHvref] = ACTIONS(5922), - [anon_sym_BSLASHVref] = ACTIONS(5922), - [anon_sym_BSLASHautoref] = ACTIONS(5922), - [anon_sym_BSLASHpageref] = ACTIONS(5922), - [anon_sym_BSLASHcref] = ACTIONS(5922), - [anon_sym_BSLASHCref] = ACTIONS(5922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5924), - [anon_sym_BSLASHnamecref] = ACTIONS(5922), - [anon_sym_BSLASHnameCref] = ACTIONS(5922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5922), - [anon_sym_BSLASHlabelcref] = ACTIONS(5922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5922), - [anon_sym_BSLASHcrefrange] = ACTIONS(5922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCrefrange] = ACTIONS(5922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5924), - [anon_sym_BSLASHnewlabel] = ACTIONS(5922), - [anon_sym_BSLASHnewcommand] = ACTIONS(5922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5924), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHdef] = ACTIONS(5922), - [anon_sym_BSLASHlet] = ACTIONS(5922), - [anon_sym_BSLASHleft] = ACTIONS(5922), - [anon_sym_BSLASHbig] = ACTIONS(5922), - [anon_sym_BSLASHBig] = ACTIONS(5922), - [anon_sym_BSLASHbigg] = ACTIONS(5922), - [anon_sym_BSLASHBigg] = ACTIONS(5922), - [anon_sym_BSLASHbigl] = ACTIONS(5922), - [anon_sym_BSLASHBigl] = ACTIONS(5922), - [anon_sym_BSLASHbiggl] = ACTIONS(5922), - [anon_sym_BSLASHBiggl] = ACTIONS(5922), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5922), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5922), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5922), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5922), - [anon_sym_BSLASHgls] = ACTIONS(5922), - [anon_sym_BSLASHGls] = ACTIONS(5922), - [anon_sym_BSLASHGLS] = ACTIONS(5922), - [anon_sym_BSLASHglspl] = ACTIONS(5922), - [anon_sym_BSLASHGlspl] = ACTIONS(5922), - [anon_sym_BSLASHGLSpl] = ACTIONS(5922), - [anon_sym_BSLASHglsdisp] = ACTIONS(5922), - [anon_sym_BSLASHglslink] = ACTIONS(5922), - [anon_sym_BSLASHglstext] = ACTIONS(5922), - [anon_sym_BSLASHGlstext] = ACTIONS(5922), - [anon_sym_BSLASHGLStext] = ACTIONS(5922), - [anon_sym_BSLASHglsfirst] = ACTIONS(5922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5922), - [anon_sym_BSLASHglsplural] = ACTIONS(5922), - [anon_sym_BSLASHGlsplural] = ACTIONS(5922), - [anon_sym_BSLASHGLSplural] = ACTIONS(5922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHglsname] = ACTIONS(5922), - [anon_sym_BSLASHGlsname] = ACTIONS(5922), - [anon_sym_BSLASHGLSname] = ACTIONS(5922), - [anon_sym_BSLASHglssymbol] = ACTIONS(5922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5922), - [anon_sym_BSLASHglsdesc] = ACTIONS(5922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5922), - [anon_sym_BSLASHglsuseri] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5922), - [anon_sym_BSLASHglsuserii] = ACTIONS(5922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5922), - [anon_sym_BSLASHglsuserv] = ACTIONS(5922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5922), - [anon_sym_BSLASHglsuservi] = ACTIONS(5922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5922), - [anon_sym_BSLASHnewacronym] = ACTIONS(5922), - [anon_sym_BSLASHacrshort] = ACTIONS(5922), - [anon_sym_BSLASHAcrshort] = ACTIONS(5922), - [anon_sym_BSLASHACRshort] = ACTIONS(5922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5922), - [anon_sym_BSLASHacrlong] = ACTIONS(5922), - [anon_sym_BSLASHAcrlong] = ACTIONS(5922), - [anon_sym_BSLASHACRlong] = ACTIONS(5922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5922), - [anon_sym_BSLASHacrfull] = ACTIONS(5922), - [anon_sym_BSLASHAcrfull] = ACTIONS(5922), - [anon_sym_BSLASHACRfull] = ACTIONS(5922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5922), - [anon_sym_BSLASHacs] = ACTIONS(5922), - [anon_sym_BSLASHAcs] = ACTIONS(5922), - [anon_sym_BSLASHacsp] = ACTIONS(5922), - [anon_sym_BSLASHAcsp] = ACTIONS(5922), - [anon_sym_BSLASHacl] = ACTIONS(5922), - [anon_sym_BSLASHAcl] = ACTIONS(5922), - [anon_sym_BSLASHaclp] = ACTIONS(5922), - [anon_sym_BSLASHAclp] = ACTIONS(5922), - [anon_sym_BSLASHacf] = ACTIONS(5922), - [anon_sym_BSLASHAcf] = ACTIONS(5922), - [anon_sym_BSLASHacfp] = ACTIONS(5922), - [anon_sym_BSLASHAcfp] = ACTIONS(5922), - [anon_sym_BSLASHac] = ACTIONS(5922), - [anon_sym_BSLASHAc] = ACTIONS(5922), - [anon_sym_BSLASHacp] = ACTIONS(5922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5922), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5924), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5922), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5924), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5922), - [anon_sym_BSLASHcolor] = ACTIONS(5922), - [anon_sym_BSLASHcolorbox] = ACTIONS(5922), - [anon_sym_BSLASHtextcolor] = ACTIONS(5922), - [anon_sym_BSLASHpagecolor] = ACTIONS(5922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5922), - [anon_sym_BSLASHtext] = ACTIONS(5922), - [anon_sym_BSLASHintertext] = ACTIONS(5922), - [anon_sym_shortintertext] = ACTIONS(5922), - }, - [456] = { - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(456), - [aux_sym__section_repeat5] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(5914), - [sym_command_name] = ACTIONS(5912), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5914), - [anon_sym_RBRACK] = ACTIONS(5914), - [anon_sym_COMMA] = ACTIONS(5914), - [anon_sym_EQ] = ACTIONS(5914), - [anon_sym_LPAREN] = ACTIONS(5914), - [anon_sym_RPAREN] = ACTIONS(5914), - [anon_sym_BSLASHpart] = ACTIONS(5912), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddpart] = ACTIONS(5912), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5914), - [anon_sym_BSLASHchapter] = ACTIONS(5912), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddchap] = ACTIONS(5912), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsection] = ACTIONS(5912), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddsec] = ACTIONS(5912), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubsection] = ACTIONS(5912), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6079), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6082), - [anon_sym_BSLASHparagraph] = ACTIONS(5912), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5912), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5914), - [anon_sym_BSLASHitem] = ACTIONS(5912), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5914), - [anon_sym_LBRACE] = ACTIONS(5914), - [anon_sym_RBRACE] = ACTIONS(5914), - [sym_word] = ACTIONS(5912), - [sym_placeholder] = ACTIONS(5914), - [anon_sym_PLUS] = ACTIONS(5914), - [anon_sym_DASH] = ACTIONS(5914), - [anon_sym_STAR] = ACTIONS(5914), - [anon_sym_SLASH] = ACTIONS(5914), - [anon_sym_LT] = ACTIONS(5912), - [anon_sym_GT] = ACTIONS(5912), - [anon_sym_BANG] = ACTIONS(5912), - [anon_sym_PIPE] = ACTIONS(5912), - [anon_sym_COLON] = ACTIONS(5912), - [anon_sym_SQUOTE] = ACTIONS(5912), - [anon_sym__] = ACTIONS(5914), - [anon_sym_CARET] = ACTIONS(5914), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5914), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5914), - [anon_sym_DOLLAR] = ACTIONS(5912), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5914), - [anon_sym_BSLASHbegin] = ACTIONS(5912), - [anon_sym_BSLASHtitle] = ACTIONS(5912), - [anon_sym_BSLASHauthor] = ACTIONS(5912), - [anon_sym_BSLASHusepackage] = ACTIONS(5912), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5912), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5912), - [anon_sym_BSLASHinclude] = ACTIONS(5912), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5912), - [anon_sym_BSLASHinput] = ACTIONS(5912), - [anon_sym_BSLASHsubfile] = ACTIONS(5912), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5912), - [anon_sym_BSLASHbibliography] = ACTIONS(5912), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5912), - [anon_sym_BSLASHincludesvg] = ACTIONS(5912), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5912), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5912), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5912), - [anon_sym_BSLASHimport] = ACTIONS(5912), - [anon_sym_BSLASHsubimport] = ACTIONS(5912), - [anon_sym_BSLASHinputfrom] = ACTIONS(5912), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5912), - [anon_sym_BSLASHincludefrom] = ACTIONS(5912), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5912), - [anon_sym_BSLASHcaption] = ACTIONS(5912), - [anon_sym_BSLASHcite] = ACTIONS(5912), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCite] = ACTIONS(5912), - [anon_sym_BSLASHnocite] = ACTIONS(5912), - [anon_sym_BSLASHcitet] = ACTIONS(5912), - [anon_sym_BSLASHcitep] = ACTIONS(5912), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteauthor] = ACTIONS(5912), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5912), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitetitle] = ACTIONS(5912), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteyear] = ACTIONS(5912), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitedate] = ACTIONS(5912), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteurl] = ACTIONS(5912), - [anon_sym_BSLASHfullcite] = ACTIONS(5912), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5912), - [anon_sym_BSLASHcitealt] = ACTIONS(5912), - [anon_sym_BSLASHcitealp] = ACTIONS(5912), - [anon_sym_BSLASHcitetext] = ACTIONS(5912), - [anon_sym_BSLASHparencite] = ACTIONS(5912), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHParencite] = ACTIONS(5912), - [anon_sym_BSLASHfootcite] = ACTIONS(5912), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5912), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5912), - [anon_sym_BSLASHtextcite] = ACTIONS(5912), - [anon_sym_BSLASHTextcite] = ACTIONS(5912), - [anon_sym_BSLASHsmartcite] = ACTIONS(5912), - [anon_sym_BSLASHSmartcite] = ACTIONS(5912), - [anon_sym_BSLASHsupercite] = ACTIONS(5912), - [anon_sym_BSLASHautocite] = ACTIONS(5912), - [anon_sym_BSLASHAutocite] = ACTIONS(5912), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHvolcite] = ACTIONS(5912), - [anon_sym_BSLASHVolcite] = ACTIONS(5912), - [anon_sym_BSLASHpvolcite] = ACTIONS(5912), - [anon_sym_BSLASHPvolcite] = ACTIONS(5912), - [anon_sym_BSLASHfvolcite] = ACTIONS(5912), - [anon_sym_BSLASHftvolcite] = ACTIONS(5912), - [anon_sym_BSLASHsvolcite] = ACTIONS(5912), - [anon_sym_BSLASHSvolcite] = ACTIONS(5912), - [anon_sym_BSLASHtvolcite] = ACTIONS(5912), - [anon_sym_BSLASHTvolcite] = ACTIONS(5912), - [anon_sym_BSLASHavolcite] = ACTIONS(5912), - [anon_sym_BSLASHAvolcite] = ACTIONS(5912), - [anon_sym_BSLASHnotecite] = ACTIONS(5912), - [anon_sym_BSLASHNotecite] = ACTIONS(5912), - [anon_sym_BSLASHpnotecite] = ACTIONS(5912), - [anon_sym_BSLASHPnotecite] = ACTIONS(5912), - [anon_sym_BSLASHfnotecite] = ACTIONS(5912), - [anon_sym_BSLASHlabel] = ACTIONS(5912), - [anon_sym_BSLASHref] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5912), - [anon_sym_BSLASHvref] = ACTIONS(5912), - [anon_sym_BSLASHVref] = ACTIONS(5912), - [anon_sym_BSLASHautoref] = ACTIONS(5912), - [anon_sym_BSLASHpageref] = ACTIONS(5912), - [anon_sym_BSLASHcref] = ACTIONS(5912), - [anon_sym_BSLASHCref] = ACTIONS(5912), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5914), - [anon_sym_BSLASHnamecref] = ACTIONS(5912), - [anon_sym_BSLASHnameCref] = ACTIONS(5912), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5912), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5912), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5912), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5912), - [anon_sym_BSLASHlabelcref] = ACTIONS(5912), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5912), - [anon_sym_BSLASHcrefrange] = ACTIONS(5912), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCrefrange] = ACTIONS(5912), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5914), - [anon_sym_BSLASHnewlabel] = ACTIONS(5912), - [anon_sym_BSLASHnewcommand] = ACTIONS(5912), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5912), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5912), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5914), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHdef] = ACTIONS(5912), - [anon_sym_BSLASHlet] = ACTIONS(5912), - [anon_sym_BSLASHleft] = ACTIONS(5912), - [anon_sym_BSLASHbig] = ACTIONS(5912), - [anon_sym_BSLASHBig] = ACTIONS(5912), - [anon_sym_BSLASHbigg] = ACTIONS(5912), - [anon_sym_BSLASHBigg] = ACTIONS(5912), - [anon_sym_BSLASHbigl] = ACTIONS(5912), - [anon_sym_BSLASHBigl] = ACTIONS(5912), - [anon_sym_BSLASHbiggl] = ACTIONS(5912), - [anon_sym_BSLASHBiggl] = ACTIONS(5912), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5912), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5912), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5912), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5912), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5912), - [anon_sym_BSLASHgls] = ACTIONS(5912), - [anon_sym_BSLASHGls] = ACTIONS(5912), - [anon_sym_BSLASHGLS] = ACTIONS(5912), - [anon_sym_BSLASHglspl] = ACTIONS(5912), - [anon_sym_BSLASHGlspl] = ACTIONS(5912), - [anon_sym_BSLASHGLSpl] = ACTIONS(5912), - [anon_sym_BSLASHglsdisp] = ACTIONS(5912), - [anon_sym_BSLASHglslink] = ACTIONS(5912), - [anon_sym_BSLASHglstext] = ACTIONS(5912), - [anon_sym_BSLASHGlstext] = ACTIONS(5912), - [anon_sym_BSLASHGLStext] = ACTIONS(5912), - [anon_sym_BSLASHglsfirst] = ACTIONS(5912), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5912), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5912), - [anon_sym_BSLASHglsplural] = ACTIONS(5912), - [anon_sym_BSLASHGlsplural] = ACTIONS(5912), - [anon_sym_BSLASHGLSplural] = ACTIONS(5912), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHglsname] = ACTIONS(5912), - [anon_sym_BSLASHGlsname] = ACTIONS(5912), - [anon_sym_BSLASHGLSname] = ACTIONS(5912), - [anon_sym_BSLASHglssymbol] = ACTIONS(5912), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5912), - [anon_sym_BSLASHglsdesc] = ACTIONS(5912), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5912), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5912), - [anon_sym_BSLASHglsuseri] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5912), - [anon_sym_BSLASHglsuserii] = ACTIONS(5912), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5912), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5912), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5912), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5912), - [anon_sym_BSLASHglsuserv] = ACTIONS(5912), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5912), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5912), - [anon_sym_BSLASHglsuservi] = ACTIONS(5912), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5912), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5912), - [anon_sym_BSLASHnewacronym] = ACTIONS(5912), - [anon_sym_BSLASHacrshort] = ACTIONS(5912), - [anon_sym_BSLASHAcrshort] = ACTIONS(5912), - [anon_sym_BSLASHACRshort] = ACTIONS(5912), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5912), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5912), - [anon_sym_BSLASHacrlong] = ACTIONS(5912), - [anon_sym_BSLASHAcrlong] = ACTIONS(5912), - [anon_sym_BSLASHACRlong] = ACTIONS(5912), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5912), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5912), - [anon_sym_BSLASHacrfull] = ACTIONS(5912), - [anon_sym_BSLASHAcrfull] = ACTIONS(5912), - [anon_sym_BSLASHACRfull] = ACTIONS(5912), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5912), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5912), - [anon_sym_BSLASHacs] = ACTIONS(5912), - [anon_sym_BSLASHAcs] = ACTIONS(5912), - [anon_sym_BSLASHacsp] = ACTIONS(5912), - [anon_sym_BSLASHAcsp] = ACTIONS(5912), - [anon_sym_BSLASHacl] = ACTIONS(5912), - [anon_sym_BSLASHAcl] = ACTIONS(5912), - [anon_sym_BSLASHaclp] = ACTIONS(5912), - [anon_sym_BSLASHAclp] = ACTIONS(5912), - [anon_sym_BSLASHacf] = ACTIONS(5912), - [anon_sym_BSLASHAcf] = ACTIONS(5912), - [anon_sym_BSLASHacfp] = ACTIONS(5912), - [anon_sym_BSLASHAcfp] = ACTIONS(5912), - [anon_sym_BSLASHac] = ACTIONS(5912), - [anon_sym_BSLASHAc] = ACTIONS(5912), - [anon_sym_BSLASHacp] = ACTIONS(5912), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5912), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5912), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5912), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5912), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5912), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5912), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5912), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5914), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5912), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5914), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5912), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5912), - [anon_sym_BSLASHcolor] = ACTIONS(5912), - [anon_sym_BSLASHcolorbox] = ACTIONS(5912), - [anon_sym_BSLASHtextcolor] = ACTIONS(5912), - [anon_sym_BSLASHpagecolor] = ACTIONS(5912), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5912), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5912), - [anon_sym_BSLASHtext] = ACTIONS(5912), - [anon_sym_BSLASHintertext] = ACTIONS(5912), - [anon_sym_shortintertext] = ACTIONS(5912), - }, - [457] = { - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(457), - [aux_sym__section_repeat4] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(5904), - [sym_command_name] = ACTIONS(5902), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5902), - [anon_sym_LBRACK] = ACTIONS(5904), - [anon_sym_RBRACK] = ACTIONS(5904), - [anon_sym_COMMA] = ACTIONS(5904), - [anon_sym_EQ] = ACTIONS(5904), - [anon_sym_LPAREN] = ACTIONS(5904), - [anon_sym_RPAREN] = ACTIONS(5904), - [anon_sym_BSLASHpart] = ACTIONS(5902), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddpart] = ACTIONS(5902), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5904), - [anon_sym_BSLASHchapter] = ACTIONS(5902), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddchap] = ACTIONS(5902), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsection] = ACTIONS(5902), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddsec] = ACTIONS(5902), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsubsection] = ACTIONS(6085), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6088), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5902), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5904), - [anon_sym_BSLASHparagraph] = ACTIONS(5902), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5902), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5904), - [anon_sym_BSLASHitem] = ACTIONS(5902), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5904), - [anon_sym_LBRACE] = ACTIONS(5904), - [anon_sym_RBRACE] = ACTIONS(5904), - [sym_word] = ACTIONS(5902), - [sym_placeholder] = ACTIONS(5904), - [anon_sym_PLUS] = ACTIONS(5904), - [anon_sym_DASH] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(5904), - [anon_sym_SLASH] = ACTIONS(5904), - [anon_sym_LT] = ACTIONS(5902), - [anon_sym_GT] = ACTIONS(5902), - [anon_sym_BANG] = ACTIONS(5902), - [anon_sym_PIPE] = ACTIONS(5902), - [anon_sym_COLON] = ACTIONS(5902), - [anon_sym_SQUOTE] = ACTIONS(5902), - [anon_sym__] = ACTIONS(5904), - [anon_sym_CARET] = ACTIONS(5904), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5904), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5904), - [anon_sym_DOLLAR] = ACTIONS(5902), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5904), - [anon_sym_BSLASHbegin] = ACTIONS(5902), - [anon_sym_BSLASHtitle] = ACTIONS(5902), - [anon_sym_BSLASHauthor] = ACTIONS(5902), - [anon_sym_BSLASHusepackage] = ACTIONS(5902), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5902), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5902), - [anon_sym_BSLASHinclude] = ACTIONS(5902), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5902), - [anon_sym_BSLASHinput] = ACTIONS(5902), - [anon_sym_BSLASHsubfile] = ACTIONS(5902), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5902), - [anon_sym_BSLASHbibliography] = ACTIONS(5902), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5902), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5902), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5902), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5902), - [anon_sym_BSLASHimport] = ACTIONS(5902), - [anon_sym_BSLASHsubimport] = ACTIONS(5902), - [anon_sym_BSLASHinputfrom] = ACTIONS(5902), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5902), - [anon_sym_BSLASHincludefrom] = ACTIONS(5902), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5902), - [anon_sym_BSLASHcaption] = ACTIONS(5902), - [anon_sym_BSLASHcite] = ACTIONS(5902), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCite] = ACTIONS(5902), - [anon_sym_BSLASHnocite] = ACTIONS(5902), - [anon_sym_BSLASHcitet] = ACTIONS(5902), - [anon_sym_BSLASHcitep] = ACTIONS(5902), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteauthor] = ACTIONS(5902), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5902), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitetitle] = ACTIONS(5902), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteyear] = ACTIONS(5902), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitedate] = ACTIONS(5902), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteurl] = ACTIONS(5902), - [anon_sym_BSLASHfullcite] = ACTIONS(5902), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5902), - [anon_sym_BSLASHcitealt] = ACTIONS(5902), - [anon_sym_BSLASHcitealp] = ACTIONS(5902), - [anon_sym_BSLASHcitetext] = ACTIONS(5902), - [anon_sym_BSLASHparencite] = ACTIONS(5902), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHParencite] = ACTIONS(5902), - [anon_sym_BSLASHfootcite] = ACTIONS(5902), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5902), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5902), - [anon_sym_BSLASHtextcite] = ACTIONS(5902), - [anon_sym_BSLASHTextcite] = ACTIONS(5902), - [anon_sym_BSLASHsmartcite] = ACTIONS(5902), - [anon_sym_BSLASHSmartcite] = ACTIONS(5902), - [anon_sym_BSLASHsupercite] = ACTIONS(5902), - [anon_sym_BSLASHautocite] = ACTIONS(5902), - [anon_sym_BSLASHAutocite] = ACTIONS(5902), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHvolcite] = ACTIONS(5902), - [anon_sym_BSLASHVolcite] = ACTIONS(5902), - [anon_sym_BSLASHpvolcite] = ACTIONS(5902), - [anon_sym_BSLASHPvolcite] = ACTIONS(5902), - [anon_sym_BSLASHfvolcite] = ACTIONS(5902), - [anon_sym_BSLASHftvolcite] = ACTIONS(5902), - [anon_sym_BSLASHsvolcite] = ACTIONS(5902), - [anon_sym_BSLASHSvolcite] = ACTIONS(5902), - [anon_sym_BSLASHtvolcite] = ACTIONS(5902), - [anon_sym_BSLASHTvolcite] = ACTIONS(5902), - [anon_sym_BSLASHavolcite] = ACTIONS(5902), - [anon_sym_BSLASHAvolcite] = ACTIONS(5902), - [anon_sym_BSLASHnotecite] = ACTIONS(5902), - [anon_sym_BSLASHNotecite] = ACTIONS(5902), - [anon_sym_BSLASHpnotecite] = ACTIONS(5902), - [anon_sym_BSLASHPnotecite] = ACTIONS(5902), - [anon_sym_BSLASHfnotecite] = ACTIONS(5902), - [anon_sym_BSLASHlabel] = ACTIONS(5902), - [anon_sym_BSLASHref] = ACTIONS(5902), - [anon_sym_BSLASHeqref] = ACTIONS(5902), - [anon_sym_BSLASHvref] = ACTIONS(5902), - [anon_sym_BSLASHVref] = ACTIONS(5902), - [anon_sym_BSLASHautoref] = ACTIONS(5902), - [anon_sym_BSLASHpageref] = ACTIONS(5902), - [anon_sym_BSLASHcref] = ACTIONS(5902), - [anon_sym_BSLASHCref] = ACTIONS(5902), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5904), - [anon_sym_BSLASHnamecref] = ACTIONS(5902), - [anon_sym_BSLASHnameCref] = ACTIONS(5902), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5902), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5902), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5902), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5902), - [anon_sym_BSLASHlabelcref] = ACTIONS(5902), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5902), - [anon_sym_BSLASHcrefrange] = ACTIONS(5902), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCrefrange] = ACTIONS(5902), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5904), - [anon_sym_BSLASHnewlabel] = ACTIONS(5902), - [anon_sym_BSLASHnewcommand] = ACTIONS(5902), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5902), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5902), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5904), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHdef] = ACTIONS(5902), - [anon_sym_BSLASHlet] = ACTIONS(5902), - [anon_sym_BSLASHleft] = ACTIONS(5902), - [anon_sym_BSLASHbig] = ACTIONS(5902), - [anon_sym_BSLASHBig] = ACTIONS(5902), - [anon_sym_BSLASHbigg] = ACTIONS(5902), - [anon_sym_BSLASHBigg] = ACTIONS(5902), - [anon_sym_BSLASHbigl] = ACTIONS(5902), - [anon_sym_BSLASHBigl] = ACTIONS(5902), - [anon_sym_BSLASHbiggl] = ACTIONS(5902), - [anon_sym_BSLASHBiggl] = ACTIONS(5902), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5902), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5902), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5902), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5902), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5902), - [anon_sym_BSLASHgls] = ACTIONS(5902), - [anon_sym_BSLASHGls] = ACTIONS(5902), - [anon_sym_BSLASHGLS] = ACTIONS(5902), - [anon_sym_BSLASHglspl] = ACTIONS(5902), - [anon_sym_BSLASHGlspl] = ACTIONS(5902), - [anon_sym_BSLASHGLSpl] = ACTIONS(5902), - [anon_sym_BSLASHglsdisp] = ACTIONS(5902), - [anon_sym_BSLASHglslink] = ACTIONS(5902), - [anon_sym_BSLASHglstext] = ACTIONS(5902), - [anon_sym_BSLASHGlstext] = ACTIONS(5902), - [anon_sym_BSLASHGLStext] = ACTIONS(5902), - [anon_sym_BSLASHglsfirst] = ACTIONS(5902), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5902), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5902), - [anon_sym_BSLASHglsplural] = ACTIONS(5902), - [anon_sym_BSLASHGlsplural] = ACTIONS(5902), - [anon_sym_BSLASHGLSplural] = ACTIONS(5902), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHglsname] = ACTIONS(5902), - [anon_sym_BSLASHGlsname] = ACTIONS(5902), - [anon_sym_BSLASHGLSname] = ACTIONS(5902), - [anon_sym_BSLASHglssymbol] = ACTIONS(5902), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5902), - [anon_sym_BSLASHglsdesc] = ACTIONS(5902), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5902), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5902), - [anon_sym_BSLASHglsuseri] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5902), - [anon_sym_BSLASHglsuserii] = ACTIONS(5902), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5902), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5902), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5902), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5902), - [anon_sym_BSLASHglsuserv] = ACTIONS(5902), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5902), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5902), - [anon_sym_BSLASHglsuservi] = ACTIONS(5902), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5902), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5902), - [anon_sym_BSLASHnewacronym] = ACTIONS(5902), - [anon_sym_BSLASHacrshort] = ACTIONS(5902), - [anon_sym_BSLASHAcrshort] = ACTIONS(5902), - [anon_sym_BSLASHACRshort] = ACTIONS(5902), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5902), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5902), - [anon_sym_BSLASHacrlong] = ACTIONS(5902), - [anon_sym_BSLASHAcrlong] = ACTIONS(5902), - [anon_sym_BSLASHACRlong] = ACTIONS(5902), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5902), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5902), - [anon_sym_BSLASHacrfull] = ACTIONS(5902), - [anon_sym_BSLASHAcrfull] = ACTIONS(5902), - [anon_sym_BSLASHACRfull] = ACTIONS(5902), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5902), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5902), - [anon_sym_BSLASHacs] = ACTIONS(5902), - [anon_sym_BSLASHAcs] = ACTIONS(5902), - [anon_sym_BSLASHacsp] = ACTIONS(5902), - [anon_sym_BSLASHAcsp] = ACTIONS(5902), - [anon_sym_BSLASHacl] = ACTIONS(5902), - [anon_sym_BSLASHAcl] = ACTIONS(5902), - [anon_sym_BSLASHaclp] = ACTIONS(5902), - [anon_sym_BSLASHAclp] = ACTIONS(5902), - [anon_sym_BSLASHacf] = ACTIONS(5902), - [anon_sym_BSLASHAcf] = ACTIONS(5902), - [anon_sym_BSLASHacfp] = ACTIONS(5902), - [anon_sym_BSLASHAcfp] = ACTIONS(5902), - [anon_sym_BSLASHac] = ACTIONS(5902), - [anon_sym_BSLASHAc] = ACTIONS(5902), - [anon_sym_BSLASHacp] = ACTIONS(5902), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5902), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5902), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5902), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5902), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5902), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5902), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5902), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5904), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5902), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5904), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5902), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5902), - [anon_sym_BSLASHcolor] = ACTIONS(5902), - [anon_sym_BSLASHcolorbox] = ACTIONS(5902), - [anon_sym_BSLASHtextcolor] = ACTIONS(5902), - [anon_sym_BSLASHpagecolor] = ACTIONS(5902), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5902), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5902), - [anon_sym_BSLASHtext] = ACTIONS(5902), - [anon_sym_BSLASHintertext] = ACTIONS(5902), - [anon_sym_shortintertext] = ACTIONS(5902), - }, - [458] = { - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(458), - [aux_sym__section_repeat3] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(5894), - [sym_command_name] = ACTIONS(5892), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5894), - [anon_sym_RBRACK] = ACTIONS(5894), - [anon_sym_COMMA] = ACTIONS(5894), - [anon_sym_EQ] = ACTIONS(5894), - [anon_sym_LPAREN] = ACTIONS(5894), - [anon_sym_RPAREN] = ACTIONS(5894), - [anon_sym_BSLASHpart] = ACTIONS(5892), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5894), - [anon_sym_BSLASHaddpart] = ACTIONS(5892), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5894), - [anon_sym_BSLASHchapter] = ACTIONS(5892), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5894), - [anon_sym_BSLASHaddchap] = ACTIONS(5892), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsection] = ACTIONS(6091), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6094), - [anon_sym_BSLASHaddsec] = ACTIONS(6091), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6094), - [anon_sym_BSLASHsubsection] = ACTIONS(5892), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5892), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5894), - [anon_sym_BSLASHparagraph] = ACTIONS(5892), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5892), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5894), - [anon_sym_BSLASHitem] = ACTIONS(5892), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5894), - [anon_sym_LBRACE] = ACTIONS(5894), - [anon_sym_RBRACE] = ACTIONS(5894), - [sym_word] = ACTIONS(5892), - [sym_placeholder] = ACTIONS(5894), - [anon_sym_PLUS] = ACTIONS(5894), - [anon_sym_DASH] = ACTIONS(5894), - [anon_sym_STAR] = ACTIONS(5894), - [anon_sym_SLASH] = ACTIONS(5894), - [anon_sym_LT] = ACTIONS(5892), - [anon_sym_GT] = ACTIONS(5892), - [anon_sym_BANG] = ACTIONS(5892), - [anon_sym_PIPE] = ACTIONS(5892), - [anon_sym_COLON] = ACTIONS(5892), - [anon_sym_SQUOTE] = ACTIONS(5892), - [anon_sym__] = ACTIONS(5894), - [anon_sym_CARET] = ACTIONS(5894), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5894), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5894), - [anon_sym_DOLLAR] = ACTIONS(5892), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5894), - [anon_sym_BSLASHbegin] = ACTIONS(5892), - [anon_sym_BSLASHtitle] = ACTIONS(5892), - [anon_sym_BSLASHauthor] = ACTIONS(5892), - [anon_sym_BSLASHusepackage] = ACTIONS(5892), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5892), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5892), - [anon_sym_BSLASHinclude] = ACTIONS(5892), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5892), - [anon_sym_BSLASHinput] = ACTIONS(5892), - [anon_sym_BSLASHsubfile] = ACTIONS(5892), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5892), - [anon_sym_BSLASHbibliography] = ACTIONS(5892), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5892), - [anon_sym_BSLASHincludesvg] = ACTIONS(5892), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5892), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5892), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5892), - [anon_sym_BSLASHimport] = ACTIONS(5892), - [anon_sym_BSLASHsubimport] = ACTIONS(5892), - [anon_sym_BSLASHinputfrom] = ACTIONS(5892), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5892), - [anon_sym_BSLASHincludefrom] = ACTIONS(5892), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5892), - [anon_sym_BSLASHcaption] = ACTIONS(5892), - [anon_sym_BSLASHcite] = ACTIONS(5892), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCite] = ACTIONS(5892), - [anon_sym_BSLASHnocite] = ACTIONS(5892), - [anon_sym_BSLASHcitet] = ACTIONS(5892), - [anon_sym_BSLASHcitep] = ACTIONS(5892), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteauthor] = ACTIONS(5892), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5892), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitetitle] = ACTIONS(5892), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteyear] = ACTIONS(5892), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitedate] = ACTIONS(5892), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteurl] = ACTIONS(5892), - [anon_sym_BSLASHfullcite] = ACTIONS(5892), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5892), - [anon_sym_BSLASHcitealt] = ACTIONS(5892), - [anon_sym_BSLASHcitealp] = ACTIONS(5892), - [anon_sym_BSLASHcitetext] = ACTIONS(5892), - [anon_sym_BSLASHparencite] = ACTIONS(5892), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHParencite] = ACTIONS(5892), - [anon_sym_BSLASHfootcite] = ACTIONS(5892), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5892), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5892), - [anon_sym_BSLASHtextcite] = ACTIONS(5892), - [anon_sym_BSLASHTextcite] = ACTIONS(5892), - [anon_sym_BSLASHsmartcite] = ACTIONS(5892), - [anon_sym_BSLASHSmartcite] = ACTIONS(5892), - [anon_sym_BSLASHsupercite] = ACTIONS(5892), - [anon_sym_BSLASHautocite] = ACTIONS(5892), - [anon_sym_BSLASHAutocite] = ACTIONS(5892), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHvolcite] = ACTIONS(5892), - [anon_sym_BSLASHVolcite] = ACTIONS(5892), - [anon_sym_BSLASHpvolcite] = ACTIONS(5892), - [anon_sym_BSLASHPvolcite] = ACTIONS(5892), - [anon_sym_BSLASHfvolcite] = ACTIONS(5892), - [anon_sym_BSLASHftvolcite] = ACTIONS(5892), - [anon_sym_BSLASHsvolcite] = ACTIONS(5892), - [anon_sym_BSLASHSvolcite] = ACTIONS(5892), - [anon_sym_BSLASHtvolcite] = ACTIONS(5892), - [anon_sym_BSLASHTvolcite] = ACTIONS(5892), - [anon_sym_BSLASHavolcite] = ACTIONS(5892), - [anon_sym_BSLASHAvolcite] = ACTIONS(5892), - [anon_sym_BSLASHnotecite] = ACTIONS(5892), - [anon_sym_BSLASHNotecite] = ACTIONS(5892), - [anon_sym_BSLASHpnotecite] = ACTIONS(5892), - [anon_sym_BSLASHPnotecite] = ACTIONS(5892), - [anon_sym_BSLASHfnotecite] = ACTIONS(5892), - [anon_sym_BSLASHlabel] = ACTIONS(5892), - [anon_sym_BSLASHref] = ACTIONS(5892), - [anon_sym_BSLASHeqref] = ACTIONS(5892), - [anon_sym_BSLASHvref] = ACTIONS(5892), - [anon_sym_BSLASHVref] = ACTIONS(5892), - [anon_sym_BSLASHautoref] = ACTIONS(5892), - [anon_sym_BSLASHpageref] = ACTIONS(5892), - [anon_sym_BSLASHcref] = ACTIONS(5892), - [anon_sym_BSLASHCref] = ACTIONS(5892), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5894), - [anon_sym_BSLASHnamecref] = ACTIONS(5892), - [anon_sym_BSLASHnameCref] = ACTIONS(5892), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5892), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5892), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5892), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5892), - [anon_sym_BSLASHlabelcref] = ACTIONS(5892), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5892), - [anon_sym_BSLASHcrefrange] = ACTIONS(5892), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCrefrange] = ACTIONS(5892), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5894), - [anon_sym_BSLASHnewlabel] = ACTIONS(5892), - [anon_sym_BSLASHnewcommand] = ACTIONS(5892), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5892), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5892), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5894), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHdef] = ACTIONS(5892), - [anon_sym_BSLASHlet] = ACTIONS(5892), - [anon_sym_BSLASHleft] = ACTIONS(5892), - [anon_sym_BSLASHbig] = ACTIONS(5892), - [anon_sym_BSLASHBig] = ACTIONS(5892), - [anon_sym_BSLASHbigg] = ACTIONS(5892), - [anon_sym_BSLASHBigg] = ACTIONS(5892), - [anon_sym_BSLASHbigl] = ACTIONS(5892), - [anon_sym_BSLASHBigl] = ACTIONS(5892), - [anon_sym_BSLASHbiggl] = ACTIONS(5892), - [anon_sym_BSLASHBiggl] = ACTIONS(5892), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5892), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5892), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5892), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5892), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5892), - [anon_sym_BSLASHgls] = ACTIONS(5892), - [anon_sym_BSLASHGls] = ACTIONS(5892), - [anon_sym_BSLASHGLS] = ACTIONS(5892), - [anon_sym_BSLASHglspl] = ACTIONS(5892), - [anon_sym_BSLASHGlspl] = ACTIONS(5892), - [anon_sym_BSLASHGLSpl] = ACTIONS(5892), - [anon_sym_BSLASHglsdisp] = ACTIONS(5892), - [anon_sym_BSLASHglslink] = ACTIONS(5892), - [anon_sym_BSLASHglstext] = ACTIONS(5892), - [anon_sym_BSLASHGlstext] = ACTIONS(5892), - [anon_sym_BSLASHGLStext] = ACTIONS(5892), - [anon_sym_BSLASHglsfirst] = ACTIONS(5892), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5892), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5892), - [anon_sym_BSLASHglsplural] = ACTIONS(5892), - [anon_sym_BSLASHGlsplural] = ACTIONS(5892), - [anon_sym_BSLASHGLSplural] = ACTIONS(5892), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHglsname] = ACTIONS(5892), - [anon_sym_BSLASHGlsname] = ACTIONS(5892), - [anon_sym_BSLASHGLSname] = ACTIONS(5892), - [anon_sym_BSLASHglssymbol] = ACTIONS(5892), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5892), - [anon_sym_BSLASHglsdesc] = ACTIONS(5892), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5892), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5892), - [anon_sym_BSLASHglsuseri] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5892), - [anon_sym_BSLASHglsuserii] = ACTIONS(5892), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5892), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5892), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5892), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5892), - [anon_sym_BSLASHglsuserv] = ACTIONS(5892), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5892), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5892), - [anon_sym_BSLASHglsuservi] = ACTIONS(5892), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5892), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5892), - [anon_sym_BSLASHnewacronym] = ACTIONS(5892), - [anon_sym_BSLASHacrshort] = ACTIONS(5892), - [anon_sym_BSLASHAcrshort] = ACTIONS(5892), - [anon_sym_BSLASHACRshort] = ACTIONS(5892), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5892), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5892), - [anon_sym_BSLASHacrlong] = ACTIONS(5892), - [anon_sym_BSLASHAcrlong] = ACTIONS(5892), - [anon_sym_BSLASHACRlong] = ACTIONS(5892), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5892), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5892), - [anon_sym_BSLASHacrfull] = ACTIONS(5892), - [anon_sym_BSLASHAcrfull] = ACTIONS(5892), - [anon_sym_BSLASHACRfull] = ACTIONS(5892), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5892), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5892), - [anon_sym_BSLASHacs] = ACTIONS(5892), - [anon_sym_BSLASHAcs] = ACTIONS(5892), - [anon_sym_BSLASHacsp] = ACTIONS(5892), - [anon_sym_BSLASHAcsp] = ACTIONS(5892), - [anon_sym_BSLASHacl] = ACTIONS(5892), - [anon_sym_BSLASHAcl] = ACTIONS(5892), - [anon_sym_BSLASHaclp] = ACTIONS(5892), - [anon_sym_BSLASHAclp] = ACTIONS(5892), - [anon_sym_BSLASHacf] = ACTIONS(5892), - [anon_sym_BSLASHAcf] = ACTIONS(5892), - [anon_sym_BSLASHacfp] = ACTIONS(5892), - [anon_sym_BSLASHAcfp] = ACTIONS(5892), - [anon_sym_BSLASHac] = ACTIONS(5892), - [anon_sym_BSLASHAc] = ACTIONS(5892), - [anon_sym_BSLASHacp] = ACTIONS(5892), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5892), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5892), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5892), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5892), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5892), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5892), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5892), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5894), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5892), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5894), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5892), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5892), - [anon_sym_BSLASHcolor] = ACTIONS(5892), - [anon_sym_BSLASHcolorbox] = ACTIONS(5892), - [anon_sym_BSLASHtextcolor] = ACTIONS(5892), - [anon_sym_BSLASHpagecolor] = ACTIONS(5892), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5892), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5892), - [anon_sym_BSLASHtext] = ACTIONS(5892), - [anon_sym_BSLASHintertext] = ACTIONS(5892), - [anon_sym_shortintertext] = ACTIONS(5892), - }, - [459] = { - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(459), - [aux_sym__section_repeat2] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(5884), - [sym_command_name] = ACTIONS(5882), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5882), - [anon_sym_LBRACK] = ACTIONS(5884), - [anon_sym_RBRACK] = ACTIONS(5884), - [anon_sym_COMMA] = ACTIONS(5884), - [anon_sym_EQ] = ACTIONS(5884), - [anon_sym_LPAREN] = ACTIONS(5884), - [anon_sym_RPAREN] = ACTIONS(5884), - [anon_sym_BSLASHpart] = ACTIONS(5882), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5884), - [anon_sym_BSLASHaddpart] = ACTIONS(5882), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5884), - [anon_sym_BSLASHchapter] = ACTIONS(6097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6100), - [anon_sym_BSLASHaddchap] = ACTIONS(6097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6100), - [anon_sym_BSLASHsection] = ACTIONS(5882), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHaddsec] = ACTIONS(5882), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubsection] = ACTIONS(5882), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5882), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHparagraph] = ACTIONS(5882), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5882), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5884), - [anon_sym_BSLASHitem] = ACTIONS(5882), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5884), - [anon_sym_LBRACE] = ACTIONS(5884), - [anon_sym_RBRACE] = ACTIONS(5884), - [sym_word] = ACTIONS(5882), - [sym_placeholder] = ACTIONS(5884), - [anon_sym_PLUS] = ACTIONS(5884), - [anon_sym_DASH] = ACTIONS(5884), - [anon_sym_STAR] = ACTIONS(5884), - [anon_sym_SLASH] = ACTIONS(5884), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_BANG] = ACTIONS(5882), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_COLON] = ACTIONS(5882), - [anon_sym_SQUOTE] = ACTIONS(5882), - [anon_sym__] = ACTIONS(5884), - [anon_sym_CARET] = ACTIONS(5884), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5884), - [anon_sym_DOLLAR] = ACTIONS(5882), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5884), - [anon_sym_BSLASHbegin] = ACTIONS(5882), - [anon_sym_BSLASHtitle] = ACTIONS(5882), - [anon_sym_BSLASHauthor] = ACTIONS(5882), - [anon_sym_BSLASHusepackage] = ACTIONS(5882), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5882), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5882), - [anon_sym_BSLASHinclude] = ACTIONS(5882), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5882), - [anon_sym_BSLASHinput] = ACTIONS(5882), - [anon_sym_BSLASHsubfile] = ACTIONS(5882), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5882), - [anon_sym_BSLASHbibliography] = ACTIONS(5882), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5882), - [anon_sym_BSLASHincludesvg] = ACTIONS(5882), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5882), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5882), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5882), - [anon_sym_BSLASHimport] = ACTIONS(5882), - [anon_sym_BSLASHsubimport] = ACTIONS(5882), - [anon_sym_BSLASHinputfrom] = ACTIONS(5882), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5882), - [anon_sym_BSLASHincludefrom] = ACTIONS(5882), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5882), - [anon_sym_BSLASHcaption] = ACTIONS(5882), - [anon_sym_BSLASHcite] = ACTIONS(5882), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCite] = ACTIONS(5882), - [anon_sym_BSLASHnocite] = ACTIONS(5882), - [anon_sym_BSLASHcitet] = ACTIONS(5882), - [anon_sym_BSLASHcitep] = ACTIONS(5882), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteauthor] = ACTIONS(5882), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5882), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitetitle] = ACTIONS(5882), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteyear] = ACTIONS(5882), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitedate] = ACTIONS(5882), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteurl] = ACTIONS(5882), - [anon_sym_BSLASHfullcite] = ACTIONS(5882), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5882), - [anon_sym_BSLASHcitealt] = ACTIONS(5882), - [anon_sym_BSLASHcitealp] = ACTIONS(5882), - [anon_sym_BSLASHcitetext] = ACTIONS(5882), - [anon_sym_BSLASHparencite] = ACTIONS(5882), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHParencite] = ACTIONS(5882), - [anon_sym_BSLASHfootcite] = ACTIONS(5882), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5882), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5882), - [anon_sym_BSLASHtextcite] = ACTIONS(5882), - [anon_sym_BSLASHTextcite] = ACTIONS(5882), - [anon_sym_BSLASHsmartcite] = ACTIONS(5882), - [anon_sym_BSLASHSmartcite] = ACTIONS(5882), - [anon_sym_BSLASHsupercite] = ACTIONS(5882), - [anon_sym_BSLASHautocite] = ACTIONS(5882), - [anon_sym_BSLASHAutocite] = ACTIONS(5882), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHvolcite] = ACTIONS(5882), - [anon_sym_BSLASHVolcite] = ACTIONS(5882), - [anon_sym_BSLASHpvolcite] = ACTIONS(5882), - [anon_sym_BSLASHPvolcite] = ACTIONS(5882), - [anon_sym_BSLASHfvolcite] = ACTIONS(5882), - [anon_sym_BSLASHftvolcite] = ACTIONS(5882), - [anon_sym_BSLASHsvolcite] = ACTIONS(5882), - [anon_sym_BSLASHSvolcite] = ACTIONS(5882), - [anon_sym_BSLASHtvolcite] = ACTIONS(5882), - [anon_sym_BSLASHTvolcite] = ACTIONS(5882), - [anon_sym_BSLASHavolcite] = ACTIONS(5882), - [anon_sym_BSLASHAvolcite] = ACTIONS(5882), - [anon_sym_BSLASHnotecite] = ACTIONS(5882), - [anon_sym_BSLASHNotecite] = ACTIONS(5882), - [anon_sym_BSLASHpnotecite] = ACTIONS(5882), - [anon_sym_BSLASHPnotecite] = ACTIONS(5882), - [anon_sym_BSLASHfnotecite] = ACTIONS(5882), - [anon_sym_BSLASHlabel] = ACTIONS(5882), - [anon_sym_BSLASHref] = ACTIONS(5882), - [anon_sym_BSLASHeqref] = ACTIONS(5882), - [anon_sym_BSLASHvref] = ACTIONS(5882), - [anon_sym_BSLASHVref] = ACTIONS(5882), - [anon_sym_BSLASHautoref] = ACTIONS(5882), - [anon_sym_BSLASHpageref] = ACTIONS(5882), - [anon_sym_BSLASHcref] = ACTIONS(5882), - [anon_sym_BSLASHCref] = ACTIONS(5882), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5884), - [anon_sym_BSLASHnamecref] = ACTIONS(5882), - [anon_sym_BSLASHnameCref] = ACTIONS(5882), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5882), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5882), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5882), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5882), - [anon_sym_BSLASHlabelcref] = ACTIONS(5882), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5882), - [anon_sym_BSLASHcrefrange] = ACTIONS(5882), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCrefrange] = ACTIONS(5882), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5884), - [anon_sym_BSLASHnewlabel] = ACTIONS(5882), - [anon_sym_BSLASHnewcommand] = ACTIONS(5882), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5882), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5882), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5884), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHdef] = ACTIONS(5882), - [anon_sym_BSLASHlet] = ACTIONS(5882), - [anon_sym_BSLASHleft] = ACTIONS(5882), - [anon_sym_BSLASHbig] = ACTIONS(5882), - [anon_sym_BSLASHBig] = ACTIONS(5882), - [anon_sym_BSLASHbigg] = ACTIONS(5882), - [anon_sym_BSLASHBigg] = ACTIONS(5882), - [anon_sym_BSLASHbigl] = ACTIONS(5882), - [anon_sym_BSLASHBigl] = ACTIONS(5882), - [anon_sym_BSLASHbiggl] = ACTIONS(5882), - [anon_sym_BSLASHBiggl] = ACTIONS(5882), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5882), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5882), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5882), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5882), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5882), - [anon_sym_BSLASHgls] = ACTIONS(5882), - [anon_sym_BSLASHGls] = ACTIONS(5882), - [anon_sym_BSLASHGLS] = ACTIONS(5882), - [anon_sym_BSLASHglspl] = ACTIONS(5882), - [anon_sym_BSLASHGlspl] = ACTIONS(5882), - [anon_sym_BSLASHGLSpl] = ACTIONS(5882), - [anon_sym_BSLASHglsdisp] = ACTIONS(5882), - [anon_sym_BSLASHglslink] = ACTIONS(5882), - [anon_sym_BSLASHglstext] = ACTIONS(5882), - [anon_sym_BSLASHGlstext] = ACTIONS(5882), - [anon_sym_BSLASHGLStext] = ACTIONS(5882), - [anon_sym_BSLASHglsfirst] = ACTIONS(5882), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5882), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5882), - [anon_sym_BSLASHglsplural] = ACTIONS(5882), - [anon_sym_BSLASHGlsplural] = ACTIONS(5882), - [anon_sym_BSLASHGLSplural] = ACTIONS(5882), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHglsname] = ACTIONS(5882), - [anon_sym_BSLASHGlsname] = ACTIONS(5882), - [anon_sym_BSLASHGLSname] = ACTIONS(5882), - [anon_sym_BSLASHglssymbol] = ACTIONS(5882), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5882), - [anon_sym_BSLASHglsdesc] = ACTIONS(5882), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5882), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5882), - [anon_sym_BSLASHglsuseri] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5882), - [anon_sym_BSLASHglsuserii] = ACTIONS(5882), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5882), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5882), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5882), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5882), - [anon_sym_BSLASHglsuserv] = ACTIONS(5882), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5882), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5882), - [anon_sym_BSLASHglsuservi] = ACTIONS(5882), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5882), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5882), - [anon_sym_BSLASHnewacronym] = ACTIONS(5882), - [anon_sym_BSLASHacrshort] = ACTIONS(5882), - [anon_sym_BSLASHAcrshort] = ACTIONS(5882), - [anon_sym_BSLASHACRshort] = ACTIONS(5882), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5882), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5882), - [anon_sym_BSLASHacrlong] = ACTIONS(5882), - [anon_sym_BSLASHAcrlong] = ACTIONS(5882), - [anon_sym_BSLASHACRlong] = ACTIONS(5882), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5882), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5882), - [anon_sym_BSLASHacrfull] = ACTIONS(5882), - [anon_sym_BSLASHAcrfull] = ACTIONS(5882), - [anon_sym_BSLASHACRfull] = ACTIONS(5882), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5882), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5882), - [anon_sym_BSLASHacs] = ACTIONS(5882), - [anon_sym_BSLASHAcs] = ACTIONS(5882), - [anon_sym_BSLASHacsp] = ACTIONS(5882), - [anon_sym_BSLASHAcsp] = ACTIONS(5882), - [anon_sym_BSLASHacl] = ACTIONS(5882), - [anon_sym_BSLASHAcl] = ACTIONS(5882), - [anon_sym_BSLASHaclp] = ACTIONS(5882), - [anon_sym_BSLASHAclp] = ACTIONS(5882), - [anon_sym_BSLASHacf] = ACTIONS(5882), - [anon_sym_BSLASHAcf] = ACTIONS(5882), - [anon_sym_BSLASHacfp] = ACTIONS(5882), - [anon_sym_BSLASHAcfp] = ACTIONS(5882), - [anon_sym_BSLASHac] = ACTIONS(5882), - [anon_sym_BSLASHAc] = ACTIONS(5882), - [anon_sym_BSLASHacp] = ACTIONS(5882), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5882), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5882), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5882), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5882), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5882), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5882), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5882), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5884), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5882), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5884), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5882), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5882), - [anon_sym_BSLASHcolor] = ACTIONS(5882), - [anon_sym_BSLASHcolorbox] = ACTIONS(5882), - [anon_sym_BSLASHtextcolor] = ACTIONS(5882), - [anon_sym_BSLASHpagecolor] = ACTIONS(5882), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5882), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5882), - [anon_sym_BSLASHtext] = ACTIONS(5882), - [anon_sym_BSLASHintertext] = ACTIONS(5882), - [anon_sym_shortintertext] = ACTIONS(5882), - }, - [460] = { - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(460), - [aux_sym__section_repeat1] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(5874), - [sym_command_name] = ACTIONS(5872), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5872), - [anon_sym_LBRACK] = ACTIONS(5874), - [anon_sym_RBRACK] = ACTIONS(5874), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [anon_sym_LPAREN] = ACTIONS(5874), - [anon_sym_RPAREN] = ACTIONS(5874), - [anon_sym_BSLASHpart] = ACTIONS(6103), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6106), - [anon_sym_BSLASHaddpart] = ACTIONS(6103), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6106), - [anon_sym_BSLASHchapter] = ACTIONS(5872), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5874), - [anon_sym_BSLASHaddchap] = ACTIONS(5872), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsection] = ACTIONS(5872), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHaddsec] = ACTIONS(5872), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubsection] = ACTIONS(5872), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5872), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHparagraph] = ACTIONS(5872), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5872), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5874), - [anon_sym_BSLASHitem] = ACTIONS(5872), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5874), - [anon_sym_LBRACE] = ACTIONS(5874), - [anon_sym_RBRACE] = ACTIONS(5874), - [sym_word] = ACTIONS(5872), - [sym_placeholder] = ACTIONS(5874), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_STAR] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_LT] = ACTIONS(5872), - [anon_sym_GT] = ACTIONS(5872), - [anon_sym_BANG] = ACTIONS(5872), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_COLON] = ACTIONS(5872), - [anon_sym_SQUOTE] = ACTIONS(5872), - [anon_sym__] = ACTIONS(5874), - [anon_sym_CARET] = ACTIONS(5874), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5874), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5874), - [anon_sym_DOLLAR] = ACTIONS(5872), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5874), - [anon_sym_BSLASHbegin] = ACTIONS(5872), - [anon_sym_BSLASHtitle] = ACTIONS(5872), - [anon_sym_BSLASHauthor] = ACTIONS(5872), - [anon_sym_BSLASHusepackage] = ACTIONS(5872), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5872), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5872), - [anon_sym_BSLASHinclude] = ACTIONS(5872), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5872), - [anon_sym_BSLASHinput] = ACTIONS(5872), - [anon_sym_BSLASHsubfile] = ACTIONS(5872), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5872), - [anon_sym_BSLASHbibliography] = ACTIONS(5872), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5872), - [anon_sym_BSLASHincludesvg] = ACTIONS(5872), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5872), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5872), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5872), - [anon_sym_BSLASHimport] = ACTIONS(5872), - [anon_sym_BSLASHsubimport] = ACTIONS(5872), - [anon_sym_BSLASHinputfrom] = ACTIONS(5872), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5872), - [anon_sym_BSLASHincludefrom] = ACTIONS(5872), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5872), - [anon_sym_BSLASHcaption] = ACTIONS(5872), - [anon_sym_BSLASHcite] = ACTIONS(5872), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCite] = ACTIONS(5872), - [anon_sym_BSLASHnocite] = ACTIONS(5872), - [anon_sym_BSLASHcitet] = ACTIONS(5872), - [anon_sym_BSLASHcitep] = ACTIONS(5872), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteauthor] = ACTIONS(5872), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5872), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitetitle] = ACTIONS(5872), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteyear] = ACTIONS(5872), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitedate] = ACTIONS(5872), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteurl] = ACTIONS(5872), - [anon_sym_BSLASHfullcite] = ACTIONS(5872), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5872), - [anon_sym_BSLASHcitealt] = ACTIONS(5872), - [anon_sym_BSLASHcitealp] = ACTIONS(5872), - [anon_sym_BSLASHcitetext] = ACTIONS(5872), - [anon_sym_BSLASHparencite] = ACTIONS(5872), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHParencite] = ACTIONS(5872), - [anon_sym_BSLASHfootcite] = ACTIONS(5872), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5872), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5872), - [anon_sym_BSLASHtextcite] = ACTIONS(5872), - [anon_sym_BSLASHTextcite] = ACTIONS(5872), - [anon_sym_BSLASHsmartcite] = ACTIONS(5872), - [anon_sym_BSLASHSmartcite] = ACTIONS(5872), - [anon_sym_BSLASHsupercite] = ACTIONS(5872), - [anon_sym_BSLASHautocite] = ACTIONS(5872), - [anon_sym_BSLASHAutocite] = ACTIONS(5872), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHvolcite] = ACTIONS(5872), - [anon_sym_BSLASHVolcite] = ACTIONS(5872), - [anon_sym_BSLASHpvolcite] = ACTIONS(5872), - [anon_sym_BSLASHPvolcite] = ACTIONS(5872), - [anon_sym_BSLASHfvolcite] = ACTIONS(5872), - [anon_sym_BSLASHftvolcite] = ACTIONS(5872), - [anon_sym_BSLASHsvolcite] = ACTIONS(5872), - [anon_sym_BSLASHSvolcite] = ACTIONS(5872), - [anon_sym_BSLASHtvolcite] = ACTIONS(5872), - [anon_sym_BSLASHTvolcite] = ACTIONS(5872), - [anon_sym_BSLASHavolcite] = ACTIONS(5872), - [anon_sym_BSLASHAvolcite] = ACTIONS(5872), - [anon_sym_BSLASHnotecite] = ACTIONS(5872), - [anon_sym_BSLASHNotecite] = ACTIONS(5872), - [anon_sym_BSLASHpnotecite] = ACTIONS(5872), - [anon_sym_BSLASHPnotecite] = ACTIONS(5872), - [anon_sym_BSLASHfnotecite] = ACTIONS(5872), - [anon_sym_BSLASHlabel] = ACTIONS(5872), - [anon_sym_BSLASHref] = ACTIONS(5872), - [anon_sym_BSLASHeqref] = ACTIONS(5872), - [anon_sym_BSLASHvref] = ACTIONS(5872), - [anon_sym_BSLASHVref] = ACTIONS(5872), - [anon_sym_BSLASHautoref] = ACTIONS(5872), - [anon_sym_BSLASHpageref] = ACTIONS(5872), - [anon_sym_BSLASHcref] = ACTIONS(5872), - [anon_sym_BSLASHCref] = ACTIONS(5872), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5874), - [anon_sym_BSLASHnamecref] = ACTIONS(5872), - [anon_sym_BSLASHnameCref] = ACTIONS(5872), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5872), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5872), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5872), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5872), - [anon_sym_BSLASHlabelcref] = ACTIONS(5872), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5872), - [anon_sym_BSLASHcrefrange] = ACTIONS(5872), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCrefrange] = ACTIONS(5872), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5874), - [anon_sym_BSLASHnewlabel] = ACTIONS(5872), - [anon_sym_BSLASHnewcommand] = ACTIONS(5872), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5872), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5872), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5874), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHdef] = ACTIONS(5872), - [anon_sym_BSLASHlet] = ACTIONS(5872), - [anon_sym_BSLASHleft] = ACTIONS(5872), - [anon_sym_BSLASHbig] = ACTIONS(5872), - [anon_sym_BSLASHBig] = ACTIONS(5872), - [anon_sym_BSLASHbigg] = ACTIONS(5872), - [anon_sym_BSLASHBigg] = ACTIONS(5872), - [anon_sym_BSLASHbigl] = ACTIONS(5872), - [anon_sym_BSLASHBigl] = ACTIONS(5872), - [anon_sym_BSLASHbiggl] = ACTIONS(5872), - [anon_sym_BSLASHBiggl] = ACTIONS(5872), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5872), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5872), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5872), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5872), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5872), - [anon_sym_BSLASHgls] = ACTIONS(5872), - [anon_sym_BSLASHGls] = ACTIONS(5872), - [anon_sym_BSLASHGLS] = ACTIONS(5872), - [anon_sym_BSLASHglspl] = ACTIONS(5872), - [anon_sym_BSLASHGlspl] = ACTIONS(5872), - [anon_sym_BSLASHGLSpl] = ACTIONS(5872), - [anon_sym_BSLASHglsdisp] = ACTIONS(5872), - [anon_sym_BSLASHglslink] = ACTIONS(5872), - [anon_sym_BSLASHglstext] = ACTIONS(5872), - [anon_sym_BSLASHGlstext] = ACTIONS(5872), - [anon_sym_BSLASHGLStext] = ACTIONS(5872), - [anon_sym_BSLASHglsfirst] = ACTIONS(5872), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5872), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5872), - [anon_sym_BSLASHglsplural] = ACTIONS(5872), - [anon_sym_BSLASHGlsplural] = ACTIONS(5872), - [anon_sym_BSLASHGLSplural] = ACTIONS(5872), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHglsname] = ACTIONS(5872), - [anon_sym_BSLASHGlsname] = ACTIONS(5872), - [anon_sym_BSLASHGLSname] = ACTIONS(5872), - [anon_sym_BSLASHglssymbol] = ACTIONS(5872), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5872), - [anon_sym_BSLASHglsdesc] = ACTIONS(5872), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5872), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5872), - [anon_sym_BSLASHglsuseri] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5872), - [anon_sym_BSLASHglsuserii] = ACTIONS(5872), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5872), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5872), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5872), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5872), - [anon_sym_BSLASHglsuserv] = ACTIONS(5872), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5872), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5872), - [anon_sym_BSLASHglsuservi] = ACTIONS(5872), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5872), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5872), - [anon_sym_BSLASHnewacronym] = ACTIONS(5872), - [anon_sym_BSLASHacrshort] = ACTIONS(5872), - [anon_sym_BSLASHAcrshort] = ACTIONS(5872), - [anon_sym_BSLASHACRshort] = ACTIONS(5872), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5872), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5872), - [anon_sym_BSLASHacrlong] = ACTIONS(5872), - [anon_sym_BSLASHAcrlong] = ACTIONS(5872), - [anon_sym_BSLASHACRlong] = ACTIONS(5872), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5872), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5872), - [anon_sym_BSLASHacrfull] = ACTIONS(5872), - [anon_sym_BSLASHAcrfull] = ACTIONS(5872), - [anon_sym_BSLASHACRfull] = ACTIONS(5872), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5872), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5872), - [anon_sym_BSLASHacs] = ACTIONS(5872), - [anon_sym_BSLASHAcs] = ACTIONS(5872), - [anon_sym_BSLASHacsp] = ACTIONS(5872), - [anon_sym_BSLASHAcsp] = ACTIONS(5872), - [anon_sym_BSLASHacl] = ACTIONS(5872), - [anon_sym_BSLASHAcl] = ACTIONS(5872), - [anon_sym_BSLASHaclp] = ACTIONS(5872), - [anon_sym_BSLASHAclp] = ACTIONS(5872), - [anon_sym_BSLASHacf] = ACTIONS(5872), - [anon_sym_BSLASHAcf] = ACTIONS(5872), - [anon_sym_BSLASHacfp] = ACTIONS(5872), - [anon_sym_BSLASHAcfp] = ACTIONS(5872), - [anon_sym_BSLASHac] = ACTIONS(5872), - [anon_sym_BSLASHAc] = ACTIONS(5872), - [anon_sym_BSLASHacp] = ACTIONS(5872), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5872), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5872), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5872), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5872), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5872), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5872), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5872), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5874), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5872), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5874), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5872), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5872), - [anon_sym_BSLASHcolor] = ACTIONS(5872), - [anon_sym_BSLASHcolorbox] = ACTIONS(5872), - [anon_sym_BSLASHtextcolor] = ACTIONS(5872), - [anon_sym_BSLASHpagecolor] = ACTIONS(5872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5872), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5872), - [anon_sym_BSLASHtext] = ACTIONS(5872), - [anon_sym_BSLASHintertext] = ACTIONS(5872), - [anon_sym_shortintertext] = ACTIONS(5872), - }, - [461] = { - [sym_command_name] = ACTIONS(6109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6109), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_RBRACK] = ACTIONS(6111), - [anon_sym_COMMA] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_LPAREN] = ACTIONS(6111), - [anon_sym_RPAREN] = ACTIONS(6111), - [anon_sym_BSLASHpart] = ACTIONS(6109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddpart] = ACTIONS(6109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6111), - [anon_sym_BSLASHchapter] = ACTIONS(6109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddchap] = ACTIONS(6109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsection] = ACTIONS(6109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddsec] = ACTIONS(6109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubsection] = ACTIONS(6109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHparagraph] = ACTIONS(6109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6111), - [anon_sym_BSLASHitem] = ACTIONS(6109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6111), - [anon_sym_LBRACE] = ACTIONS(6111), - [sym_word] = ACTIONS(6109), - [sym_placeholder] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6109), - [anon_sym_GT] = ACTIONS(6109), - [anon_sym_BANG] = ACTIONS(6109), - [anon_sym_PIPE] = ACTIONS(6109), - [anon_sym_COLON] = ACTIONS(6109), - [anon_sym_SQUOTE] = ACTIONS(6109), - [anon_sym__] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), - [anon_sym_DOLLAR] = ACTIONS(6109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), - [anon_sym_BSLASHbegin] = ACTIONS(6109), - [anon_sym_BSLASHtitle] = ACTIONS(6109), - [anon_sym_BSLASHauthor] = ACTIONS(6109), - [anon_sym_BSLASHusepackage] = ACTIONS(6109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), - [anon_sym_BSLASHinclude] = ACTIONS(6109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), - [anon_sym_BSLASHinput] = ACTIONS(6109), - [anon_sym_BSLASHsubfile] = ACTIONS(6109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), - [anon_sym_BSLASHbibliography] = ACTIONS(6109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), - [anon_sym_BSLASHincludesvg] = ACTIONS(6109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), - [anon_sym_BSLASHimport] = ACTIONS(6109), - [anon_sym_BSLASHsubimport] = ACTIONS(6109), - [anon_sym_BSLASHinputfrom] = ACTIONS(6109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), - [anon_sym_BSLASHincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHcaption] = ACTIONS(6109), - [anon_sym_BSLASHcite] = ACTIONS(6109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCite] = ACTIONS(6109), - [anon_sym_BSLASHnocite] = ACTIONS(6109), - [anon_sym_BSLASHcitet] = ACTIONS(6109), - [anon_sym_BSLASHcitep] = ACTIONS(6109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteauthor] = ACTIONS(6109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitetitle] = ACTIONS(6109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteyear] = ACTIONS(6109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitedate] = ACTIONS(6109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteurl] = ACTIONS(6109), - [anon_sym_BSLASHfullcite] = ACTIONS(6109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), - [anon_sym_BSLASHcitealt] = ACTIONS(6109), - [anon_sym_BSLASHcitealp] = ACTIONS(6109), - [anon_sym_BSLASHcitetext] = ACTIONS(6109), - [anon_sym_BSLASHparencite] = ACTIONS(6109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHParencite] = ACTIONS(6109), - [anon_sym_BSLASHfootcite] = ACTIONS(6109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), - [anon_sym_BSLASHtextcite] = ACTIONS(6109), - [anon_sym_BSLASHTextcite] = ACTIONS(6109), - [anon_sym_BSLASHsmartcite] = ACTIONS(6109), - [anon_sym_BSLASHSmartcite] = ACTIONS(6109), - [anon_sym_BSLASHsupercite] = ACTIONS(6109), - [anon_sym_BSLASHautocite] = ACTIONS(6109), - [anon_sym_BSLASHAutocite] = ACTIONS(6109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHvolcite] = ACTIONS(6109), - [anon_sym_BSLASHVolcite] = ACTIONS(6109), - [anon_sym_BSLASHpvolcite] = ACTIONS(6109), - [anon_sym_BSLASHPvolcite] = ACTIONS(6109), - [anon_sym_BSLASHfvolcite] = ACTIONS(6109), - [anon_sym_BSLASHftvolcite] = ACTIONS(6109), - [anon_sym_BSLASHsvolcite] = ACTIONS(6109), - [anon_sym_BSLASHSvolcite] = ACTIONS(6109), - [anon_sym_BSLASHtvolcite] = ACTIONS(6109), - [anon_sym_BSLASHTvolcite] = ACTIONS(6109), - [anon_sym_BSLASHavolcite] = ACTIONS(6109), - [anon_sym_BSLASHAvolcite] = ACTIONS(6109), - [anon_sym_BSLASHnotecite] = ACTIONS(6109), - [anon_sym_BSLASHNotecite] = ACTIONS(6109), - [anon_sym_BSLASHpnotecite] = ACTIONS(6109), - [anon_sym_BSLASHPnotecite] = ACTIONS(6109), - [anon_sym_BSLASHfnotecite] = ACTIONS(6109), - [anon_sym_BSLASHlabel] = ACTIONS(6109), - [anon_sym_BSLASHref] = ACTIONS(6109), - [anon_sym_BSLASHeqref] = ACTIONS(6109), - [anon_sym_BSLASHvref] = ACTIONS(6109), - [anon_sym_BSLASHVref] = ACTIONS(6109), - [anon_sym_BSLASHautoref] = ACTIONS(6109), - [anon_sym_BSLASHpageref] = ACTIONS(6109), - [anon_sym_BSLASHcref] = ACTIONS(6109), - [anon_sym_BSLASHCref] = ACTIONS(6109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnameCref] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHlabelcref] = ACTIONS(6109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCrefrange] = ACTIONS(6109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnewlabel] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHdef] = ACTIONS(6109), - [anon_sym_BSLASHlet] = ACTIONS(6109), - [anon_sym_BSLASHleft] = ACTIONS(6109), - [anon_sym_BSLASHbig] = ACTIONS(6109), - [anon_sym_BSLASHBig] = ACTIONS(6109), - [anon_sym_BSLASHbigg] = ACTIONS(6109), - [anon_sym_BSLASHBigg] = ACTIONS(6109), - [anon_sym_BSLASHbigl] = ACTIONS(6109), - [anon_sym_BSLASHBigl] = ACTIONS(6109), - [anon_sym_BSLASHbiggl] = ACTIONS(6109), - [anon_sym_BSLASHBiggl] = ACTIONS(6109), - [anon_sym_BSLASHright] = ACTIONS(6109), - [anon_sym_BSLASHbigr] = ACTIONS(6109), - [anon_sym_BSLASHBigr] = ACTIONS(6109), - [anon_sym_BSLASHbiggr] = ACTIONS(6109), - [anon_sym_BSLASHBiggr] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), - [anon_sym_BSLASHgls] = ACTIONS(6109), - [anon_sym_BSLASHGls] = ACTIONS(6109), - [anon_sym_BSLASHGLS] = ACTIONS(6109), - [anon_sym_BSLASHglspl] = ACTIONS(6109), - [anon_sym_BSLASHGlspl] = ACTIONS(6109), - [anon_sym_BSLASHGLSpl] = ACTIONS(6109), - [anon_sym_BSLASHglsdisp] = ACTIONS(6109), - [anon_sym_BSLASHglslink] = ACTIONS(6109), - [anon_sym_BSLASHglstext] = ACTIONS(6109), - [anon_sym_BSLASHGlstext] = ACTIONS(6109), - [anon_sym_BSLASHGLStext] = ACTIONS(6109), - [anon_sym_BSLASHglsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), - [anon_sym_BSLASHglsplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSplural] = ACTIONS(6109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHglsname] = ACTIONS(6109), - [anon_sym_BSLASHGlsname] = ACTIONS(6109), - [anon_sym_BSLASHGLSname] = ACTIONS(6109), - [anon_sym_BSLASHglssymbol] = ACTIONS(6109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), - [anon_sym_BSLASHglsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), - [anon_sym_BSLASHglsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), - [anon_sym_BSLASHglsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), - [anon_sym_BSLASHglsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), - [anon_sym_BSLASHglsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), - [anon_sym_BSLASHnewacronym] = ACTIONS(6109), - [anon_sym_BSLASHacrshort] = ACTIONS(6109), - [anon_sym_BSLASHAcrshort] = ACTIONS(6109), - [anon_sym_BSLASHACRshort] = ACTIONS(6109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), - [anon_sym_BSLASHacrlong] = ACTIONS(6109), - [anon_sym_BSLASHAcrlong] = ACTIONS(6109), - [anon_sym_BSLASHACRlong] = ACTIONS(6109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), - [anon_sym_BSLASHacrfull] = ACTIONS(6109), - [anon_sym_BSLASHAcrfull] = ACTIONS(6109), - [anon_sym_BSLASHACRfull] = ACTIONS(6109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), - [anon_sym_BSLASHacs] = ACTIONS(6109), - [anon_sym_BSLASHAcs] = ACTIONS(6109), - [anon_sym_BSLASHacsp] = ACTIONS(6109), - [anon_sym_BSLASHAcsp] = ACTIONS(6109), - [anon_sym_BSLASHacl] = ACTIONS(6109), - [anon_sym_BSLASHAcl] = ACTIONS(6109), - [anon_sym_BSLASHaclp] = ACTIONS(6109), - [anon_sym_BSLASHAclp] = ACTIONS(6109), - [anon_sym_BSLASHacf] = ACTIONS(6109), - [anon_sym_BSLASHAcf] = ACTIONS(6109), - [anon_sym_BSLASHacfp] = ACTIONS(6109), - [anon_sym_BSLASHAcfp] = ACTIONS(6109), - [anon_sym_BSLASHac] = ACTIONS(6109), - [anon_sym_BSLASHAc] = ACTIONS(6109), - [anon_sym_BSLASHacp] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), - [anon_sym_BSLASHcolor] = ACTIONS(6109), - [anon_sym_BSLASHcolorbox] = ACTIONS(6109), - [anon_sym_BSLASHtextcolor] = ACTIONS(6109), - [anon_sym_BSLASHpagecolor] = ACTIONS(6109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), - [anon_sym_BSLASHtext] = ACTIONS(6109), - [anon_sym_BSLASHintertext] = ACTIONS(6109), - [anon_sym_shortintertext] = ACTIONS(6109), - }, - [462] = { - [sym_command_name] = ACTIONS(6113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6115), - [anon_sym_RBRACK] = ACTIONS(6115), - [anon_sym_COMMA] = ACTIONS(6115), - [anon_sym_EQ] = ACTIONS(6115), - [anon_sym_LPAREN] = ACTIONS(6115), - [anon_sym_RPAREN] = ACTIONS(6115), - [anon_sym_BSLASHpart] = ACTIONS(6113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddpart] = ACTIONS(6113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6115), - [anon_sym_BSLASHchapter] = ACTIONS(6113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddchap] = ACTIONS(6113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsection] = ACTIONS(6113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddsec] = ACTIONS(6113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubsection] = ACTIONS(6113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHparagraph] = ACTIONS(6113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6115), - [anon_sym_BSLASHitem] = ACTIONS(6113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6115), - [anon_sym_LBRACE] = ACTIONS(6115), - [sym_word] = ACTIONS(6113), - [sym_placeholder] = ACTIONS(6115), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_LT] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6113), - [anon_sym_BANG] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_SQUOTE] = ACTIONS(6113), - [anon_sym__] = ACTIONS(6115), - [anon_sym_CARET] = ACTIONS(6115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6115), - [anon_sym_DOLLAR] = ACTIONS(6113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6115), - [anon_sym_BSLASHbegin] = ACTIONS(6113), - [anon_sym_BSLASHtitle] = ACTIONS(6113), - [anon_sym_BSLASHauthor] = ACTIONS(6113), - [anon_sym_BSLASHusepackage] = ACTIONS(6113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), - [anon_sym_BSLASHinclude] = ACTIONS(6113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), - [anon_sym_BSLASHinput] = ACTIONS(6113), - [anon_sym_BSLASHsubfile] = ACTIONS(6113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), - [anon_sym_BSLASHbibliography] = ACTIONS(6113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), - [anon_sym_BSLASHincludesvg] = ACTIONS(6113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), - [anon_sym_BSLASHimport] = ACTIONS(6113), - [anon_sym_BSLASHsubimport] = ACTIONS(6113), - [anon_sym_BSLASHinputfrom] = ACTIONS(6113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), - [anon_sym_BSLASHincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHcaption] = ACTIONS(6113), - [anon_sym_BSLASHcite] = ACTIONS(6113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCite] = ACTIONS(6113), - [anon_sym_BSLASHnocite] = ACTIONS(6113), - [anon_sym_BSLASHcitet] = ACTIONS(6113), - [anon_sym_BSLASHcitep] = ACTIONS(6113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteauthor] = ACTIONS(6113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitetitle] = ACTIONS(6113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteyear] = ACTIONS(6113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitedate] = ACTIONS(6113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteurl] = ACTIONS(6113), - [anon_sym_BSLASHfullcite] = ACTIONS(6113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), - [anon_sym_BSLASHcitealt] = ACTIONS(6113), - [anon_sym_BSLASHcitealp] = ACTIONS(6113), - [anon_sym_BSLASHcitetext] = ACTIONS(6113), - [anon_sym_BSLASHparencite] = ACTIONS(6113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHParencite] = ACTIONS(6113), - [anon_sym_BSLASHfootcite] = ACTIONS(6113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), - [anon_sym_BSLASHtextcite] = ACTIONS(6113), - [anon_sym_BSLASHTextcite] = ACTIONS(6113), - [anon_sym_BSLASHsmartcite] = ACTIONS(6113), - [anon_sym_BSLASHSmartcite] = ACTIONS(6113), - [anon_sym_BSLASHsupercite] = ACTIONS(6113), - [anon_sym_BSLASHautocite] = ACTIONS(6113), - [anon_sym_BSLASHAutocite] = ACTIONS(6113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHvolcite] = ACTIONS(6113), - [anon_sym_BSLASHVolcite] = ACTIONS(6113), - [anon_sym_BSLASHpvolcite] = ACTIONS(6113), - [anon_sym_BSLASHPvolcite] = ACTIONS(6113), - [anon_sym_BSLASHfvolcite] = ACTIONS(6113), - [anon_sym_BSLASHftvolcite] = ACTIONS(6113), - [anon_sym_BSLASHsvolcite] = ACTIONS(6113), - [anon_sym_BSLASHSvolcite] = ACTIONS(6113), - [anon_sym_BSLASHtvolcite] = ACTIONS(6113), - [anon_sym_BSLASHTvolcite] = ACTIONS(6113), - [anon_sym_BSLASHavolcite] = ACTIONS(6113), - [anon_sym_BSLASHAvolcite] = ACTIONS(6113), - [anon_sym_BSLASHnotecite] = ACTIONS(6113), - [anon_sym_BSLASHNotecite] = ACTIONS(6113), - [anon_sym_BSLASHpnotecite] = ACTIONS(6113), - [anon_sym_BSLASHPnotecite] = ACTIONS(6113), - [anon_sym_BSLASHfnotecite] = ACTIONS(6113), - [anon_sym_BSLASHlabel] = ACTIONS(6113), - [anon_sym_BSLASHref] = ACTIONS(6113), - [anon_sym_BSLASHeqref] = ACTIONS(6113), - [anon_sym_BSLASHvref] = ACTIONS(6113), - [anon_sym_BSLASHVref] = ACTIONS(6113), - [anon_sym_BSLASHautoref] = ACTIONS(6113), - [anon_sym_BSLASHpageref] = ACTIONS(6113), - [anon_sym_BSLASHcref] = ACTIONS(6113), - [anon_sym_BSLASHCref] = ACTIONS(6113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnameCref] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHlabelcref] = ACTIONS(6113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCrefrange] = ACTIONS(6113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnewlabel] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6115), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHdef] = ACTIONS(6113), - [anon_sym_BSLASHlet] = ACTIONS(6113), - [anon_sym_BSLASHleft] = ACTIONS(6113), - [anon_sym_BSLASHbig] = ACTIONS(6113), - [anon_sym_BSLASHBig] = ACTIONS(6113), - [anon_sym_BSLASHbigg] = ACTIONS(6113), - [anon_sym_BSLASHBigg] = ACTIONS(6113), - [anon_sym_BSLASHbigl] = ACTIONS(6113), - [anon_sym_BSLASHBigl] = ACTIONS(6113), - [anon_sym_BSLASHbiggl] = ACTIONS(6113), - [anon_sym_BSLASHBiggl] = ACTIONS(6113), - [anon_sym_BSLASHright] = ACTIONS(6113), - [anon_sym_BSLASHbigr] = ACTIONS(6113), - [anon_sym_BSLASHBigr] = ACTIONS(6113), - [anon_sym_BSLASHbiggr] = ACTIONS(6113), - [anon_sym_BSLASHBiggr] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), - [anon_sym_BSLASHgls] = ACTIONS(6113), - [anon_sym_BSLASHGls] = ACTIONS(6113), - [anon_sym_BSLASHGLS] = ACTIONS(6113), - [anon_sym_BSLASHglspl] = ACTIONS(6113), - [anon_sym_BSLASHGlspl] = ACTIONS(6113), - [anon_sym_BSLASHGLSpl] = ACTIONS(6113), - [anon_sym_BSLASHglsdisp] = ACTIONS(6113), - [anon_sym_BSLASHglslink] = ACTIONS(6113), - [anon_sym_BSLASHglstext] = ACTIONS(6113), - [anon_sym_BSLASHGlstext] = ACTIONS(6113), - [anon_sym_BSLASHGLStext] = ACTIONS(6113), - [anon_sym_BSLASHglsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), - [anon_sym_BSLASHglsplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSplural] = ACTIONS(6113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHglsname] = ACTIONS(6113), - [anon_sym_BSLASHGlsname] = ACTIONS(6113), - [anon_sym_BSLASHGLSname] = ACTIONS(6113), - [anon_sym_BSLASHglssymbol] = ACTIONS(6113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), - [anon_sym_BSLASHglsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), - [anon_sym_BSLASHglsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), - [anon_sym_BSLASHglsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), - [anon_sym_BSLASHglsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), - [anon_sym_BSLASHglsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), - [anon_sym_BSLASHnewacronym] = ACTIONS(6113), - [anon_sym_BSLASHacrshort] = ACTIONS(6113), - [anon_sym_BSLASHAcrshort] = ACTIONS(6113), - [anon_sym_BSLASHACRshort] = ACTIONS(6113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), - [anon_sym_BSLASHacrlong] = ACTIONS(6113), - [anon_sym_BSLASHAcrlong] = ACTIONS(6113), - [anon_sym_BSLASHACRlong] = ACTIONS(6113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), - [anon_sym_BSLASHacrfull] = ACTIONS(6113), - [anon_sym_BSLASHAcrfull] = ACTIONS(6113), - [anon_sym_BSLASHACRfull] = ACTIONS(6113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), - [anon_sym_BSLASHacs] = ACTIONS(6113), - [anon_sym_BSLASHAcs] = ACTIONS(6113), - [anon_sym_BSLASHacsp] = ACTIONS(6113), - [anon_sym_BSLASHAcsp] = ACTIONS(6113), - [anon_sym_BSLASHacl] = ACTIONS(6113), - [anon_sym_BSLASHAcl] = ACTIONS(6113), - [anon_sym_BSLASHaclp] = ACTIONS(6113), - [anon_sym_BSLASHAclp] = ACTIONS(6113), - [anon_sym_BSLASHacf] = ACTIONS(6113), - [anon_sym_BSLASHAcf] = ACTIONS(6113), - [anon_sym_BSLASHacfp] = ACTIONS(6113), - [anon_sym_BSLASHAcfp] = ACTIONS(6113), - [anon_sym_BSLASHac] = ACTIONS(6113), - [anon_sym_BSLASHAc] = ACTIONS(6113), - [anon_sym_BSLASHacp] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), - [anon_sym_BSLASHcolor] = ACTIONS(6113), - [anon_sym_BSLASHcolorbox] = ACTIONS(6113), - [anon_sym_BSLASHtextcolor] = ACTIONS(6113), - [anon_sym_BSLASHpagecolor] = ACTIONS(6113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), - [anon_sym_BSLASHtext] = ACTIONS(6113), - [anon_sym_BSLASHintertext] = ACTIONS(6113), - [anon_sym_shortintertext] = ACTIONS(6113), - }, - [463] = { - [sym_command_name] = ACTIONS(6117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6117), - [anon_sym_LBRACK] = ACTIONS(6119), - [anon_sym_RBRACK] = ACTIONS(6119), - [anon_sym_COMMA] = ACTIONS(6119), - [anon_sym_EQ] = ACTIONS(6119), - [anon_sym_LPAREN] = ACTIONS(6119), - [anon_sym_RPAREN] = ACTIONS(6119), - [anon_sym_BSLASHpart] = ACTIONS(6117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddpart] = ACTIONS(6117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6119), - [anon_sym_BSLASHchapter] = ACTIONS(6117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddchap] = ACTIONS(6117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsection] = ACTIONS(6117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddsec] = ACTIONS(6117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubsection] = ACTIONS(6117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHparagraph] = ACTIONS(6117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6119), - [anon_sym_BSLASHitem] = ACTIONS(6117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6119), - [anon_sym_LBRACE] = ACTIONS(6119), - [sym_word] = ACTIONS(6117), - [sym_placeholder] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6119), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_LT] = ACTIONS(6117), - [anon_sym_GT] = ACTIONS(6117), - [anon_sym_BANG] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_SQUOTE] = ACTIONS(6117), - [anon_sym__] = ACTIONS(6119), - [anon_sym_CARET] = ACTIONS(6119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6119), - [anon_sym_DOLLAR] = ACTIONS(6117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6119), - [anon_sym_BSLASHbegin] = ACTIONS(6117), - [anon_sym_BSLASHtitle] = ACTIONS(6117), - [anon_sym_BSLASHauthor] = ACTIONS(6117), - [anon_sym_BSLASHusepackage] = ACTIONS(6117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6117), - [anon_sym_BSLASHinclude] = ACTIONS(6117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6117), - [anon_sym_BSLASHinput] = ACTIONS(6117), - [anon_sym_BSLASHsubfile] = ACTIONS(6117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6117), - [anon_sym_BSLASHbibliography] = ACTIONS(6117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6117), - [anon_sym_BSLASHincludesvg] = ACTIONS(6117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6117), - [anon_sym_BSLASHimport] = ACTIONS(6117), - [anon_sym_BSLASHsubimport] = ACTIONS(6117), - [anon_sym_BSLASHinputfrom] = ACTIONS(6117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6117), - [anon_sym_BSLASHincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHcaption] = ACTIONS(6117), - [anon_sym_BSLASHcite] = ACTIONS(6117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCite] = ACTIONS(6117), - [anon_sym_BSLASHnocite] = ACTIONS(6117), - [anon_sym_BSLASHcitet] = ACTIONS(6117), - [anon_sym_BSLASHcitep] = ACTIONS(6117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteauthor] = ACTIONS(6117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitetitle] = ACTIONS(6117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteyear] = ACTIONS(6117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitedate] = ACTIONS(6117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteurl] = ACTIONS(6117), - [anon_sym_BSLASHfullcite] = ACTIONS(6117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6117), - [anon_sym_BSLASHcitealt] = ACTIONS(6117), - [anon_sym_BSLASHcitealp] = ACTIONS(6117), - [anon_sym_BSLASHcitetext] = ACTIONS(6117), - [anon_sym_BSLASHparencite] = ACTIONS(6117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHParencite] = ACTIONS(6117), - [anon_sym_BSLASHfootcite] = ACTIONS(6117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6117), - [anon_sym_BSLASHtextcite] = ACTIONS(6117), - [anon_sym_BSLASHTextcite] = ACTIONS(6117), - [anon_sym_BSLASHsmartcite] = ACTIONS(6117), - [anon_sym_BSLASHSmartcite] = ACTIONS(6117), - [anon_sym_BSLASHsupercite] = ACTIONS(6117), - [anon_sym_BSLASHautocite] = ACTIONS(6117), - [anon_sym_BSLASHAutocite] = ACTIONS(6117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHvolcite] = ACTIONS(6117), - [anon_sym_BSLASHVolcite] = ACTIONS(6117), - [anon_sym_BSLASHpvolcite] = ACTIONS(6117), - [anon_sym_BSLASHPvolcite] = ACTIONS(6117), - [anon_sym_BSLASHfvolcite] = ACTIONS(6117), - [anon_sym_BSLASHftvolcite] = ACTIONS(6117), - [anon_sym_BSLASHsvolcite] = ACTIONS(6117), - [anon_sym_BSLASHSvolcite] = ACTIONS(6117), - [anon_sym_BSLASHtvolcite] = ACTIONS(6117), - [anon_sym_BSLASHTvolcite] = ACTIONS(6117), - [anon_sym_BSLASHavolcite] = ACTIONS(6117), - [anon_sym_BSLASHAvolcite] = ACTIONS(6117), - [anon_sym_BSLASHnotecite] = ACTIONS(6117), - [anon_sym_BSLASHNotecite] = ACTIONS(6117), - [anon_sym_BSLASHpnotecite] = ACTIONS(6117), - [anon_sym_BSLASHPnotecite] = ACTIONS(6117), - [anon_sym_BSLASHfnotecite] = ACTIONS(6117), - [anon_sym_BSLASHlabel] = ACTIONS(6117), - [anon_sym_BSLASHref] = ACTIONS(6117), - [anon_sym_BSLASHeqref] = ACTIONS(6117), - [anon_sym_BSLASHvref] = ACTIONS(6117), - [anon_sym_BSLASHVref] = ACTIONS(6117), - [anon_sym_BSLASHautoref] = ACTIONS(6117), - [anon_sym_BSLASHpageref] = ACTIONS(6117), - [anon_sym_BSLASHcref] = ACTIONS(6117), - [anon_sym_BSLASHCref] = ACTIONS(6117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnameCref] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHlabelcref] = ACTIONS(6117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCrefrange] = ACTIONS(6117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnewlabel] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6119), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHdef] = ACTIONS(6117), - [anon_sym_BSLASHlet] = ACTIONS(6117), - [anon_sym_BSLASHleft] = ACTIONS(6117), - [anon_sym_BSLASHbig] = ACTIONS(6117), - [anon_sym_BSLASHBig] = ACTIONS(6117), - [anon_sym_BSLASHbigg] = ACTIONS(6117), - [anon_sym_BSLASHBigg] = ACTIONS(6117), - [anon_sym_BSLASHbigl] = ACTIONS(6117), - [anon_sym_BSLASHBigl] = ACTIONS(6117), - [anon_sym_BSLASHbiggl] = ACTIONS(6117), - [anon_sym_BSLASHBiggl] = ACTIONS(6117), - [anon_sym_BSLASHright] = ACTIONS(6117), - [anon_sym_BSLASHbigr] = ACTIONS(6117), - [anon_sym_BSLASHBigr] = ACTIONS(6117), - [anon_sym_BSLASHbiggr] = ACTIONS(6117), - [anon_sym_BSLASHBiggr] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6117), - [anon_sym_BSLASHgls] = ACTIONS(6117), - [anon_sym_BSLASHGls] = ACTIONS(6117), - [anon_sym_BSLASHGLS] = ACTIONS(6117), - [anon_sym_BSLASHglspl] = ACTIONS(6117), - [anon_sym_BSLASHGlspl] = ACTIONS(6117), - [anon_sym_BSLASHGLSpl] = ACTIONS(6117), - [anon_sym_BSLASHglsdisp] = ACTIONS(6117), - [anon_sym_BSLASHglslink] = ACTIONS(6117), - [anon_sym_BSLASHglstext] = ACTIONS(6117), - [anon_sym_BSLASHGlstext] = ACTIONS(6117), - [anon_sym_BSLASHGLStext] = ACTIONS(6117), - [anon_sym_BSLASHglsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6117), - [anon_sym_BSLASHglsplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSplural] = ACTIONS(6117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHglsname] = ACTIONS(6117), - [anon_sym_BSLASHGlsname] = ACTIONS(6117), - [anon_sym_BSLASHGLSname] = ACTIONS(6117), - [anon_sym_BSLASHglssymbol] = ACTIONS(6117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6117), - [anon_sym_BSLASHglsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6117), - [anon_sym_BSLASHglsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6117), - [anon_sym_BSLASHglsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6117), - [anon_sym_BSLASHglsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6117), - [anon_sym_BSLASHglsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6117), - [anon_sym_BSLASHnewacronym] = ACTIONS(6117), - [anon_sym_BSLASHacrshort] = ACTIONS(6117), - [anon_sym_BSLASHAcrshort] = ACTIONS(6117), - [anon_sym_BSLASHACRshort] = ACTIONS(6117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6117), - [anon_sym_BSLASHacrlong] = ACTIONS(6117), - [anon_sym_BSLASHAcrlong] = ACTIONS(6117), - [anon_sym_BSLASHACRlong] = ACTIONS(6117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6117), - [anon_sym_BSLASHacrfull] = ACTIONS(6117), - [anon_sym_BSLASHAcrfull] = ACTIONS(6117), - [anon_sym_BSLASHACRfull] = ACTIONS(6117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6117), - [anon_sym_BSLASHacs] = ACTIONS(6117), - [anon_sym_BSLASHAcs] = ACTIONS(6117), - [anon_sym_BSLASHacsp] = ACTIONS(6117), - [anon_sym_BSLASHAcsp] = ACTIONS(6117), - [anon_sym_BSLASHacl] = ACTIONS(6117), - [anon_sym_BSLASHAcl] = ACTIONS(6117), - [anon_sym_BSLASHaclp] = ACTIONS(6117), - [anon_sym_BSLASHAclp] = ACTIONS(6117), - [anon_sym_BSLASHacf] = ACTIONS(6117), - [anon_sym_BSLASHAcf] = ACTIONS(6117), - [anon_sym_BSLASHacfp] = ACTIONS(6117), - [anon_sym_BSLASHAcfp] = ACTIONS(6117), - [anon_sym_BSLASHac] = ACTIONS(6117), - [anon_sym_BSLASHAc] = ACTIONS(6117), - [anon_sym_BSLASHacp] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6117), - [anon_sym_BSLASHcolor] = ACTIONS(6117), - [anon_sym_BSLASHcolorbox] = ACTIONS(6117), - [anon_sym_BSLASHtextcolor] = ACTIONS(6117), - [anon_sym_BSLASHpagecolor] = ACTIONS(6117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6117), - [anon_sym_BSLASHtext] = ACTIONS(6117), - [anon_sym_BSLASHintertext] = ACTIONS(6117), - [anon_sym_shortintertext] = ACTIONS(6117), - }, - [464] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2258), - [sym_command_name] = ACTIONS(2256), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_RBRACK] = ACTIONS(2258), - [anon_sym_COMMA] = ACTIONS(2258), - [anon_sym_EQ] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_BSLASHpart] = ACTIONS(2256), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddpart] = ACTIONS(2256), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHchapter] = ACTIONS(2256), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddchap] = ACTIONS(2256), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsection] = ACTIONS(2256), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddsec] = ACTIONS(2256), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHparagraph] = ACTIONS(2256), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2256), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [sym_word] = ACTIONS(2256), - [sym_placeholder] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2256), - [anon_sym_GT] = ACTIONS(2256), - [anon_sym_BANG] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym_SQUOTE] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2258), - [anon_sym_CARET] = ACTIONS(2258), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2258), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2256), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2258), - [anon_sym_BSLASHbegin] = ACTIONS(2256), - [anon_sym_BSLASHtitle] = ACTIONS(2256), - [anon_sym_BSLASHauthor] = ACTIONS(2256), - [anon_sym_BSLASHusepackage] = ACTIONS(2256), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2256), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2256), - [anon_sym_BSLASHinclude] = ACTIONS(2256), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2256), - [anon_sym_BSLASHinput] = ACTIONS(2256), - [anon_sym_BSLASHsubfile] = ACTIONS(2256), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2256), - [anon_sym_BSLASHbibliography] = ACTIONS(2256), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2256), - [anon_sym_BSLASHincludesvg] = ACTIONS(2256), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2256), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2256), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2256), - [anon_sym_BSLASHimport] = ACTIONS(2256), - [anon_sym_BSLASHsubimport] = ACTIONS(2256), - [anon_sym_BSLASHinputfrom] = ACTIONS(2256), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2256), - [anon_sym_BSLASHincludefrom] = ACTIONS(2256), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2256), - [anon_sym_BSLASHcaption] = ACTIONS(2256), - [anon_sym_BSLASHcite] = ACTIONS(2256), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCite] = ACTIONS(2256), - [anon_sym_BSLASHnocite] = ACTIONS(2256), - [anon_sym_BSLASHcitet] = ACTIONS(2256), - [anon_sym_BSLASHcitep] = ACTIONS(2256), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteauthor] = ACTIONS(2256), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2256), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitetitle] = ACTIONS(2256), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteyear] = ACTIONS(2256), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitedate] = ACTIONS(2256), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteurl] = ACTIONS(2256), - [anon_sym_BSLASHfullcite] = ACTIONS(2256), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2256), - [anon_sym_BSLASHcitealt] = ACTIONS(2256), - [anon_sym_BSLASHcitealp] = ACTIONS(2256), - [anon_sym_BSLASHcitetext] = ACTIONS(2256), - [anon_sym_BSLASHparencite] = ACTIONS(2256), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHParencite] = ACTIONS(2256), - [anon_sym_BSLASHfootcite] = ACTIONS(2256), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2256), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2256), - [anon_sym_BSLASHtextcite] = ACTIONS(2256), - [anon_sym_BSLASHTextcite] = ACTIONS(2256), - [anon_sym_BSLASHsmartcite] = ACTIONS(2256), - [anon_sym_BSLASHSmartcite] = ACTIONS(2256), - [anon_sym_BSLASHsupercite] = ACTIONS(2256), - [anon_sym_BSLASHautocite] = ACTIONS(2256), - [anon_sym_BSLASHAutocite] = ACTIONS(2256), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHvolcite] = ACTIONS(2256), - [anon_sym_BSLASHVolcite] = ACTIONS(2256), - [anon_sym_BSLASHpvolcite] = ACTIONS(2256), - [anon_sym_BSLASHPvolcite] = ACTIONS(2256), - [anon_sym_BSLASHfvolcite] = ACTIONS(2256), - [anon_sym_BSLASHftvolcite] = ACTIONS(2256), - [anon_sym_BSLASHsvolcite] = ACTIONS(2256), - [anon_sym_BSLASHSvolcite] = ACTIONS(2256), - [anon_sym_BSLASHtvolcite] = ACTIONS(2256), - [anon_sym_BSLASHTvolcite] = ACTIONS(2256), - [anon_sym_BSLASHavolcite] = ACTIONS(2256), - [anon_sym_BSLASHAvolcite] = ACTIONS(2256), - [anon_sym_BSLASHnotecite] = ACTIONS(2256), - [anon_sym_BSLASHNotecite] = ACTIONS(2256), - [anon_sym_BSLASHpnotecite] = ACTIONS(2256), - [anon_sym_BSLASHPnotecite] = ACTIONS(2256), - [anon_sym_BSLASHfnotecite] = ACTIONS(2256), - [anon_sym_BSLASHlabel] = ACTIONS(2256), - [anon_sym_BSLASHref] = ACTIONS(2256), - [anon_sym_BSLASHeqref] = ACTIONS(2256), - [anon_sym_BSLASHvref] = ACTIONS(2256), - [anon_sym_BSLASHVref] = ACTIONS(2256), - [anon_sym_BSLASHautoref] = ACTIONS(2256), - [anon_sym_BSLASHpageref] = ACTIONS(2256), - [anon_sym_BSLASHcref] = ACTIONS(2256), - [anon_sym_BSLASHCref] = ACTIONS(2256), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2258), - [anon_sym_BSLASHnamecref] = ACTIONS(2256), - [anon_sym_BSLASHnameCref] = ACTIONS(2256), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2256), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2256), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2256), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2256), - [anon_sym_BSLASHlabelcref] = ACTIONS(2256), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2256), - [anon_sym_BSLASHcrefrange] = ACTIONS(2256), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCrefrange] = ACTIONS(2256), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2258), - [anon_sym_BSLASHnewlabel] = ACTIONS(2256), - [anon_sym_BSLASHnewcommand] = ACTIONS(2256), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2256), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2256), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2258), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHdef] = ACTIONS(2256), - [anon_sym_BSLASHlet] = ACTIONS(2256), - [anon_sym_BSLASHleft] = ACTIONS(2256), - [anon_sym_BSLASHbig] = ACTIONS(2256), - [anon_sym_BSLASHBig] = ACTIONS(2256), - [anon_sym_BSLASHbigg] = ACTIONS(2256), - [anon_sym_BSLASHBigg] = ACTIONS(2256), - [anon_sym_BSLASHbigl] = ACTIONS(2256), - [anon_sym_BSLASHBigl] = ACTIONS(2256), - [anon_sym_BSLASHbiggl] = ACTIONS(2256), - [anon_sym_BSLASHBiggl] = ACTIONS(2256), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2256), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2256), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2256), - [anon_sym_BSLASHgls] = ACTIONS(2256), - [anon_sym_BSLASHGls] = ACTIONS(2256), - [anon_sym_BSLASHGLS] = ACTIONS(2256), - [anon_sym_BSLASHglspl] = ACTIONS(2256), - [anon_sym_BSLASHGlspl] = ACTIONS(2256), - [anon_sym_BSLASHGLSpl] = ACTIONS(2256), - [anon_sym_BSLASHglsdisp] = ACTIONS(2256), - [anon_sym_BSLASHglslink] = ACTIONS(2256), - [anon_sym_BSLASHglstext] = ACTIONS(2256), - [anon_sym_BSLASHGlstext] = ACTIONS(2256), - [anon_sym_BSLASHGLStext] = ACTIONS(2256), - [anon_sym_BSLASHglsfirst] = ACTIONS(2256), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2256), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2256), - [anon_sym_BSLASHglsplural] = ACTIONS(2256), - [anon_sym_BSLASHGlsplural] = ACTIONS(2256), - [anon_sym_BSLASHGLSplural] = ACTIONS(2256), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHglsname] = ACTIONS(2256), - [anon_sym_BSLASHGlsname] = ACTIONS(2256), - [anon_sym_BSLASHGLSname] = ACTIONS(2256), - [anon_sym_BSLASHglssymbol] = ACTIONS(2256), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2256), - [anon_sym_BSLASHglsdesc] = ACTIONS(2256), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2256), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2256), - [anon_sym_BSLASHglsuseri] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2256), - [anon_sym_BSLASHglsuserii] = ACTIONS(2256), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2256), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2256), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2256), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2256), - [anon_sym_BSLASHglsuserv] = ACTIONS(2256), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2256), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2256), - [anon_sym_BSLASHglsuservi] = ACTIONS(2256), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2256), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2256), - [anon_sym_BSLASHnewacronym] = ACTIONS(2256), - [anon_sym_BSLASHacrshort] = ACTIONS(2256), - [anon_sym_BSLASHAcrshort] = ACTIONS(2256), - [anon_sym_BSLASHACRshort] = ACTIONS(2256), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2256), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2256), - [anon_sym_BSLASHacrlong] = ACTIONS(2256), - [anon_sym_BSLASHAcrlong] = ACTIONS(2256), - [anon_sym_BSLASHACRlong] = ACTIONS(2256), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2256), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2256), - [anon_sym_BSLASHacrfull] = ACTIONS(2256), - [anon_sym_BSLASHAcrfull] = ACTIONS(2256), - [anon_sym_BSLASHACRfull] = ACTIONS(2256), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2256), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2256), - [anon_sym_BSLASHacs] = ACTIONS(2256), - [anon_sym_BSLASHAcs] = ACTIONS(2256), - [anon_sym_BSLASHacsp] = ACTIONS(2256), - [anon_sym_BSLASHAcsp] = ACTIONS(2256), - [anon_sym_BSLASHacl] = ACTIONS(2256), - [anon_sym_BSLASHAcl] = ACTIONS(2256), - [anon_sym_BSLASHaclp] = ACTIONS(2256), - [anon_sym_BSLASHAclp] = ACTIONS(2256), - [anon_sym_BSLASHacf] = ACTIONS(2256), - [anon_sym_BSLASHAcf] = ACTIONS(2256), - [anon_sym_BSLASHacfp] = ACTIONS(2256), - [anon_sym_BSLASHAcfp] = ACTIONS(2256), - [anon_sym_BSLASHac] = ACTIONS(2256), - [anon_sym_BSLASHAc] = ACTIONS(2256), - [anon_sym_BSLASHacp] = ACTIONS(2256), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2256), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2256), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2256), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2256), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2256), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2256), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2256), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2258), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2256), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2258), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2256), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2256), - [anon_sym_BSLASHcolor] = ACTIONS(2256), - [anon_sym_BSLASHcolorbox] = ACTIONS(2256), - [anon_sym_BSLASHtextcolor] = ACTIONS(2256), - [anon_sym_BSLASHpagecolor] = ACTIONS(2256), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2256), - [anon_sym_BSLASHtext] = ACTIONS(2256), - [anon_sym_BSLASHintertext] = ACTIONS(2256), - [anon_sym_shortintertext] = ACTIONS(2256), - }, - [465] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2232), - [sym_command_name] = ACTIONS(2230), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2230), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2232), - [sym_word] = ACTIONS(2230), - [sym_placeholder] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_COLON] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym__] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2232), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2232), - [anon_sym_BSLASHbegin] = ACTIONS(2230), - [anon_sym_BSLASHtitle] = ACTIONS(2230), - [anon_sym_BSLASHauthor] = ACTIONS(2230), - [anon_sym_BSLASHusepackage] = ACTIONS(2230), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2230), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2230), - [anon_sym_BSLASHinclude] = ACTIONS(2230), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2230), - [anon_sym_BSLASHinput] = ACTIONS(2230), - [anon_sym_BSLASHsubfile] = ACTIONS(2230), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2230), - [anon_sym_BSLASHbibliography] = ACTIONS(2230), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2230), - [anon_sym_BSLASHincludesvg] = ACTIONS(2230), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2230), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2230), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2230), - [anon_sym_BSLASHimport] = ACTIONS(2230), - [anon_sym_BSLASHsubimport] = ACTIONS(2230), - [anon_sym_BSLASHinputfrom] = ACTIONS(2230), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2230), - [anon_sym_BSLASHincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHcaption] = ACTIONS(2230), - [anon_sym_BSLASHcite] = ACTIONS(2230), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCite] = ACTIONS(2230), - [anon_sym_BSLASHnocite] = ACTIONS(2230), - [anon_sym_BSLASHcitet] = ACTIONS(2230), - [anon_sym_BSLASHcitep] = ACTIONS(2230), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteauthor] = ACTIONS(2230), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2230), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitetitle] = ACTIONS(2230), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteyear] = ACTIONS(2230), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitedate] = ACTIONS(2230), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteurl] = ACTIONS(2230), - [anon_sym_BSLASHfullcite] = ACTIONS(2230), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2230), - [anon_sym_BSLASHcitealt] = ACTIONS(2230), - [anon_sym_BSLASHcitealp] = ACTIONS(2230), - [anon_sym_BSLASHcitetext] = ACTIONS(2230), - [anon_sym_BSLASHparencite] = ACTIONS(2230), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHParencite] = ACTIONS(2230), - [anon_sym_BSLASHfootcite] = ACTIONS(2230), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2230), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2230), - [anon_sym_BSLASHtextcite] = ACTIONS(2230), - [anon_sym_BSLASHTextcite] = ACTIONS(2230), - [anon_sym_BSLASHsmartcite] = ACTIONS(2230), - [anon_sym_BSLASHSmartcite] = ACTIONS(2230), - [anon_sym_BSLASHsupercite] = ACTIONS(2230), - [anon_sym_BSLASHautocite] = ACTIONS(2230), - [anon_sym_BSLASHAutocite] = ACTIONS(2230), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHvolcite] = ACTIONS(2230), - [anon_sym_BSLASHVolcite] = ACTIONS(2230), - [anon_sym_BSLASHpvolcite] = ACTIONS(2230), - [anon_sym_BSLASHPvolcite] = ACTIONS(2230), - [anon_sym_BSLASHfvolcite] = ACTIONS(2230), - [anon_sym_BSLASHftvolcite] = ACTIONS(2230), - [anon_sym_BSLASHsvolcite] = ACTIONS(2230), - [anon_sym_BSLASHSvolcite] = ACTIONS(2230), - [anon_sym_BSLASHtvolcite] = ACTIONS(2230), - [anon_sym_BSLASHTvolcite] = ACTIONS(2230), - [anon_sym_BSLASHavolcite] = ACTIONS(2230), - [anon_sym_BSLASHAvolcite] = ACTIONS(2230), - [anon_sym_BSLASHnotecite] = ACTIONS(2230), - [anon_sym_BSLASHNotecite] = ACTIONS(2230), - [anon_sym_BSLASHpnotecite] = ACTIONS(2230), - [anon_sym_BSLASHPnotecite] = ACTIONS(2230), - [anon_sym_BSLASHfnotecite] = ACTIONS(2230), - [anon_sym_BSLASHlabel] = ACTIONS(2230), - [anon_sym_BSLASHref] = ACTIONS(2230), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [anon_sym_BSLASHvref] = ACTIONS(2230), - [anon_sym_BSLASHVref] = ACTIONS(2230), - [anon_sym_BSLASHautoref] = ACTIONS(2230), - [anon_sym_BSLASHpageref] = ACTIONS(2230), - [anon_sym_BSLASHcref] = ACTIONS(2230), - [anon_sym_BSLASHCref] = ACTIONS(2230), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnameCref] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHlabelcref] = ACTIONS(2230), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCrefrange] = ACTIONS(2230), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2230), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2230), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2232), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHdef] = ACTIONS(2230), - [anon_sym_BSLASHlet] = ACTIONS(2230), - [anon_sym_BSLASHleft] = ACTIONS(2230), - [anon_sym_BSLASHbig] = ACTIONS(2230), - [anon_sym_BSLASHBig] = ACTIONS(2230), - [anon_sym_BSLASHbigg] = ACTIONS(2230), - [anon_sym_BSLASHBigg] = ACTIONS(2230), - [anon_sym_BSLASHbigl] = ACTIONS(2230), - [anon_sym_BSLASHBigl] = ACTIONS(2230), - [anon_sym_BSLASHbiggl] = ACTIONS(2230), - [anon_sym_BSLASHBiggl] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2230), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2230), - [anon_sym_BSLASHgls] = ACTIONS(2230), - [anon_sym_BSLASHGls] = ACTIONS(2230), - [anon_sym_BSLASHGLS] = ACTIONS(2230), - [anon_sym_BSLASHglspl] = ACTIONS(2230), - [anon_sym_BSLASHGlspl] = ACTIONS(2230), - [anon_sym_BSLASHGLSpl] = ACTIONS(2230), - [anon_sym_BSLASHglsdisp] = ACTIONS(2230), - [anon_sym_BSLASHglslink] = ACTIONS(2230), - [anon_sym_BSLASHglstext] = ACTIONS(2230), - [anon_sym_BSLASHGlstext] = ACTIONS(2230), - [anon_sym_BSLASHGLStext] = ACTIONS(2230), - [anon_sym_BSLASHglsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2230), - [anon_sym_BSLASHglsplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSplural] = ACTIONS(2230), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHglsname] = ACTIONS(2230), - [anon_sym_BSLASHGlsname] = ACTIONS(2230), - [anon_sym_BSLASHGLSname] = ACTIONS(2230), - [anon_sym_BSLASHglssymbol] = ACTIONS(2230), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2230), - [anon_sym_BSLASHglsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2230), - [anon_sym_BSLASHglsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2230), - [anon_sym_BSLASHglsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2230), - [anon_sym_BSLASHglsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2230), - [anon_sym_BSLASHglsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2230), - [anon_sym_BSLASHnewacronym] = ACTIONS(2230), - [anon_sym_BSLASHacrshort] = ACTIONS(2230), - [anon_sym_BSLASHAcrshort] = ACTIONS(2230), - [anon_sym_BSLASHACRshort] = ACTIONS(2230), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2230), - [anon_sym_BSLASHacrlong] = ACTIONS(2230), - [anon_sym_BSLASHAcrlong] = ACTIONS(2230), - [anon_sym_BSLASHACRlong] = ACTIONS(2230), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2230), - [anon_sym_BSLASHacrfull] = ACTIONS(2230), - [anon_sym_BSLASHAcrfull] = ACTIONS(2230), - [anon_sym_BSLASHACRfull] = ACTIONS(2230), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2230), - [anon_sym_BSLASHacs] = ACTIONS(2230), - [anon_sym_BSLASHAcs] = ACTIONS(2230), - [anon_sym_BSLASHacsp] = ACTIONS(2230), - [anon_sym_BSLASHAcsp] = ACTIONS(2230), - [anon_sym_BSLASHacl] = ACTIONS(2230), - [anon_sym_BSLASHAcl] = ACTIONS(2230), - [anon_sym_BSLASHaclp] = ACTIONS(2230), - [anon_sym_BSLASHAclp] = ACTIONS(2230), - [anon_sym_BSLASHacf] = ACTIONS(2230), - [anon_sym_BSLASHAcf] = ACTIONS(2230), - [anon_sym_BSLASHacfp] = ACTIONS(2230), - [anon_sym_BSLASHAcfp] = ACTIONS(2230), - [anon_sym_BSLASHac] = ACTIONS(2230), - [anon_sym_BSLASHAc] = ACTIONS(2230), - [anon_sym_BSLASHacp] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2230), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2230), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2230), - [anon_sym_BSLASHcolor] = ACTIONS(2230), - [anon_sym_BSLASHcolorbox] = ACTIONS(2230), - [anon_sym_BSLASHtextcolor] = ACTIONS(2230), - [anon_sym_BSLASHpagecolor] = ACTIONS(2230), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2230), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2230), - [anon_sym_BSLASHtext] = ACTIONS(2230), - [anon_sym_BSLASHintertext] = ACTIONS(2230), - [anon_sym_shortintertext] = ACTIONS(2230), - }, - [466] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2232), - [sym_command_name] = ACTIONS(2230), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(2230), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2232), - [sym_word] = ACTIONS(2230), - [sym_placeholder] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_COLON] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym__] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2232), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2232), - [anon_sym_BSLASHbegin] = ACTIONS(2230), - [anon_sym_BSLASHtitle] = ACTIONS(2230), - [anon_sym_BSLASHauthor] = ACTIONS(2230), - [anon_sym_BSLASHusepackage] = ACTIONS(2230), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2230), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2230), - [anon_sym_BSLASHinclude] = ACTIONS(2230), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2230), - [anon_sym_BSLASHinput] = ACTIONS(2230), - [anon_sym_BSLASHsubfile] = ACTIONS(2230), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2230), - [anon_sym_BSLASHbibliography] = ACTIONS(2230), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2230), - [anon_sym_BSLASHincludesvg] = ACTIONS(2230), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2230), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2230), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2230), - [anon_sym_BSLASHimport] = ACTIONS(2230), - [anon_sym_BSLASHsubimport] = ACTIONS(2230), - [anon_sym_BSLASHinputfrom] = ACTIONS(2230), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2230), - [anon_sym_BSLASHincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHcaption] = ACTIONS(2230), - [anon_sym_BSLASHcite] = ACTIONS(2230), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCite] = ACTIONS(2230), - [anon_sym_BSLASHnocite] = ACTIONS(2230), - [anon_sym_BSLASHcitet] = ACTIONS(2230), - [anon_sym_BSLASHcitep] = ACTIONS(2230), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteauthor] = ACTIONS(2230), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2230), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitetitle] = ACTIONS(2230), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteyear] = ACTIONS(2230), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitedate] = ACTIONS(2230), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteurl] = ACTIONS(2230), - [anon_sym_BSLASHfullcite] = ACTIONS(2230), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2230), - [anon_sym_BSLASHcitealt] = ACTIONS(2230), - [anon_sym_BSLASHcitealp] = ACTIONS(2230), - [anon_sym_BSLASHcitetext] = ACTIONS(2230), - [anon_sym_BSLASHparencite] = ACTIONS(2230), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHParencite] = ACTIONS(2230), - [anon_sym_BSLASHfootcite] = ACTIONS(2230), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2230), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2230), - [anon_sym_BSLASHtextcite] = ACTIONS(2230), - [anon_sym_BSLASHTextcite] = ACTIONS(2230), - [anon_sym_BSLASHsmartcite] = ACTIONS(2230), - [anon_sym_BSLASHSmartcite] = ACTIONS(2230), - [anon_sym_BSLASHsupercite] = ACTIONS(2230), - [anon_sym_BSLASHautocite] = ACTIONS(2230), - [anon_sym_BSLASHAutocite] = ACTIONS(2230), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHvolcite] = ACTIONS(2230), - [anon_sym_BSLASHVolcite] = ACTIONS(2230), - [anon_sym_BSLASHpvolcite] = ACTIONS(2230), - [anon_sym_BSLASHPvolcite] = ACTIONS(2230), - [anon_sym_BSLASHfvolcite] = ACTIONS(2230), - [anon_sym_BSLASHftvolcite] = ACTIONS(2230), - [anon_sym_BSLASHsvolcite] = ACTIONS(2230), - [anon_sym_BSLASHSvolcite] = ACTIONS(2230), - [anon_sym_BSLASHtvolcite] = ACTIONS(2230), - [anon_sym_BSLASHTvolcite] = ACTIONS(2230), - [anon_sym_BSLASHavolcite] = ACTIONS(2230), - [anon_sym_BSLASHAvolcite] = ACTIONS(2230), - [anon_sym_BSLASHnotecite] = ACTIONS(2230), - [anon_sym_BSLASHNotecite] = ACTIONS(2230), - [anon_sym_BSLASHpnotecite] = ACTIONS(2230), - [anon_sym_BSLASHPnotecite] = ACTIONS(2230), - [anon_sym_BSLASHfnotecite] = ACTIONS(2230), - [anon_sym_BSLASHlabel] = ACTIONS(2230), - [anon_sym_BSLASHref] = ACTIONS(2230), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [anon_sym_BSLASHvref] = ACTIONS(2230), - [anon_sym_BSLASHVref] = ACTIONS(2230), - [anon_sym_BSLASHautoref] = ACTIONS(2230), - [anon_sym_BSLASHpageref] = ACTIONS(2230), - [anon_sym_BSLASHcref] = ACTIONS(2230), - [anon_sym_BSLASHCref] = ACTIONS(2230), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnameCref] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHlabelcref] = ACTIONS(2230), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCrefrange] = ACTIONS(2230), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2230), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2230), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2232), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHdef] = ACTIONS(2230), - [anon_sym_BSLASHlet] = ACTIONS(2230), - [anon_sym_BSLASHleft] = ACTIONS(2230), - [anon_sym_BSLASHbig] = ACTIONS(2230), - [anon_sym_BSLASHBig] = ACTIONS(2230), - [anon_sym_BSLASHbigg] = ACTIONS(2230), - [anon_sym_BSLASHBigg] = ACTIONS(2230), - [anon_sym_BSLASHbigl] = ACTIONS(2230), - [anon_sym_BSLASHBigl] = ACTIONS(2230), - [anon_sym_BSLASHbiggl] = ACTIONS(2230), - [anon_sym_BSLASHBiggl] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2230), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2230), - [anon_sym_BSLASHgls] = ACTIONS(2230), - [anon_sym_BSLASHGls] = ACTIONS(2230), - [anon_sym_BSLASHGLS] = ACTIONS(2230), - [anon_sym_BSLASHglspl] = ACTIONS(2230), - [anon_sym_BSLASHGlspl] = ACTIONS(2230), - [anon_sym_BSLASHGLSpl] = ACTIONS(2230), - [anon_sym_BSLASHglsdisp] = ACTIONS(2230), - [anon_sym_BSLASHglslink] = ACTIONS(2230), - [anon_sym_BSLASHglstext] = ACTIONS(2230), - [anon_sym_BSLASHGlstext] = ACTIONS(2230), - [anon_sym_BSLASHGLStext] = ACTIONS(2230), - [anon_sym_BSLASHglsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2230), - [anon_sym_BSLASHglsplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSplural] = ACTIONS(2230), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHglsname] = ACTIONS(2230), - [anon_sym_BSLASHGlsname] = ACTIONS(2230), - [anon_sym_BSLASHGLSname] = ACTIONS(2230), - [anon_sym_BSLASHglssymbol] = ACTIONS(2230), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2230), - [anon_sym_BSLASHglsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2230), - [anon_sym_BSLASHglsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2230), - [anon_sym_BSLASHglsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2230), - [anon_sym_BSLASHglsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2230), - [anon_sym_BSLASHglsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2230), - [anon_sym_BSLASHnewacronym] = ACTIONS(2230), - [anon_sym_BSLASHacrshort] = ACTIONS(2230), - [anon_sym_BSLASHAcrshort] = ACTIONS(2230), - [anon_sym_BSLASHACRshort] = ACTIONS(2230), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2230), - [anon_sym_BSLASHacrlong] = ACTIONS(2230), - [anon_sym_BSLASHAcrlong] = ACTIONS(2230), - [anon_sym_BSLASHACRlong] = ACTIONS(2230), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2230), - [anon_sym_BSLASHacrfull] = ACTIONS(2230), - [anon_sym_BSLASHAcrfull] = ACTIONS(2230), - [anon_sym_BSLASHACRfull] = ACTIONS(2230), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2230), - [anon_sym_BSLASHacs] = ACTIONS(2230), - [anon_sym_BSLASHAcs] = ACTIONS(2230), - [anon_sym_BSLASHacsp] = ACTIONS(2230), - [anon_sym_BSLASHAcsp] = ACTIONS(2230), - [anon_sym_BSLASHacl] = ACTIONS(2230), - [anon_sym_BSLASHAcl] = ACTIONS(2230), - [anon_sym_BSLASHaclp] = ACTIONS(2230), - [anon_sym_BSLASHAclp] = ACTIONS(2230), - [anon_sym_BSLASHacf] = ACTIONS(2230), - [anon_sym_BSLASHAcf] = ACTIONS(2230), - [anon_sym_BSLASHacfp] = ACTIONS(2230), - [anon_sym_BSLASHAcfp] = ACTIONS(2230), - [anon_sym_BSLASHac] = ACTIONS(2230), - [anon_sym_BSLASHAc] = ACTIONS(2230), - [anon_sym_BSLASHacp] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2230), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2230), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2230), - [anon_sym_BSLASHcolor] = ACTIONS(2230), - [anon_sym_BSLASHcolorbox] = ACTIONS(2230), - [anon_sym_BSLASHtextcolor] = ACTIONS(2230), - [anon_sym_BSLASHpagecolor] = ACTIONS(2230), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2230), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2230), - [anon_sym_BSLASHtext] = ACTIONS(2230), - [anon_sym_BSLASHintertext] = ACTIONS(2230), - [anon_sym_shortintertext] = ACTIONS(2230), - }, - [467] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(2220), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2220), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [468] = { - [sym_command_name] = ACTIONS(6121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6121), - [anon_sym_LBRACK] = ACTIONS(6123), - [anon_sym_RBRACK] = ACTIONS(6123), - [anon_sym_COMMA] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(6123), - [anon_sym_LPAREN] = ACTIONS(6123), - [anon_sym_RPAREN] = ACTIONS(6123), - [anon_sym_BSLASHpart] = ACTIONS(6121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddpart] = ACTIONS(6121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6123), - [anon_sym_BSLASHchapter] = ACTIONS(6121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddchap] = ACTIONS(6121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsection] = ACTIONS(6121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddsec] = ACTIONS(6121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubsection] = ACTIONS(6121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHparagraph] = ACTIONS(6121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6123), - [anon_sym_BSLASHitem] = ACTIONS(6121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6123), - [anon_sym_LBRACE] = ACTIONS(6123), - [sym_word] = ACTIONS(6121), - [sym_placeholder] = ACTIONS(6123), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6123), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_LT] = ACTIONS(6121), - [anon_sym_GT] = ACTIONS(6121), - [anon_sym_BANG] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_SQUOTE] = ACTIONS(6121), - [anon_sym__] = ACTIONS(6123), - [anon_sym_CARET] = ACTIONS(6123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6123), - [anon_sym_DOLLAR] = ACTIONS(6121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6123), - [anon_sym_BSLASHbegin] = ACTIONS(6121), - [anon_sym_BSLASHtitle] = ACTIONS(6121), - [anon_sym_BSLASHauthor] = ACTIONS(6121), - [anon_sym_BSLASHusepackage] = ACTIONS(6121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6121), - [anon_sym_BSLASHinclude] = ACTIONS(6121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6121), - [anon_sym_BSLASHinput] = ACTIONS(6121), - [anon_sym_BSLASHsubfile] = ACTIONS(6121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6121), - [anon_sym_BSLASHbibliography] = ACTIONS(6121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6121), - [anon_sym_BSLASHincludesvg] = ACTIONS(6121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6121), - [anon_sym_BSLASHimport] = ACTIONS(6121), - [anon_sym_BSLASHsubimport] = ACTIONS(6121), - [anon_sym_BSLASHinputfrom] = ACTIONS(6121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6121), - [anon_sym_BSLASHincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHcaption] = ACTIONS(6121), - [anon_sym_BSLASHcite] = ACTIONS(6121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCite] = ACTIONS(6121), - [anon_sym_BSLASHnocite] = ACTIONS(6121), - [anon_sym_BSLASHcitet] = ACTIONS(6121), - [anon_sym_BSLASHcitep] = ACTIONS(6121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteauthor] = ACTIONS(6121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitetitle] = ACTIONS(6121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteyear] = ACTIONS(6121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitedate] = ACTIONS(6121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteurl] = ACTIONS(6121), - [anon_sym_BSLASHfullcite] = ACTIONS(6121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6121), - [anon_sym_BSLASHcitealt] = ACTIONS(6121), - [anon_sym_BSLASHcitealp] = ACTIONS(6121), - [anon_sym_BSLASHcitetext] = ACTIONS(6121), - [anon_sym_BSLASHparencite] = ACTIONS(6121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHParencite] = ACTIONS(6121), - [anon_sym_BSLASHfootcite] = ACTIONS(6121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6121), - [anon_sym_BSLASHtextcite] = ACTIONS(6121), - [anon_sym_BSLASHTextcite] = ACTIONS(6121), - [anon_sym_BSLASHsmartcite] = ACTIONS(6121), - [anon_sym_BSLASHSmartcite] = ACTIONS(6121), - [anon_sym_BSLASHsupercite] = ACTIONS(6121), - [anon_sym_BSLASHautocite] = ACTIONS(6121), - [anon_sym_BSLASHAutocite] = ACTIONS(6121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHvolcite] = ACTIONS(6121), - [anon_sym_BSLASHVolcite] = ACTIONS(6121), - [anon_sym_BSLASHpvolcite] = ACTIONS(6121), - [anon_sym_BSLASHPvolcite] = ACTIONS(6121), - [anon_sym_BSLASHfvolcite] = ACTIONS(6121), - [anon_sym_BSLASHftvolcite] = ACTIONS(6121), - [anon_sym_BSLASHsvolcite] = ACTIONS(6121), - [anon_sym_BSLASHSvolcite] = ACTIONS(6121), - [anon_sym_BSLASHtvolcite] = ACTIONS(6121), - [anon_sym_BSLASHTvolcite] = ACTIONS(6121), - [anon_sym_BSLASHavolcite] = ACTIONS(6121), - [anon_sym_BSLASHAvolcite] = ACTIONS(6121), - [anon_sym_BSLASHnotecite] = ACTIONS(6121), - [anon_sym_BSLASHNotecite] = ACTIONS(6121), - [anon_sym_BSLASHpnotecite] = ACTIONS(6121), - [anon_sym_BSLASHPnotecite] = ACTIONS(6121), - [anon_sym_BSLASHfnotecite] = ACTIONS(6121), - [anon_sym_BSLASHlabel] = ACTIONS(6121), - [anon_sym_BSLASHref] = ACTIONS(6121), - [anon_sym_BSLASHeqref] = ACTIONS(6121), - [anon_sym_BSLASHvref] = ACTIONS(6121), - [anon_sym_BSLASHVref] = ACTIONS(6121), - [anon_sym_BSLASHautoref] = ACTIONS(6121), - [anon_sym_BSLASHpageref] = ACTIONS(6121), - [anon_sym_BSLASHcref] = ACTIONS(6121), - [anon_sym_BSLASHCref] = ACTIONS(6121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnameCref] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHlabelcref] = ACTIONS(6121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCrefrange] = ACTIONS(6121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnewlabel] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6123), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHdef] = ACTIONS(6121), - [anon_sym_BSLASHlet] = ACTIONS(6121), - [anon_sym_BSLASHleft] = ACTIONS(6121), - [anon_sym_BSLASHbig] = ACTIONS(6121), - [anon_sym_BSLASHBig] = ACTIONS(6121), - [anon_sym_BSLASHbigg] = ACTIONS(6121), - [anon_sym_BSLASHBigg] = ACTIONS(6121), - [anon_sym_BSLASHbigl] = ACTIONS(6121), - [anon_sym_BSLASHBigl] = ACTIONS(6121), - [anon_sym_BSLASHbiggl] = ACTIONS(6121), - [anon_sym_BSLASHBiggl] = ACTIONS(6121), - [anon_sym_BSLASHright] = ACTIONS(6121), - [anon_sym_BSLASHbigr] = ACTIONS(6121), - [anon_sym_BSLASHBigr] = ACTIONS(6121), - [anon_sym_BSLASHbiggr] = ACTIONS(6121), - [anon_sym_BSLASHBiggr] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6121), - [anon_sym_BSLASHgls] = ACTIONS(6121), - [anon_sym_BSLASHGls] = ACTIONS(6121), - [anon_sym_BSLASHGLS] = ACTIONS(6121), - [anon_sym_BSLASHglspl] = ACTIONS(6121), - [anon_sym_BSLASHGlspl] = ACTIONS(6121), - [anon_sym_BSLASHGLSpl] = ACTIONS(6121), - [anon_sym_BSLASHglsdisp] = ACTIONS(6121), - [anon_sym_BSLASHglslink] = ACTIONS(6121), - [anon_sym_BSLASHglstext] = ACTIONS(6121), - [anon_sym_BSLASHGlstext] = ACTIONS(6121), - [anon_sym_BSLASHGLStext] = ACTIONS(6121), - [anon_sym_BSLASHglsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6121), - [anon_sym_BSLASHglsplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSplural] = ACTIONS(6121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHglsname] = ACTIONS(6121), - [anon_sym_BSLASHGlsname] = ACTIONS(6121), - [anon_sym_BSLASHGLSname] = ACTIONS(6121), - [anon_sym_BSLASHglssymbol] = ACTIONS(6121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6121), - [anon_sym_BSLASHglsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6121), - [anon_sym_BSLASHglsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6121), - [anon_sym_BSLASHglsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6121), - [anon_sym_BSLASHglsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6121), - [anon_sym_BSLASHglsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6121), - [anon_sym_BSLASHnewacronym] = ACTIONS(6121), - [anon_sym_BSLASHacrshort] = ACTIONS(6121), - [anon_sym_BSLASHAcrshort] = ACTIONS(6121), - [anon_sym_BSLASHACRshort] = ACTIONS(6121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6121), - [anon_sym_BSLASHacrlong] = ACTIONS(6121), - [anon_sym_BSLASHAcrlong] = ACTIONS(6121), - [anon_sym_BSLASHACRlong] = ACTIONS(6121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6121), - [anon_sym_BSLASHacrfull] = ACTIONS(6121), - [anon_sym_BSLASHAcrfull] = ACTIONS(6121), - [anon_sym_BSLASHACRfull] = ACTIONS(6121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6121), - [anon_sym_BSLASHacs] = ACTIONS(6121), - [anon_sym_BSLASHAcs] = ACTIONS(6121), - [anon_sym_BSLASHacsp] = ACTIONS(6121), - [anon_sym_BSLASHAcsp] = ACTIONS(6121), - [anon_sym_BSLASHacl] = ACTIONS(6121), - [anon_sym_BSLASHAcl] = ACTIONS(6121), - [anon_sym_BSLASHaclp] = ACTIONS(6121), - [anon_sym_BSLASHAclp] = ACTIONS(6121), - [anon_sym_BSLASHacf] = ACTIONS(6121), - [anon_sym_BSLASHAcf] = ACTIONS(6121), - [anon_sym_BSLASHacfp] = ACTIONS(6121), - [anon_sym_BSLASHAcfp] = ACTIONS(6121), - [anon_sym_BSLASHac] = ACTIONS(6121), - [anon_sym_BSLASHAc] = ACTIONS(6121), - [anon_sym_BSLASHacp] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6121), - [anon_sym_BSLASHcolor] = ACTIONS(6121), - [anon_sym_BSLASHcolorbox] = ACTIONS(6121), - [anon_sym_BSLASHtextcolor] = ACTIONS(6121), - [anon_sym_BSLASHpagecolor] = ACTIONS(6121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6121), - [anon_sym_BSLASHtext] = ACTIONS(6121), - [anon_sym_BSLASHintertext] = ACTIONS(6121), - [anon_sym_shortintertext] = ACTIONS(6121), - }, - [469] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(2220), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(2220), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [470] = { - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(455), - [aux_sym__section_repeat6] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2220), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHitem] = ACTIONS(2220), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_RBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [471] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2204), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [472] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2204), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [473] = { - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(455), - [aux_sym__section_repeat6] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(2204), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [474] = { - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(456), - [aux_sym__section_repeat5] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(2204), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [475] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [476] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [477] = { - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(455), - [aux_sym__section_repeat6] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [478] = { - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(456), - [aux_sym__section_repeat5] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [479] = { - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(457), - [aux_sym__section_repeat4] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [480] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [481] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [482] = { - [sym_command_name] = ACTIONS(6125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6127), - [anon_sym_RBRACK] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6127), - [anon_sym_EQ] = ACTIONS(6127), - [anon_sym_LPAREN] = ACTIONS(6127), - [anon_sym_RPAREN] = ACTIONS(6127), - [anon_sym_BSLASHpart] = ACTIONS(6125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddpart] = ACTIONS(6125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6127), - [anon_sym_BSLASHchapter] = ACTIONS(6125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddchap] = ACTIONS(6125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsection] = ACTIONS(6125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddsec] = ACTIONS(6125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubsection] = ACTIONS(6125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHparagraph] = ACTIONS(6125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6127), - [anon_sym_BSLASHitem] = ACTIONS(6125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6127), - [anon_sym_LBRACE] = ACTIONS(6127), - [sym_word] = ACTIONS(6125), - [sym_placeholder] = ACTIONS(6127), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_LT] = ACTIONS(6125), - [anon_sym_GT] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_SQUOTE] = ACTIONS(6125), - [anon_sym__] = ACTIONS(6127), - [anon_sym_CARET] = ACTIONS(6127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6127), - [anon_sym_DOLLAR] = ACTIONS(6125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6127), - [anon_sym_BSLASHbegin] = ACTIONS(6125), - [anon_sym_BSLASHtitle] = ACTIONS(6125), - [anon_sym_BSLASHauthor] = ACTIONS(6125), - [anon_sym_BSLASHusepackage] = ACTIONS(6125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6125), - [anon_sym_BSLASHinclude] = ACTIONS(6125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6125), - [anon_sym_BSLASHinput] = ACTIONS(6125), - [anon_sym_BSLASHsubfile] = ACTIONS(6125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6125), - [anon_sym_BSLASHbibliography] = ACTIONS(6125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6125), - [anon_sym_BSLASHincludesvg] = ACTIONS(6125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6125), - [anon_sym_BSLASHimport] = ACTIONS(6125), - [anon_sym_BSLASHsubimport] = ACTIONS(6125), - [anon_sym_BSLASHinputfrom] = ACTIONS(6125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6125), - [anon_sym_BSLASHincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHcaption] = ACTIONS(6125), - [anon_sym_BSLASHcite] = ACTIONS(6125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCite] = ACTIONS(6125), - [anon_sym_BSLASHnocite] = ACTIONS(6125), - [anon_sym_BSLASHcitet] = ACTIONS(6125), - [anon_sym_BSLASHcitep] = ACTIONS(6125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteauthor] = ACTIONS(6125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitetitle] = ACTIONS(6125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteyear] = ACTIONS(6125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitedate] = ACTIONS(6125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteurl] = ACTIONS(6125), - [anon_sym_BSLASHfullcite] = ACTIONS(6125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6125), - [anon_sym_BSLASHcitealt] = ACTIONS(6125), - [anon_sym_BSLASHcitealp] = ACTIONS(6125), - [anon_sym_BSLASHcitetext] = ACTIONS(6125), - [anon_sym_BSLASHparencite] = ACTIONS(6125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHParencite] = ACTIONS(6125), - [anon_sym_BSLASHfootcite] = ACTIONS(6125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6125), - [anon_sym_BSLASHtextcite] = ACTIONS(6125), - [anon_sym_BSLASHTextcite] = ACTIONS(6125), - [anon_sym_BSLASHsmartcite] = ACTIONS(6125), - [anon_sym_BSLASHSmartcite] = ACTIONS(6125), - [anon_sym_BSLASHsupercite] = ACTIONS(6125), - [anon_sym_BSLASHautocite] = ACTIONS(6125), - [anon_sym_BSLASHAutocite] = ACTIONS(6125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHvolcite] = ACTIONS(6125), - [anon_sym_BSLASHVolcite] = ACTIONS(6125), - [anon_sym_BSLASHpvolcite] = ACTIONS(6125), - [anon_sym_BSLASHPvolcite] = ACTIONS(6125), - [anon_sym_BSLASHfvolcite] = ACTIONS(6125), - [anon_sym_BSLASHftvolcite] = ACTIONS(6125), - [anon_sym_BSLASHsvolcite] = ACTIONS(6125), - [anon_sym_BSLASHSvolcite] = ACTIONS(6125), - [anon_sym_BSLASHtvolcite] = ACTIONS(6125), - [anon_sym_BSLASHTvolcite] = ACTIONS(6125), - [anon_sym_BSLASHavolcite] = ACTIONS(6125), - [anon_sym_BSLASHAvolcite] = ACTIONS(6125), - [anon_sym_BSLASHnotecite] = ACTIONS(6125), - [anon_sym_BSLASHNotecite] = ACTIONS(6125), - [anon_sym_BSLASHpnotecite] = ACTIONS(6125), - [anon_sym_BSLASHPnotecite] = ACTIONS(6125), - [anon_sym_BSLASHfnotecite] = ACTIONS(6125), - [anon_sym_BSLASHlabel] = ACTIONS(6125), - [anon_sym_BSLASHref] = ACTIONS(6125), - [anon_sym_BSLASHeqref] = ACTIONS(6125), - [anon_sym_BSLASHvref] = ACTIONS(6125), - [anon_sym_BSLASHVref] = ACTIONS(6125), - [anon_sym_BSLASHautoref] = ACTIONS(6125), - [anon_sym_BSLASHpageref] = ACTIONS(6125), - [anon_sym_BSLASHcref] = ACTIONS(6125), - [anon_sym_BSLASHCref] = ACTIONS(6125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnameCref] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHlabelcref] = ACTIONS(6125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCrefrange] = ACTIONS(6125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnewlabel] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6127), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHdef] = ACTIONS(6125), - [anon_sym_BSLASHlet] = ACTIONS(6125), - [anon_sym_BSLASHleft] = ACTIONS(6125), - [anon_sym_BSLASHbig] = ACTIONS(6125), - [anon_sym_BSLASHBig] = ACTIONS(6125), - [anon_sym_BSLASHbigg] = ACTIONS(6125), - [anon_sym_BSLASHBigg] = ACTIONS(6125), - [anon_sym_BSLASHbigl] = ACTIONS(6125), - [anon_sym_BSLASHBigl] = ACTIONS(6125), - [anon_sym_BSLASHbiggl] = ACTIONS(6125), - [anon_sym_BSLASHBiggl] = ACTIONS(6125), - [anon_sym_BSLASHright] = ACTIONS(6125), - [anon_sym_BSLASHbigr] = ACTIONS(6125), - [anon_sym_BSLASHBigr] = ACTIONS(6125), - [anon_sym_BSLASHbiggr] = ACTIONS(6125), - [anon_sym_BSLASHBiggr] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6125), - [anon_sym_BSLASHgls] = ACTIONS(6125), - [anon_sym_BSLASHGls] = ACTIONS(6125), - [anon_sym_BSLASHGLS] = ACTIONS(6125), - [anon_sym_BSLASHglspl] = ACTIONS(6125), - [anon_sym_BSLASHGlspl] = ACTIONS(6125), - [anon_sym_BSLASHGLSpl] = ACTIONS(6125), - [anon_sym_BSLASHglsdisp] = ACTIONS(6125), - [anon_sym_BSLASHglslink] = ACTIONS(6125), - [anon_sym_BSLASHglstext] = ACTIONS(6125), - [anon_sym_BSLASHGlstext] = ACTIONS(6125), - [anon_sym_BSLASHGLStext] = ACTIONS(6125), - [anon_sym_BSLASHglsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6125), - [anon_sym_BSLASHglsplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSplural] = ACTIONS(6125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHglsname] = ACTIONS(6125), - [anon_sym_BSLASHGlsname] = ACTIONS(6125), - [anon_sym_BSLASHGLSname] = ACTIONS(6125), - [anon_sym_BSLASHglssymbol] = ACTIONS(6125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6125), - [anon_sym_BSLASHglsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6125), - [anon_sym_BSLASHglsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6125), - [anon_sym_BSLASHglsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6125), - [anon_sym_BSLASHglsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6125), - [anon_sym_BSLASHglsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6125), - [anon_sym_BSLASHnewacronym] = ACTIONS(6125), - [anon_sym_BSLASHacrshort] = ACTIONS(6125), - [anon_sym_BSLASHAcrshort] = ACTIONS(6125), - [anon_sym_BSLASHACRshort] = ACTIONS(6125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6125), - [anon_sym_BSLASHacrlong] = ACTIONS(6125), - [anon_sym_BSLASHAcrlong] = ACTIONS(6125), - [anon_sym_BSLASHACRlong] = ACTIONS(6125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6125), - [anon_sym_BSLASHacrfull] = ACTIONS(6125), - [anon_sym_BSLASHAcrfull] = ACTIONS(6125), - [anon_sym_BSLASHACRfull] = ACTIONS(6125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6125), - [anon_sym_BSLASHacs] = ACTIONS(6125), - [anon_sym_BSLASHAcs] = ACTIONS(6125), - [anon_sym_BSLASHacsp] = ACTIONS(6125), - [anon_sym_BSLASHAcsp] = ACTIONS(6125), - [anon_sym_BSLASHacl] = ACTIONS(6125), - [anon_sym_BSLASHAcl] = ACTIONS(6125), - [anon_sym_BSLASHaclp] = ACTIONS(6125), - [anon_sym_BSLASHAclp] = ACTIONS(6125), - [anon_sym_BSLASHacf] = ACTIONS(6125), - [anon_sym_BSLASHAcf] = ACTIONS(6125), - [anon_sym_BSLASHacfp] = ACTIONS(6125), - [anon_sym_BSLASHAcfp] = ACTIONS(6125), - [anon_sym_BSLASHac] = ACTIONS(6125), - [anon_sym_BSLASHAc] = ACTIONS(6125), - [anon_sym_BSLASHacp] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6125), - [anon_sym_BSLASHcolor] = ACTIONS(6125), - [anon_sym_BSLASHcolorbox] = ACTIONS(6125), - [anon_sym_BSLASHtextcolor] = ACTIONS(6125), - [anon_sym_BSLASHpagecolor] = ACTIONS(6125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6125), - [anon_sym_BSLASHtext] = ACTIONS(6125), - [anon_sym_BSLASHintertext] = ACTIONS(6125), - [anon_sym_shortintertext] = ACTIONS(6125), - }, - [483] = { - [sym_command_name] = ACTIONS(6129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(6131), - [anon_sym_RBRACK] = ACTIONS(6131), - [anon_sym_COMMA] = ACTIONS(6131), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_LPAREN] = ACTIONS(6131), - [anon_sym_RPAREN] = ACTIONS(6131), - [anon_sym_BSLASHpart] = ACTIONS(6129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddpart] = ACTIONS(6129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6131), - [anon_sym_BSLASHchapter] = ACTIONS(6129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddchap] = ACTIONS(6129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsection] = ACTIONS(6129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddsec] = ACTIONS(6129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubsection] = ACTIONS(6129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHparagraph] = ACTIONS(6129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6131), - [anon_sym_BSLASHitem] = ACTIONS(6129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(6131), - [sym_word] = ACTIONS(6129), - [sym_placeholder] = ACTIONS(6131), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_BANG] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_SQUOTE] = ACTIONS(6129), - [anon_sym__] = ACTIONS(6131), - [anon_sym_CARET] = ACTIONS(6131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6131), - [anon_sym_DOLLAR] = ACTIONS(6129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6131), - [anon_sym_BSLASHbegin] = ACTIONS(6129), - [anon_sym_BSLASHtitle] = ACTIONS(6129), - [anon_sym_BSLASHauthor] = ACTIONS(6129), - [anon_sym_BSLASHusepackage] = ACTIONS(6129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6129), - [anon_sym_BSLASHinclude] = ACTIONS(6129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6129), - [anon_sym_BSLASHinput] = ACTIONS(6129), - [anon_sym_BSLASHsubfile] = ACTIONS(6129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6129), - [anon_sym_BSLASHbibliography] = ACTIONS(6129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6129), - [anon_sym_BSLASHincludesvg] = ACTIONS(6129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6129), - [anon_sym_BSLASHimport] = ACTIONS(6129), - [anon_sym_BSLASHsubimport] = ACTIONS(6129), - [anon_sym_BSLASHinputfrom] = ACTIONS(6129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6129), - [anon_sym_BSLASHincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHcaption] = ACTIONS(6129), - [anon_sym_BSLASHcite] = ACTIONS(6129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCite] = ACTIONS(6129), - [anon_sym_BSLASHnocite] = ACTIONS(6129), - [anon_sym_BSLASHcitet] = ACTIONS(6129), - [anon_sym_BSLASHcitep] = ACTIONS(6129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteauthor] = ACTIONS(6129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitetitle] = ACTIONS(6129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteyear] = ACTIONS(6129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitedate] = ACTIONS(6129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteurl] = ACTIONS(6129), - [anon_sym_BSLASHfullcite] = ACTIONS(6129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6129), - [anon_sym_BSLASHcitealt] = ACTIONS(6129), - [anon_sym_BSLASHcitealp] = ACTIONS(6129), - [anon_sym_BSLASHcitetext] = ACTIONS(6129), - [anon_sym_BSLASHparencite] = ACTIONS(6129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHParencite] = ACTIONS(6129), - [anon_sym_BSLASHfootcite] = ACTIONS(6129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6129), - [anon_sym_BSLASHtextcite] = ACTIONS(6129), - [anon_sym_BSLASHTextcite] = ACTIONS(6129), - [anon_sym_BSLASHsmartcite] = ACTIONS(6129), - [anon_sym_BSLASHSmartcite] = ACTIONS(6129), - [anon_sym_BSLASHsupercite] = ACTIONS(6129), - [anon_sym_BSLASHautocite] = ACTIONS(6129), - [anon_sym_BSLASHAutocite] = ACTIONS(6129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHvolcite] = ACTIONS(6129), - [anon_sym_BSLASHVolcite] = ACTIONS(6129), - [anon_sym_BSLASHpvolcite] = ACTIONS(6129), - [anon_sym_BSLASHPvolcite] = ACTIONS(6129), - [anon_sym_BSLASHfvolcite] = ACTIONS(6129), - [anon_sym_BSLASHftvolcite] = ACTIONS(6129), - [anon_sym_BSLASHsvolcite] = ACTIONS(6129), - [anon_sym_BSLASHSvolcite] = ACTIONS(6129), - [anon_sym_BSLASHtvolcite] = ACTIONS(6129), - [anon_sym_BSLASHTvolcite] = ACTIONS(6129), - [anon_sym_BSLASHavolcite] = ACTIONS(6129), - [anon_sym_BSLASHAvolcite] = ACTIONS(6129), - [anon_sym_BSLASHnotecite] = ACTIONS(6129), - [anon_sym_BSLASHNotecite] = ACTIONS(6129), - [anon_sym_BSLASHpnotecite] = ACTIONS(6129), - [anon_sym_BSLASHPnotecite] = ACTIONS(6129), - [anon_sym_BSLASHfnotecite] = ACTIONS(6129), - [anon_sym_BSLASHlabel] = ACTIONS(6129), - [anon_sym_BSLASHref] = ACTIONS(6129), - [anon_sym_BSLASHeqref] = ACTIONS(6129), - [anon_sym_BSLASHvref] = ACTIONS(6129), - [anon_sym_BSLASHVref] = ACTIONS(6129), - [anon_sym_BSLASHautoref] = ACTIONS(6129), - [anon_sym_BSLASHpageref] = ACTIONS(6129), - [anon_sym_BSLASHcref] = ACTIONS(6129), - [anon_sym_BSLASHCref] = ACTIONS(6129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnameCref] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHlabelcref] = ACTIONS(6129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCrefrange] = ACTIONS(6129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnewlabel] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6131), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHdef] = ACTIONS(6129), - [anon_sym_BSLASHlet] = ACTIONS(6129), - [anon_sym_BSLASHleft] = ACTIONS(6129), - [anon_sym_BSLASHbig] = ACTIONS(6129), - [anon_sym_BSLASHBig] = ACTIONS(6129), - [anon_sym_BSLASHbigg] = ACTIONS(6129), - [anon_sym_BSLASHBigg] = ACTIONS(6129), - [anon_sym_BSLASHbigl] = ACTIONS(6129), - [anon_sym_BSLASHBigl] = ACTIONS(6129), - [anon_sym_BSLASHbiggl] = ACTIONS(6129), - [anon_sym_BSLASHBiggl] = ACTIONS(6129), - [anon_sym_BSLASHright] = ACTIONS(6129), - [anon_sym_BSLASHbigr] = ACTIONS(6129), - [anon_sym_BSLASHBigr] = ACTIONS(6129), - [anon_sym_BSLASHbiggr] = ACTIONS(6129), - [anon_sym_BSLASHBiggr] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6129), - [anon_sym_BSLASHgls] = ACTIONS(6129), - [anon_sym_BSLASHGls] = ACTIONS(6129), - [anon_sym_BSLASHGLS] = ACTIONS(6129), - [anon_sym_BSLASHglspl] = ACTIONS(6129), - [anon_sym_BSLASHGlspl] = ACTIONS(6129), - [anon_sym_BSLASHGLSpl] = ACTIONS(6129), - [anon_sym_BSLASHglsdisp] = ACTIONS(6129), - [anon_sym_BSLASHglslink] = ACTIONS(6129), - [anon_sym_BSLASHglstext] = ACTIONS(6129), - [anon_sym_BSLASHGlstext] = ACTIONS(6129), - [anon_sym_BSLASHGLStext] = ACTIONS(6129), - [anon_sym_BSLASHglsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6129), - [anon_sym_BSLASHglsplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSplural] = ACTIONS(6129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHglsname] = ACTIONS(6129), - [anon_sym_BSLASHGlsname] = ACTIONS(6129), - [anon_sym_BSLASHGLSname] = ACTIONS(6129), - [anon_sym_BSLASHglssymbol] = ACTIONS(6129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6129), - [anon_sym_BSLASHglsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6129), - [anon_sym_BSLASHglsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6129), - [anon_sym_BSLASHglsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6129), - [anon_sym_BSLASHglsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6129), - [anon_sym_BSLASHglsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6129), - [anon_sym_BSLASHnewacronym] = ACTIONS(6129), - [anon_sym_BSLASHacrshort] = ACTIONS(6129), - [anon_sym_BSLASHAcrshort] = ACTIONS(6129), - [anon_sym_BSLASHACRshort] = ACTIONS(6129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6129), - [anon_sym_BSLASHacrlong] = ACTIONS(6129), - [anon_sym_BSLASHAcrlong] = ACTIONS(6129), - [anon_sym_BSLASHACRlong] = ACTIONS(6129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6129), - [anon_sym_BSLASHacrfull] = ACTIONS(6129), - [anon_sym_BSLASHAcrfull] = ACTIONS(6129), - [anon_sym_BSLASHACRfull] = ACTIONS(6129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6129), - [anon_sym_BSLASHacs] = ACTIONS(6129), - [anon_sym_BSLASHAcs] = ACTIONS(6129), - [anon_sym_BSLASHacsp] = ACTIONS(6129), - [anon_sym_BSLASHAcsp] = ACTIONS(6129), - [anon_sym_BSLASHacl] = ACTIONS(6129), - [anon_sym_BSLASHAcl] = ACTIONS(6129), - [anon_sym_BSLASHaclp] = ACTIONS(6129), - [anon_sym_BSLASHAclp] = ACTIONS(6129), - [anon_sym_BSLASHacf] = ACTIONS(6129), - [anon_sym_BSLASHAcf] = ACTIONS(6129), - [anon_sym_BSLASHacfp] = ACTIONS(6129), - [anon_sym_BSLASHAcfp] = ACTIONS(6129), - [anon_sym_BSLASHac] = ACTIONS(6129), - [anon_sym_BSLASHAc] = ACTIONS(6129), - [anon_sym_BSLASHacp] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6129), - [anon_sym_BSLASHcolor] = ACTIONS(6129), - [anon_sym_BSLASHcolorbox] = ACTIONS(6129), - [anon_sym_BSLASHtextcolor] = ACTIONS(6129), - [anon_sym_BSLASHpagecolor] = ACTIONS(6129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6129), - [anon_sym_BSLASHtext] = ACTIONS(6129), - [anon_sym_BSLASHintertext] = ACTIONS(6129), - [anon_sym_shortintertext] = ACTIONS(6129), - }, - [484] = { - [sym_command_name] = ACTIONS(6133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6133), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_EQ] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_BSLASHpart] = ACTIONS(6133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddpart] = ACTIONS(6133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6135), - [anon_sym_BSLASHchapter] = ACTIONS(6133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddchap] = ACTIONS(6133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsection] = ACTIONS(6133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddsec] = ACTIONS(6133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubsection] = ACTIONS(6133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHparagraph] = ACTIONS(6133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6135), - [anon_sym_BSLASHitem] = ACTIONS(6133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6135), - [anon_sym_LBRACE] = ACTIONS(6135), - [sym_word] = ACTIONS(6133), - [sym_placeholder] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6135), - [anon_sym_DASH] = ACTIONS(6135), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6133), - [anon_sym_GT] = ACTIONS(6133), - [anon_sym_BANG] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6133), - [anon_sym_COLON] = ACTIONS(6133), - [anon_sym_SQUOTE] = ACTIONS(6133), - [anon_sym__] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6135), - [anon_sym_DOLLAR] = ACTIONS(6133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6135), - [anon_sym_BSLASHbegin] = ACTIONS(6133), - [anon_sym_BSLASHtitle] = ACTIONS(6133), - [anon_sym_BSLASHauthor] = ACTIONS(6133), - [anon_sym_BSLASHusepackage] = ACTIONS(6133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6133), - [anon_sym_BSLASHinclude] = ACTIONS(6133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6133), - [anon_sym_BSLASHinput] = ACTIONS(6133), - [anon_sym_BSLASHsubfile] = ACTIONS(6133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6133), - [anon_sym_BSLASHbibliography] = ACTIONS(6133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6133), - [anon_sym_BSLASHincludesvg] = ACTIONS(6133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6133), - [anon_sym_BSLASHimport] = ACTIONS(6133), - [anon_sym_BSLASHsubimport] = ACTIONS(6133), - [anon_sym_BSLASHinputfrom] = ACTIONS(6133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6133), - [anon_sym_BSLASHincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHcaption] = ACTIONS(6133), - [anon_sym_BSLASHcite] = ACTIONS(6133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCite] = ACTIONS(6133), - [anon_sym_BSLASHnocite] = ACTIONS(6133), - [anon_sym_BSLASHcitet] = ACTIONS(6133), - [anon_sym_BSLASHcitep] = ACTIONS(6133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteauthor] = ACTIONS(6133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitetitle] = ACTIONS(6133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteyear] = ACTIONS(6133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitedate] = ACTIONS(6133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteurl] = ACTIONS(6133), - [anon_sym_BSLASHfullcite] = ACTIONS(6133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6133), - [anon_sym_BSLASHcitealt] = ACTIONS(6133), - [anon_sym_BSLASHcitealp] = ACTIONS(6133), - [anon_sym_BSLASHcitetext] = ACTIONS(6133), - [anon_sym_BSLASHparencite] = ACTIONS(6133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHParencite] = ACTIONS(6133), - [anon_sym_BSLASHfootcite] = ACTIONS(6133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6133), - [anon_sym_BSLASHtextcite] = ACTIONS(6133), - [anon_sym_BSLASHTextcite] = ACTIONS(6133), - [anon_sym_BSLASHsmartcite] = ACTIONS(6133), - [anon_sym_BSLASHSmartcite] = ACTIONS(6133), - [anon_sym_BSLASHsupercite] = ACTIONS(6133), - [anon_sym_BSLASHautocite] = ACTIONS(6133), - [anon_sym_BSLASHAutocite] = ACTIONS(6133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHvolcite] = ACTIONS(6133), - [anon_sym_BSLASHVolcite] = ACTIONS(6133), - [anon_sym_BSLASHpvolcite] = ACTIONS(6133), - [anon_sym_BSLASHPvolcite] = ACTIONS(6133), - [anon_sym_BSLASHfvolcite] = ACTIONS(6133), - [anon_sym_BSLASHftvolcite] = ACTIONS(6133), - [anon_sym_BSLASHsvolcite] = ACTIONS(6133), - [anon_sym_BSLASHSvolcite] = ACTIONS(6133), - [anon_sym_BSLASHtvolcite] = ACTIONS(6133), - [anon_sym_BSLASHTvolcite] = ACTIONS(6133), - [anon_sym_BSLASHavolcite] = ACTIONS(6133), - [anon_sym_BSLASHAvolcite] = ACTIONS(6133), - [anon_sym_BSLASHnotecite] = ACTIONS(6133), - [anon_sym_BSLASHNotecite] = ACTIONS(6133), - [anon_sym_BSLASHpnotecite] = ACTIONS(6133), - [anon_sym_BSLASHPnotecite] = ACTIONS(6133), - [anon_sym_BSLASHfnotecite] = ACTIONS(6133), - [anon_sym_BSLASHlabel] = ACTIONS(6133), - [anon_sym_BSLASHref] = ACTIONS(6133), - [anon_sym_BSLASHeqref] = ACTIONS(6133), - [anon_sym_BSLASHvref] = ACTIONS(6133), - [anon_sym_BSLASHVref] = ACTIONS(6133), - [anon_sym_BSLASHautoref] = ACTIONS(6133), - [anon_sym_BSLASHpageref] = ACTIONS(6133), - [anon_sym_BSLASHcref] = ACTIONS(6133), - [anon_sym_BSLASHCref] = ACTIONS(6133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnameCref] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHlabelcref] = ACTIONS(6133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCrefrange] = ACTIONS(6133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnewlabel] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6135), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHdef] = ACTIONS(6133), - [anon_sym_BSLASHlet] = ACTIONS(6133), - [anon_sym_BSLASHleft] = ACTIONS(6133), - [anon_sym_BSLASHbig] = ACTIONS(6133), - [anon_sym_BSLASHBig] = ACTIONS(6133), - [anon_sym_BSLASHbigg] = ACTIONS(6133), - [anon_sym_BSLASHBigg] = ACTIONS(6133), - [anon_sym_BSLASHbigl] = ACTIONS(6133), - [anon_sym_BSLASHBigl] = ACTIONS(6133), - [anon_sym_BSLASHbiggl] = ACTIONS(6133), - [anon_sym_BSLASHBiggl] = ACTIONS(6133), - [anon_sym_BSLASHright] = ACTIONS(6133), - [anon_sym_BSLASHbigr] = ACTIONS(6133), - [anon_sym_BSLASHBigr] = ACTIONS(6133), - [anon_sym_BSLASHbiggr] = ACTIONS(6133), - [anon_sym_BSLASHBiggr] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6133), - [anon_sym_BSLASHgls] = ACTIONS(6133), - [anon_sym_BSLASHGls] = ACTIONS(6133), - [anon_sym_BSLASHGLS] = ACTIONS(6133), - [anon_sym_BSLASHglspl] = ACTIONS(6133), - [anon_sym_BSLASHGlspl] = ACTIONS(6133), - [anon_sym_BSLASHGLSpl] = ACTIONS(6133), - [anon_sym_BSLASHglsdisp] = ACTIONS(6133), - [anon_sym_BSLASHglslink] = ACTIONS(6133), - [anon_sym_BSLASHglstext] = ACTIONS(6133), - [anon_sym_BSLASHGlstext] = ACTIONS(6133), - [anon_sym_BSLASHGLStext] = ACTIONS(6133), - [anon_sym_BSLASHglsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6133), - [anon_sym_BSLASHglsplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSplural] = ACTIONS(6133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHglsname] = ACTIONS(6133), - [anon_sym_BSLASHGlsname] = ACTIONS(6133), - [anon_sym_BSLASHGLSname] = ACTIONS(6133), - [anon_sym_BSLASHglssymbol] = ACTIONS(6133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6133), - [anon_sym_BSLASHglsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6133), - [anon_sym_BSLASHglsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6133), - [anon_sym_BSLASHglsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6133), - [anon_sym_BSLASHglsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6133), - [anon_sym_BSLASHglsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6133), - [anon_sym_BSLASHnewacronym] = ACTIONS(6133), - [anon_sym_BSLASHacrshort] = ACTIONS(6133), - [anon_sym_BSLASHAcrshort] = ACTIONS(6133), - [anon_sym_BSLASHACRshort] = ACTIONS(6133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6133), - [anon_sym_BSLASHacrlong] = ACTIONS(6133), - [anon_sym_BSLASHAcrlong] = ACTIONS(6133), - [anon_sym_BSLASHACRlong] = ACTIONS(6133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6133), - [anon_sym_BSLASHacrfull] = ACTIONS(6133), - [anon_sym_BSLASHAcrfull] = ACTIONS(6133), - [anon_sym_BSLASHACRfull] = ACTIONS(6133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6133), - [anon_sym_BSLASHacs] = ACTIONS(6133), - [anon_sym_BSLASHAcs] = ACTIONS(6133), - [anon_sym_BSLASHacsp] = ACTIONS(6133), - [anon_sym_BSLASHAcsp] = ACTIONS(6133), - [anon_sym_BSLASHacl] = ACTIONS(6133), - [anon_sym_BSLASHAcl] = ACTIONS(6133), - [anon_sym_BSLASHaclp] = ACTIONS(6133), - [anon_sym_BSLASHAclp] = ACTIONS(6133), - [anon_sym_BSLASHacf] = ACTIONS(6133), - [anon_sym_BSLASHAcf] = ACTIONS(6133), - [anon_sym_BSLASHacfp] = ACTIONS(6133), - [anon_sym_BSLASHAcfp] = ACTIONS(6133), - [anon_sym_BSLASHac] = ACTIONS(6133), - [anon_sym_BSLASHAc] = ACTIONS(6133), - [anon_sym_BSLASHacp] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6133), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6133), - [anon_sym_BSLASHcolor] = ACTIONS(6133), - [anon_sym_BSLASHcolorbox] = ACTIONS(6133), - [anon_sym_BSLASHtextcolor] = ACTIONS(6133), - [anon_sym_BSLASHpagecolor] = ACTIONS(6133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6133), - [anon_sym_BSLASHtext] = ACTIONS(6133), - [anon_sym_BSLASHintertext] = ACTIONS(6133), - [anon_sym_shortintertext] = ACTIONS(6133), - }, - [485] = { - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(455), - [aux_sym__section_repeat6] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [486] = { - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddpart] = ACTIONS(145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHchapter] = ACTIONS(145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddchap] = ACTIONS(145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), - [anon_sym_BSLASHsection] = ACTIONS(145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddsec] = ACTIONS(145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHparagraph] = ACTIONS(145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHitem] = ACTIONS(145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHright] = ACTIONS(145), - [anon_sym_BSLASHbigr] = ACTIONS(145), - [anon_sym_BSLASHBigr] = ACTIONS(145), - [anon_sym_BSLASHbiggr] = ACTIONS(145), - [anon_sym_BSLASHBiggr] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [487] = { - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(456), - [aux_sym__section_repeat5] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [488] = { - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(457), - [aux_sym__section_repeat4] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [489] = { - [sym_command_name] = ACTIONS(6137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6137), - [anon_sym_LBRACK] = ACTIONS(6139), - [anon_sym_RBRACK] = ACTIONS(6139), - [anon_sym_COMMA] = ACTIONS(6139), - [anon_sym_EQ] = ACTIONS(6139), - [anon_sym_LPAREN] = ACTIONS(6139), - [anon_sym_RPAREN] = ACTIONS(6139), - [anon_sym_BSLASHpart] = ACTIONS(6137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddpart] = ACTIONS(6137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6139), - [anon_sym_BSLASHchapter] = ACTIONS(6137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddchap] = ACTIONS(6137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsection] = ACTIONS(6137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddsec] = ACTIONS(6137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubsection] = ACTIONS(6137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHparagraph] = ACTIONS(6137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6139), - [anon_sym_BSLASHitem] = ACTIONS(6137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6139), - [anon_sym_LBRACE] = ACTIONS(6139), - [sym_word] = ACTIONS(6137), - [sym_placeholder] = ACTIONS(6139), - [anon_sym_PLUS] = ACTIONS(6139), - [anon_sym_DASH] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(6139), - [anon_sym_SLASH] = ACTIONS(6139), - [anon_sym_LT] = ACTIONS(6137), - [anon_sym_GT] = ACTIONS(6137), - [anon_sym_BANG] = ACTIONS(6137), - [anon_sym_PIPE] = ACTIONS(6137), - [anon_sym_COLON] = ACTIONS(6137), - [anon_sym_SQUOTE] = ACTIONS(6137), - [anon_sym__] = ACTIONS(6139), - [anon_sym_CARET] = ACTIONS(6139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6139), - [anon_sym_DOLLAR] = ACTIONS(6137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6139), - [anon_sym_BSLASHbegin] = ACTIONS(6137), - [anon_sym_BSLASHtitle] = ACTIONS(6137), - [anon_sym_BSLASHauthor] = ACTIONS(6137), - [anon_sym_BSLASHusepackage] = ACTIONS(6137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6137), - [anon_sym_BSLASHinclude] = ACTIONS(6137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6137), - [anon_sym_BSLASHinput] = ACTIONS(6137), - [anon_sym_BSLASHsubfile] = ACTIONS(6137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6137), - [anon_sym_BSLASHbibliography] = ACTIONS(6137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6137), - [anon_sym_BSLASHincludesvg] = ACTIONS(6137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6137), - [anon_sym_BSLASHimport] = ACTIONS(6137), - [anon_sym_BSLASHsubimport] = ACTIONS(6137), - [anon_sym_BSLASHinputfrom] = ACTIONS(6137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6137), - [anon_sym_BSLASHincludefrom] = ACTIONS(6137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6137), - [anon_sym_BSLASHcaption] = ACTIONS(6137), - [anon_sym_BSLASHcite] = ACTIONS(6137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCite] = ACTIONS(6137), - [anon_sym_BSLASHnocite] = ACTIONS(6137), - [anon_sym_BSLASHcitet] = ACTIONS(6137), - [anon_sym_BSLASHcitep] = ACTIONS(6137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteauthor] = ACTIONS(6137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitetitle] = ACTIONS(6137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteyear] = ACTIONS(6137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitedate] = ACTIONS(6137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteurl] = ACTIONS(6137), - [anon_sym_BSLASHfullcite] = ACTIONS(6137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6137), - [anon_sym_BSLASHcitealt] = ACTIONS(6137), - [anon_sym_BSLASHcitealp] = ACTIONS(6137), - [anon_sym_BSLASHcitetext] = ACTIONS(6137), - [anon_sym_BSLASHparencite] = ACTIONS(6137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHParencite] = ACTIONS(6137), - [anon_sym_BSLASHfootcite] = ACTIONS(6137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6137), - [anon_sym_BSLASHtextcite] = ACTIONS(6137), - [anon_sym_BSLASHTextcite] = ACTIONS(6137), - [anon_sym_BSLASHsmartcite] = ACTIONS(6137), - [anon_sym_BSLASHSmartcite] = ACTIONS(6137), - [anon_sym_BSLASHsupercite] = ACTIONS(6137), - [anon_sym_BSLASHautocite] = ACTIONS(6137), - [anon_sym_BSLASHAutocite] = ACTIONS(6137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHvolcite] = ACTIONS(6137), - [anon_sym_BSLASHVolcite] = ACTIONS(6137), - [anon_sym_BSLASHpvolcite] = ACTIONS(6137), - [anon_sym_BSLASHPvolcite] = ACTIONS(6137), - [anon_sym_BSLASHfvolcite] = ACTIONS(6137), - [anon_sym_BSLASHftvolcite] = ACTIONS(6137), - [anon_sym_BSLASHsvolcite] = ACTIONS(6137), - [anon_sym_BSLASHSvolcite] = ACTIONS(6137), - [anon_sym_BSLASHtvolcite] = ACTIONS(6137), - [anon_sym_BSLASHTvolcite] = ACTIONS(6137), - [anon_sym_BSLASHavolcite] = ACTIONS(6137), - [anon_sym_BSLASHAvolcite] = ACTIONS(6137), - [anon_sym_BSLASHnotecite] = ACTIONS(6137), - [anon_sym_BSLASHNotecite] = ACTIONS(6137), - [anon_sym_BSLASHpnotecite] = ACTIONS(6137), - [anon_sym_BSLASHPnotecite] = ACTIONS(6137), - [anon_sym_BSLASHfnotecite] = ACTIONS(6137), - [anon_sym_BSLASHlabel] = ACTIONS(6137), - [anon_sym_BSLASHref] = ACTIONS(6137), - [anon_sym_BSLASHeqref] = ACTIONS(6137), - [anon_sym_BSLASHvref] = ACTIONS(6137), - [anon_sym_BSLASHVref] = ACTIONS(6137), - [anon_sym_BSLASHautoref] = ACTIONS(6137), - [anon_sym_BSLASHpageref] = ACTIONS(6137), - [anon_sym_BSLASHcref] = ACTIONS(6137), - [anon_sym_BSLASHCref] = ACTIONS(6137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6139), - [anon_sym_BSLASHnamecref] = ACTIONS(6137), - [anon_sym_BSLASHnameCref] = ACTIONS(6137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6137), - [anon_sym_BSLASHlabelcref] = ACTIONS(6137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6137), - [anon_sym_BSLASHcrefrange] = ACTIONS(6137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCrefrange] = ACTIONS(6137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6139), - [anon_sym_BSLASHnewlabel] = ACTIONS(6137), - [anon_sym_BSLASHnewcommand] = ACTIONS(6137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6139), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHdef] = ACTIONS(6137), - [anon_sym_BSLASHlet] = ACTIONS(6137), - [anon_sym_BSLASHleft] = ACTIONS(6137), - [anon_sym_BSLASHbig] = ACTIONS(6137), - [anon_sym_BSLASHBig] = ACTIONS(6137), - [anon_sym_BSLASHbigg] = ACTIONS(6137), - [anon_sym_BSLASHBigg] = ACTIONS(6137), - [anon_sym_BSLASHbigl] = ACTIONS(6137), - [anon_sym_BSLASHBigl] = ACTIONS(6137), - [anon_sym_BSLASHbiggl] = ACTIONS(6137), - [anon_sym_BSLASHBiggl] = ACTIONS(6137), - [anon_sym_BSLASHright] = ACTIONS(6137), - [anon_sym_BSLASHbigr] = ACTIONS(6137), - [anon_sym_BSLASHBigr] = ACTIONS(6137), - [anon_sym_BSLASHbiggr] = ACTIONS(6137), - [anon_sym_BSLASHBiggr] = ACTIONS(6137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6137), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6137), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6137), - [anon_sym_BSLASHgls] = ACTIONS(6137), - [anon_sym_BSLASHGls] = ACTIONS(6137), - [anon_sym_BSLASHGLS] = ACTIONS(6137), - [anon_sym_BSLASHglspl] = ACTIONS(6137), - [anon_sym_BSLASHGlspl] = ACTIONS(6137), - [anon_sym_BSLASHGLSpl] = ACTIONS(6137), - [anon_sym_BSLASHglsdisp] = ACTIONS(6137), - [anon_sym_BSLASHglslink] = ACTIONS(6137), - [anon_sym_BSLASHglstext] = ACTIONS(6137), - [anon_sym_BSLASHGlstext] = ACTIONS(6137), - [anon_sym_BSLASHGLStext] = ACTIONS(6137), - [anon_sym_BSLASHglsfirst] = ACTIONS(6137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6137), - [anon_sym_BSLASHglsplural] = ACTIONS(6137), - [anon_sym_BSLASHGlsplural] = ACTIONS(6137), - [anon_sym_BSLASHGLSplural] = ACTIONS(6137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHglsname] = ACTIONS(6137), - [anon_sym_BSLASHGlsname] = ACTIONS(6137), - [anon_sym_BSLASHGLSname] = ACTIONS(6137), - [anon_sym_BSLASHglssymbol] = ACTIONS(6137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6137), - [anon_sym_BSLASHglsdesc] = ACTIONS(6137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6137), - [anon_sym_BSLASHglsuseri] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6137), - [anon_sym_BSLASHglsuserii] = ACTIONS(6137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6137), - [anon_sym_BSLASHglsuserv] = ACTIONS(6137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6137), - [anon_sym_BSLASHglsuservi] = ACTIONS(6137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6137), - [anon_sym_BSLASHnewacronym] = ACTIONS(6137), - [anon_sym_BSLASHacrshort] = ACTIONS(6137), - [anon_sym_BSLASHAcrshort] = ACTIONS(6137), - [anon_sym_BSLASHACRshort] = ACTIONS(6137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6137), - [anon_sym_BSLASHacrlong] = ACTIONS(6137), - [anon_sym_BSLASHAcrlong] = ACTIONS(6137), - [anon_sym_BSLASHACRlong] = ACTIONS(6137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6137), - [anon_sym_BSLASHacrfull] = ACTIONS(6137), - [anon_sym_BSLASHAcrfull] = ACTIONS(6137), - [anon_sym_BSLASHACRfull] = ACTIONS(6137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6137), - [anon_sym_BSLASHacs] = ACTIONS(6137), - [anon_sym_BSLASHAcs] = ACTIONS(6137), - [anon_sym_BSLASHacsp] = ACTIONS(6137), - [anon_sym_BSLASHAcsp] = ACTIONS(6137), - [anon_sym_BSLASHacl] = ACTIONS(6137), - [anon_sym_BSLASHAcl] = ACTIONS(6137), - [anon_sym_BSLASHaclp] = ACTIONS(6137), - [anon_sym_BSLASHAclp] = ACTIONS(6137), - [anon_sym_BSLASHacf] = ACTIONS(6137), - [anon_sym_BSLASHAcf] = ACTIONS(6137), - [anon_sym_BSLASHacfp] = ACTIONS(6137), - [anon_sym_BSLASHAcfp] = ACTIONS(6137), - [anon_sym_BSLASHac] = ACTIONS(6137), - [anon_sym_BSLASHAc] = ACTIONS(6137), - [anon_sym_BSLASHacp] = ACTIONS(6137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6137), - [anon_sym_BSLASHcolor] = ACTIONS(6137), - [anon_sym_BSLASHcolorbox] = ACTIONS(6137), - [anon_sym_BSLASHtextcolor] = ACTIONS(6137), - [anon_sym_BSLASHpagecolor] = ACTIONS(6137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6137), - [anon_sym_BSLASHtext] = ACTIONS(6137), - [anon_sym_BSLASHintertext] = ACTIONS(6137), - [anon_sym_shortintertext] = ACTIONS(6137), - }, - [490] = { - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(458), - [aux_sym__section_repeat3] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [491] = { - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(187), - [anon_sym_BSLASHpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddpart] = ACTIONS(187), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHchapter] = ACTIONS(187), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddchap] = ACTIONS(187), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(185), - [anon_sym_BSLASHsection] = ACTIONS(187), - [anon_sym_BSLASHsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddsec] = ACTIONS(187), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHparagraph] = ACTIONS(187), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph] = ACTIONS(187), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHitem] = ACTIONS(187), - [anon_sym_BSLASHitem_STAR] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHright] = ACTIONS(187), - [anon_sym_BSLASHbigr] = ACTIONS(187), - [anon_sym_BSLASHBigr] = ACTIONS(187), - [anon_sym_BSLASHbiggr] = ACTIONS(187), - [anon_sym_BSLASHBiggr] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [492] = { - [sym_command_name] = ACTIONS(6141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6141), - [anon_sym_LBRACK] = ACTIONS(6143), - [anon_sym_RBRACK] = ACTIONS(6143), - [anon_sym_COMMA] = ACTIONS(6143), - [anon_sym_EQ] = ACTIONS(6143), - [anon_sym_LPAREN] = ACTIONS(6143), - [anon_sym_RPAREN] = ACTIONS(6143), - [anon_sym_BSLASHpart] = ACTIONS(6141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddpart] = ACTIONS(6141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6143), - [anon_sym_BSLASHchapter] = ACTIONS(6141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddchap] = ACTIONS(6141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsection] = ACTIONS(6141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddsec] = ACTIONS(6141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubsection] = ACTIONS(6141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHparagraph] = ACTIONS(6141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6143), - [anon_sym_BSLASHitem] = ACTIONS(6141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6143), - [anon_sym_LBRACE] = ACTIONS(6143), - [sym_word] = ACTIONS(6141), - [sym_placeholder] = ACTIONS(6143), - [anon_sym_PLUS] = ACTIONS(6143), - [anon_sym_DASH] = ACTIONS(6143), - [anon_sym_STAR] = ACTIONS(6143), - [anon_sym_SLASH] = ACTIONS(6143), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_GT] = ACTIONS(6141), - [anon_sym_BANG] = ACTIONS(6141), - [anon_sym_PIPE] = ACTIONS(6141), - [anon_sym_COLON] = ACTIONS(6141), - [anon_sym_SQUOTE] = ACTIONS(6141), - [anon_sym__] = ACTIONS(6143), - [anon_sym_CARET] = ACTIONS(6143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6143), - [anon_sym_DOLLAR] = ACTIONS(6141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6143), - [anon_sym_BSLASHbegin] = ACTIONS(6141), - [anon_sym_BSLASHtitle] = ACTIONS(6141), - [anon_sym_BSLASHauthor] = ACTIONS(6141), - [anon_sym_BSLASHusepackage] = ACTIONS(6141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6141), - [anon_sym_BSLASHinclude] = ACTIONS(6141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6141), - [anon_sym_BSLASHinput] = ACTIONS(6141), - [anon_sym_BSLASHsubfile] = ACTIONS(6141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6141), - [anon_sym_BSLASHbibliography] = ACTIONS(6141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6141), - [anon_sym_BSLASHincludesvg] = ACTIONS(6141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6141), - [anon_sym_BSLASHimport] = ACTIONS(6141), - [anon_sym_BSLASHsubimport] = ACTIONS(6141), - [anon_sym_BSLASHinputfrom] = ACTIONS(6141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6141), - [anon_sym_BSLASHincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHcaption] = ACTIONS(6141), - [anon_sym_BSLASHcite] = ACTIONS(6141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCite] = ACTIONS(6141), - [anon_sym_BSLASHnocite] = ACTIONS(6141), - [anon_sym_BSLASHcitet] = ACTIONS(6141), - [anon_sym_BSLASHcitep] = ACTIONS(6141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteauthor] = ACTIONS(6141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitetitle] = ACTIONS(6141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteyear] = ACTIONS(6141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitedate] = ACTIONS(6141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteurl] = ACTIONS(6141), - [anon_sym_BSLASHfullcite] = ACTIONS(6141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6141), - [anon_sym_BSLASHcitealt] = ACTIONS(6141), - [anon_sym_BSLASHcitealp] = ACTIONS(6141), - [anon_sym_BSLASHcitetext] = ACTIONS(6141), - [anon_sym_BSLASHparencite] = ACTIONS(6141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHParencite] = ACTIONS(6141), - [anon_sym_BSLASHfootcite] = ACTIONS(6141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6141), - [anon_sym_BSLASHtextcite] = ACTIONS(6141), - [anon_sym_BSLASHTextcite] = ACTIONS(6141), - [anon_sym_BSLASHsmartcite] = ACTIONS(6141), - [anon_sym_BSLASHSmartcite] = ACTIONS(6141), - [anon_sym_BSLASHsupercite] = ACTIONS(6141), - [anon_sym_BSLASHautocite] = ACTIONS(6141), - [anon_sym_BSLASHAutocite] = ACTIONS(6141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHvolcite] = ACTIONS(6141), - [anon_sym_BSLASHVolcite] = ACTIONS(6141), - [anon_sym_BSLASHpvolcite] = ACTIONS(6141), - [anon_sym_BSLASHPvolcite] = ACTIONS(6141), - [anon_sym_BSLASHfvolcite] = ACTIONS(6141), - [anon_sym_BSLASHftvolcite] = ACTIONS(6141), - [anon_sym_BSLASHsvolcite] = ACTIONS(6141), - [anon_sym_BSLASHSvolcite] = ACTIONS(6141), - [anon_sym_BSLASHtvolcite] = ACTIONS(6141), - [anon_sym_BSLASHTvolcite] = ACTIONS(6141), - [anon_sym_BSLASHavolcite] = ACTIONS(6141), - [anon_sym_BSLASHAvolcite] = ACTIONS(6141), - [anon_sym_BSLASHnotecite] = ACTIONS(6141), - [anon_sym_BSLASHNotecite] = ACTIONS(6141), - [anon_sym_BSLASHpnotecite] = ACTIONS(6141), - [anon_sym_BSLASHPnotecite] = ACTIONS(6141), - [anon_sym_BSLASHfnotecite] = ACTIONS(6141), - [anon_sym_BSLASHlabel] = ACTIONS(6141), - [anon_sym_BSLASHref] = ACTIONS(6141), - [anon_sym_BSLASHeqref] = ACTIONS(6141), - [anon_sym_BSLASHvref] = ACTIONS(6141), - [anon_sym_BSLASHVref] = ACTIONS(6141), - [anon_sym_BSLASHautoref] = ACTIONS(6141), - [anon_sym_BSLASHpageref] = ACTIONS(6141), - [anon_sym_BSLASHcref] = ACTIONS(6141), - [anon_sym_BSLASHCref] = ACTIONS(6141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnameCref] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHlabelcref] = ACTIONS(6141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCrefrange] = ACTIONS(6141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnewlabel] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6143), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHdef] = ACTIONS(6141), - [anon_sym_BSLASHlet] = ACTIONS(6141), - [anon_sym_BSLASHleft] = ACTIONS(6141), - [anon_sym_BSLASHbig] = ACTIONS(6141), - [anon_sym_BSLASHBig] = ACTIONS(6141), - [anon_sym_BSLASHbigg] = ACTIONS(6141), - [anon_sym_BSLASHBigg] = ACTIONS(6141), - [anon_sym_BSLASHbigl] = ACTIONS(6141), - [anon_sym_BSLASHBigl] = ACTIONS(6141), - [anon_sym_BSLASHbiggl] = ACTIONS(6141), - [anon_sym_BSLASHBiggl] = ACTIONS(6141), - [anon_sym_BSLASHright] = ACTIONS(6141), - [anon_sym_BSLASHbigr] = ACTIONS(6141), - [anon_sym_BSLASHBigr] = ACTIONS(6141), - [anon_sym_BSLASHbiggr] = ACTIONS(6141), - [anon_sym_BSLASHBiggr] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6141), - [anon_sym_BSLASHgls] = ACTIONS(6141), - [anon_sym_BSLASHGls] = ACTIONS(6141), - [anon_sym_BSLASHGLS] = ACTIONS(6141), - [anon_sym_BSLASHglspl] = ACTIONS(6141), - [anon_sym_BSLASHGlspl] = ACTIONS(6141), - [anon_sym_BSLASHGLSpl] = ACTIONS(6141), - [anon_sym_BSLASHglsdisp] = ACTIONS(6141), - [anon_sym_BSLASHglslink] = ACTIONS(6141), - [anon_sym_BSLASHglstext] = ACTIONS(6141), - [anon_sym_BSLASHGlstext] = ACTIONS(6141), - [anon_sym_BSLASHGLStext] = ACTIONS(6141), - [anon_sym_BSLASHglsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6141), - [anon_sym_BSLASHglsplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSplural] = ACTIONS(6141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHglsname] = ACTIONS(6141), - [anon_sym_BSLASHGlsname] = ACTIONS(6141), - [anon_sym_BSLASHGLSname] = ACTIONS(6141), - [anon_sym_BSLASHglssymbol] = ACTIONS(6141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6141), - [anon_sym_BSLASHglsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6141), - [anon_sym_BSLASHglsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6141), - [anon_sym_BSLASHglsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6141), - [anon_sym_BSLASHglsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6141), - [anon_sym_BSLASHglsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6141), - [anon_sym_BSLASHnewacronym] = ACTIONS(6141), - [anon_sym_BSLASHacrshort] = ACTIONS(6141), - [anon_sym_BSLASHAcrshort] = ACTIONS(6141), - [anon_sym_BSLASHACRshort] = ACTIONS(6141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6141), - [anon_sym_BSLASHacrlong] = ACTIONS(6141), - [anon_sym_BSLASHAcrlong] = ACTIONS(6141), - [anon_sym_BSLASHACRlong] = ACTIONS(6141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6141), - [anon_sym_BSLASHacrfull] = ACTIONS(6141), - [anon_sym_BSLASHAcrfull] = ACTIONS(6141), - [anon_sym_BSLASHACRfull] = ACTIONS(6141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6141), - [anon_sym_BSLASHacs] = ACTIONS(6141), - [anon_sym_BSLASHAcs] = ACTIONS(6141), - [anon_sym_BSLASHacsp] = ACTIONS(6141), - [anon_sym_BSLASHAcsp] = ACTIONS(6141), - [anon_sym_BSLASHacl] = ACTIONS(6141), - [anon_sym_BSLASHAcl] = ACTIONS(6141), - [anon_sym_BSLASHaclp] = ACTIONS(6141), - [anon_sym_BSLASHAclp] = ACTIONS(6141), - [anon_sym_BSLASHacf] = ACTIONS(6141), - [anon_sym_BSLASHAcf] = ACTIONS(6141), - [anon_sym_BSLASHacfp] = ACTIONS(6141), - [anon_sym_BSLASHAcfp] = ACTIONS(6141), - [anon_sym_BSLASHac] = ACTIONS(6141), - [anon_sym_BSLASHAc] = ACTIONS(6141), - [anon_sym_BSLASHacp] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6141), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6141), - [anon_sym_BSLASHcolor] = ACTIONS(6141), - [anon_sym_BSLASHcolorbox] = ACTIONS(6141), - [anon_sym_BSLASHtextcolor] = ACTIONS(6141), - [anon_sym_BSLASHpagecolor] = ACTIONS(6141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6141), - [anon_sym_BSLASHtext] = ACTIONS(6141), - [anon_sym_BSLASHintertext] = ACTIONS(6141), - [anon_sym_shortintertext] = ACTIONS(6141), - }, - [493] = { - [sym_command_name] = ACTIONS(6145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6145), - [anon_sym_LBRACK] = ACTIONS(6147), - [anon_sym_RBRACK] = ACTIONS(6147), - [anon_sym_COMMA] = ACTIONS(6147), - [anon_sym_EQ] = ACTIONS(6147), - [anon_sym_LPAREN] = ACTIONS(6147), - [anon_sym_RPAREN] = ACTIONS(6147), - [anon_sym_BSLASHpart] = ACTIONS(6145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddpart] = ACTIONS(6145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6147), - [anon_sym_BSLASHchapter] = ACTIONS(6145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddchap] = ACTIONS(6145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsection] = ACTIONS(6145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddsec] = ACTIONS(6145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubsection] = ACTIONS(6145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHparagraph] = ACTIONS(6145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6147), - [anon_sym_BSLASHitem] = ACTIONS(6145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6147), - [anon_sym_LBRACE] = ACTIONS(6147), - [sym_word] = ACTIONS(6145), - [sym_placeholder] = ACTIONS(6147), - [anon_sym_PLUS] = ACTIONS(6147), - [anon_sym_DASH] = ACTIONS(6147), - [anon_sym_STAR] = ACTIONS(6147), - [anon_sym_SLASH] = ACTIONS(6147), - [anon_sym_LT] = ACTIONS(6145), - [anon_sym_GT] = ACTIONS(6145), - [anon_sym_BANG] = ACTIONS(6145), - [anon_sym_PIPE] = ACTIONS(6145), - [anon_sym_COLON] = ACTIONS(6145), - [anon_sym_SQUOTE] = ACTIONS(6145), - [anon_sym__] = ACTIONS(6147), - [anon_sym_CARET] = ACTIONS(6147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6147), - [anon_sym_DOLLAR] = ACTIONS(6145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6147), - [anon_sym_BSLASHbegin] = ACTIONS(6145), - [anon_sym_BSLASHtitle] = ACTIONS(6145), - [anon_sym_BSLASHauthor] = ACTIONS(6145), - [anon_sym_BSLASHusepackage] = ACTIONS(6145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6145), - [anon_sym_BSLASHinclude] = ACTIONS(6145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6145), - [anon_sym_BSLASHinput] = ACTIONS(6145), - [anon_sym_BSLASHsubfile] = ACTIONS(6145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6145), - [anon_sym_BSLASHbibliography] = ACTIONS(6145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6145), - [anon_sym_BSLASHincludesvg] = ACTIONS(6145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6145), - [anon_sym_BSLASHimport] = ACTIONS(6145), - [anon_sym_BSLASHsubimport] = ACTIONS(6145), - [anon_sym_BSLASHinputfrom] = ACTIONS(6145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6145), - [anon_sym_BSLASHincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHcaption] = ACTIONS(6145), - [anon_sym_BSLASHcite] = ACTIONS(6145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCite] = ACTIONS(6145), - [anon_sym_BSLASHnocite] = ACTIONS(6145), - [anon_sym_BSLASHcitet] = ACTIONS(6145), - [anon_sym_BSLASHcitep] = ACTIONS(6145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteauthor] = ACTIONS(6145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitetitle] = ACTIONS(6145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteyear] = ACTIONS(6145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitedate] = ACTIONS(6145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteurl] = ACTIONS(6145), - [anon_sym_BSLASHfullcite] = ACTIONS(6145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6145), - [anon_sym_BSLASHcitealt] = ACTIONS(6145), - [anon_sym_BSLASHcitealp] = ACTIONS(6145), - [anon_sym_BSLASHcitetext] = ACTIONS(6145), - [anon_sym_BSLASHparencite] = ACTIONS(6145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHParencite] = ACTIONS(6145), - [anon_sym_BSLASHfootcite] = ACTIONS(6145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6145), - [anon_sym_BSLASHtextcite] = ACTIONS(6145), - [anon_sym_BSLASHTextcite] = ACTIONS(6145), - [anon_sym_BSLASHsmartcite] = ACTIONS(6145), - [anon_sym_BSLASHSmartcite] = ACTIONS(6145), - [anon_sym_BSLASHsupercite] = ACTIONS(6145), - [anon_sym_BSLASHautocite] = ACTIONS(6145), - [anon_sym_BSLASHAutocite] = ACTIONS(6145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHvolcite] = ACTIONS(6145), - [anon_sym_BSLASHVolcite] = ACTIONS(6145), - [anon_sym_BSLASHpvolcite] = ACTIONS(6145), - [anon_sym_BSLASHPvolcite] = ACTIONS(6145), - [anon_sym_BSLASHfvolcite] = ACTIONS(6145), - [anon_sym_BSLASHftvolcite] = ACTIONS(6145), - [anon_sym_BSLASHsvolcite] = ACTIONS(6145), - [anon_sym_BSLASHSvolcite] = ACTIONS(6145), - [anon_sym_BSLASHtvolcite] = ACTIONS(6145), - [anon_sym_BSLASHTvolcite] = ACTIONS(6145), - [anon_sym_BSLASHavolcite] = ACTIONS(6145), - [anon_sym_BSLASHAvolcite] = ACTIONS(6145), - [anon_sym_BSLASHnotecite] = ACTIONS(6145), - [anon_sym_BSLASHNotecite] = ACTIONS(6145), - [anon_sym_BSLASHpnotecite] = ACTIONS(6145), - [anon_sym_BSLASHPnotecite] = ACTIONS(6145), - [anon_sym_BSLASHfnotecite] = ACTIONS(6145), - [anon_sym_BSLASHlabel] = ACTIONS(6145), - [anon_sym_BSLASHref] = ACTIONS(6145), - [anon_sym_BSLASHeqref] = ACTIONS(6145), - [anon_sym_BSLASHvref] = ACTIONS(6145), - [anon_sym_BSLASHVref] = ACTIONS(6145), - [anon_sym_BSLASHautoref] = ACTIONS(6145), - [anon_sym_BSLASHpageref] = ACTIONS(6145), - [anon_sym_BSLASHcref] = ACTIONS(6145), - [anon_sym_BSLASHCref] = ACTIONS(6145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnameCref] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHlabelcref] = ACTIONS(6145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCrefrange] = ACTIONS(6145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnewlabel] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6147), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHdef] = ACTIONS(6145), - [anon_sym_BSLASHlet] = ACTIONS(6145), - [anon_sym_BSLASHleft] = ACTIONS(6145), - [anon_sym_BSLASHbig] = ACTIONS(6145), - [anon_sym_BSLASHBig] = ACTIONS(6145), - [anon_sym_BSLASHbigg] = ACTIONS(6145), - [anon_sym_BSLASHBigg] = ACTIONS(6145), - [anon_sym_BSLASHbigl] = ACTIONS(6145), - [anon_sym_BSLASHBigl] = ACTIONS(6145), - [anon_sym_BSLASHbiggl] = ACTIONS(6145), - [anon_sym_BSLASHBiggl] = ACTIONS(6145), - [anon_sym_BSLASHright] = ACTIONS(6145), - [anon_sym_BSLASHbigr] = ACTIONS(6145), - [anon_sym_BSLASHBigr] = ACTIONS(6145), - [anon_sym_BSLASHbiggr] = ACTIONS(6145), - [anon_sym_BSLASHBiggr] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6145), - [anon_sym_BSLASHgls] = ACTIONS(6145), - [anon_sym_BSLASHGls] = ACTIONS(6145), - [anon_sym_BSLASHGLS] = ACTIONS(6145), - [anon_sym_BSLASHglspl] = ACTIONS(6145), - [anon_sym_BSLASHGlspl] = ACTIONS(6145), - [anon_sym_BSLASHGLSpl] = ACTIONS(6145), - [anon_sym_BSLASHglsdisp] = ACTIONS(6145), - [anon_sym_BSLASHglslink] = ACTIONS(6145), - [anon_sym_BSLASHglstext] = ACTIONS(6145), - [anon_sym_BSLASHGlstext] = ACTIONS(6145), - [anon_sym_BSLASHGLStext] = ACTIONS(6145), - [anon_sym_BSLASHglsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6145), - [anon_sym_BSLASHglsplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSplural] = ACTIONS(6145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHglsname] = ACTIONS(6145), - [anon_sym_BSLASHGlsname] = ACTIONS(6145), - [anon_sym_BSLASHGLSname] = ACTIONS(6145), - [anon_sym_BSLASHglssymbol] = ACTIONS(6145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6145), - [anon_sym_BSLASHglsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6145), - [anon_sym_BSLASHglsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6145), - [anon_sym_BSLASHglsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6145), - [anon_sym_BSLASHglsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6145), - [anon_sym_BSLASHglsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6145), - [anon_sym_BSLASHnewacronym] = ACTIONS(6145), - [anon_sym_BSLASHacrshort] = ACTIONS(6145), - [anon_sym_BSLASHAcrshort] = ACTIONS(6145), - [anon_sym_BSLASHACRshort] = ACTIONS(6145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6145), - [anon_sym_BSLASHacrlong] = ACTIONS(6145), - [anon_sym_BSLASHAcrlong] = ACTIONS(6145), - [anon_sym_BSLASHACRlong] = ACTIONS(6145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6145), - [anon_sym_BSLASHacrfull] = ACTIONS(6145), - [anon_sym_BSLASHAcrfull] = ACTIONS(6145), - [anon_sym_BSLASHACRfull] = ACTIONS(6145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6145), - [anon_sym_BSLASHacs] = ACTIONS(6145), - [anon_sym_BSLASHAcs] = ACTIONS(6145), - [anon_sym_BSLASHacsp] = ACTIONS(6145), - [anon_sym_BSLASHAcsp] = ACTIONS(6145), - [anon_sym_BSLASHacl] = ACTIONS(6145), - [anon_sym_BSLASHAcl] = ACTIONS(6145), - [anon_sym_BSLASHaclp] = ACTIONS(6145), - [anon_sym_BSLASHAclp] = ACTIONS(6145), - [anon_sym_BSLASHacf] = ACTIONS(6145), - [anon_sym_BSLASHAcf] = ACTIONS(6145), - [anon_sym_BSLASHacfp] = ACTIONS(6145), - [anon_sym_BSLASHAcfp] = ACTIONS(6145), - [anon_sym_BSLASHac] = ACTIONS(6145), - [anon_sym_BSLASHAc] = ACTIONS(6145), - [anon_sym_BSLASHacp] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6145), - [anon_sym_BSLASHcolor] = ACTIONS(6145), - [anon_sym_BSLASHcolorbox] = ACTIONS(6145), - [anon_sym_BSLASHtextcolor] = ACTIONS(6145), - [anon_sym_BSLASHpagecolor] = ACTIONS(6145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6145), - [anon_sym_BSLASHtext] = ACTIONS(6145), - [anon_sym_BSLASHintertext] = ACTIONS(6145), - [anon_sym_shortintertext] = ACTIONS(6145), - }, - [494] = { - [sym_command_name] = ACTIONS(6149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6149), - [anon_sym_LBRACK] = ACTIONS(6151), - [anon_sym_RBRACK] = ACTIONS(6151), - [anon_sym_COMMA] = ACTIONS(6151), - [anon_sym_EQ] = ACTIONS(6151), - [anon_sym_LPAREN] = ACTIONS(6151), - [anon_sym_RPAREN] = ACTIONS(6151), - [anon_sym_BSLASHpart] = ACTIONS(6149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddpart] = ACTIONS(6149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6151), - [anon_sym_BSLASHchapter] = ACTIONS(6149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddchap] = ACTIONS(6149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsection] = ACTIONS(6149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddsec] = ACTIONS(6149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubsection] = ACTIONS(6149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHparagraph] = ACTIONS(6149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6151), - [anon_sym_BSLASHitem] = ACTIONS(6149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6151), - [anon_sym_LBRACE] = ACTIONS(6151), - [sym_word] = ACTIONS(6149), - [sym_placeholder] = ACTIONS(6151), - [anon_sym_PLUS] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6151), - [anon_sym_STAR] = ACTIONS(6151), - [anon_sym_SLASH] = ACTIONS(6151), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_BANG] = ACTIONS(6149), - [anon_sym_PIPE] = ACTIONS(6149), - [anon_sym_COLON] = ACTIONS(6149), - [anon_sym_SQUOTE] = ACTIONS(6149), - [anon_sym__] = ACTIONS(6151), - [anon_sym_CARET] = ACTIONS(6151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6151), - [anon_sym_DOLLAR] = ACTIONS(6149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6151), - [anon_sym_BSLASHbegin] = ACTIONS(6149), - [anon_sym_BSLASHtitle] = ACTIONS(6149), - [anon_sym_BSLASHauthor] = ACTIONS(6149), - [anon_sym_BSLASHusepackage] = ACTIONS(6149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6149), - [anon_sym_BSLASHinclude] = ACTIONS(6149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6149), - [anon_sym_BSLASHinput] = ACTIONS(6149), - [anon_sym_BSLASHsubfile] = ACTIONS(6149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6149), - [anon_sym_BSLASHbibliography] = ACTIONS(6149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6149), - [anon_sym_BSLASHincludesvg] = ACTIONS(6149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6149), - [anon_sym_BSLASHimport] = ACTIONS(6149), - [anon_sym_BSLASHsubimport] = ACTIONS(6149), - [anon_sym_BSLASHinputfrom] = ACTIONS(6149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6149), - [anon_sym_BSLASHincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHcaption] = ACTIONS(6149), - [anon_sym_BSLASHcite] = ACTIONS(6149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCite] = ACTIONS(6149), - [anon_sym_BSLASHnocite] = ACTIONS(6149), - [anon_sym_BSLASHcitet] = ACTIONS(6149), - [anon_sym_BSLASHcitep] = ACTIONS(6149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteauthor] = ACTIONS(6149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitetitle] = ACTIONS(6149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteyear] = ACTIONS(6149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitedate] = ACTIONS(6149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteurl] = ACTIONS(6149), - [anon_sym_BSLASHfullcite] = ACTIONS(6149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6149), - [anon_sym_BSLASHcitealt] = ACTIONS(6149), - [anon_sym_BSLASHcitealp] = ACTIONS(6149), - [anon_sym_BSLASHcitetext] = ACTIONS(6149), - [anon_sym_BSLASHparencite] = ACTIONS(6149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHParencite] = ACTIONS(6149), - [anon_sym_BSLASHfootcite] = ACTIONS(6149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6149), - [anon_sym_BSLASHtextcite] = ACTIONS(6149), - [anon_sym_BSLASHTextcite] = ACTIONS(6149), - [anon_sym_BSLASHsmartcite] = ACTIONS(6149), - [anon_sym_BSLASHSmartcite] = ACTIONS(6149), - [anon_sym_BSLASHsupercite] = ACTIONS(6149), - [anon_sym_BSLASHautocite] = ACTIONS(6149), - [anon_sym_BSLASHAutocite] = ACTIONS(6149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHvolcite] = ACTIONS(6149), - [anon_sym_BSLASHVolcite] = ACTIONS(6149), - [anon_sym_BSLASHpvolcite] = ACTIONS(6149), - [anon_sym_BSLASHPvolcite] = ACTIONS(6149), - [anon_sym_BSLASHfvolcite] = ACTIONS(6149), - [anon_sym_BSLASHftvolcite] = ACTIONS(6149), - [anon_sym_BSLASHsvolcite] = ACTIONS(6149), - [anon_sym_BSLASHSvolcite] = ACTIONS(6149), - [anon_sym_BSLASHtvolcite] = ACTIONS(6149), - [anon_sym_BSLASHTvolcite] = ACTIONS(6149), - [anon_sym_BSLASHavolcite] = ACTIONS(6149), - [anon_sym_BSLASHAvolcite] = ACTIONS(6149), - [anon_sym_BSLASHnotecite] = ACTIONS(6149), - [anon_sym_BSLASHNotecite] = ACTIONS(6149), - [anon_sym_BSLASHpnotecite] = ACTIONS(6149), - [anon_sym_BSLASHPnotecite] = ACTIONS(6149), - [anon_sym_BSLASHfnotecite] = ACTIONS(6149), - [anon_sym_BSLASHlabel] = ACTIONS(6149), - [anon_sym_BSLASHref] = ACTIONS(6149), - [anon_sym_BSLASHeqref] = ACTIONS(6149), - [anon_sym_BSLASHvref] = ACTIONS(6149), - [anon_sym_BSLASHVref] = ACTIONS(6149), - [anon_sym_BSLASHautoref] = ACTIONS(6149), - [anon_sym_BSLASHpageref] = ACTIONS(6149), - [anon_sym_BSLASHcref] = ACTIONS(6149), - [anon_sym_BSLASHCref] = ACTIONS(6149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnameCref] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHlabelcref] = ACTIONS(6149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCrefrange] = ACTIONS(6149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnewlabel] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6151), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHdef] = ACTIONS(6149), - [anon_sym_BSLASHlet] = ACTIONS(6149), - [anon_sym_BSLASHleft] = ACTIONS(6149), - [anon_sym_BSLASHbig] = ACTIONS(6149), - [anon_sym_BSLASHBig] = ACTIONS(6149), - [anon_sym_BSLASHbigg] = ACTIONS(6149), - [anon_sym_BSLASHBigg] = ACTIONS(6149), - [anon_sym_BSLASHbigl] = ACTIONS(6149), - [anon_sym_BSLASHBigl] = ACTIONS(6149), - [anon_sym_BSLASHbiggl] = ACTIONS(6149), - [anon_sym_BSLASHBiggl] = ACTIONS(6149), - [anon_sym_BSLASHright] = ACTIONS(6149), - [anon_sym_BSLASHbigr] = ACTIONS(6149), - [anon_sym_BSLASHBigr] = ACTIONS(6149), - [anon_sym_BSLASHbiggr] = ACTIONS(6149), - [anon_sym_BSLASHBiggr] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6149), - [anon_sym_BSLASHgls] = ACTIONS(6149), - [anon_sym_BSLASHGls] = ACTIONS(6149), - [anon_sym_BSLASHGLS] = ACTIONS(6149), - [anon_sym_BSLASHglspl] = ACTIONS(6149), - [anon_sym_BSLASHGlspl] = ACTIONS(6149), - [anon_sym_BSLASHGLSpl] = ACTIONS(6149), - [anon_sym_BSLASHglsdisp] = ACTIONS(6149), - [anon_sym_BSLASHglslink] = ACTIONS(6149), - [anon_sym_BSLASHglstext] = ACTIONS(6149), - [anon_sym_BSLASHGlstext] = ACTIONS(6149), - [anon_sym_BSLASHGLStext] = ACTIONS(6149), - [anon_sym_BSLASHglsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6149), - [anon_sym_BSLASHglsplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSplural] = ACTIONS(6149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHglsname] = ACTIONS(6149), - [anon_sym_BSLASHGlsname] = ACTIONS(6149), - [anon_sym_BSLASHGLSname] = ACTIONS(6149), - [anon_sym_BSLASHglssymbol] = ACTIONS(6149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6149), - [anon_sym_BSLASHglsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6149), - [anon_sym_BSLASHglsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6149), - [anon_sym_BSLASHglsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6149), - [anon_sym_BSLASHglsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6149), - [anon_sym_BSLASHglsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6149), - [anon_sym_BSLASHnewacronym] = ACTIONS(6149), - [anon_sym_BSLASHacrshort] = ACTIONS(6149), - [anon_sym_BSLASHAcrshort] = ACTIONS(6149), - [anon_sym_BSLASHACRshort] = ACTIONS(6149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6149), - [anon_sym_BSLASHacrlong] = ACTIONS(6149), - [anon_sym_BSLASHAcrlong] = ACTIONS(6149), - [anon_sym_BSLASHACRlong] = ACTIONS(6149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6149), - [anon_sym_BSLASHacrfull] = ACTIONS(6149), - [anon_sym_BSLASHAcrfull] = ACTIONS(6149), - [anon_sym_BSLASHACRfull] = ACTIONS(6149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6149), - [anon_sym_BSLASHacs] = ACTIONS(6149), - [anon_sym_BSLASHAcs] = ACTIONS(6149), - [anon_sym_BSLASHacsp] = ACTIONS(6149), - [anon_sym_BSLASHAcsp] = ACTIONS(6149), - [anon_sym_BSLASHacl] = ACTIONS(6149), - [anon_sym_BSLASHAcl] = ACTIONS(6149), - [anon_sym_BSLASHaclp] = ACTIONS(6149), - [anon_sym_BSLASHAclp] = ACTIONS(6149), - [anon_sym_BSLASHacf] = ACTIONS(6149), - [anon_sym_BSLASHAcf] = ACTIONS(6149), - [anon_sym_BSLASHacfp] = ACTIONS(6149), - [anon_sym_BSLASHAcfp] = ACTIONS(6149), - [anon_sym_BSLASHac] = ACTIONS(6149), - [anon_sym_BSLASHAc] = ACTIONS(6149), - [anon_sym_BSLASHacp] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6149), - [anon_sym_BSLASHcolor] = ACTIONS(6149), - [anon_sym_BSLASHcolorbox] = ACTIONS(6149), - [anon_sym_BSLASHtextcolor] = ACTIONS(6149), - [anon_sym_BSLASHpagecolor] = ACTIONS(6149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6149), - [anon_sym_BSLASHtext] = ACTIONS(6149), - [anon_sym_BSLASHintertext] = ACTIONS(6149), - [anon_sym_shortintertext] = ACTIONS(6149), - }, - [495] = { - [sym_command_name] = ACTIONS(6153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6153), - [anon_sym_LBRACK] = ACTIONS(6155), - [anon_sym_RBRACK] = ACTIONS(6155), - [anon_sym_COMMA] = ACTIONS(6155), - [anon_sym_EQ] = ACTIONS(6155), - [anon_sym_LPAREN] = ACTIONS(6155), - [anon_sym_RPAREN] = ACTIONS(6155), - [anon_sym_BSLASHpart] = ACTIONS(6153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddpart] = ACTIONS(6153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6155), - [anon_sym_BSLASHchapter] = ACTIONS(6153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddchap] = ACTIONS(6153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsection] = ACTIONS(6153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddsec] = ACTIONS(6153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubsection] = ACTIONS(6153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHparagraph] = ACTIONS(6153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6155), - [anon_sym_BSLASHitem] = ACTIONS(6153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6155), - [anon_sym_LBRACE] = ACTIONS(6155), - [sym_word] = ACTIONS(6153), - [sym_placeholder] = ACTIONS(6155), - [anon_sym_PLUS] = ACTIONS(6155), - [anon_sym_DASH] = ACTIONS(6155), - [anon_sym_STAR] = ACTIONS(6155), - [anon_sym_SLASH] = ACTIONS(6155), - [anon_sym_LT] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6153), - [anon_sym_BANG] = ACTIONS(6153), - [anon_sym_PIPE] = ACTIONS(6153), - [anon_sym_COLON] = ACTIONS(6153), - [anon_sym_SQUOTE] = ACTIONS(6153), - [anon_sym__] = ACTIONS(6155), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6155), - [anon_sym_DOLLAR] = ACTIONS(6153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6155), - [anon_sym_BSLASHbegin] = ACTIONS(6153), - [anon_sym_BSLASHtitle] = ACTIONS(6153), - [anon_sym_BSLASHauthor] = ACTIONS(6153), - [anon_sym_BSLASHusepackage] = ACTIONS(6153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6153), - [anon_sym_BSLASHinclude] = ACTIONS(6153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6153), - [anon_sym_BSLASHinput] = ACTIONS(6153), - [anon_sym_BSLASHsubfile] = ACTIONS(6153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6153), - [anon_sym_BSLASHbibliography] = ACTIONS(6153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6153), - [anon_sym_BSLASHincludesvg] = ACTIONS(6153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6153), - [anon_sym_BSLASHimport] = ACTIONS(6153), - [anon_sym_BSLASHsubimport] = ACTIONS(6153), - [anon_sym_BSLASHinputfrom] = ACTIONS(6153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6153), - [anon_sym_BSLASHincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHcaption] = ACTIONS(6153), - [anon_sym_BSLASHcite] = ACTIONS(6153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCite] = ACTIONS(6153), - [anon_sym_BSLASHnocite] = ACTIONS(6153), - [anon_sym_BSLASHcitet] = ACTIONS(6153), - [anon_sym_BSLASHcitep] = ACTIONS(6153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteauthor] = ACTIONS(6153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitetitle] = ACTIONS(6153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteyear] = ACTIONS(6153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitedate] = ACTIONS(6153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteurl] = ACTIONS(6153), - [anon_sym_BSLASHfullcite] = ACTIONS(6153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6153), - [anon_sym_BSLASHcitealt] = ACTIONS(6153), - [anon_sym_BSLASHcitealp] = ACTIONS(6153), - [anon_sym_BSLASHcitetext] = ACTIONS(6153), - [anon_sym_BSLASHparencite] = ACTIONS(6153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHParencite] = ACTIONS(6153), - [anon_sym_BSLASHfootcite] = ACTIONS(6153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6153), - [anon_sym_BSLASHtextcite] = ACTIONS(6153), - [anon_sym_BSLASHTextcite] = ACTIONS(6153), - [anon_sym_BSLASHsmartcite] = ACTIONS(6153), - [anon_sym_BSLASHSmartcite] = ACTIONS(6153), - [anon_sym_BSLASHsupercite] = ACTIONS(6153), - [anon_sym_BSLASHautocite] = ACTIONS(6153), - [anon_sym_BSLASHAutocite] = ACTIONS(6153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHvolcite] = ACTIONS(6153), - [anon_sym_BSLASHVolcite] = ACTIONS(6153), - [anon_sym_BSLASHpvolcite] = ACTIONS(6153), - [anon_sym_BSLASHPvolcite] = ACTIONS(6153), - [anon_sym_BSLASHfvolcite] = ACTIONS(6153), - [anon_sym_BSLASHftvolcite] = ACTIONS(6153), - [anon_sym_BSLASHsvolcite] = ACTIONS(6153), - [anon_sym_BSLASHSvolcite] = ACTIONS(6153), - [anon_sym_BSLASHtvolcite] = ACTIONS(6153), - [anon_sym_BSLASHTvolcite] = ACTIONS(6153), - [anon_sym_BSLASHavolcite] = ACTIONS(6153), - [anon_sym_BSLASHAvolcite] = ACTIONS(6153), - [anon_sym_BSLASHnotecite] = ACTIONS(6153), - [anon_sym_BSLASHNotecite] = ACTIONS(6153), - [anon_sym_BSLASHpnotecite] = ACTIONS(6153), - [anon_sym_BSLASHPnotecite] = ACTIONS(6153), - [anon_sym_BSLASHfnotecite] = ACTIONS(6153), - [anon_sym_BSLASHlabel] = ACTIONS(6153), - [anon_sym_BSLASHref] = ACTIONS(6153), - [anon_sym_BSLASHeqref] = ACTIONS(6153), - [anon_sym_BSLASHvref] = ACTIONS(6153), - [anon_sym_BSLASHVref] = ACTIONS(6153), - [anon_sym_BSLASHautoref] = ACTIONS(6153), - [anon_sym_BSLASHpageref] = ACTIONS(6153), - [anon_sym_BSLASHcref] = ACTIONS(6153), - [anon_sym_BSLASHCref] = ACTIONS(6153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnameCref] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHlabelcref] = ACTIONS(6153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCrefrange] = ACTIONS(6153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnewlabel] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6155), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHdef] = ACTIONS(6153), - [anon_sym_BSLASHlet] = ACTIONS(6153), - [anon_sym_BSLASHleft] = ACTIONS(6153), - [anon_sym_BSLASHbig] = ACTIONS(6153), - [anon_sym_BSLASHBig] = ACTIONS(6153), - [anon_sym_BSLASHbigg] = ACTIONS(6153), - [anon_sym_BSLASHBigg] = ACTIONS(6153), - [anon_sym_BSLASHbigl] = ACTIONS(6153), - [anon_sym_BSLASHBigl] = ACTIONS(6153), - [anon_sym_BSLASHbiggl] = ACTIONS(6153), - [anon_sym_BSLASHBiggl] = ACTIONS(6153), - [anon_sym_BSLASHright] = ACTIONS(6153), - [anon_sym_BSLASHbigr] = ACTIONS(6153), - [anon_sym_BSLASHBigr] = ACTIONS(6153), - [anon_sym_BSLASHbiggr] = ACTIONS(6153), - [anon_sym_BSLASHBiggr] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6153), - [anon_sym_BSLASHgls] = ACTIONS(6153), - [anon_sym_BSLASHGls] = ACTIONS(6153), - [anon_sym_BSLASHGLS] = ACTIONS(6153), - [anon_sym_BSLASHglspl] = ACTIONS(6153), - [anon_sym_BSLASHGlspl] = ACTIONS(6153), - [anon_sym_BSLASHGLSpl] = ACTIONS(6153), - [anon_sym_BSLASHglsdisp] = ACTIONS(6153), - [anon_sym_BSLASHglslink] = ACTIONS(6153), - [anon_sym_BSLASHglstext] = ACTIONS(6153), - [anon_sym_BSLASHGlstext] = ACTIONS(6153), - [anon_sym_BSLASHGLStext] = ACTIONS(6153), - [anon_sym_BSLASHglsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6153), - [anon_sym_BSLASHglsplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSplural] = ACTIONS(6153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHglsname] = ACTIONS(6153), - [anon_sym_BSLASHGlsname] = ACTIONS(6153), - [anon_sym_BSLASHGLSname] = ACTIONS(6153), - [anon_sym_BSLASHglssymbol] = ACTIONS(6153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6153), - [anon_sym_BSLASHglsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6153), - [anon_sym_BSLASHglsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6153), - [anon_sym_BSLASHglsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6153), - [anon_sym_BSLASHglsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6153), - [anon_sym_BSLASHglsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6153), - [anon_sym_BSLASHnewacronym] = ACTIONS(6153), - [anon_sym_BSLASHacrshort] = ACTIONS(6153), - [anon_sym_BSLASHAcrshort] = ACTIONS(6153), - [anon_sym_BSLASHACRshort] = ACTIONS(6153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6153), - [anon_sym_BSLASHacrlong] = ACTIONS(6153), - [anon_sym_BSLASHAcrlong] = ACTIONS(6153), - [anon_sym_BSLASHACRlong] = ACTIONS(6153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6153), - [anon_sym_BSLASHacrfull] = ACTIONS(6153), - [anon_sym_BSLASHAcrfull] = ACTIONS(6153), - [anon_sym_BSLASHACRfull] = ACTIONS(6153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6153), - [anon_sym_BSLASHacs] = ACTIONS(6153), - [anon_sym_BSLASHAcs] = ACTIONS(6153), - [anon_sym_BSLASHacsp] = ACTIONS(6153), - [anon_sym_BSLASHAcsp] = ACTIONS(6153), - [anon_sym_BSLASHacl] = ACTIONS(6153), - [anon_sym_BSLASHAcl] = ACTIONS(6153), - [anon_sym_BSLASHaclp] = ACTIONS(6153), - [anon_sym_BSLASHAclp] = ACTIONS(6153), - [anon_sym_BSLASHacf] = ACTIONS(6153), - [anon_sym_BSLASHAcf] = ACTIONS(6153), - [anon_sym_BSLASHacfp] = ACTIONS(6153), - [anon_sym_BSLASHAcfp] = ACTIONS(6153), - [anon_sym_BSLASHac] = ACTIONS(6153), - [anon_sym_BSLASHAc] = ACTIONS(6153), - [anon_sym_BSLASHacp] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6153), - [anon_sym_BSLASHcolor] = ACTIONS(6153), - [anon_sym_BSLASHcolorbox] = ACTIONS(6153), - [anon_sym_BSLASHtextcolor] = ACTIONS(6153), - [anon_sym_BSLASHpagecolor] = ACTIONS(6153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6153), - [anon_sym_BSLASHtext] = ACTIONS(6153), - [anon_sym_BSLASHintertext] = ACTIONS(6153), - [anon_sym_shortintertext] = ACTIONS(6153), - }, - [496] = { - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(195), - [anon_sym_BSLASHpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddpart] = ACTIONS(195), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(195), - [anon_sym_BSLASHsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddsec] = ACTIONS(195), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHparagraph] = ACTIONS(195), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubparagraph] = ACTIONS(195), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHitem] = ACTIONS(195), - [anon_sym_BSLASHitem_STAR] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHright] = ACTIONS(195), - [anon_sym_BSLASHbigr] = ACTIONS(195), - [anon_sym_BSLASHBigr] = ACTIONS(195), - [anon_sym_BSLASHbiggr] = ACTIONS(195), - [anon_sym_BSLASHBiggr] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [497] = { - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(199), - [anon_sym_BSLASHpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddpart] = ACTIONS(199), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHchapter] = ACTIONS(199), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddchap] = ACTIONS(199), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHparagraph] = ACTIONS(199), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubparagraph] = ACTIONS(199), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHitem] = ACTIONS(199), - [anon_sym_BSLASHitem_STAR] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHright] = ACTIONS(199), - [anon_sym_BSLASHbigr] = ACTIONS(199), - [anon_sym_BSLASHBigr] = ACTIONS(199), - [anon_sym_BSLASHbiggr] = ACTIONS(199), - [anon_sym_BSLASHBiggr] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [498] = { - [sym_command_name] = ACTIONS(6157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_EQ] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_BSLASHpart] = ACTIONS(6157), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddpart] = ACTIONS(6157), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6159), - [anon_sym_BSLASHchapter] = ACTIONS(6157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddchap] = ACTIONS(6157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsection] = ACTIONS(6157), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddsec] = ACTIONS(6157), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubsection] = ACTIONS(6157), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6157), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHparagraph] = ACTIONS(6157), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6157), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6159), - [anon_sym_BSLASHitem] = ACTIONS(6157), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6159), - [anon_sym_LBRACE] = ACTIONS(6159), - [sym_word] = ACTIONS(6157), - [sym_placeholder] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6157), - [anon_sym_GT] = ACTIONS(6157), - [anon_sym_BANG] = ACTIONS(6157), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_SQUOTE] = ACTIONS(6157), - [anon_sym__] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6159), - [anon_sym_DOLLAR] = ACTIONS(6157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6159), - [anon_sym_BSLASHbegin] = ACTIONS(6157), - [anon_sym_BSLASHtitle] = ACTIONS(6157), - [anon_sym_BSLASHauthor] = ACTIONS(6157), - [anon_sym_BSLASHusepackage] = ACTIONS(6157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6157), - [anon_sym_BSLASHinclude] = ACTIONS(6157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6157), - [anon_sym_BSLASHinput] = ACTIONS(6157), - [anon_sym_BSLASHsubfile] = ACTIONS(6157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6157), - [anon_sym_BSLASHbibliography] = ACTIONS(6157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6157), - [anon_sym_BSLASHincludesvg] = ACTIONS(6157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6157), - [anon_sym_BSLASHimport] = ACTIONS(6157), - [anon_sym_BSLASHsubimport] = ACTIONS(6157), - [anon_sym_BSLASHinputfrom] = ACTIONS(6157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6157), - [anon_sym_BSLASHincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHcaption] = ACTIONS(6157), - [anon_sym_BSLASHcite] = ACTIONS(6157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCite] = ACTIONS(6157), - [anon_sym_BSLASHnocite] = ACTIONS(6157), - [anon_sym_BSLASHcitet] = ACTIONS(6157), - [anon_sym_BSLASHcitep] = ACTIONS(6157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteauthor] = ACTIONS(6157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitetitle] = ACTIONS(6157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteyear] = ACTIONS(6157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitedate] = ACTIONS(6157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteurl] = ACTIONS(6157), - [anon_sym_BSLASHfullcite] = ACTIONS(6157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6157), - [anon_sym_BSLASHcitealt] = ACTIONS(6157), - [anon_sym_BSLASHcitealp] = ACTIONS(6157), - [anon_sym_BSLASHcitetext] = ACTIONS(6157), - [anon_sym_BSLASHparencite] = ACTIONS(6157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHParencite] = ACTIONS(6157), - [anon_sym_BSLASHfootcite] = ACTIONS(6157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6157), - [anon_sym_BSLASHtextcite] = ACTIONS(6157), - [anon_sym_BSLASHTextcite] = ACTIONS(6157), - [anon_sym_BSLASHsmartcite] = ACTIONS(6157), - [anon_sym_BSLASHSmartcite] = ACTIONS(6157), - [anon_sym_BSLASHsupercite] = ACTIONS(6157), - [anon_sym_BSLASHautocite] = ACTIONS(6157), - [anon_sym_BSLASHAutocite] = ACTIONS(6157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHvolcite] = ACTIONS(6157), - [anon_sym_BSLASHVolcite] = ACTIONS(6157), - [anon_sym_BSLASHpvolcite] = ACTIONS(6157), - [anon_sym_BSLASHPvolcite] = ACTIONS(6157), - [anon_sym_BSLASHfvolcite] = ACTIONS(6157), - [anon_sym_BSLASHftvolcite] = ACTIONS(6157), - [anon_sym_BSLASHsvolcite] = ACTIONS(6157), - [anon_sym_BSLASHSvolcite] = ACTIONS(6157), - [anon_sym_BSLASHtvolcite] = ACTIONS(6157), - [anon_sym_BSLASHTvolcite] = ACTIONS(6157), - [anon_sym_BSLASHavolcite] = ACTIONS(6157), - [anon_sym_BSLASHAvolcite] = ACTIONS(6157), - [anon_sym_BSLASHnotecite] = ACTIONS(6157), - [anon_sym_BSLASHNotecite] = ACTIONS(6157), - [anon_sym_BSLASHpnotecite] = ACTIONS(6157), - [anon_sym_BSLASHPnotecite] = ACTIONS(6157), - [anon_sym_BSLASHfnotecite] = ACTIONS(6157), - [anon_sym_BSLASHlabel] = ACTIONS(6157), - [anon_sym_BSLASHref] = ACTIONS(6157), - [anon_sym_BSLASHeqref] = ACTIONS(6157), - [anon_sym_BSLASHvref] = ACTIONS(6157), - [anon_sym_BSLASHVref] = ACTIONS(6157), - [anon_sym_BSLASHautoref] = ACTIONS(6157), - [anon_sym_BSLASHpageref] = ACTIONS(6157), - [anon_sym_BSLASHcref] = ACTIONS(6157), - [anon_sym_BSLASHCref] = ACTIONS(6157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnameCref] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHlabelcref] = ACTIONS(6157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCrefrange] = ACTIONS(6157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnewlabel] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6159), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHdef] = ACTIONS(6157), - [anon_sym_BSLASHlet] = ACTIONS(6157), - [anon_sym_BSLASHleft] = ACTIONS(6157), - [anon_sym_BSLASHbig] = ACTIONS(6157), - [anon_sym_BSLASHBig] = ACTIONS(6157), - [anon_sym_BSLASHbigg] = ACTIONS(6157), - [anon_sym_BSLASHBigg] = ACTIONS(6157), - [anon_sym_BSLASHbigl] = ACTIONS(6157), - [anon_sym_BSLASHBigl] = ACTIONS(6157), - [anon_sym_BSLASHbiggl] = ACTIONS(6157), - [anon_sym_BSLASHBiggl] = ACTIONS(6157), - [anon_sym_BSLASHright] = ACTIONS(6157), - [anon_sym_BSLASHbigr] = ACTIONS(6157), - [anon_sym_BSLASHBigr] = ACTIONS(6157), - [anon_sym_BSLASHbiggr] = ACTIONS(6157), - [anon_sym_BSLASHBiggr] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6157), - [anon_sym_BSLASHgls] = ACTIONS(6157), - [anon_sym_BSLASHGls] = ACTIONS(6157), - [anon_sym_BSLASHGLS] = ACTIONS(6157), - [anon_sym_BSLASHglspl] = ACTIONS(6157), - [anon_sym_BSLASHGlspl] = ACTIONS(6157), - [anon_sym_BSLASHGLSpl] = ACTIONS(6157), - [anon_sym_BSLASHglsdisp] = ACTIONS(6157), - [anon_sym_BSLASHglslink] = ACTIONS(6157), - [anon_sym_BSLASHglstext] = ACTIONS(6157), - [anon_sym_BSLASHGlstext] = ACTIONS(6157), - [anon_sym_BSLASHGLStext] = ACTIONS(6157), - [anon_sym_BSLASHglsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6157), - [anon_sym_BSLASHglsplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSplural] = ACTIONS(6157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHglsname] = ACTIONS(6157), - [anon_sym_BSLASHGlsname] = ACTIONS(6157), - [anon_sym_BSLASHGLSname] = ACTIONS(6157), - [anon_sym_BSLASHglssymbol] = ACTIONS(6157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6157), - [anon_sym_BSLASHglsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6157), - [anon_sym_BSLASHglsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6157), - [anon_sym_BSLASHglsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6157), - [anon_sym_BSLASHglsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6157), - [anon_sym_BSLASHglsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6157), - [anon_sym_BSLASHnewacronym] = ACTIONS(6157), - [anon_sym_BSLASHacrshort] = ACTIONS(6157), - [anon_sym_BSLASHAcrshort] = ACTIONS(6157), - [anon_sym_BSLASHACRshort] = ACTIONS(6157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6157), - [anon_sym_BSLASHacrlong] = ACTIONS(6157), - [anon_sym_BSLASHAcrlong] = ACTIONS(6157), - [anon_sym_BSLASHACRlong] = ACTIONS(6157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6157), - [anon_sym_BSLASHacrfull] = ACTIONS(6157), - [anon_sym_BSLASHAcrfull] = ACTIONS(6157), - [anon_sym_BSLASHACRfull] = ACTIONS(6157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6157), - [anon_sym_BSLASHacs] = ACTIONS(6157), - [anon_sym_BSLASHAcs] = ACTIONS(6157), - [anon_sym_BSLASHacsp] = ACTIONS(6157), - [anon_sym_BSLASHAcsp] = ACTIONS(6157), - [anon_sym_BSLASHacl] = ACTIONS(6157), - [anon_sym_BSLASHAcl] = ACTIONS(6157), - [anon_sym_BSLASHaclp] = ACTIONS(6157), - [anon_sym_BSLASHAclp] = ACTIONS(6157), - [anon_sym_BSLASHacf] = ACTIONS(6157), - [anon_sym_BSLASHAcf] = ACTIONS(6157), - [anon_sym_BSLASHacfp] = ACTIONS(6157), - [anon_sym_BSLASHAcfp] = ACTIONS(6157), - [anon_sym_BSLASHac] = ACTIONS(6157), - [anon_sym_BSLASHAc] = ACTIONS(6157), - [anon_sym_BSLASHacp] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6157), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6157), - [anon_sym_BSLASHcolor] = ACTIONS(6157), - [anon_sym_BSLASHcolorbox] = ACTIONS(6157), - [anon_sym_BSLASHtextcolor] = ACTIONS(6157), - [anon_sym_BSLASHpagecolor] = ACTIONS(6157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6157), - [anon_sym_BSLASHtext] = ACTIONS(6157), - [anon_sym_BSLASHintertext] = ACTIONS(6157), - [anon_sym_shortintertext] = ACTIONS(6157), - }, - [499] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [500] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [501] = { - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(455), - [aux_sym__section_repeat6] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [502] = { - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(456), - [aux_sym__section_repeat5] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [503] = { - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(457), - [aux_sym__section_repeat4] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [504] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(5846), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(5846), - [anon_sym_RBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [505] = { - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(458), - [aux_sym__section_repeat3] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [506] = { - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddpart] = ACTIONS(189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddsec] = ACTIONS(189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHparagraph] = ACTIONS(189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHright] = ACTIONS(189), - [anon_sym_BSLASHbigr] = ACTIONS(189), - [anon_sym_BSLASHBigr] = ACTIONS(189), - [anon_sym_BSLASHbiggr] = ACTIONS(189), - [anon_sym_BSLASHBiggr] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [507] = { - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddpart] = ACTIONS(205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHchapter] = ACTIONS(205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddchap] = ACTIONS(205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(207), - [anon_sym_BSLASHsection] = ACTIONS(205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddsec] = ACTIONS(205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHitem] = ACTIONS(205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHright] = ACTIONS(205), - [anon_sym_BSLASHbigr] = ACTIONS(205), - [anon_sym_BSLASHBigr] = ACTIONS(205), - [anon_sym_BSLASHbiggr] = ACTIONS(205), - [anon_sym_BSLASHBiggr] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [508] = { - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(459), - [aux_sym__section_repeat2] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(2140), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [509] = { - [sym_command_name] = ACTIONS(6161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_EQ] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_BSLASHpart] = ACTIONS(6161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddpart] = ACTIONS(6161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6163), - [anon_sym_BSLASHchapter] = ACTIONS(6161), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddchap] = ACTIONS(6161), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsection] = ACTIONS(6161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddsec] = ACTIONS(6161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubsection] = ACTIONS(6161), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6161), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHparagraph] = ACTIONS(6161), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6161), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6163), - [anon_sym_BSLASHitem] = ACTIONS(6161), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6163), - [anon_sym_LBRACE] = ACTIONS(6163), - [sym_word] = ACTIONS(6161), - [sym_placeholder] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6163), - [anon_sym_DASH] = ACTIONS(6163), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_COLON] = ACTIONS(6161), - [anon_sym_SQUOTE] = ACTIONS(6161), - [anon_sym__] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6163), - [anon_sym_DOLLAR] = ACTIONS(6161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6163), - [anon_sym_BSLASHbegin] = ACTIONS(6161), - [anon_sym_BSLASHtitle] = ACTIONS(6161), - [anon_sym_BSLASHauthor] = ACTIONS(6161), - [anon_sym_BSLASHusepackage] = ACTIONS(6161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6161), - [anon_sym_BSLASHinclude] = ACTIONS(6161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6161), - [anon_sym_BSLASHinput] = ACTIONS(6161), - [anon_sym_BSLASHsubfile] = ACTIONS(6161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6161), - [anon_sym_BSLASHbibliography] = ACTIONS(6161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6161), - [anon_sym_BSLASHincludesvg] = ACTIONS(6161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6161), - [anon_sym_BSLASHimport] = ACTIONS(6161), - [anon_sym_BSLASHsubimport] = ACTIONS(6161), - [anon_sym_BSLASHinputfrom] = ACTIONS(6161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6161), - [anon_sym_BSLASHincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHcaption] = ACTIONS(6161), - [anon_sym_BSLASHcite] = ACTIONS(6161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCite] = ACTIONS(6161), - [anon_sym_BSLASHnocite] = ACTIONS(6161), - [anon_sym_BSLASHcitet] = ACTIONS(6161), - [anon_sym_BSLASHcitep] = ACTIONS(6161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteauthor] = ACTIONS(6161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitetitle] = ACTIONS(6161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteyear] = ACTIONS(6161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitedate] = ACTIONS(6161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteurl] = ACTIONS(6161), - [anon_sym_BSLASHfullcite] = ACTIONS(6161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6161), - [anon_sym_BSLASHcitealt] = ACTIONS(6161), - [anon_sym_BSLASHcitealp] = ACTIONS(6161), - [anon_sym_BSLASHcitetext] = ACTIONS(6161), - [anon_sym_BSLASHparencite] = ACTIONS(6161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHParencite] = ACTIONS(6161), - [anon_sym_BSLASHfootcite] = ACTIONS(6161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6161), - [anon_sym_BSLASHtextcite] = ACTIONS(6161), - [anon_sym_BSLASHTextcite] = ACTIONS(6161), - [anon_sym_BSLASHsmartcite] = ACTIONS(6161), - [anon_sym_BSLASHSmartcite] = ACTIONS(6161), - [anon_sym_BSLASHsupercite] = ACTIONS(6161), - [anon_sym_BSLASHautocite] = ACTIONS(6161), - [anon_sym_BSLASHAutocite] = ACTIONS(6161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHvolcite] = ACTIONS(6161), - [anon_sym_BSLASHVolcite] = ACTIONS(6161), - [anon_sym_BSLASHpvolcite] = ACTIONS(6161), - [anon_sym_BSLASHPvolcite] = ACTIONS(6161), - [anon_sym_BSLASHfvolcite] = ACTIONS(6161), - [anon_sym_BSLASHftvolcite] = ACTIONS(6161), - [anon_sym_BSLASHsvolcite] = ACTIONS(6161), - [anon_sym_BSLASHSvolcite] = ACTIONS(6161), - [anon_sym_BSLASHtvolcite] = ACTIONS(6161), - [anon_sym_BSLASHTvolcite] = ACTIONS(6161), - [anon_sym_BSLASHavolcite] = ACTIONS(6161), - [anon_sym_BSLASHAvolcite] = ACTIONS(6161), - [anon_sym_BSLASHnotecite] = ACTIONS(6161), - [anon_sym_BSLASHNotecite] = ACTIONS(6161), - [anon_sym_BSLASHpnotecite] = ACTIONS(6161), - [anon_sym_BSLASHPnotecite] = ACTIONS(6161), - [anon_sym_BSLASHfnotecite] = ACTIONS(6161), - [anon_sym_BSLASHlabel] = ACTIONS(6161), - [anon_sym_BSLASHref] = ACTIONS(6161), - [anon_sym_BSLASHeqref] = ACTIONS(6161), - [anon_sym_BSLASHvref] = ACTIONS(6161), - [anon_sym_BSLASHVref] = ACTIONS(6161), - [anon_sym_BSLASHautoref] = ACTIONS(6161), - [anon_sym_BSLASHpageref] = ACTIONS(6161), - [anon_sym_BSLASHcref] = ACTIONS(6161), - [anon_sym_BSLASHCref] = ACTIONS(6161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnameCref] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHlabelcref] = ACTIONS(6161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCrefrange] = ACTIONS(6161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnewlabel] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6163), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHdef] = ACTIONS(6161), - [anon_sym_BSLASHlet] = ACTIONS(6161), - [anon_sym_BSLASHleft] = ACTIONS(6161), - [anon_sym_BSLASHbig] = ACTIONS(6161), - [anon_sym_BSLASHBig] = ACTIONS(6161), - [anon_sym_BSLASHbigg] = ACTIONS(6161), - [anon_sym_BSLASHBigg] = ACTIONS(6161), - [anon_sym_BSLASHbigl] = ACTIONS(6161), - [anon_sym_BSLASHBigl] = ACTIONS(6161), - [anon_sym_BSLASHbiggl] = ACTIONS(6161), - [anon_sym_BSLASHBiggl] = ACTIONS(6161), - [anon_sym_BSLASHright] = ACTIONS(6161), - [anon_sym_BSLASHbigr] = ACTIONS(6161), - [anon_sym_BSLASHBigr] = ACTIONS(6161), - [anon_sym_BSLASHbiggr] = ACTIONS(6161), - [anon_sym_BSLASHBiggr] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6161), - [anon_sym_BSLASHgls] = ACTIONS(6161), - [anon_sym_BSLASHGls] = ACTIONS(6161), - [anon_sym_BSLASHGLS] = ACTIONS(6161), - [anon_sym_BSLASHglspl] = ACTIONS(6161), - [anon_sym_BSLASHGlspl] = ACTIONS(6161), - [anon_sym_BSLASHGLSpl] = ACTIONS(6161), - [anon_sym_BSLASHglsdisp] = ACTIONS(6161), - [anon_sym_BSLASHglslink] = ACTIONS(6161), - [anon_sym_BSLASHglstext] = ACTIONS(6161), - [anon_sym_BSLASHGlstext] = ACTIONS(6161), - [anon_sym_BSLASHGLStext] = ACTIONS(6161), - [anon_sym_BSLASHglsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6161), - [anon_sym_BSLASHglsplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSplural] = ACTIONS(6161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHglsname] = ACTIONS(6161), - [anon_sym_BSLASHGlsname] = ACTIONS(6161), - [anon_sym_BSLASHGLSname] = ACTIONS(6161), - [anon_sym_BSLASHglssymbol] = ACTIONS(6161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6161), - [anon_sym_BSLASHglsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6161), - [anon_sym_BSLASHglsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6161), - [anon_sym_BSLASHglsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6161), - [anon_sym_BSLASHglsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6161), - [anon_sym_BSLASHglsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6161), - [anon_sym_BSLASHnewacronym] = ACTIONS(6161), - [anon_sym_BSLASHacrshort] = ACTIONS(6161), - [anon_sym_BSLASHAcrshort] = ACTIONS(6161), - [anon_sym_BSLASHACRshort] = ACTIONS(6161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6161), - [anon_sym_BSLASHacrlong] = ACTIONS(6161), - [anon_sym_BSLASHAcrlong] = ACTIONS(6161), - [anon_sym_BSLASHACRlong] = ACTIONS(6161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6161), - [anon_sym_BSLASHacrfull] = ACTIONS(6161), - [anon_sym_BSLASHAcrfull] = ACTIONS(6161), - [anon_sym_BSLASHACRfull] = ACTIONS(6161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6161), - [anon_sym_BSLASHacs] = ACTIONS(6161), - [anon_sym_BSLASHAcs] = ACTIONS(6161), - [anon_sym_BSLASHacsp] = ACTIONS(6161), - [anon_sym_BSLASHAcsp] = ACTIONS(6161), - [anon_sym_BSLASHacl] = ACTIONS(6161), - [anon_sym_BSLASHAcl] = ACTIONS(6161), - [anon_sym_BSLASHaclp] = ACTIONS(6161), - [anon_sym_BSLASHAclp] = ACTIONS(6161), - [anon_sym_BSLASHacf] = ACTIONS(6161), - [anon_sym_BSLASHAcf] = ACTIONS(6161), - [anon_sym_BSLASHacfp] = ACTIONS(6161), - [anon_sym_BSLASHAcfp] = ACTIONS(6161), - [anon_sym_BSLASHac] = ACTIONS(6161), - [anon_sym_BSLASHAc] = ACTIONS(6161), - [anon_sym_BSLASHacp] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6161), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6161), - [anon_sym_BSLASHcolor] = ACTIONS(6161), - [anon_sym_BSLASHcolorbox] = ACTIONS(6161), - [anon_sym_BSLASHtextcolor] = ACTIONS(6161), - [anon_sym_BSLASHpagecolor] = ACTIONS(6161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6161), - [anon_sym_BSLASHtext] = ACTIONS(6161), - [anon_sym_BSLASHintertext] = ACTIONS(6161), - [anon_sym_shortintertext] = ACTIONS(6161), - }, - [510] = { - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(459), - [aux_sym__section_repeat2] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(5826), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [511] = { - [sym_command_name] = ACTIONS(6165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6165), - [anon_sym_LBRACK] = ACTIONS(6167), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_EQ] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_BSLASHpart] = ACTIONS(6165), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddpart] = ACTIONS(6165), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6167), - [anon_sym_BSLASHchapter] = ACTIONS(6165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddchap] = ACTIONS(6165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsection] = ACTIONS(6165), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddsec] = ACTIONS(6165), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubsection] = ACTIONS(6165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6165), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHparagraph] = ACTIONS(6165), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6165), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6167), - [anon_sym_BSLASHitem] = ACTIONS(6165), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6167), - [anon_sym_LBRACE] = ACTIONS(6167), - [sym_word] = ACTIONS(6165), - [sym_placeholder] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6167), - [anon_sym_DASH] = ACTIONS(6167), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_COLON] = ACTIONS(6165), - [anon_sym_SQUOTE] = ACTIONS(6165), - [anon_sym__] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6167), - [anon_sym_BSLASHbegin] = ACTIONS(6165), - [anon_sym_BSLASHtitle] = ACTIONS(6165), - [anon_sym_BSLASHauthor] = ACTIONS(6165), - [anon_sym_BSLASHusepackage] = ACTIONS(6165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6165), - [anon_sym_BSLASHinclude] = ACTIONS(6165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6165), - [anon_sym_BSLASHinput] = ACTIONS(6165), - [anon_sym_BSLASHsubfile] = ACTIONS(6165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6165), - [anon_sym_BSLASHbibliography] = ACTIONS(6165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6165), - [anon_sym_BSLASHincludesvg] = ACTIONS(6165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6165), - [anon_sym_BSLASHimport] = ACTIONS(6165), - [anon_sym_BSLASHsubimport] = ACTIONS(6165), - [anon_sym_BSLASHinputfrom] = ACTIONS(6165), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6165), - [anon_sym_BSLASHincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHcaption] = ACTIONS(6165), - [anon_sym_BSLASHcite] = ACTIONS(6165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCite] = ACTIONS(6165), - [anon_sym_BSLASHnocite] = ACTIONS(6165), - [anon_sym_BSLASHcitet] = ACTIONS(6165), - [anon_sym_BSLASHcitep] = ACTIONS(6165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteauthor] = ACTIONS(6165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitetitle] = ACTIONS(6165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteyear] = ACTIONS(6165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitedate] = ACTIONS(6165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteurl] = ACTIONS(6165), - [anon_sym_BSLASHfullcite] = ACTIONS(6165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6165), - [anon_sym_BSLASHcitealt] = ACTIONS(6165), - [anon_sym_BSLASHcitealp] = ACTIONS(6165), - [anon_sym_BSLASHcitetext] = ACTIONS(6165), - [anon_sym_BSLASHparencite] = ACTIONS(6165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHParencite] = ACTIONS(6165), - [anon_sym_BSLASHfootcite] = ACTIONS(6165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6165), - [anon_sym_BSLASHtextcite] = ACTIONS(6165), - [anon_sym_BSLASHTextcite] = ACTIONS(6165), - [anon_sym_BSLASHsmartcite] = ACTIONS(6165), - [anon_sym_BSLASHSmartcite] = ACTIONS(6165), - [anon_sym_BSLASHsupercite] = ACTIONS(6165), - [anon_sym_BSLASHautocite] = ACTIONS(6165), - [anon_sym_BSLASHAutocite] = ACTIONS(6165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHvolcite] = ACTIONS(6165), - [anon_sym_BSLASHVolcite] = ACTIONS(6165), - [anon_sym_BSLASHpvolcite] = ACTIONS(6165), - [anon_sym_BSLASHPvolcite] = ACTIONS(6165), - [anon_sym_BSLASHfvolcite] = ACTIONS(6165), - [anon_sym_BSLASHftvolcite] = ACTIONS(6165), - [anon_sym_BSLASHsvolcite] = ACTIONS(6165), - [anon_sym_BSLASHSvolcite] = ACTIONS(6165), - [anon_sym_BSLASHtvolcite] = ACTIONS(6165), - [anon_sym_BSLASHTvolcite] = ACTIONS(6165), - [anon_sym_BSLASHavolcite] = ACTIONS(6165), - [anon_sym_BSLASHAvolcite] = ACTIONS(6165), - [anon_sym_BSLASHnotecite] = ACTIONS(6165), - [anon_sym_BSLASHNotecite] = ACTIONS(6165), - [anon_sym_BSLASHpnotecite] = ACTIONS(6165), - [anon_sym_BSLASHPnotecite] = ACTIONS(6165), - [anon_sym_BSLASHfnotecite] = ACTIONS(6165), - [anon_sym_BSLASHlabel] = ACTIONS(6165), - [anon_sym_BSLASHref] = ACTIONS(6165), - [anon_sym_BSLASHeqref] = ACTIONS(6165), - [anon_sym_BSLASHvref] = ACTIONS(6165), - [anon_sym_BSLASHVref] = ACTIONS(6165), - [anon_sym_BSLASHautoref] = ACTIONS(6165), - [anon_sym_BSLASHpageref] = ACTIONS(6165), - [anon_sym_BSLASHcref] = ACTIONS(6165), - [anon_sym_BSLASHCref] = ACTIONS(6165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnameCref] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHlabelcref] = ACTIONS(6165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCrefrange] = ACTIONS(6165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnewlabel] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6167), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHdef] = ACTIONS(6165), - [anon_sym_BSLASHlet] = ACTIONS(6165), - [anon_sym_BSLASHleft] = ACTIONS(6165), - [anon_sym_BSLASHbig] = ACTIONS(6165), - [anon_sym_BSLASHBig] = ACTIONS(6165), - [anon_sym_BSLASHbigg] = ACTIONS(6165), - [anon_sym_BSLASHBigg] = ACTIONS(6165), - [anon_sym_BSLASHbigl] = ACTIONS(6165), - [anon_sym_BSLASHBigl] = ACTIONS(6165), - [anon_sym_BSLASHbiggl] = ACTIONS(6165), - [anon_sym_BSLASHBiggl] = ACTIONS(6165), - [anon_sym_BSLASHright] = ACTIONS(6165), - [anon_sym_BSLASHbigr] = ACTIONS(6165), - [anon_sym_BSLASHBigr] = ACTIONS(6165), - [anon_sym_BSLASHbiggr] = ACTIONS(6165), - [anon_sym_BSLASHBiggr] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6165), - [anon_sym_BSLASHgls] = ACTIONS(6165), - [anon_sym_BSLASHGls] = ACTIONS(6165), - [anon_sym_BSLASHGLS] = ACTIONS(6165), - [anon_sym_BSLASHglspl] = ACTIONS(6165), - [anon_sym_BSLASHGlspl] = ACTIONS(6165), - [anon_sym_BSLASHGLSpl] = ACTIONS(6165), - [anon_sym_BSLASHglsdisp] = ACTIONS(6165), - [anon_sym_BSLASHglslink] = ACTIONS(6165), - [anon_sym_BSLASHglstext] = ACTIONS(6165), - [anon_sym_BSLASHGlstext] = ACTIONS(6165), - [anon_sym_BSLASHGLStext] = ACTIONS(6165), - [anon_sym_BSLASHglsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6165), - [anon_sym_BSLASHglsplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSplural] = ACTIONS(6165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHglsname] = ACTIONS(6165), - [anon_sym_BSLASHGlsname] = ACTIONS(6165), - [anon_sym_BSLASHGLSname] = ACTIONS(6165), - [anon_sym_BSLASHglssymbol] = ACTIONS(6165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6165), - [anon_sym_BSLASHglsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6165), - [anon_sym_BSLASHglsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6165), - [anon_sym_BSLASHglsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6165), - [anon_sym_BSLASHglsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6165), - [anon_sym_BSLASHglsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6165), - [anon_sym_BSLASHnewacronym] = ACTIONS(6165), - [anon_sym_BSLASHacrshort] = ACTIONS(6165), - [anon_sym_BSLASHAcrshort] = ACTIONS(6165), - [anon_sym_BSLASHACRshort] = ACTIONS(6165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6165), - [anon_sym_BSLASHacrlong] = ACTIONS(6165), - [anon_sym_BSLASHAcrlong] = ACTIONS(6165), - [anon_sym_BSLASHACRlong] = ACTIONS(6165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6165), - [anon_sym_BSLASHacrfull] = ACTIONS(6165), - [anon_sym_BSLASHAcrfull] = ACTIONS(6165), - [anon_sym_BSLASHACRfull] = ACTIONS(6165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6165), - [anon_sym_BSLASHacs] = ACTIONS(6165), - [anon_sym_BSLASHAcs] = ACTIONS(6165), - [anon_sym_BSLASHacsp] = ACTIONS(6165), - [anon_sym_BSLASHAcsp] = ACTIONS(6165), - [anon_sym_BSLASHacl] = ACTIONS(6165), - [anon_sym_BSLASHAcl] = ACTIONS(6165), - [anon_sym_BSLASHaclp] = ACTIONS(6165), - [anon_sym_BSLASHAclp] = ACTIONS(6165), - [anon_sym_BSLASHacf] = ACTIONS(6165), - [anon_sym_BSLASHAcf] = ACTIONS(6165), - [anon_sym_BSLASHacfp] = ACTIONS(6165), - [anon_sym_BSLASHAcfp] = ACTIONS(6165), - [anon_sym_BSLASHac] = ACTIONS(6165), - [anon_sym_BSLASHAc] = ACTIONS(6165), - [anon_sym_BSLASHacp] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6165), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6165), - [anon_sym_BSLASHcolor] = ACTIONS(6165), - [anon_sym_BSLASHcolorbox] = ACTIONS(6165), - [anon_sym_BSLASHtextcolor] = ACTIONS(6165), - [anon_sym_BSLASHpagecolor] = ACTIONS(6165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6165), - [anon_sym_BSLASHtext] = ACTIONS(6165), - [anon_sym_BSLASHintertext] = ACTIONS(6165), - [anon_sym_shortintertext] = ACTIONS(6165), - }, - [512] = { - [sym_command_name] = ACTIONS(6169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6169), - [anon_sym_LBRACK] = ACTIONS(6171), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_EQ] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_BSLASHpart] = ACTIONS(6169), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddpart] = ACTIONS(6169), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6171), - [anon_sym_BSLASHchapter] = ACTIONS(6169), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddchap] = ACTIONS(6169), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsection] = ACTIONS(6169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddsec] = ACTIONS(6169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubsection] = ACTIONS(6169), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHparagraph] = ACTIONS(6169), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6169), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6171), - [anon_sym_BSLASHitem] = ACTIONS(6169), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6171), - [anon_sym_LBRACE] = ACTIONS(6171), - [sym_word] = ACTIONS(6169), - [sym_placeholder] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6171), - [anon_sym_DASH] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_COLON] = ACTIONS(6169), - [anon_sym_SQUOTE] = ACTIONS(6169), - [anon_sym__] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6171), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6171), - [anon_sym_DOLLAR] = ACTIONS(6169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6171), - [anon_sym_BSLASHbegin] = ACTIONS(6169), - [anon_sym_BSLASHtitle] = ACTIONS(6169), - [anon_sym_BSLASHauthor] = ACTIONS(6169), - [anon_sym_BSLASHusepackage] = ACTIONS(6169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6169), - [anon_sym_BSLASHinclude] = ACTIONS(6169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6169), - [anon_sym_BSLASHinput] = ACTIONS(6169), - [anon_sym_BSLASHsubfile] = ACTIONS(6169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6169), - [anon_sym_BSLASHbibliography] = ACTIONS(6169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6169), - [anon_sym_BSLASHincludesvg] = ACTIONS(6169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6169), - [anon_sym_BSLASHimport] = ACTIONS(6169), - [anon_sym_BSLASHsubimport] = ACTIONS(6169), - [anon_sym_BSLASHinputfrom] = ACTIONS(6169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6169), - [anon_sym_BSLASHincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHcaption] = ACTIONS(6169), - [anon_sym_BSLASHcite] = ACTIONS(6169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCite] = ACTIONS(6169), - [anon_sym_BSLASHnocite] = ACTIONS(6169), - [anon_sym_BSLASHcitet] = ACTIONS(6169), - [anon_sym_BSLASHcitep] = ACTIONS(6169), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteauthor] = ACTIONS(6169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitetitle] = ACTIONS(6169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteyear] = ACTIONS(6169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitedate] = ACTIONS(6169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteurl] = ACTIONS(6169), - [anon_sym_BSLASHfullcite] = ACTIONS(6169), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6169), - [anon_sym_BSLASHcitealt] = ACTIONS(6169), - [anon_sym_BSLASHcitealp] = ACTIONS(6169), - [anon_sym_BSLASHcitetext] = ACTIONS(6169), - [anon_sym_BSLASHparencite] = ACTIONS(6169), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHParencite] = ACTIONS(6169), - [anon_sym_BSLASHfootcite] = ACTIONS(6169), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6169), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6169), - [anon_sym_BSLASHtextcite] = ACTIONS(6169), - [anon_sym_BSLASHTextcite] = ACTIONS(6169), - [anon_sym_BSLASHsmartcite] = ACTIONS(6169), - [anon_sym_BSLASHSmartcite] = ACTIONS(6169), - [anon_sym_BSLASHsupercite] = ACTIONS(6169), - [anon_sym_BSLASHautocite] = ACTIONS(6169), - [anon_sym_BSLASHAutocite] = ACTIONS(6169), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHvolcite] = ACTIONS(6169), - [anon_sym_BSLASHVolcite] = ACTIONS(6169), - [anon_sym_BSLASHpvolcite] = ACTIONS(6169), - [anon_sym_BSLASHPvolcite] = ACTIONS(6169), - [anon_sym_BSLASHfvolcite] = ACTIONS(6169), - [anon_sym_BSLASHftvolcite] = ACTIONS(6169), - [anon_sym_BSLASHsvolcite] = ACTIONS(6169), - [anon_sym_BSLASHSvolcite] = ACTIONS(6169), - [anon_sym_BSLASHtvolcite] = ACTIONS(6169), - [anon_sym_BSLASHTvolcite] = ACTIONS(6169), - [anon_sym_BSLASHavolcite] = ACTIONS(6169), - [anon_sym_BSLASHAvolcite] = ACTIONS(6169), - [anon_sym_BSLASHnotecite] = ACTIONS(6169), - [anon_sym_BSLASHNotecite] = ACTIONS(6169), - [anon_sym_BSLASHpnotecite] = ACTIONS(6169), - [anon_sym_BSLASHPnotecite] = ACTIONS(6169), - [anon_sym_BSLASHfnotecite] = ACTIONS(6169), - [anon_sym_BSLASHlabel] = ACTIONS(6169), - [anon_sym_BSLASHref] = ACTIONS(6169), - [anon_sym_BSLASHeqref] = ACTIONS(6169), - [anon_sym_BSLASHvref] = ACTIONS(6169), - [anon_sym_BSLASHVref] = ACTIONS(6169), - [anon_sym_BSLASHautoref] = ACTIONS(6169), - [anon_sym_BSLASHpageref] = ACTIONS(6169), - [anon_sym_BSLASHcref] = ACTIONS(6169), - [anon_sym_BSLASHCref] = ACTIONS(6169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnameCref] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHlabelcref] = ACTIONS(6169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCrefrange] = ACTIONS(6169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnewlabel] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6171), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHdef] = ACTIONS(6169), - [anon_sym_BSLASHlet] = ACTIONS(6169), - [anon_sym_BSLASHleft] = ACTIONS(6169), - [anon_sym_BSLASHbig] = ACTIONS(6169), - [anon_sym_BSLASHBig] = ACTIONS(6169), - [anon_sym_BSLASHbigg] = ACTIONS(6169), - [anon_sym_BSLASHBigg] = ACTIONS(6169), - [anon_sym_BSLASHbigl] = ACTIONS(6169), - [anon_sym_BSLASHBigl] = ACTIONS(6169), - [anon_sym_BSLASHbiggl] = ACTIONS(6169), - [anon_sym_BSLASHBiggl] = ACTIONS(6169), - [anon_sym_BSLASHright] = ACTIONS(6169), - [anon_sym_BSLASHbigr] = ACTIONS(6169), - [anon_sym_BSLASHBigr] = ACTIONS(6169), - [anon_sym_BSLASHbiggr] = ACTIONS(6169), - [anon_sym_BSLASHBiggr] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6169), - [anon_sym_BSLASHgls] = ACTIONS(6169), - [anon_sym_BSLASHGls] = ACTIONS(6169), - [anon_sym_BSLASHGLS] = ACTIONS(6169), - [anon_sym_BSLASHglspl] = ACTIONS(6169), - [anon_sym_BSLASHGlspl] = ACTIONS(6169), - [anon_sym_BSLASHGLSpl] = ACTIONS(6169), - [anon_sym_BSLASHglsdisp] = ACTIONS(6169), - [anon_sym_BSLASHglslink] = ACTIONS(6169), - [anon_sym_BSLASHglstext] = ACTIONS(6169), - [anon_sym_BSLASHGlstext] = ACTIONS(6169), - [anon_sym_BSLASHGLStext] = ACTIONS(6169), - [anon_sym_BSLASHglsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6169), - [anon_sym_BSLASHglsplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSplural] = ACTIONS(6169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHglsname] = ACTIONS(6169), - [anon_sym_BSLASHGlsname] = ACTIONS(6169), - [anon_sym_BSLASHGLSname] = ACTIONS(6169), - [anon_sym_BSLASHglssymbol] = ACTIONS(6169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6169), - [anon_sym_BSLASHglsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6169), - [anon_sym_BSLASHglsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6169), - [anon_sym_BSLASHglsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6169), - [anon_sym_BSLASHglsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6169), - [anon_sym_BSLASHglsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6169), - [anon_sym_BSLASHnewacronym] = ACTIONS(6169), - [anon_sym_BSLASHacrshort] = ACTIONS(6169), - [anon_sym_BSLASHAcrshort] = ACTIONS(6169), - [anon_sym_BSLASHACRshort] = ACTIONS(6169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6169), - [anon_sym_BSLASHacrlong] = ACTIONS(6169), - [anon_sym_BSLASHAcrlong] = ACTIONS(6169), - [anon_sym_BSLASHACRlong] = ACTIONS(6169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6169), - [anon_sym_BSLASHacrfull] = ACTIONS(6169), - [anon_sym_BSLASHAcrfull] = ACTIONS(6169), - [anon_sym_BSLASHACRfull] = ACTIONS(6169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6169), - [anon_sym_BSLASHacs] = ACTIONS(6169), - [anon_sym_BSLASHAcs] = ACTIONS(6169), - [anon_sym_BSLASHacsp] = ACTIONS(6169), - [anon_sym_BSLASHAcsp] = ACTIONS(6169), - [anon_sym_BSLASHacl] = ACTIONS(6169), - [anon_sym_BSLASHAcl] = ACTIONS(6169), - [anon_sym_BSLASHaclp] = ACTIONS(6169), - [anon_sym_BSLASHAclp] = ACTIONS(6169), - [anon_sym_BSLASHacf] = ACTIONS(6169), - [anon_sym_BSLASHAcf] = ACTIONS(6169), - [anon_sym_BSLASHacfp] = ACTIONS(6169), - [anon_sym_BSLASHAcfp] = ACTIONS(6169), - [anon_sym_BSLASHac] = ACTIONS(6169), - [anon_sym_BSLASHAc] = ACTIONS(6169), - [anon_sym_BSLASHacp] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6169), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6169), - [anon_sym_BSLASHcolor] = ACTIONS(6169), - [anon_sym_BSLASHcolorbox] = ACTIONS(6169), - [anon_sym_BSLASHtextcolor] = ACTIONS(6169), - [anon_sym_BSLASHpagecolor] = ACTIONS(6169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6169), - [anon_sym_BSLASHtext] = ACTIONS(6169), - [anon_sym_BSLASHintertext] = ACTIONS(6169), - [anon_sym_shortintertext] = ACTIONS(6169), - }, - [513] = { - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(458), - [aux_sym__section_repeat3] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(5826), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [514] = { - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(457), - [aux_sym__section_repeat4] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(5826), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [515] = { - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(456), - [aux_sym__section_repeat5] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(5826), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [516] = { - [sym_command_name] = ACTIONS(6173), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6173), - [anon_sym_LBRACK] = ACTIONS(6175), - [anon_sym_RBRACK] = ACTIONS(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_EQ] = ACTIONS(6175), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_BSLASHpart] = ACTIONS(6173), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddpart] = ACTIONS(6173), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6175), - [anon_sym_BSLASHchapter] = ACTIONS(6173), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddchap] = ACTIONS(6173), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsection] = ACTIONS(6173), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddsec] = ACTIONS(6173), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubsection] = ACTIONS(6173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6173), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHparagraph] = ACTIONS(6173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6173), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6175), - [anon_sym_BSLASHitem] = ACTIONS(6173), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6175), - [anon_sym_LBRACE] = ACTIONS(6175), - [sym_word] = ACTIONS(6173), - [sym_placeholder] = ACTIONS(6175), - [anon_sym_PLUS] = ACTIONS(6175), - [anon_sym_DASH] = ACTIONS(6175), - [anon_sym_STAR] = ACTIONS(6175), - [anon_sym_SLASH] = ACTIONS(6175), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_BANG] = ACTIONS(6173), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_COLON] = ACTIONS(6173), - [anon_sym_SQUOTE] = ACTIONS(6173), - [anon_sym__] = ACTIONS(6175), - [anon_sym_CARET] = ACTIONS(6175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6175), - [anon_sym_DOLLAR] = ACTIONS(6173), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6175), - [anon_sym_BSLASHbegin] = ACTIONS(6173), - [anon_sym_BSLASHtitle] = ACTIONS(6173), - [anon_sym_BSLASHauthor] = ACTIONS(6173), - [anon_sym_BSLASHusepackage] = ACTIONS(6173), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6173), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6173), - [anon_sym_BSLASHinclude] = ACTIONS(6173), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6173), - [anon_sym_BSLASHinput] = ACTIONS(6173), - [anon_sym_BSLASHsubfile] = ACTIONS(6173), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6173), - [anon_sym_BSLASHbibliography] = ACTIONS(6173), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6173), - [anon_sym_BSLASHincludesvg] = ACTIONS(6173), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6173), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6173), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6173), - [anon_sym_BSLASHimport] = ACTIONS(6173), - [anon_sym_BSLASHsubimport] = ACTIONS(6173), - [anon_sym_BSLASHinputfrom] = ACTIONS(6173), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6173), - [anon_sym_BSLASHincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHcaption] = ACTIONS(6173), - [anon_sym_BSLASHcite] = ACTIONS(6173), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCite] = ACTIONS(6173), - [anon_sym_BSLASHnocite] = ACTIONS(6173), - [anon_sym_BSLASHcitet] = ACTIONS(6173), - [anon_sym_BSLASHcitep] = ACTIONS(6173), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteauthor] = ACTIONS(6173), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6173), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitetitle] = ACTIONS(6173), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteyear] = ACTIONS(6173), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitedate] = ACTIONS(6173), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteurl] = ACTIONS(6173), - [anon_sym_BSLASHfullcite] = ACTIONS(6173), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6173), - [anon_sym_BSLASHcitealt] = ACTIONS(6173), - [anon_sym_BSLASHcitealp] = ACTIONS(6173), - [anon_sym_BSLASHcitetext] = ACTIONS(6173), - [anon_sym_BSLASHparencite] = ACTIONS(6173), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHParencite] = ACTIONS(6173), - [anon_sym_BSLASHfootcite] = ACTIONS(6173), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6173), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6173), - [anon_sym_BSLASHtextcite] = ACTIONS(6173), - [anon_sym_BSLASHTextcite] = ACTIONS(6173), - [anon_sym_BSLASHsmartcite] = ACTIONS(6173), - [anon_sym_BSLASHSmartcite] = ACTIONS(6173), - [anon_sym_BSLASHsupercite] = ACTIONS(6173), - [anon_sym_BSLASHautocite] = ACTIONS(6173), - [anon_sym_BSLASHAutocite] = ACTIONS(6173), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHvolcite] = ACTIONS(6173), - [anon_sym_BSLASHVolcite] = ACTIONS(6173), - [anon_sym_BSLASHpvolcite] = ACTIONS(6173), - [anon_sym_BSLASHPvolcite] = ACTIONS(6173), - [anon_sym_BSLASHfvolcite] = ACTIONS(6173), - [anon_sym_BSLASHftvolcite] = ACTIONS(6173), - [anon_sym_BSLASHsvolcite] = ACTIONS(6173), - [anon_sym_BSLASHSvolcite] = ACTIONS(6173), - [anon_sym_BSLASHtvolcite] = ACTIONS(6173), - [anon_sym_BSLASHTvolcite] = ACTIONS(6173), - [anon_sym_BSLASHavolcite] = ACTIONS(6173), - [anon_sym_BSLASHAvolcite] = ACTIONS(6173), - [anon_sym_BSLASHnotecite] = ACTIONS(6173), - [anon_sym_BSLASHNotecite] = ACTIONS(6173), - [anon_sym_BSLASHpnotecite] = ACTIONS(6173), - [anon_sym_BSLASHPnotecite] = ACTIONS(6173), - [anon_sym_BSLASHfnotecite] = ACTIONS(6173), - [anon_sym_BSLASHlabel] = ACTIONS(6173), - [anon_sym_BSLASHref] = ACTIONS(6173), - [anon_sym_BSLASHeqref] = ACTIONS(6173), - [anon_sym_BSLASHvref] = ACTIONS(6173), - [anon_sym_BSLASHVref] = ACTIONS(6173), - [anon_sym_BSLASHautoref] = ACTIONS(6173), - [anon_sym_BSLASHpageref] = ACTIONS(6173), - [anon_sym_BSLASHcref] = ACTIONS(6173), - [anon_sym_BSLASHCref] = ACTIONS(6173), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnameCref] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHlabelcref] = ACTIONS(6173), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCrefrange] = ACTIONS(6173), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnewlabel] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6173), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6173), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6175), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHdef] = ACTIONS(6173), - [anon_sym_BSLASHlet] = ACTIONS(6173), - [anon_sym_BSLASHleft] = ACTIONS(6173), - [anon_sym_BSLASHbig] = ACTIONS(6173), - [anon_sym_BSLASHBig] = ACTIONS(6173), - [anon_sym_BSLASHbigg] = ACTIONS(6173), - [anon_sym_BSLASHBigg] = ACTIONS(6173), - [anon_sym_BSLASHbigl] = ACTIONS(6173), - [anon_sym_BSLASHBigl] = ACTIONS(6173), - [anon_sym_BSLASHbiggl] = ACTIONS(6173), - [anon_sym_BSLASHBiggl] = ACTIONS(6173), - [anon_sym_BSLASHright] = ACTIONS(6173), - [anon_sym_BSLASHbigr] = ACTIONS(6173), - [anon_sym_BSLASHBigr] = ACTIONS(6173), - [anon_sym_BSLASHbiggr] = ACTIONS(6173), - [anon_sym_BSLASHBiggr] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6173), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6173), - [anon_sym_BSLASHgls] = ACTIONS(6173), - [anon_sym_BSLASHGls] = ACTIONS(6173), - [anon_sym_BSLASHGLS] = ACTIONS(6173), - [anon_sym_BSLASHglspl] = ACTIONS(6173), - [anon_sym_BSLASHGlspl] = ACTIONS(6173), - [anon_sym_BSLASHGLSpl] = ACTIONS(6173), - [anon_sym_BSLASHglsdisp] = ACTIONS(6173), - [anon_sym_BSLASHglslink] = ACTIONS(6173), - [anon_sym_BSLASHglstext] = ACTIONS(6173), - [anon_sym_BSLASHGlstext] = ACTIONS(6173), - [anon_sym_BSLASHGLStext] = ACTIONS(6173), - [anon_sym_BSLASHglsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6173), - [anon_sym_BSLASHglsplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSplural] = ACTIONS(6173), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHglsname] = ACTIONS(6173), - [anon_sym_BSLASHGlsname] = ACTIONS(6173), - [anon_sym_BSLASHGLSname] = ACTIONS(6173), - [anon_sym_BSLASHglssymbol] = ACTIONS(6173), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6173), - [anon_sym_BSLASHglsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6173), - [anon_sym_BSLASHglsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6173), - [anon_sym_BSLASHglsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6173), - [anon_sym_BSLASHglsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6173), - [anon_sym_BSLASHglsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6173), - [anon_sym_BSLASHnewacronym] = ACTIONS(6173), - [anon_sym_BSLASHacrshort] = ACTIONS(6173), - [anon_sym_BSLASHAcrshort] = ACTIONS(6173), - [anon_sym_BSLASHACRshort] = ACTIONS(6173), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6173), - [anon_sym_BSLASHacrlong] = ACTIONS(6173), - [anon_sym_BSLASHAcrlong] = ACTIONS(6173), - [anon_sym_BSLASHACRlong] = ACTIONS(6173), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6173), - [anon_sym_BSLASHacrfull] = ACTIONS(6173), - [anon_sym_BSLASHAcrfull] = ACTIONS(6173), - [anon_sym_BSLASHACRfull] = ACTIONS(6173), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6173), - [anon_sym_BSLASHacs] = ACTIONS(6173), - [anon_sym_BSLASHAcs] = ACTIONS(6173), - [anon_sym_BSLASHacsp] = ACTIONS(6173), - [anon_sym_BSLASHAcsp] = ACTIONS(6173), - [anon_sym_BSLASHacl] = ACTIONS(6173), - [anon_sym_BSLASHAcl] = ACTIONS(6173), - [anon_sym_BSLASHaclp] = ACTIONS(6173), - [anon_sym_BSLASHAclp] = ACTIONS(6173), - [anon_sym_BSLASHacf] = ACTIONS(6173), - [anon_sym_BSLASHAcf] = ACTIONS(6173), - [anon_sym_BSLASHacfp] = ACTIONS(6173), - [anon_sym_BSLASHAcfp] = ACTIONS(6173), - [anon_sym_BSLASHac] = ACTIONS(6173), - [anon_sym_BSLASHAc] = ACTIONS(6173), - [anon_sym_BSLASHacp] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6173), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6173), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6173), - [anon_sym_BSLASHcolor] = ACTIONS(6173), - [anon_sym_BSLASHcolorbox] = ACTIONS(6173), - [anon_sym_BSLASHtextcolor] = ACTIONS(6173), - [anon_sym_BSLASHpagecolor] = ACTIONS(6173), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6173), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6173), - [anon_sym_BSLASHtext] = ACTIONS(6173), - [anon_sym_BSLASHintertext] = ACTIONS(6173), - [anon_sym_shortintertext] = ACTIONS(6173), - }, - [517] = { - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(455), - [aux_sym__section_repeat6] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(5826), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [518] = { - [sym_command_name] = ACTIONS(6177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6177), - [anon_sym_LBRACK] = ACTIONS(6179), - [anon_sym_RBRACK] = ACTIONS(6179), - [anon_sym_COMMA] = ACTIONS(6179), - [anon_sym_EQ] = ACTIONS(6179), - [anon_sym_LPAREN] = ACTIONS(6179), - [anon_sym_RPAREN] = ACTIONS(6179), - [anon_sym_BSLASHpart] = ACTIONS(6177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddpart] = ACTIONS(6177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6179), - [anon_sym_BSLASHchapter] = ACTIONS(6177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddchap] = ACTIONS(6177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsection] = ACTIONS(6177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddsec] = ACTIONS(6177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubsection] = ACTIONS(6177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHparagraph] = ACTIONS(6177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6179), - [anon_sym_BSLASHitem] = ACTIONS(6177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6179), - [anon_sym_LBRACE] = ACTIONS(6179), - [sym_word] = ACTIONS(6177), - [sym_placeholder] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6179), - [anon_sym_DASH] = ACTIONS(6179), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6177), - [anon_sym_GT] = ACTIONS(6177), - [anon_sym_BANG] = ACTIONS(6177), - [anon_sym_PIPE] = ACTIONS(6177), - [anon_sym_COLON] = ACTIONS(6177), - [anon_sym_SQUOTE] = ACTIONS(6177), - [anon_sym__] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), - [anon_sym_DOLLAR] = ACTIONS(6177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), - [anon_sym_BSLASHbegin] = ACTIONS(6177), - [anon_sym_BSLASHtitle] = ACTIONS(6177), - [anon_sym_BSLASHauthor] = ACTIONS(6177), - [anon_sym_BSLASHusepackage] = ACTIONS(6177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6177), - [anon_sym_BSLASHinclude] = ACTIONS(6177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6177), - [anon_sym_BSLASHinput] = ACTIONS(6177), - [anon_sym_BSLASHsubfile] = ACTIONS(6177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6177), - [anon_sym_BSLASHbibliography] = ACTIONS(6177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6177), - [anon_sym_BSLASHincludesvg] = ACTIONS(6177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6177), - [anon_sym_BSLASHimport] = ACTIONS(6177), - [anon_sym_BSLASHsubimport] = ACTIONS(6177), - [anon_sym_BSLASHinputfrom] = ACTIONS(6177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6177), - [anon_sym_BSLASHincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHcaption] = ACTIONS(6177), - [anon_sym_BSLASHcite] = ACTIONS(6177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCite] = ACTIONS(6177), - [anon_sym_BSLASHnocite] = ACTIONS(6177), - [anon_sym_BSLASHcitet] = ACTIONS(6177), - [anon_sym_BSLASHcitep] = ACTIONS(6177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteauthor] = ACTIONS(6177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitetitle] = ACTIONS(6177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteyear] = ACTIONS(6177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitedate] = ACTIONS(6177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteurl] = ACTIONS(6177), - [anon_sym_BSLASHfullcite] = ACTIONS(6177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6177), - [anon_sym_BSLASHcitealt] = ACTIONS(6177), - [anon_sym_BSLASHcitealp] = ACTIONS(6177), - [anon_sym_BSLASHcitetext] = ACTIONS(6177), - [anon_sym_BSLASHparencite] = ACTIONS(6177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHParencite] = ACTIONS(6177), - [anon_sym_BSLASHfootcite] = ACTIONS(6177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6177), - [anon_sym_BSLASHtextcite] = ACTIONS(6177), - [anon_sym_BSLASHTextcite] = ACTIONS(6177), - [anon_sym_BSLASHsmartcite] = ACTIONS(6177), - [anon_sym_BSLASHSmartcite] = ACTIONS(6177), - [anon_sym_BSLASHsupercite] = ACTIONS(6177), - [anon_sym_BSLASHautocite] = ACTIONS(6177), - [anon_sym_BSLASHAutocite] = ACTIONS(6177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHvolcite] = ACTIONS(6177), - [anon_sym_BSLASHVolcite] = ACTIONS(6177), - [anon_sym_BSLASHpvolcite] = ACTIONS(6177), - [anon_sym_BSLASHPvolcite] = ACTIONS(6177), - [anon_sym_BSLASHfvolcite] = ACTIONS(6177), - [anon_sym_BSLASHftvolcite] = ACTIONS(6177), - [anon_sym_BSLASHsvolcite] = ACTIONS(6177), - [anon_sym_BSLASHSvolcite] = ACTIONS(6177), - [anon_sym_BSLASHtvolcite] = ACTIONS(6177), - [anon_sym_BSLASHTvolcite] = ACTIONS(6177), - [anon_sym_BSLASHavolcite] = ACTIONS(6177), - [anon_sym_BSLASHAvolcite] = ACTIONS(6177), - [anon_sym_BSLASHnotecite] = ACTIONS(6177), - [anon_sym_BSLASHNotecite] = ACTIONS(6177), - [anon_sym_BSLASHpnotecite] = ACTIONS(6177), - [anon_sym_BSLASHPnotecite] = ACTIONS(6177), - [anon_sym_BSLASHfnotecite] = ACTIONS(6177), - [anon_sym_BSLASHlabel] = ACTIONS(6177), - [anon_sym_BSLASHref] = ACTIONS(6177), - [anon_sym_BSLASHeqref] = ACTIONS(6177), - [anon_sym_BSLASHvref] = ACTIONS(6177), - [anon_sym_BSLASHVref] = ACTIONS(6177), - [anon_sym_BSLASHautoref] = ACTIONS(6177), - [anon_sym_BSLASHpageref] = ACTIONS(6177), - [anon_sym_BSLASHcref] = ACTIONS(6177), - [anon_sym_BSLASHCref] = ACTIONS(6177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnameCref] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHlabelcref] = ACTIONS(6177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCrefrange] = ACTIONS(6177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnewlabel] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHdef] = ACTIONS(6177), - [anon_sym_BSLASHlet] = ACTIONS(6177), - [anon_sym_BSLASHleft] = ACTIONS(6177), - [anon_sym_BSLASHbig] = ACTIONS(6177), - [anon_sym_BSLASHBig] = ACTIONS(6177), - [anon_sym_BSLASHbigg] = ACTIONS(6177), - [anon_sym_BSLASHBigg] = ACTIONS(6177), - [anon_sym_BSLASHbigl] = ACTIONS(6177), - [anon_sym_BSLASHBigl] = ACTIONS(6177), - [anon_sym_BSLASHbiggl] = ACTIONS(6177), - [anon_sym_BSLASHBiggl] = ACTIONS(6177), - [anon_sym_BSLASHright] = ACTIONS(6177), - [anon_sym_BSLASHbigr] = ACTIONS(6177), - [anon_sym_BSLASHBigr] = ACTIONS(6177), - [anon_sym_BSLASHbiggr] = ACTIONS(6177), - [anon_sym_BSLASHBiggr] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6177), - [anon_sym_BSLASHgls] = ACTIONS(6177), - [anon_sym_BSLASHGls] = ACTIONS(6177), - [anon_sym_BSLASHGLS] = ACTIONS(6177), - [anon_sym_BSLASHglspl] = ACTIONS(6177), - [anon_sym_BSLASHGlspl] = ACTIONS(6177), - [anon_sym_BSLASHGLSpl] = ACTIONS(6177), - [anon_sym_BSLASHglsdisp] = ACTIONS(6177), - [anon_sym_BSLASHglslink] = ACTIONS(6177), - [anon_sym_BSLASHglstext] = ACTIONS(6177), - [anon_sym_BSLASHGlstext] = ACTIONS(6177), - [anon_sym_BSLASHGLStext] = ACTIONS(6177), - [anon_sym_BSLASHglsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6177), - [anon_sym_BSLASHglsplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSplural] = ACTIONS(6177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHglsname] = ACTIONS(6177), - [anon_sym_BSLASHGlsname] = ACTIONS(6177), - [anon_sym_BSLASHGLSname] = ACTIONS(6177), - [anon_sym_BSLASHglssymbol] = ACTIONS(6177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6177), - [anon_sym_BSLASHglsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6177), - [anon_sym_BSLASHglsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6177), - [anon_sym_BSLASHglsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6177), - [anon_sym_BSLASHglsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6177), - [anon_sym_BSLASHglsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6177), - [anon_sym_BSLASHnewacronym] = ACTIONS(6177), - [anon_sym_BSLASHacrshort] = ACTIONS(6177), - [anon_sym_BSLASHAcrshort] = ACTIONS(6177), - [anon_sym_BSLASHACRshort] = ACTIONS(6177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6177), - [anon_sym_BSLASHacrlong] = ACTIONS(6177), - [anon_sym_BSLASHAcrlong] = ACTIONS(6177), - [anon_sym_BSLASHACRlong] = ACTIONS(6177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6177), - [anon_sym_BSLASHacrfull] = ACTIONS(6177), - [anon_sym_BSLASHAcrfull] = ACTIONS(6177), - [anon_sym_BSLASHACRfull] = ACTIONS(6177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6177), - [anon_sym_BSLASHacs] = ACTIONS(6177), - [anon_sym_BSLASHAcs] = ACTIONS(6177), - [anon_sym_BSLASHacsp] = ACTIONS(6177), - [anon_sym_BSLASHAcsp] = ACTIONS(6177), - [anon_sym_BSLASHacl] = ACTIONS(6177), - [anon_sym_BSLASHAcl] = ACTIONS(6177), - [anon_sym_BSLASHaclp] = ACTIONS(6177), - [anon_sym_BSLASHAclp] = ACTIONS(6177), - [anon_sym_BSLASHacf] = ACTIONS(6177), - [anon_sym_BSLASHAcf] = ACTIONS(6177), - [anon_sym_BSLASHacfp] = ACTIONS(6177), - [anon_sym_BSLASHAcfp] = ACTIONS(6177), - [anon_sym_BSLASHac] = ACTIONS(6177), - [anon_sym_BSLASHAc] = ACTIONS(6177), - [anon_sym_BSLASHacp] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6177), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6177), - [anon_sym_BSLASHcolor] = ACTIONS(6177), - [anon_sym_BSLASHcolorbox] = ACTIONS(6177), - [anon_sym_BSLASHtextcolor] = ACTIONS(6177), - [anon_sym_BSLASHpagecolor] = ACTIONS(6177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6177), - [anon_sym_BSLASHtext] = ACTIONS(6177), - [anon_sym_BSLASHintertext] = ACTIONS(6177), - [anon_sym_shortintertext] = ACTIONS(6177), - }, - [519] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(5826), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [520] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(5826), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [521] = { - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(458), - [aux_sym__section_repeat3] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(5846), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [anon_sym_RBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [522] = { - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(457), - [aux_sym__section_repeat4] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(5846), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [anon_sym_RBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [523] = { - [sym_command_name] = ACTIONS(6181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6181), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_EQ] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_BSLASHpart] = ACTIONS(6181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddpart] = ACTIONS(6181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6183), - [anon_sym_BSLASHchapter] = ACTIONS(6181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddchap] = ACTIONS(6181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsection] = ACTIONS(6181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddsec] = ACTIONS(6181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubsection] = ACTIONS(6181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHparagraph] = ACTIONS(6181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6183), - [anon_sym_BSLASHitem] = ACTIONS(6181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6183), - [anon_sym_LBRACE] = ACTIONS(6183), - [sym_word] = ACTIONS(6181), - [sym_placeholder] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6183), - [anon_sym_DASH] = ACTIONS(6183), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_COLON] = ACTIONS(6181), - [anon_sym_SQUOTE] = ACTIONS(6181), - [anon_sym__] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), - [anon_sym_BSLASHbegin] = ACTIONS(6181), - [anon_sym_BSLASHtitle] = ACTIONS(6181), - [anon_sym_BSLASHauthor] = ACTIONS(6181), - [anon_sym_BSLASHusepackage] = ACTIONS(6181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), - [anon_sym_BSLASHinclude] = ACTIONS(6181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), - [anon_sym_BSLASHinput] = ACTIONS(6181), - [anon_sym_BSLASHsubfile] = ACTIONS(6181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), - [anon_sym_BSLASHbibliography] = ACTIONS(6181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), - [anon_sym_BSLASHincludesvg] = ACTIONS(6181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), - [anon_sym_BSLASHimport] = ACTIONS(6181), - [anon_sym_BSLASHsubimport] = ACTIONS(6181), - [anon_sym_BSLASHinputfrom] = ACTIONS(6181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), - [anon_sym_BSLASHincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHcaption] = ACTIONS(6181), - [anon_sym_BSLASHcite] = ACTIONS(6181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCite] = ACTIONS(6181), - [anon_sym_BSLASHnocite] = ACTIONS(6181), - [anon_sym_BSLASHcitet] = ACTIONS(6181), - [anon_sym_BSLASHcitep] = ACTIONS(6181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteauthor] = ACTIONS(6181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitetitle] = ACTIONS(6181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteyear] = ACTIONS(6181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitedate] = ACTIONS(6181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteurl] = ACTIONS(6181), - [anon_sym_BSLASHfullcite] = ACTIONS(6181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), - [anon_sym_BSLASHcitealt] = ACTIONS(6181), - [anon_sym_BSLASHcitealp] = ACTIONS(6181), - [anon_sym_BSLASHcitetext] = ACTIONS(6181), - [anon_sym_BSLASHparencite] = ACTIONS(6181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHParencite] = ACTIONS(6181), - [anon_sym_BSLASHfootcite] = ACTIONS(6181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), - [anon_sym_BSLASHtextcite] = ACTIONS(6181), - [anon_sym_BSLASHTextcite] = ACTIONS(6181), - [anon_sym_BSLASHsmartcite] = ACTIONS(6181), - [anon_sym_BSLASHSmartcite] = ACTIONS(6181), - [anon_sym_BSLASHsupercite] = ACTIONS(6181), - [anon_sym_BSLASHautocite] = ACTIONS(6181), - [anon_sym_BSLASHAutocite] = ACTIONS(6181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHvolcite] = ACTIONS(6181), - [anon_sym_BSLASHVolcite] = ACTIONS(6181), - [anon_sym_BSLASHpvolcite] = ACTIONS(6181), - [anon_sym_BSLASHPvolcite] = ACTIONS(6181), - [anon_sym_BSLASHfvolcite] = ACTIONS(6181), - [anon_sym_BSLASHftvolcite] = ACTIONS(6181), - [anon_sym_BSLASHsvolcite] = ACTIONS(6181), - [anon_sym_BSLASHSvolcite] = ACTIONS(6181), - [anon_sym_BSLASHtvolcite] = ACTIONS(6181), - [anon_sym_BSLASHTvolcite] = ACTIONS(6181), - [anon_sym_BSLASHavolcite] = ACTIONS(6181), - [anon_sym_BSLASHAvolcite] = ACTIONS(6181), - [anon_sym_BSLASHnotecite] = ACTIONS(6181), - [anon_sym_BSLASHNotecite] = ACTIONS(6181), - [anon_sym_BSLASHpnotecite] = ACTIONS(6181), - [anon_sym_BSLASHPnotecite] = ACTIONS(6181), - [anon_sym_BSLASHfnotecite] = ACTIONS(6181), - [anon_sym_BSLASHlabel] = ACTIONS(6181), - [anon_sym_BSLASHref] = ACTIONS(6181), - [anon_sym_BSLASHeqref] = ACTIONS(6181), - [anon_sym_BSLASHvref] = ACTIONS(6181), - [anon_sym_BSLASHVref] = ACTIONS(6181), - [anon_sym_BSLASHautoref] = ACTIONS(6181), - [anon_sym_BSLASHpageref] = ACTIONS(6181), - [anon_sym_BSLASHcref] = ACTIONS(6181), - [anon_sym_BSLASHCref] = ACTIONS(6181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnameCref] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHlabelcref] = ACTIONS(6181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCrefrange] = ACTIONS(6181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnewlabel] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHdef] = ACTIONS(6181), - [anon_sym_BSLASHlet] = ACTIONS(6181), - [anon_sym_BSLASHleft] = ACTIONS(6181), - [anon_sym_BSLASHbig] = ACTIONS(6181), - [anon_sym_BSLASHBig] = ACTIONS(6181), - [anon_sym_BSLASHbigg] = ACTIONS(6181), - [anon_sym_BSLASHBigg] = ACTIONS(6181), - [anon_sym_BSLASHbigl] = ACTIONS(6181), - [anon_sym_BSLASHBigl] = ACTIONS(6181), - [anon_sym_BSLASHbiggl] = ACTIONS(6181), - [anon_sym_BSLASHBiggl] = ACTIONS(6181), - [anon_sym_BSLASHright] = ACTIONS(6181), - [anon_sym_BSLASHbigr] = ACTIONS(6181), - [anon_sym_BSLASHBigr] = ACTIONS(6181), - [anon_sym_BSLASHbiggr] = ACTIONS(6181), - [anon_sym_BSLASHBiggr] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), - [anon_sym_BSLASHgls] = ACTIONS(6181), - [anon_sym_BSLASHGls] = ACTIONS(6181), - [anon_sym_BSLASHGLS] = ACTIONS(6181), - [anon_sym_BSLASHglspl] = ACTIONS(6181), - [anon_sym_BSLASHGlspl] = ACTIONS(6181), - [anon_sym_BSLASHGLSpl] = ACTIONS(6181), - [anon_sym_BSLASHglsdisp] = ACTIONS(6181), - [anon_sym_BSLASHglslink] = ACTIONS(6181), - [anon_sym_BSLASHglstext] = ACTIONS(6181), - [anon_sym_BSLASHGlstext] = ACTIONS(6181), - [anon_sym_BSLASHGLStext] = ACTIONS(6181), - [anon_sym_BSLASHglsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), - [anon_sym_BSLASHglsplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSplural] = ACTIONS(6181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHglsname] = ACTIONS(6181), - [anon_sym_BSLASHGlsname] = ACTIONS(6181), - [anon_sym_BSLASHGLSname] = ACTIONS(6181), - [anon_sym_BSLASHglssymbol] = ACTIONS(6181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), - [anon_sym_BSLASHglsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), - [anon_sym_BSLASHglsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), - [anon_sym_BSLASHglsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), - [anon_sym_BSLASHglsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), - [anon_sym_BSLASHglsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), - [anon_sym_BSLASHnewacronym] = ACTIONS(6181), - [anon_sym_BSLASHacrshort] = ACTIONS(6181), - [anon_sym_BSLASHAcrshort] = ACTIONS(6181), - [anon_sym_BSLASHACRshort] = ACTIONS(6181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), - [anon_sym_BSLASHacrlong] = ACTIONS(6181), - [anon_sym_BSLASHAcrlong] = ACTIONS(6181), - [anon_sym_BSLASHACRlong] = ACTIONS(6181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), - [anon_sym_BSLASHacrfull] = ACTIONS(6181), - [anon_sym_BSLASHAcrfull] = ACTIONS(6181), - [anon_sym_BSLASHACRfull] = ACTIONS(6181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), - [anon_sym_BSLASHacs] = ACTIONS(6181), - [anon_sym_BSLASHAcs] = ACTIONS(6181), - [anon_sym_BSLASHacsp] = ACTIONS(6181), - [anon_sym_BSLASHAcsp] = ACTIONS(6181), - [anon_sym_BSLASHacl] = ACTIONS(6181), - [anon_sym_BSLASHAcl] = ACTIONS(6181), - [anon_sym_BSLASHaclp] = ACTIONS(6181), - [anon_sym_BSLASHAclp] = ACTIONS(6181), - [anon_sym_BSLASHacf] = ACTIONS(6181), - [anon_sym_BSLASHAcf] = ACTIONS(6181), - [anon_sym_BSLASHacfp] = ACTIONS(6181), - [anon_sym_BSLASHAcfp] = ACTIONS(6181), - [anon_sym_BSLASHac] = ACTIONS(6181), - [anon_sym_BSLASHAc] = ACTIONS(6181), - [anon_sym_BSLASHacp] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), - [anon_sym_BSLASHcolor] = ACTIONS(6181), - [anon_sym_BSLASHcolorbox] = ACTIONS(6181), - [anon_sym_BSLASHtextcolor] = ACTIONS(6181), - [anon_sym_BSLASHpagecolor] = ACTIONS(6181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), - [anon_sym_BSLASHtext] = ACTIONS(6181), - [anon_sym_BSLASHintertext] = ACTIONS(6181), - [anon_sym_shortintertext] = ACTIONS(6181), - }, - [524] = { - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(456), - [aux_sym__section_repeat5] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(5846), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [anon_sym_RBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [525] = { - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(455), - [aux_sym__section_repeat6] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(5846), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [anon_sym_RBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [526] = { - [sym_command_name] = ACTIONS(6185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_RBRACK] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_EQ] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_BSLASHpart] = ACTIONS(6185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddpart] = ACTIONS(6185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6187), - [anon_sym_BSLASHchapter] = ACTIONS(6185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddchap] = ACTIONS(6185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsection] = ACTIONS(6185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddsec] = ACTIONS(6185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubsection] = ACTIONS(6185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHparagraph] = ACTIONS(6185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6187), - [anon_sym_BSLASHitem] = ACTIONS(6185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6187), - [anon_sym_LBRACE] = ACTIONS(6187), - [sym_word] = ACTIONS(6185), - [sym_placeholder] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6187), - [anon_sym_DASH] = ACTIONS(6187), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_SQUOTE] = ACTIONS(6185), - [anon_sym__] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), - [anon_sym_DOLLAR] = ACTIONS(6185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), - [anon_sym_BSLASHbegin] = ACTIONS(6185), - [anon_sym_BSLASHtitle] = ACTIONS(6185), - [anon_sym_BSLASHauthor] = ACTIONS(6185), - [anon_sym_BSLASHusepackage] = ACTIONS(6185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), - [anon_sym_BSLASHinclude] = ACTIONS(6185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), - [anon_sym_BSLASHinput] = ACTIONS(6185), - [anon_sym_BSLASHsubfile] = ACTIONS(6185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), - [anon_sym_BSLASHbibliography] = ACTIONS(6185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), - [anon_sym_BSLASHincludesvg] = ACTIONS(6185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), - [anon_sym_BSLASHimport] = ACTIONS(6185), - [anon_sym_BSLASHsubimport] = ACTIONS(6185), - [anon_sym_BSLASHinputfrom] = ACTIONS(6185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), - [anon_sym_BSLASHincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHcaption] = ACTIONS(6185), - [anon_sym_BSLASHcite] = ACTIONS(6185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCite] = ACTIONS(6185), - [anon_sym_BSLASHnocite] = ACTIONS(6185), - [anon_sym_BSLASHcitet] = ACTIONS(6185), - [anon_sym_BSLASHcitep] = ACTIONS(6185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteauthor] = ACTIONS(6185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitetitle] = ACTIONS(6185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteyear] = ACTIONS(6185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitedate] = ACTIONS(6185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteurl] = ACTIONS(6185), - [anon_sym_BSLASHfullcite] = ACTIONS(6185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), - [anon_sym_BSLASHcitealt] = ACTIONS(6185), - [anon_sym_BSLASHcitealp] = ACTIONS(6185), - [anon_sym_BSLASHcitetext] = ACTIONS(6185), - [anon_sym_BSLASHparencite] = ACTIONS(6185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHParencite] = ACTIONS(6185), - [anon_sym_BSLASHfootcite] = ACTIONS(6185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), - [anon_sym_BSLASHtextcite] = ACTIONS(6185), - [anon_sym_BSLASHTextcite] = ACTIONS(6185), - [anon_sym_BSLASHsmartcite] = ACTIONS(6185), - [anon_sym_BSLASHSmartcite] = ACTIONS(6185), - [anon_sym_BSLASHsupercite] = ACTIONS(6185), - [anon_sym_BSLASHautocite] = ACTIONS(6185), - [anon_sym_BSLASHAutocite] = ACTIONS(6185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHvolcite] = ACTIONS(6185), - [anon_sym_BSLASHVolcite] = ACTIONS(6185), - [anon_sym_BSLASHpvolcite] = ACTIONS(6185), - [anon_sym_BSLASHPvolcite] = ACTIONS(6185), - [anon_sym_BSLASHfvolcite] = ACTIONS(6185), - [anon_sym_BSLASHftvolcite] = ACTIONS(6185), - [anon_sym_BSLASHsvolcite] = ACTIONS(6185), - [anon_sym_BSLASHSvolcite] = ACTIONS(6185), - [anon_sym_BSLASHtvolcite] = ACTIONS(6185), - [anon_sym_BSLASHTvolcite] = ACTIONS(6185), - [anon_sym_BSLASHavolcite] = ACTIONS(6185), - [anon_sym_BSLASHAvolcite] = ACTIONS(6185), - [anon_sym_BSLASHnotecite] = ACTIONS(6185), - [anon_sym_BSLASHNotecite] = ACTIONS(6185), - [anon_sym_BSLASHpnotecite] = ACTIONS(6185), - [anon_sym_BSLASHPnotecite] = ACTIONS(6185), - [anon_sym_BSLASHfnotecite] = ACTIONS(6185), - [anon_sym_BSLASHlabel] = ACTIONS(6185), - [anon_sym_BSLASHref] = ACTIONS(6185), - [anon_sym_BSLASHeqref] = ACTIONS(6185), - [anon_sym_BSLASHvref] = ACTIONS(6185), - [anon_sym_BSLASHVref] = ACTIONS(6185), - [anon_sym_BSLASHautoref] = ACTIONS(6185), - [anon_sym_BSLASHpageref] = ACTIONS(6185), - [anon_sym_BSLASHcref] = ACTIONS(6185), - [anon_sym_BSLASHCref] = ACTIONS(6185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnameCref] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHlabelcref] = ACTIONS(6185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCrefrange] = ACTIONS(6185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnewlabel] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHdef] = ACTIONS(6185), - [anon_sym_BSLASHlet] = ACTIONS(6185), - [anon_sym_BSLASHleft] = ACTIONS(6185), - [anon_sym_BSLASHbig] = ACTIONS(6185), - [anon_sym_BSLASHBig] = ACTIONS(6185), - [anon_sym_BSLASHbigg] = ACTIONS(6185), - [anon_sym_BSLASHBigg] = ACTIONS(6185), - [anon_sym_BSLASHbigl] = ACTIONS(6185), - [anon_sym_BSLASHBigl] = ACTIONS(6185), - [anon_sym_BSLASHbiggl] = ACTIONS(6185), - [anon_sym_BSLASHBiggl] = ACTIONS(6185), - [anon_sym_BSLASHright] = ACTIONS(6185), - [anon_sym_BSLASHbigr] = ACTIONS(6185), - [anon_sym_BSLASHBigr] = ACTIONS(6185), - [anon_sym_BSLASHbiggr] = ACTIONS(6185), - [anon_sym_BSLASHBiggr] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), - [anon_sym_BSLASHgls] = ACTIONS(6185), - [anon_sym_BSLASHGls] = ACTIONS(6185), - [anon_sym_BSLASHGLS] = ACTIONS(6185), - [anon_sym_BSLASHglspl] = ACTIONS(6185), - [anon_sym_BSLASHGlspl] = ACTIONS(6185), - [anon_sym_BSLASHGLSpl] = ACTIONS(6185), - [anon_sym_BSLASHglsdisp] = ACTIONS(6185), - [anon_sym_BSLASHglslink] = ACTIONS(6185), - [anon_sym_BSLASHglstext] = ACTIONS(6185), - [anon_sym_BSLASHGlstext] = ACTIONS(6185), - [anon_sym_BSLASHGLStext] = ACTIONS(6185), - [anon_sym_BSLASHglsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), - [anon_sym_BSLASHglsplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSplural] = ACTIONS(6185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHglsname] = ACTIONS(6185), - [anon_sym_BSLASHGlsname] = ACTIONS(6185), - [anon_sym_BSLASHGLSname] = ACTIONS(6185), - [anon_sym_BSLASHglssymbol] = ACTIONS(6185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), - [anon_sym_BSLASHglsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), - [anon_sym_BSLASHglsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), - [anon_sym_BSLASHglsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), - [anon_sym_BSLASHglsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), - [anon_sym_BSLASHglsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), - [anon_sym_BSLASHnewacronym] = ACTIONS(6185), - [anon_sym_BSLASHacrshort] = ACTIONS(6185), - [anon_sym_BSLASHAcrshort] = ACTIONS(6185), - [anon_sym_BSLASHACRshort] = ACTIONS(6185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), - [anon_sym_BSLASHacrlong] = ACTIONS(6185), - [anon_sym_BSLASHAcrlong] = ACTIONS(6185), - [anon_sym_BSLASHACRlong] = ACTIONS(6185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), - [anon_sym_BSLASHacrfull] = ACTIONS(6185), - [anon_sym_BSLASHAcrfull] = ACTIONS(6185), - [anon_sym_BSLASHACRfull] = ACTIONS(6185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), - [anon_sym_BSLASHacs] = ACTIONS(6185), - [anon_sym_BSLASHAcs] = ACTIONS(6185), - [anon_sym_BSLASHacsp] = ACTIONS(6185), - [anon_sym_BSLASHAcsp] = ACTIONS(6185), - [anon_sym_BSLASHacl] = ACTIONS(6185), - [anon_sym_BSLASHAcl] = ACTIONS(6185), - [anon_sym_BSLASHaclp] = ACTIONS(6185), - [anon_sym_BSLASHAclp] = ACTIONS(6185), - [anon_sym_BSLASHacf] = ACTIONS(6185), - [anon_sym_BSLASHAcf] = ACTIONS(6185), - [anon_sym_BSLASHacfp] = ACTIONS(6185), - [anon_sym_BSLASHAcfp] = ACTIONS(6185), - [anon_sym_BSLASHac] = ACTIONS(6185), - [anon_sym_BSLASHAc] = ACTIONS(6185), - [anon_sym_BSLASHacp] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), - [anon_sym_BSLASHcolor] = ACTIONS(6185), - [anon_sym_BSLASHcolorbox] = ACTIONS(6185), - [anon_sym_BSLASHtextcolor] = ACTIONS(6185), - [anon_sym_BSLASHpagecolor] = ACTIONS(6185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), - [anon_sym_BSLASHtext] = ACTIONS(6185), - [anon_sym_BSLASHintertext] = ACTIONS(6185), - [anon_sym_shortintertext] = ACTIONS(6185), - }, - [527] = { - [sym_command_name] = ACTIONS(6189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6189), - [anon_sym_LBRACK] = ACTIONS(6191), - [anon_sym_RBRACK] = ACTIONS(6191), - [anon_sym_COMMA] = ACTIONS(6191), - [anon_sym_EQ] = ACTIONS(6191), - [anon_sym_LPAREN] = ACTIONS(6191), - [anon_sym_RPAREN] = ACTIONS(6191), - [anon_sym_BSLASHpart] = ACTIONS(6189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddpart] = ACTIONS(6189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6191), - [anon_sym_BSLASHchapter] = ACTIONS(6189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddchap] = ACTIONS(6189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsection] = ACTIONS(6189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddsec] = ACTIONS(6189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubsection] = ACTIONS(6189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHparagraph] = ACTIONS(6189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6191), - [anon_sym_BSLASHitem] = ACTIONS(6189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6191), - [anon_sym_LBRACE] = ACTIONS(6191), - [sym_word] = ACTIONS(6189), - [sym_placeholder] = ACTIONS(6191), - [anon_sym_PLUS] = ACTIONS(6191), - [anon_sym_DASH] = ACTIONS(6191), - [anon_sym_STAR] = ACTIONS(6191), - [anon_sym_SLASH] = ACTIONS(6191), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_COLON] = ACTIONS(6189), - [anon_sym_SQUOTE] = ACTIONS(6189), - [anon_sym__] = ACTIONS(6191), - [anon_sym_CARET] = ACTIONS(6191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), - [anon_sym_DOLLAR] = ACTIONS(6189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), - [anon_sym_BSLASHbegin] = ACTIONS(6189), - [anon_sym_BSLASHtitle] = ACTIONS(6189), - [anon_sym_BSLASHauthor] = ACTIONS(6189), - [anon_sym_BSLASHusepackage] = ACTIONS(6189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), - [anon_sym_BSLASHinclude] = ACTIONS(6189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), - [anon_sym_BSLASHinput] = ACTIONS(6189), - [anon_sym_BSLASHsubfile] = ACTIONS(6189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), - [anon_sym_BSLASHbibliography] = ACTIONS(6189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), - [anon_sym_BSLASHincludesvg] = ACTIONS(6189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), - [anon_sym_BSLASHimport] = ACTIONS(6189), - [anon_sym_BSLASHsubimport] = ACTIONS(6189), - [anon_sym_BSLASHinputfrom] = ACTIONS(6189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), - [anon_sym_BSLASHincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHcaption] = ACTIONS(6189), - [anon_sym_BSLASHcite] = ACTIONS(6189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCite] = ACTIONS(6189), - [anon_sym_BSLASHnocite] = ACTIONS(6189), - [anon_sym_BSLASHcitet] = ACTIONS(6189), - [anon_sym_BSLASHcitep] = ACTIONS(6189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteauthor] = ACTIONS(6189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitetitle] = ACTIONS(6189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteyear] = ACTIONS(6189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitedate] = ACTIONS(6189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteurl] = ACTIONS(6189), - [anon_sym_BSLASHfullcite] = ACTIONS(6189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), - [anon_sym_BSLASHcitealt] = ACTIONS(6189), - [anon_sym_BSLASHcitealp] = ACTIONS(6189), - [anon_sym_BSLASHcitetext] = ACTIONS(6189), - [anon_sym_BSLASHparencite] = ACTIONS(6189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHParencite] = ACTIONS(6189), - [anon_sym_BSLASHfootcite] = ACTIONS(6189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), - [anon_sym_BSLASHtextcite] = ACTIONS(6189), - [anon_sym_BSLASHTextcite] = ACTIONS(6189), - [anon_sym_BSLASHsmartcite] = ACTIONS(6189), - [anon_sym_BSLASHSmartcite] = ACTIONS(6189), - [anon_sym_BSLASHsupercite] = ACTIONS(6189), - [anon_sym_BSLASHautocite] = ACTIONS(6189), - [anon_sym_BSLASHAutocite] = ACTIONS(6189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHvolcite] = ACTIONS(6189), - [anon_sym_BSLASHVolcite] = ACTIONS(6189), - [anon_sym_BSLASHpvolcite] = ACTIONS(6189), - [anon_sym_BSLASHPvolcite] = ACTIONS(6189), - [anon_sym_BSLASHfvolcite] = ACTIONS(6189), - [anon_sym_BSLASHftvolcite] = ACTIONS(6189), - [anon_sym_BSLASHsvolcite] = ACTIONS(6189), - [anon_sym_BSLASHSvolcite] = ACTIONS(6189), - [anon_sym_BSLASHtvolcite] = ACTIONS(6189), - [anon_sym_BSLASHTvolcite] = ACTIONS(6189), - [anon_sym_BSLASHavolcite] = ACTIONS(6189), - [anon_sym_BSLASHAvolcite] = ACTIONS(6189), - [anon_sym_BSLASHnotecite] = ACTIONS(6189), - [anon_sym_BSLASHNotecite] = ACTIONS(6189), - [anon_sym_BSLASHpnotecite] = ACTIONS(6189), - [anon_sym_BSLASHPnotecite] = ACTIONS(6189), - [anon_sym_BSLASHfnotecite] = ACTIONS(6189), - [anon_sym_BSLASHlabel] = ACTIONS(6189), - [anon_sym_BSLASHref] = ACTIONS(6189), - [anon_sym_BSLASHeqref] = ACTIONS(6189), - [anon_sym_BSLASHvref] = ACTIONS(6189), - [anon_sym_BSLASHVref] = ACTIONS(6189), - [anon_sym_BSLASHautoref] = ACTIONS(6189), - [anon_sym_BSLASHpageref] = ACTIONS(6189), - [anon_sym_BSLASHcref] = ACTIONS(6189), - [anon_sym_BSLASHCref] = ACTIONS(6189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnameCref] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHlabelcref] = ACTIONS(6189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCrefrange] = ACTIONS(6189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnewlabel] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHdef] = ACTIONS(6189), - [anon_sym_BSLASHlet] = ACTIONS(6189), - [anon_sym_BSLASHleft] = ACTIONS(6189), - [anon_sym_BSLASHbig] = ACTIONS(6189), - [anon_sym_BSLASHBig] = ACTIONS(6189), - [anon_sym_BSLASHbigg] = ACTIONS(6189), - [anon_sym_BSLASHBigg] = ACTIONS(6189), - [anon_sym_BSLASHbigl] = ACTIONS(6189), - [anon_sym_BSLASHBigl] = ACTIONS(6189), - [anon_sym_BSLASHbiggl] = ACTIONS(6189), - [anon_sym_BSLASHBiggl] = ACTIONS(6189), - [anon_sym_BSLASHright] = ACTIONS(6189), - [anon_sym_BSLASHbigr] = ACTIONS(6189), - [anon_sym_BSLASHBigr] = ACTIONS(6189), - [anon_sym_BSLASHbiggr] = ACTIONS(6189), - [anon_sym_BSLASHBiggr] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), - [anon_sym_BSLASHgls] = ACTIONS(6189), - [anon_sym_BSLASHGls] = ACTIONS(6189), - [anon_sym_BSLASHGLS] = ACTIONS(6189), - [anon_sym_BSLASHglspl] = ACTIONS(6189), - [anon_sym_BSLASHGlspl] = ACTIONS(6189), - [anon_sym_BSLASHGLSpl] = ACTIONS(6189), - [anon_sym_BSLASHglsdisp] = ACTIONS(6189), - [anon_sym_BSLASHglslink] = ACTIONS(6189), - [anon_sym_BSLASHglstext] = ACTIONS(6189), - [anon_sym_BSLASHGlstext] = ACTIONS(6189), - [anon_sym_BSLASHGLStext] = ACTIONS(6189), - [anon_sym_BSLASHglsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), - [anon_sym_BSLASHglsplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSplural] = ACTIONS(6189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHglsname] = ACTIONS(6189), - [anon_sym_BSLASHGlsname] = ACTIONS(6189), - [anon_sym_BSLASHGLSname] = ACTIONS(6189), - [anon_sym_BSLASHglssymbol] = ACTIONS(6189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), - [anon_sym_BSLASHglsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), - [anon_sym_BSLASHglsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), - [anon_sym_BSLASHglsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), - [anon_sym_BSLASHglsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), - [anon_sym_BSLASHglsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), - [anon_sym_BSLASHnewacronym] = ACTIONS(6189), - [anon_sym_BSLASHacrshort] = ACTIONS(6189), - [anon_sym_BSLASHAcrshort] = ACTIONS(6189), - [anon_sym_BSLASHACRshort] = ACTIONS(6189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), - [anon_sym_BSLASHacrlong] = ACTIONS(6189), - [anon_sym_BSLASHAcrlong] = ACTIONS(6189), - [anon_sym_BSLASHACRlong] = ACTIONS(6189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), - [anon_sym_BSLASHacrfull] = ACTIONS(6189), - [anon_sym_BSLASHAcrfull] = ACTIONS(6189), - [anon_sym_BSLASHACRfull] = ACTIONS(6189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), - [anon_sym_BSLASHacs] = ACTIONS(6189), - [anon_sym_BSLASHAcs] = ACTIONS(6189), - [anon_sym_BSLASHacsp] = ACTIONS(6189), - [anon_sym_BSLASHAcsp] = ACTIONS(6189), - [anon_sym_BSLASHacl] = ACTIONS(6189), - [anon_sym_BSLASHAcl] = ACTIONS(6189), - [anon_sym_BSLASHaclp] = ACTIONS(6189), - [anon_sym_BSLASHAclp] = ACTIONS(6189), - [anon_sym_BSLASHacf] = ACTIONS(6189), - [anon_sym_BSLASHAcf] = ACTIONS(6189), - [anon_sym_BSLASHacfp] = ACTIONS(6189), - [anon_sym_BSLASHAcfp] = ACTIONS(6189), - [anon_sym_BSLASHac] = ACTIONS(6189), - [anon_sym_BSLASHAc] = ACTIONS(6189), - [anon_sym_BSLASHacp] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), - [anon_sym_BSLASHcolor] = ACTIONS(6189), - [anon_sym_BSLASHcolorbox] = ACTIONS(6189), - [anon_sym_BSLASHtextcolor] = ACTIONS(6189), - [anon_sym_BSLASHpagecolor] = ACTIONS(6189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), - [anon_sym_BSLASHtext] = ACTIONS(6189), - [anon_sym_BSLASHintertext] = ACTIONS(6189), - [anon_sym_shortintertext] = ACTIONS(6189), - }, - [528] = { - [sym_command_name] = ACTIONS(6193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6193), - [anon_sym_LBRACK] = ACTIONS(6195), - [anon_sym_RBRACK] = ACTIONS(6195), - [anon_sym_COMMA] = ACTIONS(6195), - [anon_sym_EQ] = ACTIONS(6195), - [anon_sym_LPAREN] = ACTIONS(6195), - [anon_sym_RPAREN] = ACTIONS(6195), - [anon_sym_BSLASHpart] = ACTIONS(6193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddpart] = ACTIONS(6193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6195), - [anon_sym_BSLASHchapter] = ACTIONS(6193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddchap] = ACTIONS(6193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsection] = ACTIONS(6193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddsec] = ACTIONS(6193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubsection] = ACTIONS(6193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHparagraph] = ACTIONS(6193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6195), - [anon_sym_BSLASHitem] = ACTIONS(6193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6195), - [anon_sym_LBRACE] = ACTIONS(6195), - [sym_word] = ACTIONS(6193), - [sym_placeholder] = ACTIONS(6195), - [anon_sym_PLUS] = ACTIONS(6195), - [anon_sym_DASH] = ACTIONS(6195), - [anon_sym_STAR] = ACTIONS(6195), - [anon_sym_SLASH] = ACTIONS(6195), - [anon_sym_LT] = ACTIONS(6193), - [anon_sym_GT] = ACTIONS(6193), - [anon_sym_BANG] = ACTIONS(6193), - [anon_sym_PIPE] = ACTIONS(6193), - [anon_sym_COLON] = ACTIONS(6193), - [anon_sym_SQUOTE] = ACTIONS(6193), - [anon_sym__] = ACTIONS(6195), - [anon_sym_CARET] = ACTIONS(6195), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), - [anon_sym_DOLLAR] = ACTIONS(6193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), - [anon_sym_BSLASHbegin] = ACTIONS(6193), - [anon_sym_BSLASHtitle] = ACTIONS(6193), - [anon_sym_BSLASHauthor] = ACTIONS(6193), - [anon_sym_BSLASHusepackage] = ACTIONS(6193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), - [anon_sym_BSLASHinclude] = ACTIONS(6193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), - [anon_sym_BSLASHinput] = ACTIONS(6193), - [anon_sym_BSLASHsubfile] = ACTIONS(6193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), - [anon_sym_BSLASHbibliography] = ACTIONS(6193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), - [anon_sym_BSLASHincludesvg] = ACTIONS(6193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), - [anon_sym_BSLASHimport] = ACTIONS(6193), - [anon_sym_BSLASHsubimport] = ACTIONS(6193), - [anon_sym_BSLASHinputfrom] = ACTIONS(6193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), - [anon_sym_BSLASHincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHcaption] = ACTIONS(6193), - [anon_sym_BSLASHcite] = ACTIONS(6193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCite] = ACTIONS(6193), - [anon_sym_BSLASHnocite] = ACTIONS(6193), - [anon_sym_BSLASHcitet] = ACTIONS(6193), - [anon_sym_BSLASHcitep] = ACTIONS(6193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteauthor] = ACTIONS(6193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitetitle] = ACTIONS(6193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteyear] = ACTIONS(6193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitedate] = ACTIONS(6193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteurl] = ACTIONS(6193), - [anon_sym_BSLASHfullcite] = ACTIONS(6193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), - [anon_sym_BSLASHcitealt] = ACTIONS(6193), - [anon_sym_BSLASHcitealp] = ACTIONS(6193), - [anon_sym_BSLASHcitetext] = ACTIONS(6193), - [anon_sym_BSLASHparencite] = ACTIONS(6193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHParencite] = ACTIONS(6193), - [anon_sym_BSLASHfootcite] = ACTIONS(6193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), - [anon_sym_BSLASHtextcite] = ACTIONS(6193), - [anon_sym_BSLASHTextcite] = ACTIONS(6193), - [anon_sym_BSLASHsmartcite] = ACTIONS(6193), - [anon_sym_BSLASHSmartcite] = ACTIONS(6193), - [anon_sym_BSLASHsupercite] = ACTIONS(6193), - [anon_sym_BSLASHautocite] = ACTIONS(6193), - [anon_sym_BSLASHAutocite] = ACTIONS(6193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHvolcite] = ACTIONS(6193), - [anon_sym_BSLASHVolcite] = ACTIONS(6193), - [anon_sym_BSLASHpvolcite] = ACTIONS(6193), - [anon_sym_BSLASHPvolcite] = ACTIONS(6193), - [anon_sym_BSLASHfvolcite] = ACTIONS(6193), - [anon_sym_BSLASHftvolcite] = ACTIONS(6193), - [anon_sym_BSLASHsvolcite] = ACTIONS(6193), - [anon_sym_BSLASHSvolcite] = ACTIONS(6193), - [anon_sym_BSLASHtvolcite] = ACTIONS(6193), - [anon_sym_BSLASHTvolcite] = ACTIONS(6193), - [anon_sym_BSLASHavolcite] = ACTIONS(6193), - [anon_sym_BSLASHAvolcite] = ACTIONS(6193), - [anon_sym_BSLASHnotecite] = ACTIONS(6193), - [anon_sym_BSLASHNotecite] = ACTIONS(6193), - [anon_sym_BSLASHpnotecite] = ACTIONS(6193), - [anon_sym_BSLASHPnotecite] = ACTIONS(6193), - [anon_sym_BSLASHfnotecite] = ACTIONS(6193), - [anon_sym_BSLASHlabel] = ACTIONS(6193), - [anon_sym_BSLASHref] = ACTIONS(6193), - [anon_sym_BSLASHeqref] = ACTIONS(6193), - [anon_sym_BSLASHvref] = ACTIONS(6193), - [anon_sym_BSLASHVref] = ACTIONS(6193), - [anon_sym_BSLASHautoref] = ACTIONS(6193), - [anon_sym_BSLASHpageref] = ACTIONS(6193), - [anon_sym_BSLASHcref] = ACTIONS(6193), - [anon_sym_BSLASHCref] = ACTIONS(6193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnameCref] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHlabelcref] = ACTIONS(6193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCrefrange] = ACTIONS(6193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnewlabel] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHdef] = ACTIONS(6193), - [anon_sym_BSLASHlet] = ACTIONS(6193), - [anon_sym_BSLASHleft] = ACTIONS(6193), - [anon_sym_BSLASHbig] = ACTIONS(6193), - [anon_sym_BSLASHBig] = ACTIONS(6193), - [anon_sym_BSLASHbigg] = ACTIONS(6193), - [anon_sym_BSLASHBigg] = ACTIONS(6193), - [anon_sym_BSLASHbigl] = ACTIONS(6193), - [anon_sym_BSLASHBigl] = ACTIONS(6193), - [anon_sym_BSLASHbiggl] = ACTIONS(6193), - [anon_sym_BSLASHBiggl] = ACTIONS(6193), - [anon_sym_BSLASHright] = ACTIONS(6193), - [anon_sym_BSLASHbigr] = ACTIONS(6193), - [anon_sym_BSLASHBigr] = ACTIONS(6193), - [anon_sym_BSLASHbiggr] = ACTIONS(6193), - [anon_sym_BSLASHBiggr] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), - [anon_sym_BSLASHgls] = ACTIONS(6193), - [anon_sym_BSLASHGls] = ACTIONS(6193), - [anon_sym_BSLASHGLS] = ACTIONS(6193), - [anon_sym_BSLASHglspl] = ACTIONS(6193), - [anon_sym_BSLASHGlspl] = ACTIONS(6193), - [anon_sym_BSLASHGLSpl] = ACTIONS(6193), - [anon_sym_BSLASHglsdisp] = ACTIONS(6193), - [anon_sym_BSLASHglslink] = ACTIONS(6193), - [anon_sym_BSLASHglstext] = ACTIONS(6193), - [anon_sym_BSLASHGlstext] = ACTIONS(6193), - [anon_sym_BSLASHGLStext] = ACTIONS(6193), - [anon_sym_BSLASHglsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), - [anon_sym_BSLASHglsplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSplural] = ACTIONS(6193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHglsname] = ACTIONS(6193), - [anon_sym_BSLASHGlsname] = ACTIONS(6193), - [anon_sym_BSLASHGLSname] = ACTIONS(6193), - [anon_sym_BSLASHglssymbol] = ACTIONS(6193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), - [anon_sym_BSLASHglsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), - [anon_sym_BSLASHglsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), - [anon_sym_BSLASHglsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), - [anon_sym_BSLASHglsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), - [anon_sym_BSLASHglsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), - [anon_sym_BSLASHnewacronym] = ACTIONS(6193), - [anon_sym_BSLASHacrshort] = ACTIONS(6193), - [anon_sym_BSLASHAcrshort] = ACTIONS(6193), - [anon_sym_BSLASHACRshort] = ACTIONS(6193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), - [anon_sym_BSLASHacrlong] = ACTIONS(6193), - [anon_sym_BSLASHAcrlong] = ACTIONS(6193), - [anon_sym_BSLASHACRlong] = ACTIONS(6193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), - [anon_sym_BSLASHacrfull] = ACTIONS(6193), - [anon_sym_BSLASHAcrfull] = ACTIONS(6193), - [anon_sym_BSLASHACRfull] = ACTIONS(6193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), - [anon_sym_BSLASHacs] = ACTIONS(6193), - [anon_sym_BSLASHAcs] = ACTIONS(6193), - [anon_sym_BSLASHacsp] = ACTIONS(6193), - [anon_sym_BSLASHAcsp] = ACTIONS(6193), - [anon_sym_BSLASHacl] = ACTIONS(6193), - [anon_sym_BSLASHAcl] = ACTIONS(6193), - [anon_sym_BSLASHaclp] = ACTIONS(6193), - [anon_sym_BSLASHAclp] = ACTIONS(6193), - [anon_sym_BSLASHacf] = ACTIONS(6193), - [anon_sym_BSLASHAcf] = ACTIONS(6193), - [anon_sym_BSLASHacfp] = ACTIONS(6193), - [anon_sym_BSLASHAcfp] = ACTIONS(6193), - [anon_sym_BSLASHac] = ACTIONS(6193), - [anon_sym_BSLASHAc] = ACTIONS(6193), - [anon_sym_BSLASHacp] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), - [anon_sym_BSLASHcolor] = ACTIONS(6193), - [anon_sym_BSLASHcolorbox] = ACTIONS(6193), - [anon_sym_BSLASHtextcolor] = ACTIONS(6193), - [anon_sym_BSLASHpagecolor] = ACTIONS(6193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), - [anon_sym_BSLASHtext] = ACTIONS(6193), - [anon_sym_BSLASHintertext] = ACTIONS(6193), - [anon_sym_shortintertext] = ACTIONS(6193), - }, - [529] = { - [sym_command_name] = ACTIONS(6197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6197), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_RBRACK] = ACTIONS(6199), - [anon_sym_COMMA] = ACTIONS(6199), - [anon_sym_EQ] = ACTIONS(6199), - [anon_sym_LPAREN] = ACTIONS(6199), - [anon_sym_RPAREN] = ACTIONS(6199), - [anon_sym_BSLASHpart] = ACTIONS(6197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddpart] = ACTIONS(6197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6199), - [anon_sym_BSLASHchapter] = ACTIONS(6197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddchap] = ACTIONS(6197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsection] = ACTIONS(6197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddsec] = ACTIONS(6197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubsection] = ACTIONS(6197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHparagraph] = ACTIONS(6197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6199), - [anon_sym_BSLASHitem] = ACTIONS(6197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6199), - [anon_sym_LBRACE] = ACTIONS(6199), - [sym_word] = ACTIONS(6197), - [sym_placeholder] = ACTIONS(6199), - [anon_sym_PLUS] = ACTIONS(6199), - [anon_sym_DASH] = ACTIONS(6199), - [anon_sym_STAR] = ACTIONS(6199), - [anon_sym_SLASH] = ACTIONS(6199), - [anon_sym_LT] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6197), - [anon_sym_BANG] = ACTIONS(6197), - [anon_sym_PIPE] = ACTIONS(6197), - [anon_sym_COLON] = ACTIONS(6197), - [anon_sym_SQUOTE] = ACTIONS(6197), - [anon_sym__] = ACTIONS(6199), - [anon_sym_CARET] = ACTIONS(6199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), - [anon_sym_DOLLAR] = ACTIONS(6197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), - [anon_sym_BSLASHbegin] = ACTIONS(6197), - [anon_sym_BSLASHtitle] = ACTIONS(6197), - [anon_sym_BSLASHauthor] = ACTIONS(6197), - [anon_sym_BSLASHusepackage] = ACTIONS(6197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), - [anon_sym_BSLASHinclude] = ACTIONS(6197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), - [anon_sym_BSLASHinput] = ACTIONS(6197), - [anon_sym_BSLASHsubfile] = ACTIONS(6197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), - [anon_sym_BSLASHbibliography] = ACTIONS(6197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), - [anon_sym_BSLASHincludesvg] = ACTIONS(6197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), - [anon_sym_BSLASHimport] = ACTIONS(6197), - [anon_sym_BSLASHsubimport] = ACTIONS(6197), - [anon_sym_BSLASHinputfrom] = ACTIONS(6197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), - [anon_sym_BSLASHincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHcaption] = ACTIONS(6197), - [anon_sym_BSLASHcite] = ACTIONS(6197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCite] = ACTIONS(6197), - [anon_sym_BSLASHnocite] = ACTIONS(6197), - [anon_sym_BSLASHcitet] = ACTIONS(6197), - [anon_sym_BSLASHcitep] = ACTIONS(6197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteauthor] = ACTIONS(6197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitetitle] = ACTIONS(6197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteyear] = ACTIONS(6197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitedate] = ACTIONS(6197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteurl] = ACTIONS(6197), - [anon_sym_BSLASHfullcite] = ACTIONS(6197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), - [anon_sym_BSLASHcitealt] = ACTIONS(6197), - [anon_sym_BSLASHcitealp] = ACTIONS(6197), - [anon_sym_BSLASHcitetext] = ACTIONS(6197), - [anon_sym_BSLASHparencite] = ACTIONS(6197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHParencite] = ACTIONS(6197), - [anon_sym_BSLASHfootcite] = ACTIONS(6197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), - [anon_sym_BSLASHtextcite] = ACTIONS(6197), - [anon_sym_BSLASHTextcite] = ACTIONS(6197), - [anon_sym_BSLASHsmartcite] = ACTIONS(6197), - [anon_sym_BSLASHSmartcite] = ACTIONS(6197), - [anon_sym_BSLASHsupercite] = ACTIONS(6197), - [anon_sym_BSLASHautocite] = ACTIONS(6197), - [anon_sym_BSLASHAutocite] = ACTIONS(6197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHvolcite] = ACTIONS(6197), - [anon_sym_BSLASHVolcite] = ACTIONS(6197), - [anon_sym_BSLASHpvolcite] = ACTIONS(6197), - [anon_sym_BSLASHPvolcite] = ACTIONS(6197), - [anon_sym_BSLASHfvolcite] = ACTIONS(6197), - [anon_sym_BSLASHftvolcite] = ACTIONS(6197), - [anon_sym_BSLASHsvolcite] = ACTIONS(6197), - [anon_sym_BSLASHSvolcite] = ACTIONS(6197), - [anon_sym_BSLASHtvolcite] = ACTIONS(6197), - [anon_sym_BSLASHTvolcite] = ACTIONS(6197), - [anon_sym_BSLASHavolcite] = ACTIONS(6197), - [anon_sym_BSLASHAvolcite] = ACTIONS(6197), - [anon_sym_BSLASHnotecite] = ACTIONS(6197), - [anon_sym_BSLASHNotecite] = ACTIONS(6197), - [anon_sym_BSLASHpnotecite] = ACTIONS(6197), - [anon_sym_BSLASHPnotecite] = ACTIONS(6197), - [anon_sym_BSLASHfnotecite] = ACTIONS(6197), - [anon_sym_BSLASHlabel] = ACTIONS(6197), - [anon_sym_BSLASHref] = ACTIONS(6197), - [anon_sym_BSLASHeqref] = ACTIONS(6197), - [anon_sym_BSLASHvref] = ACTIONS(6197), - [anon_sym_BSLASHVref] = ACTIONS(6197), - [anon_sym_BSLASHautoref] = ACTIONS(6197), - [anon_sym_BSLASHpageref] = ACTIONS(6197), - [anon_sym_BSLASHcref] = ACTIONS(6197), - [anon_sym_BSLASHCref] = ACTIONS(6197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnameCref] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHlabelcref] = ACTIONS(6197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCrefrange] = ACTIONS(6197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnewlabel] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHdef] = ACTIONS(6197), - [anon_sym_BSLASHlet] = ACTIONS(6197), - [anon_sym_BSLASHleft] = ACTIONS(6197), - [anon_sym_BSLASHbig] = ACTIONS(6197), - [anon_sym_BSLASHBig] = ACTIONS(6197), - [anon_sym_BSLASHbigg] = ACTIONS(6197), - [anon_sym_BSLASHBigg] = ACTIONS(6197), - [anon_sym_BSLASHbigl] = ACTIONS(6197), - [anon_sym_BSLASHBigl] = ACTIONS(6197), - [anon_sym_BSLASHbiggl] = ACTIONS(6197), - [anon_sym_BSLASHBiggl] = ACTIONS(6197), - [anon_sym_BSLASHright] = ACTIONS(6197), - [anon_sym_BSLASHbigr] = ACTIONS(6197), - [anon_sym_BSLASHBigr] = ACTIONS(6197), - [anon_sym_BSLASHbiggr] = ACTIONS(6197), - [anon_sym_BSLASHBiggr] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), - [anon_sym_BSLASHgls] = ACTIONS(6197), - [anon_sym_BSLASHGls] = ACTIONS(6197), - [anon_sym_BSLASHGLS] = ACTIONS(6197), - [anon_sym_BSLASHglspl] = ACTIONS(6197), - [anon_sym_BSLASHGlspl] = ACTIONS(6197), - [anon_sym_BSLASHGLSpl] = ACTIONS(6197), - [anon_sym_BSLASHglsdisp] = ACTIONS(6197), - [anon_sym_BSLASHglslink] = ACTIONS(6197), - [anon_sym_BSLASHglstext] = ACTIONS(6197), - [anon_sym_BSLASHGlstext] = ACTIONS(6197), - [anon_sym_BSLASHGLStext] = ACTIONS(6197), - [anon_sym_BSLASHglsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), - [anon_sym_BSLASHglsplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSplural] = ACTIONS(6197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHglsname] = ACTIONS(6197), - [anon_sym_BSLASHGlsname] = ACTIONS(6197), - [anon_sym_BSLASHGLSname] = ACTIONS(6197), - [anon_sym_BSLASHglssymbol] = ACTIONS(6197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), - [anon_sym_BSLASHglsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), - [anon_sym_BSLASHglsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), - [anon_sym_BSLASHglsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), - [anon_sym_BSLASHglsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), - [anon_sym_BSLASHglsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), - [anon_sym_BSLASHnewacronym] = ACTIONS(6197), - [anon_sym_BSLASHacrshort] = ACTIONS(6197), - [anon_sym_BSLASHAcrshort] = ACTIONS(6197), - [anon_sym_BSLASHACRshort] = ACTIONS(6197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), - [anon_sym_BSLASHacrlong] = ACTIONS(6197), - [anon_sym_BSLASHAcrlong] = ACTIONS(6197), - [anon_sym_BSLASHACRlong] = ACTIONS(6197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), - [anon_sym_BSLASHacrfull] = ACTIONS(6197), - [anon_sym_BSLASHAcrfull] = ACTIONS(6197), - [anon_sym_BSLASHACRfull] = ACTIONS(6197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), - [anon_sym_BSLASHacs] = ACTIONS(6197), - [anon_sym_BSLASHAcs] = ACTIONS(6197), - [anon_sym_BSLASHacsp] = ACTIONS(6197), - [anon_sym_BSLASHAcsp] = ACTIONS(6197), - [anon_sym_BSLASHacl] = ACTIONS(6197), - [anon_sym_BSLASHAcl] = ACTIONS(6197), - [anon_sym_BSLASHaclp] = ACTIONS(6197), - [anon_sym_BSLASHAclp] = ACTIONS(6197), - [anon_sym_BSLASHacf] = ACTIONS(6197), - [anon_sym_BSLASHAcf] = ACTIONS(6197), - [anon_sym_BSLASHacfp] = ACTIONS(6197), - [anon_sym_BSLASHAcfp] = ACTIONS(6197), - [anon_sym_BSLASHac] = ACTIONS(6197), - [anon_sym_BSLASHAc] = ACTIONS(6197), - [anon_sym_BSLASHacp] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), - [anon_sym_BSLASHcolor] = ACTIONS(6197), - [anon_sym_BSLASHcolorbox] = ACTIONS(6197), - [anon_sym_BSLASHtextcolor] = ACTIONS(6197), - [anon_sym_BSLASHpagecolor] = ACTIONS(6197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), - [anon_sym_BSLASHtext] = ACTIONS(6197), - [anon_sym_BSLASHintertext] = ACTIONS(6197), - [anon_sym_shortintertext] = ACTIONS(6197), - }, - [530] = { - [sym_command_name] = ACTIONS(6201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6201), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_EQ] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_BSLASHpart] = ACTIONS(6201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddpart] = ACTIONS(6201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6203), - [anon_sym_BSLASHchapter] = ACTIONS(6201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddchap] = ACTIONS(6201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsection] = ACTIONS(6201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddsec] = ACTIONS(6201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubsection] = ACTIONS(6201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHparagraph] = ACTIONS(6201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6203), - [anon_sym_BSLASHitem] = ACTIONS(6201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6203), - [sym_word] = ACTIONS(6201), - [sym_placeholder] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_SQUOTE] = ACTIONS(6201), - [anon_sym__] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), - [anon_sym_DOLLAR] = ACTIONS(6201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), - [anon_sym_BSLASHbegin] = ACTIONS(6201), - [anon_sym_BSLASHtitle] = ACTIONS(6201), - [anon_sym_BSLASHauthor] = ACTIONS(6201), - [anon_sym_BSLASHusepackage] = ACTIONS(6201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), - [anon_sym_BSLASHinclude] = ACTIONS(6201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), - [anon_sym_BSLASHinput] = ACTIONS(6201), - [anon_sym_BSLASHsubfile] = ACTIONS(6201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), - [anon_sym_BSLASHbibliography] = ACTIONS(6201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), - [anon_sym_BSLASHincludesvg] = ACTIONS(6201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), - [anon_sym_BSLASHimport] = ACTIONS(6201), - [anon_sym_BSLASHsubimport] = ACTIONS(6201), - [anon_sym_BSLASHinputfrom] = ACTIONS(6201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), - [anon_sym_BSLASHincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHcaption] = ACTIONS(6201), - [anon_sym_BSLASHcite] = ACTIONS(6201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCite] = ACTIONS(6201), - [anon_sym_BSLASHnocite] = ACTIONS(6201), - [anon_sym_BSLASHcitet] = ACTIONS(6201), - [anon_sym_BSLASHcitep] = ACTIONS(6201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteauthor] = ACTIONS(6201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitetitle] = ACTIONS(6201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteyear] = ACTIONS(6201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitedate] = ACTIONS(6201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteurl] = ACTIONS(6201), - [anon_sym_BSLASHfullcite] = ACTIONS(6201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), - [anon_sym_BSLASHcitealt] = ACTIONS(6201), - [anon_sym_BSLASHcitealp] = ACTIONS(6201), - [anon_sym_BSLASHcitetext] = ACTIONS(6201), - [anon_sym_BSLASHparencite] = ACTIONS(6201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHParencite] = ACTIONS(6201), - [anon_sym_BSLASHfootcite] = ACTIONS(6201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), - [anon_sym_BSLASHtextcite] = ACTIONS(6201), - [anon_sym_BSLASHTextcite] = ACTIONS(6201), - [anon_sym_BSLASHsmartcite] = ACTIONS(6201), - [anon_sym_BSLASHSmartcite] = ACTIONS(6201), - [anon_sym_BSLASHsupercite] = ACTIONS(6201), - [anon_sym_BSLASHautocite] = ACTIONS(6201), - [anon_sym_BSLASHAutocite] = ACTIONS(6201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHvolcite] = ACTIONS(6201), - [anon_sym_BSLASHVolcite] = ACTIONS(6201), - [anon_sym_BSLASHpvolcite] = ACTIONS(6201), - [anon_sym_BSLASHPvolcite] = ACTIONS(6201), - [anon_sym_BSLASHfvolcite] = ACTIONS(6201), - [anon_sym_BSLASHftvolcite] = ACTIONS(6201), - [anon_sym_BSLASHsvolcite] = ACTIONS(6201), - [anon_sym_BSLASHSvolcite] = ACTIONS(6201), - [anon_sym_BSLASHtvolcite] = ACTIONS(6201), - [anon_sym_BSLASHTvolcite] = ACTIONS(6201), - [anon_sym_BSLASHavolcite] = ACTIONS(6201), - [anon_sym_BSLASHAvolcite] = ACTIONS(6201), - [anon_sym_BSLASHnotecite] = ACTIONS(6201), - [anon_sym_BSLASHNotecite] = ACTIONS(6201), - [anon_sym_BSLASHpnotecite] = ACTIONS(6201), - [anon_sym_BSLASHPnotecite] = ACTIONS(6201), - [anon_sym_BSLASHfnotecite] = ACTIONS(6201), - [anon_sym_BSLASHlabel] = ACTIONS(6201), - [anon_sym_BSLASHref] = ACTIONS(6201), - [anon_sym_BSLASHeqref] = ACTIONS(6201), - [anon_sym_BSLASHvref] = ACTIONS(6201), - [anon_sym_BSLASHVref] = ACTIONS(6201), - [anon_sym_BSLASHautoref] = ACTIONS(6201), - [anon_sym_BSLASHpageref] = ACTIONS(6201), - [anon_sym_BSLASHcref] = ACTIONS(6201), - [anon_sym_BSLASHCref] = ACTIONS(6201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnameCref] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHlabelcref] = ACTIONS(6201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCrefrange] = ACTIONS(6201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnewlabel] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHdef] = ACTIONS(6201), - [anon_sym_BSLASHlet] = ACTIONS(6201), - [anon_sym_BSLASHleft] = ACTIONS(6201), - [anon_sym_BSLASHbig] = ACTIONS(6201), - [anon_sym_BSLASHBig] = ACTIONS(6201), - [anon_sym_BSLASHbigg] = ACTIONS(6201), - [anon_sym_BSLASHBigg] = ACTIONS(6201), - [anon_sym_BSLASHbigl] = ACTIONS(6201), - [anon_sym_BSLASHBigl] = ACTIONS(6201), - [anon_sym_BSLASHbiggl] = ACTIONS(6201), - [anon_sym_BSLASHBiggl] = ACTIONS(6201), - [anon_sym_BSLASHright] = ACTIONS(6201), - [anon_sym_BSLASHbigr] = ACTIONS(6201), - [anon_sym_BSLASHBigr] = ACTIONS(6201), - [anon_sym_BSLASHbiggr] = ACTIONS(6201), - [anon_sym_BSLASHBiggr] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), - [anon_sym_BSLASHgls] = ACTIONS(6201), - [anon_sym_BSLASHGls] = ACTIONS(6201), - [anon_sym_BSLASHGLS] = ACTIONS(6201), - [anon_sym_BSLASHglspl] = ACTIONS(6201), - [anon_sym_BSLASHGlspl] = ACTIONS(6201), - [anon_sym_BSLASHGLSpl] = ACTIONS(6201), - [anon_sym_BSLASHglsdisp] = ACTIONS(6201), - [anon_sym_BSLASHglslink] = ACTIONS(6201), - [anon_sym_BSLASHglstext] = ACTIONS(6201), - [anon_sym_BSLASHGlstext] = ACTIONS(6201), - [anon_sym_BSLASHGLStext] = ACTIONS(6201), - [anon_sym_BSLASHglsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), - [anon_sym_BSLASHglsplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSplural] = ACTIONS(6201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHglsname] = ACTIONS(6201), - [anon_sym_BSLASHGlsname] = ACTIONS(6201), - [anon_sym_BSLASHGLSname] = ACTIONS(6201), - [anon_sym_BSLASHglssymbol] = ACTIONS(6201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), - [anon_sym_BSLASHglsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), - [anon_sym_BSLASHglsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), - [anon_sym_BSLASHglsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), - [anon_sym_BSLASHglsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), - [anon_sym_BSLASHglsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), - [anon_sym_BSLASHnewacronym] = ACTIONS(6201), - [anon_sym_BSLASHacrshort] = ACTIONS(6201), - [anon_sym_BSLASHAcrshort] = ACTIONS(6201), - [anon_sym_BSLASHACRshort] = ACTIONS(6201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), - [anon_sym_BSLASHacrlong] = ACTIONS(6201), - [anon_sym_BSLASHAcrlong] = ACTIONS(6201), - [anon_sym_BSLASHACRlong] = ACTIONS(6201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), - [anon_sym_BSLASHacrfull] = ACTIONS(6201), - [anon_sym_BSLASHAcrfull] = ACTIONS(6201), - [anon_sym_BSLASHACRfull] = ACTIONS(6201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), - [anon_sym_BSLASHacs] = ACTIONS(6201), - [anon_sym_BSLASHAcs] = ACTIONS(6201), - [anon_sym_BSLASHacsp] = ACTIONS(6201), - [anon_sym_BSLASHAcsp] = ACTIONS(6201), - [anon_sym_BSLASHacl] = ACTIONS(6201), - [anon_sym_BSLASHAcl] = ACTIONS(6201), - [anon_sym_BSLASHaclp] = ACTIONS(6201), - [anon_sym_BSLASHAclp] = ACTIONS(6201), - [anon_sym_BSLASHacf] = ACTIONS(6201), - [anon_sym_BSLASHAcf] = ACTIONS(6201), - [anon_sym_BSLASHacfp] = ACTIONS(6201), - [anon_sym_BSLASHAcfp] = ACTIONS(6201), - [anon_sym_BSLASHac] = ACTIONS(6201), - [anon_sym_BSLASHAc] = ACTIONS(6201), - [anon_sym_BSLASHacp] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), - [anon_sym_BSLASHcolor] = ACTIONS(6201), - [anon_sym_BSLASHcolorbox] = ACTIONS(6201), - [anon_sym_BSLASHtextcolor] = ACTIONS(6201), - [anon_sym_BSLASHpagecolor] = ACTIONS(6201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), - [anon_sym_BSLASHtext] = ACTIONS(6201), - [anon_sym_BSLASHintertext] = ACTIONS(6201), - [anon_sym_shortintertext] = ACTIONS(6201), - }, - [531] = { - [sym_command_name] = ACTIONS(6205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6205), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_RBRACK] = ACTIONS(6207), - [anon_sym_COMMA] = ACTIONS(6207), - [anon_sym_EQ] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_RPAREN] = ACTIONS(6207), - [anon_sym_BSLASHpart] = ACTIONS(6205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddpart] = ACTIONS(6205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6207), - [anon_sym_BSLASHchapter] = ACTIONS(6205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddchap] = ACTIONS(6205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsection] = ACTIONS(6205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddsec] = ACTIONS(6205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubsection] = ACTIONS(6205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHparagraph] = ACTIONS(6205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6207), - [anon_sym_BSLASHitem] = ACTIONS(6205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6207), - [anon_sym_LBRACE] = ACTIONS(6207), - [sym_word] = ACTIONS(6205), - [sym_placeholder] = ACTIONS(6207), - [anon_sym_PLUS] = ACTIONS(6207), - [anon_sym_DASH] = ACTIONS(6207), - [anon_sym_STAR] = ACTIONS(6207), - [anon_sym_SLASH] = ACTIONS(6207), - [anon_sym_LT] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6205), - [anon_sym_BANG] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_COLON] = ACTIONS(6205), - [anon_sym_SQUOTE] = ACTIONS(6205), - [anon_sym__] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), - [anon_sym_DOLLAR] = ACTIONS(6205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), - [anon_sym_BSLASHbegin] = ACTIONS(6205), - [anon_sym_BSLASHtitle] = ACTIONS(6205), - [anon_sym_BSLASHauthor] = ACTIONS(6205), - [anon_sym_BSLASHusepackage] = ACTIONS(6205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), - [anon_sym_BSLASHinclude] = ACTIONS(6205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), - [anon_sym_BSLASHinput] = ACTIONS(6205), - [anon_sym_BSLASHsubfile] = ACTIONS(6205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), - [anon_sym_BSLASHbibliography] = ACTIONS(6205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), - [anon_sym_BSLASHincludesvg] = ACTIONS(6205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), - [anon_sym_BSLASHimport] = ACTIONS(6205), - [anon_sym_BSLASHsubimport] = ACTIONS(6205), - [anon_sym_BSLASHinputfrom] = ACTIONS(6205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), - [anon_sym_BSLASHincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHcaption] = ACTIONS(6205), - [anon_sym_BSLASHcite] = ACTIONS(6205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCite] = ACTIONS(6205), - [anon_sym_BSLASHnocite] = ACTIONS(6205), - [anon_sym_BSLASHcitet] = ACTIONS(6205), - [anon_sym_BSLASHcitep] = ACTIONS(6205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteauthor] = ACTIONS(6205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitetitle] = ACTIONS(6205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteyear] = ACTIONS(6205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitedate] = ACTIONS(6205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteurl] = ACTIONS(6205), - [anon_sym_BSLASHfullcite] = ACTIONS(6205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), - [anon_sym_BSLASHcitealt] = ACTIONS(6205), - [anon_sym_BSLASHcitealp] = ACTIONS(6205), - [anon_sym_BSLASHcitetext] = ACTIONS(6205), - [anon_sym_BSLASHparencite] = ACTIONS(6205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHParencite] = ACTIONS(6205), - [anon_sym_BSLASHfootcite] = ACTIONS(6205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), - [anon_sym_BSLASHtextcite] = ACTIONS(6205), - [anon_sym_BSLASHTextcite] = ACTIONS(6205), - [anon_sym_BSLASHsmartcite] = ACTIONS(6205), - [anon_sym_BSLASHSmartcite] = ACTIONS(6205), - [anon_sym_BSLASHsupercite] = ACTIONS(6205), - [anon_sym_BSLASHautocite] = ACTIONS(6205), - [anon_sym_BSLASHAutocite] = ACTIONS(6205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHvolcite] = ACTIONS(6205), - [anon_sym_BSLASHVolcite] = ACTIONS(6205), - [anon_sym_BSLASHpvolcite] = ACTIONS(6205), - [anon_sym_BSLASHPvolcite] = ACTIONS(6205), - [anon_sym_BSLASHfvolcite] = ACTIONS(6205), - [anon_sym_BSLASHftvolcite] = ACTIONS(6205), - [anon_sym_BSLASHsvolcite] = ACTIONS(6205), - [anon_sym_BSLASHSvolcite] = ACTIONS(6205), - [anon_sym_BSLASHtvolcite] = ACTIONS(6205), - [anon_sym_BSLASHTvolcite] = ACTIONS(6205), - [anon_sym_BSLASHavolcite] = ACTIONS(6205), - [anon_sym_BSLASHAvolcite] = ACTIONS(6205), - [anon_sym_BSLASHnotecite] = ACTIONS(6205), - [anon_sym_BSLASHNotecite] = ACTIONS(6205), - [anon_sym_BSLASHpnotecite] = ACTIONS(6205), - [anon_sym_BSLASHPnotecite] = ACTIONS(6205), - [anon_sym_BSLASHfnotecite] = ACTIONS(6205), - [anon_sym_BSLASHlabel] = ACTIONS(6205), - [anon_sym_BSLASHref] = ACTIONS(6205), - [anon_sym_BSLASHeqref] = ACTIONS(6205), - [anon_sym_BSLASHvref] = ACTIONS(6205), - [anon_sym_BSLASHVref] = ACTIONS(6205), - [anon_sym_BSLASHautoref] = ACTIONS(6205), - [anon_sym_BSLASHpageref] = ACTIONS(6205), - [anon_sym_BSLASHcref] = ACTIONS(6205), - [anon_sym_BSLASHCref] = ACTIONS(6205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnameCref] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHlabelcref] = ACTIONS(6205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCrefrange] = ACTIONS(6205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnewlabel] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHdef] = ACTIONS(6205), - [anon_sym_BSLASHlet] = ACTIONS(6205), - [anon_sym_BSLASHleft] = ACTIONS(6205), - [anon_sym_BSLASHbig] = ACTIONS(6205), - [anon_sym_BSLASHBig] = ACTIONS(6205), - [anon_sym_BSLASHbigg] = ACTIONS(6205), - [anon_sym_BSLASHBigg] = ACTIONS(6205), - [anon_sym_BSLASHbigl] = ACTIONS(6205), - [anon_sym_BSLASHBigl] = ACTIONS(6205), - [anon_sym_BSLASHbiggl] = ACTIONS(6205), - [anon_sym_BSLASHBiggl] = ACTIONS(6205), - [anon_sym_BSLASHright] = ACTIONS(6205), - [anon_sym_BSLASHbigr] = ACTIONS(6205), - [anon_sym_BSLASHBigr] = ACTIONS(6205), - [anon_sym_BSLASHbiggr] = ACTIONS(6205), - [anon_sym_BSLASHBiggr] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), - [anon_sym_BSLASHgls] = ACTIONS(6205), - [anon_sym_BSLASHGls] = ACTIONS(6205), - [anon_sym_BSLASHGLS] = ACTIONS(6205), - [anon_sym_BSLASHglspl] = ACTIONS(6205), - [anon_sym_BSLASHGlspl] = ACTIONS(6205), - [anon_sym_BSLASHGLSpl] = ACTIONS(6205), - [anon_sym_BSLASHglsdisp] = ACTIONS(6205), - [anon_sym_BSLASHglslink] = ACTIONS(6205), - [anon_sym_BSLASHglstext] = ACTIONS(6205), - [anon_sym_BSLASHGlstext] = ACTIONS(6205), - [anon_sym_BSLASHGLStext] = ACTIONS(6205), - [anon_sym_BSLASHglsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), - [anon_sym_BSLASHglsplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSplural] = ACTIONS(6205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHglsname] = ACTIONS(6205), - [anon_sym_BSLASHGlsname] = ACTIONS(6205), - [anon_sym_BSLASHGLSname] = ACTIONS(6205), - [anon_sym_BSLASHglssymbol] = ACTIONS(6205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), - [anon_sym_BSLASHglsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), - [anon_sym_BSLASHglsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), - [anon_sym_BSLASHglsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), - [anon_sym_BSLASHglsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), - [anon_sym_BSLASHglsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), - [anon_sym_BSLASHnewacronym] = ACTIONS(6205), - [anon_sym_BSLASHacrshort] = ACTIONS(6205), - [anon_sym_BSLASHAcrshort] = ACTIONS(6205), - [anon_sym_BSLASHACRshort] = ACTIONS(6205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), - [anon_sym_BSLASHacrlong] = ACTIONS(6205), - [anon_sym_BSLASHAcrlong] = ACTIONS(6205), - [anon_sym_BSLASHACRlong] = ACTIONS(6205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), - [anon_sym_BSLASHacrfull] = ACTIONS(6205), - [anon_sym_BSLASHAcrfull] = ACTIONS(6205), - [anon_sym_BSLASHACRfull] = ACTIONS(6205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), - [anon_sym_BSLASHacs] = ACTIONS(6205), - [anon_sym_BSLASHAcs] = ACTIONS(6205), - [anon_sym_BSLASHacsp] = ACTIONS(6205), - [anon_sym_BSLASHAcsp] = ACTIONS(6205), - [anon_sym_BSLASHacl] = ACTIONS(6205), - [anon_sym_BSLASHAcl] = ACTIONS(6205), - [anon_sym_BSLASHaclp] = ACTIONS(6205), - [anon_sym_BSLASHAclp] = ACTIONS(6205), - [anon_sym_BSLASHacf] = ACTIONS(6205), - [anon_sym_BSLASHAcf] = ACTIONS(6205), - [anon_sym_BSLASHacfp] = ACTIONS(6205), - [anon_sym_BSLASHAcfp] = ACTIONS(6205), - [anon_sym_BSLASHac] = ACTIONS(6205), - [anon_sym_BSLASHAc] = ACTIONS(6205), - [anon_sym_BSLASHacp] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), - [anon_sym_BSLASHcolor] = ACTIONS(6205), - [anon_sym_BSLASHcolorbox] = ACTIONS(6205), - [anon_sym_BSLASHtextcolor] = ACTIONS(6205), - [anon_sym_BSLASHpagecolor] = ACTIONS(6205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), - [anon_sym_BSLASHtext] = ACTIONS(6205), - [anon_sym_BSLASHintertext] = ACTIONS(6205), - [anon_sym_shortintertext] = ACTIONS(6205), - }, - [532] = { - [sym_command_name] = ACTIONS(6209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6209), - [anon_sym_LBRACK] = ACTIONS(6211), - [anon_sym_RBRACK] = ACTIONS(6211), - [anon_sym_COMMA] = ACTIONS(6211), - [anon_sym_EQ] = ACTIONS(6211), - [anon_sym_LPAREN] = ACTIONS(6211), - [anon_sym_RPAREN] = ACTIONS(6211), - [anon_sym_BSLASHpart] = ACTIONS(6209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddpart] = ACTIONS(6209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6211), - [anon_sym_BSLASHchapter] = ACTIONS(6209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddchap] = ACTIONS(6209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsection] = ACTIONS(6209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddsec] = ACTIONS(6209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubsection] = ACTIONS(6209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHparagraph] = ACTIONS(6209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6211), - [anon_sym_BSLASHitem] = ACTIONS(6209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6211), - [anon_sym_LBRACE] = ACTIONS(6211), - [sym_word] = ACTIONS(6209), - [sym_placeholder] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6211), - [anon_sym_DASH] = ACTIONS(6211), - [anon_sym_STAR] = ACTIONS(6211), - [anon_sym_SLASH] = ACTIONS(6211), - [anon_sym_LT] = ACTIONS(6209), - [anon_sym_GT] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6209), - [anon_sym_COLON] = ACTIONS(6209), - [anon_sym_SQUOTE] = ACTIONS(6209), - [anon_sym__] = ACTIONS(6211), - [anon_sym_CARET] = ACTIONS(6211), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6211), - [anon_sym_DOLLAR] = ACTIONS(6209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6211), - [anon_sym_BSLASHbegin] = ACTIONS(6209), - [anon_sym_BSLASHtitle] = ACTIONS(6209), - [anon_sym_BSLASHauthor] = ACTIONS(6209), - [anon_sym_BSLASHusepackage] = ACTIONS(6209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), - [anon_sym_BSLASHinclude] = ACTIONS(6209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), - [anon_sym_BSLASHinput] = ACTIONS(6209), - [anon_sym_BSLASHsubfile] = ACTIONS(6209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), - [anon_sym_BSLASHbibliography] = ACTIONS(6209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), - [anon_sym_BSLASHincludesvg] = ACTIONS(6209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), - [anon_sym_BSLASHimport] = ACTIONS(6209), - [anon_sym_BSLASHsubimport] = ACTIONS(6209), - [anon_sym_BSLASHinputfrom] = ACTIONS(6209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), - [anon_sym_BSLASHincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHcaption] = ACTIONS(6209), - [anon_sym_BSLASHcite] = ACTIONS(6209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCite] = ACTIONS(6209), - [anon_sym_BSLASHnocite] = ACTIONS(6209), - [anon_sym_BSLASHcitet] = ACTIONS(6209), - [anon_sym_BSLASHcitep] = ACTIONS(6209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteauthor] = ACTIONS(6209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitetitle] = ACTIONS(6209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteyear] = ACTIONS(6209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitedate] = ACTIONS(6209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteurl] = ACTIONS(6209), - [anon_sym_BSLASHfullcite] = ACTIONS(6209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), - [anon_sym_BSLASHcitealt] = ACTIONS(6209), - [anon_sym_BSLASHcitealp] = ACTIONS(6209), - [anon_sym_BSLASHcitetext] = ACTIONS(6209), - [anon_sym_BSLASHparencite] = ACTIONS(6209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHParencite] = ACTIONS(6209), - [anon_sym_BSLASHfootcite] = ACTIONS(6209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), - [anon_sym_BSLASHtextcite] = ACTIONS(6209), - [anon_sym_BSLASHTextcite] = ACTIONS(6209), - [anon_sym_BSLASHsmartcite] = ACTIONS(6209), - [anon_sym_BSLASHSmartcite] = ACTIONS(6209), - [anon_sym_BSLASHsupercite] = ACTIONS(6209), - [anon_sym_BSLASHautocite] = ACTIONS(6209), - [anon_sym_BSLASHAutocite] = ACTIONS(6209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHvolcite] = ACTIONS(6209), - [anon_sym_BSLASHVolcite] = ACTIONS(6209), - [anon_sym_BSLASHpvolcite] = ACTIONS(6209), - [anon_sym_BSLASHPvolcite] = ACTIONS(6209), - [anon_sym_BSLASHfvolcite] = ACTIONS(6209), - [anon_sym_BSLASHftvolcite] = ACTIONS(6209), - [anon_sym_BSLASHsvolcite] = ACTIONS(6209), - [anon_sym_BSLASHSvolcite] = ACTIONS(6209), - [anon_sym_BSLASHtvolcite] = ACTIONS(6209), - [anon_sym_BSLASHTvolcite] = ACTIONS(6209), - [anon_sym_BSLASHavolcite] = ACTIONS(6209), - [anon_sym_BSLASHAvolcite] = ACTIONS(6209), - [anon_sym_BSLASHnotecite] = ACTIONS(6209), - [anon_sym_BSLASHNotecite] = ACTIONS(6209), - [anon_sym_BSLASHpnotecite] = ACTIONS(6209), - [anon_sym_BSLASHPnotecite] = ACTIONS(6209), - [anon_sym_BSLASHfnotecite] = ACTIONS(6209), - [anon_sym_BSLASHlabel] = ACTIONS(6209), - [anon_sym_BSLASHref] = ACTIONS(6209), - [anon_sym_BSLASHeqref] = ACTIONS(6209), - [anon_sym_BSLASHvref] = ACTIONS(6209), - [anon_sym_BSLASHVref] = ACTIONS(6209), - [anon_sym_BSLASHautoref] = ACTIONS(6209), - [anon_sym_BSLASHpageref] = ACTIONS(6209), - [anon_sym_BSLASHcref] = ACTIONS(6209), - [anon_sym_BSLASHCref] = ACTIONS(6209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnameCref] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHlabelcref] = ACTIONS(6209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCrefrange] = ACTIONS(6209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnewlabel] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6211), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHdef] = ACTIONS(6209), - [anon_sym_BSLASHlet] = ACTIONS(6209), - [anon_sym_BSLASHleft] = ACTIONS(6209), - [anon_sym_BSLASHbig] = ACTIONS(6209), - [anon_sym_BSLASHBig] = ACTIONS(6209), - [anon_sym_BSLASHbigg] = ACTIONS(6209), - [anon_sym_BSLASHBigg] = ACTIONS(6209), - [anon_sym_BSLASHbigl] = ACTIONS(6209), - [anon_sym_BSLASHBigl] = ACTIONS(6209), - [anon_sym_BSLASHbiggl] = ACTIONS(6209), - [anon_sym_BSLASHBiggl] = ACTIONS(6209), - [anon_sym_BSLASHright] = ACTIONS(6209), - [anon_sym_BSLASHbigr] = ACTIONS(6209), - [anon_sym_BSLASHBigr] = ACTIONS(6209), - [anon_sym_BSLASHbiggr] = ACTIONS(6209), - [anon_sym_BSLASHBiggr] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), - [anon_sym_BSLASHgls] = ACTIONS(6209), - [anon_sym_BSLASHGls] = ACTIONS(6209), - [anon_sym_BSLASHGLS] = ACTIONS(6209), - [anon_sym_BSLASHglspl] = ACTIONS(6209), - [anon_sym_BSLASHGlspl] = ACTIONS(6209), - [anon_sym_BSLASHGLSpl] = ACTIONS(6209), - [anon_sym_BSLASHglsdisp] = ACTIONS(6209), - [anon_sym_BSLASHglslink] = ACTIONS(6209), - [anon_sym_BSLASHglstext] = ACTIONS(6209), - [anon_sym_BSLASHGlstext] = ACTIONS(6209), - [anon_sym_BSLASHGLStext] = ACTIONS(6209), - [anon_sym_BSLASHglsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), - [anon_sym_BSLASHglsplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSplural] = ACTIONS(6209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHglsname] = ACTIONS(6209), - [anon_sym_BSLASHGlsname] = ACTIONS(6209), - [anon_sym_BSLASHGLSname] = ACTIONS(6209), - [anon_sym_BSLASHglssymbol] = ACTIONS(6209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), - [anon_sym_BSLASHglsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), - [anon_sym_BSLASHglsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), - [anon_sym_BSLASHglsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), - [anon_sym_BSLASHglsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), - [anon_sym_BSLASHglsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), - [anon_sym_BSLASHnewacronym] = ACTIONS(6209), - [anon_sym_BSLASHacrshort] = ACTIONS(6209), - [anon_sym_BSLASHAcrshort] = ACTIONS(6209), - [anon_sym_BSLASHACRshort] = ACTIONS(6209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), - [anon_sym_BSLASHacrlong] = ACTIONS(6209), - [anon_sym_BSLASHAcrlong] = ACTIONS(6209), - [anon_sym_BSLASHACRlong] = ACTIONS(6209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), - [anon_sym_BSLASHacrfull] = ACTIONS(6209), - [anon_sym_BSLASHAcrfull] = ACTIONS(6209), - [anon_sym_BSLASHACRfull] = ACTIONS(6209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), - [anon_sym_BSLASHacs] = ACTIONS(6209), - [anon_sym_BSLASHAcs] = ACTIONS(6209), - [anon_sym_BSLASHacsp] = ACTIONS(6209), - [anon_sym_BSLASHAcsp] = ACTIONS(6209), - [anon_sym_BSLASHacl] = ACTIONS(6209), - [anon_sym_BSLASHAcl] = ACTIONS(6209), - [anon_sym_BSLASHaclp] = ACTIONS(6209), - [anon_sym_BSLASHAclp] = ACTIONS(6209), - [anon_sym_BSLASHacf] = ACTIONS(6209), - [anon_sym_BSLASHAcf] = ACTIONS(6209), - [anon_sym_BSLASHacfp] = ACTIONS(6209), - [anon_sym_BSLASHAcfp] = ACTIONS(6209), - [anon_sym_BSLASHac] = ACTIONS(6209), - [anon_sym_BSLASHAc] = ACTIONS(6209), - [anon_sym_BSLASHacp] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), - [anon_sym_BSLASHcolor] = ACTIONS(6209), - [anon_sym_BSLASHcolorbox] = ACTIONS(6209), - [anon_sym_BSLASHtextcolor] = ACTIONS(6209), - [anon_sym_BSLASHpagecolor] = ACTIONS(6209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), - [anon_sym_BSLASHtext] = ACTIONS(6209), - [anon_sym_BSLASHintertext] = ACTIONS(6209), - [anon_sym_shortintertext] = ACTIONS(6209), - }, - [533] = { - [sym_command_name] = ACTIONS(6213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(6215), - [anon_sym_RBRACK] = ACTIONS(6215), - [anon_sym_COMMA] = ACTIONS(6215), - [anon_sym_EQ] = ACTIONS(6215), - [anon_sym_LPAREN] = ACTIONS(6215), - [anon_sym_RPAREN] = ACTIONS(6215), - [anon_sym_BSLASHpart] = ACTIONS(6213), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddpart] = ACTIONS(6213), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6215), - [anon_sym_BSLASHchapter] = ACTIONS(6213), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddchap] = ACTIONS(6213), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsection] = ACTIONS(6213), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddsec] = ACTIONS(6213), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubsection] = ACTIONS(6213), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6213), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHparagraph] = ACTIONS(6213), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6213), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6215), - [anon_sym_BSLASHitem] = ACTIONS(6213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6215), - [anon_sym_LBRACE] = ACTIONS(6215), - [sym_word] = ACTIONS(6213), - [sym_placeholder] = ACTIONS(6215), - [anon_sym_PLUS] = ACTIONS(6215), - [anon_sym_DASH] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6215), - [anon_sym_SLASH] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6213), - [anon_sym_GT] = ACTIONS(6213), - [anon_sym_BANG] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6213), - [anon_sym_COLON] = ACTIONS(6213), - [anon_sym_SQUOTE] = ACTIONS(6213), - [anon_sym__] = ACTIONS(6215), - [anon_sym_CARET] = ACTIONS(6215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6215), - [anon_sym_DOLLAR] = ACTIONS(6213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6215), - [anon_sym_BSLASHbegin] = ACTIONS(6213), - [anon_sym_BSLASHtitle] = ACTIONS(6213), - [anon_sym_BSLASHauthor] = ACTIONS(6213), - [anon_sym_BSLASHusepackage] = ACTIONS(6213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6213), - [anon_sym_BSLASHinclude] = ACTIONS(6213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6213), - [anon_sym_BSLASHinput] = ACTIONS(6213), - [anon_sym_BSLASHsubfile] = ACTIONS(6213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6213), - [anon_sym_BSLASHbibliography] = ACTIONS(6213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6213), - [anon_sym_BSLASHincludesvg] = ACTIONS(6213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6213), - [anon_sym_BSLASHimport] = ACTIONS(6213), - [anon_sym_BSLASHsubimport] = ACTIONS(6213), - [anon_sym_BSLASHinputfrom] = ACTIONS(6213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6213), - [anon_sym_BSLASHincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHcaption] = ACTIONS(6213), - [anon_sym_BSLASHcite] = ACTIONS(6213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCite] = ACTIONS(6213), - [anon_sym_BSLASHnocite] = ACTIONS(6213), - [anon_sym_BSLASHcitet] = ACTIONS(6213), - [anon_sym_BSLASHcitep] = ACTIONS(6213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteauthor] = ACTIONS(6213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitetitle] = ACTIONS(6213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteyear] = ACTIONS(6213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitedate] = ACTIONS(6213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteurl] = ACTIONS(6213), - [anon_sym_BSLASHfullcite] = ACTIONS(6213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6213), - [anon_sym_BSLASHcitealt] = ACTIONS(6213), - [anon_sym_BSLASHcitealp] = ACTIONS(6213), - [anon_sym_BSLASHcitetext] = ACTIONS(6213), - [anon_sym_BSLASHparencite] = ACTIONS(6213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHParencite] = ACTIONS(6213), - [anon_sym_BSLASHfootcite] = ACTIONS(6213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6213), - [anon_sym_BSLASHtextcite] = ACTIONS(6213), - [anon_sym_BSLASHTextcite] = ACTIONS(6213), - [anon_sym_BSLASHsmartcite] = ACTIONS(6213), - [anon_sym_BSLASHSmartcite] = ACTIONS(6213), - [anon_sym_BSLASHsupercite] = ACTIONS(6213), - [anon_sym_BSLASHautocite] = ACTIONS(6213), - [anon_sym_BSLASHAutocite] = ACTIONS(6213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHvolcite] = ACTIONS(6213), - [anon_sym_BSLASHVolcite] = ACTIONS(6213), - [anon_sym_BSLASHpvolcite] = ACTIONS(6213), - [anon_sym_BSLASHPvolcite] = ACTIONS(6213), - [anon_sym_BSLASHfvolcite] = ACTIONS(6213), - [anon_sym_BSLASHftvolcite] = ACTIONS(6213), - [anon_sym_BSLASHsvolcite] = ACTIONS(6213), - [anon_sym_BSLASHSvolcite] = ACTIONS(6213), - [anon_sym_BSLASHtvolcite] = ACTIONS(6213), - [anon_sym_BSLASHTvolcite] = ACTIONS(6213), - [anon_sym_BSLASHavolcite] = ACTIONS(6213), - [anon_sym_BSLASHAvolcite] = ACTIONS(6213), - [anon_sym_BSLASHnotecite] = ACTIONS(6213), - [anon_sym_BSLASHNotecite] = ACTIONS(6213), - [anon_sym_BSLASHpnotecite] = ACTIONS(6213), - [anon_sym_BSLASHPnotecite] = ACTIONS(6213), - [anon_sym_BSLASHfnotecite] = ACTIONS(6213), - [anon_sym_BSLASHlabel] = ACTIONS(6213), - [anon_sym_BSLASHref] = ACTIONS(6213), - [anon_sym_BSLASHeqref] = ACTIONS(6213), - [anon_sym_BSLASHvref] = ACTIONS(6213), - [anon_sym_BSLASHVref] = ACTIONS(6213), - [anon_sym_BSLASHautoref] = ACTIONS(6213), - [anon_sym_BSLASHpageref] = ACTIONS(6213), - [anon_sym_BSLASHcref] = ACTIONS(6213), - [anon_sym_BSLASHCref] = ACTIONS(6213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnameCref] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHlabelcref] = ACTIONS(6213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCrefrange] = ACTIONS(6213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnewlabel] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6215), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHdef] = ACTIONS(6213), - [anon_sym_BSLASHlet] = ACTIONS(6213), - [anon_sym_BSLASHleft] = ACTIONS(6213), - [anon_sym_BSLASHbig] = ACTIONS(6213), - [anon_sym_BSLASHBig] = ACTIONS(6213), - [anon_sym_BSLASHbigg] = ACTIONS(6213), - [anon_sym_BSLASHBigg] = ACTIONS(6213), - [anon_sym_BSLASHbigl] = ACTIONS(6213), - [anon_sym_BSLASHBigl] = ACTIONS(6213), - [anon_sym_BSLASHbiggl] = ACTIONS(6213), - [anon_sym_BSLASHBiggl] = ACTIONS(6213), - [anon_sym_BSLASHright] = ACTIONS(6213), - [anon_sym_BSLASHbigr] = ACTIONS(6213), - [anon_sym_BSLASHBigr] = ACTIONS(6213), - [anon_sym_BSLASHbiggr] = ACTIONS(6213), - [anon_sym_BSLASHBiggr] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6213), - [anon_sym_BSLASHgls] = ACTIONS(6213), - [anon_sym_BSLASHGls] = ACTIONS(6213), - [anon_sym_BSLASHGLS] = ACTIONS(6213), - [anon_sym_BSLASHglspl] = ACTIONS(6213), - [anon_sym_BSLASHGlspl] = ACTIONS(6213), - [anon_sym_BSLASHGLSpl] = ACTIONS(6213), - [anon_sym_BSLASHglsdisp] = ACTIONS(6213), - [anon_sym_BSLASHglslink] = ACTIONS(6213), - [anon_sym_BSLASHglstext] = ACTIONS(6213), - [anon_sym_BSLASHGlstext] = ACTIONS(6213), - [anon_sym_BSLASHGLStext] = ACTIONS(6213), - [anon_sym_BSLASHglsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6213), - [anon_sym_BSLASHglsplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSplural] = ACTIONS(6213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHglsname] = ACTIONS(6213), - [anon_sym_BSLASHGlsname] = ACTIONS(6213), - [anon_sym_BSLASHGLSname] = ACTIONS(6213), - [anon_sym_BSLASHglssymbol] = ACTIONS(6213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6213), - [anon_sym_BSLASHglsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6213), - [anon_sym_BSLASHglsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6213), - [anon_sym_BSLASHglsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6213), - [anon_sym_BSLASHglsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6213), - [anon_sym_BSLASHglsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6213), - [anon_sym_BSLASHnewacronym] = ACTIONS(6213), - [anon_sym_BSLASHacrshort] = ACTIONS(6213), - [anon_sym_BSLASHAcrshort] = ACTIONS(6213), - [anon_sym_BSLASHACRshort] = ACTIONS(6213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6213), - [anon_sym_BSLASHacrlong] = ACTIONS(6213), - [anon_sym_BSLASHAcrlong] = ACTIONS(6213), - [anon_sym_BSLASHACRlong] = ACTIONS(6213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6213), - [anon_sym_BSLASHacrfull] = ACTIONS(6213), - [anon_sym_BSLASHAcrfull] = ACTIONS(6213), - [anon_sym_BSLASHACRfull] = ACTIONS(6213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6213), - [anon_sym_BSLASHacs] = ACTIONS(6213), - [anon_sym_BSLASHAcs] = ACTIONS(6213), - [anon_sym_BSLASHacsp] = ACTIONS(6213), - [anon_sym_BSLASHAcsp] = ACTIONS(6213), - [anon_sym_BSLASHacl] = ACTIONS(6213), - [anon_sym_BSLASHAcl] = ACTIONS(6213), - [anon_sym_BSLASHaclp] = ACTIONS(6213), - [anon_sym_BSLASHAclp] = ACTIONS(6213), - [anon_sym_BSLASHacf] = ACTIONS(6213), - [anon_sym_BSLASHAcf] = ACTIONS(6213), - [anon_sym_BSLASHacfp] = ACTIONS(6213), - [anon_sym_BSLASHAcfp] = ACTIONS(6213), - [anon_sym_BSLASHac] = ACTIONS(6213), - [anon_sym_BSLASHAc] = ACTIONS(6213), - [anon_sym_BSLASHacp] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6213), - [anon_sym_BSLASHcolor] = ACTIONS(6213), - [anon_sym_BSLASHcolorbox] = ACTIONS(6213), - [anon_sym_BSLASHtextcolor] = ACTIONS(6213), - [anon_sym_BSLASHpagecolor] = ACTIONS(6213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6213), - [anon_sym_BSLASHtext] = ACTIONS(6213), - [anon_sym_BSLASHintertext] = ACTIONS(6213), - [anon_sym_shortintertext] = ACTIONS(6213), - }, - [534] = { - [sym_command_name] = ACTIONS(6217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6217), - [anon_sym_LBRACK] = ACTIONS(6219), - [anon_sym_RBRACK] = ACTIONS(6219), - [anon_sym_COMMA] = ACTIONS(6219), - [anon_sym_EQ] = ACTIONS(6219), - [anon_sym_LPAREN] = ACTIONS(6219), - [anon_sym_RPAREN] = ACTIONS(6219), - [anon_sym_BSLASHpart] = ACTIONS(6217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddpart] = ACTIONS(6217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6219), - [anon_sym_BSLASHchapter] = ACTIONS(6217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddchap] = ACTIONS(6217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsection] = ACTIONS(6217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddsec] = ACTIONS(6217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubsection] = ACTIONS(6217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHparagraph] = ACTIONS(6217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6219), - [anon_sym_BSLASHitem] = ACTIONS(6217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6219), - [anon_sym_LBRACE] = ACTIONS(6219), - [sym_word] = ACTIONS(6217), - [sym_placeholder] = ACTIONS(6219), - [anon_sym_PLUS] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_STAR] = ACTIONS(6219), - [anon_sym_SLASH] = ACTIONS(6219), - [anon_sym_LT] = ACTIONS(6217), - [anon_sym_GT] = ACTIONS(6217), - [anon_sym_BANG] = ACTIONS(6217), - [anon_sym_PIPE] = ACTIONS(6217), - [anon_sym_COLON] = ACTIONS(6217), - [anon_sym_SQUOTE] = ACTIONS(6217), - [anon_sym__] = ACTIONS(6219), - [anon_sym_CARET] = ACTIONS(6219), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6219), - [anon_sym_DOLLAR] = ACTIONS(6217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6219), - [anon_sym_BSLASHbegin] = ACTIONS(6217), - [anon_sym_BSLASHtitle] = ACTIONS(6217), - [anon_sym_BSLASHauthor] = ACTIONS(6217), - [anon_sym_BSLASHusepackage] = ACTIONS(6217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6217), - [anon_sym_BSLASHinclude] = ACTIONS(6217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6217), - [anon_sym_BSLASHinput] = ACTIONS(6217), - [anon_sym_BSLASHsubfile] = ACTIONS(6217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6217), - [anon_sym_BSLASHbibliography] = ACTIONS(6217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6217), - [anon_sym_BSLASHincludesvg] = ACTIONS(6217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6217), - [anon_sym_BSLASHimport] = ACTIONS(6217), - [anon_sym_BSLASHsubimport] = ACTIONS(6217), - [anon_sym_BSLASHinputfrom] = ACTIONS(6217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6217), - [anon_sym_BSLASHincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHcaption] = ACTIONS(6217), - [anon_sym_BSLASHcite] = ACTIONS(6217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCite] = ACTIONS(6217), - [anon_sym_BSLASHnocite] = ACTIONS(6217), - [anon_sym_BSLASHcitet] = ACTIONS(6217), - [anon_sym_BSLASHcitep] = ACTIONS(6217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteauthor] = ACTIONS(6217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitetitle] = ACTIONS(6217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteyear] = ACTIONS(6217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitedate] = ACTIONS(6217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteurl] = ACTIONS(6217), - [anon_sym_BSLASHfullcite] = ACTIONS(6217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6217), - [anon_sym_BSLASHcitealt] = ACTIONS(6217), - [anon_sym_BSLASHcitealp] = ACTIONS(6217), - [anon_sym_BSLASHcitetext] = ACTIONS(6217), - [anon_sym_BSLASHparencite] = ACTIONS(6217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHParencite] = ACTIONS(6217), - [anon_sym_BSLASHfootcite] = ACTIONS(6217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6217), - [anon_sym_BSLASHtextcite] = ACTIONS(6217), - [anon_sym_BSLASHTextcite] = ACTIONS(6217), - [anon_sym_BSLASHsmartcite] = ACTIONS(6217), - [anon_sym_BSLASHSmartcite] = ACTIONS(6217), - [anon_sym_BSLASHsupercite] = ACTIONS(6217), - [anon_sym_BSLASHautocite] = ACTIONS(6217), - [anon_sym_BSLASHAutocite] = ACTIONS(6217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHvolcite] = ACTIONS(6217), - [anon_sym_BSLASHVolcite] = ACTIONS(6217), - [anon_sym_BSLASHpvolcite] = ACTIONS(6217), - [anon_sym_BSLASHPvolcite] = ACTIONS(6217), - [anon_sym_BSLASHfvolcite] = ACTIONS(6217), - [anon_sym_BSLASHftvolcite] = ACTIONS(6217), - [anon_sym_BSLASHsvolcite] = ACTIONS(6217), - [anon_sym_BSLASHSvolcite] = ACTIONS(6217), - [anon_sym_BSLASHtvolcite] = ACTIONS(6217), - [anon_sym_BSLASHTvolcite] = ACTIONS(6217), - [anon_sym_BSLASHavolcite] = ACTIONS(6217), - [anon_sym_BSLASHAvolcite] = ACTIONS(6217), - [anon_sym_BSLASHnotecite] = ACTIONS(6217), - [anon_sym_BSLASHNotecite] = ACTIONS(6217), - [anon_sym_BSLASHpnotecite] = ACTIONS(6217), - [anon_sym_BSLASHPnotecite] = ACTIONS(6217), - [anon_sym_BSLASHfnotecite] = ACTIONS(6217), - [anon_sym_BSLASHlabel] = ACTIONS(6217), - [anon_sym_BSLASHref] = ACTIONS(6217), - [anon_sym_BSLASHeqref] = ACTIONS(6217), - [anon_sym_BSLASHvref] = ACTIONS(6217), - [anon_sym_BSLASHVref] = ACTIONS(6217), - [anon_sym_BSLASHautoref] = ACTIONS(6217), - [anon_sym_BSLASHpageref] = ACTIONS(6217), - [anon_sym_BSLASHcref] = ACTIONS(6217), - [anon_sym_BSLASHCref] = ACTIONS(6217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnameCref] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHlabelcref] = ACTIONS(6217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCrefrange] = ACTIONS(6217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnewlabel] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6219), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHdef] = ACTIONS(6217), - [anon_sym_BSLASHlet] = ACTIONS(6217), - [anon_sym_BSLASHleft] = ACTIONS(6217), - [anon_sym_BSLASHbig] = ACTIONS(6217), - [anon_sym_BSLASHBig] = ACTIONS(6217), - [anon_sym_BSLASHbigg] = ACTIONS(6217), - [anon_sym_BSLASHBigg] = ACTIONS(6217), - [anon_sym_BSLASHbigl] = ACTIONS(6217), - [anon_sym_BSLASHBigl] = ACTIONS(6217), - [anon_sym_BSLASHbiggl] = ACTIONS(6217), - [anon_sym_BSLASHBiggl] = ACTIONS(6217), - [anon_sym_BSLASHright] = ACTIONS(6217), - [anon_sym_BSLASHbigr] = ACTIONS(6217), - [anon_sym_BSLASHBigr] = ACTIONS(6217), - [anon_sym_BSLASHbiggr] = ACTIONS(6217), - [anon_sym_BSLASHBiggr] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6217), - [anon_sym_BSLASHgls] = ACTIONS(6217), - [anon_sym_BSLASHGls] = ACTIONS(6217), - [anon_sym_BSLASHGLS] = ACTIONS(6217), - [anon_sym_BSLASHglspl] = ACTIONS(6217), - [anon_sym_BSLASHGlspl] = ACTIONS(6217), - [anon_sym_BSLASHGLSpl] = ACTIONS(6217), - [anon_sym_BSLASHglsdisp] = ACTIONS(6217), - [anon_sym_BSLASHglslink] = ACTIONS(6217), - [anon_sym_BSLASHglstext] = ACTIONS(6217), - [anon_sym_BSLASHGlstext] = ACTIONS(6217), - [anon_sym_BSLASHGLStext] = ACTIONS(6217), - [anon_sym_BSLASHglsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6217), - [anon_sym_BSLASHglsplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSplural] = ACTIONS(6217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHglsname] = ACTIONS(6217), - [anon_sym_BSLASHGlsname] = ACTIONS(6217), - [anon_sym_BSLASHGLSname] = ACTIONS(6217), - [anon_sym_BSLASHglssymbol] = ACTIONS(6217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6217), - [anon_sym_BSLASHglsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6217), - [anon_sym_BSLASHglsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6217), - [anon_sym_BSLASHglsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6217), - [anon_sym_BSLASHglsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6217), - [anon_sym_BSLASHglsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6217), - [anon_sym_BSLASHnewacronym] = ACTIONS(6217), - [anon_sym_BSLASHacrshort] = ACTIONS(6217), - [anon_sym_BSLASHAcrshort] = ACTIONS(6217), - [anon_sym_BSLASHACRshort] = ACTIONS(6217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6217), - [anon_sym_BSLASHacrlong] = ACTIONS(6217), - [anon_sym_BSLASHAcrlong] = ACTIONS(6217), - [anon_sym_BSLASHACRlong] = ACTIONS(6217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6217), - [anon_sym_BSLASHacrfull] = ACTIONS(6217), - [anon_sym_BSLASHAcrfull] = ACTIONS(6217), - [anon_sym_BSLASHACRfull] = ACTIONS(6217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6217), - [anon_sym_BSLASHacs] = ACTIONS(6217), - [anon_sym_BSLASHAcs] = ACTIONS(6217), - [anon_sym_BSLASHacsp] = ACTIONS(6217), - [anon_sym_BSLASHAcsp] = ACTIONS(6217), - [anon_sym_BSLASHacl] = ACTIONS(6217), - [anon_sym_BSLASHAcl] = ACTIONS(6217), - [anon_sym_BSLASHaclp] = ACTIONS(6217), - [anon_sym_BSLASHAclp] = ACTIONS(6217), - [anon_sym_BSLASHacf] = ACTIONS(6217), - [anon_sym_BSLASHAcf] = ACTIONS(6217), - [anon_sym_BSLASHacfp] = ACTIONS(6217), - [anon_sym_BSLASHAcfp] = ACTIONS(6217), - [anon_sym_BSLASHac] = ACTIONS(6217), - [anon_sym_BSLASHAc] = ACTIONS(6217), - [anon_sym_BSLASHacp] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6217), - [anon_sym_BSLASHcolor] = ACTIONS(6217), - [anon_sym_BSLASHcolorbox] = ACTIONS(6217), - [anon_sym_BSLASHtextcolor] = ACTIONS(6217), - [anon_sym_BSLASHpagecolor] = ACTIONS(6217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6217), - [anon_sym_BSLASHtext] = ACTIONS(6217), - [anon_sym_BSLASHintertext] = ACTIONS(6217), - [anon_sym_shortintertext] = ACTIONS(6217), - }, - [535] = { - [sym_command_name] = ACTIONS(6221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6221), - [anon_sym_LBRACK] = ACTIONS(6223), - [anon_sym_RBRACK] = ACTIONS(6223), - [anon_sym_COMMA] = ACTIONS(6223), - [anon_sym_EQ] = ACTIONS(6223), - [anon_sym_LPAREN] = ACTIONS(6223), - [anon_sym_RPAREN] = ACTIONS(6223), - [anon_sym_BSLASHpart] = ACTIONS(6221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddpart] = ACTIONS(6221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6223), - [anon_sym_BSLASHchapter] = ACTIONS(6221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddchap] = ACTIONS(6221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsection] = ACTIONS(6221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddsec] = ACTIONS(6221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubsection] = ACTIONS(6221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHparagraph] = ACTIONS(6221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6223), - [anon_sym_BSLASHitem] = ACTIONS(6221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6223), - [anon_sym_LBRACE] = ACTIONS(6223), - [sym_word] = ACTIONS(6221), - [sym_placeholder] = ACTIONS(6223), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6223), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_LT] = ACTIONS(6221), - [anon_sym_GT] = ACTIONS(6221), - [anon_sym_BANG] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_SQUOTE] = ACTIONS(6221), - [anon_sym__] = ACTIONS(6223), - [anon_sym_CARET] = ACTIONS(6223), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6223), - [anon_sym_DOLLAR] = ACTIONS(6221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6223), - [anon_sym_BSLASHbegin] = ACTIONS(6221), - [anon_sym_BSLASHtitle] = ACTIONS(6221), - [anon_sym_BSLASHauthor] = ACTIONS(6221), - [anon_sym_BSLASHusepackage] = ACTIONS(6221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6221), - [anon_sym_BSLASHinclude] = ACTIONS(6221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6221), - [anon_sym_BSLASHinput] = ACTIONS(6221), - [anon_sym_BSLASHsubfile] = ACTIONS(6221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6221), - [anon_sym_BSLASHbibliography] = ACTIONS(6221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6221), - [anon_sym_BSLASHincludesvg] = ACTIONS(6221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6221), - [anon_sym_BSLASHimport] = ACTIONS(6221), - [anon_sym_BSLASHsubimport] = ACTIONS(6221), - [anon_sym_BSLASHinputfrom] = ACTIONS(6221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6221), - [anon_sym_BSLASHincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHcaption] = ACTIONS(6221), - [anon_sym_BSLASHcite] = ACTIONS(6221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCite] = ACTIONS(6221), - [anon_sym_BSLASHnocite] = ACTIONS(6221), - [anon_sym_BSLASHcitet] = ACTIONS(6221), - [anon_sym_BSLASHcitep] = ACTIONS(6221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteauthor] = ACTIONS(6221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitetitle] = ACTIONS(6221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteyear] = ACTIONS(6221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitedate] = ACTIONS(6221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteurl] = ACTIONS(6221), - [anon_sym_BSLASHfullcite] = ACTIONS(6221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6221), - [anon_sym_BSLASHcitealt] = ACTIONS(6221), - [anon_sym_BSLASHcitealp] = ACTIONS(6221), - [anon_sym_BSLASHcitetext] = ACTIONS(6221), - [anon_sym_BSLASHparencite] = ACTIONS(6221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHParencite] = ACTIONS(6221), - [anon_sym_BSLASHfootcite] = ACTIONS(6221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6221), - [anon_sym_BSLASHtextcite] = ACTIONS(6221), - [anon_sym_BSLASHTextcite] = ACTIONS(6221), - [anon_sym_BSLASHsmartcite] = ACTIONS(6221), - [anon_sym_BSLASHSmartcite] = ACTIONS(6221), - [anon_sym_BSLASHsupercite] = ACTIONS(6221), - [anon_sym_BSLASHautocite] = ACTIONS(6221), - [anon_sym_BSLASHAutocite] = ACTIONS(6221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHvolcite] = ACTIONS(6221), - [anon_sym_BSLASHVolcite] = ACTIONS(6221), - [anon_sym_BSLASHpvolcite] = ACTIONS(6221), - [anon_sym_BSLASHPvolcite] = ACTIONS(6221), - [anon_sym_BSLASHfvolcite] = ACTIONS(6221), - [anon_sym_BSLASHftvolcite] = ACTIONS(6221), - [anon_sym_BSLASHsvolcite] = ACTIONS(6221), - [anon_sym_BSLASHSvolcite] = ACTIONS(6221), - [anon_sym_BSLASHtvolcite] = ACTIONS(6221), - [anon_sym_BSLASHTvolcite] = ACTIONS(6221), - [anon_sym_BSLASHavolcite] = ACTIONS(6221), - [anon_sym_BSLASHAvolcite] = ACTIONS(6221), - [anon_sym_BSLASHnotecite] = ACTIONS(6221), - [anon_sym_BSLASHNotecite] = ACTIONS(6221), - [anon_sym_BSLASHpnotecite] = ACTIONS(6221), - [anon_sym_BSLASHPnotecite] = ACTIONS(6221), - [anon_sym_BSLASHfnotecite] = ACTIONS(6221), - [anon_sym_BSLASHlabel] = ACTIONS(6221), - [anon_sym_BSLASHref] = ACTIONS(6221), - [anon_sym_BSLASHeqref] = ACTIONS(6221), - [anon_sym_BSLASHvref] = ACTIONS(6221), - [anon_sym_BSLASHVref] = ACTIONS(6221), - [anon_sym_BSLASHautoref] = ACTIONS(6221), - [anon_sym_BSLASHpageref] = ACTIONS(6221), - [anon_sym_BSLASHcref] = ACTIONS(6221), - [anon_sym_BSLASHCref] = ACTIONS(6221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnameCref] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHlabelcref] = ACTIONS(6221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCrefrange] = ACTIONS(6221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnewlabel] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6223), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHdef] = ACTIONS(6221), - [anon_sym_BSLASHlet] = ACTIONS(6221), - [anon_sym_BSLASHleft] = ACTIONS(6221), - [anon_sym_BSLASHbig] = ACTIONS(6221), - [anon_sym_BSLASHBig] = ACTIONS(6221), - [anon_sym_BSLASHbigg] = ACTIONS(6221), - [anon_sym_BSLASHBigg] = ACTIONS(6221), - [anon_sym_BSLASHbigl] = ACTIONS(6221), - [anon_sym_BSLASHBigl] = ACTIONS(6221), - [anon_sym_BSLASHbiggl] = ACTIONS(6221), - [anon_sym_BSLASHBiggl] = ACTIONS(6221), - [anon_sym_BSLASHright] = ACTIONS(6221), - [anon_sym_BSLASHbigr] = ACTIONS(6221), - [anon_sym_BSLASHBigr] = ACTIONS(6221), - [anon_sym_BSLASHbiggr] = ACTIONS(6221), - [anon_sym_BSLASHBiggr] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6221), - [anon_sym_BSLASHgls] = ACTIONS(6221), - [anon_sym_BSLASHGls] = ACTIONS(6221), - [anon_sym_BSLASHGLS] = ACTIONS(6221), - [anon_sym_BSLASHglspl] = ACTIONS(6221), - [anon_sym_BSLASHGlspl] = ACTIONS(6221), - [anon_sym_BSLASHGLSpl] = ACTIONS(6221), - [anon_sym_BSLASHglsdisp] = ACTIONS(6221), - [anon_sym_BSLASHglslink] = ACTIONS(6221), - [anon_sym_BSLASHglstext] = ACTIONS(6221), - [anon_sym_BSLASHGlstext] = ACTIONS(6221), - [anon_sym_BSLASHGLStext] = ACTIONS(6221), - [anon_sym_BSLASHglsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6221), - [anon_sym_BSLASHglsplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSplural] = ACTIONS(6221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHglsname] = ACTIONS(6221), - [anon_sym_BSLASHGlsname] = ACTIONS(6221), - [anon_sym_BSLASHGLSname] = ACTIONS(6221), - [anon_sym_BSLASHglssymbol] = ACTIONS(6221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6221), - [anon_sym_BSLASHglsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6221), - [anon_sym_BSLASHglsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6221), - [anon_sym_BSLASHglsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6221), - [anon_sym_BSLASHglsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6221), - [anon_sym_BSLASHglsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6221), - [anon_sym_BSLASHnewacronym] = ACTIONS(6221), - [anon_sym_BSLASHacrshort] = ACTIONS(6221), - [anon_sym_BSLASHAcrshort] = ACTIONS(6221), - [anon_sym_BSLASHACRshort] = ACTIONS(6221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6221), - [anon_sym_BSLASHacrlong] = ACTIONS(6221), - [anon_sym_BSLASHAcrlong] = ACTIONS(6221), - [anon_sym_BSLASHACRlong] = ACTIONS(6221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6221), - [anon_sym_BSLASHacrfull] = ACTIONS(6221), - [anon_sym_BSLASHAcrfull] = ACTIONS(6221), - [anon_sym_BSLASHACRfull] = ACTIONS(6221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6221), - [anon_sym_BSLASHacs] = ACTIONS(6221), - [anon_sym_BSLASHAcs] = ACTIONS(6221), - [anon_sym_BSLASHacsp] = ACTIONS(6221), - [anon_sym_BSLASHAcsp] = ACTIONS(6221), - [anon_sym_BSLASHacl] = ACTIONS(6221), - [anon_sym_BSLASHAcl] = ACTIONS(6221), - [anon_sym_BSLASHaclp] = ACTIONS(6221), - [anon_sym_BSLASHAclp] = ACTIONS(6221), - [anon_sym_BSLASHacf] = ACTIONS(6221), - [anon_sym_BSLASHAcf] = ACTIONS(6221), - [anon_sym_BSLASHacfp] = ACTIONS(6221), - [anon_sym_BSLASHAcfp] = ACTIONS(6221), - [anon_sym_BSLASHac] = ACTIONS(6221), - [anon_sym_BSLASHAc] = ACTIONS(6221), - [anon_sym_BSLASHacp] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6221), - [anon_sym_BSLASHcolor] = ACTIONS(6221), - [anon_sym_BSLASHcolorbox] = ACTIONS(6221), - [anon_sym_BSLASHtextcolor] = ACTIONS(6221), - [anon_sym_BSLASHpagecolor] = ACTIONS(6221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6221), - [anon_sym_BSLASHtext] = ACTIONS(6221), - [anon_sym_BSLASHintertext] = ACTIONS(6221), - [anon_sym_shortintertext] = ACTIONS(6221), - }, - [536] = { - [sym_command_name] = ACTIONS(6225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6225), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_RBRACK] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_EQ] = ACTIONS(6227), - [anon_sym_LPAREN] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [anon_sym_BSLASHpart] = ACTIONS(6225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddpart] = ACTIONS(6225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6227), - [anon_sym_BSLASHchapter] = ACTIONS(6225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddchap] = ACTIONS(6225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsection] = ACTIONS(6225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddsec] = ACTIONS(6225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubsection] = ACTIONS(6225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHparagraph] = ACTIONS(6225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6227), - [anon_sym_BSLASHitem] = ACTIONS(6225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6227), - [anon_sym_LBRACE] = ACTIONS(6227), - [sym_word] = ACTIONS(6225), - [sym_placeholder] = ACTIONS(6227), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(6225), - [anon_sym_GT] = ACTIONS(6225), - [anon_sym_BANG] = ACTIONS(6225), - [anon_sym_PIPE] = ACTIONS(6225), - [anon_sym_COLON] = ACTIONS(6225), - [anon_sym_SQUOTE] = ACTIONS(6225), - [anon_sym__] = ACTIONS(6227), - [anon_sym_CARET] = ACTIONS(6227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6227), - [anon_sym_DOLLAR] = ACTIONS(6225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6227), - [anon_sym_BSLASHbegin] = ACTIONS(6225), - [anon_sym_BSLASHtitle] = ACTIONS(6225), - [anon_sym_BSLASHauthor] = ACTIONS(6225), - [anon_sym_BSLASHusepackage] = ACTIONS(6225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6225), - [anon_sym_BSLASHinclude] = ACTIONS(6225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6225), - [anon_sym_BSLASHinput] = ACTIONS(6225), - [anon_sym_BSLASHsubfile] = ACTIONS(6225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6225), - [anon_sym_BSLASHbibliography] = ACTIONS(6225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6225), - [anon_sym_BSLASHincludesvg] = ACTIONS(6225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6225), - [anon_sym_BSLASHimport] = ACTIONS(6225), - [anon_sym_BSLASHsubimport] = ACTIONS(6225), - [anon_sym_BSLASHinputfrom] = ACTIONS(6225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6225), - [anon_sym_BSLASHincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHcaption] = ACTIONS(6225), - [anon_sym_BSLASHcite] = ACTIONS(6225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCite] = ACTIONS(6225), - [anon_sym_BSLASHnocite] = ACTIONS(6225), - [anon_sym_BSLASHcitet] = ACTIONS(6225), - [anon_sym_BSLASHcitep] = ACTIONS(6225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteauthor] = ACTIONS(6225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitetitle] = ACTIONS(6225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteyear] = ACTIONS(6225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitedate] = ACTIONS(6225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteurl] = ACTIONS(6225), - [anon_sym_BSLASHfullcite] = ACTIONS(6225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6225), - [anon_sym_BSLASHcitealt] = ACTIONS(6225), - [anon_sym_BSLASHcitealp] = ACTIONS(6225), - [anon_sym_BSLASHcitetext] = ACTIONS(6225), - [anon_sym_BSLASHparencite] = ACTIONS(6225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHParencite] = ACTIONS(6225), - [anon_sym_BSLASHfootcite] = ACTIONS(6225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6225), - [anon_sym_BSLASHtextcite] = ACTIONS(6225), - [anon_sym_BSLASHTextcite] = ACTIONS(6225), - [anon_sym_BSLASHsmartcite] = ACTIONS(6225), - [anon_sym_BSLASHSmartcite] = ACTIONS(6225), - [anon_sym_BSLASHsupercite] = ACTIONS(6225), - [anon_sym_BSLASHautocite] = ACTIONS(6225), - [anon_sym_BSLASHAutocite] = ACTIONS(6225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHvolcite] = ACTIONS(6225), - [anon_sym_BSLASHVolcite] = ACTIONS(6225), - [anon_sym_BSLASHpvolcite] = ACTIONS(6225), - [anon_sym_BSLASHPvolcite] = ACTIONS(6225), - [anon_sym_BSLASHfvolcite] = ACTIONS(6225), - [anon_sym_BSLASHftvolcite] = ACTIONS(6225), - [anon_sym_BSLASHsvolcite] = ACTIONS(6225), - [anon_sym_BSLASHSvolcite] = ACTIONS(6225), - [anon_sym_BSLASHtvolcite] = ACTIONS(6225), - [anon_sym_BSLASHTvolcite] = ACTIONS(6225), - [anon_sym_BSLASHavolcite] = ACTIONS(6225), - [anon_sym_BSLASHAvolcite] = ACTIONS(6225), - [anon_sym_BSLASHnotecite] = ACTIONS(6225), - [anon_sym_BSLASHNotecite] = ACTIONS(6225), - [anon_sym_BSLASHpnotecite] = ACTIONS(6225), - [anon_sym_BSLASHPnotecite] = ACTIONS(6225), - [anon_sym_BSLASHfnotecite] = ACTIONS(6225), - [anon_sym_BSLASHlabel] = ACTIONS(6225), - [anon_sym_BSLASHref] = ACTIONS(6225), - [anon_sym_BSLASHeqref] = ACTIONS(6225), - [anon_sym_BSLASHvref] = ACTIONS(6225), - [anon_sym_BSLASHVref] = ACTIONS(6225), - [anon_sym_BSLASHautoref] = ACTIONS(6225), - [anon_sym_BSLASHpageref] = ACTIONS(6225), - [anon_sym_BSLASHcref] = ACTIONS(6225), - [anon_sym_BSLASHCref] = ACTIONS(6225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnameCref] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHlabelcref] = ACTIONS(6225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCrefrange] = ACTIONS(6225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnewlabel] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6227), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHdef] = ACTIONS(6225), - [anon_sym_BSLASHlet] = ACTIONS(6225), - [anon_sym_BSLASHleft] = ACTIONS(6225), - [anon_sym_BSLASHbig] = ACTIONS(6225), - [anon_sym_BSLASHBig] = ACTIONS(6225), - [anon_sym_BSLASHbigg] = ACTIONS(6225), - [anon_sym_BSLASHBigg] = ACTIONS(6225), - [anon_sym_BSLASHbigl] = ACTIONS(6225), - [anon_sym_BSLASHBigl] = ACTIONS(6225), - [anon_sym_BSLASHbiggl] = ACTIONS(6225), - [anon_sym_BSLASHBiggl] = ACTIONS(6225), - [anon_sym_BSLASHright] = ACTIONS(6225), - [anon_sym_BSLASHbigr] = ACTIONS(6225), - [anon_sym_BSLASHBigr] = ACTIONS(6225), - [anon_sym_BSLASHbiggr] = ACTIONS(6225), - [anon_sym_BSLASHBiggr] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6225), - [anon_sym_BSLASHgls] = ACTIONS(6225), - [anon_sym_BSLASHGls] = ACTIONS(6225), - [anon_sym_BSLASHGLS] = ACTIONS(6225), - [anon_sym_BSLASHglspl] = ACTIONS(6225), - [anon_sym_BSLASHGlspl] = ACTIONS(6225), - [anon_sym_BSLASHGLSpl] = ACTIONS(6225), - [anon_sym_BSLASHglsdisp] = ACTIONS(6225), - [anon_sym_BSLASHglslink] = ACTIONS(6225), - [anon_sym_BSLASHglstext] = ACTIONS(6225), - [anon_sym_BSLASHGlstext] = ACTIONS(6225), - [anon_sym_BSLASHGLStext] = ACTIONS(6225), - [anon_sym_BSLASHglsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6225), - [anon_sym_BSLASHglsplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSplural] = ACTIONS(6225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHglsname] = ACTIONS(6225), - [anon_sym_BSLASHGlsname] = ACTIONS(6225), - [anon_sym_BSLASHGLSname] = ACTIONS(6225), - [anon_sym_BSLASHglssymbol] = ACTIONS(6225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6225), - [anon_sym_BSLASHglsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6225), - [anon_sym_BSLASHglsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6225), - [anon_sym_BSLASHglsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6225), - [anon_sym_BSLASHglsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6225), - [anon_sym_BSLASHglsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6225), - [anon_sym_BSLASHnewacronym] = ACTIONS(6225), - [anon_sym_BSLASHacrshort] = ACTIONS(6225), - [anon_sym_BSLASHAcrshort] = ACTIONS(6225), - [anon_sym_BSLASHACRshort] = ACTIONS(6225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6225), - [anon_sym_BSLASHacrlong] = ACTIONS(6225), - [anon_sym_BSLASHAcrlong] = ACTIONS(6225), - [anon_sym_BSLASHACRlong] = ACTIONS(6225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6225), - [anon_sym_BSLASHacrfull] = ACTIONS(6225), - [anon_sym_BSLASHAcrfull] = ACTIONS(6225), - [anon_sym_BSLASHACRfull] = ACTIONS(6225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6225), - [anon_sym_BSLASHacs] = ACTIONS(6225), - [anon_sym_BSLASHAcs] = ACTIONS(6225), - [anon_sym_BSLASHacsp] = ACTIONS(6225), - [anon_sym_BSLASHAcsp] = ACTIONS(6225), - [anon_sym_BSLASHacl] = ACTIONS(6225), - [anon_sym_BSLASHAcl] = ACTIONS(6225), - [anon_sym_BSLASHaclp] = ACTIONS(6225), - [anon_sym_BSLASHAclp] = ACTIONS(6225), - [anon_sym_BSLASHacf] = ACTIONS(6225), - [anon_sym_BSLASHAcf] = ACTIONS(6225), - [anon_sym_BSLASHacfp] = ACTIONS(6225), - [anon_sym_BSLASHAcfp] = ACTIONS(6225), - [anon_sym_BSLASHac] = ACTIONS(6225), - [anon_sym_BSLASHAc] = ACTIONS(6225), - [anon_sym_BSLASHacp] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6225), - [anon_sym_BSLASHcolor] = ACTIONS(6225), - [anon_sym_BSLASHcolorbox] = ACTIONS(6225), - [anon_sym_BSLASHtextcolor] = ACTIONS(6225), - [anon_sym_BSLASHpagecolor] = ACTIONS(6225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6225), - [anon_sym_BSLASHtext] = ACTIONS(6225), - [anon_sym_BSLASHintertext] = ACTIONS(6225), - [anon_sym_shortintertext] = ACTIONS(6225), - }, - [537] = { - [sym_command_name] = ACTIONS(6229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6229), - [anon_sym_LBRACK] = ACTIONS(6231), - [anon_sym_RBRACK] = ACTIONS(6231), - [anon_sym_COMMA] = ACTIONS(6231), - [anon_sym_EQ] = ACTIONS(6231), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_RPAREN] = ACTIONS(6231), - [anon_sym_BSLASHpart] = ACTIONS(6229), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddpart] = ACTIONS(6229), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6231), - [anon_sym_BSLASHchapter] = ACTIONS(6229), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddchap] = ACTIONS(6229), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsection] = ACTIONS(6229), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddsec] = ACTIONS(6229), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubsection] = ACTIONS(6229), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6229), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHparagraph] = ACTIONS(6229), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6229), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6231), - [anon_sym_BSLASHitem] = ACTIONS(6229), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6231), - [anon_sym_LBRACE] = ACTIONS(6231), - [sym_word] = ACTIONS(6229), - [sym_placeholder] = ACTIONS(6231), - [anon_sym_PLUS] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_SLASH] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(6229), - [anon_sym_GT] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [anon_sym_PIPE] = ACTIONS(6229), - [anon_sym_COLON] = ACTIONS(6229), - [anon_sym_SQUOTE] = ACTIONS(6229), - [anon_sym__] = ACTIONS(6231), - [anon_sym_CARET] = ACTIONS(6231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6231), - [anon_sym_DOLLAR] = ACTIONS(6229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6231), - [anon_sym_BSLASHbegin] = ACTIONS(6229), - [anon_sym_BSLASHtitle] = ACTIONS(6229), - [anon_sym_BSLASHauthor] = ACTIONS(6229), - [anon_sym_BSLASHusepackage] = ACTIONS(6229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6229), - [anon_sym_BSLASHinclude] = ACTIONS(6229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6229), - [anon_sym_BSLASHinput] = ACTIONS(6229), - [anon_sym_BSLASHsubfile] = ACTIONS(6229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6229), - [anon_sym_BSLASHbibliography] = ACTIONS(6229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6229), - [anon_sym_BSLASHincludesvg] = ACTIONS(6229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6229), - [anon_sym_BSLASHimport] = ACTIONS(6229), - [anon_sym_BSLASHsubimport] = ACTIONS(6229), - [anon_sym_BSLASHinputfrom] = ACTIONS(6229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6229), - [anon_sym_BSLASHincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHcaption] = ACTIONS(6229), - [anon_sym_BSLASHcite] = ACTIONS(6229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCite] = ACTIONS(6229), - [anon_sym_BSLASHnocite] = ACTIONS(6229), - [anon_sym_BSLASHcitet] = ACTIONS(6229), - [anon_sym_BSLASHcitep] = ACTIONS(6229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteauthor] = ACTIONS(6229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitetitle] = ACTIONS(6229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteyear] = ACTIONS(6229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitedate] = ACTIONS(6229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteurl] = ACTIONS(6229), - [anon_sym_BSLASHfullcite] = ACTIONS(6229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6229), - [anon_sym_BSLASHcitealt] = ACTIONS(6229), - [anon_sym_BSLASHcitealp] = ACTIONS(6229), - [anon_sym_BSLASHcitetext] = ACTIONS(6229), - [anon_sym_BSLASHparencite] = ACTIONS(6229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHParencite] = ACTIONS(6229), - [anon_sym_BSLASHfootcite] = ACTIONS(6229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6229), - [anon_sym_BSLASHtextcite] = ACTIONS(6229), - [anon_sym_BSLASHTextcite] = ACTIONS(6229), - [anon_sym_BSLASHsmartcite] = ACTIONS(6229), - [anon_sym_BSLASHSmartcite] = ACTIONS(6229), - [anon_sym_BSLASHsupercite] = ACTIONS(6229), - [anon_sym_BSLASHautocite] = ACTIONS(6229), - [anon_sym_BSLASHAutocite] = ACTIONS(6229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHvolcite] = ACTIONS(6229), - [anon_sym_BSLASHVolcite] = ACTIONS(6229), - [anon_sym_BSLASHpvolcite] = ACTIONS(6229), - [anon_sym_BSLASHPvolcite] = ACTIONS(6229), - [anon_sym_BSLASHfvolcite] = ACTIONS(6229), - [anon_sym_BSLASHftvolcite] = ACTIONS(6229), - [anon_sym_BSLASHsvolcite] = ACTIONS(6229), - [anon_sym_BSLASHSvolcite] = ACTIONS(6229), - [anon_sym_BSLASHtvolcite] = ACTIONS(6229), - [anon_sym_BSLASHTvolcite] = ACTIONS(6229), - [anon_sym_BSLASHavolcite] = ACTIONS(6229), - [anon_sym_BSLASHAvolcite] = ACTIONS(6229), - [anon_sym_BSLASHnotecite] = ACTIONS(6229), - [anon_sym_BSLASHNotecite] = ACTIONS(6229), - [anon_sym_BSLASHpnotecite] = ACTIONS(6229), - [anon_sym_BSLASHPnotecite] = ACTIONS(6229), - [anon_sym_BSLASHfnotecite] = ACTIONS(6229), - [anon_sym_BSLASHlabel] = ACTIONS(6229), - [anon_sym_BSLASHref] = ACTIONS(6229), - [anon_sym_BSLASHeqref] = ACTIONS(6229), - [anon_sym_BSLASHvref] = ACTIONS(6229), - [anon_sym_BSLASHVref] = ACTIONS(6229), - [anon_sym_BSLASHautoref] = ACTIONS(6229), - [anon_sym_BSLASHpageref] = ACTIONS(6229), - [anon_sym_BSLASHcref] = ACTIONS(6229), - [anon_sym_BSLASHCref] = ACTIONS(6229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnameCref] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHlabelcref] = ACTIONS(6229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCrefrange] = ACTIONS(6229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnewlabel] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6231), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHdef] = ACTIONS(6229), - [anon_sym_BSLASHlet] = ACTIONS(6229), - [anon_sym_BSLASHleft] = ACTIONS(6229), - [anon_sym_BSLASHbig] = ACTIONS(6229), - [anon_sym_BSLASHBig] = ACTIONS(6229), - [anon_sym_BSLASHbigg] = ACTIONS(6229), - [anon_sym_BSLASHBigg] = ACTIONS(6229), - [anon_sym_BSLASHbigl] = ACTIONS(6229), - [anon_sym_BSLASHBigl] = ACTIONS(6229), - [anon_sym_BSLASHbiggl] = ACTIONS(6229), - [anon_sym_BSLASHBiggl] = ACTIONS(6229), - [anon_sym_BSLASHright] = ACTIONS(6229), - [anon_sym_BSLASHbigr] = ACTIONS(6229), - [anon_sym_BSLASHBigr] = ACTIONS(6229), - [anon_sym_BSLASHbiggr] = ACTIONS(6229), - [anon_sym_BSLASHBiggr] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6229), - [anon_sym_BSLASHgls] = ACTIONS(6229), - [anon_sym_BSLASHGls] = ACTIONS(6229), - [anon_sym_BSLASHGLS] = ACTIONS(6229), - [anon_sym_BSLASHglspl] = ACTIONS(6229), - [anon_sym_BSLASHGlspl] = ACTIONS(6229), - [anon_sym_BSLASHGLSpl] = ACTIONS(6229), - [anon_sym_BSLASHglsdisp] = ACTIONS(6229), - [anon_sym_BSLASHglslink] = ACTIONS(6229), - [anon_sym_BSLASHglstext] = ACTIONS(6229), - [anon_sym_BSLASHGlstext] = ACTIONS(6229), - [anon_sym_BSLASHGLStext] = ACTIONS(6229), - [anon_sym_BSLASHglsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6229), - [anon_sym_BSLASHglsplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSplural] = ACTIONS(6229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHglsname] = ACTIONS(6229), - [anon_sym_BSLASHGlsname] = ACTIONS(6229), - [anon_sym_BSLASHGLSname] = ACTIONS(6229), - [anon_sym_BSLASHglssymbol] = ACTIONS(6229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6229), - [anon_sym_BSLASHglsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6229), - [anon_sym_BSLASHglsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6229), - [anon_sym_BSLASHglsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6229), - [anon_sym_BSLASHglsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6229), - [anon_sym_BSLASHglsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6229), - [anon_sym_BSLASHnewacronym] = ACTIONS(6229), - [anon_sym_BSLASHacrshort] = ACTIONS(6229), - [anon_sym_BSLASHAcrshort] = ACTIONS(6229), - [anon_sym_BSLASHACRshort] = ACTIONS(6229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6229), - [anon_sym_BSLASHacrlong] = ACTIONS(6229), - [anon_sym_BSLASHAcrlong] = ACTIONS(6229), - [anon_sym_BSLASHACRlong] = ACTIONS(6229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6229), - [anon_sym_BSLASHacrfull] = ACTIONS(6229), - [anon_sym_BSLASHAcrfull] = ACTIONS(6229), - [anon_sym_BSLASHACRfull] = ACTIONS(6229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6229), - [anon_sym_BSLASHacs] = ACTIONS(6229), - [anon_sym_BSLASHAcs] = ACTIONS(6229), - [anon_sym_BSLASHacsp] = ACTIONS(6229), - [anon_sym_BSLASHAcsp] = ACTIONS(6229), - [anon_sym_BSLASHacl] = ACTIONS(6229), - [anon_sym_BSLASHAcl] = ACTIONS(6229), - [anon_sym_BSLASHaclp] = ACTIONS(6229), - [anon_sym_BSLASHAclp] = ACTIONS(6229), - [anon_sym_BSLASHacf] = ACTIONS(6229), - [anon_sym_BSLASHAcf] = ACTIONS(6229), - [anon_sym_BSLASHacfp] = ACTIONS(6229), - [anon_sym_BSLASHAcfp] = ACTIONS(6229), - [anon_sym_BSLASHac] = ACTIONS(6229), - [anon_sym_BSLASHAc] = ACTIONS(6229), - [anon_sym_BSLASHacp] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6229), - [anon_sym_BSLASHcolor] = ACTIONS(6229), - [anon_sym_BSLASHcolorbox] = ACTIONS(6229), - [anon_sym_BSLASHtextcolor] = ACTIONS(6229), - [anon_sym_BSLASHpagecolor] = ACTIONS(6229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6229), - [anon_sym_BSLASHtext] = ACTIONS(6229), - [anon_sym_BSLASHintertext] = ACTIONS(6229), - [anon_sym_shortintertext] = ACTIONS(6229), - }, - [538] = { - [sym_command_name] = ACTIONS(6233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_RBRACK] = ACTIONS(6235), - [anon_sym_COMMA] = ACTIONS(6235), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_LPAREN] = ACTIONS(6235), - [anon_sym_RPAREN] = ACTIONS(6235), - [anon_sym_BSLASHpart] = ACTIONS(6233), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddpart] = ACTIONS(6233), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6235), - [anon_sym_BSLASHchapter] = ACTIONS(6233), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddchap] = ACTIONS(6233), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsection] = ACTIONS(6233), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddsec] = ACTIONS(6233), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubsection] = ACTIONS(6233), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6233), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHparagraph] = ACTIONS(6233), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6233), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6235), - [anon_sym_BSLASHitem] = ACTIONS(6233), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6235), - [anon_sym_LBRACE] = ACTIONS(6235), - [sym_word] = ACTIONS(6233), - [sym_placeholder] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6233), - [anon_sym_BANG] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(6233), - [anon_sym_SQUOTE] = ACTIONS(6233), - [anon_sym__] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6235), - [anon_sym_DOLLAR] = ACTIONS(6233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6235), - [anon_sym_BSLASHbegin] = ACTIONS(6233), - [anon_sym_BSLASHtitle] = ACTIONS(6233), - [anon_sym_BSLASHauthor] = ACTIONS(6233), - [anon_sym_BSLASHusepackage] = ACTIONS(6233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6233), - [anon_sym_BSLASHinclude] = ACTIONS(6233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6233), - [anon_sym_BSLASHinput] = ACTIONS(6233), - [anon_sym_BSLASHsubfile] = ACTIONS(6233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6233), - [anon_sym_BSLASHbibliography] = ACTIONS(6233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6233), - [anon_sym_BSLASHincludesvg] = ACTIONS(6233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6233), - [anon_sym_BSLASHimport] = ACTIONS(6233), - [anon_sym_BSLASHsubimport] = ACTIONS(6233), - [anon_sym_BSLASHinputfrom] = ACTIONS(6233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6233), - [anon_sym_BSLASHincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHcaption] = ACTIONS(6233), - [anon_sym_BSLASHcite] = ACTIONS(6233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCite] = ACTIONS(6233), - [anon_sym_BSLASHnocite] = ACTIONS(6233), - [anon_sym_BSLASHcitet] = ACTIONS(6233), - [anon_sym_BSLASHcitep] = ACTIONS(6233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteauthor] = ACTIONS(6233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitetitle] = ACTIONS(6233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteyear] = ACTIONS(6233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitedate] = ACTIONS(6233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteurl] = ACTIONS(6233), - [anon_sym_BSLASHfullcite] = ACTIONS(6233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6233), - [anon_sym_BSLASHcitealt] = ACTIONS(6233), - [anon_sym_BSLASHcitealp] = ACTIONS(6233), - [anon_sym_BSLASHcitetext] = ACTIONS(6233), - [anon_sym_BSLASHparencite] = ACTIONS(6233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHParencite] = ACTIONS(6233), - [anon_sym_BSLASHfootcite] = ACTIONS(6233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6233), - [anon_sym_BSLASHtextcite] = ACTIONS(6233), - [anon_sym_BSLASHTextcite] = ACTIONS(6233), - [anon_sym_BSLASHsmartcite] = ACTIONS(6233), - [anon_sym_BSLASHSmartcite] = ACTIONS(6233), - [anon_sym_BSLASHsupercite] = ACTIONS(6233), - [anon_sym_BSLASHautocite] = ACTIONS(6233), - [anon_sym_BSLASHAutocite] = ACTIONS(6233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHvolcite] = ACTIONS(6233), - [anon_sym_BSLASHVolcite] = ACTIONS(6233), - [anon_sym_BSLASHpvolcite] = ACTIONS(6233), - [anon_sym_BSLASHPvolcite] = ACTIONS(6233), - [anon_sym_BSLASHfvolcite] = ACTIONS(6233), - [anon_sym_BSLASHftvolcite] = ACTIONS(6233), - [anon_sym_BSLASHsvolcite] = ACTIONS(6233), - [anon_sym_BSLASHSvolcite] = ACTIONS(6233), - [anon_sym_BSLASHtvolcite] = ACTIONS(6233), - [anon_sym_BSLASHTvolcite] = ACTIONS(6233), - [anon_sym_BSLASHavolcite] = ACTIONS(6233), - [anon_sym_BSLASHAvolcite] = ACTIONS(6233), - [anon_sym_BSLASHnotecite] = ACTIONS(6233), - [anon_sym_BSLASHNotecite] = ACTIONS(6233), - [anon_sym_BSLASHpnotecite] = ACTIONS(6233), - [anon_sym_BSLASHPnotecite] = ACTIONS(6233), - [anon_sym_BSLASHfnotecite] = ACTIONS(6233), - [anon_sym_BSLASHlabel] = ACTIONS(6233), - [anon_sym_BSLASHref] = ACTIONS(6233), - [anon_sym_BSLASHeqref] = ACTIONS(6233), - [anon_sym_BSLASHvref] = ACTIONS(6233), - [anon_sym_BSLASHVref] = ACTIONS(6233), - [anon_sym_BSLASHautoref] = ACTIONS(6233), - [anon_sym_BSLASHpageref] = ACTIONS(6233), - [anon_sym_BSLASHcref] = ACTIONS(6233), - [anon_sym_BSLASHCref] = ACTIONS(6233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnameCref] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHlabelcref] = ACTIONS(6233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCrefrange] = ACTIONS(6233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnewlabel] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6235), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHdef] = ACTIONS(6233), - [anon_sym_BSLASHlet] = ACTIONS(6233), - [anon_sym_BSLASHleft] = ACTIONS(6233), - [anon_sym_BSLASHbig] = ACTIONS(6233), - [anon_sym_BSLASHBig] = ACTIONS(6233), - [anon_sym_BSLASHbigg] = ACTIONS(6233), - [anon_sym_BSLASHBigg] = ACTIONS(6233), - [anon_sym_BSLASHbigl] = ACTIONS(6233), - [anon_sym_BSLASHBigl] = ACTIONS(6233), - [anon_sym_BSLASHbiggl] = ACTIONS(6233), - [anon_sym_BSLASHBiggl] = ACTIONS(6233), - [anon_sym_BSLASHright] = ACTIONS(6233), - [anon_sym_BSLASHbigr] = ACTIONS(6233), - [anon_sym_BSLASHBigr] = ACTIONS(6233), - [anon_sym_BSLASHbiggr] = ACTIONS(6233), - [anon_sym_BSLASHBiggr] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6233), - [anon_sym_BSLASHgls] = ACTIONS(6233), - [anon_sym_BSLASHGls] = ACTIONS(6233), - [anon_sym_BSLASHGLS] = ACTIONS(6233), - [anon_sym_BSLASHglspl] = ACTIONS(6233), - [anon_sym_BSLASHGlspl] = ACTIONS(6233), - [anon_sym_BSLASHGLSpl] = ACTIONS(6233), - [anon_sym_BSLASHglsdisp] = ACTIONS(6233), - [anon_sym_BSLASHglslink] = ACTIONS(6233), - [anon_sym_BSLASHglstext] = ACTIONS(6233), - [anon_sym_BSLASHGlstext] = ACTIONS(6233), - [anon_sym_BSLASHGLStext] = ACTIONS(6233), - [anon_sym_BSLASHglsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6233), - [anon_sym_BSLASHglsplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSplural] = ACTIONS(6233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHglsname] = ACTIONS(6233), - [anon_sym_BSLASHGlsname] = ACTIONS(6233), - [anon_sym_BSLASHGLSname] = ACTIONS(6233), - [anon_sym_BSLASHglssymbol] = ACTIONS(6233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6233), - [anon_sym_BSLASHglsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6233), - [anon_sym_BSLASHglsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6233), - [anon_sym_BSLASHglsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6233), - [anon_sym_BSLASHglsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6233), - [anon_sym_BSLASHglsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6233), - [anon_sym_BSLASHnewacronym] = ACTIONS(6233), - [anon_sym_BSLASHacrshort] = ACTIONS(6233), - [anon_sym_BSLASHAcrshort] = ACTIONS(6233), - [anon_sym_BSLASHACRshort] = ACTIONS(6233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6233), - [anon_sym_BSLASHacrlong] = ACTIONS(6233), - [anon_sym_BSLASHAcrlong] = ACTIONS(6233), - [anon_sym_BSLASHACRlong] = ACTIONS(6233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6233), - [anon_sym_BSLASHacrfull] = ACTIONS(6233), - [anon_sym_BSLASHAcrfull] = ACTIONS(6233), - [anon_sym_BSLASHACRfull] = ACTIONS(6233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6233), - [anon_sym_BSLASHacs] = ACTIONS(6233), - [anon_sym_BSLASHAcs] = ACTIONS(6233), - [anon_sym_BSLASHacsp] = ACTIONS(6233), - [anon_sym_BSLASHAcsp] = ACTIONS(6233), - [anon_sym_BSLASHacl] = ACTIONS(6233), - [anon_sym_BSLASHAcl] = ACTIONS(6233), - [anon_sym_BSLASHaclp] = ACTIONS(6233), - [anon_sym_BSLASHAclp] = ACTIONS(6233), - [anon_sym_BSLASHacf] = ACTIONS(6233), - [anon_sym_BSLASHAcf] = ACTIONS(6233), - [anon_sym_BSLASHacfp] = ACTIONS(6233), - [anon_sym_BSLASHAcfp] = ACTIONS(6233), - [anon_sym_BSLASHac] = ACTIONS(6233), - [anon_sym_BSLASHAc] = ACTIONS(6233), - [anon_sym_BSLASHacp] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6233), - [anon_sym_BSLASHcolor] = ACTIONS(6233), - [anon_sym_BSLASHcolorbox] = ACTIONS(6233), - [anon_sym_BSLASHtextcolor] = ACTIONS(6233), - [anon_sym_BSLASHpagecolor] = ACTIONS(6233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6233), - [anon_sym_BSLASHtext] = ACTIONS(6233), - [anon_sym_BSLASHintertext] = ACTIONS(6233), - [anon_sym_shortintertext] = ACTIONS(6233), - }, - [539] = { - [sym_command_name] = ACTIONS(6237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6237), - [anon_sym_LBRACK] = ACTIONS(6239), - [anon_sym_RBRACK] = ACTIONS(6239), - [anon_sym_COMMA] = ACTIONS(6239), - [anon_sym_EQ] = ACTIONS(6239), - [anon_sym_LPAREN] = ACTIONS(6239), - [anon_sym_RPAREN] = ACTIONS(6239), - [anon_sym_BSLASHpart] = ACTIONS(6237), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddpart] = ACTIONS(6237), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6239), - [anon_sym_BSLASHchapter] = ACTIONS(6237), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddchap] = ACTIONS(6237), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsection] = ACTIONS(6237), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddsec] = ACTIONS(6237), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubsection] = ACTIONS(6237), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6237), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHparagraph] = ACTIONS(6237), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6237), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6239), - [anon_sym_BSLASHitem] = ACTIONS(6237), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6239), - [sym_word] = ACTIONS(6237), - [sym_placeholder] = ACTIONS(6239), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6239), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_BANG] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_SQUOTE] = ACTIONS(6237), - [anon_sym__] = ACTIONS(6239), - [anon_sym_CARET] = ACTIONS(6239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), - [anon_sym_DOLLAR] = ACTIONS(6237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), - [anon_sym_BSLASHbegin] = ACTIONS(6237), - [anon_sym_BSLASHtitle] = ACTIONS(6237), - [anon_sym_BSLASHauthor] = ACTIONS(6237), - [anon_sym_BSLASHusepackage] = ACTIONS(6237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6237), - [anon_sym_BSLASHinclude] = ACTIONS(6237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6237), - [anon_sym_BSLASHinput] = ACTIONS(6237), - [anon_sym_BSLASHsubfile] = ACTIONS(6237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6237), - [anon_sym_BSLASHbibliography] = ACTIONS(6237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6237), - [anon_sym_BSLASHincludesvg] = ACTIONS(6237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6237), - [anon_sym_BSLASHimport] = ACTIONS(6237), - [anon_sym_BSLASHsubimport] = ACTIONS(6237), - [anon_sym_BSLASHinputfrom] = ACTIONS(6237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6237), - [anon_sym_BSLASHincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHcaption] = ACTIONS(6237), - [anon_sym_BSLASHcite] = ACTIONS(6237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCite] = ACTIONS(6237), - [anon_sym_BSLASHnocite] = ACTIONS(6237), - [anon_sym_BSLASHcitet] = ACTIONS(6237), - [anon_sym_BSLASHcitep] = ACTIONS(6237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteauthor] = ACTIONS(6237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitetitle] = ACTIONS(6237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteyear] = ACTIONS(6237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitedate] = ACTIONS(6237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteurl] = ACTIONS(6237), - [anon_sym_BSLASHfullcite] = ACTIONS(6237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6237), - [anon_sym_BSLASHcitealt] = ACTIONS(6237), - [anon_sym_BSLASHcitealp] = ACTIONS(6237), - [anon_sym_BSLASHcitetext] = ACTIONS(6237), - [anon_sym_BSLASHparencite] = ACTIONS(6237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHParencite] = ACTIONS(6237), - [anon_sym_BSLASHfootcite] = ACTIONS(6237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6237), - [anon_sym_BSLASHtextcite] = ACTIONS(6237), - [anon_sym_BSLASHTextcite] = ACTIONS(6237), - [anon_sym_BSLASHsmartcite] = ACTIONS(6237), - [anon_sym_BSLASHSmartcite] = ACTIONS(6237), - [anon_sym_BSLASHsupercite] = ACTIONS(6237), - [anon_sym_BSLASHautocite] = ACTIONS(6237), - [anon_sym_BSLASHAutocite] = ACTIONS(6237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHvolcite] = ACTIONS(6237), - [anon_sym_BSLASHVolcite] = ACTIONS(6237), - [anon_sym_BSLASHpvolcite] = ACTIONS(6237), - [anon_sym_BSLASHPvolcite] = ACTIONS(6237), - [anon_sym_BSLASHfvolcite] = ACTIONS(6237), - [anon_sym_BSLASHftvolcite] = ACTIONS(6237), - [anon_sym_BSLASHsvolcite] = ACTIONS(6237), - [anon_sym_BSLASHSvolcite] = ACTIONS(6237), - [anon_sym_BSLASHtvolcite] = ACTIONS(6237), - [anon_sym_BSLASHTvolcite] = ACTIONS(6237), - [anon_sym_BSLASHavolcite] = ACTIONS(6237), - [anon_sym_BSLASHAvolcite] = ACTIONS(6237), - [anon_sym_BSLASHnotecite] = ACTIONS(6237), - [anon_sym_BSLASHNotecite] = ACTIONS(6237), - [anon_sym_BSLASHpnotecite] = ACTIONS(6237), - [anon_sym_BSLASHPnotecite] = ACTIONS(6237), - [anon_sym_BSLASHfnotecite] = ACTIONS(6237), - [anon_sym_BSLASHlabel] = ACTIONS(6237), - [anon_sym_BSLASHref] = ACTIONS(6237), - [anon_sym_BSLASHeqref] = ACTIONS(6237), - [anon_sym_BSLASHvref] = ACTIONS(6237), - [anon_sym_BSLASHVref] = ACTIONS(6237), - [anon_sym_BSLASHautoref] = ACTIONS(6237), - [anon_sym_BSLASHpageref] = ACTIONS(6237), - [anon_sym_BSLASHcref] = ACTIONS(6237), - [anon_sym_BSLASHCref] = ACTIONS(6237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnameCref] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHlabelcref] = ACTIONS(6237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCrefrange] = ACTIONS(6237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnewlabel] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHdef] = ACTIONS(6237), - [anon_sym_BSLASHlet] = ACTIONS(6237), - [anon_sym_BSLASHleft] = ACTIONS(6237), - [anon_sym_BSLASHbig] = ACTIONS(6237), - [anon_sym_BSLASHBig] = ACTIONS(6237), - [anon_sym_BSLASHbigg] = ACTIONS(6237), - [anon_sym_BSLASHBigg] = ACTIONS(6237), - [anon_sym_BSLASHbigl] = ACTIONS(6237), - [anon_sym_BSLASHBigl] = ACTIONS(6237), - [anon_sym_BSLASHbiggl] = ACTIONS(6237), - [anon_sym_BSLASHBiggl] = ACTIONS(6237), - [anon_sym_BSLASHright] = ACTIONS(6237), - [anon_sym_BSLASHbigr] = ACTIONS(6237), - [anon_sym_BSLASHBigr] = ACTIONS(6237), - [anon_sym_BSLASHbiggr] = ACTIONS(6237), - [anon_sym_BSLASHBiggr] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6237), - [anon_sym_BSLASHgls] = ACTIONS(6237), - [anon_sym_BSLASHGls] = ACTIONS(6237), - [anon_sym_BSLASHGLS] = ACTIONS(6237), - [anon_sym_BSLASHglspl] = ACTIONS(6237), - [anon_sym_BSLASHGlspl] = ACTIONS(6237), - [anon_sym_BSLASHGLSpl] = ACTIONS(6237), - [anon_sym_BSLASHglsdisp] = ACTIONS(6237), - [anon_sym_BSLASHglslink] = ACTIONS(6237), - [anon_sym_BSLASHglstext] = ACTIONS(6237), - [anon_sym_BSLASHGlstext] = ACTIONS(6237), - [anon_sym_BSLASHGLStext] = ACTIONS(6237), - [anon_sym_BSLASHglsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6237), - [anon_sym_BSLASHglsplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSplural] = ACTIONS(6237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHglsname] = ACTIONS(6237), - [anon_sym_BSLASHGlsname] = ACTIONS(6237), - [anon_sym_BSLASHGLSname] = ACTIONS(6237), - [anon_sym_BSLASHglssymbol] = ACTIONS(6237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6237), - [anon_sym_BSLASHglsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6237), - [anon_sym_BSLASHglsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6237), - [anon_sym_BSLASHglsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6237), - [anon_sym_BSLASHglsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6237), - [anon_sym_BSLASHglsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6237), - [anon_sym_BSLASHnewacronym] = ACTIONS(6237), - [anon_sym_BSLASHacrshort] = ACTIONS(6237), - [anon_sym_BSLASHAcrshort] = ACTIONS(6237), - [anon_sym_BSLASHACRshort] = ACTIONS(6237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6237), - [anon_sym_BSLASHacrlong] = ACTIONS(6237), - [anon_sym_BSLASHAcrlong] = ACTIONS(6237), - [anon_sym_BSLASHACRlong] = ACTIONS(6237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6237), - [anon_sym_BSLASHacrfull] = ACTIONS(6237), - [anon_sym_BSLASHAcrfull] = ACTIONS(6237), - [anon_sym_BSLASHACRfull] = ACTIONS(6237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6237), - [anon_sym_BSLASHacs] = ACTIONS(6237), - [anon_sym_BSLASHAcs] = ACTIONS(6237), - [anon_sym_BSLASHacsp] = ACTIONS(6237), - [anon_sym_BSLASHAcsp] = ACTIONS(6237), - [anon_sym_BSLASHacl] = ACTIONS(6237), - [anon_sym_BSLASHAcl] = ACTIONS(6237), - [anon_sym_BSLASHaclp] = ACTIONS(6237), - [anon_sym_BSLASHAclp] = ACTIONS(6237), - [anon_sym_BSLASHacf] = ACTIONS(6237), - [anon_sym_BSLASHAcf] = ACTIONS(6237), - [anon_sym_BSLASHacfp] = ACTIONS(6237), - [anon_sym_BSLASHAcfp] = ACTIONS(6237), - [anon_sym_BSLASHac] = ACTIONS(6237), - [anon_sym_BSLASHAc] = ACTIONS(6237), - [anon_sym_BSLASHacp] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6237), - [anon_sym_BSLASHcolor] = ACTIONS(6237), - [anon_sym_BSLASHcolorbox] = ACTIONS(6237), - [anon_sym_BSLASHtextcolor] = ACTIONS(6237), - [anon_sym_BSLASHpagecolor] = ACTIONS(6237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6237), - [anon_sym_BSLASHtext] = ACTIONS(6237), - [anon_sym_BSLASHintertext] = ACTIONS(6237), - [anon_sym_shortintertext] = ACTIONS(6237), - }, - [540] = { - [sym_command_name] = ACTIONS(6241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6241), - [anon_sym_LBRACK] = ACTIONS(6243), - [anon_sym_RBRACK] = ACTIONS(6243), - [anon_sym_COMMA] = ACTIONS(6243), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_LPAREN] = ACTIONS(6243), - [anon_sym_RPAREN] = ACTIONS(6243), - [anon_sym_BSLASHpart] = ACTIONS(6241), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddpart] = ACTIONS(6241), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6243), - [anon_sym_BSLASHchapter] = ACTIONS(6241), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddchap] = ACTIONS(6241), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsection] = ACTIONS(6241), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddsec] = ACTIONS(6241), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubsection] = ACTIONS(6241), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6241), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHparagraph] = ACTIONS(6241), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6241), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6243), - [anon_sym_BSLASHitem] = ACTIONS(6241), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6243), - [anon_sym_LBRACE] = ACTIONS(6243), - [sym_word] = ACTIONS(6241), - [sym_placeholder] = ACTIONS(6243), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6243), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(6241), - [anon_sym_GT] = ACTIONS(6241), - [anon_sym_BANG] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_SQUOTE] = ACTIONS(6241), - [anon_sym__] = ACTIONS(6243), - [anon_sym_CARET] = ACTIONS(6243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), - [anon_sym_DOLLAR] = ACTIONS(6241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), - [anon_sym_BSLASHbegin] = ACTIONS(6241), - [anon_sym_BSLASHtitle] = ACTIONS(6241), - [anon_sym_BSLASHauthor] = ACTIONS(6241), - [anon_sym_BSLASHusepackage] = ACTIONS(6241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), - [anon_sym_BSLASHinclude] = ACTIONS(6241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), - [anon_sym_BSLASHinput] = ACTIONS(6241), - [anon_sym_BSLASHsubfile] = ACTIONS(6241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), - [anon_sym_BSLASHbibliography] = ACTIONS(6241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), - [anon_sym_BSLASHincludesvg] = ACTIONS(6241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), - [anon_sym_BSLASHimport] = ACTIONS(6241), - [anon_sym_BSLASHsubimport] = ACTIONS(6241), - [anon_sym_BSLASHinputfrom] = ACTIONS(6241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), - [anon_sym_BSLASHincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHcaption] = ACTIONS(6241), - [anon_sym_BSLASHcite] = ACTIONS(6241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCite] = ACTIONS(6241), - [anon_sym_BSLASHnocite] = ACTIONS(6241), - [anon_sym_BSLASHcitet] = ACTIONS(6241), - [anon_sym_BSLASHcitep] = ACTIONS(6241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteauthor] = ACTIONS(6241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitetitle] = ACTIONS(6241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteyear] = ACTIONS(6241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitedate] = ACTIONS(6241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteurl] = ACTIONS(6241), - [anon_sym_BSLASHfullcite] = ACTIONS(6241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), - [anon_sym_BSLASHcitealt] = ACTIONS(6241), - [anon_sym_BSLASHcitealp] = ACTIONS(6241), - [anon_sym_BSLASHcitetext] = ACTIONS(6241), - [anon_sym_BSLASHparencite] = ACTIONS(6241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHParencite] = ACTIONS(6241), - [anon_sym_BSLASHfootcite] = ACTIONS(6241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), - [anon_sym_BSLASHtextcite] = ACTIONS(6241), - [anon_sym_BSLASHTextcite] = ACTIONS(6241), - [anon_sym_BSLASHsmartcite] = ACTIONS(6241), - [anon_sym_BSLASHSmartcite] = ACTIONS(6241), - [anon_sym_BSLASHsupercite] = ACTIONS(6241), - [anon_sym_BSLASHautocite] = ACTIONS(6241), - [anon_sym_BSLASHAutocite] = ACTIONS(6241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHvolcite] = ACTIONS(6241), - [anon_sym_BSLASHVolcite] = ACTIONS(6241), - [anon_sym_BSLASHpvolcite] = ACTIONS(6241), - [anon_sym_BSLASHPvolcite] = ACTIONS(6241), - [anon_sym_BSLASHfvolcite] = ACTIONS(6241), - [anon_sym_BSLASHftvolcite] = ACTIONS(6241), - [anon_sym_BSLASHsvolcite] = ACTIONS(6241), - [anon_sym_BSLASHSvolcite] = ACTIONS(6241), - [anon_sym_BSLASHtvolcite] = ACTIONS(6241), - [anon_sym_BSLASHTvolcite] = ACTIONS(6241), - [anon_sym_BSLASHavolcite] = ACTIONS(6241), - [anon_sym_BSLASHAvolcite] = ACTIONS(6241), - [anon_sym_BSLASHnotecite] = ACTIONS(6241), - [anon_sym_BSLASHNotecite] = ACTIONS(6241), - [anon_sym_BSLASHpnotecite] = ACTIONS(6241), - [anon_sym_BSLASHPnotecite] = ACTIONS(6241), - [anon_sym_BSLASHfnotecite] = ACTIONS(6241), - [anon_sym_BSLASHlabel] = ACTIONS(6241), - [anon_sym_BSLASHref] = ACTIONS(6241), - [anon_sym_BSLASHeqref] = ACTIONS(6241), - [anon_sym_BSLASHvref] = ACTIONS(6241), - [anon_sym_BSLASHVref] = ACTIONS(6241), - [anon_sym_BSLASHautoref] = ACTIONS(6241), - [anon_sym_BSLASHpageref] = ACTIONS(6241), - [anon_sym_BSLASHcref] = ACTIONS(6241), - [anon_sym_BSLASHCref] = ACTIONS(6241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnameCref] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHlabelcref] = ACTIONS(6241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCrefrange] = ACTIONS(6241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnewlabel] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHdef] = ACTIONS(6241), - [anon_sym_BSLASHlet] = ACTIONS(6241), - [anon_sym_BSLASHleft] = ACTIONS(6241), - [anon_sym_BSLASHbig] = ACTIONS(6241), - [anon_sym_BSLASHBig] = ACTIONS(6241), - [anon_sym_BSLASHbigg] = ACTIONS(6241), - [anon_sym_BSLASHBigg] = ACTIONS(6241), - [anon_sym_BSLASHbigl] = ACTIONS(6241), - [anon_sym_BSLASHBigl] = ACTIONS(6241), - [anon_sym_BSLASHbiggl] = ACTIONS(6241), - [anon_sym_BSLASHBiggl] = ACTIONS(6241), - [anon_sym_BSLASHright] = ACTIONS(6241), - [anon_sym_BSLASHbigr] = ACTIONS(6241), - [anon_sym_BSLASHBigr] = ACTIONS(6241), - [anon_sym_BSLASHbiggr] = ACTIONS(6241), - [anon_sym_BSLASHBiggr] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), - [anon_sym_BSLASHgls] = ACTIONS(6241), - [anon_sym_BSLASHGls] = ACTIONS(6241), - [anon_sym_BSLASHGLS] = ACTIONS(6241), - [anon_sym_BSLASHglspl] = ACTIONS(6241), - [anon_sym_BSLASHGlspl] = ACTIONS(6241), - [anon_sym_BSLASHGLSpl] = ACTIONS(6241), - [anon_sym_BSLASHglsdisp] = ACTIONS(6241), - [anon_sym_BSLASHglslink] = ACTIONS(6241), - [anon_sym_BSLASHglstext] = ACTIONS(6241), - [anon_sym_BSLASHGlstext] = ACTIONS(6241), - [anon_sym_BSLASHGLStext] = ACTIONS(6241), - [anon_sym_BSLASHglsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), - [anon_sym_BSLASHglsplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSplural] = ACTIONS(6241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHglsname] = ACTIONS(6241), - [anon_sym_BSLASHGlsname] = ACTIONS(6241), - [anon_sym_BSLASHGLSname] = ACTIONS(6241), - [anon_sym_BSLASHglssymbol] = ACTIONS(6241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), - [anon_sym_BSLASHglsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), - [anon_sym_BSLASHglsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), - [anon_sym_BSLASHglsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), - [anon_sym_BSLASHglsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), - [anon_sym_BSLASHglsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), - [anon_sym_BSLASHnewacronym] = ACTIONS(6241), - [anon_sym_BSLASHacrshort] = ACTIONS(6241), - [anon_sym_BSLASHAcrshort] = ACTIONS(6241), - [anon_sym_BSLASHACRshort] = ACTIONS(6241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), - [anon_sym_BSLASHacrlong] = ACTIONS(6241), - [anon_sym_BSLASHAcrlong] = ACTIONS(6241), - [anon_sym_BSLASHACRlong] = ACTIONS(6241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), - [anon_sym_BSLASHacrfull] = ACTIONS(6241), - [anon_sym_BSLASHAcrfull] = ACTIONS(6241), - [anon_sym_BSLASHACRfull] = ACTIONS(6241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), - [anon_sym_BSLASHacs] = ACTIONS(6241), - [anon_sym_BSLASHAcs] = ACTIONS(6241), - [anon_sym_BSLASHacsp] = ACTIONS(6241), - [anon_sym_BSLASHAcsp] = ACTIONS(6241), - [anon_sym_BSLASHacl] = ACTIONS(6241), - [anon_sym_BSLASHAcl] = ACTIONS(6241), - [anon_sym_BSLASHaclp] = ACTIONS(6241), - [anon_sym_BSLASHAclp] = ACTIONS(6241), - [anon_sym_BSLASHacf] = ACTIONS(6241), - [anon_sym_BSLASHAcf] = ACTIONS(6241), - [anon_sym_BSLASHacfp] = ACTIONS(6241), - [anon_sym_BSLASHAcfp] = ACTIONS(6241), - [anon_sym_BSLASHac] = ACTIONS(6241), - [anon_sym_BSLASHAc] = ACTIONS(6241), - [anon_sym_BSLASHacp] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), - [anon_sym_BSLASHcolor] = ACTIONS(6241), - [anon_sym_BSLASHcolorbox] = ACTIONS(6241), - [anon_sym_BSLASHtextcolor] = ACTIONS(6241), - [anon_sym_BSLASHpagecolor] = ACTIONS(6241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), - [anon_sym_BSLASHtext] = ACTIONS(6241), - [anon_sym_BSLASHintertext] = ACTIONS(6241), - [anon_sym_shortintertext] = ACTIONS(6241), - }, - [541] = { - [sym_command_name] = ACTIONS(6245), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6247), - [anon_sym_RBRACK] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(6247), - [anon_sym_EQ] = ACTIONS(6247), - [anon_sym_LPAREN] = ACTIONS(6247), - [anon_sym_RPAREN] = ACTIONS(6247), - [anon_sym_BSLASHpart] = ACTIONS(6245), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddpart] = ACTIONS(6245), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6247), - [anon_sym_BSLASHchapter] = ACTIONS(6245), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddchap] = ACTIONS(6245), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsection] = ACTIONS(6245), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddsec] = ACTIONS(6245), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubsection] = ACTIONS(6245), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6245), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHparagraph] = ACTIONS(6245), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6245), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6247), - [anon_sym_BSLASHitem] = ACTIONS(6245), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6247), - [sym_word] = ACTIONS(6245), - [sym_placeholder] = ACTIONS(6247), - [anon_sym_PLUS] = ACTIONS(6247), - [anon_sym_DASH] = ACTIONS(6247), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_LT] = ACTIONS(6245), - [anon_sym_GT] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6245), - [anon_sym_PIPE] = ACTIONS(6245), - [anon_sym_COLON] = ACTIONS(6245), - [anon_sym_SQUOTE] = ACTIONS(6245), - [anon_sym__] = ACTIONS(6247), - [anon_sym_CARET] = ACTIONS(6247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), - [anon_sym_DOLLAR] = ACTIONS(6245), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), - [anon_sym_BSLASHbegin] = ACTIONS(6245), - [anon_sym_BSLASHtitle] = ACTIONS(6245), - [anon_sym_BSLASHauthor] = ACTIONS(6245), - [anon_sym_BSLASHusepackage] = ACTIONS(6245), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), - [anon_sym_BSLASHinclude] = ACTIONS(6245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), - [anon_sym_BSLASHinput] = ACTIONS(6245), - [anon_sym_BSLASHsubfile] = ACTIONS(6245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), - [anon_sym_BSLASHbibliography] = ACTIONS(6245), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), - [anon_sym_BSLASHincludesvg] = ACTIONS(6245), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), - [anon_sym_BSLASHimport] = ACTIONS(6245), - [anon_sym_BSLASHsubimport] = ACTIONS(6245), - [anon_sym_BSLASHinputfrom] = ACTIONS(6245), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), - [anon_sym_BSLASHincludefrom] = ACTIONS(6245), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), - [anon_sym_BSLASHcaption] = ACTIONS(6245), - [anon_sym_BSLASHcite] = ACTIONS(6245), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCite] = ACTIONS(6245), - [anon_sym_BSLASHnocite] = ACTIONS(6245), - [anon_sym_BSLASHcitet] = ACTIONS(6245), - [anon_sym_BSLASHcitep] = ACTIONS(6245), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteauthor] = ACTIONS(6245), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitetitle] = ACTIONS(6245), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteyear] = ACTIONS(6245), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitedate] = ACTIONS(6245), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteurl] = ACTIONS(6245), - [anon_sym_BSLASHfullcite] = ACTIONS(6245), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), - [anon_sym_BSLASHcitealt] = ACTIONS(6245), - [anon_sym_BSLASHcitealp] = ACTIONS(6245), - [anon_sym_BSLASHcitetext] = ACTIONS(6245), - [anon_sym_BSLASHparencite] = ACTIONS(6245), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHParencite] = ACTIONS(6245), - [anon_sym_BSLASHfootcite] = ACTIONS(6245), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), - [anon_sym_BSLASHtextcite] = ACTIONS(6245), - [anon_sym_BSLASHTextcite] = ACTIONS(6245), - [anon_sym_BSLASHsmartcite] = ACTIONS(6245), - [anon_sym_BSLASHSmartcite] = ACTIONS(6245), - [anon_sym_BSLASHsupercite] = ACTIONS(6245), - [anon_sym_BSLASHautocite] = ACTIONS(6245), - [anon_sym_BSLASHAutocite] = ACTIONS(6245), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHvolcite] = ACTIONS(6245), - [anon_sym_BSLASHVolcite] = ACTIONS(6245), - [anon_sym_BSLASHpvolcite] = ACTIONS(6245), - [anon_sym_BSLASHPvolcite] = ACTIONS(6245), - [anon_sym_BSLASHfvolcite] = ACTIONS(6245), - [anon_sym_BSLASHftvolcite] = ACTIONS(6245), - [anon_sym_BSLASHsvolcite] = ACTIONS(6245), - [anon_sym_BSLASHSvolcite] = ACTIONS(6245), - [anon_sym_BSLASHtvolcite] = ACTIONS(6245), - [anon_sym_BSLASHTvolcite] = ACTIONS(6245), - [anon_sym_BSLASHavolcite] = ACTIONS(6245), - [anon_sym_BSLASHAvolcite] = ACTIONS(6245), - [anon_sym_BSLASHnotecite] = ACTIONS(6245), - [anon_sym_BSLASHNotecite] = ACTIONS(6245), - [anon_sym_BSLASHpnotecite] = ACTIONS(6245), - [anon_sym_BSLASHPnotecite] = ACTIONS(6245), - [anon_sym_BSLASHfnotecite] = ACTIONS(6245), - [anon_sym_BSLASHlabel] = ACTIONS(6245), - [anon_sym_BSLASHref] = ACTIONS(6245), - [anon_sym_BSLASHeqref] = ACTIONS(6245), - [anon_sym_BSLASHvref] = ACTIONS(6245), - [anon_sym_BSLASHVref] = ACTIONS(6245), - [anon_sym_BSLASHautoref] = ACTIONS(6245), - [anon_sym_BSLASHpageref] = ACTIONS(6245), - [anon_sym_BSLASHcref] = ACTIONS(6245), - [anon_sym_BSLASHCref] = ACTIONS(6245), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), - [anon_sym_BSLASHnamecref] = ACTIONS(6245), - [anon_sym_BSLASHnameCref] = ACTIONS(6245), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), - [anon_sym_BSLASHlabelcref] = ACTIONS(6245), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), - [anon_sym_BSLASHcrefrange] = ACTIONS(6245), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCrefrange] = ACTIONS(6245), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), - [anon_sym_BSLASHnewlabel] = ACTIONS(6245), - [anon_sym_BSLASHnewcommand] = ACTIONS(6245), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHdef] = ACTIONS(6245), - [anon_sym_BSLASHlet] = ACTIONS(6245), - [anon_sym_BSLASHleft] = ACTIONS(6245), - [anon_sym_BSLASHbig] = ACTIONS(6245), - [anon_sym_BSLASHBig] = ACTIONS(6245), - [anon_sym_BSLASHbigg] = ACTIONS(6245), - [anon_sym_BSLASHBigg] = ACTIONS(6245), - [anon_sym_BSLASHbigl] = ACTIONS(6245), - [anon_sym_BSLASHBigl] = ACTIONS(6245), - [anon_sym_BSLASHbiggl] = ACTIONS(6245), - [anon_sym_BSLASHBiggl] = ACTIONS(6245), - [anon_sym_BSLASHright] = ACTIONS(6245), - [anon_sym_BSLASHbigr] = ACTIONS(6245), - [anon_sym_BSLASHBigr] = ACTIONS(6245), - [anon_sym_BSLASHbiggr] = ACTIONS(6245), - [anon_sym_BSLASHBiggr] = ACTIONS(6245), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6245), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), - [anon_sym_BSLASHgls] = ACTIONS(6245), - [anon_sym_BSLASHGls] = ACTIONS(6245), - [anon_sym_BSLASHGLS] = ACTIONS(6245), - [anon_sym_BSLASHglspl] = ACTIONS(6245), - [anon_sym_BSLASHGlspl] = ACTIONS(6245), - [anon_sym_BSLASHGLSpl] = ACTIONS(6245), - [anon_sym_BSLASHglsdisp] = ACTIONS(6245), - [anon_sym_BSLASHglslink] = ACTIONS(6245), - [anon_sym_BSLASHglstext] = ACTIONS(6245), - [anon_sym_BSLASHGlstext] = ACTIONS(6245), - [anon_sym_BSLASHGLStext] = ACTIONS(6245), - [anon_sym_BSLASHglsfirst] = ACTIONS(6245), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), - [anon_sym_BSLASHglsplural] = ACTIONS(6245), - [anon_sym_BSLASHGlsplural] = ACTIONS(6245), - [anon_sym_BSLASHGLSplural] = ACTIONS(6245), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHglsname] = ACTIONS(6245), - [anon_sym_BSLASHGlsname] = ACTIONS(6245), - [anon_sym_BSLASHGLSname] = ACTIONS(6245), - [anon_sym_BSLASHglssymbol] = ACTIONS(6245), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), - [anon_sym_BSLASHglsdesc] = ACTIONS(6245), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), - [anon_sym_BSLASHglsuseri] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), - [anon_sym_BSLASHglsuserii] = ACTIONS(6245), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), - [anon_sym_BSLASHglsuserv] = ACTIONS(6245), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), - [anon_sym_BSLASHglsuservi] = ACTIONS(6245), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), - [anon_sym_BSLASHnewacronym] = ACTIONS(6245), - [anon_sym_BSLASHacrshort] = ACTIONS(6245), - [anon_sym_BSLASHAcrshort] = ACTIONS(6245), - [anon_sym_BSLASHACRshort] = ACTIONS(6245), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), - [anon_sym_BSLASHacrlong] = ACTIONS(6245), - [anon_sym_BSLASHAcrlong] = ACTIONS(6245), - [anon_sym_BSLASHACRlong] = ACTIONS(6245), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), - [anon_sym_BSLASHacrfull] = ACTIONS(6245), - [anon_sym_BSLASHAcrfull] = ACTIONS(6245), - [anon_sym_BSLASHACRfull] = ACTIONS(6245), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), - [anon_sym_BSLASHacs] = ACTIONS(6245), - [anon_sym_BSLASHAcs] = ACTIONS(6245), - [anon_sym_BSLASHacsp] = ACTIONS(6245), - [anon_sym_BSLASHAcsp] = ACTIONS(6245), - [anon_sym_BSLASHacl] = ACTIONS(6245), - [anon_sym_BSLASHAcl] = ACTIONS(6245), - [anon_sym_BSLASHaclp] = ACTIONS(6245), - [anon_sym_BSLASHAclp] = ACTIONS(6245), - [anon_sym_BSLASHacf] = ACTIONS(6245), - [anon_sym_BSLASHAcf] = ACTIONS(6245), - [anon_sym_BSLASHacfp] = ACTIONS(6245), - [anon_sym_BSLASHAcfp] = ACTIONS(6245), - [anon_sym_BSLASHac] = ACTIONS(6245), - [anon_sym_BSLASHAc] = ACTIONS(6245), - [anon_sym_BSLASHacp] = ACTIONS(6245), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), - [anon_sym_BSLASHcolor] = ACTIONS(6245), - [anon_sym_BSLASHcolorbox] = ACTIONS(6245), - [anon_sym_BSLASHtextcolor] = ACTIONS(6245), - [anon_sym_BSLASHpagecolor] = ACTIONS(6245), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), - [anon_sym_BSLASHtext] = ACTIONS(6245), - [anon_sym_BSLASHintertext] = ACTIONS(6245), - [anon_sym_shortintertext] = ACTIONS(6245), - }, - [542] = { - [sym_command_name] = ACTIONS(6249), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_RBRACK] = ACTIONS(6251), - [anon_sym_COMMA] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(6251), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_BSLASHpart] = ACTIONS(6249), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddpart] = ACTIONS(6249), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6251), - [anon_sym_BSLASHchapter] = ACTIONS(6249), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddchap] = ACTIONS(6249), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsection] = ACTIONS(6249), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddsec] = ACTIONS(6249), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubsection] = ACTIONS(6249), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6249), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHparagraph] = ACTIONS(6249), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6249), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6251), - [anon_sym_BSLASHitem] = ACTIONS(6249), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6251), - [anon_sym_LBRACE] = ACTIONS(6251), - [sym_word] = ACTIONS(6249), - [sym_placeholder] = ACTIONS(6251), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6251), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_LT] = ACTIONS(6249), - [anon_sym_GT] = ACTIONS(6249), - [anon_sym_BANG] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_SQUOTE] = ACTIONS(6249), - [anon_sym__] = ACTIONS(6251), - [anon_sym_CARET] = ACTIONS(6251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), - [anon_sym_DOLLAR] = ACTIONS(6249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), - [anon_sym_BSLASHbegin] = ACTIONS(6249), - [anon_sym_BSLASHtitle] = ACTIONS(6249), - [anon_sym_BSLASHauthor] = ACTIONS(6249), - [anon_sym_BSLASHusepackage] = ACTIONS(6249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), - [anon_sym_BSLASHinclude] = ACTIONS(6249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), - [anon_sym_BSLASHinput] = ACTIONS(6249), - [anon_sym_BSLASHsubfile] = ACTIONS(6249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), - [anon_sym_BSLASHbibliography] = ACTIONS(6249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), - [anon_sym_BSLASHincludesvg] = ACTIONS(6249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), - [anon_sym_BSLASHimport] = ACTIONS(6249), - [anon_sym_BSLASHsubimport] = ACTIONS(6249), - [anon_sym_BSLASHinputfrom] = ACTIONS(6249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), - [anon_sym_BSLASHincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHcaption] = ACTIONS(6249), - [anon_sym_BSLASHcite] = ACTIONS(6249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCite] = ACTIONS(6249), - [anon_sym_BSLASHnocite] = ACTIONS(6249), - [anon_sym_BSLASHcitet] = ACTIONS(6249), - [anon_sym_BSLASHcitep] = ACTIONS(6249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteauthor] = ACTIONS(6249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitetitle] = ACTIONS(6249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteyear] = ACTIONS(6249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitedate] = ACTIONS(6249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteurl] = ACTIONS(6249), - [anon_sym_BSLASHfullcite] = ACTIONS(6249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), - [anon_sym_BSLASHcitealt] = ACTIONS(6249), - [anon_sym_BSLASHcitealp] = ACTIONS(6249), - [anon_sym_BSLASHcitetext] = ACTIONS(6249), - [anon_sym_BSLASHparencite] = ACTIONS(6249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHParencite] = ACTIONS(6249), - [anon_sym_BSLASHfootcite] = ACTIONS(6249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), - [anon_sym_BSLASHtextcite] = ACTIONS(6249), - [anon_sym_BSLASHTextcite] = ACTIONS(6249), - [anon_sym_BSLASHsmartcite] = ACTIONS(6249), - [anon_sym_BSLASHSmartcite] = ACTIONS(6249), - [anon_sym_BSLASHsupercite] = ACTIONS(6249), - [anon_sym_BSLASHautocite] = ACTIONS(6249), - [anon_sym_BSLASHAutocite] = ACTIONS(6249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHvolcite] = ACTIONS(6249), - [anon_sym_BSLASHVolcite] = ACTIONS(6249), - [anon_sym_BSLASHpvolcite] = ACTIONS(6249), - [anon_sym_BSLASHPvolcite] = ACTIONS(6249), - [anon_sym_BSLASHfvolcite] = ACTIONS(6249), - [anon_sym_BSLASHftvolcite] = ACTIONS(6249), - [anon_sym_BSLASHsvolcite] = ACTIONS(6249), - [anon_sym_BSLASHSvolcite] = ACTIONS(6249), - [anon_sym_BSLASHtvolcite] = ACTIONS(6249), - [anon_sym_BSLASHTvolcite] = ACTIONS(6249), - [anon_sym_BSLASHavolcite] = ACTIONS(6249), - [anon_sym_BSLASHAvolcite] = ACTIONS(6249), - [anon_sym_BSLASHnotecite] = ACTIONS(6249), - [anon_sym_BSLASHNotecite] = ACTIONS(6249), - [anon_sym_BSLASHpnotecite] = ACTIONS(6249), - [anon_sym_BSLASHPnotecite] = ACTIONS(6249), - [anon_sym_BSLASHfnotecite] = ACTIONS(6249), - [anon_sym_BSLASHlabel] = ACTIONS(6249), - [anon_sym_BSLASHref] = ACTIONS(6249), - [anon_sym_BSLASHeqref] = ACTIONS(6249), - [anon_sym_BSLASHvref] = ACTIONS(6249), - [anon_sym_BSLASHVref] = ACTIONS(6249), - [anon_sym_BSLASHautoref] = ACTIONS(6249), - [anon_sym_BSLASHpageref] = ACTIONS(6249), - [anon_sym_BSLASHcref] = ACTIONS(6249), - [anon_sym_BSLASHCref] = ACTIONS(6249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnameCref] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHlabelcref] = ACTIONS(6249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCrefrange] = ACTIONS(6249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnewlabel] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHdef] = ACTIONS(6249), - [anon_sym_BSLASHlet] = ACTIONS(6249), - [anon_sym_BSLASHleft] = ACTIONS(6249), - [anon_sym_BSLASHbig] = ACTIONS(6249), - [anon_sym_BSLASHBig] = ACTIONS(6249), - [anon_sym_BSLASHbigg] = ACTIONS(6249), - [anon_sym_BSLASHBigg] = ACTIONS(6249), - [anon_sym_BSLASHbigl] = ACTIONS(6249), - [anon_sym_BSLASHBigl] = ACTIONS(6249), - [anon_sym_BSLASHbiggl] = ACTIONS(6249), - [anon_sym_BSLASHBiggl] = ACTIONS(6249), - [anon_sym_BSLASHright] = ACTIONS(6249), - [anon_sym_BSLASHbigr] = ACTIONS(6249), - [anon_sym_BSLASHBigr] = ACTIONS(6249), - [anon_sym_BSLASHbiggr] = ACTIONS(6249), - [anon_sym_BSLASHBiggr] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), - [anon_sym_BSLASHgls] = ACTIONS(6249), - [anon_sym_BSLASHGls] = ACTIONS(6249), - [anon_sym_BSLASHGLS] = ACTIONS(6249), - [anon_sym_BSLASHglspl] = ACTIONS(6249), - [anon_sym_BSLASHGlspl] = ACTIONS(6249), - [anon_sym_BSLASHGLSpl] = ACTIONS(6249), - [anon_sym_BSLASHglsdisp] = ACTIONS(6249), - [anon_sym_BSLASHglslink] = ACTIONS(6249), - [anon_sym_BSLASHglstext] = ACTIONS(6249), - [anon_sym_BSLASHGlstext] = ACTIONS(6249), - [anon_sym_BSLASHGLStext] = ACTIONS(6249), - [anon_sym_BSLASHglsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), - [anon_sym_BSLASHglsplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSplural] = ACTIONS(6249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHglsname] = ACTIONS(6249), - [anon_sym_BSLASHGlsname] = ACTIONS(6249), - [anon_sym_BSLASHGLSname] = ACTIONS(6249), - [anon_sym_BSLASHglssymbol] = ACTIONS(6249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), - [anon_sym_BSLASHglsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), - [anon_sym_BSLASHglsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), - [anon_sym_BSLASHglsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), - [anon_sym_BSLASHglsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), - [anon_sym_BSLASHglsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), - [anon_sym_BSLASHnewacronym] = ACTIONS(6249), - [anon_sym_BSLASHacrshort] = ACTIONS(6249), - [anon_sym_BSLASHAcrshort] = ACTIONS(6249), - [anon_sym_BSLASHACRshort] = ACTIONS(6249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), - [anon_sym_BSLASHacrlong] = ACTIONS(6249), - [anon_sym_BSLASHAcrlong] = ACTIONS(6249), - [anon_sym_BSLASHACRlong] = ACTIONS(6249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), - [anon_sym_BSLASHacrfull] = ACTIONS(6249), - [anon_sym_BSLASHAcrfull] = ACTIONS(6249), - [anon_sym_BSLASHACRfull] = ACTIONS(6249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), - [anon_sym_BSLASHacs] = ACTIONS(6249), - [anon_sym_BSLASHAcs] = ACTIONS(6249), - [anon_sym_BSLASHacsp] = ACTIONS(6249), - [anon_sym_BSLASHAcsp] = ACTIONS(6249), - [anon_sym_BSLASHacl] = ACTIONS(6249), - [anon_sym_BSLASHAcl] = ACTIONS(6249), - [anon_sym_BSLASHaclp] = ACTIONS(6249), - [anon_sym_BSLASHAclp] = ACTIONS(6249), - [anon_sym_BSLASHacf] = ACTIONS(6249), - [anon_sym_BSLASHAcf] = ACTIONS(6249), - [anon_sym_BSLASHacfp] = ACTIONS(6249), - [anon_sym_BSLASHAcfp] = ACTIONS(6249), - [anon_sym_BSLASHac] = ACTIONS(6249), - [anon_sym_BSLASHAc] = ACTIONS(6249), - [anon_sym_BSLASHacp] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), - [anon_sym_BSLASHcolor] = ACTIONS(6249), - [anon_sym_BSLASHcolorbox] = ACTIONS(6249), - [anon_sym_BSLASHtextcolor] = ACTIONS(6249), - [anon_sym_BSLASHpagecolor] = ACTIONS(6249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), - [anon_sym_BSLASHtext] = ACTIONS(6249), - [anon_sym_BSLASHintertext] = ACTIONS(6249), - [anon_sym_shortintertext] = ACTIONS(6249), - }, - [543] = { - [sym_command_name] = ACTIONS(6253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6253), - [anon_sym_LBRACK] = ACTIONS(6255), - [anon_sym_RBRACK] = ACTIONS(6255), - [anon_sym_COMMA] = ACTIONS(6255), - [anon_sym_EQ] = ACTIONS(6255), - [anon_sym_LPAREN] = ACTIONS(6255), - [anon_sym_RPAREN] = ACTIONS(6255), - [anon_sym_BSLASHpart] = ACTIONS(6253), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddpart] = ACTIONS(6253), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6255), - [anon_sym_BSLASHchapter] = ACTIONS(6253), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddchap] = ACTIONS(6253), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsection] = ACTIONS(6253), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddsec] = ACTIONS(6253), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubsection] = ACTIONS(6253), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6253), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHparagraph] = ACTIONS(6253), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6253), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6255), - [anon_sym_BSLASHitem] = ACTIONS(6253), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6255), - [anon_sym_LBRACE] = ACTIONS(6255), - [sym_word] = ACTIONS(6253), - [sym_placeholder] = ACTIONS(6255), - [anon_sym_PLUS] = ACTIONS(6255), - [anon_sym_DASH] = ACTIONS(6255), - [anon_sym_STAR] = ACTIONS(6255), - [anon_sym_SLASH] = ACTIONS(6255), - [anon_sym_LT] = ACTIONS(6253), - [anon_sym_GT] = ACTIONS(6253), - [anon_sym_BANG] = ACTIONS(6253), - [anon_sym_PIPE] = ACTIONS(6253), - [anon_sym_COLON] = ACTIONS(6253), - [anon_sym_SQUOTE] = ACTIONS(6253), - [anon_sym__] = ACTIONS(6255), - [anon_sym_CARET] = ACTIONS(6255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6255), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6255), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6255), - [anon_sym_BSLASHbegin] = ACTIONS(6253), - [anon_sym_BSLASHtitle] = ACTIONS(6253), - [anon_sym_BSLASHauthor] = ACTIONS(6253), - [anon_sym_BSLASHusepackage] = ACTIONS(6253), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), - [anon_sym_BSLASHinclude] = ACTIONS(6253), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), - [anon_sym_BSLASHinput] = ACTIONS(6253), - [anon_sym_BSLASHsubfile] = ACTIONS(6253), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), - [anon_sym_BSLASHbibliography] = ACTIONS(6253), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), - [anon_sym_BSLASHincludesvg] = ACTIONS(6253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), - [anon_sym_BSLASHimport] = ACTIONS(6253), - [anon_sym_BSLASHsubimport] = ACTIONS(6253), - [anon_sym_BSLASHinputfrom] = ACTIONS(6253), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), - [anon_sym_BSLASHincludefrom] = ACTIONS(6253), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), - [anon_sym_BSLASHcaption] = ACTIONS(6253), - [anon_sym_BSLASHcite] = ACTIONS(6253), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCite] = ACTIONS(6253), - [anon_sym_BSLASHnocite] = ACTIONS(6253), - [anon_sym_BSLASHcitet] = ACTIONS(6253), - [anon_sym_BSLASHcitep] = ACTIONS(6253), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteauthor] = ACTIONS(6253), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitetitle] = ACTIONS(6253), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteyear] = ACTIONS(6253), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitedate] = ACTIONS(6253), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteurl] = ACTIONS(6253), - [anon_sym_BSLASHfullcite] = ACTIONS(6253), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), - [anon_sym_BSLASHcitealt] = ACTIONS(6253), - [anon_sym_BSLASHcitealp] = ACTIONS(6253), - [anon_sym_BSLASHcitetext] = ACTIONS(6253), - [anon_sym_BSLASHparencite] = ACTIONS(6253), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHParencite] = ACTIONS(6253), - [anon_sym_BSLASHfootcite] = ACTIONS(6253), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), - [anon_sym_BSLASHtextcite] = ACTIONS(6253), - [anon_sym_BSLASHTextcite] = ACTIONS(6253), - [anon_sym_BSLASHsmartcite] = ACTIONS(6253), - [anon_sym_BSLASHSmartcite] = ACTIONS(6253), - [anon_sym_BSLASHsupercite] = ACTIONS(6253), - [anon_sym_BSLASHautocite] = ACTIONS(6253), - [anon_sym_BSLASHAutocite] = ACTIONS(6253), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHvolcite] = ACTIONS(6253), - [anon_sym_BSLASHVolcite] = ACTIONS(6253), - [anon_sym_BSLASHpvolcite] = ACTIONS(6253), - [anon_sym_BSLASHPvolcite] = ACTIONS(6253), - [anon_sym_BSLASHfvolcite] = ACTIONS(6253), - [anon_sym_BSLASHftvolcite] = ACTIONS(6253), - [anon_sym_BSLASHsvolcite] = ACTIONS(6253), - [anon_sym_BSLASHSvolcite] = ACTIONS(6253), - [anon_sym_BSLASHtvolcite] = ACTIONS(6253), - [anon_sym_BSLASHTvolcite] = ACTIONS(6253), - [anon_sym_BSLASHavolcite] = ACTIONS(6253), - [anon_sym_BSLASHAvolcite] = ACTIONS(6253), - [anon_sym_BSLASHnotecite] = ACTIONS(6253), - [anon_sym_BSLASHNotecite] = ACTIONS(6253), - [anon_sym_BSLASHpnotecite] = ACTIONS(6253), - [anon_sym_BSLASHPnotecite] = ACTIONS(6253), - [anon_sym_BSLASHfnotecite] = ACTIONS(6253), - [anon_sym_BSLASHlabel] = ACTIONS(6253), - [anon_sym_BSLASHref] = ACTIONS(6253), - [anon_sym_BSLASHeqref] = ACTIONS(6253), - [anon_sym_BSLASHvref] = ACTIONS(6253), - [anon_sym_BSLASHVref] = ACTIONS(6253), - [anon_sym_BSLASHautoref] = ACTIONS(6253), - [anon_sym_BSLASHpageref] = ACTIONS(6253), - [anon_sym_BSLASHcref] = ACTIONS(6253), - [anon_sym_BSLASHCref] = ACTIONS(6253), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6255), - [anon_sym_BSLASHnamecref] = ACTIONS(6253), - [anon_sym_BSLASHnameCref] = ACTIONS(6253), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), - [anon_sym_BSLASHlabelcref] = ACTIONS(6253), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), - [anon_sym_BSLASHcrefrange] = ACTIONS(6253), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCrefrange] = ACTIONS(6253), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6255), - [anon_sym_BSLASHnewlabel] = ACTIONS(6253), - [anon_sym_BSLASHnewcommand] = ACTIONS(6253), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6255), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHdef] = ACTIONS(6253), - [anon_sym_BSLASHlet] = ACTIONS(6253), - [anon_sym_BSLASHleft] = ACTIONS(6253), - [anon_sym_BSLASHbig] = ACTIONS(6253), - [anon_sym_BSLASHBig] = ACTIONS(6253), - [anon_sym_BSLASHbigg] = ACTIONS(6253), - [anon_sym_BSLASHBigg] = ACTIONS(6253), - [anon_sym_BSLASHbigl] = ACTIONS(6253), - [anon_sym_BSLASHBigl] = ACTIONS(6253), - [anon_sym_BSLASHbiggl] = ACTIONS(6253), - [anon_sym_BSLASHBiggl] = ACTIONS(6253), - [anon_sym_BSLASHright] = ACTIONS(6253), - [anon_sym_BSLASHbigr] = ACTIONS(6253), - [anon_sym_BSLASHBigr] = ACTIONS(6253), - [anon_sym_BSLASHbiggr] = ACTIONS(6253), - [anon_sym_BSLASHBiggr] = ACTIONS(6253), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6253), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), - [anon_sym_BSLASHgls] = ACTIONS(6253), - [anon_sym_BSLASHGls] = ACTIONS(6253), - [anon_sym_BSLASHGLS] = ACTIONS(6253), - [anon_sym_BSLASHglspl] = ACTIONS(6253), - [anon_sym_BSLASHGlspl] = ACTIONS(6253), - [anon_sym_BSLASHGLSpl] = ACTIONS(6253), - [anon_sym_BSLASHglsdisp] = ACTIONS(6253), - [anon_sym_BSLASHglslink] = ACTIONS(6253), - [anon_sym_BSLASHglstext] = ACTIONS(6253), - [anon_sym_BSLASHGlstext] = ACTIONS(6253), - [anon_sym_BSLASHGLStext] = ACTIONS(6253), - [anon_sym_BSLASHglsfirst] = ACTIONS(6253), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), - [anon_sym_BSLASHglsplural] = ACTIONS(6253), - [anon_sym_BSLASHGlsplural] = ACTIONS(6253), - [anon_sym_BSLASHGLSplural] = ACTIONS(6253), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHglsname] = ACTIONS(6253), - [anon_sym_BSLASHGlsname] = ACTIONS(6253), - [anon_sym_BSLASHGLSname] = ACTIONS(6253), - [anon_sym_BSLASHglssymbol] = ACTIONS(6253), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), - [anon_sym_BSLASHglsdesc] = ACTIONS(6253), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), - [anon_sym_BSLASHglsuseri] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), - [anon_sym_BSLASHglsuserii] = ACTIONS(6253), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), - [anon_sym_BSLASHglsuserv] = ACTIONS(6253), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), - [anon_sym_BSLASHglsuservi] = ACTIONS(6253), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), - [anon_sym_BSLASHnewacronym] = ACTIONS(6253), - [anon_sym_BSLASHacrshort] = ACTIONS(6253), - [anon_sym_BSLASHAcrshort] = ACTIONS(6253), - [anon_sym_BSLASHACRshort] = ACTIONS(6253), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), - [anon_sym_BSLASHacrlong] = ACTIONS(6253), - [anon_sym_BSLASHAcrlong] = ACTIONS(6253), - [anon_sym_BSLASHACRlong] = ACTIONS(6253), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), - [anon_sym_BSLASHacrfull] = ACTIONS(6253), - [anon_sym_BSLASHAcrfull] = ACTIONS(6253), - [anon_sym_BSLASHACRfull] = ACTIONS(6253), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), - [anon_sym_BSLASHacs] = ACTIONS(6253), - [anon_sym_BSLASHAcs] = ACTIONS(6253), - [anon_sym_BSLASHacsp] = ACTIONS(6253), - [anon_sym_BSLASHAcsp] = ACTIONS(6253), - [anon_sym_BSLASHacl] = ACTIONS(6253), - [anon_sym_BSLASHAcl] = ACTIONS(6253), - [anon_sym_BSLASHaclp] = ACTIONS(6253), - [anon_sym_BSLASHAclp] = ACTIONS(6253), - [anon_sym_BSLASHacf] = ACTIONS(6253), - [anon_sym_BSLASHAcf] = ACTIONS(6253), - [anon_sym_BSLASHacfp] = ACTIONS(6253), - [anon_sym_BSLASHAcfp] = ACTIONS(6253), - [anon_sym_BSLASHac] = ACTIONS(6253), - [anon_sym_BSLASHAc] = ACTIONS(6253), - [anon_sym_BSLASHacp] = ACTIONS(6253), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), - [anon_sym_BSLASHcolor] = ACTIONS(6253), - [anon_sym_BSLASHcolorbox] = ACTIONS(6253), - [anon_sym_BSLASHtextcolor] = ACTIONS(6253), - [anon_sym_BSLASHpagecolor] = ACTIONS(6253), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), - [anon_sym_BSLASHtext] = ACTIONS(6253), - [anon_sym_BSLASHintertext] = ACTIONS(6253), - [anon_sym_shortintertext] = ACTIONS(6253), - }, - [544] = { - [sym_command_name] = ACTIONS(6257), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6257), - [anon_sym_LBRACK] = ACTIONS(6259), - [anon_sym_RBRACK] = ACTIONS(6259), - [anon_sym_COMMA] = ACTIONS(6259), - [anon_sym_EQ] = ACTIONS(6259), - [anon_sym_LPAREN] = ACTIONS(6259), - [anon_sym_RPAREN] = ACTIONS(6259), - [anon_sym_BSLASHpart] = ACTIONS(6257), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddpart] = ACTIONS(6257), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6259), - [anon_sym_BSLASHchapter] = ACTIONS(6257), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddchap] = ACTIONS(6257), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsection] = ACTIONS(6257), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddsec] = ACTIONS(6257), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubsection] = ACTIONS(6257), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6257), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHparagraph] = ACTIONS(6257), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6257), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6259), - [anon_sym_BSLASHitem] = ACTIONS(6257), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6259), - [anon_sym_LBRACE] = ACTIONS(6259), - [sym_word] = ACTIONS(6257), - [sym_placeholder] = ACTIONS(6259), - [anon_sym_PLUS] = ACTIONS(6259), - [anon_sym_DASH] = ACTIONS(6259), - [anon_sym_STAR] = ACTIONS(6259), - [anon_sym_SLASH] = ACTIONS(6259), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_GT] = ACTIONS(6257), - [anon_sym_BANG] = ACTIONS(6257), - [anon_sym_PIPE] = ACTIONS(6257), - [anon_sym_COLON] = ACTIONS(6257), - [anon_sym_SQUOTE] = ACTIONS(6257), - [anon_sym__] = ACTIONS(6259), - [anon_sym_CARET] = ACTIONS(6259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6259), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6259), - [anon_sym_DOLLAR] = ACTIONS(6257), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6259), - [anon_sym_BSLASHbegin] = ACTIONS(6257), - [anon_sym_BSLASHtitle] = ACTIONS(6257), - [anon_sym_BSLASHauthor] = ACTIONS(6257), - [anon_sym_BSLASHusepackage] = ACTIONS(6257), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6257), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6257), - [anon_sym_BSLASHinclude] = ACTIONS(6257), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6257), - [anon_sym_BSLASHinput] = ACTIONS(6257), - [anon_sym_BSLASHsubfile] = ACTIONS(6257), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6257), - [anon_sym_BSLASHbibliography] = ACTIONS(6257), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6257), - [anon_sym_BSLASHincludesvg] = ACTIONS(6257), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6257), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6257), - [anon_sym_BSLASHimport] = ACTIONS(6257), - [anon_sym_BSLASHsubimport] = ACTIONS(6257), - [anon_sym_BSLASHinputfrom] = ACTIONS(6257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6257), - [anon_sym_BSLASHincludefrom] = ACTIONS(6257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6257), - [anon_sym_BSLASHcaption] = ACTIONS(6257), - [anon_sym_BSLASHcite] = ACTIONS(6257), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCite] = ACTIONS(6257), - [anon_sym_BSLASHnocite] = ACTIONS(6257), - [anon_sym_BSLASHcitet] = ACTIONS(6257), - [anon_sym_BSLASHcitep] = ACTIONS(6257), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteauthor] = ACTIONS(6257), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6257), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitetitle] = ACTIONS(6257), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteyear] = ACTIONS(6257), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitedate] = ACTIONS(6257), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteurl] = ACTIONS(6257), - [anon_sym_BSLASHfullcite] = ACTIONS(6257), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6257), - [anon_sym_BSLASHcitealt] = ACTIONS(6257), - [anon_sym_BSLASHcitealp] = ACTIONS(6257), - [anon_sym_BSLASHcitetext] = ACTIONS(6257), - [anon_sym_BSLASHparencite] = ACTIONS(6257), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHParencite] = ACTIONS(6257), - [anon_sym_BSLASHfootcite] = ACTIONS(6257), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6257), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6257), - [anon_sym_BSLASHtextcite] = ACTIONS(6257), - [anon_sym_BSLASHTextcite] = ACTIONS(6257), - [anon_sym_BSLASHsmartcite] = ACTIONS(6257), - [anon_sym_BSLASHSmartcite] = ACTIONS(6257), - [anon_sym_BSLASHsupercite] = ACTIONS(6257), - [anon_sym_BSLASHautocite] = ACTIONS(6257), - [anon_sym_BSLASHAutocite] = ACTIONS(6257), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHvolcite] = ACTIONS(6257), - [anon_sym_BSLASHVolcite] = ACTIONS(6257), - [anon_sym_BSLASHpvolcite] = ACTIONS(6257), - [anon_sym_BSLASHPvolcite] = ACTIONS(6257), - [anon_sym_BSLASHfvolcite] = ACTIONS(6257), - [anon_sym_BSLASHftvolcite] = ACTIONS(6257), - [anon_sym_BSLASHsvolcite] = ACTIONS(6257), - [anon_sym_BSLASHSvolcite] = ACTIONS(6257), - [anon_sym_BSLASHtvolcite] = ACTIONS(6257), - [anon_sym_BSLASHTvolcite] = ACTIONS(6257), - [anon_sym_BSLASHavolcite] = ACTIONS(6257), - [anon_sym_BSLASHAvolcite] = ACTIONS(6257), - [anon_sym_BSLASHnotecite] = ACTIONS(6257), - [anon_sym_BSLASHNotecite] = ACTIONS(6257), - [anon_sym_BSLASHpnotecite] = ACTIONS(6257), - [anon_sym_BSLASHPnotecite] = ACTIONS(6257), - [anon_sym_BSLASHfnotecite] = ACTIONS(6257), - [anon_sym_BSLASHlabel] = ACTIONS(6257), - [anon_sym_BSLASHref] = ACTIONS(6257), - [anon_sym_BSLASHeqref] = ACTIONS(6257), - [anon_sym_BSLASHvref] = ACTIONS(6257), - [anon_sym_BSLASHVref] = ACTIONS(6257), - [anon_sym_BSLASHautoref] = ACTIONS(6257), - [anon_sym_BSLASHpageref] = ACTIONS(6257), - [anon_sym_BSLASHcref] = ACTIONS(6257), - [anon_sym_BSLASHCref] = ACTIONS(6257), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6259), - [anon_sym_BSLASHnamecref] = ACTIONS(6257), - [anon_sym_BSLASHnameCref] = ACTIONS(6257), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6257), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6257), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6257), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6257), - [anon_sym_BSLASHlabelcref] = ACTIONS(6257), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6257), - [anon_sym_BSLASHcrefrange] = ACTIONS(6257), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCrefrange] = ACTIONS(6257), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6259), - [anon_sym_BSLASHnewlabel] = ACTIONS(6257), - [anon_sym_BSLASHnewcommand] = ACTIONS(6257), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6257), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6257), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6259), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHdef] = ACTIONS(6257), - [anon_sym_BSLASHlet] = ACTIONS(6257), - [anon_sym_BSLASHleft] = ACTIONS(6257), - [anon_sym_BSLASHbig] = ACTIONS(6257), - [anon_sym_BSLASHBig] = ACTIONS(6257), - [anon_sym_BSLASHbigg] = ACTIONS(6257), - [anon_sym_BSLASHBigg] = ACTIONS(6257), - [anon_sym_BSLASHbigl] = ACTIONS(6257), - [anon_sym_BSLASHBigl] = ACTIONS(6257), - [anon_sym_BSLASHbiggl] = ACTIONS(6257), - [anon_sym_BSLASHBiggl] = ACTIONS(6257), - [anon_sym_BSLASHright] = ACTIONS(6257), - [anon_sym_BSLASHbigr] = ACTIONS(6257), - [anon_sym_BSLASHBigr] = ACTIONS(6257), - [anon_sym_BSLASHbiggr] = ACTIONS(6257), - [anon_sym_BSLASHBiggr] = ACTIONS(6257), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6257), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6257), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6257), - [anon_sym_BSLASHgls] = ACTIONS(6257), - [anon_sym_BSLASHGls] = ACTIONS(6257), - [anon_sym_BSLASHGLS] = ACTIONS(6257), - [anon_sym_BSLASHglspl] = ACTIONS(6257), - [anon_sym_BSLASHGlspl] = ACTIONS(6257), - [anon_sym_BSLASHGLSpl] = ACTIONS(6257), - [anon_sym_BSLASHglsdisp] = ACTIONS(6257), - [anon_sym_BSLASHglslink] = ACTIONS(6257), - [anon_sym_BSLASHglstext] = ACTIONS(6257), - [anon_sym_BSLASHGlstext] = ACTIONS(6257), - [anon_sym_BSLASHGLStext] = ACTIONS(6257), - [anon_sym_BSLASHglsfirst] = ACTIONS(6257), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6257), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6257), - [anon_sym_BSLASHglsplural] = ACTIONS(6257), - [anon_sym_BSLASHGlsplural] = ACTIONS(6257), - [anon_sym_BSLASHGLSplural] = ACTIONS(6257), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHglsname] = ACTIONS(6257), - [anon_sym_BSLASHGlsname] = ACTIONS(6257), - [anon_sym_BSLASHGLSname] = ACTIONS(6257), - [anon_sym_BSLASHglssymbol] = ACTIONS(6257), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6257), - [anon_sym_BSLASHglsdesc] = ACTIONS(6257), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6257), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6257), - [anon_sym_BSLASHglsuseri] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6257), - [anon_sym_BSLASHglsuserii] = ACTIONS(6257), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6257), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6257), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6257), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6257), - [anon_sym_BSLASHglsuserv] = ACTIONS(6257), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6257), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6257), - [anon_sym_BSLASHglsuservi] = ACTIONS(6257), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6257), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6257), - [anon_sym_BSLASHnewacronym] = ACTIONS(6257), - [anon_sym_BSLASHacrshort] = ACTIONS(6257), - [anon_sym_BSLASHAcrshort] = ACTIONS(6257), - [anon_sym_BSLASHACRshort] = ACTIONS(6257), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6257), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6257), - [anon_sym_BSLASHacrlong] = ACTIONS(6257), - [anon_sym_BSLASHAcrlong] = ACTIONS(6257), - [anon_sym_BSLASHACRlong] = ACTIONS(6257), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6257), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6257), - [anon_sym_BSLASHacrfull] = ACTIONS(6257), - [anon_sym_BSLASHAcrfull] = ACTIONS(6257), - [anon_sym_BSLASHACRfull] = ACTIONS(6257), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6257), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6257), - [anon_sym_BSLASHacs] = ACTIONS(6257), - [anon_sym_BSLASHAcs] = ACTIONS(6257), - [anon_sym_BSLASHacsp] = ACTIONS(6257), - [anon_sym_BSLASHAcsp] = ACTIONS(6257), - [anon_sym_BSLASHacl] = ACTIONS(6257), - [anon_sym_BSLASHAcl] = ACTIONS(6257), - [anon_sym_BSLASHaclp] = ACTIONS(6257), - [anon_sym_BSLASHAclp] = ACTIONS(6257), - [anon_sym_BSLASHacf] = ACTIONS(6257), - [anon_sym_BSLASHAcf] = ACTIONS(6257), - [anon_sym_BSLASHacfp] = ACTIONS(6257), - [anon_sym_BSLASHAcfp] = ACTIONS(6257), - [anon_sym_BSLASHac] = ACTIONS(6257), - [anon_sym_BSLASHAc] = ACTIONS(6257), - [anon_sym_BSLASHacp] = ACTIONS(6257), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6257), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6257), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6257), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6257), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6257), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6257), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6257), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6257), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6257), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6257), - [anon_sym_BSLASHcolor] = ACTIONS(6257), - [anon_sym_BSLASHcolorbox] = ACTIONS(6257), - [anon_sym_BSLASHtextcolor] = ACTIONS(6257), - [anon_sym_BSLASHpagecolor] = ACTIONS(6257), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6257), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6257), - [anon_sym_BSLASHtext] = ACTIONS(6257), - [anon_sym_BSLASHintertext] = ACTIONS(6257), - [anon_sym_shortintertext] = ACTIONS(6257), - }, - [545] = { - [sym_command_name] = ACTIONS(6261), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(6263), - [anon_sym_RBRACK] = ACTIONS(6263), - [anon_sym_COMMA] = ACTIONS(6263), - [anon_sym_EQ] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6263), - [anon_sym_RPAREN] = ACTIONS(6263), - [anon_sym_BSLASHpart] = ACTIONS(6261), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddpart] = ACTIONS(6261), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6263), - [anon_sym_BSLASHchapter] = ACTIONS(6261), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddchap] = ACTIONS(6261), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsection] = ACTIONS(6261), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddsec] = ACTIONS(6261), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubsection] = ACTIONS(6261), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6261), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHparagraph] = ACTIONS(6261), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6261), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6263), - [anon_sym_BSLASHitem] = ACTIONS(6261), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6263), - [anon_sym_LBRACE] = ACTIONS(6263), - [sym_word] = ACTIONS(6261), - [sym_placeholder] = ACTIONS(6263), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_STAR] = ACTIONS(6263), - [anon_sym_SLASH] = ACTIONS(6263), - [anon_sym_LT] = ACTIONS(6261), - [anon_sym_GT] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_PIPE] = ACTIONS(6261), - [anon_sym_COLON] = ACTIONS(6261), - [anon_sym_SQUOTE] = ACTIONS(6261), - [anon_sym__] = ACTIONS(6263), - [anon_sym_CARET] = ACTIONS(6263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6263), - [anon_sym_DOLLAR] = ACTIONS(6261), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6263), - [anon_sym_BSLASHbegin] = ACTIONS(6261), - [anon_sym_BSLASHtitle] = ACTIONS(6261), - [anon_sym_BSLASHauthor] = ACTIONS(6261), - [anon_sym_BSLASHusepackage] = ACTIONS(6261), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6261), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6261), - [anon_sym_BSLASHinclude] = ACTIONS(6261), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6261), - [anon_sym_BSLASHinput] = ACTIONS(6261), - [anon_sym_BSLASHsubfile] = ACTIONS(6261), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6261), - [anon_sym_BSLASHbibliography] = ACTIONS(6261), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6261), - [anon_sym_BSLASHincludesvg] = ACTIONS(6261), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6261), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6261), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6261), - [anon_sym_BSLASHimport] = ACTIONS(6261), - [anon_sym_BSLASHsubimport] = ACTIONS(6261), - [anon_sym_BSLASHinputfrom] = ACTIONS(6261), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6261), - [anon_sym_BSLASHincludefrom] = ACTIONS(6261), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6261), - [anon_sym_BSLASHcaption] = ACTIONS(6261), - [anon_sym_BSLASHcite] = ACTIONS(6261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCite] = ACTIONS(6261), - [anon_sym_BSLASHnocite] = ACTIONS(6261), - [anon_sym_BSLASHcitet] = ACTIONS(6261), - [anon_sym_BSLASHcitep] = ACTIONS(6261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteauthor] = ACTIONS(6261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitetitle] = ACTIONS(6261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteyear] = ACTIONS(6261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitedate] = ACTIONS(6261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteurl] = ACTIONS(6261), - [anon_sym_BSLASHfullcite] = ACTIONS(6261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6261), - [anon_sym_BSLASHcitealt] = ACTIONS(6261), - [anon_sym_BSLASHcitealp] = ACTIONS(6261), - [anon_sym_BSLASHcitetext] = ACTIONS(6261), - [anon_sym_BSLASHparencite] = ACTIONS(6261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHParencite] = ACTIONS(6261), - [anon_sym_BSLASHfootcite] = ACTIONS(6261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6261), - [anon_sym_BSLASHtextcite] = ACTIONS(6261), - [anon_sym_BSLASHTextcite] = ACTIONS(6261), - [anon_sym_BSLASHsmartcite] = ACTIONS(6261), - [anon_sym_BSLASHSmartcite] = ACTIONS(6261), - [anon_sym_BSLASHsupercite] = ACTIONS(6261), - [anon_sym_BSLASHautocite] = ACTIONS(6261), - [anon_sym_BSLASHAutocite] = ACTIONS(6261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHvolcite] = ACTIONS(6261), - [anon_sym_BSLASHVolcite] = ACTIONS(6261), - [anon_sym_BSLASHpvolcite] = ACTIONS(6261), - [anon_sym_BSLASHPvolcite] = ACTIONS(6261), - [anon_sym_BSLASHfvolcite] = ACTIONS(6261), - [anon_sym_BSLASHftvolcite] = ACTIONS(6261), - [anon_sym_BSLASHsvolcite] = ACTIONS(6261), - [anon_sym_BSLASHSvolcite] = ACTIONS(6261), - [anon_sym_BSLASHtvolcite] = ACTIONS(6261), - [anon_sym_BSLASHTvolcite] = ACTIONS(6261), - [anon_sym_BSLASHavolcite] = ACTIONS(6261), - [anon_sym_BSLASHAvolcite] = ACTIONS(6261), - [anon_sym_BSLASHnotecite] = ACTIONS(6261), - [anon_sym_BSLASHNotecite] = ACTIONS(6261), - [anon_sym_BSLASHpnotecite] = ACTIONS(6261), - [anon_sym_BSLASHPnotecite] = ACTIONS(6261), - [anon_sym_BSLASHfnotecite] = ACTIONS(6261), - [anon_sym_BSLASHlabel] = ACTIONS(6261), - [anon_sym_BSLASHref] = ACTIONS(6261), - [anon_sym_BSLASHeqref] = ACTIONS(6261), - [anon_sym_BSLASHvref] = ACTIONS(6261), - [anon_sym_BSLASHVref] = ACTIONS(6261), - [anon_sym_BSLASHautoref] = ACTIONS(6261), - [anon_sym_BSLASHpageref] = ACTIONS(6261), - [anon_sym_BSLASHcref] = ACTIONS(6261), - [anon_sym_BSLASHCref] = ACTIONS(6261), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6263), - [anon_sym_BSLASHnamecref] = ACTIONS(6261), - [anon_sym_BSLASHnameCref] = ACTIONS(6261), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6261), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6261), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6261), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6261), - [anon_sym_BSLASHlabelcref] = ACTIONS(6261), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6261), - [anon_sym_BSLASHcrefrange] = ACTIONS(6261), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCrefrange] = ACTIONS(6261), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6263), - [anon_sym_BSLASHnewlabel] = ACTIONS(6261), - [anon_sym_BSLASHnewcommand] = ACTIONS(6261), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6261), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6261), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6263), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHdef] = ACTIONS(6261), - [anon_sym_BSLASHlet] = ACTIONS(6261), - [anon_sym_BSLASHleft] = ACTIONS(6261), - [anon_sym_BSLASHbig] = ACTIONS(6261), - [anon_sym_BSLASHBig] = ACTIONS(6261), - [anon_sym_BSLASHbigg] = ACTIONS(6261), - [anon_sym_BSLASHBigg] = ACTIONS(6261), - [anon_sym_BSLASHbigl] = ACTIONS(6261), - [anon_sym_BSLASHBigl] = ACTIONS(6261), - [anon_sym_BSLASHbiggl] = ACTIONS(6261), - [anon_sym_BSLASHBiggl] = ACTIONS(6261), - [anon_sym_BSLASHright] = ACTIONS(6261), - [anon_sym_BSLASHbigr] = ACTIONS(6261), - [anon_sym_BSLASHBigr] = ACTIONS(6261), - [anon_sym_BSLASHbiggr] = ACTIONS(6261), - [anon_sym_BSLASHBiggr] = ACTIONS(6261), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6261), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6261), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6261), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6261), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6261), - [anon_sym_BSLASHgls] = ACTIONS(6261), - [anon_sym_BSLASHGls] = ACTIONS(6261), - [anon_sym_BSLASHGLS] = ACTIONS(6261), - [anon_sym_BSLASHglspl] = ACTIONS(6261), - [anon_sym_BSLASHGlspl] = ACTIONS(6261), - [anon_sym_BSLASHGLSpl] = ACTIONS(6261), - [anon_sym_BSLASHglsdisp] = ACTIONS(6261), - [anon_sym_BSLASHglslink] = ACTIONS(6261), - [anon_sym_BSLASHglstext] = ACTIONS(6261), - [anon_sym_BSLASHGlstext] = ACTIONS(6261), - [anon_sym_BSLASHGLStext] = ACTIONS(6261), - [anon_sym_BSLASHglsfirst] = ACTIONS(6261), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6261), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6261), - [anon_sym_BSLASHglsplural] = ACTIONS(6261), - [anon_sym_BSLASHGlsplural] = ACTIONS(6261), - [anon_sym_BSLASHGLSplural] = ACTIONS(6261), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHglsname] = ACTIONS(6261), - [anon_sym_BSLASHGlsname] = ACTIONS(6261), - [anon_sym_BSLASHGLSname] = ACTIONS(6261), - [anon_sym_BSLASHglssymbol] = ACTIONS(6261), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6261), - [anon_sym_BSLASHglsdesc] = ACTIONS(6261), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6261), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6261), - [anon_sym_BSLASHglsuseri] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6261), - [anon_sym_BSLASHglsuserii] = ACTIONS(6261), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6261), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6261), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6261), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6261), - [anon_sym_BSLASHglsuserv] = ACTIONS(6261), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6261), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6261), - [anon_sym_BSLASHglsuservi] = ACTIONS(6261), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6261), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6261), - [anon_sym_BSLASHnewacronym] = ACTIONS(6261), - [anon_sym_BSLASHacrshort] = ACTIONS(6261), - [anon_sym_BSLASHAcrshort] = ACTIONS(6261), - [anon_sym_BSLASHACRshort] = ACTIONS(6261), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6261), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6261), - [anon_sym_BSLASHacrlong] = ACTIONS(6261), - [anon_sym_BSLASHAcrlong] = ACTIONS(6261), - [anon_sym_BSLASHACRlong] = ACTIONS(6261), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6261), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6261), - [anon_sym_BSLASHacrfull] = ACTIONS(6261), - [anon_sym_BSLASHAcrfull] = ACTIONS(6261), - [anon_sym_BSLASHACRfull] = ACTIONS(6261), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6261), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6261), - [anon_sym_BSLASHacs] = ACTIONS(6261), - [anon_sym_BSLASHAcs] = ACTIONS(6261), - [anon_sym_BSLASHacsp] = ACTIONS(6261), - [anon_sym_BSLASHAcsp] = ACTIONS(6261), - [anon_sym_BSLASHacl] = ACTIONS(6261), - [anon_sym_BSLASHAcl] = ACTIONS(6261), - [anon_sym_BSLASHaclp] = ACTIONS(6261), - [anon_sym_BSLASHAclp] = ACTIONS(6261), - [anon_sym_BSLASHacf] = ACTIONS(6261), - [anon_sym_BSLASHAcf] = ACTIONS(6261), - [anon_sym_BSLASHacfp] = ACTIONS(6261), - [anon_sym_BSLASHAcfp] = ACTIONS(6261), - [anon_sym_BSLASHac] = ACTIONS(6261), - [anon_sym_BSLASHAc] = ACTIONS(6261), - [anon_sym_BSLASHacp] = ACTIONS(6261), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6261), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6261), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6261), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6261), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6261), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6261), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6261), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6261), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6261), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6261), - [anon_sym_BSLASHcolor] = ACTIONS(6261), - [anon_sym_BSLASHcolorbox] = ACTIONS(6261), - [anon_sym_BSLASHtextcolor] = ACTIONS(6261), - [anon_sym_BSLASHpagecolor] = ACTIONS(6261), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6261), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6261), - [anon_sym_BSLASHtext] = ACTIONS(6261), - [anon_sym_BSLASHintertext] = ACTIONS(6261), - [anon_sym_shortintertext] = ACTIONS(6261), - }, - [546] = { - [sym_command_name] = ACTIONS(6265), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6265), - [anon_sym_LBRACK] = ACTIONS(6267), - [anon_sym_RBRACK] = ACTIONS(6267), - [anon_sym_COMMA] = ACTIONS(6267), - [anon_sym_EQ] = ACTIONS(6267), - [anon_sym_LPAREN] = ACTIONS(6267), - [anon_sym_RPAREN] = ACTIONS(6267), - [anon_sym_BSLASHpart] = ACTIONS(6265), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddpart] = ACTIONS(6265), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6267), - [anon_sym_BSLASHchapter] = ACTIONS(6265), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddchap] = ACTIONS(6265), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsection] = ACTIONS(6265), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddsec] = ACTIONS(6265), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubsection] = ACTIONS(6265), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6265), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHparagraph] = ACTIONS(6265), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6265), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6267), - [anon_sym_BSLASHitem] = ACTIONS(6265), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6267), - [anon_sym_LBRACE] = ACTIONS(6267), - [sym_word] = ACTIONS(6265), - [sym_placeholder] = ACTIONS(6267), - [anon_sym_PLUS] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(6267), - [anon_sym_STAR] = ACTIONS(6267), - [anon_sym_SLASH] = ACTIONS(6267), - [anon_sym_LT] = ACTIONS(6265), - [anon_sym_GT] = ACTIONS(6265), - [anon_sym_BANG] = ACTIONS(6265), - [anon_sym_PIPE] = ACTIONS(6265), - [anon_sym_COLON] = ACTIONS(6265), - [anon_sym_SQUOTE] = ACTIONS(6265), - [anon_sym__] = ACTIONS(6267), - [anon_sym_CARET] = ACTIONS(6267), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6267), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6267), - [anon_sym_DOLLAR] = ACTIONS(6265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6267), - [anon_sym_BSLASHbegin] = ACTIONS(6265), - [anon_sym_BSLASHtitle] = ACTIONS(6265), - [anon_sym_BSLASHauthor] = ACTIONS(6265), - [anon_sym_BSLASHusepackage] = ACTIONS(6265), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6265), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6265), - [anon_sym_BSLASHinclude] = ACTIONS(6265), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6265), - [anon_sym_BSLASHinput] = ACTIONS(6265), - [anon_sym_BSLASHsubfile] = ACTIONS(6265), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6265), - [anon_sym_BSLASHbibliography] = ACTIONS(6265), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6265), - [anon_sym_BSLASHincludesvg] = ACTIONS(6265), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6265), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6265), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6265), - [anon_sym_BSLASHimport] = ACTIONS(6265), - [anon_sym_BSLASHsubimport] = ACTIONS(6265), - [anon_sym_BSLASHinputfrom] = ACTIONS(6265), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6265), - [anon_sym_BSLASHincludefrom] = ACTIONS(6265), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6265), - [anon_sym_BSLASHcaption] = ACTIONS(6265), - [anon_sym_BSLASHcite] = ACTIONS(6265), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCite] = ACTIONS(6265), - [anon_sym_BSLASHnocite] = ACTIONS(6265), - [anon_sym_BSLASHcitet] = ACTIONS(6265), - [anon_sym_BSLASHcitep] = ACTIONS(6265), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteauthor] = ACTIONS(6265), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6265), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitetitle] = ACTIONS(6265), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteyear] = ACTIONS(6265), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitedate] = ACTIONS(6265), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteurl] = ACTIONS(6265), - [anon_sym_BSLASHfullcite] = ACTIONS(6265), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6265), - [anon_sym_BSLASHcitealt] = ACTIONS(6265), - [anon_sym_BSLASHcitealp] = ACTIONS(6265), - [anon_sym_BSLASHcitetext] = ACTIONS(6265), - [anon_sym_BSLASHparencite] = ACTIONS(6265), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHParencite] = ACTIONS(6265), - [anon_sym_BSLASHfootcite] = ACTIONS(6265), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6265), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6265), - [anon_sym_BSLASHtextcite] = ACTIONS(6265), - [anon_sym_BSLASHTextcite] = ACTIONS(6265), - [anon_sym_BSLASHsmartcite] = ACTIONS(6265), - [anon_sym_BSLASHSmartcite] = ACTIONS(6265), - [anon_sym_BSLASHsupercite] = ACTIONS(6265), - [anon_sym_BSLASHautocite] = ACTIONS(6265), - [anon_sym_BSLASHAutocite] = ACTIONS(6265), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHvolcite] = ACTIONS(6265), - [anon_sym_BSLASHVolcite] = ACTIONS(6265), - [anon_sym_BSLASHpvolcite] = ACTIONS(6265), - [anon_sym_BSLASHPvolcite] = ACTIONS(6265), - [anon_sym_BSLASHfvolcite] = ACTIONS(6265), - [anon_sym_BSLASHftvolcite] = ACTIONS(6265), - [anon_sym_BSLASHsvolcite] = ACTIONS(6265), - [anon_sym_BSLASHSvolcite] = ACTIONS(6265), - [anon_sym_BSLASHtvolcite] = ACTIONS(6265), - [anon_sym_BSLASHTvolcite] = ACTIONS(6265), - [anon_sym_BSLASHavolcite] = ACTIONS(6265), - [anon_sym_BSLASHAvolcite] = ACTIONS(6265), - [anon_sym_BSLASHnotecite] = ACTIONS(6265), - [anon_sym_BSLASHNotecite] = ACTIONS(6265), - [anon_sym_BSLASHpnotecite] = ACTIONS(6265), - [anon_sym_BSLASHPnotecite] = ACTIONS(6265), - [anon_sym_BSLASHfnotecite] = ACTIONS(6265), - [anon_sym_BSLASHlabel] = ACTIONS(6265), - [anon_sym_BSLASHref] = ACTIONS(6265), - [anon_sym_BSLASHeqref] = ACTIONS(6265), - [anon_sym_BSLASHvref] = ACTIONS(6265), - [anon_sym_BSLASHVref] = ACTIONS(6265), - [anon_sym_BSLASHautoref] = ACTIONS(6265), - [anon_sym_BSLASHpageref] = ACTIONS(6265), - [anon_sym_BSLASHcref] = ACTIONS(6265), - [anon_sym_BSLASHCref] = ACTIONS(6265), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6267), - [anon_sym_BSLASHnamecref] = ACTIONS(6265), - [anon_sym_BSLASHnameCref] = ACTIONS(6265), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6265), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6265), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6265), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6265), - [anon_sym_BSLASHlabelcref] = ACTIONS(6265), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6265), - [anon_sym_BSLASHcrefrange] = ACTIONS(6265), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCrefrange] = ACTIONS(6265), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6267), - [anon_sym_BSLASHnewlabel] = ACTIONS(6265), - [anon_sym_BSLASHnewcommand] = ACTIONS(6265), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6265), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6265), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6267), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHdef] = ACTIONS(6265), - [anon_sym_BSLASHlet] = ACTIONS(6265), - [anon_sym_BSLASHleft] = ACTIONS(6265), - [anon_sym_BSLASHbig] = ACTIONS(6265), - [anon_sym_BSLASHBig] = ACTIONS(6265), - [anon_sym_BSLASHbigg] = ACTIONS(6265), - [anon_sym_BSLASHBigg] = ACTIONS(6265), - [anon_sym_BSLASHbigl] = ACTIONS(6265), - [anon_sym_BSLASHBigl] = ACTIONS(6265), - [anon_sym_BSLASHbiggl] = ACTIONS(6265), - [anon_sym_BSLASHBiggl] = ACTIONS(6265), - [anon_sym_BSLASHright] = ACTIONS(6265), - [anon_sym_BSLASHbigr] = ACTIONS(6265), - [anon_sym_BSLASHBigr] = ACTIONS(6265), - [anon_sym_BSLASHbiggr] = ACTIONS(6265), - [anon_sym_BSLASHBiggr] = ACTIONS(6265), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6265), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6265), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6265), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6265), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6265), - [anon_sym_BSLASHgls] = ACTIONS(6265), - [anon_sym_BSLASHGls] = ACTIONS(6265), - [anon_sym_BSLASHGLS] = ACTIONS(6265), - [anon_sym_BSLASHglspl] = ACTIONS(6265), - [anon_sym_BSLASHGlspl] = ACTIONS(6265), - [anon_sym_BSLASHGLSpl] = ACTIONS(6265), - [anon_sym_BSLASHglsdisp] = ACTIONS(6265), - [anon_sym_BSLASHglslink] = ACTIONS(6265), - [anon_sym_BSLASHglstext] = ACTIONS(6265), - [anon_sym_BSLASHGlstext] = ACTIONS(6265), - [anon_sym_BSLASHGLStext] = ACTIONS(6265), - [anon_sym_BSLASHglsfirst] = ACTIONS(6265), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6265), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6265), - [anon_sym_BSLASHglsplural] = ACTIONS(6265), - [anon_sym_BSLASHGlsplural] = ACTIONS(6265), - [anon_sym_BSLASHGLSplural] = ACTIONS(6265), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHglsname] = ACTIONS(6265), - [anon_sym_BSLASHGlsname] = ACTIONS(6265), - [anon_sym_BSLASHGLSname] = ACTIONS(6265), - [anon_sym_BSLASHglssymbol] = ACTIONS(6265), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6265), - [anon_sym_BSLASHglsdesc] = ACTIONS(6265), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6265), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6265), - [anon_sym_BSLASHglsuseri] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6265), - [anon_sym_BSLASHglsuserii] = ACTIONS(6265), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6265), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6265), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6265), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6265), - [anon_sym_BSLASHglsuserv] = ACTIONS(6265), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6265), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6265), - [anon_sym_BSLASHglsuservi] = ACTIONS(6265), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6265), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6265), - [anon_sym_BSLASHnewacronym] = ACTIONS(6265), - [anon_sym_BSLASHacrshort] = ACTIONS(6265), - [anon_sym_BSLASHAcrshort] = ACTIONS(6265), - [anon_sym_BSLASHACRshort] = ACTIONS(6265), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6265), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6265), - [anon_sym_BSLASHacrlong] = ACTIONS(6265), - [anon_sym_BSLASHAcrlong] = ACTIONS(6265), - [anon_sym_BSLASHACRlong] = ACTIONS(6265), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6265), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6265), - [anon_sym_BSLASHacrfull] = ACTIONS(6265), - [anon_sym_BSLASHAcrfull] = ACTIONS(6265), - [anon_sym_BSLASHACRfull] = ACTIONS(6265), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6265), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6265), - [anon_sym_BSLASHacs] = ACTIONS(6265), - [anon_sym_BSLASHAcs] = ACTIONS(6265), - [anon_sym_BSLASHacsp] = ACTIONS(6265), - [anon_sym_BSLASHAcsp] = ACTIONS(6265), - [anon_sym_BSLASHacl] = ACTIONS(6265), - [anon_sym_BSLASHAcl] = ACTIONS(6265), - [anon_sym_BSLASHaclp] = ACTIONS(6265), - [anon_sym_BSLASHAclp] = ACTIONS(6265), - [anon_sym_BSLASHacf] = ACTIONS(6265), - [anon_sym_BSLASHAcf] = ACTIONS(6265), - [anon_sym_BSLASHacfp] = ACTIONS(6265), - [anon_sym_BSLASHAcfp] = ACTIONS(6265), - [anon_sym_BSLASHac] = ACTIONS(6265), - [anon_sym_BSLASHAc] = ACTIONS(6265), - [anon_sym_BSLASHacp] = ACTIONS(6265), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6265), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6265), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6265), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6265), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6265), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6265), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6265), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6265), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6265), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6265), - [anon_sym_BSLASHcolor] = ACTIONS(6265), - [anon_sym_BSLASHcolorbox] = ACTIONS(6265), - [anon_sym_BSLASHtextcolor] = ACTIONS(6265), - [anon_sym_BSLASHpagecolor] = ACTIONS(6265), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6265), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6265), - [anon_sym_BSLASHtext] = ACTIONS(6265), - [anon_sym_BSLASHintertext] = ACTIONS(6265), - [anon_sym_shortintertext] = ACTIONS(6265), - }, - [547] = { - [sym_command_name] = ACTIONS(6269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6269), - [anon_sym_LBRACK] = ACTIONS(6271), - [anon_sym_RBRACK] = ACTIONS(6271), - [anon_sym_COMMA] = ACTIONS(6271), - [anon_sym_EQ] = ACTIONS(6271), - [anon_sym_LPAREN] = ACTIONS(6271), - [anon_sym_RPAREN] = ACTIONS(6271), - [anon_sym_BSLASHpart] = ACTIONS(6269), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddpart] = ACTIONS(6269), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6271), - [anon_sym_BSLASHchapter] = ACTIONS(6269), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddchap] = ACTIONS(6269), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsection] = ACTIONS(6269), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddsec] = ACTIONS(6269), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubsection] = ACTIONS(6269), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6269), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHparagraph] = ACTIONS(6269), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6269), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6271), - [anon_sym_BSLASHitem] = ACTIONS(6269), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6271), - [anon_sym_LBRACE] = ACTIONS(6271), - [sym_word] = ACTIONS(6269), - [sym_placeholder] = ACTIONS(6271), - [anon_sym_PLUS] = ACTIONS(6271), - [anon_sym_DASH] = ACTIONS(6271), - [anon_sym_STAR] = ACTIONS(6271), - [anon_sym_SLASH] = ACTIONS(6271), - [anon_sym_LT] = ACTIONS(6269), - [anon_sym_GT] = ACTIONS(6269), - [anon_sym_BANG] = ACTIONS(6269), - [anon_sym_PIPE] = ACTIONS(6269), - [anon_sym_COLON] = ACTIONS(6269), - [anon_sym_SQUOTE] = ACTIONS(6269), - [anon_sym__] = ACTIONS(6271), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6271), - [anon_sym_DOLLAR] = ACTIONS(6269), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6271), - [anon_sym_BSLASHbegin] = ACTIONS(6269), - [anon_sym_BSLASHtitle] = ACTIONS(6269), - [anon_sym_BSLASHauthor] = ACTIONS(6269), - [anon_sym_BSLASHusepackage] = ACTIONS(6269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6269), - [anon_sym_BSLASHinclude] = ACTIONS(6269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6269), - [anon_sym_BSLASHinput] = ACTIONS(6269), - [anon_sym_BSLASHsubfile] = ACTIONS(6269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6269), - [anon_sym_BSLASHbibliography] = ACTIONS(6269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6269), - [anon_sym_BSLASHincludesvg] = ACTIONS(6269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6269), - [anon_sym_BSLASHimport] = ACTIONS(6269), - [anon_sym_BSLASHsubimport] = ACTIONS(6269), - [anon_sym_BSLASHinputfrom] = ACTIONS(6269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6269), - [anon_sym_BSLASHincludefrom] = ACTIONS(6269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6269), - [anon_sym_BSLASHcaption] = ACTIONS(6269), - [anon_sym_BSLASHcite] = ACTIONS(6269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCite] = ACTIONS(6269), - [anon_sym_BSLASHnocite] = ACTIONS(6269), - [anon_sym_BSLASHcitet] = ACTIONS(6269), - [anon_sym_BSLASHcitep] = ACTIONS(6269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteauthor] = ACTIONS(6269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitetitle] = ACTIONS(6269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteyear] = ACTIONS(6269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitedate] = ACTIONS(6269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteurl] = ACTIONS(6269), - [anon_sym_BSLASHfullcite] = ACTIONS(6269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6269), - [anon_sym_BSLASHcitealt] = ACTIONS(6269), - [anon_sym_BSLASHcitealp] = ACTIONS(6269), - [anon_sym_BSLASHcitetext] = ACTIONS(6269), - [anon_sym_BSLASHparencite] = ACTIONS(6269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHParencite] = ACTIONS(6269), - [anon_sym_BSLASHfootcite] = ACTIONS(6269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6269), - [anon_sym_BSLASHtextcite] = ACTIONS(6269), - [anon_sym_BSLASHTextcite] = ACTIONS(6269), - [anon_sym_BSLASHsmartcite] = ACTIONS(6269), - [anon_sym_BSLASHSmartcite] = ACTIONS(6269), - [anon_sym_BSLASHsupercite] = ACTIONS(6269), - [anon_sym_BSLASHautocite] = ACTIONS(6269), - [anon_sym_BSLASHAutocite] = ACTIONS(6269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHvolcite] = ACTIONS(6269), - [anon_sym_BSLASHVolcite] = ACTIONS(6269), - [anon_sym_BSLASHpvolcite] = ACTIONS(6269), - [anon_sym_BSLASHPvolcite] = ACTIONS(6269), - [anon_sym_BSLASHfvolcite] = ACTIONS(6269), - [anon_sym_BSLASHftvolcite] = ACTIONS(6269), - [anon_sym_BSLASHsvolcite] = ACTIONS(6269), - [anon_sym_BSLASHSvolcite] = ACTIONS(6269), - [anon_sym_BSLASHtvolcite] = ACTIONS(6269), - [anon_sym_BSLASHTvolcite] = ACTIONS(6269), - [anon_sym_BSLASHavolcite] = ACTIONS(6269), - [anon_sym_BSLASHAvolcite] = ACTIONS(6269), - [anon_sym_BSLASHnotecite] = ACTIONS(6269), - [anon_sym_BSLASHNotecite] = ACTIONS(6269), - [anon_sym_BSLASHpnotecite] = ACTIONS(6269), - [anon_sym_BSLASHPnotecite] = ACTIONS(6269), - [anon_sym_BSLASHfnotecite] = ACTIONS(6269), - [anon_sym_BSLASHlabel] = ACTIONS(6269), - [anon_sym_BSLASHref] = ACTIONS(6269), - [anon_sym_BSLASHeqref] = ACTIONS(6269), - [anon_sym_BSLASHvref] = ACTIONS(6269), - [anon_sym_BSLASHVref] = ACTIONS(6269), - [anon_sym_BSLASHautoref] = ACTIONS(6269), - [anon_sym_BSLASHpageref] = ACTIONS(6269), - [anon_sym_BSLASHcref] = ACTIONS(6269), - [anon_sym_BSLASHCref] = ACTIONS(6269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6271), - [anon_sym_BSLASHnamecref] = ACTIONS(6269), - [anon_sym_BSLASHnameCref] = ACTIONS(6269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6269), - [anon_sym_BSLASHlabelcref] = ACTIONS(6269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6269), - [anon_sym_BSLASHcrefrange] = ACTIONS(6269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCrefrange] = ACTIONS(6269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6271), - [anon_sym_BSLASHnewlabel] = ACTIONS(6269), - [anon_sym_BSLASHnewcommand] = ACTIONS(6269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6271), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHdef] = ACTIONS(6269), - [anon_sym_BSLASHlet] = ACTIONS(6269), - [anon_sym_BSLASHleft] = ACTIONS(6269), - [anon_sym_BSLASHbig] = ACTIONS(6269), - [anon_sym_BSLASHBig] = ACTIONS(6269), - [anon_sym_BSLASHbigg] = ACTIONS(6269), - [anon_sym_BSLASHBigg] = ACTIONS(6269), - [anon_sym_BSLASHbigl] = ACTIONS(6269), - [anon_sym_BSLASHBigl] = ACTIONS(6269), - [anon_sym_BSLASHbiggl] = ACTIONS(6269), - [anon_sym_BSLASHBiggl] = ACTIONS(6269), - [anon_sym_BSLASHright] = ACTIONS(6269), - [anon_sym_BSLASHbigr] = ACTIONS(6269), - [anon_sym_BSLASHBigr] = ACTIONS(6269), - [anon_sym_BSLASHbiggr] = ACTIONS(6269), - [anon_sym_BSLASHBiggr] = ACTIONS(6269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6269), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6269), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6269), - [anon_sym_BSLASHgls] = ACTIONS(6269), - [anon_sym_BSLASHGls] = ACTIONS(6269), - [anon_sym_BSLASHGLS] = ACTIONS(6269), - [anon_sym_BSLASHglspl] = ACTIONS(6269), - [anon_sym_BSLASHGlspl] = ACTIONS(6269), - [anon_sym_BSLASHGLSpl] = ACTIONS(6269), - [anon_sym_BSLASHglsdisp] = ACTIONS(6269), - [anon_sym_BSLASHglslink] = ACTIONS(6269), - [anon_sym_BSLASHglstext] = ACTIONS(6269), - [anon_sym_BSLASHGlstext] = ACTIONS(6269), - [anon_sym_BSLASHGLStext] = ACTIONS(6269), - [anon_sym_BSLASHglsfirst] = ACTIONS(6269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6269), - [anon_sym_BSLASHglsplural] = ACTIONS(6269), - [anon_sym_BSLASHGlsplural] = ACTIONS(6269), - [anon_sym_BSLASHGLSplural] = ACTIONS(6269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHglsname] = ACTIONS(6269), - [anon_sym_BSLASHGlsname] = ACTIONS(6269), - [anon_sym_BSLASHGLSname] = ACTIONS(6269), - [anon_sym_BSLASHglssymbol] = ACTIONS(6269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6269), - [anon_sym_BSLASHglsdesc] = ACTIONS(6269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6269), - [anon_sym_BSLASHglsuseri] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6269), - [anon_sym_BSLASHglsuserii] = ACTIONS(6269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6269), - [anon_sym_BSLASHglsuserv] = ACTIONS(6269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6269), - [anon_sym_BSLASHglsuservi] = ACTIONS(6269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6269), - [anon_sym_BSLASHnewacronym] = ACTIONS(6269), - [anon_sym_BSLASHacrshort] = ACTIONS(6269), - [anon_sym_BSLASHAcrshort] = ACTIONS(6269), - [anon_sym_BSLASHACRshort] = ACTIONS(6269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6269), - [anon_sym_BSLASHacrlong] = ACTIONS(6269), - [anon_sym_BSLASHAcrlong] = ACTIONS(6269), - [anon_sym_BSLASHACRlong] = ACTIONS(6269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6269), - [anon_sym_BSLASHacrfull] = ACTIONS(6269), - [anon_sym_BSLASHAcrfull] = ACTIONS(6269), - [anon_sym_BSLASHACRfull] = ACTIONS(6269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6269), - [anon_sym_BSLASHacs] = ACTIONS(6269), - [anon_sym_BSLASHAcs] = ACTIONS(6269), - [anon_sym_BSLASHacsp] = ACTIONS(6269), - [anon_sym_BSLASHAcsp] = ACTIONS(6269), - [anon_sym_BSLASHacl] = ACTIONS(6269), - [anon_sym_BSLASHAcl] = ACTIONS(6269), - [anon_sym_BSLASHaclp] = ACTIONS(6269), - [anon_sym_BSLASHAclp] = ACTIONS(6269), - [anon_sym_BSLASHacf] = ACTIONS(6269), - [anon_sym_BSLASHAcf] = ACTIONS(6269), - [anon_sym_BSLASHacfp] = ACTIONS(6269), - [anon_sym_BSLASHAcfp] = ACTIONS(6269), - [anon_sym_BSLASHac] = ACTIONS(6269), - [anon_sym_BSLASHAc] = ACTIONS(6269), - [anon_sym_BSLASHacp] = ACTIONS(6269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6269), - [anon_sym_BSLASHcolor] = ACTIONS(6269), - [anon_sym_BSLASHcolorbox] = ACTIONS(6269), - [anon_sym_BSLASHtextcolor] = ACTIONS(6269), - [anon_sym_BSLASHpagecolor] = ACTIONS(6269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6269), - [anon_sym_BSLASHtext] = ACTIONS(6269), - [anon_sym_BSLASHintertext] = ACTIONS(6269), - [anon_sym_shortintertext] = ACTIONS(6269), - }, - [548] = { - [sym_command_name] = ACTIONS(6273), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6273), - [anon_sym_LBRACK] = ACTIONS(6275), - [anon_sym_RBRACK] = ACTIONS(6275), - [anon_sym_COMMA] = ACTIONS(6275), - [anon_sym_EQ] = ACTIONS(6275), - [anon_sym_LPAREN] = ACTIONS(6275), - [anon_sym_RPAREN] = ACTIONS(6275), - [anon_sym_BSLASHpart] = ACTIONS(6273), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddpart] = ACTIONS(6273), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6275), - [anon_sym_BSLASHchapter] = ACTIONS(6273), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddchap] = ACTIONS(6273), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsection] = ACTIONS(6273), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddsec] = ACTIONS(6273), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubsection] = ACTIONS(6273), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6273), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHparagraph] = ACTIONS(6273), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6273), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6275), - [anon_sym_BSLASHitem] = ACTIONS(6273), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6275), - [anon_sym_LBRACE] = ACTIONS(6275), - [sym_word] = ACTIONS(6273), - [sym_placeholder] = ACTIONS(6275), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_SQUOTE] = ACTIONS(6273), - [anon_sym__] = ACTIONS(6275), - [anon_sym_CARET] = ACTIONS(6275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6275), - [anon_sym_DOLLAR] = ACTIONS(6273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6275), - [anon_sym_BSLASHbegin] = ACTIONS(6273), - [anon_sym_BSLASHtitle] = ACTIONS(6273), - [anon_sym_BSLASHauthor] = ACTIONS(6273), - [anon_sym_BSLASHusepackage] = ACTIONS(6273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6273), - [anon_sym_BSLASHinclude] = ACTIONS(6273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6273), - [anon_sym_BSLASHinput] = ACTIONS(6273), - [anon_sym_BSLASHsubfile] = ACTIONS(6273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6273), - [anon_sym_BSLASHbibliography] = ACTIONS(6273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6273), - [anon_sym_BSLASHincludesvg] = ACTIONS(6273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6273), - [anon_sym_BSLASHimport] = ACTIONS(6273), - [anon_sym_BSLASHsubimport] = ACTIONS(6273), - [anon_sym_BSLASHinputfrom] = ACTIONS(6273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6273), - [anon_sym_BSLASHincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHcaption] = ACTIONS(6273), - [anon_sym_BSLASHcite] = ACTIONS(6273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCite] = ACTIONS(6273), - [anon_sym_BSLASHnocite] = ACTIONS(6273), - [anon_sym_BSLASHcitet] = ACTIONS(6273), - [anon_sym_BSLASHcitep] = ACTIONS(6273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteauthor] = ACTIONS(6273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitetitle] = ACTIONS(6273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteyear] = ACTIONS(6273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitedate] = ACTIONS(6273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteurl] = ACTIONS(6273), - [anon_sym_BSLASHfullcite] = ACTIONS(6273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6273), - [anon_sym_BSLASHcitealt] = ACTIONS(6273), - [anon_sym_BSLASHcitealp] = ACTIONS(6273), - [anon_sym_BSLASHcitetext] = ACTIONS(6273), - [anon_sym_BSLASHparencite] = ACTIONS(6273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHParencite] = ACTIONS(6273), - [anon_sym_BSLASHfootcite] = ACTIONS(6273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6273), - [anon_sym_BSLASHtextcite] = ACTIONS(6273), - [anon_sym_BSLASHTextcite] = ACTIONS(6273), - [anon_sym_BSLASHsmartcite] = ACTIONS(6273), - [anon_sym_BSLASHSmartcite] = ACTIONS(6273), - [anon_sym_BSLASHsupercite] = ACTIONS(6273), - [anon_sym_BSLASHautocite] = ACTIONS(6273), - [anon_sym_BSLASHAutocite] = ACTIONS(6273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHvolcite] = ACTIONS(6273), - [anon_sym_BSLASHVolcite] = ACTIONS(6273), - [anon_sym_BSLASHpvolcite] = ACTIONS(6273), - [anon_sym_BSLASHPvolcite] = ACTIONS(6273), - [anon_sym_BSLASHfvolcite] = ACTIONS(6273), - [anon_sym_BSLASHftvolcite] = ACTIONS(6273), - [anon_sym_BSLASHsvolcite] = ACTIONS(6273), - [anon_sym_BSLASHSvolcite] = ACTIONS(6273), - [anon_sym_BSLASHtvolcite] = ACTIONS(6273), - [anon_sym_BSLASHTvolcite] = ACTIONS(6273), - [anon_sym_BSLASHavolcite] = ACTIONS(6273), - [anon_sym_BSLASHAvolcite] = ACTIONS(6273), - [anon_sym_BSLASHnotecite] = ACTIONS(6273), - [anon_sym_BSLASHNotecite] = ACTIONS(6273), - [anon_sym_BSLASHpnotecite] = ACTIONS(6273), - [anon_sym_BSLASHPnotecite] = ACTIONS(6273), - [anon_sym_BSLASHfnotecite] = ACTIONS(6273), - [anon_sym_BSLASHlabel] = ACTIONS(6273), - [anon_sym_BSLASHref] = ACTIONS(6273), - [anon_sym_BSLASHeqref] = ACTIONS(6273), - [anon_sym_BSLASHvref] = ACTIONS(6273), - [anon_sym_BSLASHVref] = ACTIONS(6273), - [anon_sym_BSLASHautoref] = ACTIONS(6273), - [anon_sym_BSLASHpageref] = ACTIONS(6273), - [anon_sym_BSLASHcref] = ACTIONS(6273), - [anon_sym_BSLASHCref] = ACTIONS(6273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnameCref] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHlabelcref] = ACTIONS(6273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCrefrange] = ACTIONS(6273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnewlabel] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6275), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHdef] = ACTIONS(6273), - [anon_sym_BSLASHlet] = ACTIONS(6273), - [anon_sym_BSLASHleft] = ACTIONS(6273), - [anon_sym_BSLASHbig] = ACTIONS(6273), - [anon_sym_BSLASHBig] = ACTIONS(6273), - [anon_sym_BSLASHbigg] = ACTIONS(6273), - [anon_sym_BSLASHBigg] = ACTIONS(6273), - [anon_sym_BSLASHbigl] = ACTIONS(6273), - [anon_sym_BSLASHBigl] = ACTIONS(6273), - [anon_sym_BSLASHbiggl] = ACTIONS(6273), - [anon_sym_BSLASHBiggl] = ACTIONS(6273), - [anon_sym_BSLASHright] = ACTIONS(6273), - [anon_sym_BSLASHbigr] = ACTIONS(6273), - [anon_sym_BSLASHBigr] = ACTIONS(6273), - [anon_sym_BSLASHbiggr] = ACTIONS(6273), - [anon_sym_BSLASHBiggr] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6273), - [anon_sym_BSLASHgls] = ACTIONS(6273), - [anon_sym_BSLASHGls] = ACTIONS(6273), - [anon_sym_BSLASHGLS] = ACTIONS(6273), - [anon_sym_BSLASHglspl] = ACTIONS(6273), - [anon_sym_BSLASHGlspl] = ACTIONS(6273), - [anon_sym_BSLASHGLSpl] = ACTIONS(6273), - [anon_sym_BSLASHglsdisp] = ACTIONS(6273), - [anon_sym_BSLASHglslink] = ACTIONS(6273), - [anon_sym_BSLASHglstext] = ACTIONS(6273), - [anon_sym_BSLASHGlstext] = ACTIONS(6273), - [anon_sym_BSLASHGLStext] = ACTIONS(6273), - [anon_sym_BSLASHglsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6273), - [anon_sym_BSLASHglsplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSplural] = ACTIONS(6273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHglsname] = ACTIONS(6273), - [anon_sym_BSLASHGlsname] = ACTIONS(6273), - [anon_sym_BSLASHGLSname] = ACTIONS(6273), - [anon_sym_BSLASHglssymbol] = ACTIONS(6273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6273), - [anon_sym_BSLASHglsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6273), - [anon_sym_BSLASHglsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6273), - [anon_sym_BSLASHglsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6273), - [anon_sym_BSLASHglsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6273), - [anon_sym_BSLASHglsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6273), - [anon_sym_BSLASHnewacronym] = ACTIONS(6273), - [anon_sym_BSLASHacrshort] = ACTIONS(6273), - [anon_sym_BSLASHAcrshort] = ACTIONS(6273), - [anon_sym_BSLASHACRshort] = ACTIONS(6273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6273), - [anon_sym_BSLASHacrlong] = ACTIONS(6273), - [anon_sym_BSLASHAcrlong] = ACTIONS(6273), - [anon_sym_BSLASHACRlong] = ACTIONS(6273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6273), - [anon_sym_BSLASHacrfull] = ACTIONS(6273), - [anon_sym_BSLASHAcrfull] = ACTIONS(6273), - [anon_sym_BSLASHACRfull] = ACTIONS(6273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6273), - [anon_sym_BSLASHacs] = ACTIONS(6273), - [anon_sym_BSLASHAcs] = ACTIONS(6273), - [anon_sym_BSLASHacsp] = ACTIONS(6273), - [anon_sym_BSLASHAcsp] = ACTIONS(6273), - [anon_sym_BSLASHacl] = ACTIONS(6273), - [anon_sym_BSLASHAcl] = ACTIONS(6273), - [anon_sym_BSLASHaclp] = ACTIONS(6273), - [anon_sym_BSLASHAclp] = ACTIONS(6273), - [anon_sym_BSLASHacf] = ACTIONS(6273), - [anon_sym_BSLASHAcf] = ACTIONS(6273), - [anon_sym_BSLASHacfp] = ACTIONS(6273), - [anon_sym_BSLASHAcfp] = ACTIONS(6273), - [anon_sym_BSLASHac] = ACTIONS(6273), - [anon_sym_BSLASHAc] = ACTIONS(6273), - [anon_sym_BSLASHacp] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6273), - [anon_sym_BSLASHcolor] = ACTIONS(6273), - [anon_sym_BSLASHcolorbox] = ACTIONS(6273), - [anon_sym_BSLASHtextcolor] = ACTIONS(6273), - [anon_sym_BSLASHpagecolor] = ACTIONS(6273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6273), - [anon_sym_BSLASHtext] = ACTIONS(6273), - [anon_sym_BSLASHintertext] = ACTIONS(6273), - [anon_sym_shortintertext] = ACTIONS(6273), - }, - [549] = { - [sym_command_name] = ACTIONS(6277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6277), - [anon_sym_LBRACK] = ACTIONS(6279), - [anon_sym_RBRACK] = ACTIONS(6279), - [anon_sym_COMMA] = ACTIONS(6279), - [anon_sym_EQ] = ACTIONS(6279), - [anon_sym_LPAREN] = ACTIONS(6279), - [anon_sym_RPAREN] = ACTIONS(6279), - [anon_sym_BSLASHpart] = ACTIONS(6277), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddpart] = ACTIONS(6277), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6279), - [anon_sym_BSLASHchapter] = ACTIONS(6277), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddchap] = ACTIONS(6277), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsection] = ACTIONS(6277), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddsec] = ACTIONS(6277), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubsection] = ACTIONS(6277), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6277), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHparagraph] = ACTIONS(6277), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6277), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6279), - [anon_sym_BSLASHitem] = ACTIONS(6277), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6279), - [anon_sym_LBRACE] = ACTIONS(6279), - [sym_word] = ACTIONS(6277), - [sym_placeholder] = ACTIONS(6279), - [anon_sym_PLUS] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6279), - [anon_sym_STAR] = ACTIONS(6279), - [anon_sym_SLASH] = ACTIONS(6279), - [anon_sym_LT] = ACTIONS(6277), - [anon_sym_GT] = ACTIONS(6277), - [anon_sym_BANG] = ACTIONS(6277), - [anon_sym_PIPE] = ACTIONS(6277), - [anon_sym_COLON] = ACTIONS(6277), - [anon_sym_SQUOTE] = ACTIONS(6277), - [anon_sym__] = ACTIONS(6279), - [anon_sym_CARET] = ACTIONS(6279), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6279), - [anon_sym_DOLLAR] = ACTIONS(6277), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6279), - [anon_sym_BSLASHbegin] = ACTIONS(6277), - [anon_sym_BSLASHtitle] = ACTIONS(6277), - [anon_sym_BSLASHauthor] = ACTIONS(6277), - [anon_sym_BSLASHusepackage] = ACTIONS(6277), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6277), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6277), - [anon_sym_BSLASHinclude] = ACTIONS(6277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6277), - [anon_sym_BSLASHinput] = ACTIONS(6277), - [anon_sym_BSLASHsubfile] = ACTIONS(6277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6277), - [anon_sym_BSLASHbibliography] = ACTIONS(6277), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6277), - [anon_sym_BSLASHincludesvg] = ACTIONS(6277), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6277), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6277), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6277), - [anon_sym_BSLASHimport] = ACTIONS(6277), - [anon_sym_BSLASHsubimport] = ACTIONS(6277), - [anon_sym_BSLASHinputfrom] = ACTIONS(6277), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6277), - [anon_sym_BSLASHincludefrom] = ACTIONS(6277), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6277), - [anon_sym_BSLASHcaption] = ACTIONS(6277), - [anon_sym_BSLASHcite] = ACTIONS(6277), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCite] = ACTIONS(6277), - [anon_sym_BSLASHnocite] = ACTIONS(6277), - [anon_sym_BSLASHcitet] = ACTIONS(6277), - [anon_sym_BSLASHcitep] = ACTIONS(6277), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteauthor] = ACTIONS(6277), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6277), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitetitle] = ACTIONS(6277), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteyear] = ACTIONS(6277), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitedate] = ACTIONS(6277), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteurl] = ACTIONS(6277), - [anon_sym_BSLASHfullcite] = ACTIONS(6277), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6277), - [anon_sym_BSLASHcitealt] = ACTIONS(6277), - [anon_sym_BSLASHcitealp] = ACTIONS(6277), - [anon_sym_BSLASHcitetext] = ACTIONS(6277), - [anon_sym_BSLASHparencite] = ACTIONS(6277), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHParencite] = ACTIONS(6277), - [anon_sym_BSLASHfootcite] = ACTIONS(6277), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6277), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6277), - [anon_sym_BSLASHtextcite] = ACTIONS(6277), - [anon_sym_BSLASHTextcite] = ACTIONS(6277), - [anon_sym_BSLASHsmartcite] = ACTIONS(6277), - [anon_sym_BSLASHSmartcite] = ACTIONS(6277), - [anon_sym_BSLASHsupercite] = ACTIONS(6277), - [anon_sym_BSLASHautocite] = ACTIONS(6277), - [anon_sym_BSLASHAutocite] = ACTIONS(6277), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHvolcite] = ACTIONS(6277), - [anon_sym_BSLASHVolcite] = ACTIONS(6277), - [anon_sym_BSLASHpvolcite] = ACTIONS(6277), - [anon_sym_BSLASHPvolcite] = ACTIONS(6277), - [anon_sym_BSLASHfvolcite] = ACTIONS(6277), - [anon_sym_BSLASHftvolcite] = ACTIONS(6277), - [anon_sym_BSLASHsvolcite] = ACTIONS(6277), - [anon_sym_BSLASHSvolcite] = ACTIONS(6277), - [anon_sym_BSLASHtvolcite] = ACTIONS(6277), - [anon_sym_BSLASHTvolcite] = ACTIONS(6277), - [anon_sym_BSLASHavolcite] = ACTIONS(6277), - [anon_sym_BSLASHAvolcite] = ACTIONS(6277), - [anon_sym_BSLASHnotecite] = ACTIONS(6277), - [anon_sym_BSLASHNotecite] = ACTIONS(6277), - [anon_sym_BSLASHpnotecite] = ACTIONS(6277), - [anon_sym_BSLASHPnotecite] = ACTIONS(6277), - [anon_sym_BSLASHfnotecite] = ACTIONS(6277), - [anon_sym_BSLASHlabel] = ACTIONS(6277), - [anon_sym_BSLASHref] = ACTIONS(6277), - [anon_sym_BSLASHeqref] = ACTIONS(6277), - [anon_sym_BSLASHvref] = ACTIONS(6277), - [anon_sym_BSLASHVref] = ACTIONS(6277), - [anon_sym_BSLASHautoref] = ACTIONS(6277), - [anon_sym_BSLASHpageref] = ACTIONS(6277), - [anon_sym_BSLASHcref] = ACTIONS(6277), - [anon_sym_BSLASHCref] = ACTIONS(6277), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6279), - [anon_sym_BSLASHnamecref] = ACTIONS(6277), - [anon_sym_BSLASHnameCref] = ACTIONS(6277), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6277), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6277), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6277), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6277), - [anon_sym_BSLASHlabelcref] = ACTIONS(6277), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6277), - [anon_sym_BSLASHcrefrange] = ACTIONS(6277), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCrefrange] = ACTIONS(6277), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6279), - [anon_sym_BSLASHnewlabel] = ACTIONS(6277), - [anon_sym_BSLASHnewcommand] = ACTIONS(6277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHdef] = ACTIONS(6277), - [anon_sym_BSLASHlet] = ACTIONS(6277), - [anon_sym_BSLASHleft] = ACTIONS(6277), - [anon_sym_BSLASHbig] = ACTIONS(6277), - [anon_sym_BSLASHBig] = ACTIONS(6277), - [anon_sym_BSLASHbigg] = ACTIONS(6277), - [anon_sym_BSLASHBigg] = ACTIONS(6277), - [anon_sym_BSLASHbigl] = ACTIONS(6277), - [anon_sym_BSLASHBigl] = ACTIONS(6277), - [anon_sym_BSLASHbiggl] = ACTIONS(6277), - [anon_sym_BSLASHBiggl] = ACTIONS(6277), - [anon_sym_BSLASHright] = ACTIONS(6277), - [anon_sym_BSLASHbigr] = ACTIONS(6277), - [anon_sym_BSLASHBigr] = ACTIONS(6277), - [anon_sym_BSLASHbiggr] = ACTIONS(6277), - [anon_sym_BSLASHBiggr] = ACTIONS(6277), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6277), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6277), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6277), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6277), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6277), - [anon_sym_BSLASHgls] = ACTIONS(6277), - [anon_sym_BSLASHGls] = ACTIONS(6277), - [anon_sym_BSLASHGLS] = ACTIONS(6277), - [anon_sym_BSLASHglspl] = ACTIONS(6277), - [anon_sym_BSLASHGlspl] = ACTIONS(6277), - [anon_sym_BSLASHGLSpl] = ACTIONS(6277), - [anon_sym_BSLASHglsdisp] = ACTIONS(6277), - [anon_sym_BSLASHglslink] = ACTIONS(6277), - [anon_sym_BSLASHglstext] = ACTIONS(6277), - [anon_sym_BSLASHGlstext] = ACTIONS(6277), - [anon_sym_BSLASHGLStext] = ACTIONS(6277), - [anon_sym_BSLASHglsfirst] = ACTIONS(6277), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6277), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6277), - [anon_sym_BSLASHglsplural] = ACTIONS(6277), - [anon_sym_BSLASHGlsplural] = ACTIONS(6277), - [anon_sym_BSLASHGLSplural] = ACTIONS(6277), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHglsname] = ACTIONS(6277), - [anon_sym_BSLASHGlsname] = ACTIONS(6277), - [anon_sym_BSLASHGLSname] = ACTIONS(6277), - [anon_sym_BSLASHglssymbol] = ACTIONS(6277), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6277), - [anon_sym_BSLASHglsdesc] = ACTIONS(6277), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6277), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6277), - [anon_sym_BSLASHglsuseri] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6277), - [anon_sym_BSLASHglsuserii] = ACTIONS(6277), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6277), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6277), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6277), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6277), - [anon_sym_BSLASHglsuserv] = ACTIONS(6277), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6277), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6277), - [anon_sym_BSLASHglsuservi] = ACTIONS(6277), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6277), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6277), - [anon_sym_BSLASHnewacronym] = ACTIONS(6277), - [anon_sym_BSLASHacrshort] = ACTIONS(6277), - [anon_sym_BSLASHAcrshort] = ACTIONS(6277), - [anon_sym_BSLASHACRshort] = ACTIONS(6277), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6277), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6277), - [anon_sym_BSLASHacrlong] = ACTIONS(6277), - [anon_sym_BSLASHAcrlong] = ACTIONS(6277), - [anon_sym_BSLASHACRlong] = ACTIONS(6277), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6277), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6277), - [anon_sym_BSLASHacrfull] = ACTIONS(6277), - [anon_sym_BSLASHAcrfull] = ACTIONS(6277), - [anon_sym_BSLASHACRfull] = ACTIONS(6277), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6277), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6277), - [anon_sym_BSLASHacs] = ACTIONS(6277), - [anon_sym_BSLASHAcs] = ACTIONS(6277), - [anon_sym_BSLASHacsp] = ACTIONS(6277), - [anon_sym_BSLASHAcsp] = ACTIONS(6277), - [anon_sym_BSLASHacl] = ACTIONS(6277), - [anon_sym_BSLASHAcl] = ACTIONS(6277), - [anon_sym_BSLASHaclp] = ACTIONS(6277), - [anon_sym_BSLASHAclp] = ACTIONS(6277), - [anon_sym_BSLASHacf] = ACTIONS(6277), - [anon_sym_BSLASHAcf] = ACTIONS(6277), - [anon_sym_BSLASHacfp] = ACTIONS(6277), - [anon_sym_BSLASHAcfp] = ACTIONS(6277), - [anon_sym_BSLASHac] = ACTIONS(6277), - [anon_sym_BSLASHAc] = ACTIONS(6277), - [anon_sym_BSLASHacp] = ACTIONS(6277), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6277), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6277), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6277), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6277), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6277), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6277), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6277), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6279), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6277), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6279), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6277), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6277), - [anon_sym_BSLASHcolor] = ACTIONS(6277), - [anon_sym_BSLASHcolorbox] = ACTIONS(6277), - [anon_sym_BSLASHtextcolor] = ACTIONS(6277), - [anon_sym_BSLASHpagecolor] = ACTIONS(6277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6277), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6277), - [anon_sym_BSLASHtext] = ACTIONS(6277), - [anon_sym_BSLASHintertext] = ACTIONS(6277), - [anon_sym_shortintertext] = ACTIONS(6277), - }, - [550] = { - [sym_command_name] = ACTIONS(6281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6281), - [anon_sym_LBRACK] = ACTIONS(6283), - [anon_sym_RBRACK] = ACTIONS(6283), - [anon_sym_COMMA] = ACTIONS(6283), - [anon_sym_EQ] = ACTIONS(6283), - [anon_sym_LPAREN] = ACTIONS(6283), - [anon_sym_RPAREN] = ACTIONS(6283), - [anon_sym_BSLASHpart] = ACTIONS(6281), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddpart] = ACTIONS(6281), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6283), - [anon_sym_BSLASHchapter] = ACTIONS(6281), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddchap] = ACTIONS(6281), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsection] = ACTIONS(6281), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddsec] = ACTIONS(6281), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubsection] = ACTIONS(6281), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6281), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHparagraph] = ACTIONS(6281), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6281), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6283), - [anon_sym_BSLASHitem] = ACTIONS(6281), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6283), - [anon_sym_LBRACE] = ACTIONS(6283), - [sym_word] = ACTIONS(6281), - [sym_placeholder] = ACTIONS(6283), - [anon_sym_PLUS] = ACTIONS(6283), - [anon_sym_DASH] = ACTIONS(6283), - [anon_sym_STAR] = ACTIONS(6283), - [anon_sym_SLASH] = ACTIONS(6283), - [anon_sym_LT] = ACTIONS(6281), - [anon_sym_GT] = ACTIONS(6281), - [anon_sym_BANG] = ACTIONS(6281), - [anon_sym_PIPE] = ACTIONS(6281), - [anon_sym_COLON] = ACTIONS(6281), - [anon_sym_SQUOTE] = ACTIONS(6281), - [anon_sym__] = ACTIONS(6283), - [anon_sym_CARET] = ACTIONS(6283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6283), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6283), - [anon_sym_DOLLAR] = ACTIONS(6281), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6283), - [anon_sym_BSLASHbegin] = ACTIONS(6281), - [anon_sym_BSLASHtitle] = ACTIONS(6281), - [anon_sym_BSLASHauthor] = ACTIONS(6281), - [anon_sym_BSLASHusepackage] = ACTIONS(6281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6281), - [anon_sym_BSLASHinclude] = ACTIONS(6281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6281), - [anon_sym_BSLASHinput] = ACTIONS(6281), - [anon_sym_BSLASHsubfile] = ACTIONS(6281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6281), - [anon_sym_BSLASHbibliography] = ACTIONS(6281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6281), - [anon_sym_BSLASHincludesvg] = ACTIONS(6281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6281), - [anon_sym_BSLASHimport] = ACTIONS(6281), - [anon_sym_BSLASHsubimport] = ACTIONS(6281), - [anon_sym_BSLASHinputfrom] = ACTIONS(6281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6281), - [anon_sym_BSLASHincludefrom] = ACTIONS(6281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6281), - [anon_sym_BSLASHcaption] = ACTIONS(6281), - [anon_sym_BSLASHcite] = ACTIONS(6281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCite] = ACTIONS(6281), - [anon_sym_BSLASHnocite] = ACTIONS(6281), - [anon_sym_BSLASHcitet] = ACTIONS(6281), - [anon_sym_BSLASHcitep] = ACTIONS(6281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteauthor] = ACTIONS(6281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitetitle] = ACTIONS(6281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteyear] = ACTIONS(6281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitedate] = ACTIONS(6281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteurl] = ACTIONS(6281), - [anon_sym_BSLASHfullcite] = ACTIONS(6281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6281), - [anon_sym_BSLASHcitealt] = ACTIONS(6281), - [anon_sym_BSLASHcitealp] = ACTIONS(6281), - [anon_sym_BSLASHcitetext] = ACTIONS(6281), - [anon_sym_BSLASHparencite] = ACTIONS(6281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHParencite] = ACTIONS(6281), - [anon_sym_BSLASHfootcite] = ACTIONS(6281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6281), - [anon_sym_BSLASHtextcite] = ACTIONS(6281), - [anon_sym_BSLASHTextcite] = ACTIONS(6281), - [anon_sym_BSLASHsmartcite] = ACTIONS(6281), - [anon_sym_BSLASHSmartcite] = ACTIONS(6281), - [anon_sym_BSLASHsupercite] = ACTIONS(6281), - [anon_sym_BSLASHautocite] = ACTIONS(6281), - [anon_sym_BSLASHAutocite] = ACTIONS(6281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHvolcite] = ACTIONS(6281), - [anon_sym_BSLASHVolcite] = ACTIONS(6281), - [anon_sym_BSLASHpvolcite] = ACTIONS(6281), - [anon_sym_BSLASHPvolcite] = ACTIONS(6281), - [anon_sym_BSLASHfvolcite] = ACTIONS(6281), - [anon_sym_BSLASHftvolcite] = ACTIONS(6281), - [anon_sym_BSLASHsvolcite] = ACTIONS(6281), - [anon_sym_BSLASHSvolcite] = ACTIONS(6281), - [anon_sym_BSLASHtvolcite] = ACTIONS(6281), - [anon_sym_BSLASHTvolcite] = ACTIONS(6281), - [anon_sym_BSLASHavolcite] = ACTIONS(6281), - [anon_sym_BSLASHAvolcite] = ACTIONS(6281), - [anon_sym_BSLASHnotecite] = ACTIONS(6281), - [anon_sym_BSLASHNotecite] = ACTIONS(6281), - [anon_sym_BSLASHpnotecite] = ACTIONS(6281), - [anon_sym_BSLASHPnotecite] = ACTIONS(6281), - [anon_sym_BSLASHfnotecite] = ACTIONS(6281), - [anon_sym_BSLASHlabel] = ACTIONS(6281), - [anon_sym_BSLASHref] = ACTIONS(6281), - [anon_sym_BSLASHeqref] = ACTIONS(6281), - [anon_sym_BSLASHvref] = ACTIONS(6281), - [anon_sym_BSLASHVref] = ACTIONS(6281), - [anon_sym_BSLASHautoref] = ACTIONS(6281), - [anon_sym_BSLASHpageref] = ACTIONS(6281), - [anon_sym_BSLASHcref] = ACTIONS(6281), - [anon_sym_BSLASHCref] = ACTIONS(6281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6283), - [anon_sym_BSLASHnamecref] = ACTIONS(6281), - [anon_sym_BSLASHnameCref] = ACTIONS(6281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6281), - [anon_sym_BSLASHlabelcref] = ACTIONS(6281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6281), - [anon_sym_BSLASHcrefrange] = ACTIONS(6281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCrefrange] = ACTIONS(6281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6283), - [anon_sym_BSLASHnewlabel] = ACTIONS(6281), - [anon_sym_BSLASHnewcommand] = ACTIONS(6281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6283), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHdef] = ACTIONS(6281), - [anon_sym_BSLASHlet] = ACTIONS(6281), - [anon_sym_BSLASHleft] = ACTIONS(6281), - [anon_sym_BSLASHbig] = ACTIONS(6281), - [anon_sym_BSLASHBig] = ACTIONS(6281), - [anon_sym_BSLASHbigg] = ACTIONS(6281), - [anon_sym_BSLASHBigg] = ACTIONS(6281), - [anon_sym_BSLASHbigl] = ACTIONS(6281), - [anon_sym_BSLASHBigl] = ACTIONS(6281), - [anon_sym_BSLASHbiggl] = ACTIONS(6281), - [anon_sym_BSLASHBiggl] = ACTIONS(6281), - [anon_sym_BSLASHright] = ACTIONS(6281), - [anon_sym_BSLASHbigr] = ACTIONS(6281), - [anon_sym_BSLASHBigr] = ACTIONS(6281), - [anon_sym_BSLASHbiggr] = ACTIONS(6281), - [anon_sym_BSLASHBiggr] = ACTIONS(6281), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6281), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6281), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6281), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6281), - [anon_sym_BSLASHgls] = ACTIONS(6281), - [anon_sym_BSLASHGls] = ACTIONS(6281), - [anon_sym_BSLASHGLS] = ACTIONS(6281), - [anon_sym_BSLASHglspl] = ACTIONS(6281), - [anon_sym_BSLASHGlspl] = ACTIONS(6281), - [anon_sym_BSLASHGLSpl] = ACTIONS(6281), - [anon_sym_BSLASHglsdisp] = ACTIONS(6281), - [anon_sym_BSLASHglslink] = ACTIONS(6281), - [anon_sym_BSLASHglstext] = ACTIONS(6281), - [anon_sym_BSLASHGlstext] = ACTIONS(6281), - [anon_sym_BSLASHGLStext] = ACTIONS(6281), - [anon_sym_BSLASHglsfirst] = ACTIONS(6281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6281), - [anon_sym_BSLASHglsplural] = ACTIONS(6281), - [anon_sym_BSLASHGlsplural] = ACTIONS(6281), - [anon_sym_BSLASHGLSplural] = ACTIONS(6281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHglsname] = ACTIONS(6281), - [anon_sym_BSLASHGlsname] = ACTIONS(6281), - [anon_sym_BSLASHGLSname] = ACTIONS(6281), - [anon_sym_BSLASHglssymbol] = ACTIONS(6281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6281), - [anon_sym_BSLASHglsdesc] = ACTIONS(6281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6281), - [anon_sym_BSLASHglsuseri] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6281), - [anon_sym_BSLASHglsuserii] = ACTIONS(6281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6281), - [anon_sym_BSLASHglsuserv] = ACTIONS(6281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6281), - [anon_sym_BSLASHglsuservi] = ACTIONS(6281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6281), - [anon_sym_BSLASHnewacronym] = ACTIONS(6281), - [anon_sym_BSLASHacrshort] = ACTIONS(6281), - [anon_sym_BSLASHAcrshort] = ACTIONS(6281), - [anon_sym_BSLASHACRshort] = ACTIONS(6281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6281), - [anon_sym_BSLASHacrlong] = ACTIONS(6281), - [anon_sym_BSLASHAcrlong] = ACTIONS(6281), - [anon_sym_BSLASHACRlong] = ACTIONS(6281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6281), - [anon_sym_BSLASHacrfull] = ACTIONS(6281), - [anon_sym_BSLASHAcrfull] = ACTIONS(6281), - [anon_sym_BSLASHACRfull] = ACTIONS(6281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6281), - [anon_sym_BSLASHacs] = ACTIONS(6281), - [anon_sym_BSLASHAcs] = ACTIONS(6281), - [anon_sym_BSLASHacsp] = ACTIONS(6281), - [anon_sym_BSLASHAcsp] = ACTIONS(6281), - [anon_sym_BSLASHacl] = ACTIONS(6281), - [anon_sym_BSLASHAcl] = ACTIONS(6281), - [anon_sym_BSLASHaclp] = ACTIONS(6281), - [anon_sym_BSLASHAclp] = ACTIONS(6281), - [anon_sym_BSLASHacf] = ACTIONS(6281), - [anon_sym_BSLASHAcf] = ACTIONS(6281), - [anon_sym_BSLASHacfp] = ACTIONS(6281), - [anon_sym_BSLASHAcfp] = ACTIONS(6281), - [anon_sym_BSLASHac] = ACTIONS(6281), - [anon_sym_BSLASHAc] = ACTIONS(6281), - [anon_sym_BSLASHacp] = ACTIONS(6281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6281), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6283), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6281), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6283), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6281), - [anon_sym_BSLASHcolor] = ACTIONS(6281), - [anon_sym_BSLASHcolorbox] = ACTIONS(6281), - [anon_sym_BSLASHtextcolor] = ACTIONS(6281), - [anon_sym_BSLASHpagecolor] = ACTIONS(6281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6281), - [anon_sym_BSLASHtext] = ACTIONS(6281), - [anon_sym_BSLASHintertext] = ACTIONS(6281), - [anon_sym_shortintertext] = ACTIONS(6281), - }, - [551] = { - [sym_command_name] = ACTIONS(6285), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6285), - [anon_sym_LBRACK] = ACTIONS(6287), - [anon_sym_RBRACK] = ACTIONS(6287), - [anon_sym_COMMA] = ACTIONS(6287), - [anon_sym_EQ] = ACTIONS(6287), - [anon_sym_LPAREN] = ACTIONS(6287), - [anon_sym_RPAREN] = ACTIONS(6287), - [anon_sym_BSLASHpart] = ACTIONS(6285), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddpart] = ACTIONS(6285), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6287), - [anon_sym_BSLASHchapter] = ACTIONS(6285), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddchap] = ACTIONS(6285), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsection] = ACTIONS(6285), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddsec] = ACTIONS(6285), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubsection] = ACTIONS(6285), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6285), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHparagraph] = ACTIONS(6285), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6285), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6287), - [anon_sym_BSLASHitem] = ACTIONS(6285), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6287), - [anon_sym_LBRACE] = ACTIONS(6287), - [sym_word] = ACTIONS(6285), - [sym_placeholder] = ACTIONS(6287), - [anon_sym_PLUS] = ACTIONS(6287), - [anon_sym_DASH] = ACTIONS(6287), - [anon_sym_STAR] = ACTIONS(6287), - [anon_sym_SLASH] = ACTIONS(6287), - [anon_sym_LT] = ACTIONS(6285), - [anon_sym_GT] = ACTIONS(6285), - [anon_sym_BANG] = ACTIONS(6285), - [anon_sym_PIPE] = ACTIONS(6285), - [anon_sym_COLON] = ACTIONS(6285), - [anon_sym_SQUOTE] = ACTIONS(6285), - [anon_sym__] = ACTIONS(6287), - [anon_sym_CARET] = ACTIONS(6287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6287), - [anon_sym_DOLLAR] = ACTIONS(6285), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6287), - [anon_sym_BSLASHbegin] = ACTIONS(6285), - [anon_sym_BSLASHtitle] = ACTIONS(6285), - [anon_sym_BSLASHauthor] = ACTIONS(6285), - [anon_sym_BSLASHusepackage] = ACTIONS(6285), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6285), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6285), - [anon_sym_BSLASHinclude] = ACTIONS(6285), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6285), - [anon_sym_BSLASHinput] = ACTIONS(6285), - [anon_sym_BSLASHsubfile] = ACTIONS(6285), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6285), - [anon_sym_BSLASHbibliography] = ACTIONS(6285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6285), - [anon_sym_BSLASHincludesvg] = ACTIONS(6285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6285), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6285), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6285), - [anon_sym_BSLASHimport] = ACTIONS(6285), - [anon_sym_BSLASHsubimport] = ACTIONS(6285), - [anon_sym_BSLASHinputfrom] = ACTIONS(6285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6285), - [anon_sym_BSLASHincludefrom] = ACTIONS(6285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6285), - [anon_sym_BSLASHcaption] = ACTIONS(6285), - [anon_sym_BSLASHcite] = ACTIONS(6285), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCite] = ACTIONS(6285), - [anon_sym_BSLASHnocite] = ACTIONS(6285), - [anon_sym_BSLASHcitet] = ACTIONS(6285), - [anon_sym_BSLASHcitep] = ACTIONS(6285), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteauthor] = ACTIONS(6285), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6285), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitetitle] = ACTIONS(6285), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteyear] = ACTIONS(6285), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitedate] = ACTIONS(6285), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteurl] = ACTIONS(6285), - [anon_sym_BSLASHfullcite] = ACTIONS(6285), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6285), - [anon_sym_BSLASHcitealt] = ACTIONS(6285), - [anon_sym_BSLASHcitealp] = ACTIONS(6285), - [anon_sym_BSLASHcitetext] = ACTIONS(6285), - [anon_sym_BSLASHparencite] = ACTIONS(6285), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHParencite] = ACTIONS(6285), - [anon_sym_BSLASHfootcite] = ACTIONS(6285), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6285), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6285), - [anon_sym_BSLASHtextcite] = ACTIONS(6285), - [anon_sym_BSLASHTextcite] = ACTIONS(6285), - [anon_sym_BSLASHsmartcite] = ACTIONS(6285), - [anon_sym_BSLASHSmartcite] = ACTIONS(6285), - [anon_sym_BSLASHsupercite] = ACTIONS(6285), - [anon_sym_BSLASHautocite] = ACTIONS(6285), - [anon_sym_BSLASHAutocite] = ACTIONS(6285), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHvolcite] = ACTIONS(6285), - [anon_sym_BSLASHVolcite] = ACTIONS(6285), - [anon_sym_BSLASHpvolcite] = ACTIONS(6285), - [anon_sym_BSLASHPvolcite] = ACTIONS(6285), - [anon_sym_BSLASHfvolcite] = ACTIONS(6285), - [anon_sym_BSLASHftvolcite] = ACTIONS(6285), - [anon_sym_BSLASHsvolcite] = ACTIONS(6285), - [anon_sym_BSLASHSvolcite] = ACTIONS(6285), - [anon_sym_BSLASHtvolcite] = ACTIONS(6285), - [anon_sym_BSLASHTvolcite] = ACTIONS(6285), - [anon_sym_BSLASHavolcite] = ACTIONS(6285), - [anon_sym_BSLASHAvolcite] = ACTIONS(6285), - [anon_sym_BSLASHnotecite] = ACTIONS(6285), - [anon_sym_BSLASHNotecite] = ACTIONS(6285), - [anon_sym_BSLASHpnotecite] = ACTIONS(6285), - [anon_sym_BSLASHPnotecite] = ACTIONS(6285), - [anon_sym_BSLASHfnotecite] = ACTIONS(6285), - [anon_sym_BSLASHlabel] = ACTIONS(6285), - [anon_sym_BSLASHref] = ACTIONS(6285), - [anon_sym_BSLASHeqref] = ACTIONS(6285), - [anon_sym_BSLASHvref] = ACTIONS(6285), - [anon_sym_BSLASHVref] = ACTIONS(6285), - [anon_sym_BSLASHautoref] = ACTIONS(6285), - [anon_sym_BSLASHpageref] = ACTIONS(6285), - [anon_sym_BSLASHcref] = ACTIONS(6285), - [anon_sym_BSLASHCref] = ACTIONS(6285), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6287), - [anon_sym_BSLASHnamecref] = ACTIONS(6285), - [anon_sym_BSLASHnameCref] = ACTIONS(6285), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6285), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6285), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6285), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6285), - [anon_sym_BSLASHlabelcref] = ACTIONS(6285), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6285), - [anon_sym_BSLASHcrefrange] = ACTIONS(6285), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCrefrange] = ACTIONS(6285), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6287), - [anon_sym_BSLASHnewlabel] = ACTIONS(6285), - [anon_sym_BSLASHnewcommand] = ACTIONS(6285), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6285), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6285), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6287), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHdef] = ACTIONS(6285), - [anon_sym_BSLASHlet] = ACTIONS(6285), - [anon_sym_BSLASHleft] = ACTIONS(6285), - [anon_sym_BSLASHbig] = ACTIONS(6285), - [anon_sym_BSLASHBig] = ACTIONS(6285), - [anon_sym_BSLASHbigg] = ACTIONS(6285), - [anon_sym_BSLASHBigg] = ACTIONS(6285), - [anon_sym_BSLASHbigl] = ACTIONS(6285), - [anon_sym_BSLASHBigl] = ACTIONS(6285), - [anon_sym_BSLASHbiggl] = ACTIONS(6285), - [anon_sym_BSLASHBiggl] = ACTIONS(6285), - [anon_sym_BSLASHright] = ACTIONS(6285), - [anon_sym_BSLASHbigr] = ACTIONS(6285), - [anon_sym_BSLASHBigr] = ACTIONS(6285), - [anon_sym_BSLASHbiggr] = ACTIONS(6285), - [anon_sym_BSLASHBiggr] = ACTIONS(6285), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6285), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6285), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6285), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6285), - [anon_sym_BSLASHgls] = ACTIONS(6285), - [anon_sym_BSLASHGls] = ACTIONS(6285), - [anon_sym_BSLASHGLS] = ACTIONS(6285), - [anon_sym_BSLASHglspl] = ACTIONS(6285), - [anon_sym_BSLASHGlspl] = ACTIONS(6285), - [anon_sym_BSLASHGLSpl] = ACTIONS(6285), - [anon_sym_BSLASHglsdisp] = ACTIONS(6285), - [anon_sym_BSLASHglslink] = ACTIONS(6285), - [anon_sym_BSLASHglstext] = ACTIONS(6285), - [anon_sym_BSLASHGlstext] = ACTIONS(6285), - [anon_sym_BSLASHGLStext] = ACTIONS(6285), - [anon_sym_BSLASHglsfirst] = ACTIONS(6285), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6285), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6285), - [anon_sym_BSLASHglsplural] = ACTIONS(6285), - [anon_sym_BSLASHGlsplural] = ACTIONS(6285), - [anon_sym_BSLASHGLSplural] = ACTIONS(6285), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHglsname] = ACTIONS(6285), - [anon_sym_BSLASHGlsname] = ACTIONS(6285), - [anon_sym_BSLASHGLSname] = ACTIONS(6285), - [anon_sym_BSLASHglssymbol] = ACTIONS(6285), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6285), - [anon_sym_BSLASHglsdesc] = ACTIONS(6285), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6285), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6285), - [anon_sym_BSLASHglsuseri] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6285), - [anon_sym_BSLASHglsuserii] = ACTIONS(6285), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6285), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6285), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6285), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6285), - [anon_sym_BSLASHglsuserv] = ACTIONS(6285), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6285), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6285), - [anon_sym_BSLASHglsuservi] = ACTIONS(6285), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6285), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6285), - [anon_sym_BSLASHnewacronym] = ACTIONS(6285), - [anon_sym_BSLASHacrshort] = ACTIONS(6285), - [anon_sym_BSLASHAcrshort] = ACTIONS(6285), - [anon_sym_BSLASHACRshort] = ACTIONS(6285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6285), - [anon_sym_BSLASHacrlong] = ACTIONS(6285), - [anon_sym_BSLASHAcrlong] = ACTIONS(6285), - [anon_sym_BSLASHACRlong] = ACTIONS(6285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6285), - [anon_sym_BSLASHacrfull] = ACTIONS(6285), - [anon_sym_BSLASHAcrfull] = ACTIONS(6285), - [anon_sym_BSLASHACRfull] = ACTIONS(6285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6285), - [anon_sym_BSLASHacs] = ACTIONS(6285), - [anon_sym_BSLASHAcs] = ACTIONS(6285), - [anon_sym_BSLASHacsp] = ACTIONS(6285), - [anon_sym_BSLASHAcsp] = ACTIONS(6285), - [anon_sym_BSLASHacl] = ACTIONS(6285), - [anon_sym_BSLASHAcl] = ACTIONS(6285), - [anon_sym_BSLASHaclp] = ACTIONS(6285), - [anon_sym_BSLASHAclp] = ACTIONS(6285), - [anon_sym_BSLASHacf] = ACTIONS(6285), - [anon_sym_BSLASHAcf] = ACTIONS(6285), - [anon_sym_BSLASHacfp] = ACTIONS(6285), - [anon_sym_BSLASHAcfp] = ACTIONS(6285), - [anon_sym_BSLASHac] = ACTIONS(6285), - [anon_sym_BSLASHAc] = ACTIONS(6285), - [anon_sym_BSLASHacp] = ACTIONS(6285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6285), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6287), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6285), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6287), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6285), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6285), - [anon_sym_BSLASHcolor] = ACTIONS(6285), - [anon_sym_BSLASHcolorbox] = ACTIONS(6285), - [anon_sym_BSLASHtextcolor] = ACTIONS(6285), - [anon_sym_BSLASHpagecolor] = ACTIONS(6285), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6285), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6285), - [anon_sym_BSLASHtext] = ACTIONS(6285), - [anon_sym_BSLASHintertext] = ACTIONS(6285), - [anon_sym_shortintertext] = ACTIONS(6285), - }, - [552] = { - [sym_command_name] = ACTIONS(6289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(6291), - [anon_sym_RBRACK] = ACTIONS(6291), - [anon_sym_COMMA] = ACTIONS(6291), - [anon_sym_EQ] = ACTIONS(6291), - [anon_sym_LPAREN] = ACTIONS(6291), - [anon_sym_RPAREN] = ACTIONS(6291), - [anon_sym_BSLASHpart] = ACTIONS(6289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddpart] = ACTIONS(6289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6291), - [anon_sym_BSLASHchapter] = ACTIONS(6289), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddchap] = ACTIONS(6289), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsection] = ACTIONS(6289), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddsec] = ACTIONS(6289), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubsection] = ACTIONS(6289), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6289), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHparagraph] = ACTIONS(6289), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6289), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6291), - [anon_sym_BSLASHitem] = ACTIONS(6289), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6291), - [anon_sym_LBRACE] = ACTIONS(6291), - [sym_word] = ACTIONS(6289), - [sym_placeholder] = ACTIONS(6291), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6291), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_LT] = ACTIONS(6289), - [anon_sym_GT] = ACTIONS(6289), - [anon_sym_BANG] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_SQUOTE] = ACTIONS(6289), - [anon_sym__] = ACTIONS(6291), - [anon_sym_CARET] = ACTIONS(6291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6291), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6291), - [anon_sym_DOLLAR] = ACTIONS(6289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6291), - [anon_sym_BSLASHbegin] = ACTIONS(6289), - [anon_sym_BSLASHtitle] = ACTIONS(6289), - [anon_sym_BSLASHauthor] = ACTIONS(6289), - [anon_sym_BSLASHusepackage] = ACTIONS(6289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), - [anon_sym_BSLASHinclude] = ACTIONS(6289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), - [anon_sym_BSLASHinput] = ACTIONS(6289), - [anon_sym_BSLASHsubfile] = ACTIONS(6289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), - [anon_sym_BSLASHbibliography] = ACTIONS(6289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), - [anon_sym_BSLASHincludesvg] = ACTIONS(6289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), - [anon_sym_BSLASHimport] = ACTIONS(6289), - [anon_sym_BSLASHsubimport] = ACTIONS(6289), - [anon_sym_BSLASHinputfrom] = ACTIONS(6289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), - [anon_sym_BSLASHincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHcaption] = ACTIONS(6289), - [anon_sym_BSLASHcite] = ACTIONS(6289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCite] = ACTIONS(6289), - [anon_sym_BSLASHnocite] = ACTIONS(6289), - [anon_sym_BSLASHcitet] = ACTIONS(6289), - [anon_sym_BSLASHcitep] = ACTIONS(6289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteauthor] = ACTIONS(6289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitetitle] = ACTIONS(6289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteyear] = ACTIONS(6289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitedate] = ACTIONS(6289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteurl] = ACTIONS(6289), - [anon_sym_BSLASHfullcite] = ACTIONS(6289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), - [anon_sym_BSLASHcitealt] = ACTIONS(6289), - [anon_sym_BSLASHcitealp] = ACTIONS(6289), - [anon_sym_BSLASHcitetext] = ACTIONS(6289), - [anon_sym_BSLASHparencite] = ACTIONS(6289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHParencite] = ACTIONS(6289), - [anon_sym_BSLASHfootcite] = ACTIONS(6289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), - [anon_sym_BSLASHtextcite] = ACTIONS(6289), - [anon_sym_BSLASHTextcite] = ACTIONS(6289), - [anon_sym_BSLASHsmartcite] = ACTIONS(6289), - [anon_sym_BSLASHSmartcite] = ACTIONS(6289), - [anon_sym_BSLASHsupercite] = ACTIONS(6289), - [anon_sym_BSLASHautocite] = ACTIONS(6289), - [anon_sym_BSLASHAutocite] = ACTIONS(6289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHvolcite] = ACTIONS(6289), - [anon_sym_BSLASHVolcite] = ACTIONS(6289), - [anon_sym_BSLASHpvolcite] = ACTIONS(6289), - [anon_sym_BSLASHPvolcite] = ACTIONS(6289), - [anon_sym_BSLASHfvolcite] = ACTIONS(6289), - [anon_sym_BSLASHftvolcite] = ACTIONS(6289), - [anon_sym_BSLASHsvolcite] = ACTIONS(6289), - [anon_sym_BSLASHSvolcite] = ACTIONS(6289), - [anon_sym_BSLASHtvolcite] = ACTIONS(6289), - [anon_sym_BSLASHTvolcite] = ACTIONS(6289), - [anon_sym_BSLASHavolcite] = ACTIONS(6289), - [anon_sym_BSLASHAvolcite] = ACTIONS(6289), - [anon_sym_BSLASHnotecite] = ACTIONS(6289), - [anon_sym_BSLASHNotecite] = ACTIONS(6289), - [anon_sym_BSLASHpnotecite] = ACTIONS(6289), - [anon_sym_BSLASHPnotecite] = ACTIONS(6289), - [anon_sym_BSLASHfnotecite] = ACTIONS(6289), - [anon_sym_BSLASHlabel] = ACTIONS(6289), - [anon_sym_BSLASHref] = ACTIONS(6289), - [anon_sym_BSLASHeqref] = ACTIONS(6289), - [anon_sym_BSLASHvref] = ACTIONS(6289), - [anon_sym_BSLASHVref] = ACTIONS(6289), - [anon_sym_BSLASHautoref] = ACTIONS(6289), - [anon_sym_BSLASHpageref] = ACTIONS(6289), - [anon_sym_BSLASHcref] = ACTIONS(6289), - [anon_sym_BSLASHCref] = ACTIONS(6289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnameCref] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHlabelcref] = ACTIONS(6289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCrefrange] = ACTIONS(6289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnewlabel] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHdef] = ACTIONS(6289), - [anon_sym_BSLASHlet] = ACTIONS(6289), - [anon_sym_BSLASHleft] = ACTIONS(6289), - [anon_sym_BSLASHbig] = ACTIONS(6289), - [anon_sym_BSLASHBig] = ACTIONS(6289), - [anon_sym_BSLASHbigg] = ACTIONS(6289), - [anon_sym_BSLASHBigg] = ACTIONS(6289), - [anon_sym_BSLASHbigl] = ACTIONS(6289), - [anon_sym_BSLASHBigl] = ACTIONS(6289), - [anon_sym_BSLASHbiggl] = ACTIONS(6289), - [anon_sym_BSLASHBiggl] = ACTIONS(6289), - [anon_sym_BSLASHright] = ACTIONS(6289), - [anon_sym_BSLASHbigr] = ACTIONS(6289), - [anon_sym_BSLASHBigr] = ACTIONS(6289), - [anon_sym_BSLASHbiggr] = ACTIONS(6289), - [anon_sym_BSLASHBiggr] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), - [anon_sym_BSLASHgls] = ACTIONS(6289), - [anon_sym_BSLASHGls] = ACTIONS(6289), - [anon_sym_BSLASHGLS] = ACTIONS(6289), - [anon_sym_BSLASHglspl] = ACTIONS(6289), - [anon_sym_BSLASHGlspl] = ACTIONS(6289), - [anon_sym_BSLASHGLSpl] = ACTIONS(6289), - [anon_sym_BSLASHglsdisp] = ACTIONS(6289), - [anon_sym_BSLASHglslink] = ACTIONS(6289), - [anon_sym_BSLASHglstext] = ACTIONS(6289), - [anon_sym_BSLASHGlstext] = ACTIONS(6289), - [anon_sym_BSLASHGLStext] = ACTIONS(6289), - [anon_sym_BSLASHglsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), - [anon_sym_BSLASHglsplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSplural] = ACTIONS(6289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHglsname] = ACTIONS(6289), - [anon_sym_BSLASHGlsname] = ACTIONS(6289), - [anon_sym_BSLASHGLSname] = ACTIONS(6289), - [anon_sym_BSLASHglssymbol] = ACTIONS(6289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), - [anon_sym_BSLASHglsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), - [anon_sym_BSLASHglsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), - [anon_sym_BSLASHglsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), - [anon_sym_BSLASHglsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), - [anon_sym_BSLASHglsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), - [anon_sym_BSLASHnewacronym] = ACTIONS(6289), - [anon_sym_BSLASHacrshort] = ACTIONS(6289), - [anon_sym_BSLASHAcrshort] = ACTIONS(6289), - [anon_sym_BSLASHACRshort] = ACTIONS(6289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), - [anon_sym_BSLASHacrlong] = ACTIONS(6289), - [anon_sym_BSLASHAcrlong] = ACTIONS(6289), - [anon_sym_BSLASHACRlong] = ACTIONS(6289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), - [anon_sym_BSLASHacrfull] = ACTIONS(6289), - [anon_sym_BSLASHAcrfull] = ACTIONS(6289), - [anon_sym_BSLASHACRfull] = ACTIONS(6289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), - [anon_sym_BSLASHacs] = ACTIONS(6289), - [anon_sym_BSLASHAcs] = ACTIONS(6289), - [anon_sym_BSLASHacsp] = ACTIONS(6289), - [anon_sym_BSLASHAcsp] = ACTIONS(6289), - [anon_sym_BSLASHacl] = ACTIONS(6289), - [anon_sym_BSLASHAcl] = ACTIONS(6289), - [anon_sym_BSLASHaclp] = ACTIONS(6289), - [anon_sym_BSLASHAclp] = ACTIONS(6289), - [anon_sym_BSLASHacf] = ACTIONS(6289), - [anon_sym_BSLASHAcf] = ACTIONS(6289), - [anon_sym_BSLASHacfp] = ACTIONS(6289), - [anon_sym_BSLASHAcfp] = ACTIONS(6289), - [anon_sym_BSLASHac] = ACTIONS(6289), - [anon_sym_BSLASHAc] = ACTIONS(6289), - [anon_sym_BSLASHacp] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), - [anon_sym_BSLASHcolor] = ACTIONS(6289), - [anon_sym_BSLASHcolorbox] = ACTIONS(6289), - [anon_sym_BSLASHtextcolor] = ACTIONS(6289), - [anon_sym_BSLASHpagecolor] = ACTIONS(6289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), - [anon_sym_BSLASHtext] = ACTIONS(6289), - [anon_sym_BSLASHintertext] = ACTIONS(6289), - [anon_sym_shortintertext] = ACTIONS(6289), - }, - [553] = { - [sym_command_name] = ACTIONS(6293), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(6295), - [anon_sym_RBRACK] = ACTIONS(6295), - [anon_sym_COMMA] = ACTIONS(6295), - [anon_sym_EQ] = ACTIONS(6295), - [anon_sym_LPAREN] = ACTIONS(6295), - [anon_sym_RPAREN] = ACTIONS(6295), - [anon_sym_BSLASHpart] = ACTIONS(6293), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddpart] = ACTIONS(6293), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6295), - [anon_sym_BSLASHchapter] = ACTIONS(6293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddchap] = ACTIONS(6293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsection] = ACTIONS(6293), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddsec] = ACTIONS(6293), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubsection] = ACTIONS(6293), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6293), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHparagraph] = ACTIONS(6293), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6293), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6295), - [anon_sym_BSLASHitem] = ACTIONS(6293), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6295), - [anon_sym_LBRACE] = ACTIONS(6295), - [sym_word] = ACTIONS(6293), - [sym_placeholder] = ACTIONS(6295), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6295), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_LT] = ACTIONS(6293), - [anon_sym_GT] = ACTIONS(6293), - [anon_sym_BANG] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_SQUOTE] = ACTIONS(6293), - [anon_sym__] = ACTIONS(6295), - [anon_sym_CARET] = ACTIONS(6295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6295), - [anon_sym_DOLLAR] = ACTIONS(6293), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6295), - [anon_sym_BSLASHbegin] = ACTIONS(6293), - [anon_sym_BSLASHtitle] = ACTIONS(6293), - [anon_sym_BSLASHauthor] = ACTIONS(6293), - [anon_sym_BSLASHusepackage] = ACTIONS(6293), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6293), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6293), - [anon_sym_BSLASHinclude] = ACTIONS(6293), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6293), - [anon_sym_BSLASHinput] = ACTIONS(6293), - [anon_sym_BSLASHsubfile] = ACTIONS(6293), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6293), - [anon_sym_BSLASHbibliography] = ACTIONS(6293), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6293), - [anon_sym_BSLASHincludesvg] = ACTIONS(6293), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6293), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6293), - [anon_sym_BSLASHimport] = ACTIONS(6293), - [anon_sym_BSLASHsubimport] = ACTIONS(6293), - [anon_sym_BSLASHinputfrom] = ACTIONS(6293), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6293), - [anon_sym_BSLASHincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHcaption] = ACTIONS(6293), - [anon_sym_BSLASHcite] = ACTIONS(6293), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCite] = ACTIONS(6293), - [anon_sym_BSLASHnocite] = ACTIONS(6293), - [anon_sym_BSLASHcitet] = ACTIONS(6293), - [anon_sym_BSLASHcitep] = ACTIONS(6293), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteauthor] = ACTIONS(6293), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6293), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitetitle] = ACTIONS(6293), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteyear] = ACTIONS(6293), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitedate] = ACTIONS(6293), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteurl] = ACTIONS(6293), - [anon_sym_BSLASHfullcite] = ACTIONS(6293), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6293), - [anon_sym_BSLASHcitealt] = ACTIONS(6293), - [anon_sym_BSLASHcitealp] = ACTIONS(6293), - [anon_sym_BSLASHcitetext] = ACTIONS(6293), - [anon_sym_BSLASHparencite] = ACTIONS(6293), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHParencite] = ACTIONS(6293), - [anon_sym_BSLASHfootcite] = ACTIONS(6293), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6293), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6293), - [anon_sym_BSLASHtextcite] = ACTIONS(6293), - [anon_sym_BSLASHTextcite] = ACTIONS(6293), - [anon_sym_BSLASHsmartcite] = ACTIONS(6293), - [anon_sym_BSLASHSmartcite] = ACTIONS(6293), - [anon_sym_BSLASHsupercite] = ACTIONS(6293), - [anon_sym_BSLASHautocite] = ACTIONS(6293), - [anon_sym_BSLASHAutocite] = ACTIONS(6293), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHvolcite] = ACTIONS(6293), - [anon_sym_BSLASHVolcite] = ACTIONS(6293), - [anon_sym_BSLASHpvolcite] = ACTIONS(6293), - [anon_sym_BSLASHPvolcite] = ACTIONS(6293), - [anon_sym_BSLASHfvolcite] = ACTIONS(6293), - [anon_sym_BSLASHftvolcite] = ACTIONS(6293), - [anon_sym_BSLASHsvolcite] = ACTIONS(6293), - [anon_sym_BSLASHSvolcite] = ACTIONS(6293), - [anon_sym_BSLASHtvolcite] = ACTIONS(6293), - [anon_sym_BSLASHTvolcite] = ACTIONS(6293), - [anon_sym_BSLASHavolcite] = ACTIONS(6293), - [anon_sym_BSLASHAvolcite] = ACTIONS(6293), - [anon_sym_BSLASHnotecite] = ACTIONS(6293), - [anon_sym_BSLASHNotecite] = ACTIONS(6293), - [anon_sym_BSLASHpnotecite] = ACTIONS(6293), - [anon_sym_BSLASHPnotecite] = ACTIONS(6293), - [anon_sym_BSLASHfnotecite] = ACTIONS(6293), - [anon_sym_BSLASHlabel] = ACTIONS(6293), - [anon_sym_BSLASHref] = ACTIONS(6293), - [anon_sym_BSLASHeqref] = ACTIONS(6293), - [anon_sym_BSLASHvref] = ACTIONS(6293), - [anon_sym_BSLASHVref] = ACTIONS(6293), - [anon_sym_BSLASHautoref] = ACTIONS(6293), - [anon_sym_BSLASHpageref] = ACTIONS(6293), - [anon_sym_BSLASHcref] = ACTIONS(6293), - [anon_sym_BSLASHCref] = ACTIONS(6293), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnameCref] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHlabelcref] = ACTIONS(6293), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCrefrange] = ACTIONS(6293), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnewlabel] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6293), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6293), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6295), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHdef] = ACTIONS(6293), - [anon_sym_BSLASHlet] = ACTIONS(6293), - [anon_sym_BSLASHleft] = ACTIONS(6293), - [anon_sym_BSLASHbig] = ACTIONS(6293), - [anon_sym_BSLASHBig] = ACTIONS(6293), - [anon_sym_BSLASHbigg] = ACTIONS(6293), - [anon_sym_BSLASHBigg] = ACTIONS(6293), - [anon_sym_BSLASHbigl] = ACTIONS(6293), - [anon_sym_BSLASHBigl] = ACTIONS(6293), - [anon_sym_BSLASHbiggl] = ACTIONS(6293), - [anon_sym_BSLASHBiggl] = ACTIONS(6293), - [anon_sym_BSLASHright] = ACTIONS(6293), - [anon_sym_BSLASHbigr] = ACTIONS(6293), - [anon_sym_BSLASHBigr] = ACTIONS(6293), - [anon_sym_BSLASHbiggr] = ACTIONS(6293), - [anon_sym_BSLASHBiggr] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6293), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6293), - [anon_sym_BSLASHgls] = ACTIONS(6293), - [anon_sym_BSLASHGls] = ACTIONS(6293), - [anon_sym_BSLASHGLS] = ACTIONS(6293), - [anon_sym_BSLASHglspl] = ACTIONS(6293), - [anon_sym_BSLASHGlspl] = ACTIONS(6293), - [anon_sym_BSLASHGLSpl] = ACTIONS(6293), - [anon_sym_BSLASHglsdisp] = ACTIONS(6293), - [anon_sym_BSLASHglslink] = ACTIONS(6293), - [anon_sym_BSLASHglstext] = ACTIONS(6293), - [anon_sym_BSLASHGlstext] = ACTIONS(6293), - [anon_sym_BSLASHGLStext] = ACTIONS(6293), - [anon_sym_BSLASHglsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6293), - [anon_sym_BSLASHglsplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSplural] = ACTIONS(6293), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHglsname] = ACTIONS(6293), - [anon_sym_BSLASHGlsname] = ACTIONS(6293), - [anon_sym_BSLASHGLSname] = ACTIONS(6293), - [anon_sym_BSLASHglssymbol] = ACTIONS(6293), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6293), - [anon_sym_BSLASHglsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6293), - [anon_sym_BSLASHglsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6293), - [anon_sym_BSLASHglsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6293), - [anon_sym_BSLASHglsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6293), - [anon_sym_BSLASHglsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6293), - [anon_sym_BSLASHnewacronym] = ACTIONS(6293), - [anon_sym_BSLASHacrshort] = ACTIONS(6293), - [anon_sym_BSLASHAcrshort] = ACTIONS(6293), - [anon_sym_BSLASHACRshort] = ACTIONS(6293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6293), - [anon_sym_BSLASHacrlong] = ACTIONS(6293), - [anon_sym_BSLASHAcrlong] = ACTIONS(6293), - [anon_sym_BSLASHACRlong] = ACTIONS(6293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6293), - [anon_sym_BSLASHacrfull] = ACTIONS(6293), - [anon_sym_BSLASHAcrfull] = ACTIONS(6293), - [anon_sym_BSLASHACRfull] = ACTIONS(6293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6293), - [anon_sym_BSLASHacs] = ACTIONS(6293), - [anon_sym_BSLASHAcs] = ACTIONS(6293), - [anon_sym_BSLASHacsp] = ACTIONS(6293), - [anon_sym_BSLASHAcsp] = ACTIONS(6293), - [anon_sym_BSLASHacl] = ACTIONS(6293), - [anon_sym_BSLASHAcl] = ACTIONS(6293), - [anon_sym_BSLASHaclp] = ACTIONS(6293), - [anon_sym_BSLASHAclp] = ACTIONS(6293), - [anon_sym_BSLASHacf] = ACTIONS(6293), - [anon_sym_BSLASHAcf] = ACTIONS(6293), - [anon_sym_BSLASHacfp] = ACTIONS(6293), - [anon_sym_BSLASHAcfp] = ACTIONS(6293), - [anon_sym_BSLASHac] = ACTIONS(6293), - [anon_sym_BSLASHAc] = ACTIONS(6293), - [anon_sym_BSLASHacp] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6293), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6293), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6293), - [anon_sym_BSLASHcolor] = ACTIONS(6293), - [anon_sym_BSLASHcolorbox] = ACTIONS(6293), - [anon_sym_BSLASHtextcolor] = ACTIONS(6293), - [anon_sym_BSLASHpagecolor] = ACTIONS(6293), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6293), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6293), - [anon_sym_BSLASHtext] = ACTIONS(6293), - [anon_sym_BSLASHintertext] = ACTIONS(6293), - [anon_sym_shortintertext] = ACTIONS(6293), - }, - [554] = { - [sym_command_name] = ACTIONS(6297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6297), - [anon_sym_LBRACK] = ACTIONS(6299), - [anon_sym_RBRACK] = ACTIONS(6299), - [anon_sym_COMMA] = ACTIONS(6299), - [anon_sym_EQ] = ACTIONS(6299), - [anon_sym_LPAREN] = ACTIONS(6299), - [anon_sym_RPAREN] = ACTIONS(6299), - [anon_sym_BSLASHpart] = ACTIONS(6297), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddpart] = ACTIONS(6297), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6299), - [anon_sym_BSLASHchapter] = ACTIONS(6297), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddchap] = ACTIONS(6297), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsection] = ACTIONS(6297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddsec] = ACTIONS(6297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubsection] = ACTIONS(6297), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6297), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHparagraph] = ACTIONS(6297), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6297), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6299), - [anon_sym_BSLASHitem] = ACTIONS(6297), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6299), - [anon_sym_LBRACE] = ACTIONS(6299), - [sym_word] = ACTIONS(6297), - [sym_placeholder] = ACTIONS(6299), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_LT] = ACTIONS(6297), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(6297), - [anon_sym_PIPE] = ACTIONS(6297), - [anon_sym_COLON] = ACTIONS(6297), - [anon_sym_SQUOTE] = ACTIONS(6297), - [anon_sym__] = ACTIONS(6299), - [anon_sym_CARET] = ACTIONS(6299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6299), - [anon_sym_DOLLAR] = ACTIONS(6297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6299), - [anon_sym_BSLASHbegin] = ACTIONS(6297), - [anon_sym_BSLASHtitle] = ACTIONS(6297), - [anon_sym_BSLASHauthor] = ACTIONS(6297), - [anon_sym_BSLASHusepackage] = ACTIONS(6297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6297), - [anon_sym_BSLASHinclude] = ACTIONS(6297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6297), - [anon_sym_BSLASHinput] = ACTIONS(6297), - [anon_sym_BSLASHsubfile] = ACTIONS(6297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6297), - [anon_sym_BSLASHbibliography] = ACTIONS(6297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6297), - [anon_sym_BSLASHincludesvg] = ACTIONS(6297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6297), - [anon_sym_BSLASHimport] = ACTIONS(6297), - [anon_sym_BSLASHsubimport] = ACTIONS(6297), - [anon_sym_BSLASHinputfrom] = ACTIONS(6297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6297), - [anon_sym_BSLASHincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHcaption] = ACTIONS(6297), - [anon_sym_BSLASHcite] = ACTIONS(6297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCite] = ACTIONS(6297), - [anon_sym_BSLASHnocite] = ACTIONS(6297), - [anon_sym_BSLASHcitet] = ACTIONS(6297), - [anon_sym_BSLASHcitep] = ACTIONS(6297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteauthor] = ACTIONS(6297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitetitle] = ACTIONS(6297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteyear] = ACTIONS(6297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitedate] = ACTIONS(6297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteurl] = ACTIONS(6297), - [anon_sym_BSLASHfullcite] = ACTIONS(6297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6297), - [anon_sym_BSLASHcitealt] = ACTIONS(6297), - [anon_sym_BSLASHcitealp] = ACTIONS(6297), - [anon_sym_BSLASHcitetext] = ACTIONS(6297), - [anon_sym_BSLASHparencite] = ACTIONS(6297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHParencite] = ACTIONS(6297), - [anon_sym_BSLASHfootcite] = ACTIONS(6297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6297), - [anon_sym_BSLASHtextcite] = ACTIONS(6297), - [anon_sym_BSLASHTextcite] = ACTIONS(6297), - [anon_sym_BSLASHsmartcite] = ACTIONS(6297), - [anon_sym_BSLASHSmartcite] = ACTIONS(6297), - [anon_sym_BSLASHsupercite] = ACTIONS(6297), - [anon_sym_BSLASHautocite] = ACTIONS(6297), - [anon_sym_BSLASHAutocite] = ACTIONS(6297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHvolcite] = ACTIONS(6297), - [anon_sym_BSLASHVolcite] = ACTIONS(6297), - [anon_sym_BSLASHpvolcite] = ACTIONS(6297), - [anon_sym_BSLASHPvolcite] = ACTIONS(6297), - [anon_sym_BSLASHfvolcite] = ACTIONS(6297), - [anon_sym_BSLASHftvolcite] = ACTIONS(6297), - [anon_sym_BSLASHsvolcite] = ACTIONS(6297), - [anon_sym_BSLASHSvolcite] = ACTIONS(6297), - [anon_sym_BSLASHtvolcite] = ACTIONS(6297), - [anon_sym_BSLASHTvolcite] = ACTIONS(6297), - [anon_sym_BSLASHavolcite] = ACTIONS(6297), - [anon_sym_BSLASHAvolcite] = ACTIONS(6297), - [anon_sym_BSLASHnotecite] = ACTIONS(6297), - [anon_sym_BSLASHNotecite] = ACTIONS(6297), - [anon_sym_BSLASHpnotecite] = ACTIONS(6297), - [anon_sym_BSLASHPnotecite] = ACTIONS(6297), - [anon_sym_BSLASHfnotecite] = ACTIONS(6297), - [anon_sym_BSLASHlabel] = ACTIONS(6297), - [anon_sym_BSLASHref] = ACTIONS(6297), - [anon_sym_BSLASHeqref] = ACTIONS(6297), - [anon_sym_BSLASHvref] = ACTIONS(6297), - [anon_sym_BSLASHVref] = ACTIONS(6297), - [anon_sym_BSLASHautoref] = ACTIONS(6297), - [anon_sym_BSLASHpageref] = ACTIONS(6297), - [anon_sym_BSLASHcref] = ACTIONS(6297), - [anon_sym_BSLASHCref] = ACTIONS(6297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnameCref] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHlabelcref] = ACTIONS(6297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCrefrange] = ACTIONS(6297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnewlabel] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6299), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHdef] = ACTIONS(6297), - [anon_sym_BSLASHlet] = ACTIONS(6297), - [anon_sym_BSLASHleft] = ACTIONS(6297), - [anon_sym_BSLASHbig] = ACTIONS(6297), - [anon_sym_BSLASHBig] = ACTIONS(6297), - [anon_sym_BSLASHbigg] = ACTIONS(6297), - [anon_sym_BSLASHBigg] = ACTIONS(6297), - [anon_sym_BSLASHbigl] = ACTIONS(6297), - [anon_sym_BSLASHBigl] = ACTIONS(6297), - [anon_sym_BSLASHbiggl] = ACTIONS(6297), - [anon_sym_BSLASHBiggl] = ACTIONS(6297), - [anon_sym_BSLASHright] = ACTIONS(6297), - [anon_sym_BSLASHbigr] = ACTIONS(6297), - [anon_sym_BSLASHBigr] = ACTIONS(6297), - [anon_sym_BSLASHbiggr] = ACTIONS(6297), - [anon_sym_BSLASHBiggr] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6297), - [anon_sym_BSLASHgls] = ACTIONS(6297), - [anon_sym_BSLASHGls] = ACTIONS(6297), - [anon_sym_BSLASHGLS] = ACTIONS(6297), - [anon_sym_BSLASHglspl] = ACTIONS(6297), - [anon_sym_BSLASHGlspl] = ACTIONS(6297), - [anon_sym_BSLASHGLSpl] = ACTIONS(6297), - [anon_sym_BSLASHglsdisp] = ACTIONS(6297), - [anon_sym_BSLASHglslink] = ACTIONS(6297), - [anon_sym_BSLASHglstext] = ACTIONS(6297), - [anon_sym_BSLASHGlstext] = ACTIONS(6297), - [anon_sym_BSLASHGLStext] = ACTIONS(6297), - [anon_sym_BSLASHglsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6297), - [anon_sym_BSLASHglsplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSplural] = ACTIONS(6297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHglsname] = ACTIONS(6297), - [anon_sym_BSLASHGlsname] = ACTIONS(6297), - [anon_sym_BSLASHGLSname] = ACTIONS(6297), - [anon_sym_BSLASHglssymbol] = ACTIONS(6297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6297), - [anon_sym_BSLASHglsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6297), - [anon_sym_BSLASHglsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6297), - [anon_sym_BSLASHglsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6297), - [anon_sym_BSLASHglsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6297), - [anon_sym_BSLASHglsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6297), - [anon_sym_BSLASHnewacronym] = ACTIONS(6297), - [anon_sym_BSLASHacrshort] = ACTIONS(6297), - [anon_sym_BSLASHAcrshort] = ACTIONS(6297), - [anon_sym_BSLASHACRshort] = ACTIONS(6297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6297), - [anon_sym_BSLASHacrlong] = ACTIONS(6297), - [anon_sym_BSLASHAcrlong] = ACTIONS(6297), - [anon_sym_BSLASHACRlong] = ACTIONS(6297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6297), - [anon_sym_BSLASHacrfull] = ACTIONS(6297), - [anon_sym_BSLASHAcrfull] = ACTIONS(6297), - [anon_sym_BSLASHACRfull] = ACTIONS(6297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6297), - [anon_sym_BSLASHacs] = ACTIONS(6297), - [anon_sym_BSLASHAcs] = ACTIONS(6297), - [anon_sym_BSLASHacsp] = ACTIONS(6297), - [anon_sym_BSLASHAcsp] = ACTIONS(6297), - [anon_sym_BSLASHacl] = ACTIONS(6297), - [anon_sym_BSLASHAcl] = ACTIONS(6297), - [anon_sym_BSLASHaclp] = ACTIONS(6297), - [anon_sym_BSLASHAclp] = ACTIONS(6297), - [anon_sym_BSLASHacf] = ACTIONS(6297), - [anon_sym_BSLASHAcf] = ACTIONS(6297), - [anon_sym_BSLASHacfp] = ACTIONS(6297), - [anon_sym_BSLASHAcfp] = ACTIONS(6297), - [anon_sym_BSLASHac] = ACTIONS(6297), - [anon_sym_BSLASHAc] = ACTIONS(6297), - [anon_sym_BSLASHacp] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6297), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6297), - [anon_sym_BSLASHcolor] = ACTIONS(6297), - [anon_sym_BSLASHcolorbox] = ACTIONS(6297), - [anon_sym_BSLASHtextcolor] = ACTIONS(6297), - [anon_sym_BSLASHpagecolor] = ACTIONS(6297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6297), - [anon_sym_BSLASHtext] = ACTIONS(6297), - [anon_sym_BSLASHintertext] = ACTIONS(6297), - [anon_sym_shortintertext] = ACTIONS(6297), - }, - [555] = { - [sym_command_name] = ACTIONS(6301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6301), - [anon_sym_LBRACK] = ACTIONS(6303), - [anon_sym_RBRACK] = ACTIONS(6303), - [anon_sym_COMMA] = ACTIONS(6303), - [anon_sym_EQ] = ACTIONS(6303), - [anon_sym_LPAREN] = ACTIONS(6303), - [anon_sym_RPAREN] = ACTIONS(6303), - [anon_sym_BSLASHpart] = ACTIONS(6301), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddpart] = ACTIONS(6301), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6303), - [anon_sym_BSLASHchapter] = ACTIONS(6301), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddchap] = ACTIONS(6301), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsection] = ACTIONS(6301), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddsec] = ACTIONS(6301), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubsection] = ACTIONS(6301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6301), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHparagraph] = ACTIONS(6301), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6301), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6303), - [anon_sym_BSLASHitem] = ACTIONS(6301), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6303), - [anon_sym_LBRACE] = ACTIONS(6303), - [sym_word] = ACTIONS(6301), - [sym_placeholder] = ACTIONS(6303), - [anon_sym_PLUS] = ACTIONS(6303), - [anon_sym_DASH] = ACTIONS(6303), - [anon_sym_STAR] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6303), - [anon_sym_LT] = ACTIONS(6301), - [anon_sym_GT] = ACTIONS(6301), - [anon_sym_BANG] = ACTIONS(6301), - [anon_sym_PIPE] = ACTIONS(6301), - [anon_sym_COLON] = ACTIONS(6301), - [anon_sym_SQUOTE] = ACTIONS(6301), - [anon_sym__] = ACTIONS(6303), - [anon_sym_CARET] = ACTIONS(6303), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6303), - [anon_sym_DOLLAR] = ACTIONS(6301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6303), - [anon_sym_BSLASHbegin] = ACTIONS(6301), - [anon_sym_BSLASHtitle] = ACTIONS(6301), - [anon_sym_BSLASHauthor] = ACTIONS(6301), - [anon_sym_BSLASHusepackage] = ACTIONS(6301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6301), - [anon_sym_BSLASHinclude] = ACTIONS(6301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6301), - [anon_sym_BSLASHinput] = ACTIONS(6301), - [anon_sym_BSLASHsubfile] = ACTIONS(6301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6301), - [anon_sym_BSLASHbibliography] = ACTIONS(6301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6301), - [anon_sym_BSLASHincludesvg] = ACTIONS(6301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6301), - [anon_sym_BSLASHimport] = ACTIONS(6301), - [anon_sym_BSLASHsubimport] = ACTIONS(6301), - [anon_sym_BSLASHinputfrom] = ACTIONS(6301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6301), - [anon_sym_BSLASHincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHcaption] = ACTIONS(6301), - [anon_sym_BSLASHcite] = ACTIONS(6301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCite] = ACTIONS(6301), - [anon_sym_BSLASHnocite] = ACTIONS(6301), - [anon_sym_BSLASHcitet] = ACTIONS(6301), - [anon_sym_BSLASHcitep] = ACTIONS(6301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteauthor] = ACTIONS(6301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitetitle] = ACTIONS(6301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteyear] = ACTIONS(6301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitedate] = ACTIONS(6301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteurl] = ACTIONS(6301), - [anon_sym_BSLASHfullcite] = ACTIONS(6301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6301), - [anon_sym_BSLASHcitealt] = ACTIONS(6301), - [anon_sym_BSLASHcitealp] = ACTIONS(6301), - [anon_sym_BSLASHcitetext] = ACTIONS(6301), - [anon_sym_BSLASHparencite] = ACTIONS(6301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHParencite] = ACTIONS(6301), - [anon_sym_BSLASHfootcite] = ACTIONS(6301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6301), - [anon_sym_BSLASHtextcite] = ACTIONS(6301), - [anon_sym_BSLASHTextcite] = ACTIONS(6301), - [anon_sym_BSLASHsmartcite] = ACTIONS(6301), - [anon_sym_BSLASHSmartcite] = ACTIONS(6301), - [anon_sym_BSLASHsupercite] = ACTIONS(6301), - [anon_sym_BSLASHautocite] = ACTIONS(6301), - [anon_sym_BSLASHAutocite] = ACTIONS(6301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHvolcite] = ACTIONS(6301), - [anon_sym_BSLASHVolcite] = ACTIONS(6301), - [anon_sym_BSLASHpvolcite] = ACTIONS(6301), - [anon_sym_BSLASHPvolcite] = ACTIONS(6301), - [anon_sym_BSLASHfvolcite] = ACTIONS(6301), - [anon_sym_BSLASHftvolcite] = ACTIONS(6301), - [anon_sym_BSLASHsvolcite] = ACTIONS(6301), - [anon_sym_BSLASHSvolcite] = ACTIONS(6301), - [anon_sym_BSLASHtvolcite] = ACTIONS(6301), - [anon_sym_BSLASHTvolcite] = ACTIONS(6301), - [anon_sym_BSLASHavolcite] = ACTIONS(6301), - [anon_sym_BSLASHAvolcite] = ACTIONS(6301), - [anon_sym_BSLASHnotecite] = ACTIONS(6301), - [anon_sym_BSLASHNotecite] = ACTIONS(6301), - [anon_sym_BSLASHpnotecite] = ACTIONS(6301), - [anon_sym_BSLASHPnotecite] = ACTIONS(6301), - [anon_sym_BSLASHfnotecite] = ACTIONS(6301), - [anon_sym_BSLASHlabel] = ACTIONS(6301), - [anon_sym_BSLASHref] = ACTIONS(6301), - [anon_sym_BSLASHeqref] = ACTIONS(6301), - [anon_sym_BSLASHvref] = ACTIONS(6301), - [anon_sym_BSLASHVref] = ACTIONS(6301), - [anon_sym_BSLASHautoref] = ACTIONS(6301), - [anon_sym_BSLASHpageref] = ACTIONS(6301), - [anon_sym_BSLASHcref] = ACTIONS(6301), - [anon_sym_BSLASHCref] = ACTIONS(6301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnameCref] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHlabelcref] = ACTIONS(6301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCrefrange] = ACTIONS(6301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnewlabel] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6303), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHdef] = ACTIONS(6301), - [anon_sym_BSLASHlet] = ACTIONS(6301), - [anon_sym_BSLASHleft] = ACTIONS(6301), - [anon_sym_BSLASHbig] = ACTIONS(6301), - [anon_sym_BSLASHBig] = ACTIONS(6301), - [anon_sym_BSLASHbigg] = ACTIONS(6301), - [anon_sym_BSLASHBigg] = ACTIONS(6301), - [anon_sym_BSLASHbigl] = ACTIONS(6301), - [anon_sym_BSLASHBigl] = ACTIONS(6301), - [anon_sym_BSLASHbiggl] = ACTIONS(6301), - [anon_sym_BSLASHBiggl] = ACTIONS(6301), - [anon_sym_BSLASHright] = ACTIONS(6301), - [anon_sym_BSLASHbigr] = ACTIONS(6301), - [anon_sym_BSLASHBigr] = ACTIONS(6301), - [anon_sym_BSLASHbiggr] = ACTIONS(6301), - [anon_sym_BSLASHBiggr] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6301), - [anon_sym_BSLASHgls] = ACTIONS(6301), - [anon_sym_BSLASHGls] = ACTIONS(6301), - [anon_sym_BSLASHGLS] = ACTIONS(6301), - [anon_sym_BSLASHglspl] = ACTIONS(6301), - [anon_sym_BSLASHGlspl] = ACTIONS(6301), - [anon_sym_BSLASHGLSpl] = ACTIONS(6301), - [anon_sym_BSLASHglsdisp] = ACTIONS(6301), - [anon_sym_BSLASHglslink] = ACTIONS(6301), - [anon_sym_BSLASHglstext] = ACTIONS(6301), - [anon_sym_BSLASHGlstext] = ACTIONS(6301), - [anon_sym_BSLASHGLStext] = ACTIONS(6301), - [anon_sym_BSLASHglsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6301), - [anon_sym_BSLASHglsplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSplural] = ACTIONS(6301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHglsname] = ACTIONS(6301), - [anon_sym_BSLASHGlsname] = ACTIONS(6301), - [anon_sym_BSLASHGLSname] = ACTIONS(6301), - [anon_sym_BSLASHglssymbol] = ACTIONS(6301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6301), - [anon_sym_BSLASHglsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6301), - [anon_sym_BSLASHglsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6301), - [anon_sym_BSLASHglsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6301), - [anon_sym_BSLASHglsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6301), - [anon_sym_BSLASHglsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6301), - [anon_sym_BSLASHnewacronym] = ACTIONS(6301), - [anon_sym_BSLASHacrshort] = ACTIONS(6301), - [anon_sym_BSLASHAcrshort] = ACTIONS(6301), - [anon_sym_BSLASHACRshort] = ACTIONS(6301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6301), - [anon_sym_BSLASHacrlong] = ACTIONS(6301), - [anon_sym_BSLASHAcrlong] = ACTIONS(6301), - [anon_sym_BSLASHACRlong] = ACTIONS(6301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6301), - [anon_sym_BSLASHacrfull] = ACTIONS(6301), - [anon_sym_BSLASHAcrfull] = ACTIONS(6301), - [anon_sym_BSLASHACRfull] = ACTIONS(6301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6301), - [anon_sym_BSLASHacs] = ACTIONS(6301), - [anon_sym_BSLASHAcs] = ACTIONS(6301), - [anon_sym_BSLASHacsp] = ACTIONS(6301), - [anon_sym_BSLASHAcsp] = ACTIONS(6301), - [anon_sym_BSLASHacl] = ACTIONS(6301), - [anon_sym_BSLASHAcl] = ACTIONS(6301), - [anon_sym_BSLASHaclp] = ACTIONS(6301), - [anon_sym_BSLASHAclp] = ACTIONS(6301), - [anon_sym_BSLASHacf] = ACTIONS(6301), - [anon_sym_BSLASHAcf] = ACTIONS(6301), - [anon_sym_BSLASHacfp] = ACTIONS(6301), - [anon_sym_BSLASHAcfp] = ACTIONS(6301), - [anon_sym_BSLASHac] = ACTIONS(6301), - [anon_sym_BSLASHAc] = ACTIONS(6301), - [anon_sym_BSLASHacp] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6301), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6301), - [anon_sym_BSLASHcolor] = ACTIONS(6301), - [anon_sym_BSLASHcolorbox] = ACTIONS(6301), - [anon_sym_BSLASHtextcolor] = ACTIONS(6301), - [anon_sym_BSLASHpagecolor] = ACTIONS(6301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6301), - [anon_sym_BSLASHtext] = ACTIONS(6301), - [anon_sym_BSLASHintertext] = ACTIONS(6301), - [anon_sym_shortintertext] = ACTIONS(6301), - }, - [556] = { - [sym_command_name] = ACTIONS(6305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6305), - [anon_sym_LBRACK] = ACTIONS(6307), - [anon_sym_RBRACK] = ACTIONS(6307), - [anon_sym_COMMA] = ACTIONS(6307), - [anon_sym_EQ] = ACTIONS(6307), - [anon_sym_LPAREN] = ACTIONS(6307), - [anon_sym_RPAREN] = ACTIONS(6307), - [anon_sym_BSLASHpart] = ACTIONS(6305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddpart] = ACTIONS(6305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6307), - [anon_sym_BSLASHchapter] = ACTIONS(6305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddchap] = ACTIONS(6305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsection] = ACTIONS(6305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddsec] = ACTIONS(6305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubsection] = ACTIONS(6305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHparagraph] = ACTIONS(6305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6307), - [anon_sym_BSLASHitem] = ACTIONS(6305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6307), - [anon_sym_LBRACE] = ACTIONS(6307), - [sym_word] = ACTIONS(6305), - [sym_placeholder] = ACTIONS(6307), - [anon_sym_PLUS] = ACTIONS(6307), - [anon_sym_DASH] = ACTIONS(6307), - [anon_sym_STAR] = ACTIONS(6307), - [anon_sym_SLASH] = ACTIONS(6307), - [anon_sym_LT] = ACTIONS(6305), - [anon_sym_GT] = ACTIONS(6305), - [anon_sym_BANG] = ACTIONS(6305), - [anon_sym_PIPE] = ACTIONS(6305), - [anon_sym_COLON] = ACTIONS(6305), - [anon_sym_SQUOTE] = ACTIONS(6305), - [anon_sym__] = ACTIONS(6307), - [anon_sym_CARET] = ACTIONS(6307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6307), - [anon_sym_DOLLAR] = ACTIONS(6305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6307), - [anon_sym_BSLASHbegin] = ACTIONS(6305), - [anon_sym_BSLASHtitle] = ACTIONS(6305), - [anon_sym_BSLASHauthor] = ACTIONS(6305), - [anon_sym_BSLASHusepackage] = ACTIONS(6305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6305), - [anon_sym_BSLASHinclude] = ACTIONS(6305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6305), - [anon_sym_BSLASHinput] = ACTIONS(6305), - [anon_sym_BSLASHsubfile] = ACTIONS(6305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6305), - [anon_sym_BSLASHbibliography] = ACTIONS(6305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6305), - [anon_sym_BSLASHincludesvg] = ACTIONS(6305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6305), - [anon_sym_BSLASHimport] = ACTIONS(6305), - [anon_sym_BSLASHsubimport] = ACTIONS(6305), - [anon_sym_BSLASHinputfrom] = ACTIONS(6305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6305), - [anon_sym_BSLASHincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHcaption] = ACTIONS(6305), - [anon_sym_BSLASHcite] = ACTIONS(6305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCite] = ACTIONS(6305), - [anon_sym_BSLASHnocite] = ACTIONS(6305), - [anon_sym_BSLASHcitet] = ACTIONS(6305), - [anon_sym_BSLASHcitep] = ACTIONS(6305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteauthor] = ACTIONS(6305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitetitle] = ACTIONS(6305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteyear] = ACTIONS(6305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitedate] = ACTIONS(6305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteurl] = ACTIONS(6305), - [anon_sym_BSLASHfullcite] = ACTIONS(6305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6305), - [anon_sym_BSLASHcitealt] = ACTIONS(6305), - [anon_sym_BSLASHcitealp] = ACTIONS(6305), - [anon_sym_BSLASHcitetext] = ACTIONS(6305), - [anon_sym_BSLASHparencite] = ACTIONS(6305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHParencite] = ACTIONS(6305), - [anon_sym_BSLASHfootcite] = ACTIONS(6305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6305), - [anon_sym_BSLASHtextcite] = ACTIONS(6305), - [anon_sym_BSLASHTextcite] = ACTIONS(6305), - [anon_sym_BSLASHsmartcite] = ACTIONS(6305), - [anon_sym_BSLASHSmartcite] = ACTIONS(6305), - [anon_sym_BSLASHsupercite] = ACTIONS(6305), - [anon_sym_BSLASHautocite] = ACTIONS(6305), - [anon_sym_BSLASHAutocite] = ACTIONS(6305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHvolcite] = ACTIONS(6305), - [anon_sym_BSLASHVolcite] = ACTIONS(6305), - [anon_sym_BSLASHpvolcite] = ACTIONS(6305), - [anon_sym_BSLASHPvolcite] = ACTIONS(6305), - [anon_sym_BSLASHfvolcite] = ACTIONS(6305), - [anon_sym_BSLASHftvolcite] = ACTIONS(6305), - [anon_sym_BSLASHsvolcite] = ACTIONS(6305), - [anon_sym_BSLASHSvolcite] = ACTIONS(6305), - [anon_sym_BSLASHtvolcite] = ACTIONS(6305), - [anon_sym_BSLASHTvolcite] = ACTIONS(6305), - [anon_sym_BSLASHavolcite] = ACTIONS(6305), - [anon_sym_BSLASHAvolcite] = ACTIONS(6305), - [anon_sym_BSLASHnotecite] = ACTIONS(6305), - [anon_sym_BSLASHNotecite] = ACTIONS(6305), - [anon_sym_BSLASHpnotecite] = ACTIONS(6305), - [anon_sym_BSLASHPnotecite] = ACTIONS(6305), - [anon_sym_BSLASHfnotecite] = ACTIONS(6305), - [anon_sym_BSLASHlabel] = ACTIONS(6305), - [anon_sym_BSLASHref] = ACTIONS(6305), - [anon_sym_BSLASHeqref] = ACTIONS(6305), - [anon_sym_BSLASHvref] = ACTIONS(6305), - [anon_sym_BSLASHVref] = ACTIONS(6305), - [anon_sym_BSLASHautoref] = ACTIONS(6305), - [anon_sym_BSLASHpageref] = ACTIONS(6305), - [anon_sym_BSLASHcref] = ACTIONS(6305), - [anon_sym_BSLASHCref] = ACTIONS(6305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnameCref] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHlabelcref] = ACTIONS(6305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCrefrange] = ACTIONS(6305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnewlabel] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6307), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHdef] = ACTIONS(6305), - [anon_sym_BSLASHlet] = ACTIONS(6305), - [anon_sym_BSLASHleft] = ACTIONS(6305), - [anon_sym_BSLASHbig] = ACTIONS(6305), - [anon_sym_BSLASHBig] = ACTIONS(6305), - [anon_sym_BSLASHbigg] = ACTIONS(6305), - [anon_sym_BSLASHBigg] = ACTIONS(6305), - [anon_sym_BSLASHbigl] = ACTIONS(6305), - [anon_sym_BSLASHBigl] = ACTIONS(6305), - [anon_sym_BSLASHbiggl] = ACTIONS(6305), - [anon_sym_BSLASHBiggl] = ACTIONS(6305), - [anon_sym_BSLASHright] = ACTIONS(6305), - [anon_sym_BSLASHbigr] = ACTIONS(6305), - [anon_sym_BSLASHBigr] = ACTIONS(6305), - [anon_sym_BSLASHbiggr] = ACTIONS(6305), - [anon_sym_BSLASHBiggr] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6305), - [anon_sym_BSLASHgls] = ACTIONS(6305), - [anon_sym_BSLASHGls] = ACTIONS(6305), - [anon_sym_BSLASHGLS] = ACTIONS(6305), - [anon_sym_BSLASHglspl] = ACTIONS(6305), - [anon_sym_BSLASHGlspl] = ACTIONS(6305), - [anon_sym_BSLASHGLSpl] = ACTIONS(6305), - [anon_sym_BSLASHglsdisp] = ACTIONS(6305), - [anon_sym_BSLASHglslink] = ACTIONS(6305), - [anon_sym_BSLASHglstext] = ACTIONS(6305), - [anon_sym_BSLASHGlstext] = ACTIONS(6305), - [anon_sym_BSLASHGLStext] = ACTIONS(6305), - [anon_sym_BSLASHglsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6305), - [anon_sym_BSLASHglsplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSplural] = ACTIONS(6305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHglsname] = ACTIONS(6305), - [anon_sym_BSLASHGlsname] = ACTIONS(6305), - [anon_sym_BSLASHGLSname] = ACTIONS(6305), - [anon_sym_BSLASHglssymbol] = ACTIONS(6305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6305), - [anon_sym_BSLASHglsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6305), - [anon_sym_BSLASHglsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6305), - [anon_sym_BSLASHglsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6305), - [anon_sym_BSLASHglsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6305), - [anon_sym_BSLASHglsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6305), - [anon_sym_BSLASHnewacronym] = ACTIONS(6305), - [anon_sym_BSLASHacrshort] = ACTIONS(6305), - [anon_sym_BSLASHAcrshort] = ACTIONS(6305), - [anon_sym_BSLASHACRshort] = ACTIONS(6305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6305), - [anon_sym_BSLASHacrlong] = ACTIONS(6305), - [anon_sym_BSLASHAcrlong] = ACTIONS(6305), - [anon_sym_BSLASHACRlong] = ACTIONS(6305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6305), - [anon_sym_BSLASHacrfull] = ACTIONS(6305), - [anon_sym_BSLASHAcrfull] = ACTIONS(6305), - [anon_sym_BSLASHACRfull] = ACTIONS(6305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6305), - [anon_sym_BSLASHacs] = ACTIONS(6305), - [anon_sym_BSLASHAcs] = ACTIONS(6305), - [anon_sym_BSLASHacsp] = ACTIONS(6305), - [anon_sym_BSLASHAcsp] = ACTIONS(6305), - [anon_sym_BSLASHacl] = ACTIONS(6305), - [anon_sym_BSLASHAcl] = ACTIONS(6305), - [anon_sym_BSLASHaclp] = ACTIONS(6305), - [anon_sym_BSLASHAclp] = ACTIONS(6305), - [anon_sym_BSLASHacf] = ACTIONS(6305), - [anon_sym_BSLASHAcf] = ACTIONS(6305), - [anon_sym_BSLASHacfp] = ACTIONS(6305), - [anon_sym_BSLASHAcfp] = ACTIONS(6305), - [anon_sym_BSLASHac] = ACTIONS(6305), - [anon_sym_BSLASHAc] = ACTIONS(6305), - [anon_sym_BSLASHacp] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6305), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6305), - [anon_sym_BSLASHcolor] = ACTIONS(6305), - [anon_sym_BSLASHcolorbox] = ACTIONS(6305), - [anon_sym_BSLASHtextcolor] = ACTIONS(6305), - [anon_sym_BSLASHpagecolor] = ACTIONS(6305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6305), - [anon_sym_BSLASHtext] = ACTIONS(6305), - [anon_sym_BSLASHintertext] = ACTIONS(6305), - [anon_sym_shortintertext] = ACTIONS(6305), - }, - [557] = { - [sym_command_name] = ACTIONS(6309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6309), - [anon_sym_LBRACK] = ACTIONS(6311), - [anon_sym_RBRACK] = ACTIONS(6311), - [anon_sym_COMMA] = ACTIONS(6311), - [anon_sym_EQ] = ACTIONS(6311), - [anon_sym_LPAREN] = ACTIONS(6311), - [anon_sym_RPAREN] = ACTIONS(6311), - [anon_sym_BSLASHpart] = ACTIONS(6309), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddpart] = ACTIONS(6309), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6311), - [anon_sym_BSLASHchapter] = ACTIONS(6309), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddchap] = ACTIONS(6309), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsection] = ACTIONS(6309), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddsec] = ACTIONS(6309), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubsection] = ACTIONS(6309), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6309), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHparagraph] = ACTIONS(6309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6309), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6311), - [anon_sym_BSLASHitem] = ACTIONS(6309), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(6311), - [sym_word] = ACTIONS(6309), - [sym_placeholder] = ACTIONS(6311), - [anon_sym_PLUS] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [anon_sym_STAR] = ACTIONS(6311), - [anon_sym_SLASH] = ACTIONS(6311), - [anon_sym_LT] = ACTIONS(6309), - [anon_sym_GT] = ACTIONS(6309), - [anon_sym_BANG] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(6309), - [anon_sym_COLON] = ACTIONS(6309), - [anon_sym_SQUOTE] = ACTIONS(6309), - [anon_sym__] = ACTIONS(6311), - [anon_sym_CARET] = ACTIONS(6311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6311), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6311), - [anon_sym_DOLLAR] = ACTIONS(6309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6311), - [anon_sym_BSLASHbegin] = ACTIONS(6309), - [anon_sym_BSLASHtitle] = ACTIONS(6309), - [anon_sym_BSLASHauthor] = ACTIONS(6309), - [anon_sym_BSLASHusepackage] = ACTIONS(6309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6309), - [anon_sym_BSLASHinclude] = ACTIONS(6309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6309), - [anon_sym_BSLASHinput] = ACTIONS(6309), - [anon_sym_BSLASHsubfile] = ACTIONS(6309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6309), - [anon_sym_BSLASHbibliography] = ACTIONS(6309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6309), - [anon_sym_BSLASHincludesvg] = ACTIONS(6309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6309), - [anon_sym_BSLASHimport] = ACTIONS(6309), - [anon_sym_BSLASHsubimport] = ACTIONS(6309), - [anon_sym_BSLASHinputfrom] = ACTIONS(6309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6309), - [anon_sym_BSLASHincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHcaption] = ACTIONS(6309), - [anon_sym_BSLASHcite] = ACTIONS(6309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCite] = ACTIONS(6309), - [anon_sym_BSLASHnocite] = ACTIONS(6309), - [anon_sym_BSLASHcitet] = ACTIONS(6309), - [anon_sym_BSLASHcitep] = ACTIONS(6309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteauthor] = ACTIONS(6309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitetitle] = ACTIONS(6309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteyear] = ACTIONS(6309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitedate] = ACTIONS(6309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteurl] = ACTIONS(6309), - [anon_sym_BSLASHfullcite] = ACTIONS(6309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6309), - [anon_sym_BSLASHcitealt] = ACTIONS(6309), - [anon_sym_BSLASHcitealp] = ACTIONS(6309), - [anon_sym_BSLASHcitetext] = ACTIONS(6309), - [anon_sym_BSLASHparencite] = ACTIONS(6309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHParencite] = ACTIONS(6309), - [anon_sym_BSLASHfootcite] = ACTIONS(6309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6309), - [anon_sym_BSLASHtextcite] = ACTIONS(6309), - [anon_sym_BSLASHTextcite] = ACTIONS(6309), - [anon_sym_BSLASHsmartcite] = ACTIONS(6309), - [anon_sym_BSLASHSmartcite] = ACTIONS(6309), - [anon_sym_BSLASHsupercite] = ACTIONS(6309), - [anon_sym_BSLASHautocite] = ACTIONS(6309), - [anon_sym_BSLASHAutocite] = ACTIONS(6309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHvolcite] = ACTIONS(6309), - [anon_sym_BSLASHVolcite] = ACTIONS(6309), - [anon_sym_BSLASHpvolcite] = ACTIONS(6309), - [anon_sym_BSLASHPvolcite] = ACTIONS(6309), - [anon_sym_BSLASHfvolcite] = ACTIONS(6309), - [anon_sym_BSLASHftvolcite] = ACTIONS(6309), - [anon_sym_BSLASHsvolcite] = ACTIONS(6309), - [anon_sym_BSLASHSvolcite] = ACTIONS(6309), - [anon_sym_BSLASHtvolcite] = ACTIONS(6309), - [anon_sym_BSLASHTvolcite] = ACTIONS(6309), - [anon_sym_BSLASHavolcite] = ACTIONS(6309), - [anon_sym_BSLASHAvolcite] = ACTIONS(6309), - [anon_sym_BSLASHnotecite] = ACTIONS(6309), - [anon_sym_BSLASHNotecite] = ACTIONS(6309), - [anon_sym_BSLASHpnotecite] = ACTIONS(6309), - [anon_sym_BSLASHPnotecite] = ACTIONS(6309), - [anon_sym_BSLASHfnotecite] = ACTIONS(6309), - [anon_sym_BSLASHlabel] = ACTIONS(6309), - [anon_sym_BSLASHref] = ACTIONS(6309), - [anon_sym_BSLASHeqref] = ACTIONS(6309), - [anon_sym_BSLASHvref] = ACTIONS(6309), - [anon_sym_BSLASHVref] = ACTIONS(6309), - [anon_sym_BSLASHautoref] = ACTIONS(6309), - [anon_sym_BSLASHpageref] = ACTIONS(6309), - [anon_sym_BSLASHcref] = ACTIONS(6309), - [anon_sym_BSLASHCref] = ACTIONS(6309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnameCref] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHlabelcref] = ACTIONS(6309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCrefrange] = ACTIONS(6309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnewlabel] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6311), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHdef] = ACTIONS(6309), - [anon_sym_BSLASHlet] = ACTIONS(6309), - [anon_sym_BSLASHleft] = ACTIONS(6309), - [anon_sym_BSLASHbig] = ACTIONS(6309), - [anon_sym_BSLASHBig] = ACTIONS(6309), - [anon_sym_BSLASHbigg] = ACTIONS(6309), - [anon_sym_BSLASHBigg] = ACTIONS(6309), - [anon_sym_BSLASHbigl] = ACTIONS(6309), - [anon_sym_BSLASHBigl] = ACTIONS(6309), - [anon_sym_BSLASHbiggl] = ACTIONS(6309), - [anon_sym_BSLASHBiggl] = ACTIONS(6309), - [anon_sym_BSLASHright] = ACTIONS(6309), - [anon_sym_BSLASHbigr] = ACTIONS(6309), - [anon_sym_BSLASHBigr] = ACTIONS(6309), - [anon_sym_BSLASHbiggr] = ACTIONS(6309), - [anon_sym_BSLASHBiggr] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6309), - [anon_sym_BSLASHgls] = ACTIONS(6309), - [anon_sym_BSLASHGls] = ACTIONS(6309), - [anon_sym_BSLASHGLS] = ACTIONS(6309), - [anon_sym_BSLASHglspl] = ACTIONS(6309), - [anon_sym_BSLASHGlspl] = ACTIONS(6309), - [anon_sym_BSLASHGLSpl] = ACTIONS(6309), - [anon_sym_BSLASHglsdisp] = ACTIONS(6309), - [anon_sym_BSLASHglslink] = ACTIONS(6309), - [anon_sym_BSLASHglstext] = ACTIONS(6309), - [anon_sym_BSLASHGlstext] = ACTIONS(6309), - [anon_sym_BSLASHGLStext] = ACTIONS(6309), - [anon_sym_BSLASHglsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6309), - [anon_sym_BSLASHglsplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSplural] = ACTIONS(6309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHglsname] = ACTIONS(6309), - [anon_sym_BSLASHGlsname] = ACTIONS(6309), - [anon_sym_BSLASHGLSname] = ACTIONS(6309), - [anon_sym_BSLASHglssymbol] = ACTIONS(6309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6309), - [anon_sym_BSLASHglsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6309), - [anon_sym_BSLASHglsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6309), - [anon_sym_BSLASHglsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6309), - [anon_sym_BSLASHglsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6309), - [anon_sym_BSLASHglsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6309), - [anon_sym_BSLASHnewacronym] = ACTIONS(6309), - [anon_sym_BSLASHacrshort] = ACTIONS(6309), - [anon_sym_BSLASHAcrshort] = ACTIONS(6309), - [anon_sym_BSLASHACRshort] = ACTIONS(6309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6309), - [anon_sym_BSLASHacrlong] = ACTIONS(6309), - [anon_sym_BSLASHAcrlong] = ACTIONS(6309), - [anon_sym_BSLASHACRlong] = ACTIONS(6309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6309), - [anon_sym_BSLASHacrfull] = ACTIONS(6309), - [anon_sym_BSLASHAcrfull] = ACTIONS(6309), - [anon_sym_BSLASHACRfull] = ACTIONS(6309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6309), - [anon_sym_BSLASHacs] = ACTIONS(6309), - [anon_sym_BSLASHAcs] = ACTIONS(6309), - [anon_sym_BSLASHacsp] = ACTIONS(6309), - [anon_sym_BSLASHAcsp] = ACTIONS(6309), - [anon_sym_BSLASHacl] = ACTIONS(6309), - [anon_sym_BSLASHAcl] = ACTIONS(6309), - [anon_sym_BSLASHaclp] = ACTIONS(6309), - [anon_sym_BSLASHAclp] = ACTIONS(6309), - [anon_sym_BSLASHacf] = ACTIONS(6309), - [anon_sym_BSLASHAcf] = ACTIONS(6309), - [anon_sym_BSLASHacfp] = ACTIONS(6309), - [anon_sym_BSLASHAcfp] = ACTIONS(6309), - [anon_sym_BSLASHac] = ACTIONS(6309), - [anon_sym_BSLASHAc] = ACTIONS(6309), - [anon_sym_BSLASHacp] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6309), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6309), - [anon_sym_BSLASHcolor] = ACTIONS(6309), - [anon_sym_BSLASHcolorbox] = ACTIONS(6309), - [anon_sym_BSLASHtextcolor] = ACTIONS(6309), - [anon_sym_BSLASHpagecolor] = ACTIONS(6309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6309), - [anon_sym_BSLASHtext] = ACTIONS(6309), - [anon_sym_BSLASHintertext] = ACTIONS(6309), - [anon_sym_shortintertext] = ACTIONS(6309), - }, - [558] = { - [sym_command_name] = ACTIONS(6313), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6313), - [anon_sym_LBRACK] = ACTIONS(6315), - [anon_sym_RBRACK] = ACTIONS(6315), - [anon_sym_COMMA] = ACTIONS(6315), - [anon_sym_EQ] = ACTIONS(6315), - [anon_sym_LPAREN] = ACTIONS(6315), - [anon_sym_RPAREN] = ACTIONS(6315), - [anon_sym_BSLASHpart] = ACTIONS(6313), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddpart] = ACTIONS(6313), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6315), - [anon_sym_BSLASHchapter] = ACTIONS(6313), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddchap] = ACTIONS(6313), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsection] = ACTIONS(6313), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddsec] = ACTIONS(6313), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubsection] = ACTIONS(6313), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6313), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHparagraph] = ACTIONS(6313), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6315), - [anon_sym_BSLASHitem] = ACTIONS(6313), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6315), - [anon_sym_LBRACE] = ACTIONS(6315), - [sym_word] = ACTIONS(6313), - [sym_placeholder] = ACTIONS(6315), - [anon_sym_PLUS] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6315), - [anon_sym_SLASH] = ACTIONS(6315), - [anon_sym_LT] = ACTIONS(6313), - [anon_sym_GT] = ACTIONS(6313), - [anon_sym_BANG] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(6313), - [anon_sym_COLON] = ACTIONS(6313), - [anon_sym_SQUOTE] = ACTIONS(6313), - [anon_sym__] = ACTIONS(6315), - [anon_sym_CARET] = ACTIONS(6315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6315), - [anon_sym_DOLLAR] = ACTIONS(6313), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6315), - [anon_sym_BSLASHbegin] = ACTIONS(6313), - [anon_sym_BSLASHtitle] = ACTIONS(6313), - [anon_sym_BSLASHauthor] = ACTIONS(6313), - [anon_sym_BSLASHusepackage] = ACTIONS(6313), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6313), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6313), - [anon_sym_BSLASHinclude] = ACTIONS(6313), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6313), - [anon_sym_BSLASHinput] = ACTIONS(6313), - [anon_sym_BSLASHsubfile] = ACTIONS(6313), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6313), - [anon_sym_BSLASHbibliography] = ACTIONS(6313), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6313), - [anon_sym_BSLASHincludesvg] = ACTIONS(6313), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6313), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6313), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6313), - [anon_sym_BSLASHimport] = ACTIONS(6313), - [anon_sym_BSLASHsubimport] = ACTIONS(6313), - [anon_sym_BSLASHinputfrom] = ACTIONS(6313), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6313), - [anon_sym_BSLASHincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHcaption] = ACTIONS(6313), - [anon_sym_BSLASHcite] = ACTIONS(6313), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCite] = ACTIONS(6313), - [anon_sym_BSLASHnocite] = ACTIONS(6313), - [anon_sym_BSLASHcitet] = ACTIONS(6313), - [anon_sym_BSLASHcitep] = ACTIONS(6313), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteauthor] = ACTIONS(6313), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6313), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitetitle] = ACTIONS(6313), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteyear] = ACTIONS(6313), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitedate] = ACTIONS(6313), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteurl] = ACTIONS(6313), - [anon_sym_BSLASHfullcite] = ACTIONS(6313), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6313), - [anon_sym_BSLASHcitealt] = ACTIONS(6313), - [anon_sym_BSLASHcitealp] = ACTIONS(6313), - [anon_sym_BSLASHcitetext] = ACTIONS(6313), - [anon_sym_BSLASHparencite] = ACTIONS(6313), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHParencite] = ACTIONS(6313), - [anon_sym_BSLASHfootcite] = ACTIONS(6313), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6313), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6313), - [anon_sym_BSLASHtextcite] = ACTIONS(6313), - [anon_sym_BSLASHTextcite] = ACTIONS(6313), - [anon_sym_BSLASHsmartcite] = ACTIONS(6313), - [anon_sym_BSLASHSmartcite] = ACTIONS(6313), - [anon_sym_BSLASHsupercite] = ACTIONS(6313), - [anon_sym_BSLASHautocite] = ACTIONS(6313), - [anon_sym_BSLASHAutocite] = ACTIONS(6313), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHvolcite] = ACTIONS(6313), - [anon_sym_BSLASHVolcite] = ACTIONS(6313), - [anon_sym_BSLASHpvolcite] = ACTIONS(6313), - [anon_sym_BSLASHPvolcite] = ACTIONS(6313), - [anon_sym_BSLASHfvolcite] = ACTIONS(6313), - [anon_sym_BSLASHftvolcite] = ACTIONS(6313), - [anon_sym_BSLASHsvolcite] = ACTIONS(6313), - [anon_sym_BSLASHSvolcite] = ACTIONS(6313), - [anon_sym_BSLASHtvolcite] = ACTIONS(6313), - [anon_sym_BSLASHTvolcite] = ACTIONS(6313), - [anon_sym_BSLASHavolcite] = ACTIONS(6313), - [anon_sym_BSLASHAvolcite] = ACTIONS(6313), - [anon_sym_BSLASHnotecite] = ACTIONS(6313), - [anon_sym_BSLASHNotecite] = ACTIONS(6313), - [anon_sym_BSLASHpnotecite] = ACTIONS(6313), - [anon_sym_BSLASHPnotecite] = ACTIONS(6313), - [anon_sym_BSLASHfnotecite] = ACTIONS(6313), - [anon_sym_BSLASHlabel] = ACTIONS(6313), - [anon_sym_BSLASHref] = ACTIONS(6313), - [anon_sym_BSLASHeqref] = ACTIONS(6313), - [anon_sym_BSLASHvref] = ACTIONS(6313), - [anon_sym_BSLASHVref] = ACTIONS(6313), - [anon_sym_BSLASHautoref] = ACTIONS(6313), - [anon_sym_BSLASHpageref] = ACTIONS(6313), - [anon_sym_BSLASHcref] = ACTIONS(6313), - [anon_sym_BSLASHCref] = ACTIONS(6313), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnameCref] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHlabelcref] = ACTIONS(6313), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCrefrange] = ACTIONS(6313), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnewlabel] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6313), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6313), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6315), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHdef] = ACTIONS(6313), - [anon_sym_BSLASHlet] = ACTIONS(6313), - [anon_sym_BSLASHleft] = ACTIONS(6313), - [anon_sym_BSLASHbig] = ACTIONS(6313), - [anon_sym_BSLASHBig] = ACTIONS(6313), - [anon_sym_BSLASHbigg] = ACTIONS(6313), - [anon_sym_BSLASHBigg] = ACTIONS(6313), - [anon_sym_BSLASHbigl] = ACTIONS(6313), - [anon_sym_BSLASHBigl] = ACTIONS(6313), - [anon_sym_BSLASHbiggl] = ACTIONS(6313), - [anon_sym_BSLASHBiggl] = ACTIONS(6313), - [anon_sym_BSLASHright] = ACTIONS(6313), - [anon_sym_BSLASHbigr] = ACTIONS(6313), - [anon_sym_BSLASHBigr] = ACTIONS(6313), - [anon_sym_BSLASHbiggr] = ACTIONS(6313), - [anon_sym_BSLASHBiggr] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6313), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6313), - [anon_sym_BSLASHgls] = ACTIONS(6313), - [anon_sym_BSLASHGls] = ACTIONS(6313), - [anon_sym_BSLASHGLS] = ACTIONS(6313), - [anon_sym_BSLASHglspl] = ACTIONS(6313), - [anon_sym_BSLASHGlspl] = ACTIONS(6313), - [anon_sym_BSLASHGLSpl] = ACTIONS(6313), - [anon_sym_BSLASHglsdisp] = ACTIONS(6313), - [anon_sym_BSLASHglslink] = ACTIONS(6313), - [anon_sym_BSLASHglstext] = ACTIONS(6313), - [anon_sym_BSLASHGlstext] = ACTIONS(6313), - [anon_sym_BSLASHGLStext] = ACTIONS(6313), - [anon_sym_BSLASHglsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6313), - [anon_sym_BSLASHglsplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSplural] = ACTIONS(6313), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHglsname] = ACTIONS(6313), - [anon_sym_BSLASHGlsname] = ACTIONS(6313), - [anon_sym_BSLASHGLSname] = ACTIONS(6313), - [anon_sym_BSLASHglssymbol] = ACTIONS(6313), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6313), - [anon_sym_BSLASHglsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6313), - [anon_sym_BSLASHglsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6313), - [anon_sym_BSLASHglsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6313), - [anon_sym_BSLASHglsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6313), - [anon_sym_BSLASHglsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6313), - [anon_sym_BSLASHnewacronym] = ACTIONS(6313), - [anon_sym_BSLASHacrshort] = ACTIONS(6313), - [anon_sym_BSLASHAcrshort] = ACTIONS(6313), - [anon_sym_BSLASHACRshort] = ACTIONS(6313), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6313), - [anon_sym_BSLASHacrlong] = ACTIONS(6313), - [anon_sym_BSLASHAcrlong] = ACTIONS(6313), - [anon_sym_BSLASHACRlong] = ACTIONS(6313), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6313), - [anon_sym_BSLASHacrfull] = ACTIONS(6313), - [anon_sym_BSLASHAcrfull] = ACTIONS(6313), - [anon_sym_BSLASHACRfull] = ACTIONS(6313), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6313), - [anon_sym_BSLASHacs] = ACTIONS(6313), - [anon_sym_BSLASHAcs] = ACTIONS(6313), - [anon_sym_BSLASHacsp] = ACTIONS(6313), - [anon_sym_BSLASHAcsp] = ACTIONS(6313), - [anon_sym_BSLASHacl] = ACTIONS(6313), - [anon_sym_BSLASHAcl] = ACTIONS(6313), - [anon_sym_BSLASHaclp] = ACTIONS(6313), - [anon_sym_BSLASHAclp] = ACTIONS(6313), - [anon_sym_BSLASHacf] = ACTIONS(6313), - [anon_sym_BSLASHAcf] = ACTIONS(6313), - [anon_sym_BSLASHacfp] = ACTIONS(6313), - [anon_sym_BSLASHAcfp] = ACTIONS(6313), - [anon_sym_BSLASHac] = ACTIONS(6313), - [anon_sym_BSLASHAc] = ACTIONS(6313), - [anon_sym_BSLASHacp] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6313), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6313), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6313), - [anon_sym_BSLASHcolor] = ACTIONS(6313), - [anon_sym_BSLASHcolorbox] = ACTIONS(6313), - [anon_sym_BSLASHtextcolor] = ACTIONS(6313), - [anon_sym_BSLASHpagecolor] = ACTIONS(6313), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6313), - [anon_sym_BSLASHtext] = ACTIONS(6313), - [anon_sym_BSLASHintertext] = ACTIONS(6313), - [anon_sym_shortintertext] = ACTIONS(6313), - }, - [559] = { - [sym_command_name] = ACTIONS(6317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(6319), - [anon_sym_RBRACK] = ACTIONS(6319), - [anon_sym_COMMA] = ACTIONS(6319), - [anon_sym_EQ] = ACTIONS(6319), - [anon_sym_LPAREN] = ACTIONS(6319), - [anon_sym_RPAREN] = ACTIONS(6319), - [anon_sym_BSLASHpart] = ACTIONS(6317), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddpart] = ACTIONS(6317), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6319), - [anon_sym_BSLASHchapter] = ACTIONS(6317), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddchap] = ACTIONS(6317), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsection] = ACTIONS(6317), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddsec] = ACTIONS(6317), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubsection] = ACTIONS(6317), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6317), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHparagraph] = ACTIONS(6317), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6317), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6319), - [anon_sym_BSLASHitem] = ACTIONS(6317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6319), - [anon_sym_LBRACE] = ACTIONS(6319), - [sym_word] = ACTIONS(6317), - [sym_placeholder] = ACTIONS(6319), - [anon_sym_PLUS] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(6319), - [anon_sym_SLASH] = ACTIONS(6319), - [anon_sym_LT] = ACTIONS(6317), - [anon_sym_GT] = ACTIONS(6317), - [anon_sym_BANG] = ACTIONS(6317), - [anon_sym_PIPE] = ACTIONS(6317), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_SQUOTE] = ACTIONS(6317), - [anon_sym__] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6319), - [anon_sym_DOLLAR] = ACTIONS(6317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6319), - [anon_sym_BSLASHbegin] = ACTIONS(6317), - [anon_sym_BSLASHtitle] = ACTIONS(6317), - [anon_sym_BSLASHauthor] = ACTIONS(6317), - [anon_sym_BSLASHusepackage] = ACTIONS(6317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6317), - [anon_sym_BSLASHinclude] = ACTIONS(6317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6317), - [anon_sym_BSLASHinput] = ACTIONS(6317), - [anon_sym_BSLASHsubfile] = ACTIONS(6317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6317), - [anon_sym_BSLASHbibliography] = ACTIONS(6317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6317), - [anon_sym_BSLASHincludesvg] = ACTIONS(6317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6317), - [anon_sym_BSLASHimport] = ACTIONS(6317), - [anon_sym_BSLASHsubimport] = ACTIONS(6317), - [anon_sym_BSLASHinputfrom] = ACTIONS(6317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6317), - [anon_sym_BSLASHincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHcaption] = ACTIONS(6317), - [anon_sym_BSLASHcite] = ACTIONS(6317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCite] = ACTIONS(6317), - [anon_sym_BSLASHnocite] = ACTIONS(6317), - [anon_sym_BSLASHcitet] = ACTIONS(6317), - [anon_sym_BSLASHcitep] = ACTIONS(6317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteauthor] = ACTIONS(6317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitetitle] = ACTIONS(6317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteyear] = ACTIONS(6317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitedate] = ACTIONS(6317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteurl] = ACTIONS(6317), - [anon_sym_BSLASHfullcite] = ACTIONS(6317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6317), - [anon_sym_BSLASHcitealt] = ACTIONS(6317), - [anon_sym_BSLASHcitealp] = ACTIONS(6317), - [anon_sym_BSLASHcitetext] = ACTIONS(6317), - [anon_sym_BSLASHparencite] = ACTIONS(6317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHParencite] = ACTIONS(6317), - [anon_sym_BSLASHfootcite] = ACTIONS(6317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6317), - [anon_sym_BSLASHtextcite] = ACTIONS(6317), - [anon_sym_BSLASHTextcite] = ACTIONS(6317), - [anon_sym_BSLASHsmartcite] = ACTIONS(6317), - [anon_sym_BSLASHSmartcite] = ACTIONS(6317), - [anon_sym_BSLASHsupercite] = ACTIONS(6317), - [anon_sym_BSLASHautocite] = ACTIONS(6317), - [anon_sym_BSLASHAutocite] = ACTIONS(6317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHvolcite] = ACTIONS(6317), - [anon_sym_BSLASHVolcite] = ACTIONS(6317), - [anon_sym_BSLASHpvolcite] = ACTIONS(6317), - [anon_sym_BSLASHPvolcite] = ACTIONS(6317), - [anon_sym_BSLASHfvolcite] = ACTIONS(6317), - [anon_sym_BSLASHftvolcite] = ACTIONS(6317), - [anon_sym_BSLASHsvolcite] = ACTIONS(6317), - [anon_sym_BSLASHSvolcite] = ACTIONS(6317), - [anon_sym_BSLASHtvolcite] = ACTIONS(6317), - [anon_sym_BSLASHTvolcite] = ACTIONS(6317), - [anon_sym_BSLASHavolcite] = ACTIONS(6317), - [anon_sym_BSLASHAvolcite] = ACTIONS(6317), - [anon_sym_BSLASHnotecite] = ACTIONS(6317), - [anon_sym_BSLASHNotecite] = ACTIONS(6317), - [anon_sym_BSLASHpnotecite] = ACTIONS(6317), - [anon_sym_BSLASHPnotecite] = ACTIONS(6317), - [anon_sym_BSLASHfnotecite] = ACTIONS(6317), - [anon_sym_BSLASHlabel] = ACTIONS(6317), - [anon_sym_BSLASHref] = ACTIONS(6317), - [anon_sym_BSLASHeqref] = ACTIONS(6317), - [anon_sym_BSLASHvref] = ACTIONS(6317), - [anon_sym_BSLASHVref] = ACTIONS(6317), - [anon_sym_BSLASHautoref] = ACTIONS(6317), - [anon_sym_BSLASHpageref] = ACTIONS(6317), - [anon_sym_BSLASHcref] = ACTIONS(6317), - [anon_sym_BSLASHCref] = ACTIONS(6317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnameCref] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHlabelcref] = ACTIONS(6317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCrefrange] = ACTIONS(6317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnewlabel] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6319), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHdef] = ACTIONS(6317), - [anon_sym_BSLASHlet] = ACTIONS(6317), - [anon_sym_BSLASHleft] = ACTIONS(6317), - [anon_sym_BSLASHbig] = ACTIONS(6317), - [anon_sym_BSLASHBig] = ACTIONS(6317), - [anon_sym_BSLASHbigg] = ACTIONS(6317), - [anon_sym_BSLASHBigg] = ACTIONS(6317), - [anon_sym_BSLASHbigl] = ACTIONS(6317), - [anon_sym_BSLASHBigl] = ACTIONS(6317), - [anon_sym_BSLASHbiggl] = ACTIONS(6317), - [anon_sym_BSLASHBiggl] = ACTIONS(6317), - [anon_sym_BSLASHright] = ACTIONS(6317), - [anon_sym_BSLASHbigr] = ACTIONS(6317), - [anon_sym_BSLASHBigr] = ACTIONS(6317), - [anon_sym_BSLASHbiggr] = ACTIONS(6317), - [anon_sym_BSLASHBiggr] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6317), - [anon_sym_BSLASHgls] = ACTIONS(6317), - [anon_sym_BSLASHGls] = ACTIONS(6317), - [anon_sym_BSLASHGLS] = ACTIONS(6317), - [anon_sym_BSLASHglspl] = ACTIONS(6317), - [anon_sym_BSLASHGlspl] = ACTIONS(6317), - [anon_sym_BSLASHGLSpl] = ACTIONS(6317), - [anon_sym_BSLASHglsdisp] = ACTIONS(6317), - [anon_sym_BSLASHglslink] = ACTIONS(6317), - [anon_sym_BSLASHglstext] = ACTIONS(6317), - [anon_sym_BSLASHGlstext] = ACTIONS(6317), - [anon_sym_BSLASHGLStext] = ACTIONS(6317), - [anon_sym_BSLASHglsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6317), - [anon_sym_BSLASHglsplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSplural] = ACTIONS(6317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHglsname] = ACTIONS(6317), - [anon_sym_BSLASHGlsname] = ACTIONS(6317), - [anon_sym_BSLASHGLSname] = ACTIONS(6317), - [anon_sym_BSLASHglssymbol] = ACTIONS(6317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6317), - [anon_sym_BSLASHglsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6317), - [anon_sym_BSLASHglsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6317), - [anon_sym_BSLASHglsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6317), - [anon_sym_BSLASHglsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6317), - [anon_sym_BSLASHglsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6317), - [anon_sym_BSLASHnewacronym] = ACTIONS(6317), - [anon_sym_BSLASHacrshort] = ACTIONS(6317), - [anon_sym_BSLASHAcrshort] = ACTIONS(6317), - [anon_sym_BSLASHACRshort] = ACTIONS(6317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6317), - [anon_sym_BSLASHacrlong] = ACTIONS(6317), - [anon_sym_BSLASHAcrlong] = ACTIONS(6317), - [anon_sym_BSLASHACRlong] = ACTIONS(6317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6317), - [anon_sym_BSLASHacrfull] = ACTIONS(6317), - [anon_sym_BSLASHAcrfull] = ACTIONS(6317), - [anon_sym_BSLASHACRfull] = ACTIONS(6317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6317), - [anon_sym_BSLASHacs] = ACTIONS(6317), - [anon_sym_BSLASHAcs] = ACTIONS(6317), - [anon_sym_BSLASHacsp] = ACTIONS(6317), - [anon_sym_BSLASHAcsp] = ACTIONS(6317), - [anon_sym_BSLASHacl] = ACTIONS(6317), - [anon_sym_BSLASHAcl] = ACTIONS(6317), - [anon_sym_BSLASHaclp] = ACTIONS(6317), - [anon_sym_BSLASHAclp] = ACTIONS(6317), - [anon_sym_BSLASHacf] = ACTIONS(6317), - [anon_sym_BSLASHAcf] = ACTIONS(6317), - [anon_sym_BSLASHacfp] = ACTIONS(6317), - [anon_sym_BSLASHAcfp] = ACTIONS(6317), - [anon_sym_BSLASHac] = ACTIONS(6317), - [anon_sym_BSLASHAc] = ACTIONS(6317), - [anon_sym_BSLASHacp] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6317), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6317), - [anon_sym_BSLASHcolor] = ACTIONS(6317), - [anon_sym_BSLASHcolorbox] = ACTIONS(6317), - [anon_sym_BSLASHtextcolor] = ACTIONS(6317), - [anon_sym_BSLASHpagecolor] = ACTIONS(6317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6317), - [anon_sym_BSLASHtext] = ACTIONS(6317), - [anon_sym_BSLASHintertext] = ACTIONS(6317), - [anon_sym_shortintertext] = ACTIONS(6317), - }, - [560] = { - [sym_command_name] = ACTIONS(6321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(6323), - [anon_sym_RBRACK] = ACTIONS(6323), - [anon_sym_COMMA] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(6323), - [anon_sym_LPAREN] = ACTIONS(6323), - [anon_sym_RPAREN] = ACTIONS(6323), - [anon_sym_BSLASHpart] = ACTIONS(6321), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddpart] = ACTIONS(6321), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6323), - [anon_sym_BSLASHchapter] = ACTIONS(6321), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddchap] = ACTIONS(6321), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsection] = ACTIONS(6321), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddsec] = ACTIONS(6321), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubsection] = ACTIONS(6321), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6321), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHparagraph] = ACTIONS(6321), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6321), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6323), - [anon_sym_BSLASHitem] = ACTIONS(6321), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6323), - [anon_sym_LBRACE] = ACTIONS(6323), - [sym_word] = ACTIONS(6321), - [sym_placeholder] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6323), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_LT] = ACTIONS(6321), - [anon_sym_GT] = ACTIONS(6321), - [anon_sym_BANG] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_SQUOTE] = ACTIONS(6321), - [anon_sym__] = ACTIONS(6323), - [anon_sym_CARET] = ACTIONS(6323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6323), - [anon_sym_DOLLAR] = ACTIONS(6321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6323), - [anon_sym_BSLASHbegin] = ACTIONS(6321), - [anon_sym_BSLASHtitle] = ACTIONS(6321), - [anon_sym_BSLASHauthor] = ACTIONS(6321), - [anon_sym_BSLASHusepackage] = ACTIONS(6321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6321), - [anon_sym_BSLASHinclude] = ACTIONS(6321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6321), - [anon_sym_BSLASHinput] = ACTIONS(6321), - [anon_sym_BSLASHsubfile] = ACTIONS(6321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6321), - [anon_sym_BSLASHbibliography] = ACTIONS(6321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6321), - [anon_sym_BSLASHincludesvg] = ACTIONS(6321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6321), - [anon_sym_BSLASHimport] = ACTIONS(6321), - [anon_sym_BSLASHsubimport] = ACTIONS(6321), - [anon_sym_BSLASHinputfrom] = ACTIONS(6321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6321), - [anon_sym_BSLASHincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHcaption] = ACTIONS(6321), - [anon_sym_BSLASHcite] = ACTIONS(6321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCite] = ACTIONS(6321), - [anon_sym_BSLASHnocite] = ACTIONS(6321), - [anon_sym_BSLASHcitet] = ACTIONS(6321), - [anon_sym_BSLASHcitep] = ACTIONS(6321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteauthor] = ACTIONS(6321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitetitle] = ACTIONS(6321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteyear] = ACTIONS(6321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitedate] = ACTIONS(6321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteurl] = ACTIONS(6321), - [anon_sym_BSLASHfullcite] = ACTIONS(6321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6321), - [anon_sym_BSLASHcitealt] = ACTIONS(6321), - [anon_sym_BSLASHcitealp] = ACTIONS(6321), - [anon_sym_BSLASHcitetext] = ACTIONS(6321), - [anon_sym_BSLASHparencite] = ACTIONS(6321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHParencite] = ACTIONS(6321), - [anon_sym_BSLASHfootcite] = ACTIONS(6321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6321), - [anon_sym_BSLASHtextcite] = ACTIONS(6321), - [anon_sym_BSLASHTextcite] = ACTIONS(6321), - [anon_sym_BSLASHsmartcite] = ACTIONS(6321), - [anon_sym_BSLASHSmartcite] = ACTIONS(6321), - [anon_sym_BSLASHsupercite] = ACTIONS(6321), - [anon_sym_BSLASHautocite] = ACTIONS(6321), - [anon_sym_BSLASHAutocite] = ACTIONS(6321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHvolcite] = ACTIONS(6321), - [anon_sym_BSLASHVolcite] = ACTIONS(6321), - [anon_sym_BSLASHpvolcite] = ACTIONS(6321), - [anon_sym_BSLASHPvolcite] = ACTIONS(6321), - [anon_sym_BSLASHfvolcite] = ACTIONS(6321), - [anon_sym_BSLASHftvolcite] = ACTIONS(6321), - [anon_sym_BSLASHsvolcite] = ACTIONS(6321), - [anon_sym_BSLASHSvolcite] = ACTIONS(6321), - [anon_sym_BSLASHtvolcite] = ACTIONS(6321), - [anon_sym_BSLASHTvolcite] = ACTIONS(6321), - [anon_sym_BSLASHavolcite] = ACTIONS(6321), - [anon_sym_BSLASHAvolcite] = ACTIONS(6321), - [anon_sym_BSLASHnotecite] = ACTIONS(6321), - [anon_sym_BSLASHNotecite] = ACTIONS(6321), - [anon_sym_BSLASHpnotecite] = ACTIONS(6321), - [anon_sym_BSLASHPnotecite] = ACTIONS(6321), - [anon_sym_BSLASHfnotecite] = ACTIONS(6321), - [anon_sym_BSLASHlabel] = ACTIONS(6321), - [anon_sym_BSLASHref] = ACTIONS(6321), - [anon_sym_BSLASHeqref] = ACTIONS(6321), - [anon_sym_BSLASHvref] = ACTIONS(6321), - [anon_sym_BSLASHVref] = ACTIONS(6321), - [anon_sym_BSLASHautoref] = ACTIONS(6321), - [anon_sym_BSLASHpageref] = ACTIONS(6321), - [anon_sym_BSLASHcref] = ACTIONS(6321), - [anon_sym_BSLASHCref] = ACTIONS(6321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnameCref] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHlabelcref] = ACTIONS(6321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCrefrange] = ACTIONS(6321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnewlabel] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6323), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHdef] = ACTIONS(6321), - [anon_sym_BSLASHlet] = ACTIONS(6321), - [anon_sym_BSLASHleft] = ACTIONS(6321), - [anon_sym_BSLASHbig] = ACTIONS(6321), - [anon_sym_BSLASHBig] = ACTIONS(6321), - [anon_sym_BSLASHbigg] = ACTIONS(6321), - [anon_sym_BSLASHBigg] = ACTIONS(6321), - [anon_sym_BSLASHbigl] = ACTIONS(6321), - [anon_sym_BSLASHBigl] = ACTIONS(6321), - [anon_sym_BSLASHbiggl] = ACTIONS(6321), - [anon_sym_BSLASHBiggl] = ACTIONS(6321), - [anon_sym_BSLASHright] = ACTIONS(6321), - [anon_sym_BSLASHbigr] = ACTIONS(6321), - [anon_sym_BSLASHBigr] = ACTIONS(6321), - [anon_sym_BSLASHbiggr] = ACTIONS(6321), - [anon_sym_BSLASHBiggr] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6321), - [anon_sym_BSLASHgls] = ACTIONS(6321), - [anon_sym_BSLASHGls] = ACTIONS(6321), - [anon_sym_BSLASHGLS] = ACTIONS(6321), - [anon_sym_BSLASHglspl] = ACTIONS(6321), - [anon_sym_BSLASHGlspl] = ACTIONS(6321), - [anon_sym_BSLASHGLSpl] = ACTIONS(6321), - [anon_sym_BSLASHglsdisp] = ACTIONS(6321), - [anon_sym_BSLASHglslink] = ACTIONS(6321), - [anon_sym_BSLASHglstext] = ACTIONS(6321), - [anon_sym_BSLASHGlstext] = ACTIONS(6321), - [anon_sym_BSLASHGLStext] = ACTIONS(6321), - [anon_sym_BSLASHglsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6321), - [anon_sym_BSLASHglsplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSplural] = ACTIONS(6321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHglsname] = ACTIONS(6321), - [anon_sym_BSLASHGlsname] = ACTIONS(6321), - [anon_sym_BSLASHGLSname] = ACTIONS(6321), - [anon_sym_BSLASHglssymbol] = ACTIONS(6321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6321), - [anon_sym_BSLASHglsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6321), - [anon_sym_BSLASHglsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6321), - [anon_sym_BSLASHglsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6321), - [anon_sym_BSLASHglsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6321), - [anon_sym_BSLASHglsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6321), - [anon_sym_BSLASHnewacronym] = ACTIONS(6321), - [anon_sym_BSLASHacrshort] = ACTIONS(6321), - [anon_sym_BSLASHAcrshort] = ACTIONS(6321), - [anon_sym_BSLASHACRshort] = ACTIONS(6321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6321), - [anon_sym_BSLASHacrlong] = ACTIONS(6321), - [anon_sym_BSLASHAcrlong] = ACTIONS(6321), - [anon_sym_BSLASHACRlong] = ACTIONS(6321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6321), - [anon_sym_BSLASHacrfull] = ACTIONS(6321), - [anon_sym_BSLASHAcrfull] = ACTIONS(6321), - [anon_sym_BSLASHACRfull] = ACTIONS(6321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6321), - [anon_sym_BSLASHacs] = ACTIONS(6321), - [anon_sym_BSLASHAcs] = ACTIONS(6321), - [anon_sym_BSLASHacsp] = ACTIONS(6321), - [anon_sym_BSLASHAcsp] = ACTIONS(6321), - [anon_sym_BSLASHacl] = ACTIONS(6321), - [anon_sym_BSLASHAcl] = ACTIONS(6321), - [anon_sym_BSLASHaclp] = ACTIONS(6321), - [anon_sym_BSLASHAclp] = ACTIONS(6321), - [anon_sym_BSLASHacf] = ACTIONS(6321), - [anon_sym_BSLASHAcf] = ACTIONS(6321), - [anon_sym_BSLASHacfp] = ACTIONS(6321), - [anon_sym_BSLASHAcfp] = ACTIONS(6321), - [anon_sym_BSLASHac] = ACTIONS(6321), - [anon_sym_BSLASHAc] = ACTIONS(6321), - [anon_sym_BSLASHacp] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6321), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6321), - [anon_sym_BSLASHcolor] = ACTIONS(6321), - [anon_sym_BSLASHcolorbox] = ACTIONS(6321), - [anon_sym_BSLASHtextcolor] = ACTIONS(6321), - [anon_sym_BSLASHpagecolor] = ACTIONS(6321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6321), - [anon_sym_BSLASHtext] = ACTIONS(6321), - [anon_sym_BSLASHintertext] = ACTIONS(6321), - [anon_sym_shortintertext] = ACTIONS(6321), - }, - [561] = { - [sym_command_name] = ACTIONS(6325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6325), - [anon_sym_LBRACK] = ACTIONS(6327), - [anon_sym_RBRACK] = ACTIONS(6327), - [anon_sym_COMMA] = ACTIONS(6327), - [anon_sym_EQ] = ACTIONS(6327), - [anon_sym_LPAREN] = ACTIONS(6327), - [anon_sym_RPAREN] = ACTIONS(6327), - [anon_sym_BSLASHpart] = ACTIONS(6325), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddpart] = ACTIONS(6325), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6327), - [anon_sym_BSLASHchapter] = ACTIONS(6325), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddchap] = ACTIONS(6325), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsection] = ACTIONS(6325), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddsec] = ACTIONS(6325), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubsection] = ACTIONS(6325), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6325), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHparagraph] = ACTIONS(6325), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6325), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6327), - [anon_sym_BSLASHitem] = ACTIONS(6325), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6327), - [anon_sym_LBRACE] = ACTIONS(6327), - [sym_word] = ACTIONS(6325), - [sym_placeholder] = ACTIONS(6327), - [anon_sym_PLUS] = ACTIONS(6327), - [anon_sym_DASH] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6327), - [anon_sym_SLASH] = ACTIONS(6327), - [anon_sym_LT] = ACTIONS(6325), - [anon_sym_GT] = ACTIONS(6325), - [anon_sym_BANG] = ACTIONS(6325), - [anon_sym_PIPE] = ACTIONS(6325), - [anon_sym_COLON] = ACTIONS(6325), - [anon_sym_SQUOTE] = ACTIONS(6325), - [anon_sym__] = ACTIONS(6327), - [anon_sym_CARET] = ACTIONS(6327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6327), - [anon_sym_DOLLAR] = ACTIONS(6325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6327), - [anon_sym_BSLASHbegin] = ACTIONS(6325), - [anon_sym_BSLASHtitle] = ACTIONS(6325), - [anon_sym_BSLASHauthor] = ACTIONS(6325), - [anon_sym_BSLASHusepackage] = ACTIONS(6325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6325), - [anon_sym_BSLASHinclude] = ACTIONS(6325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6325), - [anon_sym_BSLASHinput] = ACTIONS(6325), - [anon_sym_BSLASHsubfile] = ACTIONS(6325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6325), - [anon_sym_BSLASHbibliography] = ACTIONS(6325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6325), - [anon_sym_BSLASHincludesvg] = ACTIONS(6325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6325), - [anon_sym_BSLASHimport] = ACTIONS(6325), - [anon_sym_BSLASHsubimport] = ACTIONS(6325), - [anon_sym_BSLASHinputfrom] = ACTIONS(6325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6325), - [anon_sym_BSLASHincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHcaption] = ACTIONS(6325), - [anon_sym_BSLASHcite] = ACTIONS(6325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCite] = ACTIONS(6325), - [anon_sym_BSLASHnocite] = ACTIONS(6325), - [anon_sym_BSLASHcitet] = ACTIONS(6325), - [anon_sym_BSLASHcitep] = ACTIONS(6325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteauthor] = ACTIONS(6325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitetitle] = ACTIONS(6325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteyear] = ACTIONS(6325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitedate] = ACTIONS(6325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteurl] = ACTIONS(6325), - [anon_sym_BSLASHfullcite] = ACTIONS(6325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6325), - [anon_sym_BSLASHcitealt] = ACTIONS(6325), - [anon_sym_BSLASHcitealp] = ACTIONS(6325), - [anon_sym_BSLASHcitetext] = ACTIONS(6325), - [anon_sym_BSLASHparencite] = ACTIONS(6325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHParencite] = ACTIONS(6325), - [anon_sym_BSLASHfootcite] = ACTIONS(6325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6325), - [anon_sym_BSLASHtextcite] = ACTIONS(6325), - [anon_sym_BSLASHTextcite] = ACTIONS(6325), - [anon_sym_BSLASHsmartcite] = ACTIONS(6325), - [anon_sym_BSLASHSmartcite] = ACTIONS(6325), - [anon_sym_BSLASHsupercite] = ACTIONS(6325), - [anon_sym_BSLASHautocite] = ACTIONS(6325), - [anon_sym_BSLASHAutocite] = ACTIONS(6325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHvolcite] = ACTIONS(6325), - [anon_sym_BSLASHVolcite] = ACTIONS(6325), - [anon_sym_BSLASHpvolcite] = ACTIONS(6325), - [anon_sym_BSLASHPvolcite] = ACTIONS(6325), - [anon_sym_BSLASHfvolcite] = ACTIONS(6325), - [anon_sym_BSLASHftvolcite] = ACTIONS(6325), - [anon_sym_BSLASHsvolcite] = ACTIONS(6325), - [anon_sym_BSLASHSvolcite] = ACTIONS(6325), - [anon_sym_BSLASHtvolcite] = ACTIONS(6325), - [anon_sym_BSLASHTvolcite] = ACTIONS(6325), - [anon_sym_BSLASHavolcite] = ACTIONS(6325), - [anon_sym_BSLASHAvolcite] = ACTIONS(6325), - [anon_sym_BSLASHnotecite] = ACTIONS(6325), - [anon_sym_BSLASHNotecite] = ACTIONS(6325), - [anon_sym_BSLASHpnotecite] = ACTIONS(6325), - [anon_sym_BSLASHPnotecite] = ACTIONS(6325), - [anon_sym_BSLASHfnotecite] = ACTIONS(6325), - [anon_sym_BSLASHlabel] = ACTIONS(6325), - [anon_sym_BSLASHref] = ACTIONS(6325), - [anon_sym_BSLASHeqref] = ACTIONS(6325), - [anon_sym_BSLASHvref] = ACTIONS(6325), - [anon_sym_BSLASHVref] = ACTIONS(6325), - [anon_sym_BSLASHautoref] = ACTIONS(6325), - [anon_sym_BSLASHpageref] = ACTIONS(6325), - [anon_sym_BSLASHcref] = ACTIONS(6325), - [anon_sym_BSLASHCref] = ACTIONS(6325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnameCref] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHlabelcref] = ACTIONS(6325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCrefrange] = ACTIONS(6325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnewlabel] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6327), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHdef] = ACTIONS(6325), - [anon_sym_BSLASHlet] = ACTIONS(6325), - [anon_sym_BSLASHleft] = ACTIONS(6325), - [anon_sym_BSLASHbig] = ACTIONS(6325), - [anon_sym_BSLASHBig] = ACTIONS(6325), - [anon_sym_BSLASHbigg] = ACTIONS(6325), - [anon_sym_BSLASHBigg] = ACTIONS(6325), - [anon_sym_BSLASHbigl] = ACTIONS(6325), - [anon_sym_BSLASHBigl] = ACTIONS(6325), - [anon_sym_BSLASHbiggl] = ACTIONS(6325), - [anon_sym_BSLASHBiggl] = ACTIONS(6325), - [anon_sym_BSLASHright] = ACTIONS(6325), - [anon_sym_BSLASHbigr] = ACTIONS(6325), - [anon_sym_BSLASHBigr] = ACTIONS(6325), - [anon_sym_BSLASHbiggr] = ACTIONS(6325), - [anon_sym_BSLASHBiggr] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6325), - [anon_sym_BSLASHgls] = ACTIONS(6325), - [anon_sym_BSLASHGls] = ACTIONS(6325), - [anon_sym_BSLASHGLS] = ACTIONS(6325), - [anon_sym_BSLASHglspl] = ACTIONS(6325), - [anon_sym_BSLASHGlspl] = ACTIONS(6325), - [anon_sym_BSLASHGLSpl] = ACTIONS(6325), - [anon_sym_BSLASHglsdisp] = ACTIONS(6325), - [anon_sym_BSLASHglslink] = ACTIONS(6325), - [anon_sym_BSLASHglstext] = ACTIONS(6325), - [anon_sym_BSLASHGlstext] = ACTIONS(6325), - [anon_sym_BSLASHGLStext] = ACTIONS(6325), - [anon_sym_BSLASHglsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6325), - [anon_sym_BSLASHglsplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSplural] = ACTIONS(6325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHglsname] = ACTIONS(6325), - [anon_sym_BSLASHGlsname] = ACTIONS(6325), - [anon_sym_BSLASHGLSname] = ACTIONS(6325), - [anon_sym_BSLASHglssymbol] = ACTIONS(6325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6325), - [anon_sym_BSLASHglsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6325), - [anon_sym_BSLASHglsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6325), - [anon_sym_BSLASHglsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6325), - [anon_sym_BSLASHglsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6325), - [anon_sym_BSLASHglsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6325), - [anon_sym_BSLASHnewacronym] = ACTIONS(6325), - [anon_sym_BSLASHacrshort] = ACTIONS(6325), - [anon_sym_BSLASHAcrshort] = ACTIONS(6325), - [anon_sym_BSLASHACRshort] = ACTIONS(6325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6325), - [anon_sym_BSLASHacrlong] = ACTIONS(6325), - [anon_sym_BSLASHAcrlong] = ACTIONS(6325), - [anon_sym_BSLASHACRlong] = ACTIONS(6325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6325), - [anon_sym_BSLASHacrfull] = ACTIONS(6325), - [anon_sym_BSLASHAcrfull] = ACTIONS(6325), - [anon_sym_BSLASHACRfull] = ACTIONS(6325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6325), - [anon_sym_BSLASHacs] = ACTIONS(6325), - [anon_sym_BSLASHAcs] = ACTIONS(6325), - [anon_sym_BSLASHacsp] = ACTIONS(6325), - [anon_sym_BSLASHAcsp] = ACTIONS(6325), - [anon_sym_BSLASHacl] = ACTIONS(6325), - [anon_sym_BSLASHAcl] = ACTIONS(6325), - [anon_sym_BSLASHaclp] = ACTIONS(6325), - [anon_sym_BSLASHAclp] = ACTIONS(6325), - [anon_sym_BSLASHacf] = ACTIONS(6325), - [anon_sym_BSLASHAcf] = ACTIONS(6325), - [anon_sym_BSLASHacfp] = ACTIONS(6325), - [anon_sym_BSLASHAcfp] = ACTIONS(6325), - [anon_sym_BSLASHac] = ACTIONS(6325), - [anon_sym_BSLASHAc] = ACTIONS(6325), - [anon_sym_BSLASHacp] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6325), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6325), - [anon_sym_BSLASHcolor] = ACTIONS(6325), - [anon_sym_BSLASHcolorbox] = ACTIONS(6325), - [anon_sym_BSLASHtextcolor] = ACTIONS(6325), - [anon_sym_BSLASHpagecolor] = ACTIONS(6325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6325), - [anon_sym_BSLASHtext] = ACTIONS(6325), - [anon_sym_BSLASHintertext] = ACTIONS(6325), - [anon_sym_shortintertext] = ACTIONS(6325), - }, - [562] = { - [sym_command_name] = ACTIONS(6329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6329), - [anon_sym_LBRACK] = ACTIONS(6331), - [anon_sym_RBRACK] = ACTIONS(6331), - [anon_sym_COMMA] = ACTIONS(6331), - [anon_sym_EQ] = ACTIONS(6331), - [anon_sym_LPAREN] = ACTIONS(6331), - [anon_sym_RPAREN] = ACTIONS(6331), - [anon_sym_BSLASHpart] = ACTIONS(6329), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddpart] = ACTIONS(6329), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6331), - [anon_sym_BSLASHchapter] = ACTIONS(6329), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddchap] = ACTIONS(6329), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsection] = ACTIONS(6329), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddsec] = ACTIONS(6329), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubsection] = ACTIONS(6329), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6329), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHparagraph] = ACTIONS(6329), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6329), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6331), - [anon_sym_BSLASHitem] = ACTIONS(6329), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6331), - [sym_word] = ACTIONS(6329), - [sym_placeholder] = ACTIONS(6331), - [anon_sym_PLUS] = ACTIONS(6331), - [anon_sym_DASH] = ACTIONS(6331), - [anon_sym_STAR] = ACTIONS(6331), - [anon_sym_SLASH] = ACTIONS(6331), - [anon_sym_LT] = ACTIONS(6329), - [anon_sym_GT] = ACTIONS(6329), - [anon_sym_BANG] = ACTIONS(6329), - [anon_sym_PIPE] = ACTIONS(6329), - [anon_sym_COLON] = ACTIONS(6329), - [anon_sym_SQUOTE] = ACTIONS(6329), - [anon_sym__] = ACTIONS(6331), - [anon_sym_CARET] = ACTIONS(6331), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6331), - [anon_sym_DOLLAR] = ACTIONS(6329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6331), - [anon_sym_BSLASHbegin] = ACTIONS(6329), - [anon_sym_BSLASHtitle] = ACTIONS(6329), - [anon_sym_BSLASHauthor] = ACTIONS(6329), - [anon_sym_BSLASHusepackage] = ACTIONS(6329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6329), - [anon_sym_BSLASHinclude] = ACTIONS(6329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6329), - [anon_sym_BSLASHinput] = ACTIONS(6329), - [anon_sym_BSLASHsubfile] = ACTIONS(6329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6329), - [anon_sym_BSLASHbibliography] = ACTIONS(6329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6329), - [anon_sym_BSLASHincludesvg] = ACTIONS(6329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6329), - [anon_sym_BSLASHimport] = ACTIONS(6329), - [anon_sym_BSLASHsubimport] = ACTIONS(6329), - [anon_sym_BSLASHinputfrom] = ACTIONS(6329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6329), - [anon_sym_BSLASHincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHcaption] = ACTIONS(6329), - [anon_sym_BSLASHcite] = ACTIONS(6329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCite] = ACTIONS(6329), - [anon_sym_BSLASHnocite] = ACTIONS(6329), - [anon_sym_BSLASHcitet] = ACTIONS(6329), - [anon_sym_BSLASHcitep] = ACTIONS(6329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteauthor] = ACTIONS(6329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitetitle] = ACTIONS(6329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteyear] = ACTIONS(6329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitedate] = ACTIONS(6329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteurl] = ACTIONS(6329), - [anon_sym_BSLASHfullcite] = ACTIONS(6329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6329), - [anon_sym_BSLASHcitealt] = ACTIONS(6329), - [anon_sym_BSLASHcitealp] = ACTIONS(6329), - [anon_sym_BSLASHcitetext] = ACTIONS(6329), - [anon_sym_BSLASHparencite] = ACTIONS(6329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHParencite] = ACTIONS(6329), - [anon_sym_BSLASHfootcite] = ACTIONS(6329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6329), - [anon_sym_BSLASHtextcite] = ACTIONS(6329), - [anon_sym_BSLASHTextcite] = ACTIONS(6329), - [anon_sym_BSLASHsmartcite] = ACTIONS(6329), - [anon_sym_BSLASHSmartcite] = ACTIONS(6329), - [anon_sym_BSLASHsupercite] = ACTIONS(6329), - [anon_sym_BSLASHautocite] = ACTIONS(6329), - [anon_sym_BSLASHAutocite] = ACTIONS(6329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHvolcite] = ACTIONS(6329), - [anon_sym_BSLASHVolcite] = ACTIONS(6329), - [anon_sym_BSLASHpvolcite] = ACTIONS(6329), - [anon_sym_BSLASHPvolcite] = ACTIONS(6329), - [anon_sym_BSLASHfvolcite] = ACTIONS(6329), - [anon_sym_BSLASHftvolcite] = ACTIONS(6329), - [anon_sym_BSLASHsvolcite] = ACTIONS(6329), - [anon_sym_BSLASHSvolcite] = ACTIONS(6329), - [anon_sym_BSLASHtvolcite] = ACTIONS(6329), - [anon_sym_BSLASHTvolcite] = ACTIONS(6329), - [anon_sym_BSLASHavolcite] = ACTIONS(6329), - [anon_sym_BSLASHAvolcite] = ACTIONS(6329), - [anon_sym_BSLASHnotecite] = ACTIONS(6329), - [anon_sym_BSLASHNotecite] = ACTIONS(6329), - [anon_sym_BSLASHpnotecite] = ACTIONS(6329), - [anon_sym_BSLASHPnotecite] = ACTIONS(6329), - [anon_sym_BSLASHfnotecite] = ACTIONS(6329), - [anon_sym_BSLASHlabel] = ACTIONS(6329), - [anon_sym_BSLASHref] = ACTIONS(6329), - [anon_sym_BSLASHeqref] = ACTIONS(6329), - [anon_sym_BSLASHvref] = ACTIONS(6329), - [anon_sym_BSLASHVref] = ACTIONS(6329), - [anon_sym_BSLASHautoref] = ACTIONS(6329), - [anon_sym_BSLASHpageref] = ACTIONS(6329), - [anon_sym_BSLASHcref] = ACTIONS(6329), - [anon_sym_BSLASHCref] = ACTIONS(6329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnameCref] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHlabelcref] = ACTIONS(6329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCrefrange] = ACTIONS(6329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnewlabel] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6331), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHdef] = ACTIONS(6329), - [anon_sym_BSLASHlet] = ACTIONS(6329), - [anon_sym_BSLASHleft] = ACTIONS(6329), - [anon_sym_BSLASHbig] = ACTIONS(6329), - [anon_sym_BSLASHBig] = ACTIONS(6329), - [anon_sym_BSLASHbigg] = ACTIONS(6329), - [anon_sym_BSLASHBigg] = ACTIONS(6329), - [anon_sym_BSLASHbigl] = ACTIONS(6329), - [anon_sym_BSLASHBigl] = ACTIONS(6329), - [anon_sym_BSLASHbiggl] = ACTIONS(6329), - [anon_sym_BSLASHBiggl] = ACTIONS(6329), - [anon_sym_BSLASHright] = ACTIONS(6329), - [anon_sym_BSLASHbigr] = ACTIONS(6329), - [anon_sym_BSLASHBigr] = ACTIONS(6329), - [anon_sym_BSLASHbiggr] = ACTIONS(6329), - [anon_sym_BSLASHBiggr] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6329), - [anon_sym_BSLASHgls] = ACTIONS(6329), - [anon_sym_BSLASHGls] = ACTIONS(6329), - [anon_sym_BSLASHGLS] = ACTIONS(6329), - [anon_sym_BSLASHglspl] = ACTIONS(6329), - [anon_sym_BSLASHGlspl] = ACTIONS(6329), - [anon_sym_BSLASHGLSpl] = ACTIONS(6329), - [anon_sym_BSLASHglsdisp] = ACTIONS(6329), - [anon_sym_BSLASHglslink] = ACTIONS(6329), - [anon_sym_BSLASHglstext] = ACTIONS(6329), - [anon_sym_BSLASHGlstext] = ACTIONS(6329), - [anon_sym_BSLASHGLStext] = ACTIONS(6329), - [anon_sym_BSLASHglsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6329), - [anon_sym_BSLASHglsplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSplural] = ACTIONS(6329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHglsname] = ACTIONS(6329), - [anon_sym_BSLASHGlsname] = ACTIONS(6329), - [anon_sym_BSLASHGLSname] = ACTIONS(6329), - [anon_sym_BSLASHglssymbol] = ACTIONS(6329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6329), - [anon_sym_BSLASHglsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6329), - [anon_sym_BSLASHglsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6329), - [anon_sym_BSLASHglsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6329), - [anon_sym_BSLASHglsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6329), - [anon_sym_BSLASHglsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6329), - [anon_sym_BSLASHnewacronym] = ACTIONS(6329), - [anon_sym_BSLASHacrshort] = ACTIONS(6329), - [anon_sym_BSLASHAcrshort] = ACTIONS(6329), - [anon_sym_BSLASHACRshort] = ACTIONS(6329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6329), - [anon_sym_BSLASHacrlong] = ACTIONS(6329), - [anon_sym_BSLASHAcrlong] = ACTIONS(6329), - [anon_sym_BSLASHACRlong] = ACTIONS(6329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6329), - [anon_sym_BSLASHacrfull] = ACTIONS(6329), - [anon_sym_BSLASHAcrfull] = ACTIONS(6329), - [anon_sym_BSLASHACRfull] = ACTIONS(6329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6329), - [anon_sym_BSLASHacs] = ACTIONS(6329), - [anon_sym_BSLASHAcs] = ACTIONS(6329), - [anon_sym_BSLASHacsp] = ACTIONS(6329), - [anon_sym_BSLASHAcsp] = ACTIONS(6329), - [anon_sym_BSLASHacl] = ACTIONS(6329), - [anon_sym_BSLASHAcl] = ACTIONS(6329), - [anon_sym_BSLASHaclp] = ACTIONS(6329), - [anon_sym_BSLASHAclp] = ACTIONS(6329), - [anon_sym_BSLASHacf] = ACTIONS(6329), - [anon_sym_BSLASHAcf] = ACTIONS(6329), - [anon_sym_BSLASHacfp] = ACTIONS(6329), - [anon_sym_BSLASHAcfp] = ACTIONS(6329), - [anon_sym_BSLASHac] = ACTIONS(6329), - [anon_sym_BSLASHAc] = ACTIONS(6329), - [anon_sym_BSLASHacp] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6329), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6329), - [anon_sym_BSLASHcolor] = ACTIONS(6329), - [anon_sym_BSLASHcolorbox] = ACTIONS(6329), - [anon_sym_BSLASHtextcolor] = ACTIONS(6329), - [anon_sym_BSLASHpagecolor] = ACTIONS(6329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6329), - [anon_sym_BSLASHtext] = ACTIONS(6329), - [anon_sym_BSLASHintertext] = ACTIONS(6329), - [anon_sym_shortintertext] = ACTIONS(6329), - }, - [563] = { - [sym_command_name] = ACTIONS(6333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6333), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_BSLASHpart] = ACTIONS(6333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddpart] = ACTIONS(6333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6335), - [anon_sym_BSLASHchapter] = ACTIONS(6333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddchap] = ACTIONS(6333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsection] = ACTIONS(6333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddsec] = ACTIONS(6333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubsection] = ACTIONS(6333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHparagraph] = ACTIONS(6333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6335), - [anon_sym_BSLASHitem] = ACTIONS(6333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6335), - [anon_sym_LBRACE] = ACTIONS(6335), - [sym_word] = ACTIONS(6333), - [sym_placeholder] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6335), - [anon_sym_DASH] = ACTIONS(6335), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6333), - [anon_sym_GT] = ACTIONS(6333), - [anon_sym_BANG] = ACTIONS(6333), - [anon_sym_PIPE] = ACTIONS(6333), - [anon_sym_COLON] = ACTIONS(6333), - [anon_sym_SQUOTE] = ACTIONS(6333), - [anon_sym__] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6335), - [anon_sym_DOLLAR] = ACTIONS(6333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6335), - [anon_sym_BSLASHbegin] = ACTIONS(6333), - [anon_sym_BSLASHtitle] = ACTIONS(6333), - [anon_sym_BSLASHauthor] = ACTIONS(6333), - [anon_sym_BSLASHusepackage] = ACTIONS(6333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6333), - [anon_sym_BSLASHinclude] = ACTIONS(6333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6333), - [anon_sym_BSLASHinput] = ACTIONS(6333), - [anon_sym_BSLASHsubfile] = ACTIONS(6333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6333), - [anon_sym_BSLASHbibliography] = ACTIONS(6333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6333), - [anon_sym_BSLASHincludesvg] = ACTIONS(6333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6333), - [anon_sym_BSLASHimport] = ACTIONS(6333), - [anon_sym_BSLASHsubimport] = ACTIONS(6333), - [anon_sym_BSLASHinputfrom] = ACTIONS(6333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6333), - [anon_sym_BSLASHincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHcaption] = ACTIONS(6333), - [anon_sym_BSLASHcite] = ACTIONS(6333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCite] = ACTIONS(6333), - [anon_sym_BSLASHnocite] = ACTIONS(6333), - [anon_sym_BSLASHcitet] = ACTIONS(6333), - [anon_sym_BSLASHcitep] = ACTIONS(6333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteauthor] = ACTIONS(6333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitetitle] = ACTIONS(6333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteyear] = ACTIONS(6333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitedate] = ACTIONS(6333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteurl] = ACTIONS(6333), - [anon_sym_BSLASHfullcite] = ACTIONS(6333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6333), - [anon_sym_BSLASHcitealt] = ACTIONS(6333), - [anon_sym_BSLASHcitealp] = ACTIONS(6333), - [anon_sym_BSLASHcitetext] = ACTIONS(6333), - [anon_sym_BSLASHparencite] = ACTIONS(6333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHParencite] = ACTIONS(6333), - [anon_sym_BSLASHfootcite] = ACTIONS(6333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6333), - [anon_sym_BSLASHtextcite] = ACTIONS(6333), - [anon_sym_BSLASHTextcite] = ACTIONS(6333), - [anon_sym_BSLASHsmartcite] = ACTIONS(6333), - [anon_sym_BSLASHSmartcite] = ACTIONS(6333), - [anon_sym_BSLASHsupercite] = ACTIONS(6333), - [anon_sym_BSLASHautocite] = ACTIONS(6333), - [anon_sym_BSLASHAutocite] = ACTIONS(6333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHvolcite] = ACTIONS(6333), - [anon_sym_BSLASHVolcite] = ACTIONS(6333), - [anon_sym_BSLASHpvolcite] = ACTIONS(6333), - [anon_sym_BSLASHPvolcite] = ACTIONS(6333), - [anon_sym_BSLASHfvolcite] = ACTIONS(6333), - [anon_sym_BSLASHftvolcite] = ACTIONS(6333), - [anon_sym_BSLASHsvolcite] = ACTIONS(6333), - [anon_sym_BSLASHSvolcite] = ACTIONS(6333), - [anon_sym_BSLASHtvolcite] = ACTIONS(6333), - [anon_sym_BSLASHTvolcite] = ACTIONS(6333), - [anon_sym_BSLASHavolcite] = ACTIONS(6333), - [anon_sym_BSLASHAvolcite] = ACTIONS(6333), - [anon_sym_BSLASHnotecite] = ACTIONS(6333), - [anon_sym_BSLASHNotecite] = ACTIONS(6333), - [anon_sym_BSLASHpnotecite] = ACTIONS(6333), - [anon_sym_BSLASHPnotecite] = ACTIONS(6333), - [anon_sym_BSLASHfnotecite] = ACTIONS(6333), - [anon_sym_BSLASHlabel] = ACTIONS(6333), - [anon_sym_BSLASHref] = ACTIONS(6333), - [anon_sym_BSLASHeqref] = ACTIONS(6333), - [anon_sym_BSLASHvref] = ACTIONS(6333), - [anon_sym_BSLASHVref] = ACTIONS(6333), - [anon_sym_BSLASHautoref] = ACTIONS(6333), - [anon_sym_BSLASHpageref] = ACTIONS(6333), - [anon_sym_BSLASHcref] = ACTIONS(6333), - [anon_sym_BSLASHCref] = ACTIONS(6333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnameCref] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHlabelcref] = ACTIONS(6333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCrefrange] = ACTIONS(6333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnewlabel] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6335), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHdef] = ACTIONS(6333), - [anon_sym_BSLASHlet] = ACTIONS(6333), - [anon_sym_BSLASHleft] = ACTIONS(6333), - [anon_sym_BSLASHbig] = ACTIONS(6333), - [anon_sym_BSLASHBig] = ACTIONS(6333), - [anon_sym_BSLASHbigg] = ACTIONS(6333), - [anon_sym_BSLASHBigg] = ACTIONS(6333), - [anon_sym_BSLASHbigl] = ACTIONS(6333), - [anon_sym_BSLASHBigl] = ACTIONS(6333), - [anon_sym_BSLASHbiggl] = ACTIONS(6333), - [anon_sym_BSLASHBiggl] = ACTIONS(6333), - [anon_sym_BSLASHright] = ACTIONS(6333), - [anon_sym_BSLASHbigr] = ACTIONS(6333), - [anon_sym_BSLASHBigr] = ACTIONS(6333), - [anon_sym_BSLASHbiggr] = ACTIONS(6333), - [anon_sym_BSLASHBiggr] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6333), - [anon_sym_BSLASHgls] = ACTIONS(6333), - [anon_sym_BSLASHGls] = ACTIONS(6333), - [anon_sym_BSLASHGLS] = ACTIONS(6333), - [anon_sym_BSLASHglspl] = ACTIONS(6333), - [anon_sym_BSLASHGlspl] = ACTIONS(6333), - [anon_sym_BSLASHGLSpl] = ACTIONS(6333), - [anon_sym_BSLASHglsdisp] = ACTIONS(6333), - [anon_sym_BSLASHglslink] = ACTIONS(6333), - [anon_sym_BSLASHglstext] = ACTIONS(6333), - [anon_sym_BSLASHGlstext] = ACTIONS(6333), - [anon_sym_BSLASHGLStext] = ACTIONS(6333), - [anon_sym_BSLASHglsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6333), - [anon_sym_BSLASHglsplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSplural] = ACTIONS(6333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHglsname] = ACTIONS(6333), - [anon_sym_BSLASHGlsname] = ACTIONS(6333), - [anon_sym_BSLASHGLSname] = ACTIONS(6333), - [anon_sym_BSLASHglssymbol] = ACTIONS(6333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6333), - [anon_sym_BSLASHglsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6333), - [anon_sym_BSLASHglsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6333), - [anon_sym_BSLASHglsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6333), - [anon_sym_BSLASHglsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6333), - [anon_sym_BSLASHglsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6333), - [anon_sym_BSLASHnewacronym] = ACTIONS(6333), - [anon_sym_BSLASHacrshort] = ACTIONS(6333), - [anon_sym_BSLASHAcrshort] = ACTIONS(6333), - [anon_sym_BSLASHACRshort] = ACTIONS(6333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6333), - [anon_sym_BSLASHacrlong] = ACTIONS(6333), - [anon_sym_BSLASHAcrlong] = ACTIONS(6333), - [anon_sym_BSLASHACRlong] = ACTIONS(6333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6333), - [anon_sym_BSLASHacrfull] = ACTIONS(6333), - [anon_sym_BSLASHAcrfull] = ACTIONS(6333), - [anon_sym_BSLASHACRfull] = ACTIONS(6333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6333), - [anon_sym_BSLASHacs] = ACTIONS(6333), - [anon_sym_BSLASHAcs] = ACTIONS(6333), - [anon_sym_BSLASHacsp] = ACTIONS(6333), - [anon_sym_BSLASHAcsp] = ACTIONS(6333), - [anon_sym_BSLASHacl] = ACTIONS(6333), - [anon_sym_BSLASHAcl] = ACTIONS(6333), - [anon_sym_BSLASHaclp] = ACTIONS(6333), - [anon_sym_BSLASHAclp] = ACTIONS(6333), - [anon_sym_BSLASHacf] = ACTIONS(6333), - [anon_sym_BSLASHAcf] = ACTIONS(6333), - [anon_sym_BSLASHacfp] = ACTIONS(6333), - [anon_sym_BSLASHAcfp] = ACTIONS(6333), - [anon_sym_BSLASHac] = ACTIONS(6333), - [anon_sym_BSLASHAc] = ACTIONS(6333), - [anon_sym_BSLASHacp] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6333), - [anon_sym_BSLASHcolor] = ACTIONS(6333), - [anon_sym_BSLASHcolorbox] = ACTIONS(6333), - [anon_sym_BSLASHtextcolor] = ACTIONS(6333), - [anon_sym_BSLASHpagecolor] = ACTIONS(6333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6333), - [anon_sym_BSLASHtext] = ACTIONS(6333), - [anon_sym_BSLASHintertext] = ACTIONS(6333), - [anon_sym_shortintertext] = ACTIONS(6333), - }, - [564] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(5954), - [sym_command_name] = ACTIONS(5952), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(5954), - [anon_sym_RBRACK] = ACTIONS(5954), - [anon_sym_COMMA] = ACTIONS(5954), - [anon_sym_EQ] = ACTIONS(5954), - [anon_sym_LPAREN] = ACTIONS(5954), - [anon_sym_RPAREN] = ACTIONS(5954), - [anon_sym_BSLASHpart] = ACTIONS(5952), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddpart] = ACTIONS(5952), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5954), - [anon_sym_BSLASHchapter] = ACTIONS(5952), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddchap] = ACTIONS(5952), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsection] = ACTIONS(5952), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddsec] = ACTIONS(5952), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubsection] = ACTIONS(5952), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5952), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHparagraph] = ACTIONS(5952), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5952), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5954), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(5954), - [anon_sym_RBRACE] = ACTIONS(5954), - [sym_word] = ACTIONS(5952), - [sym_placeholder] = ACTIONS(5954), - [anon_sym_PLUS] = ACTIONS(5954), - [anon_sym_DASH] = ACTIONS(5954), - [anon_sym_STAR] = ACTIONS(5954), - [anon_sym_SLASH] = ACTIONS(5954), - [anon_sym_LT] = ACTIONS(5952), - [anon_sym_GT] = ACTIONS(5952), - [anon_sym_BANG] = ACTIONS(5952), - [anon_sym_PIPE] = ACTIONS(5952), - [anon_sym_COLON] = ACTIONS(5952), - [anon_sym_SQUOTE] = ACTIONS(5952), - [anon_sym__] = ACTIONS(5954), - [anon_sym_CARET] = ACTIONS(5954), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5954), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5954), - [anon_sym_DOLLAR] = ACTIONS(5952), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5954), - [anon_sym_BSLASHbegin] = ACTIONS(5952), - [anon_sym_BSLASHtitle] = ACTIONS(5952), - [anon_sym_BSLASHauthor] = ACTIONS(5952), - [anon_sym_BSLASHusepackage] = ACTIONS(5952), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5952), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5952), - [anon_sym_BSLASHinclude] = ACTIONS(5952), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5952), - [anon_sym_BSLASHinput] = ACTIONS(5952), - [anon_sym_BSLASHsubfile] = ACTIONS(5952), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5952), - [anon_sym_BSLASHbibliography] = ACTIONS(5952), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5952), - [anon_sym_BSLASHincludesvg] = ACTIONS(5952), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5952), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5952), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5952), - [anon_sym_BSLASHimport] = ACTIONS(5952), - [anon_sym_BSLASHsubimport] = ACTIONS(5952), - [anon_sym_BSLASHinputfrom] = ACTIONS(5952), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5952), - [anon_sym_BSLASHincludefrom] = ACTIONS(5952), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5952), - [anon_sym_BSLASHcaption] = ACTIONS(5952), - [anon_sym_BSLASHcite] = ACTIONS(5952), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCite] = ACTIONS(5952), - [anon_sym_BSLASHnocite] = ACTIONS(5952), - [anon_sym_BSLASHcitet] = ACTIONS(5952), - [anon_sym_BSLASHcitep] = ACTIONS(5952), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteauthor] = ACTIONS(5952), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5952), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitetitle] = ACTIONS(5952), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteyear] = ACTIONS(5952), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitedate] = ACTIONS(5952), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteurl] = ACTIONS(5952), - [anon_sym_BSLASHfullcite] = ACTIONS(5952), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5952), - [anon_sym_BSLASHcitealt] = ACTIONS(5952), - [anon_sym_BSLASHcitealp] = ACTIONS(5952), - [anon_sym_BSLASHcitetext] = ACTIONS(5952), - [anon_sym_BSLASHparencite] = ACTIONS(5952), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHParencite] = ACTIONS(5952), - [anon_sym_BSLASHfootcite] = ACTIONS(5952), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5952), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5952), - [anon_sym_BSLASHtextcite] = ACTIONS(5952), - [anon_sym_BSLASHTextcite] = ACTIONS(5952), - [anon_sym_BSLASHsmartcite] = ACTIONS(5952), - [anon_sym_BSLASHSmartcite] = ACTIONS(5952), - [anon_sym_BSLASHsupercite] = ACTIONS(5952), - [anon_sym_BSLASHautocite] = ACTIONS(5952), - [anon_sym_BSLASHAutocite] = ACTIONS(5952), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHvolcite] = ACTIONS(5952), - [anon_sym_BSLASHVolcite] = ACTIONS(5952), - [anon_sym_BSLASHpvolcite] = ACTIONS(5952), - [anon_sym_BSLASHPvolcite] = ACTIONS(5952), - [anon_sym_BSLASHfvolcite] = ACTIONS(5952), - [anon_sym_BSLASHftvolcite] = ACTIONS(5952), - [anon_sym_BSLASHsvolcite] = ACTIONS(5952), - [anon_sym_BSLASHSvolcite] = ACTIONS(5952), - [anon_sym_BSLASHtvolcite] = ACTIONS(5952), - [anon_sym_BSLASHTvolcite] = ACTIONS(5952), - [anon_sym_BSLASHavolcite] = ACTIONS(5952), - [anon_sym_BSLASHAvolcite] = ACTIONS(5952), - [anon_sym_BSLASHnotecite] = ACTIONS(5952), - [anon_sym_BSLASHNotecite] = ACTIONS(5952), - [anon_sym_BSLASHpnotecite] = ACTIONS(5952), - [anon_sym_BSLASHPnotecite] = ACTIONS(5952), - [anon_sym_BSLASHfnotecite] = ACTIONS(5952), - [anon_sym_BSLASHlabel] = ACTIONS(5952), - [anon_sym_BSLASHref] = ACTIONS(5952), - [anon_sym_BSLASHeqref] = ACTIONS(5952), - [anon_sym_BSLASHvref] = ACTIONS(5952), - [anon_sym_BSLASHVref] = ACTIONS(5952), - [anon_sym_BSLASHautoref] = ACTIONS(5952), - [anon_sym_BSLASHpageref] = ACTIONS(5952), - [anon_sym_BSLASHcref] = ACTIONS(5952), - [anon_sym_BSLASHCref] = ACTIONS(5952), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5954), - [anon_sym_BSLASHnamecref] = ACTIONS(5952), - [anon_sym_BSLASHnameCref] = ACTIONS(5952), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5952), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5952), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5952), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5952), - [anon_sym_BSLASHlabelcref] = ACTIONS(5952), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5952), - [anon_sym_BSLASHcrefrange] = ACTIONS(5952), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCrefrange] = ACTIONS(5952), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5954), - [anon_sym_BSLASHnewlabel] = ACTIONS(5952), - [anon_sym_BSLASHnewcommand] = ACTIONS(5952), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5952), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5952), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5954), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHdef] = ACTIONS(5952), - [anon_sym_BSLASHlet] = ACTIONS(5952), - [anon_sym_BSLASHleft] = ACTIONS(5952), - [anon_sym_BSLASHbig] = ACTIONS(5952), - [anon_sym_BSLASHBig] = ACTIONS(5952), - [anon_sym_BSLASHbigg] = ACTIONS(5952), - [anon_sym_BSLASHBigg] = ACTIONS(5952), - [anon_sym_BSLASHbigl] = ACTIONS(5952), - [anon_sym_BSLASHBigl] = ACTIONS(5952), - [anon_sym_BSLASHbiggl] = ACTIONS(5952), - [anon_sym_BSLASHBiggl] = ACTIONS(5952), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5952), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5952), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5952), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5952), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5952), - [anon_sym_BSLASHgls] = ACTIONS(5952), - [anon_sym_BSLASHGls] = ACTIONS(5952), - [anon_sym_BSLASHGLS] = ACTIONS(5952), - [anon_sym_BSLASHglspl] = ACTIONS(5952), - [anon_sym_BSLASHGlspl] = ACTIONS(5952), - [anon_sym_BSLASHGLSpl] = ACTIONS(5952), - [anon_sym_BSLASHglsdisp] = ACTIONS(5952), - [anon_sym_BSLASHglslink] = ACTIONS(5952), - [anon_sym_BSLASHglstext] = ACTIONS(5952), - [anon_sym_BSLASHGlstext] = ACTIONS(5952), - [anon_sym_BSLASHGLStext] = ACTIONS(5952), - [anon_sym_BSLASHglsfirst] = ACTIONS(5952), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5952), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5952), - [anon_sym_BSLASHglsplural] = ACTIONS(5952), - [anon_sym_BSLASHGlsplural] = ACTIONS(5952), - [anon_sym_BSLASHGLSplural] = ACTIONS(5952), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHglsname] = ACTIONS(5952), - [anon_sym_BSLASHGlsname] = ACTIONS(5952), - [anon_sym_BSLASHGLSname] = ACTIONS(5952), - [anon_sym_BSLASHglssymbol] = ACTIONS(5952), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5952), - [anon_sym_BSLASHglsdesc] = ACTIONS(5952), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5952), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5952), - [anon_sym_BSLASHglsuseri] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5952), - [anon_sym_BSLASHglsuserii] = ACTIONS(5952), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5952), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5952), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5952), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5952), - [anon_sym_BSLASHglsuserv] = ACTIONS(5952), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5952), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5952), - [anon_sym_BSLASHglsuservi] = ACTIONS(5952), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5952), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5952), - [anon_sym_BSLASHnewacronym] = ACTIONS(5952), - [anon_sym_BSLASHacrshort] = ACTIONS(5952), - [anon_sym_BSLASHAcrshort] = ACTIONS(5952), - [anon_sym_BSLASHACRshort] = ACTIONS(5952), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5952), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5952), - [anon_sym_BSLASHacrlong] = ACTIONS(5952), - [anon_sym_BSLASHAcrlong] = ACTIONS(5952), - [anon_sym_BSLASHACRlong] = ACTIONS(5952), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5952), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5952), - [anon_sym_BSLASHacrfull] = ACTIONS(5952), - [anon_sym_BSLASHAcrfull] = ACTIONS(5952), - [anon_sym_BSLASHACRfull] = ACTIONS(5952), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5952), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5952), - [anon_sym_BSLASHacs] = ACTIONS(5952), - [anon_sym_BSLASHAcs] = ACTIONS(5952), - [anon_sym_BSLASHacsp] = ACTIONS(5952), - [anon_sym_BSLASHAcsp] = ACTIONS(5952), - [anon_sym_BSLASHacl] = ACTIONS(5952), - [anon_sym_BSLASHAcl] = ACTIONS(5952), - [anon_sym_BSLASHaclp] = ACTIONS(5952), - [anon_sym_BSLASHAclp] = ACTIONS(5952), - [anon_sym_BSLASHacf] = ACTIONS(5952), - [anon_sym_BSLASHAcf] = ACTIONS(5952), - [anon_sym_BSLASHacfp] = ACTIONS(5952), - [anon_sym_BSLASHAcfp] = ACTIONS(5952), - [anon_sym_BSLASHac] = ACTIONS(5952), - [anon_sym_BSLASHAc] = ACTIONS(5952), - [anon_sym_BSLASHacp] = ACTIONS(5952), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5952), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5952), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5952), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5952), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5952), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5952), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5952), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5954), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5952), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5954), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5952), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5952), - [anon_sym_BSLASHcolor] = ACTIONS(5952), - [anon_sym_BSLASHcolorbox] = ACTIONS(5952), - [anon_sym_BSLASHtextcolor] = ACTIONS(5952), - [anon_sym_BSLASHpagecolor] = ACTIONS(5952), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5952), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5952), - [anon_sym_BSLASHtext] = ACTIONS(5952), - [anon_sym_BSLASHintertext] = ACTIONS(5952), - [anon_sym_shortintertext] = ACTIONS(5952), - }, - [565] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(5958), - [sym_command_name] = ACTIONS(5956), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_EQ] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_BSLASHpart] = ACTIONS(5956), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddpart] = ACTIONS(5956), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHchapter] = ACTIONS(5956), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddchap] = ACTIONS(5956), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsection] = ACTIONS(5956), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddsec] = ACTIONS(5956), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHparagraph] = ACTIONS(5956), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5956), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(5958), - [anon_sym_RBRACE] = ACTIONS(5958), - [sym_word] = ACTIONS(5956), - [sym_placeholder] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5956), - [anon_sym_GT] = ACTIONS(5956), - [anon_sym_BANG] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_SQUOTE] = ACTIONS(5956), - [anon_sym__] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5958), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5958), - [anon_sym_DOLLAR] = ACTIONS(5956), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5958), - [anon_sym_BSLASHbegin] = ACTIONS(5956), - [anon_sym_BSLASHtitle] = ACTIONS(5956), - [anon_sym_BSLASHauthor] = ACTIONS(5956), - [anon_sym_BSLASHusepackage] = ACTIONS(5956), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5956), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5956), - [anon_sym_BSLASHinclude] = ACTIONS(5956), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5956), - [anon_sym_BSLASHinput] = ACTIONS(5956), - [anon_sym_BSLASHsubfile] = ACTIONS(5956), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5956), - [anon_sym_BSLASHbibliography] = ACTIONS(5956), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5956), - [anon_sym_BSLASHincludesvg] = ACTIONS(5956), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5956), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5956), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5956), - [anon_sym_BSLASHimport] = ACTIONS(5956), - [anon_sym_BSLASHsubimport] = ACTIONS(5956), - [anon_sym_BSLASHinputfrom] = ACTIONS(5956), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5956), - [anon_sym_BSLASHincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHcaption] = ACTIONS(5956), - [anon_sym_BSLASHcite] = ACTIONS(5956), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCite] = ACTIONS(5956), - [anon_sym_BSLASHnocite] = ACTIONS(5956), - [anon_sym_BSLASHcitet] = ACTIONS(5956), - [anon_sym_BSLASHcitep] = ACTIONS(5956), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteauthor] = ACTIONS(5956), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5956), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitetitle] = ACTIONS(5956), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteyear] = ACTIONS(5956), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitedate] = ACTIONS(5956), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteurl] = ACTIONS(5956), - [anon_sym_BSLASHfullcite] = ACTIONS(5956), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5956), - [anon_sym_BSLASHcitealt] = ACTIONS(5956), - [anon_sym_BSLASHcitealp] = ACTIONS(5956), - [anon_sym_BSLASHcitetext] = ACTIONS(5956), - [anon_sym_BSLASHparencite] = ACTIONS(5956), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHParencite] = ACTIONS(5956), - [anon_sym_BSLASHfootcite] = ACTIONS(5956), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5956), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5956), - [anon_sym_BSLASHtextcite] = ACTIONS(5956), - [anon_sym_BSLASHTextcite] = ACTIONS(5956), - [anon_sym_BSLASHsmartcite] = ACTIONS(5956), - [anon_sym_BSLASHSmartcite] = ACTIONS(5956), - [anon_sym_BSLASHsupercite] = ACTIONS(5956), - [anon_sym_BSLASHautocite] = ACTIONS(5956), - [anon_sym_BSLASHAutocite] = ACTIONS(5956), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHvolcite] = ACTIONS(5956), - [anon_sym_BSLASHVolcite] = ACTIONS(5956), - [anon_sym_BSLASHpvolcite] = ACTIONS(5956), - [anon_sym_BSLASHPvolcite] = ACTIONS(5956), - [anon_sym_BSLASHfvolcite] = ACTIONS(5956), - [anon_sym_BSLASHftvolcite] = ACTIONS(5956), - [anon_sym_BSLASHsvolcite] = ACTIONS(5956), - [anon_sym_BSLASHSvolcite] = ACTIONS(5956), - [anon_sym_BSLASHtvolcite] = ACTIONS(5956), - [anon_sym_BSLASHTvolcite] = ACTIONS(5956), - [anon_sym_BSLASHavolcite] = ACTIONS(5956), - [anon_sym_BSLASHAvolcite] = ACTIONS(5956), - [anon_sym_BSLASHnotecite] = ACTIONS(5956), - [anon_sym_BSLASHNotecite] = ACTIONS(5956), - [anon_sym_BSLASHpnotecite] = ACTIONS(5956), - [anon_sym_BSLASHPnotecite] = ACTIONS(5956), - [anon_sym_BSLASHfnotecite] = ACTIONS(5956), - [anon_sym_BSLASHlabel] = ACTIONS(5956), - [anon_sym_BSLASHref] = ACTIONS(5956), - [anon_sym_BSLASHeqref] = ACTIONS(5956), - [anon_sym_BSLASHvref] = ACTIONS(5956), - [anon_sym_BSLASHVref] = ACTIONS(5956), - [anon_sym_BSLASHautoref] = ACTIONS(5956), - [anon_sym_BSLASHpageref] = ACTIONS(5956), - [anon_sym_BSLASHcref] = ACTIONS(5956), - [anon_sym_BSLASHCref] = ACTIONS(5956), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnameCref] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHlabelcref] = ACTIONS(5956), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCrefrange] = ACTIONS(5956), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnewlabel] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5956), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5956), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5958), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHdef] = ACTIONS(5956), - [anon_sym_BSLASHlet] = ACTIONS(5956), - [anon_sym_BSLASHleft] = ACTIONS(5956), - [anon_sym_BSLASHbig] = ACTIONS(5956), - [anon_sym_BSLASHBig] = ACTIONS(5956), - [anon_sym_BSLASHbigg] = ACTIONS(5956), - [anon_sym_BSLASHBigg] = ACTIONS(5956), - [anon_sym_BSLASHbigl] = ACTIONS(5956), - [anon_sym_BSLASHBigl] = ACTIONS(5956), - [anon_sym_BSLASHbiggl] = ACTIONS(5956), - [anon_sym_BSLASHBiggl] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5956), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5956), - [anon_sym_BSLASHgls] = ACTIONS(5956), - [anon_sym_BSLASHGls] = ACTIONS(5956), - [anon_sym_BSLASHGLS] = ACTIONS(5956), - [anon_sym_BSLASHglspl] = ACTIONS(5956), - [anon_sym_BSLASHGlspl] = ACTIONS(5956), - [anon_sym_BSLASHGLSpl] = ACTIONS(5956), - [anon_sym_BSLASHglsdisp] = ACTIONS(5956), - [anon_sym_BSLASHglslink] = ACTIONS(5956), - [anon_sym_BSLASHglstext] = ACTIONS(5956), - [anon_sym_BSLASHGlstext] = ACTIONS(5956), - [anon_sym_BSLASHGLStext] = ACTIONS(5956), - [anon_sym_BSLASHglsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5956), - [anon_sym_BSLASHglsplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSplural] = ACTIONS(5956), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHglsname] = ACTIONS(5956), - [anon_sym_BSLASHGlsname] = ACTIONS(5956), - [anon_sym_BSLASHGLSname] = ACTIONS(5956), - [anon_sym_BSLASHglssymbol] = ACTIONS(5956), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5956), - [anon_sym_BSLASHglsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5956), - [anon_sym_BSLASHglsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5956), - [anon_sym_BSLASHglsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5956), - [anon_sym_BSLASHglsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5956), - [anon_sym_BSLASHglsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5956), - [anon_sym_BSLASHnewacronym] = ACTIONS(5956), - [anon_sym_BSLASHacrshort] = ACTIONS(5956), - [anon_sym_BSLASHAcrshort] = ACTIONS(5956), - [anon_sym_BSLASHACRshort] = ACTIONS(5956), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5956), - [anon_sym_BSLASHacrlong] = ACTIONS(5956), - [anon_sym_BSLASHAcrlong] = ACTIONS(5956), - [anon_sym_BSLASHACRlong] = ACTIONS(5956), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5956), - [anon_sym_BSLASHacrfull] = ACTIONS(5956), - [anon_sym_BSLASHAcrfull] = ACTIONS(5956), - [anon_sym_BSLASHACRfull] = ACTIONS(5956), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5956), - [anon_sym_BSLASHacs] = ACTIONS(5956), - [anon_sym_BSLASHAcs] = ACTIONS(5956), - [anon_sym_BSLASHacsp] = ACTIONS(5956), - [anon_sym_BSLASHAcsp] = ACTIONS(5956), - [anon_sym_BSLASHacl] = ACTIONS(5956), - [anon_sym_BSLASHAcl] = ACTIONS(5956), - [anon_sym_BSLASHaclp] = ACTIONS(5956), - [anon_sym_BSLASHAclp] = ACTIONS(5956), - [anon_sym_BSLASHacf] = ACTIONS(5956), - [anon_sym_BSLASHAcf] = ACTIONS(5956), - [anon_sym_BSLASHacfp] = ACTIONS(5956), - [anon_sym_BSLASHAcfp] = ACTIONS(5956), - [anon_sym_BSLASHac] = ACTIONS(5956), - [anon_sym_BSLASHAc] = ACTIONS(5956), - [anon_sym_BSLASHacp] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5956), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5956), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5956), - [anon_sym_BSLASHcolor] = ACTIONS(5956), - [anon_sym_BSLASHcolorbox] = ACTIONS(5956), - [anon_sym_BSLASHtextcolor] = ACTIONS(5956), - [anon_sym_BSLASHpagecolor] = ACTIONS(5956), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5956), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5956), - [anon_sym_BSLASHtext] = ACTIONS(5956), - [anon_sym_BSLASHintertext] = ACTIONS(5956), - [anon_sym_shortintertext] = ACTIONS(5956), - }, - [566] = { - [sym__section_part] = STATE(928), - [sym_curly_group] = STATE(927), - [sym_brack_group] = STATE(2889), - [ts_builtin_sym_end] = ACTIONS(5830), - [sym_command_name] = ACTIONS(5828), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5828), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5830), - [anon_sym_COMMA] = ACTIONS(5830), - [anon_sym_EQ] = ACTIONS(5830), - [anon_sym_LPAREN] = ACTIONS(5830), - [anon_sym_RPAREN] = ACTIONS(5830), - [anon_sym_BSLASHpart] = ACTIONS(5828), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddpart] = ACTIONS(5828), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5830), - [anon_sym_BSLASHchapter] = ACTIONS(5828), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddchap] = ACTIONS(5828), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsection] = ACTIONS(5828), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddsec] = ACTIONS(5828), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubsection] = ACTIONS(5828), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5828), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHparagraph] = ACTIONS(5828), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5828), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5830), - [anon_sym_BSLASHitem] = ACTIONS(5828), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5830), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5830), - [sym_word] = ACTIONS(5828), - [sym_placeholder] = ACTIONS(5830), - [anon_sym_PLUS] = ACTIONS(5830), - [anon_sym_DASH] = ACTIONS(5830), - [anon_sym_STAR] = ACTIONS(5830), - [anon_sym_SLASH] = ACTIONS(5830), - [anon_sym_LT] = ACTIONS(5828), - [anon_sym_GT] = ACTIONS(5828), - [anon_sym_BANG] = ACTIONS(5828), - [anon_sym_PIPE] = ACTIONS(5828), - [anon_sym_COLON] = ACTIONS(5828), - [anon_sym_SQUOTE] = ACTIONS(5828), - [anon_sym__] = ACTIONS(5830), - [anon_sym_CARET] = ACTIONS(5830), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5830), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5830), - [anon_sym_DOLLAR] = ACTIONS(5828), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5830), - [anon_sym_BSLASHbegin] = ACTIONS(5828), - [anon_sym_BSLASHtitle] = ACTIONS(5828), - [anon_sym_BSLASHauthor] = ACTIONS(5828), - [anon_sym_BSLASHusepackage] = ACTIONS(5828), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5828), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5828), - [anon_sym_BSLASHinclude] = ACTIONS(5828), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5828), - [anon_sym_BSLASHinput] = ACTIONS(5828), - [anon_sym_BSLASHsubfile] = ACTIONS(5828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5828), - [anon_sym_BSLASHbibliography] = ACTIONS(5828), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5828), - [anon_sym_BSLASHincludesvg] = ACTIONS(5828), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5828), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5828), - [anon_sym_BSLASHimport] = ACTIONS(5828), - [anon_sym_BSLASHsubimport] = ACTIONS(5828), - [anon_sym_BSLASHinputfrom] = ACTIONS(5828), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5828), - [anon_sym_BSLASHincludefrom] = ACTIONS(5828), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5828), - [anon_sym_BSLASHcaption] = ACTIONS(5828), - [anon_sym_BSLASHcite] = ACTIONS(5828), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCite] = ACTIONS(5828), - [anon_sym_BSLASHnocite] = ACTIONS(5828), - [anon_sym_BSLASHcitet] = ACTIONS(5828), - [anon_sym_BSLASHcitep] = ACTIONS(5828), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteauthor] = ACTIONS(5828), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5828), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitetitle] = ACTIONS(5828), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteyear] = ACTIONS(5828), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitedate] = ACTIONS(5828), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteurl] = ACTIONS(5828), - [anon_sym_BSLASHfullcite] = ACTIONS(5828), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5828), - [anon_sym_BSLASHcitealt] = ACTIONS(5828), - [anon_sym_BSLASHcitealp] = ACTIONS(5828), - [anon_sym_BSLASHcitetext] = ACTIONS(5828), - [anon_sym_BSLASHparencite] = ACTIONS(5828), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHParencite] = ACTIONS(5828), - [anon_sym_BSLASHfootcite] = ACTIONS(5828), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5828), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5828), - [anon_sym_BSLASHtextcite] = ACTIONS(5828), - [anon_sym_BSLASHTextcite] = ACTIONS(5828), - [anon_sym_BSLASHsmartcite] = ACTIONS(5828), - [anon_sym_BSLASHSmartcite] = ACTIONS(5828), - [anon_sym_BSLASHsupercite] = ACTIONS(5828), - [anon_sym_BSLASHautocite] = ACTIONS(5828), - [anon_sym_BSLASHAutocite] = ACTIONS(5828), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHvolcite] = ACTIONS(5828), - [anon_sym_BSLASHVolcite] = ACTIONS(5828), - [anon_sym_BSLASHpvolcite] = ACTIONS(5828), - [anon_sym_BSLASHPvolcite] = ACTIONS(5828), - [anon_sym_BSLASHfvolcite] = ACTIONS(5828), - [anon_sym_BSLASHftvolcite] = ACTIONS(5828), - [anon_sym_BSLASHsvolcite] = ACTIONS(5828), - [anon_sym_BSLASHSvolcite] = ACTIONS(5828), - [anon_sym_BSLASHtvolcite] = ACTIONS(5828), - [anon_sym_BSLASHTvolcite] = ACTIONS(5828), - [anon_sym_BSLASHavolcite] = ACTIONS(5828), - [anon_sym_BSLASHAvolcite] = ACTIONS(5828), - [anon_sym_BSLASHnotecite] = ACTIONS(5828), - [anon_sym_BSLASHNotecite] = ACTIONS(5828), - [anon_sym_BSLASHpnotecite] = ACTIONS(5828), - [anon_sym_BSLASHPnotecite] = ACTIONS(5828), - [anon_sym_BSLASHfnotecite] = ACTIONS(5828), - [anon_sym_BSLASHlabel] = ACTIONS(5828), - [anon_sym_BSLASHref] = ACTIONS(5828), - [anon_sym_BSLASHeqref] = ACTIONS(5828), - [anon_sym_BSLASHvref] = ACTIONS(5828), - [anon_sym_BSLASHVref] = ACTIONS(5828), - [anon_sym_BSLASHautoref] = ACTIONS(5828), - [anon_sym_BSLASHpageref] = ACTIONS(5828), - [anon_sym_BSLASHcref] = ACTIONS(5828), - [anon_sym_BSLASHCref] = ACTIONS(5828), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5830), - [anon_sym_BSLASHnamecref] = ACTIONS(5828), - [anon_sym_BSLASHnameCref] = ACTIONS(5828), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5828), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5828), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5828), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5828), - [anon_sym_BSLASHlabelcref] = ACTIONS(5828), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5828), - [anon_sym_BSLASHcrefrange] = ACTIONS(5828), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCrefrange] = ACTIONS(5828), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5830), - [anon_sym_BSLASHnewlabel] = ACTIONS(5828), - [anon_sym_BSLASHnewcommand] = ACTIONS(5828), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5828), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5828), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5830), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHdef] = ACTIONS(5828), - [anon_sym_BSLASHlet] = ACTIONS(5828), - [anon_sym_BSLASHleft] = ACTIONS(5828), - [anon_sym_BSLASHbig] = ACTIONS(5828), - [anon_sym_BSLASHBig] = ACTIONS(5828), - [anon_sym_BSLASHbigg] = ACTIONS(5828), - [anon_sym_BSLASHBigg] = ACTIONS(5828), - [anon_sym_BSLASHbigl] = ACTIONS(5828), - [anon_sym_BSLASHBigl] = ACTIONS(5828), - [anon_sym_BSLASHbiggl] = ACTIONS(5828), - [anon_sym_BSLASHBiggl] = ACTIONS(5828), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5828), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5828), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5828), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5828), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5828), - [anon_sym_BSLASHgls] = ACTIONS(5828), - [anon_sym_BSLASHGls] = ACTIONS(5828), - [anon_sym_BSLASHGLS] = ACTIONS(5828), - [anon_sym_BSLASHglspl] = ACTIONS(5828), - [anon_sym_BSLASHGlspl] = ACTIONS(5828), - [anon_sym_BSLASHGLSpl] = ACTIONS(5828), - [anon_sym_BSLASHglsdisp] = ACTIONS(5828), - [anon_sym_BSLASHglslink] = ACTIONS(5828), - [anon_sym_BSLASHglstext] = ACTIONS(5828), - [anon_sym_BSLASHGlstext] = ACTIONS(5828), - [anon_sym_BSLASHGLStext] = ACTIONS(5828), - [anon_sym_BSLASHglsfirst] = ACTIONS(5828), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5828), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5828), - [anon_sym_BSLASHglsplural] = ACTIONS(5828), - [anon_sym_BSLASHGlsplural] = ACTIONS(5828), - [anon_sym_BSLASHGLSplural] = ACTIONS(5828), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHglsname] = ACTIONS(5828), - [anon_sym_BSLASHGlsname] = ACTIONS(5828), - [anon_sym_BSLASHGLSname] = ACTIONS(5828), - [anon_sym_BSLASHglssymbol] = ACTIONS(5828), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5828), - [anon_sym_BSLASHglsdesc] = ACTIONS(5828), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5828), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5828), - [anon_sym_BSLASHglsuseri] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5828), - [anon_sym_BSLASHglsuserii] = ACTIONS(5828), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5828), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5828), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5828), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5828), - [anon_sym_BSLASHglsuserv] = ACTIONS(5828), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5828), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5828), - [anon_sym_BSLASHglsuservi] = ACTIONS(5828), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5828), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5828), - [anon_sym_BSLASHnewacronym] = ACTIONS(5828), - [anon_sym_BSLASHacrshort] = ACTIONS(5828), - [anon_sym_BSLASHAcrshort] = ACTIONS(5828), - [anon_sym_BSLASHACRshort] = ACTIONS(5828), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5828), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5828), - [anon_sym_BSLASHacrlong] = ACTIONS(5828), - [anon_sym_BSLASHAcrlong] = ACTIONS(5828), - [anon_sym_BSLASHACRlong] = ACTIONS(5828), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5828), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5828), - [anon_sym_BSLASHacrfull] = ACTIONS(5828), - [anon_sym_BSLASHAcrfull] = ACTIONS(5828), - [anon_sym_BSLASHACRfull] = ACTIONS(5828), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5828), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5828), - [anon_sym_BSLASHacs] = ACTIONS(5828), - [anon_sym_BSLASHAcs] = ACTIONS(5828), - [anon_sym_BSLASHacsp] = ACTIONS(5828), - [anon_sym_BSLASHAcsp] = ACTIONS(5828), - [anon_sym_BSLASHacl] = ACTIONS(5828), - [anon_sym_BSLASHAcl] = ACTIONS(5828), - [anon_sym_BSLASHaclp] = ACTIONS(5828), - [anon_sym_BSLASHAclp] = ACTIONS(5828), - [anon_sym_BSLASHacf] = ACTIONS(5828), - [anon_sym_BSLASHAcf] = ACTIONS(5828), - [anon_sym_BSLASHacfp] = ACTIONS(5828), - [anon_sym_BSLASHAcfp] = ACTIONS(5828), - [anon_sym_BSLASHac] = ACTIONS(5828), - [anon_sym_BSLASHAc] = ACTIONS(5828), - [anon_sym_BSLASHacp] = ACTIONS(5828), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5828), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5828), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5828), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5828), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5828), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5828), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5828), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5830), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5828), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5830), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5828), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5828), - [anon_sym_BSLASHcolor] = ACTIONS(5828), - [anon_sym_BSLASHcolorbox] = ACTIONS(5828), - [anon_sym_BSLASHtextcolor] = ACTIONS(5828), - [anon_sym_BSLASHpagecolor] = ACTIONS(5828), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5828), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5828), - [anon_sym_BSLASHtext] = ACTIONS(5828), - [anon_sym_BSLASHintertext] = ACTIONS(5828), - [anon_sym_shortintertext] = ACTIONS(5828), - }, - [567] = { - [sym_command_name] = ACTIONS(6337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6337), - [anon_sym_LBRACK] = ACTIONS(6339), - [anon_sym_RBRACK] = ACTIONS(6339), - [anon_sym_COMMA] = ACTIONS(6339), - [anon_sym_EQ] = ACTIONS(6339), - [anon_sym_LPAREN] = ACTIONS(6339), - [anon_sym_RPAREN] = ACTIONS(6339), - [anon_sym_BSLASHpart] = ACTIONS(6337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddpart] = ACTIONS(6337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6339), - [anon_sym_BSLASHchapter] = ACTIONS(6337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddchap] = ACTIONS(6337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsection] = ACTIONS(6337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddsec] = ACTIONS(6337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubsection] = ACTIONS(6337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHparagraph] = ACTIONS(6337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6339), - [anon_sym_BSLASHitem] = ACTIONS(6337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6339), - [anon_sym_LBRACE] = ACTIONS(6339), - [sym_word] = ACTIONS(6337), - [sym_placeholder] = ACTIONS(6339), - [anon_sym_PLUS] = ACTIONS(6339), - [anon_sym_DASH] = ACTIONS(6339), - [anon_sym_STAR] = ACTIONS(6339), - [anon_sym_SLASH] = ACTIONS(6339), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_COLON] = ACTIONS(6337), - [anon_sym_SQUOTE] = ACTIONS(6337), - [anon_sym__] = ACTIONS(6339), - [anon_sym_CARET] = ACTIONS(6339), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6339), - [anon_sym_DOLLAR] = ACTIONS(6337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6339), - [anon_sym_BSLASHbegin] = ACTIONS(6337), - [anon_sym_BSLASHtitle] = ACTIONS(6337), - [anon_sym_BSLASHauthor] = ACTIONS(6337), - [anon_sym_BSLASHusepackage] = ACTIONS(6337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6337), - [anon_sym_BSLASHinclude] = ACTIONS(6337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6337), - [anon_sym_BSLASHinput] = ACTIONS(6337), - [anon_sym_BSLASHsubfile] = ACTIONS(6337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6337), - [anon_sym_BSLASHbibliography] = ACTIONS(6337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6337), - [anon_sym_BSLASHincludesvg] = ACTIONS(6337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6337), - [anon_sym_BSLASHimport] = ACTIONS(6337), - [anon_sym_BSLASHsubimport] = ACTIONS(6337), - [anon_sym_BSLASHinputfrom] = ACTIONS(6337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6337), - [anon_sym_BSLASHincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHcaption] = ACTIONS(6337), - [anon_sym_BSLASHcite] = ACTIONS(6337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCite] = ACTIONS(6337), - [anon_sym_BSLASHnocite] = ACTIONS(6337), - [anon_sym_BSLASHcitet] = ACTIONS(6337), - [anon_sym_BSLASHcitep] = ACTIONS(6337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteauthor] = ACTIONS(6337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitetitle] = ACTIONS(6337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteyear] = ACTIONS(6337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitedate] = ACTIONS(6337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteurl] = ACTIONS(6337), - [anon_sym_BSLASHfullcite] = ACTIONS(6337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6337), - [anon_sym_BSLASHcitealt] = ACTIONS(6337), - [anon_sym_BSLASHcitealp] = ACTIONS(6337), - [anon_sym_BSLASHcitetext] = ACTIONS(6337), - [anon_sym_BSLASHparencite] = ACTIONS(6337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHParencite] = ACTIONS(6337), - [anon_sym_BSLASHfootcite] = ACTIONS(6337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6337), - [anon_sym_BSLASHtextcite] = ACTIONS(6337), - [anon_sym_BSLASHTextcite] = ACTIONS(6337), - [anon_sym_BSLASHsmartcite] = ACTIONS(6337), - [anon_sym_BSLASHSmartcite] = ACTIONS(6337), - [anon_sym_BSLASHsupercite] = ACTIONS(6337), - [anon_sym_BSLASHautocite] = ACTIONS(6337), - [anon_sym_BSLASHAutocite] = ACTIONS(6337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHvolcite] = ACTIONS(6337), - [anon_sym_BSLASHVolcite] = ACTIONS(6337), - [anon_sym_BSLASHpvolcite] = ACTIONS(6337), - [anon_sym_BSLASHPvolcite] = ACTIONS(6337), - [anon_sym_BSLASHfvolcite] = ACTIONS(6337), - [anon_sym_BSLASHftvolcite] = ACTIONS(6337), - [anon_sym_BSLASHsvolcite] = ACTIONS(6337), - [anon_sym_BSLASHSvolcite] = ACTIONS(6337), - [anon_sym_BSLASHtvolcite] = ACTIONS(6337), - [anon_sym_BSLASHTvolcite] = ACTIONS(6337), - [anon_sym_BSLASHavolcite] = ACTIONS(6337), - [anon_sym_BSLASHAvolcite] = ACTIONS(6337), - [anon_sym_BSLASHnotecite] = ACTIONS(6337), - [anon_sym_BSLASHNotecite] = ACTIONS(6337), - [anon_sym_BSLASHpnotecite] = ACTIONS(6337), - [anon_sym_BSLASHPnotecite] = ACTIONS(6337), - [anon_sym_BSLASHfnotecite] = ACTIONS(6337), - [anon_sym_BSLASHlabel] = ACTIONS(6337), - [anon_sym_BSLASHref] = ACTIONS(6337), - [anon_sym_BSLASHeqref] = ACTIONS(6337), - [anon_sym_BSLASHvref] = ACTIONS(6337), - [anon_sym_BSLASHVref] = ACTIONS(6337), - [anon_sym_BSLASHautoref] = ACTIONS(6337), - [anon_sym_BSLASHpageref] = ACTIONS(6337), - [anon_sym_BSLASHcref] = ACTIONS(6337), - [anon_sym_BSLASHCref] = ACTIONS(6337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnameCref] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHlabelcref] = ACTIONS(6337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCrefrange] = ACTIONS(6337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnewlabel] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6339), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHdef] = ACTIONS(6337), - [anon_sym_BSLASHlet] = ACTIONS(6337), - [anon_sym_BSLASHleft] = ACTIONS(6337), - [anon_sym_BSLASHbig] = ACTIONS(6337), - [anon_sym_BSLASHBig] = ACTIONS(6337), - [anon_sym_BSLASHbigg] = ACTIONS(6337), - [anon_sym_BSLASHBigg] = ACTIONS(6337), - [anon_sym_BSLASHbigl] = ACTIONS(6337), - [anon_sym_BSLASHBigl] = ACTIONS(6337), - [anon_sym_BSLASHbiggl] = ACTIONS(6337), - [anon_sym_BSLASHBiggl] = ACTIONS(6337), - [anon_sym_BSLASHright] = ACTIONS(6337), - [anon_sym_BSLASHbigr] = ACTIONS(6337), - [anon_sym_BSLASHBigr] = ACTIONS(6337), - [anon_sym_BSLASHbiggr] = ACTIONS(6337), - [anon_sym_BSLASHBiggr] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6337), - [anon_sym_BSLASHgls] = ACTIONS(6337), - [anon_sym_BSLASHGls] = ACTIONS(6337), - [anon_sym_BSLASHGLS] = ACTIONS(6337), - [anon_sym_BSLASHglspl] = ACTIONS(6337), - [anon_sym_BSLASHGlspl] = ACTIONS(6337), - [anon_sym_BSLASHGLSpl] = ACTIONS(6337), - [anon_sym_BSLASHglsdisp] = ACTIONS(6337), - [anon_sym_BSLASHglslink] = ACTIONS(6337), - [anon_sym_BSLASHglstext] = ACTIONS(6337), - [anon_sym_BSLASHGlstext] = ACTIONS(6337), - [anon_sym_BSLASHGLStext] = ACTIONS(6337), - [anon_sym_BSLASHglsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6337), - [anon_sym_BSLASHglsplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSplural] = ACTIONS(6337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHglsname] = ACTIONS(6337), - [anon_sym_BSLASHGlsname] = ACTIONS(6337), - [anon_sym_BSLASHGLSname] = ACTIONS(6337), - [anon_sym_BSLASHglssymbol] = ACTIONS(6337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6337), - [anon_sym_BSLASHglsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6337), - [anon_sym_BSLASHglsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6337), - [anon_sym_BSLASHglsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6337), - [anon_sym_BSLASHglsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6337), - [anon_sym_BSLASHglsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6337), - [anon_sym_BSLASHnewacronym] = ACTIONS(6337), - [anon_sym_BSLASHacrshort] = ACTIONS(6337), - [anon_sym_BSLASHAcrshort] = ACTIONS(6337), - [anon_sym_BSLASHACRshort] = ACTIONS(6337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6337), - [anon_sym_BSLASHacrlong] = ACTIONS(6337), - [anon_sym_BSLASHAcrlong] = ACTIONS(6337), - [anon_sym_BSLASHACRlong] = ACTIONS(6337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6337), - [anon_sym_BSLASHacrfull] = ACTIONS(6337), - [anon_sym_BSLASHAcrfull] = ACTIONS(6337), - [anon_sym_BSLASHACRfull] = ACTIONS(6337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6337), - [anon_sym_BSLASHacs] = ACTIONS(6337), - [anon_sym_BSLASHAcs] = ACTIONS(6337), - [anon_sym_BSLASHacsp] = ACTIONS(6337), - [anon_sym_BSLASHAcsp] = ACTIONS(6337), - [anon_sym_BSLASHacl] = ACTIONS(6337), - [anon_sym_BSLASHAcl] = ACTIONS(6337), - [anon_sym_BSLASHaclp] = ACTIONS(6337), - [anon_sym_BSLASHAclp] = ACTIONS(6337), - [anon_sym_BSLASHacf] = ACTIONS(6337), - [anon_sym_BSLASHAcf] = ACTIONS(6337), - [anon_sym_BSLASHacfp] = ACTIONS(6337), - [anon_sym_BSLASHAcfp] = ACTIONS(6337), - [anon_sym_BSLASHac] = ACTIONS(6337), - [anon_sym_BSLASHAc] = ACTIONS(6337), - [anon_sym_BSLASHacp] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6337), - [anon_sym_BSLASHcolor] = ACTIONS(6337), - [anon_sym_BSLASHcolorbox] = ACTIONS(6337), - [anon_sym_BSLASHtextcolor] = ACTIONS(6337), - [anon_sym_BSLASHpagecolor] = ACTIONS(6337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6337), - [anon_sym_BSLASHtext] = ACTIONS(6337), - [anon_sym_BSLASHintertext] = ACTIONS(6337), - [anon_sym_shortintertext] = ACTIONS(6337), - }, - [568] = { - [sym_command_name] = ACTIONS(6341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(6343), - [anon_sym_RBRACK] = ACTIONS(6343), - [anon_sym_COMMA] = ACTIONS(6343), - [anon_sym_EQ] = ACTIONS(6343), - [anon_sym_LPAREN] = ACTIONS(6343), - [anon_sym_RPAREN] = ACTIONS(6343), - [anon_sym_BSLASHpart] = ACTIONS(6341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddpart] = ACTIONS(6341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6343), - [anon_sym_BSLASHchapter] = ACTIONS(6341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddchap] = ACTIONS(6341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsection] = ACTIONS(6341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddsec] = ACTIONS(6341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubsection] = ACTIONS(6341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHparagraph] = ACTIONS(6341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6343), - [anon_sym_BSLASHitem] = ACTIONS(6341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6343), - [anon_sym_LBRACE] = ACTIONS(6343), - [sym_word] = ACTIONS(6341), - [sym_placeholder] = ACTIONS(6343), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_LT] = ACTIONS(6341), - [anon_sym_GT] = ACTIONS(6341), - [anon_sym_BANG] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_SQUOTE] = ACTIONS(6341), - [anon_sym__] = ACTIONS(6343), - [anon_sym_CARET] = ACTIONS(6343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6343), - [anon_sym_DOLLAR] = ACTIONS(6341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6343), - [anon_sym_BSLASHbegin] = ACTIONS(6341), - [anon_sym_BSLASHtitle] = ACTIONS(6341), - [anon_sym_BSLASHauthor] = ACTIONS(6341), - [anon_sym_BSLASHusepackage] = ACTIONS(6341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6341), - [anon_sym_BSLASHinclude] = ACTIONS(6341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6341), - [anon_sym_BSLASHinput] = ACTIONS(6341), - [anon_sym_BSLASHsubfile] = ACTIONS(6341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6341), - [anon_sym_BSLASHbibliography] = ACTIONS(6341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6341), - [anon_sym_BSLASHincludesvg] = ACTIONS(6341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6341), - [anon_sym_BSLASHimport] = ACTIONS(6341), - [anon_sym_BSLASHsubimport] = ACTIONS(6341), - [anon_sym_BSLASHinputfrom] = ACTIONS(6341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6341), - [anon_sym_BSLASHincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHcaption] = ACTIONS(6341), - [anon_sym_BSLASHcite] = ACTIONS(6341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCite] = ACTIONS(6341), - [anon_sym_BSLASHnocite] = ACTIONS(6341), - [anon_sym_BSLASHcitet] = ACTIONS(6341), - [anon_sym_BSLASHcitep] = ACTIONS(6341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteauthor] = ACTIONS(6341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitetitle] = ACTIONS(6341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteyear] = ACTIONS(6341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitedate] = ACTIONS(6341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteurl] = ACTIONS(6341), - [anon_sym_BSLASHfullcite] = ACTIONS(6341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6341), - [anon_sym_BSLASHcitealt] = ACTIONS(6341), - [anon_sym_BSLASHcitealp] = ACTIONS(6341), - [anon_sym_BSLASHcitetext] = ACTIONS(6341), - [anon_sym_BSLASHparencite] = ACTIONS(6341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHParencite] = ACTIONS(6341), - [anon_sym_BSLASHfootcite] = ACTIONS(6341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6341), - [anon_sym_BSLASHtextcite] = ACTIONS(6341), - [anon_sym_BSLASHTextcite] = ACTIONS(6341), - [anon_sym_BSLASHsmartcite] = ACTIONS(6341), - [anon_sym_BSLASHSmartcite] = ACTIONS(6341), - [anon_sym_BSLASHsupercite] = ACTIONS(6341), - [anon_sym_BSLASHautocite] = ACTIONS(6341), - [anon_sym_BSLASHAutocite] = ACTIONS(6341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHvolcite] = ACTIONS(6341), - [anon_sym_BSLASHVolcite] = ACTIONS(6341), - [anon_sym_BSLASHpvolcite] = ACTIONS(6341), - [anon_sym_BSLASHPvolcite] = ACTIONS(6341), - [anon_sym_BSLASHfvolcite] = ACTIONS(6341), - [anon_sym_BSLASHftvolcite] = ACTIONS(6341), - [anon_sym_BSLASHsvolcite] = ACTIONS(6341), - [anon_sym_BSLASHSvolcite] = ACTIONS(6341), - [anon_sym_BSLASHtvolcite] = ACTIONS(6341), - [anon_sym_BSLASHTvolcite] = ACTIONS(6341), - [anon_sym_BSLASHavolcite] = ACTIONS(6341), - [anon_sym_BSLASHAvolcite] = ACTIONS(6341), - [anon_sym_BSLASHnotecite] = ACTIONS(6341), - [anon_sym_BSLASHNotecite] = ACTIONS(6341), - [anon_sym_BSLASHpnotecite] = ACTIONS(6341), - [anon_sym_BSLASHPnotecite] = ACTIONS(6341), - [anon_sym_BSLASHfnotecite] = ACTIONS(6341), - [anon_sym_BSLASHlabel] = ACTIONS(6341), - [anon_sym_BSLASHref] = ACTIONS(6341), - [anon_sym_BSLASHeqref] = ACTIONS(6341), - [anon_sym_BSLASHvref] = ACTIONS(6341), - [anon_sym_BSLASHVref] = ACTIONS(6341), - [anon_sym_BSLASHautoref] = ACTIONS(6341), - [anon_sym_BSLASHpageref] = ACTIONS(6341), - [anon_sym_BSLASHcref] = ACTIONS(6341), - [anon_sym_BSLASHCref] = ACTIONS(6341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnameCref] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHlabelcref] = ACTIONS(6341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCrefrange] = ACTIONS(6341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnewlabel] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6343), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHdef] = ACTIONS(6341), - [anon_sym_BSLASHlet] = ACTIONS(6341), - [anon_sym_BSLASHleft] = ACTIONS(6341), - [anon_sym_BSLASHbig] = ACTIONS(6341), - [anon_sym_BSLASHBig] = ACTIONS(6341), - [anon_sym_BSLASHbigg] = ACTIONS(6341), - [anon_sym_BSLASHBigg] = ACTIONS(6341), - [anon_sym_BSLASHbigl] = ACTIONS(6341), - [anon_sym_BSLASHBigl] = ACTIONS(6341), - [anon_sym_BSLASHbiggl] = ACTIONS(6341), - [anon_sym_BSLASHBiggl] = ACTIONS(6341), - [anon_sym_BSLASHright] = ACTIONS(6341), - [anon_sym_BSLASHbigr] = ACTIONS(6341), - [anon_sym_BSLASHBigr] = ACTIONS(6341), - [anon_sym_BSLASHbiggr] = ACTIONS(6341), - [anon_sym_BSLASHBiggr] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6341), - [anon_sym_BSLASHgls] = ACTIONS(6341), - [anon_sym_BSLASHGls] = ACTIONS(6341), - [anon_sym_BSLASHGLS] = ACTIONS(6341), - [anon_sym_BSLASHglspl] = ACTIONS(6341), - [anon_sym_BSLASHGlspl] = ACTIONS(6341), - [anon_sym_BSLASHGLSpl] = ACTIONS(6341), - [anon_sym_BSLASHglsdisp] = ACTIONS(6341), - [anon_sym_BSLASHglslink] = ACTIONS(6341), - [anon_sym_BSLASHglstext] = ACTIONS(6341), - [anon_sym_BSLASHGlstext] = ACTIONS(6341), - [anon_sym_BSLASHGLStext] = ACTIONS(6341), - [anon_sym_BSLASHglsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6341), - [anon_sym_BSLASHglsplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSplural] = ACTIONS(6341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHglsname] = ACTIONS(6341), - [anon_sym_BSLASHGlsname] = ACTIONS(6341), - [anon_sym_BSLASHGLSname] = ACTIONS(6341), - [anon_sym_BSLASHglssymbol] = ACTIONS(6341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6341), - [anon_sym_BSLASHglsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6341), - [anon_sym_BSLASHglsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6341), - [anon_sym_BSLASHglsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6341), - [anon_sym_BSLASHglsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6341), - [anon_sym_BSLASHglsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6341), - [anon_sym_BSLASHnewacronym] = ACTIONS(6341), - [anon_sym_BSLASHacrshort] = ACTIONS(6341), - [anon_sym_BSLASHAcrshort] = ACTIONS(6341), - [anon_sym_BSLASHACRshort] = ACTIONS(6341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6341), - [anon_sym_BSLASHacrlong] = ACTIONS(6341), - [anon_sym_BSLASHAcrlong] = ACTIONS(6341), - [anon_sym_BSLASHACRlong] = ACTIONS(6341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6341), - [anon_sym_BSLASHacrfull] = ACTIONS(6341), - [anon_sym_BSLASHAcrfull] = ACTIONS(6341), - [anon_sym_BSLASHACRfull] = ACTIONS(6341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6341), - [anon_sym_BSLASHacs] = ACTIONS(6341), - [anon_sym_BSLASHAcs] = ACTIONS(6341), - [anon_sym_BSLASHacsp] = ACTIONS(6341), - [anon_sym_BSLASHAcsp] = ACTIONS(6341), - [anon_sym_BSLASHacl] = ACTIONS(6341), - [anon_sym_BSLASHAcl] = ACTIONS(6341), - [anon_sym_BSLASHaclp] = ACTIONS(6341), - [anon_sym_BSLASHAclp] = ACTIONS(6341), - [anon_sym_BSLASHacf] = ACTIONS(6341), - [anon_sym_BSLASHAcf] = ACTIONS(6341), - [anon_sym_BSLASHacfp] = ACTIONS(6341), - [anon_sym_BSLASHAcfp] = ACTIONS(6341), - [anon_sym_BSLASHac] = ACTIONS(6341), - [anon_sym_BSLASHAc] = ACTIONS(6341), - [anon_sym_BSLASHacp] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6341), - [anon_sym_BSLASHcolor] = ACTIONS(6341), - [anon_sym_BSLASHcolorbox] = ACTIONS(6341), - [anon_sym_BSLASHtextcolor] = ACTIONS(6341), - [anon_sym_BSLASHpagecolor] = ACTIONS(6341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6341), - [anon_sym_BSLASHtext] = ACTIONS(6341), - [anon_sym_BSLASHintertext] = ACTIONS(6341), - [anon_sym_shortintertext] = ACTIONS(6341), - }, - [569] = { - [sym_command_name] = ACTIONS(6345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6345), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_EQ] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_BSLASHpart] = ACTIONS(6345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddpart] = ACTIONS(6345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6347), - [anon_sym_BSLASHchapter] = ACTIONS(6345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddchap] = ACTIONS(6345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsection] = ACTIONS(6345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddsec] = ACTIONS(6345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubsection] = ACTIONS(6345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHparagraph] = ACTIONS(6345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6347), - [anon_sym_BSLASHitem] = ACTIONS(6345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6347), - [anon_sym_LBRACE] = ACTIONS(6347), - [sym_word] = ACTIONS(6345), - [sym_placeholder] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6345), - [anon_sym_GT] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(6345), - [anon_sym_PIPE] = ACTIONS(6345), - [anon_sym_COLON] = ACTIONS(6345), - [anon_sym_SQUOTE] = ACTIONS(6345), - [anon_sym__] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6347), - [anon_sym_DOLLAR] = ACTIONS(6345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6347), - [anon_sym_BSLASHbegin] = ACTIONS(6345), - [anon_sym_BSLASHtitle] = ACTIONS(6345), - [anon_sym_BSLASHauthor] = ACTIONS(6345), - [anon_sym_BSLASHusepackage] = ACTIONS(6345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6345), - [anon_sym_BSLASHinclude] = ACTIONS(6345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6345), - [anon_sym_BSLASHinput] = ACTIONS(6345), - [anon_sym_BSLASHsubfile] = ACTIONS(6345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6345), - [anon_sym_BSLASHbibliography] = ACTIONS(6345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6345), - [anon_sym_BSLASHincludesvg] = ACTIONS(6345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6345), - [anon_sym_BSLASHimport] = ACTIONS(6345), - [anon_sym_BSLASHsubimport] = ACTIONS(6345), - [anon_sym_BSLASHinputfrom] = ACTIONS(6345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6345), - [anon_sym_BSLASHincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHcaption] = ACTIONS(6345), - [anon_sym_BSLASHcite] = ACTIONS(6345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCite] = ACTIONS(6345), - [anon_sym_BSLASHnocite] = ACTIONS(6345), - [anon_sym_BSLASHcitet] = ACTIONS(6345), - [anon_sym_BSLASHcitep] = ACTIONS(6345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteauthor] = ACTIONS(6345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitetitle] = ACTIONS(6345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteyear] = ACTIONS(6345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitedate] = ACTIONS(6345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteurl] = ACTIONS(6345), - [anon_sym_BSLASHfullcite] = ACTIONS(6345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6345), - [anon_sym_BSLASHcitealt] = ACTIONS(6345), - [anon_sym_BSLASHcitealp] = ACTIONS(6345), - [anon_sym_BSLASHcitetext] = ACTIONS(6345), - [anon_sym_BSLASHparencite] = ACTIONS(6345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHParencite] = ACTIONS(6345), - [anon_sym_BSLASHfootcite] = ACTIONS(6345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6345), - [anon_sym_BSLASHtextcite] = ACTIONS(6345), - [anon_sym_BSLASHTextcite] = ACTIONS(6345), - [anon_sym_BSLASHsmartcite] = ACTIONS(6345), - [anon_sym_BSLASHSmartcite] = ACTIONS(6345), - [anon_sym_BSLASHsupercite] = ACTIONS(6345), - [anon_sym_BSLASHautocite] = ACTIONS(6345), - [anon_sym_BSLASHAutocite] = ACTIONS(6345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHvolcite] = ACTIONS(6345), - [anon_sym_BSLASHVolcite] = ACTIONS(6345), - [anon_sym_BSLASHpvolcite] = ACTIONS(6345), - [anon_sym_BSLASHPvolcite] = ACTIONS(6345), - [anon_sym_BSLASHfvolcite] = ACTIONS(6345), - [anon_sym_BSLASHftvolcite] = ACTIONS(6345), - [anon_sym_BSLASHsvolcite] = ACTIONS(6345), - [anon_sym_BSLASHSvolcite] = ACTIONS(6345), - [anon_sym_BSLASHtvolcite] = ACTIONS(6345), - [anon_sym_BSLASHTvolcite] = ACTIONS(6345), - [anon_sym_BSLASHavolcite] = ACTIONS(6345), - [anon_sym_BSLASHAvolcite] = ACTIONS(6345), - [anon_sym_BSLASHnotecite] = ACTIONS(6345), - [anon_sym_BSLASHNotecite] = ACTIONS(6345), - [anon_sym_BSLASHpnotecite] = ACTIONS(6345), - [anon_sym_BSLASHPnotecite] = ACTIONS(6345), - [anon_sym_BSLASHfnotecite] = ACTIONS(6345), - [anon_sym_BSLASHlabel] = ACTIONS(6345), - [anon_sym_BSLASHref] = ACTIONS(6345), - [anon_sym_BSLASHeqref] = ACTIONS(6345), - [anon_sym_BSLASHvref] = ACTIONS(6345), - [anon_sym_BSLASHVref] = ACTIONS(6345), - [anon_sym_BSLASHautoref] = ACTIONS(6345), - [anon_sym_BSLASHpageref] = ACTIONS(6345), - [anon_sym_BSLASHcref] = ACTIONS(6345), - [anon_sym_BSLASHCref] = ACTIONS(6345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnameCref] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHlabelcref] = ACTIONS(6345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCrefrange] = ACTIONS(6345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnewlabel] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6347), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHdef] = ACTIONS(6345), - [anon_sym_BSLASHlet] = ACTIONS(6345), - [anon_sym_BSLASHleft] = ACTIONS(6345), - [anon_sym_BSLASHbig] = ACTIONS(6345), - [anon_sym_BSLASHBig] = ACTIONS(6345), - [anon_sym_BSLASHbigg] = ACTIONS(6345), - [anon_sym_BSLASHBigg] = ACTIONS(6345), - [anon_sym_BSLASHbigl] = ACTIONS(6345), - [anon_sym_BSLASHBigl] = ACTIONS(6345), - [anon_sym_BSLASHbiggl] = ACTIONS(6345), - [anon_sym_BSLASHBiggl] = ACTIONS(6345), - [anon_sym_BSLASHright] = ACTIONS(6345), - [anon_sym_BSLASHbigr] = ACTIONS(6345), - [anon_sym_BSLASHBigr] = ACTIONS(6345), - [anon_sym_BSLASHbiggr] = ACTIONS(6345), - [anon_sym_BSLASHBiggr] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6345), - [anon_sym_BSLASHgls] = ACTIONS(6345), - [anon_sym_BSLASHGls] = ACTIONS(6345), - [anon_sym_BSLASHGLS] = ACTIONS(6345), - [anon_sym_BSLASHglspl] = ACTIONS(6345), - [anon_sym_BSLASHGlspl] = ACTIONS(6345), - [anon_sym_BSLASHGLSpl] = ACTIONS(6345), - [anon_sym_BSLASHglsdisp] = ACTIONS(6345), - [anon_sym_BSLASHglslink] = ACTIONS(6345), - [anon_sym_BSLASHglstext] = ACTIONS(6345), - [anon_sym_BSLASHGlstext] = ACTIONS(6345), - [anon_sym_BSLASHGLStext] = ACTIONS(6345), - [anon_sym_BSLASHglsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6345), - [anon_sym_BSLASHglsplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSplural] = ACTIONS(6345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHglsname] = ACTIONS(6345), - [anon_sym_BSLASHGlsname] = ACTIONS(6345), - [anon_sym_BSLASHGLSname] = ACTIONS(6345), - [anon_sym_BSLASHglssymbol] = ACTIONS(6345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6345), - [anon_sym_BSLASHglsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6345), - [anon_sym_BSLASHglsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6345), - [anon_sym_BSLASHglsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6345), - [anon_sym_BSLASHglsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6345), - [anon_sym_BSLASHglsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6345), - [anon_sym_BSLASHnewacronym] = ACTIONS(6345), - [anon_sym_BSLASHacrshort] = ACTIONS(6345), - [anon_sym_BSLASHAcrshort] = ACTIONS(6345), - [anon_sym_BSLASHACRshort] = ACTIONS(6345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6345), - [anon_sym_BSLASHacrlong] = ACTIONS(6345), - [anon_sym_BSLASHAcrlong] = ACTIONS(6345), - [anon_sym_BSLASHACRlong] = ACTIONS(6345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6345), - [anon_sym_BSLASHacrfull] = ACTIONS(6345), - [anon_sym_BSLASHAcrfull] = ACTIONS(6345), - [anon_sym_BSLASHACRfull] = ACTIONS(6345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6345), - [anon_sym_BSLASHacs] = ACTIONS(6345), - [anon_sym_BSLASHAcs] = ACTIONS(6345), - [anon_sym_BSLASHacsp] = ACTIONS(6345), - [anon_sym_BSLASHAcsp] = ACTIONS(6345), - [anon_sym_BSLASHacl] = ACTIONS(6345), - [anon_sym_BSLASHAcl] = ACTIONS(6345), - [anon_sym_BSLASHaclp] = ACTIONS(6345), - [anon_sym_BSLASHAclp] = ACTIONS(6345), - [anon_sym_BSLASHacf] = ACTIONS(6345), - [anon_sym_BSLASHAcf] = ACTIONS(6345), - [anon_sym_BSLASHacfp] = ACTIONS(6345), - [anon_sym_BSLASHAcfp] = ACTIONS(6345), - [anon_sym_BSLASHac] = ACTIONS(6345), - [anon_sym_BSLASHAc] = ACTIONS(6345), - [anon_sym_BSLASHacp] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6345), - [anon_sym_BSLASHcolor] = ACTIONS(6345), - [anon_sym_BSLASHcolorbox] = ACTIONS(6345), - [anon_sym_BSLASHtextcolor] = ACTIONS(6345), - [anon_sym_BSLASHpagecolor] = ACTIONS(6345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6345), - [anon_sym_BSLASHtext] = ACTIONS(6345), - [anon_sym_BSLASHintertext] = ACTIONS(6345), - [anon_sym_shortintertext] = ACTIONS(6345), - }, - [570] = { - [sym_command_name] = ACTIONS(6349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6349), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_EQ] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_BSLASHpart] = ACTIONS(6349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddpart] = ACTIONS(6349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6351), - [anon_sym_BSLASHchapter] = ACTIONS(6349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddchap] = ACTIONS(6349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsection] = ACTIONS(6349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddsec] = ACTIONS(6349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubsection] = ACTIONS(6349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHparagraph] = ACTIONS(6349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6351), - [anon_sym_BSLASHitem] = ACTIONS(6349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6351), - [anon_sym_LBRACE] = ACTIONS(6351), - [sym_word] = ACTIONS(6349), - [sym_placeholder] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6351), - [anon_sym_DASH] = ACTIONS(6351), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_SQUOTE] = ACTIONS(6349), - [anon_sym__] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6351), - [anon_sym_DOLLAR] = ACTIONS(6349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6351), - [anon_sym_BSLASHbegin] = ACTIONS(6349), - [anon_sym_BSLASHtitle] = ACTIONS(6349), - [anon_sym_BSLASHauthor] = ACTIONS(6349), - [anon_sym_BSLASHusepackage] = ACTIONS(6349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6349), - [anon_sym_BSLASHinclude] = ACTIONS(6349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6349), - [anon_sym_BSLASHinput] = ACTIONS(6349), - [anon_sym_BSLASHsubfile] = ACTIONS(6349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6349), - [anon_sym_BSLASHbibliography] = ACTIONS(6349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6349), - [anon_sym_BSLASHincludesvg] = ACTIONS(6349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6349), - [anon_sym_BSLASHimport] = ACTIONS(6349), - [anon_sym_BSLASHsubimport] = ACTIONS(6349), - [anon_sym_BSLASHinputfrom] = ACTIONS(6349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6349), - [anon_sym_BSLASHincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHcaption] = ACTIONS(6349), - [anon_sym_BSLASHcite] = ACTIONS(6349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCite] = ACTIONS(6349), - [anon_sym_BSLASHnocite] = ACTIONS(6349), - [anon_sym_BSLASHcitet] = ACTIONS(6349), - [anon_sym_BSLASHcitep] = ACTIONS(6349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteauthor] = ACTIONS(6349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitetitle] = ACTIONS(6349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteyear] = ACTIONS(6349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitedate] = ACTIONS(6349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteurl] = ACTIONS(6349), - [anon_sym_BSLASHfullcite] = ACTIONS(6349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6349), - [anon_sym_BSLASHcitealt] = ACTIONS(6349), - [anon_sym_BSLASHcitealp] = ACTIONS(6349), - [anon_sym_BSLASHcitetext] = ACTIONS(6349), - [anon_sym_BSLASHparencite] = ACTIONS(6349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHParencite] = ACTIONS(6349), - [anon_sym_BSLASHfootcite] = ACTIONS(6349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6349), - [anon_sym_BSLASHtextcite] = ACTIONS(6349), - [anon_sym_BSLASHTextcite] = ACTIONS(6349), - [anon_sym_BSLASHsmartcite] = ACTIONS(6349), - [anon_sym_BSLASHSmartcite] = ACTIONS(6349), - [anon_sym_BSLASHsupercite] = ACTIONS(6349), - [anon_sym_BSLASHautocite] = ACTIONS(6349), - [anon_sym_BSLASHAutocite] = ACTIONS(6349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHvolcite] = ACTIONS(6349), - [anon_sym_BSLASHVolcite] = ACTIONS(6349), - [anon_sym_BSLASHpvolcite] = ACTIONS(6349), - [anon_sym_BSLASHPvolcite] = ACTIONS(6349), - [anon_sym_BSLASHfvolcite] = ACTIONS(6349), - [anon_sym_BSLASHftvolcite] = ACTIONS(6349), - [anon_sym_BSLASHsvolcite] = ACTIONS(6349), - [anon_sym_BSLASHSvolcite] = ACTIONS(6349), - [anon_sym_BSLASHtvolcite] = ACTIONS(6349), - [anon_sym_BSLASHTvolcite] = ACTIONS(6349), - [anon_sym_BSLASHavolcite] = ACTIONS(6349), - [anon_sym_BSLASHAvolcite] = ACTIONS(6349), - [anon_sym_BSLASHnotecite] = ACTIONS(6349), - [anon_sym_BSLASHNotecite] = ACTIONS(6349), - [anon_sym_BSLASHpnotecite] = ACTIONS(6349), - [anon_sym_BSLASHPnotecite] = ACTIONS(6349), - [anon_sym_BSLASHfnotecite] = ACTIONS(6349), - [anon_sym_BSLASHlabel] = ACTIONS(6349), - [anon_sym_BSLASHref] = ACTIONS(6349), - [anon_sym_BSLASHeqref] = ACTIONS(6349), - [anon_sym_BSLASHvref] = ACTIONS(6349), - [anon_sym_BSLASHVref] = ACTIONS(6349), - [anon_sym_BSLASHautoref] = ACTIONS(6349), - [anon_sym_BSLASHpageref] = ACTIONS(6349), - [anon_sym_BSLASHcref] = ACTIONS(6349), - [anon_sym_BSLASHCref] = ACTIONS(6349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnameCref] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHlabelcref] = ACTIONS(6349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCrefrange] = ACTIONS(6349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnewlabel] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6351), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHdef] = ACTIONS(6349), - [anon_sym_BSLASHlet] = ACTIONS(6349), - [anon_sym_BSLASHleft] = ACTIONS(6349), - [anon_sym_BSLASHbig] = ACTIONS(6349), - [anon_sym_BSLASHBig] = ACTIONS(6349), - [anon_sym_BSLASHbigg] = ACTIONS(6349), - [anon_sym_BSLASHBigg] = ACTIONS(6349), - [anon_sym_BSLASHbigl] = ACTIONS(6349), - [anon_sym_BSLASHBigl] = ACTIONS(6349), - [anon_sym_BSLASHbiggl] = ACTIONS(6349), - [anon_sym_BSLASHBiggl] = ACTIONS(6349), - [anon_sym_BSLASHright] = ACTIONS(6349), - [anon_sym_BSLASHbigr] = ACTIONS(6349), - [anon_sym_BSLASHBigr] = ACTIONS(6349), - [anon_sym_BSLASHbiggr] = ACTIONS(6349), - [anon_sym_BSLASHBiggr] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6349), - [anon_sym_BSLASHgls] = ACTIONS(6349), - [anon_sym_BSLASHGls] = ACTIONS(6349), - [anon_sym_BSLASHGLS] = ACTIONS(6349), - [anon_sym_BSLASHglspl] = ACTIONS(6349), - [anon_sym_BSLASHGlspl] = ACTIONS(6349), - [anon_sym_BSLASHGLSpl] = ACTIONS(6349), - [anon_sym_BSLASHglsdisp] = ACTIONS(6349), - [anon_sym_BSLASHglslink] = ACTIONS(6349), - [anon_sym_BSLASHglstext] = ACTIONS(6349), - [anon_sym_BSLASHGlstext] = ACTIONS(6349), - [anon_sym_BSLASHGLStext] = ACTIONS(6349), - [anon_sym_BSLASHglsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6349), - [anon_sym_BSLASHglsplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSplural] = ACTIONS(6349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHglsname] = ACTIONS(6349), - [anon_sym_BSLASHGlsname] = ACTIONS(6349), - [anon_sym_BSLASHGLSname] = ACTIONS(6349), - [anon_sym_BSLASHglssymbol] = ACTIONS(6349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6349), - [anon_sym_BSLASHglsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6349), - [anon_sym_BSLASHglsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6349), - [anon_sym_BSLASHglsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6349), - [anon_sym_BSLASHglsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6349), - [anon_sym_BSLASHglsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6349), - [anon_sym_BSLASHnewacronym] = ACTIONS(6349), - [anon_sym_BSLASHacrshort] = ACTIONS(6349), - [anon_sym_BSLASHAcrshort] = ACTIONS(6349), - [anon_sym_BSLASHACRshort] = ACTIONS(6349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6349), - [anon_sym_BSLASHacrlong] = ACTIONS(6349), - [anon_sym_BSLASHAcrlong] = ACTIONS(6349), - [anon_sym_BSLASHACRlong] = ACTIONS(6349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6349), - [anon_sym_BSLASHacrfull] = ACTIONS(6349), - [anon_sym_BSLASHAcrfull] = ACTIONS(6349), - [anon_sym_BSLASHACRfull] = ACTIONS(6349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6349), - [anon_sym_BSLASHacs] = ACTIONS(6349), - [anon_sym_BSLASHAcs] = ACTIONS(6349), - [anon_sym_BSLASHacsp] = ACTIONS(6349), - [anon_sym_BSLASHAcsp] = ACTIONS(6349), - [anon_sym_BSLASHacl] = ACTIONS(6349), - [anon_sym_BSLASHAcl] = ACTIONS(6349), - [anon_sym_BSLASHaclp] = ACTIONS(6349), - [anon_sym_BSLASHAclp] = ACTIONS(6349), - [anon_sym_BSLASHacf] = ACTIONS(6349), - [anon_sym_BSLASHAcf] = ACTIONS(6349), - [anon_sym_BSLASHacfp] = ACTIONS(6349), - [anon_sym_BSLASHAcfp] = ACTIONS(6349), - [anon_sym_BSLASHac] = ACTIONS(6349), - [anon_sym_BSLASHAc] = ACTIONS(6349), - [anon_sym_BSLASHacp] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6349), - [anon_sym_BSLASHcolor] = ACTIONS(6349), - [anon_sym_BSLASHcolorbox] = ACTIONS(6349), - [anon_sym_BSLASHtextcolor] = ACTIONS(6349), - [anon_sym_BSLASHpagecolor] = ACTIONS(6349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6349), - [anon_sym_BSLASHtext] = ACTIONS(6349), - [anon_sym_BSLASHintertext] = ACTIONS(6349), - [anon_sym_shortintertext] = ACTIONS(6349), - }, - [571] = { - [sym_command_name] = ACTIONS(6353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6353), - [anon_sym_LBRACK] = ACTIONS(6355), - [anon_sym_RBRACK] = ACTIONS(6355), - [anon_sym_COMMA] = ACTIONS(6355), - [anon_sym_EQ] = ACTIONS(6355), - [anon_sym_LPAREN] = ACTIONS(6355), - [anon_sym_RPAREN] = ACTIONS(6355), - [anon_sym_BSLASHpart] = ACTIONS(6353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddpart] = ACTIONS(6353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6355), - [anon_sym_BSLASHchapter] = ACTIONS(6353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddchap] = ACTIONS(6353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsection] = ACTIONS(6353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddsec] = ACTIONS(6353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubsection] = ACTIONS(6353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHparagraph] = ACTIONS(6353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6355), - [anon_sym_BSLASHitem] = ACTIONS(6353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6355), - [anon_sym_LBRACE] = ACTIONS(6355), - [sym_word] = ACTIONS(6353), - [sym_placeholder] = ACTIONS(6355), - [anon_sym_PLUS] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [anon_sym_STAR] = ACTIONS(6355), - [anon_sym_SLASH] = ACTIONS(6355), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_COLON] = ACTIONS(6353), - [anon_sym_SQUOTE] = ACTIONS(6353), - [anon_sym__] = ACTIONS(6355), - [anon_sym_CARET] = ACTIONS(6355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6355), - [anon_sym_DOLLAR] = ACTIONS(6353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6355), - [anon_sym_BSLASHbegin] = ACTIONS(6353), - [anon_sym_BSLASHtitle] = ACTIONS(6353), - [anon_sym_BSLASHauthor] = ACTIONS(6353), - [anon_sym_BSLASHusepackage] = ACTIONS(6353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6353), - [anon_sym_BSLASHinclude] = ACTIONS(6353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6353), - [anon_sym_BSLASHinput] = ACTIONS(6353), - [anon_sym_BSLASHsubfile] = ACTIONS(6353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6353), - [anon_sym_BSLASHbibliography] = ACTIONS(6353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6353), - [anon_sym_BSLASHincludesvg] = ACTIONS(6353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6353), - [anon_sym_BSLASHimport] = ACTIONS(6353), - [anon_sym_BSLASHsubimport] = ACTIONS(6353), - [anon_sym_BSLASHinputfrom] = ACTIONS(6353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6353), - [anon_sym_BSLASHincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHcaption] = ACTIONS(6353), - [anon_sym_BSLASHcite] = ACTIONS(6353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCite] = ACTIONS(6353), - [anon_sym_BSLASHnocite] = ACTIONS(6353), - [anon_sym_BSLASHcitet] = ACTIONS(6353), - [anon_sym_BSLASHcitep] = ACTIONS(6353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteauthor] = ACTIONS(6353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitetitle] = ACTIONS(6353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteyear] = ACTIONS(6353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitedate] = ACTIONS(6353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteurl] = ACTIONS(6353), - [anon_sym_BSLASHfullcite] = ACTIONS(6353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6353), - [anon_sym_BSLASHcitealt] = ACTIONS(6353), - [anon_sym_BSLASHcitealp] = ACTIONS(6353), - [anon_sym_BSLASHcitetext] = ACTIONS(6353), - [anon_sym_BSLASHparencite] = ACTIONS(6353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHParencite] = ACTIONS(6353), - [anon_sym_BSLASHfootcite] = ACTIONS(6353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6353), - [anon_sym_BSLASHtextcite] = ACTIONS(6353), - [anon_sym_BSLASHTextcite] = ACTIONS(6353), - [anon_sym_BSLASHsmartcite] = ACTIONS(6353), - [anon_sym_BSLASHSmartcite] = ACTIONS(6353), - [anon_sym_BSLASHsupercite] = ACTIONS(6353), - [anon_sym_BSLASHautocite] = ACTIONS(6353), - [anon_sym_BSLASHAutocite] = ACTIONS(6353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHvolcite] = ACTIONS(6353), - [anon_sym_BSLASHVolcite] = ACTIONS(6353), - [anon_sym_BSLASHpvolcite] = ACTIONS(6353), - [anon_sym_BSLASHPvolcite] = ACTIONS(6353), - [anon_sym_BSLASHfvolcite] = ACTIONS(6353), - [anon_sym_BSLASHftvolcite] = ACTIONS(6353), - [anon_sym_BSLASHsvolcite] = ACTIONS(6353), - [anon_sym_BSLASHSvolcite] = ACTIONS(6353), - [anon_sym_BSLASHtvolcite] = ACTIONS(6353), - [anon_sym_BSLASHTvolcite] = ACTIONS(6353), - [anon_sym_BSLASHavolcite] = ACTIONS(6353), - [anon_sym_BSLASHAvolcite] = ACTIONS(6353), - [anon_sym_BSLASHnotecite] = ACTIONS(6353), - [anon_sym_BSLASHNotecite] = ACTIONS(6353), - [anon_sym_BSLASHpnotecite] = ACTIONS(6353), - [anon_sym_BSLASHPnotecite] = ACTIONS(6353), - [anon_sym_BSLASHfnotecite] = ACTIONS(6353), - [anon_sym_BSLASHlabel] = ACTIONS(6353), - [anon_sym_BSLASHref] = ACTIONS(6353), - [anon_sym_BSLASHeqref] = ACTIONS(6353), - [anon_sym_BSLASHvref] = ACTIONS(6353), - [anon_sym_BSLASHVref] = ACTIONS(6353), - [anon_sym_BSLASHautoref] = ACTIONS(6353), - [anon_sym_BSLASHpageref] = ACTIONS(6353), - [anon_sym_BSLASHcref] = ACTIONS(6353), - [anon_sym_BSLASHCref] = ACTIONS(6353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnameCref] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHlabelcref] = ACTIONS(6353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCrefrange] = ACTIONS(6353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnewlabel] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6355), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHdef] = ACTIONS(6353), - [anon_sym_BSLASHlet] = ACTIONS(6353), - [anon_sym_BSLASHleft] = ACTIONS(6353), - [anon_sym_BSLASHbig] = ACTIONS(6353), - [anon_sym_BSLASHBig] = ACTIONS(6353), - [anon_sym_BSLASHbigg] = ACTIONS(6353), - [anon_sym_BSLASHBigg] = ACTIONS(6353), - [anon_sym_BSLASHbigl] = ACTIONS(6353), - [anon_sym_BSLASHBigl] = ACTIONS(6353), - [anon_sym_BSLASHbiggl] = ACTIONS(6353), - [anon_sym_BSLASHBiggl] = ACTIONS(6353), - [anon_sym_BSLASHright] = ACTIONS(6353), - [anon_sym_BSLASHbigr] = ACTIONS(6353), - [anon_sym_BSLASHBigr] = ACTIONS(6353), - [anon_sym_BSLASHbiggr] = ACTIONS(6353), - [anon_sym_BSLASHBiggr] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6353), - [anon_sym_BSLASHgls] = ACTIONS(6353), - [anon_sym_BSLASHGls] = ACTIONS(6353), - [anon_sym_BSLASHGLS] = ACTIONS(6353), - [anon_sym_BSLASHglspl] = ACTIONS(6353), - [anon_sym_BSLASHGlspl] = ACTIONS(6353), - [anon_sym_BSLASHGLSpl] = ACTIONS(6353), - [anon_sym_BSLASHglsdisp] = ACTIONS(6353), - [anon_sym_BSLASHglslink] = ACTIONS(6353), - [anon_sym_BSLASHglstext] = ACTIONS(6353), - [anon_sym_BSLASHGlstext] = ACTIONS(6353), - [anon_sym_BSLASHGLStext] = ACTIONS(6353), - [anon_sym_BSLASHglsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6353), - [anon_sym_BSLASHglsplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSplural] = ACTIONS(6353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHglsname] = ACTIONS(6353), - [anon_sym_BSLASHGlsname] = ACTIONS(6353), - [anon_sym_BSLASHGLSname] = ACTIONS(6353), - [anon_sym_BSLASHglssymbol] = ACTIONS(6353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6353), - [anon_sym_BSLASHglsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6353), - [anon_sym_BSLASHglsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6353), - [anon_sym_BSLASHglsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6353), - [anon_sym_BSLASHglsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6353), - [anon_sym_BSLASHglsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6353), - [anon_sym_BSLASHnewacronym] = ACTIONS(6353), - [anon_sym_BSLASHacrshort] = ACTIONS(6353), - [anon_sym_BSLASHAcrshort] = ACTIONS(6353), - [anon_sym_BSLASHACRshort] = ACTIONS(6353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6353), - [anon_sym_BSLASHacrlong] = ACTIONS(6353), - [anon_sym_BSLASHAcrlong] = ACTIONS(6353), - [anon_sym_BSLASHACRlong] = ACTIONS(6353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6353), - [anon_sym_BSLASHacrfull] = ACTIONS(6353), - [anon_sym_BSLASHAcrfull] = ACTIONS(6353), - [anon_sym_BSLASHACRfull] = ACTIONS(6353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6353), - [anon_sym_BSLASHacs] = ACTIONS(6353), - [anon_sym_BSLASHAcs] = ACTIONS(6353), - [anon_sym_BSLASHacsp] = ACTIONS(6353), - [anon_sym_BSLASHAcsp] = ACTIONS(6353), - [anon_sym_BSLASHacl] = ACTIONS(6353), - [anon_sym_BSLASHAcl] = ACTIONS(6353), - [anon_sym_BSLASHaclp] = ACTIONS(6353), - [anon_sym_BSLASHAclp] = ACTIONS(6353), - [anon_sym_BSLASHacf] = ACTIONS(6353), - [anon_sym_BSLASHAcf] = ACTIONS(6353), - [anon_sym_BSLASHacfp] = ACTIONS(6353), - [anon_sym_BSLASHAcfp] = ACTIONS(6353), - [anon_sym_BSLASHac] = ACTIONS(6353), - [anon_sym_BSLASHAc] = ACTIONS(6353), - [anon_sym_BSLASHacp] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6353), - [anon_sym_BSLASHcolor] = ACTIONS(6353), - [anon_sym_BSLASHcolorbox] = ACTIONS(6353), - [anon_sym_BSLASHtextcolor] = ACTIONS(6353), - [anon_sym_BSLASHpagecolor] = ACTIONS(6353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6353), - [anon_sym_BSLASHtext] = ACTIONS(6353), - [anon_sym_BSLASHintertext] = ACTIONS(6353), - [anon_sym_shortintertext] = ACTIONS(6353), - }, - [572] = { - [sym_command_name] = ACTIONS(6357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(6359), - [anon_sym_RBRACK] = ACTIONS(6359), - [anon_sym_COMMA] = ACTIONS(6359), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LPAREN] = ACTIONS(6359), - [anon_sym_RPAREN] = ACTIONS(6359), - [anon_sym_BSLASHpart] = ACTIONS(6357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddpart] = ACTIONS(6357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6359), - [anon_sym_BSLASHchapter] = ACTIONS(6357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddchap] = ACTIONS(6357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsection] = ACTIONS(6357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddsec] = ACTIONS(6357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubsection] = ACTIONS(6357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHparagraph] = ACTIONS(6357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6359), - [anon_sym_BSLASHitem] = ACTIONS(6357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6359), - [sym_word] = ACTIONS(6357), - [sym_placeholder] = ACTIONS(6359), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6359), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_LT] = ACTIONS(6357), - [anon_sym_GT] = ACTIONS(6357), - [anon_sym_BANG] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_SQUOTE] = ACTIONS(6357), - [anon_sym__] = ACTIONS(6359), - [anon_sym_CARET] = ACTIONS(6359), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6359), - [anon_sym_DOLLAR] = ACTIONS(6357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6359), - [anon_sym_BSLASHbegin] = ACTIONS(6357), - [anon_sym_BSLASHtitle] = ACTIONS(6357), - [anon_sym_BSLASHauthor] = ACTIONS(6357), - [anon_sym_BSLASHusepackage] = ACTIONS(6357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6357), - [anon_sym_BSLASHinclude] = ACTIONS(6357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6357), - [anon_sym_BSLASHinput] = ACTIONS(6357), - [anon_sym_BSLASHsubfile] = ACTIONS(6357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6357), - [anon_sym_BSLASHbibliography] = ACTIONS(6357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6357), - [anon_sym_BSLASHincludesvg] = ACTIONS(6357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6357), - [anon_sym_BSLASHimport] = ACTIONS(6357), - [anon_sym_BSLASHsubimport] = ACTIONS(6357), - [anon_sym_BSLASHinputfrom] = ACTIONS(6357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6357), - [anon_sym_BSLASHincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHcaption] = ACTIONS(6357), - [anon_sym_BSLASHcite] = ACTIONS(6357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCite] = ACTIONS(6357), - [anon_sym_BSLASHnocite] = ACTIONS(6357), - [anon_sym_BSLASHcitet] = ACTIONS(6357), - [anon_sym_BSLASHcitep] = ACTIONS(6357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteauthor] = ACTIONS(6357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitetitle] = ACTIONS(6357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteyear] = ACTIONS(6357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitedate] = ACTIONS(6357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteurl] = ACTIONS(6357), - [anon_sym_BSLASHfullcite] = ACTIONS(6357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6357), - [anon_sym_BSLASHcitealt] = ACTIONS(6357), - [anon_sym_BSLASHcitealp] = ACTIONS(6357), - [anon_sym_BSLASHcitetext] = ACTIONS(6357), - [anon_sym_BSLASHparencite] = ACTIONS(6357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHParencite] = ACTIONS(6357), - [anon_sym_BSLASHfootcite] = ACTIONS(6357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6357), - [anon_sym_BSLASHtextcite] = ACTIONS(6357), - [anon_sym_BSLASHTextcite] = ACTIONS(6357), - [anon_sym_BSLASHsmartcite] = ACTIONS(6357), - [anon_sym_BSLASHSmartcite] = ACTIONS(6357), - [anon_sym_BSLASHsupercite] = ACTIONS(6357), - [anon_sym_BSLASHautocite] = ACTIONS(6357), - [anon_sym_BSLASHAutocite] = ACTIONS(6357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHvolcite] = ACTIONS(6357), - [anon_sym_BSLASHVolcite] = ACTIONS(6357), - [anon_sym_BSLASHpvolcite] = ACTIONS(6357), - [anon_sym_BSLASHPvolcite] = ACTIONS(6357), - [anon_sym_BSLASHfvolcite] = ACTIONS(6357), - [anon_sym_BSLASHftvolcite] = ACTIONS(6357), - [anon_sym_BSLASHsvolcite] = ACTIONS(6357), - [anon_sym_BSLASHSvolcite] = ACTIONS(6357), - [anon_sym_BSLASHtvolcite] = ACTIONS(6357), - [anon_sym_BSLASHTvolcite] = ACTIONS(6357), - [anon_sym_BSLASHavolcite] = ACTIONS(6357), - [anon_sym_BSLASHAvolcite] = ACTIONS(6357), - [anon_sym_BSLASHnotecite] = ACTIONS(6357), - [anon_sym_BSLASHNotecite] = ACTIONS(6357), - [anon_sym_BSLASHpnotecite] = ACTIONS(6357), - [anon_sym_BSLASHPnotecite] = ACTIONS(6357), - [anon_sym_BSLASHfnotecite] = ACTIONS(6357), - [anon_sym_BSLASHlabel] = ACTIONS(6357), - [anon_sym_BSLASHref] = ACTIONS(6357), - [anon_sym_BSLASHeqref] = ACTIONS(6357), - [anon_sym_BSLASHvref] = ACTIONS(6357), - [anon_sym_BSLASHVref] = ACTIONS(6357), - [anon_sym_BSLASHautoref] = ACTIONS(6357), - [anon_sym_BSLASHpageref] = ACTIONS(6357), - [anon_sym_BSLASHcref] = ACTIONS(6357), - [anon_sym_BSLASHCref] = ACTIONS(6357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnameCref] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHlabelcref] = ACTIONS(6357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCrefrange] = ACTIONS(6357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnewlabel] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6359), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHdef] = ACTIONS(6357), - [anon_sym_BSLASHlet] = ACTIONS(6357), - [anon_sym_BSLASHleft] = ACTIONS(6357), - [anon_sym_BSLASHbig] = ACTIONS(6357), - [anon_sym_BSLASHBig] = ACTIONS(6357), - [anon_sym_BSLASHbigg] = ACTIONS(6357), - [anon_sym_BSLASHBigg] = ACTIONS(6357), - [anon_sym_BSLASHbigl] = ACTIONS(6357), - [anon_sym_BSLASHBigl] = ACTIONS(6357), - [anon_sym_BSLASHbiggl] = ACTIONS(6357), - [anon_sym_BSLASHBiggl] = ACTIONS(6357), - [anon_sym_BSLASHright] = ACTIONS(6357), - [anon_sym_BSLASHbigr] = ACTIONS(6357), - [anon_sym_BSLASHBigr] = ACTIONS(6357), - [anon_sym_BSLASHbiggr] = ACTIONS(6357), - [anon_sym_BSLASHBiggr] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6357), - [anon_sym_BSLASHgls] = ACTIONS(6357), - [anon_sym_BSLASHGls] = ACTIONS(6357), - [anon_sym_BSLASHGLS] = ACTIONS(6357), - [anon_sym_BSLASHglspl] = ACTIONS(6357), - [anon_sym_BSLASHGlspl] = ACTIONS(6357), - [anon_sym_BSLASHGLSpl] = ACTIONS(6357), - [anon_sym_BSLASHglsdisp] = ACTIONS(6357), - [anon_sym_BSLASHglslink] = ACTIONS(6357), - [anon_sym_BSLASHglstext] = ACTIONS(6357), - [anon_sym_BSLASHGlstext] = ACTIONS(6357), - [anon_sym_BSLASHGLStext] = ACTIONS(6357), - [anon_sym_BSLASHglsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6357), - [anon_sym_BSLASHglsplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSplural] = ACTIONS(6357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHglsname] = ACTIONS(6357), - [anon_sym_BSLASHGlsname] = ACTIONS(6357), - [anon_sym_BSLASHGLSname] = ACTIONS(6357), - [anon_sym_BSLASHglssymbol] = ACTIONS(6357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6357), - [anon_sym_BSLASHglsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6357), - [anon_sym_BSLASHglsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6357), - [anon_sym_BSLASHglsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6357), - [anon_sym_BSLASHglsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6357), - [anon_sym_BSLASHglsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6357), - [anon_sym_BSLASHnewacronym] = ACTIONS(6357), - [anon_sym_BSLASHacrshort] = ACTIONS(6357), - [anon_sym_BSLASHAcrshort] = ACTIONS(6357), - [anon_sym_BSLASHACRshort] = ACTIONS(6357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6357), - [anon_sym_BSLASHacrlong] = ACTIONS(6357), - [anon_sym_BSLASHAcrlong] = ACTIONS(6357), - [anon_sym_BSLASHACRlong] = ACTIONS(6357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6357), - [anon_sym_BSLASHacrfull] = ACTIONS(6357), - [anon_sym_BSLASHAcrfull] = ACTIONS(6357), - [anon_sym_BSLASHACRfull] = ACTIONS(6357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6357), - [anon_sym_BSLASHacs] = ACTIONS(6357), - [anon_sym_BSLASHAcs] = ACTIONS(6357), - [anon_sym_BSLASHacsp] = ACTIONS(6357), - [anon_sym_BSLASHAcsp] = ACTIONS(6357), - [anon_sym_BSLASHacl] = ACTIONS(6357), - [anon_sym_BSLASHAcl] = ACTIONS(6357), - [anon_sym_BSLASHaclp] = ACTIONS(6357), - [anon_sym_BSLASHAclp] = ACTIONS(6357), - [anon_sym_BSLASHacf] = ACTIONS(6357), - [anon_sym_BSLASHAcf] = ACTIONS(6357), - [anon_sym_BSLASHacfp] = ACTIONS(6357), - [anon_sym_BSLASHAcfp] = ACTIONS(6357), - [anon_sym_BSLASHac] = ACTIONS(6357), - [anon_sym_BSLASHAc] = ACTIONS(6357), - [anon_sym_BSLASHacp] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6357), - [anon_sym_BSLASHcolor] = ACTIONS(6357), - [anon_sym_BSLASHcolorbox] = ACTIONS(6357), - [anon_sym_BSLASHtextcolor] = ACTIONS(6357), - [anon_sym_BSLASHpagecolor] = ACTIONS(6357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6357), - [anon_sym_BSLASHtext] = ACTIONS(6357), - [anon_sym_BSLASHintertext] = ACTIONS(6357), - [anon_sym_shortintertext] = ACTIONS(6357), - }, - [573] = { - [sym_command_name] = ACTIONS(6361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6363), - [anon_sym_RBRACK] = ACTIONS(6363), - [anon_sym_COMMA] = ACTIONS(6363), - [anon_sym_EQ] = ACTIONS(6363), - [anon_sym_LPAREN] = ACTIONS(6363), - [anon_sym_RPAREN] = ACTIONS(6363), - [anon_sym_BSLASHpart] = ACTIONS(6361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddpart] = ACTIONS(6361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6363), - [anon_sym_BSLASHchapter] = ACTIONS(6361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddchap] = ACTIONS(6361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsection] = ACTIONS(6361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddsec] = ACTIONS(6361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubsection] = ACTIONS(6361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHparagraph] = ACTIONS(6361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6363), - [anon_sym_BSLASHitem] = ACTIONS(6361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6363), - [anon_sym_LBRACE] = ACTIONS(6363), - [sym_word] = ACTIONS(6361), - [sym_placeholder] = ACTIONS(6363), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_LT] = ACTIONS(6361), - [anon_sym_GT] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6361), - [anon_sym__] = ACTIONS(6363), - [anon_sym_CARET] = ACTIONS(6363), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6363), - [anon_sym_DOLLAR] = ACTIONS(6361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6363), - [anon_sym_BSLASHbegin] = ACTIONS(6361), - [anon_sym_BSLASHtitle] = ACTIONS(6361), - [anon_sym_BSLASHauthor] = ACTIONS(6361), - [anon_sym_BSLASHusepackage] = ACTIONS(6361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6361), - [anon_sym_BSLASHinclude] = ACTIONS(6361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6361), - [anon_sym_BSLASHinput] = ACTIONS(6361), - [anon_sym_BSLASHsubfile] = ACTIONS(6361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6361), - [anon_sym_BSLASHbibliography] = ACTIONS(6361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6361), - [anon_sym_BSLASHincludesvg] = ACTIONS(6361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6361), - [anon_sym_BSLASHimport] = ACTIONS(6361), - [anon_sym_BSLASHsubimport] = ACTIONS(6361), - [anon_sym_BSLASHinputfrom] = ACTIONS(6361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6361), - [anon_sym_BSLASHincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHcaption] = ACTIONS(6361), - [anon_sym_BSLASHcite] = ACTIONS(6361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCite] = ACTIONS(6361), - [anon_sym_BSLASHnocite] = ACTIONS(6361), - [anon_sym_BSLASHcitet] = ACTIONS(6361), - [anon_sym_BSLASHcitep] = ACTIONS(6361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteauthor] = ACTIONS(6361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitetitle] = ACTIONS(6361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteyear] = ACTIONS(6361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitedate] = ACTIONS(6361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteurl] = ACTIONS(6361), - [anon_sym_BSLASHfullcite] = ACTIONS(6361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6361), - [anon_sym_BSLASHcitealt] = ACTIONS(6361), - [anon_sym_BSLASHcitealp] = ACTIONS(6361), - [anon_sym_BSLASHcitetext] = ACTIONS(6361), - [anon_sym_BSLASHparencite] = ACTIONS(6361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHParencite] = ACTIONS(6361), - [anon_sym_BSLASHfootcite] = ACTIONS(6361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6361), - [anon_sym_BSLASHtextcite] = ACTIONS(6361), - [anon_sym_BSLASHTextcite] = ACTIONS(6361), - [anon_sym_BSLASHsmartcite] = ACTIONS(6361), - [anon_sym_BSLASHSmartcite] = ACTIONS(6361), - [anon_sym_BSLASHsupercite] = ACTIONS(6361), - [anon_sym_BSLASHautocite] = ACTIONS(6361), - [anon_sym_BSLASHAutocite] = ACTIONS(6361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHvolcite] = ACTIONS(6361), - [anon_sym_BSLASHVolcite] = ACTIONS(6361), - [anon_sym_BSLASHpvolcite] = ACTIONS(6361), - [anon_sym_BSLASHPvolcite] = ACTIONS(6361), - [anon_sym_BSLASHfvolcite] = ACTIONS(6361), - [anon_sym_BSLASHftvolcite] = ACTIONS(6361), - [anon_sym_BSLASHsvolcite] = ACTIONS(6361), - [anon_sym_BSLASHSvolcite] = ACTIONS(6361), - [anon_sym_BSLASHtvolcite] = ACTIONS(6361), - [anon_sym_BSLASHTvolcite] = ACTIONS(6361), - [anon_sym_BSLASHavolcite] = ACTIONS(6361), - [anon_sym_BSLASHAvolcite] = ACTIONS(6361), - [anon_sym_BSLASHnotecite] = ACTIONS(6361), - [anon_sym_BSLASHNotecite] = ACTIONS(6361), - [anon_sym_BSLASHpnotecite] = ACTIONS(6361), - [anon_sym_BSLASHPnotecite] = ACTIONS(6361), - [anon_sym_BSLASHfnotecite] = ACTIONS(6361), - [anon_sym_BSLASHlabel] = ACTIONS(6361), - [anon_sym_BSLASHref] = ACTIONS(6361), - [anon_sym_BSLASHeqref] = ACTIONS(6361), - [anon_sym_BSLASHvref] = ACTIONS(6361), - [anon_sym_BSLASHVref] = ACTIONS(6361), - [anon_sym_BSLASHautoref] = ACTIONS(6361), - [anon_sym_BSLASHpageref] = ACTIONS(6361), - [anon_sym_BSLASHcref] = ACTIONS(6361), - [anon_sym_BSLASHCref] = ACTIONS(6361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnameCref] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHlabelcref] = ACTIONS(6361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCrefrange] = ACTIONS(6361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnewlabel] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6363), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHdef] = ACTIONS(6361), - [anon_sym_BSLASHlet] = ACTIONS(6361), - [anon_sym_BSLASHleft] = ACTIONS(6361), - [anon_sym_BSLASHbig] = ACTIONS(6361), - [anon_sym_BSLASHBig] = ACTIONS(6361), - [anon_sym_BSLASHbigg] = ACTIONS(6361), - [anon_sym_BSLASHBigg] = ACTIONS(6361), - [anon_sym_BSLASHbigl] = ACTIONS(6361), - [anon_sym_BSLASHBigl] = ACTIONS(6361), - [anon_sym_BSLASHbiggl] = ACTIONS(6361), - [anon_sym_BSLASHBiggl] = ACTIONS(6361), - [anon_sym_BSLASHright] = ACTIONS(6361), - [anon_sym_BSLASHbigr] = ACTIONS(6361), - [anon_sym_BSLASHBigr] = ACTIONS(6361), - [anon_sym_BSLASHbiggr] = ACTIONS(6361), - [anon_sym_BSLASHBiggr] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6361), - [anon_sym_BSLASHgls] = ACTIONS(6361), - [anon_sym_BSLASHGls] = ACTIONS(6361), - [anon_sym_BSLASHGLS] = ACTIONS(6361), - [anon_sym_BSLASHglspl] = ACTIONS(6361), - [anon_sym_BSLASHGlspl] = ACTIONS(6361), - [anon_sym_BSLASHGLSpl] = ACTIONS(6361), - [anon_sym_BSLASHglsdisp] = ACTIONS(6361), - [anon_sym_BSLASHglslink] = ACTIONS(6361), - [anon_sym_BSLASHglstext] = ACTIONS(6361), - [anon_sym_BSLASHGlstext] = ACTIONS(6361), - [anon_sym_BSLASHGLStext] = ACTIONS(6361), - [anon_sym_BSLASHglsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6361), - [anon_sym_BSLASHglsplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSplural] = ACTIONS(6361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHglsname] = ACTIONS(6361), - [anon_sym_BSLASHGlsname] = ACTIONS(6361), - [anon_sym_BSLASHGLSname] = ACTIONS(6361), - [anon_sym_BSLASHglssymbol] = ACTIONS(6361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6361), - [anon_sym_BSLASHglsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6361), - [anon_sym_BSLASHglsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6361), - [anon_sym_BSLASHglsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6361), - [anon_sym_BSLASHglsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6361), - [anon_sym_BSLASHglsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6361), - [anon_sym_BSLASHnewacronym] = ACTIONS(6361), - [anon_sym_BSLASHacrshort] = ACTIONS(6361), - [anon_sym_BSLASHAcrshort] = ACTIONS(6361), - [anon_sym_BSLASHACRshort] = ACTIONS(6361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6361), - [anon_sym_BSLASHacrlong] = ACTIONS(6361), - [anon_sym_BSLASHAcrlong] = ACTIONS(6361), - [anon_sym_BSLASHACRlong] = ACTIONS(6361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6361), - [anon_sym_BSLASHacrfull] = ACTIONS(6361), - [anon_sym_BSLASHAcrfull] = ACTIONS(6361), - [anon_sym_BSLASHACRfull] = ACTIONS(6361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6361), - [anon_sym_BSLASHacs] = ACTIONS(6361), - [anon_sym_BSLASHAcs] = ACTIONS(6361), - [anon_sym_BSLASHacsp] = ACTIONS(6361), - [anon_sym_BSLASHAcsp] = ACTIONS(6361), - [anon_sym_BSLASHacl] = ACTIONS(6361), - [anon_sym_BSLASHAcl] = ACTIONS(6361), - [anon_sym_BSLASHaclp] = ACTIONS(6361), - [anon_sym_BSLASHAclp] = ACTIONS(6361), - [anon_sym_BSLASHacf] = ACTIONS(6361), - [anon_sym_BSLASHAcf] = ACTIONS(6361), - [anon_sym_BSLASHacfp] = ACTIONS(6361), - [anon_sym_BSLASHAcfp] = ACTIONS(6361), - [anon_sym_BSLASHac] = ACTIONS(6361), - [anon_sym_BSLASHAc] = ACTIONS(6361), - [anon_sym_BSLASHacp] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6361), - [anon_sym_BSLASHcolor] = ACTIONS(6361), - [anon_sym_BSLASHcolorbox] = ACTIONS(6361), - [anon_sym_BSLASHtextcolor] = ACTIONS(6361), - [anon_sym_BSLASHpagecolor] = ACTIONS(6361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6361), - [anon_sym_BSLASHtext] = ACTIONS(6361), - [anon_sym_BSLASHintertext] = ACTIONS(6361), - [anon_sym_shortintertext] = ACTIONS(6361), - }, - [574] = { - [sym_command_name] = ACTIONS(6365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6367), - [anon_sym_RBRACK] = ACTIONS(6367), - [anon_sym_COMMA] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(6367), - [anon_sym_LPAREN] = ACTIONS(6367), - [anon_sym_RPAREN] = ACTIONS(6367), - [anon_sym_BSLASHpart] = ACTIONS(6365), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddpart] = ACTIONS(6365), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6367), - [anon_sym_BSLASHchapter] = ACTIONS(6365), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddchap] = ACTIONS(6365), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsection] = ACTIONS(6365), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddsec] = ACTIONS(6365), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubsection] = ACTIONS(6365), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6365), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHparagraph] = ACTIONS(6365), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6365), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6367), - [anon_sym_BSLASHitem] = ACTIONS(6365), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6367), - [anon_sym_LBRACE] = ACTIONS(6367), - [sym_word] = ACTIONS(6365), - [sym_placeholder] = ACTIONS(6367), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6367), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_LT] = ACTIONS(6365), - [anon_sym_GT] = ACTIONS(6365), - [anon_sym_BANG] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_SQUOTE] = ACTIONS(6365), - [anon_sym__] = ACTIONS(6367), - [anon_sym_CARET] = ACTIONS(6367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6367), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6367), - [anon_sym_DOLLAR] = ACTIONS(6365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6367), - [anon_sym_BSLASHbegin] = ACTIONS(6365), - [anon_sym_BSLASHtitle] = ACTIONS(6365), - [anon_sym_BSLASHauthor] = ACTIONS(6365), - [anon_sym_BSLASHusepackage] = ACTIONS(6365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6365), - [anon_sym_BSLASHinclude] = ACTIONS(6365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6365), - [anon_sym_BSLASHinput] = ACTIONS(6365), - [anon_sym_BSLASHsubfile] = ACTIONS(6365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6365), - [anon_sym_BSLASHbibliography] = ACTIONS(6365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6365), - [anon_sym_BSLASHincludesvg] = ACTIONS(6365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6365), - [anon_sym_BSLASHimport] = ACTIONS(6365), - [anon_sym_BSLASHsubimport] = ACTIONS(6365), - [anon_sym_BSLASHinputfrom] = ACTIONS(6365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6365), - [anon_sym_BSLASHincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHcaption] = ACTIONS(6365), - [anon_sym_BSLASHcite] = ACTIONS(6365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCite] = ACTIONS(6365), - [anon_sym_BSLASHnocite] = ACTIONS(6365), - [anon_sym_BSLASHcitet] = ACTIONS(6365), - [anon_sym_BSLASHcitep] = ACTIONS(6365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteauthor] = ACTIONS(6365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitetitle] = ACTIONS(6365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteyear] = ACTIONS(6365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitedate] = ACTIONS(6365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteurl] = ACTIONS(6365), - [anon_sym_BSLASHfullcite] = ACTIONS(6365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6365), - [anon_sym_BSLASHcitealt] = ACTIONS(6365), - [anon_sym_BSLASHcitealp] = ACTIONS(6365), - [anon_sym_BSLASHcitetext] = ACTIONS(6365), - [anon_sym_BSLASHparencite] = ACTIONS(6365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHParencite] = ACTIONS(6365), - [anon_sym_BSLASHfootcite] = ACTIONS(6365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6365), - [anon_sym_BSLASHtextcite] = ACTIONS(6365), - [anon_sym_BSLASHTextcite] = ACTIONS(6365), - [anon_sym_BSLASHsmartcite] = ACTIONS(6365), - [anon_sym_BSLASHSmartcite] = ACTIONS(6365), - [anon_sym_BSLASHsupercite] = ACTIONS(6365), - [anon_sym_BSLASHautocite] = ACTIONS(6365), - [anon_sym_BSLASHAutocite] = ACTIONS(6365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHvolcite] = ACTIONS(6365), - [anon_sym_BSLASHVolcite] = ACTIONS(6365), - [anon_sym_BSLASHpvolcite] = ACTIONS(6365), - [anon_sym_BSLASHPvolcite] = ACTIONS(6365), - [anon_sym_BSLASHfvolcite] = ACTIONS(6365), - [anon_sym_BSLASHftvolcite] = ACTIONS(6365), - [anon_sym_BSLASHsvolcite] = ACTIONS(6365), - [anon_sym_BSLASHSvolcite] = ACTIONS(6365), - [anon_sym_BSLASHtvolcite] = ACTIONS(6365), - [anon_sym_BSLASHTvolcite] = ACTIONS(6365), - [anon_sym_BSLASHavolcite] = ACTIONS(6365), - [anon_sym_BSLASHAvolcite] = ACTIONS(6365), - [anon_sym_BSLASHnotecite] = ACTIONS(6365), - [anon_sym_BSLASHNotecite] = ACTIONS(6365), - [anon_sym_BSLASHpnotecite] = ACTIONS(6365), - [anon_sym_BSLASHPnotecite] = ACTIONS(6365), - [anon_sym_BSLASHfnotecite] = ACTIONS(6365), - [anon_sym_BSLASHlabel] = ACTIONS(6365), - [anon_sym_BSLASHref] = ACTIONS(6365), - [anon_sym_BSLASHeqref] = ACTIONS(6365), - [anon_sym_BSLASHvref] = ACTIONS(6365), - [anon_sym_BSLASHVref] = ACTIONS(6365), - [anon_sym_BSLASHautoref] = ACTIONS(6365), - [anon_sym_BSLASHpageref] = ACTIONS(6365), - [anon_sym_BSLASHcref] = ACTIONS(6365), - [anon_sym_BSLASHCref] = ACTIONS(6365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnameCref] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHlabelcref] = ACTIONS(6365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCrefrange] = ACTIONS(6365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnewlabel] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6367), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHdef] = ACTIONS(6365), - [anon_sym_BSLASHlet] = ACTIONS(6365), - [anon_sym_BSLASHleft] = ACTIONS(6365), - [anon_sym_BSLASHbig] = ACTIONS(6365), - [anon_sym_BSLASHBig] = ACTIONS(6365), - [anon_sym_BSLASHbigg] = ACTIONS(6365), - [anon_sym_BSLASHBigg] = ACTIONS(6365), - [anon_sym_BSLASHbigl] = ACTIONS(6365), - [anon_sym_BSLASHBigl] = ACTIONS(6365), - [anon_sym_BSLASHbiggl] = ACTIONS(6365), - [anon_sym_BSLASHBiggl] = ACTIONS(6365), - [anon_sym_BSLASHright] = ACTIONS(6365), - [anon_sym_BSLASHbigr] = ACTIONS(6365), - [anon_sym_BSLASHBigr] = ACTIONS(6365), - [anon_sym_BSLASHbiggr] = ACTIONS(6365), - [anon_sym_BSLASHBiggr] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6365), - [anon_sym_BSLASHgls] = ACTIONS(6365), - [anon_sym_BSLASHGls] = ACTIONS(6365), - [anon_sym_BSLASHGLS] = ACTIONS(6365), - [anon_sym_BSLASHglspl] = ACTIONS(6365), - [anon_sym_BSLASHGlspl] = ACTIONS(6365), - [anon_sym_BSLASHGLSpl] = ACTIONS(6365), - [anon_sym_BSLASHglsdisp] = ACTIONS(6365), - [anon_sym_BSLASHglslink] = ACTIONS(6365), - [anon_sym_BSLASHglstext] = ACTIONS(6365), - [anon_sym_BSLASHGlstext] = ACTIONS(6365), - [anon_sym_BSLASHGLStext] = ACTIONS(6365), - [anon_sym_BSLASHglsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6365), - [anon_sym_BSLASHglsplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSplural] = ACTIONS(6365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHglsname] = ACTIONS(6365), - [anon_sym_BSLASHGlsname] = ACTIONS(6365), - [anon_sym_BSLASHGLSname] = ACTIONS(6365), - [anon_sym_BSLASHglssymbol] = ACTIONS(6365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6365), - [anon_sym_BSLASHglsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6365), - [anon_sym_BSLASHglsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6365), - [anon_sym_BSLASHglsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6365), - [anon_sym_BSLASHglsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6365), - [anon_sym_BSLASHglsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6365), - [anon_sym_BSLASHnewacronym] = ACTIONS(6365), - [anon_sym_BSLASHacrshort] = ACTIONS(6365), - [anon_sym_BSLASHAcrshort] = ACTIONS(6365), - [anon_sym_BSLASHACRshort] = ACTIONS(6365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6365), - [anon_sym_BSLASHacrlong] = ACTIONS(6365), - [anon_sym_BSLASHAcrlong] = ACTIONS(6365), - [anon_sym_BSLASHACRlong] = ACTIONS(6365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6365), - [anon_sym_BSLASHacrfull] = ACTIONS(6365), - [anon_sym_BSLASHAcrfull] = ACTIONS(6365), - [anon_sym_BSLASHACRfull] = ACTIONS(6365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6365), - [anon_sym_BSLASHacs] = ACTIONS(6365), - [anon_sym_BSLASHAcs] = ACTIONS(6365), - [anon_sym_BSLASHacsp] = ACTIONS(6365), - [anon_sym_BSLASHAcsp] = ACTIONS(6365), - [anon_sym_BSLASHacl] = ACTIONS(6365), - [anon_sym_BSLASHAcl] = ACTIONS(6365), - [anon_sym_BSLASHaclp] = ACTIONS(6365), - [anon_sym_BSLASHAclp] = ACTIONS(6365), - [anon_sym_BSLASHacf] = ACTIONS(6365), - [anon_sym_BSLASHAcf] = ACTIONS(6365), - [anon_sym_BSLASHacfp] = ACTIONS(6365), - [anon_sym_BSLASHAcfp] = ACTIONS(6365), - [anon_sym_BSLASHac] = ACTIONS(6365), - [anon_sym_BSLASHAc] = ACTIONS(6365), - [anon_sym_BSLASHacp] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6365), - [anon_sym_BSLASHcolor] = ACTIONS(6365), - [anon_sym_BSLASHcolorbox] = ACTIONS(6365), - [anon_sym_BSLASHtextcolor] = ACTIONS(6365), - [anon_sym_BSLASHpagecolor] = ACTIONS(6365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6365), - [anon_sym_BSLASHtext] = ACTIONS(6365), - [anon_sym_BSLASHintertext] = ACTIONS(6365), - [anon_sym_shortintertext] = ACTIONS(6365), - }, - [575] = { - [sym_command_name] = ACTIONS(6369), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6371), - [anon_sym_RBRACK] = ACTIONS(6371), - [anon_sym_COMMA] = ACTIONS(6371), - [anon_sym_EQ] = ACTIONS(6371), - [anon_sym_LPAREN] = ACTIONS(6371), - [anon_sym_RPAREN] = ACTIONS(6371), - [anon_sym_BSLASHpart] = ACTIONS(6369), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddpart] = ACTIONS(6369), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6371), - [anon_sym_BSLASHchapter] = ACTIONS(6369), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddchap] = ACTIONS(6369), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsection] = ACTIONS(6369), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddsec] = ACTIONS(6369), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubsection] = ACTIONS(6369), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6369), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHparagraph] = ACTIONS(6369), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6369), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6371), - [anon_sym_BSLASHitem] = ACTIONS(6369), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6371), - [anon_sym_LBRACE] = ACTIONS(6371), - [sym_word] = ACTIONS(6369), - [sym_placeholder] = ACTIONS(6371), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6371), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_LT] = ACTIONS(6369), - [anon_sym_GT] = ACTIONS(6369), - [anon_sym_BANG] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_SQUOTE] = ACTIONS(6369), - [anon_sym__] = ACTIONS(6371), - [anon_sym_CARET] = ACTIONS(6371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6371), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6371), - [anon_sym_DOLLAR] = ACTIONS(6369), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6371), - [anon_sym_BSLASHbegin] = ACTIONS(6369), - [anon_sym_BSLASHtitle] = ACTIONS(6369), - [anon_sym_BSLASHauthor] = ACTIONS(6369), - [anon_sym_BSLASHusepackage] = ACTIONS(6369), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6369), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6369), - [anon_sym_BSLASHinclude] = ACTIONS(6369), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6369), - [anon_sym_BSLASHinput] = ACTIONS(6369), - [anon_sym_BSLASHsubfile] = ACTIONS(6369), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6369), - [anon_sym_BSLASHbibliography] = ACTIONS(6369), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6369), - [anon_sym_BSLASHincludesvg] = ACTIONS(6369), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6369), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6369), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6369), - [anon_sym_BSLASHimport] = ACTIONS(6369), - [anon_sym_BSLASHsubimport] = ACTIONS(6369), - [anon_sym_BSLASHinputfrom] = ACTIONS(6369), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6369), - [anon_sym_BSLASHincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHcaption] = ACTIONS(6369), - [anon_sym_BSLASHcite] = ACTIONS(6369), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCite] = ACTIONS(6369), - [anon_sym_BSLASHnocite] = ACTIONS(6369), - [anon_sym_BSLASHcitet] = ACTIONS(6369), - [anon_sym_BSLASHcitep] = ACTIONS(6369), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteauthor] = ACTIONS(6369), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6369), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitetitle] = ACTIONS(6369), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteyear] = ACTIONS(6369), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitedate] = ACTIONS(6369), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteurl] = ACTIONS(6369), - [anon_sym_BSLASHfullcite] = ACTIONS(6369), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6369), - [anon_sym_BSLASHcitealt] = ACTIONS(6369), - [anon_sym_BSLASHcitealp] = ACTIONS(6369), - [anon_sym_BSLASHcitetext] = ACTIONS(6369), - [anon_sym_BSLASHparencite] = ACTIONS(6369), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHParencite] = ACTIONS(6369), - [anon_sym_BSLASHfootcite] = ACTIONS(6369), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6369), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6369), - [anon_sym_BSLASHtextcite] = ACTIONS(6369), - [anon_sym_BSLASHTextcite] = ACTIONS(6369), - [anon_sym_BSLASHsmartcite] = ACTIONS(6369), - [anon_sym_BSLASHSmartcite] = ACTIONS(6369), - [anon_sym_BSLASHsupercite] = ACTIONS(6369), - [anon_sym_BSLASHautocite] = ACTIONS(6369), - [anon_sym_BSLASHAutocite] = ACTIONS(6369), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHvolcite] = ACTIONS(6369), - [anon_sym_BSLASHVolcite] = ACTIONS(6369), - [anon_sym_BSLASHpvolcite] = ACTIONS(6369), - [anon_sym_BSLASHPvolcite] = ACTIONS(6369), - [anon_sym_BSLASHfvolcite] = ACTIONS(6369), - [anon_sym_BSLASHftvolcite] = ACTIONS(6369), - [anon_sym_BSLASHsvolcite] = ACTIONS(6369), - [anon_sym_BSLASHSvolcite] = ACTIONS(6369), - [anon_sym_BSLASHtvolcite] = ACTIONS(6369), - [anon_sym_BSLASHTvolcite] = ACTIONS(6369), - [anon_sym_BSLASHavolcite] = ACTIONS(6369), - [anon_sym_BSLASHAvolcite] = ACTIONS(6369), - [anon_sym_BSLASHnotecite] = ACTIONS(6369), - [anon_sym_BSLASHNotecite] = ACTIONS(6369), - [anon_sym_BSLASHpnotecite] = ACTIONS(6369), - [anon_sym_BSLASHPnotecite] = ACTIONS(6369), - [anon_sym_BSLASHfnotecite] = ACTIONS(6369), - [anon_sym_BSLASHlabel] = ACTIONS(6369), - [anon_sym_BSLASHref] = ACTIONS(6369), - [anon_sym_BSLASHeqref] = ACTIONS(6369), - [anon_sym_BSLASHvref] = ACTIONS(6369), - [anon_sym_BSLASHVref] = ACTIONS(6369), - [anon_sym_BSLASHautoref] = ACTIONS(6369), - [anon_sym_BSLASHpageref] = ACTIONS(6369), - [anon_sym_BSLASHcref] = ACTIONS(6369), - [anon_sym_BSLASHCref] = ACTIONS(6369), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnameCref] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHlabelcref] = ACTIONS(6369), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCrefrange] = ACTIONS(6369), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnewlabel] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6369), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6369), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6371), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHdef] = ACTIONS(6369), - [anon_sym_BSLASHlet] = ACTIONS(6369), - [anon_sym_BSLASHleft] = ACTIONS(6369), - [anon_sym_BSLASHbig] = ACTIONS(6369), - [anon_sym_BSLASHBig] = ACTIONS(6369), - [anon_sym_BSLASHbigg] = ACTIONS(6369), - [anon_sym_BSLASHBigg] = ACTIONS(6369), - [anon_sym_BSLASHbigl] = ACTIONS(6369), - [anon_sym_BSLASHBigl] = ACTIONS(6369), - [anon_sym_BSLASHbiggl] = ACTIONS(6369), - [anon_sym_BSLASHBiggl] = ACTIONS(6369), - [anon_sym_BSLASHright] = ACTIONS(6369), - [anon_sym_BSLASHbigr] = ACTIONS(6369), - [anon_sym_BSLASHBigr] = ACTIONS(6369), - [anon_sym_BSLASHbiggr] = ACTIONS(6369), - [anon_sym_BSLASHBiggr] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6369), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6369), - [anon_sym_BSLASHgls] = ACTIONS(6369), - [anon_sym_BSLASHGls] = ACTIONS(6369), - [anon_sym_BSLASHGLS] = ACTIONS(6369), - [anon_sym_BSLASHglspl] = ACTIONS(6369), - [anon_sym_BSLASHGlspl] = ACTIONS(6369), - [anon_sym_BSLASHGLSpl] = ACTIONS(6369), - [anon_sym_BSLASHglsdisp] = ACTIONS(6369), - [anon_sym_BSLASHglslink] = ACTIONS(6369), - [anon_sym_BSLASHglstext] = ACTIONS(6369), - [anon_sym_BSLASHGlstext] = ACTIONS(6369), - [anon_sym_BSLASHGLStext] = ACTIONS(6369), - [anon_sym_BSLASHglsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6369), - [anon_sym_BSLASHglsplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSplural] = ACTIONS(6369), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHglsname] = ACTIONS(6369), - [anon_sym_BSLASHGlsname] = ACTIONS(6369), - [anon_sym_BSLASHGLSname] = ACTIONS(6369), - [anon_sym_BSLASHglssymbol] = ACTIONS(6369), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6369), - [anon_sym_BSLASHglsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6369), - [anon_sym_BSLASHglsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6369), - [anon_sym_BSLASHglsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6369), - [anon_sym_BSLASHglsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6369), - [anon_sym_BSLASHglsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6369), - [anon_sym_BSLASHnewacronym] = ACTIONS(6369), - [anon_sym_BSLASHacrshort] = ACTIONS(6369), - [anon_sym_BSLASHAcrshort] = ACTIONS(6369), - [anon_sym_BSLASHACRshort] = ACTIONS(6369), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6369), - [anon_sym_BSLASHacrlong] = ACTIONS(6369), - [anon_sym_BSLASHAcrlong] = ACTIONS(6369), - [anon_sym_BSLASHACRlong] = ACTIONS(6369), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6369), - [anon_sym_BSLASHacrfull] = ACTIONS(6369), - [anon_sym_BSLASHAcrfull] = ACTIONS(6369), - [anon_sym_BSLASHACRfull] = ACTIONS(6369), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6369), - [anon_sym_BSLASHacs] = ACTIONS(6369), - [anon_sym_BSLASHAcs] = ACTIONS(6369), - [anon_sym_BSLASHacsp] = ACTIONS(6369), - [anon_sym_BSLASHAcsp] = ACTIONS(6369), - [anon_sym_BSLASHacl] = ACTIONS(6369), - [anon_sym_BSLASHAcl] = ACTIONS(6369), - [anon_sym_BSLASHaclp] = ACTIONS(6369), - [anon_sym_BSLASHAclp] = ACTIONS(6369), - [anon_sym_BSLASHacf] = ACTIONS(6369), - [anon_sym_BSLASHAcf] = ACTIONS(6369), - [anon_sym_BSLASHacfp] = ACTIONS(6369), - [anon_sym_BSLASHAcfp] = ACTIONS(6369), - [anon_sym_BSLASHac] = ACTIONS(6369), - [anon_sym_BSLASHAc] = ACTIONS(6369), - [anon_sym_BSLASHacp] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6369), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6369), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6369), - [anon_sym_BSLASHcolor] = ACTIONS(6369), - [anon_sym_BSLASHcolorbox] = ACTIONS(6369), - [anon_sym_BSLASHtextcolor] = ACTIONS(6369), - [anon_sym_BSLASHpagecolor] = ACTIONS(6369), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6369), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6369), - [anon_sym_BSLASHtext] = ACTIONS(6369), - [anon_sym_BSLASHintertext] = ACTIONS(6369), - [anon_sym_shortintertext] = ACTIONS(6369), - }, - [576] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(5958), - [sym_command_name] = ACTIONS(5956), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_EQ] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_BSLASHpart] = ACTIONS(5956), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddpart] = ACTIONS(5956), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHchapter] = ACTIONS(5956), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddchap] = ACTIONS(5956), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsection] = ACTIONS(5956), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddsec] = ACTIONS(5956), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHparagraph] = ACTIONS(5956), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(5956), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5958), - [anon_sym_LBRACE] = ACTIONS(5958), - [anon_sym_RBRACE] = ACTIONS(5958), - [sym_word] = ACTIONS(5956), - [sym_placeholder] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5956), - [anon_sym_GT] = ACTIONS(5956), - [anon_sym_BANG] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_SQUOTE] = ACTIONS(5956), - [anon_sym__] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5958), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5958), - [anon_sym_DOLLAR] = ACTIONS(5956), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5958), - [anon_sym_BSLASHbegin] = ACTIONS(5956), - [anon_sym_BSLASHtitle] = ACTIONS(5956), - [anon_sym_BSLASHauthor] = ACTIONS(5956), - [anon_sym_BSLASHusepackage] = ACTIONS(5956), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5956), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5956), - [anon_sym_BSLASHinclude] = ACTIONS(5956), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5956), - [anon_sym_BSLASHinput] = ACTIONS(5956), - [anon_sym_BSLASHsubfile] = ACTIONS(5956), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5956), - [anon_sym_BSLASHbibliography] = ACTIONS(5956), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5956), - [anon_sym_BSLASHincludesvg] = ACTIONS(5956), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5956), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5956), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5956), - [anon_sym_BSLASHimport] = ACTIONS(5956), - [anon_sym_BSLASHsubimport] = ACTIONS(5956), - [anon_sym_BSLASHinputfrom] = ACTIONS(5956), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5956), - [anon_sym_BSLASHincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHcaption] = ACTIONS(5956), - [anon_sym_BSLASHcite] = ACTIONS(5956), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCite] = ACTIONS(5956), - [anon_sym_BSLASHnocite] = ACTIONS(5956), - [anon_sym_BSLASHcitet] = ACTIONS(5956), - [anon_sym_BSLASHcitep] = ACTIONS(5956), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteauthor] = ACTIONS(5956), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5956), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitetitle] = ACTIONS(5956), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteyear] = ACTIONS(5956), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitedate] = ACTIONS(5956), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteurl] = ACTIONS(5956), - [anon_sym_BSLASHfullcite] = ACTIONS(5956), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5956), - [anon_sym_BSLASHcitealt] = ACTIONS(5956), - [anon_sym_BSLASHcitealp] = ACTIONS(5956), - [anon_sym_BSLASHcitetext] = ACTIONS(5956), - [anon_sym_BSLASHparencite] = ACTIONS(5956), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHParencite] = ACTIONS(5956), - [anon_sym_BSLASHfootcite] = ACTIONS(5956), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5956), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5956), - [anon_sym_BSLASHtextcite] = ACTIONS(5956), - [anon_sym_BSLASHTextcite] = ACTIONS(5956), - [anon_sym_BSLASHsmartcite] = ACTIONS(5956), - [anon_sym_BSLASHSmartcite] = ACTIONS(5956), - [anon_sym_BSLASHsupercite] = ACTIONS(5956), - [anon_sym_BSLASHautocite] = ACTIONS(5956), - [anon_sym_BSLASHAutocite] = ACTIONS(5956), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHvolcite] = ACTIONS(5956), - [anon_sym_BSLASHVolcite] = ACTIONS(5956), - [anon_sym_BSLASHpvolcite] = ACTIONS(5956), - [anon_sym_BSLASHPvolcite] = ACTIONS(5956), - [anon_sym_BSLASHfvolcite] = ACTIONS(5956), - [anon_sym_BSLASHftvolcite] = ACTIONS(5956), - [anon_sym_BSLASHsvolcite] = ACTIONS(5956), - [anon_sym_BSLASHSvolcite] = ACTIONS(5956), - [anon_sym_BSLASHtvolcite] = ACTIONS(5956), - [anon_sym_BSLASHTvolcite] = ACTIONS(5956), - [anon_sym_BSLASHavolcite] = ACTIONS(5956), - [anon_sym_BSLASHAvolcite] = ACTIONS(5956), - [anon_sym_BSLASHnotecite] = ACTIONS(5956), - [anon_sym_BSLASHNotecite] = ACTIONS(5956), - [anon_sym_BSLASHpnotecite] = ACTIONS(5956), - [anon_sym_BSLASHPnotecite] = ACTIONS(5956), - [anon_sym_BSLASHfnotecite] = ACTIONS(5956), - [anon_sym_BSLASHlabel] = ACTIONS(5956), - [anon_sym_BSLASHref] = ACTIONS(5956), - [anon_sym_BSLASHeqref] = ACTIONS(5956), - [anon_sym_BSLASHvref] = ACTIONS(5956), - [anon_sym_BSLASHVref] = ACTIONS(5956), - [anon_sym_BSLASHautoref] = ACTIONS(5956), - [anon_sym_BSLASHpageref] = ACTIONS(5956), - [anon_sym_BSLASHcref] = ACTIONS(5956), - [anon_sym_BSLASHCref] = ACTIONS(5956), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnameCref] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHlabelcref] = ACTIONS(5956), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCrefrange] = ACTIONS(5956), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnewlabel] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5956), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5956), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5958), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHdef] = ACTIONS(5956), - [anon_sym_BSLASHlet] = ACTIONS(5956), - [anon_sym_BSLASHleft] = ACTIONS(5956), - [anon_sym_BSLASHbig] = ACTIONS(5956), - [anon_sym_BSLASHBig] = ACTIONS(5956), - [anon_sym_BSLASHbigg] = ACTIONS(5956), - [anon_sym_BSLASHBigg] = ACTIONS(5956), - [anon_sym_BSLASHbigl] = ACTIONS(5956), - [anon_sym_BSLASHBigl] = ACTIONS(5956), - [anon_sym_BSLASHbiggl] = ACTIONS(5956), - [anon_sym_BSLASHBiggl] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5956), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5956), - [anon_sym_BSLASHgls] = ACTIONS(5956), - [anon_sym_BSLASHGls] = ACTIONS(5956), - [anon_sym_BSLASHGLS] = ACTIONS(5956), - [anon_sym_BSLASHglspl] = ACTIONS(5956), - [anon_sym_BSLASHGlspl] = ACTIONS(5956), - [anon_sym_BSLASHGLSpl] = ACTIONS(5956), - [anon_sym_BSLASHglsdisp] = ACTIONS(5956), - [anon_sym_BSLASHglslink] = ACTIONS(5956), - [anon_sym_BSLASHglstext] = ACTIONS(5956), - [anon_sym_BSLASHGlstext] = ACTIONS(5956), - [anon_sym_BSLASHGLStext] = ACTIONS(5956), - [anon_sym_BSLASHglsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5956), - [anon_sym_BSLASHglsplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSplural] = ACTIONS(5956), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHglsname] = ACTIONS(5956), - [anon_sym_BSLASHGlsname] = ACTIONS(5956), - [anon_sym_BSLASHGLSname] = ACTIONS(5956), - [anon_sym_BSLASHglssymbol] = ACTIONS(5956), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5956), - [anon_sym_BSLASHglsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5956), - [anon_sym_BSLASHglsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5956), - [anon_sym_BSLASHglsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5956), - [anon_sym_BSLASHglsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5956), - [anon_sym_BSLASHglsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5956), - [anon_sym_BSLASHnewacronym] = ACTIONS(5956), - [anon_sym_BSLASHacrshort] = ACTIONS(5956), - [anon_sym_BSLASHAcrshort] = ACTIONS(5956), - [anon_sym_BSLASHACRshort] = ACTIONS(5956), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5956), - [anon_sym_BSLASHacrlong] = ACTIONS(5956), - [anon_sym_BSLASHAcrlong] = ACTIONS(5956), - [anon_sym_BSLASHACRlong] = ACTIONS(5956), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5956), - [anon_sym_BSLASHacrfull] = ACTIONS(5956), - [anon_sym_BSLASHAcrfull] = ACTIONS(5956), - [anon_sym_BSLASHACRfull] = ACTIONS(5956), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5956), - [anon_sym_BSLASHacs] = ACTIONS(5956), - [anon_sym_BSLASHAcs] = ACTIONS(5956), - [anon_sym_BSLASHacsp] = ACTIONS(5956), - [anon_sym_BSLASHAcsp] = ACTIONS(5956), - [anon_sym_BSLASHacl] = ACTIONS(5956), - [anon_sym_BSLASHAcl] = ACTIONS(5956), - [anon_sym_BSLASHaclp] = ACTIONS(5956), - [anon_sym_BSLASHAclp] = ACTIONS(5956), - [anon_sym_BSLASHacf] = ACTIONS(5956), - [anon_sym_BSLASHAcf] = ACTIONS(5956), - [anon_sym_BSLASHacfp] = ACTIONS(5956), - [anon_sym_BSLASHAcfp] = ACTIONS(5956), - [anon_sym_BSLASHac] = ACTIONS(5956), - [anon_sym_BSLASHAc] = ACTIONS(5956), - [anon_sym_BSLASHacp] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5956), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5956), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5956), - [anon_sym_BSLASHcolor] = ACTIONS(5956), - [anon_sym_BSLASHcolorbox] = ACTIONS(5956), - [anon_sym_BSLASHtextcolor] = ACTIONS(5956), - [anon_sym_BSLASHpagecolor] = ACTIONS(5956), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5956), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5956), - [anon_sym_BSLASHtext] = ACTIONS(5956), - [anon_sym_BSLASHintertext] = ACTIONS(5956), - [anon_sym_shortintertext] = ACTIONS(5956), - }, - [577] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(5962), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(5960), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5960), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(5962), - [anon_sym_RBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [578] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(5962), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(5960), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(5960), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5962), - [anon_sym_LBRACE] = ACTIONS(5962), - [anon_sym_RBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [579] = { - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(455), - [aux_sym__section_repeat6] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(5962), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5960), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHitem] = ACTIONS(5960), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5962), - [anon_sym_LBRACE] = ACTIONS(5962), - [anon_sym_RBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [580] = { - [sym_command_name] = ACTIONS(6373), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6375), - [anon_sym_RBRACK] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_EQ] = ACTIONS(6375), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_RPAREN] = ACTIONS(6375), - [anon_sym_BSLASHpart] = ACTIONS(6373), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddpart] = ACTIONS(6373), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6375), - [anon_sym_BSLASHchapter] = ACTIONS(6373), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddchap] = ACTIONS(6373), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsection] = ACTIONS(6373), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddsec] = ACTIONS(6373), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubsection] = ACTIONS(6373), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6373), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHparagraph] = ACTIONS(6373), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6373), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6375), - [anon_sym_BSLASHitem] = ACTIONS(6373), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6375), - [anon_sym_LBRACE] = ACTIONS(6375), - [sym_word] = ACTIONS(6373), - [sym_placeholder] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6373), - [anon_sym_GT] = ACTIONS(6373), - [anon_sym_BANG] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_SQUOTE] = ACTIONS(6373), - [anon_sym__] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6375), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6375), - [anon_sym_DOLLAR] = ACTIONS(6373), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6375), - [anon_sym_BSLASHbegin] = ACTIONS(6373), - [anon_sym_BSLASHtitle] = ACTIONS(6373), - [anon_sym_BSLASHauthor] = ACTIONS(6373), - [anon_sym_BSLASHusepackage] = ACTIONS(6373), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6373), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6373), - [anon_sym_BSLASHinclude] = ACTIONS(6373), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6373), - [anon_sym_BSLASHinput] = ACTIONS(6373), - [anon_sym_BSLASHsubfile] = ACTIONS(6373), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6373), - [anon_sym_BSLASHbibliography] = ACTIONS(6373), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6373), - [anon_sym_BSLASHincludesvg] = ACTIONS(6373), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6373), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6373), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6373), - [anon_sym_BSLASHimport] = ACTIONS(6373), - [anon_sym_BSLASHsubimport] = ACTIONS(6373), - [anon_sym_BSLASHinputfrom] = ACTIONS(6373), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6373), - [anon_sym_BSLASHincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHcaption] = ACTIONS(6373), - [anon_sym_BSLASHcite] = ACTIONS(6373), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCite] = ACTIONS(6373), - [anon_sym_BSLASHnocite] = ACTIONS(6373), - [anon_sym_BSLASHcitet] = ACTIONS(6373), - [anon_sym_BSLASHcitep] = ACTIONS(6373), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteauthor] = ACTIONS(6373), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6373), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitetitle] = ACTIONS(6373), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteyear] = ACTIONS(6373), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitedate] = ACTIONS(6373), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteurl] = ACTIONS(6373), - [anon_sym_BSLASHfullcite] = ACTIONS(6373), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6373), - [anon_sym_BSLASHcitealt] = ACTIONS(6373), - [anon_sym_BSLASHcitealp] = ACTIONS(6373), - [anon_sym_BSLASHcitetext] = ACTIONS(6373), - [anon_sym_BSLASHparencite] = ACTIONS(6373), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHParencite] = ACTIONS(6373), - [anon_sym_BSLASHfootcite] = ACTIONS(6373), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6373), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6373), - [anon_sym_BSLASHtextcite] = ACTIONS(6373), - [anon_sym_BSLASHTextcite] = ACTIONS(6373), - [anon_sym_BSLASHsmartcite] = ACTIONS(6373), - [anon_sym_BSLASHSmartcite] = ACTIONS(6373), - [anon_sym_BSLASHsupercite] = ACTIONS(6373), - [anon_sym_BSLASHautocite] = ACTIONS(6373), - [anon_sym_BSLASHAutocite] = ACTIONS(6373), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHvolcite] = ACTIONS(6373), - [anon_sym_BSLASHVolcite] = ACTIONS(6373), - [anon_sym_BSLASHpvolcite] = ACTIONS(6373), - [anon_sym_BSLASHPvolcite] = ACTIONS(6373), - [anon_sym_BSLASHfvolcite] = ACTIONS(6373), - [anon_sym_BSLASHftvolcite] = ACTIONS(6373), - [anon_sym_BSLASHsvolcite] = ACTIONS(6373), - [anon_sym_BSLASHSvolcite] = ACTIONS(6373), - [anon_sym_BSLASHtvolcite] = ACTIONS(6373), - [anon_sym_BSLASHTvolcite] = ACTIONS(6373), - [anon_sym_BSLASHavolcite] = ACTIONS(6373), - [anon_sym_BSLASHAvolcite] = ACTIONS(6373), - [anon_sym_BSLASHnotecite] = ACTIONS(6373), - [anon_sym_BSLASHNotecite] = ACTIONS(6373), - [anon_sym_BSLASHpnotecite] = ACTIONS(6373), - [anon_sym_BSLASHPnotecite] = ACTIONS(6373), - [anon_sym_BSLASHfnotecite] = ACTIONS(6373), - [anon_sym_BSLASHlabel] = ACTIONS(6373), - [anon_sym_BSLASHref] = ACTIONS(6373), - [anon_sym_BSLASHeqref] = ACTIONS(6373), - [anon_sym_BSLASHvref] = ACTIONS(6373), - [anon_sym_BSLASHVref] = ACTIONS(6373), - [anon_sym_BSLASHautoref] = ACTIONS(6373), - [anon_sym_BSLASHpageref] = ACTIONS(6373), - [anon_sym_BSLASHcref] = ACTIONS(6373), - [anon_sym_BSLASHCref] = ACTIONS(6373), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnameCref] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHlabelcref] = ACTIONS(6373), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCrefrange] = ACTIONS(6373), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnewlabel] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6373), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6373), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6375), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHdef] = ACTIONS(6373), - [anon_sym_BSLASHlet] = ACTIONS(6373), - [anon_sym_BSLASHleft] = ACTIONS(6373), - [anon_sym_BSLASHbig] = ACTIONS(6373), - [anon_sym_BSLASHBig] = ACTIONS(6373), - [anon_sym_BSLASHbigg] = ACTIONS(6373), - [anon_sym_BSLASHBigg] = ACTIONS(6373), - [anon_sym_BSLASHbigl] = ACTIONS(6373), - [anon_sym_BSLASHBigl] = ACTIONS(6373), - [anon_sym_BSLASHbiggl] = ACTIONS(6373), - [anon_sym_BSLASHBiggl] = ACTIONS(6373), - [anon_sym_BSLASHright] = ACTIONS(6373), - [anon_sym_BSLASHbigr] = ACTIONS(6373), - [anon_sym_BSLASHBigr] = ACTIONS(6373), - [anon_sym_BSLASHbiggr] = ACTIONS(6373), - [anon_sym_BSLASHBiggr] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6373), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6373), - [anon_sym_BSLASHgls] = ACTIONS(6373), - [anon_sym_BSLASHGls] = ACTIONS(6373), - [anon_sym_BSLASHGLS] = ACTIONS(6373), - [anon_sym_BSLASHglspl] = ACTIONS(6373), - [anon_sym_BSLASHGlspl] = ACTIONS(6373), - [anon_sym_BSLASHGLSpl] = ACTIONS(6373), - [anon_sym_BSLASHglsdisp] = ACTIONS(6373), - [anon_sym_BSLASHglslink] = ACTIONS(6373), - [anon_sym_BSLASHglstext] = ACTIONS(6373), - [anon_sym_BSLASHGlstext] = ACTIONS(6373), - [anon_sym_BSLASHGLStext] = ACTIONS(6373), - [anon_sym_BSLASHglsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6373), - [anon_sym_BSLASHglsplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSplural] = ACTIONS(6373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHglsname] = ACTIONS(6373), - [anon_sym_BSLASHGlsname] = ACTIONS(6373), - [anon_sym_BSLASHGLSname] = ACTIONS(6373), - [anon_sym_BSLASHglssymbol] = ACTIONS(6373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6373), - [anon_sym_BSLASHglsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6373), - [anon_sym_BSLASHglsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6373), - [anon_sym_BSLASHglsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6373), - [anon_sym_BSLASHglsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6373), - [anon_sym_BSLASHglsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6373), - [anon_sym_BSLASHnewacronym] = ACTIONS(6373), - [anon_sym_BSLASHacrshort] = ACTIONS(6373), - [anon_sym_BSLASHAcrshort] = ACTIONS(6373), - [anon_sym_BSLASHACRshort] = ACTIONS(6373), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6373), - [anon_sym_BSLASHacrlong] = ACTIONS(6373), - [anon_sym_BSLASHAcrlong] = ACTIONS(6373), - [anon_sym_BSLASHACRlong] = ACTIONS(6373), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6373), - [anon_sym_BSLASHacrfull] = ACTIONS(6373), - [anon_sym_BSLASHAcrfull] = ACTIONS(6373), - [anon_sym_BSLASHACRfull] = ACTIONS(6373), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6373), - [anon_sym_BSLASHacs] = ACTIONS(6373), - [anon_sym_BSLASHAcs] = ACTIONS(6373), - [anon_sym_BSLASHacsp] = ACTIONS(6373), - [anon_sym_BSLASHAcsp] = ACTIONS(6373), - [anon_sym_BSLASHacl] = ACTIONS(6373), - [anon_sym_BSLASHAcl] = ACTIONS(6373), - [anon_sym_BSLASHaclp] = ACTIONS(6373), - [anon_sym_BSLASHAclp] = ACTIONS(6373), - [anon_sym_BSLASHacf] = ACTIONS(6373), - [anon_sym_BSLASHAcf] = ACTIONS(6373), - [anon_sym_BSLASHacfp] = ACTIONS(6373), - [anon_sym_BSLASHAcfp] = ACTIONS(6373), - [anon_sym_BSLASHac] = ACTIONS(6373), - [anon_sym_BSLASHAc] = ACTIONS(6373), - [anon_sym_BSLASHacp] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6373), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6373), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6373), - [anon_sym_BSLASHcolor] = ACTIONS(6373), - [anon_sym_BSLASHcolorbox] = ACTIONS(6373), - [anon_sym_BSLASHtextcolor] = ACTIONS(6373), - [anon_sym_BSLASHpagecolor] = ACTIONS(6373), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6373), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6373), - [anon_sym_BSLASHtext] = ACTIONS(6373), - [anon_sym_BSLASHintertext] = ACTIONS(6373), - [anon_sym_shortintertext] = ACTIONS(6373), - }, - [581] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(5870), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(5870), - [anon_sym_RBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [582] = { - [sym_command_name] = ACTIONS(6377), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6379), - [anon_sym_RBRACK] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_EQ] = ACTIONS(6379), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_BSLASHpart] = ACTIONS(6377), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddpart] = ACTIONS(6377), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6379), - [anon_sym_BSLASHchapter] = ACTIONS(6377), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddchap] = ACTIONS(6377), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsection] = ACTIONS(6377), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddsec] = ACTIONS(6377), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubsection] = ACTIONS(6377), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6377), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHparagraph] = ACTIONS(6377), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6377), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6379), - [anon_sym_BSLASHitem] = ACTIONS(6377), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6379), - [anon_sym_LBRACE] = ACTIONS(6379), - [sym_word] = ACTIONS(6377), - [sym_placeholder] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_SQUOTE] = ACTIONS(6377), - [anon_sym__] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6379), - [anon_sym_DOLLAR] = ACTIONS(6377), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6379), - [anon_sym_BSLASHbegin] = ACTIONS(6377), - [anon_sym_BSLASHtitle] = ACTIONS(6377), - [anon_sym_BSLASHauthor] = ACTIONS(6377), - [anon_sym_BSLASHusepackage] = ACTIONS(6377), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6377), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6377), - [anon_sym_BSLASHinclude] = ACTIONS(6377), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6377), - [anon_sym_BSLASHinput] = ACTIONS(6377), - [anon_sym_BSLASHsubfile] = ACTIONS(6377), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6377), - [anon_sym_BSLASHbibliography] = ACTIONS(6377), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6377), - [anon_sym_BSLASHincludesvg] = ACTIONS(6377), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6377), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6377), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6377), - [anon_sym_BSLASHimport] = ACTIONS(6377), - [anon_sym_BSLASHsubimport] = ACTIONS(6377), - [anon_sym_BSLASHinputfrom] = ACTIONS(6377), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6377), - [anon_sym_BSLASHincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHcaption] = ACTIONS(6377), - [anon_sym_BSLASHcite] = ACTIONS(6377), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCite] = ACTIONS(6377), - [anon_sym_BSLASHnocite] = ACTIONS(6377), - [anon_sym_BSLASHcitet] = ACTIONS(6377), - [anon_sym_BSLASHcitep] = ACTIONS(6377), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteauthor] = ACTIONS(6377), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6377), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitetitle] = ACTIONS(6377), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteyear] = ACTIONS(6377), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitedate] = ACTIONS(6377), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteurl] = ACTIONS(6377), - [anon_sym_BSLASHfullcite] = ACTIONS(6377), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6377), - [anon_sym_BSLASHcitealt] = ACTIONS(6377), - [anon_sym_BSLASHcitealp] = ACTIONS(6377), - [anon_sym_BSLASHcitetext] = ACTIONS(6377), - [anon_sym_BSLASHparencite] = ACTIONS(6377), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHParencite] = ACTIONS(6377), - [anon_sym_BSLASHfootcite] = ACTIONS(6377), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6377), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6377), - [anon_sym_BSLASHtextcite] = ACTIONS(6377), - [anon_sym_BSLASHTextcite] = ACTIONS(6377), - [anon_sym_BSLASHsmartcite] = ACTIONS(6377), - [anon_sym_BSLASHSmartcite] = ACTIONS(6377), - [anon_sym_BSLASHsupercite] = ACTIONS(6377), - [anon_sym_BSLASHautocite] = ACTIONS(6377), - [anon_sym_BSLASHAutocite] = ACTIONS(6377), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHvolcite] = ACTIONS(6377), - [anon_sym_BSLASHVolcite] = ACTIONS(6377), - [anon_sym_BSLASHpvolcite] = ACTIONS(6377), - [anon_sym_BSLASHPvolcite] = ACTIONS(6377), - [anon_sym_BSLASHfvolcite] = ACTIONS(6377), - [anon_sym_BSLASHftvolcite] = ACTIONS(6377), - [anon_sym_BSLASHsvolcite] = ACTIONS(6377), - [anon_sym_BSLASHSvolcite] = ACTIONS(6377), - [anon_sym_BSLASHtvolcite] = ACTIONS(6377), - [anon_sym_BSLASHTvolcite] = ACTIONS(6377), - [anon_sym_BSLASHavolcite] = ACTIONS(6377), - [anon_sym_BSLASHAvolcite] = ACTIONS(6377), - [anon_sym_BSLASHnotecite] = ACTIONS(6377), - [anon_sym_BSLASHNotecite] = ACTIONS(6377), - [anon_sym_BSLASHpnotecite] = ACTIONS(6377), - [anon_sym_BSLASHPnotecite] = ACTIONS(6377), - [anon_sym_BSLASHfnotecite] = ACTIONS(6377), - [anon_sym_BSLASHlabel] = ACTIONS(6377), - [anon_sym_BSLASHref] = ACTIONS(6377), - [anon_sym_BSLASHeqref] = ACTIONS(6377), - [anon_sym_BSLASHvref] = ACTIONS(6377), - [anon_sym_BSLASHVref] = ACTIONS(6377), - [anon_sym_BSLASHautoref] = ACTIONS(6377), - [anon_sym_BSLASHpageref] = ACTIONS(6377), - [anon_sym_BSLASHcref] = ACTIONS(6377), - [anon_sym_BSLASHCref] = ACTIONS(6377), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnameCref] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHlabelcref] = ACTIONS(6377), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCrefrange] = ACTIONS(6377), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnewlabel] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6377), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6377), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6379), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHdef] = ACTIONS(6377), - [anon_sym_BSLASHlet] = ACTIONS(6377), - [anon_sym_BSLASHleft] = ACTIONS(6377), - [anon_sym_BSLASHbig] = ACTIONS(6377), - [anon_sym_BSLASHBig] = ACTIONS(6377), - [anon_sym_BSLASHbigg] = ACTIONS(6377), - [anon_sym_BSLASHBigg] = ACTIONS(6377), - [anon_sym_BSLASHbigl] = ACTIONS(6377), - [anon_sym_BSLASHBigl] = ACTIONS(6377), - [anon_sym_BSLASHbiggl] = ACTIONS(6377), - [anon_sym_BSLASHBiggl] = ACTIONS(6377), - [anon_sym_BSLASHright] = ACTIONS(6377), - [anon_sym_BSLASHbigr] = ACTIONS(6377), - [anon_sym_BSLASHBigr] = ACTIONS(6377), - [anon_sym_BSLASHbiggr] = ACTIONS(6377), - [anon_sym_BSLASHBiggr] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6377), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6377), - [anon_sym_BSLASHgls] = ACTIONS(6377), - [anon_sym_BSLASHGls] = ACTIONS(6377), - [anon_sym_BSLASHGLS] = ACTIONS(6377), - [anon_sym_BSLASHglspl] = ACTIONS(6377), - [anon_sym_BSLASHGlspl] = ACTIONS(6377), - [anon_sym_BSLASHGLSpl] = ACTIONS(6377), - [anon_sym_BSLASHglsdisp] = ACTIONS(6377), - [anon_sym_BSLASHglslink] = ACTIONS(6377), - [anon_sym_BSLASHglstext] = ACTIONS(6377), - [anon_sym_BSLASHGlstext] = ACTIONS(6377), - [anon_sym_BSLASHGLStext] = ACTIONS(6377), - [anon_sym_BSLASHglsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6377), - [anon_sym_BSLASHglsplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSplural] = ACTIONS(6377), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHglsname] = ACTIONS(6377), - [anon_sym_BSLASHGlsname] = ACTIONS(6377), - [anon_sym_BSLASHGLSname] = ACTIONS(6377), - [anon_sym_BSLASHglssymbol] = ACTIONS(6377), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6377), - [anon_sym_BSLASHglsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6377), - [anon_sym_BSLASHglsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6377), - [anon_sym_BSLASHglsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6377), - [anon_sym_BSLASHglsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6377), - [anon_sym_BSLASHglsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6377), - [anon_sym_BSLASHnewacronym] = ACTIONS(6377), - [anon_sym_BSLASHacrshort] = ACTIONS(6377), - [anon_sym_BSLASHAcrshort] = ACTIONS(6377), - [anon_sym_BSLASHACRshort] = ACTIONS(6377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6377), - [anon_sym_BSLASHacrlong] = ACTIONS(6377), - [anon_sym_BSLASHAcrlong] = ACTIONS(6377), - [anon_sym_BSLASHACRlong] = ACTIONS(6377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6377), - [anon_sym_BSLASHacrfull] = ACTIONS(6377), - [anon_sym_BSLASHAcrfull] = ACTIONS(6377), - [anon_sym_BSLASHACRfull] = ACTIONS(6377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6377), - [anon_sym_BSLASHacs] = ACTIONS(6377), - [anon_sym_BSLASHAcs] = ACTIONS(6377), - [anon_sym_BSLASHacsp] = ACTIONS(6377), - [anon_sym_BSLASHAcsp] = ACTIONS(6377), - [anon_sym_BSLASHacl] = ACTIONS(6377), - [anon_sym_BSLASHAcl] = ACTIONS(6377), - [anon_sym_BSLASHaclp] = ACTIONS(6377), - [anon_sym_BSLASHAclp] = ACTIONS(6377), - [anon_sym_BSLASHacf] = ACTIONS(6377), - [anon_sym_BSLASHAcf] = ACTIONS(6377), - [anon_sym_BSLASHacfp] = ACTIONS(6377), - [anon_sym_BSLASHAcfp] = ACTIONS(6377), - [anon_sym_BSLASHac] = ACTIONS(6377), - [anon_sym_BSLASHAc] = ACTIONS(6377), - [anon_sym_BSLASHacp] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6377), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6377), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6377), - [anon_sym_BSLASHcolor] = ACTIONS(6377), - [anon_sym_BSLASHcolorbox] = ACTIONS(6377), - [anon_sym_BSLASHtextcolor] = ACTIONS(6377), - [anon_sym_BSLASHpagecolor] = ACTIONS(6377), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6377), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6377), - [anon_sym_BSLASHtext] = ACTIONS(6377), - [anon_sym_BSLASHintertext] = ACTIONS(6377), - [anon_sym_shortintertext] = ACTIONS(6377), - }, - [583] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(5870), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [anon_sym_RBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [584] = { - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(455), - [aux_sym__section_repeat6] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(5870), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [anon_sym_RBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [585] = { - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(456), - [aux_sym__section_repeat5] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(5870), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [anon_sym_RBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [586] = { - [sym_command_name] = ACTIONS(6381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(6383), - [anon_sym_RBRACK] = ACTIONS(6383), - [anon_sym_COMMA] = ACTIONS(6383), - [anon_sym_EQ] = ACTIONS(6383), - [anon_sym_LPAREN] = ACTIONS(6383), - [anon_sym_RPAREN] = ACTIONS(6383), - [anon_sym_BSLASHpart] = ACTIONS(6381), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddpart] = ACTIONS(6381), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6383), - [anon_sym_BSLASHchapter] = ACTIONS(6381), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddchap] = ACTIONS(6381), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsection] = ACTIONS(6381), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddsec] = ACTIONS(6381), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubsection] = ACTIONS(6381), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6381), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHparagraph] = ACTIONS(6381), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6381), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6383), - [anon_sym_BSLASHitem] = ACTIONS(6381), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6383), - [anon_sym_LBRACE] = ACTIONS(6383), - [sym_word] = ACTIONS(6381), - [sym_placeholder] = ACTIONS(6383), - [anon_sym_PLUS] = ACTIONS(6383), - [anon_sym_DASH] = ACTIONS(6383), - [anon_sym_STAR] = ACTIONS(6383), - [anon_sym_SLASH] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_COLON] = ACTIONS(6381), - [anon_sym_SQUOTE] = ACTIONS(6381), - [anon_sym__] = ACTIONS(6383), - [anon_sym_CARET] = ACTIONS(6383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6383), - [anon_sym_DOLLAR] = ACTIONS(6381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6383), - [anon_sym_BSLASHbegin] = ACTIONS(6381), - [anon_sym_BSLASHtitle] = ACTIONS(6381), - [anon_sym_BSLASHauthor] = ACTIONS(6381), - [anon_sym_BSLASHusepackage] = ACTIONS(6381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6381), - [anon_sym_BSLASHinclude] = ACTIONS(6381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6381), - [anon_sym_BSLASHinput] = ACTIONS(6381), - [anon_sym_BSLASHsubfile] = ACTIONS(6381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6381), - [anon_sym_BSLASHbibliography] = ACTIONS(6381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6381), - [anon_sym_BSLASHincludesvg] = ACTIONS(6381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6381), - [anon_sym_BSLASHimport] = ACTIONS(6381), - [anon_sym_BSLASHsubimport] = ACTIONS(6381), - [anon_sym_BSLASHinputfrom] = ACTIONS(6381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6381), - [anon_sym_BSLASHincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHcaption] = ACTIONS(6381), - [anon_sym_BSLASHcite] = ACTIONS(6381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCite] = ACTIONS(6381), - [anon_sym_BSLASHnocite] = ACTIONS(6381), - [anon_sym_BSLASHcitet] = ACTIONS(6381), - [anon_sym_BSLASHcitep] = ACTIONS(6381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteauthor] = ACTIONS(6381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitetitle] = ACTIONS(6381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteyear] = ACTIONS(6381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitedate] = ACTIONS(6381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteurl] = ACTIONS(6381), - [anon_sym_BSLASHfullcite] = ACTIONS(6381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6381), - [anon_sym_BSLASHcitealt] = ACTIONS(6381), - [anon_sym_BSLASHcitealp] = ACTIONS(6381), - [anon_sym_BSLASHcitetext] = ACTIONS(6381), - [anon_sym_BSLASHparencite] = ACTIONS(6381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHParencite] = ACTIONS(6381), - [anon_sym_BSLASHfootcite] = ACTIONS(6381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6381), - [anon_sym_BSLASHtextcite] = ACTIONS(6381), - [anon_sym_BSLASHTextcite] = ACTIONS(6381), - [anon_sym_BSLASHsmartcite] = ACTIONS(6381), - [anon_sym_BSLASHSmartcite] = ACTIONS(6381), - [anon_sym_BSLASHsupercite] = ACTIONS(6381), - [anon_sym_BSLASHautocite] = ACTIONS(6381), - [anon_sym_BSLASHAutocite] = ACTIONS(6381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHvolcite] = ACTIONS(6381), - [anon_sym_BSLASHVolcite] = ACTIONS(6381), - [anon_sym_BSLASHpvolcite] = ACTIONS(6381), - [anon_sym_BSLASHPvolcite] = ACTIONS(6381), - [anon_sym_BSLASHfvolcite] = ACTIONS(6381), - [anon_sym_BSLASHftvolcite] = ACTIONS(6381), - [anon_sym_BSLASHsvolcite] = ACTIONS(6381), - [anon_sym_BSLASHSvolcite] = ACTIONS(6381), - [anon_sym_BSLASHtvolcite] = ACTIONS(6381), - [anon_sym_BSLASHTvolcite] = ACTIONS(6381), - [anon_sym_BSLASHavolcite] = ACTIONS(6381), - [anon_sym_BSLASHAvolcite] = ACTIONS(6381), - [anon_sym_BSLASHnotecite] = ACTIONS(6381), - [anon_sym_BSLASHNotecite] = ACTIONS(6381), - [anon_sym_BSLASHpnotecite] = ACTIONS(6381), - [anon_sym_BSLASHPnotecite] = ACTIONS(6381), - [anon_sym_BSLASHfnotecite] = ACTIONS(6381), - [anon_sym_BSLASHlabel] = ACTIONS(6381), - [anon_sym_BSLASHref] = ACTIONS(6381), - [anon_sym_BSLASHeqref] = ACTIONS(6381), - [anon_sym_BSLASHvref] = ACTIONS(6381), - [anon_sym_BSLASHVref] = ACTIONS(6381), - [anon_sym_BSLASHautoref] = ACTIONS(6381), - [anon_sym_BSLASHpageref] = ACTIONS(6381), - [anon_sym_BSLASHcref] = ACTIONS(6381), - [anon_sym_BSLASHCref] = ACTIONS(6381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnameCref] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHlabelcref] = ACTIONS(6381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCrefrange] = ACTIONS(6381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnewlabel] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6383), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHdef] = ACTIONS(6381), - [anon_sym_BSLASHlet] = ACTIONS(6381), - [anon_sym_BSLASHleft] = ACTIONS(6381), - [anon_sym_BSLASHbig] = ACTIONS(6381), - [anon_sym_BSLASHBig] = ACTIONS(6381), - [anon_sym_BSLASHbigg] = ACTIONS(6381), - [anon_sym_BSLASHBigg] = ACTIONS(6381), - [anon_sym_BSLASHbigl] = ACTIONS(6381), - [anon_sym_BSLASHBigl] = ACTIONS(6381), - [anon_sym_BSLASHbiggl] = ACTIONS(6381), - [anon_sym_BSLASHBiggl] = ACTIONS(6381), - [anon_sym_BSLASHright] = ACTIONS(6381), - [anon_sym_BSLASHbigr] = ACTIONS(6381), - [anon_sym_BSLASHBigr] = ACTIONS(6381), - [anon_sym_BSLASHbiggr] = ACTIONS(6381), - [anon_sym_BSLASHBiggr] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6381), - [anon_sym_BSLASHgls] = ACTIONS(6381), - [anon_sym_BSLASHGls] = ACTIONS(6381), - [anon_sym_BSLASHGLS] = ACTIONS(6381), - [anon_sym_BSLASHglspl] = ACTIONS(6381), - [anon_sym_BSLASHGlspl] = ACTIONS(6381), - [anon_sym_BSLASHGLSpl] = ACTIONS(6381), - [anon_sym_BSLASHglsdisp] = ACTIONS(6381), - [anon_sym_BSLASHglslink] = ACTIONS(6381), - [anon_sym_BSLASHglstext] = ACTIONS(6381), - [anon_sym_BSLASHGlstext] = ACTIONS(6381), - [anon_sym_BSLASHGLStext] = ACTIONS(6381), - [anon_sym_BSLASHglsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6381), - [anon_sym_BSLASHglsplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSplural] = ACTIONS(6381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHglsname] = ACTIONS(6381), - [anon_sym_BSLASHGlsname] = ACTIONS(6381), - [anon_sym_BSLASHGLSname] = ACTIONS(6381), - [anon_sym_BSLASHglssymbol] = ACTIONS(6381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6381), - [anon_sym_BSLASHglsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6381), - [anon_sym_BSLASHglsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6381), - [anon_sym_BSLASHglsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6381), - [anon_sym_BSLASHglsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6381), - [anon_sym_BSLASHglsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6381), - [anon_sym_BSLASHnewacronym] = ACTIONS(6381), - [anon_sym_BSLASHacrshort] = ACTIONS(6381), - [anon_sym_BSLASHAcrshort] = ACTIONS(6381), - [anon_sym_BSLASHACRshort] = ACTIONS(6381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6381), - [anon_sym_BSLASHacrlong] = ACTIONS(6381), - [anon_sym_BSLASHAcrlong] = ACTIONS(6381), - [anon_sym_BSLASHACRlong] = ACTIONS(6381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6381), - [anon_sym_BSLASHacrfull] = ACTIONS(6381), - [anon_sym_BSLASHAcrfull] = ACTIONS(6381), - [anon_sym_BSLASHACRfull] = ACTIONS(6381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6381), - [anon_sym_BSLASHacs] = ACTIONS(6381), - [anon_sym_BSLASHAcs] = ACTIONS(6381), - [anon_sym_BSLASHacsp] = ACTIONS(6381), - [anon_sym_BSLASHAcsp] = ACTIONS(6381), - [anon_sym_BSLASHacl] = ACTIONS(6381), - [anon_sym_BSLASHAcl] = ACTIONS(6381), - [anon_sym_BSLASHaclp] = ACTIONS(6381), - [anon_sym_BSLASHAclp] = ACTIONS(6381), - [anon_sym_BSLASHacf] = ACTIONS(6381), - [anon_sym_BSLASHAcf] = ACTIONS(6381), - [anon_sym_BSLASHacfp] = ACTIONS(6381), - [anon_sym_BSLASHAcfp] = ACTIONS(6381), - [anon_sym_BSLASHac] = ACTIONS(6381), - [anon_sym_BSLASHAc] = ACTIONS(6381), - [anon_sym_BSLASHacp] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6381), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6381), - [anon_sym_BSLASHcolor] = ACTIONS(6381), - [anon_sym_BSLASHcolorbox] = ACTIONS(6381), - [anon_sym_BSLASHtextcolor] = ACTIONS(6381), - [anon_sym_BSLASHpagecolor] = ACTIONS(6381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6381), - [anon_sym_BSLASHtext] = ACTIONS(6381), - [anon_sym_BSLASHintertext] = ACTIONS(6381), - [anon_sym_shortintertext] = ACTIONS(6381), - }, - [587] = { - [sym_command_name] = ACTIONS(6385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6387), - [anon_sym_RBRACK] = ACTIONS(6387), - [anon_sym_COMMA] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LPAREN] = ACTIONS(6387), - [anon_sym_RPAREN] = ACTIONS(6387), - [anon_sym_BSLASHpart] = ACTIONS(6385), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddpart] = ACTIONS(6385), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6387), - [anon_sym_BSLASHchapter] = ACTIONS(6385), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddchap] = ACTIONS(6385), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsection] = ACTIONS(6385), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddsec] = ACTIONS(6385), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubsection] = ACTIONS(6385), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6385), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHparagraph] = ACTIONS(6385), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6385), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6387), - [anon_sym_BSLASHitem] = ACTIONS(6385), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6387), - [sym_word] = ACTIONS(6385), - [sym_placeholder] = ACTIONS(6387), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6387), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_LT] = ACTIONS(6385), - [anon_sym_GT] = ACTIONS(6385), - [anon_sym_BANG] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_SQUOTE] = ACTIONS(6385), - [anon_sym__] = ACTIONS(6387), - [anon_sym_CARET] = ACTIONS(6387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6387), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6387), - [anon_sym_DOLLAR] = ACTIONS(6385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6387), - [anon_sym_BSLASHbegin] = ACTIONS(6385), - [anon_sym_BSLASHtitle] = ACTIONS(6385), - [anon_sym_BSLASHauthor] = ACTIONS(6385), - [anon_sym_BSLASHusepackage] = ACTIONS(6385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6385), - [anon_sym_BSLASHinclude] = ACTIONS(6385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6385), - [anon_sym_BSLASHinput] = ACTIONS(6385), - [anon_sym_BSLASHsubfile] = ACTIONS(6385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6385), - [anon_sym_BSLASHbibliography] = ACTIONS(6385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6385), - [anon_sym_BSLASHincludesvg] = ACTIONS(6385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6385), - [anon_sym_BSLASHimport] = ACTIONS(6385), - [anon_sym_BSLASHsubimport] = ACTIONS(6385), - [anon_sym_BSLASHinputfrom] = ACTIONS(6385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6385), - [anon_sym_BSLASHincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHcaption] = ACTIONS(6385), - [anon_sym_BSLASHcite] = ACTIONS(6385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCite] = ACTIONS(6385), - [anon_sym_BSLASHnocite] = ACTIONS(6385), - [anon_sym_BSLASHcitet] = ACTIONS(6385), - [anon_sym_BSLASHcitep] = ACTIONS(6385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteauthor] = ACTIONS(6385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitetitle] = ACTIONS(6385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteyear] = ACTIONS(6385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitedate] = ACTIONS(6385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteurl] = ACTIONS(6385), - [anon_sym_BSLASHfullcite] = ACTIONS(6385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6385), - [anon_sym_BSLASHcitealt] = ACTIONS(6385), - [anon_sym_BSLASHcitealp] = ACTIONS(6385), - [anon_sym_BSLASHcitetext] = ACTIONS(6385), - [anon_sym_BSLASHparencite] = ACTIONS(6385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHParencite] = ACTIONS(6385), - [anon_sym_BSLASHfootcite] = ACTIONS(6385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6385), - [anon_sym_BSLASHtextcite] = ACTIONS(6385), - [anon_sym_BSLASHTextcite] = ACTIONS(6385), - [anon_sym_BSLASHsmartcite] = ACTIONS(6385), - [anon_sym_BSLASHSmartcite] = ACTIONS(6385), - [anon_sym_BSLASHsupercite] = ACTIONS(6385), - [anon_sym_BSLASHautocite] = ACTIONS(6385), - [anon_sym_BSLASHAutocite] = ACTIONS(6385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHvolcite] = ACTIONS(6385), - [anon_sym_BSLASHVolcite] = ACTIONS(6385), - [anon_sym_BSLASHpvolcite] = ACTIONS(6385), - [anon_sym_BSLASHPvolcite] = ACTIONS(6385), - [anon_sym_BSLASHfvolcite] = ACTIONS(6385), - [anon_sym_BSLASHftvolcite] = ACTIONS(6385), - [anon_sym_BSLASHsvolcite] = ACTIONS(6385), - [anon_sym_BSLASHSvolcite] = ACTIONS(6385), - [anon_sym_BSLASHtvolcite] = ACTIONS(6385), - [anon_sym_BSLASHTvolcite] = ACTIONS(6385), - [anon_sym_BSLASHavolcite] = ACTIONS(6385), - [anon_sym_BSLASHAvolcite] = ACTIONS(6385), - [anon_sym_BSLASHnotecite] = ACTIONS(6385), - [anon_sym_BSLASHNotecite] = ACTIONS(6385), - [anon_sym_BSLASHpnotecite] = ACTIONS(6385), - [anon_sym_BSLASHPnotecite] = ACTIONS(6385), - [anon_sym_BSLASHfnotecite] = ACTIONS(6385), - [anon_sym_BSLASHlabel] = ACTIONS(6385), - [anon_sym_BSLASHref] = ACTIONS(6385), - [anon_sym_BSLASHeqref] = ACTIONS(6385), - [anon_sym_BSLASHvref] = ACTIONS(6385), - [anon_sym_BSLASHVref] = ACTIONS(6385), - [anon_sym_BSLASHautoref] = ACTIONS(6385), - [anon_sym_BSLASHpageref] = ACTIONS(6385), - [anon_sym_BSLASHcref] = ACTIONS(6385), - [anon_sym_BSLASHCref] = ACTIONS(6385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnameCref] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHlabelcref] = ACTIONS(6385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCrefrange] = ACTIONS(6385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnewlabel] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6387), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHdef] = ACTIONS(6385), - [anon_sym_BSLASHlet] = ACTIONS(6385), - [anon_sym_BSLASHleft] = ACTIONS(6385), - [anon_sym_BSLASHbig] = ACTIONS(6385), - [anon_sym_BSLASHBig] = ACTIONS(6385), - [anon_sym_BSLASHbigg] = ACTIONS(6385), - [anon_sym_BSLASHBigg] = ACTIONS(6385), - [anon_sym_BSLASHbigl] = ACTIONS(6385), - [anon_sym_BSLASHBigl] = ACTIONS(6385), - [anon_sym_BSLASHbiggl] = ACTIONS(6385), - [anon_sym_BSLASHBiggl] = ACTIONS(6385), - [anon_sym_BSLASHright] = ACTIONS(6385), - [anon_sym_BSLASHbigr] = ACTIONS(6385), - [anon_sym_BSLASHBigr] = ACTIONS(6385), - [anon_sym_BSLASHbiggr] = ACTIONS(6385), - [anon_sym_BSLASHBiggr] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6385), - [anon_sym_BSLASHgls] = ACTIONS(6385), - [anon_sym_BSLASHGls] = ACTIONS(6385), - [anon_sym_BSLASHGLS] = ACTIONS(6385), - [anon_sym_BSLASHglspl] = ACTIONS(6385), - [anon_sym_BSLASHGlspl] = ACTIONS(6385), - [anon_sym_BSLASHGLSpl] = ACTIONS(6385), - [anon_sym_BSLASHglsdisp] = ACTIONS(6385), - [anon_sym_BSLASHglslink] = ACTIONS(6385), - [anon_sym_BSLASHglstext] = ACTIONS(6385), - [anon_sym_BSLASHGlstext] = ACTIONS(6385), - [anon_sym_BSLASHGLStext] = ACTIONS(6385), - [anon_sym_BSLASHglsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6385), - [anon_sym_BSLASHglsplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSplural] = ACTIONS(6385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHglsname] = ACTIONS(6385), - [anon_sym_BSLASHGlsname] = ACTIONS(6385), - [anon_sym_BSLASHGLSname] = ACTIONS(6385), - [anon_sym_BSLASHglssymbol] = ACTIONS(6385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6385), - [anon_sym_BSLASHglsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6385), - [anon_sym_BSLASHglsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6385), - [anon_sym_BSLASHglsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6385), - [anon_sym_BSLASHglsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6385), - [anon_sym_BSLASHglsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6385), - [anon_sym_BSLASHnewacronym] = ACTIONS(6385), - [anon_sym_BSLASHacrshort] = ACTIONS(6385), - [anon_sym_BSLASHAcrshort] = ACTIONS(6385), - [anon_sym_BSLASHACRshort] = ACTIONS(6385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6385), - [anon_sym_BSLASHacrlong] = ACTIONS(6385), - [anon_sym_BSLASHAcrlong] = ACTIONS(6385), - [anon_sym_BSLASHACRlong] = ACTIONS(6385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6385), - [anon_sym_BSLASHacrfull] = ACTIONS(6385), - [anon_sym_BSLASHAcrfull] = ACTIONS(6385), - [anon_sym_BSLASHACRfull] = ACTIONS(6385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6385), - [anon_sym_BSLASHacs] = ACTIONS(6385), - [anon_sym_BSLASHAcs] = ACTIONS(6385), - [anon_sym_BSLASHacsp] = ACTIONS(6385), - [anon_sym_BSLASHAcsp] = ACTIONS(6385), - [anon_sym_BSLASHacl] = ACTIONS(6385), - [anon_sym_BSLASHAcl] = ACTIONS(6385), - [anon_sym_BSLASHaclp] = ACTIONS(6385), - [anon_sym_BSLASHAclp] = ACTIONS(6385), - [anon_sym_BSLASHacf] = ACTIONS(6385), - [anon_sym_BSLASHAcf] = ACTIONS(6385), - [anon_sym_BSLASHacfp] = ACTIONS(6385), - [anon_sym_BSLASHAcfp] = ACTIONS(6385), - [anon_sym_BSLASHac] = ACTIONS(6385), - [anon_sym_BSLASHAc] = ACTIONS(6385), - [anon_sym_BSLASHacp] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6385), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6385), - [anon_sym_BSLASHcolor] = ACTIONS(6385), - [anon_sym_BSLASHcolorbox] = ACTIONS(6385), - [anon_sym_BSLASHtextcolor] = ACTIONS(6385), - [anon_sym_BSLASHpagecolor] = ACTIONS(6385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6385), - [anon_sym_BSLASHtext] = ACTIONS(6385), - [anon_sym_BSLASHintertext] = ACTIONS(6385), - [anon_sym_shortintertext] = ACTIONS(6385), - }, - [588] = { - [sym_command_name] = ACTIONS(6389), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(6391), - [anon_sym_RBRACK] = ACTIONS(6391), - [anon_sym_COMMA] = ACTIONS(6391), - [anon_sym_EQ] = ACTIONS(6391), - [anon_sym_LPAREN] = ACTIONS(6391), - [anon_sym_RPAREN] = ACTIONS(6391), - [anon_sym_BSLASHpart] = ACTIONS(6389), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddpart] = ACTIONS(6389), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6391), - [anon_sym_BSLASHchapter] = ACTIONS(6389), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddchap] = ACTIONS(6389), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsection] = ACTIONS(6389), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddsec] = ACTIONS(6389), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubsection] = ACTIONS(6389), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6389), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHparagraph] = ACTIONS(6389), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6389), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6391), - [anon_sym_BSLASHitem] = ACTIONS(6389), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6391), - [anon_sym_LBRACE] = ACTIONS(6391), - [sym_word] = ACTIONS(6389), - [sym_placeholder] = ACTIONS(6391), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6391), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_LT] = ACTIONS(6389), - [anon_sym_GT] = ACTIONS(6389), - [anon_sym_BANG] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_SQUOTE] = ACTIONS(6389), - [anon_sym__] = ACTIONS(6391), - [anon_sym_CARET] = ACTIONS(6391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6391), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6391), - [anon_sym_DOLLAR] = ACTIONS(6389), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6391), - [anon_sym_BSLASHbegin] = ACTIONS(6389), - [anon_sym_BSLASHtitle] = ACTIONS(6389), - [anon_sym_BSLASHauthor] = ACTIONS(6389), - [anon_sym_BSLASHusepackage] = ACTIONS(6389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6389), - [anon_sym_BSLASHinclude] = ACTIONS(6389), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6389), - [anon_sym_BSLASHinput] = ACTIONS(6389), - [anon_sym_BSLASHsubfile] = ACTIONS(6389), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6389), - [anon_sym_BSLASHbibliography] = ACTIONS(6389), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6389), - [anon_sym_BSLASHincludesvg] = ACTIONS(6389), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6389), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6389), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6389), - [anon_sym_BSLASHimport] = ACTIONS(6389), - [anon_sym_BSLASHsubimport] = ACTIONS(6389), - [anon_sym_BSLASHinputfrom] = ACTIONS(6389), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6389), - [anon_sym_BSLASHincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHcaption] = ACTIONS(6389), - [anon_sym_BSLASHcite] = ACTIONS(6389), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCite] = ACTIONS(6389), - [anon_sym_BSLASHnocite] = ACTIONS(6389), - [anon_sym_BSLASHcitet] = ACTIONS(6389), - [anon_sym_BSLASHcitep] = ACTIONS(6389), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteauthor] = ACTIONS(6389), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6389), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitetitle] = ACTIONS(6389), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteyear] = ACTIONS(6389), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitedate] = ACTIONS(6389), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteurl] = ACTIONS(6389), - [anon_sym_BSLASHfullcite] = ACTIONS(6389), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6389), - [anon_sym_BSLASHcitealt] = ACTIONS(6389), - [anon_sym_BSLASHcitealp] = ACTIONS(6389), - [anon_sym_BSLASHcitetext] = ACTIONS(6389), - [anon_sym_BSLASHparencite] = ACTIONS(6389), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHParencite] = ACTIONS(6389), - [anon_sym_BSLASHfootcite] = ACTIONS(6389), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6389), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6389), - [anon_sym_BSLASHtextcite] = ACTIONS(6389), - [anon_sym_BSLASHTextcite] = ACTIONS(6389), - [anon_sym_BSLASHsmartcite] = ACTIONS(6389), - [anon_sym_BSLASHSmartcite] = ACTIONS(6389), - [anon_sym_BSLASHsupercite] = ACTIONS(6389), - [anon_sym_BSLASHautocite] = ACTIONS(6389), - [anon_sym_BSLASHAutocite] = ACTIONS(6389), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHvolcite] = ACTIONS(6389), - [anon_sym_BSLASHVolcite] = ACTIONS(6389), - [anon_sym_BSLASHpvolcite] = ACTIONS(6389), - [anon_sym_BSLASHPvolcite] = ACTIONS(6389), - [anon_sym_BSLASHfvolcite] = ACTIONS(6389), - [anon_sym_BSLASHftvolcite] = ACTIONS(6389), - [anon_sym_BSLASHsvolcite] = ACTIONS(6389), - [anon_sym_BSLASHSvolcite] = ACTIONS(6389), - [anon_sym_BSLASHtvolcite] = ACTIONS(6389), - [anon_sym_BSLASHTvolcite] = ACTIONS(6389), - [anon_sym_BSLASHavolcite] = ACTIONS(6389), - [anon_sym_BSLASHAvolcite] = ACTIONS(6389), - [anon_sym_BSLASHnotecite] = ACTIONS(6389), - [anon_sym_BSLASHNotecite] = ACTIONS(6389), - [anon_sym_BSLASHpnotecite] = ACTIONS(6389), - [anon_sym_BSLASHPnotecite] = ACTIONS(6389), - [anon_sym_BSLASHfnotecite] = ACTIONS(6389), - [anon_sym_BSLASHlabel] = ACTIONS(6389), - [anon_sym_BSLASHref] = ACTIONS(6389), - [anon_sym_BSLASHeqref] = ACTIONS(6389), - [anon_sym_BSLASHvref] = ACTIONS(6389), - [anon_sym_BSLASHVref] = ACTIONS(6389), - [anon_sym_BSLASHautoref] = ACTIONS(6389), - [anon_sym_BSLASHpageref] = ACTIONS(6389), - [anon_sym_BSLASHcref] = ACTIONS(6389), - [anon_sym_BSLASHCref] = ACTIONS(6389), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnameCref] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHlabelcref] = ACTIONS(6389), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCrefrange] = ACTIONS(6389), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnewlabel] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6389), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6389), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6391), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHdef] = ACTIONS(6389), - [anon_sym_BSLASHlet] = ACTIONS(6389), - [anon_sym_BSLASHleft] = ACTIONS(6389), - [anon_sym_BSLASHbig] = ACTIONS(6389), - [anon_sym_BSLASHBig] = ACTIONS(6389), - [anon_sym_BSLASHbigg] = ACTIONS(6389), - [anon_sym_BSLASHBigg] = ACTIONS(6389), - [anon_sym_BSLASHbigl] = ACTIONS(6389), - [anon_sym_BSLASHBigl] = ACTIONS(6389), - [anon_sym_BSLASHbiggl] = ACTIONS(6389), - [anon_sym_BSLASHBiggl] = ACTIONS(6389), - [anon_sym_BSLASHright] = ACTIONS(6389), - [anon_sym_BSLASHbigr] = ACTIONS(6389), - [anon_sym_BSLASHBigr] = ACTIONS(6389), - [anon_sym_BSLASHbiggr] = ACTIONS(6389), - [anon_sym_BSLASHBiggr] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6389), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6389), - [anon_sym_BSLASHgls] = ACTIONS(6389), - [anon_sym_BSLASHGls] = ACTIONS(6389), - [anon_sym_BSLASHGLS] = ACTIONS(6389), - [anon_sym_BSLASHglspl] = ACTIONS(6389), - [anon_sym_BSLASHGlspl] = ACTIONS(6389), - [anon_sym_BSLASHGLSpl] = ACTIONS(6389), - [anon_sym_BSLASHglsdisp] = ACTIONS(6389), - [anon_sym_BSLASHglslink] = ACTIONS(6389), - [anon_sym_BSLASHglstext] = ACTIONS(6389), - [anon_sym_BSLASHGlstext] = ACTIONS(6389), - [anon_sym_BSLASHGLStext] = ACTIONS(6389), - [anon_sym_BSLASHglsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6389), - [anon_sym_BSLASHglsplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSplural] = ACTIONS(6389), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHglsname] = ACTIONS(6389), - [anon_sym_BSLASHGlsname] = ACTIONS(6389), - [anon_sym_BSLASHGLSname] = ACTIONS(6389), - [anon_sym_BSLASHglssymbol] = ACTIONS(6389), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6389), - [anon_sym_BSLASHglsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6389), - [anon_sym_BSLASHglsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6389), - [anon_sym_BSLASHglsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6389), - [anon_sym_BSLASHglsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6389), - [anon_sym_BSLASHglsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6389), - [anon_sym_BSLASHnewacronym] = ACTIONS(6389), - [anon_sym_BSLASHacrshort] = ACTIONS(6389), - [anon_sym_BSLASHAcrshort] = ACTIONS(6389), - [anon_sym_BSLASHACRshort] = ACTIONS(6389), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6389), - [anon_sym_BSLASHacrlong] = ACTIONS(6389), - [anon_sym_BSLASHAcrlong] = ACTIONS(6389), - [anon_sym_BSLASHACRlong] = ACTIONS(6389), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6389), - [anon_sym_BSLASHacrfull] = ACTIONS(6389), - [anon_sym_BSLASHAcrfull] = ACTIONS(6389), - [anon_sym_BSLASHACRfull] = ACTIONS(6389), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6389), - [anon_sym_BSLASHacs] = ACTIONS(6389), - [anon_sym_BSLASHAcs] = ACTIONS(6389), - [anon_sym_BSLASHacsp] = ACTIONS(6389), - [anon_sym_BSLASHAcsp] = ACTIONS(6389), - [anon_sym_BSLASHacl] = ACTIONS(6389), - [anon_sym_BSLASHAcl] = ACTIONS(6389), - [anon_sym_BSLASHaclp] = ACTIONS(6389), - [anon_sym_BSLASHAclp] = ACTIONS(6389), - [anon_sym_BSLASHacf] = ACTIONS(6389), - [anon_sym_BSLASHAcf] = ACTIONS(6389), - [anon_sym_BSLASHacfp] = ACTIONS(6389), - [anon_sym_BSLASHAcfp] = ACTIONS(6389), - [anon_sym_BSLASHac] = ACTIONS(6389), - [anon_sym_BSLASHAc] = ACTIONS(6389), - [anon_sym_BSLASHacp] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6389), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6389), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6389), - [anon_sym_BSLASHcolor] = ACTIONS(6389), - [anon_sym_BSLASHcolorbox] = ACTIONS(6389), - [anon_sym_BSLASHtextcolor] = ACTIONS(6389), - [anon_sym_BSLASHpagecolor] = ACTIONS(6389), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6389), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6389), - [anon_sym_BSLASHtext] = ACTIONS(6389), - [anon_sym_BSLASHintertext] = ACTIONS(6389), - [anon_sym_shortintertext] = ACTIONS(6389), - }, - [589] = { - [sym_command_name] = ACTIONS(6393), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6393), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_RBRACK] = ACTIONS(6395), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_LPAREN] = ACTIONS(6395), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_BSLASHpart] = ACTIONS(6393), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddpart] = ACTIONS(6393), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6395), - [anon_sym_BSLASHchapter] = ACTIONS(6393), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddchap] = ACTIONS(6393), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsection] = ACTIONS(6393), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddsec] = ACTIONS(6393), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubsection] = ACTIONS(6393), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6393), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHparagraph] = ACTIONS(6393), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6393), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6395), - [anon_sym_BSLASHitem] = ACTIONS(6393), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6395), - [anon_sym_LBRACE] = ACTIONS(6395), - [sym_word] = ACTIONS(6393), - [sym_placeholder] = ACTIONS(6395), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6395), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_LT] = ACTIONS(6393), - [anon_sym_GT] = ACTIONS(6393), - [anon_sym_BANG] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_SQUOTE] = ACTIONS(6393), - [anon_sym__] = ACTIONS(6395), - [anon_sym_CARET] = ACTIONS(6395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6395), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6395), - [anon_sym_DOLLAR] = ACTIONS(6393), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6395), - [anon_sym_BSLASHbegin] = ACTIONS(6393), - [anon_sym_BSLASHtitle] = ACTIONS(6393), - [anon_sym_BSLASHauthor] = ACTIONS(6393), - [anon_sym_BSLASHusepackage] = ACTIONS(6393), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6393), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6393), - [anon_sym_BSLASHinclude] = ACTIONS(6393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6393), - [anon_sym_BSLASHinput] = ACTIONS(6393), - [anon_sym_BSLASHsubfile] = ACTIONS(6393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6393), - [anon_sym_BSLASHbibliography] = ACTIONS(6393), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6393), - [anon_sym_BSLASHincludesvg] = ACTIONS(6393), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6393), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6393), - [anon_sym_BSLASHimport] = ACTIONS(6393), - [anon_sym_BSLASHsubimport] = ACTIONS(6393), - [anon_sym_BSLASHinputfrom] = ACTIONS(6393), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6393), - [anon_sym_BSLASHincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHcaption] = ACTIONS(6393), - [anon_sym_BSLASHcite] = ACTIONS(6393), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCite] = ACTIONS(6393), - [anon_sym_BSLASHnocite] = ACTIONS(6393), - [anon_sym_BSLASHcitet] = ACTIONS(6393), - [anon_sym_BSLASHcitep] = ACTIONS(6393), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteauthor] = ACTIONS(6393), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6393), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitetitle] = ACTIONS(6393), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteyear] = ACTIONS(6393), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitedate] = ACTIONS(6393), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteurl] = ACTIONS(6393), - [anon_sym_BSLASHfullcite] = ACTIONS(6393), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6393), - [anon_sym_BSLASHcitealt] = ACTIONS(6393), - [anon_sym_BSLASHcitealp] = ACTIONS(6393), - [anon_sym_BSLASHcitetext] = ACTIONS(6393), - [anon_sym_BSLASHparencite] = ACTIONS(6393), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHParencite] = ACTIONS(6393), - [anon_sym_BSLASHfootcite] = ACTIONS(6393), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6393), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6393), - [anon_sym_BSLASHtextcite] = ACTIONS(6393), - [anon_sym_BSLASHTextcite] = ACTIONS(6393), - [anon_sym_BSLASHsmartcite] = ACTIONS(6393), - [anon_sym_BSLASHSmartcite] = ACTIONS(6393), - [anon_sym_BSLASHsupercite] = ACTIONS(6393), - [anon_sym_BSLASHautocite] = ACTIONS(6393), - [anon_sym_BSLASHAutocite] = ACTIONS(6393), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHvolcite] = ACTIONS(6393), - [anon_sym_BSLASHVolcite] = ACTIONS(6393), - [anon_sym_BSLASHpvolcite] = ACTIONS(6393), - [anon_sym_BSLASHPvolcite] = ACTIONS(6393), - [anon_sym_BSLASHfvolcite] = ACTIONS(6393), - [anon_sym_BSLASHftvolcite] = ACTIONS(6393), - [anon_sym_BSLASHsvolcite] = ACTIONS(6393), - [anon_sym_BSLASHSvolcite] = ACTIONS(6393), - [anon_sym_BSLASHtvolcite] = ACTIONS(6393), - [anon_sym_BSLASHTvolcite] = ACTIONS(6393), - [anon_sym_BSLASHavolcite] = ACTIONS(6393), - [anon_sym_BSLASHAvolcite] = ACTIONS(6393), - [anon_sym_BSLASHnotecite] = ACTIONS(6393), - [anon_sym_BSLASHNotecite] = ACTIONS(6393), - [anon_sym_BSLASHpnotecite] = ACTIONS(6393), - [anon_sym_BSLASHPnotecite] = ACTIONS(6393), - [anon_sym_BSLASHfnotecite] = ACTIONS(6393), - [anon_sym_BSLASHlabel] = ACTIONS(6393), - [anon_sym_BSLASHref] = ACTIONS(6393), - [anon_sym_BSLASHeqref] = ACTIONS(6393), - [anon_sym_BSLASHvref] = ACTIONS(6393), - [anon_sym_BSLASHVref] = ACTIONS(6393), - [anon_sym_BSLASHautoref] = ACTIONS(6393), - [anon_sym_BSLASHpageref] = ACTIONS(6393), - [anon_sym_BSLASHcref] = ACTIONS(6393), - [anon_sym_BSLASHCref] = ACTIONS(6393), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnameCref] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHlabelcref] = ACTIONS(6393), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCrefrange] = ACTIONS(6393), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnewlabel] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6393), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6393), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6395), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHdef] = ACTIONS(6393), - [anon_sym_BSLASHlet] = ACTIONS(6393), - [anon_sym_BSLASHleft] = ACTIONS(6393), - [anon_sym_BSLASHbig] = ACTIONS(6393), - [anon_sym_BSLASHBig] = ACTIONS(6393), - [anon_sym_BSLASHbigg] = ACTIONS(6393), - [anon_sym_BSLASHBigg] = ACTIONS(6393), - [anon_sym_BSLASHbigl] = ACTIONS(6393), - [anon_sym_BSLASHBigl] = ACTIONS(6393), - [anon_sym_BSLASHbiggl] = ACTIONS(6393), - [anon_sym_BSLASHBiggl] = ACTIONS(6393), - [anon_sym_BSLASHright] = ACTIONS(6393), - [anon_sym_BSLASHbigr] = ACTIONS(6393), - [anon_sym_BSLASHBigr] = ACTIONS(6393), - [anon_sym_BSLASHbiggr] = ACTIONS(6393), - [anon_sym_BSLASHBiggr] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6393), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6393), - [anon_sym_BSLASHgls] = ACTIONS(6393), - [anon_sym_BSLASHGls] = ACTIONS(6393), - [anon_sym_BSLASHGLS] = ACTIONS(6393), - [anon_sym_BSLASHglspl] = ACTIONS(6393), - [anon_sym_BSLASHGlspl] = ACTIONS(6393), - [anon_sym_BSLASHGLSpl] = ACTIONS(6393), - [anon_sym_BSLASHglsdisp] = ACTIONS(6393), - [anon_sym_BSLASHglslink] = ACTIONS(6393), - [anon_sym_BSLASHglstext] = ACTIONS(6393), - [anon_sym_BSLASHGlstext] = ACTIONS(6393), - [anon_sym_BSLASHGLStext] = ACTIONS(6393), - [anon_sym_BSLASHglsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6393), - [anon_sym_BSLASHglsplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSplural] = ACTIONS(6393), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHglsname] = ACTIONS(6393), - [anon_sym_BSLASHGlsname] = ACTIONS(6393), - [anon_sym_BSLASHGLSname] = ACTIONS(6393), - [anon_sym_BSLASHglssymbol] = ACTIONS(6393), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6393), - [anon_sym_BSLASHglsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6393), - [anon_sym_BSLASHglsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6393), - [anon_sym_BSLASHglsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6393), - [anon_sym_BSLASHglsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6393), - [anon_sym_BSLASHglsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6393), - [anon_sym_BSLASHnewacronym] = ACTIONS(6393), - [anon_sym_BSLASHacrshort] = ACTIONS(6393), - [anon_sym_BSLASHAcrshort] = ACTIONS(6393), - [anon_sym_BSLASHACRshort] = ACTIONS(6393), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6393), - [anon_sym_BSLASHacrlong] = ACTIONS(6393), - [anon_sym_BSLASHAcrlong] = ACTIONS(6393), - [anon_sym_BSLASHACRlong] = ACTIONS(6393), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6393), - [anon_sym_BSLASHacrfull] = ACTIONS(6393), - [anon_sym_BSLASHAcrfull] = ACTIONS(6393), - [anon_sym_BSLASHACRfull] = ACTIONS(6393), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6393), - [anon_sym_BSLASHacs] = ACTIONS(6393), - [anon_sym_BSLASHAcs] = ACTIONS(6393), - [anon_sym_BSLASHacsp] = ACTIONS(6393), - [anon_sym_BSLASHAcsp] = ACTIONS(6393), - [anon_sym_BSLASHacl] = ACTIONS(6393), - [anon_sym_BSLASHAcl] = ACTIONS(6393), - [anon_sym_BSLASHaclp] = ACTIONS(6393), - [anon_sym_BSLASHAclp] = ACTIONS(6393), - [anon_sym_BSLASHacf] = ACTIONS(6393), - [anon_sym_BSLASHAcf] = ACTIONS(6393), - [anon_sym_BSLASHacfp] = ACTIONS(6393), - [anon_sym_BSLASHAcfp] = ACTIONS(6393), - [anon_sym_BSLASHac] = ACTIONS(6393), - [anon_sym_BSLASHAc] = ACTIONS(6393), - [anon_sym_BSLASHacp] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6393), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6393), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6393), - [anon_sym_BSLASHcolor] = ACTIONS(6393), - [anon_sym_BSLASHcolorbox] = ACTIONS(6393), - [anon_sym_BSLASHtextcolor] = ACTIONS(6393), - [anon_sym_BSLASHpagecolor] = ACTIONS(6393), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6393), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6393), - [anon_sym_BSLASHtext] = ACTIONS(6393), - [anon_sym_BSLASHintertext] = ACTIONS(6393), - [anon_sym_shortintertext] = ACTIONS(6393), - }, - [590] = { - [sym_command_name] = ACTIONS(6397), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6397), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(6399), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_LPAREN] = ACTIONS(6399), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_BSLASHpart] = ACTIONS(6397), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddpart] = ACTIONS(6397), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6399), - [anon_sym_BSLASHchapter] = ACTIONS(6397), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddchap] = ACTIONS(6397), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsection] = ACTIONS(6397), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddsec] = ACTIONS(6397), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubsection] = ACTIONS(6397), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6397), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHparagraph] = ACTIONS(6397), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6397), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6399), - [anon_sym_BSLASHitem] = ACTIONS(6397), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6399), - [anon_sym_LBRACE] = ACTIONS(6399), - [sym_word] = ACTIONS(6397), - [sym_placeholder] = ACTIONS(6399), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_LT] = ACTIONS(6397), - [anon_sym_GT] = ACTIONS(6397), - [anon_sym_BANG] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_SQUOTE] = ACTIONS(6397), - [anon_sym__] = ACTIONS(6399), - [anon_sym_CARET] = ACTIONS(6399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6399), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6399), - [anon_sym_DOLLAR] = ACTIONS(6397), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6399), - [anon_sym_BSLASHbegin] = ACTIONS(6397), - [anon_sym_BSLASHtitle] = ACTIONS(6397), - [anon_sym_BSLASHauthor] = ACTIONS(6397), - [anon_sym_BSLASHusepackage] = ACTIONS(6397), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6397), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6397), - [anon_sym_BSLASHinclude] = ACTIONS(6397), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6397), - [anon_sym_BSLASHinput] = ACTIONS(6397), - [anon_sym_BSLASHsubfile] = ACTIONS(6397), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6397), - [anon_sym_BSLASHbibliography] = ACTIONS(6397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6397), - [anon_sym_BSLASHincludesvg] = ACTIONS(6397), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6397), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6397), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6397), - [anon_sym_BSLASHimport] = ACTIONS(6397), - [anon_sym_BSLASHsubimport] = ACTIONS(6397), - [anon_sym_BSLASHinputfrom] = ACTIONS(6397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6397), - [anon_sym_BSLASHincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHcaption] = ACTIONS(6397), - [anon_sym_BSLASHcite] = ACTIONS(6397), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCite] = ACTIONS(6397), - [anon_sym_BSLASHnocite] = ACTIONS(6397), - [anon_sym_BSLASHcitet] = ACTIONS(6397), - [anon_sym_BSLASHcitep] = ACTIONS(6397), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteauthor] = ACTIONS(6397), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6397), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitetitle] = ACTIONS(6397), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteyear] = ACTIONS(6397), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitedate] = ACTIONS(6397), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteurl] = ACTIONS(6397), - [anon_sym_BSLASHfullcite] = ACTIONS(6397), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6397), - [anon_sym_BSLASHcitealt] = ACTIONS(6397), - [anon_sym_BSLASHcitealp] = ACTIONS(6397), - [anon_sym_BSLASHcitetext] = ACTIONS(6397), - [anon_sym_BSLASHparencite] = ACTIONS(6397), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHParencite] = ACTIONS(6397), - [anon_sym_BSLASHfootcite] = ACTIONS(6397), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6397), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6397), - [anon_sym_BSLASHtextcite] = ACTIONS(6397), - [anon_sym_BSLASHTextcite] = ACTIONS(6397), - [anon_sym_BSLASHsmartcite] = ACTIONS(6397), - [anon_sym_BSLASHSmartcite] = ACTIONS(6397), - [anon_sym_BSLASHsupercite] = ACTIONS(6397), - [anon_sym_BSLASHautocite] = ACTIONS(6397), - [anon_sym_BSLASHAutocite] = ACTIONS(6397), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHvolcite] = ACTIONS(6397), - [anon_sym_BSLASHVolcite] = ACTIONS(6397), - [anon_sym_BSLASHpvolcite] = ACTIONS(6397), - [anon_sym_BSLASHPvolcite] = ACTIONS(6397), - [anon_sym_BSLASHfvolcite] = ACTIONS(6397), - [anon_sym_BSLASHftvolcite] = ACTIONS(6397), - [anon_sym_BSLASHsvolcite] = ACTIONS(6397), - [anon_sym_BSLASHSvolcite] = ACTIONS(6397), - [anon_sym_BSLASHtvolcite] = ACTIONS(6397), - [anon_sym_BSLASHTvolcite] = ACTIONS(6397), - [anon_sym_BSLASHavolcite] = ACTIONS(6397), - [anon_sym_BSLASHAvolcite] = ACTIONS(6397), - [anon_sym_BSLASHnotecite] = ACTIONS(6397), - [anon_sym_BSLASHNotecite] = ACTIONS(6397), - [anon_sym_BSLASHpnotecite] = ACTIONS(6397), - [anon_sym_BSLASHPnotecite] = ACTIONS(6397), - [anon_sym_BSLASHfnotecite] = ACTIONS(6397), - [anon_sym_BSLASHlabel] = ACTIONS(6397), - [anon_sym_BSLASHref] = ACTIONS(6397), - [anon_sym_BSLASHeqref] = ACTIONS(6397), - [anon_sym_BSLASHvref] = ACTIONS(6397), - [anon_sym_BSLASHVref] = ACTIONS(6397), - [anon_sym_BSLASHautoref] = ACTIONS(6397), - [anon_sym_BSLASHpageref] = ACTIONS(6397), - [anon_sym_BSLASHcref] = ACTIONS(6397), - [anon_sym_BSLASHCref] = ACTIONS(6397), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnameCref] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHlabelcref] = ACTIONS(6397), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCrefrange] = ACTIONS(6397), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnewlabel] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6397), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6397), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6399), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHdef] = ACTIONS(6397), - [anon_sym_BSLASHlet] = ACTIONS(6397), - [anon_sym_BSLASHleft] = ACTIONS(6397), - [anon_sym_BSLASHbig] = ACTIONS(6397), - [anon_sym_BSLASHBig] = ACTIONS(6397), - [anon_sym_BSLASHbigg] = ACTIONS(6397), - [anon_sym_BSLASHBigg] = ACTIONS(6397), - [anon_sym_BSLASHbigl] = ACTIONS(6397), - [anon_sym_BSLASHBigl] = ACTIONS(6397), - [anon_sym_BSLASHbiggl] = ACTIONS(6397), - [anon_sym_BSLASHBiggl] = ACTIONS(6397), - [anon_sym_BSLASHright] = ACTIONS(6397), - [anon_sym_BSLASHbigr] = ACTIONS(6397), - [anon_sym_BSLASHBigr] = ACTIONS(6397), - [anon_sym_BSLASHbiggr] = ACTIONS(6397), - [anon_sym_BSLASHBiggr] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6397), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6397), - [anon_sym_BSLASHgls] = ACTIONS(6397), - [anon_sym_BSLASHGls] = ACTIONS(6397), - [anon_sym_BSLASHGLS] = ACTIONS(6397), - [anon_sym_BSLASHglspl] = ACTIONS(6397), - [anon_sym_BSLASHGlspl] = ACTIONS(6397), - [anon_sym_BSLASHGLSpl] = ACTIONS(6397), - [anon_sym_BSLASHglsdisp] = ACTIONS(6397), - [anon_sym_BSLASHglslink] = ACTIONS(6397), - [anon_sym_BSLASHglstext] = ACTIONS(6397), - [anon_sym_BSLASHGlstext] = ACTIONS(6397), - [anon_sym_BSLASHGLStext] = ACTIONS(6397), - [anon_sym_BSLASHglsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6397), - [anon_sym_BSLASHglsplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSplural] = ACTIONS(6397), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHglsname] = ACTIONS(6397), - [anon_sym_BSLASHGlsname] = ACTIONS(6397), - [anon_sym_BSLASHGLSname] = ACTIONS(6397), - [anon_sym_BSLASHglssymbol] = ACTIONS(6397), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6397), - [anon_sym_BSLASHglsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6397), - [anon_sym_BSLASHglsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6397), - [anon_sym_BSLASHglsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6397), - [anon_sym_BSLASHglsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6397), - [anon_sym_BSLASHglsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6397), - [anon_sym_BSLASHnewacronym] = ACTIONS(6397), - [anon_sym_BSLASHacrshort] = ACTIONS(6397), - [anon_sym_BSLASHAcrshort] = ACTIONS(6397), - [anon_sym_BSLASHACRshort] = ACTIONS(6397), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6397), - [anon_sym_BSLASHacrlong] = ACTIONS(6397), - [anon_sym_BSLASHAcrlong] = ACTIONS(6397), - [anon_sym_BSLASHACRlong] = ACTIONS(6397), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6397), - [anon_sym_BSLASHacrfull] = ACTIONS(6397), - [anon_sym_BSLASHAcrfull] = ACTIONS(6397), - [anon_sym_BSLASHACRfull] = ACTIONS(6397), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6397), - [anon_sym_BSLASHacs] = ACTIONS(6397), - [anon_sym_BSLASHAcs] = ACTIONS(6397), - [anon_sym_BSLASHacsp] = ACTIONS(6397), - [anon_sym_BSLASHAcsp] = ACTIONS(6397), - [anon_sym_BSLASHacl] = ACTIONS(6397), - [anon_sym_BSLASHAcl] = ACTIONS(6397), - [anon_sym_BSLASHaclp] = ACTIONS(6397), - [anon_sym_BSLASHAclp] = ACTIONS(6397), - [anon_sym_BSLASHacf] = ACTIONS(6397), - [anon_sym_BSLASHAcf] = ACTIONS(6397), - [anon_sym_BSLASHacfp] = ACTIONS(6397), - [anon_sym_BSLASHAcfp] = ACTIONS(6397), - [anon_sym_BSLASHac] = ACTIONS(6397), - [anon_sym_BSLASHAc] = ACTIONS(6397), - [anon_sym_BSLASHacp] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6397), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6397), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6397), - [anon_sym_BSLASHcolor] = ACTIONS(6397), - [anon_sym_BSLASHcolorbox] = ACTIONS(6397), - [anon_sym_BSLASHtextcolor] = ACTIONS(6397), - [anon_sym_BSLASHpagecolor] = ACTIONS(6397), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6397), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6397), - [anon_sym_BSLASHtext] = ACTIONS(6397), - [anon_sym_BSLASHintertext] = ACTIONS(6397), - [anon_sym_shortintertext] = ACTIONS(6397), - }, - [591] = { - [sym_command_name] = ACTIONS(6401), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6401), - [anon_sym_LBRACK] = ACTIONS(6403), - [anon_sym_RBRACK] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(6403), - [anon_sym_EQ] = ACTIONS(6403), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(6403), - [anon_sym_BSLASHpart] = ACTIONS(6401), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddpart] = ACTIONS(6401), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6403), - [anon_sym_BSLASHchapter] = ACTIONS(6401), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddchap] = ACTIONS(6401), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsection] = ACTIONS(6401), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddsec] = ACTIONS(6401), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubsection] = ACTIONS(6401), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6401), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHparagraph] = ACTIONS(6401), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6401), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6403), - [anon_sym_BSLASHitem] = ACTIONS(6401), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6403), - [anon_sym_LBRACE] = ACTIONS(6403), - [sym_word] = ACTIONS(6401), - [sym_placeholder] = ACTIONS(6403), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6403), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_LT] = ACTIONS(6401), - [anon_sym_GT] = ACTIONS(6401), - [anon_sym_BANG] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_SQUOTE] = ACTIONS(6401), - [anon_sym__] = ACTIONS(6403), - [anon_sym_CARET] = ACTIONS(6403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6403), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6403), - [anon_sym_DOLLAR] = ACTIONS(6401), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6403), - [anon_sym_BSLASHbegin] = ACTIONS(6401), - [anon_sym_BSLASHtitle] = ACTIONS(6401), - [anon_sym_BSLASHauthor] = ACTIONS(6401), - [anon_sym_BSLASHusepackage] = ACTIONS(6401), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6401), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6401), - [anon_sym_BSLASHinclude] = ACTIONS(6401), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6401), - [anon_sym_BSLASHinput] = ACTIONS(6401), - [anon_sym_BSLASHsubfile] = ACTIONS(6401), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6401), - [anon_sym_BSLASHbibliography] = ACTIONS(6401), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6401), - [anon_sym_BSLASHincludesvg] = ACTIONS(6401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6401), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6401), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6401), - [anon_sym_BSLASHimport] = ACTIONS(6401), - [anon_sym_BSLASHsubimport] = ACTIONS(6401), - [anon_sym_BSLASHinputfrom] = ACTIONS(6401), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6401), - [anon_sym_BSLASHincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHcaption] = ACTIONS(6401), - [anon_sym_BSLASHcite] = ACTIONS(6401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCite] = ACTIONS(6401), - [anon_sym_BSLASHnocite] = ACTIONS(6401), - [anon_sym_BSLASHcitet] = ACTIONS(6401), - [anon_sym_BSLASHcitep] = ACTIONS(6401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteauthor] = ACTIONS(6401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitetitle] = ACTIONS(6401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteyear] = ACTIONS(6401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitedate] = ACTIONS(6401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteurl] = ACTIONS(6401), - [anon_sym_BSLASHfullcite] = ACTIONS(6401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6401), - [anon_sym_BSLASHcitealt] = ACTIONS(6401), - [anon_sym_BSLASHcitealp] = ACTIONS(6401), - [anon_sym_BSLASHcitetext] = ACTIONS(6401), - [anon_sym_BSLASHparencite] = ACTIONS(6401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHParencite] = ACTIONS(6401), - [anon_sym_BSLASHfootcite] = ACTIONS(6401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6401), - [anon_sym_BSLASHtextcite] = ACTIONS(6401), - [anon_sym_BSLASHTextcite] = ACTIONS(6401), - [anon_sym_BSLASHsmartcite] = ACTIONS(6401), - [anon_sym_BSLASHSmartcite] = ACTIONS(6401), - [anon_sym_BSLASHsupercite] = ACTIONS(6401), - [anon_sym_BSLASHautocite] = ACTIONS(6401), - [anon_sym_BSLASHAutocite] = ACTIONS(6401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHvolcite] = ACTIONS(6401), - [anon_sym_BSLASHVolcite] = ACTIONS(6401), - [anon_sym_BSLASHpvolcite] = ACTIONS(6401), - [anon_sym_BSLASHPvolcite] = ACTIONS(6401), - [anon_sym_BSLASHfvolcite] = ACTIONS(6401), - [anon_sym_BSLASHftvolcite] = ACTIONS(6401), - [anon_sym_BSLASHsvolcite] = ACTIONS(6401), - [anon_sym_BSLASHSvolcite] = ACTIONS(6401), - [anon_sym_BSLASHtvolcite] = ACTIONS(6401), - [anon_sym_BSLASHTvolcite] = ACTIONS(6401), - [anon_sym_BSLASHavolcite] = ACTIONS(6401), - [anon_sym_BSLASHAvolcite] = ACTIONS(6401), - [anon_sym_BSLASHnotecite] = ACTIONS(6401), - [anon_sym_BSLASHNotecite] = ACTIONS(6401), - [anon_sym_BSLASHpnotecite] = ACTIONS(6401), - [anon_sym_BSLASHPnotecite] = ACTIONS(6401), - [anon_sym_BSLASHfnotecite] = ACTIONS(6401), - [anon_sym_BSLASHlabel] = ACTIONS(6401), - [anon_sym_BSLASHref] = ACTIONS(6401), - [anon_sym_BSLASHeqref] = ACTIONS(6401), - [anon_sym_BSLASHvref] = ACTIONS(6401), - [anon_sym_BSLASHVref] = ACTIONS(6401), - [anon_sym_BSLASHautoref] = ACTIONS(6401), - [anon_sym_BSLASHpageref] = ACTIONS(6401), - [anon_sym_BSLASHcref] = ACTIONS(6401), - [anon_sym_BSLASHCref] = ACTIONS(6401), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnameCref] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHlabelcref] = ACTIONS(6401), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCrefrange] = ACTIONS(6401), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnewlabel] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6401), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6401), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6403), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHdef] = ACTIONS(6401), - [anon_sym_BSLASHlet] = ACTIONS(6401), - [anon_sym_BSLASHleft] = ACTIONS(6401), - [anon_sym_BSLASHbig] = ACTIONS(6401), - [anon_sym_BSLASHBig] = ACTIONS(6401), - [anon_sym_BSLASHbigg] = ACTIONS(6401), - [anon_sym_BSLASHBigg] = ACTIONS(6401), - [anon_sym_BSLASHbigl] = ACTIONS(6401), - [anon_sym_BSLASHBigl] = ACTIONS(6401), - [anon_sym_BSLASHbiggl] = ACTIONS(6401), - [anon_sym_BSLASHBiggl] = ACTIONS(6401), - [anon_sym_BSLASHright] = ACTIONS(6401), - [anon_sym_BSLASHbigr] = ACTIONS(6401), - [anon_sym_BSLASHBigr] = ACTIONS(6401), - [anon_sym_BSLASHbiggr] = ACTIONS(6401), - [anon_sym_BSLASHBiggr] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6401), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6401), - [anon_sym_BSLASHgls] = ACTIONS(6401), - [anon_sym_BSLASHGls] = ACTIONS(6401), - [anon_sym_BSLASHGLS] = ACTIONS(6401), - [anon_sym_BSLASHglspl] = ACTIONS(6401), - [anon_sym_BSLASHGlspl] = ACTIONS(6401), - [anon_sym_BSLASHGLSpl] = ACTIONS(6401), - [anon_sym_BSLASHglsdisp] = ACTIONS(6401), - [anon_sym_BSLASHglslink] = ACTIONS(6401), - [anon_sym_BSLASHglstext] = ACTIONS(6401), - [anon_sym_BSLASHGlstext] = ACTIONS(6401), - [anon_sym_BSLASHGLStext] = ACTIONS(6401), - [anon_sym_BSLASHglsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6401), - [anon_sym_BSLASHglsplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSplural] = ACTIONS(6401), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHglsname] = ACTIONS(6401), - [anon_sym_BSLASHGlsname] = ACTIONS(6401), - [anon_sym_BSLASHGLSname] = ACTIONS(6401), - [anon_sym_BSLASHglssymbol] = ACTIONS(6401), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6401), - [anon_sym_BSLASHglsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6401), - [anon_sym_BSLASHglsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6401), - [anon_sym_BSLASHglsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6401), - [anon_sym_BSLASHglsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6401), - [anon_sym_BSLASHglsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6401), - [anon_sym_BSLASHnewacronym] = ACTIONS(6401), - [anon_sym_BSLASHacrshort] = ACTIONS(6401), - [anon_sym_BSLASHAcrshort] = ACTIONS(6401), - [anon_sym_BSLASHACRshort] = ACTIONS(6401), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6401), - [anon_sym_BSLASHacrlong] = ACTIONS(6401), - [anon_sym_BSLASHAcrlong] = ACTIONS(6401), - [anon_sym_BSLASHACRlong] = ACTIONS(6401), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6401), - [anon_sym_BSLASHacrfull] = ACTIONS(6401), - [anon_sym_BSLASHAcrfull] = ACTIONS(6401), - [anon_sym_BSLASHACRfull] = ACTIONS(6401), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6401), - [anon_sym_BSLASHacs] = ACTIONS(6401), - [anon_sym_BSLASHAcs] = ACTIONS(6401), - [anon_sym_BSLASHacsp] = ACTIONS(6401), - [anon_sym_BSLASHAcsp] = ACTIONS(6401), - [anon_sym_BSLASHacl] = ACTIONS(6401), - [anon_sym_BSLASHAcl] = ACTIONS(6401), - [anon_sym_BSLASHaclp] = ACTIONS(6401), - [anon_sym_BSLASHAclp] = ACTIONS(6401), - [anon_sym_BSLASHacf] = ACTIONS(6401), - [anon_sym_BSLASHAcf] = ACTIONS(6401), - [anon_sym_BSLASHacfp] = ACTIONS(6401), - [anon_sym_BSLASHAcfp] = ACTIONS(6401), - [anon_sym_BSLASHac] = ACTIONS(6401), - [anon_sym_BSLASHAc] = ACTIONS(6401), - [anon_sym_BSLASHacp] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6401), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6401), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6401), - [anon_sym_BSLASHcolor] = ACTIONS(6401), - [anon_sym_BSLASHcolorbox] = ACTIONS(6401), - [anon_sym_BSLASHtextcolor] = ACTIONS(6401), - [anon_sym_BSLASHpagecolor] = ACTIONS(6401), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6401), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6401), - [anon_sym_BSLASHtext] = ACTIONS(6401), - [anon_sym_BSLASHintertext] = ACTIONS(6401), - [anon_sym_shortintertext] = ACTIONS(6401), - }, - [592] = { - [sym_command_name] = ACTIONS(6405), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6405), - [anon_sym_LBRACK] = ACTIONS(6407), - [anon_sym_RBRACK] = ACTIONS(6407), - [anon_sym_COMMA] = ACTIONS(6407), - [anon_sym_EQ] = ACTIONS(6407), - [anon_sym_LPAREN] = ACTIONS(6407), - [anon_sym_RPAREN] = ACTIONS(6407), - [anon_sym_BSLASHpart] = ACTIONS(6405), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddpart] = ACTIONS(6405), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6407), - [anon_sym_BSLASHchapter] = ACTIONS(6405), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddchap] = ACTIONS(6405), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsection] = ACTIONS(6405), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddsec] = ACTIONS(6405), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubsection] = ACTIONS(6405), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6405), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHparagraph] = ACTIONS(6405), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6405), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6407), - [anon_sym_BSLASHitem] = ACTIONS(6405), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6407), - [anon_sym_LBRACE] = ACTIONS(6407), - [sym_word] = ACTIONS(6405), - [sym_placeholder] = ACTIONS(6407), - [anon_sym_PLUS] = ACTIONS(6407), - [anon_sym_DASH] = ACTIONS(6407), - [anon_sym_STAR] = ACTIONS(6407), - [anon_sym_SLASH] = ACTIONS(6407), - [anon_sym_LT] = ACTIONS(6405), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(6405), - [anon_sym_PIPE] = ACTIONS(6405), - [anon_sym_COLON] = ACTIONS(6405), - [anon_sym_SQUOTE] = ACTIONS(6405), - [anon_sym__] = ACTIONS(6407), - [anon_sym_CARET] = ACTIONS(6407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6407), - [anon_sym_DOLLAR] = ACTIONS(6405), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6407), - [anon_sym_BSLASHbegin] = ACTIONS(6405), - [anon_sym_BSLASHtitle] = ACTIONS(6405), - [anon_sym_BSLASHauthor] = ACTIONS(6405), - [anon_sym_BSLASHusepackage] = ACTIONS(6405), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6405), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6405), - [anon_sym_BSLASHinclude] = ACTIONS(6405), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6405), - [anon_sym_BSLASHinput] = ACTIONS(6405), - [anon_sym_BSLASHsubfile] = ACTIONS(6405), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6405), - [anon_sym_BSLASHbibliography] = ACTIONS(6405), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6405), - [anon_sym_BSLASHincludesvg] = ACTIONS(6405), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6405), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6405), - [anon_sym_BSLASHimport] = ACTIONS(6405), - [anon_sym_BSLASHsubimport] = ACTIONS(6405), - [anon_sym_BSLASHinputfrom] = ACTIONS(6405), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6405), - [anon_sym_BSLASHincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHcaption] = ACTIONS(6405), - [anon_sym_BSLASHcite] = ACTIONS(6405), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCite] = ACTIONS(6405), - [anon_sym_BSLASHnocite] = ACTIONS(6405), - [anon_sym_BSLASHcitet] = ACTIONS(6405), - [anon_sym_BSLASHcitep] = ACTIONS(6405), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteauthor] = ACTIONS(6405), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6405), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitetitle] = ACTIONS(6405), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteyear] = ACTIONS(6405), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitedate] = ACTIONS(6405), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteurl] = ACTIONS(6405), - [anon_sym_BSLASHfullcite] = ACTIONS(6405), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6405), - [anon_sym_BSLASHcitealt] = ACTIONS(6405), - [anon_sym_BSLASHcitealp] = ACTIONS(6405), - [anon_sym_BSLASHcitetext] = ACTIONS(6405), - [anon_sym_BSLASHparencite] = ACTIONS(6405), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHParencite] = ACTIONS(6405), - [anon_sym_BSLASHfootcite] = ACTIONS(6405), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6405), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6405), - [anon_sym_BSLASHtextcite] = ACTIONS(6405), - [anon_sym_BSLASHTextcite] = ACTIONS(6405), - [anon_sym_BSLASHsmartcite] = ACTIONS(6405), - [anon_sym_BSLASHSmartcite] = ACTIONS(6405), - [anon_sym_BSLASHsupercite] = ACTIONS(6405), - [anon_sym_BSLASHautocite] = ACTIONS(6405), - [anon_sym_BSLASHAutocite] = ACTIONS(6405), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHvolcite] = ACTIONS(6405), - [anon_sym_BSLASHVolcite] = ACTIONS(6405), - [anon_sym_BSLASHpvolcite] = ACTIONS(6405), - [anon_sym_BSLASHPvolcite] = ACTIONS(6405), - [anon_sym_BSLASHfvolcite] = ACTIONS(6405), - [anon_sym_BSLASHftvolcite] = ACTIONS(6405), - [anon_sym_BSLASHsvolcite] = ACTIONS(6405), - [anon_sym_BSLASHSvolcite] = ACTIONS(6405), - [anon_sym_BSLASHtvolcite] = ACTIONS(6405), - [anon_sym_BSLASHTvolcite] = ACTIONS(6405), - [anon_sym_BSLASHavolcite] = ACTIONS(6405), - [anon_sym_BSLASHAvolcite] = ACTIONS(6405), - [anon_sym_BSLASHnotecite] = ACTIONS(6405), - [anon_sym_BSLASHNotecite] = ACTIONS(6405), - [anon_sym_BSLASHpnotecite] = ACTIONS(6405), - [anon_sym_BSLASHPnotecite] = ACTIONS(6405), - [anon_sym_BSLASHfnotecite] = ACTIONS(6405), - [anon_sym_BSLASHlabel] = ACTIONS(6405), - [anon_sym_BSLASHref] = ACTIONS(6405), - [anon_sym_BSLASHeqref] = ACTIONS(6405), - [anon_sym_BSLASHvref] = ACTIONS(6405), - [anon_sym_BSLASHVref] = ACTIONS(6405), - [anon_sym_BSLASHautoref] = ACTIONS(6405), - [anon_sym_BSLASHpageref] = ACTIONS(6405), - [anon_sym_BSLASHcref] = ACTIONS(6405), - [anon_sym_BSLASHCref] = ACTIONS(6405), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnameCref] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHlabelcref] = ACTIONS(6405), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCrefrange] = ACTIONS(6405), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnewlabel] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6405), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6405), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6407), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHdef] = ACTIONS(6405), - [anon_sym_BSLASHlet] = ACTIONS(6405), - [anon_sym_BSLASHleft] = ACTIONS(6405), - [anon_sym_BSLASHbig] = ACTIONS(6405), - [anon_sym_BSLASHBig] = ACTIONS(6405), - [anon_sym_BSLASHbigg] = ACTIONS(6405), - [anon_sym_BSLASHBigg] = ACTIONS(6405), - [anon_sym_BSLASHbigl] = ACTIONS(6405), - [anon_sym_BSLASHBigl] = ACTIONS(6405), - [anon_sym_BSLASHbiggl] = ACTIONS(6405), - [anon_sym_BSLASHBiggl] = ACTIONS(6405), - [anon_sym_BSLASHright] = ACTIONS(6405), - [anon_sym_BSLASHbigr] = ACTIONS(6405), - [anon_sym_BSLASHBigr] = ACTIONS(6405), - [anon_sym_BSLASHbiggr] = ACTIONS(6405), - [anon_sym_BSLASHBiggr] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6405), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6405), - [anon_sym_BSLASHgls] = ACTIONS(6405), - [anon_sym_BSLASHGls] = ACTIONS(6405), - [anon_sym_BSLASHGLS] = ACTIONS(6405), - [anon_sym_BSLASHglspl] = ACTIONS(6405), - [anon_sym_BSLASHGlspl] = ACTIONS(6405), - [anon_sym_BSLASHGLSpl] = ACTIONS(6405), - [anon_sym_BSLASHglsdisp] = ACTIONS(6405), - [anon_sym_BSLASHglslink] = ACTIONS(6405), - [anon_sym_BSLASHglstext] = ACTIONS(6405), - [anon_sym_BSLASHGlstext] = ACTIONS(6405), - [anon_sym_BSLASHGLStext] = ACTIONS(6405), - [anon_sym_BSLASHglsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6405), - [anon_sym_BSLASHglsplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSplural] = ACTIONS(6405), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHglsname] = ACTIONS(6405), - [anon_sym_BSLASHGlsname] = ACTIONS(6405), - [anon_sym_BSLASHGLSname] = ACTIONS(6405), - [anon_sym_BSLASHglssymbol] = ACTIONS(6405), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6405), - [anon_sym_BSLASHglsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6405), - [anon_sym_BSLASHglsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6405), - [anon_sym_BSLASHglsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6405), - [anon_sym_BSLASHglsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6405), - [anon_sym_BSLASHglsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6405), - [anon_sym_BSLASHnewacronym] = ACTIONS(6405), - [anon_sym_BSLASHacrshort] = ACTIONS(6405), - [anon_sym_BSLASHAcrshort] = ACTIONS(6405), - [anon_sym_BSLASHACRshort] = ACTIONS(6405), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6405), - [anon_sym_BSLASHacrlong] = ACTIONS(6405), - [anon_sym_BSLASHAcrlong] = ACTIONS(6405), - [anon_sym_BSLASHACRlong] = ACTIONS(6405), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6405), - [anon_sym_BSLASHacrfull] = ACTIONS(6405), - [anon_sym_BSLASHAcrfull] = ACTIONS(6405), - [anon_sym_BSLASHACRfull] = ACTIONS(6405), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6405), - [anon_sym_BSLASHacs] = ACTIONS(6405), - [anon_sym_BSLASHAcs] = ACTIONS(6405), - [anon_sym_BSLASHacsp] = ACTIONS(6405), - [anon_sym_BSLASHAcsp] = ACTIONS(6405), - [anon_sym_BSLASHacl] = ACTIONS(6405), - [anon_sym_BSLASHAcl] = ACTIONS(6405), - [anon_sym_BSLASHaclp] = ACTIONS(6405), - [anon_sym_BSLASHAclp] = ACTIONS(6405), - [anon_sym_BSLASHacf] = ACTIONS(6405), - [anon_sym_BSLASHAcf] = ACTIONS(6405), - [anon_sym_BSLASHacfp] = ACTIONS(6405), - [anon_sym_BSLASHAcfp] = ACTIONS(6405), - [anon_sym_BSLASHac] = ACTIONS(6405), - [anon_sym_BSLASHAc] = ACTIONS(6405), - [anon_sym_BSLASHacp] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6405), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6405), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6405), - [anon_sym_BSLASHcolor] = ACTIONS(6405), - [anon_sym_BSLASHcolorbox] = ACTIONS(6405), - [anon_sym_BSLASHtextcolor] = ACTIONS(6405), - [anon_sym_BSLASHpagecolor] = ACTIONS(6405), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6405), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6405), - [anon_sym_BSLASHtext] = ACTIONS(6405), - [anon_sym_BSLASHintertext] = ACTIONS(6405), - [anon_sym_shortintertext] = ACTIONS(6405), - }, - [593] = { - [sym_command_name] = ACTIONS(6409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6409), - [anon_sym_LBRACK] = ACTIONS(6411), - [anon_sym_RBRACK] = ACTIONS(6411), - [anon_sym_COMMA] = ACTIONS(6411), - [anon_sym_EQ] = ACTIONS(6411), - [anon_sym_LPAREN] = ACTIONS(6411), - [anon_sym_RPAREN] = ACTIONS(6411), - [anon_sym_BSLASHpart] = ACTIONS(6409), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddpart] = ACTIONS(6409), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6411), - [anon_sym_BSLASHchapter] = ACTIONS(6409), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddchap] = ACTIONS(6409), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsection] = ACTIONS(6409), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddsec] = ACTIONS(6409), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubsection] = ACTIONS(6409), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6409), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHparagraph] = ACTIONS(6409), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6409), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6411), - [anon_sym_BSLASHitem] = ACTIONS(6409), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6411), - [anon_sym_LBRACE] = ACTIONS(6411), - [sym_word] = ACTIONS(6409), - [sym_placeholder] = ACTIONS(6411), - [anon_sym_PLUS] = ACTIONS(6411), - [anon_sym_DASH] = ACTIONS(6411), - [anon_sym_STAR] = ACTIONS(6411), - [anon_sym_SLASH] = ACTIONS(6411), - [anon_sym_LT] = ACTIONS(6409), - [anon_sym_GT] = ACTIONS(6409), - [anon_sym_BANG] = ACTIONS(6409), - [anon_sym_PIPE] = ACTIONS(6409), - [anon_sym_COLON] = ACTIONS(6409), - [anon_sym_SQUOTE] = ACTIONS(6409), - [anon_sym__] = ACTIONS(6411), - [anon_sym_CARET] = ACTIONS(6411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6411), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6411), - [anon_sym_DOLLAR] = ACTIONS(6409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6411), - [anon_sym_BSLASHbegin] = ACTIONS(6409), - [anon_sym_BSLASHtitle] = ACTIONS(6409), - [anon_sym_BSLASHauthor] = ACTIONS(6409), - [anon_sym_BSLASHusepackage] = ACTIONS(6409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6409), - [anon_sym_BSLASHinclude] = ACTIONS(6409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6409), - [anon_sym_BSLASHinput] = ACTIONS(6409), - [anon_sym_BSLASHsubfile] = ACTIONS(6409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6409), - [anon_sym_BSLASHbibliography] = ACTIONS(6409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6409), - [anon_sym_BSLASHincludesvg] = ACTIONS(6409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6409), - [anon_sym_BSLASHimport] = ACTIONS(6409), - [anon_sym_BSLASHsubimport] = ACTIONS(6409), - [anon_sym_BSLASHinputfrom] = ACTIONS(6409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6409), - [anon_sym_BSLASHincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHcaption] = ACTIONS(6409), - [anon_sym_BSLASHcite] = ACTIONS(6409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCite] = ACTIONS(6409), - [anon_sym_BSLASHnocite] = ACTIONS(6409), - [anon_sym_BSLASHcitet] = ACTIONS(6409), - [anon_sym_BSLASHcitep] = ACTIONS(6409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteauthor] = ACTIONS(6409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitetitle] = ACTIONS(6409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteyear] = ACTIONS(6409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitedate] = ACTIONS(6409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteurl] = ACTIONS(6409), - [anon_sym_BSLASHfullcite] = ACTIONS(6409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6409), - [anon_sym_BSLASHcitealt] = ACTIONS(6409), - [anon_sym_BSLASHcitealp] = ACTIONS(6409), - [anon_sym_BSLASHcitetext] = ACTIONS(6409), - [anon_sym_BSLASHparencite] = ACTIONS(6409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHParencite] = ACTIONS(6409), - [anon_sym_BSLASHfootcite] = ACTIONS(6409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6409), - [anon_sym_BSLASHtextcite] = ACTIONS(6409), - [anon_sym_BSLASHTextcite] = ACTIONS(6409), - [anon_sym_BSLASHsmartcite] = ACTIONS(6409), - [anon_sym_BSLASHSmartcite] = ACTIONS(6409), - [anon_sym_BSLASHsupercite] = ACTIONS(6409), - [anon_sym_BSLASHautocite] = ACTIONS(6409), - [anon_sym_BSLASHAutocite] = ACTIONS(6409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHvolcite] = ACTIONS(6409), - [anon_sym_BSLASHVolcite] = ACTIONS(6409), - [anon_sym_BSLASHpvolcite] = ACTIONS(6409), - [anon_sym_BSLASHPvolcite] = ACTIONS(6409), - [anon_sym_BSLASHfvolcite] = ACTIONS(6409), - [anon_sym_BSLASHftvolcite] = ACTIONS(6409), - [anon_sym_BSLASHsvolcite] = ACTIONS(6409), - [anon_sym_BSLASHSvolcite] = ACTIONS(6409), - [anon_sym_BSLASHtvolcite] = ACTIONS(6409), - [anon_sym_BSLASHTvolcite] = ACTIONS(6409), - [anon_sym_BSLASHavolcite] = ACTIONS(6409), - [anon_sym_BSLASHAvolcite] = ACTIONS(6409), - [anon_sym_BSLASHnotecite] = ACTIONS(6409), - [anon_sym_BSLASHNotecite] = ACTIONS(6409), - [anon_sym_BSLASHpnotecite] = ACTIONS(6409), - [anon_sym_BSLASHPnotecite] = ACTIONS(6409), - [anon_sym_BSLASHfnotecite] = ACTIONS(6409), - [anon_sym_BSLASHlabel] = ACTIONS(6409), - [anon_sym_BSLASHref] = ACTIONS(6409), - [anon_sym_BSLASHeqref] = ACTIONS(6409), - [anon_sym_BSLASHvref] = ACTIONS(6409), - [anon_sym_BSLASHVref] = ACTIONS(6409), - [anon_sym_BSLASHautoref] = ACTIONS(6409), - [anon_sym_BSLASHpageref] = ACTIONS(6409), - [anon_sym_BSLASHcref] = ACTIONS(6409), - [anon_sym_BSLASHCref] = ACTIONS(6409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnameCref] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHlabelcref] = ACTIONS(6409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCrefrange] = ACTIONS(6409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnewlabel] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6411), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHdef] = ACTIONS(6409), - [anon_sym_BSLASHlet] = ACTIONS(6409), - [anon_sym_BSLASHleft] = ACTIONS(6409), - [anon_sym_BSLASHbig] = ACTIONS(6409), - [anon_sym_BSLASHBig] = ACTIONS(6409), - [anon_sym_BSLASHbigg] = ACTIONS(6409), - [anon_sym_BSLASHBigg] = ACTIONS(6409), - [anon_sym_BSLASHbigl] = ACTIONS(6409), - [anon_sym_BSLASHBigl] = ACTIONS(6409), - [anon_sym_BSLASHbiggl] = ACTIONS(6409), - [anon_sym_BSLASHBiggl] = ACTIONS(6409), - [anon_sym_BSLASHright] = ACTIONS(6409), - [anon_sym_BSLASHbigr] = ACTIONS(6409), - [anon_sym_BSLASHBigr] = ACTIONS(6409), - [anon_sym_BSLASHbiggr] = ACTIONS(6409), - [anon_sym_BSLASHBiggr] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6409), - [anon_sym_BSLASHgls] = ACTIONS(6409), - [anon_sym_BSLASHGls] = ACTIONS(6409), - [anon_sym_BSLASHGLS] = ACTIONS(6409), - [anon_sym_BSLASHglspl] = ACTIONS(6409), - [anon_sym_BSLASHGlspl] = ACTIONS(6409), - [anon_sym_BSLASHGLSpl] = ACTIONS(6409), - [anon_sym_BSLASHglsdisp] = ACTIONS(6409), - [anon_sym_BSLASHglslink] = ACTIONS(6409), - [anon_sym_BSLASHglstext] = ACTIONS(6409), - [anon_sym_BSLASHGlstext] = ACTIONS(6409), - [anon_sym_BSLASHGLStext] = ACTIONS(6409), - [anon_sym_BSLASHglsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6409), - [anon_sym_BSLASHglsplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSplural] = ACTIONS(6409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHglsname] = ACTIONS(6409), - [anon_sym_BSLASHGlsname] = ACTIONS(6409), - [anon_sym_BSLASHGLSname] = ACTIONS(6409), - [anon_sym_BSLASHglssymbol] = ACTIONS(6409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6409), - [anon_sym_BSLASHglsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6409), - [anon_sym_BSLASHglsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6409), - [anon_sym_BSLASHglsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6409), - [anon_sym_BSLASHglsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6409), - [anon_sym_BSLASHglsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6409), - [anon_sym_BSLASHnewacronym] = ACTIONS(6409), - [anon_sym_BSLASHacrshort] = ACTIONS(6409), - [anon_sym_BSLASHAcrshort] = ACTIONS(6409), - [anon_sym_BSLASHACRshort] = ACTIONS(6409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6409), - [anon_sym_BSLASHacrlong] = ACTIONS(6409), - [anon_sym_BSLASHAcrlong] = ACTIONS(6409), - [anon_sym_BSLASHACRlong] = ACTIONS(6409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6409), - [anon_sym_BSLASHacrfull] = ACTIONS(6409), - [anon_sym_BSLASHAcrfull] = ACTIONS(6409), - [anon_sym_BSLASHACRfull] = ACTIONS(6409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6409), - [anon_sym_BSLASHacs] = ACTIONS(6409), - [anon_sym_BSLASHAcs] = ACTIONS(6409), - [anon_sym_BSLASHacsp] = ACTIONS(6409), - [anon_sym_BSLASHAcsp] = ACTIONS(6409), - [anon_sym_BSLASHacl] = ACTIONS(6409), - [anon_sym_BSLASHAcl] = ACTIONS(6409), - [anon_sym_BSLASHaclp] = ACTIONS(6409), - [anon_sym_BSLASHAclp] = ACTIONS(6409), - [anon_sym_BSLASHacf] = ACTIONS(6409), - [anon_sym_BSLASHAcf] = ACTIONS(6409), - [anon_sym_BSLASHacfp] = ACTIONS(6409), - [anon_sym_BSLASHAcfp] = ACTIONS(6409), - [anon_sym_BSLASHac] = ACTIONS(6409), - [anon_sym_BSLASHAc] = ACTIONS(6409), - [anon_sym_BSLASHacp] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6409), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6409), - [anon_sym_BSLASHcolor] = ACTIONS(6409), - [anon_sym_BSLASHcolorbox] = ACTIONS(6409), - [anon_sym_BSLASHtextcolor] = ACTIONS(6409), - [anon_sym_BSLASHpagecolor] = ACTIONS(6409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6409), - [anon_sym_BSLASHtext] = ACTIONS(6409), - [anon_sym_BSLASHintertext] = ACTIONS(6409), - [anon_sym_shortintertext] = ACTIONS(6409), - }, - [594] = { - [sym_command_name] = ACTIONS(6413), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6413), - [anon_sym_LBRACK] = ACTIONS(6415), - [anon_sym_RBRACK] = ACTIONS(6415), - [anon_sym_COMMA] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(6415), - [anon_sym_LPAREN] = ACTIONS(6415), - [anon_sym_RPAREN] = ACTIONS(6415), - [anon_sym_BSLASHpart] = ACTIONS(6413), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddpart] = ACTIONS(6413), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6415), - [anon_sym_BSLASHchapter] = ACTIONS(6413), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddchap] = ACTIONS(6413), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsection] = ACTIONS(6413), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddsec] = ACTIONS(6413), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubsection] = ACTIONS(6413), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6413), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHparagraph] = ACTIONS(6413), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6413), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6415), - [anon_sym_BSLASHitem] = ACTIONS(6413), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6415), - [anon_sym_LBRACE] = ACTIONS(6415), - [sym_word] = ACTIONS(6413), - [sym_placeholder] = ACTIONS(6415), - [anon_sym_PLUS] = ACTIONS(6415), - [anon_sym_DASH] = ACTIONS(6415), - [anon_sym_STAR] = ACTIONS(6415), - [anon_sym_SLASH] = ACTIONS(6415), - [anon_sym_LT] = ACTIONS(6413), - [anon_sym_GT] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(6413), - [anon_sym_PIPE] = ACTIONS(6413), - [anon_sym_COLON] = ACTIONS(6413), - [anon_sym_SQUOTE] = ACTIONS(6413), - [anon_sym__] = ACTIONS(6415), - [anon_sym_CARET] = ACTIONS(6415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6415), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6415), - [anon_sym_DOLLAR] = ACTIONS(6413), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6415), - [anon_sym_BSLASHbegin] = ACTIONS(6413), - [anon_sym_BSLASHtitle] = ACTIONS(6413), - [anon_sym_BSLASHauthor] = ACTIONS(6413), - [anon_sym_BSLASHusepackage] = ACTIONS(6413), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6413), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6413), - [anon_sym_BSLASHinclude] = ACTIONS(6413), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6413), - [anon_sym_BSLASHinput] = ACTIONS(6413), - [anon_sym_BSLASHsubfile] = ACTIONS(6413), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6413), - [anon_sym_BSLASHbibliography] = ACTIONS(6413), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6413), - [anon_sym_BSLASHincludesvg] = ACTIONS(6413), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6413), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6413), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6413), - [anon_sym_BSLASHimport] = ACTIONS(6413), - [anon_sym_BSLASHsubimport] = ACTIONS(6413), - [anon_sym_BSLASHinputfrom] = ACTIONS(6413), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6413), - [anon_sym_BSLASHincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHcaption] = ACTIONS(6413), - [anon_sym_BSLASHcite] = ACTIONS(6413), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCite] = ACTIONS(6413), - [anon_sym_BSLASHnocite] = ACTIONS(6413), - [anon_sym_BSLASHcitet] = ACTIONS(6413), - [anon_sym_BSLASHcitep] = ACTIONS(6413), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteauthor] = ACTIONS(6413), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6413), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitetitle] = ACTIONS(6413), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteyear] = ACTIONS(6413), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitedate] = ACTIONS(6413), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteurl] = ACTIONS(6413), - [anon_sym_BSLASHfullcite] = ACTIONS(6413), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6413), - [anon_sym_BSLASHcitealt] = ACTIONS(6413), - [anon_sym_BSLASHcitealp] = ACTIONS(6413), - [anon_sym_BSLASHcitetext] = ACTIONS(6413), - [anon_sym_BSLASHparencite] = ACTIONS(6413), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHParencite] = ACTIONS(6413), - [anon_sym_BSLASHfootcite] = ACTIONS(6413), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6413), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6413), - [anon_sym_BSLASHtextcite] = ACTIONS(6413), - [anon_sym_BSLASHTextcite] = ACTIONS(6413), - [anon_sym_BSLASHsmartcite] = ACTIONS(6413), - [anon_sym_BSLASHSmartcite] = ACTIONS(6413), - [anon_sym_BSLASHsupercite] = ACTIONS(6413), - [anon_sym_BSLASHautocite] = ACTIONS(6413), - [anon_sym_BSLASHAutocite] = ACTIONS(6413), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHvolcite] = ACTIONS(6413), - [anon_sym_BSLASHVolcite] = ACTIONS(6413), - [anon_sym_BSLASHpvolcite] = ACTIONS(6413), - [anon_sym_BSLASHPvolcite] = ACTIONS(6413), - [anon_sym_BSLASHfvolcite] = ACTIONS(6413), - [anon_sym_BSLASHftvolcite] = ACTIONS(6413), - [anon_sym_BSLASHsvolcite] = ACTIONS(6413), - [anon_sym_BSLASHSvolcite] = ACTIONS(6413), - [anon_sym_BSLASHtvolcite] = ACTIONS(6413), - [anon_sym_BSLASHTvolcite] = ACTIONS(6413), - [anon_sym_BSLASHavolcite] = ACTIONS(6413), - [anon_sym_BSLASHAvolcite] = ACTIONS(6413), - [anon_sym_BSLASHnotecite] = ACTIONS(6413), - [anon_sym_BSLASHNotecite] = ACTIONS(6413), - [anon_sym_BSLASHpnotecite] = ACTIONS(6413), - [anon_sym_BSLASHPnotecite] = ACTIONS(6413), - [anon_sym_BSLASHfnotecite] = ACTIONS(6413), - [anon_sym_BSLASHlabel] = ACTIONS(6413), - [anon_sym_BSLASHref] = ACTIONS(6413), - [anon_sym_BSLASHeqref] = ACTIONS(6413), - [anon_sym_BSLASHvref] = ACTIONS(6413), - [anon_sym_BSLASHVref] = ACTIONS(6413), - [anon_sym_BSLASHautoref] = ACTIONS(6413), - [anon_sym_BSLASHpageref] = ACTIONS(6413), - [anon_sym_BSLASHcref] = ACTIONS(6413), - [anon_sym_BSLASHCref] = ACTIONS(6413), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnameCref] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHlabelcref] = ACTIONS(6413), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCrefrange] = ACTIONS(6413), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnewlabel] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6413), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6413), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6415), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHdef] = ACTIONS(6413), - [anon_sym_BSLASHlet] = ACTIONS(6413), - [anon_sym_BSLASHleft] = ACTIONS(6413), - [anon_sym_BSLASHbig] = ACTIONS(6413), - [anon_sym_BSLASHBig] = ACTIONS(6413), - [anon_sym_BSLASHbigg] = ACTIONS(6413), - [anon_sym_BSLASHBigg] = ACTIONS(6413), - [anon_sym_BSLASHbigl] = ACTIONS(6413), - [anon_sym_BSLASHBigl] = ACTIONS(6413), - [anon_sym_BSLASHbiggl] = ACTIONS(6413), - [anon_sym_BSLASHBiggl] = ACTIONS(6413), - [anon_sym_BSLASHright] = ACTIONS(6413), - [anon_sym_BSLASHbigr] = ACTIONS(6413), - [anon_sym_BSLASHBigr] = ACTIONS(6413), - [anon_sym_BSLASHbiggr] = ACTIONS(6413), - [anon_sym_BSLASHBiggr] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6413), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6413), - [anon_sym_BSLASHgls] = ACTIONS(6413), - [anon_sym_BSLASHGls] = ACTIONS(6413), - [anon_sym_BSLASHGLS] = ACTIONS(6413), - [anon_sym_BSLASHglspl] = ACTIONS(6413), - [anon_sym_BSLASHGlspl] = ACTIONS(6413), - [anon_sym_BSLASHGLSpl] = ACTIONS(6413), - [anon_sym_BSLASHglsdisp] = ACTIONS(6413), - [anon_sym_BSLASHglslink] = ACTIONS(6413), - [anon_sym_BSLASHglstext] = ACTIONS(6413), - [anon_sym_BSLASHGlstext] = ACTIONS(6413), - [anon_sym_BSLASHGLStext] = ACTIONS(6413), - [anon_sym_BSLASHglsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6413), - [anon_sym_BSLASHglsplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSplural] = ACTIONS(6413), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHglsname] = ACTIONS(6413), - [anon_sym_BSLASHGlsname] = ACTIONS(6413), - [anon_sym_BSLASHGLSname] = ACTIONS(6413), - [anon_sym_BSLASHglssymbol] = ACTIONS(6413), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6413), - [anon_sym_BSLASHglsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6413), - [anon_sym_BSLASHglsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6413), - [anon_sym_BSLASHglsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6413), - [anon_sym_BSLASHglsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6413), - [anon_sym_BSLASHglsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6413), - [anon_sym_BSLASHnewacronym] = ACTIONS(6413), - [anon_sym_BSLASHacrshort] = ACTIONS(6413), - [anon_sym_BSLASHAcrshort] = ACTIONS(6413), - [anon_sym_BSLASHACRshort] = ACTIONS(6413), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6413), - [anon_sym_BSLASHacrlong] = ACTIONS(6413), - [anon_sym_BSLASHAcrlong] = ACTIONS(6413), - [anon_sym_BSLASHACRlong] = ACTIONS(6413), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6413), - [anon_sym_BSLASHacrfull] = ACTIONS(6413), - [anon_sym_BSLASHAcrfull] = ACTIONS(6413), - [anon_sym_BSLASHACRfull] = ACTIONS(6413), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6413), - [anon_sym_BSLASHacs] = ACTIONS(6413), - [anon_sym_BSLASHAcs] = ACTIONS(6413), - [anon_sym_BSLASHacsp] = ACTIONS(6413), - [anon_sym_BSLASHAcsp] = ACTIONS(6413), - [anon_sym_BSLASHacl] = ACTIONS(6413), - [anon_sym_BSLASHAcl] = ACTIONS(6413), - [anon_sym_BSLASHaclp] = ACTIONS(6413), - [anon_sym_BSLASHAclp] = ACTIONS(6413), - [anon_sym_BSLASHacf] = ACTIONS(6413), - [anon_sym_BSLASHAcf] = ACTIONS(6413), - [anon_sym_BSLASHacfp] = ACTIONS(6413), - [anon_sym_BSLASHAcfp] = ACTIONS(6413), - [anon_sym_BSLASHac] = ACTIONS(6413), - [anon_sym_BSLASHAc] = ACTIONS(6413), - [anon_sym_BSLASHacp] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6413), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6413), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6413), - [anon_sym_BSLASHcolor] = ACTIONS(6413), - [anon_sym_BSLASHcolorbox] = ACTIONS(6413), - [anon_sym_BSLASHtextcolor] = ACTIONS(6413), - [anon_sym_BSLASHpagecolor] = ACTIONS(6413), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6413), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6413), - [anon_sym_BSLASHtext] = ACTIONS(6413), - [anon_sym_BSLASHintertext] = ACTIONS(6413), - [anon_sym_shortintertext] = ACTIONS(6413), - }, - [595] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(5862), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(5862), - [anon_sym_RBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [596] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(5862), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [anon_sym_RBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [597] = { - [sym_command_name] = ACTIONS(6417), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6417), - [anon_sym_LBRACK] = ACTIONS(6419), - [anon_sym_RBRACK] = ACTIONS(6419), - [anon_sym_COMMA] = ACTIONS(6419), - [anon_sym_EQ] = ACTIONS(6419), - [anon_sym_LPAREN] = ACTIONS(6419), - [anon_sym_RPAREN] = ACTIONS(6419), - [anon_sym_BSLASHpart] = ACTIONS(6417), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddpart] = ACTIONS(6417), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6419), - [anon_sym_BSLASHchapter] = ACTIONS(6417), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddchap] = ACTIONS(6417), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsection] = ACTIONS(6417), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddsec] = ACTIONS(6417), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubsection] = ACTIONS(6417), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6417), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHparagraph] = ACTIONS(6417), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6417), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6419), - [anon_sym_BSLASHitem] = ACTIONS(6417), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6419), - [anon_sym_LBRACE] = ACTIONS(6419), - [sym_word] = ACTIONS(6417), - [sym_placeholder] = ACTIONS(6419), - [anon_sym_PLUS] = ACTIONS(6419), - [anon_sym_DASH] = ACTIONS(6419), - [anon_sym_STAR] = ACTIONS(6419), - [anon_sym_SLASH] = ACTIONS(6419), - [anon_sym_LT] = ACTIONS(6417), - [anon_sym_GT] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(6417), - [anon_sym_PIPE] = ACTIONS(6417), - [anon_sym_COLON] = ACTIONS(6417), - [anon_sym_SQUOTE] = ACTIONS(6417), - [anon_sym__] = ACTIONS(6419), - [anon_sym_CARET] = ACTIONS(6419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6419), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6419), - [anon_sym_DOLLAR] = ACTIONS(6417), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6419), - [anon_sym_BSLASHbegin] = ACTIONS(6417), - [anon_sym_BSLASHtitle] = ACTIONS(6417), - [anon_sym_BSLASHauthor] = ACTIONS(6417), - [anon_sym_BSLASHusepackage] = ACTIONS(6417), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6417), - [anon_sym_BSLASHinclude] = ACTIONS(6417), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6417), - [anon_sym_BSLASHinput] = ACTIONS(6417), - [anon_sym_BSLASHsubfile] = ACTIONS(6417), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6417), - [anon_sym_BSLASHbibliography] = ACTIONS(6417), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6417), - [anon_sym_BSLASHincludesvg] = ACTIONS(6417), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6417), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6417), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6417), - [anon_sym_BSLASHimport] = ACTIONS(6417), - [anon_sym_BSLASHsubimport] = ACTIONS(6417), - [anon_sym_BSLASHinputfrom] = ACTIONS(6417), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6417), - [anon_sym_BSLASHincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHcaption] = ACTIONS(6417), - [anon_sym_BSLASHcite] = ACTIONS(6417), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCite] = ACTIONS(6417), - [anon_sym_BSLASHnocite] = ACTIONS(6417), - [anon_sym_BSLASHcitet] = ACTIONS(6417), - [anon_sym_BSLASHcitep] = ACTIONS(6417), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteauthor] = ACTIONS(6417), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6417), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitetitle] = ACTIONS(6417), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteyear] = ACTIONS(6417), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitedate] = ACTIONS(6417), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteurl] = ACTIONS(6417), - [anon_sym_BSLASHfullcite] = ACTIONS(6417), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6417), - [anon_sym_BSLASHcitealt] = ACTIONS(6417), - [anon_sym_BSLASHcitealp] = ACTIONS(6417), - [anon_sym_BSLASHcitetext] = ACTIONS(6417), - [anon_sym_BSLASHparencite] = ACTIONS(6417), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHParencite] = ACTIONS(6417), - [anon_sym_BSLASHfootcite] = ACTIONS(6417), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6417), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6417), - [anon_sym_BSLASHtextcite] = ACTIONS(6417), - [anon_sym_BSLASHTextcite] = ACTIONS(6417), - [anon_sym_BSLASHsmartcite] = ACTIONS(6417), - [anon_sym_BSLASHSmartcite] = ACTIONS(6417), - [anon_sym_BSLASHsupercite] = ACTIONS(6417), - [anon_sym_BSLASHautocite] = ACTIONS(6417), - [anon_sym_BSLASHAutocite] = ACTIONS(6417), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHvolcite] = ACTIONS(6417), - [anon_sym_BSLASHVolcite] = ACTIONS(6417), - [anon_sym_BSLASHpvolcite] = ACTIONS(6417), - [anon_sym_BSLASHPvolcite] = ACTIONS(6417), - [anon_sym_BSLASHfvolcite] = ACTIONS(6417), - [anon_sym_BSLASHftvolcite] = ACTIONS(6417), - [anon_sym_BSLASHsvolcite] = ACTIONS(6417), - [anon_sym_BSLASHSvolcite] = ACTIONS(6417), - [anon_sym_BSLASHtvolcite] = ACTIONS(6417), - [anon_sym_BSLASHTvolcite] = ACTIONS(6417), - [anon_sym_BSLASHavolcite] = ACTIONS(6417), - [anon_sym_BSLASHAvolcite] = ACTIONS(6417), - [anon_sym_BSLASHnotecite] = ACTIONS(6417), - [anon_sym_BSLASHNotecite] = ACTIONS(6417), - [anon_sym_BSLASHpnotecite] = ACTIONS(6417), - [anon_sym_BSLASHPnotecite] = ACTIONS(6417), - [anon_sym_BSLASHfnotecite] = ACTIONS(6417), - [anon_sym_BSLASHlabel] = ACTIONS(6417), - [anon_sym_BSLASHref] = ACTIONS(6417), - [anon_sym_BSLASHeqref] = ACTIONS(6417), - [anon_sym_BSLASHvref] = ACTIONS(6417), - [anon_sym_BSLASHVref] = ACTIONS(6417), - [anon_sym_BSLASHautoref] = ACTIONS(6417), - [anon_sym_BSLASHpageref] = ACTIONS(6417), - [anon_sym_BSLASHcref] = ACTIONS(6417), - [anon_sym_BSLASHCref] = ACTIONS(6417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnameCref] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHlabelcref] = ACTIONS(6417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCrefrange] = ACTIONS(6417), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnewlabel] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6419), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHdef] = ACTIONS(6417), - [anon_sym_BSLASHlet] = ACTIONS(6417), - [anon_sym_BSLASHleft] = ACTIONS(6417), - [anon_sym_BSLASHbig] = ACTIONS(6417), - [anon_sym_BSLASHBig] = ACTIONS(6417), - [anon_sym_BSLASHbigg] = ACTIONS(6417), - [anon_sym_BSLASHBigg] = ACTIONS(6417), - [anon_sym_BSLASHbigl] = ACTIONS(6417), - [anon_sym_BSLASHBigl] = ACTIONS(6417), - [anon_sym_BSLASHbiggl] = ACTIONS(6417), - [anon_sym_BSLASHBiggl] = ACTIONS(6417), - [anon_sym_BSLASHright] = ACTIONS(6417), - [anon_sym_BSLASHbigr] = ACTIONS(6417), - [anon_sym_BSLASHBigr] = ACTIONS(6417), - [anon_sym_BSLASHbiggr] = ACTIONS(6417), - [anon_sym_BSLASHBiggr] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6417), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6417), - [anon_sym_BSLASHgls] = ACTIONS(6417), - [anon_sym_BSLASHGls] = ACTIONS(6417), - [anon_sym_BSLASHGLS] = ACTIONS(6417), - [anon_sym_BSLASHglspl] = ACTIONS(6417), - [anon_sym_BSLASHGlspl] = ACTIONS(6417), - [anon_sym_BSLASHGLSpl] = ACTIONS(6417), - [anon_sym_BSLASHglsdisp] = ACTIONS(6417), - [anon_sym_BSLASHglslink] = ACTIONS(6417), - [anon_sym_BSLASHglstext] = ACTIONS(6417), - [anon_sym_BSLASHGlstext] = ACTIONS(6417), - [anon_sym_BSLASHGLStext] = ACTIONS(6417), - [anon_sym_BSLASHglsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6417), - [anon_sym_BSLASHglsplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSplural] = ACTIONS(6417), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHglsname] = ACTIONS(6417), - [anon_sym_BSLASHGlsname] = ACTIONS(6417), - [anon_sym_BSLASHGLSname] = ACTIONS(6417), - [anon_sym_BSLASHglssymbol] = ACTIONS(6417), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6417), - [anon_sym_BSLASHglsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6417), - [anon_sym_BSLASHglsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6417), - [anon_sym_BSLASHglsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6417), - [anon_sym_BSLASHglsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6417), - [anon_sym_BSLASHglsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6417), - [anon_sym_BSLASHnewacronym] = ACTIONS(6417), - [anon_sym_BSLASHacrshort] = ACTIONS(6417), - [anon_sym_BSLASHAcrshort] = ACTIONS(6417), - [anon_sym_BSLASHACRshort] = ACTIONS(6417), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6417), - [anon_sym_BSLASHacrlong] = ACTIONS(6417), - [anon_sym_BSLASHAcrlong] = ACTIONS(6417), - [anon_sym_BSLASHACRlong] = ACTIONS(6417), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6417), - [anon_sym_BSLASHacrfull] = ACTIONS(6417), - [anon_sym_BSLASHAcrfull] = ACTIONS(6417), - [anon_sym_BSLASHACRfull] = ACTIONS(6417), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6417), - [anon_sym_BSLASHacs] = ACTIONS(6417), - [anon_sym_BSLASHAcs] = ACTIONS(6417), - [anon_sym_BSLASHacsp] = ACTIONS(6417), - [anon_sym_BSLASHAcsp] = ACTIONS(6417), - [anon_sym_BSLASHacl] = ACTIONS(6417), - [anon_sym_BSLASHAcl] = ACTIONS(6417), - [anon_sym_BSLASHaclp] = ACTIONS(6417), - [anon_sym_BSLASHAclp] = ACTIONS(6417), - [anon_sym_BSLASHacf] = ACTIONS(6417), - [anon_sym_BSLASHAcf] = ACTIONS(6417), - [anon_sym_BSLASHacfp] = ACTIONS(6417), - [anon_sym_BSLASHAcfp] = ACTIONS(6417), - [anon_sym_BSLASHac] = ACTIONS(6417), - [anon_sym_BSLASHAc] = ACTIONS(6417), - [anon_sym_BSLASHacp] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6417), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6417), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6417), - [anon_sym_BSLASHcolor] = ACTIONS(6417), - [anon_sym_BSLASHcolorbox] = ACTIONS(6417), - [anon_sym_BSLASHtextcolor] = ACTIONS(6417), - [anon_sym_BSLASHpagecolor] = ACTIONS(6417), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6417), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6417), - [anon_sym_BSLASHtext] = ACTIONS(6417), - [anon_sym_BSLASHintertext] = ACTIONS(6417), - [anon_sym_shortintertext] = ACTIONS(6417), - }, - [598] = { - [sym_command_name] = ACTIONS(6421), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6421), - [anon_sym_LBRACK] = ACTIONS(6423), - [anon_sym_RBRACK] = ACTIONS(6423), - [anon_sym_COMMA] = ACTIONS(6423), - [anon_sym_EQ] = ACTIONS(6423), - [anon_sym_LPAREN] = ACTIONS(6423), - [anon_sym_RPAREN] = ACTIONS(6423), - [anon_sym_BSLASHpart] = ACTIONS(6421), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddpart] = ACTIONS(6421), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6423), - [anon_sym_BSLASHchapter] = ACTIONS(6421), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddchap] = ACTIONS(6421), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsection] = ACTIONS(6421), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddsec] = ACTIONS(6421), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubsection] = ACTIONS(6421), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6421), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHparagraph] = ACTIONS(6421), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6421), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6423), - [anon_sym_BSLASHitem] = ACTIONS(6421), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6423), - [anon_sym_LBRACE] = ACTIONS(6423), - [sym_word] = ACTIONS(6421), - [sym_placeholder] = ACTIONS(6423), - [anon_sym_PLUS] = ACTIONS(6423), - [anon_sym_DASH] = ACTIONS(6423), - [anon_sym_STAR] = ACTIONS(6423), - [anon_sym_SLASH] = ACTIONS(6423), - [anon_sym_LT] = ACTIONS(6421), - [anon_sym_GT] = ACTIONS(6421), - [anon_sym_BANG] = ACTIONS(6421), - [anon_sym_PIPE] = ACTIONS(6421), - [anon_sym_COLON] = ACTIONS(6421), - [anon_sym_SQUOTE] = ACTIONS(6421), - [anon_sym__] = ACTIONS(6423), - [anon_sym_CARET] = ACTIONS(6423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6423), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6423), - [anon_sym_DOLLAR] = ACTIONS(6421), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6423), - [anon_sym_BSLASHbegin] = ACTIONS(6421), - [anon_sym_BSLASHtitle] = ACTIONS(6421), - [anon_sym_BSLASHauthor] = ACTIONS(6421), - [anon_sym_BSLASHusepackage] = ACTIONS(6421), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6421), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6421), - [anon_sym_BSLASHinclude] = ACTIONS(6421), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6421), - [anon_sym_BSLASHinput] = ACTIONS(6421), - [anon_sym_BSLASHsubfile] = ACTIONS(6421), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6421), - [anon_sym_BSLASHbibliography] = ACTIONS(6421), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6421), - [anon_sym_BSLASHincludesvg] = ACTIONS(6421), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6421), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6421), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6421), - [anon_sym_BSLASHimport] = ACTIONS(6421), - [anon_sym_BSLASHsubimport] = ACTIONS(6421), - [anon_sym_BSLASHinputfrom] = ACTIONS(6421), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6421), - [anon_sym_BSLASHincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHcaption] = ACTIONS(6421), - [anon_sym_BSLASHcite] = ACTIONS(6421), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCite] = ACTIONS(6421), - [anon_sym_BSLASHnocite] = ACTIONS(6421), - [anon_sym_BSLASHcitet] = ACTIONS(6421), - [anon_sym_BSLASHcitep] = ACTIONS(6421), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteauthor] = ACTIONS(6421), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6421), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitetitle] = ACTIONS(6421), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteyear] = ACTIONS(6421), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitedate] = ACTIONS(6421), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteurl] = ACTIONS(6421), - [anon_sym_BSLASHfullcite] = ACTIONS(6421), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6421), - [anon_sym_BSLASHcitealt] = ACTIONS(6421), - [anon_sym_BSLASHcitealp] = ACTIONS(6421), - [anon_sym_BSLASHcitetext] = ACTIONS(6421), - [anon_sym_BSLASHparencite] = ACTIONS(6421), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHParencite] = ACTIONS(6421), - [anon_sym_BSLASHfootcite] = ACTIONS(6421), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6421), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6421), - [anon_sym_BSLASHtextcite] = ACTIONS(6421), - [anon_sym_BSLASHTextcite] = ACTIONS(6421), - [anon_sym_BSLASHsmartcite] = ACTIONS(6421), - [anon_sym_BSLASHSmartcite] = ACTIONS(6421), - [anon_sym_BSLASHsupercite] = ACTIONS(6421), - [anon_sym_BSLASHautocite] = ACTIONS(6421), - [anon_sym_BSLASHAutocite] = ACTIONS(6421), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHvolcite] = ACTIONS(6421), - [anon_sym_BSLASHVolcite] = ACTIONS(6421), - [anon_sym_BSLASHpvolcite] = ACTIONS(6421), - [anon_sym_BSLASHPvolcite] = ACTIONS(6421), - [anon_sym_BSLASHfvolcite] = ACTIONS(6421), - [anon_sym_BSLASHftvolcite] = ACTIONS(6421), - [anon_sym_BSLASHsvolcite] = ACTIONS(6421), - [anon_sym_BSLASHSvolcite] = ACTIONS(6421), - [anon_sym_BSLASHtvolcite] = ACTIONS(6421), - [anon_sym_BSLASHTvolcite] = ACTIONS(6421), - [anon_sym_BSLASHavolcite] = ACTIONS(6421), - [anon_sym_BSLASHAvolcite] = ACTIONS(6421), - [anon_sym_BSLASHnotecite] = ACTIONS(6421), - [anon_sym_BSLASHNotecite] = ACTIONS(6421), - [anon_sym_BSLASHpnotecite] = ACTIONS(6421), - [anon_sym_BSLASHPnotecite] = ACTIONS(6421), - [anon_sym_BSLASHfnotecite] = ACTIONS(6421), - [anon_sym_BSLASHlabel] = ACTIONS(6421), - [anon_sym_BSLASHref] = ACTIONS(6421), - [anon_sym_BSLASHeqref] = ACTIONS(6421), - [anon_sym_BSLASHvref] = ACTIONS(6421), - [anon_sym_BSLASHVref] = ACTIONS(6421), - [anon_sym_BSLASHautoref] = ACTIONS(6421), - [anon_sym_BSLASHpageref] = ACTIONS(6421), - [anon_sym_BSLASHcref] = ACTIONS(6421), - [anon_sym_BSLASHCref] = ACTIONS(6421), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnameCref] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHlabelcref] = ACTIONS(6421), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCrefrange] = ACTIONS(6421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnewlabel] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6421), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6421), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6423), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHdef] = ACTIONS(6421), - [anon_sym_BSLASHlet] = ACTIONS(6421), - [anon_sym_BSLASHleft] = ACTIONS(6421), - [anon_sym_BSLASHbig] = ACTIONS(6421), - [anon_sym_BSLASHBig] = ACTIONS(6421), - [anon_sym_BSLASHbigg] = ACTIONS(6421), - [anon_sym_BSLASHBigg] = ACTIONS(6421), - [anon_sym_BSLASHbigl] = ACTIONS(6421), - [anon_sym_BSLASHBigl] = ACTIONS(6421), - [anon_sym_BSLASHbiggl] = ACTIONS(6421), - [anon_sym_BSLASHBiggl] = ACTIONS(6421), - [anon_sym_BSLASHright] = ACTIONS(6421), - [anon_sym_BSLASHbigr] = ACTIONS(6421), - [anon_sym_BSLASHBigr] = ACTIONS(6421), - [anon_sym_BSLASHbiggr] = ACTIONS(6421), - [anon_sym_BSLASHBiggr] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6421), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6421), - [anon_sym_BSLASHgls] = ACTIONS(6421), - [anon_sym_BSLASHGls] = ACTIONS(6421), - [anon_sym_BSLASHGLS] = ACTIONS(6421), - [anon_sym_BSLASHglspl] = ACTIONS(6421), - [anon_sym_BSLASHGlspl] = ACTIONS(6421), - [anon_sym_BSLASHGLSpl] = ACTIONS(6421), - [anon_sym_BSLASHglsdisp] = ACTIONS(6421), - [anon_sym_BSLASHglslink] = ACTIONS(6421), - [anon_sym_BSLASHglstext] = ACTIONS(6421), - [anon_sym_BSLASHGlstext] = ACTIONS(6421), - [anon_sym_BSLASHGLStext] = ACTIONS(6421), - [anon_sym_BSLASHglsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6421), - [anon_sym_BSLASHglsplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSplural] = ACTIONS(6421), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHglsname] = ACTIONS(6421), - [anon_sym_BSLASHGlsname] = ACTIONS(6421), - [anon_sym_BSLASHGLSname] = ACTIONS(6421), - [anon_sym_BSLASHglssymbol] = ACTIONS(6421), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6421), - [anon_sym_BSLASHglsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6421), - [anon_sym_BSLASHglsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6421), - [anon_sym_BSLASHglsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6421), - [anon_sym_BSLASHglsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6421), - [anon_sym_BSLASHglsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6421), - [anon_sym_BSLASHnewacronym] = ACTIONS(6421), - [anon_sym_BSLASHacrshort] = ACTIONS(6421), - [anon_sym_BSLASHAcrshort] = ACTIONS(6421), - [anon_sym_BSLASHACRshort] = ACTIONS(6421), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6421), - [anon_sym_BSLASHacrlong] = ACTIONS(6421), - [anon_sym_BSLASHAcrlong] = ACTIONS(6421), - [anon_sym_BSLASHACRlong] = ACTIONS(6421), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6421), - [anon_sym_BSLASHacrfull] = ACTIONS(6421), - [anon_sym_BSLASHAcrfull] = ACTIONS(6421), - [anon_sym_BSLASHACRfull] = ACTIONS(6421), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6421), - [anon_sym_BSLASHacs] = ACTIONS(6421), - [anon_sym_BSLASHAcs] = ACTIONS(6421), - [anon_sym_BSLASHacsp] = ACTIONS(6421), - [anon_sym_BSLASHAcsp] = ACTIONS(6421), - [anon_sym_BSLASHacl] = ACTIONS(6421), - [anon_sym_BSLASHAcl] = ACTIONS(6421), - [anon_sym_BSLASHaclp] = ACTIONS(6421), - [anon_sym_BSLASHAclp] = ACTIONS(6421), - [anon_sym_BSLASHacf] = ACTIONS(6421), - [anon_sym_BSLASHAcf] = ACTIONS(6421), - [anon_sym_BSLASHacfp] = ACTIONS(6421), - [anon_sym_BSLASHAcfp] = ACTIONS(6421), - [anon_sym_BSLASHac] = ACTIONS(6421), - [anon_sym_BSLASHAc] = ACTIONS(6421), - [anon_sym_BSLASHacp] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6421), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6421), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6421), - [anon_sym_BSLASHcolor] = ACTIONS(6421), - [anon_sym_BSLASHcolorbox] = ACTIONS(6421), - [anon_sym_BSLASHtextcolor] = ACTIONS(6421), - [anon_sym_BSLASHpagecolor] = ACTIONS(6421), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6421), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6421), - [anon_sym_BSLASHtext] = ACTIONS(6421), - [anon_sym_BSLASHintertext] = ACTIONS(6421), - [anon_sym_shortintertext] = ACTIONS(6421), - }, - [599] = { - [sym_command_name] = ACTIONS(6425), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6425), - [anon_sym_LBRACK] = ACTIONS(6427), - [anon_sym_RBRACK] = ACTIONS(6427), - [anon_sym_COMMA] = ACTIONS(6427), - [anon_sym_EQ] = ACTIONS(6427), - [anon_sym_LPAREN] = ACTIONS(6427), - [anon_sym_RPAREN] = ACTIONS(6427), - [anon_sym_BSLASHpart] = ACTIONS(6425), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddpart] = ACTIONS(6425), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6427), - [anon_sym_BSLASHchapter] = ACTIONS(6425), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddchap] = ACTIONS(6425), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsection] = ACTIONS(6425), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddsec] = ACTIONS(6425), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubsection] = ACTIONS(6425), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6425), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHparagraph] = ACTIONS(6425), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6425), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6427), - [anon_sym_BSLASHitem] = ACTIONS(6425), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6427), - [anon_sym_LBRACE] = ACTIONS(6427), - [sym_word] = ACTIONS(6425), - [sym_placeholder] = ACTIONS(6427), - [anon_sym_PLUS] = ACTIONS(6427), - [anon_sym_DASH] = ACTIONS(6427), - [anon_sym_STAR] = ACTIONS(6427), - [anon_sym_SLASH] = ACTIONS(6427), - [anon_sym_LT] = ACTIONS(6425), - [anon_sym_GT] = ACTIONS(6425), - [anon_sym_BANG] = ACTIONS(6425), - [anon_sym_PIPE] = ACTIONS(6425), - [anon_sym_COLON] = ACTIONS(6425), - [anon_sym_SQUOTE] = ACTIONS(6425), - [anon_sym__] = ACTIONS(6427), - [anon_sym_CARET] = ACTIONS(6427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6427), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6427), - [anon_sym_DOLLAR] = ACTIONS(6425), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6427), - [anon_sym_BSLASHbegin] = ACTIONS(6425), - [anon_sym_BSLASHtitle] = ACTIONS(6425), - [anon_sym_BSLASHauthor] = ACTIONS(6425), - [anon_sym_BSLASHusepackage] = ACTIONS(6425), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6425), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6425), - [anon_sym_BSLASHinclude] = ACTIONS(6425), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6425), - [anon_sym_BSLASHinput] = ACTIONS(6425), - [anon_sym_BSLASHsubfile] = ACTIONS(6425), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6425), - [anon_sym_BSLASHbibliography] = ACTIONS(6425), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6425), - [anon_sym_BSLASHincludesvg] = ACTIONS(6425), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6425), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6425), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6425), - [anon_sym_BSLASHimport] = ACTIONS(6425), - [anon_sym_BSLASHsubimport] = ACTIONS(6425), - [anon_sym_BSLASHinputfrom] = ACTIONS(6425), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6425), - [anon_sym_BSLASHincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHcaption] = ACTIONS(6425), - [anon_sym_BSLASHcite] = ACTIONS(6425), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCite] = ACTIONS(6425), - [anon_sym_BSLASHnocite] = ACTIONS(6425), - [anon_sym_BSLASHcitet] = ACTIONS(6425), - [anon_sym_BSLASHcitep] = ACTIONS(6425), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteauthor] = ACTIONS(6425), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6425), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitetitle] = ACTIONS(6425), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteyear] = ACTIONS(6425), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitedate] = ACTIONS(6425), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteurl] = ACTIONS(6425), - [anon_sym_BSLASHfullcite] = ACTIONS(6425), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6425), - [anon_sym_BSLASHcitealt] = ACTIONS(6425), - [anon_sym_BSLASHcitealp] = ACTIONS(6425), - [anon_sym_BSLASHcitetext] = ACTIONS(6425), - [anon_sym_BSLASHparencite] = ACTIONS(6425), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHParencite] = ACTIONS(6425), - [anon_sym_BSLASHfootcite] = ACTIONS(6425), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6425), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6425), - [anon_sym_BSLASHtextcite] = ACTIONS(6425), - [anon_sym_BSLASHTextcite] = ACTIONS(6425), - [anon_sym_BSLASHsmartcite] = ACTIONS(6425), - [anon_sym_BSLASHSmartcite] = ACTIONS(6425), - [anon_sym_BSLASHsupercite] = ACTIONS(6425), - [anon_sym_BSLASHautocite] = ACTIONS(6425), - [anon_sym_BSLASHAutocite] = ACTIONS(6425), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHvolcite] = ACTIONS(6425), - [anon_sym_BSLASHVolcite] = ACTIONS(6425), - [anon_sym_BSLASHpvolcite] = ACTIONS(6425), - [anon_sym_BSLASHPvolcite] = ACTIONS(6425), - [anon_sym_BSLASHfvolcite] = ACTIONS(6425), - [anon_sym_BSLASHftvolcite] = ACTIONS(6425), - [anon_sym_BSLASHsvolcite] = ACTIONS(6425), - [anon_sym_BSLASHSvolcite] = ACTIONS(6425), - [anon_sym_BSLASHtvolcite] = ACTIONS(6425), - [anon_sym_BSLASHTvolcite] = ACTIONS(6425), - [anon_sym_BSLASHavolcite] = ACTIONS(6425), - [anon_sym_BSLASHAvolcite] = ACTIONS(6425), - [anon_sym_BSLASHnotecite] = ACTIONS(6425), - [anon_sym_BSLASHNotecite] = ACTIONS(6425), - [anon_sym_BSLASHpnotecite] = ACTIONS(6425), - [anon_sym_BSLASHPnotecite] = ACTIONS(6425), - [anon_sym_BSLASHfnotecite] = ACTIONS(6425), - [anon_sym_BSLASHlabel] = ACTIONS(6425), - [anon_sym_BSLASHref] = ACTIONS(6425), - [anon_sym_BSLASHeqref] = ACTIONS(6425), - [anon_sym_BSLASHvref] = ACTIONS(6425), - [anon_sym_BSLASHVref] = ACTIONS(6425), - [anon_sym_BSLASHautoref] = ACTIONS(6425), - [anon_sym_BSLASHpageref] = ACTIONS(6425), - [anon_sym_BSLASHcref] = ACTIONS(6425), - [anon_sym_BSLASHCref] = ACTIONS(6425), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnameCref] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHlabelcref] = ACTIONS(6425), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCrefrange] = ACTIONS(6425), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnewlabel] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6425), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6425), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6427), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHdef] = ACTIONS(6425), - [anon_sym_BSLASHlet] = ACTIONS(6425), - [anon_sym_BSLASHleft] = ACTIONS(6425), - [anon_sym_BSLASHbig] = ACTIONS(6425), - [anon_sym_BSLASHBig] = ACTIONS(6425), - [anon_sym_BSLASHbigg] = ACTIONS(6425), - [anon_sym_BSLASHBigg] = ACTIONS(6425), - [anon_sym_BSLASHbigl] = ACTIONS(6425), - [anon_sym_BSLASHBigl] = ACTIONS(6425), - [anon_sym_BSLASHbiggl] = ACTIONS(6425), - [anon_sym_BSLASHBiggl] = ACTIONS(6425), - [anon_sym_BSLASHright] = ACTIONS(6425), - [anon_sym_BSLASHbigr] = ACTIONS(6425), - [anon_sym_BSLASHBigr] = ACTIONS(6425), - [anon_sym_BSLASHbiggr] = ACTIONS(6425), - [anon_sym_BSLASHBiggr] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6425), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6425), - [anon_sym_BSLASHgls] = ACTIONS(6425), - [anon_sym_BSLASHGls] = ACTIONS(6425), - [anon_sym_BSLASHGLS] = ACTIONS(6425), - [anon_sym_BSLASHglspl] = ACTIONS(6425), - [anon_sym_BSLASHGlspl] = ACTIONS(6425), - [anon_sym_BSLASHGLSpl] = ACTIONS(6425), - [anon_sym_BSLASHglsdisp] = ACTIONS(6425), - [anon_sym_BSLASHglslink] = ACTIONS(6425), - [anon_sym_BSLASHglstext] = ACTIONS(6425), - [anon_sym_BSLASHGlstext] = ACTIONS(6425), - [anon_sym_BSLASHGLStext] = ACTIONS(6425), - [anon_sym_BSLASHglsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6425), - [anon_sym_BSLASHglsplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSplural] = ACTIONS(6425), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHglsname] = ACTIONS(6425), - [anon_sym_BSLASHGlsname] = ACTIONS(6425), - [anon_sym_BSLASHGLSname] = ACTIONS(6425), - [anon_sym_BSLASHglssymbol] = ACTIONS(6425), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6425), - [anon_sym_BSLASHglsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6425), - [anon_sym_BSLASHglsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6425), - [anon_sym_BSLASHglsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6425), - [anon_sym_BSLASHglsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6425), - [anon_sym_BSLASHglsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6425), - [anon_sym_BSLASHnewacronym] = ACTIONS(6425), - [anon_sym_BSLASHacrshort] = ACTIONS(6425), - [anon_sym_BSLASHAcrshort] = ACTIONS(6425), - [anon_sym_BSLASHACRshort] = ACTIONS(6425), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6425), - [anon_sym_BSLASHacrlong] = ACTIONS(6425), - [anon_sym_BSLASHAcrlong] = ACTIONS(6425), - [anon_sym_BSLASHACRlong] = ACTIONS(6425), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6425), - [anon_sym_BSLASHacrfull] = ACTIONS(6425), - [anon_sym_BSLASHAcrfull] = ACTIONS(6425), - [anon_sym_BSLASHACRfull] = ACTIONS(6425), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6425), - [anon_sym_BSLASHacs] = ACTIONS(6425), - [anon_sym_BSLASHAcs] = ACTIONS(6425), - [anon_sym_BSLASHacsp] = ACTIONS(6425), - [anon_sym_BSLASHAcsp] = ACTIONS(6425), - [anon_sym_BSLASHacl] = ACTIONS(6425), - [anon_sym_BSLASHAcl] = ACTIONS(6425), - [anon_sym_BSLASHaclp] = ACTIONS(6425), - [anon_sym_BSLASHAclp] = ACTIONS(6425), - [anon_sym_BSLASHacf] = ACTIONS(6425), - [anon_sym_BSLASHAcf] = ACTIONS(6425), - [anon_sym_BSLASHacfp] = ACTIONS(6425), - [anon_sym_BSLASHAcfp] = ACTIONS(6425), - [anon_sym_BSLASHac] = ACTIONS(6425), - [anon_sym_BSLASHAc] = ACTIONS(6425), - [anon_sym_BSLASHacp] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6425), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6425), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6425), - [anon_sym_BSLASHcolor] = ACTIONS(6425), - [anon_sym_BSLASHcolorbox] = ACTIONS(6425), - [anon_sym_BSLASHtextcolor] = ACTIONS(6425), - [anon_sym_BSLASHpagecolor] = ACTIONS(6425), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6425), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6425), - [anon_sym_BSLASHtext] = ACTIONS(6425), - [anon_sym_BSLASHintertext] = ACTIONS(6425), - [anon_sym_shortintertext] = ACTIONS(6425), - }, - [600] = { - [sym_command_name] = ACTIONS(6429), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6429), - [anon_sym_LBRACK] = ACTIONS(6431), - [anon_sym_RBRACK] = ACTIONS(6431), - [anon_sym_COMMA] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(6431), - [anon_sym_LPAREN] = ACTIONS(6431), - [anon_sym_RPAREN] = ACTIONS(6431), - [anon_sym_BSLASHpart] = ACTIONS(6429), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddpart] = ACTIONS(6429), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6431), - [anon_sym_BSLASHchapter] = ACTIONS(6429), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddchap] = ACTIONS(6429), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsection] = ACTIONS(6429), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddsec] = ACTIONS(6429), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubsection] = ACTIONS(6429), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6429), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHparagraph] = ACTIONS(6429), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6429), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6431), - [anon_sym_BSLASHitem] = ACTIONS(6429), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6431), - [anon_sym_LBRACE] = ACTIONS(6431), - [sym_word] = ACTIONS(6429), - [sym_placeholder] = ACTIONS(6431), - [anon_sym_PLUS] = ACTIONS(6431), - [anon_sym_DASH] = ACTIONS(6431), - [anon_sym_STAR] = ACTIONS(6431), - [anon_sym_SLASH] = ACTIONS(6431), - [anon_sym_LT] = ACTIONS(6429), - [anon_sym_GT] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(6429), - [anon_sym_PIPE] = ACTIONS(6429), - [anon_sym_COLON] = ACTIONS(6429), - [anon_sym_SQUOTE] = ACTIONS(6429), - [anon_sym__] = ACTIONS(6431), - [anon_sym_CARET] = ACTIONS(6431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6431), - [anon_sym_DOLLAR] = ACTIONS(6429), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6431), - [anon_sym_BSLASHbegin] = ACTIONS(6429), - [anon_sym_BSLASHtitle] = ACTIONS(6429), - [anon_sym_BSLASHauthor] = ACTIONS(6429), - [anon_sym_BSLASHusepackage] = ACTIONS(6429), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6429), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6429), - [anon_sym_BSLASHinclude] = ACTIONS(6429), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6429), - [anon_sym_BSLASHinput] = ACTIONS(6429), - [anon_sym_BSLASHsubfile] = ACTIONS(6429), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6429), - [anon_sym_BSLASHbibliography] = ACTIONS(6429), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6429), - [anon_sym_BSLASHincludesvg] = ACTIONS(6429), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6429), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6429), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6429), - [anon_sym_BSLASHimport] = ACTIONS(6429), - [anon_sym_BSLASHsubimport] = ACTIONS(6429), - [anon_sym_BSLASHinputfrom] = ACTIONS(6429), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6429), - [anon_sym_BSLASHincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHcaption] = ACTIONS(6429), - [anon_sym_BSLASHcite] = ACTIONS(6429), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCite] = ACTIONS(6429), - [anon_sym_BSLASHnocite] = ACTIONS(6429), - [anon_sym_BSLASHcitet] = ACTIONS(6429), - [anon_sym_BSLASHcitep] = ACTIONS(6429), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteauthor] = ACTIONS(6429), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6429), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitetitle] = ACTIONS(6429), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteyear] = ACTIONS(6429), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitedate] = ACTIONS(6429), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteurl] = ACTIONS(6429), - [anon_sym_BSLASHfullcite] = ACTIONS(6429), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6429), - [anon_sym_BSLASHcitealt] = ACTIONS(6429), - [anon_sym_BSLASHcitealp] = ACTIONS(6429), - [anon_sym_BSLASHcitetext] = ACTIONS(6429), - [anon_sym_BSLASHparencite] = ACTIONS(6429), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHParencite] = ACTIONS(6429), - [anon_sym_BSLASHfootcite] = ACTIONS(6429), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6429), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6429), - [anon_sym_BSLASHtextcite] = ACTIONS(6429), - [anon_sym_BSLASHTextcite] = ACTIONS(6429), - [anon_sym_BSLASHsmartcite] = ACTIONS(6429), - [anon_sym_BSLASHSmartcite] = ACTIONS(6429), - [anon_sym_BSLASHsupercite] = ACTIONS(6429), - [anon_sym_BSLASHautocite] = ACTIONS(6429), - [anon_sym_BSLASHAutocite] = ACTIONS(6429), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHvolcite] = ACTIONS(6429), - [anon_sym_BSLASHVolcite] = ACTIONS(6429), - [anon_sym_BSLASHpvolcite] = ACTIONS(6429), - [anon_sym_BSLASHPvolcite] = ACTIONS(6429), - [anon_sym_BSLASHfvolcite] = ACTIONS(6429), - [anon_sym_BSLASHftvolcite] = ACTIONS(6429), - [anon_sym_BSLASHsvolcite] = ACTIONS(6429), - [anon_sym_BSLASHSvolcite] = ACTIONS(6429), - [anon_sym_BSLASHtvolcite] = ACTIONS(6429), - [anon_sym_BSLASHTvolcite] = ACTIONS(6429), - [anon_sym_BSLASHavolcite] = ACTIONS(6429), - [anon_sym_BSLASHAvolcite] = ACTIONS(6429), - [anon_sym_BSLASHnotecite] = ACTIONS(6429), - [anon_sym_BSLASHNotecite] = ACTIONS(6429), - [anon_sym_BSLASHpnotecite] = ACTIONS(6429), - [anon_sym_BSLASHPnotecite] = ACTIONS(6429), - [anon_sym_BSLASHfnotecite] = ACTIONS(6429), - [anon_sym_BSLASHlabel] = ACTIONS(6429), - [anon_sym_BSLASHref] = ACTIONS(6429), - [anon_sym_BSLASHeqref] = ACTIONS(6429), - [anon_sym_BSLASHvref] = ACTIONS(6429), - [anon_sym_BSLASHVref] = ACTIONS(6429), - [anon_sym_BSLASHautoref] = ACTIONS(6429), - [anon_sym_BSLASHpageref] = ACTIONS(6429), - [anon_sym_BSLASHcref] = ACTIONS(6429), - [anon_sym_BSLASHCref] = ACTIONS(6429), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnameCref] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHlabelcref] = ACTIONS(6429), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCrefrange] = ACTIONS(6429), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnewlabel] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6429), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6429), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6431), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHdef] = ACTIONS(6429), - [anon_sym_BSLASHlet] = ACTIONS(6429), - [anon_sym_BSLASHleft] = ACTIONS(6429), - [anon_sym_BSLASHbig] = ACTIONS(6429), - [anon_sym_BSLASHBig] = ACTIONS(6429), - [anon_sym_BSLASHbigg] = ACTIONS(6429), - [anon_sym_BSLASHBigg] = ACTIONS(6429), - [anon_sym_BSLASHbigl] = ACTIONS(6429), - [anon_sym_BSLASHBigl] = ACTIONS(6429), - [anon_sym_BSLASHbiggl] = ACTIONS(6429), - [anon_sym_BSLASHBiggl] = ACTIONS(6429), - [anon_sym_BSLASHright] = ACTIONS(6429), - [anon_sym_BSLASHbigr] = ACTIONS(6429), - [anon_sym_BSLASHBigr] = ACTIONS(6429), - [anon_sym_BSLASHbiggr] = ACTIONS(6429), - [anon_sym_BSLASHBiggr] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6429), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6429), - [anon_sym_BSLASHgls] = ACTIONS(6429), - [anon_sym_BSLASHGls] = ACTIONS(6429), - [anon_sym_BSLASHGLS] = ACTIONS(6429), - [anon_sym_BSLASHglspl] = ACTIONS(6429), - [anon_sym_BSLASHGlspl] = ACTIONS(6429), - [anon_sym_BSLASHGLSpl] = ACTIONS(6429), - [anon_sym_BSLASHglsdisp] = ACTIONS(6429), - [anon_sym_BSLASHglslink] = ACTIONS(6429), - [anon_sym_BSLASHglstext] = ACTIONS(6429), - [anon_sym_BSLASHGlstext] = ACTIONS(6429), - [anon_sym_BSLASHGLStext] = ACTIONS(6429), - [anon_sym_BSLASHglsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6429), - [anon_sym_BSLASHglsplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSplural] = ACTIONS(6429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHglsname] = ACTIONS(6429), - [anon_sym_BSLASHGlsname] = ACTIONS(6429), - [anon_sym_BSLASHGLSname] = ACTIONS(6429), - [anon_sym_BSLASHglssymbol] = ACTIONS(6429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6429), - [anon_sym_BSLASHglsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6429), - [anon_sym_BSLASHglsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6429), - [anon_sym_BSLASHglsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6429), - [anon_sym_BSLASHglsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6429), - [anon_sym_BSLASHglsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6429), - [anon_sym_BSLASHnewacronym] = ACTIONS(6429), - [anon_sym_BSLASHacrshort] = ACTIONS(6429), - [anon_sym_BSLASHAcrshort] = ACTIONS(6429), - [anon_sym_BSLASHACRshort] = ACTIONS(6429), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6429), - [anon_sym_BSLASHacrlong] = ACTIONS(6429), - [anon_sym_BSLASHAcrlong] = ACTIONS(6429), - [anon_sym_BSLASHACRlong] = ACTIONS(6429), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6429), - [anon_sym_BSLASHacrfull] = ACTIONS(6429), - [anon_sym_BSLASHAcrfull] = ACTIONS(6429), - [anon_sym_BSLASHACRfull] = ACTIONS(6429), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6429), - [anon_sym_BSLASHacs] = ACTIONS(6429), - [anon_sym_BSLASHAcs] = ACTIONS(6429), - [anon_sym_BSLASHacsp] = ACTIONS(6429), - [anon_sym_BSLASHAcsp] = ACTIONS(6429), - [anon_sym_BSLASHacl] = ACTIONS(6429), - [anon_sym_BSLASHAcl] = ACTIONS(6429), - [anon_sym_BSLASHaclp] = ACTIONS(6429), - [anon_sym_BSLASHAclp] = ACTIONS(6429), - [anon_sym_BSLASHacf] = ACTIONS(6429), - [anon_sym_BSLASHAcf] = ACTIONS(6429), - [anon_sym_BSLASHacfp] = ACTIONS(6429), - [anon_sym_BSLASHAcfp] = ACTIONS(6429), - [anon_sym_BSLASHac] = ACTIONS(6429), - [anon_sym_BSLASHAc] = ACTIONS(6429), - [anon_sym_BSLASHacp] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6429), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6429), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6429), - [anon_sym_BSLASHcolor] = ACTIONS(6429), - [anon_sym_BSLASHcolorbox] = ACTIONS(6429), - [anon_sym_BSLASHtextcolor] = ACTIONS(6429), - [anon_sym_BSLASHpagecolor] = ACTIONS(6429), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6429), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6429), - [anon_sym_BSLASHtext] = ACTIONS(6429), - [anon_sym_BSLASHintertext] = ACTIONS(6429), - [anon_sym_shortintertext] = ACTIONS(6429), - }, - [601] = { - [sym_command_name] = ACTIONS(6433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6433), - [anon_sym_LBRACK] = ACTIONS(6435), - [anon_sym_RBRACK] = ACTIONS(6435), - [anon_sym_COMMA] = ACTIONS(6435), - [anon_sym_EQ] = ACTIONS(6435), - [anon_sym_LPAREN] = ACTIONS(6435), - [anon_sym_RPAREN] = ACTIONS(6435), - [anon_sym_BSLASHpart] = ACTIONS(6433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddpart] = ACTIONS(6433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6435), - [anon_sym_BSLASHchapter] = ACTIONS(6433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddchap] = ACTIONS(6433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsection] = ACTIONS(6433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddsec] = ACTIONS(6433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubsection] = ACTIONS(6433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHparagraph] = ACTIONS(6433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6435), - [anon_sym_BSLASHitem] = ACTIONS(6433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6435), - [anon_sym_LBRACE] = ACTIONS(6435), - [sym_word] = ACTIONS(6433), - [sym_placeholder] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6435), - [anon_sym_DASH] = ACTIONS(6435), - [anon_sym_STAR] = ACTIONS(6435), - [anon_sym_SLASH] = ACTIONS(6435), - [anon_sym_LT] = ACTIONS(6433), - [anon_sym_GT] = ACTIONS(6433), - [anon_sym_BANG] = ACTIONS(6433), - [anon_sym_PIPE] = ACTIONS(6433), - [anon_sym_COLON] = ACTIONS(6433), - [anon_sym_SQUOTE] = ACTIONS(6433), - [anon_sym__] = ACTIONS(6435), - [anon_sym_CARET] = ACTIONS(6435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6435), - [anon_sym_DOLLAR] = ACTIONS(6433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6435), - [anon_sym_BSLASHbegin] = ACTIONS(6433), - [anon_sym_BSLASHtitle] = ACTIONS(6433), - [anon_sym_BSLASHauthor] = ACTIONS(6433), - [anon_sym_BSLASHusepackage] = ACTIONS(6433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6433), - [anon_sym_BSLASHinclude] = ACTIONS(6433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6433), - [anon_sym_BSLASHinput] = ACTIONS(6433), - [anon_sym_BSLASHsubfile] = ACTIONS(6433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6433), - [anon_sym_BSLASHbibliography] = ACTIONS(6433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6433), - [anon_sym_BSLASHincludesvg] = ACTIONS(6433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6433), - [anon_sym_BSLASHimport] = ACTIONS(6433), - [anon_sym_BSLASHsubimport] = ACTIONS(6433), - [anon_sym_BSLASHinputfrom] = ACTIONS(6433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6433), - [anon_sym_BSLASHincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHcaption] = ACTIONS(6433), - [anon_sym_BSLASHcite] = ACTIONS(6433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCite] = ACTIONS(6433), - [anon_sym_BSLASHnocite] = ACTIONS(6433), - [anon_sym_BSLASHcitet] = ACTIONS(6433), - [anon_sym_BSLASHcitep] = ACTIONS(6433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteauthor] = ACTIONS(6433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitetitle] = ACTIONS(6433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteyear] = ACTIONS(6433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitedate] = ACTIONS(6433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteurl] = ACTIONS(6433), - [anon_sym_BSLASHfullcite] = ACTIONS(6433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6433), - [anon_sym_BSLASHcitealt] = ACTIONS(6433), - [anon_sym_BSLASHcitealp] = ACTIONS(6433), - [anon_sym_BSLASHcitetext] = ACTIONS(6433), - [anon_sym_BSLASHparencite] = ACTIONS(6433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHParencite] = ACTIONS(6433), - [anon_sym_BSLASHfootcite] = ACTIONS(6433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6433), - [anon_sym_BSLASHtextcite] = ACTIONS(6433), - [anon_sym_BSLASHTextcite] = ACTIONS(6433), - [anon_sym_BSLASHsmartcite] = ACTIONS(6433), - [anon_sym_BSLASHSmartcite] = ACTIONS(6433), - [anon_sym_BSLASHsupercite] = ACTIONS(6433), - [anon_sym_BSLASHautocite] = ACTIONS(6433), - [anon_sym_BSLASHAutocite] = ACTIONS(6433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHvolcite] = ACTIONS(6433), - [anon_sym_BSLASHVolcite] = ACTIONS(6433), - [anon_sym_BSLASHpvolcite] = ACTIONS(6433), - [anon_sym_BSLASHPvolcite] = ACTIONS(6433), - [anon_sym_BSLASHfvolcite] = ACTIONS(6433), - [anon_sym_BSLASHftvolcite] = ACTIONS(6433), - [anon_sym_BSLASHsvolcite] = ACTIONS(6433), - [anon_sym_BSLASHSvolcite] = ACTIONS(6433), - [anon_sym_BSLASHtvolcite] = ACTIONS(6433), - [anon_sym_BSLASHTvolcite] = ACTIONS(6433), - [anon_sym_BSLASHavolcite] = ACTIONS(6433), - [anon_sym_BSLASHAvolcite] = ACTIONS(6433), - [anon_sym_BSLASHnotecite] = ACTIONS(6433), - [anon_sym_BSLASHNotecite] = ACTIONS(6433), - [anon_sym_BSLASHpnotecite] = ACTIONS(6433), - [anon_sym_BSLASHPnotecite] = ACTIONS(6433), - [anon_sym_BSLASHfnotecite] = ACTIONS(6433), - [anon_sym_BSLASHlabel] = ACTIONS(6433), - [anon_sym_BSLASHref] = ACTIONS(6433), - [anon_sym_BSLASHeqref] = ACTIONS(6433), - [anon_sym_BSLASHvref] = ACTIONS(6433), - [anon_sym_BSLASHVref] = ACTIONS(6433), - [anon_sym_BSLASHautoref] = ACTIONS(6433), - [anon_sym_BSLASHpageref] = ACTIONS(6433), - [anon_sym_BSLASHcref] = ACTIONS(6433), - [anon_sym_BSLASHCref] = ACTIONS(6433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnameCref] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHlabelcref] = ACTIONS(6433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCrefrange] = ACTIONS(6433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnewlabel] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6435), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHdef] = ACTIONS(6433), - [anon_sym_BSLASHlet] = ACTIONS(6433), - [anon_sym_BSLASHleft] = ACTIONS(6433), - [anon_sym_BSLASHbig] = ACTIONS(6433), - [anon_sym_BSLASHBig] = ACTIONS(6433), - [anon_sym_BSLASHbigg] = ACTIONS(6433), - [anon_sym_BSLASHBigg] = ACTIONS(6433), - [anon_sym_BSLASHbigl] = ACTIONS(6433), - [anon_sym_BSLASHBigl] = ACTIONS(6433), - [anon_sym_BSLASHbiggl] = ACTIONS(6433), - [anon_sym_BSLASHBiggl] = ACTIONS(6433), - [anon_sym_BSLASHright] = ACTIONS(6433), - [anon_sym_BSLASHbigr] = ACTIONS(6433), - [anon_sym_BSLASHBigr] = ACTIONS(6433), - [anon_sym_BSLASHbiggr] = ACTIONS(6433), - [anon_sym_BSLASHBiggr] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6433), - [anon_sym_BSLASHgls] = ACTIONS(6433), - [anon_sym_BSLASHGls] = ACTIONS(6433), - [anon_sym_BSLASHGLS] = ACTIONS(6433), - [anon_sym_BSLASHglspl] = ACTIONS(6433), - [anon_sym_BSLASHGlspl] = ACTIONS(6433), - [anon_sym_BSLASHGLSpl] = ACTIONS(6433), - [anon_sym_BSLASHglsdisp] = ACTIONS(6433), - [anon_sym_BSLASHglslink] = ACTIONS(6433), - [anon_sym_BSLASHglstext] = ACTIONS(6433), - [anon_sym_BSLASHGlstext] = ACTIONS(6433), - [anon_sym_BSLASHGLStext] = ACTIONS(6433), - [anon_sym_BSLASHglsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6433), - [anon_sym_BSLASHglsplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSplural] = ACTIONS(6433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHglsname] = ACTIONS(6433), - [anon_sym_BSLASHGlsname] = ACTIONS(6433), - [anon_sym_BSLASHGLSname] = ACTIONS(6433), - [anon_sym_BSLASHglssymbol] = ACTIONS(6433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6433), - [anon_sym_BSLASHglsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6433), - [anon_sym_BSLASHglsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6433), - [anon_sym_BSLASHglsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6433), - [anon_sym_BSLASHglsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6433), - [anon_sym_BSLASHglsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6433), - [anon_sym_BSLASHnewacronym] = ACTIONS(6433), - [anon_sym_BSLASHacrshort] = ACTIONS(6433), - [anon_sym_BSLASHAcrshort] = ACTIONS(6433), - [anon_sym_BSLASHACRshort] = ACTIONS(6433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6433), - [anon_sym_BSLASHacrlong] = ACTIONS(6433), - [anon_sym_BSLASHAcrlong] = ACTIONS(6433), - [anon_sym_BSLASHACRlong] = ACTIONS(6433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6433), - [anon_sym_BSLASHacrfull] = ACTIONS(6433), - [anon_sym_BSLASHAcrfull] = ACTIONS(6433), - [anon_sym_BSLASHACRfull] = ACTIONS(6433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6433), - [anon_sym_BSLASHacs] = ACTIONS(6433), - [anon_sym_BSLASHAcs] = ACTIONS(6433), - [anon_sym_BSLASHacsp] = ACTIONS(6433), - [anon_sym_BSLASHAcsp] = ACTIONS(6433), - [anon_sym_BSLASHacl] = ACTIONS(6433), - [anon_sym_BSLASHAcl] = ACTIONS(6433), - [anon_sym_BSLASHaclp] = ACTIONS(6433), - [anon_sym_BSLASHAclp] = ACTIONS(6433), - [anon_sym_BSLASHacf] = ACTIONS(6433), - [anon_sym_BSLASHAcf] = ACTIONS(6433), - [anon_sym_BSLASHacfp] = ACTIONS(6433), - [anon_sym_BSLASHAcfp] = ACTIONS(6433), - [anon_sym_BSLASHac] = ACTIONS(6433), - [anon_sym_BSLASHAc] = ACTIONS(6433), - [anon_sym_BSLASHacp] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6433), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6433), - [anon_sym_BSLASHcolor] = ACTIONS(6433), - [anon_sym_BSLASHcolorbox] = ACTIONS(6433), - [anon_sym_BSLASHtextcolor] = ACTIONS(6433), - [anon_sym_BSLASHpagecolor] = ACTIONS(6433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6433), - [anon_sym_BSLASHtext] = ACTIONS(6433), - [anon_sym_BSLASHintertext] = ACTIONS(6433), - [anon_sym_shortintertext] = ACTIONS(6433), - }, - [602] = { - [sym_command_name] = ACTIONS(6437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6437), - [anon_sym_LBRACK] = ACTIONS(6439), - [anon_sym_RBRACK] = ACTIONS(6439), - [anon_sym_COMMA] = ACTIONS(6439), - [anon_sym_EQ] = ACTIONS(6439), - [anon_sym_LPAREN] = ACTIONS(6439), - [anon_sym_RPAREN] = ACTIONS(6439), - [anon_sym_BSLASHpart] = ACTIONS(6437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddpart] = ACTIONS(6437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6439), - [anon_sym_BSLASHchapter] = ACTIONS(6437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddchap] = ACTIONS(6437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsection] = ACTIONS(6437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddsec] = ACTIONS(6437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubsection] = ACTIONS(6437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHparagraph] = ACTIONS(6437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6439), - [anon_sym_BSLASHitem] = ACTIONS(6437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6439), - [anon_sym_LBRACE] = ACTIONS(6439), - [sym_word] = ACTIONS(6437), - [sym_placeholder] = ACTIONS(6439), - [anon_sym_PLUS] = ACTIONS(6439), - [anon_sym_DASH] = ACTIONS(6439), - [anon_sym_STAR] = ACTIONS(6439), - [anon_sym_SLASH] = ACTIONS(6439), - [anon_sym_LT] = ACTIONS(6437), - [anon_sym_GT] = ACTIONS(6437), - [anon_sym_BANG] = ACTIONS(6437), - [anon_sym_PIPE] = ACTIONS(6437), - [anon_sym_COLON] = ACTIONS(6437), - [anon_sym_SQUOTE] = ACTIONS(6437), - [anon_sym__] = ACTIONS(6439), - [anon_sym_CARET] = ACTIONS(6439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6439), - [anon_sym_DOLLAR] = ACTIONS(6437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6439), - [anon_sym_BSLASHbegin] = ACTIONS(6437), - [anon_sym_BSLASHtitle] = ACTIONS(6437), - [anon_sym_BSLASHauthor] = ACTIONS(6437), - [anon_sym_BSLASHusepackage] = ACTIONS(6437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6437), - [anon_sym_BSLASHinclude] = ACTIONS(6437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6437), - [anon_sym_BSLASHinput] = ACTIONS(6437), - [anon_sym_BSLASHsubfile] = ACTIONS(6437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6437), - [anon_sym_BSLASHbibliography] = ACTIONS(6437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6437), - [anon_sym_BSLASHincludesvg] = ACTIONS(6437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6437), - [anon_sym_BSLASHimport] = ACTIONS(6437), - [anon_sym_BSLASHsubimport] = ACTIONS(6437), - [anon_sym_BSLASHinputfrom] = ACTIONS(6437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6437), - [anon_sym_BSLASHincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHcaption] = ACTIONS(6437), - [anon_sym_BSLASHcite] = ACTIONS(6437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCite] = ACTIONS(6437), - [anon_sym_BSLASHnocite] = ACTIONS(6437), - [anon_sym_BSLASHcitet] = ACTIONS(6437), - [anon_sym_BSLASHcitep] = ACTIONS(6437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteauthor] = ACTIONS(6437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitetitle] = ACTIONS(6437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteyear] = ACTIONS(6437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitedate] = ACTIONS(6437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteurl] = ACTIONS(6437), - [anon_sym_BSLASHfullcite] = ACTIONS(6437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6437), - [anon_sym_BSLASHcitealt] = ACTIONS(6437), - [anon_sym_BSLASHcitealp] = ACTIONS(6437), - [anon_sym_BSLASHcitetext] = ACTIONS(6437), - [anon_sym_BSLASHparencite] = ACTIONS(6437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHParencite] = ACTIONS(6437), - [anon_sym_BSLASHfootcite] = ACTIONS(6437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6437), - [anon_sym_BSLASHtextcite] = ACTIONS(6437), - [anon_sym_BSLASHTextcite] = ACTIONS(6437), - [anon_sym_BSLASHsmartcite] = ACTIONS(6437), - [anon_sym_BSLASHSmartcite] = ACTIONS(6437), - [anon_sym_BSLASHsupercite] = ACTIONS(6437), - [anon_sym_BSLASHautocite] = ACTIONS(6437), - [anon_sym_BSLASHAutocite] = ACTIONS(6437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHvolcite] = ACTIONS(6437), - [anon_sym_BSLASHVolcite] = ACTIONS(6437), - [anon_sym_BSLASHpvolcite] = ACTIONS(6437), - [anon_sym_BSLASHPvolcite] = ACTIONS(6437), - [anon_sym_BSLASHfvolcite] = ACTIONS(6437), - [anon_sym_BSLASHftvolcite] = ACTIONS(6437), - [anon_sym_BSLASHsvolcite] = ACTIONS(6437), - [anon_sym_BSLASHSvolcite] = ACTIONS(6437), - [anon_sym_BSLASHtvolcite] = ACTIONS(6437), - [anon_sym_BSLASHTvolcite] = ACTIONS(6437), - [anon_sym_BSLASHavolcite] = ACTIONS(6437), - [anon_sym_BSLASHAvolcite] = ACTIONS(6437), - [anon_sym_BSLASHnotecite] = ACTIONS(6437), - [anon_sym_BSLASHNotecite] = ACTIONS(6437), - [anon_sym_BSLASHpnotecite] = ACTIONS(6437), - [anon_sym_BSLASHPnotecite] = ACTIONS(6437), - [anon_sym_BSLASHfnotecite] = ACTIONS(6437), - [anon_sym_BSLASHlabel] = ACTIONS(6437), - [anon_sym_BSLASHref] = ACTIONS(6437), - [anon_sym_BSLASHeqref] = ACTIONS(6437), - [anon_sym_BSLASHvref] = ACTIONS(6437), - [anon_sym_BSLASHVref] = ACTIONS(6437), - [anon_sym_BSLASHautoref] = ACTIONS(6437), - [anon_sym_BSLASHpageref] = ACTIONS(6437), - [anon_sym_BSLASHcref] = ACTIONS(6437), - [anon_sym_BSLASHCref] = ACTIONS(6437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnameCref] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHlabelcref] = ACTIONS(6437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCrefrange] = ACTIONS(6437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnewlabel] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6439), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHdef] = ACTIONS(6437), - [anon_sym_BSLASHlet] = ACTIONS(6437), - [anon_sym_BSLASHleft] = ACTIONS(6437), - [anon_sym_BSLASHbig] = ACTIONS(6437), - [anon_sym_BSLASHBig] = ACTIONS(6437), - [anon_sym_BSLASHbigg] = ACTIONS(6437), - [anon_sym_BSLASHBigg] = ACTIONS(6437), - [anon_sym_BSLASHbigl] = ACTIONS(6437), - [anon_sym_BSLASHBigl] = ACTIONS(6437), - [anon_sym_BSLASHbiggl] = ACTIONS(6437), - [anon_sym_BSLASHBiggl] = ACTIONS(6437), - [anon_sym_BSLASHright] = ACTIONS(6437), - [anon_sym_BSLASHbigr] = ACTIONS(6437), - [anon_sym_BSLASHBigr] = ACTIONS(6437), - [anon_sym_BSLASHbiggr] = ACTIONS(6437), - [anon_sym_BSLASHBiggr] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6437), - [anon_sym_BSLASHgls] = ACTIONS(6437), - [anon_sym_BSLASHGls] = ACTIONS(6437), - [anon_sym_BSLASHGLS] = ACTIONS(6437), - [anon_sym_BSLASHglspl] = ACTIONS(6437), - [anon_sym_BSLASHGlspl] = ACTIONS(6437), - [anon_sym_BSLASHGLSpl] = ACTIONS(6437), - [anon_sym_BSLASHglsdisp] = ACTIONS(6437), - [anon_sym_BSLASHglslink] = ACTIONS(6437), - [anon_sym_BSLASHglstext] = ACTIONS(6437), - [anon_sym_BSLASHGlstext] = ACTIONS(6437), - [anon_sym_BSLASHGLStext] = ACTIONS(6437), - [anon_sym_BSLASHglsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6437), - [anon_sym_BSLASHglsplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSplural] = ACTIONS(6437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHglsname] = ACTIONS(6437), - [anon_sym_BSLASHGlsname] = ACTIONS(6437), - [anon_sym_BSLASHGLSname] = ACTIONS(6437), - [anon_sym_BSLASHglssymbol] = ACTIONS(6437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6437), - [anon_sym_BSLASHglsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6437), - [anon_sym_BSLASHglsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6437), - [anon_sym_BSLASHglsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6437), - [anon_sym_BSLASHglsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6437), - [anon_sym_BSLASHglsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6437), - [anon_sym_BSLASHnewacronym] = ACTIONS(6437), - [anon_sym_BSLASHacrshort] = ACTIONS(6437), - [anon_sym_BSLASHAcrshort] = ACTIONS(6437), - [anon_sym_BSLASHACRshort] = ACTIONS(6437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6437), - [anon_sym_BSLASHacrlong] = ACTIONS(6437), - [anon_sym_BSLASHAcrlong] = ACTIONS(6437), - [anon_sym_BSLASHACRlong] = ACTIONS(6437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6437), - [anon_sym_BSLASHacrfull] = ACTIONS(6437), - [anon_sym_BSLASHAcrfull] = ACTIONS(6437), - [anon_sym_BSLASHACRfull] = ACTIONS(6437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6437), - [anon_sym_BSLASHacs] = ACTIONS(6437), - [anon_sym_BSLASHAcs] = ACTIONS(6437), - [anon_sym_BSLASHacsp] = ACTIONS(6437), - [anon_sym_BSLASHAcsp] = ACTIONS(6437), - [anon_sym_BSLASHacl] = ACTIONS(6437), - [anon_sym_BSLASHAcl] = ACTIONS(6437), - [anon_sym_BSLASHaclp] = ACTIONS(6437), - [anon_sym_BSLASHAclp] = ACTIONS(6437), - [anon_sym_BSLASHacf] = ACTIONS(6437), - [anon_sym_BSLASHAcf] = ACTIONS(6437), - [anon_sym_BSLASHacfp] = ACTIONS(6437), - [anon_sym_BSLASHAcfp] = ACTIONS(6437), - [anon_sym_BSLASHac] = ACTIONS(6437), - [anon_sym_BSLASHAc] = ACTIONS(6437), - [anon_sym_BSLASHacp] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6437), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6437), - [anon_sym_BSLASHcolor] = ACTIONS(6437), - [anon_sym_BSLASHcolorbox] = ACTIONS(6437), - [anon_sym_BSLASHtextcolor] = ACTIONS(6437), - [anon_sym_BSLASHpagecolor] = ACTIONS(6437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6437), - [anon_sym_BSLASHtext] = ACTIONS(6437), - [anon_sym_BSLASHintertext] = ACTIONS(6437), - [anon_sym_shortintertext] = ACTIONS(6437), - }, - [603] = { - [sym_command_name] = ACTIONS(6441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6441), - [anon_sym_LBRACK] = ACTIONS(6443), - [anon_sym_RBRACK] = ACTIONS(6443), - [anon_sym_COMMA] = ACTIONS(6443), - [anon_sym_EQ] = ACTIONS(6443), - [anon_sym_LPAREN] = ACTIONS(6443), - [anon_sym_RPAREN] = ACTIONS(6443), - [anon_sym_BSLASHpart] = ACTIONS(6441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddpart] = ACTIONS(6441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6443), - [anon_sym_BSLASHchapter] = ACTIONS(6441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddchap] = ACTIONS(6441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsection] = ACTIONS(6441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddsec] = ACTIONS(6441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubsection] = ACTIONS(6441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHparagraph] = ACTIONS(6441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6443), - [anon_sym_BSLASHitem] = ACTIONS(6441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6443), - [anon_sym_LBRACE] = ACTIONS(6443), - [sym_word] = ACTIONS(6441), - [sym_placeholder] = ACTIONS(6443), - [anon_sym_PLUS] = ACTIONS(6443), - [anon_sym_DASH] = ACTIONS(6443), - [anon_sym_STAR] = ACTIONS(6443), - [anon_sym_SLASH] = ACTIONS(6443), - [anon_sym_LT] = ACTIONS(6441), - [anon_sym_GT] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(6441), - [anon_sym_PIPE] = ACTIONS(6441), - [anon_sym_COLON] = ACTIONS(6441), - [anon_sym_SQUOTE] = ACTIONS(6441), - [anon_sym__] = ACTIONS(6443), - [anon_sym_CARET] = ACTIONS(6443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6443), - [anon_sym_DOLLAR] = ACTIONS(6441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6443), - [anon_sym_BSLASHbegin] = ACTIONS(6441), - [anon_sym_BSLASHtitle] = ACTIONS(6441), - [anon_sym_BSLASHauthor] = ACTIONS(6441), - [anon_sym_BSLASHusepackage] = ACTIONS(6441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6441), - [anon_sym_BSLASHinclude] = ACTIONS(6441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6441), - [anon_sym_BSLASHinput] = ACTIONS(6441), - [anon_sym_BSLASHsubfile] = ACTIONS(6441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6441), - [anon_sym_BSLASHbibliography] = ACTIONS(6441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6441), - [anon_sym_BSLASHincludesvg] = ACTIONS(6441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6441), - [anon_sym_BSLASHimport] = ACTIONS(6441), - [anon_sym_BSLASHsubimport] = ACTIONS(6441), - [anon_sym_BSLASHinputfrom] = ACTIONS(6441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6441), - [anon_sym_BSLASHincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHcaption] = ACTIONS(6441), - [anon_sym_BSLASHcite] = ACTIONS(6441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCite] = ACTIONS(6441), - [anon_sym_BSLASHnocite] = ACTIONS(6441), - [anon_sym_BSLASHcitet] = ACTIONS(6441), - [anon_sym_BSLASHcitep] = ACTIONS(6441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteauthor] = ACTIONS(6441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitetitle] = ACTIONS(6441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteyear] = ACTIONS(6441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitedate] = ACTIONS(6441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteurl] = ACTIONS(6441), - [anon_sym_BSLASHfullcite] = ACTIONS(6441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6441), - [anon_sym_BSLASHcitealt] = ACTIONS(6441), - [anon_sym_BSLASHcitealp] = ACTIONS(6441), - [anon_sym_BSLASHcitetext] = ACTIONS(6441), - [anon_sym_BSLASHparencite] = ACTIONS(6441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHParencite] = ACTIONS(6441), - [anon_sym_BSLASHfootcite] = ACTIONS(6441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6441), - [anon_sym_BSLASHtextcite] = ACTIONS(6441), - [anon_sym_BSLASHTextcite] = ACTIONS(6441), - [anon_sym_BSLASHsmartcite] = ACTIONS(6441), - [anon_sym_BSLASHSmartcite] = ACTIONS(6441), - [anon_sym_BSLASHsupercite] = ACTIONS(6441), - [anon_sym_BSLASHautocite] = ACTIONS(6441), - [anon_sym_BSLASHAutocite] = ACTIONS(6441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHvolcite] = ACTIONS(6441), - [anon_sym_BSLASHVolcite] = ACTIONS(6441), - [anon_sym_BSLASHpvolcite] = ACTIONS(6441), - [anon_sym_BSLASHPvolcite] = ACTIONS(6441), - [anon_sym_BSLASHfvolcite] = ACTIONS(6441), - [anon_sym_BSLASHftvolcite] = ACTIONS(6441), - [anon_sym_BSLASHsvolcite] = ACTIONS(6441), - [anon_sym_BSLASHSvolcite] = ACTIONS(6441), - [anon_sym_BSLASHtvolcite] = ACTIONS(6441), - [anon_sym_BSLASHTvolcite] = ACTIONS(6441), - [anon_sym_BSLASHavolcite] = ACTIONS(6441), - [anon_sym_BSLASHAvolcite] = ACTIONS(6441), - [anon_sym_BSLASHnotecite] = ACTIONS(6441), - [anon_sym_BSLASHNotecite] = ACTIONS(6441), - [anon_sym_BSLASHpnotecite] = ACTIONS(6441), - [anon_sym_BSLASHPnotecite] = ACTIONS(6441), - [anon_sym_BSLASHfnotecite] = ACTIONS(6441), - [anon_sym_BSLASHlabel] = ACTIONS(6441), - [anon_sym_BSLASHref] = ACTIONS(6441), - [anon_sym_BSLASHeqref] = ACTIONS(6441), - [anon_sym_BSLASHvref] = ACTIONS(6441), - [anon_sym_BSLASHVref] = ACTIONS(6441), - [anon_sym_BSLASHautoref] = ACTIONS(6441), - [anon_sym_BSLASHpageref] = ACTIONS(6441), - [anon_sym_BSLASHcref] = ACTIONS(6441), - [anon_sym_BSLASHCref] = ACTIONS(6441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnameCref] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHlabelcref] = ACTIONS(6441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCrefrange] = ACTIONS(6441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnewlabel] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6443), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHdef] = ACTIONS(6441), - [anon_sym_BSLASHlet] = ACTIONS(6441), - [anon_sym_BSLASHleft] = ACTIONS(6441), - [anon_sym_BSLASHbig] = ACTIONS(6441), - [anon_sym_BSLASHBig] = ACTIONS(6441), - [anon_sym_BSLASHbigg] = ACTIONS(6441), - [anon_sym_BSLASHBigg] = ACTIONS(6441), - [anon_sym_BSLASHbigl] = ACTIONS(6441), - [anon_sym_BSLASHBigl] = ACTIONS(6441), - [anon_sym_BSLASHbiggl] = ACTIONS(6441), - [anon_sym_BSLASHBiggl] = ACTIONS(6441), - [anon_sym_BSLASHright] = ACTIONS(6441), - [anon_sym_BSLASHbigr] = ACTIONS(6441), - [anon_sym_BSLASHBigr] = ACTIONS(6441), - [anon_sym_BSLASHbiggr] = ACTIONS(6441), - [anon_sym_BSLASHBiggr] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6441), - [anon_sym_BSLASHgls] = ACTIONS(6441), - [anon_sym_BSLASHGls] = ACTIONS(6441), - [anon_sym_BSLASHGLS] = ACTIONS(6441), - [anon_sym_BSLASHglspl] = ACTIONS(6441), - [anon_sym_BSLASHGlspl] = ACTIONS(6441), - [anon_sym_BSLASHGLSpl] = ACTIONS(6441), - [anon_sym_BSLASHglsdisp] = ACTIONS(6441), - [anon_sym_BSLASHglslink] = ACTIONS(6441), - [anon_sym_BSLASHglstext] = ACTIONS(6441), - [anon_sym_BSLASHGlstext] = ACTIONS(6441), - [anon_sym_BSLASHGLStext] = ACTIONS(6441), - [anon_sym_BSLASHglsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6441), - [anon_sym_BSLASHglsplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSplural] = ACTIONS(6441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHglsname] = ACTIONS(6441), - [anon_sym_BSLASHGlsname] = ACTIONS(6441), - [anon_sym_BSLASHGLSname] = ACTIONS(6441), - [anon_sym_BSLASHglssymbol] = ACTIONS(6441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6441), - [anon_sym_BSLASHglsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6441), - [anon_sym_BSLASHglsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6441), - [anon_sym_BSLASHglsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6441), - [anon_sym_BSLASHglsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6441), - [anon_sym_BSLASHglsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6441), - [anon_sym_BSLASHnewacronym] = ACTIONS(6441), - [anon_sym_BSLASHacrshort] = ACTIONS(6441), - [anon_sym_BSLASHAcrshort] = ACTIONS(6441), - [anon_sym_BSLASHACRshort] = ACTIONS(6441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6441), - [anon_sym_BSLASHacrlong] = ACTIONS(6441), - [anon_sym_BSLASHAcrlong] = ACTIONS(6441), - [anon_sym_BSLASHACRlong] = ACTIONS(6441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6441), - [anon_sym_BSLASHacrfull] = ACTIONS(6441), - [anon_sym_BSLASHAcrfull] = ACTIONS(6441), - [anon_sym_BSLASHACRfull] = ACTIONS(6441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6441), - [anon_sym_BSLASHacs] = ACTIONS(6441), - [anon_sym_BSLASHAcs] = ACTIONS(6441), - [anon_sym_BSLASHacsp] = ACTIONS(6441), - [anon_sym_BSLASHAcsp] = ACTIONS(6441), - [anon_sym_BSLASHacl] = ACTIONS(6441), - [anon_sym_BSLASHAcl] = ACTIONS(6441), - [anon_sym_BSLASHaclp] = ACTIONS(6441), - [anon_sym_BSLASHAclp] = ACTIONS(6441), - [anon_sym_BSLASHacf] = ACTIONS(6441), - [anon_sym_BSLASHAcf] = ACTIONS(6441), - [anon_sym_BSLASHacfp] = ACTIONS(6441), - [anon_sym_BSLASHAcfp] = ACTIONS(6441), - [anon_sym_BSLASHac] = ACTIONS(6441), - [anon_sym_BSLASHAc] = ACTIONS(6441), - [anon_sym_BSLASHacp] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6441), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6441), - [anon_sym_BSLASHcolor] = ACTIONS(6441), - [anon_sym_BSLASHcolorbox] = ACTIONS(6441), - [anon_sym_BSLASHtextcolor] = ACTIONS(6441), - [anon_sym_BSLASHpagecolor] = ACTIONS(6441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6441), - [anon_sym_BSLASHtext] = ACTIONS(6441), - [anon_sym_BSLASHintertext] = ACTIONS(6441), - [anon_sym_shortintertext] = ACTIONS(6441), - }, - [604] = { - [sym_command_name] = ACTIONS(6445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6445), - [anon_sym_LBRACK] = ACTIONS(6447), - [anon_sym_RBRACK] = ACTIONS(6447), - [anon_sym_COMMA] = ACTIONS(6447), - [anon_sym_EQ] = ACTIONS(6447), - [anon_sym_LPAREN] = ACTIONS(6447), - [anon_sym_RPAREN] = ACTIONS(6447), - [anon_sym_BSLASHpart] = ACTIONS(6445), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddpart] = ACTIONS(6445), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6447), - [anon_sym_BSLASHchapter] = ACTIONS(6445), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddchap] = ACTIONS(6445), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsection] = ACTIONS(6445), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddsec] = ACTIONS(6445), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubsection] = ACTIONS(6445), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6445), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHparagraph] = ACTIONS(6445), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6445), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6447), - [anon_sym_BSLASHitem] = ACTIONS(6445), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6447), - [anon_sym_LBRACE] = ACTIONS(6447), - [sym_word] = ACTIONS(6445), - [sym_placeholder] = ACTIONS(6447), - [anon_sym_PLUS] = ACTIONS(6447), - [anon_sym_DASH] = ACTIONS(6447), - [anon_sym_STAR] = ACTIONS(6447), - [anon_sym_SLASH] = ACTIONS(6447), - [anon_sym_LT] = ACTIONS(6445), - [anon_sym_GT] = ACTIONS(6445), - [anon_sym_BANG] = ACTIONS(6445), - [anon_sym_PIPE] = ACTIONS(6445), - [anon_sym_COLON] = ACTIONS(6445), - [anon_sym_SQUOTE] = ACTIONS(6445), - [anon_sym__] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6447), - [anon_sym_DOLLAR] = ACTIONS(6445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6447), - [anon_sym_BSLASHbegin] = ACTIONS(6445), - [anon_sym_BSLASHtitle] = ACTIONS(6445), - [anon_sym_BSLASHauthor] = ACTIONS(6445), - [anon_sym_BSLASHusepackage] = ACTIONS(6445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6445), - [anon_sym_BSLASHinclude] = ACTIONS(6445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6445), - [anon_sym_BSLASHinput] = ACTIONS(6445), - [anon_sym_BSLASHsubfile] = ACTIONS(6445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6445), - [anon_sym_BSLASHbibliography] = ACTIONS(6445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6445), - [anon_sym_BSLASHincludesvg] = ACTIONS(6445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6445), - [anon_sym_BSLASHimport] = ACTIONS(6445), - [anon_sym_BSLASHsubimport] = ACTIONS(6445), - [anon_sym_BSLASHinputfrom] = ACTIONS(6445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6445), - [anon_sym_BSLASHincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHcaption] = ACTIONS(6445), - [anon_sym_BSLASHcite] = ACTIONS(6445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCite] = ACTIONS(6445), - [anon_sym_BSLASHnocite] = ACTIONS(6445), - [anon_sym_BSLASHcitet] = ACTIONS(6445), - [anon_sym_BSLASHcitep] = ACTIONS(6445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteauthor] = ACTIONS(6445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitetitle] = ACTIONS(6445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteyear] = ACTIONS(6445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitedate] = ACTIONS(6445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteurl] = ACTIONS(6445), - [anon_sym_BSLASHfullcite] = ACTIONS(6445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6445), - [anon_sym_BSLASHcitealt] = ACTIONS(6445), - [anon_sym_BSLASHcitealp] = ACTIONS(6445), - [anon_sym_BSLASHcitetext] = ACTIONS(6445), - [anon_sym_BSLASHparencite] = ACTIONS(6445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHParencite] = ACTIONS(6445), - [anon_sym_BSLASHfootcite] = ACTIONS(6445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6445), - [anon_sym_BSLASHtextcite] = ACTIONS(6445), - [anon_sym_BSLASHTextcite] = ACTIONS(6445), - [anon_sym_BSLASHsmartcite] = ACTIONS(6445), - [anon_sym_BSLASHSmartcite] = ACTIONS(6445), - [anon_sym_BSLASHsupercite] = ACTIONS(6445), - [anon_sym_BSLASHautocite] = ACTIONS(6445), - [anon_sym_BSLASHAutocite] = ACTIONS(6445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHvolcite] = ACTIONS(6445), - [anon_sym_BSLASHVolcite] = ACTIONS(6445), - [anon_sym_BSLASHpvolcite] = ACTIONS(6445), - [anon_sym_BSLASHPvolcite] = ACTIONS(6445), - [anon_sym_BSLASHfvolcite] = ACTIONS(6445), - [anon_sym_BSLASHftvolcite] = ACTIONS(6445), - [anon_sym_BSLASHsvolcite] = ACTIONS(6445), - [anon_sym_BSLASHSvolcite] = ACTIONS(6445), - [anon_sym_BSLASHtvolcite] = ACTIONS(6445), - [anon_sym_BSLASHTvolcite] = ACTIONS(6445), - [anon_sym_BSLASHavolcite] = ACTIONS(6445), - [anon_sym_BSLASHAvolcite] = ACTIONS(6445), - [anon_sym_BSLASHnotecite] = ACTIONS(6445), - [anon_sym_BSLASHNotecite] = ACTIONS(6445), - [anon_sym_BSLASHpnotecite] = ACTIONS(6445), - [anon_sym_BSLASHPnotecite] = ACTIONS(6445), - [anon_sym_BSLASHfnotecite] = ACTIONS(6445), - [anon_sym_BSLASHlabel] = ACTIONS(6445), - [anon_sym_BSLASHref] = ACTIONS(6445), - [anon_sym_BSLASHeqref] = ACTIONS(6445), - [anon_sym_BSLASHvref] = ACTIONS(6445), - [anon_sym_BSLASHVref] = ACTIONS(6445), - [anon_sym_BSLASHautoref] = ACTIONS(6445), - [anon_sym_BSLASHpageref] = ACTIONS(6445), - [anon_sym_BSLASHcref] = ACTIONS(6445), - [anon_sym_BSLASHCref] = ACTIONS(6445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnameCref] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHlabelcref] = ACTIONS(6445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCrefrange] = ACTIONS(6445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnewlabel] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6447), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHdef] = ACTIONS(6445), - [anon_sym_BSLASHlet] = ACTIONS(6445), - [anon_sym_BSLASHleft] = ACTIONS(6445), - [anon_sym_BSLASHbig] = ACTIONS(6445), - [anon_sym_BSLASHBig] = ACTIONS(6445), - [anon_sym_BSLASHbigg] = ACTIONS(6445), - [anon_sym_BSLASHBigg] = ACTIONS(6445), - [anon_sym_BSLASHbigl] = ACTIONS(6445), - [anon_sym_BSLASHBigl] = ACTIONS(6445), - [anon_sym_BSLASHbiggl] = ACTIONS(6445), - [anon_sym_BSLASHBiggl] = ACTIONS(6445), - [anon_sym_BSLASHright] = ACTIONS(6445), - [anon_sym_BSLASHbigr] = ACTIONS(6445), - [anon_sym_BSLASHBigr] = ACTIONS(6445), - [anon_sym_BSLASHbiggr] = ACTIONS(6445), - [anon_sym_BSLASHBiggr] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6445), - [anon_sym_BSLASHgls] = ACTIONS(6445), - [anon_sym_BSLASHGls] = ACTIONS(6445), - [anon_sym_BSLASHGLS] = ACTIONS(6445), - [anon_sym_BSLASHglspl] = ACTIONS(6445), - [anon_sym_BSLASHGlspl] = ACTIONS(6445), - [anon_sym_BSLASHGLSpl] = ACTIONS(6445), - [anon_sym_BSLASHglsdisp] = ACTIONS(6445), - [anon_sym_BSLASHglslink] = ACTIONS(6445), - [anon_sym_BSLASHglstext] = ACTIONS(6445), - [anon_sym_BSLASHGlstext] = ACTIONS(6445), - [anon_sym_BSLASHGLStext] = ACTIONS(6445), - [anon_sym_BSLASHglsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6445), - [anon_sym_BSLASHglsplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSplural] = ACTIONS(6445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHglsname] = ACTIONS(6445), - [anon_sym_BSLASHGlsname] = ACTIONS(6445), - [anon_sym_BSLASHGLSname] = ACTIONS(6445), - [anon_sym_BSLASHglssymbol] = ACTIONS(6445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6445), - [anon_sym_BSLASHglsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6445), - [anon_sym_BSLASHglsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6445), - [anon_sym_BSLASHglsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6445), - [anon_sym_BSLASHglsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6445), - [anon_sym_BSLASHglsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6445), - [anon_sym_BSLASHnewacronym] = ACTIONS(6445), - [anon_sym_BSLASHacrshort] = ACTIONS(6445), - [anon_sym_BSLASHAcrshort] = ACTIONS(6445), - [anon_sym_BSLASHACRshort] = ACTIONS(6445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6445), - [anon_sym_BSLASHacrlong] = ACTIONS(6445), - [anon_sym_BSLASHAcrlong] = ACTIONS(6445), - [anon_sym_BSLASHACRlong] = ACTIONS(6445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6445), - [anon_sym_BSLASHacrfull] = ACTIONS(6445), - [anon_sym_BSLASHAcrfull] = ACTIONS(6445), - [anon_sym_BSLASHACRfull] = ACTIONS(6445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6445), - [anon_sym_BSLASHacs] = ACTIONS(6445), - [anon_sym_BSLASHAcs] = ACTIONS(6445), - [anon_sym_BSLASHacsp] = ACTIONS(6445), - [anon_sym_BSLASHAcsp] = ACTIONS(6445), - [anon_sym_BSLASHacl] = ACTIONS(6445), - [anon_sym_BSLASHAcl] = ACTIONS(6445), - [anon_sym_BSLASHaclp] = ACTIONS(6445), - [anon_sym_BSLASHAclp] = ACTIONS(6445), - [anon_sym_BSLASHacf] = ACTIONS(6445), - [anon_sym_BSLASHAcf] = ACTIONS(6445), - [anon_sym_BSLASHacfp] = ACTIONS(6445), - [anon_sym_BSLASHAcfp] = ACTIONS(6445), - [anon_sym_BSLASHac] = ACTIONS(6445), - [anon_sym_BSLASHAc] = ACTIONS(6445), - [anon_sym_BSLASHacp] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6445), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6445), - [anon_sym_BSLASHcolor] = ACTIONS(6445), - [anon_sym_BSLASHcolorbox] = ACTIONS(6445), - [anon_sym_BSLASHtextcolor] = ACTIONS(6445), - [anon_sym_BSLASHpagecolor] = ACTIONS(6445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6445), - [anon_sym_BSLASHtext] = ACTIONS(6445), - [anon_sym_BSLASHintertext] = ACTIONS(6445), - [anon_sym_shortintertext] = ACTIONS(6445), - }, - [605] = { - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(455), - [aux_sym__section_repeat6] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(5862), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [anon_sym_RBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [606] = { - [sym__enum_itemdeclaration] = STATE(249), - [sym_enum_item] = STATE(453), - [aux_sym__section_repeat8] = STATE(453), - [ts_builtin_sym_end] = ACTIONS(5866), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(5866), - [anon_sym_RBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [607] = { - [sym__subparagraph_declaration] = STATE(237), - [sym_subparagraph] = STATE(454), - [aux_sym__section_repeat7] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(5866), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [anon_sym_RBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [608] = { - [sym__paragraph_declaration] = STATE(227), - [sym_paragraph] = STATE(455), - [aux_sym__section_repeat6] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(5866), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [anon_sym_RBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [609] = { - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(456), - [aux_sym__section_repeat5] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(5866), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [anon_sym_RBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [610] = { - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(457), - [aux_sym__section_repeat4] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(5866), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [anon_sym_RBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [611] = { - [sym__section_declaration] = STATE(197), - [sym_section] = STATE(458), - [aux_sym__section_repeat3] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(5866), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [anon_sym_RBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [612] = { - [sym__chapter_declaration] = STATE(186), - [sym_chapter] = STATE(459), - [aux_sym__section_repeat2] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(5866), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [anon_sym_RBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [613] = { - [sym__part_declaration] = STATE(178), - [sym_part] = STATE(460), - [aux_sym__section_repeat1] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(5866), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [anon_sym_RBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [614] = { - [sym_command_name] = ACTIONS(6449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6449), - [anon_sym_LBRACK] = ACTIONS(6451), - [anon_sym_RBRACK] = ACTIONS(6451), - [anon_sym_COMMA] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(6451), - [anon_sym_LPAREN] = ACTIONS(6451), - [anon_sym_RPAREN] = ACTIONS(6451), - [anon_sym_BSLASHpart] = ACTIONS(6449), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddpart] = ACTIONS(6449), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6451), - [anon_sym_BSLASHchapter] = ACTIONS(6449), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddchap] = ACTIONS(6449), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsection] = ACTIONS(6449), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddsec] = ACTIONS(6449), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubsection] = ACTIONS(6449), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6449), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHparagraph] = ACTIONS(6449), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6449), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6451), - [anon_sym_BSLASHitem] = ACTIONS(6449), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6451), - [anon_sym_LBRACE] = ACTIONS(6451), - [sym_word] = ACTIONS(6449), - [sym_placeholder] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6451), - [anon_sym_DASH] = ACTIONS(6451), - [anon_sym_STAR] = ACTIONS(6451), - [anon_sym_SLASH] = ACTIONS(6451), - [anon_sym_LT] = ACTIONS(6449), - [anon_sym_GT] = ACTIONS(6449), - [anon_sym_BANG] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6449), - [anon_sym_COLON] = ACTIONS(6449), - [anon_sym_SQUOTE] = ACTIONS(6449), - [anon_sym__] = ACTIONS(6451), - [anon_sym_CARET] = ACTIONS(6451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6451), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6451), - [anon_sym_DOLLAR] = ACTIONS(6449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6451), - [anon_sym_BSLASHbegin] = ACTIONS(6449), - [anon_sym_BSLASHtitle] = ACTIONS(6449), - [anon_sym_BSLASHauthor] = ACTIONS(6449), - [anon_sym_BSLASHusepackage] = ACTIONS(6449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6449), - [anon_sym_BSLASHinclude] = ACTIONS(6449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6449), - [anon_sym_BSLASHinput] = ACTIONS(6449), - [anon_sym_BSLASHsubfile] = ACTIONS(6449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6449), - [anon_sym_BSLASHbibliography] = ACTIONS(6449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6449), - [anon_sym_BSLASHincludesvg] = ACTIONS(6449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6449), - [anon_sym_BSLASHimport] = ACTIONS(6449), - [anon_sym_BSLASHsubimport] = ACTIONS(6449), - [anon_sym_BSLASHinputfrom] = ACTIONS(6449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6449), - [anon_sym_BSLASHincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHcaption] = ACTIONS(6449), - [anon_sym_BSLASHcite] = ACTIONS(6449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCite] = ACTIONS(6449), - [anon_sym_BSLASHnocite] = ACTIONS(6449), - [anon_sym_BSLASHcitet] = ACTIONS(6449), - [anon_sym_BSLASHcitep] = ACTIONS(6449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteauthor] = ACTIONS(6449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitetitle] = ACTIONS(6449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteyear] = ACTIONS(6449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitedate] = ACTIONS(6449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteurl] = ACTIONS(6449), - [anon_sym_BSLASHfullcite] = ACTIONS(6449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6449), - [anon_sym_BSLASHcitealt] = ACTIONS(6449), - [anon_sym_BSLASHcitealp] = ACTIONS(6449), - [anon_sym_BSLASHcitetext] = ACTIONS(6449), - [anon_sym_BSLASHparencite] = ACTIONS(6449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHParencite] = ACTIONS(6449), - [anon_sym_BSLASHfootcite] = ACTIONS(6449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6449), - [anon_sym_BSLASHtextcite] = ACTIONS(6449), - [anon_sym_BSLASHTextcite] = ACTIONS(6449), - [anon_sym_BSLASHsmartcite] = ACTIONS(6449), - [anon_sym_BSLASHSmartcite] = ACTIONS(6449), - [anon_sym_BSLASHsupercite] = ACTIONS(6449), - [anon_sym_BSLASHautocite] = ACTIONS(6449), - [anon_sym_BSLASHAutocite] = ACTIONS(6449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHvolcite] = ACTIONS(6449), - [anon_sym_BSLASHVolcite] = ACTIONS(6449), - [anon_sym_BSLASHpvolcite] = ACTIONS(6449), - [anon_sym_BSLASHPvolcite] = ACTIONS(6449), - [anon_sym_BSLASHfvolcite] = ACTIONS(6449), - [anon_sym_BSLASHftvolcite] = ACTIONS(6449), - [anon_sym_BSLASHsvolcite] = ACTIONS(6449), - [anon_sym_BSLASHSvolcite] = ACTIONS(6449), - [anon_sym_BSLASHtvolcite] = ACTIONS(6449), - [anon_sym_BSLASHTvolcite] = ACTIONS(6449), - [anon_sym_BSLASHavolcite] = ACTIONS(6449), - [anon_sym_BSLASHAvolcite] = ACTIONS(6449), - [anon_sym_BSLASHnotecite] = ACTIONS(6449), - [anon_sym_BSLASHNotecite] = ACTIONS(6449), - [anon_sym_BSLASHpnotecite] = ACTIONS(6449), - [anon_sym_BSLASHPnotecite] = ACTIONS(6449), - [anon_sym_BSLASHfnotecite] = ACTIONS(6449), - [anon_sym_BSLASHlabel] = ACTIONS(6449), - [anon_sym_BSLASHref] = ACTIONS(6449), - [anon_sym_BSLASHeqref] = ACTIONS(6449), - [anon_sym_BSLASHvref] = ACTIONS(6449), - [anon_sym_BSLASHVref] = ACTIONS(6449), - [anon_sym_BSLASHautoref] = ACTIONS(6449), - [anon_sym_BSLASHpageref] = ACTIONS(6449), - [anon_sym_BSLASHcref] = ACTIONS(6449), - [anon_sym_BSLASHCref] = ACTIONS(6449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnameCref] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHlabelcref] = ACTIONS(6449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCrefrange] = ACTIONS(6449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnewlabel] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6451), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHdef] = ACTIONS(6449), - [anon_sym_BSLASHlet] = ACTIONS(6449), - [anon_sym_BSLASHleft] = ACTIONS(6449), - [anon_sym_BSLASHbig] = ACTIONS(6449), - [anon_sym_BSLASHBig] = ACTIONS(6449), - [anon_sym_BSLASHbigg] = ACTIONS(6449), - [anon_sym_BSLASHBigg] = ACTIONS(6449), - [anon_sym_BSLASHbigl] = ACTIONS(6449), - [anon_sym_BSLASHBigl] = ACTIONS(6449), - [anon_sym_BSLASHbiggl] = ACTIONS(6449), - [anon_sym_BSLASHBiggl] = ACTIONS(6449), - [anon_sym_BSLASHright] = ACTIONS(6449), - [anon_sym_BSLASHbigr] = ACTIONS(6449), - [anon_sym_BSLASHBigr] = ACTIONS(6449), - [anon_sym_BSLASHbiggr] = ACTIONS(6449), - [anon_sym_BSLASHBiggr] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6449), - [anon_sym_BSLASHgls] = ACTIONS(6449), - [anon_sym_BSLASHGls] = ACTIONS(6449), - [anon_sym_BSLASHGLS] = ACTIONS(6449), - [anon_sym_BSLASHglspl] = ACTIONS(6449), - [anon_sym_BSLASHGlspl] = ACTIONS(6449), - [anon_sym_BSLASHGLSpl] = ACTIONS(6449), - [anon_sym_BSLASHglsdisp] = ACTIONS(6449), - [anon_sym_BSLASHglslink] = ACTIONS(6449), - [anon_sym_BSLASHglstext] = ACTIONS(6449), - [anon_sym_BSLASHGlstext] = ACTIONS(6449), - [anon_sym_BSLASHGLStext] = ACTIONS(6449), - [anon_sym_BSLASHglsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6449), - [anon_sym_BSLASHglsplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSplural] = ACTIONS(6449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHglsname] = ACTIONS(6449), - [anon_sym_BSLASHGlsname] = ACTIONS(6449), - [anon_sym_BSLASHGLSname] = ACTIONS(6449), - [anon_sym_BSLASHglssymbol] = ACTIONS(6449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6449), - [anon_sym_BSLASHglsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6449), - [anon_sym_BSLASHglsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6449), - [anon_sym_BSLASHglsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6449), - [anon_sym_BSLASHglsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6449), - [anon_sym_BSLASHglsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6449), - [anon_sym_BSLASHnewacronym] = ACTIONS(6449), - [anon_sym_BSLASHacrshort] = ACTIONS(6449), - [anon_sym_BSLASHAcrshort] = ACTIONS(6449), - [anon_sym_BSLASHACRshort] = ACTIONS(6449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6449), - [anon_sym_BSLASHacrlong] = ACTIONS(6449), - [anon_sym_BSLASHAcrlong] = ACTIONS(6449), - [anon_sym_BSLASHACRlong] = ACTIONS(6449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6449), - [anon_sym_BSLASHacrfull] = ACTIONS(6449), - [anon_sym_BSLASHAcrfull] = ACTIONS(6449), - [anon_sym_BSLASHACRfull] = ACTIONS(6449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6449), - [anon_sym_BSLASHacs] = ACTIONS(6449), - [anon_sym_BSLASHAcs] = ACTIONS(6449), - [anon_sym_BSLASHacsp] = ACTIONS(6449), - [anon_sym_BSLASHAcsp] = ACTIONS(6449), - [anon_sym_BSLASHacl] = ACTIONS(6449), - [anon_sym_BSLASHAcl] = ACTIONS(6449), - [anon_sym_BSLASHaclp] = ACTIONS(6449), - [anon_sym_BSLASHAclp] = ACTIONS(6449), - [anon_sym_BSLASHacf] = ACTIONS(6449), - [anon_sym_BSLASHAcf] = ACTIONS(6449), - [anon_sym_BSLASHacfp] = ACTIONS(6449), - [anon_sym_BSLASHAcfp] = ACTIONS(6449), - [anon_sym_BSLASHac] = ACTIONS(6449), - [anon_sym_BSLASHAc] = ACTIONS(6449), - [anon_sym_BSLASHacp] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6449), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6449), - [anon_sym_BSLASHcolor] = ACTIONS(6449), - [anon_sym_BSLASHcolorbox] = ACTIONS(6449), - [anon_sym_BSLASHtextcolor] = ACTIONS(6449), - [anon_sym_BSLASHpagecolor] = ACTIONS(6449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6449), - [anon_sym_BSLASHtext] = ACTIONS(6449), - [anon_sym_BSLASHintertext] = ACTIONS(6449), - [anon_sym_shortintertext] = ACTIONS(6449), - }, - [615] = { - [sym_command_name] = ACTIONS(6453), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6453), - [anon_sym_LBRACK] = ACTIONS(6455), - [anon_sym_RBRACK] = ACTIONS(6455), - [anon_sym_COMMA] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(6455), - [anon_sym_LPAREN] = ACTIONS(6455), - [anon_sym_RPAREN] = ACTIONS(6455), - [anon_sym_BSLASHpart] = ACTIONS(6453), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddpart] = ACTIONS(6453), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6455), - [anon_sym_BSLASHchapter] = ACTIONS(6453), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddchap] = ACTIONS(6453), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsection] = ACTIONS(6453), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddsec] = ACTIONS(6453), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubsection] = ACTIONS(6453), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6453), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHparagraph] = ACTIONS(6453), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6453), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6455), - [anon_sym_BSLASHitem] = ACTIONS(6453), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6455), - [anon_sym_LBRACE] = ACTIONS(6455), - [sym_word] = ACTIONS(6453), - [sym_placeholder] = ACTIONS(6455), - [anon_sym_PLUS] = ACTIONS(6455), - [anon_sym_DASH] = ACTIONS(6455), - [anon_sym_STAR] = ACTIONS(6455), - [anon_sym_SLASH] = ACTIONS(6455), - [anon_sym_LT] = ACTIONS(6453), - [anon_sym_GT] = ACTIONS(6453), - [anon_sym_BANG] = ACTIONS(6453), - [anon_sym_PIPE] = ACTIONS(6453), - [anon_sym_COLON] = ACTIONS(6453), - [anon_sym_SQUOTE] = ACTIONS(6453), - [anon_sym__] = ACTIONS(6455), - [anon_sym_CARET] = ACTIONS(6455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6455), - [anon_sym_DOLLAR] = ACTIONS(6453), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6455), - [anon_sym_BSLASHbegin] = ACTIONS(6453), - [anon_sym_BSLASHtitle] = ACTIONS(6453), - [anon_sym_BSLASHauthor] = ACTIONS(6453), - [anon_sym_BSLASHusepackage] = ACTIONS(6453), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6453), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6453), - [anon_sym_BSLASHinclude] = ACTIONS(6453), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6453), - [anon_sym_BSLASHinput] = ACTIONS(6453), - [anon_sym_BSLASHsubfile] = ACTIONS(6453), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6453), - [anon_sym_BSLASHbibliography] = ACTIONS(6453), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6453), - [anon_sym_BSLASHincludesvg] = ACTIONS(6453), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6453), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6453), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6453), - [anon_sym_BSLASHimport] = ACTIONS(6453), - [anon_sym_BSLASHsubimport] = ACTIONS(6453), - [anon_sym_BSLASHinputfrom] = ACTIONS(6453), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6453), - [anon_sym_BSLASHincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHcaption] = ACTIONS(6453), - [anon_sym_BSLASHcite] = ACTIONS(6453), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCite] = ACTIONS(6453), - [anon_sym_BSLASHnocite] = ACTIONS(6453), - [anon_sym_BSLASHcitet] = ACTIONS(6453), - [anon_sym_BSLASHcitep] = ACTIONS(6453), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteauthor] = ACTIONS(6453), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6453), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitetitle] = ACTIONS(6453), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteyear] = ACTIONS(6453), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitedate] = ACTIONS(6453), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteurl] = ACTIONS(6453), - [anon_sym_BSLASHfullcite] = ACTIONS(6453), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6453), - [anon_sym_BSLASHcitealt] = ACTIONS(6453), - [anon_sym_BSLASHcitealp] = ACTIONS(6453), - [anon_sym_BSLASHcitetext] = ACTIONS(6453), - [anon_sym_BSLASHparencite] = ACTIONS(6453), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHParencite] = ACTIONS(6453), - [anon_sym_BSLASHfootcite] = ACTIONS(6453), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6453), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6453), - [anon_sym_BSLASHtextcite] = ACTIONS(6453), - [anon_sym_BSLASHTextcite] = ACTIONS(6453), - [anon_sym_BSLASHsmartcite] = ACTIONS(6453), - [anon_sym_BSLASHSmartcite] = ACTIONS(6453), - [anon_sym_BSLASHsupercite] = ACTIONS(6453), - [anon_sym_BSLASHautocite] = ACTIONS(6453), - [anon_sym_BSLASHAutocite] = ACTIONS(6453), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHvolcite] = ACTIONS(6453), - [anon_sym_BSLASHVolcite] = ACTIONS(6453), - [anon_sym_BSLASHpvolcite] = ACTIONS(6453), - [anon_sym_BSLASHPvolcite] = ACTIONS(6453), - [anon_sym_BSLASHfvolcite] = ACTIONS(6453), - [anon_sym_BSLASHftvolcite] = ACTIONS(6453), - [anon_sym_BSLASHsvolcite] = ACTIONS(6453), - [anon_sym_BSLASHSvolcite] = ACTIONS(6453), - [anon_sym_BSLASHtvolcite] = ACTIONS(6453), - [anon_sym_BSLASHTvolcite] = ACTIONS(6453), - [anon_sym_BSLASHavolcite] = ACTIONS(6453), - [anon_sym_BSLASHAvolcite] = ACTIONS(6453), - [anon_sym_BSLASHnotecite] = ACTIONS(6453), - [anon_sym_BSLASHNotecite] = ACTIONS(6453), - [anon_sym_BSLASHpnotecite] = ACTIONS(6453), - [anon_sym_BSLASHPnotecite] = ACTIONS(6453), - [anon_sym_BSLASHfnotecite] = ACTIONS(6453), - [anon_sym_BSLASHlabel] = ACTIONS(6453), - [anon_sym_BSLASHref] = ACTIONS(6453), - [anon_sym_BSLASHeqref] = ACTIONS(6453), - [anon_sym_BSLASHvref] = ACTIONS(6453), - [anon_sym_BSLASHVref] = ACTIONS(6453), - [anon_sym_BSLASHautoref] = ACTIONS(6453), - [anon_sym_BSLASHpageref] = ACTIONS(6453), - [anon_sym_BSLASHcref] = ACTIONS(6453), - [anon_sym_BSLASHCref] = ACTIONS(6453), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnameCref] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHlabelcref] = ACTIONS(6453), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCrefrange] = ACTIONS(6453), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnewlabel] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6453), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6453), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6455), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHdef] = ACTIONS(6453), - [anon_sym_BSLASHlet] = ACTIONS(6453), - [anon_sym_BSLASHleft] = ACTIONS(6453), - [anon_sym_BSLASHbig] = ACTIONS(6453), - [anon_sym_BSLASHBig] = ACTIONS(6453), - [anon_sym_BSLASHbigg] = ACTIONS(6453), - [anon_sym_BSLASHBigg] = ACTIONS(6453), - [anon_sym_BSLASHbigl] = ACTIONS(6453), - [anon_sym_BSLASHBigl] = ACTIONS(6453), - [anon_sym_BSLASHbiggl] = ACTIONS(6453), - [anon_sym_BSLASHBiggl] = ACTIONS(6453), - [anon_sym_BSLASHright] = ACTIONS(6453), - [anon_sym_BSLASHbigr] = ACTIONS(6453), - [anon_sym_BSLASHBigr] = ACTIONS(6453), - [anon_sym_BSLASHbiggr] = ACTIONS(6453), - [anon_sym_BSLASHBiggr] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6453), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6453), - [anon_sym_BSLASHgls] = ACTIONS(6453), - [anon_sym_BSLASHGls] = ACTIONS(6453), - [anon_sym_BSLASHGLS] = ACTIONS(6453), - [anon_sym_BSLASHglspl] = ACTIONS(6453), - [anon_sym_BSLASHGlspl] = ACTIONS(6453), - [anon_sym_BSLASHGLSpl] = ACTIONS(6453), - [anon_sym_BSLASHglsdisp] = ACTIONS(6453), - [anon_sym_BSLASHglslink] = ACTIONS(6453), - [anon_sym_BSLASHglstext] = ACTIONS(6453), - [anon_sym_BSLASHGlstext] = ACTIONS(6453), - [anon_sym_BSLASHGLStext] = ACTIONS(6453), - [anon_sym_BSLASHglsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6453), - [anon_sym_BSLASHglsplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSplural] = ACTIONS(6453), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHglsname] = ACTIONS(6453), - [anon_sym_BSLASHGlsname] = ACTIONS(6453), - [anon_sym_BSLASHGLSname] = ACTIONS(6453), - [anon_sym_BSLASHglssymbol] = ACTIONS(6453), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6453), - [anon_sym_BSLASHglsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6453), - [anon_sym_BSLASHglsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6453), - [anon_sym_BSLASHglsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6453), - [anon_sym_BSLASHglsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6453), - [anon_sym_BSLASHglsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6453), - [anon_sym_BSLASHnewacronym] = ACTIONS(6453), - [anon_sym_BSLASHacrshort] = ACTIONS(6453), - [anon_sym_BSLASHAcrshort] = ACTIONS(6453), - [anon_sym_BSLASHACRshort] = ACTIONS(6453), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6453), - [anon_sym_BSLASHacrlong] = ACTIONS(6453), - [anon_sym_BSLASHAcrlong] = ACTIONS(6453), - [anon_sym_BSLASHACRlong] = ACTIONS(6453), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6453), - [anon_sym_BSLASHacrfull] = ACTIONS(6453), - [anon_sym_BSLASHAcrfull] = ACTIONS(6453), - [anon_sym_BSLASHACRfull] = ACTIONS(6453), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6453), - [anon_sym_BSLASHacs] = ACTIONS(6453), - [anon_sym_BSLASHAcs] = ACTIONS(6453), - [anon_sym_BSLASHacsp] = ACTIONS(6453), - [anon_sym_BSLASHAcsp] = ACTIONS(6453), - [anon_sym_BSLASHacl] = ACTIONS(6453), - [anon_sym_BSLASHAcl] = ACTIONS(6453), - [anon_sym_BSLASHaclp] = ACTIONS(6453), - [anon_sym_BSLASHAclp] = ACTIONS(6453), - [anon_sym_BSLASHacf] = ACTIONS(6453), - [anon_sym_BSLASHAcf] = ACTIONS(6453), - [anon_sym_BSLASHacfp] = ACTIONS(6453), - [anon_sym_BSLASHAcfp] = ACTIONS(6453), - [anon_sym_BSLASHac] = ACTIONS(6453), - [anon_sym_BSLASHAc] = ACTIONS(6453), - [anon_sym_BSLASHacp] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6453), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6453), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6453), - [anon_sym_BSLASHcolor] = ACTIONS(6453), - [anon_sym_BSLASHcolorbox] = ACTIONS(6453), - [anon_sym_BSLASHtextcolor] = ACTIONS(6453), - [anon_sym_BSLASHpagecolor] = ACTIONS(6453), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6453), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6453), - [anon_sym_BSLASHtext] = ACTIONS(6453), - [anon_sym_BSLASHintertext] = ACTIONS(6453), - [anon_sym_shortintertext] = ACTIONS(6453), - }, - [616] = { - [sym_command_name] = ACTIONS(6457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6457), - [anon_sym_LBRACK] = ACTIONS(6459), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(6459), - [anon_sym_LPAREN] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_BSLASHpart] = ACTIONS(6457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddpart] = ACTIONS(6457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6459), - [anon_sym_BSLASHchapter] = ACTIONS(6457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddchap] = ACTIONS(6457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsection] = ACTIONS(6457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddsec] = ACTIONS(6457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubsection] = ACTIONS(6457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHparagraph] = ACTIONS(6457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6459), - [anon_sym_BSLASHitem] = ACTIONS(6457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6459), - [anon_sym_LBRACE] = ACTIONS(6459), - [sym_word] = ACTIONS(6457), - [sym_placeholder] = ACTIONS(6459), - [anon_sym_PLUS] = ACTIONS(6459), - [anon_sym_DASH] = ACTIONS(6459), - [anon_sym_STAR] = ACTIONS(6459), - [anon_sym_SLASH] = ACTIONS(6459), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_BANG] = ACTIONS(6457), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_SQUOTE] = ACTIONS(6457), - [anon_sym__] = ACTIONS(6459), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6459), - [anon_sym_DOLLAR] = ACTIONS(6457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6459), - [anon_sym_BSLASHbegin] = ACTIONS(6457), - [anon_sym_BSLASHtitle] = ACTIONS(6457), - [anon_sym_BSLASHauthor] = ACTIONS(6457), - [anon_sym_BSLASHusepackage] = ACTIONS(6457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6457), - [anon_sym_BSLASHinclude] = ACTIONS(6457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6457), - [anon_sym_BSLASHinput] = ACTIONS(6457), - [anon_sym_BSLASHsubfile] = ACTIONS(6457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6457), - [anon_sym_BSLASHbibliography] = ACTIONS(6457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6457), - [anon_sym_BSLASHincludesvg] = ACTIONS(6457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6457), - [anon_sym_BSLASHimport] = ACTIONS(6457), - [anon_sym_BSLASHsubimport] = ACTIONS(6457), - [anon_sym_BSLASHinputfrom] = ACTIONS(6457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6457), - [anon_sym_BSLASHincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHcaption] = ACTIONS(6457), - [anon_sym_BSLASHcite] = ACTIONS(6457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCite] = ACTIONS(6457), - [anon_sym_BSLASHnocite] = ACTIONS(6457), - [anon_sym_BSLASHcitet] = ACTIONS(6457), - [anon_sym_BSLASHcitep] = ACTIONS(6457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteauthor] = ACTIONS(6457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitetitle] = ACTIONS(6457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteyear] = ACTIONS(6457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitedate] = ACTIONS(6457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteurl] = ACTIONS(6457), - [anon_sym_BSLASHfullcite] = ACTIONS(6457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6457), - [anon_sym_BSLASHcitealt] = ACTIONS(6457), - [anon_sym_BSLASHcitealp] = ACTIONS(6457), - [anon_sym_BSLASHcitetext] = ACTIONS(6457), - [anon_sym_BSLASHparencite] = ACTIONS(6457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHParencite] = ACTIONS(6457), - [anon_sym_BSLASHfootcite] = ACTIONS(6457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6457), - [anon_sym_BSLASHtextcite] = ACTIONS(6457), - [anon_sym_BSLASHTextcite] = ACTIONS(6457), - [anon_sym_BSLASHsmartcite] = ACTIONS(6457), - [anon_sym_BSLASHSmartcite] = ACTIONS(6457), - [anon_sym_BSLASHsupercite] = ACTIONS(6457), - [anon_sym_BSLASHautocite] = ACTIONS(6457), - [anon_sym_BSLASHAutocite] = ACTIONS(6457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHvolcite] = ACTIONS(6457), - [anon_sym_BSLASHVolcite] = ACTIONS(6457), - [anon_sym_BSLASHpvolcite] = ACTIONS(6457), - [anon_sym_BSLASHPvolcite] = ACTIONS(6457), - [anon_sym_BSLASHfvolcite] = ACTIONS(6457), - [anon_sym_BSLASHftvolcite] = ACTIONS(6457), - [anon_sym_BSLASHsvolcite] = ACTIONS(6457), - [anon_sym_BSLASHSvolcite] = ACTIONS(6457), - [anon_sym_BSLASHtvolcite] = ACTIONS(6457), - [anon_sym_BSLASHTvolcite] = ACTIONS(6457), - [anon_sym_BSLASHavolcite] = ACTIONS(6457), - [anon_sym_BSLASHAvolcite] = ACTIONS(6457), - [anon_sym_BSLASHnotecite] = ACTIONS(6457), - [anon_sym_BSLASHNotecite] = ACTIONS(6457), - [anon_sym_BSLASHpnotecite] = ACTIONS(6457), - [anon_sym_BSLASHPnotecite] = ACTIONS(6457), - [anon_sym_BSLASHfnotecite] = ACTIONS(6457), - [anon_sym_BSLASHlabel] = ACTIONS(6457), - [anon_sym_BSLASHref] = ACTIONS(6457), - [anon_sym_BSLASHeqref] = ACTIONS(6457), - [anon_sym_BSLASHvref] = ACTIONS(6457), - [anon_sym_BSLASHVref] = ACTIONS(6457), - [anon_sym_BSLASHautoref] = ACTIONS(6457), - [anon_sym_BSLASHpageref] = ACTIONS(6457), - [anon_sym_BSLASHcref] = ACTIONS(6457), - [anon_sym_BSLASHCref] = ACTIONS(6457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnameCref] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHlabelcref] = ACTIONS(6457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCrefrange] = ACTIONS(6457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnewlabel] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6459), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHdef] = ACTIONS(6457), - [anon_sym_BSLASHlet] = ACTIONS(6457), - [anon_sym_BSLASHleft] = ACTIONS(6457), - [anon_sym_BSLASHbig] = ACTIONS(6457), - [anon_sym_BSLASHBig] = ACTIONS(6457), - [anon_sym_BSLASHbigg] = ACTIONS(6457), - [anon_sym_BSLASHBigg] = ACTIONS(6457), - [anon_sym_BSLASHbigl] = ACTIONS(6457), - [anon_sym_BSLASHBigl] = ACTIONS(6457), - [anon_sym_BSLASHbiggl] = ACTIONS(6457), - [anon_sym_BSLASHBiggl] = ACTIONS(6457), - [anon_sym_BSLASHright] = ACTIONS(6457), - [anon_sym_BSLASHbigr] = ACTIONS(6457), - [anon_sym_BSLASHBigr] = ACTIONS(6457), - [anon_sym_BSLASHbiggr] = ACTIONS(6457), - [anon_sym_BSLASHBiggr] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6457), - [anon_sym_BSLASHgls] = ACTIONS(6457), - [anon_sym_BSLASHGls] = ACTIONS(6457), - [anon_sym_BSLASHGLS] = ACTIONS(6457), - [anon_sym_BSLASHglspl] = ACTIONS(6457), - [anon_sym_BSLASHGlspl] = ACTIONS(6457), - [anon_sym_BSLASHGLSpl] = ACTIONS(6457), - [anon_sym_BSLASHglsdisp] = ACTIONS(6457), - [anon_sym_BSLASHglslink] = ACTIONS(6457), - [anon_sym_BSLASHglstext] = ACTIONS(6457), - [anon_sym_BSLASHGlstext] = ACTIONS(6457), - [anon_sym_BSLASHGLStext] = ACTIONS(6457), - [anon_sym_BSLASHglsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6457), - [anon_sym_BSLASHglsplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSplural] = ACTIONS(6457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHglsname] = ACTIONS(6457), - [anon_sym_BSLASHGlsname] = ACTIONS(6457), - [anon_sym_BSLASHGLSname] = ACTIONS(6457), - [anon_sym_BSLASHglssymbol] = ACTIONS(6457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6457), - [anon_sym_BSLASHglsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6457), - [anon_sym_BSLASHglsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6457), - [anon_sym_BSLASHglsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6457), - [anon_sym_BSLASHglsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6457), - [anon_sym_BSLASHglsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6457), - [anon_sym_BSLASHnewacronym] = ACTIONS(6457), - [anon_sym_BSLASHacrshort] = ACTIONS(6457), - [anon_sym_BSLASHAcrshort] = ACTIONS(6457), - [anon_sym_BSLASHACRshort] = ACTIONS(6457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6457), - [anon_sym_BSLASHacrlong] = ACTIONS(6457), - [anon_sym_BSLASHAcrlong] = ACTIONS(6457), - [anon_sym_BSLASHACRlong] = ACTIONS(6457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6457), - [anon_sym_BSLASHacrfull] = ACTIONS(6457), - [anon_sym_BSLASHAcrfull] = ACTIONS(6457), - [anon_sym_BSLASHACRfull] = ACTIONS(6457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6457), - [anon_sym_BSLASHacs] = ACTIONS(6457), - [anon_sym_BSLASHAcs] = ACTIONS(6457), - [anon_sym_BSLASHacsp] = ACTIONS(6457), - [anon_sym_BSLASHAcsp] = ACTIONS(6457), - [anon_sym_BSLASHacl] = ACTIONS(6457), - [anon_sym_BSLASHAcl] = ACTIONS(6457), - [anon_sym_BSLASHaclp] = ACTIONS(6457), - [anon_sym_BSLASHAclp] = ACTIONS(6457), - [anon_sym_BSLASHacf] = ACTIONS(6457), - [anon_sym_BSLASHAcf] = ACTIONS(6457), - [anon_sym_BSLASHacfp] = ACTIONS(6457), - [anon_sym_BSLASHAcfp] = ACTIONS(6457), - [anon_sym_BSLASHac] = ACTIONS(6457), - [anon_sym_BSLASHAc] = ACTIONS(6457), - [anon_sym_BSLASHacp] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6457), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6457), - [anon_sym_BSLASHcolor] = ACTIONS(6457), - [anon_sym_BSLASHcolorbox] = ACTIONS(6457), - [anon_sym_BSLASHtextcolor] = ACTIONS(6457), - [anon_sym_BSLASHpagecolor] = ACTIONS(6457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6457), - [anon_sym_BSLASHtext] = ACTIONS(6457), - [anon_sym_BSLASHintertext] = ACTIONS(6457), - [anon_sym_shortintertext] = ACTIONS(6457), - }, - [617] = { - [sym_command_name] = ACTIONS(6461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6461), - [anon_sym_LBRACK] = ACTIONS(6463), - [anon_sym_RBRACK] = ACTIONS(6463), - [anon_sym_COMMA] = ACTIONS(6463), - [anon_sym_EQ] = ACTIONS(6463), - [anon_sym_LPAREN] = ACTIONS(6463), - [anon_sym_RPAREN] = ACTIONS(6463), - [anon_sym_BSLASHpart] = ACTIONS(6461), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddpart] = ACTIONS(6461), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6463), - [anon_sym_BSLASHchapter] = ACTIONS(6461), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddchap] = ACTIONS(6461), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsection] = ACTIONS(6461), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddsec] = ACTIONS(6461), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubsection] = ACTIONS(6461), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6461), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHparagraph] = ACTIONS(6461), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6461), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6463), - [anon_sym_BSLASHitem] = ACTIONS(6461), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6463), - [anon_sym_LBRACE] = ACTIONS(6463), - [sym_word] = ACTIONS(6461), - [sym_placeholder] = ACTIONS(6463), - [anon_sym_PLUS] = ACTIONS(6463), - [anon_sym_DASH] = ACTIONS(6463), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6463), - [anon_sym_LT] = ACTIONS(6461), - [anon_sym_GT] = ACTIONS(6461), - [anon_sym_BANG] = ACTIONS(6461), - [anon_sym_PIPE] = ACTIONS(6461), - [anon_sym_COLON] = ACTIONS(6461), - [anon_sym_SQUOTE] = ACTIONS(6461), - [anon_sym__] = ACTIONS(6463), - [anon_sym_CARET] = ACTIONS(6463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6463), - [anon_sym_DOLLAR] = ACTIONS(6461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6463), - [anon_sym_BSLASHbegin] = ACTIONS(6461), - [anon_sym_BSLASHtitle] = ACTIONS(6461), - [anon_sym_BSLASHauthor] = ACTIONS(6461), - [anon_sym_BSLASHusepackage] = ACTIONS(6461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6461), - [anon_sym_BSLASHinclude] = ACTIONS(6461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6461), - [anon_sym_BSLASHinput] = ACTIONS(6461), - [anon_sym_BSLASHsubfile] = ACTIONS(6461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6461), - [anon_sym_BSLASHbibliography] = ACTIONS(6461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6461), - [anon_sym_BSLASHincludesvg] = ACTIONS(6461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6461), - [anon_sym_BSLASHimport] = ACTIONS(6461), - [anon_sym_BSLASHsubimport] = ACTIONS(6461), - [anon_sym_BSLASHinputfrom] = ACTIONS(6461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6461), - [anon_sym_BSLASHincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHcaption] = ACTIONS(6461), - [anon_sym_BSLASHcite] = ACTIONS(6461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCite] = ACTIONS(6461), - [anon_sym_BSLASHnocite] = ACTIONS(6461), - [anon_sym_BSLASHcitet] = ACTIONS(6461), - [anon_sym_BSLASHcitep] = ACTIONS(6461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteauthor] = ACTIONS(6461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitetitle] = ACTIONS(6461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteyear] = ACTIONS(6461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitedate] = ACTIONS(6461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteurl] = ACTIONS(6461), - [anon_sym_BSLASHfullcite] = ACTIONS(6461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6461), - [anon_sym_BSLASHcitealt] = ACTIONS(6461), - [anon_sym_BSLASHcitealp] = ACTIONS(6461), - [anon_sym_BSLASHcitetext] = ACTIONS(6461), - [anon_sym_BSLASHparencite] = ACTIONS(6461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHParencite] = ACTIONS(6461), - [anon_sym_BSLASHfootcite] = ACTIONS(6461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6461), - [anon_sym_BSLASHtextcite] = ACTIONS(6461), - [anon_sym_BSLASHTextcite] = ACTIONS(6461), - [anon_sym_BSLASHsmartcite] = ACTIONS(6461), - [anon_sym_BSLASHSmartcite] = ACTIONS(6461), - [anon_sym_BSLASHsupercite] = ACTIONS(6461), - [anon_sym_BSLASHautocite] = ACTIONS(6461), - [anon_sym_BSLASHAutocite] = ACTIONS(6461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHvolcite] = ACTIONS(6461), - [anon_sym_BSLASHVolcite] = ACTIONS(6461), - [anon_sym_BSLASHpvolcite] = ACTIONS(6461), - [anon_sym_BSLASHPvolcite] = ACTIONS(6461), - [anon_sym_BSLASHfvolcite] = ACTIONS(6461), - [anon_sym_BSLASHftvolcite] = ACTIONS(6461), - [anon_sym_BSLASHsvolcite] = ACTIONS(6461), - [anon_sym_BSLASHSvolcite] = ACTIONS(6461), - [anon_sym_BSLASHtvolcite] = ACTIONS(6461), - [anon_sym_BSLASHTvolcite] = ACTIONS(6461), - [anon_sym_BSLASHavolcite] = ACTIONS(6461), - [anon_sym_BSLASHAvolcite] = ACTIONS(6461), - [anon_sym_BSLASHnotecite] = ACTIONS(6461), - [anon_sym_BSLASHNotecite] = ACTIONS(6461), - [anon_sym_BSLASHpnotecite] = ACTIONS(6461), - [anon_sym_BSLASHPnotecite] = ACTIONS(6461), - [anon_sym_BSLASHfnotecite] = ACTIONS(6461), - [anon_sym_BSLASHlabel] = ACTIONS(6461), - [anon_sym_BSLASHref] = ACTIONS(6461), - [anon_sym_BSLASHeqref] = ACTIONS(6461), - [anon_sym_BSLASHvref] = ACTIONS(6461), - [anon_sym_BSLASHVref] = ACTIONS(6461), - [anon_sym_BSLASHautoref] = ACTIONS(6461), - [anon_sym_BSLASHpageref] = ACTIONS(6461), - [anon_sym_BSLASHcref] = ACTIONS(6461), - [anon_sym_BSLASHCref] = ACTIONS(6461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnameCref] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHlabelcref] = ACTIONS(6461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCrefrange] = ACTIONS(6461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnewlabel] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6463), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHdef] = ACTIONS(6461), - [anon_sym_BSLASHlet] = ACTIONS(6461), - [anon_sym_BSLASHleft] = ACTIONS(6461), - [anon_sym_BSLASHbig] = ACTIONS(6461), - [anon_sym_BSLASHBig] = ACTIONS(6461), - [anon_sym_BSLASHbigg] = ACTIONS(6461), - [anon_sym_BSLASHBigg] = ACTIONS(6461), - [anon_sym_BSLASHbigl] = ACTIONS(6461), - [anon_sym_BSLASHBigl] = ACTIONS(6461), - [anon_sym_BSLASHbiggl] = ACTIONS(6461), - [anon_sym_BSLASHBiggl] = ACTIONS(6461), - [anon_sym_BSLASHright] = ACTIONS(6461), - [anon_sym_BSLASHbigr] = ACTIONS(6461), - [anon_sym_BSLASHBigr] = ACTIONS(6461), - [anon_sym_BSLASHbiggr] = ACTIONS(6461), - [anon_sym_BSLASHBiggr] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6461), - [anon_sym_BSLASHgls] = ACTIONS(6461), - [anon_sym_BSLASHGls] = ACTIONS(6461), - [anon_sym_BSLASHGLS] = ACTIONS(6461), - [anon_sym_BSLASHglspl] = ACTIONS(6461), - [anon_sym_BSLASHGlspl] = ACTIONS(6461), - [anon_sym_BSLASHGLSpl] = ACTIONS(6461), - [anon_sym_BSLASHglsdisp] = ACTIONS(6461), - [anon_sym_BSLASHglslink] = ACTIONS(6461), - [anon_sym_BSLASHglstext] = ACTIONS(6461), - [anon_sym_BSLASHGlstext] = ACTIONS(6461), - [anon_sym_BSLASHGLStext] = ACTIONS(6461), - [anon_sym_BSLASHglsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6461), - [anon_sym_BSLASHglsplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSplural] = ACTIONS(6461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHglsname] = ACTIONS(6461), - [anon_sym_BSLASHGlsname] = ACTIONS(6461), - [anon_sym_BSLASHGLSname] = ACTIONS(6461), - [anon_sym_BSLASHglssymbol] = ACTIONS(6461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6461), - [anon_sym_BSLASHglsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6461), - [anon_sym_BSLASHglsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6461), - [anon_sym_BSLASHglsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6461), - [anon_sym_BSLASHglsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6461), - [anon_sym_BSLASHglsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6461), - [anon_sym_BSLASHnewacronym] = ACTIONS(6461), - [anon_sym_BSLASHacrshort] = ACTIONS(6461), - [anon_sym_BSLASHAcrshort] = ACTIONS(6461), - [anon_sym_BSLASHACRshort] = ACTIONS(6461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6461), - [anon_sym_BSLASHacrlong] = ACTIONS(6461), - [anon_sym_BSLASHAcrlong] = ACTIONS(6461), - [anon_sym_BSLASHACRlong] = ACTIONS(6461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6461), - [anon_sym_BSLASHacrfull] = ACTIONS(6461), - [anon_sym_BSLASHAcrfull] = ACTIONS(6461), - [anon_sym_BSLASHACRfull] = ACTIONS(6461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6461), - [anon_sym_BSLASHacs] = ACTIONS(6461), - [anon_sym_BSLASHAcs] = ACTIONS(6461), - [anon_sym_BSLASHacsp] = ACTIONS(6461), - [anon_sym_BSLASHAcsp] = ACTIONS(6461), - [anon_sym_BSLASHacl] = ACTIONS(6461), - [anon_sym_BSLASHAcl] = ACTIONS(6461), - [anon_sym_BSLASHaclp] = ACTIONS(6461), - [anon_sym_BSLASHAclp] = ACTIONS(6461), - [anon_sym_BSLASHacf] = ACTIONS(6461), - [anon_sym_BSLASHAcf] = ACTIONS(6461), - [anon_sym_BSLASHacfp] = ACTIONS(6461), - [anon_sym_BSLASHAcfp] = ACTIONS(6461), - [anon_sym_BSLASHac] = ACTIONS(6461), - [anon_sym_BSLASHAc] = ACTIONS(6461), - [anon_sym_BSLASHacp] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6461), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6461), - [anon_sym_BSLASHcolor] = ACTIONS(6461), - [anon_sym_BSLASHcolorbox] = ACTIONS(6461), - [anon_sym_BSLASHtextcolor] = ACTIONS(6461), - [anon_sym_BSLASHpagecolor] = ACTIONS(6461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6461), - [anon_sym_BSLASHtext] = ACTIONS(6461), - [anon_sym_BSLASHintertext] = ACTIONS(6461), - [anon_sym_shortintertext] = ACTIONS(6461), - }, - [618] = { - [sym_command_name] = ACTIONS(6465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6465), - [anon_sym_LBRACK] = ACTIONS(6467), - [anon_sym_RBRACK] = ACTIONS(6467), - [anon_sym_COMMA] = ACTIONS(6467), - [anon_sym_EQ] = ACTIONS(6467), - [anon_sym_LPAREN] = ACTIONS(6467), - [anon_sym_RPAREN] = ACTIONS(6467), - [anon_sym_BSLASHpart] = ACTIONS(6465), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddpart] = ACTIONS(6465), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6467), - [anon_sym_BSLASHchapter] = ACTIONS(6465), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddchap] = ACTIONS(6465), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsection] = ACTIONS(6465), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddsec] = ACTIONS(6465), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubsection] = ACTIONS(6465), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6465), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHparagraph] = ACTIONS(6465), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6465), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6467), - [anon_sym_BSLASHitem] = ACTIONS(6465), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6467), - [anon_sym_LBRACE] = ACTIONS(6467), - [sym_word] = ACTIONS(6465), - [sym_placeholder] = ACTIONS(6467), - [anon_sym_PLUS] = ACTIONS(6467), - [anon_sym_DASH] = ACTIONS(6467), - [anon_sym_STAR] = ACTIONS(6467), - [anon_sym_SLASH] = ACTIONS(6467), - [anon_sym_LT] = ACTIONS(6465), - [anon_sym_GT] = ACTIONS(6465), - [anon_sym_BANG] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6465), - [anon_sym_COLON] = ACTIONS(6465), - [anon_sym_SQUOTE] = ACTIONS(6465), - [anon_sym__] = ACTIONS(6467), - [anon_sym_CARET] = ACTIONS(6467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6467), - [anon_sym_DOLLAR] = ACTIONS(6465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6467), - [anon_sym_BSLASHbegin] = ACTIONS(6465), - [anon_sym_BSLASHtitle] = ACTIONS(6465), - [anon_sym_BSLASHauthor] = ACTIONS(6465), - [anon_sym_BSLASHusepackage] = ACTIONS(6465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6465), - [anon_sym_BSLASHinclude] = ACTIONS(6465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6465), - [anon_sym_BSLASHinput] = ACTIONS(6465), - [anon_sym_BSLASHsubfile] = ACTIONS(6465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6465), - [anon_sym_BSLASHbibliography] = ACTIONS(6465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6465), - [anon_sym_BSLASHincludesvg] = ACTIONS(6465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6465), - [anon_sym_BSLASHimport] = ACTIONS(6465), - [anon_sym_BSLASHsubimport] = ACTIONS(6465), - [anon_sym_BSLASHinputfrom] = ACTIONS(6465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6465), - [anon_sym_BSLASHincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHcaption] = ACTIONS(6465), - [anon_sym_BSLASHcite] = ACTIONS(6465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCite] = ACTIONS(6465), - [anon_sym_BSLASHnocite] = ACTIONS(6465), - [anon_sym_BSLASHcitet] = ACTIONS(6465), - [anon_sym_BSLASHcitep] = ACTIONS(6465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteauthor] = ACTIONS(6465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitetitle] = ACTIONS(6465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteyear] = ACTIONS(6465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitedate] = ACTIONS(6465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteurl] = ACTIONS(6465), - [anon_sym_BSLASHfullcite] = ACTIONS(6465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6465), - [anon_sym_BSLASHcitealt] = ACTIONS(6465), - [anon_sym_BSLASHcitealp] = ACTIONS(6465), - [anon_sym_BSLASHcitetext] = ACTIONS(6465), - [anon_sym_BSLASHparencite] = ACTIONS(6465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHParencite] = ACTIONS(6465), - [anon_sym_BSLASHfootcite] = ACTIONS(6465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6465), - [anon_sym_BSLASHtextcite] = ACTIONS(6465), - [anon_sym_BSLASHTextcite] = ACTIONS(6465), - [anon_sym_BSLASHsmartcite] = ACTIONS(6465), - [anon_sym_BSLASHSmartcite] = ACTIONS(6465), - [anon_sym_BSLASHsupercite] = ACTIONS(6465), - [anon_sym_BSLASHautocite] = ACTIONS(6465), - [anon_sym_BSLASHAutocite] = ACTIONS(6465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHvolcite] = ACTIONS(6465), - [anon_sym_BSLASHVolcite] = ACTIONS(6465), - [anon_sym_BSLASHpvolcite] = ACTIONS(6465), - [anon_sym_BSLASHPvolcite] = ACTIONS(6465), - [anon_sym_BSLASHfvolcite] = ACTIONS(6465), - [anon_sym_BSLASHftvolcite] = ACTIONS(6465), - [anon_sym_BSLASHsvolcite] = ACTIONS(6465), - [anon_sym_BSLASHSvolcite] = ACTIONS(6465), - [anon_sym_BSLASHtvolcite] = ACTIONS(6465), - [anon_sym_BSLASHTvolcite] = ACTIONS(6465), - [anon_sym_BSLASHavolcite] = ACTIONS(6465), - [anon_sym_BSLASHAvolcite] = ACTIONS(6465), - [anon_sym_BSLASHnotecite] = ACTIONS(6465), - [anon_sym_BSLASHNotecite] = ACTIONS(6465), - [anon_sym_BSLASHpnotecite] = ACTIONS(6465), - [anon_sym_BSLASHPnotecite] = ACTIONS(6465), - [anon_sym_BSLASHfnotecite] = ACTIONS(6465), - [anon_sym_BSLASHlabel] = ACTIONS(6465), - [anon_sym_BSLASHref] = ACTIONS(6465), - [anon_sym_BSLASHeqref] = ACTIONS(6465), - [anon_sym_BSLASHvref] = ACTIONS(6465), - [anon_sym_BSLASHVref] = ACTIONS(6465), - [anon_sym_BSLASHautoref] = ACTIONS(6465), - [anon_sym_BSLASHpageref] = ACTIONS(6465), - [anon_sym_BSLASHcref] = ACTIONS(6465), - [anon_sym_BSLASHCref] = ACTIONS(6465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnameCref] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHlabelcref] = ACTIONS(6465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCrefrange] = ACTIONS(6465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnewlabel] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6467), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHdef] = ACTIONS(6465), - [anon_sym_BSLASHlet] = ACTIONS(6465), - [anon_sym_BSLASHleft] = ACTIONS(6465), - [anon_sym_BSLASHbig] = ACTIONS(6465), - [anon_sym_BSLASHBig] = ACTIONS(6465), - [anon_sym_BSLASHbigg] = ACTIONS(6465), - [anon_sym_BSLASHBigg] = ACTIONS(6465), - [anon_sym_BSLASHbigl] = ACTIONS(6465), - [anon_sym_BSLASHBigl] = ACTIONS(6465), - [anon_sym_BSLASHbiggl] = ACTIONS(6465), - [anon_sym_BSLASHBiggl] = ACTIONS(6465), - [anon_sym_BSLASHright] = ACTIONS(6465), - [anon_sym_BSLASHbigr] = ACTIONS(6465), - [anon_sym_BSLASHBigr] = ACTIONS(6465), - [anon_sym_BSLASHbiggr] = ACTIONS(6465), - [anon_sym_BSLASHBiggr] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6465), - [anon_sym_BSLASHgls] = ACTIONS(6465), - [anon_sym_BSLASHGls] = ACTIONS(6465), - [anon_sym_BSLASHGLS] = ACTIONS(6465), - [anon_sym_BSLASHglspl] = ACTIONS(6465), - [anon_sym_BSLASHGlspl] = ACTIONS(6465), - [anon_sym_BSLASHGLSpl] = ACTIONS(6465), - [anon_sym_BSLASHglsdisp] = ACTIONS(6465), - [anon_sym_BSLASHglslink] = ACTIONS(6465), - [anon_sym_BSLASHglstext] = ACTIONS(6465), - [anon_sym_BSLASHGlstext] = ACTIONS(6465), - [anon_sym_BSLASHGLStext] = ACTIONS(6465), - [anon_sym_BSLASHglsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6465), - [anon_sym_BSLASHglsplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSplural] = ACTIONS(6465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHglsname] = ACTIONS(6465), - [anon_sym_BSLASHGlsname] = ACTIONS(6465), - [anon_sym_BSLASHGLSname] = ACTIONS(6465), - [anon_sym_BSLASHglssymbol] = ACTIONS(6465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6465), - [anon_sym_BSLASHglsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6465), - [anon_sym_BSLASHglsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6465), - [anon_sym_BSLASHglsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6465), - [anon_sym_BSLASHglsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6465), - [anon_sym_BSLASHglsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6465), - [anon_sym_BSLASHnewacronym] = ACTIONS(6465), - [anon_sym_BSLASHacrshort] = ACTIONS(6465), - [anon_sym_BSLASHAcrshort] = ACTIONS(6465), - [anon_sym_BSLASHACRshort] = ACTIONS(6465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6465), - [anon_sym_BSLASHacrlong] = ACTIONS(6465), - [anon_sym_BSLASHAcrlong] = ACTIONS(6465), - [anon_sym_BSLASHACRlong] = ACTIONS(6465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6465), - [anon_sym_BSLASHacrfull] = ACTIONS(6465), - [anon_sym_BSLASHAcrfull] = ACTIONS(6465), - [anon_sym_BSLASHACRfull] = ACTIONS(6465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6465), - [anon_sym_BSLASHacs] = ACTIONS(6465), - [anon_sym_BSLASHAcs] = ACTIONS(6465), - [anon_sym_BSLASHacsp] = ACTIONS(6465), - [anon_sym_BSLASHAcsp] = ACTIONS(6465), - [anon_sym_BSLASHacl] = ACTIONS(6465), - [anon_sym_BSLASHAcl] = ACTIONS(6465), - [anon_sym_BSLASHaclp] = ACTIONS(6465), - [anon_sym_BSLASHAclp] = ACTIONS(6465), - [anon_sym_BSLASHacf] = ACTIONS(6465), - [anon_sym_BSLASHAcf] = ACTIONS(6465), - [anon_sym_BSLASHacfp] = ACTIONS(6465), - [anon_sym_BSLASHAcfp] = ACTIONS(6465), - [anon_sym_BSLASHac] = ACTIONS(6465), - [anon_sym_BSLASHAc] = ACTIONS(6465), - [anon_sym_BSLASHacp] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6465), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6465), - [anon_sym_BSLASHcolor] = ACTIONS(6465), - [anon_sym_BSLASHcolorbox] = ACTIONS(6465), - [anon_sym_BSLASHtextcolor] = ACTIONS(6465), - [anon_sym_BSLASHpagecolor] = ACTIONS(6465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6465), - [anon_sym_BSLASHtext] = ACTIONS(6465), - [anon_sym_BSLASHintertext] = ACTIONS(6465), - [anon_sym_shortintertext] = ACTIONS(6465), - }, - [619] = { - [sym__subsubsection_declaration] = STATE(217), - [sym_subsubsection] = STATE(456), - [aux_sym__section_repeat5] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(5862), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [anon_sym_RBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [620] = { - [sym_command_name] = ACTIONS(6469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6471), - [anon_sym_RBRACK] = ACTIONS(6471), - [anon_sym_COMMA] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(6471), - [anon_sym_LPAREN] = ACTIONS(6471), - [anon_sym_RPAREN] = ACTIONS(6471), - [anon_sym_BSLASHpart] = ACTIONS(6469), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddpart] = ACTIONS(6469), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6471), - [anon_sym_BSLASHchapter] = ACTIONS(6469), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddchap] = ACTIONS(6469), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsection] = ACTIONS(6469), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddsec] = ACTIONS(6469), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubsection] = ACTIONS(6469), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6469), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHparagraph] = ACTIONS(6469), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6469), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6471), - [anon_sym_BSLASHitem] = ACTIONS(6469), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6471), - [sym_word] = ACTIONS(6469), - [sym_placeholder] = ACTIONS(6471), - [anon_sym_PLUS] = ACTIONS(6471), - [anon_sym_DASH] = ACTIONS(6471), - [anon_sym_STAR] = ACTIONS(6471), - [anon_sym_SLASH] = ACTIONS(6471), - [anon_sym_LT] = ACTIONS(6469), - [anon_sym_GT] = ACTIONS(6469), - [anon_sym_BANG] = ACTIONS(6469), - [anon_sym_PIPE] = ACTIONS(6469), - [anon_sym_COLON] = ACTIONS(6469), - [anon_sym_SQUOTE] = ACTIONS(6469), - [anon_sym__] = ACTIONS(6471), - [anon_sym_CARET] = ACTIONS(6471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6471), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6471), - [anon_sym_DOLLAR] = ACTIONS(6469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6471), - [anon_sym_BSLASHbegin] = ACTIONS(6469), - [anon_sym_BSLASHtitle] = ACTIONS(6469), - [anon_sym_BSLASHauthor] = ACTIONS(6469), - [anon_sym_BSLASHusepackage] = ACTIONS(6469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6469), - [anon_sym_BSLASHinclude] = ACTIONS(6469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6469), - [anon_sym_BSLASHinput] = ACTIONS(6469), - [anon_sym_BSLASHsubfile] = ACTIONS(6469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6469), - [anon_sym_BSLASHbibliography] = ACTIONS(6469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6469), - [anon_sym_BSLASHincludesvg] = ACTIONS(6469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6469), - [anon_sym_BSLASHimport] = ACTIONS(6469), - [anon_sym_BSLASHsubimport] = ACTIONS(6469), - [anon_sym_BSLASHinputfrom] = ACTIONS(6469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6469), - [anon_sym_BSLASHincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHcaption] = ACTIONS(6469), - [anon_sym_BSLASHcite] = ACTIONS(6469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCite] = ACTIONS(6469), - [anon_sym_BSLASHnocite] = ACTIONS(6469), - [anon_sym_BSLASHcitet] = ACTIONS(6469), - [anon_sym_BSLASHcitep] = ACTIONS(6469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteauthor] = ACTIONS(6469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitetitle] = ACTIONS(6469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteyear] = ACTIONS(6469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitedate] = ACTIONS(6469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteurl] = ACTIONS(6469), - [anon_sym_BSLASHfullcite] = ACTIONS(6469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6469), - [anon_sym_BSLASHcitealt] = ACTIONS(6469), - [anon_sym_BSLASHcitealp] = ACTIONS(6469), - [anon_sym_BSLASHcitetext] = ACTIONS(6469), - [anon_sym_BSLASHparencite] = ACTIONS(6469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHParencite] = ACTIONS(6469), - [anon_sym_BSLASHfootcite] = ACTIONS(6469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6469), - [anon_sym_BSLASHtextcite] = ACTIONS(6469), - [anon_sym_BSLASHTextcite] = ACTIONS(6469), - [anon_sym_BSLASHsmartcite] = ACTIONS(6469), - [anon_sym_BSLASHSmartcite] = ACTIONS(6469), - [anon_sym_BSLASHsupercite] = ACTIONS(6469), - [anon_sym_BSLASHautocite] = ACTIONS(6469), - [anon_sym_BSLASHAutocite] = ACTIONS(6469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHvolcite] = ACTIONS(6469), - [anon_sym_BSLASHVolcite] = ACTIONS(6469), - [anon_sym_BSLASHpvolcite] = ACTIONS(6469), - [anon_sym_BSLASHPvolcite] = ACTIONS(6469), - [anon_sym_BSLASHfvolcite] = ACTIONS(6469), - [anon_sym_BSLASHftvolcite] = ACTIONS(6469), - [anon_sym_BSLASHsvolcite] = ACTIONS(6469), - [anon_sym_BSLASHSvolcite] = ACTIONS(6469), - [anon_sym_BSLASHtvolcite] = ACTIONS(6469), - [anon_sym_BSLASHTvolcite] = ACTIONS(6469), - [anon_sym_BSLASHavolcite] = ACTIONS(6469), - [anon_sym_BSLASHAvolcite] = ACTIONS(6469), - [anon_sym_BSLASHnotecite] = ACTIONS(6469), - [anon_sym_BSLASHNotecite] = ACTIONS(6469), - [anon_sym_BSLASHpnotecite] = ACTIONS(6469), - [anon_sym_BSLASHPnotecite] = ACTIONS(6469), - [anon_sym_BSLASHfnotecite] = ACTIONS(6469), - [anon_sym_BSLASHlabel] = ACTIONS(6469), - [anon_sym_BSLASHref] = ACTIONS(6469), - [anon_sym_BSLASHeqref] = ACTIONS(6469), - [anon_sym_BSLASHvref] = ACTIONS(6469), - [anon_sym_BSLASHVref] = ACTIONS(6469), - [anon_sym_BSLASHautoref] = ACTIONS(6469), - [anon_sym_BSLASHpageref] = ACTIONS(6469), - [anon_sym_BSLASHcref] = ACTIONS(6469), - [anon_sym_BSLASHCref] = ACTIONS(6469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnameCref] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHlabelcref] = ACTIONS(6469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCrefrange] = ACTIONS(6469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnewlabel] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6471), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHdef] = ACTIONS(6469), - [anon_sym_BSLASHlet] = ACTIONS(6469), - [anon_sym_BSLASHleft] = ACTIONS(6469), - [anon_sym_BSLASHbig] = ACTIONS(6469), - [anon_sym_BSLASHBig] = ACTIONS(6469), - [anon_sym_BSLASHbigg] = ACTIONS(6469), - [anon_sym_BSLASHBigg] = ACTIONS(6469), - [anon_sym_BSLASHbigl] = ACTIONS(6469), - [anon_sym_BSLASHBigl] = ACTIONS(6469), - [anon_sym_BSLASHbiggl] = ACTIONS(6469), - [anon_sym_BSLASHBiggl] = ACTIONS(6469), - [anon_sym_BSLASHright] = ACTIONS(6469), - [anon_sym_BSLASHbigr] = ACTIONS(6469), - [anon_sym_BSLASHBigr] = ACTIONS(6469), - [anon_sym_BSLASHbiggr] = ACTIONS(6469), - [anon_sym_BSLASHBiggr] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6469), - [anon_sym_BSLASHgls] = ACTIONS(6469), - [anon_sym_BSLASHGls] = ACTIONS(6469), - [anon_sym_BSLASHGLS] = ACTIONS(6469), - [anon_sym_BSLASHglspl] = ACTIONS(6469), - [anon_sym_BSLASHGlspl] = ACTIONS(6469), - [anon_sym_BSLASHGLSpl] = ACTIONS(6469), - [anon_sym_BSLASHglsdisp] = ACTIONS(6469), - [anon_sym_BSLASHglslink] = ACTIONS(6469), - [anon_sym_BSLASHglstext] = ACTIONS(6469), - [anon_sym_BSLASHGlstext] = ACTIONS(6469), - [anon_sym_BSLASHGLStext] = ACTIONS(6469), - [anon_sym_BSLASHglsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6469), - [anon_sym_BSLASHglsplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSplural] = ACTIONS(6469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHglsname] = ACTIONS(6469), - [anon_sym_BSLASHGlsname] = ACTIONS(6469), - [anon_sym_BSLASHGLSname] = ACTIONS(6469), - [anon_sym_BSLASHglssymbol] = ACTIONS(6469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6469), - [anon_sym_BSLASHglsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6469), - [anon_sym_BSLASHglsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6469), - [anon_sym_BSLASHglsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6469), - [anon_sym_BSLASHglsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6469), - [anon_sym_BSLASHglsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6469), - [anon_sym_BSLASHnewacronym] = ACTIONS(6469), - [anon_sym_BSLASHacrshort] = ACTIONS(6469), - [anon_sym_BSLASHAcrshort] = ACTIONS(6469), - [anon_sym_BSLASHACRshort] = ACTIONS(6469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6469), - [anon_sym_BSLASHacrlong] = ACTIONS(6469), - [anon_sym_BSLASHAcrlong] = ACTIONS(6469), - [anon_sym_BSLASHACRlong] = ACTIONS(6469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6469), - [anon_sym_BSLASHacrfull] = ACTIONS(6469), - [anon_sym_BSLASHAcrfull] = ACTIONS(6469), - [anon_sym_BSLASHACRfull] = ACTIONS(6469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6469), - [anon_sym_BSLASHacs] = ACTIONS(6469), - [anon_sym_BSLASHAcs] = ACTIONS(6469), - [anon_sym_BSLASHacsp] = ACTIONS(6469), - [anon_sym_BSLASHAcsp] = ACTIONS(6469), - [anon_sym_BSLASHacl] = ACTIONS(6469), - [anon_sym_BSLASHAcl] = ACTIONS(6469), - [anon_sym_BSLASHaclp] = ACTIONS(6469), - [anon_sym_BSLASHAclp] = ACTIONS(6469), - [anon_sym_BSLASHacf] = ACTIONS(6469), - [anon_sym_BSLASHAcf] = ACTIONS(6469), - [anon_sym_BSLASHacfp] = ACTIONS(6469), - [anon_sym_BSLASHAcfp] = ACTIONS(6469), - [anon_sym_BSLASHac] = ACTIONS(6469), - [anon_sym_BSLASHAc] = ACTIONS(6469), - [anon_sym_BSLASHacp] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6469), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6469), - [anon_sym_BSLASHcolor] = ACTIONS(6469), - [anon_sym_BSLASHcolorbox] = ACTIONS(6469), - [anon_sym_BSLASHtextcolor] = ACTIONS(6469), - [anon_sym_BSLASHpagecolor] = ACTIONS(6469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6469), - [anon_sym_BSLASHtext] = ACTIONS(6469), - [anon_sym_BSLASHintertext] = ACTIONS(6469), - [anon_sym_shortintertext] = ACTIONS(6469), - }, - [621] = { - [sym_command_name] = ACTIONS(6473), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6473), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_RBRACK] = ACTIONS(6475), - [anon_sym_COMMA] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6475), - [anon_sym_LPAREN] = ACTIONS(6475), - [anon_sym_RPAREN] = ACTIONS(6475), - [anon_sym_BSLASHpart] = ACTIONS(6473), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddpart] = ACTIONS(6473), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6475), - [anon_sym_BSLASHchapter] = ACTIONS(6473), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddchap] = ACTIONS(6473), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsection] = ACTIONS(6473), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddsec] = ACTIONS(6473), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubsection] = ACTIONS(6473), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6473), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHparagraph] = ACTIONS(6473), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6473), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6475), - [anon_sym_BSLASHitem] = ACTIONS(6473), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6475), - [anon_sym_LBRACE] = ACTIONS(6475), - [sym_word] = ACTIONS(6473), - [sym_placeholder] = ACTIONS(6475), - [anon_sym_PLUS] = ACTIONS(6475), - [anon_sym_DASH] = ACTIONS(6475), - [anon_sym_STAR] = ACTIONS(6475), - [anon_sym_SLASH] = ACTIONS(6475), - [anon_sym_LT] = ACTIONS(6473), - [anon_sym_GT] = ACTIONS(6473), - [anon_sym_BANG] = ACTIONS(6473), - [anon_sym_PIPE] = ACTIONS(6473), - [anon_sym_COLON] = ACTIONS(6473), - [anon_sym_SQUOTE] = ACTIONS(6473), - [anon_sym__] = ACTIONS(6475), - [anon_sym_CARET] = ACTIONS(6475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6475), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6475), - [anon_sym_DOLLAR] = ACTIONS(6473), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6475), - [anon_sym_BSLASHbegin] = ACTIONS(6473), - [anon_sym_BSLASHtitle] = ACTIONS(6473), - [anon_sym_BSLASHauthor] = ACTIONS(6473), - [anon_sym_BSLASHusepackage] = ACTIONS(6473), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6473), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6473), - [anon_sym_BSLASHinclude] = ACTIONS(6473), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6473), - [anon_sym_BSLASHinput] = ACTIONS(6473), - [anon_sym_BSLASHsubfile] = ACTIONS(6473), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6473), - [anon_sym_BSLASHbibliography] = ACTIONS(6473), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6473), - [anon_sym_BSLASHincludesvg] = ACTIONS(6473), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6473), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6473), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6473), - [anon_sym_BSLASHimport] = ACTIONS(6473), - [anon_sym_BSLASHsubimport] = ACTIONS(6473), - [anon_sym_BSLASHinputfrom] = ACTIONS(6473), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6473), - [anon_sym_BSLASHincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHcaption] = ACTIONS(6473), - [anon_sym_BSLASHcite] = ACTIONS(6473), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCite] = ACTIONS(6473), - [anon_sym_BSLASHnocite] = ACTIONS(6473), - [anon_sym_BSLASHcitet] = ACTIONS(6473), - [anon_sym_BSLASHcitep] = ACTIONS(6473), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteauthor] = ACTIONS(6473), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6473), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitetitle] = ACTIONS(6473), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteyear] = ACTIONS(6473), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitedate] = ACTIONS(6473), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteurl] = ACTIONS(6473), - [anon_sym_BSLASHfullcite] = ACTIONS(6473), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6473), - [anon_sym_BSLASHcitealt] = ACTIONS(6473), - [anon_sym_BSLASHcitealp] = ACTIONS(6473), - [anon_sym_BSLASHcitetext] = ACTIONS(6473), - [anon_sym_BSLASHparencite] = ACTIONS(6473), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHParencite] = ACTIONS(6473), - [anon_sym_BSLASHfootcite] = ACTIONS(6473), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6473), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6473), - [anon_sym_BSLASHtextcite] = ACTIONS(6473), - [anon_sym_BSLASHTextcite] = ACTIONS(6473), - [anon_sym_BSLASHsmartcite] = ACTIONS(6473), - [anon_sym_BSLASHSmartcite] = ACTIONS(6473), - [anon_sym_BSLASHsupercite] = ACTIONS(6473), - [anon_sym_BSLASHautocite] = ACTIONS(6473), - [anon_sym_BSLASHAutocite] = ACTIONS(6473), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHvolcite] = ACTIONS(6473), - [anon_sym_BSLASHVolcite] = ACTIONS(6473), - [anon_sym_BSLASHpvolcite] = ACTIONS(6473), - [anon_sym_BSLASHPvolcite] = ACTIONS(6473), - [anon_sym_BSLASHfvolcite] = ACTIONS(6473), - [anon_sym_BSLASHftvolcite] = ACTIONS(6473), - [anon_sym_BSLASHsvolcite] = ACTIONS(6473), - [anon_sym_BSLASHSvolcite] = ACTIONS(6473), - [anon_sym_BSLASHtvolcite] = ACTIONS(6473), - [anon_sym_BSLASHTvolcite] = ACTIONS(6473), - [anon_sym_BSLASHavolcite] = ACTIONS(6473), - [anon_sym_BSLASHAvolcite] = ACTIONS(6473), - [anon_sym_BSLASHnotecite] = ACTIONS(6473), - [anon_sym_BSLASHNotecite] = ACTIONS(6473), - [anon_sym_BSLASHpnotecite] = ACTIONS(6473), - [anon_sym_BSLASHPnotecite] = ACTIONS(6473), - [anon_sym_BSLASHfnotecite] = ACTIONS(6473), - [anon_sym_BSLASHlabel] = ACTIONS(6473), - [anon_sym_BSLASHref] = ACTIONS(6473), - [anon_sym_BSLASHeqref] = ACTIONS(6473), - [anon_sym_BSLASHvref] = ACTIONS(6473), - [anon_sym_BSLASHVref] = ACTIONS(6473), - [anon_sym_BSLASHautoref] = ACTIONS(6473), - [anon_sym_BSLASHpageref] = ACTIONS(6473), - [anon_sym_BSLASHcref] = ACTIONS(6473), - [anon_sym_BSLASHCref] = ACTIONS(6473), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnameCref] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHlabelcref] = ACTIONS(6473), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCrefrange] = ACTIONS(6473), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnewlabel] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6473), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6473), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6475), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHdef] = ACTIONS(6473), - [anon_sym_BSLASHlet] = ACTIONS(6473), - [anon_sym_BSLASHleft] = ACTIONS(6473), - [anon_sym_BSLASHbig] = ACTIONS(6473), - [anon_sym_BSLASHBig] = ACTIONS(6473), - [anon_sym_BSLASHbigg] = ACTIONS(6473), - [anon_sym_BSLASHBigg] = ACTIONS(6473), - [anon_sym_BSLASHbigl] = ACTIONS(6473), - [anon_sym_BSLASHBigl] = ACTIONS(6473), - [anon_sym_BSLASHbiggl] = ACTIONS(6473), - [anon_sym_BSLASHBiggl] = ACTIONS(6473), - [anon_sym_BSLASHright] = ACTIONS(6473), - [anon_sym_BSLASHbigr] = ACTIONS(6473), - [anon_sym_BSLASHBigr] = ACTIONS(6473), - [anon_sym_BSLASHbiggr] = ACTIONS(6473), - [anon_sym_BSLASHBiggr] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6473), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6473), - [anon_sym_BSLASHgls] = ACTIONS(6473), - [anon_sym_BSLASHGls] = ACTIONS(6473), - [anon_sym_BSLASHGLS] = ACTIONS(6473), - [anon_sym_BSLASHglspl] = ACTIONS(6473), - [anon_sym_BSLASHGlspl] = ACTIONS(6473), - [anon_sym_BSLASHGLSpl] = ACTIONS(6473), - [anon_sym_BSLASHglsdisp] = ACTIONS(6473), - [anon_sym_BSLASHglslink] = ACTIONS(6473), - [anon_sym_BSLASHglstext] = ACTIONS(6473), - [anon_sym_BSLASHGlstext] = ACTIONS(6473), - [anon_sym_BSLASHGLStext] = ACTIONS(6473), - [anon_sym_BSLASHglsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6473), - [anon_sym_BSLASHglsplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSplural] = ACTIONS(6473), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHglsname] = ACTIONS(6473), - [anon_sym_BSLASHGlsname] = ACTIONS(6473), - [anon_sym_BSLASHGLSname] = ACTIONS(6473), - [anon_sym_BSLASHglssymbol] = ACTIONS(6473), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6473), - [anon_sym_BSLASHglsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6473), - [anon_sym_BSLASHglsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6473), - [anon_sym_BSLASHglsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6473), - [anon_sym_BSLASHglsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6473), - [anon_sym_BSLASHglsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6473), - [anon_sym_BSLASHnewacronym] = ACTIONS(6473), - [anon_sym_BSLASHacrshort] = ACTIONS(6473), - [anon_sym_BSLASHAcrshort] = ACTIONS(6473), - [anon_sym_BSLASHACRshort] = ACTIONS(6473), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6473), - [anon_sym_BSLASHacrlong] = ACTIONS(6473), - [anon_sym_BSLASHAcrlong] = ACTIONS(6473), - [anon_sym_BSLASHACRlong] = ACTIONS(6473), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6473), - [anon_sym_BSLASHacrfull] = ACTIONS(6473), - [anon_sym_BSLASHAcrfull] = ACTIONS(6473), - [anon_sym_BSLASHACRfull] = ACTIONS(6473), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6473), - [anon_sym_BSLASHacs] = ACTIONS(6473), - [anon_sym_BSLASHAcs] = ACTIONS(6473), - [anon_sym_BSLASHacsp] = ACTIONS(6473), - [anon_sym_BSLASHAcsp] = ACTIONS(6473), - [anon_sym_BSLASHacl] = ACTIONS(6473), - [anon_sym_BSLASHAcl] = ACTIONS(6473), - [anon_sym_BSLASHaclp] = ACTIONS(6473), - [anon_sym_BSLASHAclp] = ACTIONS(6473), - [anon_sym_BSLASHacf] = ACTIONS(6473), - [anon_sym_BSLASHAcf] = ACTIONS(6473), - [anon_sym_BSLASHacfp] = ACTIONS(6473), - [anon_sym_BSLASHAcfp] = ACTIONS(6473), - [anon_sym_BSLASHac] = ACTIONS(6473), - [anon_sym_BSLASHAc] = ACTIONS(6473), - [anon_sym_BSLASHacp] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6473), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6473), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6473), - [anon_sym_BSLASHcolor] = ACTIONS(6473), - [anon_sym_BSLASHcolorbox] = ACTIONS(6473), - [anon_sym_BSLASHtextcolor] = ACTIONS(6473), - [anon_sym_BSLASHpagecolor] = ACTIONS(6473), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6473), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6473), - [anon_sym_BSLASHtext] = ACTIONS(6473), - [anon_sym_BSLASHintertext] = ACTIONS(6473), - [anon_sym_shortintertext] = ACTIONS(6473), - }, - [622] = { - [sym_command_name] = ACTIONS(6477), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6477), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_RBRACK] = ACTIONS(6479), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_LPAREN] = ACTIONS(6479), - [anon_sym_RPAREN] = ACTIONS(6479), - [anon_sym_BSLASHpart] = ACTIONS(6477), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddpart] = ACTIONS(6477), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6479), - [anon_sym_BSLASHchapter] = ACTIONS(6477), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddchap] = ACTIONS(6477), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsection] = ACTIONS(6477), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddsec] = ACTIONS(6477), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubsection] = ACTIONS(6477), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6477), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHparagraph] = ACTIONS(6477), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6477), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6479), - [anon_sym_BSLASHitem] = ACTIONS(6477), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6479), - [anon_sym_LBRACE] = ACTIONS(6479), - [sym_word] = ACTIONS(6477), - [sym_placeholder] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6477), - [anon_sym_GT] = ACTIONS(6477), - [anon_sym_BANG] = ACTIONS(6477), - [anon_sym_PIPE] = ACTIONS(6477), - [anon_sym_COLON] = ACTIONS(6477), - [anon_sym_SQUOTE] = ACTIONS(6477), - [anon_sym__] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6479), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6479), - [anon_sym_DOLLAR] = ACTIONS(6477), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6479), - [anon_sym_BSLASHbegin] = ACTIONS(6477), - [anon_sym_BSLASHtitle] = ACTIONS(6477), - [anon_sym_BSLASHauthor] = ACTIONS(6477), - [anon_sym_BSLASHusepackage] = ACTIONS(6477), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6477), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6477), - [anon_sym_BSLASHinclude] = ACTIONS(6477), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6477), - [anon_sym_BSLASHinput] = ACTIONS(6477), - [anon_sym_BSLASHsubfile] = ACTIONS(6477), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6477), - [anon_sym_BSLASHbibliography] = ACTIONS(6477), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6477), - [anon_sym_BSLASHincludesvg] = ACTIONS(6477), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6477), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6477), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6477), - [anon_sym_BSLASHimport] = ACTIONS(6477), - [anon_sym_BSLASHsubimport] = ACTIONS(6477), - [anon_sym_BSLASHinputfrom] = ACTIONS(6477), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6477), - [anon_sym_BSLASHincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHcaption] = ACTIONS(6477), - [anon_sym_BSLASHcite] = ACTIONS(6477), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCite] = ACTIONS(6477), - [anon_sym_BSLASHnocite] = ACTIONS(6477), - [anon_sym_BSLASHcitet] = ACTIONS(6477), - [anon_sym_BSLASHcitep] = ACTIONS(6477), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteauthor] = ACTIONS(6477), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6477), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitetitle] = ACTIONS(6477), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteyear] = ACTIONS(6477), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitedate] = ACTIONS(6477), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteurl] = ACTIONS(6477), - [anon_sym_BSLASHfullcite] = ACTIONS(6477), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6477), - [anon_sym_BSLASHcitealt] = ACTIONS(6477), - [anon_sym_BSLASHcitealp] = ACTIONS(6477), - [anon_sym_BSLASHcitetext] = ACTIONS(6477), - [anon_sym_BSLASHparencite] = ACTIONS(6477), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHParencite] = ACTIONS(6477), - [anon_sym_BSLASHfootcite] = ACTIONS(6477), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6477), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6477), - [anon_sym_BSLASHtextcite] = ACTIONS(6477), - [anon_sym_BSLASHTextcite] = ACTIONS(6477), - [anon_sym_BSLASHsmartcite] = ACTIONS(6477), - [anon_sym_BSLASHSmartcite] = ACTIONS(6477), - [anon_sym_BSLASHsupercite] = ACTIONS(6477), - [anon_sym_BSLASHautocite] = ACTIONS(6477), - [anon_sym_BSLASHAutocite] = ACTIONS(6477), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHvolcite] = ACTIONS(6477), - [anon_sym_BSLASHVolcite] = ACTIONS(6477), - [anon_sym_BSLASHpvolcite] = ACTIONS(6477), - [anon_sym_BSLASHPvolcite] = ACTIONS(6477), - [anon_sym_BSLASHfvolcite] = ACTIONS(6477), - [anon_sym_BSLASHftvolcite] = ACTIONS(6477), - [anon_sym_BSLASHsvolcite] = ACTIONS(6477), - [anon_sym_BSLASHSvolcite] = ACTIONS(6477), - [anon_sym_BSLASHtvolcite] = ACTIONS(6477), - [anon_sym_BSLASHTvolcite] = ACTIONS(6477), - [anon_sym_BSLASHavolcite] = ACTIONS(6477), - [anon_sym_BSLASHAvolcite] = ACTIONS(6477), - [anon_sym_BSLASHnotecite] = ACTIONS(6477), - [anon_sym_BSLASHNotecite] = ACTIONS(6477), - [anon_sym_BSLASHpnotecite] = ACTIONS(6477), - [anon_sym_BSLASHPnotecite] = ACTIONS(6477), - [anon_sym_BSLASHfnotecite] = ACTIONS(6477), - [anon_sym_BSLASHlabel] = ACTIONS(6477), - [anon_sym_BSLASHref] = ACTIONS(6477), - [anon_sym_BSLASHeqref] = ACTIONS(6477), - [anon_sym_BSLASHvref] = ACTIONS(6477), - [anon_sym_BSLASHVref] = ACTIONS(6477), - [anon_sym_BSLASHautoref] = ACTIONS(6477), - [anon_sym_BSLASHpageref] = ACTIONS(6477), - [anon_sym_BSLASHcref] = ACTIONS(6477), - [anon_sym_BSLASHCref] = ACTIONS(6477), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnameCref] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHlabelcref] = ACTIONS(6477), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCrefrange] = ACTIONS(6477), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnewlabel] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6477), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6477), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6479), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHdef] = ACTIONS(6477), - [anon_sym_BSLASHlet] = ACTIONS(6477), - [anon_sym_BSLASHleft] = ACTIONS(6477), - [anon_sym_BSLASHbig] = ACTIONS(6477), - [anon_sym_BSLASHBig] = ACTIONS(6477), - [anon_sym_BSLASHbigg] = ACTIONS(6477), - [anon_sym_BSLASHBigg] = ACTIONS(6477), - [anon_sym_BSLASHbigl] = ACTIONS(6477), - [anon_sym_BSLASHBigl] = ACTIONS(6477), - [anon_sym_BSLASHbiggl] = ACTIONS(6477), - [anon_sym_BSLASHBiggl] = ACTIONS(6477), - [anon_sym_BSLASHright] = ACTIONS(6477), - [anon_sym_BSLASHbigr] = ACTIONS(6477), - [anon_sym_BSLASHBigr] = ACTIONS(6477), - [anon_sym_BSLASHbiggr] = ACTIONS(6477), - [anon_sym_BSLASHBiggr] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6477), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6477), - [anon_sym_BSLASHgls] = ACTIONS(6477), - [anon_sym_BSLASHGls] = ACTIONS(6477), - [anon_sym_BSLASHGLS] = ACTIONS(6477), - [anon_sym_BSLASHglspl] = ACTIONS(6477), - [anon_sym_BSLASHGlspl] = ACTIONS(6477), - [anon_sym_BSLASHGLSpl] = ACTIONS(6477), - [anon_sym_BSLASHglsdisp] = ACTIONS(6477), - [anon_sym_BSLASHglslink] = ACTIONS(6477), - [anon_sym_BSLASHglstext] = ACTIONS(6477), - [anon_sym_BSLASHGlstext] = ACTIONS(6477), - [anon_sym_BSLASHGLStext] = ACTIONS(6477), - [anon_sym_BSLASHglsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6477), - [anon_sym_BSLASHglsplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSplural] = ACTIONS(6477), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHglsname] = ACTIONS(6477), - [anon_sym_BSLASHGlsname] = ACTIONS(6477), - [anon_sym_BSLASHGLSname] = ACTIONS(6477), - [anon_sym_BSLASHglssymbol] = ACTIONS(6477), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6477), - [anon_sym_BSLASHglsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6477), - [anon_sym_BSLASHglsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6477), - [anon_sym_BSLASHglsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6477), - [anon_sym_BSLASHglsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6477), - [anon_sym_BSLASHglsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6477), - [anon_sym_BSLASHnewacronym] = ACTIONS(6477), - [anon_sym_BSLASHacrshort] = ACTIONS(6477), - [anon_sym_BSLASHAcrshort] = ACTIONS(6477), - [anon_sym_BSLASHACRshort] = ACTIONS(6477), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6477), - [anon_sym_BSLASHacrlong] = ACTIONS(6477), - [anon_sym_BSLASHAcrlong] = ACTIONS(6477), - [anon_sym_BSLASHACRlong] = ACTIONS(6477), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6477), - [anon_sym_BSLASHacrfull] = ACTIONS(6477), - [anon_sym_BSLASHAcrfull] = ACTIONS(6477), - [anon_sym_BSLASHACRfull] = ACTIONS(6477), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6477), - [anon_sym_BSLASHacs] = ACTIONS(6477), - [anon_sym_BSLASHAcs] = ACTIONS(6477), - [anon_sym_BSLASHacsp] = ACTIONS(6477), - [anon_sym_BSLASHAcsp] = ACTIONS(6477), - [anon_sym_BSLASHacl] = ACTIONS(6477), - [anon_sym_BSLASHAcl] = ACTIONS(6477), - [anon_sym_BSLASHaclp] = ACTIONS(6477), - [anon_sym_BSLASHAclp] = ACTIONS(6477), - [anon_sym_BSLASHacf] = ACTIONS(6477), - [anon_sym_BSLASHAcf] = ACTIONS(6477), - [anon_sym_BSLASHacfp] = ACTIONS(6477), - [anon_sym_BSLASHAcfp] = ACTIONS(6477), - [anon_sym_BSLASHac] = ACTIONS(6477), - [anon_sym_BSLASHAc] = ACTIONS(6477), - [anon_sym_BSLASHacp] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6477), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6477), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6477), - [anon_sym_BSLASHcolor] = ACTIONS(6477), - [anon_sym_BSLASHcolorbox] = ACTIONS(6477), - [anon_sym_BSLASHtextcolor] = ACTIONS(6477), - [anon_sym_BSLASHpagecolor] = ACTIONS(6477), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6477), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6477), - [anon_sym_BSLASHtext] = ACTIONS(6477), - [anon_sym_BSLASHintertext] = ACTIONS(6477), - [anon_sym_shortintertext] = ACTIONS(6477), - }, - [623] = { - [sym_command_name] = ACTIONS(6481), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(6483), - [anon_sym_COMMA] = ACTIONS(6483), - [anon_sym_EQ] = ACTIONS(6483), - [anon_sym_LPAREN] = ACTIONS(6483), - [anon_sym_RPAREN] = ACTIONS(6483), - [anon_sym_BSLASHpart] = ACTIONS(6481), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddpart] = ACTIONS(6481), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6483), - [anon_sym_BSLASHchapter] = ACTIONS(6481), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddchap] = ACTIONS(6481), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsection] = ACTIONS(6481), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddsec] = ACTIONS(6481), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubsection] = ACTIONS(6481), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6481), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHparagraph] = ACTIONS(6481), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6481), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6483), - [anon_sym_BSLASHitem] = ACTIONS(6481), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6483), - [anon_sym_LBRACE] = ACTIONS(6483), - [sym_word] = ACTIONS(6481), - [sym_placeholder] = ACTIONS(6483), - [anon_sym_PLUS] = ACTIONS(6483), - [anon_sym_DASH] = ACTIONS(6483), - [anon_sym_STAR] = ACTIONS(6483), - [anon_sym_SLASH] = ACTIONS(6483), - [anon_sym_LT] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6481), - [anon_sym_BANG] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6481), - [anon_sym_COLON] = ACTIONS(6481), - [anon_sym_SQUOTE] = ACTIONS(6481), - [anon_sym__] = ACTIONS(6483), - [anon_sym_CARET] = ACTIONS(6483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6483), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6483), - [anon_sym_DOLLAR] = ACTIONS(6481), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6483), - [anon_sym_BSLASHbegin] = ACTIONS(6481), - [anon_sym_BSLASHtitle] = ACTIONS(6481), - [anon_sym_BSLASHauthor] = ACTIONS(6481), - [anon_sym_BSLASHusepackage] = ACTIONS(6481), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6481), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6481), - [anon_sym_BSLASHinclude] = ACTIONS(6481), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6481), - [anon_sym_BSLASHinput] = ACTIONS(6481), - [anon_sym_BSLASHsubfile] = ACTIONS(6481), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6481), - [anon_sym_BSLASHbibliography] = ACTIONS(6481), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6481), - [anon_sym_BSLASHincludesvg] = ACTIONS(6481), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6481), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6481), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6481), - [anon_sym_BSLASHimport] = ACTIONS(6481), - [anon_sym_BSLASHsubimport] = ACTIONS(6481), - [anon_sym_BSLASHinputfrom] = ACTIONS(6481), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6481), - [anon_sym_BSLASHincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHcaption] = ACTIONS(6481), - [anon_sym_BSLASHcite] = ACTIONS(6481), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCite] = ACTIONS(6481), - [anon_sym_BSLASHnocite] = ACTIONS(6481), - [anon_sym_BSLASHcitet] = ACTIONS(6481), - [anon_sym_BSLASHcitep] = ACTIONS(6481), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteauthor] = ACTIONS(6481), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6481), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitetitle] = ACTIONS(6481), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteyear] = ACTIONS(6481), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitedate] = ACTIONS(6481), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteurl] = ACTIONS(6481), - [anon_sym_BSLASHfullcite] = ACTIONS(6481), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6481), - [anon_sym_BSLASHcitealt] = ACTIONS(6481), - [anon_sym_BSLASHcitealp] = ACTIONS(6481), - [anon_sym_BSLASHcitetext] = ACTIONS(6481), - [anon_sym_BSLASHparencite] = ACTIONS(6481), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHParencite] = ACTIONS(6481), - [anon_sym_BSLASHfootcite] = ACTIONS(6481), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6481), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6481), - [anon_sym_BSLASHtextcite] = ACTIONS(6481), - [anon_sym_BSLASHTextcite] = ACTIONS(6481), - [anon_sym_BSLASHsmartcite] = ACTIONS(6481), - [anon_sym_BSLASHSmartcite] = ACTIONS(6481), - [anon_sym_BSLASHsupercite] = ACTIONS(6481), - [anon_sym_BSLASHautocite] = ACTIONS(6481), - [anon_sym_BSLASHAutocite] = ACTIONS(6481), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHvolcite] = ACTIONS(6481), - [anon_sym_BSLASHVolcite] = ACTIONS(6481), - [anon_sym_BSLASHpvolcite] = ACTIONS(6481), - [anon_sym_BSLASHPvolcite] = ACTIONS(6481), - [anon_sym_BSLASHfvolcite] = ACTIONS(6481), - [anon_sym_BSLASHftvolcite] = ACTIONS(6481), - [anon_sym_BSLASHsvolcite] = ACTIONS(6481), - [anon_sym_BSLASHSvolcite] = ACTIONS(6481), - [anon_sym_BSLASHtvolcite] = ACTIONS(6481), - [anon_sym_BSLASHTvolcite] = ACTIONS(6481), - [anon_sym_BSLASHavolcite] = ACTIONS(6481), - [anon_sym_BSLASHAvolcite] = ACTIONS(6481), - [anon_sym_BSLASHnotecite] = ACTIONS(6481), - [anon_sym_BSLASHNotecite] = ACTIONS(6481), - [anon_sym_BSLASHpnotecite] = ACTIONS(6481), - [anon_sym_BSLASHPnotecite] = ACTIONS(6481), - [anon_sym_BSLASHfnotecite] = ACTIONS(6481), - [anon_sym_BSLASHlabel] = ACTIONS(6481), - [anon_sym_BSLASHref] = ACTIONS(6481), - [anon_sym_BSLASHeqref] = ACTIONS(6481), - [anon_sym_BSLASHvref] = ACTIONS(6481), - [anon_sym_BSLASHVref] = ACTIONS(6481), - [anon_sym_BSLASHautoref] = ACTIONS(6481), - [anon_sym_BSLASHpageref] = ACTIONS(6481), - [anon_sym_BSLASHcref] = ACTIONS(6481), - [anon_sym_BSLASHCref] = ACTIONS(6481), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnameCref] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHlabelcref] = ACTIONS(6481), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCrefrange] = ACTIONS(6481), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnewlabel] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6481), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6481), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6483), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHdef] = ACTIONS(6481), - [anon_sym_BSLASHlet] = ACTIONS(6481), - [anon_sym_BSLASHleft] = ACTIONS(6481), - [anon_sym_BSLASHbig] = ACTIONS(6481), - [anon_sym_BSLASHBig] = ACTIONS(6481), - [anon_sym_BSLASHbigg] = ACTIONS(6481), - [anon_sym_BSLASHBigg] = ACTIONS(6481), - [anon_sym_BSLASHbigl] = ACTIONS(6481), - [anon_sym_BSLASHBigl] = ACTIONS(6481), - [anon_sym_BSLASHbiggl] = ACTIONS(6481), - [anon_sym_BSLASHBiggl] = ACTIONS(6481), - [anon_sym_BSLASHright] = ACTIONS(6481), - [anon_sym_BSLASHbigr] = ACTIONS(6481), - [anon_sym_BSLASHBigr] = ACTIONS(6481), - [anon_sym_BSLASHbiggr] = ACTIONS(6481), - [anon_sym_BSLASHBiggr] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6481), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6481), - [anon_sym_BSLASHgls] = ACTIONS(6481), - [anon_sym_BSLASHGls] = ACTIONS(6481), - [anon_sym_BSLASHGLS] = ACTIONS(6481), - [anon_sym_BSLASHglspl] = ACTIONS(6481), - [anon_sym_BSLASHGlspl] = ACTIONS(6481), - [anon_sym_BSLASHGLSpl] = ACTIONS(6481), - [anon_sym_BSLASHglsdisp] = ACTIONS(6481), - [anon_sym_BSLASHglslink] = ACTIONS(6481), - [anon_sym_BSLASHglstext] = ACTIONS(6481), - [anon_sym_BSLASHGlstext] = ACTIONS(6481), - [anon_sym_BSLASHGLStext] = ACTIONS(6481), - [anon_sym_BSLASHglsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6481), - [anon_sym_BSLASHglsplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSplural] = ACTIONS(6481), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHglsname] = ACTIONS(6481), - [anon_sym_BSLASHGlsname] = ACTIONS(6481), - [anon_sym_BSLASHGLSname] = ACTIONS(6481), - [anon_sym_BSLASHglssymbol] = ACTIONS(6481), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6481), - [anon_sym_BSLASHglsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6481), - [anon_sym_BSLASHglsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6481), - [anon_sym_BSLASHglsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6481), - [anon_sym_BSLASHglsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6481), - [anon_sym_BSLASHglsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6481), - [anon_sym_BSLASHnewacronym] = ACTIONS(6481), - [anon_sym_BSLASHacrshort] = ACTIONS(6481), - [anon_sym_BSLASHAcrshort] = ACTIONS(6481), - [anon_sym_BSLASHACRshort] = ACTIONS(6481), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6481), - [anon_sym_BSLASHacrlong] = ACTIONS(6481), - [anon_sym_BSLASHAcrlong] = ACTIONS(6481), - [anon_sym_BSLASHACRlong] = ACTIONS(6481), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6481), - [anon_sym_BSLASHacrfull] = ACTIONS(6481), - [anon_sym_BSLASHAcrfull] = ACTIONS(6481), - [anon_sym_BSLASHACRfull] = ACTIONS(6481), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6481), - [anon_sym_BSLASHacs] = ACTIONS(6481), - [anon_sym_BSLASHAcs] = ACTIONS(6481), - [anon_sym_BSLASHacsp] = ACTIONS(6481), - [anon_sym_BSLASHAcsp] = ACTIONS(6481), - [anon_sym_BSLASHacl] = ACTIONS(6481), - [anon_sym_BSLASHAcl] = ACTIONS(6481), - [anon_sym_BSLASHaclp] = ACTIONS(6481), - [anon_sym_BSLASHAclp] = ACTIONS(6481), - [anon_sym_BSLASHacf] = ACTIONS(6481), - [anon_sym_BSLASHAcf] = ACTIONS(6481), - [anon_sym_BSLASHacfp] = ACTIONS(6481), - [anon_sym_BSLASHAcfp] = ACTIONS(6481), - [anon_sym_BSLASHac] = ACTIONS(6481), - [anon_sym_BSLASHAc] = ACTIONS(6481), - [anon_sym_BSLASHacp] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6481), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6481), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6481), - [anon_sym_BSLASHcolor] = ACTIONS(6481), - [anon_sym_BSLASHcolorbox] = ACTIONS(6481), - [anon_sym_BSLASHtextcolor] = ACTIONS(6481), - [anon_sym_BSLASHpagecolor] = ACTIONS(6481), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6481), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6481), - [anon_sym_BSLASHtext] = ACTIONS(6481), - [anon_sym_BSLASHintertext] = ACTIONS(6481), - [anon_sym_shortintertext] = ACTIONS(6481), - }, - [624] = { - [sym_command_name] = ACTIONS(6485), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6485), - [anon_sym_LBRACK] = ACTIONS(6487), - [anon_sym_RBRACK] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(6487), - [anon_sym_EQ] = ACTIONS(6487), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(6487), - [anon_sym_BSLASHpart] = ACTIONS(6485), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddpart] = ACTIONS(6485), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6487), - [anon_sym_BSLASHchapter] = ACTIONS(6485), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddchap] = ACTIONS(6485), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsection] = ACTIONS(6485), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddsec] = ACTIONS(6485), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubsection] = ACTIONS(6485), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6485), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHparagraph] = ACTIONS(6485), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6485), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6487), - [anon_sym_BSLASHitem] = ACTIONS(6485), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6487), - [anon_sym_LBRACE] = ACTIONS(6487), - [sym_word] = ACTIONS(6485), - [sym_placeholder] = ACTIONS(6487), - [anon_sym_PLUS] = ACTIONS(6487), - [anon_sym_DASH] = ACTIONS(6487), - [anon_sym_STAR] = ACTIONS(6487), - [anon_sym_SLASH] = ACTIONS(6487), - [anon_sym_LT] = ACTIONS(6485), - [anon_sym_GT] = ACTIONS(6485), - [anon_sym_BANG] = ACTIONS(6485), - [anon_sym_PIPE] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6485), - [anon_sym_SQUOTE] = ACTIONS(6485), - [anon_sym__] = ACTIONS(6487), - [anon_sym_CARET] = ACTIONS(6487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6487), - [anon_sym_DOLLAR] = ACTIONS(6485), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6487), - [anon_sym_BSLASHbegin] = ACTIONS(6485), - [anon_sym_BSLASHtitle] = ACTIONS(6485), - [anon_sym_BSLASHauthor] = ACTIONS(6485), - [anon_sym_BSLASHusepackage] = ACTIONS(6485), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6485), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6485), - [anon_sym_BSLASHinclude] = ACTIONS(6485), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6485), - [anon_sym_BSLASHinput] = ACTIONS(6485), - [anon_sym_BSLASHsubfile] = ACTIONS(6485), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6485), - [anon_sym_BSLASHbibliography] = ACTIONS(6485), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6485), - [anon_sym_BSLASHincludesvg] = ACTIONS(6485), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6485), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6485), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6485), - [anon_sym_BSLASHimport] = ACTIONS(6485), - [anon_sym_BSLASHsubimport] = ACTIONS(6485), - [anon_sym_BSLASHinputfrom] = ACTIONS(6485), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6485), - [anon_sym_BSLASHincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHcaption] = ACTIONS(6485), - [anon_sym_BSLASHcite] = ACTIONS(6485), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCite] = ACTIONS(6485), - [anon_sym_BSLASHnocite] = ACTIONS(6485), - [anon_sym_BSLASHcitet] = ACTIONS(6485), - [anon_sym_BSLASHcitep] = ACTIONS(6485), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteauthor] = ACTIONS(6485), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6485), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitetitle] = ACTIONS(6485), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteyear] = ACTIONS(6485), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitedate] = ACTIONS(6485), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteurl] = ACTIONS(6485), - [anon_sym_BSLASHfullcite] = ACTIONS(6485), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6485), - [anon_sym_BSLASHcitealt] = ACTIONS(6485), - [anon_sym_BSLASHcitealp] = ACTIONS(6485), - [anon_sym_BSLASHcitetext] = ACTIONS(6485), - [anon_sym_BSLASHparencite] = ACTIONS(6485), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHParencite] = ACTIONS(6485), - [anon_sym_BSLASHfootcite] = ACTIONS(6485), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6485), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6485), - [anon_sym_BSLASHtextcite] = ACTIONS(6485), - [anon_sym_BSLASHTextcite] = ACTIONS(6485), - [anon_sym_BSLASHsmartcite] = ACTIONS(6485), - [anon_sym_BSLASHSmartcite] = ACTIONS(6485), - [anon_sym_BSLASHsupercite] = ACTIONS(6485), - [anon_sym_BSLASHautocite] = ACTIONS(6485), - [anon_sym_BSLASHAutocite] = ACTIONS(6485), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHvolcite] = ACTIONS(6485), - [anon_sym_BSLASHVolcite] = ACTIONS(6485), - [anon_sym_BSLASHpvolcite] = ACTIONS(6485), - [anon_sym_BSLASHPvolcite] = ACTIONS(6485), - [anon_sym_BSLASHfvolcite] = ACTIONS(6485), - [anon_sym_BSLASHftvolcite] = ACTIONS(6485), - [anon_sym_BSLASHsvolcite] = ACTIONS(6485), - [anon_sym_BSLASHSvolcite] = ACTIONS(6485), - [anon_sym_BSLASHtvolcite] = ACTIONS(6485), - [anon_sym_BSLASHTvolcite] = ACTIONS(6485), - [anon_sym_BSLASHavolcite] = ACTIONS(6485), - [anon_sym_BSLASHAvolcite] = ACTIONS(6485), - [anon_sym_BSLASHnotecite] = ACTIONS(6485), - [anon_sym_BSLASHNotecite] = ACTIONS(6485), - [anon_sym_BSLASHpnotecite] = ACTIONS(6485), - [anon_sym_BSLASHPnotecite] = ACTIONS(6485), - [anon_sym_BSLASHfnotecite] = ACTIONS(6485), - [anon_sym_BSLASHlabel] = ACTIONS(6485), - [anon_sym_BSLASHref] = ACTIONS(6485), - [anon_sym_BSLASHeqref] = ACTIONS(6485), - [anon_sym_BSLASHvref] = ACTIONS(6485), - [anon_sym_BSLASHVref] = ACTIONS(6485), - [anon_sym_BSLASHautoref] = ACTIONS(6485), - [anon_sym_BSLASHpageref] = ACTIONS(6485), - [anon_sym_BSLASHcref] = ACTIONS(6485), - [anon_sym_BSLASHCref] = ACTIONS(6485), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnameCref] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHlabelcref] = ACTIONS(6485), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCrefrange] = ACTIONS(6485), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnewlabel] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6485), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6485), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6487), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHdef] = ACTIONS(6485), - [anon_sym_BSLASHlet] = ACTIONS(6485), - [anon_sym_BSLASHleft] = ACTIONS(6485), - [anon_sym_BSLASHbig] = ACTIONS(6485), - [anon_sym_BSLASHBig] = ACTIONS(6485), - [anon_sym_BSLASHbigg] = ACTIONS(6485), - [anon_sym_BSLASHBigg] = ACTIONS(6485), - [anon_sym_BSLASHbigl] = ACTIONS(6485), - [anon_sym_BSLASHBigl] = ACTIONS(6485), - [anon_sym_BSLASHbiggl] = ACTIONS(6485), - [anon_sym_BSLASHBiggl] = ACTIONS(6485), - [anon_sym_BSLASHright] = ACTIONS(6485), - [anon_sym_BSLASHbigr] = ACTIONS(6485), - [anon_sym_BSLASHBigr] = ACTIONS(6485), - [anon_sym_BSLASHbiggr] = ACTIONS(6485), - [anon_sym_BSLASHBiggr] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6485), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6485), - [anon_sym_BSLASHgls] = ACTIONS(6485), - [anon_sym_BSLASHGls] = ACTIONS(6485), - [anon_sym_BSLASHGLS] = ACTIONS(6485), - [anon_sym_BSLASHglspl] = ACTIONS(6485), - [anon_sym_BSLASHGlspl] = ACTIONS(6485), - [anon_sym_BSLASHGLSpl] = ACTIONS(6485), - [anon_sym_BSLASHglsdisp] = ACTIONS(6485), - [anon_sym_BSLASHglslink] = ACTIONS(6485), - [anon_sym_BSLASHglstext] = ACTIONS(6485), - [anon_sym_BSLASHGlstext] = ACTIONS(6485), - [anon_sym_BSLASHGLStext] = ACTIONS(6485), - [anon_sym_BSLASHglsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6485), - [anon_sym_BSLASHglsplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSplural] = ACTIONS(6485), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHglsname] = ACTIONS(6485), - [anon_sym_BSLASHGlsname] = ACTIONS(6485), - [anon_sym_BSLASHGLSname] = ACTIONS(6485), - [anon_sym_BSLASHglssymbol] = ACTIONS(6485), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6485), - [anon_sym_BSLASHglsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6485), - [anon_sym_BSLASHglsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6485), - [anon_sym_BSLASHglsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6485), - [anon_sym_BSLASHglsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6485), - [anon_sym_BSLASHglsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6485), - [anon_sym_BSLASHnewacronym] = ACTIONS(6485), - [anon_sym_BSLASHacrshort] = ACTIONS(6485), - [anon_sym_BSLASHAcrshort] = ACTIONS(6485), - [anon_sym_BSLASHACRshort] = ACTIONS(6485), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6485), - [anon_sym_BSLASHacrlong] = ACTIONS(6485), - [anon_sym_BSLASHAcrlong] = ACTIONS(6485), - [anon_sym_BSLASHACRlong] = ACTIONS(6485), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6485), - [anon_sym_BSLASHacrfull] = ACTIONS(6485), - [anon_sym_BSLASHAcrfull] = ACTIONS(6485), - [anon_sym_BSLASHACRfull] = ACTIONS(6485), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6485), - [anon_sym_BSLASHacs] = ACTIONS(6485), - [anon_sym_BSLASHAcs] = ACTIONS(6485), - [anon_sym_BSLASHacsp] = ACTIONS(6485), - [anon_sym_BSLASHAcsp] = ACTIONS(6485), - [anon_sym_BSLASHacl] = ACTIONS(6485), - [anon_sym_BSLASHAcl] = ACTIONS(6485), - [anon_sym_BSLASHaclp] = ACTIONS(6485), - [anon_sym_BSLASHAclp] = ACTIONS(6485), - [anon_sym_BSLASHacf] = ACTIONS(6485), - [anon_sym_BSLASHAcf] = ACTIONS(6485), - [anon_sym_BSLASHacfp] = ACTIONS(6485), - [anon_sym_BSLASHAcfp] = ACTIONS(6485), - [anon_sym_BSLASHac] = ACTIONS(6485), - [anon_sym_BSLASHAc] = ACTIONS(6485), - [anon_sym_BSLASHacp] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6485), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6485), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6485), - [anon_sym_BSLASHcolor] = ACTIONS(6485), - [anon_sym_BSLASHcolorbox] = ACTIONS(6485), - [anon_sym_BSLASHtextcolor] = ACTIONS(6485), - [anon_sym_BSLASHpagecolor] = ACTIONS(6485), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6485), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6485), - [anon_sym_BSLASHtext] = ACTIONS(6485), - [anon_sym_BSLASHintertext] = ACTIONS(6485), - [anon_sym_shortintertext] = ACTIONS(6485), - }, - [625] = { - [sym_command_name] = ACTIONS(6489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6489), - [anon_sym_LBRACK] = ACTIONS(6491), - [anon_sym_RBRACK] = ACTIONS(6491), - [anon_sym_COMMA] = ACTIONS(6491), - [anon_sym_EQ] = ACTIONS(6491), - [anon_sym_LPAREN] = ACTIONS(6491), - [anon_sym_RPAREN] = ACTIONS(6491), - [anon_sym_BSLASHpart] = ACTIONS(6489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddpart] = ACTIONS(6489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6491), - [anon_sym_BSLASHchapter] = ACTIONS(6489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddchap] = ACTIONS(6489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsection] = ACTIONS(6489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddsec] = ACTIONS(6489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubsection] = ACTIONS(6489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHparagraph] = ACTIONS(6489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6491), - [anon_sym_BSLASHitem] = ACTIONS(6489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6491), - [anon_sym_LBRACE] = ACTIONS(6491), - [sym_word] = ACTIONS(6489), - [sym_placeholder] = ACTIONS(6491), - [anon_sym_PLUS] = ACTIONS(6491), - [anon_sym_DASH] = ACTIONS(6491), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_LT] = ACTIONS(6489), - [anon_sym_GT] = ACTIONS(6489), - [anon_sym_BANG] = ACTIONS(6489), - [anon_sym_PIPE] = ACTIONS(6489), - [anon_sym_COLON] = ACTIONS(6489), - [anon_sym_SQUOTE] = ACTIONS(6489), - [anon_sym__] = ACTIONS(6491), - [anon_sym_CARET] = ACTIONS(6491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6491), - [anon_sym_DOLLAR] = ACTIONS(6489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6491), - [anon_sym_BSLASHbegin] = ACTIONS(6489), - [anon_sym_BSLASHtitle] = ACTIONS(6489), - [anon_sym_BSLASHauthor] = ACTIONS(6489), - [anon_sym_BSLASHusepackage] = ACTIONS(6489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6489), - [anon_sym_BSLASHinclude] = ACTIONS(6489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6489), - [anon_sym_BSLASHinput] = ACTIONS(6489), - [anon_sym_BSLASHsubfile] = ACTIONS(6489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6489), - [anon_sym_BSLASHbibliography] = ACTIONS(6489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6489), - [anon_sym_BSLASHincludesvg] = ACTIONS(6489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6489), - [anon_sym_BSLASHimport] = ACTIONS(6489), - [anon_sym_BSLASHsubimport] = ACTIONS(6489), - [anon_sym_BSLASHinputfrom] = ACTIONS(6489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6489), - [anon_sym_BSLASHincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHcaption] = ACTIONS(6489), - [anon_sym_BSLASHcite] = ACTIONS(6489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCite] = ACTIONS(6489), - [anon_sym_BSLASHnocite] = ACTIONS(6489), - [anon_sym_BSLASHcitet] = ACTIONS(6489), - [anon_sym_BSLASHcitep] = ACTIONS(6489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteauthor] = ACTIONS(6489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitetitle] = ACTIONS(6489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteyear] = ACTIONS(6489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitedate] = ACTIONS(6489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteurl] = ACTIONS(6489), - [anon_sym_BSLASHfullcite] = ACTIONS(6489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6489), - [anon_sym_BSLASHcitealt] = ACTIONS(6489), - [anon_sym_BSLASHcitealp] = ACTIONS(6489), - [anon_sym_BSLASHcitetext] = ACTIONS(6489), - [anon_sym_BSLASHparencite] = ACTIONS(6489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHParencite] = ACTIONS(6489), - [anon_sym_BSLASHfootcite] = ACTIONS(6489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6489), - [anon_sym_BSLASHtextcite] = ACTIONS(6489), - [anon_sym_BSLASHTextcite] = ACTIONS(6489), - [anon_sym_BSLASHsmartcite] = ACTIONS(6489), - [anon_sym_BSLASHSmartcite] = ACTIONS(6489), - [anon_sym_BSLASHsupercite] = ACTIONS(6489), - [anon_sym_BSLASHautocite] = ACTIONS(6489), - [anon_sym_BSLASHAutocite] = ACTIONS(6489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHvolcite] = ACTIONS(6489), - [anon_sym_BSLASHVolcite] = ACTIONS(6489), - [anon_sym_BSLASHpvolcite] = ACTIONS(6489), - [anon_sym_BSLASHPvolcite] = ACTIONS(6489), - [anon_sym_BSLASHfvolcite] = ACTIONS(6489), - [anon_sym_BSLASHftvolcite] = ACTIONS(6489), - [anon_sym_BSLASHsvolcite] = ACTIONS(6489), - [anon_sym_BSLASHSvolcite] = ACTIONS(6489), - [anon_sym_BSLASHtvolcite] = ACTIONS(6489), - [anon_sym_BSLASHTvolcite] = ACTIONS(6489), - [anon_sym_BSLASHavolcite] = ACTIONS(6489), - [anon_sym_BSLASHAvolcite] = ACTIONS(6489), - [anon_sym_BSLASHnotecite] = ACTIONS(6489), - [anon_sym_BSLASHNotecite] = ACTIONS(6489), - [anon_sym_BSLASHpnotecite] = ACTIONS(6489), - [anon_sym_BSLASHPnotecite] = ACTIONS(6489), - [anon_sym_BSLASHfnotecite] = ACTIONS(6489), - [anon_sym_BSLASHlabel] = ACTIONS(6489), - [anon_sym_BSLASHref] = ACTIONS(6489), - [anon_sym_BSLASHeqref] = ACTIONS(6489), - [anon_sym_BSLASHvref] = ACTIONS(6489), - [anon_sym_BSLASHVref] = ACTIONS(6489), - [anon_sym_BSLASHautoref] = ACTIONS(6489), - [anon_sym_BSLASHpageref] = ACTIONS(6489), - [anon_sym_BSLASHcref] = ACTIONS(6489), - [anon_sym_BSLASHCref] = ACTIONS(6489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnameCref] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHlabelcref] = ACTIONS(6489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCrefrange] = ACTIONS(6489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnewlabel] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6491), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHdef] = ACTIONS(6489), - [anon_sym_BSLASHlet] = ACTIONS(6489), - [anon_sym_BSLASHleft] = ACTIONS(6489), - [anon_sym_BSLASHbig] = ACTIONS(6489), - [anon_sym_BSLASHBig] = ACTIONS(6489), - [anon_sym_BSLASHbigg] = ACTIONS(6489), - [anon_sym_BSLASHBigg] = ACTIONS(6489), - [anon_sym_BSLASHbigl] = ACTIONS(6489), - [anon_sym_BSLASHBigl] = ACTIONS(6489), - [anon_sym_BSLASHbiggl] = ACTIONS(6489), - [anon_sym_BSLASHBiggl] = ACTIONS(6489), - [anon_sym_BSLASHright] = ACTIONS(6489), - [anon_sym_BSLASHbigr] = ACTIONS(6489), - [anon_sym_BSLASHBigr] = ACTIONS(6489), - [anon_sym_BSLASHbiggr] = ACTIONS(6489), - [anon_sym_BSLASHBiggr] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6489), - [anon_sym_BSLASHgls] = ACTIONS(6489), - [anon_sym_BSLASHGls] = ACTIONS(6489), - [anon_sym_BSLASHGLS] = ACTIONS(6489), - [anon_sym_BSLASHglspl] = ACTIONS(6489), - [anon_sym_BSLASHGlspl] = ACTIONS(6489), - [anon_sym_BSLASHGLSpl] = ACTIONS(6489), - [anon_sym_BSLASHglsdisp] = ACTIONS(6489), - [anon_sym_BSLASHglslink] = ACTIONS(6489), - [anon_sym_BSLASHglstext] = ACTIONS(6489), - [anon_sym_BSLASHGlstext] = ACTIONS(6489), - [anon_sym_BSLASHGLStext] = ACTIONS(6489), - [anon_sym_BSLASHglsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6489), - [anon_sym_BSLASHglsplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSplural] = ACTIONS(6489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHglsname] = ACTIONS(6489), - [anon_sym_BSLASHGlsname] = ACTIONS(6489), - [anon_sym_BSLASHGLSname] = ACTIONS(6489), - [anon_sym_BSLASHglssymbol] = ACTIONS(6489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6489), - [anon_sym_BSLASHglsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6489), - [anon_sym_BSLASHglsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6489), - [anon_sym_BSLASHglsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6489), - [anon_sym_BSLASHglsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6489), - [anon_sym_BSLASHglsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6489), - [anon_sym_BSLASHnewacronym] = ACTIONS(6489), - [anon_sym_BSLASHacrshort] = ACTIONS(6489), - [anon_sym_BSLASHAcrshort] = ACTIONS(6489), - [anon_sym_BSLASHACRshort] = ACTIONS(6489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6489), - [anon_sym_BSLASHacrlong] = ACTIONS(6489), - [anon_sym_BSLASHAcrlong] = ACTIONS(6489), - [anon_sym_BSLASHACRlong] = ACTIONS(6489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6489), - [anon_sym_BSLASHacrfull] = ACTIONS(6489), - [anon_sym_BSLASHAcrfull] = ACTIONS(6489), - [anon_sym_BSLASHACRfull] = ACTIONS(6489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6489), - [anon_sym_BSLASHacs] = ACTIONS(6489), - [anon_sym_BSLASHAcs] = ACTIONS(6489), - [anon_sym_BSLASHacsp] = ACTIONS(6489), - [anon_sym_BSLASHAcsp] = ACTIONS(6489), - [anon_sym_BSLASHacl] = ACTIONS(6489), - [anon_sym_BSLASHAcl] = ACTIONS(6489), - [anon_sym_BSLASHaclp] = ACTIONS(6489), - [anon_sym_BSLASHAclp] = ACTIONS(6489), - [anon_sym_BSLASHacf] = ACTIONS(6489), - [anon_sym_BSLASHAcf] = ACTIONS(6489), - [anon_sym_BSLASHacfp] = ACTIONS(6489), - [anon_sym_BSLASHAcfp] = ACTIONS(6489), - [anon_sym_BSLASHac] = ACTIONS(6489), - [anon_sym_BSLASHAc] = ACTIONS(6489), - [anon_sym_BSLASHacp] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6489), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6489), - [anon_sym_BSLASHcolor] = ACTIONS(6489), - [anon_sym_BSLASHcolorbox] = ACTIONS(6489), - [anon_sym_BSLASHtextcolor] = ACTIONS(6489), - [anon_sym_BSLASHpagecolor] = ACTIONS(6489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6489), - [anon_sym_BSLASHtext] = ACTIONS(6489), - [anon_sym_BSLASHintertext] = ACTIONS(6489), - [anon_sym_shortintertext] = ACTIONS(6489), - }, - [626] = { - [sym__subsection_declaration] = STATE(206), - [sym_subsection] = STATE(457), - [aux_sym__section_repeat4] = STATE(457), - [ts_builtin_sym_end] = ACTIONS(5862), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [anon_sym_RBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [627] = { - [sym_command_name] = ACTIONS(6493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6495), - [anon_sym_RBRACK] = ACTIONS(6495), - [anon_sym_COMMA] = ACTIONS(6495), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_LPAREN] = ACTIONS(6495), - [anon_sym_RPAREN] = ACTIONS(6495), - [anon_sym_BSLASHpart] = ACTIONS(6493), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddpart] = ACTIONS(6493), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6495), - [anon_sym_BSLASHchapter] = ACTIONS(6493), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddchap] = ACTIONS(6493), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsection] = ACTIONS(6493), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddsec] = ACTIONS(6493), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubsection] = ACTIONS(6493), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6493), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHparagraph] = ACTIONS(6493), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6493), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6495), - [anon_sym_BSLASHitem] = ACTIONS(6493), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6495), - [anon_sym_LBRACE] = ACTIONS(6495), - [sym_word] = ACTIONS(6493), - [sym_placeholder] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6495), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6493), - [anon_sym_GT] = ACTIONS(6493), - [anon_sym_BANG] = ACTIONS(6493), - [anon_sym_PIPE] = ACTIONS(6493), - [anon_sym_COLON] = ACTIONS(6493), - [anon_sym_SQUOTE] = ACTIONS(6493), - [anon_sym__] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6495), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6495), - [anon_sym_DOLLAR] = ACTIONS(6493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6495), - [anon_sym_BSLASHbegin] = ACTIONS(6493), - [anon_sym_BSLASHtitle] = ACTIONS(6493), - [anon_sym_BSLASHauthor] = ACTIONS(6493), - [anon_sym_BSLASHusepackage] = ACTIONS(6493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6493), - [anon_sym_BSLASHinclude] = ACTIONS(6493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6493), - [anon_sym_BSLASHinput] = ACTIONS(6493), - [anon_sym_BSLASHsubfile] = ACTIONS(6493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6493), - [anon_sym_BSLASHbibliography] = ACTIONS(6493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6493), - [anon_sym_BSLASHincludesvg] = ACTIONS(6493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6493), - [anon_sym_BSLASHimport] = ACTIONS(6493), - [anon_sym_BSLASHsubimport] = ACTIONS(6493), - [anon_sym_BSLASHinputfrom] = ACTIONS(6493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6493), - [anon_sym_BSLASHincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHcaption] = ACTIONS(6493), - [anon_sym_BSLASHcite] = ACTIONS(6493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCite] = ACTIONS(6493), - [anon_sym_BSLASHnocite] = ACTIONS(6493), - [anon_sym_BSLASHcitet] = ACTIONS(6493), - [anon_sym_BSLASHcitep] = ACTIONS(6493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteauthor] = ACTIONS(6493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitetitle] = ACTIONS(6493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteyear] = ACTIONS(6493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitedate] = ACTIONS(6493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteurl] = ACTIONS(6493), - [anon_sym_BSLASHfullcite] = ACTIONS(6493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6493), - [anon_sym_BSLASHcitealt] = ACTIONS(6493), - [anon_sym_BSLASHcitealp] = ACTIONS(6493), - [anon_sym_BSLASHcitetext] = ACTIONS(6493), - [anon_sym_BSLASHparencite] = ACTIONS(6493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHParencite] = ACTIONS(6493), - [anon_sym_BSLASHfootcite] = ACTIONS(6493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6493), - [anon_sym_BSLASHtextcite] = ACTIONS(6493), - [anon_sym_BSLASHTextcite] = ACTIONS(6493), - [anon_sym_BSLASHsmartcite] = ACTIONS(6493), - [anon_sym_BSLASHSmartcite] = ACTIONS(6493), - [anon_sym_BSLASHsupercite] = ACTIONS(6493), - [anon_sym_BSLASHautocite] = ACTIONS(6493), - [anon_sym_BSLASHAutocite] = ACTIONS(6493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHvolcite] = ACTIONS(6493), - [anon_sym_BSLASHVolcite] = ACTIONS(6493), - [anon_sym_BSLASHpvolcite] = ACTIONS(6493), - [anon_sym_BSLASHPvolcite] = ACTIONS(6493), - [anon_sym_BSLASHfvolcite] = ACTIONS(6493), - [anon_sym_BSLASHftvolcite] = ACTIONS(6493), - [anon_sym_BSLASHsvolcite] = ACTIONS(6493), - [anon_sym_BSLASHSvolcite] = ACTIONS(6493), - [anon_sym_BSLASHtvolcite] = ACTIONS(6493), - [anon_sym_BSLASHTvolcite] = ACTIONS(6493), - [anon_sym_BSLASHavolcite] = ACTIONS(6493), - [anon_sym_BSLASHAvolcite] = ACTIONS(6493), - [anon_sym_BSLASHnotecite] = ACTIONS(6493), - [anon_sym_BSLASHNotecite] = ACTIONS(6493), - [anon_sym_BSLASHpnotecite] = ACTIONS(6493), - [anon_sym_BSLASHPnotecite] = ACTIONS(6493), - [anon_sym_BSLASHfnotecite] = ACTIONS(6493), - [anon_sym_BSLASHlabel] = ACTIONS(6493), - [anon_sym_BSLASHref] = ACTIONS(6493), - [anon_sym_BSLASHeqref] = ACTIONS(6493), - [anon_sym_BSLASHvref] = ACTIONS(6493), - [anon_sym_BSLASHVref] = ACTIONS(6493), - [anon_sym_BSLASHautoref] = ACTIONS(6493), - [anon_sym_BSLASHpageref] = ACTIONS(6493), - [anon_sym_BSLASHcref] = ACTIONS(6493), - [anon_sym_BSLASHCref] = ACTIONS(6493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnameCref] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHlabelcref] = ACTIONS(6493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCrefrange] = ACTIONS(6493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnewlabel] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6495), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHdef] = ACTIONS(6493), - [anon_sym_BSLASHlet] = ACTIONS(6493), - [anon_sym_BSLASHleft] = ACTIONS(6493), - [anon_sym_BSLASHbig] = ACTIONS(6493), - [anon_sym_BSLASHBig] = ACTIONS(6493), - [anon_sym_BSLASHbigg] = ACTIONS(6493), - [anon_sym_BSLASHBigg] = ACTIONS(6493), - [anon_sym_BSLASHbigl] = ACTIONS(6493), - [anon_sym_BSLASHBigl] = ACTIONS(6493), - [anon_sym_BSLASHbiggl] = ACTIONS(6493), - [anon_sym_BSLASHBiggl] = ACTIONS(6493), - [anon_sym_BSLASHright] = ACTIONS(6493), - [anon_sym_BSLASHbigr] = ACTIONS(6493), - [anon_sym_BSLASHBigr] = ACTIONS(6493), - [anon_sym_BSLASHbiggr] = ACTIONS(6493), - [anon_sym_BSLASHBiggr] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6493), - [anon_sym_BSLASHgls] = ACTIONS(6493), - [anon_sym_BSLASHGls] = ACTIONS(6493), - [anon_sym_BSLASHGLS] = ACTIONS(6493), - [anon_sym_BSLASHglspl] = ACTIONS(6493), - [anon_sym_BSLASHGlspl] = ACTIONS(6493), - [anon_sym_BSLASHGLSpl] = ACTIONS(6493), - [anon_sym_BSLASHglsdisp] = ACTIONS(6493), - [anon_sym_BSLASHglslink] = ACTIONS(6493), - [anon_sym_BSLASHglstext] = ACTIONS(6493), - [anon_sym_BSLASHGlstext] = ACTIONS(6493), - [anon_sym_BSLASHGLStext] = ACTIONS(6493), - [anon_sym_BSLASHglsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6493), - [anon_sym_BSLASHglsplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSplural] = ACTIONS(6493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHglsname] = ACTIONS(6493), - [anon_sym_BSLASHGlsname] = ACTIONS(6493), - [anon_sym_BSLASHGLSname] = ACTIONS(6493), - [anon_sym_BSLASHglssymbol] = ACTIONS(6493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6493), - [anon_sym_BSLASHglsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6493), - [anon_sym_BSLASHglsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6493), - [anon_sym_BSLASHglsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6493), - [anon_sym_BSLASHglsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6493), - [anon_sym_BSLASHglsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6493), - [anon_sym_BSLASHnewacronym] = ACTIONS(6493), - [anon_sym_BSLASHacrshort] = ACTIONS(6493), - [anon_sym_BSLASHAcrshort] = ACTIONS(6493), - [anon_sym_BSLASHACRshort] = ACTIONS(6493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6493), - [anon_sym_BSLASHacrlong] = ACTIONS(6493), - [anon_sym_BSLASHAcrlong] = ACTIONS(6493), - [anon_sym_BSLASHACRlong] = ACTIONS(6493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6493), - [anon_sym_BSLASHacrfull] = ACTIONS(6493), - [anon_sym_BSLASHAcrfull] = ACTIONS(6493), - [anon_sym_BSLASHACRfull] = ACTIONS(6493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6493), - [anon_sym_BSLASHacs] = ACTIONS(6493), - [anon_sym_BSLASHAcs] = ACTIONS(6493), - [anon_sym_BSLASHacsp] = ACTIONS(6493), - [anon_sym_BSLASHAcsp] = ACTIONS(6493), - [anon_sym_BSLASHacl] = ACTIONS(6493), - [anon_sym_BSLASHAcl] = ACTIONS(6493), - [anon_sym_BSLASHaclp] = ACTIONS(6493), - [anon_sym_BSLASHAclp] = ACTIONS(6493), - [anon_sym_BSLASHacf] = ACTIONS(6493), - [anon_sym_BSLASHAcf] = ACTIONS(6493), - [anon_sym_BSLASHacfp] = ACTIONS(6493), - [anon_sym_BSLASHAcfp] = ACTIONS(6493), - [anon_sym_BSLASHac] = ACTIONS(6493), - [anon_sym_BSLASHAc] = ACTIONS(6493), - [anon_sym_BSLASHacp] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6493), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6493), - [anon_sym_BSLASHcolor] = ACTIONS(6493), - [anon_sym_BSLASHcolorbox] = ACTIONS(6493), - [anon_sym_BSLASHtextcolor] = ACTIONS(6493), - [anon_sym_BSLASHpagecolor] = ACTIONS(6493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6493), - [anon_sym_BSLASHtext] = ACTIONS(6493), - [anon_sym_BSLASHintertext] = ACTIONS(6493), - [anon_sym_shortintertext] = ACTIONS(6493), - }, - [628] = { - [sym_command_name] = ACTIONS(6497), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(6499), - [anon_sym_RBRACK] = ACTIONS(6499), - [anon_sym_COMMA] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(6499), - [anon_sym_LPAREN] = ACTIONS(6499), - [anon_sym_RPAREN] = ACTIONS(6499), - [anon_sym_BSLASHpart] = ACTIONS(6497), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddpart] = ACTIONS(6497), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6499), - [anon_sym_BSLASHchapter] = ACTIONS(6497), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddchap] = ACTIONS(6497), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsection] = ACTIONS(6497), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddsec] = ACTIONS(6497), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubsection] = ACTIONS(6497), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6497), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHparagraph] = ACTIONS(6497), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6497), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6499), - [anon_sym_BSLASHitem] = ACTIONS(6497), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6499), - [anon_sym_LBRACE] = ACTIONS(6499), - [sym_word] = ACTIONS(6497), - [sym_placeholder] = ACTIONS(6499), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_STAR] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6499), - [anon_sym_LT] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6497), - [anon_sym_BANG] = ACTIONS(6497), - [anon_sym_PIPE] = ACTIONS(6497), - [anon_sym_COLON] = ACTIONS(6497), - [anon_sym_SQUOTE] = ACTIONS(6497), - [anon_sym__] = ACTIONS(6499), - [anon_sym_CARET] = ACTIONS(6499), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6499), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6499), - [anon_sym_DOLLAR] = ACTIONS(6497), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6499), - [anon_sym_BSLASHbegin] = ACTIONS(6497), - [anon_sym_BSLASHtitle] = ACTIONS(6497), - [anon_sym_BSLASHauthor] = ACTIONS(6497), - [anon_sym_BSLASHusepackage] = ACTIONS(6497), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6497), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6497), - [anon_sym_BSLASHinclude] = ACTIONS(6497), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6497), - [anon_sym_BSLASHinput] = ACTIONS(6497), - [anon_sym_BSLASHsubfile] = ACTIONS(6497), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6497), - [anon_sym_BSLASHbibliography] = ACTIONS(6497), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6497), - [anon_sym_BSLASHincludesvg] = ACTIONS(6497), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6497), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6497), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6497), - [anon_sym_BSLASHimport] = ACTIONS(6497), - [anon_sym_BSLASHsubimport] = ACTIONS(6497), - [anon_sym_BSLASHinputfrom] = ACTIONS(6497), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6497), - [anon_sym_BSLASHincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHcaption] = ACTIONS(6497), - [anon_sym_BSLASHcite] = ACTIONS(6497), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCite] = ACTIONS(6497), - [anon_sym_BSLASHnocite] = ACTIONS(6497), - [anon_sym_BSLASHcitet] = ACTIONS(6497), - [anon_sym_BSLASHcitep] = ACTIONS(6497), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteauthor] = ACTIONS(6497), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6497), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitetitle] = ACTIONS(6497), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteyear] = ACTIONS(6497), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitedate] = ACTIONS(6497), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteurl] = ACTIONS(6497), - [anon_sym_BSLASHfullcite] = ACTIONS(6497), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6497), - [anon_sym_BSLASHcitealt] = ACTIONS(6497), - [anon_sym_BSLASHcitealp] = ACTIONS(6497), - [anon_sym_BSLASHcitetext] = ACTIONS(6497), - [anon_sym_BSLASHparencite] = ACTIONS(6497), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHParencite] = ACTIONS(6497), - [anon_sym_BSLASHfootcite] = ACTIONS(6497), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6497), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6497), - [anon_sym_BSLASHtextcite] = ACTIONS(6497), - [anon_sym_BSLASHTextcite] = ACTIONS(6497), - [anon_sym_BSLASHsmartcite] = ACTIONS(6497), - [anon_sym_BSLASHSmartcite] = ACTIONS(6497), - [anon_sym_BSLASHsupercite] = ACTIONS(6497), - [anon_sym_BSLASHautocite] = ACTIONS(6497), - [anon_sym_BSLASHAutocite] = ACTIONS(6497), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHvolcite] = ACTIONS(6497), - [anon_sym_BSLASHVolcite] = ACTIONS(6497), - [anon_sym_BSLASHpvolcite] = ACTIONS(6497), - [anon_sym_BSLASHPvolcite] = ACTIONS(6497), - [anon_sym_BSLASHfvolcite] = ACTIONS(6497), - [anon_sym_BSLASHftvolcite] = ACTIONS(6497), - [anon_sym_BSLASHsvolcite] = ACTIONS(6497), - [anon_sym_BSLASHSvolcite] = ACTIONS(6497), - [anon_sym_BSLASHtvolcite] = ACTIONS(6497), - [anon_sym_BSLASHTvolcite] = ACTIONS(6497), - [anon_sym_BSLASHavolcite] = ACTIONS(6497), - [anon_sym_BSLASHAvolcite] = ACTIONS(6497), - [anon_sym_BSLASHnotecite] = ACTIONS(6497), - [anon_sym_BSLASHNotecite] = ACTIONS(6497), - [anon_sym_BSLASHpnotecite] = ACTIONS(6497), - [anon_sym_BSLASHPnotecite] = ACTIONS(6497), - [anon_sym_BSLASHfnotecite] = ACTIONS(6497), - [anon_sym_BSLASHlabel] = ACTIONS(6497), - [anon_sym_BSLASHref] = ACTIONS(6497), - [anon_sym_BSLASHeqref] = ACTIONS(6497), - [anon_sym_BSLASHvref] = ACTIONS(6497), - [anon_sym_BSLASHVref] = ACTIONS(6497), - [anon_sym_BSLASHautoref] = ACTIONS(6497), - [anon_sym_BSLASHpageref] = ACTIONS(6497), - [anon_sym_BSLASHcref] = ACTIONS(6497), - [anon_sym_BSLASHCref] = ACTIONS(6497), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnameCref] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHlabelcref] = ACTIONS(6497), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCrefrange] = ACTIONS(6497), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnewlabel] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6497), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6497), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6499), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHdef] = ACTIONS(6497), - [anon_sym_BSLASHlet] = ACTIONS(6497), - [anon_sym_BSLASHleft] = ACTIONS(6497), - [anon_sym_BSLASHbig] = ACTIONS(6497), - [anon_sym_BSLASHBig] = ACTIONS(6497), - [anon_sym_BSLASHbigg] = ACTIONS(6497), - [anon_sym_BSLASHBigg] = ACTIONS(6497), - [anon_sym_BSLASHbigl] = ACTIONS(6497), - [anon_sym_BSLASHBigl] = ACTIONS(6497), - [anon_sym_BSLASHbiggl] = ACTIONS(6497), - [anon_sym_BSLASHBiggl] = ACTIONS(6497), - [anon_sym_BSLASHright] = ACTIONS(6497), - [anon_sym_BSLASHbigr] = ACTIONS(6497), - [anon_sym_BSLASHBigr] = ACTIONS(6497), - [anon_sym_BSLASHbiggr] = ACTIONS(6497), - [anon_sym_BSLASHBiggr] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6497), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6497), - [anon_sym_BSLASHgls] = ACTIONS(6497), - [anon_sym_BSLASHGls] = ACTIONS(6497), - [anon_sym_BSLASHGLS] = ACTIONS(6497), - [anon_sym_BSLASHglspl] = ACTIONS(6497), - [anon_sym_BSLASHGlspl] = ACTIONS(6497), - [anon_sym_BSLASHGLSpl] = ACTIONS(6497), - [anon_sym_BSLASHglsdisp] = ACTIONS(6497), - [anon_sym_BSLASHglslink] = ACTIONS(6497), - [anon_sym_BSLASHglstext] = ACTIONS(6497), - [anon_sym_BSLASHGlstext] = ACTIONS(6497), - [anon_sym_BSLASHGLStext] = ACTIONS(6497), - [anon_sym_BSLASHglsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6497), - [anon_sym_BSLASHglsplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSplural] = ACTIONS(6497), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHglsname] = ACTIONS(6497), - [anon_sym_BSLASHGlsname] = ACTIONS(6497), - [anon_sym_BSLASHGLSname] = ACTIONS(6497), - [anon_sym_BSLASHglssymbol] = ACTIONS(6497), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6497), - [anon_sym_BSLASHglsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6497), - [anon_sym_BSLASHglsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6497), - [anon_sym_BSLASHglsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6497), - [anon_sym_BSLASHglsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6497), - [anon_sym_BSLASHglsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6497), - [anon_sym_BSLASHnewacronym] = ACTIONS(6497), - [anon_sym_BSLASHacrshort] = ACTIONS(6497), - [anon_sym_BSLASHAcrshort] = ACTIONS(6497), - [anon_sym_BSLASHACRshort] = ACTIONS(6497), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6497), - [anon_sym_BSLASHacrlong] = ACTIONS(6497), - [anon_sym_BSLASHAcrlong] = ACTIONS(6497), - [anon_sym_BSLASHACRlong] = ACTIONS(6497), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6497), - [anon_sym_BSLASHacrfull] = ACTIONS(6497), - [anon_sym_BSLASHAcrfull] = ACTIONS(6497), - [anon_sym_BSLASHACRfull] = ACTIONS(6497), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6497), - [anon_sym_BSLASHacs] = ACTIONS(6497), - [anon_sym_BSLASHAcs] = ACTIONS(6497), - [anon_sym_BSLASHacsp] = ACTIONS(6497), - [anon_sym_BSLASHAcsp] = ACTIONS(6497), - [anon_sym_BSLASHacl] = ACTIONS(6497), - [anon_sym_BSLASHAcl] = ACTIONS(6497), - [anon_sym_BSLASHaclp] = ACTIONS(6497), - [anon_sym_BSLASHAclp] = ACTIONS(6497), - [anon_sym_BSLASHacf] = ACTIONS(6497), - [anon_sym_BSLASHAcf] = ACTIONS(6497), - [anon_sym_BSLASHacfp] = ACTIONS(6497), - [anon_sym_BSLASHAcfp] = ACTIONS(6497), - [anon_sym_BSLASHac] = ACTIONS(6497), - [anon_sym_BSLASHAc] = ACTIONS(6497), - [anon_sym_BSLASHacp] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6497), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6497), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6497), - [anon_sym_BSLASHcolor] = ACTIONS(6497), - [anon_sym_BSLASHcolorbox] = ACTIONS(6497), - [anon_sym_BSLASHtextcolor] = ACTIONS(6497), - [anon_sym_BSLASHpagecolor] = ACTIONS(6497), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6497), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6497), - [anon_sym_BSLASHtext] = ACTIONS(6497), - [anon_sym_BSLASHintertext] = ACTIONS(6497), - [anon_sym_shortintertext] = ACTIONS(6497), - }, - [629] = { - [sym_command_name] = ACTIONS(6501), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6501), - [anon_sym_LBRACK] = ACTIONS(6503), - [anon_sym_RBRACK] = ACTIONS(6503), - [anon_sym_COMMA] = ACTIONS(6503), - [anon_sym_EQ] = ACTIONS(6503), - [anon_sym_LPAREN] = ACTIONS(6503), - [anon_sym_RPAREN] = ACTIONS(6503), - [anon_sym_BSLASHpart] = ACTIONS(6501), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddpart] = ACTIONS(6501), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6503), - [anon_sym_BSLASHchapter] = ACTIONS(6501), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddchap] = ACTIONS(6501), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsection] = ACTIONS(6501), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddsec] = ACTIONS(6501), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubsection] = ACTIONS(6501), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6501), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHparagraph] = ACTIONS(6501), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6501), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6503), - [anon_sym_BSLASHitem] = ACTIONS(6501), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6503), - [anon_sym_LBRACE] = ACTIONS(6503), - [sym_word] = ACTIONS(6501), - [sym_placeholder] = ACTIONS(6503), - [anon_sym_PLUS] = ACTIONS(6503), - [anon_sym_DASH] = ACTIONS(6503), - [anon_sym_STAR] = ACTIONS(6503), - [anon_sym_SLASH] = ACTIONS(6503), - [anon_sym_LT] = ACTIONS(6501), - [anon_sym_GT] = ACTIONS(6501), - [anon_sym_BANG] = ACTIONS(6501), - [anon_sym_PIPE] = ACTIONS(6501), - [anon_sym_COLON] = ACTIONS(6501), - [anon_sym_SQUOTE] = ACTIONS(6501), - [anon_sym__] = ACTIONS(6503), - [anon_sym_CARET] = ACTIONS(6503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6503), - [anon_sym_DOLLAR] = ACTIONS(6501), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6503), - [anon_sym_BSLASHbegin] = ACTIONS(6501), - [anon_sym_BSLASHtitle] = ACTIONS(6501), - [anon_sym_BSLASHauthor] = ACTIONS(6501), - [anon_sym_BSLASHusepackage] = ACTIONS(6501), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6501), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6501), - [anon_sym_BSLASHinclude] = ACTIONS(6501), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6501), - [anon_sym_BSLASHinput] = ACTIONS(6501), - [anon_sym_BSLASHsubfile] = ACTIONS(6501), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6501), - [anon_sym_BSLASHbibliography] = ACTIONS(6501), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6501), - [anon_sym_BSLASHincludesvg] = ACTIONS(6501), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6501), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6501), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6501), - [anon_sym_BSLASHimport] = ACTIONS(6501), - [anon_sym_BSLASHsubimport] = ACTIONS(6501), - [anon_sym_BSLASHinputfrom] = ACTIONS(6501), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6501), - [anon_sym_BSLASHincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHcaption] = ACTIONS(6501), - [anon_sym_BSLASHcite] = ACTIONS(6501), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCite] = ACTIONS(6501), - [anon_sym_BSLASHnocite] = ACTIONS(6501), - [anon_sym_BSLASHcitet] = ACTIONS(6501), - [anon_sym_BSLASHcitep] = ACTIONS(6501), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteauthor] = ACTIONS(6501), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6501), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitetitle] = ACTIONS(6501), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteyear] = ACTIONS(6501), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitedate] = ACTIONS(6501), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteurl] = ACTIONS(6501), - [anon_sym_BSLASHfullcite] = ACTIONS(6501), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6501), - [anon_sym_BSLASHcitealt] = ACTIONS(6501), - [anon_sym_BSLASHcitealp] = ACTIONS(6501), - [anon_sym_BSLASHcitetext] = ACTIONS(6501), - [anon_sym_BSLASHparencite] = ACTIONS(6501), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHParencite] = ACTIONS(6501), - [anon_sym_BSLASHfootcite] = ACTIONS(6501), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6501), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6501), - [anon_sym_BSLASHtextcite] = ACTIONS(6501), - [anon_sym_BSLASHTextcite] = ACTIONS(6501), - [anon_sym_BSLASHsmartcite] = ACTIONS(6501), - [anon_sym_BSLASHSmartcite] = ACTIONS(6501), - [anon_sym_BSLASHsupercite] = ACTIONS(6501), - [anon_sym_BSLASHautocite] = ACTIONS(6501), - [anon_sym_BSLASHAutocite] = ACTIONS(6501), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHvolcite] = ACTIONS(6501), - [anon_sym_BSLASHVolcite] = ACTIONS(6501), - [anon_sym_BSLASHpvolcite] = ACTIONS(6501), - [anon_sym_BSLASHPvolcite] = ACTIONS(6501), - [anon_sym_BSLASHfvolcite] = ACTIONS(6501), - [anon_sym_BSLASHftvolcite] = ACTIONS(6501), - [anon_sym_BSLASHsvolcite] = ACTIONS(6501), - [anon_sym_BSLASHSvolcite] = ACTIONS(6501), - [anon_sym_BSLASHtvolcite] = ACTIONS(6501), - [anon_sym_BSLASHTvolcite] = ACTIONS(6501), - [anon_sym_BSLASHavolcite] = ACTIONS(6501), - [anon_sym_BSLASHAvolcite] = ACTIONS(6501), - [anon_sym_BSLASHnotecite] = ACTIONS(6501), - [anon_sym_BSLASHNotecite] = ACTIONS(6501), - [anon_sym_BSLASHpnotecite] = ACTIONS(6501), - [anon_sym_BSLASHPnotecite] = ACTIONS(6501), - [anon_sym_BSLASHfnotecite] = ACTIONS(6501), - [anon_sym_BSLASHlabel] = ACTIONS(6501), - [anon_sym_BSLASHref] = ACTIONS(6501), - [anon_sym_BSLASHeqref] = ACTIONS(6501), - [anon_sym_BSLASHvref] = ACTIONS(6501), - [anon_sym_BSLASHVref] = ACTIONS(6501), - [anon_sym_BSLASHautoref] = ACTIONS(6501), - [anon_sym_BSLASHpageref] = ACTIONS(6501), - [anon_sym_BSLASHcref] = ACTIONS(6501), - [anon_sym_BSLASHCref] = ACTIONS(6501), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnameCref] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHlabelcref] = ACTIONS(6501), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCrefrange] = ACTIONS(6501), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnewlabel] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6501), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6501), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6503), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHdef] = ACTIONS(6501), - [anon_sym_BSLASHlet] = ACTIONS(6501), - [anon_sym_BSLASHleft] = ACTIONS(6501), - [anon_sym_BSLASHbig] = ACTIONS(6501), - [anon_sym_BSLASHBig] = ACTIONS(6501), - [anon_sym_BSLASHbigg] = ACTIONS(6501), - [anon_sym_BSLASHBigg] = ACTIONS(6501), - [anon_sym_BSLASHbigl] = ACTIONS(6501), - [anon_sym_BSLASHBigl] = ACTIONS(6501), - [anon_sym_BSLASHbiggl] = ACTIONS(6501), - [anon_sym_BSLASHBiggl] = ACTIONS(6501), - [anon_sym_BSLASHright] = ACTIONS(6501), - [anon_sym_BSLASHbigr] = ACTIONS(6501), - [anon_sym_BSLASHBigr] = ACTIONS(6501), - [anon_sym_BSLASHbiggr] = ACTIONS(6501), - [anon_sym_BSLASHBiggr] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6501), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6501), - [anon_sym_BSLASHgls] = ACTIONS(6501), - [anon_sym_BSLASHGls] = ACTIONS(6501), - [anon_sym_BSLASHGLS] = ACTIONS(6501), - [anon_sym_BSLASHglspl] = ACTIONS(6501), - [anon_sym_BSLASHGlspl] = ACTIONS(6501), - [anon_sym_BSLASHGLSpl] = ACTIONS(6501), - [anon_sym_BSLASHglsdisp] = ACTIONS(6501), - [anon_sym_BSLASHglslink] = ACTIONS(6501), - [anon_sym_BSLASHglstext] = ACTIONS(6501), - [anon_sym_BSLASHGlstext] = ACTIONS(6501), - [anon_sym_BSLASHGLStext] = ACTIONS(6501), - [anon_sym_BSLASHglsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6501), - [anon_sym_BSLASHglsplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSplural] = ACTIONS(6501), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHglsname] = ACTIONS(6501), - [anon_sym_BSLASHGlsname] = ACTIONS(6501), - [anon_sym_BSLASHGLSname] = ACTIONS(6501), - [anon_sym_BSLASHglssymbol] = ACTIONS(6501), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6501), - [anon_sym_BSLASHglsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6501), - [anon_sym_BSLASHglsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6501), - [anon_sym_BSLASHglsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6501), - [anon_sym_BSLASHglsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6501), - [anon_sym_BSLASHglsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6501), - [anon_sym_BSLASHnewacronym] = ACTIONS(6501), - [anon_sym_BSLASHacrshort] = ACTIONS(6501), - [anon_sym_BSLASHAcrshort] = ACTIONS(6501), - [anon_sym_BSLASHACRshort] = ACTIONS(6501), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6501), - [anon_sym_BSLASHacrlong] = ACTIONS(6501), - [anon_sym_BSLASHAcrlong] = ACTIONS(6501), - [anon_sym_BSLASHACRlong] = ACTIONS(6501), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6501), - [anon_sym_BSLASHacrfull] = ACTIONS(6501), - [anon_sym_BSLASHAcrfull] = ACTIONS(6501), - [anon_sym_BSLASHACRfull] = ACTIONS(6501), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6501), - [anon_sym_BSLASHacs] = ACTIONS(6501), - [anon_sym_BSLASHAcs] = ACTIONS(6501), - [anon_sym_BSLASHacsp] = ACTIONS(6501), - [anon_sym_BSLASHAcsp] = ACTIONS(6501), - [anon_sym_BSLASHacl] = ACTIONS(6501), - [anon_sym_BSLASHAcl] = ACTIONS(6501), - [anon_sym_BSLASHaclp] = ACTIONS(6501), - [anon_sym_BSLASHAclp] = ACTIONS(6501), - [anon_sym_BSLASHacf] = ACTIONS(6501), - [anon_sym_BSLASHAcf] = ACTIONS(6501), - [anon_sym_BSLASHacfp] = ACTIONS(6501), - [anon_sym_BSLASHAcfp] = ACTIONS(6501), - [anon_sym_BSLASHac] = ACTIONS(6501), - [anon_sym_BSLASHAc] = ACTIONS(6501), - [anon_sym_BSLASHacp] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6501), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6501), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6501), - [anon_sym_BSLASHcolor] = ACTIONS(6501), - [anon_sym_BSLASHcolorbox] = ACTIONS(6501), - [anon_sym_BSLASHtextcolor] = ACTIONS(6501), - [anon_sym_BSLASHpagecolor] = ACTIONS(6501), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6501), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6501), - [anon_sym_BSLASHtext] = ACTIONS(6501), - [anon_sym_BSLASHintertext] = ACTIONS(6501), - [anon_sym_shortintertext] = ACTIONS(6501), - }, - [630] = { - [sym_command_name] = ACTIONS(6505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(6507), - [anon_sym_RBRACK] = ACTIONS(6507), - [anon_sym_COMMA] = ACTIONS(6507), - [anon_sym_EQ] = ACTIONS(6507), - [anon_sym_LPAREN] = ACTIONS(6507), - [anon_sym_RPAREN] = ACTIONS(6507), - [anon_sym_BSLASHpart] = ACTIONS(6505), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddpart] = ACTIONS(6505), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6507), - [anon_sym_BSLASHchapter] = ACTIONS(6505), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddchap] = ACTIONS(6505), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsection] = ACTIONS(6505), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddsec] = ACTIONS(6505), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubsection] = ACTIONS(6505), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6505), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHparagraph] = ACTIONS(6505), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6505), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6507), - [anon_sym_BSLASHitem] = ACTIONS(6505), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [sym_word] = ACTIONS(6505), - [sym_placeholder] = ACTIONS(6507), - [anon_sym_PLUS] = ACTIONS(6507), - [anon_sym_DASH] = ACTIONS(6507), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_SLASH] = ACTIONS(6507), - [anon_sym_LT] = ACTIONS(6505), - [anon_sym_GT] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6505), - [anon_sym_PIPE] = ACTIONS(6505), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6505), - [anon_sym__] = ACTIONS(6507), - [anon_sym_CARET] = ACTIONS(6507), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6507), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6507), - [anon_sym_DOLLAR] = ACTIONS(6505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6507), - [anon_sym_BSLASHbegin] = ACTIONS(6505), - [anon_sym_BSLASHtitle] = ACTIONS(6505), - [anon_sym_BSLASHauthor] = ACTIONS(6505), - [anon_sym_BSLASHusepackage] = ACTIONS(6505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6505), - [anon_sym_BSLASHinclude] = ACTIONS(6505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6505), - [anon_sym_BSLASHinput] = ACTIONS(6505), - [anon_sym_BSLASHsubfile] = ACTIONS(6505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6505), - [anon_sym_BSLASHbibliography] = ACTIONS(6505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6505), - [anon_sym_BSLASHincludesvg] = ACTIONS(6505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6505), - [anon_sym_BSLASHimport] = ACTIONS(6505), - [anon_sym_BSLASHsubimport] = ACTIONS(6505), - [anon_sym_BSLASHinputfrom] = ACTIONS(6505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6505), - [anon_sym_BSLASHincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHcaption] = ACTIONS(6505), - [anon_sym_BSLASHcite] = ACTIONS(6505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCite] = ACTIONS(6505), - [anon_sym_BSLASHnocite] = ACTIONS(6505), - [anon_sym_BSLASHcitet] = ACTIONS(6505), - [anon_sym_BSLASHcitep] = ACTIONS(6505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteauthor] = ACTIONS(6505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitetitle] = ACTIONS(6505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteyear] = ACTIONS(6505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitedate] = ACTIONS(6505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteurl] = ACTIONS(6505), - [anon_sym_BSLASHfullcite] = ACTIONS(6505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6505), - [anon_sym_BSLASHcitealt] = ACTIONS(6505), - [anon_sym_BSLASHcitealp] = ACTIONS(6505), - [anon_sym_BSLASHcitetext] = ACTIONS(6505), - [anon_sym_BSLASHparencite] = ACTIONS(6505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHParencite] = ACTIONS(6505), - [anon_sym_BSLASHfootcite] = ACTIONS(6505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6505), - [anon_sym_BSLASHtextcite] = ACTIONS(6505), - [anon_sym_BSLASHTextcite] = ACTIONS(6505), - [anon_sym_BSLASHsmartcite] = ACTIONS(6505), - [anon_sym_BSLASHSmartcite] = ACTIONS(6505), - [anon_sym_BSLASHsupercite] = ACTIONS(6505), - [anon_sym_BSLASHautocite] = ACTIONS(6505), - [anon_sym_BSLASHAutocite] = ACTIONS(6505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHvolcite] = ACTIONS(6505), - [anon_sym_BSLASHVolcite] = ACTIONS(6505), - [anon_sym_BSLASHpvolcite] = ACTIONS(6505), - [anon_sym_BSLASHPvolcite] = ACTIONS(6505), - [anon_sym_BSLASHfvolcite] = ACTIONS(6505), - [anon_sym_BSLASHftvolcite] = ACTIONS(6505), - [anon_sym_BSLASHsvolcite] = ACTIONS(6505), - [anon_sym_BSLASHSvolcite] = ACTIONS(6505), - [anon_sym_BSLASHtvolcite] = ACTIONS(6505), - [anon_sym_BSLASHTvolcite] = ACTIONS(6505), - [anon_sym_BSLASHavolcite] = ACTIONS(6505), - [anon_sym_BSLASHAvolcite] = ACTIONS(6505), - [anon_sym_BSLASHnotecite] = ACTIONS(6505), - [anon_sym_BSLASHNotecite] = ACTIONS(6505), - [anon_sym_BSLASHpnotecite] = ACTIONS(6505), - [anon_sym_BSLASHPnotecite] = ACTIONS(6505), - [anon_sym_BSLASHfnotecite] = ACTIONS(6505), - [anon_sym_BSLASHlabel] = ACTIONS(6505), - [anon_sym_BSLASHref] = ACTIONS(6505), - [anon_sym_BSLASHeqref] = ACTIONS(6505), - [anon_sym_BSLASHvref] = ACTIONS(6505), - [anon_sym_BSLASHVref] = ACTIONS(6505), - [anon_sym_BSLASHautoref] = ACTIONS(6505), - [anon_sym_BSLASHpageref] = ACTIONS(6505), - [anon_sym_BSLASHcref] = ACTIONS(6505), - [anon_sym_BSLASHCref] = ACTIONS(6505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnameCref] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHlabelcref] = ACTIONS(6505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCrefrange] = ACTIONS(6505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnewlabel] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6507), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHdef] = ACTIONS(6505), - [anon_sym_BSLASHlet] = ACTIONS(6505), - [anon_sym_BSLASHleft] = ACTIONS(6505), - [anon_sym_BSLASHbig] = ACTIONS(6505), - [anon_sym_BSLASHBig] = ACTIONS(6505), - [anon_sym_BSLASHbigg] = ACTIONS(6505), - [anon_sym_BSLASHBigg] = ACTIONS(6505), - [anon_sym_BSLASHbigl] = ACTIONS(6505), - [anon_sym_BSLASHBigl] = ACTIONS(6505), - [anon_sym_BSLASHbiggl] = ACTIONS(6505), - [anon_sym_BSLASHBiggl] = ACTIONS(6505), - [anon_sym_BSLASHright] = ACTIONS(6505), - [anon_sym_BSLASHbigr] = ACTIONS(6505), - [anon_sym_BSLASHBigr] = ACTIONS(6505), - [anon_sym_BSLASHbiggr] = ACTIONS(6505), - [anon_sym_BSLASHBiggr] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6505), - [anon_sym_BSLASHgls] = ACTIONS(6505), - [anon_sym_BSLASHGls] = ACTIONS(6505), - [anon_sym_BSLASHGLS] = ACTIONS(6505), - [anon_sym_BSLASHglspl] = ACTIONS(6505), - [anon_sym_BSLASHGlspl] = ACTIONS(6505), - [anon_sym_BSLASHGLSpl] = ACTIONS(6505), - [anon_sym_BSLASHglsdisp] = ACTIONS(6505), - [anon_sym_BSLASHglslink] = ACTIONS(6505), - [anon_sym_BSLASHglstext] = ACTIONS(6505), - [anon_sym_BSLASHGlstext] = ACTIONS(6505), - [anon_sym_BSLASHGLStext] = ACTIONS(6505), - [anon_sym_BSLASHglsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6505), - [anon_sym_BSLASHglsplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSplural] = ACTIONS(6505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHglsname] = ACTIONS(6505), - [anon_sym_BSLASHGlsname] = ACTIONS(6505), - [anon_sym_BSLASHGLSname] = ACTIONS(6505), - [anon_sym_BSLASHglssymbol] = ACTIONS(6505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6505), - [anon_sym_BSLASHglsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6505), - [anon_sym_BSLASHglsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6505), - [anon_sym_BSLASHglsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6505), - [anon_sym_BSLASHglsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6505), - [anon_sym_BSLASHglsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6505), - [anon_sym_BSLASHnewacronym] = ACTIONS(6505), - [anon_sym_BSLASHacrshort] = ACTIONS(6505), - [anon_sym_BSLASHAcrshort] = ACTIONS(6505), - [anon_sym_BSLASHACRshort] = ACTIONS(6505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6505), - [anon_sym_BSLASHacrlong] = ACTIONS(6505), - [anon_sym_BSLASHAcrlong] = ACTIONS(6505), - [anon_sym_BSLASHACRlong] = ACTIONS(6505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6505), - [anon_sym_BSLASHacrfull] = ACTIONS(6505), - [anon_sym_BSLASHAcrfull] = ACTIONS(6505), - [anon_sym_BSLASHACRfull] = ACTIONS(6505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6505), - [anon_sym_BSLASHacs] = ACTIONS(6505), - [anon_sym_BSLASHAcs] = ACTIONS(6505), - [anon_sym_BSLASHacsp] = ACTIONS(6505), - [anon_sym_BSLASHAcsp] = ACTIONS(6505), - [anon_sym_BSLASHacl] = ACTIONS(6505), - [anon_sym_BSLASHAcl] = ACTIONS(6505), - [anon_sym_BSLASHaclp] = ACTIONS(6505), - [anon_sym_BSLASHAclp] = ACTIONS(6505), - [anon_sym_BSLASHacf] = ACTIONS(6505), - [anon_sym_BSLASHAcf] = ACTIONS(6505), - [anon_sym_BSLASHacfp] = ACTIONS(6505), - [anon_sym_BSLASHAcfp] = ACTIONS(6505), - [anon_sym_BSLASHac] = ACTIONS(6505), - [anon_sym_BSLASHAc] = ACTIONS(6505), - [anon_sym_BSLASHacp] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6505), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6505), - [anon_sym_BSLASHcolor] = ACTIONS(6505), - [anon_sym_BSLASHcolorbox] = ACTIONS(6505), - [anon_sym_BSLASHtextcolor] = ACTIONS(6505), - [anon_sym_BSLASHpagecolor] = ACTIONS(6505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6505), - [anon_sym_BSLASHtext] = ACTIONS(6505), - [anon_sym_BSLASHintertext] = ACTIONS(6505), - [anon_sym_shortintertext] = ACTIONS(6505), - }, - [631] = { - [sym_command_name] = ACTIONS(6509), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6509), - [anon_sym_LBRACK] = ACTIONS(6511), - [anon_sym_RBRACK] = ACTIONS(6511), - [anon_sym_COMMA] = ACTIONS(6511), - [anon_sym_EQ] = ACTIONS(6511), - [anon_sym_LPAREN] = ACTIONS(6511), - [anon_sym_RPAREN] = ACTIONS(6511), - [anon_sym_BSLASHpart] = ACTIONS(6509), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddpart] = ACTIONS(6509), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6511), - [anon_sym_BSLASHchapter] = ACTIONS(6509), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddchap] = ACTIONS(6509), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsection] = ACTIONS(6509), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddsec] = ACTIONS(6509), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubsection] = ACTIONS(6509), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6509), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHparagraph] = ACTIONS(6509), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6509), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6511), - [anon_sym_BSLASHitem] = ACTIONS(6509), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6511), - [anon_sym_LBRACE] = ACTIONS(6511), - [sym_word] = ACTIONS(6509), - [sym_placeholder] = ACTIONS(6511), - [anon_sym_PLUS] = ACTIONS(6511), - [anon_sym_DASH] = ACTIONS(6511), - [anon_sym_STAR] = ACTIONS(6511), - [anon_sym_SLASH] = ACTIONS(6511), - [anon_sym_LT] = ACTIONS(6509), - [anon_sym_GT] = ACTIONS(6509), - [anon_sym_BANG] = ACTIONS(6509), - [anon_sym_PIPE] = ACTIONS(6509), - [anon_sym_COLON] = ACTIONS(6509), - [anon_sym_SQUOTE] = ACTIONS(6509), - [anon_sym__] = ACTIONS(6511), - [anon_sym_CARET] = ACTIONS(6511), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6511), - [anon_sym_DOLLAR] = ACTIONS(6509), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6511), - [anon_sym_BSLASHbegin] = ACTIONS(6509), - [anon_sym_BSLASHtitle] = ACTIONS(6509), - [anon_sym_BSLASHauthor] = ACTIONS(6509), - [anon_sym_BSLASHusepackage] = ACTIONS(6509), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6509), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6509), - [anon_sym_BSLASHinclude] = ACTIONS(6509), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6509), - [anon_sym_BSLASHinput] = ACTIONS(6509), - [anon_sym_BSLASHsubfile] = ACTIONS(6509), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6509), - [anon_sym_BSLASHbibliography] = ACTIONS(6509), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6509), - [anon_sym_BSLASHincludesvg] = ACTIONS(6509), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6509), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6509), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6509), - [anon_sym_BSLASHimport] = ACTIONS(6509), - [anon_sym_BSLASHsubimport] = ACTIONS(6509), - [anon_sym_BSLASHinputfrom] = ACTIONS(6509), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6509), - [anon_sym_BSLASHincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHcaption] = ACTIONS(6509), - [anon_sym_BSLASHcite] = ACTIONS(6509), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCite] = ACTIONS(6509), - [anon_sym_BSLASHnocite] = ACTIONS(6509), - [anon_sym_BSLASHcitet] = ACTIONS(6509), - [anon_sym_BSLASHcitep] = ACTIONS(6509), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteauthor] = ACTIONS(6509), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6509), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitetitle] = ACTIONS(6509), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteyear] = ACTIONS(6509), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitedate] = ACTIONS(6509), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteurl] = ACTIONS(6509), - [anon_sym_BSLASHfullcite] = ACTIONS(6509), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6509), - [anon_sym_BSLASHcitealt] = ACTIONS(6509), - [anon_sym_BSLASHcitealp] = ACTIONS(6509), - [anon_sym_BSLASHcitetext] = ACTIONS(6509), - [anon_sym_BSLASHparencite] = ACTIONS(6509), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHParencite] = ACTIONS(6509), - [anon_sym_BSLASHfootcite] = ACTIONS(6509), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6509), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6509), - [anon_sym_BSLASHtextcite] = ACTIONS(6509), - [anon_sym_BSLASHTextcite] = ACTIONS(6509), - [anon_sym_BSLASHsmartcite] = ACTIONS(6509), - [anon_sym_BSLASHSmartcite] = ACTIONS(6509), - [anon_sym_BSLASHsupercite] = ACTIONS(6509), - [anon_sym_BSLASHautocite] = ACTIONS(6509), - [anon_sym_BSLASHAutocite] = ACTIONS(6509), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHvolcite] = ACTIONS(6509), - [anon_sym_BSLASHVolcite] = ACTIONS(6509), - [anon_sym_BSLASHpvolcite] = ACTIONS(6509), - [anon_sym_BSLASHPvolcite] = ACTIONS(6509), - [anon_sym_BSLASHfvolcite] = ACTIONS(6509), - [anon_sym_BSLASHftvolcite] = ACTIONS(6509), - [anon_sym_BSLASHsvolcite] = ACTIONS(6509), - [anon_sym_BSLASHSvolcite] = ACTIONS(6509), - [anon_sym_BSLASHtvolcite] = ACTIONS(6509), - [anon_sym_BSLASHTvolcite] = ACTIONS(6509), - [anon_sym_BSLASHavolcite] = ACTIONS(6509), - [anon_sym_BSLASHAvolcite] = ACTIONS(6509), - [anon_sym_BSLASHnotecite] = ACTIONS(6509), - [anon_sym_BSLASHNotecite] = ACTIONS(6509), - [anon_sym_BSLASHpnotecite] = ACTIONS(6509), - [anon_sym_BSLASHPnotecite] = ACTIONS(6509), - [anon_sym_BSLASHfnotecite] = ACTIONS(6509), - [anon_sym_BSLASHlabel] = ACTIONS(6509), - [anon_sym_BSLASHref] = ACTIONS(6509), - [anon_sym_BSLASHeqref] = ACTIONS(6509), - [anon_sym_BSLASHvref] = ACTIONS(6509), - [anon_sym_BSLASHVref] = ACTIONS(6509), - [anon_sym_BSLASHautoref] = ACTIONS(6509), - [anon_sym_BSLASHpageref] = ACTIONS(6509), - [anon_sym_BSLASHcref] = ACTIONS(6509), - [anon_sym_BSLASHCref] = ACTIONS(6509), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnameCref] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHlabelcref] = ACTIONS(6509), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCrefrange] = ACTIONS(6509), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnewlabel] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6509), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6509), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6511), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHdef] = ACTIONS(6509), - [anon_sym_BSLASHlet] = ACTIONS(6509), - [anon_sym_BSLASHleft] = ACTIONS(6509), - [anon_sym_BSLASHbig] = ACTIONS(6509), - [anon_sym_BSLASHBig] = ACTIONS(6509), - [anon_sym_BSLASHbigg] = ACTIONS(6509), - [anon_sym_BSLASHBigg] = ACTIONS(6509), - [anon_sym_BSLASHbigl] = ACTIONS(6509), - [anon_sym_BSLASHBigl] = ACTIONS(6509), - [anon_sym_BSLASHbiggl] = ACTIONS(6509), - [anon_sym_BSLASHBiggl] = ACTIONS(6509), - [anon_sym_BSLASHright] = ACTIONS(6509), - [anon_sym_BSLASHbigr] = ACTIONS(6509), - [anon_sym_BSLASHBigr] = ACTIONS(6509), - [anon_sym_BSLASHbiggr] = ACTIONS(6509), - [anon_sym_BSLASHBiggr] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6509), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6509), - [anon_sym_BSLASHgls] = ACTIONS(6509), - [anon_sym_BSLASHGls] = ACTIONS(6509), - [anon_sym_BSLASHGLS] = ACTIONS(6509), - [anon_sym_BSLASHglspl] = ACTIONS(6509), - [anon_sym_BSLASHGlspl] = ACTIONS(6509), - [anon_sym_BSLASHGLSpl] = ACTIONS(6509), - [anon_sym_BSLASHglsdisp] = ACTIONS(6509), - [anon_sym_BSLASHglslink] = ACTIONS(6509), - [anon_sym_BSLASHglstext] = ACTIONS(6509), - [anon_sym_BSLASHGlstext] = ACTIONS(6509), - [anon_sym_BSLASHGLStext] = ACTIONS(6509), - [anon_sym_BSLASHglsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6509), - [anon_sym_BSLASHglsplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSplural] = ACTIONS(6509), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHglsname] = ACTIONS(6509), - [anon_sym_BSLASHGlsname] = ACTIONS(6509), - [anon_sym_BSLASHGLSname] = ACTIONS(6509), - [anon_sym_BSLASHglssymbol] = ACTIONS(6509), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6509), - [anon_sym_BSLASHglsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6509), - [anon_sym_BSLASHglsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6509), - [anon_sym_BSLASHglsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6509), - [anon_sym_BSLASHglsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6509), - [anon_sym_BSLASHglsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6509), - [anon_sym_BSLASHnewacronym] = ACTIONS(6509), - [anon_sym_BSLASHacrshort] = ACTIONS(6509), - [anon_sym_BSLASHAcrshort] = ACTIONS(6509), - [anon_sym_BSLASHACRshort] = ACTIONS(6509), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6509), - [anon_sym_BSLASHacrlong] = ACTIONS(6509), - [anon_sym_BSLASHAcrlong] = ACTIONS(6509), - [anon_sym_BSLASHACRlong] = ACTIONS(6509), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6509), - [anon_sym_BSLASHacrfull] = ACTIONS(6509), - [anon_sym_BSLASHAcrfull] = ACTIONS(6509), - [anon_sym_BSLASHACRfull] = ACTIONS(6509), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6509), - [anon_sym_BSLASHacs] = ACTIONS(6509), - [anon_sym_BSLASHAcs] = ACTIONS(6509), - [anon_sym_BSLASHacsp] = ACTIONS(6509), - [anon_sym_BSLASHAcsp] = ACTIONS(6509), - [anon_sym_BSLASHacl] = ACTIONS(6509), - [anon_sym_BSLASHAcl] = ACTIONS(6509), - [anon_sym_BSLASHaclp] = ACTIONS(6509), - [anon_sym_BSLASHAclp] = ACTIONS(6509), - [anon_sym_BSLASHacf] = ACTIONS(6509), - [anon_sym_BSLASHAcf] = ACTIONS(6509), - [anon_sym_BSLASHacfp] = ACTIONS(6509), - [anon_sym_BSLASHAcfp] = ACTIONS(6509), - [anon_sym_BSLASHac] = ACTIONS(6509), - [anon_sym_BSLASHAc] = ACTIONS(6509), - [anon_sym_BSLASHacp] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6509), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6509), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6509), - [anon_sym_BSLASHcolor] = ACTIONS(6509), - [anon_sym_BSLASHcolorbox] = ACTIONS(6509), - [anon_sym_BSLASHtextcolor] = ACTIONS(6509), - [anon_sym_BSLASHpagecolor] = ACTIONS(6509), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6509), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6509), - [anon_sym_BSLASHtext] = ACTIONS(6509), - [anon_sym_BSLASHintertext] = ACTIONS(6509), - [anon_sym_shortintertext] = ACTIONS(6509), - }, - [632] = { - [sym_command_name] = ACTIONS(6513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6513), - [anon_sym_LBRACK] = ACTIONS(6515), - [anon_sym_RBRACK] = ACTIONS(6515), - [anon_sym_COMMA] = ACTIONS(6515), - [anon_sym_EQ] = ACTIONS(6515), - [anon_sym_LPAREN] = ACTIONS(6515), - [anon_sym_RPAREN] = ACTIONS(6515), - [anon_sym_BSLASHpart] = ACTIONS(6513), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddpart] = ACTIONS(6513), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6515), - [anon_sym_BSLASHchapter] = ACTIONS(6513), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddchap] = ACTIONS(6513), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsection] = ACTIONS(6513), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddsec] = ACTIONS(6513), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubsection] = ACTIONS(6513), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6513), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHparagraph] = ACTIONS(6513), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6513), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6515), - [anon_sym_BSLASHitem] = ACTIONS(6513), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(6515), - [sym_word] = ACTIONS(6513), - [sym_placeholder] = ACTIONS(6515), - [anon_sym_PLUS] = ACTIONS(6515), - [anon_sym_DASH] = ACTIONS(6515), - [anon_sym_STAR] = ACTIONS(6515), - [anon_sym_SLASH] = ACTIONS(6515), - [anon_sym_LT] = ACTIONS(6513), - [anon_sym_GT] = ACTIONS(6513), - [anon_sym_BANG] = ACTIONS(6513), - [anon_sym_PIPE] = ACTIONS(6513), - [anon_sym_COLON] = ACTIONS(6513), - [anon_sym_SQUOTE] = ACTIONS(6513), - [anon_sym__] = ACTIONS(6515), - [anon_sym_CARET] = ACTIONS(6515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6515), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6515), - [anon_sym_DOLLAR] = ACTIONS(6513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6515), - [anon_sym_BSLASHbegin] = ACTIONS(6513), - [anon_sym_BSLASHtitle] = ACTIONS(6513), - [anon_sym_BSLASHauthor] = ACTIONS(6513), - [anon_sym_BSLASHusepackage] = ACTIONS(6513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6513), - [anon_sym_BSLASHinclude] = ACTIONS(6513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6513), - [anon_sym_BSLASHinput] = ACTIONS(6513), - [anon_sym_BSLASHsubfile] = ACTIONS(6513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6513), - [anon_sym_BSLASHbibliography] = ACTIONS(6513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6513), - [anon_sym_BSLASHincludesvg] = ACTIONS(6513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6513), - [anon_sym_BSLASHimport] = ACTIONS(6513), - [anon_sym_BSLASHsubimport] = ACTIONS(6513), - [anon_sym_BSLASHinputfrom] = ACTIONS(6513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6513), - [anon_sym_BSLASHincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHcaption] = ACTIONS(6513), - [anon_sym_BSLASHcite] = ACTIONS(6513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCite] = ACTIONS(6513), - [anon_sym_BSLASHnocite] = ACTIONS(6513), - [anon_sym_BSLASHcitet] = ACTIONS(6513), - [anon_sym_BSLASHcitep] = ACTIONS(6513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteauthor] = ACTIONS(6513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitetitle] = ACTIONS(6513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteyear] = ACTIONS(6513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitedate] = ACTIONS(6513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteurl] = ACTIONS(6513), - [anon_sym_BSLASHfullcite] = ACTIONS(6513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6513), - [anon_sym_BSLASHcitealt] = ACTIONS(6513), - [anon_sym_BSLASHcitealp] = ACTIONS(6513), - [anon_sym_BSLASHcitetext] = ACTIONS(6513), - [anon_sym_BSLASHparencite] = ACTIONS(6513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHParencite] = ACTIONS(6513), - [anon_sym_BSLASHfootcite] = ACTIONS(6513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6513), - [anon_sym_BSLASHtextcite] = ACTIONS(6513), - [anon_sym_BSLASHTextcite] = ACTIONS(6513), - [anon_sym_BSLASHsmartcite] = ACTIONS(6513), - [anon_sym_BSLASHSmartcite] = ACTIONS(6513), - [anon_sym_BSLASHsupercite] = ACTIONS(6513), - [anon_sym_BSLASHautocite] = ACTIONS(6513), - [anon_sym_BSLASHAutocite] = ACTIONS(6513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHvolcite] = ACTIONS(6513), - [anon_sym_BSLASHVolcite] = ACTIONS(6513), - [anon_sym_BSLASHpvolcite] = ACTIONS(6513), - [anon_sym_BSLASHPvolcite] = ACTIONS(6513), - [anon_sym_BSLASHfvolcite] = ACTIONS(6513), - [anon_sym_BSLASHftvolcite] = ACTIONS(6513), - [anon_sym_BSLASHsvolcite] = ACTIONS(6513), - [anon_sym_BSLASHSvolcite] = ACTIONS(6513), - [anon_sym_BSLASHtvolcite] = ACTIONS(6513), - [anon_sym_BSLASHTvolcite] = ACTIONS(6513), - [anon_sym_BSLASHavolcite] = ACTIONS(6513), - [anon_sym_BSLASHAvolcite] = ACTIONS(6513), - [anon_sym_BSLASHnotecite] = ACTIONS(6513), - [anon_sym_BSLASHNotecite] = ACTIONS(6513), - [anon_sym_BSLASHpnotecite] = ACTIONS(6513), - [anon_sym_BSLASHPnotecite] = ACTIONS(6513), - [anon_sym_BSLASHfnotecite] = ACTIONS(6513), - [anon_sym_BSLASHlabel] = ACTIONS(6513), - [anon_sym_BSLASHref] = ACTIONS(6513), - [anon_sym_BSLASHeqref] = ACTIONS(6513), - [anon_sym_BSLASHvref] = ACTIONS(6513), - [anon_sym_BSLASHVref] = ACTIONS(6513), - [anon_sym_BSLASHautoref] = ACTIONS(6513), - [anon_sym_BSLASHpageref] = ACTIONS(6513), - [anon_sym_BSLASHcref] = ACTIONS(6513), - [anon_sym_BSLASHCref] = ACTIONS(6513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnameCref] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHlabelcref] = ACTIONS(6513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCrefrange] = ACTIONS(6513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnewlabel] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6515), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHdef] = ACTIONS(6513), - [anon_sym_BSLASHlet] = ACTIONS(6513), - [anon_sym_BSLASHleft] = ACTIONS(6513), - [anon_sym_BSLASHbig] = ACTIONS(6513), - [anon_sym_BSLASHBig] = ACTIONS(6513), - [anon_sym_BSLASHbigg] = ACTIONS(6513), - [anon_sym_BSLASHBigg] = ACTIONS(6513), - [anon_sym_BSLASHbigl] = ACTIONS(6513), - [anon_sym_BSLASHBigl] = ACTIONS(6513), - [anon_sym_BSLASHbiggl] = ACTIONS(6513), - [anon_sym_BSLASHBiggl] = ACTIONS(6513), - [anon_sym_BSLASHright] = ACTIONS(6513), - [anon_sym_BSLASHbigr] = ACTIONS(6513), - [anon_sym_BSLASHBigr] = ACTIONS(6513), - [anon_sym_BSLASHbiggr] = ACTIONS(6513), - [anon_sym_BSLASHBiggr] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6513), - [anon_sym_BSLASHgls] = ACTIONS(6513), - [anon_sym_BSLASHGls] = ACTIONS(6513), - [anon_sym_BSLASHGLS] = ACTIONS(6513), - [anon_sym_BSLASHglspl] = ACTIONS(6513), - [anon_sym_BSLASHGlspl] = ACTIONS(6513), - [anon_sym_BSLASHGLSpl] = ACTIONS(6513), - [anon_sym_BSLASHglsdisp] = ACTIONS(6513), - [anon_sym_BSLASHglslink] = ACTIONS(6513), - [anon_sym_BSLASHglstext] = ACTIONS(6513), - [anon_sym_BSLASHGlstext] = ACTIONS(6513), - [anon_sym_BSLASHGLStext] = ACTIONS(6513), - [anon_sym_BSLASHglsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6513), - [anon_sym_BSLASHglsplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSplural] = ACTIONS(6513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHglsname] = ACTIONS(6513), - [anon_sym_BSLASHGlsname] = ACTIONS(6513), - [anon_sym_BSLASHGLSname] = ACTIONS(6513), - [anon_sym_BSLASHglssymbol] = ACTIONS(6513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6513), - [anon_sym_BSLASHglsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6513), - [anon_sym_BSLASHglsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6513), - [anon_sym_BSLASHglsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6513), - [anon_sym_BSLASHglsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6513), - [anon_sym_BSLASHglsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6513), - [anon_sym_BSLASHnewacronym] = ACTIONS(6513), - [anon_sym_BSLASHacrshort] = ACTIONS(6513), - [anon_sym_BSLASHAcrshort] = ACTIONS(6513), - [anon_sym_BSLASHACRshort] = ACTIONS(6513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6513), - [anon_sym_BSLASHacrlong] = ACTIONS(6513), - [anon_sym_BSLASHAcrlong] = ACTIONS(6513), - [anon_sym_BSLASHACRlong] = ACTIONS(6513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6513), - [anon_sym_BSLASHacrfull] = ACTIONS(6513), - [anon_sym_BSLASHAcrfull] = ACTIONS(6513), - [anon_sym_BSLASHACRfull] = ACTIONS(6513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6513), - [anon_sym_BSLASHacs] = ACTIONS(6513), - [anon_sym_BSLASHAcs] = ACTIONS(6513), - [anon_sym_BSLASHacsp] = ACTIONS(6513), - [anon_sym_BSLASHAcsp] = ACTIONS(6513), - [anon_sym_BSLASHacl] = ACTIONS(6513), - [anon_sym_BSLASHAcl] = ACTIONS(6513), - [anon_sym_BSLASHaclp] = ACTIONS(6513), - [anon_sym_BSLASHAclp] = ACTIONS(6513), - [anon_sym_BSLASHacf] = ACTIONS(6513), - [anon_sym_BSLASHAcf] = ACTIONS(6513), - [anon_sym_BSLASHacfp] = ACTIONS(6513), - [anon_sym_BSLASHAcfp] = ACTIONS(6513), - [anon_sym_BSLASHac] = ACTIONS(6513), - [anon_sym_BSLASHAc] = ACTIONS(6513), - [anon_sym_BSLASHacp] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6513), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6513), - [anon_sym_BSLASHcolor] = ACTIONS(6513), - [anon_sym_BSLASHcolorbox] = ACTIONS(6513), - [anon_sym_BSLASHtextcolor] = ACTIONS(6513), - [anon_sym_BSLASHpagecolor] = ACTIONS(6513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6513), - [anon_sym_BSLASHtext] = ACTIONS(6513), - [anon_sym_BSLASHintertext] = ACTIONS(6513), - [anon_sym_shortintertext] = ACTIONS(6513), - }, - [633] = { - [sym_command_name] = ACTIONS(6517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6517), - [anon_sym_LBRACK] = ACTIONS(6519), - [anon_sym_RBRACK] = ACTIONS(6519), - [anon_sym_COMMA] = ACTIONS(6519), - [anon_sym_EQ] = ACTIONS(6519), - [anon_sym_LPAREN] = ACTIONS(6519), - [anon_sym_RPAREN] = ACTIONS(6519), - [anon_sym_BSLASHpart] = ACTIONS(6517), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddpart] = ACTIONS(6517), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6519), - [anon_sym_BSLASHchapter] = ACTIONS(6517), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddchap] = ACTIONS(6517), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsection] = ACTIONS(6517), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddsec] = ACTIONS(6517), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubsection] = ACTIONS(6517), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6517), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHparagraph] = ACTIONS(6517), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6517), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6519), - [anon_sym_BSLASHitem] = ACTIONS(6517), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6519), - [anon_sym_LBRACE] = ACTIONS(6519), - [sym_word] = ACTIONS(6517), - [sym_placeholder] = ACTIONS(6519), - [anon_sym_PLUS] = ACTIONS(6519), - [anon_sym_DASH] = ACTIONS(6519), - [anon_sym_STAR] = ACTIONS(6519), - [anon_sym_SLASH] = ACTIONS(6519), - [anon_sym_LT] = ACTIONS(6517), - [anon_sym_GT] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(6517), - [anon_sym_PIPE] = ACTIONS(6517), - [anon_sym_COLON] = ACTIONS(6517), - [anon_sym_SQUOTE] = ACTIONS(6517), - [anon_sym__] = ACTIONS(6519), - [anon_sym_CARET] = ACTIONS(6519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6519), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6519), - [anon_sym_DOLLAR] = ACTIONS(6517), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6519), - [anon_sym_BSLASHbegin] = ACTIONS(6517), - [anon_sym_BSLASHtitle] = ACTIONS(6517), - [anon_sym_BSLASHauthor] = ACTIONS(6517), - [anon_sym_BSLASHusepackage] = ACTIONS(6517), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6517), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6517), - [anon_sym_BSLASHinclude] = ACTIONS(6517), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6517), - [anon_sym_BSLASHinput] = ACTIONS(6517), - [anon_sym_BSLASHsubfile] = ACTIONS(6517), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6517), - [anon_sym_BSLASHbibliography] = ACTIONS(6517), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6517), - [anon_sym_BSLASHincludesvg] = ACTIONS(6517), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6517), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6517), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6517), - [anon_sym_BSLASHimport] = ACTIONS(6517), - [anon_sym_BSLASHsubimport] = ACTIONS(6517), - [anon_sym_BSLASHinputfrom] = ACTIONS(6517), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6517), - [anon_sym_BSLASHincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHcaption] = ACTIONS(6517), - [anon_sym_BSLASHcite] = ACTIONS(6517), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCite] = ACTIONS(6517), - [anon_sym_BSLASHnocite] = ACTIONS(6517), - [anon_sym_BSLASHcitet] = ACTIONS(6517), - [anon_sym_BSLASHcitep] = ACTIONS(6517), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteauthor] = ACTIONS(6517), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6517), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitetitle] = ACTIONS(6517), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteyear] = ACTIONS(6517), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitedate] = ACTIONS(6517), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteurl] = ACTIONS(6517), - [anon_sym_BSLASHfullcite] = ACTIONS(6517), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6517), - [anon_sym_BSLASHcitealt] = ACTIONS(6517), - [anon_sym_BSLASHcitealp] = ACTIONS(6517), - [anon_sym_BSLASHcitetext] = ACTIONS(6517), - [anon_sym_BSLASHparencite] = ACTIONS(6517), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHParencite] = ACTIONS(6517), - [anon_sym_BSLASHfootcite] = ACTIONS(6517), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6517), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6517), - [anon_sym_BSLASHtextcite] = ACTIONS(6517), - [anon_sym_BSLASHTextcite] = ACTIONS(6517), - [anon_sym_BSLASHsmartcite] = ACTIONS(6517), - [anon_sym_BSLASHSmartcite] = ACTIONS(6517), - [anon_sym_BSLASHsupercite] = ACTIONS(6517), - [anon_sym_BSLASHautocite] = ACTIONS(6517), - [anon_sym_BSLASHAutocite] = ACTIONS(6517), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHvolcite] = ACTIONS(6517), - [anon_sym_BSLASHVolcite] = ACTIONS(6517), - [anon_sym_BSLASHpvolcite] = ACTIONS(6517), - [anon_sym_BSLASHPvolcite] = ACTIONS(6517), - [anon_sym_BSLASHfvolcite] = ACTIONS(6517), - [anon_sym_BSLASHftvolcite] = ACTIONS(6517), - [anon_sym_BSLASHsvolcite] = ACTIONS(6517), - [anon_sym_BSLASHSvolcite] = ACTIONS(6517), - [anon_sym_BSLASHtvolcite] = ACTIONS(6517), - [anon_sym_BSLASHTvolcite] = ACTIONS(6517), - [anon_sym_BSLASHavolcite] = ACTIONS(6517), - [anon_sym_BSLASHAvolcite] = ACTIONS(6517), - [anon_sym_BSLASHnotecite] = ACTIONS(6517), - [anon_sym_BSLASHNotecite] = ACTIONS(6517), - [anon_sym_BSLASHpnotecite] = ACTIONS(6517), - [anon_sym_BSLASHPnotecite] = ACTIONS(6517), - [anon_sym_BSLASHfnotecite] = ACTIONS(6517), - [anon_sym_BSLASHlabel] = ACTIONS(6517), - [anon_sym_BSLASHref] = ACTIONS(6517), - [anon_sym_BSLASHeqref] = ACTIONS(6517), - [anon_sym_BSLASHvref] = ACTIONS(6517), - [anon_sym_BSLASHVref] = ACTIONS(6517), - [anon_sym_BSLASHautoref] = ACTIONS(6517), - [anon_sym_BSLASHpageref] = ACTIONS(6517), - [anon_sym_BSLASHcref] = ACTIONS(6517), - [anon_sym_BSLASHCref] = ACTIONS(6517), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnameCref] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHlabelcref] = ACTIONS(6517), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCrefrange] = ACTIONS(6517), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnewlabel] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6517), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6517), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6519), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHdef] = ACTIONS(6517), - [anon_sym_BSLASHlet] = ACTIONS(6517), - [anon_sym_BSLASHleft] = ACTIONS(6517), - [anon_sym_BSLASHbig] = ACTIONS(6517), - [anon_sym_BSLASHBig] = ACTIONS(6517), - [anon_sym_BSLASHbigg] = ACTIONS(6517), - [anon_sym_BSLASHBigg] = ACTIONS(6517), - [anon_sym_BSLASHbigl] = ACTIONS(6517), - [anon_sym_BSLASHBigl] = ACTIONS(6517), - [anon_sym_BSLASHbiggl] = ACTIONS(6517), - [anon_sym_BSLASHBiggl] = ACTIONS(6517), - [anon_sym_BSLASHright] = ACTIONS(6517), - [anon_sym_BSLASHbigr] = ACTIONS(6517), - [anon_sym_BSLASHBigr] = ACTIONS(6517), - [anon_sym_BSLASHbiggr] = ACTIONS(6517), - [anon_sym_BSLASHBiggr] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6517), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6517), - [anon_sym_BSLASHgls] = ACTIONS(6517), - [anon_sym_BSLASHGls] = ACTIONS(6517), - [anon_sym_BSLASHGLS] = ACTIONS(6517), - [anon_sym_BSLASHglspl] = ACTIONS(6517), - [anon_sym_BSLASHGlspl] = ACTIONS(6517), - [anon_sym_BSLASHGLSpl] = ACTIONS(6517), - [anon_sym_BSLASHglsdisp] = ACTIONS(6517), - [anon_sym_BSLASHglslink] = ACTIONS(6517), - [anon_sym_BSLASHglstext] = ACTIONS(6517), - [anon_sym_BSLASHGlstext] = ACTIONS(6517), - [anon_sym_BSLASHGLStext] = ACTIONS(6517), - [anon_sym_BSLASHglsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6517), - [anon_sym_BSLASHglsplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSplural] = ACTIONS(6517), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHglsname] = ACTIONS(6517), - [anon_sym_BSLASHGlsname] = ACTIONS(6517), - [anon_sym_BSLASHGLSname] = ACTIONS(6517), - [anon_sym_BSLASHglssymbol] = ACTIONS(6517), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6517), - [anon_sym_BSLASHglsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6517), - [anon_sym_BSLASHglsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6517), - [anon_sym_BSLASHglsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6517), - [anon_sym_BSLASHglsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6517), - [anon_sym_BSLASHglsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6517), - [anon_sym_BSLASHnewacronym] = ACTIONS(6517), - [anon_sym_BSLASHacrshort] = ACTIONS(6517), - [anon_sym_BSLASHAcrshort] = ACTIONS(6517), - [anon_sym_BSLASHACRshort] = ACTIONS(6517), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6517), - [anon_sym_BSLASHacrlong] = ACTIONS(6517), - [anon_sym_BSLASHAcrlong] = ACTIONS(6517), - [anon_sym_BSLASHACRlong] = ACTIONS(6517), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6517), - [anon_sym_BSLASHacrfull] = ACTIONS(6517), - [anon_sym_BSLASHAcrfull] = ACTIONS(6517), - [anon_sym_BSLASHACRfull] = ACTIONS(6517), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6517), - [anon_sym_BSLASHacs] = ACTIONS(6517), - [anon_sym_BSLASHAcs] = ACTIONS(6517), - [anon_sym_BSLASHacsp] = ACTIONS(6517), - [anon_sym_BSLASHAcsp] = ACTIONS(6517), - [anon_sym_BSLASHacl] = ACTIONS(6517), - [anon_sym_BSLASHAcl] = ACTIONS(6517), - [anon_sym_BSLASHaclp] = ACTIONS(6517), - [anon_sym_BSLASHAclp] = ACTIONS(6517), - [anon_sym_BSLASHacf] = ACTIONS(6517), - [anon_sym_BSLASHAcf] = ACTIONS(6517), - [anon_sym_BSLASHacfp] = ACTIONS(6517), - [anon_sym_BSLASHAcfp] = ACTIONS(6517), - [anon_sym_BSLASHac] = ACTIONS(6517), - [anon_sym_BSLASHAc] = ACTIONS(6517), - [anon_sym_BSLASHacp] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6517), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6517), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6517), - [anon_sym_BSLASHcolor] = ACTIONS(6517), - [anon_sym_BSLASHcolorbox] = ACTIONS(6517), - [anon_sym_BSLASHtextcolor] = ACTIONS(6517), - [anon_sym_BSLASHpagecolor] = ACTIONS(6517), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6517), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6517), - [anon_sym_BSLASHtext] = ACTIONS(6517), - [anon_sym_BSLASHintertext] = ACTIONS(6517), - [anon_sym_shortintertext] = ACTIONS(6517), - }, - [634] = { - [sym_command_name] = ACTIONS(6521), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6521), - [anon_sym_LBRACK] = ACTIONS(6523), - [anon_sym_RBRACK] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_EQ] = ACTIONS(6523), - [anon_sym_LPAREN] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_BSLASHpart] = ACTIONS(6521), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddpart] = ACTIONS(6521), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6523), - [anon_sym_BSLASHchapter] = ACTIONS(6521), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddchap] = ACTIONS(6521), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsection] = ACTIONS(6521), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddsec] = ACTIONS(6521), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubsection] = ACTIONS(6521), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6521), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHparagraph] = ACTIONS(6521), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6521), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6523), - [anon_sym_BSLASHitem] = ACTIONS(6521), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6523), - [anon_sym_LBRACE] = ACTIONS(6523), - [sym_word] = ACTIONS(6521), - [sym_placeholder] = ACTIONS(6523), - [anon_sym_PLUS] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6523), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_BANG] = ACTIONS(6521), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6521), - [anon_sym_SQUOTE] = ACTIONS(6521), - [anon_sym__] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6523), - [anon_sym_DOLLAR] = ACTIONS(6521), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6523), - [anon_sym_BSLASHbegin] = ACTIONS(6521), - [anon_sym_BSLASHtitle] = ACTIONS(6521), - [anon_sym_BSLASHauthor] = ACTIONS(6521), - [anon_sym_BSLASHusepackage] = ACTIONS(6521), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6521), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6521), - [anon_sym_BSLASHinclude] = ACTIONS(6521), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6521), - [anon_sym_BSLASHinput] = ACTIONS(6521), - [anon_sym_BSLASHsubfile] = ACTIONS(6521), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6521), - [anon_sym_BSLASHbibliography] = ACTIONS(6521), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6521), - [anon_sym_BSLASHincludesvg] = ACTIONS(6521), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6521), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6521), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6521), - [anon_sym_BSLASHimport] = ACTIONS(6521), - [anon_sym_BSLASHsubimport] = ACTIONS(6521), - [anon_sym_BSLASHinputfrom] = ACTIONS(6521), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6521), - [anon_sym_BSLASHincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHcaption] = ACTIONS(6521), - [anon_sym_BSLASHcite] = ACTIONS(6521), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCite] = ACTIONS(6521), - [anon_sym_BSLASHnocite] = ACTIONS(6521), - [anon_sym_BSLASHcitet] = ACTIONS(6521), - [anon_sym_BSLASHcitep] = ACTIONS(6521), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteauthor] = ACTIONS(6521), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6521), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitetitle] = ACTIONS(6521), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteyear] = ACTIONS(6521), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitedate] = ACTIONS(6521), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteurl] = ACTIONS(6521), - [anon_sym_BSLASHfullcite] = ACTIONS(6521), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6521), - [anon_sym_BSLASHcitealt] = ACTIONS(6521), - [anon_sym_BSLASHcitealp] = ACTIONS(6521), - [anon_sym_BSLASHcitetext] = ACTIONS(6521), - [anon_sym_BSLASHparencite] = ACTIONS(6521), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHParencite] = ACTIONS(6521), - [anon_sym_BSLASHfootcite] = ACTIONS(6521), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6521), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6521), - [anon_sym_BSLASHtextcite] = ACTIONS(6521), - [anon_sym_BSLASHTextcite] = ACTIONS(6521), - [anon_sym_BSLASHsmartcite] = ACTIONS(6521), - [anon_sym_BSLASHSmartcite] = ACTIONS(6521), - [anon_sym_BSLASHsupercite] = ACTIONS(6521), - [anon_sym_BSLASHautocite] = ACTIONS(6521), - [anon_sym_BSLASHAutocite] = ACTIONS(6521), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHvolcite] = ACTIONS(6521), - [anon_sym_BSLASHVolcite] = ACTIONS(6521), - [anon_sym_BSLASHpvolcite] = ACTIONS(6521), - [anon_sym_BSLASHPvolcite] = ACTIONS(6521), - [anon_sym_BSLASHfvolcite] = ACTIONS(6521), - [anon_sym_BSLASHftvolcite] = ACTIONS(6521), - [anon_sym_BSLASHsvolcite] = ACTIONS(6521), - [anon_sym_BSLASHSvolcite] = ACTIONS(6521), - [anon_sym_BSLASHtvolcite] = ACTIONS(6521), - [anon_sym_BSLASHTvolcite] = ACTIONS(6521), - [anon_sym_BSLASHavolcite] = ACTIONS(6521), - [anon_sym_BSLASHAvolcite] = ACTIONS(6521), - [anon_sym_BSLASHnotecite] = ACTIONS(6521), - [anon_sym_BSLASHNotecite] = ACTIONS(6521), - [anon_sym_BSLASHpnotecite] = ACTIONS(6521), - [anon_sym_BSLASHPnotecite] = ACTIONS(6521), - [anon_sym_BSLASHfnotecite] = ACTIONS(6521), - [anon_sym_BSLASHlabel] = ACTIONS(6521), - [anon_sym_BSLASHref] = ACTIONS(6521), - [anon_sym_BSLASHeqref] = ACTIONS(6521), - [anon_sym_BSLASHvref] = ACTIONS(6521), - [anon_sym_BSLASHVref] = ACTIONS(6521), - [anon_sym_BSLASHautoref] = ACTIONS(6521), - [anon_sym_BSLASHpageref] = ACTIONS(6521), - [anon_sym_BSLASHcref] = ACTIONS(6521), - [anon_sym_BSLASHCref] = ACTIONS(6521), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnameCref] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHlabelcref] = ACTIONS(6521), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCrefrange] = ACTIONS(6521), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnewlabel] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6521), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6521), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6523), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHdef] = ACTIONS(6521), - [anon_sym_BSLASHlet] = ACTIONS(6521), - [anon_sym_BSLASHleft] = ACTIONS(6521), - [anon_sym_BSLASHbig] = ACTIONS(6521), - [anon_sym_BSLASHBig] = ACTIONS(6521), - [anon_sym_BSLASHbigg] = ACTIONS(6521), - [anon_sym_BSLASHBigg] = ACTIONS(6521), - [anon_sym_BSLASHbigl] = ACTIONS(6521), - [anon_sym_BSLASHBigl] = ACTIONS(6521), - [anon_sym_BSLASHbiggl] = ACTIONS(6521), - [anon_sym_BSLASHBiggl] = ACTIONS(6521), - [anon_sym_BSLASHright] = ACTIONS(6521), - [anon_sym_BSLASHbigr] = ACTIONS(6521), - [anon_sym_BSLASHBigr] = ACTIONS(6521), - [anon_sym_BSLASHbiggr] = ACTIONS(6521), - [anon_sym_BSLASHBiggr] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6521), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6521), - [anon_sym_BSLASHgls] = ACTIONS(6521), - [anon_sym_BSLASHGls] = ACTIONS(6521), - [anon_sym_BSLASHGLS] = ACTIONS(6521), - [anon_sym_BSLASHglspl] = ACTIONS(6521), - [anon_sym_BSLASHGlspl] = ACTIONS(6521), - [anon_sym_BSLASHGLSpl] = ACTIONS(6521), - [anon_sym_BSLASHglsdisp] = ACTIONS(6521), - [anon_sym_BSLASHglslink] = ACTIONS(6521), - [anon_sym_BSLASHglstext] = ACTIONS(6521), - [anon_sym_BSLASHGlstext] = ACTIONS(6521), - [anon_sym_BSLASHGLStext] = ACTIONS(6521), - [anon_sym_BSLASHglsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6521), - [anon_sym_BSLASHglsplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSplural] = ACTIONS(6521), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHglsname] = ACTIONS(6521), - [anon_sym_BSLASHGlsname] = ACTIONS(6521), - [anon_sym_BSLASHGLSname] = ACTIONS(6521), - [anon_sym_BSLASHglssymbol] = ACTIONS(6521), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6521), - [anon_sym_BSLASHglsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6521), - [anon_sym_BSLASHglsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6521), - [anon_sym_BSLASHglsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6521), - [anon_sym_BSLASHglsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6521), - [anon_sym_BSLASHglsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6521), - [anon_sym_BSLASHnewacronym] = ACTIONS(6521), - [anon_sym_BSLASHacrshort] = ACTIONS(6521), - [anon_sym_BSLASHAcrshort] = ACTIONS(6521), - [anon_sym_BSLASHACRshort] = ACTIONS(6521), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6521), - [anon_sym_BSLASHacrlong] = ACTIONS(6521), - [anon_sym_BSLASHAcrlong] = ACTIONS(6521), - [anon_sym_BSLASHACRlong] = ACTIONS(6521), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6521), - [anon_sym_BSLASHacrfull] = ACTIONS(6521), - [anon_sym_BSLASHAcrfull] = ACTIONS(6521), - [anon_sym_BSLASHACRfull] = ACTIONS(6521), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6521), - [anon_sym_BSLASHacs] = ACTIONS(6521), - [anon_sym_BSLASHAcs] = ACTIONS(6521), - [anon_sym_BSLASHacsp] = ACTIONS(6521), - [anon_sym_BSLASHAcsp] = ACTIONS(6521), - [anon_sym_BSLASHacl] = ACTIONS(6521), - [anon_sym_BSLASHAcl] = ACTIONS(6521), - [anon_sym_BSLASHaclp] = ACTIONS(6521), - [anon_sym_BSLASHAclp] = ACTIONS(6521), - [anon_sym_BSLASHacf] = ACTIONS(6521), - [anon_sym_BSLASHAcf] = ACTIONS(6521), - [anon_sym_BSLASHacfp] = ACTIONS(6521), - [anon_sym_BSLASHAcfp] = ACTIONS(6521), - [anon_sym_BSLASHac] = ACTIONS(6521), - [anon_sym_BSLASHAc] = ACTIONS(6521), - [anon_sym_BSLASHacp] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6521), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6521), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6521), - [anon_sym_BSLASHcolor] = ACTIONS(6521), - [anon_sym_BSLASHcolorbox] = ACTIONS(6521), - [anon_sym_BSLASHtextcolor] = ACTIONS(6521), - [anon_sym_BSLASHpagecolor] = ACTIONS(6521), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6521), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6521), - [anon_sym_BSLASHtext] = ACTIONS(6521), - [anon_sym_BSLASHintertext] = ACTIONS(6521), - [anon_sym_shortintertext] = ACTIONS(6521), - }, - [635] = { - [sym_command_name] = ACTIONS(6525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6527), - [anon_sym_LPAREN] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_BSLASHpart] = ACTIONS(6525), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddpart] = ACTIONS(6525), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6527), - [anon_sym_BSLASHchapter] = ACTIONS(6525), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddchap] = ACTIONS(6525), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsection] = ACTIONS(6525), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddsec] = ACTIONS(6525), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubsection] = ACTIONS(6525), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6525), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHparagraph] = ACTIONS(6525), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6525), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6527), - [anon_sym_BSLASHitem] = ACTIONS(6525), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6527), - [anon_sym_LBRACE] = ACTIONS(6527), - [sym_word] = ACTIONS(6525), - [sym_placeholder] = ACTIONS(6527), - [anon_sym_PLUS] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6527), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6527), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_BANG] = ACTIONS(6525), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_SQUOTE] = ACTIONS(6525), - [anon_sym__] = ACTIONS(6527), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6527), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6527), - [anon_sym_DOLLAR] = ACTIONS(6525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6527), - [anon_sym_BSLASHbegin] = ACTIONS(6525), - [anon_sym_BSLASHtitle] = ACTIONS(6525), - [anon_sym_BSLASHauthor] = ACTIONS(6525), - [anon_sym_BSLASHusepackage] = ACTIONS(6525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6525), - [anon_sym_BSLASHinclude] = ACTIONS(6525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6525), - [anon_sym_BSLASHinput] = ACTIONS(6525), - [anon_sym_BSLASHsubfile] = ACTIONS(6525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6525), - [anon_sym_BSLASHbibliography] = ACTIONS(6525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6525), - [anon_sym_BSLASHincludesvg] = ACTIONS(6525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6525), - [anon_sym_BSLASHimport] = ACTIONS(6525), - [anon_sym_BSLASHsubimport] = ACTIONS(6525), - [anon_sym_BSLASHinputfrom] = ACTIONS(6525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6525), - [anon_sym_BSLASHincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHcaption] = ACTIONS(6525), - [anon_sym_BSLASHcite] = ACTIONS(6525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCite] = ACTIONS(6525), - [anon_sym_BSLASHnocite] = ACTIONS(6525), - [anon_sym_BSLASHcitet] = ACTIONS(6525), - [anon_sym_BSLASHcitep] = ACTIONS(6525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteauthor] = ACTIONS(6525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitetitle] = ACTIONS(6525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteyear] = ACTIONS(6525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitedate] = ACTIONS(6525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteurl] = ACTIONS(6525), - [anon_sym_BSLASHfullcite] = ACTIONS(6525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6525), - [anon_sym_BSLASHcitealt] = ACTIONS(6525), - [anon_sym_BSLASHcitealp] = ACTIONS(6525), - [anon_sym_BSLASHcitetext] = ACTIONS(6525), - [anon_sym_BSLASHparencite] = ACTIONS(6525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHParencite] = ACTIONS(6525), - [anon_sym_BSLASHfootcite] = ACTIONS(6525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6525), - [anon_sym_BSLASHtextcite] = ACTIONS(6525), - [anon_sym_BSLASHTextcite] = ACTIONS(6525), - [anon_sym_BSLASHsmartcite] = ACTIONS(6525), - [anon_sym_BSLASHSmartcite] = ACTIONS(6525), - [anon_sym_BSLASHsupercite] = ACTIONS(6525), - [anon_sym_BSLASHautocite] = ACTIONS(6525), - [anon_sym_BSLASHAutocite] = ACTIONS(6525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHvolcite] = ACTIONS(6525), - [anon_sym_BSLASHVolcite] = ACTIONS(6525), - [anon_sym_BSLASHpvolcite] = ACTIONS(6525), - [anon_sym_BSLASHPvolcite] = ACTIONS(6525), - [anon_sym_BSLASHfvolcite] = ACTIONS(6525), - [anon_sym_BSLASHftvolcite] = ACTIONS(6525), - [anon_sym_BSLASHsvolcite] = ACTIONS(6525), - [anon_sym_BSLASHSvolcite] = ACTIONS(6525), - [anon_sym_BSLASHtvolcite] = ACTIONS(6525), - [anon_sym_BSLASHTvolcite] = ACTIONS(6525), - [anon_sym_BSLASHavolcite] = ACTIONS(6525), - [anon_sym_BSLASHAvolcite] = ACTIONS(6525), - [anon_sym_BSLASHnotecite] = ACTIONS(6525), - [anon_sym_BSLASHNotecite] = ACTIONS(6525), - [anon_sym_BSLASHpnotecite] = ACTIONS(6525), - [anon_sym_BSLASHPnotecite] = ACTIONS(6525), - [anon_sym_BSLASHfnotecite] = ACTIONS(6525), - [anon_sym_BSLASHlabel] = ACTIONS(6525), - [anon_sym_BSLASHref] = ACTIONS(6525), - [anon_sym_BSLASHeqref] = ACTIONS(6525), - [anon_sym_BSLASHvref] = ACTIONS(6525), - [anon_sym_BSLASHVref] = ACTIONS(6525), - [anon_sym_BSLASHautoref] = ACTIONS(6525), - [anon_sym_BSLASHpageref] = ACTIONS(6525), - [anon_sym_BSLASHcref] = ACTIONS(6525), - [anon_sym_BSLASHCref] = ACTIONS(6525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnameCref] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHlabelcref] = ACTIONS(6525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCrefrange] = ACTIONS(6525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnewlabel] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6527), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHdef] = ACTIONS(6525), - [anon_sym_BSLASHlet] = ACTIONS(6525), - [anon_sym_BSLASHleft] = ACTIONS(6525), - [anon_sym_BSLASHbig] = ACTIONS(6525), - [anon_sym_BSLASHBig] = ACTIONS(6525), - [anon_sym_BSLASHbigg] = ACTIONS(6525), - [anon_sym_BSLASHBigg] = ACTIONS(6525), - [anon_sym_BSLASHbigl] = ACTIONS(6525), - [anon_sym_BSLASHBigl] = ACTIONS(6525), - [anon_sym_BSLASHbiggl] = ACTIONS(6525), - [anon_sym_BSLASHBiggl] = ACTIONS(6525), - [anon_sym_BSLASHright] = ACTIONS(6525), - [anon_sym_BSLASHbigr] = ACTIONS(6525), - [anon_sym_BSLASHBigr] = ACTIONS(6525), - [anon_sym_BSLASHbiggr] = ACTIONS(6525), - [anon_sym_BSLASHBiggr] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6525), - [anon_sym_BSLASHgls] = ACTIONS(6525), - [anon_sym_BSLASHGls] = ACTIONS(6525), - [anon_sym_BSLASHGLS] = ACTIONS(6525), - [anon_sym_BSLASHglspl] = ACTIONS(6525), - [anon_sym_BSLASHGlspl] = ACTIONS(6525), - [anon_sym_BSLASHGLSpl] = ACTIONS(6525), - [anon_sym_BSLASHglsdisp] = ACTIONS(6525), - [anon_sym_BSLASHglslink] = ACTIONS(6525), - [anon_sym_BSLASHglstext] = ACTIONS(6525), - [anon_sym_BSLASHGlstext] = ACTIONS(6525), - [anon_sym_BSLASHGLStext] = ACTIONS(6525), - [anon_sym_BSLASHglsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6525), - [anon_sym_BSLASHglsplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSplural] = ACTIONS(6525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHglsname] = ACTIONS(6525), - [anon_sym_BSLASHGlsname] = ACTIONS(6525), - [anon_sym_BSLASHGLSname] = ACTIONS(6525), - [anon_sym_BSLASHglssymbol] = ACTIONS(6525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6525), - [anon_sym_BSLASHglsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6525), - [anon_sym_BSLASHglsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6525), - [anon_sym_BSLASHglsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6525), - [anon_sym_BSLASHglsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6525), - [anon_sym_BSLASHglsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6525), - [anon_sym_BSLASHnewacronym] = ACTIONS(6525), - [anon_sym_BSLASHacrshort] = ACTIONS(6525), - [anon_sym_BSLASHAcrshort] = ACTIONS(6525), - [anon_sym_BSLASHACRshort] = ACTIONS(6525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6525), - [anon_sym_BSLASHacrlong] = ACTIONS(6525), - [anon_sym_BSLASHAcrlong] = ACTIONS(6525), - [anon_sym_BSLASHACRlong] = ACTIONS(6525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6525), - [anon_sym_BSLASHacrfull] = ACTIONS(6525), - [anon_sym_BSLASHAcrfull] = ACTIONS(6525), - [anon_sym_BSLASHACRfull] = ACTIONS(6525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6525), - [anon_sym_BSLASHacs] = ACTIONS(6525), - [anon_sym_BSLASHAcs] = ACTIONS(6525), - [anon_sym_BSLASHacsp] = ACTIONS(6525), - [anon_sym_BSLASHAcsp] = ACTIONS(6525), - [anon_sym_BSLASHacl] = ACTIONS(6525), - [anon_sym_BSLASHAcl] = ACTIONS(6525), - [anon_sym_BSLASHaclp] = ACTIONS(6525), - [anon_sym_BSLASHAclp] = ACTIONS(6525), - [anon_sym_BSLASHacf] = ACTIONS(6525), - [anon_sym_BSLASHAcf] = ACTIONS(6525), - [anon_sym_BSLASHacfp] = ACTIONS(6525), - [anon_sym_BSLASHAcfp] = ACTIONS(6525), - [anon_sym_BSLASHac] = ACTIONS(6525), - [anon_sym_BSLASHAc] = ACTIONS(6525), - [anon_sym_BSLASHacp] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6525), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6525), - [anon_sym_BSLASHcolor] = ACTIONS(6525), - [anon_sym_BSLASHcolorbox] = ACTIONS(6525), - [anon_sym_BSLASHtextcolor] = ACTIONS(6525), - [anon_sym_BSLASHpagecolor] = ACTIONS(6525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6525), - [anon_sym_BSLASHtext] = ACTIONS(6525), - [anon_sym_BSLASHintertext] = ACTIONS(6525), - [anon_sym_shortintertext] = ACTIONS(6525), - }, - [636] = { - [sym_command_name] = ACTIONS(6529), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6529), - [anon_sym_LBRACK] = ACTIONS(6531), - [anon_sym_RBRACK] = ACTIONS(6531), - [anon_sym_COMMA] = ACTIONS(6531), - [anon_sym_EQ] = ACTIONS(6531), - [anon_sym_LPAREN] = ACTIONS(6531), - [anon_sym_RPAREN] = ACTIONS(6531), - [anon_sym_BSLASHpart] = ACTIONS(6529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddpart] = ACTIONS(6529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6531), - [anon_sym_BSLASHchapter] = ACTIONS(6529), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddchap] = ACTIONS(6529), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsection] = ACTIONS(6529), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddsec] = ACTIONS(6529), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubsection] = ACTIONS(6529), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6529), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHparagraph] = ACTIONS(6529), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6529), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6531), - [anon_sym_BSLASHitem] = ACTIONS(6529), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6531), - [anon_sym_LBRACE] = ACTIONS(6531), - [sym_word] = ACTIONS(6529), - [sym_placeholder] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6531), - [anon_sym_DASH] = ACTIONS(6531), - [anon_sym_STAR] = ACTIONS(6531), - [anon_sym_SLASH] = ACTIONS(6531), - [anon_sym_LT] = ACTIONS(6529), - [anon_sym_GT] = ACTIONS(6529), - [anon_sym_BANG] = ACTIONS(6529), - [anon_sym_PIPE] = ACTIONS(6529), - [anon_sym_COLON] = ACTIONS(6529), - [anon_sym_SQUOTE] = ACTIONS(6529), - [anon_sym__] = ACTIONS(6531), - [anon_sym_CARET] = ACTIONS(6531), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6531), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6531), - [anon_sym_DOLLAR] = ACTIONS(6529), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6531), - [anon_sym_BSLASHbegin] = ACTIONS(6529), - [anon_sym_BSLASHtitle] = ACTIONS(6529), - [anon_sym_BSLASHauthor] = ACTIONS(6529), - [anon_sym_BSLASHusepackage] = ACTIONS(6529), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6529), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6529), - [anon_sym_BSLASHinclude] = ACTIONS(6529), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6529), - [anon_sym_BSLASHinput] = ACTIONS(6529), - [anon_sym_BSLASHsubfile] = ACTIONS(6529), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6529), - [anon_sym_BSLASHbibliography] = ACTIONS(6529), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6529), - [anon_sym_BSLASHincludesvg] = ACTIONS(6529), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6529), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6529), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6529), - [anon_sym_BSLASHimport] = ACTIONS(6529), - [anon_sym_BSLASHsubimport] = ACTIONS(6529), - [anon_sym_BSLASHinputfrom] = ACTIONS(6529), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6529), - [anon_sym_BSLASHincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHcaption] = ACTIONS(6529), - [anon_sym_BSLASHcite] = ACTIONS(6529), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCite] = ACTIONS(6529), - [anon_sym_BSLASHnocite] = ACTIONS(6529), - [anon_sym_BSLASHcitet] = ACTIONS(6529), - [anon_sym_BSLASHcitep] = ACTIONS(6529), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteauthor] = ACTIONS(6529), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6529), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitetitle] = ACTIONS(6529), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteyear] = ACTIONS(6529), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitedate] = ACTIONS(6529), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteurl] = ACTIONS(6529), - [anon_sym_BSLASHfullcite] = ACTIONS(6529), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6529), - [anon_sym_BSLASHcitealt] = ACTIONS(6529), - [anon_sym_BSLASHcitealp] = ACTIONS(6529), - [anon_sym_BSLASHcitetext] = ACTIONS(6529), - [anon_sym_BSLASHparencite] = ACTIONS(6529), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHParencite] = ACTIONS(6529), - [anon_sym_BSLASHfootcite] = ACTIONS(6529), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6529), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6529), - [anon_sym_BSLASHtextcite] = ACTIONS(6529), - [anon_sym_BSLASHTextcite] = ACTIONS(6529), - [anon_sym_BSLASHsmartcite] = ACTIONS(6529), - [anon_sym_BSLASHSmartcite] = ACTIONS(6529), - [anon_sym_BSLASHsupercite] = ACTIONS(6529), - [anon_sym_BSLASHautocite] = ACTIONS(6529), - [anon_sym_BSLASHAutocite] = ACTIONS(6529), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHvolcite] = ACTIONS(6529), - [anon_sym_BSLASHVolcite] = ACTIONS(6529), - [anon_sym_BSLASHpvolcite] = ACTIONS(6529), - [anon_sym_BSLASHPvolcite] = ACTIONS(6529), - [anon_sym_BSLASHfvolcite] = ACTIONS(6529), - [anon_sym_BSLASHftvolcite] = ACTIONS(6529), - [anon_sym_BSLASHsvolcite] = ACTIONS(6529), - [anon_sym_BSLASHSvolcite] = ACTIONS(6529), - [anon_sym_BSLASHtvolcite] = ACTIONS(6529), - [anon_sym_BSLASHTvolcite] = ACTIONS(6529), - [anon_sym_BSLASHavolcite] = ACTIONS(6529), - [anon_sym_BSLASHAvolcite] = ACTIONS(6529), - [anon_sym_BSLASHnotecite] = ACTIONS(6529), - [anon_sym_BSLASHNotecite] = ACTIONS(6529), - [anon_sym_BSLASHpnotecite] = ACTIONS(6529), - [anon_sym_BSLASHPnotecite] = ACTIONS(6529), - [anon_sym_BSLASHfnotecite] = ACTIONS(6529), - [anon_sym_BSLASHlabel] = ACTIONS(6529), - [anon_sym_BSLASHref] = ACTIONS(6529), - [anon_sym_BSLASHeqref] = ACTIONS(6529), - [anon_sym_BSLASHvref] = ACTIONS(6529), - [anon_sym_BSLASHVref] = ACTIONS(6529), - [anon_sym_BSLASHautoref] = ACTIONS(6529), - [anon_sym_BSLASHpageref] = ACTIONS(6529), - [anon_sym_BSLASHcref] = ACTIONS(6529), - [anon_sym_BSLASHCref] = ACTIONS(6529), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnameCref] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHlabelcref] = ACTIONS(6529), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCrefrange] = ACTIONS(6529), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnewlabel] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6529), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6529), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6531), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHdef] = ACTIONS(6529), - [anon_sym_BSLASHlet] = ACTIONS(6529), - [anon_sym_BSLASHleft] = ACTIONS(6529), - [anon_sym_BSLASHbig] = ACTIONS(6529), - [anon_sym_BSLASHBig] = ACTIONS(6529), - [anon_sym_BSLASHbigg] = ACTIONS(6529), - [anon_sym_BSLASHBigg] = ACTIONS(6529), - [anon_sym_BSLASHbigl] = ACTIONS(6529), - [anon_sym_BSLASHBigl] = ACTIONS(6529), - [anon_sym_BSLASHbiggl] = ACTIONS(6529), - [anon_sym_BSLASHBiggl] = ACTIONS(6529), - [anon_sym_BSLASHright] = ACTIONS(6529), - [anon_sym_BSLASHbigr] = ACTIONS(6529), - [anon_sym_BSLASHBigr] = ACTIONS(6529), - [anon_sym_BSLASHbiggr] = ACTIONS(6529), - [anon_sym_BSLASHBiggr] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6529), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6529), - [anon_sym_BSLASHgls] = ACTIONS(6529), - [anon_sym_BSLASHGls] = ACTIONS(6529), - [anon_sym_BSLASHGLS] = ACTIONS(6529), - [anon_sym_BSLASHglspl] = ACTIONS(6529), - [anon_sym_BSLASHGlspl] = ACTIONS(6529), - [anon_sym_BSLASHGLSpl] = ACTIONS(6529), - [anon_sym_BSLASHglsdisp] = ACTIONS(6529), - [anon_sym_BSLASHglslink] = ACTIONS(6529), - [anon_sym_BSLASHglstext] = ACTIONS(6529), - [anon_sym_BSLASHGlstext] = ACTIONS(6529), - [anon_sym_BSLASHGLStext] = ACTIONS(6529), - [anon_sym_BSLASHglsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6529), - [anon_sym_BSLASHglsplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSplural] = ACTIONS(6529), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHglsname] = ACTIONS(6529), - [anon_sym_BSLASHGlsname] = ACTIONS(6529), - [anon_sym_BSLASHGLSname] = ACTIONS(6529), - [anon_sym_BSLASHglssymbol] = ACTIONS(6529), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6529), - [anon_sym_BSLASHglsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6529), - [anon_sym_BSLASHglsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6529), - [anon_sym_BSLASHglsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6529), - [anon_sym_BSLASHglsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6529), - [anon_sym_BSLASHglsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6529), - [anon_sym_BSLASHnewacronym] = ACTIONS(6529), - [anon_sym_BSLASHacrshort] = ACTIONS(6529), - [anon_sym_BSLASHAcrshort] = ACTIONS(6529), - [anon_sym_BSLASHACRshort] = ACTIONS(6529), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6529), - [anon_sym_BSLASHacrlong] = ACTIONS(6529), - [anon_sym_BSLASHAcrlong] = ACTIONS(6529), - [anon_sym_BSLASHACRlong] = ACTIONS(6529), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6529), - [anon_sym_BSLASHacrfull] = ACTIONS(6529), - [anon_sym_BSLASHAcrfull] = ACTIONS(6529), - [anon_sym_BSLASHACRfull] = ACTIONS(6529), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6529), - [anon_sym_BSLASHacs] = ACTIONS(6529), - [anon_sym_BSLASHAcs] = ACTIONS(6529), - [anon_sym_BSLASHacsp] = ACTIONS(6529), - [anon_sym_BSLASHAcsp] = ACTIONS(6529), - [anon_sym_BSLASHacl] = ACTIONS(6529), - [anon_sym_BSLASHAcl] = ACTIONS(6529), - [anon_sym_BSLASHaclp] = ACTIONS(6529), - [anon_sym_BSLASHAclp] = ACTIONS(6529), - [anon_sym_BSLASHacf] = ACTIONS(6529), - [anon_sym_BSLASHAcf] = ACTIONS(6529), - [anon_sym_BSLASHacfp] = ACTIONS(6529), - [anon_sym_BSLASHAcfp] = ACTIONS(6529), - [anon_sym_BSLASHac] = ACTIONS(6529), - [anon_sym_BSLASHAc] = ACTIONS(6529), - [anon_sym_BSLASHacp] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6529), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6529), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6529), - [anon_sym_BSLASHcolor] = ACTIONS(6529), - [anon_sym_BSLASHcolorbox] = ACTIONS(6529), - [anon_sym_BSLASHtextcolor] = ACTIONS(6529), - [anon_sym_BSLASHpagecolor] = ACTIONS(6529), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6529), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6529), - [anon_sym_BSLASHtext] = ACTIONS(6529), - [anon_sym_BSLASHintertext] = ACTIONS(6529), - [anon_sym_shortintertext] = ACTIONS(6529), - }, - [637] = { - [sym__section_part] = STATE(912), - [sym_curly_group] = STATE(927), - [sym_brack_group] = STATE(2889), - [ts_builtin_sym_end] = ACTIONS(5858), - [sym_command_name] = ACTIONS(5856), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5856), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5858), - [anon_sym_COMMA] = ACTIONS(5858), - [anon_sym_EQ] = ACTIONS(5858), - [anon_sym_LPAREN] = ACTIONS(5858), - [anon_sym_RPAREN] = ACTIONS(5858), - [anon_sym_BSLASHpart] = ACTIONS(5856), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddpart] = ACTIONS(5856), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5858), - [anon_sym_BSLASHchapter] = ACTIONS(5856), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddchap] = ACTIONS(5856), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsection] = ACTIONS(5856), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddsec] = ACTIONS(5856), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubsection] = ACTIONS(5856), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5856), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHparagraph] = ACTIONS(5856), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5856), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5858), - [anon_sym_BSLASHitem] = ACTIONS(5856), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5858), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5858), - [sym_word] = ACTIONS(5856), - [sym_placeholder] = ACTIONS(5858), - [anon_sym_PLUS] = ACTIONS(5858), - [anon_sym_DASH] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(5858), - [anon_sym_SLASH] = ACTIONS(5858), - [anon_sym_LT] = ACTIONS(5856), - [anon_sym_GT] = ACTIONS(5856), - [anon_sym_BANG] = ACTIONS(5856), - [anon_sym_PIPE] = ACTIONS(5856), - [anon_sym_COLON] = ACTIONS(5856), - [anon_sym_SQUOTE] = ACTIONS(5856), - [anon_sym__] = ACTIONS(5858), - [anon_sym_CARET] = ACTIONS(5858), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5858), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5858), - [anon_sym_DOLLAR] = ACTIONS(5856), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5858), - [anon_sym_BSLASHbegin] = ACTIONS(5856), - [anon_sym_BSLASHtitle] = ACTIONS(5856), - [anon_sym_BSLASHauthor] = ACTIONS(5856), - [anon_sym_BSLASHusepackage] = ACTIONS(5856), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5856), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5856), - [anon_sym_BSLASHinclude] = ACTIONS(5856), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5856), - [anon_sym_BSLASHinput] = ACTIONS(5856), - [anon_sym_BSLASHsubfile] = ACTIONS(5856), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5856), - [anon_sym_BSLASHbibliography] = ACTIONS(5856), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5856), - [anon_sym_BSLASHincludesvg] = ACTIONS(5856), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5856), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5856), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5856), - [anon_sym_BSLASHimport] = ACTIONS(5856), - [anon_sym_BSLASHsubimport] = ACTIONS(5856), - [anon_sym_BSLASHinputfrom] = ACTIONS(5856), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5856), - [anon_sym_BSLASHincludefrom] = ACTIONS(5856), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5856), - [anon_sym_BSLASHcaption] = ACTIONS(5856), - [anon_sym_BSLASHcite] = ACTIONS(5856), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCite] = ACTIONS(5856), - [anon_sym_BSLASHnocite] = ACTIONS(5856), - [anon_sym_BSLASHcitet] = ACTIONS(5856), - [anon_sym_BSLASHcitep] = ACTIONS(5856), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteauthor] = ACTIONS(5856), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5856), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitetitle] = ACTIONS(5856), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteyear] = ACTIONS(5856), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitedate] = ACTIONS(5856), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteurl] = ACTIONS(5856), - [anon_sym_BSLASHfullcite] = ACTIONS(5856), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5856), - [anon_sym_BSLASHcitealt] = ACTIONS(5856), - [anon_sym_BSLASHcitealp] = ACTIONS(5856), - [anon_sym_BSLASHcitetext] = ACTIONS(5856), - [anon_sym_BSLASHparencite] = ACTIONS(5856), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHParencite] = ACTIONS(5856), - [anon_sym_BSLASHfootcite] = ACTIONS(5856), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5856), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5856), - [anon_sym_BSLASHtextcite] = ACTIONS(5856), - [anon_sym_BSLASHTextcite] = ACTIONS(5856), - [anon_sym_BSLASHsmartcite] = ACTIONS(5856), - [anon_sym_BSLASHSmartcite] = ACTIONS(5856), - [anon_sym_BSLASHsupercite] = ACTIONS(5856), - [anon_sym_BSLASHautocite] = ACTIONS(5856), - [anon_sym_BSLASHAutocite] = ACTIONS(5856), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHvolcite] = ACTIONS(5856), - [anon_sym_BSLASHVolcite] = ACTIONS(5856), - [anon_sym_BSLASHpvolcite] = ACTIONS(5856), - [anon_sym_BSLASHPvolcite] = ACTIONS(5856), - [anon_sym_BSLASHfvolcite] = ACTIONS(5856), - [anon_sym_BSLASHftvolcite] = ACTIONS(5856), - [anon_sym_BSLASHsvolcite] = ACTIONS(5856), - [anon_sym_BSLASHSvolcite] = ACTIONS(5856), - [anon_sym_BSLASHtvolcite] = ACTIONS(5856), - [anon_sym_BSLASHTvolcite] = ACTIONS(5856), - [anon_sym_BSLASHavolcite] = ACTIONS(5856), - [anon_sym_BSLASHAvolcite] = ACTIONS(5856), - [anon_sym_BSLASHnotecite] = ACTIONS(5856), - [anon_sym_BSLASHNotecite] = ACTIONS(5856), - [anon_sym_BSLASHpnotecite] = ACTIONS(5856), - [anon_sym_BSLASHPnotecite] = ACTIONS(5856), - [anon_sym_BSLASHfnotecite] = ACTIONS(5856), - [anon_sym_BSLASHlabel] = ACTIONS(5856), - [anon_sym_BSLASHref] = ACTIONS(5856), - [anon_sym_BSLASHeqref] = ACTIONS(5856), - [anon_sym_BSLASHvref] = ACTIONS(5856), - [anon_sym_BSLASHVref] = ACTIONS(5856), - [anon_sym_BSLASHautoref] = ACTIONS(5856), - [anon_sym_BSLASHpageref] = ACTIONS(5856), - [anon_sym_BSLASHcref] = ACTIONS(5856), - [anon_sym_BSLASHCref] = ACTIONS(5856), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5858), - [anon_sym_BSLASHnamecref] = ACTIONS(5856), - [anon_sym_BSLASHnameCref] = ACTIONS(5856), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5856), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5856), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5856), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5856), - [anon_sym_BSLASHlabelcref] = ACTIONS(5856), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5856), - [anon_sym_BSLASHcrefrange] = ACTIONS(5856), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCrefrange] = ACTIONS(5856), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5858), - [anon_sym_BSLASHnewlabel] = ACTIONS(5856), - [anon_sym_BSLASHnewcommand] = ACTIONS(5856), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5856), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5856), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5858), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHdef] = ACTIONS(5856), - [anon_sym_BSLASHlet] = ACTIONS(5856), - [anon_sym_BSLASHleft] = ACTIONS(5856), - [anon_sym_BSLASHbig] = ACTIONS(5856), - [anon_sym_BSLASHBig] = ACTIONS(5856), - [anon_sym_BSLASHbigg] = ACTIONS(5856), - [anon_sym_BSLASHBigg] = ACTIONS(5856), - [anon_sym_BSLASHbigl] = ACTIONS(5856), - [anon_sym_BSLASHBigl] = ACTIONS(5856), - [anon_sym_BSLASHbiggl] = ACTIONS(5856), - [anon_sym_BSLASHBiggl] = ACTIONS(5856), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5856), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5856), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5856), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5856), - [anon_sym_BSLASHgls] = ACTIONS(5856), - [anon_sym_BSLASHGls] = ACTIONS(5856), - [anon_sym_BSLASHGLS] = ACTIONS(5856), - [anon_sym_BSLASHglspl] = ACTIONS(5856), - [anon_sym_BSLASHGlspl] = ACTIONS(5856), - [anon_sym_BSLASHGLSpl] = ACTIONS(5856), - [anon_sym_BSLASHglsdisp] = ACTIONS(5856), - [anon_sym_BSLASHglslink] = ACTIONS(5856), - [anon_sym_BSLASHglstext] = ACTIONS(5856), - [anon_sym_BSLASHGlstext] = ACTIONS(5856), - [anon_sym_BSLASHGLStext] = ACTIONS(5856), - [anon_sym_BSLASHglsfirst] = ACTIONS(5856), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5856), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5856), - [anon_sym_BSLASHglsplural] = ACTIONS(5856), - [anon_sym_BSLASHGlsplural] = ACTIONS(5856), - [anon_sym_BSLASHGLSplural] = ACTIONS(5856), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHglsname] = ACTIONS(5856), - [anon_sym_BSLASHGlsname] = ACTIONS(5856), - [anon_sym_BSLASHGLSname] = ACTIONS(5856), - [anon_sym_BSLASHglssymbol] = ACTIONS(5856), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5856), - [anon_sym_BSLASHglsdesc] = ACTIONS(5856), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5856), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5856), - [anon_sym_BSLASHglsuseri] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5856), - [anon_sym_BSLASHglsuserii] = ACTIONS(5856), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5856), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5856), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5856), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5856), - [anon_sym_BSLASHglsuserv] = ACTIONS(5856), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5856), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5856), - [anon_sym_BSLASHglsuservi] = ACTIONS(5856), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5856), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5856), - [anon_sym_BSLASHnewacronym] = ACTIONS(5856), - [anon_sym_BSLASHacrshort] = ACTIONS(5856), - [anon_sym_BSLASHAcrshort] = ACTIONS(5856), - [anon_sym_BSLASHACRshort] = ACTIONS(5856), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5856), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5856), - [anon_sym_BSLASHacrlong] = ACTIONS(5856), - [anon_sym_BSLASHAcrlong] = ACTIONS(5856), - [anon_sym_BSLASHACRlong] = ACTIONS(5856), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5856), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5856), - [anon_sym_BSLASHacrfull] = ACTIONS(5856), - [anon_sym_BSLASHAcrfull] = ACTIONS(5856), - [anon_sym_BSLASHACRfull] = ACTIONS(5856), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5856), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5856), - [anon_sym_BSLASHacs] = ACTIONS(5856), - [anon_sym_BSLASHAcs] = ACTIONS(5856), - [anon_sym_BSLASHacsp] = ACTIONS(5856), - [anon_sym_BSLASHAcsp] = ACTIONS(5856), - [anon_sym_BSLASHacl] = ACTIONS(5856), - [anon_sym_BSLASHAcl] = ACTIONS(5856), - [anon_sym_BSLASHaclp] = ACTIONS(5856), - [anon_sym_BSLASHAclp] = ACTIONS(5856), - [anon_sym_BSLASHacf] = ACTIONS(5856), - [anon_sym_BSLASHAcf] = ACTIONS(5856), - [anon_sym_BSLASHacfp] = ACTIONS(5856), - [anon_sym_BSLASHAcfp] = ACTIONS(5856), - [anon_sym_BSLASHac] = ACTIONS(5856), - [anon_sym_BSLASHAc] = ACTIONS(5856), - [anon_sym_BSLASHacp] = ACTIONS(5856), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5856), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5856), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5856), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5856), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5856), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5856), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5856), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5858), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5856), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5858), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5856), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5856), - [anon_sym_BSLASHcolor] = ACTIONS(5856), - [anon_sym_BSLASHcolorbox] = ACTIONS(5856), - [anon_sym_BSLASHtextcolor] = ACTIONS(5856), - [anon_sym_BSLASHpagecolor] = ACTIONS(5856), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5856), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5856), - [anon_sym_BSLASHtext] = ACTIONS(5856), - [anon_sym_BSLASHintertext] = ACTIONS(5856), - [anon_sym_shortintertext] = ACTIONS(5856), - }, - [638] = { - [sym__section_part] = STATE(913), - [sym_curly_group] = STATE(927), - [sym_brack_group] = STATE(2889), - [ts_builtin_sym_end] = ACTIONS(5854), - [sym_command_name] = ACTIONS(5852), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5852), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5854), - [anon_sym_COMMA] = ACTIONS(5854), - [anon_sym_EQ] = ACTIONS(5854), - [anon_sym_LPAREN] = ACTIONS(5854), - [anon_sym_RPAREN] = ACTIONS(5854), - [anon_sym_BSLASHpart] = ACTIONS(5852), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddpart] = ACTIONS(5852), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5854), - [anon_sym_BSLASHchapter] = ACTIONS(5852), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddchap] = ACTIONS(5852), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsection] = ACTIONS(5852), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddsec] = ACTIONS(5852), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubsection] = ACTIONS(5852), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5852), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHparagraph] = ACTIONS(5852), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5852), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5854), - [anon_sym_BSLASHitem] = ACTIONS(5852), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5854), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5854), - [sym_word] = ACTIONS(5852), - [sym_placeholder] = ACTIONS(5854), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_STAR] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5854), - [anon_sym_LT] = ACTIONS(5852), - [anon_sym_GT] = ACTIONS(5852), - [anon_sym_BANG] = ACTIONS(5852), - [anon_sym_PIPE] = ACTIONS(5852), - [anon_sym_COLON] = ACTIONS(5852), - [anon_sym_SQUOTE] = ACTIONS(5852), - [anon_sym__] = ACTIONS(5854), - [anon_sym_CARET] = ACTIONS(5854), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5854), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5854), - [anon_sym_DOLLAR] = ACTIONS(5852), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5854), - [anon_sym_BSLASHbegin] = ACTIONS(5852), - [anon_sym_BSLASHtitle] = ACTIONS(5852), - [anon_sym_BSLASHauthor] = ACTIONS(5852), - [anon_sym_BSLASHusepackage] = ACTIONS(5852), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5852), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5852), - [anon_sym_BSLASHinclude] = ACTIONS(5852), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5852), - [anon_sym_BSLASHinput] = ACTIONS(5852), - [anon_sym_BSLASHsubfile] = ACTIONS(5852), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5852), - [anon_sym_BSLASHbibliography] = ACTIONS(5852), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5852), - [anon_sym_BSLASHincludesvg] = ACTIONS(5852), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5852), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5852), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5852), - [anon_sym_BSLASHimport] = ACTIONS(5852), - [anon_sym_BSLASHsubimport] = ACTIONS(5852), - [anon_sym_BSLASHinputfrom] = ACTIONS(5852), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5852), - [anon_sym_BSLASHincludefrom] = ACTIONS(5852), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5852), - [anon_sym_BSLASHcaption] = ACTIONS(5852), - [anon_sym_BSLASHcite] = ACTIONS(5852), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCite] = ACTIONS(5852), - [anon_sym_BSLASHnocite] = ACTIONS(5852), - [anon_sym_BSLASHcitet] = ACTIONS(5852), - [anon_sym_BSLASHcitep] = ACTIONS(5852), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteauthor] = ACTIONS(5852), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5852), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitetitle] = ACTIONS(5852), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteyear] = ACTIONS(5852), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitedate] = ACTIONS(5852), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteurl] = ACTIONS(5852), - [anon_sym_BSLASHfullcite] = ACTIONS(5852), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5852), - [anon_sym_BSLASHcitealt] = ACTIONS(5852), - [anon_sym_BSLASHcitealp] = ACTIONS(5852), - [anon_sym_BSLASHcitetext] = ACTIONS(5852), - [anon_sym_BSLASHparencite] = ACTIONS(5852), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHParencite] = ACTIONS(5852), - [anon_sym_BSLASHfootcite] = ACTIONS(5852), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5852), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5852), - [anon_sym_BSLASHtextcite] = ACTIONS(5852), - [anon_sym_BSLASHTextcite] = ACTIONS(5852), - [anon_sym_BSLASHsmartcite] = ACTIONS(5852), - [anon_sym_BSLASHSmartcite] = ACTIONS(5852), - [anon_sym_BSLASHsupercite] = ACTIONS(5852), - [anon_sym_BSLASHautocite] = ACTIONS(5852), - [anon_sym_BSLASHAutocite] = ACTIONS(5852), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHvolcite] = ACTIONS(5852), - [anon_sym_BSLASHVolcite] = ACTIONS(5852), - [anon_sym_BSLASHpvolcite] = ACTIONS(5852), - [anon_sym_BSLASHPvolcite] = ACTIONS(5852), - [anon_sym_BSLASHfvolcite] = ACTIONS(5852), - [anon_sym_BSLASHftvolcite] = ACTIONS(5852), - [anon_sym_BSLASHsvolcite] = ACTIONS(5852), - [anon_sym_BSLASHSvolcite] = ACTIONS(5852), - [anon_sym_BSLASHtvolcite] = ACTIONS(5852), - [anon_sym_BSLASHTvolcite] = ACTIONS(5852), - [anon_sym_BSLASHavolcite] = ACTIONS(5852), - [anon_sym_BSLASHAvolcite] = ACTIONS(5852), - [anon_sym_BSLASHnotecite] = ACTIONS(5852), - [anon_sym_BSLASHNotecite] = ACTIONS(5852), - [anon_sym_BSLASHpnotecite] = ACTIONS(5852), - [anon_sym_BSLASHPnotecite] = ACTIONS(5852), - [anon_sym_BSLASHfnotecite] = ACTIONS(5852), - [anon_sym_BSLASHlabel] = ACTIONS(5852), - [anon_sym_BSLASHref] = ACTIONS(5852), - [anon_sym_BSLASHeqref] = ACTIONS(5852), - [anon_sym_BSLASHvref] = ACTIONS(5852), - [anon_sym_BSLASHVref] = ACTIONS(5852), - [anon_sym_BSLASHautoref] = ACTIONS(5852), - [anon_sym_BSLASHpageref] = ACTIONS(5852), - [anon_sym_BSLASHcref] = ACTIONS(5852), - [anon_sym_BSLASHCref] = ACTIONS(5852), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5854), - [anon_sym_BSLASHnamecref] = ACTIONS(5852), - [anon_sym_BSLASHnameCref] = ACTIONS(5852), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5852), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5852), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5852), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5852), - [anon_sym_BSLASHlabelcref] = ACTIONS(5852), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5852), - [anon_sym_BSLASHcrefrange] = ACTIONS(5852), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCrefrange] = ACTIONS(5852), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5854), - [anon_sym_BSLASHnewlabel] = ACTIONS(5852), - [anon_sym_BSLASHnewcommand] = ACTIONS(5852), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5852), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5852), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5854), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHdef] = ACTIONS(5852), - [anon_sym_BSLASHlet] = ACTIONS(5852), - [anon_sym_BSLASHleft] = ACTIONS(5852), - [anon_sym_BSLASHbig] = ACTIONS(5852), - [anon_sym_BSLASHBig] = ACTIONS(5852), - [anon_sym_BSLASHbigg] = ACTIONS(5852), - [anon_sym_BSLASHBigg] = ACTIONS(5852), - [anon_sym_BSLASHbigl] = ACTIONS(5852), - [anon_sym_BSLASHBigl] = ACTIONS(5852), - [anon_sym_BSLASHbiggl] = ACTIONS(5852), - [anon_sym_BSLASHBiggl] = ACTIONS(5852), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5852), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5852), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5852), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5852), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5852), - [anon_sym_BSLASHgls] = ACTIONS(5852), - [anon_sym_BSLASHGls] = ACTIONS(5852), - [anon_sym_BSLASHGLS] = ACTIONS(5852), - [anon_sym_BSLASHglspl] = ACTIONS(5852), - [anon_sym_BSLASHGlspl] = ACTIONS(5852), - [anon_sym_BSLASHGLSpl] = ACTIONS(5852), - [anon_sym_BSLASHglsdisp] = ACTIONS(5852), - [anon_sym_BSLASHglslink] = ACTIONS(5852), - [anon_sym_BSLASHglstext] = ACTIONS(5852), - [anon_sym_BSLASHGlstext] = ACTIONS(5852), - [anon_sym_BSLASHGLStext] = ACTIONS(5852), - [anon_sym_BSLASHglsfirst] = ACTIONS(5852), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5852), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5852), - [anon_sym_BSLASHglsplural] = ACTIONS(5852), - [anon_sym_BSLASHGlsplural] = ACTIONS(5852), - [anon_sym_BSLASHGLSplural] = ACTIONS(5852), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHglsname] = ACTIONS(5852), - [anon_sym_BSLASHGlsname] = ACTIONS(5852), - [anon_sym_BSLASHGLSname] = ACTIONS(5852), - [anon_sym_BSLASHglssymbol] = ACTIONS(5852), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5852), - [anon_sym_BSLASHglsdesc] = ACTIONS(5852), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5852), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5852), - [anon_sym_BSLASHglsuseri] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5852), - [anon_sym_BSLASHglsuserii] = ACTIONS(5852), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5852), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5852), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5852), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5852), - [anon_sym_BSLASHglsuserv] = ACTIONS(5852), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5852), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5852), - [anon_sym_BSLASHglsuservi] = ACTIONS(5852), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5852), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5852), - [anon_sym_BSLASHnewacronym] = ACTIONS(5852), - [anon_sym_BSLASHacrshort] = ACTIONS(5852), - [anon_sym_BSLASHAcrshort] = ACTIONS(5852), - [anon_sym_BSLASHACRshort] = ACTIONS(5852), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5852), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5852), - [anon_sym_BSLASHacrlong] = ACTIONS(5852), - [anon_sym_BSLASHAcrlong] = ACTIONS(5852), - [anon_sym_BSLASHACRlong] = ACTIONS(5852), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5852), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5852), - [anon_sym_BSLASHacrfull] = ACTIONS(5852), - [anon_sym_BSLASHAcrfull] = ACTIONS(5852), - [anon_sym_BSLASHACRfull] = ACTIONS(5852), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5852), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5852), - [anon_sym_BSLASHacs] = ACTIONS(5852), - [anon_sym_BSLASHAcs] = ACTIONS(5852), - [anon_sym_BSLASHacsp] = ACTIONS(5852), - [anon_sym_BSLASHAcsp] = ACTIONS(5852), - [anon_sym_BSLASHacl] = ACTIONS(5852), - [anon_sym_BSLASHAcl] = ACTIONS(5852), - [anon_sym_BSLASHaclp] = ACTIONS(5852), - [anon_sym_BSLASHAclp] = ACTIONS(5852), - [anon_sym_BSLASHacf] = ACTIONS(5852), - [anon_sym_BSLASHAcf] = ACTIONS(5852), - [anon_sym_BSLASHacfp] = ACTIONS(5852), - [anon_sym_BSLASHAcfp] = ACTIONS(5852), - [anon_sym_BSLASHac] = ACTIONS(5852), - [anon_sym_BSLASHAc] = ACTIONS(5852), - [anon_sym_BSLASHacp] = ACTIONS(5852), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5852), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5852), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5852), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5852), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5852), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5852), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5852), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5854), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5852), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5854), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5852), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5852), - [anon_sym_BSLASHcolor] = ACTIONS(5852), - [anon_sym_BSLASHcolorbox] = ACTIONS(5852), - [anon_sym_BSLASHtextcolor] = ACTIONS(5852), - [anon_sym_BSLASHpagecolor] = ACTIONS(5852), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5852), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5852), - [anon_sym_BSLASHtext] = ACTIONS(5852), - [anon_sym_BSLASHintertext] = ACTIONS(5852), - [anon_sym_shortintertext] = ACTIONS(5852), - }, - [639] = { - [sym__section_part] = STATE(914), - [sym_curly_group] = STATE(927), - [sym_brack_group] = STATE(2889), - [ts_builtin_sym_end] = ACTIONS(5850), - [sym_command_name] = ACTIONS(5848), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5848), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5850), - [anon_sym_COMMA] = ACTIONS(5850), - [anon_sym_EQ] = ACTIONS(5850), - [anon_sym_LPAREN] = ACTIONS(5850), - [anon_sym_RPAREN] = ACTIONS(5850), - [anon_sym_BSLASHpart] = ACTIONS(5848), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddpart] = ACTIONS(5848), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5850), - [anon_sym_BSLASHchapter] = ACTIONS(5848), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddchap] = ACTIONS(5848), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsection] = ACTIONS(5848), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddsec] = ACTIONS(5848), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubsection] = ACTIONS(5848), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5848), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHparagraph] = ACTIONS(5848), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5848), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5850), - [anon_sym_BSLASHitem] = ACTIONS(5848), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5850), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5850), - [sym_word] = ACTIONS(5848), - [sym_placeholder] = ACTIONS(5850), - [anon_sym_PLUS] = ACTIONS(5850), - [anon_sym_DASH] = ACTIONS(5850), - [anon_sym_STAR] = ACTIONS(5850), - [anon_sym_SLASH] = ACTIONS(5850), - [anon_sym_LT] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5848), - [anon_sym_BANG] = ACTIONS(5848), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_COLON] = ACTIONS(5848), - [anon_sym_SQUOTE] = ACTIONS(5848), - [anon_sym__] = ACTIONS(5850), - [anon_sym_CARET] = ACTIONS(5850), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5850), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5850), - [anon_sym_DOLLAR] = ACTIONS(5848), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5850), - [anon_sym_BSLASHbegin] = ACTIONS(5848), - [anon_sym_BSLASHtitle] = ACTIONS(5848), - [anon_sym_BSLASHauthor] = ACTIONS(5848), - [anon_sym_BSLASHusepackage] = ACTIONS(5848), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5848), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5848), - [anon_sym_BSLASHinclude] = ACTIONS(5848), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5848), - [anon_sym_BSLASHinput] = ACTIONS(5848), - [anon_sym_BSLASHsubfile] = ACTIONS(5848), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5848), - [anon_sym_BSLASHbibliography] = ACTIONS(5848), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5848), - [anon_sym_BSLASHincludesvg] = ACTIONS(5848), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5848), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5848), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5848), - [anon_sym_BSLASHimport] = ACTIONS(5848), - [anon_sym_BSLASHsubimport] = ACTIONS(5848), - [anon_sym_BSLASHinputfrom] = ACTIONS(5848), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5848), - [anon_sym_BSLASHincludefrom] = ACTIONS(5848), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5848), - [anon_sym_BSLASHcaption] = ACTIONS(5848), - [anon_sym_BSLASHcite] = ACTIONS(5848), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCite] = ACTIONS(5848), - [anon_sym_BSLASHnocite] = ACTIONS(5848), - [anon_sym_BSLASHcitet] = ACTIONS(5848), - [anon_sym_BSLASHcitep] = ACTIONS(5848), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteauthor] = ACTIONS(5848), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5848), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitetitle] = ACTIONS(5848), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteyear] = ACTIONS(5848), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitedate] = ACTIONS(5848), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteurl] = ACTIONS(5848), - [anon_sym_BSLASHfullcite] = ACTIONS(5848), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5848), - [anon_sym_BSLASHcitealt] = ACTIONS(5848), - [anon_sym_BSLASHcitealp] = ACTIONS(5848), - [anon_sym_BSLASHcitetext] = ACTIONS(5848), - [anon_sym_BSLASHparencite] = ACTIONS(5848), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHParencite] = ACTIONS(5848), - [anon_sym_BSLASHfootcite] = ACTIONS(5848), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5848), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5848), - [anon_sym_BSLASHtextcite] = ACTIONS(5848), - [anon_sym_BSLASHTextcite] = ACTIONS(5848), - [anon_sym_BSLASHsmartcite] = ACTIONS(5848), - [anon_sym_BSLASHSmartcite] = ACTIONS(5848), - [anon_sym_BSLASHsupercite] = ACTIONS(5848), - [anon_sym_BSLASHautocite] = ACTIONS(5848), - [anon_sym_BSLASHAutocite] = ACTIONS(5848), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHvolcite] = ACTIONS(5848), - [anon_sym_BSLASHVolcite] = ACTIONS(5848), - [anon_sym_BSLASHpvolcite] = ACTIONS(5848), - [anon_sym_BSLASHPvolcite] = ACTIONS(5848), - [anon_sym_BSLASHfvolcite] = ACTIONS(5848), - [anon_sym_BSLASHftvolcite] = ACTIONS(5848), - [anon_sym_BSLASHsvolcite] = ACTIONS(5848), - [anon_sym_BSLASHSvolcite] = ACTIONS(5848), - [anon_sym_BSLASHtvolcite] = ACTIONS(5848), - [anon_sym_BSLASHTvolcite] = ACTIONS(5848), - [anon_sym_BSLASHavolcite] = ACTIONS(5848), - [anon_sym_BSLASHAvolcite] = ACTIONS(5848), - [anon_sym_BSLASHnotecite] = ACTIONS(5848), - [anon_sym_BSLASHNotecite] = ACTIONS(5848), - [anon_sym_BSLASHpnotecite] = ACTIONS(5848), - [anon_sym_BSLASHPnotecite] = ACTIONS(5848), - [anon_sym_BSLASHfnotecite] = ACTIONS(5848), - [anon_sym_BSLASHlabel] = ACTIONS(5848), - [anon_sym_BSLASHref] = ACTIONS(5848), - [anon_sym_BSLASHeqref] = ACTIONS(5848), - [anon_sym_BSLASHvref] = ACTIONS(5848), - [anon_sym_BSLASHVref] = ACTIONS(5848), - [anon_sym_BSLASHautoref] = ACTIONS(5848), - [anon_sym_BSLASHpageref] = ACTIONS(5848), - [anon_sym_BSLASHcref] = ACTIONS(5848), - [anon_sym_BSLASHCref] = ACTIONS(5848), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5850), - [anon_sym_BSLASHnamecref] = ACTIONS(5848), - [anon_sym_BSLASHnameCref] = ACTIONS(5848), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5848), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5848), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5848), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5848), - [anon_sym_BSLASHlabelcref] = ACTIONS(5848), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5848), - [anon_sym_BSLASHcrefrange] = ACTIONS(5848), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCrefrange] = ACTIONS(5848), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5850), - [anon_sym_BSLASHnewlabel] = ACTIONS(5848), - [anon_sym_BSLASHnewcommand] = ACTIONS(5848), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5848), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5848), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5850), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHdef] = ACTIONS(5848), - [anon_sym_BSLASHlet] = ACTIONS(5848), - [anon_sym_BSLASHleft] = ACTIONS(5848), - [anon_sym_BSLASHbig] = ACTIONS(5848), - [anon_sym_BSLASHBig] = ACTIONS(5848), - [anon_sym_BSLASHbigg] = ACTIONS(5848), - [anon_sym_BSLASHBigg] = ACTIONS(5848), - [anon_sym_BSLASHbigl] = ACTIONS(5848), - [anon_sym_BSLASHBigl] = ACTIONS(5848), - [anon_sym_BSLASHbiggl] = ACTIONS(5848), - [anon_sym_BSLASHBiggl] = ACTIONS(5848), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5848), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5848), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5848), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5848), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5848), - [anon_sym_BSLASHgls] = ACTIONS(5848), - [anon_sym_BSLASHGls] = ACTIONS(5848), - [anon_sym_BSLASHGLS] = ACTIONS(5848), - [anon_sym_BSLASHglspl] = ACTIONS(5848), - [anon_sym_BSLASHGlspl] = ACTIONS(5848), - [anon_sym_BSLASHGLSpl] = ACTIONS(5848), - [anon_sym_BSLASHglsdisp] = ACTIONS(5848), - [anon_sym_BSLASHglslink] = ACTIONS(5848), - [anon_sym_BSLASHglstext] = ACTIONS(5848), - [anon_sym_BSLASHGlstext] = ACTIONS(5848), - [anon_sym_BSLASHGLStext] = ACTIONS(5848), - [anon_sym_BSLASHglsfirst] = ACTIONS(5848), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5848), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5848), - [anon_sym_BSLASHglsplural] = ACTIONS(5848), - [anon_sym_BSLASHGlsplural] = ACTIONS(5848), - [anon_sym_BSLASHGLSplural] = ACTIONS(5848), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHglsname] = ACTIONS(5848), - [anon_sym_BSLASHGlsname] = ACTIONS(5848), - [anon_sym_BSLASHGLSname] = ACTIONS(5848), - [anon_sym_BSLASHglssymbol] = ACTIONS(5848), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5848), - [anon_sym_BSLASHglsdesc] = ACTIONS(5848), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5848), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5848), - [anon_sym_BSLASHglsuseri] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5848), - [anon_sym_BSLASHglsuserii] = ACTIONS(5848), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5848), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5848), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5848), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5848), - [anon_sym_BSLASHglsuserv] = ACTIONS(5848), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5848), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5848), - [anon_sym_BSLASHglsuservi] = ACTIONS(5848), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5848), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5848), - [anon_sym_BSLASHnewacronym] = ACTIONS(5848), - [anon_sym_BSLASHacrshort] = ACTIONS(5848), - [anon_sym_BSLASHAcrshort] = ACTIONS(5848), - [anon_sym_BSLASHACRshort] = ACTIONS(5848), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5848), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5848), - [anon_sym_BSLASHacrlong] = ACTIONS(5848), - [anon_sym_BSLASHAcrlong] = ACTIONS(5848), - [anon_sym_BSLASHACRlong] = ACTIONS(5848), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5848), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5848), - [anon_sym_BSLASHacrfull] = ACTIONS(5848), - [anon_sym_BSLASHAcrfull] = ACTIONS(5848), - [anon_sym_BSLASHACRfull] = ACTIONS(5848), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5848), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5848), - [anon_sym_BSLASHacs] = ACTIONS(5848), - [anon_sym_BSLASHAcs] = ACTIONS(5848), - [anon_sym_BSLASHacsp] = ACTIONS(5848), - [anon_sym_BSLASHAcsp] = ACTIONS(5848), - [anon_sym_BSLASHacl] = ACTIONS(5848), - [anon_sym_BSLASHAcl] = ACTIONS(5848), - [anon_sym_BSLASHaclp] = ACTIONS(5848), - [anon_sym_BSLASHAclp] = ACTIONS(5848), - [anon_sym_BSLASHacf] = ACTIONS(5848), - [anon_sym_BSLASHAcf] = ACTIONS(5848), - [anon_sym_BSLASHacfp] = ACTIONS(5848), - [anon_sym_BSLASHAcfp] = ACTIONS(5848), - [anon_sym_BSLASHac] = ACTIONS(5848), - [anon_sym_BSLASHAc] = ACTIONS(5848), - [anon_sym_BSLASHacp] = ACTIONS(5848), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5848), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5848), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5848), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5848), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5848), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5848), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5848), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5850), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5848), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5850), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5848), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5848), - [anon_sym_BSLASHcolor] = ACTIONS(5848), - [anon_sym_BSLASHcolorbox] = ACTIONS(5848), - [anon_sym_BSLASHtextcolor] = ACTIONS(5848), - [anon_sym_BSLASHpagecolor] = ACTIONS(5848), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5848), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5848), - [anon_sym_BSLASHtext] = ACTIONS(5848), - [anon_sym_BSLASHintertext] = ACTIONS(5848), - [anon_sym_shortintertext] = ACTIONS(5848), - }, - [640] = { - [sym__section_part] = STATE(915), - [sym_curly_group] = STATE(927), - [sym_brack_group] = STATE(2889), - [ts_builtin_sym_end] = ACTIONS(5842), - [sym_command_name] = ACTIONS(5840), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5840), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5842), - [anon_sym_COMMA] = ACTIONS(5842), - [anon_sym_EQ] = ACTIONS(5842), - [anon_sym_LPAREN] = ACTIONS(5842), - [anon_sym_RPAREN] = ACTIONS(5842), - [anon_sym_BSLASHpart] = ACTIONS(5840), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddpart] = ACTIONS(5840), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5842), - [anon_sym_BSLASHchapter] = ACTIONS(5840), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddchap] = ACTIONS(5840), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsection] = ACTIONS(5840), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddsec] = ACTIONS(5840), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubsection] = ACTIONS(5840), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5840), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHparagraph] = ACTIONS(5840), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5840), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5842), - [anon_sym_BSLASHitem] = ACTIONS(5840), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5842), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5842), - [sym_word] = ACTIONS(5840), - [sym_placeholder] = ACTIONS(5842), - [anon_sym_PLUS] = ACTIONS(5842), - [anon_sym_DASH] = ACTIONS(5842), - [anon_sym_STAR] = ACTIONS(5842), - [anon_sym_SLASH] = ACTIONS(5842), - [anon_sym_LT] = ACTIONS(5840), - [anon_sym_GT] = ACTIONS(5840), - [anon_sym_BANG] = ACTIONS(5840), - [anon_sym_PIPE] = ACTIONS(5840), - [anon_sym_COLON] = ACTIONS(5840), - [anon_sym_SQUOTE] = ACTIONS(5840), - [anon_sym__] = ACTIONS(5842), - [anon_sym_CARET] = ACTIONS(5842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5842), - [anon_sym_DOLLAR] = ACTIONS(5840), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5842), - [anon_sym_BSLASHbegin] = ACTIONS(5840), - [anon_sym_BSLASHtitle] = ACTIONS(5840), - [anon_sym_BSLASHauthor] = ACTIONS(5840), - [anon_sym_BSLASHusepackage] = ACTIONS(5840), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5840), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5840), - [anon_sym_BSLASHinclude] = ACTIONS(5840), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5840), - [anon_sym_BSLASHinput] = ACTIONS(5840), - [anon_sym_BSLASHsubfile] = ACTIONS(5840), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5840), - [anon_sym_BSLASHbibliography] = ACTIONS(5840), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5840), - [anon_sym_BSLASHincludesvg] = ACTIONS(5840), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5840), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5840), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5840), - [anon_sym_BSLASHimport] = ACTIONS(5840), - [anon_sym_BSLASHsubimport] = ACTIONS(5840), - [anon_sym_BSLASHinputfrom] = ACTIONS(5840), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5840), - [anon_sym_BSLASHincludefrom] = ACTIONS(5840), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5840), - [anon_sym_BSLASHcaption] = ACTIONS(5840), - [anon_sym_BSLASHcite] = ACTIONS(5840), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCite] = ACTIONS(5840), - [anon_sym_BSLASHnocite] = ACTIONS(5840), - [anon_sym_BSLASHcitet] = ACTIONS(5840), - [anon_sym_BSLASHcitep] = ACTIONS(5840), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteauthor] = ACTIONS(5840), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5840), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitetitle] = ACTIONS(5840), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteyear] = ACTIONS(5840), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitedate] = ACTIONS(5840), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteurl] = ACTIONS(5840), - [anon_sym_BSLASHfullcite] = ACTIONS(5840), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5840), - [anon_sym_BSLASHcitealt] = ACTIONS(5840), - [anon_sym_BSLASHcitealp] = ACTIONS(5840), - [anon_sym_BSLASHcitetext] = ACTIONS(5840), - [anon_sym_BSLASHparencite] = ACTIONS(5840), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHParencite] = ACTIONS(5840), - [anon_sym_BSLASHfootcite] = ACTIONS(5840), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5840), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5840), - [anon_sym_BSLASHtextcite] = ACTIONS(5840), - [anon_sym_BSLASHTextcite] = ACTIONS(5840), - [anon_sym_BSLASHsmartcite] = ACTIONS(5840), - [anon_sym_BSLASHSmartcite] = ACTIONS(5840), - [anon_sym_BSLASHsupercite] = ACTIONS(5840), - [anon_sym_BSLASHautocite] = ACTIONS(5840), - [anon_sym_BSLASHAutocite] = ACTIONS(5840), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHvolcite] = ACTIONS(5840), - [anon_sym_BSLASHVolcite] = ACTIONS(5840), - [anon_sym_BSLASHpvolcite] = ACTIONS(5840), - [anon_sym_BSLASHPvolcite] = ACTIONS(5840), - [anon_sym_BSLASHfvolcite] = ACTIONS(5840), - [anon_sym_BSLASHftvolcite] = ACTIONS(5840), - [anon_sym_BSLASHsvolcite] = ACTIONS(5840), - [anon_sym_BSLASHSvolcite] = ACTIONS(5840), - [anon_sym_BSLASHtvolcite] = ACTIONS(5840), - [anon_sym_BSLASHTvolcite] = ACTIONS(5840), - [anon_sym_BSLASHavolcite] = ACTIONS(5840), - [anon_sym_BSLASHAvolcite] = ACTIONS(5840), - [anon_sym_BSLASHnotecite] = ACTIONS(5840), - [anon_sym_BSLASHNotecite] = ACTIONS(5840), - [anon_sym_BSLASHpnotecite] = ACTIONS(5840), - [anon_sym_BSLASHPnotecite] = ACTIONS(5840), - [anon_sym_BSLASHfnotecite] = ACTIONS(5840), - [anon_sym_BSLASHlabel] = ACTIONS(5840), - [anon_sym_BSLASHref] = ACTIONS(5840), - [anon_sym_BSLASHeqref] = ACTIONS(5840), - [anon_sym_BSLASHvref] = ACTIONS(5840), - [anon_sym_BSLASHVref] = ACTIONS(5840), - [anon_sym_BSLASHautoref] = ACTIONS(5840), - [anon_sym_BSLASHpageref] = ACTIONS(5840), - [anon_sym_BSLASHcref] = ACTIONS(5840), - [anon_sym_BSLASHCref] = ACTIONS(5840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5842), - [anon_sym_BSLASHnamecref] = ACTIONS(5840), - [anon_sym_BSLASHnameCref] = ACTIONS(5840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5840), - [anon_sym_BSLASHlabelcref] = ACTIONS(5840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5840), - [anon_sym_BSLASHcrefrange] = ACTIONS(5840), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCrefrange] = ACTIONS(5840), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5842), - [anon_sym_BSLASHnewlabel] = ACTIONS(5840), - [anon_sym_BSLASHnewcommand] = ACTIONS(5840), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5840), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5840), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5842), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHdef] = ACTIONS(5840), - [anon_sym_BSLASHlet] = ACTIONS(5840), - [anon_sym_BSLASHleft] = ACTIONS(5840), - [anon_sym_BSLASHbig] = ACTIONS(5840), - [anon_sym_BSLASHBig] = ACTIONS(5840), - [anon_sym_BSLASHbigg] = ACTIONS(5840), - [anon_sym_BSLASHBigg] = ACTIONS(5840), - [anon_sym_BSLASHbigl] = ACTIONS(5840), - [anon_sym_BSLASHBigl] = ACTIONS(5840), - [anon_sym_BSLASHbiggl] = ACTIONS(5840), - [anon_sym_BSLASHBiggl] = ACTIONS(5840), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5840), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5840), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5840), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5840), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5840), - [anon_sym_BSLASHgls] = ACTIONS(5840), - [anon_sym_BSLASHGls] = ACTIONS(5840), - [anon_sym_BSLASHGLS] = ACTIONS(5840), - [anon_sym_BSLASHglspl] = ACTIONS(5840), - [anon_sym_BSLASHGlspl] = ACTIONS(5840), - [anon_sym_BSLASHGLSpl] = ACTIONS(5840), - [anon_sym_BSLASHglsdisp] = ACTIONS(5840), - [anon_sym_BSLASHglslink] = ACTIONS(5840), - [anon_sym_BSLASHglstext] = ACTIONS(5840), - [anon_sym_BSLASHGlstext] = ACTIONS(5840), - [anon_sym_BSLASHGLStext] = ACTIONS(5840), - [anon_sym_BSLASHglsfirst] = ACTIONS(5840), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5840), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5840), - [anon_sym_BSLASHglsplural] = ACTIONS(5840), - [anon_sym_BSLASHGlsplural] = ACTIONS(5840), - [anon_sym_BSLASHGLSplural] = ACTIONS(5840), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHglsname] = ACTIONS(5840), - [anon_sym_BSLASHGlsname] = ACTIONS(5840), - [anon_sym_BSLASHGLSname] = ACTIONS(5840), - [anon_sym_BSLASHglssymbol] = ACTIONS(5840), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5840), - [anon_sym_BSLASHglsdesc] = ACTIONS(5840), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5840), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5840), - [anon_sym_BSLASHglsuseri] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5840), - [anon_sym_BSLASHglsuserii] = ACTIONS(5840), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5840), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5840), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5840), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5840), - [anon_sym_BSLASHglsuserv] = ACTIONS(5840), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5840), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5840), - [anon_sym_BSLASHglsuservi] = ACTIONS(5840), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5840), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5840), - [anon_sym_BSLASHnewacronym] = ACTIONS(5840), - [anon_sym_BSLASHacrshort] = ACTIONS(5840), - [anon_sym_BSLASHAcrshort] = ACTIONS(5840), - [anon_sym_BSLASHACRshort] = ACTIONS(5840), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5840), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5840), - [anon_sym_BSLASHacrlong] = ACTIONS(5840), - [anon_sym_BSLASHAcrlong] = ACTIONS(5840), - [anon_sym_BSLASHACRlong] = ACTIONS(5840), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5840), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5840), - [anon_sym_BSLASHacrfull] = ACTIONS(5840), - [anon_sym_BSLASHAcrfull] = ACTIONS(5840), - [anon_sym_BSLASHACRfull] = ACTIONS(5840), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5840), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5840), - [anon_sym_BSLASHacs] = ACTIONS(5840), - [anon_sym_BSLASHAcs] = ACTIONS(5840), - [anon_sym_BSLASHacsp] = ACTIONS(5840), - [anon_sym_BSLASHAcsp] = ACTIONS(5840), - [anon_sym_BSLASHacl] = ACTIONS(5840), - [anon_sym_BSLASHAcl] = ACTIONS(5840), - [anon_sym_BSLASHaclp] = ACTIONS(5840), - [anon_sym_BSLASHAclp] = ACTIONS(5840), - [anon_sym_BSLASHacf] = ACTIONS(5840), - [anon_sym_BSLASHAcf] = ACTIONS(5840), - [anon_sym_BSLASHacfp] = ACTIONS(5840), - [anon_sym_BSLASHAcfp] = ACTIONS(5840), - [anon_sym_BSLASHac] = ACTIONS(5840), - [anon_sym_BSLASHAc] = ACTIONS(5840), - [anon_sym_BSLASHacp] = ACTIONS(5840), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5840), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5840), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5840), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5840), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5840), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5840), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5840), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5842), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5840), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5842), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5840), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5840), - [anon_sym_BSLASHcolor] = ACTIONS(5840), - [anon_sym_BSLASHcolorbox] = ACTIONS(5840), - [anon_sym_BSLASHtextcolor] = ACTIONS(5840), - [anon_sym_BSLASHpagecolor] = ACTIONS(5840), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5840), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5840), - [anon_sym_BSLASHtext] = ACTIONS(5840), - [anon_sym_BSLASHintertext] = ACTIONS(5840), - [anon_sym_shortintertext] = ACTIONS(5840), - }, - [641] = { - [sym__section_part] = STATE(916), - [sym_curly_group] = STATE(927), - [sym_brack_group] = STATE(2889), - [ts_builtin_sym_end] = ACTIONS(5838), - [sym_command_name] = ACTIONS(5836), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5836), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5838), - [anon_sym_COMMA] = ACTIONS(5838), - [anon_sym_EQ] = ACTIONS(5838), - [anon_sym_LPAREN] = ACTIONS(5838), - [anon_sym_RPAREN] = ACTIONS(5838), - [anon_sym_BSLASHpart] = ACTIONS(5836), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddpart] = ACTIONS(5836), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5838), - [anon_sym_BSLASHchapter] = ACTIONS(5836), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddchap] = ACTIONS(5836), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsection] = ACTIONS(5836), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddsec] = ACTIONS(5836), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubsection] = ACTIONS(5836), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5836), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHparagraph] = ACTIONS(5836), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5836), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5838), - [anon_sym_BSLASHitem] = ACTIONS(5836), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5838), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5838), - [sym_word] = ACTIONS(5836), - [sym_placeholder] = ACTIONS(5838), - [anon_sym_PLUS] = ACTIONS(5838), - [anon_sym_DASH] = ACTIONS(5838), - [anon_sym_STAR] = ACTIONS(5838), - [anon_sym_SLASH] = ACTIONS(5838), - [anon_sym_LT] = ACTIONS(5836), - [anon_sym_GT] = ACTIONS(5836), - [anon_sym_BANG] = ACTIONS(5836), - [anon_sym_PIPE] = ACTIONS(5836), - [anon_sym_COLON] = ACTIONS(5836), - [anon_sym_SQUOTE] = ACTIONS(5836), - [anon_sym__] = ACTIONS(5838), - [anon_sym_CARET] = ACTIONS(5838), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5838), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5838), - [anon_sym_DOLLAR] = ACTIONS(5836), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5838), - [anon_sym_BSLASHbegin] = ACTIONS(5836), - [anon_sym_BSLASHtitle] = ACTIONS(5836), - [anon_sym_BSLASHauthor] = ACTIONS(5836), - [anon_sym_BSLASHusepackage] = ACTIONS(5836), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5836), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5836), - [anon_sym_BSLASHinclude] = ACTIONS(5836), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5836), - [anon_sym_BSLASHinput] = ACTIONS(5836), - [anon_sym_BSLASHsubfile] = ACTIONS(5836), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5836), - [anon_sym_BSLASHbibliography] = ACTIONS(5836), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5836), - [anon_sym_BSLASHincludesvg] = ACTIONS(5836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5836), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5836), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5836), - [anon_sym_BSLASHimport] = ACTIONS(5836), - [anon_sym_BSLASHsubimport] = ACTIONS(5836), - [anon_sym_BSLASHinputfrom] = ACTIONS(5836), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5836), - [anon_sym_BSLASHincludefrom] = ACTIONS(5836), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5836), - [anon_sym_BSLASHcaption] = ACTIONS(5836), - [anon_sym_BSLASHcite] = ACTIONS(5836), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCite] = ACTIONS(5836), - [anon_sym_BSLASHnocite] = ACTIONS(5836), - [anon_sym_BSLASHcitet] = ACTIONS(5836), - [anon_sym_BSLASHcitep] = ACTIONS(5836), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteauthor] = ACTIONS(5836), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5836), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitetitle] = ACTIONS(5836), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteyear] = ACTIONS(5836), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitedate] = ACTIONS(5836), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteurl] = ACTIONS(5836), - [anon_sym_BSLASHfullcite] = ACTIONS(5836), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5836), - [anon_sym_BSLASHcitealt] = ACTIONS(5836), - [anon_sym_BSLASHcitealp] = ACTIONS(5836), - [anon_sym_BSLASHcitetext] = ACTIONS(5836), - [anon_sym_BSLASHparencite] = ACTIONS(5836), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHParencite] = ACTIONS(5836), - [anon_sym_BSLASHfootcite] = ACTIONS(5836), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5836), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5836), - [anon_sym_BSLASHtextcite] = ACTIONS(5836), - [anon_sym_BSLASHTextcite] = ACTIONS(5836), - [anon_sym_BSLASHsmartcite] = ACTIONS(5836), - [anon_sym_BSLASHSmartcite] = ACTIONS(5836), - [anon_sym_BSLASHsupercite] = ACTIONS(5836), - [anon_sym_BSLASHautocite] = ACTIONS(5836), - [anon_sym_BSLASHAutocite] = ACTIONS(5836), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHvolcite] = ACTIONS(5836), - [anon_sym_BSLASHVolcite] = ACTIONS(5836), - [anon_sym_BSLASHpvolcite] = ACTIONS(5836), - [anon_sym_BSLASHPvolcite] = ACTIONS(5836), - [anon_sym_BSLASHfvolcite] = ACTIONS(5836), - [anon_sym_BSLASHftvolcite] = ACTIONS(5836), - [anon_sym_BSLASHsvolcite] = ACTIONS(5836), - [anon_sym_BSLASHSvolcite] = ACTIONS(5836), - [anon_sym_BSLASHtvolcite] = ACTIONS(5836), - [anon_sym_BSLASHTvolcite] = ACTIONS(5836), - [anon_sym_BSLASHavolcite] = ACTIONS(5836), - [anon_sym_BSLASHAvolcite] = ACTIONS(5836), - [anon_sym_BSLASHnotecite] = ACTIONS(5836), - [anon_sym_BSLASHNotecite] = ACTIONS(5836), - [anon_sym_BSLASHpnotecite] = ACTIONS(5836), - [anon_sym_BSLASHPnotecite] = ACTIONS(5836), - [anon_sym_BSLASHfnotecite] = ACTIONS(5836), - [anon_sym_BSLASHlabel] = ACTIONS(5836), - [anon_sym_BSLASHref] = ACTIONS(5836), - [anon_sym_BSLASHeqref] = ACTIONS(5836), - [anon_sym_BSLASHvref] = ACTIONS(5836), - [anon_sym_BSLASHVref] = ACTIONS(5836), - [anon_sym_BSLASHautoref] = ACTIONS(5836), - [anon_sym_BSLASHpageref] = ACTIONS(5836), - [anon_sym_BSLASHcref] = ACTIONS(5836), - [anon_sym_BSLASHCref] = ACTIONS(5836), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5838), - [anon_sym_BSLASHnamecref] = ACTIONS(5836), - [anon_sym_BSLASHnameCref] = ACTIONS(5836), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5836), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5836), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5836), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5836), - [anon_sym_BSLASHlabelcref] = ACTIONS(5836), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5836), - [anon_sym_BSLASHcrefrange] = ACTIONS(5836), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCrefrange] = ACTIONS(5836), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5838), - [anon_sym_BSLASHnewlabel] = ACTIONS(5836), - [anon_sym_BSLASHnewcommand] = ACTIONS(5836), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5836), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5836), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5838), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHdef] = ACTIONS(5836), - [anon_sym_BSLASHlet] = ACTIONS(5836), - [anon_sym_BSLASHleft] = ACTIONS(5836), - [anon_sym_BSLASHbig] = ACTIONS(5836), - [anon_sym_BSLASHBig] = ACTIONS(5836), - [anon_sym_BSLASHbigg] = ACTIONS(5836), - [anon_sym_BSLASHBigg] = ACTIONS(5836), - [anon_sym_BSLASHbigl] = ACTIONS(5836), - [anon_sym_BSLASHBigl] = ACTIONS(5836), - [anon_sym_BSLASHbiggl] = ACTIONS(5836), - [anon_sym_BSLASHBiggl] = ACTIONS(5836), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5836), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5836), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5836), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5836), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5836), - [anon_sym_BSLASHgls] = ACTIONS(5836), - [anon_sym_BSLASHGls] = ACTIONS(5836), - [anon_sym_BSLASHGLS] = ACTIONS(5836), - [anon_sym_BSLASHglspl] = ACTIONS(5836), - [anon_sym_BSLASHGlspl] = ACTIONS(5836), - [anon_sym_BSLASHGLSpl] = ACTIONS(5836), - [anon_sym_BSLASHglsdisp] = ACTIONS(5836), - [anon_sym_BSLASHglslink] = ACTIONS(5836), - [anon_sym_BSLASHglstext] = ACTIONS(5836), - [anon_sym_BSLASHGlstext] = ACTIONS(5836), - [anon_sym_BSLASHGLStext] = ACTIONS(5836), - [anon_sym_BSLASHglsfirst] = ACTIONS(5836), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5836), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5836), - [anon_sym_BSLASHglsplural] = ACTIONS(5836), - [anon_sym_BSLASHGlsplural] = ACTIONS(5836), - [anon_sym_BSLASHGLSplural] = ACTIONS(5836), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHglsname] = ACTIONS(5836), - [anon_sym_BSLASHGlsname] = ACTIONS(5836), - [anon_sym_BSLASHGLSname] = ACTIONS(5836), - [anon_sym_BSLASHglssymbol] = ACTIONS(5836), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5836), - [anon_sym_BSLASHglsdesc] = ACTIONS(5836), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5836), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5836), - [anon_sym_BSLASHglsuseri] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5836), - [anon_sym_BSLASHglsuserii] = ACTIONS(5836), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5836), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5836), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5836), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5836), - [anon_sym_BSLASHglsuserv] = ACTIONS(5836), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5836), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5836), - [anon_sym_BSLASHglsuservi] = ACTIONS(5836), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5836), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5836), - [anon_sym_BSLASHnewacronym] = ACTIONS(5836), - [anon_sym_BSLASHacrshort] = ACTIONS(5836), - [anon_sym_BSLASHAcrshort] = ACTIONS(5836), - [anon_sym_BSLASHACRshort] = ACTIONS(5836), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5836), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5836), - [anon_sym_BSLASHacrlong] = ACTIONS(5836), - [anon_sym_BSLASHAcrlong] = ACTIONS(5836), - [anon_sym_BSLASHACRlong] = ACTIONS(5836), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5836), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5836), - [anon_sym_BSLASHacrfull] = ACTIONS(5836), - [anon_sym_BSLASHAcrfull] = ACTIONS(5836), - [anon_sym_BSLASHACRfull] = ACTIONS(5836), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5836), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5836), - [anon_sym_BSLASHacs] = ACTIONS(5836), - [anon_sym_BSLASHAcs] = ACTIONS(5836), - [anon_sym_BSLASHacsp] = ACTIONS(5836), - [anon_sym_BSLASHAcsp] = ACTIONS(5836), - [anon_sym_BSLASHacl] = ACTIONS(5836), - [anon_sym_BSLASHAcl] = ACTIONS(5836), - [anon_sym_BSLASHaclp] = ACTIONS(5836), - [anon_sym_BSLASHAclp] = ACTIONS(5836), - [anon_sym_BSLASHacf] = ACTIONS(5836), - [anon_sym_BSLASHAcf] = ACTIONS(5836), - [anon_sym_BSLASHacfp] = ACTIONS(5836), - [anon_sym_BSLASHAcfp] = ACTIONS(5836), - [anon_sym_BSLASHac] = ACTIONS(5836), - [anon_sym_BSLASHAc] = ACTIONS(5836), - [anon_sym_BSLASHacp] = ACTIONS(5836), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5836), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5836), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5836), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5836), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5836), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5836), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5836), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5838), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5836), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5838), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5836), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5836), - [anon_sym_BSLASHcolor] = ACTIONS(5836), - [anon_sym_BSLASHcolorbox] = ACTIONS(5836), - [anon_sym_BSLASHtextcolor] = ACTIONS(5836), - [anon_sym_BSLASHpagecolor] = ACTIONS(5836), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5836), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5836), - [anon_sym_BSLASHtext] = ACTIONS(5836), - [anon_sym_BSLASHintertext] = ACTIONS(5836), - [anon_sym_shortintertext] = ACTIONS(5836), - }, - [642] = { - [sym__section_part] = STATE(917), - [sym_curly_group] = STATE(927), - [sym_brack_group] = STATE(2889), - [ts_builtin_sym_end] = ACTIONS(5834), - [sym_command_name] = ACTIONS(5832), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5832), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5834), - [anon_sym_COMMA] = ACTIONS(5834), - [anon_sym_EQ] = ACTIONS(5834), - [anon_sym_LPAREN] = ACTIONS(5834), - [anon_sym_RPAREN] = ACTIONS(5834), - [anon_sym_BSLASHpart] = ACTIONS(5832), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddpart] = ACTIONS(5832), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5834), - [anon_sym_BSLASHchapter] = ACTIONS(5832), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddchap] = ACTIONS(5832), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsection] = ACTIONS(5832), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddsec] = ACTIONS(5832), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubsection] = ACTIONS(5832), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5832), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHparagraph] = ACTIONS(5832), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5832), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5834), - [anon_sym_BSLASHitem] = ACTIONS(5832), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5834), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5834), - [sym_word] = ACTIONS(5832), - [sym_placeholder] = ACTIONS(5834), - [anon_sym_PLUS] = ACTIONS(5834), - [anon_sym_DASH] = ACTIONS(5834), - [anon_sym_STAR] = ACTIONS(5834), - [anon_sym_SLASH] = ACTIONS(5834), - [anon_sym_LT] = ACTIONS(5832), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_BANG] = ACTIONS(5832), - [anon_sym_PIPE] = ACTIONS(5832), - [anon_sym_COLON] = ACTIONS(5832), - [anon_sym_SQUOTE] = ACTIONS(5832), - [anon_sym__] = ACTIONS(5834), - [anon_sym_CARET] = ACTIONS(5834), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5834), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5834), - [anon_sym_DOLLAR] = ACTIONS(5832), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5834), - [anon_sym_BSLASHbegin] = ACTIONS(5832), - [anon_sym_BSLASHtitle] = ACTIONS(5832), - [anon_sym_BSLASHauthor] = ACTIONS(5832), - [anon_sym_BSLASHusepackage] = ACTIONS(5832), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5832), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5832), - [anon_sym_BSLASHinclude] = ACTIONS(5832), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5832), - [anon_sym_BSLASHinput] = ACTIONS(5832), - [anon_sym_BSLASHsubfile] = ACTIONS(5832), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5832), - [anon_sym_BSLASHbibliography] = ACTIONS(5832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5832), - [anon_sym_BSLASHincludesvg] = ACTIONS(5832), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5832), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5832), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5832), - [anon_sym_BSLASHimport] = ACTIONS(5832), - [anon_sym_BSLASHsubimport] = ACTIONS(5832), - [anon_sym_BSLASHinputfrom] = ACTIONS(5832), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5832), - [anon_sym_BSLASHincludefrom] = ACTIONS(5832), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5832), - [anon_sym_BSLASHcaption] = ACTIONS(5832), - [anon_sym_BSLASHcite] = ACTIONS(5832), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCite] = ACTIONS(5832), - [anon_sym_BSLASHnocite] = ACTIONS(5832), - [anon_sym_BSLASHcitet] = ACTIONS(5832), - [anon_sym_BSLASHcitep] = ACTIONS(5832), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteauthor] = ACTIONS(5832), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5832), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitetitle] = ACTIONS(5832), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteyear] = ACTIONS(5832), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitedate] = ACTIONS(5832), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteurl] = ACTIONS(5832), - [anon_sym_BSLASHfullcite] = ACTIONS(5832), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5832), - [anon_sym_BSLASHcitealt] = ACTIONS(5832), - [anon_sym_BSLASHcitealp] = ACTIONS(5832), - [anon_sym_BSLASHcitetext] = ACTIONS(5832), - [anon_sym_BSLASHparencite] = ACTIONS(5832), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHParencite] = ACTIONS(5832), - [anon_sym_BSLASHfootcite] = ACTIONS(5832), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5832), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5832), - [anon_sym_BSLASHtextcite] = ACTIONS(5832), - [anon_sym_BSLASHTextcite] = ACTIONS(5832), - [anon_sym_BSLASHsmartcite] = ACTIONS(5832), - [anon_sym_BSLASHSmartcite] = ACTIONS(5832), - [anon_sym_BSLASHsupercite] = ACTIONS(5832), - [anon_sym_BSLASHautocite] = ACTIONS(5832), - [anon_sym_BSLASHAutocite] = ACTIONS(5832), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHvolcite] = ACTIONS(5832), - [anon_sym_BSLASHVolcite] = ACTIONS(5832), - [anon_sym_BSLASHpvolcite] = ACTIONS(5832), - [anon_sym_BSLASHPvolcite] = ACTIONS(5832), - [anon_sym_BSLASHfvolcite] = ACTIONS(5832), - [anon_sym_BSLASHftvolcite] = ACTIONS(5832), - [anon_sym_BSLASHsvolcite] = ACTIONS(5832), - [anon_sym_BSLASHSvolcite] = ACTIONS(5832), - [anon_sym_BSLASHtvolcite] = ACTIONS(5832), - [anon_sym_BSLASHTvolcite] = ACTIONS(5832), - [anon_sym_BSLASHavolcite] = ACTIONS(5832), - [anon_sym_BSLASHAvolcite] = ACTIONS(5832), - [anon_sym_BSLASHnotecite] = ACTIONS(5832), - [anon_sym_BSLASHNotecite] = ACTIONS(5832), - [anon_sym_BSLASHpnotecite] = ACTIONS(5832), - [anon_sym_BSLASHPnotecite] = ACTIONS(5832), - [anon_sym_BSLASHfnotecite] = ACTIONS(5832), - [anon_sym_BSLASHlabel] = ACTIONS(5832), - [anon_sym_BSLASHref] = ACTIONS(5832), - [anon_sym_BSLASHeqref] = ACTIONS(5832), - [anon_sym_BSLASHvref] = ACTIONS(5832), - [anon_sym_BSLASHVref] = ACTIONS(5832), - [anon_sym_BSLASHautoref] = ACTIONS(5832), - [anon_sym_BSLASHpageref] = ACTIONS(5832), - [anon_sym_BSLASHcref] = ACTIONS(5832), - [anon_sym_BSLASHCref] = ACTIONS(5832), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5834), - [anon_sym_BSLASHnamecref] = ACTIONS(5832), - [anon_sym_BSLASHnameCref] = ACTIONS(5832), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5832), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5832), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5832), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5832), - [anon_sym_BSLASHlabelcref] = ACTIONS(5832), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5832), - [anon_sym_BSLASHcrefrange] = ACTIONS(5832), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCrefrange] = ACTIONS(5832), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5834), - [anon_sym_BSLASHnewlabel] = ACTIONS(5832), - [anon_sym_BSLASHnewcommand] = ACTIONS(5832), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5832), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5832), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5834), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHdef] = ACTIONS(5832), - [anon_sym_BSLASHlet] = ACTIONS(5832), - [anon_sym_BSLASHleft] = ACTIONS(5832), - [anon_sym_BSLASHbig] = ACTIONS(5832), - [anon_sym_BSLASHBig] = ACTIONS(5832), - [anon_sym_BSLASHbigg] = ACTIONS(5832), - [anon_sym_BSLASHBigg] = ACTIONS(5832), - [anon_sym_BSLASHbigl] = ACTIONS(5832), - [anon_sym_BSLASHBigl] = ACTIONS(5832), - [anon_sym_BSLASHbiggl] = ACTIONS(5832), - [anon_sym_BSLASHBiggl] = ACTIONS(5832), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5832), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5832), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5832), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5832), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5832), - [anon_sym_BSLASHgls] = ACTIONS(5832), - [anon_sym_BSLASHGls] = ACTIONS(5832), - [anon_sym_BSLASHGLS] = ACTIONS(5832), - [anon_sym_BSLASHglspl] = ACTIONS(5832), - [anon_sym_BSLASHGlspl] = ACTIONS(5832), - [anon_sym_BSLASHGLSpl] = ACTIONS(5832), - [anon_sym_BSLASHglsdisp] = ACTIONS(5832), - [anon_sym_BSLASHglslink] = ACTIONS(5832), - [anon_sym_BSLASHglstext] = ACTIONS(5832), - [anon_sym_BSLASHGlstext] = ACTIONS(5832), - [anon_sym_BSLASHGLStext] = ACTIONS(5832), - [anon_sym_BSLASHglsfirst] = ACTIONS(5832), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5832), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5832), - [anon_sym_BSLASHglsplural] = ACTIONS(5832), - [anon_sym_BSLASHGlsplural] = ACTIONS(5832), - [anon_sym_BSLASHGLSplural] = ACTIONS(5832), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHglsname] = ACTIONS(5832), - [anon_sym_BSLASHGlsname] = ACTIONS(5832), - [anon_sym_BSLASHGLSname] = ACTIONS(5832), - [anon_sym_BSLASHglssymbol] = ACTIONS(5832), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5832), - [anon_sym_BSLASHglsdesc] = ACTIONS(5832), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5832), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5832), - [anon_sym_BSLASHglsuseri] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5832), - [anon_sym_BSLASHglsuserii] = ACTIONS(5832), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5832), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5832), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5832), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5832), - [anon_sym_BSLASHglsuserv] = ACTIONS(5832), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5832), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5832), - [anon_sym_BSLASHglsuservi] = ACTIONS(5832), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5832), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5832), - [anon_sym_BSLASHnewacronym] = ACTIONS(5832), - [anon_sym_BSLASHacrshort] = ACTIONS(5832), - [anon_sym_BSLASHAcrshort] = ACTIONS(5832), - [anon_sym_BSLASHACRshort] = ACTIONS(5832), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5832), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5832), - [anon_sym_BSLASHacrlong] = ACTIONS(5832), - [anon_sym_BSLASHAcrlong] = ACTIONS(5832), - [anon_sym_BSLASHACRlong] = ACTIONS(5832), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5832), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5832), - [anon_sym_BSLASHacrfull] = ACTIONS(5832), - [anon_sym_BSLASHAcrfull] = ACTIONS(5832), - [anon_sym_BSLASHACRfull] = ACTIONS(5832), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5832), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5832), - [anon_sym_BSLASHacs] = ACTIONS(5832), - [anon_sym_BSLASHAcs] = ACTIONS(5832), - [anon_sym_BSLASHacsp] = ACTIONS(5832), - [anon_sym_BSLASHAcsp] = ACTIONS(5832), - [anon_sym_BSLASHacl] = ACTIONS(5832), - [anon_sym_BSLASHAcl] = ACTIONS(5832), - [anon_sym_BSLASHaclp] = ACTIONS(5832), - [anon_sym_BSLASHAclp] = ACTIONS(5832), - [anon_sym_BSLASHacf] = ACTIONS(5832), - [anon_sym_BSLASHAcf] = ACTIONS(5832), - [anon_sym_BSLASHacfp] = ACTIONS(5832), - [anon_sym_BSLASHAcfp] = ACTIONS(5832), - [anon_sym_BSLASHac] = ACTIONS(5832), - [anon_sym_BSLASHAc] = ACTIONS(5832), - [anon_sym_BSLASHacp] = ACTIONS(5832), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5832), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5832), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5832), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5832), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5832), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5832), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5832), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5834), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5832), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5834), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5832), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5832), - [anon_sym_BSLASHcolor] = ACTIONS(5832), - [anon_sym_BSLASHcolorbox] = ACTIONS(5832), - [anon_sym_BSLASHtextcolor] = ACTIONS(5832), - [anon_sym_BSLASHpagecolor] = ACTIONS(5832), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5832), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5832), - [anon_sym_BSLASHtext] = ACTIONS(5832), - [anon_sym_BSLASHintertext] = ACTIONS(5832), - [anon_sym_shortintertext] = ACTIONS(5832), - }, - [643] = { - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(649), - [aux_sym__section_repeat4] = STATE(649), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHend] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [644] = { - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(733), - [aux_sym__section_repeat6] = STATE(733), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [645] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(5942), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5942), - [anon_sym_LBRACK] = ACTIONS(5944), - [anon_sym_RBRACK] = ACTIONS(5944), - [anon_sym_COMMA] = ACTIONS(5944), - [anon_sym_EQ] = ACTIONS(5944), - [anon_sym_LPAREN] = ACTIONS(5944), - [anon_sym_RPAREN] = ACTIONS(5944), - [anon_sym_BSLASHpart] = ACTIONS(5942), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddpart] = ACTIONS(5942), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5944), - [anon_sym_BSLASHchapter] = ACTIONS(5942), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddchap] = ACTIONS(5942), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsection] = ACTIONS(5942), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddsec] = ACTIONS(5942), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubsection] = ACTIONS(5942), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5942), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHparagraph] = ACTIONS(5942), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5942), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5944), - [anon_sym_BSLASHitem] = ACTIONS(6533), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6536), - [anon_sym_LBRACE] = ACTIONS(5944), - [sym_word] = ACTIONS(5942), - [sym_placeholder] = ACTIONS(5944), - [anon_sym_PLUS] = ACTIONS(5944), - [anon_sym_DASH] = ACTIONS(5944), - [anon_sym_STAR] = ACTIONS(5944), - [anon_sym_SLASH] = ACTIONS(5944), - [anon_sym_LT] = ACTIONS(5942), - [anon_sym_GT] = ACTIONS(5942), - [anon_sym_BANG] = ACTIONS(5942), - [anon_sym_PIPE] = ACTIONS(5942), - [anon_sym_COLON] = ACTIONS(5942), - [anon_sym_SQUOTE] = ACTIONS(5942), - [anon_sym__] = ACTIONS(5944), - [anon_sym_CARET] = ACTIONS(5944), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5944), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5944), - [anon_sym_DOLLAR] = ACTIONS(5942), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5944), - [anon_sym_BSLASHbegin] = ACTIONS(5942), - [anon_sym_BSLASHend] = ACTIONS(5942), - [anon_sym_BSLASHtitle] = ACTIONS(5942), - [anon_sym_BSLASHauthor] = ACTIONS(5942), - [anon_sym_BSLASHusepackage] = ACTIONS(5942), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5942), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5942), - [anon_sym_BSLASHinclude] = ACTIONS(5942), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5942), - [anon_sym_BSLASHinput] = ACTIONS(5942), - [anon_sym_BSLASHsubfile] = ACTIONS(5942), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5942), - [anon_sym_BSLASHbibliography] = ACTIONS(5942), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5942), - [anon_sym_BSLASHincludesvg] = ACTIONS(5942), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5942), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5942), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5942), - [anon_sym_BSLASHimport] = ACTIONS(5942), - [anon_sym_BSLASHsubimport] = ACTIONS(5942), - [anon_sym_BSLASHinputfrom] = ACTIONS(5942), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5942), - [anon_sym_BSLASHincludefrom] = ACTIONS(5942), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5942), - [anon_sym_BSLASHcaption] = ACTIONS(5942), - [anon_sym_BSLASHcite] = ACTIONS(5942), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCite] = ACTIONS(5942), - [anon_sym_BSLASHnocite] = ACTIONS(5942), - [anon_sym_BSLASHcitet] = ACTIONS(5942), - [anon_sym_BSLASHcitep] = ACTIONS(5942), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteauthor] = ACTIONS(5942), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5942), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitetitle] = ACTIONS(5942), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteyear] = ACTIONS(5942), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitedate] = ACTIONS(5942), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteurl] = ACTIONS(5942), - [anon_sym_BSLASHfullcite] = ACTIONS(5942), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5942), - [anon_sym_BSLASHcitealt] = ACTIONS(5942), - [anon_sym_BSLASHcitealp] = ACTIONS(5942), - [anon_sym_BSLASHcitetext] = ACTIONS(5942), - [anon_sym_BSLASHparencite] = ACTIONS(5942), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHParencite] = ACTIONS(5942), - [anon_sym_BSLASHfootcite] = ACTIONS(5942), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5942), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5942), - [anon_sym_BSLASHtextcite] = ACTIONS(5942), - [anon_sym_BSLASHTextcite] = ACTIONS(5942), - [anon_sym_BSLASHsmartcite] = ACTIONS(5942), - [anon_sym_BSLASHSmartcite] = ACTIONS(5942), - [anon_sym_BSLASHsupercite] = ACTIONS(5942), - [anon_sym_BSLASHautocite] = ACTIONS(5942), - [anon_sym_BSLASHAutocite] = ACTIONS(5942), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHvolcite] = ACTIONS(5942), - [anon_sym_BSLASHVolcite] = ACTIONS(5942), - [anon_sym_BSLASHpvolcite] = ACTIONS(5942), - [anon_sym_BSLASHPvolcite] = ACTIONS(5942), - [anon_sym_BSLASHfvolcite] = ACTIONS(5942), - [anon_sym_BSLASHftvolcite] = ACTIONS(5942), - [anon_sym_BSLASHsvolcite] = ACTIONS(5942), - [anon_sym_BSLASHSvolcite] = ACTIONS(5942), - [anon_sym_BSLASHtvolcite] = ACTIONS(5942), - [anon_sym_BSLASHTvolcite] = ACTIONS(5942), - [anon_sym_BSLASHavolcite] = ACTIONS(5942), - [anon_sym_BSLASHAvolcite] = ACTIONS(5942), - [anon_sym_BSLASHnotecite] = ACTIONS(5942), - [anon_sym_BSLASHNotecite] = ACTIONS(5942), - [anon_sym_BSLASHpnotecite] = ACTIONS(5942), - [anon_sym_BSLASHPnotecite] = ACTIONS(5942), - [anon_sym_BSLASHfnotecite] = ACTIONS(5942), - [anon_sym_BSLASHlabel] = ACTIONS(5942), - [anon_sym_BSLASHref] = ACTIONS(5942), - [anon_sym_BSLASHeqref] = ACTIONS(5942), - [anon_sym_BSLASHvref] = ACTIONS(5942), - [anon_sym_BSLASHVref] = ACTIONS(5942), - [anon_sym_BSLASHautoref] = ACTIONS(5942), - [anon_sym_BSLASHpageref] = ACTIONS(5942), - [anon_sym_BSLASHcref] = ACTIONS(5942), - [anon_sym_BSLASHCref] = ACTIONS(5942), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5944), - [anon_sym_BSLASHnamecref] = ACTIONS(5942), - [anon_sym_BSLASHnameCref] = ACTIONS(5942), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5942), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5942), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5942), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5942), - [anon_sym_BSLASHlabelcref] = ACTIONS(5942), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5942), - [anon_sym_BSLASHcrefrange] = ACTIONS(5942), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCrefrange] = ACTIONS(5942), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5944), - [anon_sym_BSLASHnewlabel] = ACTIONS(5942), - [anon_sym_BSLASHnewcommand] = ACTIONS(5942), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5942), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5942), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5944), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHdef] = ACTIONS(5942), - [anon_sym_BSLASHlet] = ACTIONS(5942), - [anon_sym_BSLASHleft] = ACTIONS(5942), - [anon_sym_BSLASHbig] = ACTIONS(5942), - [anon_sym_BSLASHBig] = ACTIONS(5942), - [anon_sym_BSLASHbigg] = ACTIONS(5942), - [anon_sym_BSLASHBigg] = ACTIONS(5942), - [anon_sym_BSLASHbigl] = ACTIONS(5942), - [anon_sym_BSLASHBigl] = ACTIONS(5942), - [anon_sym_BSLASHbiggl] = ACTIONS(5942), - [anon_sym_BSLASHBiggl] = ACTIONS(5942), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5942), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5942), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5942), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5942), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5942), - [anon_sym_BSLASHgls] = ACTIONS(5942), - [anon_sym_BSLASHGls] = ACTIONS(5942), - [anon_sym_BSLASHGLS] = ACTIONS(5942), - [anon_sym_BSLASHglspl] = ACTIONS(5942), - [anon_sym_BSLASHGlspl] = ACTIONS(5942), - [anon_sym_BSLASHGLSpl] = ACTIONS(5942), - [anon_sym_BSLASHglsdisp] = ACTIONS(5942), - [anon_sym_BSLASHglslink] = ACTIONS(5942), - [anon_sym_BSLASHglstext] = ACTIONS(5942), - [anon_sym_BSLASHGlstext] = ACTIONS(5942), - [anon_sym_BSLASHGLStext] = ACTIONS(5942), - [anon_sym_BSLASHglsfirst] = ACTIONS(5942), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5942), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5942), - [anon_sym_BSLASHglsplural] = ACTIONS(5942), - [anon_sym_BSLASHGlsplural] = ACTIONS(5942), - [anon_sym_BSLASHGLSplural] = ACTIONS(5942), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHglsname] = ACTIONS(5942), - [anon_sym_BSLASHGlsname] = ACTIONS(5942), - [anon_sym_BSLASHGLSname] = ACTIONS(5942), - [anon_sym_BSLASHglssymbol] = ACTIONS(5942), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5942), - [anon_sym_BSLASHglsdesc] = ACTIONS(5942), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5942), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5942), - [anon_sym_BSLASHglsuseri] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5942), - [anon_sym_BSLASHglsuserii] = ACTIONS(5942), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5942), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5942), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5942), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5942), - [anon_sym_BSLASHglsuserv] = ACTIONS(5942), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5942), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5942), - [anon_sym_BSLASHglsuservi] = ACTIONS(5942), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5942), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5942), - [anon_sym_BSLASHnewacronym] = ACTIONS(5942), - [anon_sym_BSLASHacrshort] = ACTIONS(5942), - [anon_sym_BSLASHAcrshort] = ACTIONS(5942), - [anon_sym_BSLASHACRshort] = ACTIONS(5942), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5942), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5942), - [anon_sym_BSLASHacrlong] = ACTIONS(5942), - [anon_sym_BSLASHAcrlong] = ACTIONS(5942), - [anon_sym_BSLASHACRlong] = ACTIONS(5942), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5942), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5942), - [anon_sym_BSLASHacrfull] = ACTIONS(5942), - [anon_sym_BSLASHAcrfull] = ACTIONS(5942), - [anon_sym_BSLASHACRfull] = ACTIONS(5942), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5942), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5942), - [anon_sym_BSLASHacs] = ACTIONS(5942), - [anon_sym_BSLASHAcs] = ACTIONS(5942), - [anon_sym_BSLASHacsp] = ACTIONS(5942), - [anon_sym_BSLASHAcsp] = ACTIONS(5942), - [anon_sym_BSLASHacl] = ACTIONS(5942), - [anon_sym_BSLASHAcl] = ACTIONS(5942), - [anon_sym_BSLASHaclp] = ACTIONS(5942), - [anon_sym_BSLASHAclp] = ACTIONS(5942), - [anon_sym_BSLASHacf] = ACTIONS(5942), - [anon_sym_BSLASHAcf] = ACTIONS(5942), - [anon_sym_BSLASHacfp] = ACTIONS(5942), - [anon_sym_BSLASHAcfp] = ACTIONS(5942), - [anon_sym_BSLASHac] = ACTIONS(5942), - [anon_sym_BSLASHAc] = ACTIONS(5942), - [anon_sym_BSLASHacp] = ACTIONS(5942), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5942), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5942), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5942), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5942), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5942), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5942), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5942), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5944), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5942), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5944), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5942), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5942), - [anon_sym_BSLASHcolor] = ACTIONS(5942), - [anon_sym_BSLASHcolorbox] = ACTIONS(5942), - [anon_sym_BSLASHtextcolor] = ACTIONS(5942), - [anon_sym_BSLASHpagecolor] = ACTIONS(5942), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5942), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - [anon_sym_BSLASHtext] = ACTIONS(5942), - [anon_sym_BSLASHintertext] = ACTIONS(5942), - [anon_sym_shortintertext] = ACTIONS(5942), - }, - [646] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(5932), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5932), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_RBRACK] = ACTIONS(5934), - [anon_sym_COMMA] = ACTIONS(5934), - [anon_sym_EQ] = ACTIONS(5934), - [anon_sym_LPAREN] = ACTIONS(5934), - [anon_sym_RPAREN] = ACTIONS(5934), - [anon_sym_BSLASHpart] = ACTIONS(5932), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddpart] = ACTIONS(5932), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5934), - [anon_sym_BSLASHchapter] = ACTIONS(5932), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddchap] = ACTIONS(5932), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsection] = ACTIONS(5932), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddsec] = ACTIONS(5932), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubsection] = ACTIONS(5932), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5932), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHparagraph] = ACTIONS(5932), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6539), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6542), - [anon_sym_BSLASHitem] = ACTIONS(5932), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5934), - [anon_sym_LBRACE] = ACTIONS(5934), - [sym_word] = ACTIONS(5932), - [sym_placeholder] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_STAR] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5934), - [anon_sym_LT] = ACTIONS(5932), - [anon_sym_GT] = ACTIONS(5932), - [anon_sym_BANG] = ACTIONS(5932), - [anon_sym_PIPE] = ACTIONS(5932), - [anon_sym_COLON] = ACTIONS(5932), - [anon_sym_SQUOTE] = ACTIONS(5932), - [anon_sym__] = ACTIONS(5934), - [anon_sym_CARET] = ACTIONS(5934), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5934), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5934), - [anon_sym_DOLLAR] = ACTIONS(5932), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5934), - [anon_sym_BSLASHbegin] = ACTIONS(5932), - [anon_sym_BSLASHend] = ACTIONS(5932), - [anon_sym_BSLASHtitle] = ACTIONS(5932), - [anon_sym_BSLASHauthor] = ACTIONS(5932), - [anon_sym_BSLASHusepackage] = ACTIONS(5932), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5932), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5932), - [anon_sym_BSLASHinclude] = ACTIONS(5932), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5932), - [anon_sym_BSLASHinput] = ACTIONS(5932), - [anon_sym_BSLASHsubfile] = ACTIONS(5932), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5932), - [anon_sym_BSLASHbibliography] = ACTIONS(5932), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5932), - [anon_sym_BSLASHincludesvg] = ACTIONS(5932), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5932), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5932), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5932), - [anon_sym_BSLASHimport] = ACTIONS(5932), - [anon_sym_BSLASHsubimport] = ACTIONS(5932), - [anon_sym_BSLASHinputfrom] = ACTIONS(5932), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5932), - [anon_sym_BSLASHincludefrom] = ACTIONS(5932), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5932), - [anon_sym_BSLASHcaption] = ACTIONS(5932), - [anon_sym_BSLASHcite] = ACTIONS(5932), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCite] = ACTIONS(5932), - [anon_sym_BSLASHnocite] = ACTIONS(5932), - [anon_sym_BSLASHcitet] = ACTIONS(5932), - [anon_sym_BSLASHcitep] = ACTIONS(5932), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteauthor] = ACTIONS(5932), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5932), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitetitle] = ACTIONS(5932), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteyear] = ACTIONS(5932), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitedate] = ACTIONS(5932), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteurl] = ACTIONS(5932), - [anon_sym_BSLASHfullcite] = ACTIONS(5932), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5932), - [anon_sym_BSLASHcitealt] = ACTIONS(5932), - [anon_sym_BSLASHcitealp] = ACTIONS(5932), - [anon_sym_BSLASHcitetext] = ACTIONS(5932), - [anon_sym_BSLASHparencite] = ACTIONS(5932), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHParencite] = ACTIONS(5932), - [anon_sym_BSLASHfootcite] = ACTIONS(5932), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5932), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5932), - [anon_sym_BSLASHtextcite] = ACTIONS(5932), - [anon_sym_BSLASHTextcite] = ACTIONS(5932), - [anon_sym_BSLASHsmartcite] = ACTIONS(5932), - [anon_sym_BSLASHSmartcite] = ACTIONS(5932), - [anon_sym_BSLASHsupercite] = ACTIONS(5932), - [anon_sym_BSLASHautocite] = ACTIONS(5932), - [anon_sym_BSLASHAutocite] = ACTIONS(5932), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHvolcite] = ACTIONS(5932), - [anon_sym_BSLASHVolcite] = ACTIONS(5932), - [anon_sym_BSLASHpvolcite] = ACTIONS(5932), - [anon_sym_BSLASHPvolcite] = ACTIONS(5932), - [anon_sym_BSLASHfvolcite] = ACTIONS(5932), - [anon_sym_BSLASHftvolcite] = ACTIONS(5932), - [anon_sym_BSLASHsvolcite] = ACTIONS(5932), - [anon_sym_BSLASHSvolcite] = ACTIONS(5932), - [anon_sym_BSLASHtvolcite] = ACTIONS(5932), - [anon_sym_BSLASHTvolcite] = ACTIONS(5932), - [anon_sym_BSLASHavolcite] = ACTIONS(5932), - [anon_sym_BSLASHAvolcite] = ACTIONS(5932), - [anon_sym_BSLASHnotecite] = ACTIONS(5932), - [anon_sym_BSLASHNotecite] = ACTIONS(5932), - [anon_sym_BSLASHpnotecite] = ACTIONS(5932), - [anon_sym_BSLASHPnotecite] = ACTIONS(5932), - [anon_sym_BSLASHfnotecite] = ACTIONS(5932), - [anon_sym_BSLASHlabel] = ACTIONS(5932), - [anon_sym_BSLASHref] = ACTIONS(5932), - [anon_sym_BSLASHeqref] = ACTIONS(5932), - [anon_sym_BSLASHvref] = ACTIONS(5932), - [anon_sym_BSLASHVref] = ACTIONS(5932), - [anon_sym_BSLASHautoref] = ACTIONS(5932), - [anon_sym_BSLASHpageref] = ACTIONS(5932), - [anon_sym_BSLASHcref] = ACTIONS(5932), - [anon_sym_BSLASHCref] = ACTIONS(5932), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5934), - [anon_sym_BSLASHnamecref] = ACTIONS(5932), - [anon_sym_BSLASHnameCref] = ACTIONS(5932), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5932), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5932), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5932), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5932), - [anon_sym_BSLASHlabelcref] = ACTIONS(5932), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5932), - [anon_sym_BSLASHcrefrange] = ACTIONS(5932), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCrefrange] = ACTIONS(5932), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5934), - [anon_sym_BSLASHnewlabel] = ACTIONS(5932), - [anon_sym_BSLASHnewcommand] = ACTIONS(5932), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5932), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5932), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5934), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHdef] = ACTIONS(5932), - [anon_sym_BSLASHlet] = ACTIONS(5932), - [anon_sym_BSLASHleft] = ACTIONS(5932), - [anon_sym_BSLASHbig] = ACTIONS(5932), - [anon_sym_BSLASHBig] = ACTIONS(5932), - [anon_sym_BSLASHbigg] = ACTIONS(5932), - [anon_sym_BSLASHBigg] = ACTIONS(5932), - [anon_sym_BSLASHbigl] = ACTIONS(5932), - [anon_sym_BSLASHBigl] = ACTIONS(5932), - [anon_sym_BSLASHbiggl] = ACTIONS(5932), - [anon_sym_BSLASHBiggl] = ACTIONS(5932), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5932), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5932), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5932), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5932), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5932), - [anon_sym_BSLASHgls] = ACTIONS(5932), - [anon_sym_BSLASHGls] = ACTIONS(5932), - [anon_sym_BSLASHGLS] = ACTIONS(5932), - [anon_sym_BSLASHglspl] = ACTIONS(5932), - [anon_sym_BSLASHGlspl] = ACTIONS(5932), - [anon_sym_BSLASHGLSpl] = ACTIONS(5932), - [anon_sym_BSLASHglsdisp] = ACTIONS(5932), - [anon_sym_BSLASHglslink] = ACTIONS(5932), - [anon_sym_BSLASHglstext] = ACTIONS(5932), - [anon_sym_BSLASHGlstext] = ACTIONS(5932), - [anon_sym_BSLASHGLStext] = ACTIONS(5932), - [anon_sym_BSLASHglsfirst] = ACTIONS(5932), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5932), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5932), - [anon_sym_BSLASHglsplural] = ACTIONS(5932), - [anon_sym_BSLASHGlsplural] = ACTIONS(5932), - [anon_sym_BSLASHGLSplural] = ACTIONS(5932), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHglsname] = ACTIONS(5932), - [anon_sym_BSLASHGlsname] = ACTIONS(5932), - [anon_sym_BSLASHGLSname] = ACTIONS(5932), - [anon_sym_BSLASHglssymbol] = ACTIONS(5932), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5932), - [anon_sym_BSLASHglsdesc] = ACTIONS(5932), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5932), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5932), - [anon_sym_BSLASHglsuseri] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5932), - [anon_sym_BSLASHglsuserii] = ACTIONS(5932), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5932), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5932), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5932), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5932), - [anon_sym_BSLASHglsuserv] = ACTIONS(5932), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5932), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5932), - [anon_sym_BSLASHglsuservi] = ACTIONS(5932), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5932), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5932), - [anon_sym_BSLASHnewacronym] = ACTIONS(5932), - [anon_sym_BSLASHacrshort] = ACTIONS(5932), - [anon_sym_BSLASHAcrshort] = ACTIONS(5932), - [anon_sym_BSLASHACRshort] = ACTIONS(5932), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5932), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5932), - [anon_sym_BSLASHacrlong] = ACTIONS(5932), - [anon_sym_BSLASHAcrlong] = ACTIONS(5932), - [anon_sym_BSLASHACRlong] = ACTIONS(5932), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5932), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5932), - [anon_sym_BSLASHacrfull] = ACTIONS(5932), - [anon_sym_BSLASHAcrfull] = ACTIONS(5932), - [anon_sym_BSLASHACRfull] = ACTIONS(5932), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5932), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5932), - [anon_sym_BSLASHacs] = ACTIONS(5932), - [anon_sym_BSLASHAcs] = ACTIONS(5932), - [anon_sym_BSLASHacsp] = ACTIONS(5932), - [anon_sym_BSLASHAcsp] = ACTIONS(5932), - [anon_sym_BSLASHacl] = ACTIONS(5932), - [anon_sym_BSLASHAcl] = ACTIONS(5932), - [anon_sym_BSLASHaclp] = ACTIONS(5932), - [anon_sym_BSLASHAclp] = ACTIONS(5932), - [anon_sym_BSLASHacf] = ACTIONS(5932), - [anon_sym_BSLASHAcf] = ACTIONS(5932), - [anon_sym_BSLASHacfp] = ACTIONS(5932), - [anon_sym_BSLASHAcfp] = ACTIONS(5932), - [anon_sym_BSLASHac] = ACTIONS(5932), - [anon_sym_BSLASHAc] = ACTIONS(5932), - [anon_sym_BSLASHacp] = ACTIONS(5932), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5932), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5932), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5932), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5932), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5932), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5932), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5932), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5934), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5932), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5932), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5932), - [anon_sym_BSLASHcolor] = ACTIONS(5932), - [anon_sym_BSLASHcolorbox] = ACTIONS(5932), - [anon_sym_BSLASHtextcolor] = ACTIONS(5932), - [anon_sym_BSLASHpagecolor] = ACTIONS(5932), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5932), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5932), - [anon_sym_BSLASHtext] = ACTIONS(5932), - [anon_sym_BSLASHintertext] = ACTIONS(5932), - [anon_sym_shortintertext] = ACTIONS(5932), - }, - [647] = { - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(647), - [aux_sym__section_repeat6] = STATE(647), - [sym_command_name] = ACTIONS(5922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5922), - [anon_sym_LBRACK] = ACTIONS(5924), - [anon_sym_RBRACK] = ACTIONS(5924), - [anon_sym_COMMA] = ACTIONS(5924), - [anon_sym_EQ] = ACTIONS(5924), - [anon_sym_LPAREN] = ACTIONS(5924), - [anon_sym_RPAREN] = ACTIONS(5924), - [anon_sym_BSLASHpart] = ACTIONS(5922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddpart] = ACTIONS(5922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5924), - [anon_sym_BSLASHchapter] = ACTIONS(5922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddchap] = ACTIONS(5922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsection] = ACTIONS(5922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddsec] = ACTIONS(5922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsubsection] = ACTIONS(5922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHparagraph] = ACTIONS(6545), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6548), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5922), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5924), - [anon_sym_BSLASHitem] = ACTIONS(5922), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5924), - [anon_sym_LBRACE] = ACTIONS(5924), - [sym_word] = ACTIONS(5922), - [sym_placeholder] = ACTIONS(5924), - [anon_sym_PLUS] = ACTIONS(5924), - [anon_sym_DASH] = ACTIONS(5924), - [anon_sym_STAR] = ACTIONS(5924), - [anon_sym_SLASH] = ACTIONS(5924), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_BANG] = ACTIONS(5922), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_COLON] = ACTIONS(5922), - [anon_sym_SQUOTE] = ACTIONS(5922), - [anon_sym__] = ACTIONS(5924), - [anon_sym_CARET] = ACTIONS(5924), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5924), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5924), - [anon_sym_DOLLAR] = ACTIONS(5922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5924), - [anon_sym_BSLASHbegin] = ACTIONS(5922), - [anon_sym_BSLASHend] = ACTIONS(5922), - [anon_sym_BSLASHtitle] = ACTIONS(5922), - [anon_sym_BSLASHauthor] = ACTIONS(5922), - [anon_sym_BSLASHusepackage] = ACTIONS(5922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5922), - [anon_sym_BSLASHinclude] = ACTIONS(5922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5922), - [anon_sym_BSLASHinput] = ACTIONS(5922), - [anon_sym_BSLASHsubfile] = ACTIONS(5922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5922), - [anon_sym_BSLASHbibliography] = ACTIONS(5922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5922), - [anon_sym_BSLASHincludesvg] = ACTIONS(5922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5922), - [anon_sym_BSLASHimport] = ACTIONS(5922), - [anon_sym_BSLASHsubimport] = ACTIONS(5922), - [anon_sym_BSLASHinputfrom] = ACTIONS(5922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5922), - [anon_sym_BSLASHincludefrom] = ACTIONS(5922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5922), - [anon_sym_BSLASHcaption] = ACTIONS(5922), - [anon_sym_BSLASHcite] = ACTIONS(5922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCite] = ACTIONS(5922), - [anon_sym_BSLASHnocite] = ACTIONS(5922), - [anon_sym_BSLASHcitet] = ACTIONS(5922), - [anon_sym_BSLASHcitep] = ACTIONS(5922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteauthor] = ACTIONS(5922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitetitle] = ACTIONS(5922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteyear] = ACTIONS(5922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitedate] = ACTIONS(5922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteurl] = ACTIONS(5922), - [anon_sym_BSLASHfullcite] = ACTIONS(5922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5922), - [anon_sym_BSLASHcitealt] = ACTIONS(5922), - [anon_sym_BSLASHcitealp] = ACTIONS(5922), - [anon_sym_BSLASHcitetext] = ACTIONS(5922), - [anon_sym_BSLASHparencite] = ACTIONS(5922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHParencite] = ACTIONS(5922), - [anon_sym_BSLASHfootcite] = ACTIONS(5922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5922), - [anon_sym_BSLASHtextcite] = ACTIONS(5922), - [anon_sym_BSLASHTextcite] = ACTIONS(5922), - [anon_sym_BSLASHsmartcite] = ACTIONS(5922), - [anon_sym_BSLASHSmartcite] = ACTIONS(5922), - [anon_sym_BSLASHsupercite] = ACTIONS(5922), - [anon_sym_BSLASHautocite] = ACTIONS(5922), - [anon_sym_BSLASHAutocite] = ACTIONS(5922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHvolcite] = ACTIONS(5922), - [anon_sym_BSLASHVolcite] = ACTIONS(5922), - [anon_sym_BSLASHpvolcite] = ACTIONS(5922), - [anon_sym_BSLASHPvolcite] = ACTIONS(5922), - [anon_sym_BSLASHfvolcite] = ACTIONS(5922), - [anon_sym_BSLASHftvolcite] = ACTIONS(5922), - [anon_sym_BSLASHsvolcite] = ACTIONS(5922), - [anon_sym_BSLASHSvolcite] = ACTIONS(5922), - [anon_sym_BSLASHtvolcite] = ACTIONS(5922), - [anon_sym_BSLASHTvolcite] = ACTIONS(5922), - [anon_sym_BSLASHavolcite] = ACTIONS(5922), - [anon_sym_BSLASHAvolcite] = ACTIONS(5922), - [anon_sym_BSLASHnotecite] = ACTIONS(5922), - [anon_sym_BSLASHNotecite] = ACTIONS(5922), - [anon_sym_BSLASHpnotecite] = ACTIONS(5922), - [anon_sym_BSLASHPnotecite] = ACTIONS(5922), - [anon_sym_BSLASHfnotecite] = ACTIONS(5922), - [anon_sym_BSLASHlabel] = ACTIONS(5922), - [anon_sym_BSLASHref] = ACTIONS(5922), - [anon_sym_BSLASHeqref] = ACTIONS(5922), - [anon_sym_BSLASHvref] = ACTIONS(5922), - [anon_sym_BSLASHVref] = ACTIONS(5922), - [anon_sym_BSLASHautoref] = ACTIONS(5922), - [anon_sym_BSLASHpageref] = ACTIONS(5922), - [anon_sym_BSLASHcref] = ACTIONS(5922), - [anon_sym_BSLASHCref] = ACTIONS(5922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5924), - [anon_sym_BSLASHnamecref] = ACTIONS(5922), - [anon_sym_BSLASHnameCref] = ACTIONS(5922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5922), - [anon_sym_BSLASHlabelcref] = ACTIONS(5922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5922), - [anon_sym_BSLASHcrefrange] = ACTIONS(5922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCrefrange] = ACTIONS(5922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5924), - [anon_sym_BSLASHnewlabel] = ACTIONS(5922), - [anon_sym_BSLASHnewcommand] = ACTIONS(5922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5924), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHdef] = ACTIONS(5922), - [anon_sym_BSLASHlet] = ACTIONS(5922), - [anon_sym_BSLASHleft] = ACTIONS(5922), - [anon_sym_BSLASHbig] = ACTIONS(5922), - [anon_sym_BSLASHBig] = ACTIONS(5922), - [anon_sym_BSLASHbigg] = ACTIONS(5922), - [anon_sym_BSLASHBigg] = ACTIONS(5922), - [anon_sym_BSLASHbigl] = ACTIONS(5922), - [anon_sym_BSLASHBigl] = ACTIONS(5922), - [anon_sym_BSLASHbiggl] = ACTIONS(5922), - [anon_sym_BSLASHBiggl] = ACTIONS(5922), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5922), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5922), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5922), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5922), - [anon_sym_BSLASHgls] = ACTIONS(5922), - [anon_sym_BSLASHGls] = ACTIONS(5922), - [anon_sym_BSLASHGLS] = ACTIONS(5922), - [anon_sym_BSLASHglspl] = ACTIONS(5922), - [anon_sym_BSLASHGlspl] = ACTIONS(5922), - [anon_sym_BSLASHGLSpl] = ACTIONS(5922), - [anon_sym_BSLASHglsdisp] = ACTIONS(5922), - [anon_sym_BSLASHglslink] = ACTIONS(5922), - [anon_sym_BSLASHglstext] = ACTIONS(5922), - [anon_sym_BSLASHGlstext] = ACTIONS(5922), - [anon_sym_BSLASHGLStext] = ACTIONS(5922), - [anon_sym_BSLASHglsfirst] = ACTIONS(5922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5922), - [anon_sym_BSLASHglsplural] = ACTIONS(5922), - [anon_sym_BSLASHGlsplural] = ACTIONS(5922), - [anon_sym_BSLASHGLSplural] = ACTIONS(5922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHglsname] = ACTIONS(5922), - [anon_sym_BSLASHGlsname] = ACTIONS(5922), - [anon_sym_BSLASHGLSname] = ACTIONS(5922), - [anon_sym_BSLASHglssymbol] = ACTIONS(5922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5922), - [anon_sym_BSLASHglsdesc] = ACTIONS(5922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5922), - [anon_sym_BSLASHglsuseri] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5922), - [anon_sym_BSLASHglsuserii] = ACTIONS(5922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5922), - [anon_sym_BSLASHglsuserv] = ACTIONS(5922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5922), - [anon_sym_BSLASHglsuservi] = ACTIONS(5922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5922), - [anon_sym_BSLASHnewacronym] = ACTIONS(5922), - [anon_sym_BSLASHacrshort] = ACTIONS(5922), - [anon_sym_BSLASHAcrshort] = ACTIONS(5922), - [anon_sym_BSLASHACRshort] = ACTIONS(5922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5922), - [anon_sym_BSLASHacrlong] = ACTIONS(5922), - [anon_sym_BSLASHAcrlong] = ACTIONS(5922), - [anon_sym_BSLASHACRlong] = ACTIONS(5922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5922), - [anon_sym_BSLASHacrfull] = ACTIONS(5922), - [anon_sym_BSLASHAcrfull] = ACTIONS(5922), - [anon_sym_BSLASHACRfull] = ACTIONS(5922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5922), - [anon_sym_BSLASHacs] = ACTIONS(5922), - [anon_sym_BSLASHAcs] = ACTIONS(5922), - [anon_sym_BSLASHacsp] = ACTIONS(5922), - [anon_sym_BSLASHAcsp] = ACTIONS(5922), - [anon_sym_BSLASHacl] = ACTIONS(5922), - [anon_sym_BSLASHAcl] = ACTIONS(5922), - [anon_sym_BSLASHaclp] = ACTIONS(5922), - [anon_sym_BSLASHAclp] = ACTIONS(5922), - [anon_sym_BSLASHacf] = ACTIONS(5922), - [anon_sym_BSLASHAcf] = ACTIONS(5922), - [anon_sym_BSLASHacfp] = ACTIONS(5922), - [anon_sym_BSLASHAcfp] = ACTIONS(5922), - [anon_sym_BSLASHac] = ACTIONS(5922), - [anon_sym_BSLASHAc] = ACTIONS(5922), - [anon_sym_BSLASHacp] = ACTIONS(5922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5922), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5924), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5922), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5924), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5922), - [anon_sym_BSLASHcolor] = ACTIONS(5922), - [anon_sym_BSLASHcolorbox] = ACTIONS(5922), - [anon_sym_BSLASHtextcolor] = ACTIONS(5922), - [anon_sym_BSLASHpagecolor] = ACTIONS(5922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5922), - [anon_sym_BSLASHtext] = ACTIONS(5922), - [anon_sym_BSLASHintertext] = ACTIONS(5922), - [anon_sym_shortintertext] = ACTIONS(5922), - }, - [648] = { - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(648), - [aux_sym__section_repeat5] = STATE(648), - [sym_command_name] = ACTIONS(5912), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5914), - [anon_sym_RBRACK] = ACTIONS(5914), - [anon_sym_COMMA] = ACTIONS(5914), - [anon_sym_EQ] = ACTIONS(5914), - [anon_sym_LPAREN] = ACTIONS(5914), - [anon_sym_RPAREN] = ACTIONS(5914), - [anon_sym_BSLASHpart] = ACTIONS(5912), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddpart] = ACTIONS(5912), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5914), - [anon_sym_BSLASHchapter] = ACTIONS(5912), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddchap] = ACTIONS(5912), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsection] = ACTIONS(5912), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddsec] = ACTIONS(5912), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubsection] = ACTIONS(5912), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6551), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6554), - [anon_sym_BSLASHparagraph] = ACTIONS(5912), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5912), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5914), - [anon_sym_BSLASHitem] = ACTIONS(5912), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5914), - [anon_sym_LBRACE] = ACTIONS(5914), - [sym_word] = ACTIONS(5912), - [sym_placeholder] = ACTIONS(5914), - [anon_sym_PLUS] = ACTIONS(5914), - [anon_sym_DASH] = ACTIONS(5914), - [anon_sym_STAR] = ACTIONS(5914), - [anon_sym_SLASH] = ACTIONS(5914), - [anon_sym_LT] = ACTIONS(5912), - [anon_sym_GT] = ACTIONS(5912), - [anon_sym_BANG] = ACTIONS(5912), - [anon_sym_PIPE] = ACTIONS(5912), - [anon_sym_COLON] = ACTIONS(5912), - [anon_sym_SQUOTE] = ACTIONS(5912), - [anon_sym__] = ACTIONS(5914), - [anon_sym_CARET] = ACTIONS(5914), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5914), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5914), - [anon_sym_DOLLAR] = ACTIONS(5912), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5914), - [anon_sym_BSLASHbegin] = ACTIONS(5912), - [anon_sym_BSLASHend] = ACTIONS(5912), - [anon_sym_BSLASHtitle] = ACTIONS(5912), - [anon_sym_BSLASHauthor] = ACTIONS(5912), - [anon_sym_BSLASHusepackage] = ACTIONS(5912), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5912), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5912), - [anon_sym_BSLASHinclude] = ACTIONS(5912), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5912), - [anon_sym_BSLASHinput] = ACTIONS(5912), - [anon_sym_BSLASHsubfile] = ACTIONS(5912), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5912), - [anon_sym_BSLASHbibliography] = ACTIONS(5912), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5912), - [anon_sym_BSLASHincludesvg] = ACTIONS(5912), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5912), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5912), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5912), - [anon_sym_BSLASHimport] = ACTIONS(5912), - [anon_sym_BSLASHsubimport] = ACTIONS(5912), - [anon_sym_BSLASHinputfrom] = ACTIONS(5912), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5912), - [anon_sym_BSLASHincludefrom] = ACTIONS(5912), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5912), - [anon_sym_BSLASHcaption] = ACTIONS(5912), - [anon_sym_BSLASHcite] = ACTIONS(5912), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCite] = ACTIONS(5912), - [anon_sym_BSLASHnocite] = ACTIONS(5912), - [anon_sym_BSLASHcitet] = ACTIONS(5912), - [anon_sym_BSLASHcitep] = ACTIONS(5912), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteauthor] = ACTIONS(5912), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5912), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitetitle] = ACTIONS(5912), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteyear] = ACTIONS(5912), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitedate] = ACTIONS(5912), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteurl] = ACTIONS(5912), - [anon_sym_BSLASHfullcite] = ACTIONS(5912), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5912), - [anon_sym_BSLASHcitealt] = ACTIONS(5912), - [anon_sym_BSLASHcitealp] = ACTIONS(5912), - [anon_sym_BSLASHcitetext] = ACTIONS(5912), - [anon_sym_BSLASHparencite] = ACTIONS(5912), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHParencite] = ACTIONS(5912), - [anon_sym_BSLASHfootcite] = ACTIONS(5912), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5912), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5912), - [anon_sym_BSLASHtextcite] = ACTIONS(5912), - [anon_sym_BSLASHTextcite] = ACTIONS(5912), - [anon_sym_BSLASHsmartcite] = ACTIONS(5912), - [anon_sym_BSLASHSmartcite] = ACTIONS(5912), - [anon_sym_BSLASHsupercite] = ACTIONS(5912), - [anon_sym_BSLASHautocite] = ACTIONS(5912), - [anon_sym_BSLASHAutocite] = ACTIONS(5912), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHvolcite] = ACTIONS(5912), - [anon_sym_BSLASHVolcite] = ACTIONS(5912), - [anon_sym_BSLASHpvolcite] = ACTIONS(5912), - [anon_sym_BSLASHPvolcite] = ACTIONS(5912), - [anon_sym_BSLASHfvolcite] = ACTIONS(5912), - [anon_sym_BSLASHftvolcite] = ACTIONS(5912), - [anon_sym_BSLASHsvolcite] = ACTIONS(5912), - [anon_sym_BSLASHSvolcite] = ACTIONS(5912), - [anon_sym_BSLASHtvolcite] = ACTIONS(5912), - [anon_sym_BSLASHTvolcite] = ACTIONS(5912), - [anon_sym_BSLASHavolcite] = ACTIONS(5912), - [anon_sym_BSLASHAvolcite] = ACTIONS(5912), - [anon_sym_BSLASHnotecite] = ACTIONS(5912), - [anon_sym_BSLASHNotecite] = ACTIONS(5912), - [anon_sym_BSLASHpnotecite] = ACTIONS(5912), - [anon_sym_BSLASHPnotecite] = ACTIONS(5912), - [anon_sym_BSLASHfnotecite] = ACTIONS(5912), - [anon_sym_BSLASHlabel] = ACTIONS(5912), - [anon_sym_BSLASHref] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5912), - [anon_sym_BSLASHvref] = ACTIONS(5912), - [anon_sym_BSLASHVref] = ACTIONS(5912), - [anon_sym_BSLASHautoref] = ACTIONS(5912), - [anon_sym_BSLASHpageref] = ACTIONS(5912), - [anon_sym_BSLASHcref] = ACTIONS(5912), - [anon_sym_BSLASHCref] = ACTIONS(5912), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5914), - [anon_sym_BSLASHnamecref] = ACTIONS(5912), - [anon_sym_BSLASHnameCref] = ACTIONS(5912), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5912), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5912), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5912), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5912), - [anon_sym_BSLASHlabelcref] = ACTIONS(5912), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5912), - [anon_sym_BSLASHcrefrange] = ACTIONS(5912), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCrefrange] = ACTIONS(5912), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5914), - [anon_sym_BSLASHnewlabel] = ACTIONS(5912), - [anon_sym_BSLASHnewcommand] = ACTIONS(5912), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5912), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5912), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5914), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHdef] = ACTIONS(5912), - [anon_sym_BSLASHlet] = ACTIONS(5912), - [anon_sym_BSLASHleft] = ACTIONS(5912), - [anon_sym_BSLASHbig] = ACTIONS(5912), - [anon_sym_BSLASHBig] = ACTIONS(5912), - [anon_sym_BSLASHbigg] = ACTIONS(5912), - [anon_sym_BSLASHBigg] = ACTIONS(5912), - [anon_sym_BSLASHbigl] = ACTIONS(5912), - [anon_sym_BSLASHBigl] = ACTIONS(5912), - [anon_sym_BSLASHbiggl] = ACTIONS(5912), - [anon_sym_BSLASHBiggl] = ACTIONS(5912), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5912), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5912), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5912), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5912), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5912), - [anon_sym_BSLASHgls] = ACTIONS(5912), - [anon_sym_BSLASHGls] = ACTIONS(5912), - [anon_sym_BSLASHGLS] = ACTIONS(5912), - [anon_sym_BSLASHglspl] = ACTIONS(5912), - [anon_sym_BSLASHGlspl] = ACTIONS(5912), - [anon_sym_BSLASHGLSpl] = ACTIONS(5912), - [anon_sym_BSLASHglsdisp] = ACTIONS(5912), - [anon_sym_BSLASHglslink] = ACTIONS(5912), - [anon_sym_BSLASHglstext] = ACTIONS(5912), - [anon_sym_BSLASHGlstext] = ACTIONS(5912), - [anon_sym_BSLASHGLStext] = ACTIONS(5912), - [anon_sym_BSLASHglsfirst] = ACTIONS(5912), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5912), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5912), - [anon_sym_BSLASHglsplural] = ACTIONS(5912), - [anon_sym_BSLASHGlsplural] = ACTIONS(5912), - [anon_sym_BSLASHGLSplural] = ACTIONS(5912), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHglsname] = ACTIONS(5912), - [anon_sym_BSLASHGlsname] = ACTIONS(5912), - [anon_sym_BSLASHGLSname] = ACTIONS(5912), - [anon_sym_BSLASHglssymbol] = ACTIONS(5912), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5912), - [anon_sym_BSLASHglsdesc] = ACTIONS(5912), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5912), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5912), - [anon_sym_BSLASHglsuseri] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5912), - [anon_sym_BSLASHglsuserii] = ACTIONS(5912), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5912), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5912), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5912), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5912), - [anon_sym_BSLASHglsuserv] = ACTIONS(5912), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5912), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5912), - [anon_sym_BSLASHglsuservi] = ACTIONS(5912), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5912), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5912), - [anon_sym_BSLASHnewacronym] = ACTIONS(5912), - [anon_sym_BSLASHacrshort] = ACTIONS(5912), - [anon_sym_BSLASHAcrshort] = ACTIONS(5912), - [anon_sym_BSLASHACRshort] = ACTIONS(5912), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5912), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5912), - [anon_sym_BSLASHacrlong] = ACTIONS(5912), - [anon_sym_BSLASHAcrlong] = ACTIONS(5912), - [anon_sym_BSLASHACRlong] = ACTIONS(5912), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5912), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5912), - [anon_sym_BSLASHacrfull] = ACTIONS(5912), - [anon_sym_BSLASHAcrfull] = ACTIONS(5912), - [anon_sym_BSLASHACRfull] = ACTIONS(5912), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5912), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5912), - [anon_sym_BSLASHacs] = ACTIONS(5912), - [anon_sym_BSLASHAcs] = ACTIONS(5912), - [anon_sym_BSLASHacsp] = ACTIONS(5912), - [anon_sym_BSLASHAcsp] = ACTIONS(5912), - [anon_sym_BSLASHacl] = ACTIONS(5912), - [anon_sym_BSLASHAcl] = ACTIONS(5912), - [anon_sym_BSLASHaclp] = ACTIONS(5912), - [anon_sym_BSLASHAclp] = ACTIONS(5912), - [anon_sym_BSLASHacf] = ACTIONS(5912), - [anon_sym_BSLASHAcf] = ACTIONS(5912), - [anon_sym_BSLASHacfp] = ACTIONS(5912), - [anon_sym_BSLASHAcfp] = ACTIONS(5912), - [anon_sym_BSLASHac] = ACTIONS(5912), - [anon_sym_BSLASHAc] = ACTIONS(5912), - [anon_sym_BSLASHacp] = ACTIONS(5912), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5912), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5912), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5912), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5912), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5912), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5912), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5912), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5914), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5912), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5914), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5912), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5912), - [anon_sym_BSLASHcolor] = ACTIONS(5912), - [anon_sym_BSLASHcolorbox] = ACTIONS(5912), - [anon_sym_BSLASHtextcolor] = ACTIONS(5912), - [anon_sym_BSLASHpagecolor] = ACTIONS(5912), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5912), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5912), - [anon_sym_BSLASHtext] = ACTIONS(5912), - [anon_sym_BSLASHintertext] = ACTIONS(5912), - [anon_sym_shortintertext] = ACTIONS(5912), - }, - [649] = { - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(649), - [aux_sym__section_repeat4] = STATE(649), - [sym_command_name] = ACTIONS(5902), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5902), - [anon_sym_LBRACK] = ACTIONS(5904), - [anon_sym_RBRACK] = ACTIONS(5904), - [anon_sym_COMMA] = ACTIONS(5904), - [anon_sym_EQ] = ACTIONS(5904), - [anon_sym_LPAREN] = ACTIONS(5904), - [anon_sym_RPAREN] = ACTIONS(5904), - [anon_sym_BSLASHpart] = ACTIONS(5902), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddpart] = ACTIONS(5902), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5904), - [anon_sym_BSLASHchapter] = ACTIONS(5902), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddchap] = ACTIONS(5902), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsection] = ACTIONS(5902), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddsec] = ACTIONS(5902), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsubsection] = ACTIONS(6557), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6560), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5902), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5904), - [anon_sym_BSLASHparagraph] = ACTIONS(5902), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5902), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5904), - [anon_sym_BSLASHitem] = ACTIONS(5902), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5904), - [anon_sym_LBRACE] = ACTIONS(5904), - [sym_word] = ACTIONS(5902), - [sym_placeholder] = ACTIONS(5904), - [anon_sym_PLUS] = ACTIONS(5904), - [anon_sym_DASH] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(5904), - [anon_sym_SLASH] = ACTIONS(5904), - [anon_sym_LT] = ACTIONS(5902), - [anon_sym_GT] = ACTIONS(5902), - [anon_sym_BANG] = ACTIONS(5902), - [anon_sym_PIPE] = ACTIONS(5902), - [anon_sym_COLON] = ACTIONS(5902), - [anon_sym_SQUOTE] = ACTIONS(5902), - [anon_sym__] = ACTIONS(5904), - [anon_sym_CARET] = ACTIONS(5904), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5904), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5904), - [anon_sym_DOLLAR] = ACTIONS(5902), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5904), - [anon_sym_BSLASHbegin] = ACTIONS(5902), - [anon_sym_BSLASHend] = ACTIONS(5902), - [anon_sym_BSLASHtitle] = ACTIONS(5902), - [anon_sym_BSLASHauthor] = ACTIONS(5902), - [anon_sym_BSLASHusepackage] = ACTIONS(5902), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5902), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5902), - [anon_sym_BSLASHinclude] = ACTIONS(5902), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5902), - [anon_sym_BSLASHinput] = ACTIONS(5902), - [anon_sym_BSLASHsubfile] = ACTIONS(5902), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5902), - [anon_sym_BSLASHbibliography] = ACTIONS(5902), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5902), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5902), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5902), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5902), - [anon_sym_BSLASHimport] = ACTIONS(5902), - [anon_sym_BSLASHsubimport] = ACTIONS(5902), - [anon_sym_BSLASHinputfrom] = ACTIONS(5902), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5902), - [anon_sym_BSLASHincludefrom] = ACTIONS(5902), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5902), - [anon_sym_BSLASHcaption] = ACTIONS(5902), - [anon_sym_BSLASHcite] = ACTIONS(5902), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCite] = ACTIONS(5902), - [anon_sym_BSLASHnocite] = ACTIONS(5902), - [anon_sym_BSLASHcitet] = ACTIONS(5902), - [anon_sym_BSLASHcitep] = ACTIONS(5902), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteauthor] = ACTIONS(5902), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5902), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitetitle] = ACTIONS(5902), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteyear] = ACTIONS(5902), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitedate] = ACTIONS(5902), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteurl] = ACTIONS(5902), - [anon_sym_BSLASHfullcite] = ACTIONS(5902), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5902), - [anon_sym_BSLASHcitealt] = ACTIONS(5902), - [anon_sym_BSLASHcitealp] = ACTIONS(5902), - [anon_sym_BSLASHcitetext] = ACTIONS(5902), - [anon_sym_BSLASHparencite] = ACTIONS(5902), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHParencite] = ACTIONS(5902), - [anon_sym_BSLASHfootcite] = ACTIONS(5902), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5902), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5902), - [anon_sym_BSLASHtextcite] = ACTIONS(5902), - [anon_sym_BSLASHTextcite] = ACTIONS(5902), - [anon_sym_BSLASHsmartcite] = ACTIONS(5902), - [anon_sym_BSLASHSmartcite] = ACTIONS(5902), - [anon_sym_BSLASHsupercite] = ACTIONS(5902), - [anon_sym_BSLASHautocite] = ACTIONS(5902), - [anon_sym_BSLASHAutocite] = ACTIONS(5902), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHvolcite] = ACTIONS(5902), - [anon_sym_BSLASHVolcite] = ACTIONS(5902), - [anon_sym_BSLASHpvolcite] = ACTIONS(5902), - [anon_sym_BSLASHPvolcite] = ACTIONS(5902), - [anon_sym_BSLASHfvolcite] = ACTIONS(5902), - [anon_sym_BSLASHftvolcite] = ACTIONS(5902), - [anon_sym_BSLASHsvolcite] = ACTIONS(5902), - [anon_sym_BSLASHSvolcite] = ACTIONS(5902), - [anon_sym_BSLASHtvolcite] = ACTIONS(5902), - [anon_sym_BSLASHTvolcite] = ACTIONS(5902), - [anon_sym_BSLASHavolcite] = ACTIONS(5902), - [anon_sym_BSLASHAvolcite] = ACTIONS(5902), - [anon_sym_BSLASHnotecite] = ACTIONS(5902), - [anon_sym_BSLASHNotecite] = ACTIONS(5902), - [anon_sym_BSLASHpnotecite] = ACTIONS(5902), - [anon_sym_BSLASHPnotecite] = ACTIONS(5902), - [anon_sym_BSLASHfnotecite] = ACTIONS(5902), - [anon_sym_BSLASHlabel] = ACTIONS(5902), - [anon_sym_BSLASHref] = ACTIONS(5902), - [anon_sym_BSLASHeqref] = ACTIONS(5902), - [anon_sym_BSLASHvref] = ACTIONS(5902), - [anon_sym_BSLASHVref] = ACTIONS(5902), - [anon_sym_BSLASHautoref] = ACTIONS(5902), - [anon_sym_BSLASHpageref] = ACTIONS(5902), - [anon_sym_BSLASHcref] = ACTIONS(5902), - [anon_sym_BSLASHCref] = ACTIONS(5902), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5904), - [anon_sym_BSLASHnamecref] = ACTIONS(5902), - [anon_sym_BSLASHnameCref] = ACTIONS(5902), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5902), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5902), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5902), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5902), - [anon_sym_BSLASHlabelcref] = ACTIONS(5902), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5902), - [anon_sym_BSLASHcrefrange] = ACTIONS(5902), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCrefrange] = ACTIONS(5902), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5904), - [anon_sym_BSLASHnewlabel] = ACTIONS(5902), - [anon_sym_BSLASHnewcommand] = ACTIONS(5902), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5902), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5902), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5904), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHdef] = ACTIONS(5902), - [anon_sym_BSLASHlet] = ACTIONS(5902), - [anon_sym_BSLASHleft] = ACTIONS(5902), - [anon_sym_BSLASHbig] = ACTIONS(5902), - [anon_sym_BSLASHBig] = ACTIONS(5902), - [anon_sym_BSLASHbigg] = ACTIONS(5902), - [anon_sym_BSLASHBigg] = ACTIONS(5902), - [anon_sym_BSLASHbigl] = ACTIONS(5902), - [anon_sym_BSLASHBigl] = ACTIONS(5902), - [anon_sym_BSLASHbiggl] = ACTIONS(5902), - [anon_sym_BSLASHBiggl] = ACTIONS(5902), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5902), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5902), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5902), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5902), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5902), - [anon_sym_BSLASHgls] = ACTIONS(5902), - [anon_sym_BSLASHGls] = ACTIONS(5902), - [anon_sym_BSLASHGLS] = ACTIONS(5902), - [anon_sym_BSLASHglspl] = ACTIONS(5902), - [anon_sym_BSLASHGlspl] = ACTIONS(5902), - [anon_sym_BSLASHGLSpl] = ACTIONS(5902), - [anon_sym_BSLASHglsdisp] = ACTIONS(5902), - [anon_sym_BSLASHglslink] = ACTIONS(5902), - [anon_sym_BSLASHglstext] = ACTIONS(5902), - [anon_sym_BSLASHGlstext] = ACTIONS(5902), - [anon_sym_BSLASHGLStext] = ACTIONS(5902), - [anon_sym_BSLASHglsfirst] = ACTIONS(5902), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5902), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5902), - [anon_sym_BSLASHglsplural] = ACTIONS(5902), - [anon_sym_BSLASHGlsplural] = ACTIONS(5902), - [anon_sym_BSLASHGLSplural] = ACTIONS(5902), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHglsname] = ACTIONS(5902), - [anon_sym_BSLASHGlsname] = ACTIONS(5902), - [anon_sym_BSLASHGLSname] = ACTIONS(5902), - [anon_sym_BSLASHglssymbol] = ACTIONS(5902), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5902), - [anon_sym_BSLASHglsdesc] = ACTIONS(5902), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5902), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5902), - [anon_sym_BSLASHglsuseri] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5902), - [anon_sym_BSLASHglsuserii] = ACTIONS(5902), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5902), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5902), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5902), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5902), - [anon_sym_BSLASHglsuserv] = ACTIONS(5902), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5902), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5902), - [anon_sym_BSLASHglsuservi] = ACTIONS(5902), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5902), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5902), - [anon_sym_BSLASHnewacronym] = ACTIONS(5902), - [anon_sym_BSLASHacrshort] = ACTIONS(5902), - [anon_sym_BSLASHAcrshort] = ACTIONS(5902), - [anon_sym_BSLASHACRshort] = ACTIONS(5902), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5902), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5902), - [anon_sym_BSLASHacrlong] = ACTIONS(5902), - [anon_sym_BSLASHAcrlong] = ACTIONS(5902), - [anon_sym_BSLASHACRlong] = ACTIONS(5902), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5902), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5902), - [anon_sym_BSLASHacrfull] = ACTIONS(5902), - [anon_sym_BSLASHAcrfull] = ACTIONS(5902), - [anon_sym_BSLASHACRfull] = ACTIONS(5902), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5902), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5902), - [anon_sym_BSLASHacs] = ACTIONS(5902), - [anon_sym_BSLASHAcs] = ACTIONS(5902), - [anon_sym_BSLASHacsp] = ACTIONS(5902), - [anon_sym_BSLASHAcsp] = ACTIONS(5902), - [anon_sym_BSLASHacl] = ACTIONS(5902), - [anon_sym_BSLASHAcl] = ACTIONS(5902), - [anon_sym_BSLASHaclp] = ACTIONS(5902), - [anon_sym_BSLASHAclp] = ACTIONS(5902), - [anon_sym_BSLASHacf] = ACTIONS(5902), - [anon_sym_BSLASHAcf] = ACTIONS(5902), - [anon_sym_BSLASHacfp] = ACTIONS(5902), - [anon_sym_BSLASHAcfp] = ACTIONS(5902), - [anon_sym_BSLASHac] = ACTIONS(5902), - [anon_sym_BSLASHAc] = ACTIONS(5902), - [anon_sym_BSLASHacp] = ACTIONS(5902), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5902), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5902), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5902), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5902), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5902), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5902), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5902), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5904), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5902), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5904), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5902), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5902), - [anon_sym_BSLASHcolor] = ACTIONS(5902), - [anon_sym_BSLASHcolorbox] = ACTIONS(5902), - [anon_sym_BSLASHtextcolor] = ACTIONS(5902), - [anon_sym_BSLASHpagecolor] = ACTIONS(5902), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5902), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5902), - [anon_sym_BSLASHtext] = ACTIONS(5902), - [anon_sym_BSLASHintertext] = ACTIONS(5902), - [anon_sym_shortintertext] = ACTIONS(5902), - }, - [650] = { - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(650), - [aux_sym__section_repeat3] = STATE(650), - [sym_command_name] = ACTIONS(5892), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5894), - [anon_sym_RBRACK] = ACTIONS(5894), - [anon_sym_COMMA] = ACTIONS(5894), - [anon_sym_EQ] = ACTIONS(5894), - [anon_sym_LPAREN] = ACTIONS(5894), - [anon_sym_RPAREN] = ACTIONS(5894), - [anon_sym_BSLASHpart] = ACTIONS(5892), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5894), - [anon_sym_BSLASHaddpart] = ACTIONS(5892), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5894), - [anon_sym_BSLASHchapter] = ACTIONS(5892), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5894), - [anon_sym_BSLASHaddchap] = ACTIONS(5892), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsection] = ACTIONS(6563), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6566), - [anon_sym_BSLASHaddsec] = ACTIONS(6563), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6566), - [anon_sym_BSLASHsubsection] = ACTIONS(5892), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5892), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5894), - [anon_sym_BSLASHparagraph] = ACTIONS(5892), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5892), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5894), - [anon_sym_BSLASHitem] = ACTIONS(5892), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5894), - [anon_sym_LBRACE] = ACTIONS(5894), - [sym_word] = ACTIONS(5892), - [sym_placeholder] = ACTIONS(5894), - [anon_sym_PLUS] = ACTIONS(5894), - [anon_sym_DASH] = ACTIONS(5894), - [anon_sym_STAR] = ACTIONS(5894), - [anon_sym_SLASH] = ACTIONS(5894), - [anon_sym_LT] = ACTIONS(5892), - [anon_sym_GT] = ACTIONS(5892), - [anon_sym_BANG] = ACTIONS(5892), - [anon_sym_PIPE] = ACTIONS(5892), - [anon_sym_COLON] = ACTIONS(5892), - [anon_sym_SQUOTE] = ACTIONS(5892), - [anon_sym__] = ACTIONS(5894), - [anon_sym_CARET] = ACTIONS(5894), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5894), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5894), - [anon_sym_DOLLAR] = ACTIONS(5892), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5894), - [anon_sym_BSLASHbegin] = ACTIONS(5892), - [anon_sym_BSLASHend] = ACTIONS(5892), - [anon_sym_BSLASHtitle] = ACTIONS(5892), - [anon_sym_BSLASHauthor] = ACTIONS(5892), - [anon_sym_BSLASHusepackage] = ACTIONS(5892), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5892), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5892), - [anon_sym_BSLASHinclude] = ACTIONS(5892), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5892), - [anon_sym_BSLASHinput] = ACTIONS(5892), - [anon_sym_BSLASHsubfile] = ACTIONS(5892), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5892), - [anon_sym_BSLASHbibliography] = ACTIONS(5892), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5892), - [anon_sym_BSLASHincludesvg] = ACTIONS(5892), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5892), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5892), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5892), - [anon_sym_BSLASHimport] = ACTIONS(5892), - [anon_sym_BSLASHsubimport] = ACTIONS(5892), - [anon_sym_BSLASHinputfrom] = ACTIONS(5892), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5892), - [anon_sym_BSLASHincludefrom] = ACTIONS(5892), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5892), - [anon_sym_BSLASHcaption] = ACTIONS(5892), - [anon_sym_BSLASHcite] = ACTIONS(5892), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCite] = ACTIONS(5892), - [anon_sym_BSLASHnocite] = ACTIONS(5892), - [anon_sym_BSLASHcitet] = ACTIONS(5892), - [anon_sym_BSLASHcitep] = ACTIONS(5892), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteauthor] = ACTIONS(5892), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5892), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitetitle] = ACTIONS(5892), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteyear] = ACTIONS(5892), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitedate] = ACTIONS(5892), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteurl] = ACTIONS(5892), - [anon_sym_BSLASHfullcite] = ACTIONS(5892), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5892), - [anon_sym_BSLASHcitealt] = ACTIONS(5892), - [anon_sym_BSLASHcitealp] = ACTIONS(5892), - [anon_sym_BSLASHcitetext] = ACTIONS(5892), - [anon_sym_BSLASHparencite] = ACTIONS(5892), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHParencite] = ACTIONS(5892), - [anon_sym_BSLASHfootcite] = ACTIONS(5892), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5892), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5892), - [anon_sym_BSLASHtextcite] = ACTIONS(5892), - [anon_sym_BSLASHTextcite] = ACTIONS(5892), - [anon_sym_BSLASHsmartcite] = ACTIONS(5892), - [anon_sym_BSLASHSmartcite] = ACTIONS(5892), - [anon_sym_BSLASHsupercite] = ACTIONS(5892), - [anon_sym_BSLASHautocite] = ACTIONS(5892), - [anon_sym_BSLASHAutocite] = ACTIONS(5892), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHvolcite] = ACTIONS(5892), - [anon_sym_BSLASHVolcite] = ACTIONS(5892), - [anon_sym_BSLASHpvolcite] = ACTIONS(5892), - [anon_sym_BSLASHPvolcite] = ACTIONS(5892), - [anon_sym_BSLASHfvolcite] = ACTIONS(5892), - [anon_sym_BSLASHftvolcite] = ACTIONS(5892), - [anon_sym_BSLASHsvolcite] = ACTIONS(5892), - [anon_sym_BSLASHSvolcite] = ACTIONS(5892), - [anon_sym_BSLASHtvolcite] = ACTIONS(5892), - [anon_sym_BSLASHTvolcite] = ACTIONS(5892), - [anon_sym_BSLASHavolcite] = ACTIONS(5892), - [anon_sym_BSLASHAvolcite] = ACTIONS(5892), - [anon_sym_BSLASHnotecite] = ACTIONS(5892), - [anon_sym_BSLASHNotecite] = ACTIONS(5892), - [anon_sym_BSLASHpnotecite] = ACTIONS(5892), - [anon_sym_BSLASHPnotecite] = ACTIONS(5892), - [anon_sym_BSLASHfnotecite] = ACTIONS(5892), - [anon_sym_BSLASHlabel] = ACTIONS(5892), - [anon_sym_BSLASHref] = ACTIONS(5892), - [anon_sym_BSLASHeqref] = ACTIONS(5892), - [anon_sym_BSLASHvref] = ACTIONS(5892), - [anon_sym_BSLASHVref] = ACTIONS(5892), - [anon_sym_BSLASHautoref] = ACTIONS(5892), - [anon_sym_BSLASHpageref] = ACTIONS(5892), - [anon_sym_BSLASHcref] = ACTIONS(5892), - [anon_sym_BSLASHCref] = ACTIONS(5892), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5894), - [anon_sym_BSLASHnamecref] = ACTIONS(5892), - [anon_sym_BSLASHnameCref] = ACTIONS(5892), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5892), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5892), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5892), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5892), - [anon_sym_BSLASHlabelcref] = ACTIONS(5892), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5892), - [anon_sym_BSLASHcrefrange] = ACTIONS(5892), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCrefrange] = ACTIONS(5892), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5894), - [anon_sym_BSLASHnewlabel] = ACTIONS(5892), - [anon_sym_BSLASHnewcommand] = ACTIONS(5892), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5892), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5892), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5894), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHdef] = ACTIONS(5892), - [anon_sym_BSLASHlet] = ACTIONS(5892), - [anon_sym_BSLASHleft] = ACTIONS(5892), - [anon_sym_BSLASHbig] = ACTIONS(5892), - [anon_sym_BSLASHBig] = ACTIONS(5892), - [anon_sym_BSLASHbigg] = ACTIONS(5892), - [anon_sym_BSLASHBigg] = ACTIONS(5892), - [anon_sym_BSLASHbigl] = ACTIONS(5892), - [anon_sym_BSLASHBigl] = ACTIONS(5892), - [anon_sym_BSLASHbiggl] = ACTIONS(5892), - [anon_sym_BSLASHBiggl] = ACTIONS(5892), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5892), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5892), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5892), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5892), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5892), - [anon_sym_BSLASHgls] = ACTIONS(5892), - [anon_sym_BSLASHGls] = ACTIONS(5892), - [anon_sym_BSLASHGLS] = ACTIONS(5892), - [anon_sym_BSLASHglspl] = ACTIONS(5892), - [anon_sym_BSLASHGlspl] = ACTIONS(5892), - [anon_sym_BSLASHGLSpl] = ACTIONS(5892), - [anon_sym_BSLASHglsdisp] = ACTIONS(5892), - [anon_sym_BSLASHglslink] = ACTIONS(5892), - [anon_sym_BSLASHglstext] = ACTIONS(5892), - [anon_sym_BSLASHGlstext] = ACTIONS(5892), - [anon_sym_BSLASHGLStext] = ACTIONS(5892), - [anon_sym_BSLASHglsfirst] = ACTIONS(5892), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5892), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5892), - [anon_sym_BSLASHglsplural] = ACTIONS(5892), - [anon_sym_BSLASHGlsplural] = ACTIONS(5892), - [anon_sym_BSLASHGLSplural] = ACTIONS(5892), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHglsname] = ACTIONS(5892), - [anon_sym_BSLASHGlsname] = ACTIONS(5892), - [anon_sym_BSLASHGLSname] = ACTIONS(5892), - [anon_sym_BSLASHglssymbol] = ACTIONS(5892), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5892), - [anon_sym_BSLASHglsdesc] = ACTIONS(5892), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5892), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5892), - [anon_sym_BSLASHglsuseri] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5892), - [anon_sym_BSLASHglsuserii] = ACTIONS(5892), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5892), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5892), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5892), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5892), - [anon_sym_BSLASHglsuserv] = ACTIONS(5892), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5892), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5892), - [anon_sym_BSLASHglsuservi] = ACTIONS(5892), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5892), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5892), - [anon_sym_BSLASHnewacronym] = ACTIONS(5892), - [anon_sym_BSLASHacrshort] = ACTIONS(5892), - [anon_sym_BSLASHAcrshort] = ACTIONS(5892), - [anon_sym_BSLASHACRshort] = ACTIONS(5892), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5892), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5892), - [anon_sym_BSLASHacrlong] = ACTIONS(5892), - [anon_sym_BSLASHAcrlong] = ACTIONS(5892), - [anon_sym_BSLASHACRlong] = ACTIONS(5892), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5892), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5892), - [anon_sym_BSLASHacrfull] = ACTIONS(5892), - [anon_sym_BSLASHAcrfull] = ACTIONS(5892), - [anon_sym_BSLASHACRfull] = ACTIONS(5892), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5892), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5892), - [anon_sym_BSLASHacs] = ACTIONS(5892), - [anon_sym_BSLASHAcs] = ACTIONS(5892), - [anon_sym_BSLASHacsp] = ACTIONS(5892), - [anon_sym_BSLASHAcsp] = ACTIONS(5892), - [anon_sym_BSLASHacl] = ACTIONS(5892), - [anon_sym_BSLASHAcl] = ACTIONS(5892), - [anon_sym_BSLASHaclp] = ACTIONS(5892), - [anon_sym_BSLASHAclp] = ACTIONS(5892), - [anon_sym_BSLASHacf] = ACTIONS(5892), - [anon_sym_BSLASHAcf] = ACTIONS(5892), - [anon_sym_BSLASHacfp] = ACTIONS(5892), - [anon_sym_BSLASHAcfp] = ACTIONS(5892), - [anon_sym_BSLASHac] = ACTIONS(5892), - [anon_sym_BSLASHAc] = ACTIONS(5892), - [anon_sym_BSLASHacp] = ACTIONS(5892), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5892), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5892), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5892), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5892), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5892), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5892), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5892), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5894), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5892), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5894), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5892), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5892), - [anon_sym_BSLASHcolor] = ACTIONS(5892), - [anon_sym_BSLASHcolorbox] = ACTIONS(5892), - [anon_sym_BSLASHtextcolor] = ACTIONS(5892), - [anon_sym_BSLASHpagecolor] = ACTIONS(5892), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5892), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5892), - [anon_sym_BSLASHtext] = ACTIONS(5892), - [anon_sym_BSLASHintertext] = ACTIONS(5892), - [anon_sym_shortintertext] = ACTIONS(5892), - }, - [651] = { - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(651), - [aux_sym__section_repeat2] = STATE(651), - [sym_command_name] = ACTIONS(5882), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5882), - [anon_sym_LBRACK] = ACTIONS(5884), - [anon_sym_RBRACK] = ACTIONS(5884), - [anon_sym_COMMA] = ACTIONS(5884), - [anon_sym_EQ] = ACTIONS(5884), - [anon_sym_LPAREN] = ACTIONS(5884), - [anon_sym_RPAREN] = ACTIONS(5884), - [anon_sym_BSLASHpart] = ACTIONS(5882), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5884), - [anon_sym_BSLASHaddpart] = ACTIONS(5882), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5884), - [anon_sym_BSLASHchapter] = ACTIONS(6569), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6572), - [anon_sym_BSLASHaddchap] = ACTIONS(6569), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6572), - [anon_sym_BSLASHsection] = ACTIONS(5882), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHaddsec] = ACTIONS(5882), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubsection] = ACTIONS(5882), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5882), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHparagraph] = ACTIONS(5882), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5882), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5884), - [anon_sym_BSLASHitem] = ACTIONS(5882), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5884), - [anon_sym_LBRACE] = ACTIONS(5884), - [sym_word] = ACTIONS(5882), - [sym_placeholder] = ACTIONS(5884), - [anon_sym_PLUS] = ACTIONS(5884), - [anon_sym_DASH] = ACTIONS(5884), - [anon_sym_STAR] = ACTIONS(5884), - [anon_sym_SLASH] = ACTIONS(5884), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_BANG] = ACTIONS(5882), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_COLON] = ACTIONS(5882), - [anon_sym_SQUOTE] = ACTIONS(5882), - [anon_sym__] = ACTIONS(5884), - [anon_sym_CARET] = ACTIONS(5884), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5884), - [anon_sym_DOLLAR] = ACTIONS(5882), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5884), - [anon_sym_BSLASHbegin] = ACTIONS(5882), - [anon_sym_BSLASHend] = ACTIONS(5882), - [anon_sym_BSLASHtitle] = ACTIONS(5882), - [anon_sym_BSLASHauthor] = ACTIONS(5882), - [anon_sym_BSLASHusepackage] = ACTIONS(5882), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5882), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5882), - [anon_sym_BSLASHinclude] = ACTIONS(5882), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5882), - [anon_sym_BSLASHinput] = ACTIONS(5882), - [anon_sym_BSLASHsubfile] = ACTIONS(5882), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5882), - [anon_sym_BSLASHbibliography] = ACTIONS(5882), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5882), - [anon_sym_BSLASHincludesvg] = ACTIONS(5882), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5882), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5882), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5882), - [anon_sym_BSLASHimport] = ACTIONS(5882), - [anon_sym_BSLASHsubimport] = ACTIONS(5882), - [anon_sym_BSLASHinputfrom] = ACTIONS(5882), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5882), - [anon_sym_BSLASHincludefrom] = ACTIONS(5882), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5882), - [anon_sym_BSLASHcaption] = ACTIONS(5882), - [anon_sym_BSLASHcite] = ACTIONS(5882), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCite] = ACTIONS(5882), - [anon_sym_BSLASHnocite] = ACTIONS(5882), - [anon_sym_BSLASHcitet] = ACTIONS(5882), - [anon_sym_BSLASHcitep] = ACTIONS(5882), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteauthor] = ACTIONS(5882), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5882), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitetitle] = ACTIONS(5882), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteyear] = ACTIONS(5882), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitedate] = ACTIONS(5882), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteurl] = ACTIONS(5882), - [anon_sym_BSLASHfullcite] = ACTIONS(5882), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5882), - [anon_sym_BSLASHcitealt] = ACTIONS(5882), - [anon_sym_BSLASHcitealp] = ACTIONS(5882), - [anon_sym_BSLASHcitetext] = ACTIONS(5882), - [anon_sym_BSLASHparencite] = ACTIONS(5882), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHParencite] = ACTIONS(5882), - [anon_sym_BSLASHfootcite] = ACTIONS(5882), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5882), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5882), - [anon_sym_BSLASHtextcite] = ACTIONS(5882), - [anon_sym_BSLASHTextcite] = ACTIONS(5882), - [anon_sym_BSLASHsmartcite] = ACTIONS(5882), - [anon_sym_BSLASHSmartcite] = ACTIONS(5882), - [anon_sym_BSLASHsupercite] = ACTIONS(5882), - [anon_sym_BSLASHautocite] = ACTIONS(5882), - [anon_sym_BSLASHAutocite] = ACTIONS(5882), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHvolcite] = ACTIONS(5882), - [anon_sym_BSLASHVolcite] = ACTIONS(5882), - [anon_sym_BSLASHpvolcite] = ACTIONS(5882), - [anon_sym_BSLASHPvolcite] = ACTIONS(5882), - [anon_sym_BSLASHfvolcite] = ACTIONS(5882), - [anon_sym_BSLASHftvolcite] = ACTIONS(5882), - [anon_sym_BSLASHsvolcite] = ACTIONS(5882), - [anon_sym_BSLASHSvolcite] = ACTIONS(5882), - [anon_sym_BSLASHtvolcite] = ACTIONS(5882), - [anon_sym_BSLASHTvolcite] = ACTIONS(5882), - [anon_sym_BSLASHavolcite] = ACTIONS(5882), - [anon_sym_BSLASHAvolcite] = ACTIONS(5882), - [anon_sym_BSLASHnotecite] = ACTIONS(5882), - [anon_sym_BSLASHNotecite] = ACTIONS(5882), - [anon_sym_BSLASHpnotecite] = ACTIONS(5882), - [anon_sym_BSLASHPnotecite] = ACTIONS(5882), - [anon_sym_BSLASHfnotecite] = ACTIONS(5882), - [anon_sym_BSLASHlabel] = ACTIONS(5882), - [anon_sym_BSLASHref] = ACTIONS(5882), - [anon_sym_BSLASHeqref] = ACTIONS(5882), - [anon_sym_BSLASHvref] = ACTIONS(5882), - [anon_sym_BSLASHVref] = ACTIONS(5882), - [anon_sym_BSLASHautoref] = ACTIONS(5882), - [anon_sym_BSLASHpageref] = ACTIONS(5882), - [anon_sym_BSLASHcref] = ACTIONS(5882), - [anon_sym_BSLASHCref] = ACTIONS(5882), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5884), - [anon_sym_BSLASHnamecref] = ACTIONS(5882), - [anon_sym_BSLASHnameCref] = ACTIONS(5882), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5882), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5882), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5882), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5882), - [anon_sym_BSLASHlabelcref] = ACTIONS(5882), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5882), - [anon_sym_BSLASHcrefrange] = ACTIONS(5882), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCrefrange] = ACTIONS(5882), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5884), - [anon_sym_BSLASHnewlabel] = ACTIONS(5882), - [anon_sym_BSLASHnewcommand] = ACTIONS(5882), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5882), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5882), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5884), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHdef] = ACTIONS(5882), - [anon_sym_BSLASHlet] = ACTIONS(5882), - [anon_sym_BSLASHleft] = ACTIONS(5882), - [anon_sym_BSLASHbig] = ACTIONS(5882), - [anon_sym_BSLASHBig] = ACTIONS(5882), - [anon_sym_BSLASHbigg] = ACTIONS(5882), - [anon_sym_BSLASHBigg] = ACTIONS(5882), - [anon_sym_BSLASHbigl] = ACTIONS(5882), - [anon_sym_BSLASHBigl] = ACTIONS(5882), - [anon_sym_BSLASHbiggl] = ACTIONS(5882), - [anon_sym_BSLASHBiggl] = ACTIONS(5882), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5882), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5882), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5882), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5882), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5882), - [anon_sym_BSLASHgls] = ACTIONS(5882), - [anon_sym_BSLASHGls] = ACTIONS(5882), - [anon_sym_BSLASHGLS] = ACTIONS(5882), - [anon_sym_BSLASHglspl] = ACTIONS(5882), - [anon_sym_BSLASHGlspl] = ACTIONS(5882), - [anon_sym_BSLASHGLSpl] = ACTIONS(5882), - [anon_sym_BSLASHglsdisp] = ACTIONS(5882), - [anon_sym_BSLASHglslink] = ACTIONS(5882), - [anon_sym_BSLASHglstext] = ACTIONS(5882), - [anon_sym_BSLASHGlstext] = ACTIONS(5882), - [anon_sym_BSLASHGLStext] = ACTIONS(5882), - [anon_sym_BSLASHglsfirst] = ACTIONS(5882), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5882), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5882), - [anon_sym_BSLASHglsplural] = ACTIONS(5882), - [anon_sym_BSLASHGlsplural] = ACTIONS(5882), - [anon_sym_BSLASHGLSplural] = ACTIONS(5882), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHglsname] = ACTIONS(5882), - [anon_sym_BSLASHGlsname] = ACTIONS(5882), - [anon_sym_BSLASHGLSname] = ACTIONS(5882), - [anon_sym_BSLASHglssymbol] = ACTIONS(5882), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5882), - [anon_sym_BSLASHglsdesc] = ACTIONS(5882), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5882), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5882), - [anon_sym_BSLASHglsuseri] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5882), - [anon_sym_BSLASHglsuserii] = ACTIONS(5882), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5882), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5882), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5882), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5882), - [anon_sym_BSLASHglsuserv] = ACTIONS(5882), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5882), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5882), - [anon_sym_BSLASHglsuservi] = ACTIONS(5882), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5882), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5882), - [anon_sym_BSLASHnewacronym] = ACTIONS(5882), - [anon_sym_BSLASHacrshort] = ACTIONS(5882), - [anon_sym_BSLASHAcrshort] = ACTIONS(5882), - [anon_sym_BSLASHACRshort] = ACTIONS(5882), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5882), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5882), - [anon_sym_BSLASHacrlong] = ACTIONS(5882), - [anon_sym_BSLASHAcrlong] = ACTIONS(5882), - [anon_sym_BSLASHACRlong] = ACTIONS(5882), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5882), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5882), - [anon_sym_BSLASHacrfull] = ACTIONS(5882), - [anon_sym_BSLASHAcrfull] = ACTIONS(5882), - [anon_sym_BSLASHACRfull] = ACTIONS(5882), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5882), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5882), - [anon_sym_BSLASHacs] = ACTIONS(5882), - [anon_sym_BSLASHAcs] = ACTIONS(5882), - [anon_sym_BSLASHacsp] = ACTIONS(5882), - [anon_sym_BSLASHAcsp] = ACTIONS(5882), - [anon_sym_BSLASHacl] = ACTIONS(5882), - [anon_sym_BSLASHAcl] = ACTIONS(5882), - [anon_sym_BSLASHaclp] = ACTIONS(5882), - [anon_sym_BSLASHAclp] = ACTIONS(5882), - [anon_sym_BSLASHacf] = ACTIONS(5882), - [anon_sym_BSLASHAcf] = ACTIONS(5882), - [anon_sym_BSLASHacfp] = ACTIONS(5882), - [anon_sym_BSLASHAcfp] = ACTIONS(5882), - [anon_sym_BSLASHac] = ACTIONS(5882), - [anon_sym_BSLASHAc] = ACTIONS(5882), - [anon_sym_BSLASHacp] = ACTIONS(5882), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5882), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5882), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5882), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5882), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5882), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5882), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5882), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5884), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5882), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5884), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5882), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5882), - [anon_sym_BSLASHcolor] = ACTIONS(5882), - [anon_sym_BSLASHcolorbox] = ACTIONS(5882), - [anon_sym_BSLASHtextcolor] = ACTIONS(5882), - [anon_sym_BSLASHpagecolor] = ACTIONS(5882), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5882), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5882), - [anon_sym_BSLASHtext] = ACTIONS(5882), - [anon_sym_BSLASHintertext] = ACTIONS(5882), - [anon_sym_shortintertext] = ACTIONS(5882), - }, - [652] = { - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(652), - [aux_sym__section_repeat1] = STATE(652), - [sym_command_name] = ACTIONS(5872), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5872), - [anon_sym_LBRACK] = ACTIONS(5874), - [anon_sym_RBRACK] = ACTIONS(5874), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [anon_sym_LPAREN] = ACTIONS(5874), - [anon_sym_RPAREN] = ACTIONS(5874), - [anon_sym_BSLASHpart] = ACTIONS(6575), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6578), - [anon_sym_BSLASHaddpart] = ACTIONS(6575), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6578), - [anon_sym_BSLASHchapter] = ACTIONS(5872), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5874), - [anon_sym_BSLASHaddchap] = ACTIONS(5872), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsection] = ACTIONS(5872), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHaddsec] = ACTIONS(5872), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubsection] = ACTIONS(5872), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5872), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHparagraph] = ACTIONS(5872), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5872), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5874), - [anon_sym_BSLASHitem] = ACTIONS(5872), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5874), - [anon_sym_LBRACE] = ACTIONS(5874), - [sym_word] = ACTIONS(5872), - [sym_placeholder] = ACTIONS(5874), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_STAR] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_LT] = ACTIONS(5872), - [anon_sym_GT] = ACTIONS(5872), - [anon_sym_BANG] = ACTIONS(5872), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_COLON] = ACTIONS(5872), - [anon_sym_SQUOTE] = ACTIONS(5872), - [anon_sym__] = ACTIONS(5874), - [anon_sym_CARET] = ACTIONS(5874), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5874), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5874), - [anon_sym_DOLLAR] = ACTIONS(5872), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5874), - [anon_sym_BSLASHbegin] = ACTIONS(5872), - [anon_sym_BSLASHend] = ACTIONS(5872), - [anon_sym_BSLASHtitle] = ACTIONS(5872), - [anon_sym_BSLASHauthor] = ACTIONS(5872), - [anon_sym_BSLASHusepackage] = ACTIONS(5872), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5872), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5872), - [anon_sym_BSLASHinclude] = ACTIONS(5872), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5872), - [anon_sym_BSLASHinput] = ACTIONS(5872), - [anon_sym_BSLASHsubfile] = ACTIONS(5872), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5872), - [anon_sym_BSLASHbibliography] = ACTIONS(5872), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5872), - [anon_sym_BSLASHincludesvg] = ACTIONS(5872), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5872), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5872), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5872), - [anon_sym_BSLASHimport] = ACTIONS(5872), - [anon_sym_BSLASHsubimport] = ACTIONS(5872), - [anon_sym_BSLASHinputfrom] = ACTIONS(5872), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5872), - [anon_sym_BSLASHincludefrom] = ACTIONS(5872), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5872), - [anon_sym_BSLASHcaption] = ACTIONS(5872), - [anon_sym_BSLASHcite] = ACTIONS(5872), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCite] = ACTIONS(5872), - [anon_sym_BSLASHnocite] = ACTIONS(5872), - [anon_sym_BSLASHcitet] = ACTIONS(5872), - [anon_sym_BSLASHcitep] = ACTIONS(5872), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteauthor] = ACTIONS(5872), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5872), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitetitle] = ACTIONS(5872), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteyear] = ACTIONS(5872), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitedate] = ACTIONS(5872), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteurl] = ACTIONS(5872), - [anon_sym_BSLASHfullcite] = ACTIONS(5872), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5872), - [anon_sym_BSLASHcitealt] = ACTIONS(5872), - [anon_sym_BSLASHcitealp] = ACTIONS(5872), - [anon_sym_BSLASHcitetext] = ACTIONS(5872), - [anon_sym_BSLASHparencite] = ACTIONS(5872), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHParencite] = ACTIONS(5872), - [anon_sym_BSLASHfootcite] = ACTIONS(5872), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5872), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5872), - [anon_sym_BSLASHtextcite] = ACTIONS(5872), - [anon_sym_BSLASHTextcite] = ACTIONS(5872), - [anon_sym_BSLASHsmartcite] = ACTIONS(5872), - [anon_sym_BSLASHSmartcite] = ACTIONS(5872), - [anon_sym_BSLASHsupercite] = ACTIONS(5872), - [anon_sym_BSLASHautocite] = ACTIONS(5872), - [anon_sym_BSLASHAutocite] = ACTIONS(5872), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHvolcite] = ACTIONS(5872), - [anon_sym_BSLASHVolcite] = ACTIONS(5872), - [anon_sym_BSLASHpvolcite] = ACTIONS(5872), - [anon_sym_BSLASHPvolcite] = ACTIONS(5872), - [anon_sym_BSLASHfvolcite] = ACTIONS(5872), - [anon_sym_BSLASHftvolcite] = ACTIONS(5872), - [anon_sym_BSLASHsvolcite] = ACTIONS(5872), - [anon_sym_BSLASHSvolcite] = ACTIONS(5872), - [anon_sym_BSLASHtvolcite] = ACTIONS(5872), - [anon_sym_BSLASHTvolcite] = ACTIONS(5872), - [anon_sym_BSLASHavolcite] = ACTIONS(5872), - [anon_sym_BSLASHAvolcite] = ACTIONS(5872), - [anon_sym_BSLASHnotecite] = ACTIONS(5872), - [anon_sym_BSLASHNotecite] = ACTIONS(5872), - [anon_sym_BSLASHpnotecite] = ACTIONS(5872), - [anon_sym_BSLASHPnotecite] = ACTIONS(5872), - [anon_sym_BSLASHfnotecite] = ACTIONS(5872), - [anon_sym_BSLASHlabel] = ACTIONS(5872), - [anon_sym_BSLASHref] = ACTIONS(5872), - [anon_sym_BSLASHeqref] = ACTIONS(5872), - [anon_sym_BSLASHvref] = ACTIONS(5872), - [anon_sym_BSLASHVref] = ACTIONS(5872), - [anon_sym_BSLASHautoref] = ACTIONS(5872), - [anon_sym_BSLASHpageref] = ACTIONS(5872), - [anon_sym_BSLASHcref] = ACTIONS(5872), - [anon_sym_BSLASHCref] = ACTIONS(5872), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5874), - [anon_sym_BSLASHnamecref] = ACTIONS(5872), - [anon_sym_BSLASHnameCref] = ACTIONS(5872), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5872), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5872), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5872), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5872), - [anon_sym_BSLASHlabelcref] = ACTIONS(5872), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5872), - [anon_sym_BSLASHcrefrange] = ACTIONS(5872), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCrefrange] = ACTIONS(5872), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5874), - [anon_sym_BSLASHnewlabel] = ACTIONS(5872), - [anon_sym_BSLASHnewcommand] = ACTIONS(5872), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5872), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5872), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5874), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHdef] = ACTIONS(5872), - [anon_sym_BSLASHlet] = ACTIONS(5872), - [anon_sym_BSLASHleft] = ACTIONS(5872), - [anon_sym_BSLASHbig] = ACTIONS(5872), - [anon_sym_BSLASHBig] = ACTIONS(5872), - [anon_sym_BSLASHbigg] = ACTIONS(5872), - [anon_sym_BSLASHBigg] = ACTIONS(5872), - [anon_sym_BSLASHbigl] = ACTIONS(5872), - [anon_sym_BSLASHBigl] = ACTIONS(5872), - [anon_sym_BSLASHbiggl] = ACTIONS(5872), - [anon_sym_BSLASHBiggl] = ACTIONS(5872), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5872), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5872), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5872), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5872), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5872), - [anon_sym_BSLASHgls] = ACTIONS(5872), - [anon_sym_BSLASHGls] = ACTIONS(5872), - [anon_sym_BSLASHGLS] = ACTIONS(5872), - [anon_sym_BSLASHglspl] = ACTIONS(5872), - [anon_sym_BSLASHGlspl] = ACTIONS(5872), - [anon_sym_BSLASHGLSpl] = ACTIONS(5872), - [anon_sym_BSLASHglsdisp] = ACTIONS(5872), - [anon_sym_BSLASHglslink] = ACTIONS(5872), - [anon_sym_BSLASHglstext] = ACTIONS(5872), - [anon_sym_BSLASHGlstext] = ACTIONS(5872), - [anon_sym_BSLASHGLStext] = ACTIONS(5872), - [anon_sym_BSLASHglsfirst] = ACTIONS(5872), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5872), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5872), - [anon_sym_BSLASHglsplural] = ACTIONS(5872), - [anon_sym_BSLASHGlsplural] = ACTIONS(5872), - [anon_sym_BSLASHGLSplural] = ACTIONS(5872), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHglsname] = ACTIONS(5872), - [anon_sym_BSLASHGlsname] = ACTIONS(5872), - [anon_sym_BSLASHGLSname] = ACTIONS(5872), - [anon_sym_BSLASHglssymbol] = ACTIONS(5872), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5872), - [anon_sym_BSLASHglsdesc] = ACTIONS(5872), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5872), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5872), - [anon_sym_BSLASHglsuseri] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5872), - [anon_sym_BSLASHglsuserii] = ACTIONS(5872), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5872), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5872), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5872), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5872), - [anon_sym_BSLASHglsuserv] = ACTIONS(5872), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5872), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5872), - [anon_sym_BSLASHglsuservi] = ACTIONS(5872), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5872), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5872), - [anon_sym_BSLASHnewacronym] = ACTIONS(5872), - [anon_sym_BSLASHacrshort] = ACTIONS(5872), - [anon_sym_BSLASHAcrshort] = ACTIONS(5872), - [anon_sym_BSLASHACRshort] = ACTIONS(5872), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5872), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5872), - [anon_sym_BSLASHacrlong] = ACTIONS(5872), - [anon_sym_BSLASHAcrlong] = ACTIONS(5872), - [anon_sym_BSLASHACRlong] = ACTIONS(5872), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5872), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5872), - [anon_sym_BSLASHacrfull] = ACTIONS(5872), - [anon_sym_BSLASHAcrfull] = ACTIONS(5872), - [anon_sym_BSLASHACRfull] = ACTIONS(5872), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5872), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5872), - [anon_sym_BSLASHacs] = ACTIONS(5872), - [anon_sym_BSLASHAcs] = ACTIONS(5872), - [anon_sym_BSLASHacsp] = ACTIONS(5872), - [anon_sym_BSLASHAcsp] = ACTIONS(5872), - [anon_sym_BSLASHacl] = ACTIONS(5872), - [anon_sym_BSLASHAcl] = ACTIONS(5872), - [anon_sym_BSLASHaclp] = ACTIONS(5872), - [anon_sym_BSLASHAclp] = ACTIONS(5872), - [anon_sym_BSLASHacf] = ACTIONS(5872), - [anon_sym_BSLASHAcf] = ACTIONS(5872), - [anon_sym_BSLASHacfp] = ACTIONS(5872), - [anon_sym_BSLASHAcfp] = ACTIONS(5872), - [anon_sym_BSLASHac] = ACTIONS(5872), - [anon_sym_BSLASHAc] = ACTIONS(5872), - [anon_sym_BSLASHacp] = ACTIONS(5872), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5872), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5872), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5872), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5872), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5872), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5872), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5872), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5874), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5872), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5874), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5872), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5872), - [anon_sym_BSLASHcolor] = ACTIONS(5872), - [anon_sym_BSLASHcolorbox] = ACTIONS(5872), - [anon_sym_BSLASHtextcolor] = ACTIONS(5872), - [anon_sym_BSLASHpagecolor] = ACTIONS(5872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5872), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5872), - [anon_sym_BSLASHtext] = ACTIONS(5872), - [anon_sym_BSLASHintertext] = ACTIONS(5872), - [anon_sym_shortintertext] = ACTIONS(5872), - }, - [653] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(2256), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_RBRACK] = ACTIONS(2258), - [anon_sym_COMMA] = ACTIONS(2258), - [anon_sym_EQ] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_BSLASHpart] = ACTIONS(2256), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddpart] = ACTIONS(2256), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHchapter] = ACTIONS(2256), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddchap] = ACTIONS(2256), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsection] = ACTIONS(2256), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddsec] = ACTIONS(2256), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHparagraph] = ACTIONS(2256), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2256), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(2258), - [sym_word] = ACTIONS(2256), - [sym_placeholder] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2256), - [anon_sym_GT] = ACTIONS(2256), - [anon_sym_BANG] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym_SQUOTE] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2258), - [anon_sym_CARET] = ACTIONS(2258), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2258), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2256), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2258), - [anon_sym_BSLASHbegin] = ACTIONS(2256), - [anon_sym_BSLASHend] = ACTIONS(2256), - [anon_sym_BSLASHtitle] = ACTIONS(2256), - [anon_sym_BSLASHauthor] = ACTIONS(2256), - [anon_sym_BSLASHusepackage] = ACTIONS(2256), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2256), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2256), - [anon_sym_BSLASHinclude] = ACTIONS(2256), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2256), - [anon_sym_BSLASHinput] = ACTIONS(2256), - [anon_sym_BSLASHsubfile] = ACTIONS(2256), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2256), - [anon_sym_BSLASHbibliography] = ACTIONS(2256), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2256), - [anon_sym_BSLASHincludesvg] = ACTIONS(2256), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2256), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2256), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2256), - [anon_sym_BSLASHimport] = ACTIONS(2256), - [anon_sym_BSLASHsubimport] = ACTIONS(2256), - [anon_sym_BSLASHinputfrom] = ACTIONS(2256), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2256), - [anon_sym_BSLASHincludefrom] = ACTIONS(2256), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2256), - [anon_sym_BSLASHcaption] = ACTIONS(2256), - [anon_sym_BSLASHcite] = ACTIONS(2256), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCite] = ACTIONS(2256), - [anon_sym_BSLASHnocite] = ACTIONS(2256), - [anon_sym_BSLASHcitet] = ACTIONS(2256), - [anon_sym_BSLASHcitep] = ACTIONS(2256), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteauthor] = ACTIONS(2256), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2256), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitetitle] = ACTIONS(2256), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteyear] = ACTIONS(2256), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitedate] = ACTIONS(2256), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteurl] = ACTIONS(2256), - [anon_sym_BSLASHfullcite] = ACTIONS(2256), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2256), - [anon_sym_BSLASHcitealt] = ACTIONS(2256), - [anon_sym_BSLASHcitealp] = ACTIONS(2256), - [anon_sym_BSLASHcitetext] = ACTIONS(2256), - [anon_sym_BSLASHparencite] = ACTIONS(2256), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHParencite] = ACTIONS(2256), - [anon_sym_BSLASHfootcite] = ACTIONS(2256), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2256), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2256), - [anon_sym_BSLASHtextcite] = ACTIONS(2256), - [anon_sym_BSLASHTextcite] = ACTIONS(2256), - [anon_sym_BSLASHsmartcite] = ACTIONS(2256), - [anon_sym_BSLASHSmartcite] = ACTIONS(2256), - [anon_sym_BSLASHsupercite] = ACTIONS(2256), - [anon_sym_BSLASHautocite] = ACTIONS(2256), - [anon_sym_BSLASHAutocite] = ACTIONS(2256), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHvolcite] = ACTIONS(2256), - [anon_sym_BSLASHVolcite] = ACTIONS(2256), - [anon_sym_BSLASHpvolcite] = ACTIONS(2256), - [anon_sym_BSLASHPvolcite] = ACTIONS(2256), - [anon_sym_BSLASHfvolcite] = ACTIONS(2256), - [anon_sym_BSLASHftvolcite] = ACTIONS(2256), - [anon_sym_BSLASHsvolcite] = ACTIONS(2256), - [anon_sym_BSLASHSvolcite] = ACTIONS(2256), - [anon_sym_BSLASHtvolcite] = ACTIONS(2256), - [anon_sym_BSLASHTvolcite] = ACTIONS(2256), - [anon_sym_BSLASHavolcite] = ACTIONS(2256), - [anon_sym_BSLASHAvolcite] = ACTIONS(2256), - [anon_sym_BSLASHnotecite] = ACTIONS(2256), - [anon_sym_BSLASHNotecite] = ACTIONS(2256), - [anon_sym_BSLASHpnotecite] = ACTIONS(2256), - [anon_sym_BSLASHPnotecite] = ACTIONS(2256), - [anon_sym_BSLASHfnotecite] = ACTIONS(2256), - [anon_sym_BSLASHlabel] = ACTIONS(2256), - [anon_sym_BSLASHref] = ACTIONS(2256), - [anon_sym_BSLASHeqref] = ACTIONS(2256), - [anon_sym_BSLASHvref] = ACTIONS(2256), - [anon_sym_BSLASHVref] = ACTIONS(2256), - [anon_sym_BSLASHautoref] = ACTIONS(2256), - [anon_sym_BSLASHpageref] = ACTIONS(2256), - [anon_sym_BSLASHcref] = ACTIONS(2256), - [anon_sym_BSLASHCref] = ACTIONS(2256), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2258), - [anon_sym_BSLASHnamecref] = ACTIONS(2256), - [anon_sym_BSLASHnameCref] = ACTIONS(2256), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2256), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2256), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2256), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2256), - [anon_sym_BSLASHlabelcref] = ACTIONS(2256), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2256), - [anon_sym_BSLASHcrefrange] = ACTIONS(2256), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCrefrange] = ACTIONS(2256), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2258), - [anon_sym_BSLASHnewlabel] = ACTIONS(2256), - [anon_sym_BSLASHnewcommand] = ACTIONS(2256), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2256), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2256), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2258), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHdef] = ACTIONS(2256), - [anon_sym_BSLASHlet] = ACTIONS(2256), - [anon_sym_BSLASHleft] = ACTIONS(2256), - [anon_sym_BSLASHbig] = ACTIONS(2256), - [anon_sym_BSLASHBig] = ACTIONS(2256), - [anon_sym_BSLASHbigg] = ACTIONS(2256), - [anon_sym_BSLASHBigg] = ACTIONS(2256), - [anon_sym_BSLASHbigl] = ACTIONS(2256), - [anon_sym_BSLASHBigl] = ACTIONS(2256), - [anon_sym_BSLASHbiggl] = ACTIONS(2256), - [anon_sym_BSLASHBiggl] = ACTIONS(2256), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2256), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2256), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2256), - [anon_sym_BSLASHgls] = ACTIONS(2256), - [anon_sym_BSLASHGls] = ACTIONS(2256), - [anon_sym_BSLASHGLS] = ACTIONS(2256), - [anon_sym_BSLASHglspl] = ACTIONS(2256), - [anon_sym_BSLASHGlspl] = ACTIONS(2256), - [anon_sym_BSLASHGLSpl] = ACTIONS(2256), - [anon_sym_BSLASHglsdisp] = ACTIONS(2256), - [anon_sym_BSLASHglslink] = ACTIONS(2256), - [anon_sym_BSLASHglstext] = ACTIONS(2256), - [anon_sym_BSLASHGlstext] = ACTIONS(2256), - [anon_sym_BSLASHGLStext] = ACTIONS(2256), - [anon_sym_BSLASHglsfirst] = ACTIONS(2256), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2256), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2256), - [anon_sym_BSLASHglsplural] = ACTIONS(2256), - [anon_sym_BSLASHGlsplural] = ACTIONS(2256), - [anon_sym_BSLASHGLSplural] = ACTIONS(2256), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHglsname] = ACTIONS(2256), - [anon_sym_BSLASHGlsname] = ACTIONS(2256), - [anon_sym_BSLASHGLSname] = ACTIONS(2256), - [anon_sym_BSLASHglssymbol] = ACTIONS(2256), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2256), - [anon_sym_BSLASHglsdesc] = ACTIONS(2256), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2256), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2256), - [anon_sym_BSLASHglsuseri] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2256), - [anon_sym_BSLASHglsuserii] = ACTIONS(2256), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2256), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2256), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2256), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2256), - [anon_sym_BSLASHglsuserv] = ACTIONS(2256), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2256), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2256), - [anon_sym_BSLASHglsuservi] = ACTIONS(2256), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2256), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2256), - [anon_sym_BSLASHnewacronym] = ACTIONS(2256), - [anon_sym_BSLASHacrshort] = ACTIONS(2256), - [anon_sym_BSLASHAcrshort] = ACTIONS(2256), - [anon_sym_BSLASHACRshort] = ACTIONS(2256), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2256), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2256), - [anon_sym_BSLASHacrlong] = ACTIONS(2256), - [anon_sym_BSLASHAcrlong] = ACTIONS(2256), - [anon_sym_BSLASHACRlong] = ACTIONS(2256), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2256), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2256), - [anon_sym_BSLASHacrfull] = ACTIONS(2256), - [anon_sym_BSLASHAcrfull] = ACTIONS(2256), - [anon_sym_BSLASHACRfull] = ACTIONS(2256), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2256), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2256), - [anon_sym_BSLASHacs] = ACTIONS(2256), - [anon_sym_BSLASHAcs] = ACTIONS(2256), - [anon_sym_BSLASHacsp] = ACTIONS(2256), - [anon_sym_BSLASHAcsp] = ACTIONS(2256), - [anon_sym_BSLASHacl] = ACTIONS(2256), - [anon_sym_BSLASHAcl] = ACTIONS(2256), - [anon_sym_BSLASHaclp] = ACTIONS(2256), - [anon_sym_BSLASHAclp] = ACTIONS(2256), - [anon_sym_BSLASHacf] = ACTIONS(2256), - [anon_sym_BSLASHAcf] = ACTIONS(2256), - [anon_sym_BSLASHacfp] = ACTIONS(2256), - [anon_sym_BSLASHAcfp] = ACTIONS(2256), - [anon_sym_BSLASHac] = ACTIONS(2256), - [anon_sym_BSLASHAc] = ACTIONS(2256), - [anon_sym_BSLASHacp] = ACTIONS(2256), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2256), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2256), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2256), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2256), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2256), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2256), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2256), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2258), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2256), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2258), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2256), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2256), - [anon_sym_BSLASHcolor] = ACTIONS(2256), - [anon_sym_BSLASHcolorbox] = ACTIONS(2256), - [anon_sym_BSLASHtextcolor] = ACTIONS(2256), - [anon_sym_BSLASHpagecolor] = ACTIONS(2256), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2256), - [anon_sym_BSLASHtext] = ACTIONS(2256), - [anon_sym_BSLASHintertext] = ACTIONS(2256), - [anon_sym_shortintertext] = ACTIONS(2256), - }, - [654] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(2230), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2230), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(2232), - [sym_word] = ACTIONS(2230), - [sym_placeholder] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_COLON] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym__] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2232), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2232), - [anon_sym_BSLASHbegin] = ACTIONS(2230), - [anon_sym_BSLASHend] = ACTIONS(2230), - [anon_sym_BSLASHtitle] = ACTIONS(2230), - [anon_sym_BSLASHauthor] = ACTIONS(2230), - [anon_sym_BSLASHusepackage] = ACTIONS(2230), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2230), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2230), - [anon_sym_BSLASHinclude] = ACTIONS(2230), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2230), - [anon_sym_BSLASHinput] = ACTIONS(2230), - [anon_sym_BSLASHsubfile] = ACTIONS(2230), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2230), - [anon_sym_BSLASHbibliography] = ACTIONS(2230), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2230), - [anon_sym_BSLASHincludesvg] = ACTIONS(2230), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2230), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2230), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2230), - [anon_sym_BSLASHimport] = ACTIONS(2230), - [anon_sym_BSLASHsubimport] = ACTIONS(2230), - [anon_sym_BSLASHinputfrom] = ACTIONS(2230), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2230), - [anon_sym_BSLASHincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHcaption] = ACTIONS(2230), - [anon_sym_BSLASHcite] = ACTIONS(2230), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCite] = ACTIONS(2230), - [anon_sym_BSLASHnocite] = ACTIONS(2230), - [anon_sym_BSLASHcitet] = ACTIONS(2230), - [anon_sym_BSLASHcitep] = ACTIONS(2230), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteauthor] = ACTIONS(2230), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2230), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitetitle] = ACTIONS(2230), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteyear] = ACTIONS(2230), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitedate] = ACTIONS(2230), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteurl] = ACTIONS(2230), - [anon_sym_BSLASHfullcite] = ACTIONS(2230), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2230), - [anon_sym_BSLASHcitealt] = ACTIONS(2230), - [anon_sym_BSLASHcitealp] = ACTIONS(2230), - [anon_sym_BSLASHcitetext] = ACTIONS(2230), - [anon_sym_BSLASHparencite] = ACTIONS(2230), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHParencite] = ACTIONS(2230), - [anon_sym_BSLASHfootcite] = ACTIONS(2230), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2230), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2230), - [anon_sym_BSLASHtextcite] = ACTIONS(2230), - [anon_sym_BSLASHTextcite] = ACTIONS(2230), - [anon_sym_BSLASHsmartcite] = ACTIONS(2230), - [anon_sym_BSLASHSmartcite] = ACTIONS(2230), - [anon_sym_BSLASHsupercite] = ACTIONS(2230), - [anon_sym_BSLASHautocite] = ACTIONS(2230), - [anon_sym_BSLASHAutocite] = ACTIONS(2230), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHvolcite] = ACTIONS(2230), - [anon_sym_BSLASHVolcite] = ACTIONS(2230), - [anon_sym_BSLASHpvolcite] = ACTIONS(2230), - [anon_sym_BSLASHPvolcite] = ACTIONS(2230), - [anon_sym_BSLASHfvolcite] = ACTIONS(2230), - [anon_sym_BSLASHftvolcite] = ACTIONS(2230), - [anon_sym_BSLASHsvolcite] = ACTIONS(2230), - [anon_sym_BSLASHSvolcite] = ACTIONS(2230), - [anon_sym_BSLASHtvolcite] = ACTIONS(2230), - [anon_sym_BSLASHTvolcite] = ACTIONS(2230), - [anon_sym_BSLASHavolcite] = ACTIONS(2230), - [anon_sym_BSLASHAvolcite] = ACTIONS(2230), - [anon_sym_BSLASHnotecite] = ACTIONS(2230), - [anon_sym_BSLASHNotecite] = ACTIONS(2230), - [anon_sym_BSLASHpnotecite] = ACTIONS(2230), - [anon_sym_BSLASHPnotecite] = ACTIONS(2230), - [anon_sym_BSLASHfnotecite] = ACTIONS(2230), - [anon_sym_BSLASHlabel] = ACTIONS(2230), - [anon_sym_BSLASHref] = ACTIONS(2230), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [anon_sym_BSLASHvref] = ACTIONS(2230), - [anon_sym_BSLASHVref] = ACTIONS(2230), - [anon_sym_BSLASHautoref] = ACTIONS(2230), - [anon_sym_BSLASHpageref] = ACTIONS(2230), - [anon_sym_BSLASHcref] = ACTIONS(2230), - [anon_sym_BSLASHCref] = ACTIONS(2230), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnameCref] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHlabelcref] = ACTIONS(2230), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCrefrange] = ACTIONS(2230), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2230), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2230), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2232), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHdef] = ACTIONS(2230), - [anon_sym_BSLASHlet] = ACTIONS(2230), - [anon_sym_BSLASHleft] = ACTIONS(2230), - [anon_sym_BSLASHbig] = ACTIONS(2230), - [anon_sym_BSLASHBig] = ACTIONS(2230), - [anon_sym_BSLASHbigg] = ACTIONS(2230), - [anon_sym_BSLASHBigg] = ACTIONS(2230), - [anon_sym_BSLASHbigl] = ACTIONS(2230), - [anon_sym_BSLASHBigl] = ACTIONS(2230), - [anon_sym_BSLASHbiggl] = ACTIONS(2230), - [anon_sym_BSLASHBiggl] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2230), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2230), - [anon_sym_BSLASHgls] = ACTIONS(2230), - [anon_sym_BSLASHGls] = ACTIONS(2230), - [anon_sym_BSLASHGLS] = ACTIONS(2230), - [anon_sym_BSLASHglspl] = ACTIONS(2230), - [anon_sym_BSLASHGlspl] = ACTIONS(2230), - [anon_sym_BSLASHGLSpl] = ACTIONS(2230), - [anon_sym_BSLASHglsdisp] = ACTIONS(2230), - [anon_sym_BSLASHglslink] = ACTIONS(2230), - [anon_sym_BSLASHglstext] = ACTIONS(2230), - [anon_sym_BSLASHGlstext] = ACTIONS(2230), - [anon_sym_BSLASHGLStext] = ACTIONS(2230), - [anon_sym_BSLASHglsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2230), - [anon_sym_BSLASHglsplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSplural] = ACTIONS(2230), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHglsname] = ACTIONS(2230), - [anon_sym_BSLASHGlsname] = ACTIONS(2230), - [anon_sym_BSLASHGLSname] = ACTIONS(2230), - [anon_sym_BSLASHglssymbol] = ACTIONS(2230), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2230), - [anon_sym_BSLASHglsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2230), - [anon_sym_BSLASHglsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2230), - [anon_sym_BSLASHglsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2230), - [anon_sym_BSLASHglsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2230), - [anon_sym_BSLASHglsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2230), - [anon_sym_BSLASHnewacronym] = ACTIONS(2230), - [anon_sym_BSLASHacrshort] = ACTIONS(2230), - [anon_sym_BSLASHAcrshort] = ACTIONS(2230), - [anon_sym_BSLASHACRshort] = ACTIONS(2230), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2230), - [anon_sym_BSLASHacrlong] = ACTIONS(2230), - [anon_sym_BSLASHAcrlong] = ACTIONS(2230), - [anon_sym_BSLASHACRlong] = ACTIONS(2230), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2230), - [anon_sym_BSLASHacrfull] = ACTIONS(2230), - [anon_sym_BSLASHAcrfull] = ACTIONS(2230), - [anon_sym_BSLASHACRfull] = ACTIONS(2230), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2230), - [anon_sym_BSLASHacs] = ACTIONS(2230), - [anon_sym_BSLASHAcs] = ACTIONS(2230), - [anon_sym_BSLASHacsp] = ACTIONS(2230), - [anon_sym_BSLASHAcsp] = ACTIONS(2230), - [anon_sym_BSLASHacl] = ACTIONS(2230), - [anon_sym_BSLASHAcl] = ACTIONS(2230), - [anon_sym_BSLASHaclp] = ACTIONS(2230), - [anon_sym_BSLASHAclp] = ACTIONS(2230), - [anon_sym_BSLASHacf] = ACTIONS(2230), - [anon_sym_BSLASHAcf] = ACTIONS(2230), - [anon_sym_BSLASHacfp] = ACTIONS(2230), - [anon_sym_BSLASHAcfp] = ACTIONS(2230), - [anon_sym_BSLASHac] = ACTIONS(2230), - [anon_sym_BSLASHAc] = ACTIONS(2230), - [anon_sym_BSLASHacp] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2230), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2230), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2230), - [anon_sym_BSLASHcolor] = ACTIONS(2230), - [anon_sym_BSLASHcolorbox] = ACTIONS(2230), - [anon_sym_BSLASHtextcolor] = ACTIONS(2230), - [anon_sym_BSLASHpagecolor] = ACTIONS(2230), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2230), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2230), - [anon_sym_BSLASHtext] = ACTIONS(2230), - [anon_sym_BSLASHintertext] = ACTIONS(2230), - [anon_sym_shortintertext] = ACTIONS(2230), - }, - [655] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(2230), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(2230), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2232), - [sym_word] = ACTIONS(2230), - [sym_placeholder] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_COLON] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym__] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2232), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2232), - [anon_sym_BSLASHbegin] = ACTIONS(2230), - [anon_sym_BSLASHend] = ACTIONS(2230), - [anon_sym_BSLASHtitle] = ACTIONS(2230), - [anon_sym_BSLASHauthor] = ACTIONS(2230), - [anon_sym_BSLASHusepackage] = ACTIONS(2230), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2230), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2230), - [anon_sym_BSLASHinclude] = ACTIONS(2230), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2230), - [anon_sym_BSLASHinput] = ACTIONS(2230), - [anon_sym_BSLASHsubfile] = ACTIONS(2230), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2230), - [anon_sym_BSLASHbibliography] = ACTIONS(2230), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2230), - [anon_sym_BSLASHincludesvg] = ACTIONS(2230), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2230), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2230), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2230), - [anon_sym_BSLASHimport] = ACTIONS(2230), - [anon_sym_BSLASHsubimport] = ACTIONS(2230), - [anon_sym_BSLASHinputfrom] = ACTIONS(2230), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2230), - [anon_sym_BSLASHincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHcaption] = ACTIONS(2230), - [anon_sym_BSLASHcite] = ACTIONS(2230), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCite] = ACTIONS(2230), - [anon_sym_BSLASHnocite] = ACTIONS(2230), - [anon_sym_BSLASHcitet] = ACTIONS(2230), - [anon_sym_BSLASHcitep] = ACTIONS(2230), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteauthor] = ACTIONS(2230), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2230), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitetitle] = ACTIONS(2230), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteyear] = ACTIONS(2230), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitedate] = ACTIONS(2230), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteurl] = ACTIONS(2230), - [anon_sym_BSLASHfullcite] = ACTIONS(2230), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2230), - [anon_sym_BSLASHcitealt] = ACTIONS(2230), - [anon_sym_BSLASHcitealp] = ACTIONS(2230), - [anon_sym_BSLASHcitetext] = ACTIONS(2230), - [anon_sym_BSLASHparencite] = ACTIONS(2230), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHParencite] = ACTIONS(2230), - [anon_sym_BSLASHfootcite] = ACTIONS(2230), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2230), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2230), - [anon_sym_BSLASHtextcite] = ACTIONS(2230), - [anon_sym_BSLASHTextcite] = ACTIONS(2230), - [anon_sym_BSLASHsmartcite] = ACTIONS(2230), - [anon_sym_BSLASHSmartcite] = ACTIONS(2230), - [anon_sym_BSLASHsupercite] = ACTIONS(2230), - [anon_sym_BSLASHautocite] = ACTIONS(2230), - [anon_sym_BSLASHAutocite] = ACTIONS(2230), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHvolcite] = ACTIONS(2230), - [anon_sym_BSLASHVolcite] = ACTIONS(2230), - [anon_sym_BSLASHpvolcite] = ACTIONS(2230), - [anon_sym_BSLASHPvolcite] = ACTIONS(2230), - [anon_sym_BSLASHfvolcite] = ACTIONS(2230), - [anon_sym_BSLASHftvolcite] = ACTIONS(2230), - [anon_sym_BSLASHsvolcite] = ACTIONS(2230), - [anon_sym_BSLASHSvolcite] = ACTIONS(2230), - [anon_sym_BSLASHtvolcite] = ACTIONS(2230), - [anon_sym_BSLASHTvolcite] = ACTIONS(2230), - [anon_sym_BSLASHavolcite] = ACTIONS(2230), - [anon_sym_BSLASHAvolcite] = ACTIONS(2230), - [anon_sym_BSLASHnotecite] = ACTIONS(2230), - [anon_sym_BSLASHNotecite] = ACTIONS(2230), - [anon_sym_BSLASHpnotecite] = ACTIONS(2230), - [anon_sym_BSLASHPnotecite] = ACTIONS(2230), - [anon_sym_BSLASHfnotecite] = ACTIONS(2230), - [anon_sym_BSLASHlabel] = ACTIONS(2230), - [anon_sym_BSLASHref] = ACTIONS(2230), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [anon_sym_BSLASHvref] = ACTIONS(2230), - [anon_sym_BSLASHVref] = ACTIONS(2230), - [anon_sym_BSLASHautoref] = ACTIONS(2230), - [anon_sym_BSLASHpageref] = ACTIONS(2230), - [anon_sym_BSLASHcref] = ACTIONS(2230), - [anon_sym_BSLASHCref] = ACTIONS(2230), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnameCref] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHlabelcref] = ACTIONS(2230), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCrefrange] = ACTIONS(2230), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2230), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2230), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2232), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHdef] = ACTIONS(2230), - [anon_sym_BSLASHlet] = ACTIONS(2230), - [anon_sym_BSLASHleft] = ACTIONS(2230), - [anon_sym_BSLASHbig] = ACTIONS(2230), - [anon_sym_BSLASHBig] = ACTIONS(2230), - [anon_sym_BSLASHbigg] = ACTIONS(2230), - [anon_sym_BSLASHBigg] = ACTIONS(2230), - [anon_sym_BSLASHbigl] = ACTIONS(2230), - [anon_sym_BSLASHBigl] = ACTIONS(2230), - [anon_sym_BSLASHbiggl] = ACTIONS(2230), - [anon_sym_BSLASHBiggl] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2230), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2230), - [anon_sym_BSLASHgls] = ACTIONS(2230), - [anon_sym_BSLASHGls] = ACTIONS(2230), - [anon_sym_BSLASHGLS] = ACTIONS(2230), - [anon_sym_BSLASHglspl] = ACTIONS(2230), - [anon_sym_BSLASHGlspl] = ACTIONS(2230), - [anon_sym_BSLASHGLSpl] = ACTIONS(2230), - [anon_sym_BSLASHglsdisp] = ACTIONS(2230), - [anon_sym_BSLASHglslink] = ACTIONS(2230), - [anon_sym_BSLASHglstext] = ACTIONS(2230), - [anon_sym_BSLASHGlstext] = ACTIONS(2230), - [anon_sym_BSLASHGLStext] = ACTIONS(2230), - [anon_sym_BSLASHglsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2230), - [anon_sym_BSLASHglsplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSplural] = ACTIONS(2230), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHglsname] = ACTIONS(2230), - [anon_sym_BSLASHGlsname] = ACTIONS(2230), - [anon_sym_BSLASHGLSname] = ACTIONS(2230), - [anon_sym_BSLASHglssymbol] = ACTIONS(2230), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2230), - [anon_sym_BSLASHglsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2230), - [anon_sym_BSLASHglsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2230), - [anon_sym_BSLASHglsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2230), - [anon_sym_BSLASHglsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2230), - [anon_sym_BSLASHglsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2230), - [anon_sym_BSLASHnewacronym] = ACTIONS(2230), - [anon_sym_BSLASHacrshort] = ACTIONS(2230), - [anon_sym_BSLASHAcrshort] = ACTIONS(2230), - [anon_sym_BSLASHACRshort] = ACTIONS(2230), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2230), - [anon_sym_BSLASHacrlong] = ACTIONS(2230), - [anon_sym_BSLASHAcrlong] = ACTIONS(2230), - [anon_sym_BSLASHACRlong] = ACTIONS(2230), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2230), - [anon_sym_BSLASHacrfull] = ACTIONS(2230), - [anon_sym_BSLASHAcrfull] = ACTIONS(2230), - [anon_sym_BSLASHACRfull] = ACTIONS(2230), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2230), - [anon_sym_BSLASHacs] = ACTIONS(2230), - [anon_sym_BSLASHAcs] = ACTIONS(2230), - [anon_sym_BSLASHacsp] = ACTIONS(2230), - [anon_sym_BSLASHAcsp] = ACTIONS(2230), - [anon_sym_BSLASHacl] = ACTIONS(2230), - [anon_sym_BSLASHAcl] = ACTIONS(2230), - [anon_sym_BSLASHaclp] = ACTIONS(2230), - [anon_sym_BSLASHAclp] = ACTIONS(2230), - [anon_sym_BSLASHacf] = ACTIONS(2230), - [anon_sym_BSLASHAcf] = ACTIONS(2230), - [anon_sym_BSLASHacfp] = ACTIONS(2230), - [anon_sym_BSLASHAcfp] = ACTIONS(2230), - [anon_sym_BSLASHac] = ACTIONS(2230), - [anon_sym_BSLASHAc] = ACTIONS(2230), - [anon_sym_BSLASHacp] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2230), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2230), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2230), - [anon_sym_BSLASHcolor] = ACTIONS(2230), - [anon_sym_BSLASHcolorbox] = ACTIONS(2230), - [anon_sym_BSLASHtextcolor] = ACTIONS(2230), - [anon_sym_BSLASHpagecolor] = ACTIONS(2230), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2230), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2230), - [anon_sym_BSLASHtext] = ACTIONS(2230), - [anon_sym_BSLASHintertext] = ACTIONS(2230), - [anon_sym_shortintertext] = ACTIONS(2230), - }, - [656] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(2220), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2220), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHend] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [657] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(2220), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(2220), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHend] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [658] = { - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(647), - [aux_sym__section_repeat6] = STATE(647), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2220), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHitem] = ACTIONS(2220), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHend] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [659] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHend] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [660] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHend] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [661] = { - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(647), - [aux_sym__section_repeat6] = STATE(647), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHend] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [662] = { - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(648), - [aux_sym__section_repeat5] = STATE(648), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHend] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [663] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHend] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [664] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHend] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [665] = { - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(647), - [aux_sym__section_repeat6] = STATE(647), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHend] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [666] = { - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(648), - [aux_sym__section_repeat5] = STATE(648), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHend] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [667] = { - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(649), - [aux_sym__section_repeat4] = STATE(649), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHend] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [668] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHend] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [669] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHend] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [670] = { - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(647), - [aux_sym__section_repeat6] = STATE(647), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHend] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [671] = { - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(648), - [aux_sym__section_repeat5] = STATE(648), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHend] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [672] = { - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(649), - [aux_sym__section_repeat4] = STATE(649), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHend] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [673] = { - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(650), - [aux_sym__section_repeat3] = STATE(650), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHend] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [674] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHend] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [675] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHend] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [676] = { - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(647), - [aux_sym__section_repeat6] = STATE(647), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHend] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [677] = { - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(648), - [aux_sym__section_repeat5] = STATE(648), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHend] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [678] = { - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(649), - [aux_sym__section_repeat4] = STATE(649), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHend] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [679] = { - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(650), - [aux_sym__section_repeat3] = STATE(650), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHend] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [680] = { - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(651), - [aux_sym__section_repeat2] = STATE(651), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHend] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [681] = { - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(651), - [aux_sym__section_repeat2] = STATE(651), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHend] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [682] = { - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(650), - [aux_sym__section_repeat3] = STATE(650), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHend] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [683] = { - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(649), - [aux_sym__section_repeat4] = STATE(649), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHend] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [684] = { - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(648), - [aux_sym__section_repeat5] = STATE(648), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHend] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [685] = { - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(647), - [aux_sym__section_repeat6] = STATE(647), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHend] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [686] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [687] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHend] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [688] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHend] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [689] = { - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(650), - [aux_sym__section_repeat3] = STATE(650), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHend] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [690] = { - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(649), - [aux_sym__section_repeat4] = STATE(649), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHend] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [691] = { - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(648), - [aux_sym__section_repeat5] = STATE(648), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHend] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [692] = { - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(647), - [aux_sym__section_repeat6] = STATE(647), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHend] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [693] = { - [sym_curly_group] = STATE(891), - [sym_brack_group_text] = STATE(2863), - [ts_builtin_sym_end] = ACTIONS(5995), - [sym_command_name] = ACTIONS(5993), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5995), - [anon_sym_COMMA] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(5995), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_BSLASHpart] = ACTIONS(5993), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddpart] = ACTIONS(5993), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5995), - [anon_sym_BSLASHchapter] = ACTIONS(5993), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddchap] = ACTIONS(5993), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsection] = ACTIONS(5993), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddsec] = ACTIONS(5993), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubsection] = ACTIONS(5993), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5993), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHparagraph] = ACTIONS(5993), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5993), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5995), - [anon_sym_BSLASHitem] = ACTIONS(5993), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5995), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5995), - [sym_word] = ACTIONS(5993), - [sym_placeholder] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_BANG] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_SQUOTE] = ACTIONS(5993), - [anon_sym__] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5993), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5995), - [anon_sym_BSLASHbegin] = ACTIONS(5993), - [anon_sym_BSLASHtitle] = ACTIONS(5993), - [anon_sym_BSLASHauthor] = ACTIONS(5993), - [anon_sym_BSLASHusepackage] = ACTIONS(5993), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5993), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5993), - [anon_sym_BSLASHinclude] = ACTIONS(5993), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5993), - [anon_sym_BSLASHinput] = ACTIONS(5993), - [anon_sym_BSLASHsubfile] = ACTIONS(5993), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5993), - [anon_sym_BSLASHbibliography] = ACTIONS(5993), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5993), - [anon_sym_BSLASHincludesvg] = ACTIONS(5993), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5993), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5993), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5993), - [anon_sym_BSLASHimport] = ACTIONS(5993), - [anon_sym_BSLASHsubimport] = ACTIONS(5993), - [anon_sym_BSLASHinputfrom] = ACTIONS(5993), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5993), - [anon_sym_BSLASHincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHcaption] = ACTIONS(5993), - [anon_sym_BSLASHcite] = ACTIONS(5993), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCite] = ACTIONS(5993), - [anon_sym_BSLASHnocite] = ACTIONS(5993), - [anon_sym_BSLASHcitet] = ACTIONS(5993), - [anon_sym_BSLASHcitep] = ACTIONS(5993), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteauthor] = ACTIONS(5993), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5993), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitetitle] = ACTIONS(5993), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteyear] = ACTIONS(5993), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitedate] = ACTIONS(5993), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteurl] = ACTIONS(5993), - [anon_sym_BSLASHfullcite] = ACTIONS(5993), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5993), - [anon_sym_BSLASHcitealt] = ACTIONS(5993), - [anon_sym_BSLASHcitealp] = ACTIONS(5993), - [anon_sym_BSLASHcitetext] = ACTIONS(5993), - [anon_sym_BSLASHparencite] = ACTIONS(5993), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHParencite] = ACTIONS(5993), - [anon_sym_BSLASHfootcite] = ACTIONS(5993), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5993), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5993), - [anon_sym_BSLASHtextcite] = ACTIONS(5993), - [anon_sym_BSLASHTextcite] = ACTIONS(5993), - [anon_sym_BSLASHsmartcite] = ACTIONS(5993), - [anon_sym_BSLASHSmartcite] = ACTIONS(5993), - [anon_sym_BSLASHsupercite] = ACTIONS(5993), - [anon_sym_BSLASHautocite] = ACTIONS(5993), - [anon_sym_BSLASHAutocite] = ACTIONS(5993), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHvolcite] = ACTIONS(5993), - [anon_sym_BSLASHVolcite] = ACTIONS(5993), - [anon_sym_BSLASHpvolcite] = ACTIONS(5993), - [anon_sym_BSLASHPvolcite] = ACTIONS(5993), - [anon_sym_BSLASHfvolcite] = ACTIONS(5993), - [anon_sym_BSLASHftvolcite] = ACTIONS(5993), - [anon_sym_BSLASHsvolcite] = ACTIONS(5993), - [anon_sym_BSLASHSvolcite] = ACTIONS(5993), - [anon_sym_BSLASHtvolcite] = ACTIONS(5993), - [anon_sym_BSLASHTvolcite] = ACTIONS(5993), - [anon_sym_BSLASHavolcite] = ACTIONS(5993), - [anon_sym_BSLASHAvolcite] = ACTIONS(5993), - [anon_sym_BSLASHnotecite] = ACTIONS(5993), - [anon_sym_BSLASHNotecite] = ACTIONS(5993), - [anon_sym_BSLASHpnotecite] = ACTIONS(5993), - [anon_sym_BSLASHPnotecite] = ACTIONS(5993), - [anon_sym_BSLASHfnotecite] = ACTIONS(5993), - [anon_sym_BSLASHlabel] = ACTIONS(5993), - [anon_sym_BSLASHref] = ACTIONS(5993), - [anon_sym_BSLASHeqref] = ACTIONS(5993), - [anon_sym_BSLASHvref] = ACTIONS(5993), - [anon_sym_BSLASHVref] = ACTIONS(5993), - [anon_sym_BSLASHautoref] = ACTIONS(5993), - [anon_sym_BSLASHpageref] = ACTIONS(5993), - [anon_sym_BSLASHcref] = ACTIONS(5993), - [anon_sym_BSLASHCref] = ACTIONS(5993), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnameCref] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHlabelcref] = ACTIONS(5993), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCrefrange] = ACTIONS(5993), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnewlabel] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5993), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5993), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5995), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHdef] = ACTIONS(5993), - [anon_sym_BSLASHlet] = ACTIONS(5993), - [anon_sym_BSLASHleft] = ACTIONS(5993), - [anon_sym_BSLASHbig] = ACTIONS(5993), - [anon_sym_BSLASHBig] = ACTIONS(5993), - [anon_sym_BSLASHbigg] = ACTIONS(5993), - [anon_sym_BSLASHBigg] = ACTIONS(5993), - [anon_sym_BSLASHbigl] = ACTIONS(5993), - [anon_sym_BSLASHBigl] = ACTIONS(5993), - [anon_sym_BSLASHbiggl] = ACTIONS(5993), - [anon_sym_BSLASHBiggl] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5993), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5993), - [anon_sym_BSLASHgls] = ACTIONS(5993), - [anon_sym_BSLASHGls] = ACTIONS(5993), - [anon_sym_BSLASHGLS] = ACTIONS(5993), - [anon_sym_BSLASHglspl] = ACTIONS(5993), - [anon_sym_BSLASHGlspl] = ACTIONS(5993), - [anon_sym_BSLASHGLSpl] = ACTIONS(5993), - [anon_sym_BSLASHglsdisp] = ACTIONS(5993), - [anon_sym_BSLASHglslink] = ACTIONS(5993), - [anon_sym_BSLASHglstext] = ACTIONS(5993), - [anon_sym_BSLASHGlstext] = ACTIONS(5993), - [anon_sym_BSLASHGLStext] = ACTIONS(5993), - [anon_sym_BSLASHglsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5993), - [anon_sym_BSLASHglsplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSplural] = ACTIONS(5993), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHglsname] = ACTIONS(5993), - [anon_sym_BSLASHGlsname] = ACTIONS(5993), - [anon_sym_BSLASHGLSname] = ACTIONS(5993), - [anon_sym_BSLASHglssymbol] = ACTIONS(5993), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5993), - [anon_sym_BSLASHglsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5993), - [anon_sym_BSLASHglsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5993), - [anon_sym_BSLASHglsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5993), - [anon_sym_BSLASHglsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5993), - [anon_sym_BSLASHglsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5993), - [anon_sym_BSLASHnewacronym] = ACTIONS(5993), - [anon_sym_BSLASHacrshort] = ACTIONS(5993), - [anon_sym_BSLASHAcrshort] = ACTIONS(5993), - [anon_sym_BSLASHACRshort] = ACTIONS(5993), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5993), - [anon_sym_BSLASHacrlong] = ACTIONS(5993), - [anon_sym_BSLASHAcrlong] = ACTIONS(5993), - [anon_sym_BSLASHACRlong] = ACTIONS(5993), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5993), - [anon_sym_BSLASHacrfull] = ACTIONS(5993), - [anon_sym_BSLASHAcrfull] = ACTIONS(5993), - [anon_sym_BSLASHACRfull] = ACTIONS(5993), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5993), - [anon_sym_BSLASHacs] = ACTIONS(5993), - [anon_sym_BSLASHAcs] = ACTIONS(5993), - [anon_sym_BSLASHacsp] = ACTIONS(5993), - [anon_sym_BSLASHAcsp] = ACTIONS(5993), - [anon_sym_BSLASHacl] = ACTIONS(5993), - [anon_sym_BSLASHAcl] = ACTIONS(5993), - [anon_sym_BSLASHaclp] = ACTIONS(5993), - [anon_sym_BSLASHAclp] = ACTIONS(5993), - [anon_sym_BSLASHacf] = ACTIONS(5993), - [anon_sym_BSLASHAcf] = ACTIONS(5993), - [anon_sym_BSLASHacfp] = ACTIONS(5993), - [anon_sym_BSLASHAcfp] = ACTIONS(5993), - [anon_sym_BSLASHac] = ACTIONS(5993), - [anon_sym_BSLASHAc] = ACTIONS(5993), - [anon_sym_BSLASHacp] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5993), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5993), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5993), - [anon_sym_BSLASHcolor] = ACTIONS(5993), - [anon_sym_BSLASHcolorbox] = ACTIONS(5993), - [anon_sym_BSLASHtextcolor] = ACTIONS(5993), - [anon_sym_BSLASHpagecolor] = ACTIONS(5993), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5993), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5993), - [anon_sym_BSLASHtext] = ACTIONS(5993), - [anon_sym_BSLASHintertext] = ACTIONS(5993), - [anon_sym_shortintertext] = ACTIONS(5993), - }, - [694] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHend] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [695] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHend] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [696] = { - [sym__subsection_declaration] = STATE(210), - [sym_subsection] = STATE(649), - [aux_sym__section_repeat4] = STATE(649), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(706), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(708), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHend] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [697] = { - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(648), - [aux_sym__section_repeat5] = STATE(648), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHend] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [698] = { - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(647), - [aux_sym__section_repeat6] = STATE(647), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHend] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [699] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHend] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [700] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHend] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [701] = { - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(648), - [aux_sym__section_repeat5] = STATE(648), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHend] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [702] = { - [sym__section_part] = STATE(1414), - [sym_curly_group] = STATE(1413), - [sym_brack_group] = STATE(2864), - [sym_command_name] = ACTIONS(5828), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5828), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5830), - [anon_sym_COMMA] = ACTIONS(5830), - [anon_sym_EQ] = ACTIONS(5830), - [anon_sym_LPAREN] = ACTIONS(5830), - [anon_sym_RPAREN] = ACTIONS(5830), - [anon_sym_BSLASHpart] = ACTIONS(5828), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddpart] = ACTIONS(5828), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5830), - [anon_sym_BSLASHchapter] = ACTIONS(5828), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddchap] = ACTIONS(5828), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsection] = ACTIONS(5828), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddsec] = ACTIONS(5828), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubsection] = ACTIONS(5828), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5828), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHparagraph] = ACTIONS(5828), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5828), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5830), - [anon_sym_BSLASHitem] = ACTIONS(5828), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5830), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(5828), - [sym_placeholder] = ACTIONS(5830), - [anon_sym_PLUS] = ACTIONS(5830), - [anon_sym_DASH] = ACTIONS(5830), - [anon_sym_STAR] = ACTIONS(5830), - [anon_sym_SLASH] = ACTIONS(5830), - [anon_sym_LT] = ACTIONS(5828), - [anon_sym_GT] = ACTIONS(5828), - [anon_sym_BANG] = ACTIONS(5828), - [anon_sym_PIPE] = ACTIONS(5828), - [anon_sym_COLON] = ACTIONS(5828), - [anon_sym_SQUOTE] = ACTIONS(5828), - [anon_sym__] = ACTIONS(5830), - [anon_sym_CARET] = ACTIONS(5830), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5830), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5830), - [anon_sym_DOLLAR] = ACTIONS(5828), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5830), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5830), - [anon_sym_BSLASHbegin] = ACTIONS(5828), - [anon_sym_BSLASHtitle] = ACTIONS(5828), - [anon_sym_BSLASHauthor] = ACTIONS(5828), - [anon_sym_BSLASHusepackage] = ACTIONS(5828), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5828), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5828), - [anon_sym_BSLASHinclude] = ACTIONS(5828), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5828), - [anon_sym_BSLASHinput] = ACTIONS(5828), - [anon_sym_BSLASHsubfile] = ACTIONS(5828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5828), - [anon_sym_BSLASHbibliography] = ACTIONS(5828), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5828), - [anon_sym_BSLASHincludesvg] = ACTIONS(5828), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5828), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5828), - [anon_sym_BSLASHimport] = ACTIONS(5828), - [anon_sym_BSLASHsubimport] = ACTIONS(5828), - [anon_sym_BSLASHinputfrom] = ACTIONS(5828), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5828), - [anon_sym_BSLASHincludefrom] = ACTIONS(5828), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5828), - [anon_sym_BSLASHcaption] = ACTIONS(5828), - [anon_sym_BSLASHcite] = ACTIONS(5828), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCite] = ACTIONS(5828), - [anon_sym_BSLASHnocite] = ACTIONS(5828), - [anon_sym_BSLASHcitet] = ACTIONS(5828), - [anon_sym_BSLASHcitep] = ACTIONS(5828), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteauthor] = ACTIONS(5828), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5828), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitetitle] = ACTIONS(5828), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteyear] = ACTIONS(5828), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitedate] = ACTIONS(5828), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteurl] = ACTIONS(5828), - [anon_sym_BSLASHfullcite] = ACTIONS(5828), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5828), - [anon_sym_BSLASHcitealt] = ACTIONS(5828), - [anon_sym_BSLASHcitealp] = ACTIONS(5828), - [anon_sym_BSLASHcitetext] = ACTIONS(5828), - [anon_sym_BSLASHparencite] = ACTIONS(5828), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHParencite] = ACTIONS(5828), - [anon_sym_BSLASHfootcite] = ACTIONS(5828), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5828), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5828), - [anon_sym_BSLASHtextcite] = ACTIONS(5828), - [anon_sym_BSLASHTextcite] = ACTIONS(5828), - [anon_sym_BSLASHsmartcite] = ACTIONS(5828), - [anon_sym_BSLASHSmartcite] = ACTIONS(5828), - [anon_sym_BSLASHsupercite] = ACTIONS(5828), - [anon_sym_BSLASHautocite] = ACTIONS(5828), - [anon_sym_BSLASHAutocite] = ACTIONS(5828), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHvolcite] = ACTIONS(5828), - [anon_sym_BSLASHVolcite] = ACTIONS(5828), - [anon_sym_BSLASHpvolcite] = ACTIONS(5828), - [anon_sym_BSLASHPvolcite] = ACTIONS(5828), - [anon_sym_BSLASHfvolcite] = ACTIONS(5828), - [anon_sym_BSLASHftvolcite] = ACTIONS(5828), - [anon_sym_BSLASHsvolcite] = ACTIONS(5828), - [anon_sym_BSLASHSvolcite] = ACTIONS(5828), - [anon_sym_BSLASHtvolcite] = ACTIONS(5828), - [anon_sym_BSLASHTvolcite] = ACTIONS(5828), - [anon_sym_BSLASHavolcite] = ACTIONS(5828), - [anon_sym_BSLASHAvolcite] = ACTIONS(5828), - [anon_sym_BSLASHnotecite] = ACTIONS(5828), - [anon_sym_BSLASHNotecite] = ACTIONS(5828), - [anon_sym_BSLASHpnotecite] = ACTIONS(5828), - [anon_sym_BSLASHPnotecite] = ACTIONS(5828), - [anon_sym_BSLASHfnotecite] = ACTIONS(5828), - [anon_sym_BSLASHlabel] = ACTIONS(5828), - [anon_sym_BSLASHref] = ACTIONS(5828), - [anon_sym_BSLASHeqref] = ACTIONS(5828), - [anon_sym_BSLASHvref] = ACTIONS(5828), - [anon_sym_BSLASHVref] = ACTIONS(5828), - [anon_sym_BSLASHautoref] = ACTIONS(5828), - [anon_sym_BSLASHpageref] = ACTIONS(5828), - [anon_sym_BSLASHcref] = ACTIONS(5828), - [anon_sym_BSLASHCref] = ACTIONS(5828), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5830), - [anon_sym_BSLASHnamecref] = ACTIONS(5828), - [anon_sym_BSLASHnameCref] = ACTIONS(5828), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5828), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5828), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5828), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5828), - [anon_sym_BSLASHlabelcref] = ACTIONS(5828), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5828), - [anon_sym_BSLASHcrefrange] = ACTIONS(5828), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCrefrange] = ACTIONS(5828), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5830), - [anon_sym_BSLASHnewlabel] = ACTIONS(5828), - [anon_sym_BSLASHnewcommand] = ACTIONS(5828), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5828), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5828), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5830), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHdef] = ACTIONS(5828), - [anon_sym_BSLASHlet] = ACTIONS(5828), - [anon_sym_BSLASHleft] = ACTIONS(5828), - [anon_sym_BSLASHbig] = ACTIONS(5828), - [anon_sym_BSLASHBig] = ACTIONS(5828), - [anon_sym_BSLASHbigg] = ACTIONS(5828), - [anon_sym_BSLASHBigg] = ACTIONS(5828), - [anon_sym_BSLASHbigl] = ACTIONS(5828), - [anon_sym_BSLASHBigl] = ACTIONS(5828), - [anon_sym_BSLASHbiggl] = ACTIONS(5828), - [anon_sym_BSLASHBiggl] = ACTIONS(5828), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5828), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5828), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5828), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5828), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5828), - [anon_sym_BSLASHgls] = ACTIONS(5828), - [anon_sym_BSLASHGls] = ACTIONS(5828), - [anon_sym_BSLASHGLS] = ACTIONS(5828), - [anon_sym_BSLASHglspl] = ACTIONS(5828), - [anon_sym_BSLASHGlspl] = ACTIONS(5828), - [anon_sym_BSLASHGLSpl] = ACTIONS(5828), - [anon_sym_BSLASHglsdisp] = ACTIONS(5828), - [anon_sym_BSLASHglslink] = ACTIONS(5828), - [anon_sym_BSLASHglstext] = ACTIONS(5828), - [anon_sym_BSLASHGlstext] = ACTIONS(5828), - [anon_sym_BSLASHGLStext] = ACTIONS(5828), - [anon_sym_BSLASHglsfirst] = ACTIONS(5828), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5828), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5828), - [anon_sym_BSLASHglsplural] = ACTIONS(5828), - [anon_sym_BSLASHGlsplural] = ACTIONS(5828), - [anon_sym_BSLASHGLSplural] = ACTIONS(5828), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHglsname] = ACTIONS(5828), - [anon_sym_BSLASHGlsname] = ACTIONS(5828), - [anon_sym_BSLASHGLSname] = ACTIONS(5828), - [anon_sym_BSLASHglssymbol] = ACTIONS(5828), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5828), - [anon_sym_BSLASHglsdesc] = ACTIONS(5828), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5828), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5828), - [anon_sym_BSLASHglsuseri] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5828), - [anon_sym_BSLASHglsuserii] = ACTIONS(5828), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5828), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5828), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5828), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5828), - [anon_sym_BSLASHglsuserv] = ACTIONS(5828), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5828), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5828), - [anon_sym_BSLASHglsuservi] = ACTIONS(5828), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5828), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5828), - [anon_sym_BSLASHnewacronym] = ACTIONS(5828), - [anon_sym_BSLASHacrshort] = ACTIONS(5828), - [anon_sym_BSLASHAcrshort] = ACTIONS(5828), - [anon_sym_BSLASHACRshort] = ACTIONS(5828), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5828), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5828), - [anon_sym_BSLASHacrlong] = ACTIONS(5828), - [anon_sym_BSLASHAcrlong] = ACTIONS(5828), - [anon_sym_BSLASHACRlong] = ACTIONS(5828), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5828), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5828), - [anon_sym_BSLASHacrfull] = ACTIONS(5828), - [anon_sym_BSLASHAcrfull] = ACTIONS(5828), - [anon_sym_BSLASHACRfull] = ACTIONS(5828), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5828), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5828), - [anon_sym_BSLASHacs] = ACTIONS(5828), - [anon_sym_BSLASHAcs] = ACTIONS(5828), - [anon_sym_BSLASHacsp] = ACTIONS(5828), - [anon_sym_BSLASHAcsp] = ACTIONS(5828), - [anon_sym_BSLASHacl] = ACTIONS(5828), - [anon_sym_BSLASHAcl] = ACTIONS(5828), - [anon_sym_BSLASHaclp] = ACTIONS(5828), - [anon_sym_BSLASHAclp] = ACTIONS(5828), - [anon_sym_BSLASHacf] = ACTIONS(5828), - [anon_sym_BSLASHAcf] = ACTIONS(5828), - [anon_sym_BSLASHacfp] = ACTIONS(5828), - [anon_sym_BSLASHAcfp] = ACTIONS(5828), - [anon_sym_BSLASHac] = ACTIONS(5828), - [anon_sym_BSLASHAc] = ACTIONS(5828), - [anon_sym_BSLASHacp] = ACTIONS(5828), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5828), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5828), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5828), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5828), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5828), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5828), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5828), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5830), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5828), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5830), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5828), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5828), - [anon_sym_BSLASHcolor] = ACTIONS(5828), - [anon_sym_BSLASHcolorbox] = ACTIONS(5828), - [anon_sym_BSLASHtextcolor] = ACTIONS(5828), - [anon_sym_BSLASHpagecolor] = ACTIONS(5828), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5828), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5828), - [anon_sym_BSLASHtext] = ACTIONS(5828), - [anon_sym_BSLASHintertext] = ACTIONS(5828), - [anon_sym_shortintertext] = ACTIONS(5828), - }, - [703] = { - [sym__section_part] = STATE(1412), - [sym_curly_group] = STATE(1413), - [sym_brack_group] = STATE(2864), - [sym_command_name] = ACTIONS(5832), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5832), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5834), - [anon_sym_COMMA] = ACTIONS(5834), - [anon_sym_EQ] = ACTIONS(5834), - [anon_sym_LPAREN] = ACTIONS(5834), - [anon_sym_RPAREN] = ACTIONS(5834), - [anon_sym_BSLASHpart] = ACTIONS(5832), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddpart] = ACTIONS(5832), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5834), - [anon_sym_BSLASHchapter] = ACTIONS(5832), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddchap] = ACTIONS(5832), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsection] = ACTIONS(5832), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddsec] = ACTIONS(5832), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubsection] = ACTIONS(5832), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5832), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHparagraph] = ACTIONS(5832), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5832), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5834), - [anon_sym_BSLASHitem] = ACTIONS(5832), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5834), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(5832), - [sym_placeholder] = ACTIONS(5834), - [anon_sym_PLUS] = ACTIONS(5834), - [anon_sym_DASH] = ACTIONS(5834), - [anon_sym_STAR] = ACTIONS(5834), - [anon_sym_SLASH] = ACTIONS(5834), - [anon_sym_LT] = ACTIONS(5832), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_BANG] = ACTIONS(5832), - [anon_sym_PIPE] = ACTIONS(5832), - [anon_sym_COLON] = ACTIONS(5832), - [anon_sym_SQUOTE] = ACTIONS(5832), - [anon_sym__] = ACTIONS(5834), - [anon_sym_CARET] = ACTIONS(5834), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5834), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5834), - [anon_sym_DOLLAR] = ACTIONS(5832), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5834), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5834), - [anon_sym_BSLASHbegin] = ACTIONS(5832), - [anon_sym_BSLASHtitle] = ACTIONS(5832), - [anon_sym_BSLASHauthor] = ACTIONS(5832), - [anon_sym_BSLASHusepackage] = ACTIONS(5832), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5832), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5832), - [anon_sym_BSLASHinclude] = ACTIONS(5832), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5832), - [anon_sym_BSLASHinput] = ACTIONS(5832), - [anon_sym_BSLASHsubfile] = ACTIONS(5832), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5832), - [anon_sym_BSLASHbibliography] = ACTIONS(5832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5832), - [anon_sym_BSLASHincludesvg] = ACTIONS(5832), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5832), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5832), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5832), - [anon_sym_BSLASHimport] = ACTIONS(5832), - [anon_sym_BSLASHsubimport] = ACTIONS(5832), - [anon_sym_BSLASHinputfrom] = ACTIONS(5832), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5832), - [anon_sym_BSLASHincludefrom] = ACTIONS(5832), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5832), - [anon_sym_BSLASHcaption] = ACTIONS(5832), - [anon_sym_BSLASHcite] = ACTIONS(5832), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCite] = ACTIONS(5832), - [anon_sym_BSLASHnocite] = ACTIONS(5832), - [anon_sym_BSLASHcitet] = ACTIONS(5832), - [anon_sym_BSLASHcitep] = ACTIONS(5832), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteauthor] = ACTIONS(5832), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5832), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitetitle] = ACTIONS(5832), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteyear] = ACTIONS(5832), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitedate] = ACTIONS(5832), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteurl] = ACTIONS(5832), - [anon_sym_BSLASHfullcite] = ACTIONS(5832), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5832), - [anon_sym_BSLASHcitealt] = ACTIONS(5832), - [anon_sym_BSLASHcitealp] = ACTIONS(5832), - [anon_sym_BSLASHcitetext] = ACTIONS(5832), - [anon_sym_BSLASHparencite] = ACTIONS(5832), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHParencite] = ACTIONS(5832), - [anon_sym_BSLASHfootcite] = ACTIONS(5832), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5832), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5832), - [anon_sym_BSLASHtextcite] = ACTIONS(5832), - [anon_sym_BSLASHTextcite] = ACTIONS(5832), - [anon_sym_BSLASHsmartcite] = ACTIONS(5832), - [anon_sym_BSLASHSmartcite] = ACTIONS(5832), - [anon_sym_BSLASHsupercite] = ACTIONS(5832), - [anon_sym_BSLASHautocite] = ACTIONS(5832), - [anon_sym_BSLASHAutocite] = ACTIONS(5832), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHvolcite] = ACTIONS(5832), - [anon_sym_BSLASHVolcite] = ACTIONS(5832), - [anon_sym_BSLASHpvolcite] = ACTIONS(5832), - [anon_sym_BSLASHPvolcite] = ACTIONS(5832), - [anon_sym_BSLASHfvolcite] = ACTIONS(5832), - [anon_sym_BSLASHftvolcite] = ACTIONS(5832), - [anon_sym_BSLASHsvolcite] = ACTIONS(5832), - [anon_sym_BSLASHSvolcite] = ACTIONS(5832), - [anon_sym_BSLASHtvolcite] = ACTIONS(5832), - [anon_sym_BSLASHTvolcite] = ACTIONS(5832), - [anon_sym_BSLASHavolcite] = ACTIONS(5832), - [anon_sym_BSLASHAvolcite] = ACTIONS(5832), - [anon_sym_BSLASHnotecite] = ACTIONS(5832), - [anon_sym_BSLASHNotecite] = ACTIONS(5832), - [anon_sym_BSLASHpnotecite] = ACTIONS(5832), - [anon_sym_BSLASHPnotecite] = ACTIONS(5832), - [anon_sym_BSLASHfnotecite] = ACTIONS(5832), - [anon_sym_BSLASHlabel] = ACTIONS(5832), - [anon_sym_BSLASHref] = ACTIONS(5832), - [anon_sym_BSLASHeqref] = ACTIONS(5832), - [anon_sym_BSLASHvref] = ACTIONS(5832), - [anon_sym_BSLASHVref] = ACTIONS(5832), - [anon_sym_BSLASHautoref] = ACTIONS(5832), - [anon_sym_BSLASHpageref] = ACTIONS(5832), - [anon_sym_BSLASHcref] = ACTIONS(5832), - [anon_sym_BSLASHCref] = ACTIONS(5832), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5834), - [anon_sym_BSLASHnamecref] = ACTIONS(5832), - [anon_sym_BSLASHnameCref] = ACTIONS(5832), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5832), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5832), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5832), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5832), - [anon_sym_BSLASHlabelcref] = ACTIONS(5832), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5832), - [anon_sym_BSLASHcrefrange] = ACTIONS(5832), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCrefrange] = ACTIONS(5832), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5834), - [anon_sym_BSLASHnewlabel] = ACTIONS(5832), - [anon_sym_BSLASHnewcommand] = ACTIONS(5832), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5832), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5832), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5834), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHdef] = ACTIONS(5832), - [anon_sym_BSLASHlet] = ACTIONS(5832), - [anon_sym_BSLASHleft] = ACTIONS(5832), - [anon_sym_BSLASHbig] = ACTIONS(5832), - [anon_sym_BSLASHBig] = ACTIONS(5832), - [anon_sym_BSLASHbigg] = ACTIONS(5832), - [anon_sym_BSLASHBigg] = ACTIONS(5832), - [anon_sym_BSLASHbigl] = ACTIONS(5832), - [anon_sym_BSLASHBigl] = ACTIONS(5832), - [anon_sym_BSLASHbiggl] = ACTIONS(5832), - [anon_sym_BSLASHBiggl] = ACTIONS(5832), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5832), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5832), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5832), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5832), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5832), - [anon_sym_BSLASHgls] = ACTIONS(5832), - [anon_sym_BSLASHGls] = ACTIONS(5832), - [anon_sym_BSLASHGLS] = ACTIONS(5832), - [anon_sym_BSLASHglspl] = ACTIONS(5832), - [anon_sym_BSLASHGlspl] = ACTIONS(5832), - [anon_sym_BSLASHGLSpl] = ACTIONS(5832), - [anon_sym_BSLASHglsdisp] = ACTIONS(5832), - [anon_sym_BSLASHglslink] = ACTIONS(5832), - [anon_sym_BSLASHglstext] = ACTIONS(5832), - [anon_sym_BSLASHGlstext] = ACTIONS(5832), - [anon_sym_BSLASHGLStext] = ACTIONS(5832), - [anon_sym_BSLASHglsfirst] = ACTIONS(5832), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5832), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5832), - [anon_sym_BSLASHglsplural] = ACTIONS(5832), - [anon_sym_BSLASHGlsplural] = ACTIONS(5832), - [anon_sym_BSLASHGLSplural] = ACTIONS(5832), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHglsname] = ACTIONS(5832), - [anon_sym_BSLASHGlsname] = ACTIONS(5832), - [anon_sym_BSLASHGLSname] = ACTIONS(5832), - [anon_sym_BSLASHglssymbol] = ACTIONS(5832), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5832), - [anon_sym_BSLASHglsdesc] = ACTIONS(5832), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5832), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5832), - [anon_sym_BSLASHglsuseri] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5832), - [anon_sym_BSLASHglsuserii] = ACTIONS(5832), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5832), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5832), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5832), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5832), - [anon_sym_BSLASHglsuserv] = ACTIONS(5832), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5832), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5832), - [anon_sym_BSLASHglsuservi] = ACTIONS(5832), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5832), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5832), - [anon_sym_BSLASHnewacronym] = ACTIONS(5832), - [anon_sym_BSLASHacrshort] = ACTIONS(5832), - [anon_sym_BSLASHAcrshort] = ACTIONS(5832), - [anon_sym_BSLASHACRshort] = ACTIONS(5832), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5832), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5832), - [anon_sym_BSLASHacrlong] = ACTIONS(5832), - [anon_sym_BSLASHAcrlong] = ACTIONS(5832), - [anon_sym_BSLASHACRlong] = ACTIONS(5832), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5832), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5832), - [anon_sym_BSLASHacrfull] = ACTIONS(5832), - [anon_sym_BSLASHAcrfull] = ACTIONS(5832), - [anon_sym_BSLASHACRfull] = ACTIONS(5832), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5832), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5832), - [anon_sym_BSLASHacs] = ACTIONS(5832), - [anon_sym_BSLASHAcs] = ACTIONS(5832), - [anon_sym_BSLASHacsp] = ACTIONS(5832), - [anon_sym_BSLASHAcsp] = ACTIONS(5832), - [anon_sym_BSLASHacl] = ACTIONS(5832), - [anon_sym_BSLASHAcl] = ACTIONS(5832), - [anon_sym_BSLASHaclp] = ACTIONS(5832), - [anon_sym_BSLASHAclp] = ACTIONS(5832), - [anon_sym_BSLASHacf] = ACTIONS(5832), - [anon_sym_BSLASHAcf] = ACTIONS(5832), - [anon_sym_BSLASHacfp] = ACTIONS(5832), - [anon_sym_BSLASHAcfp] = ACTIONS(5832), - [anon_sym_BSLASHac] = ACTIONS(5832), - [anon_sym_BSLASHAc] = ACTIONS(5832), - [anon_sym_BSLASHacp] = ACTIONS(5832), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5832), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5832), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5832), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5832), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5832), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5832), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5832), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5834), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5832), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5834), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5832), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5832), - [anon_sym_BSLASHcolor] = ACTIONS(5832), - [anon_sym_BSLASHcolorbox] = ACTIONS(5832), - [anon_sym_BSLASHtextcolor] = ACTIONS(5832), - [anon_sym_BSLASHpagecolor] = ACTIONS(5832), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5832), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5832), - [anon_sym_BSLASHtext] = ACTIONS(5832), - [anon_sym_BSLASHintertext] = ACTIONS(5832), - [anon_sym_shortintertext] = ACTIONS(5832), - }, - [704] = { - [sym__section_part] = STATE(1411), - [sym_curly_group] = STATE(1413), - [sym_brack_group] = STATE(2864), - [sym_command_name] = ACTIONS(5836), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5836), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5838), - [anon_sym_COMMA] = ACTIONS(5838), - [anon_sym_EQ] = ACTIONS(5838), - [anon_sym_LPAREN] = ACTIONS(5838), - [anon_sym_RPAREN] = ACTIONS(5838), - [anon_sym_BSLASHpart] = ACTIONS(5836), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddpart] = ACTIONS(5836), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5838), - [anon_sym_BSLASHchapter] = ACTIONS(5836), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddchap] = ACTIONS(5836), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsection] = ACTIONS(5836), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddsec] = ACTIONS(5836), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubsection] = ACTIONS(5836), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5836), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHparagraph] = ACTIONS(5836), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5836), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5838), - [anon_sym_BSLASHitem] = ACTIONS(5836), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5838), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(5836), - [sym_placeholder] = ACTIONS(5838), - [anon_sym_PLUS] = ACTIONS(5838), - [anon_sym_DASH] = ACTIONS(5838), - [anon_sym_STAR] = ACTIONS(5838), - [anon_sym_SLASH] = ACTIONS(5838), - [anon_sym_LT] = ACTIONS(5836), - [anon_sym_GT] = ACTIONS(5836), - [anon_sym_BANG] = ACTIONS(5836), - [anon_sym_PIPE] = ACTIONS(5836), - [anon_sym_COLON] = ACTIONS(5836), - [anon_sym_SQUOTE] = ACTIONS(5836), - [anon_sym__] = ACTIONS(5838), - [anon_sym_CARET] = ACTIONS(5838), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5838), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5838), - [anon_sym_DOLLAR] = ACTIONS(5836), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5838), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5838), - [anon_sym_BSLASHbegin] = ACTIONS(5836), - [anon_sym_BSLASHtitle] = ACTIONS(5836), - [anon_sym_BSLASHauthor] = ACTIONS(5836), - [anon_sym_BSLASHusepackage] = ACTIONS(5836), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5836), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5836), - [anon_sym_BSLASHinclude] = ACTIONS(5836), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5836), - [anon_sym_BSLASHinput] = ACTIONS(5836), - [anon_sym_BSLASHsubfile] = ACTIONS(5836), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5836), - [anon_sym_BSLASHbibliography] = ACTIONS(5836), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5836), - [anon_sym_BSLASHincludesvg] = ACTIONS(5836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5836), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5836), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5836), - [anon_sym_BSLASHimport] = ACTIONS(5836), - [anon_sym_BSLASHsubimport] = ACTIONS(5836), - [anon_sym_BSLASHinputfrom] = ACTIONS(5836), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5836), - [anon_sym_BSLASHincludefrom] = ACTIONS(5836), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5836), - [anon_sym_BSLASHcaption] = ACTIONS(5836), - [anon_sym_BSLASHcite] = ACTIONS(5836), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCite] = ACTIONS(5836), - [anon_sym_BSLASHnocite] = ACTIONS(5836), - [anon_sym_BSLASHcitet] = ACTIONS(5836), - [anon_sym_BSLASHcitep] = ACTIONS(5836), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteauthor] = ACTIONS(5836), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5836), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitetitle] = ACTIONS(5836), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteyear] = ACTIONS(5836), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitedate] = ACTIONS(5836), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteurl] = ACTIONS(5836), - [anon_sym_BSLASHfullcite] = ACTIONS(5836), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5836), - [anon_sym_BSLASHcitealt] = ACTIONS(5836), - [anon_sym_BSLASHcitealp] = ACTIONS(5836), - [anon_sym_BSLASHcitetext] = ACTIONS(5836), - [anon_sym_BSLASHparencite] = ACTIONS(5836), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHParencite] = ACTIONS(5836), - [anon_sym_BSLASHfootcite] = ACTIONS(5836), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5836), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5836), - [anon_sym_BSLASHtextcite] = ACTIONS(5836), - [anon_sym_BSLASHTextcite] = ACTIONS(5836), - [anon_sym_BSLASHsmartcite] = ACTIONS(5836), - [anon_sym_BSLASHSmartcite] = ACTIONS(5836), - [anon_sym_BSLASHsupercite] = ACTIONS(5836), - [anon_sym_BSLASHautocite] = ACTIONS(5836), - [anon_sym_BSLASHAutocite] = ACTIONS(5836), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHvolcite] = ACTIONS(5836), - [anon_sym_BSLASHVolcite] = ACTIONS(5836), - [anon_sym_BSLASHpvolcite] = ACTIONS(5836), - [anon_sym_BSLASHPvolcite] = ACTIONS(5836), - [anon_sym_BSLASHfvolcite] = ACTIONS(5836), - [anon_sym_BSLASHftvolcite] = ACTIONS(5836), - [anon_sym_BSLASHsvolcite] = ACTIONS(5836), - [anon_sym_BSLASHSvolcite] = ACTIONS(5836), - [anon_sym_BSLASHtvolcite] = ACTIONS(5836), - [anon_sym_BSLASHTvolcite] = ACTIONS(5836), - [anon_sym_BSLASHavolcite] = ACTIONS(5836), - [anon_sym_BSLASHAvolcite] = ACTIONS(5836), - [anon_sym_BSLASHnotecite] = ACTIONS(5836), - [anon_sym_BSLASHNotecite] = ACTIONS(5836), - [anon_sym_BSLASHpnotecite] = ACTIONS(5836), - [anon_sym_BSLASHPnotecite] = ACTIONS(5836), - [anon_sym_BSLASHfnotecite] = ACTIONS(5836), - [anon_sym_BSLASHlabel] = ACTIONS(5836), - [anon_sym_BSLASHref] = ACTIONS(5836), - [anon_sym_BSLASHeqref] = ACTIONS(5836), - [anon_sym_BSLASHvref] = ACTIONS(5836), - [anon_sym_BSLASHVref] = ACTIONS(5836), - [anon_sym_BSLASHautoref] = ACTIONS(5836), - [anon_sym_BSLASHpageref] = ACTIONS(5836), - [anon_sym_BSLASHcref] = ACTIONS(5836), - [anon_sym_BSLASHCref] = ACTIONS(5836), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5838), - [anon_sym_BSLASHnamecref] = ACTIONS(5836), - [anon_sym_BSLASHnameCref] = ACTIONS(5836), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5836), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5836), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5836), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5836), - [anon_sym_BSLASHlabelcref] = ACTIONS(5836), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5836), - [anon_sym_BSLASHcrefrange] = ACTIONS(5836), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCrefrange] = ACTIONS(5836), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5838), - [anon_sym_BSLASHnewlabel] = ACTIONS(5836), - [anon_sym_BSLASHnewcommand] = ACTIONS(5836), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5836), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5836), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5838), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHdef] = ACTIONS(5836), - [anon_sym_BSLASHlet] = ACTIONS(5836), - [anon_sym_BSLASHleft] = ACTIONS(5836), - [anon_sym_BSLASHbig] = ACTIONS(5836), - [anon_sym_BSLASHBig] = ACTIONS(5836), - [anon_sym_BSLASHbigg] = ACTIONS(5836), - [anon_sym_BSLASHBigg] = ACTIONS(5836), - [anon_sym_BSLASHbigl] = ACTIONS(5836), - [anon_sym_BSLASHBigl] = ACTIONS(5836), - [anon_sym_BSLASHbiggl] = ACTIONS(5836), - [anon_sym_BSLASHBiggl] = ACTIONS(5836), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5836), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5836), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5836), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5836), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5836), - [anon_sym_BSLASHgls] = ACTIONS(5836), - [anon_sym_BSLASHGls] = ACTIONS(5836), - [anon_sym_BSLASHGLS] = ACTIONS(5836), - [anon_sym_BSLASHglspl] = ACTIONS(5836), - [anon_sym_BSLASHGlspl] = ACTIONS(5836), - [anon_sym_BSLASHGLSpl] = ACTIONS(5836), - [anon_sym_BSLASHglsdisp] = ACTIONS(5836), - [anon_sym_BSLASHglslink] = ACTIONS(5836), - [anon_sym_BSLASHglstext] = ACTIONS(5836), - [anon_sym_BSLASHGlstext] = ACTIONS(5836), - [anon_sym_BSLASHGLStext] = ACTIONS(5836), - [anon_sym_BSLASHglsfirst] = ACTIONS(5836), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5836), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5836), - [anon_sym_BSLASHglsplural] = ACTIONS(5836), - [anon_sym_BSLASHGlsplural] = ACTIONS(5836), - [anon_sym_BSLASHGLSplural] = ACTIONS(5836), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHglsname] = ACTIONS(5836), - [anon_sym_BSLASHGlsname] = ACTIONS(5836), - [anon_sym_BSLASHGLSname] = ACTIONS(5836), - [anon_sym_BSLASHglssymbol] = ACTIONS(5836), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5836), - [anon_sym_BSLASHglsdesc] = ACTIONS(5836), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5836), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5836), - [anon_sym_BSLASHglsuseri] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5836), - [anon_sym_BSLASHglsuserii] = ACTIONS(5836), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5836), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5836), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5836), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5836), - [anon_sym_BSLASHglsuserv] = ACTIONS(5836), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5836), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5836), - [anon_sym_BSLASHglsuservi] = ACTIONS(5836), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5836), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5836), - [anon_sym_BSLASHnewacronym] = ACTIONS(5836), - [anon_sym_BSLASHacrshort] = ACTIONS(5836), - [anon_sym_BSLASHAcrshort] = ACTIONS(5836), - [anon_sym_BSLASHACRshort] = ACTIONS(5836), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5836), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5836), - [anon_sym_BSLASHacrlong] = ACTIONS(5836), - [anon_sym_BSLASHAcrlong] = ACTIONS(5836), - [anon_sym_BSLASHACRlong] = ACTIONS(5836), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5836), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5836), - [anon_sym_BSLASHacrfull] = ACTIONS(5836), - [anon_sym_BSLASHAcrfull] = ACTIONS(5836), - [anon_sym_BSLASHACRfull] = ACTIONS(5836), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5836), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5836), - [anon_sym_BSLASHacs] = ACTIONS(5836), - [anon_sym_BSLASHAcs] = ACTIONS(5836), - [anon_sym_BSLASHacsp] = ACTIONS(5836), - [anon_sym_BSLASHAcsp] = ACTIONS(5836), - [anon_sym_BSLASHacl] = ACTIONS(5836), - [anon_sym_BSLASHAcl] = ACTIONS(5836), - [anon_sym_BSLASHaclp] = ACTIONS(5836), - [anon_sym_BSLASHAclp] = ACTIONS(5836), - [anon_sym_BSLASHacf] = ACTIONS(5836), - [anon_sym_BSLASHAcf] = ACTIONS(5836), - [anon_sym_BSLASHacfp] = ACTIONS(5836), - [anon_sym_BSLASHAcfp] = ACTIONS(5836), - [anon_sym_BSLASHac] = ACTIONS(5836), - [anon_sym_BSLASHAc] = ACTIONS(5836), - [anon_sym_BSLASHacp] = ACTIONS(5836), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5836), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5836), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5836), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5836), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5836), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5836), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5836), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5838), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5836), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5838), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5836), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5836), - [anon_sym_BSLASHcolor] = ACTIONS(5836), - [anon_sym_BSLASHcolorbox] = ACTIONS(5836), - [anon_sym_BSLASHtextcolor] = ACTIONS(5836), - [anon_sym_BSLASHpagecolor] = ACTIONS(5836), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5836), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5836), - [anon_sym_BSLASHtext] = ACTIONS(5836), - [anon_sym_BSLASHintertext] = ACTIONS(5836), - [anon_sym_shortintertext] = ACTIONS(5836), - }, - [705] = { - [sym__section_part] = STATE(1410), - [sym_curly_group] = STATE(1413), - [sym_brack_group] = STATE(2864), - [sym_command_name] = ACTIONS(5840), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5840), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5842), - [anon_sym_COMMA] = ACTIONS(5842), - [anon_sym_EQ] = ACTIONS(5842), - [anon_sym_LPAREN] = ACTIONS(5842), - [anon_sym_RPAREN] = ACTIONS(5842), - [anon_sym_BSLASHpart] = ACTIONS(5840), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddpart] = ACTIONS(5840), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5842), - [anon_sym_BSLASHchapter] = ACTIONS(5840), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddchap] = ACTIONS(5840), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsection] = ACTIONS(5840), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddsec] = ACTIONS(5840), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubsection] = ACTIONS(5840), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5840), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHparagraph] = ACTIONS(5840), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5840), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5842), - [anon_sym_BSLASHitem] = ACTIONS(5840), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5842), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(5840), - [sym_placeholder] = ACTIONS(5842), - [anon_sym_PLUS] = ACTIONS(5842), - [anon_sym_DASH] = ACTIONS(5842), - [anon_sym_STAR] = ACTIONS(5842), - [anon_sym_SLASH] = ACTIONS(5842), - [anon_sym_LT] = ACTIONS(5840), - [anon_sym_GT] = ACTIONS(5840), - [anon_sym_BANG] = ACTIONS(5840), - [anon_sym_PIPE] = ACTIONS(5840), - [anon_sym_COLON] = ACTIONS(5840), - [anon_sym_SQUOTE] = ACTIONS(5840), - [anon_sym__] = ACTIONS(5842), - [anon_sym_CARET] = ACTIONS(5842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5842), - [anon_sym_DOLLAR] = ACTIONS(5840), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5842), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5842), - [anon_sym_BSLASHbegin] = ACTIONS(5840), - [anon_sym_BSLASHtitle] = ACTIONS(5840), - [anon_sym_BSLASHauthor] = ACTIONS(5840), - [anon_sym_BSLASHusepackage] = ACTIONS(5840), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5840), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5840), - [anon_sym_BSLASHinclude] = ACTIONS(5840), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5840), - [anon_sym_BSLASHinput] = ACTIONS(5840), - [anon_sym_BSLASHsubfile] = ACTIONS(5840), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5840), - [anon_sym_BSLASHbibliography] = ACTIONS(5840), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5840), - [anon_sym_BSLASHincludesvg] = ACTIONS(5840), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5840), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5840), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5840), - [anon_sym_BSLASHimport] = ACTIONS(5840), - [anon_sym_BSLASHsubimport] = ACTIONS(5840), - [anon_sym_BSLASHinputfrom] = ACTIONS(5840), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5840), - [anon_sym_BSLASHincludefrom] = ACTIONS(5840), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5840), - [anon_sym_BSLASHcaption] = ACTIONS(5840), - [anon_sym_BSLASHcite] = ACTIONS(5840), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCite] = ACTIONS(5840), - [anon_sym_BSLASHnocite] = ACTIONS(5840), - [anon_sym_BSLASHcitet] = ACTIONS(5840), - [anon_sym_BSLASHcitep] = ACTIONS(5840), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteauthor] = ACTIONS(5840), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5840), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitetitle] = ACTIONS(5840), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteyear] = ACTIONS(5840), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitedate] = ACTIONS(5840), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteurl] = ACTIONS(5840), - [anon_sym_BSLASHfullcite] = ACTIONS(5840), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5840), - [anon_sym_BSLASHcitealt] = ACTIONS(5840), - [anon_sym_BSLASHcitealp] = ACTIONS(5840), - [anon_sym_BSLASHcitetext] = ACTIONS(5840), - [anon_sym_BSLASHparencite] = ACTIONS(5840), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHParencite] = ACTIONS(5840), - [anon_sym_BSLASHfootcite] = ACTIONS(5840), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5840), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5840), - [anon_sym_BSLASHtextcite] = ACTIONS(5840), - [anon_sym_BSLASHTextcite] = ACTIONS(5840), - [anon_sym_BSLASHsmartcite] = ACTIONS(5840), - [anon_sym_BSLASHSmartcite] = ACTIONS(5840), - [anon_sym_BSLASHsupercite] = ACTIONS(5840), - [anon_sym_BSLASHautocite] = ACTIONS(5840), - [anon_sym_BSLASHAutocite] = ACTIONS(5840), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHvolcite] = ACTIONS(5840), - [anon_sym_BSLASHVolcite] = ACTIONS(5840), - [anon_sym_BSLASHpvolcite] = ACTIONS(5840), - [anon_sym_BSLASHPvolcite] = ACTIONS(5840), - [anon_sym_BSLASHfvolcite] = ACTIONS(5840), - [anon_sym_BSLASHftvolcite] = ACTIONS(5840), - [anon_sym_BSLASHsvolcite] = ACTIONS(5840), - [anon_sym_BSLASHSvolcite] = ACTIONS(5840), - [anon_sym_BSLASHtvolcite] = ACTIONS(5840), - [anon_sym_BSLASHTvolcite] = ACTIONS(5840), - [anon_sym_BSLASHavolcite] = ACTIONS(5840), - [anon_sym_BSLASHAvolcite] = ACTIONS(5840), - [anon_sym_BSLASHnotecite] = ACTIONS(5840), - [anon_sym_BSLASHNotecite] = ACTIONS(5840), - [anon_sym_BSLASHpnotecite] = ACTIONS(5840), - [anon_sym_BSLASHPnotecite] = ACTIONS(5840), - [anon_sym_BSLASHfnotecite] = ACTIONS(5840), - [anon_sym_BSLASHlabel] = ACTIONS(5840), - [anon_sym_BSLASHref] = ACTIONS(5840), - [anon_sym_BSLASHeqref] = ACTIONS(5840), - [anon_sym_BSLASHvref] = ACTIONS(5840), - [anon_sym_BSLASHVref] = ACTIONS(5840), - [anon_sym_BSLASHautoref] = ACTIONS(5840), - [anon_sym_BSLASHpageref] = ACTIONS(5840), - [anon_sym_BSLASHcref] = ACTIONS(5840), - [anon_sym_BSLASHCref] = ACTIONS(5840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5842), - [anon_sym_BSLASHnamecref] = ACTIONS(5840), - [anon_sym_BSLASHnameCref] = ACTIONS(5840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5840), - [anon_sym_BSLASHlabelcref] = ACTIONS(5840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5840), - [anon_sym_BSLASHcrefrange] = ACTIONS(5840), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCrefrange] = ACTIONS(5840), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5842), - [anon_sym_BSLASHnewlabel] = ACTIONS(5840), - [anon_sym_BSLASHnewcommand] = ACTIONS(5840), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5840), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5840), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5842), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHdef] = ACTIONS(5840), - [anon_sym_BSLASHlet] = ACTIONS(5840), - [anon_sym_BSLASHleft] = ACTIONS(5840), - [anon_sym_BSLASHbig] = ACTIONS(5840), - [anon_sym_BSLASHBig] = ACTIONS(5840), - [anon_sym_BSLASHbigg] = ACTIONS(5840), - [anon_sym_BSLASHBigg] = ACTIONS(5840), - [anon_sym_BSLASHbigl] = ACTIONS(5840), - [anon_sym_BSLASHBigl] = ACTIONS(5840), - [anon_sym_BSLASHbiggl] = ACTIONS(5840), - [anon_sym_BSLASHBiggl] = ACTIONS(5840), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5840), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5840), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5840), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5840), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5840), - [anon_sym_BSLASHgls] = ACTIONS(5840), - [anon_sym_BSLASHGls] = ACTIONS(5840), - [anon_sym_BSLASHGLS] = ACTIONS(5840), - [anon_sym_BSLASHglspl] = ACTIONS(5840), - [anon_sym_BSLASHGlspl] = ACTIONS(5840), - [anon_sym_BSLASHGLSpl] = ACTIONS(5840), - [anon_sym_BSLASHglsdisp] = ACTIONS(5840), - [anon_sym_BSLASHglslink] = ACTIONS(5840), - [anon_sym_BSLASHglstext] = ACTIONS(5840), - [anon_sym_BSLASHGlstext] = ACTIONS(5840), - [anon_sym_BSLASHGLStext] = ACTIONS(5840), - [anon_sym_BSLASHglsfirst] = ACTIONS(5840), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5840), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5840), - [anon_sym_BSLASHglsplural] = ACTIONS(5840), - [anon_sym_BSLASHGlsplural] = ACTIONS(5840), - [anon_sym_BSLASHGLSplural] = ACTIONS(5840), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHglsname] = ACTIONS(5840), - [anon_sym_BSLASHGlsname] = ACTIONS(5840), - [anon_sym_BSLASHGLSname] = ACTIONS(5840), - [anon_sym_BSLASHglssymbol] = ACTIONS(5840), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5840), - [anon_sym_BSLASHglsdesc] = ACTIONS(5840), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5840), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5840), - [anon_sym_BSLASHglsuseri] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5840), - [anon_sym_BSLASHglsuserii] = ACTIONS(5840), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5840), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5840), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5840), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5840), - [anon_sym_BSLASHglsuserv] = ACTIONS(5840), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5840), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5840), - [anon_sym_BSLASHglsuservi] = ACTIONS(5840), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5840), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5840), - [anon_sym_BSLASHnewacronym] = ACTIONS(5840), - [anon_sym_BSLASHacrshort] = ACTIONS(5840), - [anon_sym_BSLASHAcrshort] = ACTIONS(5840), - [anon_sym_BSLASHACRshort] = ACTIONS(5840), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5840), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5840), - [anon_sym_BSLASHacrlong] = ACTIONS(5840), - [anon_sym_BSLASHAcrlong] = ACTIONS(5840), - [anon_sym_BSLASHACRlong] = ACTIONS(5840), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5840), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5840), - [anon_sym_BSLASHacrfull] = ACTIONS(5840), - [anon_sym_BSLASHAcrfull] = ACTIONS(5840), - [anon_sym_BSLASHACRfull] = ACTIONS(5840), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5840), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5840), - [anon_sym_BSLASHacs] = ACTIONS(5840), - [anon_sym_BSLASHAcs] = ACTIONS(5840), - [anon_sym_BSLASHacsp] = ACTIONS(5840), - [anon_sym_BSLASHAcsp] = ACTIONS(5840), - [anon_sym_BSLASHacl] = ACTIONS(5840), - [anon_sym_BSLASHAcl] = ACTIONS(5840), - [anon_sym_BSLASHaclp] = ACTIONS(5840), - [anon_sym_BSLASHAclp] = ACTIONS(5840), - [anon_sym_BSLASHacf] = ACTIONS(5840), - [anon_sym_BSLASHAcf] = ACTIONS(5840), - [anon_sym_BSLASHacfp] = ACTIONS(5840), - [anon_sym_BSLASHAcfp] = ACTIONS(5840), - [anon_sym_BSLASHac] = ACTIONS(5840), - [anon_sym_BSLASHAc] = ACTIONS(5840), - [anon_sym_BSLASHacp] = ACTIONS(5840), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5840), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5840), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5840), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5840), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5840), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5840), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5840), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5842), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5840), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5842), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5840), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5840), - [anon_sym_BSLASHcolor] = ACTIONS(5840), - [anon_sym_BSLASHcolorbox] = ACTIONS(5840), - [anon_sym_BSLASHtextcolor] = ACTIONS(5840), - [anon_sym_BSLASHpagecolor] = ACTIONS(5840), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5840), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5840), - [anon_sym_BSLASHtext] = ACTIONS(5840), - [anon_sym_BSLASHintertext] = ACTIONS(5840), - [anon_sym_shortintertext] = ACTIONS(5840), - }, - [706] = { - [sym__section_part] = STATE(1409), - [sym_curly_group] = STATE(1413), - [sym_brack_group] = STATE(2864), - [sym_command_name] = ACTIONS(5848), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5848), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5850), - [anon_sym_COMMA] = ACTIONS(5850), - [anon_sym_EQ] = ACTIONS(5850), - [anon_sym_LPAREN] = ACTIONS(5850), - [anon_sym_RPAREN] = ACTIONS(5850), - [anon_sym_BSLASHpart] = ACTIONS(5848), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddpart] = ACTIONS(5848), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5850), - [anon_sym_BSLASHchapter] = ACTIONS(5848), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddchap] = ACTIONS(5848), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsection] = ACTIONS(5848), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddsec] = ACTIONS(5848), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubsection] = ACTIONS(5848), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5848), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHparagraph] = ACTIONS(5848), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5848), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5850), - [anon_sym_BSLASHitem] = ACTIONS(5848), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5850), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(5848), - [sym_placeholder] = ACTIONS(5850), - [anon_sym_PLUS] = ACTIONS(5850), - [anon_sym_DASH] = ACTIONS(5850), - [anon_sym_STAR] = ACTIONS(5850), - [anon_sym_SLASH] = ACTIONS(5850), - [anon_sym_LT] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5848), - [anon_sym_BANG] = ACTIONS(5848), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_COLON] = ACTIONS(5848), - [anon_sym_SQUOTE] = ACTIONS(5848), - [anon_sym__] = ACTIONS(5850), - [anon_sym_CARET] = ACTIONS(5850), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5850), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5850), - [anon_sym_DOLLAR] = ACTIONS(5848), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5850), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5850), - [anon_sym_BSLASHbegin] = ACTIONS(5848), - [anon_sym_BSLASHtitle] = ACTIONS(5848), - [anon_sym_BSLASHauthor] = ACTIONS(5848), - [anon_sym_BSLASHusepackage] = ACTIONS(5848), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5848), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5848), - [anon_sym_BSLASHinclude] = ACTIONS(5848), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5848), - [anon_sym_BSLASHinput] = ACTIONS(5848), - [anon_sym_BSLASHsubfile] = ACTIONS(5848), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5848), - [anon_sym_BSLASHbibliography] = ACTIONS(5848), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5848), - [anon_sym_BSLASHincludesvg] = ACTIONS(5848), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5848), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5848), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5848), - [anon_sym_BSLASHimport] = ACTIONS(5848), - [anon_sym_BSLASHsubimport] = ACTIONS(5848), - [anon_sym_BSLASHinputfrom] = ACTIONS(5848), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5848), - [anon_sym_BSLASHincludefrom] = ACTIONS(5848), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5848), - [anon_sym_BSLASHcaption] = ACTIONS(5848), - [anon_sym_BSLASHcite] = ACTIONS(5848), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCite] = ACTIONS(5848), - [anon_sym_BSLASHnocite] = ACTIONS(5848), - [anon_sym_BSLASHcitet] = ACTIONS(5848), - [anon_sym_BSLASHcitep] = ACTIONS(5848), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteauthor] = ACTIONS(5848), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5848), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitetitle] = ACTIONS(5848), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteyear] = ACTIONS(5848), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitedate] = ACTIONS(5848), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteurl] = ACTIONS(5848), - [anon_sym_BSLASHfullcite] = ACTIONS(5848), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5848), - [anon_sym_BSLASHcitealt] = ACTIONS(5848), - [anon_sym_BSLASHcitealp] = ACTIONS(5848), - [anon_sym_BSLASHcitetext] = ACTIONS(5848), - [anon_sym_BSLASHparencite] = ACTIONS(5848), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHParencite] = ACTIONS(5848), - [anon_sym_BSLASHfootcite] = ACTIONS(5848), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5848), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5848), - [anon_sym_BSLASHtextcite] = ACTIONS(5848), - [anon_sym_BSLASHTextcite] = ACTIONS(5848), - [anon_sym_BSLASHsmartcite] = ACTIONS(5848), - [anon_sym_BSLASHSmartcite] = ACTIONS(5848), - [anon_sym_BSLASHsupercite] = ACTIONS(5848), - [anon_sym_BSLASHautocite] = ACTIONS(5848), - [anon_sym_BSLASHAutocite] = ACTIONS(5848), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHvolcite] = ACTIONS(5848), - [anon_sym_BSLASHVolcite] = ACTIONS(5848), - [anon_sym_BSLASHpvolcite] = ACTIONS(5848), - [anon_sym_BSLASHPvolcite] = ACTIONS(5848), - [anon_sym_BSLASHfvolcite] = ACTIONS(5848), - [anon_sym_BSLASHftvolcite] = ACTIONS(5848), - [anon_sym_BSLASHsvolcite] = ACTIONS(5848), - [anon_sym_BSLASHSvolcite] = ACTIONS(5848), - [anon_sym_BSLASHtvolcite] = ACTIONS(5848), - [anon_sym_BSLASHTvolcite] = ACTIONS(5848), - [anon_sym_BSLASHavolcite] = ACTIONS(5848), - [anon_sym_BSLASHAvolcite] = ACTIONS(5848), - [anon_sym_BSLASHnotecite] = ACTIONS(5848), - [anon_sym_BSLASHNotecite] = ACTIONS(5848), - [anon_sym_BSLASHpnotecite] = ACTIONS(5848), - [anon_sym_BSLASHPnotecite] = ACTIONS(5848), - [anon_sym_BSLASHfnotecite] = ACTIONS(5848), - [anon_sym_BSLASHlabel] = ACTIONS(5848), - [anon_sym_BSLASHref] = ACTIONS(5848), - [anon_sym_BSLASHeqref] = ACTIONS(5848), - [anon_sym_BSLASHvref] = ACTIONS(5848), - [anon_sym_BSLASHVref] = ACTIONS(5848), - [anon_sym_BSLASHautoref] = ACTIONS(5848), - [anon_sym_BSLASHpageref] = ACTIONS(5848), - [anon_sym_BSLASHcref] = ACTIONS(5848), - [anon_sym_BSLASHCref] = ACTIONS(5848), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5850), - [anon_sym_BSLASHnamecref] = ACTIONS(5848), - [anon_sym_BSLASHnameCref] = ACTIONS(5848), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5848), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5848), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5848), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5848), - [anon_sym_BSLASHlabelcref] = ACTIONS(5848), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5848), - [anon_sym_BSLASHcrefrange] = ACTIONS(5848), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCrefrange] = ACTIONS(5848), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5850), - [anon_sym_BSLASHnewlabel] = ACTIONS(5848), - [anon_sym_BSLASHnewcommand] = ACTIONS(5848), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5848), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5848), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5850), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHdef] = ACTIONS(5848), - [anon_sym_BSLASHlet] = ACTIONS(5848), - [anon_sym_BSLASHleft] = ACTIONS(5848), - [anon_sym_BSLASHbig] = ACTIONS(5848), - [anon_sym_BSLASHBig] = ACTIONS(5848), - [anon_sym_BSLASHbigg] = ACTIONS(5848), - [anon_sym_BSLASHBigg] = ACTIONS(5848), - [anon_sym_BSLASHbigl] = ACTIONS(5848), - [anon_sym_BSLASHBigl] = ACTIONS(5848), - [anon_sym_BSLASHbiggl] = ACTIONS(5848), - [anon_sym_BSLASHBiggl] = ACTIONS(5848), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5848), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5848), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5848), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5848), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5848), - [anon_sym_BSLASHgls] = ACTIONS(5848), - [anon_sym_BSLASHGls] = ACTIONS(5848), - [anon_sym_BSLASHGLS] = ACTIONS(5848), - [anon_sym_BSLASHglspl] = ACTIONS(5848), - [anon_sym_BSLASHGlspl] = ACTIONS(5848), - [anon_sym_BSLASHGLSpl] = ACTIONS(5848), - [anon_sym_BSLASHglsdisp] = ACTIONS(5848), - [anon_sym_BSLASHglslink] = ACTIONS(5848), - [anon_sym_BSLASHglstext] = ACTIONS(5848), - [anon_sym_BSLASHGlstext] = ACTIONS(5848), - [anon_sym_BSLASHGLStext] = ACTIONS(5848), - [anon_sym_BSLASHglsfirst] = ACTIONS(5848), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5848), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5848), - [anon_sym_BSLASHglsplural] = ACTIONS(5848), - [anon_sym_BSLASHGlsplural] = ACTIONS(5848), - [anon_sym_BSLASHGLSplural] = ACTIONS(5848), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHglsname] = ACTIONS(5848), - [anon_sym_BSLASHGlsname] = ACTIONS(5848), - [anon_sym_BSLASHGLSname] = ACTIONS(5848), - [anon_sym_BSLASHglssymbol] = ACTIONS(5848), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5848), - [anon_sym_BSLASHglsdesc] = ACTIONS(5848), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5848), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5848), - [anon_sym_BSLASHglsuseri] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5848), - [anon_sym_BSLASHglsuserii] = ACTIONS(5848), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5848), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5848), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5848), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5848), - [anon_sym_BSLASHglsuserv] = ACTIONS(5848), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5848), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5848), - [anon_sym_BSLASHglsuservi] = ACTIONS(5848), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5848), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5848), - [anon_sym_BSLASHnewacronym] = ACTIONS(5848), - [anon_sym_BSLASHacrshort] = ACTIONS(5848), - [anon_sym_BSLASHAcrshort] = ACTIONS(5848), - [anon_sym_BSLASHACRshort] = ACTIONS(5848), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5848), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5848), - [anon_sym_BSLASHacrlong] = ACTIONS(5848), - [anon_sym_BSLASHAcrlong] = ACTIONS(5848), - [anon_sym_BSLASHACRlong] = ACTIONS(5848), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5848), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5848), - [anon_sym_BSLASHacrfull] = ACTIONS(5848), - [anon_sym_BSLASHAcrfull] = ACTIONS(5848), - [anon_sym_BSLASHACRfull] = ACTIONS(5848), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5848), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5848), - [anon_sym_BSLASHacs] = ACTIONS(5848), - [anon_sym_BSLASHAcs] = ACTIONS(5848), - [anon_sym_BSLASHacsp] = ACTIONS(5848), - [anon_sym_BSLASHAcsp] = ACTIONS(5848), - [anon_sym_BSLASHacl] = ACTIONS(5848), - [anon_sym_BSLASHAcl] = ACTIONS(5848), - [anon_sym_BSLASHaclp] = ACTIONS(5848), - [anon_sym_BSLASHAclp] = ACTIONS(5848), - [anon_sym_BSLASHacf] = ACTIONS(5848), - [anon_sym_BSLASHAcf] = ACTIONS(5848), - [anon_sym_BSLASHacfp] = ACTIONS(5848), - [anon_sym_BSLASHAcfp] = ACTIONS(5848), - [anon_sym_BSLASHac] = ACTIONS(5848), - [anon_sym_BSLASHAc] = ACTIONS(5848), - [anon_sym_BSLASHacp] = ACTIONS(5848), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5848), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5848), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5848), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5848), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5848), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5848), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5848), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5850), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5848), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5850), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5848), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5848), - [anon_sym_BSLASHcolor] = ACTIONS(5848), - [anon_sym_BSLASHcolorbox] = ACTIONS(5848), - [anon_sym_BSLASHtextcolor] = ACTIONS(5848), - [anon_sym_BSLASHpagecolor] = ACTIONS(5848), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5848), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5848), - [anon_sym_BSLASHtext] = ACTIONS(5848), - [anon_sym_BSLASHintertext] = ACTIONS(5848), - [anon_sym_shortintertext] = ACTIONS(5848), - }, - [707] = { - [sym__section_part] = STATE(1408), - [sym_curly_group] = STATE(1413), - [sym_brack_group] = STATE(2864), - [sym_command_name] = ACTIONS(5852), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5852), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5854), - [anon_sym_COMMA] = ACTIONS(5854), - [anon_sym_EQ] = ACTIONS(5854), - [anon_sym_LPAREN] = ACTIONS(5854), - [anon_sym_RPAREN] = ACTIONS(5854), - [anon_sym_BSLASHpart] = ACTIONS(5852), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddpart] = ACTIONS(5852), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5854), - [anon_sym_BSLASHchapter] = ACTIONS(5852), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddchap] = ACTIONS(5852), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsection] = ACTIONS(5852), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddsec] = ACTIONS(5852), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubsection] = ACTIONS(5852), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5852), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHparagraph] = ACTIONS(5852), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5852), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5854), - [anon_sym_BSLASHitem] = ACTIONS(5852), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5854), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(5852), - [sym_placeholder] = ACTIONS(5854), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_STAR] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5854), - [anon_sym_LT] = ACTIONS(5852), - [anon_sym_GT] = ACTIONS(5852), - [anon_sym_BANG] = ACTIONS(5852), - [anon_sym_PIPE] = ACTIONS(5852), - [anon_sym_COLON] = ACTIONS(5852), - [anon_sym_SQUOTE] = ACTIONS(5852), - [anon_sym__] = ACTIONS(5854), - [anon_sym_CARET] = ACTIONS(5854), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5854), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5854), - [anon_sym_DOLLAR] = ACTIONS(5852), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5854), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5854), - [anon_sym_BSLASHbegin] = ACTIONS(5852), - [anon_sym_BSLASHtitle] = ACTIONS(5852), - [anon_sym_BSLASHauthor] = ACTIONS(5852), - [anon_sym_BSLASHusepackage] = ACTIONS(5852), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5852), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5852), - [anon_sym_BSLASHinclude] = ACTIONS(5852), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5852), - [anon_sym_BSLASHinput] = ACTIONS(5852), - [anon_sym_BSLASHsubfile] = ACTIONS(5852), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5852), - [anon_sym_BSLASHbibliography] = ACTIONS(5852), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5852), - [anon_sym_BSLASHincludesvg] = ACTIONS(5852), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5852), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5852), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5852), - [anon_sym_BSLASHimport] = ACTIONS(5852), - [anon_sym_BSLASHsubimport] = ACTIONS(5852), - [anon_sym_BSLASHinputfrom] = ACTIONS(5852), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5852), - [anon_sym_BSLASHincludefrom] = ACTIONS(5852), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5852), - [anon_sym_BSLASHcaption] = ACTIONS(5852), - [anon_sym_BSLASHcite] = ACTIONS(5852), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCite] = ACTIONS(5852), - [anon_sym_BSLASHnocite] = ACTIONS(5852), - [anon_sym_BSLASHcitet] = ACTIONS(5852), - [anon_sym_BSLASHcitep] = ACTIONS(5852), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteauthor] = ACTIONS(5852), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5852), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitetitle] = ACTIONS(5852), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteyear] = ACTIONS(5852), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitedate] = ACTIONS(5852), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteurl] = ACTIONS(5852), - [anon_sym_BSLASHfullcite] = ACTIONS(5852), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5852), - [anon_sym_BSLASHcitealt] = ACTIONS(5852), - [anon_sym_BSLASHcitealp] = ACTIONS(5852), - [anon_sym_BSLASHcitetext] = ACTIONS(5852), - [anon_sym_BSLASHparencite] = ACTIONS(5852), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHParencite] = ACTIONS(5852), - [anon_sym_BSLASHfootcite] = ACTIONS(5852), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5852), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5852), - [anon_sym_BSLASHtextcite] = ACTIONS(5852), - [anon_sym_BSLASHTextcite] = ACTIONS(5852), - [anon_sym_BSLASHsmartcite] = ACTIONS(5852), - [anon_sym_BSLASHSmartcite] = ACTIONS(5852), - [anon_sym_BSLASHsupercite] = ACTIONS(5852), - [anon_sym_BSLASHautocite] = ACTIONS(5852), - [anon_sym_BSLASHAutocite] = ACTIONS(5852), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHvolcite] = ACTIONS(5852), - [anon_sym_BSLASHVolcite] = ACTIONS(5852), - [anon_sym_BSLASHpvolcite] = ACTIONS(5852), - [anon_sym_BSLASHPvolcite] = ACTIONS(5852), - [anon_sym_BSLASHfvolcite] = ACTIONS(5852), - [anon_sym_BSLASHftvolcite] = ACTIONS(5852), - [anon_sym_BSLASHsvolcite] = ACTIONS(5852), - [anon_sym_BSLASHSvolcite] = ACTIONS(5852), - [anon_sym_BSLASHtvolcite] = ACTIONS(5852), - [anon_sym_BSLASHTvolcite] = ACTIONS(5852), - [anon_sym_BSLASHavolcite] = ACTIONS(5852), - [anon_sym_BSLASHAvolcite] = ACTIONS(5852), - [anon_sym_BSLASHnotecite] = ACTIONS(5852), - [anon_sym_BSLASHNotecite] = ACTIONS(5852), - [anon_sym_BSLASHpnotecite] = ACTIONS(5852), - [anon_sym_BSLASHPnotecite] = ACTIONS(5852), - [anon_sym_BSLASHfnotecite] = ACTIONS(5852), - [anon_sym_BSLASHlabel] = ACTIONS(5852), - [anon_sym_BSLASHref] = ACTIONS(5852), - [anon_sym_BSLASHeqref] = ACTIONS(5852), - [anon_sym_BSLASHvref] = ACTIONS(5852), - [anon_sym_BSLASHVref] = ACTIONS(5852), - [anon_sym_BSLASHautoref] = ACTIONS(5852), - [anon_sym_BSLASHpageref] = ACTIONS(5852), - [anon_sym_BSLASHcref] = ACTIONS(5852), - [anon_sym_BSLASHCref] = ACTIONS(5852), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5854), - [anon_sym_BSLASHnamecref] = ACTIONS(5852), - [anon_sym_BSLASHnameCref] = ACTIONS(5852), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5852), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5852), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5852), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5852), - [anon_sym_BSLASHlabelcref] = ACTIONS(5852), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5852), - [anon_sym_BSLASHcrefrange] = ACTIONS(5852), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCrefrange] = ACTIONS(5852), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5854), - [anon_sym_BSLASHnewlabel] = ACTIONS(5852), - [anon_sym_BSLASHnewcommand] = ACTIONS(5852), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5852), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5852), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5854), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHdef] = ACTIONS(5852), - [anon_sym_BSLASHlet] = ACTIONS(5852), - [anon_sym_BSLASHleft] = ACTIONS(5852), - [anon_sym_BSLASHbig] = ACTIONS(5852), - [anon_sym_BSLASHBig] = ACTIONS(5852), - [anon_sym_BSLASHbigg] = ACTIONS(5852), - [anon_sym_BSLASHBigg] = ACTIONS(5852), - [anon_sym_BSLASHbigl] = ACTIONS(5852), - [anon_sym_BSLASHBigl] = ACTIONS(5852), - [anon_sym_BSLASHbiggl] = ACTIONS(5852), - [anon_sym_BSLASHBiggl] = ACTIONS(5852), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5852), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5852), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5852), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5852), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5852), - [anon_sym_BSLASHgls] = ACTIONS(5852), - [anon_sym_BSLASHGls] = ACTIONS(5852), - [anon_sym_BSLASHGLS] = ACTIONS(5852), - [anon_sym_BSLASHglspl] = ACTIONS(5852), - [anon_sym_BSLASHGlspl] = ACTIONS(5852), - [anon_sym_BSLASHGLSpl] = ACTIONS(5852), - [anon_sym_BSLASHglsdisp] = ACTIONS(5852), - [anon_sym_BSLASHglslink] = ACTIONS(5852), - [anon_sym_BSLASHglstext] = ACTIONS(5852), - [anon_sym_BSLASHGlstext] = ACTIONS(5852), - [anon_sym_BSLASHGLStext] = ACTIONS(5852), - [anon_sym_BSLASHglsfirst] = ACTIONS(5852), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5852), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5852), - [anon_sym_BSLASHglsplural] = ACTIONS(5852), - [anon_sym_BSLASHGlsplural] = ACTIONS(5852), - [anon_sym_BSLASHGLSplural] = ACTIONS(5852), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHglsname] = ACTIONS(5852), - [anon_sym_BSLASHGlsname] = ACTIONS(5852), - [anon_sym_BSLASHGLSname] = ACTIONS(5852), - [anon_sym_BSLASHglssymbol] = ACTIONS(5852), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5852), - [anon_sym_BSLASHglsdesc] = ACTIONS(5852), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5852), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5852), - [anon_sym_BSLASHglsuseri] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5852), - [anon_sym_BSLASHglsuserii] = ACTIONS(5852), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5852), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5852), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5852), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5852), - [anon_sym_BSLASHglsuserv] = ACTIONS(5852), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5852), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5852), - [anon_sym_BSLASHglsuservi] = ACTIONS(5852), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5852), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5852), - [anon_sym_BSLASHnewacronym] = ACTIONS(5852), - [anon_sym_BSLASHacrshort] = ACTIONS(5852), - [anon_sym_BSLASHAcrshort] = ACTIONS(5852), - [anon_sym_BSLASHACRshort] = ACTIONS(5852), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5852), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5852), - [anon_sym_BSLASHacrlong] = ACTIONS(5852), - [anon_sym_BSLASHAcrlong] = ACTIONS(5852), - [anon_sym_BSLASHACRlong] = ACTIONS(5852), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5852), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5852), - [anon_sym_BSLASHacrfull] = ACTIONS(5852), - [anon_sym_BSLASHAcrfull] = ACTIONS(5852), - [anon_sym_BSLASHACRfull] = ACTIONS(5852), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5852), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5852), - [anon_sym_BSLASHacs] = ACTIONS(5852), - [anon_sym_BSLASHAcs] = ACTIONS(5852), - [anon_sym_BSLASHacsp] = ACTIONS(5852), - [anon_sym_BSLASHAcsp] = ACTIONS(5852), - [anon_sym_BSLASHacl] = ACTIONS(5852), - [anon_sym_BSLASHAcl] = ACTIONS(5852), - [anon_sym_BSLASHaclp] = ACTIONS(5852), - [anon_sym_BSLASHAclp] = ACTIONS(5852), - [anon_sym_BSLASHacf] = ACTIONS(5852), - [anon_sym_BSLASHAcf] = ACTIONS(5852), - [anon_sym_BSLASHacfp] = ACTIONS(5852), - [anon_sym_BSLASHAcfp] = ACTIONS(5852), - [anon_sym_BSLASHac] = ACTIONS(5852), - [anon_sym_BSLASHAc] = ACTIONS(5852), - [anon_sym_BSLASHacp] = ACTIONS(5852), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5852), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5852), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5852), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5852), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5852), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5852), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5852), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5854), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5852), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5854), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5852), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5852), - [anon_sym_BSLASHcolor] = ACTIONS(5852), - [anon_sym_BSLASHcolorbox] = ACTIONS(5852), - [anon_sym_BSLASHtextcolor] = ACTIONS(5852), - [anon_sym_BSLASHpagecolor] = ACTIONS(5852), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5852), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5852), - [anon_sym_BSLASHtext] = ACTIONS(5852), - [anon_sym_BSLASHintertext] = ACTIONS(5852), - [anon_sym_shortintertext] = ACTIONS(5852), - }, - [708] = { - [sym__section_part] = STATE(1407), - [sym_curly_group] = STATE(1413), - [sym_brack_group] = STATE(2864), - [sym_command_name] = ACTIONS(5856), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5856), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5858), - [anon_sym_COMMA] = ACTIONS(5858), - [anon_sym_EQ] = ACTIONS(5858), - [anon_sym_LPAREN] = ACTIONS(5858), - [anon_sym_RPAREN] = ACTIONS(5858), - [anon_sym_BSLASHpart] = ACTIONS(5856), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddpart] = ACTIONS(5856), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5858), - [anon_sym_BSLASHchapter] = ACTIONS(5856), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddchap] = ACTIONS(5856), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsection] = ACTIONS(5856), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddsec] = ACTIONS(5856), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubsection] = ACTIONS(5856), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5856), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHparagraph] = ACTIONS(5856), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5856), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5858), - [anon_sym_BSLASHitem] = ACTIONS(5856), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5858), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(5856), - [sym_placeholder] = ACTIONS(5858), - [anon_sym_PLUS] = ACTIONS(5858), - [anon_sym_DASH] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(5858), - [anon_sym_SLASH] = ACTIONS(5858), - [anon_sym_LT] = ACTIONS(5856), - [anon_sym_GT] = ACTIONS(5856), - [anon_sym_BANG] = ACTIONS(5856), - [anon_sym_PIPE] = ACTIONS(5856), - [anon_sym_COLON] = ACTIONS(5856), - [anon_sym_SQUOTE] = ACTIONS(5856), - [anon_sym__] = ACTIONS(5858), - [anon_sym_CARET] = ACTIONS(5858), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5858), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5858), - [anon_sym_DOLLAR] = ACTIONS(5856), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5858), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5858), - [anon_sym_BSLASHbegin] = ACTIONS(5856), - [anon_sym_BSLASHtitle] = ACTIONS(5856), - [anon_sym_BSLASHauthor] = ACTIONS(5856), - [anon_sym_BSLASHusepackage] = ACTIONS(5856), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5856), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5856), - [anon_sym_BSLASHinclude] = ACTIONS(5856), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5856), - [anon_sym_BSLASHinput] = ACTIONS(5856), - [anon_sym_BSLASHsubfile] = ACTIONS(5856), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5856), - [anon_sym_BSLASHbibliography] = ACTIONS(5856), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5856), - [anon_sym_BSLASHincludesvg] = ACTIONS(5856), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5856), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5856), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5856), - [anon_sym_BSLASHimport] = ACTIONS(5856), - [anon_sym_BSLASHsubimport] = ACTIONS(5856), - [anon_sym_BSLASHinputfrom] = ACTIONS(5856), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5856), - [anon_sym_BSLASHincludefrom] = ACTIONS(5856), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5856), - [anon_sym_BSLASHcaption] = ACTIONS(5856), - [anon_sym_BSLASHcite] = ACTIONS(5856), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCite] = ACTIONS(5856), - [anon_sym_BSLASHnocite] = ACTIONS(5856), - [anon_sym_BSLASHcitet] = ACTIONS(5856), - [anon_sym_BSLASHcitep] = ACTIONS(5856), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteauthor] = ACTIONS(5856), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5856), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitetitle] = ACTIONS(5856), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteyear] = ACTIONS(5856), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitedate] = ACTIONS(5856), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteurl] = ACTIONS(5856), - [anon_sym_BSLASHfullcite] = ACTIONS(5856), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5856), - [anon_sym_BSLASHcitealt] = ACTIONS(5856), - [anon_sym_BSLASHcitealp] = ACTIONS(5856), - [anon_sym_BSLASHcitetext] = ACTIONS(5856), - [anon_sym_BSLASHparencite] = ACTIONS(5856), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHParencite] = ACTIONS(5856), - [anon_sym_BSLASHfootcite] = ACTIONS(5856), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5856), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5856), - [anon_sym_BSLASHtextcite] = ACTIONS(5856), - [anon_sym_BSLASHTextcite] = ACTIONS(5856), - [anon_sym_BSLASHsmartcite] = ACTIONS(5856), - [anon_sym_BSLASHSmartcite] = ACTIONS(5856), - [anon_sym_BSLASHsupercite] = ACTIONS(5856), - [anon_sym_BSLASHautocite] = ACTIONS(5856), - [anon_sym_BSLASHAutocite] = ACTIONS(5856), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHvolcite] = ACTIONS(5856), - [anon_sym_BSLASHVolcite] = ACTIONS(5856), - [anon_sym_BSLASHpvolcite] = ACTIONS(5856), - [anon_sym_BSLASHPvolcite] = ACTIONS(5856), - [anon_sym_BSLASHfvolcite] = ACTIONS(5856), - [anon_sym_BSLASHftvolcite] = ACTIONS(5856), - [anon_sym_BSLASHsvolcite] = ACTIONS(5856), - [anon_sym_BSLASHSvolcite] = ACTIONS(5856), - [anon_sym_BSLASHtvolcite] = ACTIONS(5856), - [anon_sym_BSLASHTvolcite] = ACTIONS(5856), - [anon_sym_BSLASHavolcite] = ACTIONS(5856), - [anon_sym_BSLASHAvolcite] = ACTIONS(5856), - [anon_sym_BSLASHnotecite] = ACTIONS(5856), - [anon_sym_BSLASHNotecite] = ACTIONS(5856), - [anon_sym_BSLASHpnotecite] = ACTIONS(5856), - [anon_sym_BSLASHPnotecite] = ACTIONS(5856), - [anon_sym_BSLASHfnotecite] = ACTIONS(5856), - [anon_sym_BSLASHlabel] = ACTIONS(5856), - [anon_sym_BSLASHref] = ACTIONS(5856), - [anon_sym_BSLASHeqref] = ACTIONS(5856), - [anon_sym_BSLASHvref] = ACTIONS(5856), - [anon_sym_BSLASHVref] = ACTIONS(5856), - [anon_sym_BSLASHautoref] = ACTIONS(5856), - [anon_sym_BSLASHpageref] = ACTIONS(5856), - [anon_sym_BSLASHcref] = ACTIONS(5856), - [anon_sym_BSLASHCref] = ACTIONS(5856), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5858), - [anon_sym_BSLASHnamecref] = ACTIONS(5856), - [anon_sym_BSLASHnameCref] = ACTIONS(5856), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5856), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5856), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5856), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5856), - [anon_sym_BSLASHlabelcref] = ACTIONS(5856), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5856), - [anon_sym_BSLASHcrefrange] = ACTIONS(5856), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCrefrange] = ACTIONS(5856), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5858), - [anon_sym_BSLASHnewlabel] = ACTIONS(5856), - [anon_sym_BSLASHnewcommand] = ACTIONS(5856), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5856), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5856), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5858), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHdef] = ACTIONS(5856), - [anon_sym_BSLASHlet] = ACTIONS(5856), - [anon_sym_BSLASHleft] = ACTIONS(5856), - [anon_sym_BSLASHbig] = ACTIONS(5856), - [anon_sym_BSLASHBig] = ACTIONS(5856), - [anon_sym_BSLASHbigg] = ACTIONS(5856), - [anon_sym_BSLASHBigg] = ACTIONS(5856), - [anon_sym_BSLASHbigl] = ACTIONS(5856), - [anon_sym_BSLASHBigl] = ACTIONS(5856), - [anon_sym_BSLASHbiggl] = ACTIONS(5856), - [anon_sym_BSLASHBiggl] = ACTIONS(5856), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5856), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5856), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5856), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5856), - [anon_sym_BSLASHgls] = ACTIONS(5856), - [anon_sym_BSLASHGls] = ACTIONS(5856), - [anon_sym_BSLASHGLS] = ACTIONS(5856), - [anon_sym_BSLASHglspl] = ACTIONS(5856), - [anon_sym_BSLASHGlspl] = ACTIONS(5856), - [anon_sym_BSLASHGLSpl] = ACTIONS(5856), - [anon_sym_BSLASHglsdisp] = ACTIONS(5856), - [anon_sym_BSLASHglslink] = ACTIONS(5856), - [anon_sym_BSLASHglstext] = ACTIONS(5856), - [anon_sym_BSLASHGlstext] = ACTIONS(5856), - [anon_sym_BSLASHGLStext] = ACTIONS(5856), - [anon_sym_BSLASHglsfirst] = ACTIONS(5856), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5856), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5856), - [anon_sym_BSLASHglsplural] = ACTIONS(5856), - [anon_sym_BSLASHGlsplural] = ACTIONS(5856), - [anon_sym_BSLASHGLSplural] = ACTIONS(5856), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHglsname] = ACTIONS(5856), - [anon_sym_BSLASHGlsname] = ACTIONS(5856), - [anon_sym_BSLASHGLSname] = ACTIONS(5856), - [anon_sym_BSLASHglssymbol] = ACTIONS(5856), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5856), - [anon_sym_BSLASHglsdesc] = ACTIONS(5856), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5856), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5856), - [anon_sym_BSLASHglsuseri] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5856), - [anon_sym_BSLASHglsuserii] = ACTIONS(5856), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5856), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5856), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5856), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5856), - [anon_sym_BSLASHglsuserv] = ACTIONS(5856), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5856), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5856), - [anon_sym_BSLASHglsuservi] = ACTIONS(5856), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5856), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5856), - [anon_sym_BSLASHnewacronym] = ACTIONS(5856), - [anon_sym_BSLASHacrshort] = ACTIONS(5856), - [anon_sym_BSLASHAcrshort] = ACTIONS(5856), - [anon_sym_BSLASHACRshort] = ACTIONS(5856), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5856), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5856), - [anon_sym_BSLASHacrlong] = ACTIONS(5856), - [anon_sym_BSLASHAcrlong] = ACTIONS(5856), - [anon_sym_BSLASHACRlong] = ACTIONS(5856), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5856), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5856), - [anon_sym_BSLASHacrfull] = ACTIONS(5856), - [anon_sym_BSLASHAcrfull] = ACTIONS(5856), - [anon_sym_BSLASHACRfull] = ACTIONS(5856), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5856), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5856), - [anon_sym_BSLASHacs] = ACTIONS(5856), - [anon_sym_BSLASHAcs] = ACTIONS(5856), - [anon_sym_BSLASHacsp] = ACTIONS(5856), - [anon_sym_BSLASHAcsp] = ACTIONS(5856), - [anon_sym_BSLASHacl] = ACTIONS(5856), - [anon_sym_BSLASHAcl] = ACTIONS(5856), - [anon_sym_BSLASHaclp] = ACTIONS(5856), - [anon_sym_BSLASHAclp] = ACTIONS(5856), - [anon_sym_BSLASHacf] = ACTIONS(5856), - [anon_sym_BSLASHAcf] = ACTIONS(5856), - [anon_sym_BSLASHacfp] = ACTIONS(5856), - [anon_sym_BSLASHAcfp] = ACTIONS(5856), - [anon_sym_BSLASHac] = ACTIONS(5856), - [anon_sym_BSLASHAc] = ACTIONS(5856), - [anon_sym_BSLASHacp] = ACTIONS(5856), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5856), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5856), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5856), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5856), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5856), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5856), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5856), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5858), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5856), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5858), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5856), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5856), - [anon_sym_BSLASHcolor] = ACTIONS(5856), - [anon_sym_BSLASHcolorbox] = ACTIONS(5856), - [anon_sym_BSLASHtextcolor] = ACTIONS(5856), - [anon_sym_BSLASHpagecolor] = ACTIONS(5856), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5856), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5856), - [anon_sym_BSLASHtext] = ACTIONS(5856), - [anon_sym_BSLASHintertext] = ACTIONS(5856), - [anon_sym_shortintertext] = ACTIONS(5856), - }, - [709] = { - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(647), - [aux_sym__section_repeat6] = STATE(647), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHend] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [710] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHend] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [711] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHend] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [712] = { - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(647), - [aux_sym__section_repeat6] = STATE(647), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5960), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHitem] = ACTIONS(5960), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5962), - [anon_sym_LBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHend] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [713] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(5960), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(5960), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5962), - [anon_sym_LBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHend] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [714] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(5960), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5960), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHend] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [715] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(5956), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_EQ] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_BSLASHpart] = ACTIONS(5956), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddpart] = ACTIONS(5956), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHchapter] = ACTIONS(5956), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddchap] = ACTIONS(5956), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsection] = ACTIONS(5956), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddsec] = ACTIONS(5956), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHparagraph] = ACTIONS(5956), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(5956), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5958), - [anon_sym_LBRACE] = ACTIONS(5958), - [sym_word] = ACTIONS(5956), - [sym_placeholder] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5956), - [anon_sym_GT] = ACTIONS(5956), - [anon_sym_BANG] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_SQUOTE] = ACTIONS(5956), - [anon_sym__] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5958), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5958), - [anon_sym_DOLLAR] = ACTIONS(5956), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5958), - [anon_sym_BSLASHbegin] = ACTIONS(5956), - [anon_sym_BSLASHend] = ACTIONS(5956), - [anon_sym_BSLASHtitle] = ACTIONS(5956), - [anon_sym_BSLASHauthor] = ACTIONS(5956), - [anon_sym_BSLASHusepackage] = ACTIONS(5956), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5956), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5956), - [anon_sym_BSLASHinclude] = ACTIONS(5956), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5956), - [anon_sym_BSLASHinput] = ACTIONS(5956), - [anon_sym_BSLASHsubfile] = ACTIONS(5956), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5956), - [anon_sym_BSLASHbibliography] = ACTIONS(5956), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5956), - [anon_sym_BSLASHincludesvg] = ACTIONS(5956), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5956), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5956), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5956), - [anon_sym_BSLASHimport] = ACTIONS(5956), - [anon_sym_BSLASHsubimport] = ACTIONS(5956), - [anon_sym_BSLASHinputfrom] = ACTIONS(5956), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5956), - [anon_sym_BSLASHincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHcaption] = ACTIONS(5956), - [anon_sym_BSLASHcite] = ACTIONS(5956), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCite] = ACTIONS(5956), - [anon_sym_BSLASHnocite] = ACTIONS(5956), - [anon_sym_BSLASHcitet] = ACTIONS(5956), - [anon_sym_BSLASHcitep] = ACTIONS(5956), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteauthor] = ACTIONS(5956), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5956), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitetitle] = ACTIONS(5956), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteyear] = ACTIONS(5956), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitedate] = ACTIONS(5956), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteurl] = ACTIONS(5956), - [anon_sym_BSLASHfullcite] = ACTIONS(5956), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5956), - [anon_sym_BSLASHcitealt] = ACTIONS(5956), - [anon_sym_BSLASHcitealp] = ACTIONS(5956), - [anon_sym_BSLASHcitetext] = ACTIONS(5956), - [anon_sym_BSLASHparencite] = ACTIONS(5956), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHParencite] = ACTIONS(5956), - [anon_sym_BSLASHfootcite] = ACTIONS(5956), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5956), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5956), - [anon_sym_BSLASHtextcite] = ACTIONS(5956), - [anon_sym_BSLASHTextcite] = ACTIONS(5956), - [anon_sym_BSLASHsmartcite] = ACTIONS(5956), - [anon_sym_BSLASHSmartcite] = ACTIONS(5956), - [anon_sym_BSLASHsupercite] = ACTIONS(5956), - [anon_sym_BSLASHautocite] = ACTIONS(5956), - [anon_sym_BSLASHAutocite] = ACTIONS(5956), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHvolcite] = ACTIONS(5956), - [anon_sym_BSLASHVolcite] = ACTIONS(5956), - [anon_sym_BSLASHpvolcite] = ACTIONS(5956), - [anon_sym_BSLASHPvolcite] = ACTIONS(5956), - [anon_sym_BSLASHfvolcite] = ACTIONS(5956), - [anon_sym_BSLASHftvolcite] = ACTIONS(5956), - [anon_sym_BSLASHsvolcite] = ACTIONS(5956), - [anon_sym_BSLASHSvolcite] = ACTIONS(5956), - [anon_sym_BSLASHtvolcite] = ACTIONS(5956), - [anon_sym_BSLASHTvolcite] = ACTIONS(5956), - [anon_sym_BSLASHavolcite] = ACTIONS(5956), - [anon_sym_BSLASHAvolcite] = ACTIONS(5956), - [anon_sym_BSLASHnotecite] = ACTIONS(5956), - [anon_sym_BSLASHNotecite] = ACTIONS(5956), - [anon_sym_BSLASHpnotecite] = ACTIONS(5956), - [anon_sym_BSLASHPnotecite] = ACTIONS(5956), - [anon_sym_BSLASHfnotecite] = ACTIONS(5956), - [anon_sym_BSLASHlabel] = ACTIONS(5956), - [anon_sym_BSLASHref] = ACTIONS(5956), - [anon_sym_BSLASHeqref] = ACTIONS(5956), - [anon_sym_BSLASHvref] = ACTIONS(5956), - [anon_sym_BSLASHVref] = ACTIONS(5956), - [anon_sym_BSLASHautoref] = ACTIONS(5956), - [anon_sym_BSLASHpageref] = ACTIONS(5956), - [anon_sym_BSLASHcref] = ACTIONS(5956), - [anon_sym_BSLASHCref] = ACTIONS(5956), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnameCref] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHlabelcref] = ACTIONS(5956), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCrefrange] = ACTIONS(5956), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnewlabel] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5956), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5956), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5958), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHdef] = ACTIONS(5956), - [anon_sym_BSLASHlet] = ACTIONS(5956), - [anon_sym_BSLASHleft] = ACTIONS(5956), - [anon_sym_BSLASHbig] = ACTIONS(5956), - [anon_sym_BSLASHBig] = ACTIONS(5956), - [anon_sym_BSLASHbigg] = ACTIONS(5956), - [anon_sym_BSLASHBigg] = ACTIONS(5956), - [anon_sym_BSLASHbigl] = ACTIONS(5956), - [anon_sym_BSLASHBigl] = ACTIONS(5956), - [anon_sym_BSLASHbiggl] = ACTIONS(5956), - [anon_sym_BSLASHBiggl] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5956), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5956), - [anon_sym_BSLASHgls] = ACTIONS(5956), - [anon_sym_BSLASHGls] = ACTIONS(5956), - [anon_sym_BSLASHGLS] = ACTIONS(5956), - [anon_sym_BSLASHglspl] = ACTIONS(5956), - [anon_sym_BSLASHGlspl] = ACTIONS(5956), - [anon_sym_BSLASHGLSpl] = ACTIONS(5956), - [anon_sym_BSLASHglsdisp] = ACTIONS(5956), - [anon_sym_BSLASHglslink] = ACTIONS(5956), - [anon_sym_BSLASHglstext] = ACTIONS(5956), - [anon_sym_BSLASHGlstext] = ACTIONS(5956), - [anon_sym_BSLASHGLStext] = ACTIONS(5956), - [anon_sym_BSLASHglsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5956), - [anon_sym_BSLASHglsplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSplural] = ACTIONS(5956), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHglsname] = ACTIONS(5956), - [anon_sym_BSLASHGlsname] = ACTIONS(5956), - [anon_sym_BSLASHGLSname] = ACTIONS(5956), - [anon_sym_BSLASHglssymbol] = ACTIONS(5956), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5956), - [anon_sym_BSLASHglsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5956), - [anon_sym_BSLASHglsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5956), - [anon_sym_BSLASHglsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5956), - [anon_sym_BSLASHglsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5956), - [anon_sym_BSLASHglsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5956), - [anon_sym_BSLASHnewacronym] = ACTIONS(5956), - [anon_sym_BSLASHacrshort] = ACTIONS(5956), - [anon_sym_BSLASHAcrshort] = ACTIONS(5956), - [anon_sym_BSLASHACRshort] = ACTIONS(5956), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5956), - [anon_sym_BSLASHacrlong] = ACTIONS(5956), - [anon_sym_BSLASHAcrlong] = ACTIONS(5956), - [anon_sym_BSLASHACRlong] = ACTIONS(5956), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5956), - [anon_sym_BSLASHacrfull] = ACTIONS(5956), - [anon_sym_BSLASHAcrfull] = ACTIONS(5956), - [anon_sym_BSLASHACRfull] = ACTIONS(5956), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5956), - [anon_sym_BSLASHacs] = ACTIONS(5956), - [anon_sym_BSLASHAcs] = ACTIONS(5956), - [anon_sym_BSLASHacsp] = ACTIONS(5956), - [anon_sym_BSLASHAcsp] = ACTIONS(5956), - [anon_sym_BSLASHacl] = ACTIONS(5956), - [anon_sym_BSLASHAcl] = ACTIONS(5956), - [anon_sym_BSLASHaclp] = ACTIONS(5956), - [anon_sym_BSLASHAclp] = ACTIONS(5956), - [anon_sym_BSLASHacf] = ACTIONS(5956), - [anon_sym_BSLASHAcf] = ACTIONS(5956), - [anon_sym_BSLASHacfp] = ACTIONS(5956), - [anon_sym_BSLASHAcfp] = ACTIONS(5956), - [anon_sym_BSLASHac] = ACTIONS(5956), - [anon_sym_BSLASHAc] = ACTIONS(5956), - [anon_sym_BSLASHacp] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5956), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5956), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5956), - [anon_sym_BSLASHcolor] = ACTIONS(5956), - [anon_sym_BSLASHcolorbox] = ACTIONS(5956), - [anon_sym_BSLASHtextcolor] = ACTIONS(5956), - [anon_sym_BSLASHpagecolor] = ACTIONS(5956), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5956), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5956), - [anon_sym_BSLASHtext] = ACTIONS(5956), - [anon_sym_BSLASHintertext] = ACTIONS(5956), - [anon_sym_shortintertext] = ACTIONS(5956), - }, - [716] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(5956), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_EQ] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_BSLASHpart] = ACTIONS(5956), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddpart] = ACTIONS(5956), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHchapter] = ACTIONS(5956), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddchap] = ACTIONS(5956), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsection] = ACTIONS(5956), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddsec] = ACTIONS(5956), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHparagraph] = ACTIONS(5956), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5956), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(5958), - [sym_word] = ACTIONS(5956), - [sym_placeholder] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5956), - [anon_sym_GT] = ACTIONS(5956), - [anon_sym_BANG] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_SQUOTE] = ACTIONS(5956), - [anon_sym__] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5958), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5958), - [anon_sym_DOLLAR] = ACTIONS(5956), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5958), - [anon_sym_BSLASHbegin] = ACTIONS(5956), - [anon_sym_BSLASHend] = ACTIONS(5956), - [anon_sym_BSLASHtitle] = ACTIONS(5956), - [anon_sym_BSLASHauthor] = ACTIONS(5956), - [anon_sym_BSLASHusepackage] = ACTIONS(5956), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5956), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5956), - [anon_sym_BSLASHinclude] = ACTIONS(5956), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5956), - [anon_sym_BSLASHinput] = ACTIONS(5956), - [anon_sym_BSLASHsubfile] = ACTIONS(5956), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5956), - [anon_sym_BSLASHbibliography] = ACTIONS(5956), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5956), - [anon_sym_BSLASHincludesvg] = ACTIONS(5956), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5956), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5956), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5956), - [anon_sym_BSLASHimport] = ACTIONS(5956), - [anon_sym_BSLASHsubimport] = ACTIONS(5956), - [anon_sym_BSLASHinputfrom] = ACTIONS(5956), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5956), - [anon_sym_BSLASHincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHcaption] = ACTIONS(5956), - [anon_sym_BSLASHcite] = ACTIONS(5956), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCite] = ACTIONS(5956), - [anon_sym_BSLASHnocite] = ACTIONS(5956), - [anon_sym_BSLASHcitet] = ACTIONS(5956), - [anon_sym_BSLASHcitep] = ACTIONS(5956), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteauthor] = ACTIONS(5956), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5956), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitetitle] = ACTIONS(5956), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteyear] = ACTIONS(5956), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitedate] = ACTIONS(5956), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteurl] = ACTIONS(5956), - [anon_sym_BSLASHfullcite] = ACTIONS(5956), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5956), - [anon_sym_BSLASHcitealt] = ACTIONS(5956), - [anon_sym_BSLASHcitealp] = ACTIONS(5956), - [anon_sym_BSLASHcitetext] = ACTIONS(5956), - [anon_sym_BSLASHparencite] = ACTIONS(5956), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHParencite] = ACTIONS(5956), - [anon_sym_BSLASHfootcite] = ACTIONS(5956), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5956), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5956), - [anon_sym_BSLASHtextcite] = ACTIONS(5956), - [anon_sym_BSLASHTextcite] = ACTIONS(5956), - [anon_sym_BSLASHsmartcite] = ACTIONS(5956), - [anon_sym_BSLASHSmartcite] = ACTIONS(5956), - [anon_sym_BSLASHsupercite] = ACTIONS(5956), - [anon_sym_BSLASHautocite] = ACTIONS(5956), - [anon_sym_BSLASHAutocite] = ACTIONS(5956), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHvolcite] = ACTIONS(5956), - [anon_sym_BSLASHVolcite] = ACTIONS(5956), - [anon_sym_BSLASHpvolcite] = ACTIONS(5956), - [anon_sym_BSLASHPvolcite] = ACTIONS(5956), - [anon_sym_BSLASHfvolcite] = ACTIONS(5956), - [anon_sym_BSLASHftvolcite] = ACTIONS(5956), - [anon_sym_BSLASHsvolcite] = ACTIONS(5956), - [anon_sym_BSLASHSvolcite] = ACTIONS(5956), - [anon_sym_BSLASHtvolcite] = ACTIONS(5956), - [anon_sym_BSLASHTvolcite] = ACTIONS(5956), - [anon_sym_BSLASHavolcite] = ACTIONS(5956), - [anon_sym_BSLASHAvolcite] = ACTIONS(5956), - [anon_sym_BSLASHnotecite] = ACTIONS(5956), - [anon_sym_BSLASHNotecite] = ACTIONS(5956), - [anon_sym_BSLASHpnotecite] = ACTIONS(5956), - [anon_sym_BSLASHPnotecite] = ACTIONS(5956), - [anon_sym_BSLASHfnotecite] = ACTIONS(5956), - [anon_sym_BSLASHlabel] = ACTIONS(5956), - [anon_sym_BSLASHref] = ACTIONS(5956), - [anon_sym_BSLASHeqref] = ACTIONS(5956), - [anon_sym_BSLASHvref] = ACTIONS(5956), - [anon_sym_BSLASHVref] = ACTIONS(5956), - [anon_sym_BSLASHautoref] = ACTIONS(5956), - [anon_sym_BSLASHpageref] = ACTIONS(5956), - [anon_sym_BSLASHcref] = ACTIONS(5956), - [anon_sym_BSLASHCref] = ACTIONS(5956), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnameCref] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHlabelcref] = ACTIONS(5956), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCrefrange] = ACTIONS(5956), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnewlabel] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5956), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5956), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5958), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHdef] = ACTIONS(5956), - [anon_sym_BSLASHlet] = ACTIONS(5956), - [anon_sym_BSLASHleft] = ACTIONS(5956), - [anon_sym_BSLASHbig] = ACTIONS(5956), - [anon_sym_BSLASHBig] = ACTIONS(5956), - [anon_sym_BSLASHbigg] = ACTIONS(5956), - [anon_sym_BSLASHBigg] = ACTIONS(5956), - [anon_sym_BSLASHbigl] = ACTIONS(5956), - [anon_sym_BSLASHBigl] = ACTIONS(5956), - [anon_sym_BSLASHbiggl] = ACTIONS(5956), - [anon_sym_BSLASHBiggl] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5956), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5956), - [anon_sym_BSLASHgls] = ACTIONS(5956), - [anon_sym_BSLASHGls] = ACTIONS(5956), - [anon_sym_BSLASHGLS] = ACTIONS(5956), - [anon_sym_BSLASHglspl] = ACTIONS(5956), - [anon_sym_BSLASHGlspl] = ACTIONS(5956), - [anon_sym_BSLASHGLSpl] = ACTIONS(5956), - [anon_sym_BSLASHglsdisp] = ACTIONS(5956), - [anon_sym_BSLASHglslink] = ACTIONS(5956), - [anon_sym_BSLASHglstext] = ACTIONS(5956), - [anon_sym_BSLASHGlstext] = ACTIONS(5956), - [anon_sym_BSLASHGLStext] = ACTIONS(5956), - [anon_sym_BSLASHglsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5956), - [anon_sym_BSLASHglsplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSplural] = ACTIONS(5956), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHglsname] = ACTIONS(5956), - [anon_sym_BSLASHGlsname] = ACTIONS(5956), - [anon_sym_BSLASHGLSname] = ACTIONS(5956), - [anon_sym_BSLASHglssymbol] = ACTIONS(5956), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5956), - [anon_sym_BSLASHglsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5956), - [anon_sym_BSLASHglsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5956), - [anon_sym_BSLASHglsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5956), - [anon_sym_BSLASHglsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5956), - [anon_sym_BSLASHglsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5956), - [anon_sym_BSLASHnewacronym] = ACTIONS(5956), - [anon_sym_BSLASHacrshort] = ACTIONS(5956), - [anon_sym_BSLASHAcrshort] = ACTIONS(5956), - [anon_sym_BSLASHACRshort] = ACTIONS(5956), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5956), - [anon_sym_BSLASHacrlong] = ACTIONS(5956), - [anon_sym_BSLASHAcrlong] = ACTIONS(5956), - [anon_sym_BSLASHACRlong] = ACTIONS(5956), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5956), - [anon_sym_BSLASHacrfull] = ACTIONS(5956), - [anon_sym_BSLASHAcrfull] = ACTIONS(5956), - [anon_sym_BSLASHACRfull] = ACTIONS(5956), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5956), - [anon_sym_BSLASHacs] = ACTIONS(5956), - [anon_sym_BSLASHAcs] = ACTIONS(5956), - [anon_sym_BSLASHacsp] = ACTIONS(5956), - [anon_sym_BSLASHAcsp] = ACTIONS(5956), - [anon_sym_BSLASHacl] = ACTIONS(5956), - [anon_sym_BSLASHAcl] = ACTIONS(5956), - [anon_sym_BSLASHaclp] = ACTIONS(5956), - [anon_sym_BSLASHAclp] = ACTIONS(5956), - [anon_sym_BSLASHacf] = ACTIONS(5956), - [anon_sym_BSLASHAcf] = ACTIONS(5956), - [anon_sym_BSLASHacfp] = ACTIONS(5956), - [anon_sym_BSLASHAcfp] = ACTIONS(5956), - [anon_sym_BSLASHac] = ACTIONS(5956), - [anon_sym_BSLASHAc] = ACTIONS(5956), - [anon_sym_BSLASHacp] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5956), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5956), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5956), - [anon_sym_BSLASHcolor] = ACTIONS(5956), - [anon_sym_BSLASHcolorbox] = ACTIONS(5956), - [anon_sym_BSLASHtextcolor] = ACTIONS(5956), - [anon_sym_BSLASHpagecolor] = ACTIONS(5956), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5956), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5956), - [anon_sym_BSLASHtext] = ACTIONS(5956), - [anon_sym_BSLASHintertext] = ACTIONS(5956), - [anon_sym_shortintertext] = ACTIONS(5956), - }, - [717] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(5952), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(5954), - [anon_sym_RBRACK] = ACTIONS(5954), - [anon_sym_COMMA] = ACTIONS(5954), - [anon_sym_EQ] = ACTIONS(5954), - [anon_sym_LPAREN] = ACTIONS(5954), - [anon_sym_RPAREN] = ACTIONS(5954), - [anon_sym_BSLASHpart] = ACTIONS(5952), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddpart] = ACTIONS(5952), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5954), - [anon_sym_BSLASHchapter] = ACTIONS(5952), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddchap] = ACTIONS(5952), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsection] = ACTIONS(5952), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddsec] = ACTIONS(5952), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubsection] = ACTIONS(5952), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5952), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHparagraph] = ACTIONS(5952), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5952), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5954), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(5954), - [sym_word] = ACTIONS(5952), - [sym_placeholder] = ACTIONS(5954), - [anon_sym_PLUS] = ACTIONS(5954), - [anon_sym_DASH] = ACTIONS(5954), - [anon_sym_STAR] = ACTIONS(5954), - [anon_sym_SLASH] = ACTIONS(5954), - [anon_sym_LT] = ACTIONS(5952), - [anon_sym_GT] = ACTIONS(5952), - [anon_sym_BANG] = ACTIONS(5952), - [anon_sym_PIPE] = ACTIONS(5952), - [anon_sym_COLON] = ACTIONS(5952), - [anon_sym_SQUOTE] = ACTIONS(5952), - [anon_sym__] = ACTIONS(5954), - [anon_sym_CARET] = ACTIONS(5954), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5954), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5954), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5954), - [anon_sym_DOLLAR] = ACTIONS(5952), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5954), - [anon_sym_BSLASHbegin] = ACTIONS(5952), - [anon_sym_BSLASHtitle] = ACTIONS(5952), - [anon_sym_BSLASHauthor] = ACTIONS(5952), - [anon_sym_BSLASHusepackage] = ACTIONS(5952), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5952), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5952), - [anon_sym_BSLASHinclude] = ACTIONS(5952), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5952), - [anon_sym_BSLASHinput] = ACTIONS(5952), - [anon_sym_BSLASHsubfile] = ACTIONS(5952), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5952), - [anon_sym_BSLASHbibliography] = ACTIONS(5952), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5952), - [anon_sym_BSLASHincludesvg] = ACTIONS(5952), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5952), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5952), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5952), - [anon_sym_BSLASHimport] = ACTIONS(5952), - [anon_sym_BSLASHsubimport] = ACTIONS(5952), - [anon_sym_BSLASHinputfrom] = ACTIONS(5952), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5952), - [anon_sym_BSLASHincludefrom] = ACTIONS(5952), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5952), - [anon_sym_BSLASHcaption] = ACTIONS(5952), - [anon_sym_BSLASHcite] = ACTIONS(5952), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCite] = ACTIONS(5952), - [anon_sym_BSLASHnocite] = ACTIONS(5952), - [anon_sym_BSLASHcitet] = ACTIONS(5952), - [anon_sym_BSLASHcitep] = ACTIONS(5952), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteauthor] = ACTIONS(5952), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5952), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitetitle] = ACTIONS(5952), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteyear] = ACTIONS(5952), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitedate] = ACTIONS(5952), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteurl] = ACTIONS(5952), - [anon_sym_BSLASHfullcite] = ACTIONS(5952), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5952), - [anon_sym_BSLASHcitealt] = ACTIONS(5952), - [anon_sym_BSLASHcitealp] = ACTIONS(5952), - [anon_sym_BSLASHcitetext] = ACTIONS(5952), - [anon_sym_BSLASHparencite] = ACTIONS(5952), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHParencite] = ACTIONS(5952), - [anon_sym_BSLASHfootcite] = ACTIONS(5952), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5952), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5952), - [anon_sym_BSLASHtextcite] = ACTIONS(5952), - [anon_sym_BSLASHTextcite] = ACTIONS(5952), - [anon_sym_BSLASHsmartcite] = ACTIONS(5952), - [anon_sym_BSLASHSmartcite] = ACTIONS(5952), - [anon_sym_BSLASHsupercite] = ACTIONS(5952), - [anon_sym_BSLASHautocite] = ACTIONS(5952), - [anon_sym_BSLASHAutocite] = ACTIONS(5952), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHvolcite] = ACTIONS(5952), - [anon_sym_BSLASHVolcite] = ACTIONS(5952), - [anon_sym_BSLASHpvolcite] = ACTIONS(5952), - [anon_sym_BSLASHPvolcite] = ACTIONS(5952), - [anon_sym_BSLASHfvolcite] = ACTIONS(5952), - [anon_sym_BSLASHftvolcite] = ACTIONS(5952), - [anon_sym_BSLASHsvolcite] = ACTIONS(5952), - [anon_sym_BSLASHSvolcite] = ACTIONS(5952), - [anon_sym_BSLASHtvolcite] = ACTIONS(5952), - [anon_sym_BSLASHTvolcite] = ACTIONS(5952), - [anon_sym_BSLASHavolcite] = ACTIONS(5952), - [anon_sym_BSLASHAvolcite] = ACTIONS(5952), - [anon_sym_BSLASHnotecite] = ACTIONS(5952), - [anon_sym_BSLASHNotecite] = ACTIONS(5952), - [anon_sym_BSLASHpnotecite] = ACTIONS(5952), - [anon_sym_BSLASHPnotecite] = ACTIONS(5952), - [anon_sym_BSLASHfnotecite] = ACTIONS(5952), - [anon_sym_BSLASHlabel] = ACTIONS(5952), - [anon_sym_BSLASHref] = ACTIONS(5952), - [anon_sym_BSLASHeqref] = ACTIONS(5952), - [anon_sym_BSLASHvref] = ACTIONS(5952), - [anon_sym_BSLASHVref] = ACTIONS(5952), - [anon_sym_BSLASHautoref] = ACTIONS(5952), - [anon_sym_BSLASHpageref] = ACTIONS(5952), - [anon_sym_BSLASHcref] = ACTIONS(5952), - [anon_sym_BSLASHCref] = ACTIONS(5952), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5954), - [anon_sym_BSLASHnamecref] = ACTIONS(5952), - [anon_sym_BSLASHnameCref] = ACTIONS(5952), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5952), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5952), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5952), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5952), - [anon_sym_BSLASHlabelcref] = ACTIONS(5952), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5952), - [anon_sym_BSLASHcrefrange] = ACTIONS(5952), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCrefrange] = ACTIONS(5952), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5954), - [anon_sym_BSLASHnewlabel] = ACTIONS(5952), - [anon_sym_BSLASHnewcommand] = ACTIONS(5952), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5952), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5952), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5954), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHdef] = ACTIONS(5952), - [anon_sym_BSLASHlet] = ACTIONS(5952), - [anon_sym_BSLASHleft] = ACTIONS(5952), - [anon_sym_BSLASHbig] = ACTIONS(5952), - [anon_sym_BSLASHBig] = ACTIONS(5952), - [anon_sym_BSLASHbigg] = ACTIONS(5952), - [anon_sym_BSLASHBigg] = ACTIONS(5952), - [anon_sym_BSLASHbigl] = ACTIONS(5952), - [anon_sym_BSLASHBigl] = ACTIONS(5952), - [anon_sym_BSLASHbiggl] = ACTIONS(5952), - [anon_sym_BSLASHBiggl] = ACTIONS(5952), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5952), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5952), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5952), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5952), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5952), - [anon_sym_BSLASHgls] = ACTIONS(5952), - [anon_sym_BSLASHGls] = ACTIONS(5952), - [anon_sym_BSLASHGLS] = ACTIONS(5952), - [anon_sym_BSLASHglspl] = ACTIONS(5952), - [anon_sym_BSLASHGlspl] = ACTIONS(5952), - [anon_sym_BSLASHGLSpl] = ACTIONS(5952), - [anon_sym_BSLASHglsdisp] = ACTIONS(5952), - [anon_sym_BSLASHglslink] = ACTIONS(5952), - [anon_sym_BSLASHglstext] = ACTIONS(5952), - [anon_sym_BSLASHGlstext] = ACTIONS(5952), - [anon_sym_BSLASHGLStext] = ACTIONS(5952), - [anon_sym_BSLASHglsfirst] = ACTIONS(5952), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5952), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5952), - [anon_sym_BSLASHglsplural] = ACTIONS(5952), - [anon_sym_BSLASHGlsplural] = ACTIONS(5952), - [anon_sym_BSLASHGLSplural] = ACTIONS(5952), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHglsname] = ACTIONS(5952), - [anon_sym_BSLASHGlsname] = ACTIONS(5952), - [anon_sym_BSLASHGLSname] = ACTIONS(5952), - [anon_sym_BSLASHglssymbol] = ACTIONS(5952), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5952), - [anon_sym_BSLASHglsdesc] = ACTIONS(5952), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5952), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5952), - [anon_sym_BSLASHglsuseri] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5952), - [anon_sym_BSLASHglsuserii] = ACTIONS(5952), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5952), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5952), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5952), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5952), - [anon_sym_BSLASHglsuserv] = ACTIONS(5952), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5952), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5952), - [anon_sym_BSLASHglsuservi] = ACTIONS(5952), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5952), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5952), - [anon_sym_BSLASHnewacronym] = ACTIONS(5952), - [anon_sym_BSLASHacrshort] = ACTIONS(5952), - [anon_sym_BSLASHAcrshort] = ACTIONS(5952), - [anon_sym_BSLASHACRshort] = ACTIONS(5952), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5952), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5952), - [anon_sym_BSLASHacrlong] = ACTIONS(5952), - [anon_sym_BSLASHAcrlong] = ACTIONS(5952), - [anon_sym_BSLASHACRlong] = ACTIONS(5952), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5952), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5952), - [anon_sym_BSLASHacrfull] = ACTIONS(5952), - [anon_sym_BSLASHAcrfull] = ACTIONS(5952), - [anon_sym_BSLASHACRfull] = ACTIONS(5952), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5952), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5952), - [anon_sym_BSLASHacs] = ACTIONS(5952), - [anon_sym_BSLASHAcs] = ACTIONS(5952), - [anon_sym_BSLASHacsp] = ACTIONS(5952), - [anon_sym_BSLASHAcsp] = ACTIONS(5952), - [anon_sym_BSLASHacl] = ACTIONS(5952), - [anon_sym_BSLASHAcl] = ACTIONS(5952), - [anon_sym_BSLASHaclp] = ACTIONS(5952), - [anon_sym_BSLASHAclp] = ACTIONS(5952), - [anon_sym_BSLASHacf] = ACTIONS(5952), - [anon_sym_BSLASHAcf] = ACTIONS(5952), - [anon_sym_BSLASHacfp] = ACTIONS(5952), - [anon_sym_BSLASHAcfp] = ACTIONS(5952), - [anon_sym_BSLASHac] = ACTIONS(5952), - [anon_sym_BSLASHAc] = ACTIONS(5952), - [anon_sym_BSLASHacp] = ACTIONS(5952), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5952), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5952), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5952), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5952), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5952), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5952), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5952), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5954), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5952), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5954), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5952), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5952), - [anon_sym_BSLASHcolor] = ACTIONS(5952), - [anon_sym_BSLASHcolorbox] = ACTIONS(5952), - [anon_sym_BSLASHtextcolor] = ACTIONS(5952), - [anon_sym_BSLASHpagecolor] = ACTIONS(5952), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5952), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5952), - [anon_sym_BSLASHtext] = ACTIONS(5952), - [anon_sym_BSLASHintertext] = ACTIONS(5952), - [anon_sym_shortintertext] = ACTIONS(5952), - }, - [718] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(5956), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_EQ] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_BSLASHpart] = ACTIONS(5956), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddpart] = ACTIONS(5956), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHchapter] = ACTIONS(5956), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddchap] = ACTIONS(5956), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsection] = ACTIONS(5956), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddsec] = ACTIONS(5956), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHparagraph] = ACTIONS(5956), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5956), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(5958), - [sym_word] = ACTIONS(5956), - [sym_placeholder] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5956), - [anon_sym_GT] = ACTIONS(5956), - [anon_sym_BANG] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_SQUOTE] = ACTIONS(5956), - [anon_sym__] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5958), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5958), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5958), - [anon_sym_DOLLAR] = ACTIONS(5956), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5958), - [anon_sym_BSLASHbegin] = ACTIONS(5956), - [anon_sym_BSLASHtitle] = ACTIONS(5956), - [anon_sym_BSLASHauthor] = ACTIONS(5956), - [anon_sym_BSLASHusepackage] = ACTIONS(5956), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5956), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5956), - [anon_sym_BSLASHinclude] = ACTIONS(5956), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5956), - [anon_sym_BSLASHinput] = ACTIONS(5956), - [anon_sym_BSLASHsubfile] = ACTIONS(5956), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5956), - [anon_sym_BSLASHbibliography] = ACTIONS(5956), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5956), - [anon_sym_BSLASHincludesvg] = ACTIONS(5956), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5956), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5956), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5956), - [anon_sym_BSLASHimport] = ACTIONS(5956), - [anon_sym_BSLASHsubimport] = ACTIONS(5956), - [anon_sym_BSLASHinputfrom] = ACTIONS(5956), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5956), - [anon_sym_BSLASHincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHcaption] = ACTIONS(5956), - [anon_sym_BSLASHcite] = ACTIONS(5956), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCite] = ACTIONS(5956), - [anon_sym_BSLASHnocite] = ACTIONS(5956), - [anon_sym_BSLASHcitet] = ACTIONS(5956), - [anon_sym_BSLASHcitep] = ACTIONS(5956), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteauthor] = ACTIONS(5956), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5956), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitetitle] = ACTIONS(5956), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteyear] = ACTIONS(5956), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitedate] = ACTIONS(5956), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteurl] = ACTIONS(5956), - [anon_sym_BSLASHfullcite] = ACTIONS(5956), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5956), - [anon_sym_BSLASHcitealt] = ACTIONS(5956), - [anon_sym_BSLASHcitealp] = ACTIONS(5956), - [anon_sym_BSLASHcitetext] = ACTIONS(5956), - [anon_sym_BSLASHparencite] = ACTIONS(5956), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHParencite] = ACTIONS(5956), - [anon_sym_BSLASHfootcite] = ACTIONS(5956), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5956), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5956), - [anon_sym_BSLASHtextcite] = ACTIONS(5956), - [anon_sym_BSLASHTextcite] = ACTIONS(5956), - [anon_sym_BSLASHsmartcite] = ACTIONS(5956), - [anon_sym_BSLASHSmartcite] = ACTIONS(5956), - [anon_sym_BSLASHsupercite] = ACTIONS(5956), - [anon_sym_BSLASHautocite] = ACTIONS(5956), - [anon_sym_BSLASHAutocite] = ACTIONS(5956), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHvolcite] = ACTIONS(5956), - [anon_sym_BSLASHVolcite] = ACTIONS(5956), - [anon_sym_BSLASHpvolcite] = ACTIONS(5956), - [anon_sym_BSLASHPvolcite] = ACTIONS(5956), - [anon_sym_BSLASHfvolcite] = ACTIONS(5956), - [anon_sym_BSLASHftvolcite] = ACTIONS(5956), - [anon_sym_BSLASHsvolcite] = ACTIONS(5956), - [anon_sym_BSLASHSvolcite] = ACTIONS(5956), - [anon_sym_BSLASHtvolcite] = ACTIONS(5956), - [anon_sym_BSLASHTvolcite] = ACTIONS(5956), - [anon_sym_BSLASHavolcite] = ACTIONS(5956), - [anon_sym_BSLASHAvolcite] = ACTIONS(5956), - [anon_sym_BSLASHnotecite] = ACTIONS(5956), - [anon_sym_BSLASHNotecite] = ACTIONS(5956), - [anon_sym_BSLASHpnotecite] = ACTIONS(5956), - [anon_sym_BSLASHPnotecite] = ACTIONS(5956), - [anon_sym_BSLASHfnotecite] = ACTIONS(5956), - [anon_sym_BSLASHlabel] = ACTIONS(5956), - [anon_sym_BSLASHref] = ACTIONS(5956), - [anon_sym_BSLASHeqref] = ACTIONS(5956), - [anon_sym_BSLASHvref] = ACTIONS(5956), - [anon_sym_BSLASHVref] = ACTIONS(5956), - [anon_sym_BSLASHautoref] = ACTIONS(5956), - [anon_sym_BSLASHpageref] = ACTIONS(5956), - [anon_sym_BSLASHcref] = ACTIONS(5956), - [anon_sym_BSLASHCref] = ACTIONS(5956), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnameCref] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHlabelcref] = ACTIONS(5956), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCrefrange] = ACTIONS(5956), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnewlabel] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5956), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5956), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5958), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHdef] = ACTIONS(5956), - [anon_sym_BSLASHlet] = ACTIONS(5956), - [anon_sym_BSLASHleft] = ACTIONS(5956), - [anon_sym_BSLASHbig] = ACTIONS(5956), - [anon_sym_BSLASHBig] = ACTIONS(5956), - [anon_sym_BSLASHbigg] = ACTIONS(5956), - [anon_sym_BSLASHBigg] = ACTIONS(5956), - [anon_sym_BSLASHbigl] = ACTIONS(5956), - [anon_sym_BSLASHBigl] = ACTIONS(5956), - [anon_sym_BSLASHbiggl] = ACTIONS(5956), - [anon_sym_BSLASHBiggl] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5956), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5956), - [anon_sym_BSLASHgls] = ACTIONS(5956), - [anon_sym_BSLASHGls] = ACTIONS(5956), - [anon_sym_BSLASHGLS] = ACTIONS(5956), - [anon_sym_BSLASHglspl] = ACTIONS(5956), - [anon_sym_BSLASHGlspl] = ACTIONS(5956), - [anon_sym_BSLASHGLSpl] = ACTIONS(5956), - [anon_sym_BSLASHglsdisp] = ACTIONS(5956), - [anon_sym_BSLASHglslink] = ACTIONS(5956), - [anon_sym_BSLASHglstext] = ACTIONS(5956), - [anon_sym_BSLASHGlstext] = ACTIONS(5956), - [anon_sym_BSLASHGLStext] = ACTIONS(5956), - [anon_sym_BSLASHglsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5956), - [anon_sym_BSLASHglsplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSplural] = ACTIONS(5956), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHglsname] = ACTIONS(5956), - [anon_sym_BSLASHGlsname] = ACTIONS(5956), - [anon_sym_BSLASHGLSname] = ACTIONS(5956), - [anon_sym_BSLASHglssymbol] = ACTIONS(5956), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5956), - [anon_sym_BSLASHglsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5956), - [anon_sym_BSLASHglsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5956), - [anon_sym_BSLASHglsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5956), - [anon_sym_BSLASHglsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5956), - [anon_sym_BSLASHglsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5956), - [anon_sym_BSLASHnewacronym] = ACTIONS(5956), - [anon_sym_BSLASHacrshort] = ACTIONS(5956), - [anon_sym_BSLASHAcrshort] = ACTIONS(5956), - [anon_sym_BSLASHACRshort] = ACTIONS(5956), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5956), - [anon_sym_BSLASHacrlong] = ACTIONS(5956), - [anon_sym_BSLASHAcrlong] = ACTIONS(5956), - [anon_sym_BSLASHACRlong] = ACTIONS(5956), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5956), - [anon_sym_BSLASHacrfull] = ACTIONS(5956), - [anon_sym_BSLASHAcrfull] = ACTIONS(5956), - [anon_sym_BSLASHACRfull] = ACTIONS(5956), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5956), - [anon_sym_BSLASHacs] = ACTIONS(5956), - [anon_sym_BSLASHAcs] = ACTIONS(5956), - [anon_sym_BSLASHacsp] = ACTIONS(5956), - [anon_sym_BSLASHAcsp] = ACTIONS(5956), - [anon_sym_BSLASHacl] = ACTIONS(5956), - [anon_sym_BSLASHAcl] = ACTIONS(5956), - [anon_sym_BSLASHaclp] = ACTIONS(5956), - [anon_sym_BSLASHAclp] = ACTIONS(5956), - [anon_sym_BSLASHacf] = ACTIONS(5956), - [anon_sym_BSLASHAcf] = ACTIONS(5956), - [anon_sym_BSLASHacfp] = ACTIONS(5956), - [anon_sym_BSLASHAcfp] = ACTIONS(5956), - [anon_sym_BSLASHac] = ACTIONS(5956), - [anon_sym_BSLASHAc] = ACTIONS(5956), - [anon_sym_BSLASHacp] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5956), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5956), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5956), - [anon_sym_BSLASHcolor] = ACTIONS(5956), - [anon_sym_BSLASHcolorbox] = ACTIONS(5956), - [anon_sym_BSLASHtextcolor] = ACTIONS(5956), - [anon_sym_BSLASHpagecolor] = ACTIONS(5956), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5956), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5956), - [anon_sym_BSLASHtext] = ACTIONS(5956), - [anon_sym_BSLASHintertext] = ACTIONS(5956), - [anon_sym_shortintertext] = ACTIONS(5956), - }, - [719] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(5956), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_EQ] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_BSLASHpart] = ACTIONS(5956), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddpart] = ACTIONS(5956), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHchapter] = ACTIONS(5956), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddchap] = ACTIONS(5956), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsection] = ACTIONS(5956), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddsec] = ACTIONS(5956), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHparagraph] = ACTIONS(5956), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(5956), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5958), - [anon_sym_LBRACE] = ACTIONS(5958), - [sym_word] = ACTIONS(5956), - [sym_placeholder] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5956), - [anon_sym_GT] = ACTIONS(5956), - [anon_sym_BANG] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_SQUOTE] = ACTIONS(5956), - [anon_sym__] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5958), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5958), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5958), - [anon_sym_DOLLAR] = ACTIONS(5956), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5958), - [anon_sym_BSLASHbegin] = ACTIONS(5956), - [anon_sym_BSLASHtitle] = ACTIONS(5956), - [anon_sym_BSLASHauthor] = ACTIONS(5956), - [anon_sym_BSLASHusepackage] = ACTIONS(5956), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5956), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5956), - [anon_sym_BSLASHinclude] = ACTIONS(5956), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5956), - [anon_sym_BSLASHinput] = ACTIONS(5956), - [anon_sym_BSLASHsubfile] = ACTIONS(5956), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5956), - [anon_sym_BSLASHbibliography] = ACTIONS(5956), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5956), - [anon_sym_BSLASHincludesvg] = ACTIONS(5956), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5956), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5956), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5956), - [anon_sym_BSLASHimport] = ACTIONS(5956), - [anon_sym_BSLASHsubimport] = ACTIONS(5956), - [anon_sym_BSLASHinputfrom] = ACTIONS(5956), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5956), - [anon_sym_BSLASHincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHcaption] = ACTIONS(5956), - [anon_sym_BSLASHcite] = ACTIONS(5956), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCite] = ACTIONS(5956), - [anon_sym_BSLASHnocite] = ACTIONS(5956), - [anon_sym_BSLASHcitet] = ACTIONS(5956), - [anon_sym_BSLASHcitep] = ACTIONS(5956), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteauthor] = ACTIONS(5956), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5956), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitetitle] = ACTIONS(5956), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteyear] = ACTIONS(5956), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitedate] = ACTIONS(5956), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteurl] = ACTIONS(5956), - [anon_sym_BSLASHfullcite] = ACTIONS(5956), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5956), - [anon_sym_BSLASHcitealt] = ACTIONS(5956), - [anon_sym_BSLASHcitealp] = ACTIONS(5956), - [anon_sym_BSLASHcitetext] = ACTIONS(5956), - [anon_sym_BSLASHparencite] = ACTIONS(5956), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHParencite] = ACTIONS(5956), - [anon_sym_BSLASHfootcite] = ACTIONS(5956), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5956), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5956), - [anon_sym_BSLASHtextcite] = ACTIONS(5956), - [anon_sym_BSLASHTextcite] = ACTIONS(5956), - [anon_sym_BSLASHsmartcite] = ACTIONS(5956), - [anon_sym_BSLASHSmartcite] = ACTIONS(5956), - [anon_sym_BSLASHsupercite] = ACTIONS(5956), - [anon_sym_BSLASHautocite] = ACTIONS(5956), - [anon_sym_BSLASHAutocite] = ACTIONS(5956), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHvolcite] = ACTIONS(5956), - [anon_sym_BSLASHVolcite] = ACTIONS(5956), - [anon_sym_BSLASHpvolcite] = ACTIONS(5956), - [anon_sym_BSLASHPvolcite] = ACTIONS(5956), - [anon_sym_BSLASHfvolcite] = ACTIONS(5956), - [anon_sym_BSLASHftvolcite] = ACTIONS(5956), - [anon_sym_BSLASHsvolcite] = ACTIONS(5956), - [anon_sym_BSLASHSvolcite] = ACTIONS(5956), - [anon_sym_BSLASHtvolcite] = ACTIONS(5956), - [anon_sym_BSLASHTvolcite] = ACTIONS(5956), - [anon_sym_BSLASHavolcite] = ACTIONS(5956), - [anon_sym_BSLASHAvolcite] = ACTIONS(5956), - [anon_sym_BSLASHnotecite] = ACTIONS(5956), - [anon_sym_BSLASHNotecite] = ACTIONS(5956), - [anon_sym_BSLASHpnotecite] = ACTIONS(5956), - [anon_sym_BSLASHPnotecite] = ACTIONS(5956), - [anon_sym_BSLASHfnotecite] = ACTIONS(5956), - [anon_sym_BSLASHlabel] = ACTIONS(5956), - [anon_sym_BSLASHref] = ACTIONS(5956), - [anon_sym_BSLASHeqref] = ACTIONS(5956), - [anon_sym_BSLASHvref] = ACTIONS(5956), - [anon_sym_BSLASHVref] = ACTIONS(5956), - [anon_sym_BSLASHautoref] = ACTIONS(5956), - [anon_sym_BSLASHpageref] = ACTIONS(5956), - [anon_sym_BSLASHcref] = ACTIONS(5956), - [anon_sym_BSLASHCref] = ACTIONS(5956), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnameCref] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHlabelcref] = ACTIONS(5956), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCrefrange] = ACTIONS(5956), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnewlabel] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5956), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5956), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5958), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHdef] = ACTIONS(5956), - [anon_sym_BSLASHlet] = ACTIONS(5956), - [anon_sym_BSLASHleft] = ACTIONS(5956), - [anon_sym_BSLASHbig] = ACTIONS(5956), - [anon_sym_BSLASHBig] = ACTIONS(5956), - [anon_sym_BSLASHbigg] = ACTIONS(5956), - [anon_sym_BSLASHBigg] = ACTIONS(5956), - [anon_sym_BSLASHbigl] = ACTIONS(5956), - [anon_sym_BSLASHBigl] = ACTIONS(5956), - [anon_sym_BSLASHbiggl] = ACTIONS(5956), - [anon_sym_BSLASHBiggl] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5956), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5956), - [anon_sym_BSLASHgls] = ACTIONS(5956), - [anon_sym_BSLASHGls] = ACTIONS(5956), - [anon_sym_BSLASHGLS] = ACTIONS(5956), - [anon_sym_BSLASHglspl] = ACTIONS(5956), - [anon_sym_BSLASHGlspl] = ACTIONS(5956), - [anon_sym_BSLASHGLSpl] = ACTIONS(5956), - [anon_sym_BSLASHglsdisp] = ACTIONS(5956), - [anon_sym_BSLASHglslink] = ACTIONS(5956), - [anon_sym_BSLASHglstext] = ACTIONS(5956), - [anon_sym_BSLASHGlstext] = ACTIONS(5956), - [anon_sym_BSLASHGLStext] = ACTIONS(5956), - [anon_sym_BSLASHglsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5956), - [anon_sym_BSLASHglsplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSplural] = ACTIONS(5956), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHglsname] = ACTIONS(5956), - [anon_sym_BSLASHGlsname] = ACTIONS(5956), - [anon_sym_BSLASHGLSname] = ACTIONS(5956), - [anon_sym_BSLASHglssymbol] = ACTIONS(5956), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5956), - [anon_sym_BSLASHglsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5956), - [anon_sym_BSLASHglsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5956), - [anon_sym_BSLASHglsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5956), - [anon_sym_BSLASHglsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5956), - [anon_sym_BSLASHglsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5956), - [anon_sym_BSLASHnewacronym] = ACTIONS(5956), - [anon_sym_BSLASHacrshort] = ACTIONS(5956), - [anon_sym_BSLASHAcrshort] = ACTIONS(5956), - [anon_sym_BSLASHACRshort] = ACTIONS(5956), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5956), - [anon_sym_BSLASHacrlong] = ACTIONS(5956), - [anon_sym_BSLASHAcrlong] = ACTIONS(5956), - [anon_sym_BSLASHACRlong] = ACTIONS(5956), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5956), - [anon_sym_BSLASHacrfull] = ACTIONS(5956), - [anon_sym_BSLASHAcrfull] = ACTIONS(5956), - [anon_sym_BSLASHACRfull] = ACTIONS(5956), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5956), - [anon_sym_BSLASHacs] = ACTIONS(5956), - [anon_sym_BSLASHAcs] = ACTIONS(5956), - [anon_sym_BSLASHacsp] = ACTIONS(5956), - [anon_sym_BSLASHAcsp] = ACTIONS(5956), - [anon_sym_BSLASHacl] = ACTIONS(5956), - [anon_sym_BSLASHAcl] = ACTIONS(5956), - [anon_sym_BSLASHaclp] = ACTIONS(5956), - [anon_sym_BSLASHAclp] = ACTIONS(5956), - [anon_sym_BSLASHacf] = ACTIONS(5956), - [anon_sym_BSLASHAcf] = ACTIONS(5956), - [anon_sym_BSLASHacfp] = ACTIONS(5956), - [anon_sym_BSLASHAcfp] = ACTIONS(5956), - [anon_sym_BSLASHac] = ACTIONS(5956), - [anon_sym_BSLASHAc] = ACTIONS(5956), - [anon_sym_BSLASHacp] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5956), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5956), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5956), - [anon_sym_BSLASHcolor] = ACTIONS(5956), - [anon_sym_BSLASHcolorbox] = ACTIONS(5956), - [anon_sym_BSLASHtextcolor] = ACTIONS(5956), - [anon_sym_BSLASHpagecolor] = ACTIONS(5956), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5956), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5956), - [anon_sym_BSLASHtext] = ACTIONS(5956), - [anon_sym_BSLASHintertext] = ACTIONS(5956), - [anon_sym_shortintertext] = ACTIONS(5956), - }, - [720] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(5960), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5960), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [721] = { - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(811), - [aux_sym__section_repeat1] = STATE(811), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(656), - [anon_sym_BSLASHpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHaddpart] = ACTIONS(656), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(658), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [722] = { - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(812), - [aux_sym__section_repeat2] = STATE(812), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [723] = { - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(813), - [aux_sym__section_repeat3] = STATE(813), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [724] = { - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(814), - [aux_sym__section_repeat4] = STATE(814), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [725] = { - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(815), - [aux_sym__section_repeat5] = STATE(815), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [726] = { - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(816), - [aux_sym__section_repeat6] = STATE(816), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [727] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [728] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [729] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(5960), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(5960), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5962), - [anon_sym_LBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [730] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(5952), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(5954), - [anon_sym_RBRACK] = ACTIONS(5954), - [anon_sym_COMMA] = ACTIONS(5954), - [anon_sym_EQ] = ACTIONS(5954), - [anon_sym_LPAREN] = ACTIONS(5954), - [anon_sym_RPAREN] = ACTIONS(5954), - [anon_sym_BSLASHpart] = ACTIONS(5952), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddpart] = ACTIONS(5952), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5954), - [anon_sym_BSLASHchapter] = ACTIONS(5952), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddchap] = ACTIONS(5952), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsection] = ACTIONS(5952), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddsec] = ACTIONS(5952), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubsection] = ACTIONS(5952), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5952), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHparagraph] = ACTIONS(5952), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5952), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5954), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(5954), - [sym_word] = ACTIONS(5952), - [sym_placeholder] = ACTIONS(5954), - [anon_sym_PLUS] = ACTIONS(5954), - [anon_sym_DASH] = ACTIONS(5954), - [anon_sym_STAR] = ACTIONS(5954), - [anon_sym_SLASH] = ACTIONS(5954), - [anon_sym_LT] = ACTIONS(5952), - [anon_sym_GT] = ACTIONS(5952), - [anon_sym_BANG] = ACTIONS(5952), - [anon_sym_PIPE] = ACTIONS(5952), - [anon_sym_COLON] = ACTIONS(5952), - [anon_sym_SQUOTE] = ACTIONS(5952), - [anon_sym__] = ACTIONS(5954), - [anon_sym_CARET] = ACTIONS(5954), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5954), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5954), - [anon_sym_DOLLAR] = ACTIONS(5952), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5954), - [anon_sym_BSLASHbegin] = ACTIONS(5952), - [anon_sym_BSLASHend] = ACTIONS(5952), - [anon_sym_BSLASHtitle] = ACTIONS(5952), - [anon_sym_BSLASHauthor] = ACTIONS(5952), - [anon_sym_BSLASHusepackage] = ACTIONS(5952), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5952), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5952), - [anon_sym_BSLASHinclude] = ACTIONS(5952), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5952), - [anon_sym_BSLASHinput] = ACTIONS(5952), - [anon_sym_BSLASHsubfile] = ACTIONS(5952), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5952), - [anon_sym_BSLASHbibliography] = ACTIONS(5952), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5952), - [anon_sym_BSLASHincludesvg] = ACTIONS(5952), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5952), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5952), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5952), - [anon_sym_BSLASHimport] = ACTIONS(5952), - [anon_sym_BSLASHsubimport] = ACTIONS(5952), - [anon_sym_BSLASHinputfrom] = ACTIONS(5952), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5952), - [anon_sym_BSLASHincludefrom] = ACTIONS(5952), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5952), - [anon_sym_BSLASHcaption] = ACTIONS(5952), - [anon_sym_BSLASHcite] = ACTIONS(5952), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCite] = ACTIONS(5952), - [anon_sym_BSLASHnocite] = ACTIONS(5952), - [anon_sym_BSLASHcitet] = ACTIONS(5952), - [anon_sym_BSLASHcitep] = ACTIONS(5952), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteauthor] = ACTIONS(5952), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5952), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitetitle] = ACTIONS(5952), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteyear] = ACTIONS(5952), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitedate] = ACTIONS(5952), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteurl] = ACTIONS(5952), - [anon_sym_BSLASHfullcite] = ACTIONS(5952), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5952), - [anon_sym_BSLASHcitealt] = ACTIONS(5952), - [anon_sym_BSLASHcitealp] = ACTIONS(5952), - [anon_sym_BSLASHcitetext] = ACTIONS(5952), - [anon_sym_BSLASHparencite] = ACTIONS(5952), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHParencite] = ACTIONS(5952), - [anon_sym_BSLASHfootcite] = ACTIONS(5952), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5952), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5952), - [anon_sym_BSLASHtextcite] = ACTIONS(5952), - [anon_sym_BSLASHTextcite] = ACTIONS(5952), - [anon_sym_BSLASHsmartcite] = ACTIONS(5952), - [anon_sym_BSLASHSmartcite] = ACTIONS(5952), - [anon_sym_BSLASHsupercite] = ACTIONS(5952), - [anon_sym_BSLASHautocite] = ACTIONS(5952), - [anon_sym_BSLASHAutocite] = ACTIONS(5952), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHvolcite] = ACTIONS(5952), - [anon_sym_BSLASHVolcite] = ACTIONS(5952), - [anon_sym_BSLASHpvolcite] = ACTIONS(5952), - [anon_sym_BSLASHPvolcite] = ACTIONS(5952), - [anon_sym_BSLASHfvolcite] = ACTIONS(5952), - [anon_sym_BSLASHftvolcite] = ACTIONS(5952), - [anon_sym_BSLASHsvolcite] = ACTIONS(5952), - [anon_sym_BSLASHSvolcite] = ACTIONS(5952), - [anon_sym_BSLASHtvolcite] = ACTIONS(5952), - [anon_sym_BSLASHTvolcite] = ACTIONS(5952), - [anon_sym_BSLASHavolcite] = ACTIONS(5952), - [anon_sym_BSLASHAvolcite] = ACTIONS(5952), - [anon_sym_BSLASHnotecite] = ACTIONS(5952), - [anon_sym_BSLASHNotecite] = ACTIONS(5952), - [anon_sym_BSLASHpnotecite] = ACTIONS(5952), - [anon_sym_BSLASHPnotecite] = ACTIONS(5952), - [anon_sym_BSLASHfnotecite] = ACTIONS(5952), - [anon_sym_BSLASHlabel] = ACTIONS(5952), - [anon_sym_BSLASHref] = ACTIONS(5952), - [anon_sym_BSLASHeqref] = ACTIONS(5952), - [anon_sym_BSLASHvref] = ACTIONS(5952), - [anon_sym_BSLASHVref] = ACTIONS(5952), - [anon_sym_BSLASHautoref] = ACTIONS(5952), - [anon_sym_BSLASHpageref] = ACTIONS(5952), - [anon_sym_BSLASHcref] = ACTIONS(5952), - [anon_sym_BSLASHCref] = ACTIONS(5952), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5954), - [anon_sym_BSLASHnamecref] = ACTIONS(5952), - [anon_sym_BSLASHnameCref] = ACTIONS(5952), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5952), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5952), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5952), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5952), - [anon_sym_BSLASHlabelcref] = ACTIONS(5952), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5952), - [anon_sym_BSLASHcrefrange] = ACTIONS(5952), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCrefrange] = ACTIONS(5952), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5954), - [anon_sym_BSLASHnewlabel] = ACTIONS(5952), - [anon_sym_BSLASHnewcommand] = ACTIONS(5952), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5952), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5952), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5954), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHdef] = ACTIONS(5952), - [anon_sym_BSLASHlet] = ACTIONS(5952), - [anon_sym_BSLASHleft] = ACTIONS(5952), - [anon_sym_BSLASHbig] = ACTIONS(5952), - [anon_sym_BSLASHBig] = ACTIONS(5952), - [anon_sym_BSLASHbigg] = ACTIONS(5952), - [anon_sym_BSLASHBigg] = ACTIONS(5952), - [anon_sym_BSLASHbigl] = ACTIONS(5952), - [anon_sym_BSLASHBigl] = ACTIONS(5952), - [anon_sym_BSLASHbiggl] = ACTIONS(5952), - [anon_sym_BSLASHBiggl] = ACTIONS(5952), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5952), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5952), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5952), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5952), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5952), - [anon_sym_BSLASHgls] = ACTIONS(5952), - [anon_sym_BSLASHGls] = ACTIONS(5952), - [anon_sym_BSLASHGLS] = ACTIONS(5952), - [anon_sym_BSLASHglspl] = ACTIONS(5952), - [anon_sym_BSLASHGlspl] = ACTIONS(5952), - [anon_sym_BSLASHGLSpl] = ACTIONS(5952), - [anon_sym_BSLASHglsdisp] = ACTIONS(5952), - [anon_sym_BSLASHglslink] = ACTIONS(5952), - [anon_sym_BSLASHglstext] = ACTIONS(5952), - [anon_sym_BSLASHGlstext] = ACTIONS(5952), - [anon_sym_BSLASHGLStext] = ACTIONS(5952), - [anon_sym_BSLASHglsfirst] = ACTIONS(5952), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5952), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5952), - [anon_sym_BSLASHglsplural] = ACTIONS(5952), - [anon_sym_BSLASHGlsplural] = ACTIONS(5952), - [anon_sym_BSLASHGLSplural] = ACTIONS(5952), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHglsname] = ACTIONS(5952), - [anon_sym_BSLASHGlsname] = ACTIONS(5952), - [anon_sym_BSLASHGLSname] = ACTIONS(5952), - [anon_sym_BSLASHglssymbol] = ACTIONS(5952), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5952), - [anon_sym_BSLASHglsdesc] = ACTIONS(5952), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5952), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5952), - [anon_sym_BSLASHglsuseri] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5952), - [anon_sym_BSLASHglsuserii] = ACTIONS(5952), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5952), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5952), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5952), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5952), - [anon_sym_BSLASHglsuserv] = ACTIONS(5952), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5952), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5952), - [anon_sym_BSLASHglsuservi] = ACTIONS(5952), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5952), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5952), - [anon_sym_BSLASHnewacronym] = ACTIONS(5952), - [anon_sym_BSLASHacrshort] = ACTIONS(5952), - [anon_sym_BSLASHAcrshort] = ACTIONS(5952), - [anon_sym_BSLASHACRshort] = ACTIONS(5952), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5952), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5952), - [anon_sym_BSLASHacrlong] = ACTIONS(5952), - [anon_sym_BSLASHAcrlong] = ACTIONS(5952), - [anon_sym_BSLASHACRlong] = ACTIONS(5952), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5952), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5952), - [anon_sym_BSLASHacrfull] = ACTIONS(5952), - [anon_sym_BSLASHAcrfull] = ACTIONS(5952), - [anon_sym_BSLASHACRfull] = ACTIONS(5952), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5952), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5952), - [anon_sym_BSLASHacs] = ACTIONS(5952), - [anon_sym_BSLASHAcs] = ACTIONS(5952), - [anon_sym_BSLASHacsp] = ACTIONS(5952), - [anon_sym_BSLASHAcsp] = ACTIONS(5952), - [anon_sym_BSLASHacl] = ACTIONS(5952), - [anon_sym_BSLASHAcl] = ACTIONS(5952), - [anon_sym_BSLASHaclp] = ACTIONS(5952), - [anon_sym_BSLASHAclp] = ACTIONS(5952), - [anon_sym_BSLASHacf] = ACTIONS(5952), - [anon_sym_BSLASHAcf] = ACTIONS(5952), - [anon_sym_BSLASHacfp] = ACTIONS(5952), - [anon_sym_BSLASHAcfp] = ACTIONS(5952), - [anon_sym_BSLASHac] = ACTIONS(5952), - [anon_sym_BSLASHAc] = ACTIONS(5952), - [anon_sym_BSLASHacp] = ACTIONS(5952), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5952), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5952), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5952), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5952), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5952), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5952), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5952), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5954), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5952), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5954), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5952), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5952), - [anon_sym_BSLASHcolor] = ACTIONS(5952), - [anon_sym_BSLASHcolorbox] = ACTIONS(5952), - [anon_sym_BSLASHtextcolor] = ACTIONS(5952), - [anon_sym_BSLASHpagecolor] = ACTIONS(5952), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5952), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5952), - [anon_sym_BSLASHtext] = ACTIONS(5952), - [anon_sym_BSLASHintertext] = ACTIONS(5952), - [anon_sym_shortintertext] = ACTIONS(5952), - }, - [731] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(5942), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5942), - [anon_sym_LBRACK] = ACTIONS(5944), - [anon_sym_RBRACK] = ACTIONS(5944), - [anon_sym_COMMA] = ACTIONS(5944), - [anon_sym_EQ] = ACTIONS(5944), - [anon_sym_LPAREN] = ACTIONS(5944), - [anon_sym_RPAREN] = ACTIONS(5944), - [anon_sym_BSLASHpart] = ACTIONS(5942), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddpart] = ACTIONS(5942), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5944), - [anon_sym_BSLASHchapter] = ACTIONS(5942), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddchap] = ACTIONS(5942), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsection] = ACTIONS(5942), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddsec] = ACTIONS(5942), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubsection] = ACTIONS(5942), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5942), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHparagraph] = ACTIONS(5942), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5942), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5944), - [anon_sym_BSLASHitem] = ACTIONS(6581), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6584), - [anon_sym_LBRACE] = ACTIONS(5944), - [sym_word] = ACTIONS(5942), - [sym_placeholder] = ACTIONS(5944), - [anon_sym_PLUS] = ACTIONS(5944), - [anon_sym_DASH] = ACTIONS(5944), - [anon_sym_STAR] = ACTIONS(5944), - [anon_sym_SLASH] = ACTIONS(5944), - [anon_sym_LT] = ACTIONS(5942), - [anon_sym_GT] = ACTIONS(5942), - [anon_sym_BANG] = ACTIONS(5942), - [anon_sym_PIPE] = ACTIONS(5942), - [anon_sym_COLON] = ACTIONS(5942), - [anon_sym_SQUOTE] = ACTIONS(5942), - [anon_sym__] = ACTIONS(5944), - [anon_sym_CARET] = ACTIONS(5944), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5944), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5944), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5944), - [anon_sym_DOLLAR] = ACTIONS(5942), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5944), - [anon_sym_BSLASHbegin] = ACTIONS(5942), - [anon_sym_BSLASHtitle] = ACTIONS(5942), - [anon_sym_BSLASHauthor] = ACTIONS(5942), - [anon_sym_BSLASHusepackage] = ACTIONS(5942), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5942), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5942), - [anon_sym_BSLASHinclude] = ACTIONS(5942), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5942), - [anon_sym_BSLASHinput] = ACTIONS(5942), - [anon_sym_BSLASHsubfile] = ACTIONS(5942), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5942), - [anon_sym_BSLASHbibliography] = ACTIONS(5942), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5942), - [anon_sym_BSLASHincludesvg] = ACTIONS(5942), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5942), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5942), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5942), - [anon_sym_BSLASHimport] = ACTIONS(5942), - [anon_sym_BSLASHsubimport] = ACTIONS(5942), - [anon_sym_BSLASHinputfrom] = ACTIONS(5942), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5942), - [anon_sym_BSLASHincludefrom] = ACTIONS(5942), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5942), - [anon_sym_BSLASHcaption] = ACTIONS(5942), - [anon_sym_BSLASHcite] = ACTIONS(5942), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCite] = ACTIONS(5942), - [anon_sym_BSLASHnocite] = ACTIONS(5942), - [anon_sym_BSLASHcitet] = ACTIONS(5942), - [anon_sym_BSLASHcitep] = ACTIONS(5942), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteauthor] = ACTIONS(5942), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5942), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitetitle] = ACTIONS(5942), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteyear] = ACTIONS(5942), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitedate] = ACTIONS(5942), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteurl] = ACTIONS(5942), - [anon_sym_BSLASHfullcite] = ACTIONS(5942), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5942), - [anon_sym_BSLASHcitealt] = ACTIONS(5942), - [anon_sym_BSLASHcitealp] = ACTIONS(5942), - [anon_sym_BSLASHcitetext] = ACTIONS(5942), - [anon_sym_BSLASHparencite] = ACTIONS(5942), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHParencite] = ACTIONS(5942), - [anon_sym_BSLASHfootcite] = ACTIONS(5942), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5942), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5942), - [anon_sym_BSLASHtextcite] = ACTIONS(5942), - [anon_sym_BSLASHTextcite] = ACTIONS(5942), - [anon_sym_BSLASHsmartcite] = ACTIONS(5942), - [anon_sym_BSLASHSmartcite] = ACTIONS(5942), - [anon_sym_BSLASHsupercite] = ACTIONS(5942), - [anon_sym_BSLASHautocite] = ACTIONS(5942), - [anon_sym_BSLASHAutocite] = ACTIONS(5942), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHvolcite] = ACTIONS(5942), - [anon_sym_BSLASHVolcite] = ACTIONS(5942), - [anon_sym_BSLASHpvolcite] = ACTIONS(5942), - [anon_sym_BSLASHPvolcite] = ACTIONS(5942), - [anon_sym_BSLASHfvolcite] = ACTIONS(5942), - [anon_sym_BSLASHftvolcite] = ACTIONS(5942), - [anon_sym_BSLASHsvolcite] = ACTIONS(5942), - [anon_sym_BSLASHSvolcite] = ACTIONS(5942), - [anon_sym_BSLASHtvolcite] = ACTIONS(5942), - [anon_sym_BSLASHTvolcite] = ACTIONS(5942), - [anon_sym_BSLASHavolcite] = ACTIONS(5942), - [anon_sym_BSLASHAvolcite] = ACTIONS(5942), - [anon_sym_BSLASHnotecite] = ACTIONS(5942), - [anon_sym_BSLASHNotecite] = ACTIONS(5942), - [anon_sym_BSLASHpnotecite] = ACTIONS(5942), - [anon_sym_BSLASHPnotecite] = ACTIONS(5942), - [anon_sym_BSLASHfnotecite] = ACTIONS(5942), - [anon_sym_BSLASHlabel] = ACTIONS(5942), - [anon_sym_BSLASHref] = ACTIONS(5942), - [anon_sym_BSLASHeqref] = ACTIONS(5942), - [anon_sym_BSLASHvref] = ACTIONS(5942), - [anon_sym_BSLASHVref] = ACTIONS(5942), - [anon_sym_BSLASHautoref] = ACTIONS(5942), - [anon_sym_BSLASHpageref] = ACTIONS(5942), - [anon_sym_BSLASHcref] = ACTIONS(5942), - [anon_sym_BSLASHCref] = ACTIONS(5942), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5944), - [anon_sym_BSLASHnamecref] = ACTIONS(5942), - [anon_sym_BSLASHnameCref] = ACTIONS(5942), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5942), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5942), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5942), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5942), - [anon_sym_BSLASHlabelcref] = ACTIONS(5942), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5942), - [anon_sym_BSLASHcrefrange] = ACTIONS(5942), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCrefrange] = ACTIONS(5942), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5944), - [anon_sym_BSLASHnewlabel] = ACTIONS(5942), - [anon_sym_BSLASHnewcommand] = ACTIONS(5942), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5942), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5942), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5944), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHdef] = ACTIONS(5942), - [anon_sym_BSLASHlet] = ACTIONS(5942), - [anon_sym_BSLASHleft] = ACTIONS(5942), - [anon_sym_BSLASHbig] = ACTIONS(5942), - [anon_sym_BSLASHBig] = ACTIONS(5942), - [anon_sym_BSLASHbigg] = ACTIONS(5942), - [anon_sym_BSLASHBigg] = ACTIONS(5942), - [anon_sym_BSLASHbigl] = ACTIONS(5942), - [anon_sym_BSLASHBigl] = ACTIONS(5942), - [anon_sym_BSLASHbiggl] = ACTIONS(5942), - [anon_sym_BSLASHBiggl] = ACTIONS(5942), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5942), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5942), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5942), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5942), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5942), - [anon_sym_BSLASHgls] = ACTIONS(5942), - [anon_sym_BSLASHGls] = ACTIONS(5942), - [anon_sym_BSLASHGLS] = ACTIONS(5942), - [anon_sym_BSLASHglspl] = ACTIONS(5942), - [anon_sym_BSLASHGlspl] = ACTIONS(5942), - [anon_sym_BSLASHGLSpl] = ACTIONS(5942), - [anon_sym_BSLASHglsdisp] = ACTIONS(5942), - [anon_sym_BSLASHglslink] = ACTIONS(5942), - [anon_sym_BSLASHglstext] = ACTIONS(5942), - [anon_sym_BSLASHGlstext] = ACTIONS(5942), - [anon_sym_BSLASHGLStext] = ACTIONS(5942), - [anon_sym_BSLASHglsfirst] = ACTIONS(5942), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5942), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5942), - [anon_sym_BSLASHglsplural] = ACTIONS(5942), - [anon_sym_BSLASHGlsplural] = ACTIONS(5942), - [anon_sym_BSLASHGLSplural] = ACTIONS(5942), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHglsname] = ACTIONS(5942), - [anon_sym_BSLASHGlsname] = ACTIONS(5942), - [anon_sym_BSLASHGLSname] = ACTIONS(5942), - [anon_sym_BSLASHglssymbol] = ACTIONS(5942), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5942), - [anon_sym_BSLASHglsdesc] = ACTIONS(5942), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5942), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5942), - [anon_sym_BSLASHglsuseri] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5942), - [anon_sym_BSLASHglsuserii] = ACTIONS(5942), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5942), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5942), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5942), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5942), - [anon_sym_BSLASHglsuserv] = ACTIONS(5942), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5942), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5942), - [anon_sym_BSLASHglsuservi] = ACTIONS(5942), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5942), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5942), - [anon_sym_BSLASHnewacronym] = ACTIONS(5942), - [anon_sym_BSLASHacrshort] = ACTIONS(5942), - [anon_sym_BSLASHAcrshort] = ACTIONS(5942), - [anon_sym_BSLASHACRshort] = ACTIONS(5942), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5942), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5942), - [anon_sym_BSLASHacrlong] = ACTIONS(5942), - [anon_sym_BSLASHAcrlong] = ACTIONS(5942), - [anon_sym_BSLASHACRlong] = ACTIONS(5942), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5942), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5942), - [anon_sym_BSLASHacrfull] = ACTIONS(5942), - [anon_sym_BSLASHAcrfull] = ACTIONS(5942), - [anon_sym_BSLASHACRfull] = ACTIONS(5942), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5942), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5942), - [anon_sym_BSLASHacs] = ACTIONS(5942), - [anon_sym_BSLASHAcs] = ACTIONS(5942), - [anon_sym_BSLASHacsp] = ACTIONS(5942), - [anon_sym_BSLASHAcsp] = ACTIONS(5942), - [anon_sym_BSLASHacl] = ACTIONS(5942), - [anon_sym_BSLASHAcl] = ACTIONS(5942), - [anon_sym_BSLASHaclp] = ACTIONS(5942), - [anon_sym_BSLASHAclp] = ACTIONS(5942), - [anon_sym_BSLASHacf] = ACTIONS(5942), - [anon_sym_BSLASHAcf] = ACTIONS(5942), - [anon_sym_BSLASHacfp] = ACTIONS(5942), - [anon_sym_BSLASHAcfp] = ACTIONS(5942), - [anon_sym_BSLASHac] = ACTIONS(5942), - [anon_sym_BSLASHAc] = ACTIONS(5942), - [anon_sym_BSLASHacp] = ACTIONS(5942), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5942), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5942), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5942), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5942), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5942), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5942), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5942), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5944), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5942), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5944), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5942), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5942), - [anon_sym_BSLASHcolor] = ACTIONS(5942), - [anon_sym_BSLASHcolorbox] = ACTIONS(5942), - [anon_sym_BSLASHtextcolor] = ACTIONS(5942), - [anon_sym_BSLASHpagecolor] = ACTIONS(5942), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5942), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - [anon_sym_BSLASHtext] = ACTIONS(5942), - [anon_sym_BSLASHintertext] = ACTIONS(5942), - [anon_sym_shortintertext] = ACTIONS(5942), - }, - [732] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(5932), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5932), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_RBRACK] = ACTIONS(5934), - [anon_sym_COMMA] = ACTIONS(5934), - [anon_sym_EQ] = ACTIONS(5934), - [anon_sym_LPAREN] = ACTIONS(5934), - [anon_sym_RPAREN] = ACTIONS(5934), - [anon_sym_BSLASHpart] = ACTIONS(5932), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddpart] = ACTIONS(5932), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5934), - [anon_sym_BSLASHchapter] = ACTIONS(5932), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddchap] = ACTIONS(5932), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsection] = ACTIONS(5932), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddsec] = ACTIONS(5932), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubsection] = ACTIONS(5932), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5932), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHparagraph] = ACTIONS(5932), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6587), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6590), - [anon_sym_BSLASHitem] = ACTIONS(5932), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5934), - [anon_sym_LBRACE] = ACTIONS(5934), - [sym_word] = ACTIONS(5932), - [sym_placeholder] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_STAR] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5934), - [anon_sym_LT] = ACTIONS(5932), - [anon_sym_GT] = ACTIONS(5932), - [anon_sym_BANG] = ACTIONS(5932), - [anon_sym_PIPE] = ACTIONS(5932), - [anon_sym_COLON] = ACTIONS(5932), - [anon_sym_SQUOTE] = ACTIONS(5932), - [anon_sym__] = ACTIONS(5934), - [anon_sym_CARET] = ACTIONS(5934), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5934), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5934), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5934), - [anon_sym_DOLLAR] = ACTIONS(5932), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5934), - [anon_sym_BSLASHbegin] = ACTIONS(5932), - [anon_sym_BSLASHtitle] = ACTIONS(5932), - [anon_sym_BSLASHauthor] = ACTIONS(5932), - [anon_sym_BSLASHusepackage] = ACTIONS(5932), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5932), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5932), - [anon_sym_BSLASHinclude] = ACTIONS(5932), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5932), - [anon_sym_BSLASHinput] = ACTIONS(5932), - [anon_sym_BSLASHsubfile] = ACTIONS(5932), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5932), - [anon_sym_BSLASHbibliography] = ACTIONS(5932), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5932), - [anon_sym_BSLASHincludesvg] = ACTIONS(5932), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5932), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5932), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5932), - [anon_sym_BSLASHimport] = ACTIONS(5932), - [anon_sym_BSLASHsubimport] = ACTIONS(5932), - [anon_sym_BSLASHinputfrom] = ACTIONS(5932), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5932), - [anon_sym_BSLASHincludefrom] = ACTIONS(5932), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5932), - [anon_sym_BSLASHcaption] = ACTIONS(5932), - [anon_sym_BSLASHcite] = ACTIONS(5932), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCite] = ACTIONS(5932), - [anon_sym_BSLASHnocite] = ACTIONS(5932), - [anon_sym_BSLASHcitet] = ACTIONS(5932), - [anon_sym_BSLASHcitep] = ACTIONS(5932), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteauthor] = ACTIONS(5932), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5932), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitetitle] = ACTIONS(5932), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteyear] = ACTIONS(5932), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitedate] = ACTIONS(5932), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteurl] = ACTIONS(5932), - [anon_sym_BSLASHfullcite] = ACTIONS(5932), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5932), - [anon_sym_BSLASHcitealt] = ACTIONS(5932), - [anon_sym_BSLASHcitealp] = ACTIONS(5932), - [anon_sym_BSLASHcitetext] = ACTIONS(5932), - [anon_sym_BSLASHparencite] = ACTIONS(5932), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHParencite] = ACTIONS(5932), - [anon_sym_BSLASHfootcite] = ACTIONS(5932), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5932), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5932), - [anon_sym_BSLASHtextcite] = ACTIONS(5932), - [anon_sym_BSLASHTextcite] = ACTIONS(5932), - [anon_sym_BSLASHsmartcite] = ACTIONS(5932), - [anon_sym_BSLASHSmartcite] = ACTIONS(5932), - [anon_sym_BSLASHsupercite] = ACTIONS(5932), - [anon_sym_BSLASHautocite] = ACTIONS(5932), - [anon_sym_BSLASHAutocite] = ACTIONS(5932), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHvolcite] = ACTIONS(5932), - [anon_sym_BSLASHVolcite] = ACTIONS(5932), - [anon_sym_BSLASHpvolcite] = ACTIONS(5932), - [anon_sym_BSLASHPvolcite] = ACTIONS(5932), - [anon_sym_BSLASHfvolcite] = ACTIONS(5932), - [anon_sym_BSLASHftvolcite] = ACTIONS(5932), - [anon_sym_BSLASHsvolcite] = ACTIONS(5932), - [anon_sym_BSLASHSvolcite] = ACTIONS(5932), - [anon_sym_BSLASHtvolcite] = ACTIONS(5932), - [anon_sym_BSLASHTvolcite] = ACTIONS(5932), - [anon_sym_BSLASHavolcite] = ACTIONS(5932), - [anon_sym_BSLASHAvolcite] = ACTIONS(5932), - [anon_sym_BSLASHnotecite] = ACTIONS(5932), - [anon_sym_BSLASHNotecite] = ACTIONS(5932), - [anon_sym_BSLASHpnotecite] = ACTIONS(5932), - [anon_sym_BSLASHPnotecite] = ACTIONS(5932), - [anon_sym_BSLASHfnotecite] = ACTIONS(5932), - [anon_sym_BSLASHlabel] = ACTIONS(5932), - [anon_sym_BSLASHref] = ACTIONS(5932), - [anon_sym_BSLASHeqref] = ACTIONS(5932), - [anon_sym_BSLASHvref] = ACTIONS(5932), - [anon_sym_BSLASHVref] = ACTIONS(5932), - [anon_sym_BSLASHautoref] = ACTIONS(5932), - [anon_sym_BSLASHpageref] = ACTIONS(5932), - [anon_sym_BSLASHcref] = ACTIONS(5932), - [anon_sym_BSLASHCref] = ACTIONS(5932), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5934), - [anon_sym_BSLASHnamecref] = ACTIONS(5932), - [anon_sym_BSLASHnameCref] = ACTIONS(5932), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5932), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5932), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5932), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5932), - [anon_sym_BSLASHlabelcref] = ACTIONS(5932), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5932), - [anon_sym_BSLASHcrefrange] = ACTIONS(5932), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCrefrange] = ACTIONS(5932), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5934), - [anon_sym_BSLASHnewlabel] = ACTIONS(5932), - [anon_sym_BSLASHnewcommand] = ACTIONS(5932), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5932), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5932), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5934), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHdef] = ACTIONS(5932), - [anon_sym_BSLASHlet] = ACTIONS(5932), - [anon_sym_BSLASHleft] = ACTIONS(5932), - [anon_sym_BSLASHbig] = ACTIONS(5932), - [anon_sym_BSLASHBig] = ACTIONS(5932), - [anon_sym_BSLASHbigg] = ACTIONS(5932), - [anon_sym_BSLASHBigg] = ACTIONS(5932), - [anon_sym_BSLASHbigl] = ACTIONS(5932), - [anon_sym_BSLASHBigl] = ACTIONS(5932), - [anon_sym_BSLASHbiggl] = ACTIONS(5932), - [anon_sym_BSLASHBiggl] = ACTIONS(5932), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5932), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5932), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5932), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5932), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5932), - [anon_sym_BSLASHgls] = ACTIONS(5932), - [anon_sym_BSLASHGls] = ACTIONS(5932), - [anon_sym_BSLASHGLS] = ACTIONS(5932), - [anon_sym_BSLASHglspl] = ACTIONS(5932), - [anon_sym_BSLASHGlspl] = ACTIONS(5932), - [anon_sym_BSLASHGLSpl] = ACTIONS(5932), - [anon_sym_BSLASHglsdisp] = ACTIONS(5932), - [anon_sym_BSLASHglslink] = ACTIONS(5932), - [anon_sym_BSLASHglstext] = ACTIONS(5932), - [anon_sym_BSLASHGlstext] = ACTIONS(5932), - [anon_sym_BSLASHGLStext] = ACTIONS(5932), - [anon_sym_BSLASHglsfirst] = ACTIONS(5932), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5932), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5932), - [anon_sym_BSLASHglsplural] = ACTIONS(5932), - [anon_sym_BSLASHGlsplural] = ACTIONS(5932), - [anon_sym_BSLASHGLSplural] = ACTIONS(5932), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHglsname] = ACTIONS(5932), - [anon_sym_BSLASHGlsname] = ACTIONS(5932), - [anon_sym_BSLASHGLSname] = ACTIONS(5932), - [anon_sym_BSLASHglssymbol] = ACTIONS(5932), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5932), - [anon_sym_BSLASHglsdesc] = ACTIONS(5932), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5932), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5932), - [anon_sym_BSLASHglsuseri] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5932), - [anon_sym_BSLASHglsuserii] = ACTIONS(5932), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5932), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5932), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5932), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5932), - [anon_sym_BSLASHglsuserv] = ACTIONS(5932), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5932), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5932), - [anon_sym_BSLASHglsuservi] = ACTIONS(5932), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5932), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5932), - [anon_sym_BSLASHnewacronym] = ACTIONS(5932), - [anon_sym_BSLASHacrshort] = ACTIONS(5932), - [anon_sym_BSLASHAcrshort] = ACTIONS(5932), - [anon_sym_BSLASHACRshort] = ACTIONS(5932), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5932), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5932), - [anon_sym_BSLASHacrlong] = ACTIONS(5932), - [anon_sym_BSLASHAcrlong] = ACTIONS(5932), - [anon_sym_BSLASHACRlong] = ACTIONS(5932), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5932), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5932), - [anon_sym_BSLASHacrfull] = ACTIONS(5932), - [anon_sym_BSLASHAcrfull] = ACTIONS(5932), - [anon_sym_BSLASHACRfull] = ACTIONS(5932), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5932), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5932), - [anon_sym_BSLASHacs] = ACTIONS(5932), - [anon_sym_BSLASHAcs] = ACTIONS(5932), - [anon_sym_BSLASHacsp] = ACTIONS(5932), - [anon_sym_BSLASHAcsp] = ACTIONS(5932), - [anon_sym_BSLASHacl] = ACTIONS(5932), - [anon_sym_BSLASHAcl] = ACTIONS(5932), - [anon_sym_BSLASHaclp] = ACTIONS(5932), - [anon_sym_BSLASHAclp] = ACTIONS(5932), - [anon_sym_BSLASHacf] = ACTIONS(5932), - [anon_sym_BSLASHAcf] = ACTIONS(5932), - [anon_sym_BSLASHacfp] = ACTIONS(5932), - [anon_sym_BSLASHAcfp] = ACTIONS(5932), - [anon_sym_BSLASHac] = ACTIONS(5932), - [anon_sym_BSLASHAc] = ACTIONS(5932), - [anon_sym_BSLASHacp] = ACTIONS(5932), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5932), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5932), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5932), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5932), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5932), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5932), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5932), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5934), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5932), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5932), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5932), - [anon_sym_BSLASHcolor] = ACTIONS(5932), - [anon_sym_BSLASHcolorbox] = ACTIONS(5932), - [anon_sym_BSLASHtextcolor] = ACTIONS(5932), - [anon_sym_BSLASHpagecolor] = ACTIONS(5932), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5932), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5932), - [anon_sym_BSLASHtext] = ACTIONS(5932), - [anon_sym_BSLASHintertext] = ACTIONS(5932), - [anon_sym_shortintertext] = ACTIONS(5932), - }, - [733] = { - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(733), - [aux_sym__section_repeat6] = STATE(733), - [sym_command_name] = ACTIONS(5922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5922), - [anon_sym_LBRACK] = ACTIONS(5924), - [anon_sym_RBRACK] = ACTIONS(5924), - [anon_sym_COMMA] = ACTIONS(5924), - [anon_sym_EQ] = ACTIONS(5924), - [anon_sym_LPAREN] = ACTIONS(5924), - [anon_sym_RPAREN] = ACTIONS(5924), - [anon_sym_BSLASHpart] = ACTIONS(5922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddpart] = ACTIONS(5922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5924), - [anon_sym_BSLASHchapter] = ACTIONS(5922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddchap] = ACTIONS(5922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsection] = ACTIONS(5922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddsec] = ACTIONS(5922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsubsection] = ACTIONS(5922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHparagraph] = ACTIONS(6593), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6596), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5922), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5924), - [anon_sym_BSLASHitem] = ACTIONS(5922), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5924), - [anon_sym_LBRACE] = ACTIONS(5924), - [sym_word] = ACTIONS(5922), - [sym_placeholder] = ACTIONS(5924), - [anon_sym_PLUS] = ACTIONS(5924), - [anon_sym_DASH] = ACTIONS(5924), - [anon_sym_STAR] = ACTIONS(5924), - [anon_sym_SLASH] = ACTIONS(5924), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_BANG] = ACTIONS(5922), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_COLON] = ACTIONS(5922), - [anon_sym_SQUOTE] = ACTIONS(5922), - [anon_sym__] = ACTIONS(5924), - [anon_sym_CARET] = ACTIONS(5924), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5924), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5924), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5924), - [anon_sym_DOLLAR] = ACTIONS(5922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5924), - [anon_sym_BSLASHbegin] = ACTIONS(5922), - [anon_sym_BSLASHtitle] = ACTIONS(5922), - [anon_sym_BSLASHauthor] = ACTIONS(5922), - [anon_sym_BSLASHusepackage] = ACTIONS(5922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5922), - [anon_sym_BSLASHinclude] = ACTIONS(5922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5922), - [anon_sym_BSLASHinput] = ACTIONS(5922), - [anon_sym_BSLASHsubfile] = ACTIONS(5922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5922), - [anon_sym_BSLASHbibliography] = ACTIONS(5922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5922), - [anon_sym_BSLASHincludesvg] = ACTIONS(5922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5922), - [anon_sym_BSLASHimport] = ACTIONS(5922), - [anon_sym_BSLASHsubimport] = ACTIONS(5922), - [anon_sym_BSLASHinputfrom] = ACTIONS(5922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5922), - [anon_sym_BSLASHincludefrom] = ACTIONS(5922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5922), - [anon_sym_BSLASHcaption] = ACTIONS(5922), - [anon_sym_BSLASHcite] = ACTIONS(5922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCite] = ACTIONS(5922), - [anon_sym_BSLASHnocite] = ACTIONS(5922), - [anon_sym_BSLASHcitet] = ACTIONS(5922), - [anon_sym_BSLASHcitep] = ACTIONS(5922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteauthor] = ACTIONS(5922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitetitle] = ACTIONS(5922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteyear] = ACTIONS(5922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitedate] = ACTIONS(5922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteurl] = ACTIONS(5922), - [anon_sym_BSLASHfullcite] = ACTIONS(5922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5922), - [anon_sym_BSLASHcitealt] = ACTIONS(5922), - [anon_sym_BSLASHcitealp] = ACTIONS(5922), - [anon_sym_BSLASHcitetext] = ACTIONS(5922), - [anon_sym_BSLASHparencite] = ACTIONS(5922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHParencite] = ACTIONS(5922), - [anon_sym_BSLASHfootcite] = ACTIONS(5922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5922), - [anon_sym_BSLASHtextcite] = ACTIONS(5922), - [anon_sym_BSLASHTextcite] = ACTIONS(5922), - [anon_sym_BSLASHsmartcite] = ACTIONS(5922), - [anon_sym_BSLASHSmartcite] = ACTIONS(5922), - [anon_sym_BSLASHsupercite] = ACTIONS(5922), - [anon_sym_BSLASHautocite] = ACTIONS(5922), - [anon_sym_BSLASHAutocite] = ACTIONS(5922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHvolcite] = ACTIONS(5922), - [anon_sym_BSLASHVolcite] = ACTIONS(5922), - [anon_sym_BSLASHpvolcite] = ACTIONS(5922), - [anon_sym_BSLASHPvolcite] = ACTIONS(5922), - [anon_sym_BSLASHfvolcite] = ACTIONS(5922), - [anon_sym_BSLASHftvolcite] = ACTIONS(5922), - [anon_sym_BSLASHsvolcite] = ACTIONS(5922), - [anon_sym_BSLASHSvolcite] = ACTIONS(5922), - [anon_sym_BSLASHtvolcite] = ACTIONS(5922), - [anon_sym_BSLASHTvolcite] = ACTIONS(5922), - [anon_sym_BSLASHavolcite] = ACTIONS(5922), - [anon_sym_BSLASHAvolcite] = ACTIONS(5922), - [anon_sym_BSLASHnotecite] = ACTIONS(5922), - [anon_sym_BSLASHNotecite] = ACTIONS(5922), - [anon_sym_BSLASHpnotecite] = ACTIONS(5922), - [anon_sym_BSLASHPnotecite] = ACTIONS(5922), - [anon_sym_BSLASHfnotecite] = ACTIONS(5922), - [anon_sym_BSLASHlabel] = ACTIONS(5922), - [anon_sym_BSLASHref] = ACTIONS(5922), - [anon_sym_BSLASHeqref] = ACTIONS(5922), - [anon_sym_BSLASHvref] = ACTIONS(5922), - [anon_sym_BSLASHVref] = ACTIONS(5922), - [anon_sym_BSLASHautoref] = ACTIONS(5922), - [anon_sym_BSLASHpageref] = ACTIONS(5922), - [anon_sym_BSLASHcref] = ACTIONS(5922), - [anon_sym_BSLASHCref] = ACTIONS(5922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5924), - [anon_sym_BSLASHnamecref] = ACTIONS(5922), - [anon_sym_BSLASHnameCref] = ACTIONS(5922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5922), - [anon_sym_BSLASHlabelcref] = ACTIONS(5922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5922), - [anon_sym_BSLASHcrefrange] = ACTIONS(5922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCrefrange] = ACTIONS(5922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5924), - [anon_sym_BSLASHnewlabel] = ACTIONS(5922), - [anon_sym_BSLASHnewcommand] = ACTIONS(5922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5924), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHdef] = ACTIONS(5922), - [anon_sym_BSLASHlet] = ACTIONS(5922), - [anon_sym_BSLASHleft] = ACTIONS(5922), - [anon_sym_BSLASHbig] = ACTIONS(5922), - [anon_sym_BSLASHBig] = ACTIONS(5922), - [anon_sym_BSLASHbigg] = ACTIONS(5922), - [anon_sym_BSLASHBigg] = ACTIONS(5922), - [anon_sym_BSLASHbigl] = ACTIONS(5922), - [anon_sym_BSLASHBigl] = ACTIONS(5922), - [anon_sym_BSLASHbiggl] = ACTIONS(5922), - [anon_sym_BSLASHBiggl] = ACTIONS(5922), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5922), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5922), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5922), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5922), - [anon_sym_BSLASHgls] = ACTIONS(5922), - [anon_sym_BSLASHGls] = ACTIONS(5922), - [anon_sym_BSLASHGLS] = ACTIONS(5922), - [anon_sym_BSLASHglspl] = ACTIONS(5922), - [anon_sym_BSLASHGlspl] = ACTIONS(5922), - [anon_sym_BSLASHGLSpl] = ACTIONS(5922), - [anon_sym_BSLASHglsdisp] = ACTIONS(5922), - [anon_sym_BSLASHglslink] = ACTIONS(5922), - [anon_sym_BSLASHglstext] = ACTIONS(5922), - [anon_sym_BSLASHGlstext] = ACTIONS(5922), - [anon_sym_BSLASHGLStext] = ACTIONS(5922), - [anon_sym_BSLASHglsfirst] = ACTIONS(5922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5922), - [anon_sym_BSLASHglsplural] = ACTIONS(5922), - [anon_sym_BSLASHGlsplural] = ACTIONS(5922), - [anon_sym_BSLASHGLSplural] = ACTIONS(5922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHglsname] = ACTIONS(5922), - [anon_sym_BSLASHGlsname] = ACTIONS(5922), - [anon_sym_BSLASHGLSname] = ACTIONS(5922), - [anon_sym_BSLASHglssymbol] = ACTIONS(5922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5922), - [anon_sym_BSLASHglsdesc] = ACTIONS(5922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5922), - [anon_sym_BSLASHglsuseri] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5922), - [anon_sym_BSLASHglsuserii] = ACTIONS(5922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5922), - [anon_sym_BSLASHglsuserv] = ACTIONS(5922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5922), - [anon_sym_BSLASHglsuservi] = ACTIONS(5922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5922), - [anon_sym_BSLASHnewacronym] = ACTIONS(5922), - [anon_sym_BSLASHacrshort] = ACTIONS(5922), - [anon_sym_BSLASHAcrshort] = ACTIONS(5922), - [anon_sym_BSLASHACRshort] = ACTIONS(5922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5922), - [anon_sym_BSLASHacrlong] = ACTIONS(5922), - [anon_sym_BSLASHAcrlong] = ACTIONS(5922), - [anon_sym_BSLASHACRlong] = ACTIONS(5922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5922), - [anon_sym_BSLASHacrfull] = ACTIONS(5922), - [anon_sym_BSLASHAcrfull] = ACTIONS(5922), - [anon_sym_BSLASHACRfull] = ACTIONS(5922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5922), - [anon_sym_BSLASHacs] = ACTIONS(5922), - [anon_sym_BSLASHAcs] = ACTIONS(5922), - [anon_sym_BSLASHacsp] = ACTIONS(5922), - [anon_sym_BSLASHAcsp] = ACTIONS(5922), - [anon_sym_BSLASHacl] = ACTIONS(5922), - [anon_sym_BSLASHAcl] = ACTIONS(5922), - [anon_sym_BSLASHaclp] = ACTIONS(5922), - [anon_sym_BSLASHAclp] = ACTIONS(5922), - [anon_sym_BSLASHacf] = ACTIONS(5922), - [anon_sym_BSLASHAcf] = ACTIONS(5922), - [anon_sym_BSLASHacfp] = ACTIONS(5922), - [anon_sym_BSLASHAcfp] = ACTIONS(5922), - [anon_sym_BSLASHac] = ACTIONS(5922), - [anon_sym_BSLASHAc] = ACTIONS(5922), - [anon_sym_BSLASHacp] = ACTIONS(5922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5922), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5924), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5922), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5924), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5922), - [anon_sym_BSLASHcolor] = ACTIONS(5922), - [anon_sym_BSLASHcolorbox] = ACTIONS(5922), - [anon_sym_BSLASHtextcolor] = ACTIONS(5922), - [anon_sym_BSLASHpagecolor] = ACTIONS(5922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5922), - [anon_sym_BSLASHtext] = ACTIONS(5922), - [anon_sym_BSLASHintertext] = ACTIONS(5922), - [anon_sym_shortintertext] = ACTIONS(5922), - }, - [734] = { - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(734), - [aux_sym__section_repeat5] = STATE(734), - [sym_command_name] = ACTIONS(5912), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5914), - [anon_sym_RBRACK] = ACTIONS(5914), - [anon_sym_COMMA] = ACTIONS(5914), - [anon_sym_EQ] = ACTIONS(5914), - [anon_sym_LPAREN] = ACTIONS(5914), - [anon_sym_RPAREN] = ACTIONS(5914), - [anon_sym_BSLASHpart] = ACTIONS(5912), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddpart] = ACTIONS(5912), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5914), - [anon_sym_BSLASHchapter] = ACTIONS(5912), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddchap] = ACTIONS(5912), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsection] = ACTIONS(5912), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddsec] = ACTIONS(5912), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubsection] = ACTIONS(5912), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6599), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6602), - [anon_sym_BSLASHparagraph] = ACTIONS(5912), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5912), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5914), - [anon_sym_BSLASHitem] = ACTIONS(5912), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5914), - [anon_sym_LBRACE] = ACTIONS(5914), - [sym_word] = ACTIONS(5912), - [sym_placeholder] = ACTIONS(5914), - [anon_sym_PLUS] = ACTIONS(5914), - [anon_sym_DASH] = ACTIONS(5914), - [anon_sym_STAR] = ACTIONS(5914), - [anon_sym_SLASH] = ACTIONS(5914), - [anon_sym_LT] = ACTIONS(5912), - [anon_sym_GT] = ACTIONS(5912), - [anon_sym_BANG] = ACTIONS(5912), - [anon_sym_PIPE] = ACTIONS(5912), - [anon_sym_COLON] = ACTIONS(5912), - [anon_sym_SQUOTE] = ACTIONS(5912), - [anon_sym__] = ACTIONS(5914), - [anon_sym_CARET] = ACTIONS(5914), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5914), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5914), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5914), - [anon_sym_DOLLAR] = ACTIONS(5912), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5914), - [anon_sym_BSLASHbegin] = ACTIONS(5912), - [anon_sym_BSLASHtitle] = ACTIONS(5912), - [anon_sym_BSLASHauthor] = ACTIONS(5912), - [anon_sym_BSLASHusepackage] = ACTIONS(5912), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5912), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5912), - [anon_sym_BSLASHinclude] = ACTIONS(5912), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5912), - [anon_sym_BSLASHinput] = ACTIONS(5912), - [anon_sym_BSLASHsubfile] = ACTIONS(5912), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5912), - [anon_sym_BSLASHbibliography] = ACTIONS(5912), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5912), - [anon_sym_BSLASHincludesvg] = ACTIONS(5912), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5912), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5912), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5912), - [anon_sym_BSLASHimport] = ACTIONS(5912), - [anon_sym_BSLASHsubimport] = ACTIONS(5912), - [anon_sym_BSLASHinputfrom] = ACTIONS(5912), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5912), - [anon_sym_BSLASHincludefrom] = ACTIONS(5912), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5912), - [anon_sym_BSLASHcaption] = ACTIONS(5912), - [anon_sym_BSLASHcite] = ACTIONS(5912), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCite] = ACTIONS(5912), - [anon_sym_BSLASHnocite] = ACTIONS(5912), - [anon_sym_BSLASHcitet] = ACTIONS(5912), - [anon_sym_BSLASHcitep] = ACTIONS(5912), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteauthor] = ACTIONS(5912), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5912), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitetitle] = ACTIONS(5912), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteyear] = ACTIONS(5912), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitedate] = ACTIONS(5912), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteurl] = ACTIONS(5912), - [anon_sym_BSLASHfullcite] = ACTIONS(5912), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5912), - [anon_sym_BSLASHcitealt] = ACTIONS(5912), - [anon_sym_BSLASHcitealp] = ACTIONS(5912), - [anon_sym_BSLASHcitetext] = ACTIONS(5912), - [anon_sym_BSLASHparencite] = ACTIONS(5912), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHParencite] = ACTIONS(5912), - [anon_sym_BSLASHfootcite] = ACTIONS(5912), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5912), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5912), - [anon_sym_BSLASHtextcite] = ACTIONS(5912), - [anon_sym_BSLASHTextcite] = ACTIONS(5912), - [anon_sym_BSLASHsmartcite] = ACTIONS(5912), - [anon_sym_BSLASHSmartcite] = ACTIONS(5912), - [anon_sym_BSLASHsupercite] = ACTIONS(5912), - [anon_sym_BSLASHautocite] = ACTIONS(5912), - [anon_sym_BSLASHAutocite] = ACTIONS(5912), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHvolcite] = ACTIONS(5912), - [anon_sym_BSLASHVolcite] = ACTIONS(5912), - [anon_sym_BSLASHpvolcite] = ACTIONS(5912), - [anon_sym_BSLASHPvolcite] = ACTIONS(5912), - [anon_sym_BSLASHfvolcite] = ACTIONS(5912), - [anon_sym_BSLASHftvolcite] = ACTIONS(5912), - [anon_sym_BSLASHsvolcite] = ACTIONS(5912), - [anon_sym_BSLASHSvolcite] = ACTIONS(5912), - [anon_sym_BSLASHtvolcite] = ACTIONS(5912), - [anon_sym_BSLASHTvolcite] = ACTIONS(5912), - [anon_sym_BSLASHavolcite] = ACTIONS(5912), - [anon_sym_BSLASHAvolcite] = ACTIONS(5912), - [anon_sym_BSLASHnotecite] = ACTIONS(5912), - [anon_sym_BSLASHNotecite] = ACTIONS(5912), - [anon_sym_BSLASHpnotecite] = ACTIONS(5912), - [anon_sym_BSLASHPnotecite] = ACTIONS(5912), - [anon_sym_BSLASHfnotecite] = ACTIONS(5912), - [anon_sym_BSLASHlabel] = ACTIONS(5912), - [anon_sym_BSLASHref] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5912), - [anon_sym_BSLASHvref] = ACTIONS(5912), - [anon_sym_BSLASHVref] = ACTIONS(5912), - [anon_sym_BSLASHautoref] = ACTIONS(5912), - [anon_sym_BSLASHpageref] = ACTIONS(5912), - [anon_sym_BSLASHcref] = ACTIONS(5912), - [anon_sym_BSLASHCref] = ACTIONS(5912), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5914), - [anon_sym_BSLASHnamecref] = ACTIONS(5912), - [anon_sym_BSLASHnameCref] = ACTIONS(5912), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5912), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5912), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5912), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5912), - [anon_sym_BSLASHlabelcref] = ACTIONS(5912), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5912), - [anon_sym_BSLASHcrefrange] = ACTIONS(5912), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCrefrange] = ACTIONS(5912), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5914), - [anon_sym_BSLASHnewlabel] = ACTIONS(5912), - [anon_sym_BSLASHnewcommand] = ACTIONS(5912), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5912), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5912), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5914), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHdef] = ACTIONS(5912), - [anon_sym_BSLASHlet] = ACTIONS(5912), - [anon_sym_BSLASHleft] = ACTIONS(5912), - [anon_sym_BSLASHbig] = ACTIONS(5912), - [anon_sym_BSLASHBig] = ACTIONS(5912), - [anon_sym_BSLASHbigg] = ACTIONS(5912), - [anon_sym_BSLASHBigg] = ACTIONS(5912), - [anon_sym_BSLASHbigl] = ACTIONS(5912), - [anon_sym_BSLASHBigl] = ACTIONS(5912), - [anon_sym_BSLASHbiggl] = ACTIONS(5912), - [anon_sym_BSLASHBiggl] = ACTIONS(5912), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5912), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5912), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5912), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5912), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5912), - [anon_sym_BSLASHgls] = ACTIONS(5912), - [anon_sym_BSLASHGls] = ACTIONS(5912), - [anon_sym_BSLASHGLS] = ACTIONS(5912), - [anon_sym_BSLASHglspl] = ACTIONS(5912), - [anon_sym_BSLASHGlspl] = ACTIONS(5912), - [anon_sym_BSLASHGLSpl] = ACTIONS(5912), - [anon_sym_BSLASHglsdisp] = ACTIONS(5912), - [anon_sym_BSLASHglslink] = ACTIONS(5912), - [anon_sym_BSLASHglstext] = ACTIONS(5912), - [anon_sym_BSLASHGlstext] = ACTIONS(5912), - [anon_sym_BSLASHGLStext] = ACTIONS(5912), - [anon_sym_BSLASHglsfirst] = ACTIONS(5912), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5912), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5912), - [anon_sym_BSLASHglsplural] = ACTIONS(5912), - [anon_sym_BSLASHGlsplural] = ACTIONS(5912), - [anon_sym_BSLASHGLSplural] = ACTIONS(5912), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHglsname] = ACTIONS(5912), - [anon_sym_BSLASHGlsname] = ACTIONS(5912), - [anon_sym_BSLASHGLSname] = ACTIONS(5912), - [anon_sym_BSLASHglssymbol] = ACTIONS(5912), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5912), - [anon_sym_BSLASHglsdesc] = ACTIONS(5912), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5912), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5912), - [anon_sym_BSLASHglsuseri] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5912), - [anon_sym_BSLASHglsuserii] = ACTIONS(5912), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5912), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5912), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5912), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5912), - [anon_sym_BSLASHglsuserv] = ACTIONS(5912), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5912), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5912), - [anon_sym_BSLASHglsuservi] = ACTIONS(5912), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5912), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5912), - [anon_sym_BSLASHnewacronym] = ACTIONS(5912), - [anon_sym_BSLASHacrshort] = ACTIONS(5912), - [anon_sym_BSLASHAcrshort] = ACTIONS(5912), - [anon_sym_BSLASHACRshort] = ACTIONS(5912), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5912), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5912), - [anon_sym_BSLASHacrlong] = ACTIONS(5912), - [anon_sym_BSLASHAcrlong] = ACTIONS(5912), - [anon_sym_BSLASHACRlong] = ACTIONS(5912), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5912), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5912), - [anon_sym_BSLASHacrfull] = ACTIONS(5912), - [anon_sym_BSLASHAcrfull] = ACTIONS(5912), - [anon_sym_BSLASHACRfull] = ACTIONS(5912), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5912), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5912), - [anon_sym_BSLASHacs] = ACTIONS(5912), - [anon_sym_BSLASHAcs] = ACTIONS(5912), - [anon_sym_BSLASHacsp] = ACTIONS(5912), - [anon_sym_BSLASHAcsp] = ACTIONS(5912), - [anon_sym_BSLASHacl] = ACTIONS(5912), - [anon_sym_BSLASHAcl] = ACTIONS(5912), - [anon_sym_BSLASHaclp] = ACTIONS(5912), - [anon_sym_BSLASHAclp] = ACTIONS(5912), - [anon_sym_BSLASHacf] = ACTIONS(5912), - [anon_sym_BSLASHAcf] = ACTIONS(5912), - [anon_sym_BSLASHacfp] = ACTIONS(5912), - [anon_sym_BSLASHAcfp] = ACTIONS(5912), - [anon_sym_BSLASHac] = ACTIONS(5912), - [anon_sym_BSLASHAc] = ACTIONS(5912), - [anon_sym_BSLASHacp] = ACTIONS(5912), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5912), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5912), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5912), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5912), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5912), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5912), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5912), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5914), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5912), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5914), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5912), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5912), - [anon_sym_BSLASHcolor] = ACTIONS(5912), - [anon_sym_BSLASHcolorbox] = ACTIONS(5912), - [anon_sym_BSLASHtextcolor] = ACTIONS(5912), - [anon_sym_BSLASHpagecolor] = ACTIONS(5912), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5912), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5912), - [anon_sym_BSLASHtext] = ACTIONS(5912), - [anon_sym_BSLASHintertext] = ACTIONS(5912), - [anon_sym_shortintertext] = ACTIONS(5912), - }, - [735] = { - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(735), - [aux_sym__section_repeat4] = STATE(735), - [sym_command_name] = ACTIONS(5902), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5902), - [anon_sym_LBRACK] = ACTIONS(5904), - [anon_sym_RBRACK] = ACTIONS(5904), - [anon_sym_COMMA] = ACTIONS(5904), - [anon_sym_EQ] = ACTIONS(5904), - [anon_sym_LPAREN] = ACTIONS(5904), - [anon_sym_RPAREN] = ACTIONS(5904), - [anon_sym_BSLASHpart] = ACTIONS(5902), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddpart] = ACTIONS(5902), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5904), - [anon_sym_BSLASHchapter] = ACTIONS(5902), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddchap] = ACTIONS(5902), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsection] = ACTIONS(5902), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddsec] = ACTIONS(5902), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsubsection] = ACTIONS(6605), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6608), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5902), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5904), - [anon_sym_BSLASHparagraph] = ACTIONS(5902), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5902), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5904), - [anon_sym_BSLASHitem] = ACTIONS(5902), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5904), - [anon_sym_LBRACE] = ACTIONS(5904), - [sym_word] = ACTIONS(5902), - [sym_placeholder] = ACTIONS(5904), - [anon_sym_PLUS] = ACTIONS(5904), - [anon_sym_DASH] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(5904), - [anon_sym_SLASH] = ACTIONS(5904), - [anon_sym_LT] = ACTIONS(5902), - [anon_sym_GT] = ACTIONS(5902), - [anon_sym_BANG] = ACTIONS(5902), - [anon_sym_PIPE] = ACTIONS(5902), - [anon_sym_COLON] = ACTIONS(5902), - [anon_sym_SQUOTE] = ACTIONS(5902), - [anon_sym__] = ACTIONS(5904), - [anon_sym_CARET] = ACTIONS(5904), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5904), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5904), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5904), - [anon_sym_DOLLAR] = ACTIONS(5902), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5904), - [anon_sym_BSLASHbegin] = ACTIONS(5902), - [anon_sym_BSLASHtitle] = ACTIONS(5902), - [anon_sym_BSLASHauthor] = ACTIONS(5902), - [anon_sym_BSLASHusepackage] = ACTIONS(5902), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5902), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5902), - [anon_sym_BSLASHinclude] = ACTIONS(5902), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5902), - [anon_sym_BSLASHinput] = ACTIONS(5902), - [anon_sym_BSLASHsubfile] = ACTIONS(5902), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5902), - [anon_sym_BSLASHbibliography] = ACTIONS(5902), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5902), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5902), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5902), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5902), - [anon_sym_BSLASHimport] = ACTIONS(5902), - [anon_sym_BSLASHsubimport] = ACTIONS(5902), - [anon_sym_BSLASHinputfrom] = ACTIONS(5902), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5902), - [anon_sym_BSLASHincludefrom] = ACTIONS(5902), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5902), - [anon_sym_BSLASHcaption] = ACTIONS(5902), - [anon_sym_BSLASHcite] = ACTIONS(5902), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCite] = ACTIONS(5902), - [anon_sym_BSLASHnocite] = ACTIONS(5902), - [anon_sym_BSLASHcitet] = ACTIONS(5902), - [anon_sym_BSLASHcitep] = ACTIONS(5902), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteauthor] = ACTIONS(5902), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5902), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitetitle] = ACTIONS(5902), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteyear] = ACTIONS(5902), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitedate] = ACTIONS(5902), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteurl] = ACTIONS(5902), - [anon_sym_BSLASHfullcite] = ACTIONS(5902), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5902), - [anon_sym_BSLASHcitealt] = ACTIONS(5902), - [anon_sym_BSLASHcitealp] = ACTIONS(5902), - [anon_sym_BSLASHcitetext] = ACTIONS(5902), - [anon_sym_BSLASHparencite] = ACTIONS(5902), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHParencite] = ACTIONS(5902), - [anon_sym_BSLASHfootcite] = ACTIONS(5902), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5902), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5902), - [anon_sym_BSLASHtextcite] = ACTIONS(5902), - [anon_sym_BSLASHTextcite] = ACTIONS(5902), - [anon_sym_BSLASHsmartcite] = ACTIONS(5902), - [anon_sym_BSLASHSmartcite] = ACTIONS(5902), - [anon_sym_BSLASHsupercite] = ACTIONS(5902), - [anon_sym_BSLASHautocite] = ACTIONS(5902), - [anon_sym_BSLASHAutocite] = ACTIONS(5902), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHvolcite] = ACTIONS(5902), - [anon_sym_BSLASHVolcite] = ACTIONS(5902), - [anon_sym_BSLASHpvolcite] = ACTIONS(5902), - [anon_sym_BSLASHPvolcite] = ACTIONS(5902), - [anon_sym_BSLASHfvolcite] = ACTIONS(5902), - [anon_sym_BSLASHftvolcite] = ACTIONS(5902), - [anon_sym_BSLASHsvolcite] = ACTIONS(5902), - [anon_sym_BSLASHSvolcite] = ACTIONS(5902), - [anon_sym_BSLASHtvolcite] = ACTIONS(5902), - [anon_sym_BSLASHTvolcite] = ACTIONS(5902), - [anon_sym_BSLASHavolcite] = ACTIONS(5902), - [anon_sym_BSLASHAvolcite] = ACTIONS(5902), - [anon_sym_BSLASHnotecite] = ACTIONS(5902), - [anon_sym_BSLASHNotecite] = ACTIONS(5902), - [anon_sym_BSLASHpnotecite] = ACTIONS(5902), - [anon_sym_BSLASHPnotecite] = ACTIONS(5902), - [anon_sym_BSLASHfnotecite] = ACTIONS(5902), - [anon_sym_BSLASHlabel] = ACTIONS(5902), - [anon_sym_BSLASHref] = ACTIONS(5902), - [anon_sym_BSLASHeqref] = ACTIONS(5902), - [anon_sym_BSLASHvref] = ACTIONS(5902), - [anon_sym_BSLASHVref] = ACTIONS(5902), - [anon_sym_BSLASHautoref] = ACTIONS(5902), - [anon_sym_BSLASHpageref] = ACTIONS(5902), - [anon_sym_BSLASHcref] = ACTIONS(5902), - [anon_sym_BSLASHCref] = ACTIONS(5902), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5904), - [anon_sym_BSLASHnamecref] = ACTIONS(5902), - [anon_sym_BSLASHnameCref] = ACTIONS(5902), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5902), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5902), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5902), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5902), - [anon_sym_BSLASHlabelcref] = ACTIONS(5902), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5902), - [anon_sym_BSLASHcrefrange] = ACTIONS(5902), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCrefrange] = ACTIONS(5902), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5904), - [anon_sym_BSLASHnewlabel] = ACTIONS(5902), - [anon_sym_BSLASHnewcommand] = ACTIONS(5902), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5902), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5902), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5904), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHdef] = ACTIONS(5902), - [anon_sym_BSLASHlet] = ACTIONS(5902), - [anon_sym_BSLASHleft] = ACTIONS(5902), - [anon_sym_BSLASHbig] = ACTIONS(5902), - [anon_sym_BSLASHBig] = ACTIONS(5902), - [anon_sym_BSLASHbigg] = ACTIONS(5902), - [anon_sym_BSLASHBigg] = ACTIONS(5902), - [anon_sym_BSLASHbigl] = ACTIONS(5902), - [anon_sym_BSLASHBigl] = ACTIONS(5902), - [anon_sym_BSLASHbiggl] = ACTIONS(5902), - [anon_sym_BSLASHBiggl] = ACTIONS(5902), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5902), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5902), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5902), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5902), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5902), - [anon_sym_BSLASHgls] = ACTIONS(5902), - [anon_sym_BSLASHGls] = ACTIONS(5902), - [anon_sym_BSLASHGLS] = ACTIONS(5902), - [anon_sym_BSLASHglspl] = ACTIONS(5902), - [anon_sym_BSLASHGlspl] = ACTIONS(5902), - [anon_sym_BSLASHGLSpl] = ACTIONS(5902), - [anon_sym_BSLASHglsdisp] = ACTIONS(5902), - [anon_sym_BSLASHglslink] = ACTIONS(5902), - [anon_sym_BSLASHglstext] = ACTIONS(5902), - [anon_sym_BSLASHGlstext] = ACTIONS(5902), - [anon_sym_BSLASHGLStext] = ACTIONS(5902), - [anon_sym_BSLASHglsfirst] = ACTIONS(5902), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5902), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5902), - [anon_sym_BSLASHglsplural] = ACTIONS(5902), - [anon_sym_BSLASHGlsplural] = ACTIONS(5902), - [anon_sym_BSLASHGLSplural] = ACTIONS(5902), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHglsname] = ACTIONS(5902), - [anon_sym_BSLASHGlsname] = ACTIONS(5902), - [anon_sym_BSLASHGLSname] = ACTIONS(5902), - [anon_sym_BSLASHglssymbol] = ACTIONS(5902), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5902), - [anon_sym_BSLASHglsdesc] = ACTIONS(5902), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5902), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5902), - [anon_sym_BSLASHglsuseri] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5902), - [anon_sym_BSLASHglsuserii] = ACTIONS(5902), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5902), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5902), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5902), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5902), - [anon_sym_BSLASHglsuserv] = ACTIONS(5902), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5902), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5902), - [anon_sym_BSLASHglsuservi] = ACTIONS(5902), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5902), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5902), - [anon_sym_BSLASHnewacronym] = ACTIONS(5902), - [anon_sym_BSLASHacrshort] = ACTIONS(5902), - [anon_sym_BSLASHAcrshort] = ACTIONS(5902), - [anon_sym_BSLASHACRshort] = ACTIONS(5902), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5902), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5902), - [anon_sym_BSLASHacrlong] = ACTIONS(5902), - [anon_sym_BSLASHAcrlong] = ACTIONS(5902), - [anon_sym_BSLASHACRlong] = ACTIONS(5902), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5902), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5902), - [anon_sym_BSLASHacrfull] = ACTIONS(5902), - [anon_sym_BSLASHAcrfull] = ACTIONS(5902), - [anon_sym_BSLASHACRfull] = ACTIONS(5902), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5902), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5902), - [anon_sym_BSLASHacs] = ACTIONS(5902), - [anon_sym_BSLASHAcs] = ACTIONS(5902), - [anon_sym_BSLASHacsp] = ACTIONS(5902), - [anon_sym_BSLASHAcsp] = ACTIONS(5902), - [anon_sym_BSLASHacl] = ACTIONS(5902), - [anon_sym_BSLASHAcl] = ACTIONS(5902), - [anon_sym_BSLASHaclp] = ACTIONS(5902), - [anon_sym_BSLASHAclp] = ACTIONS(5902), - [anon_sym_BSLASHacf] = ACTIONS(5902), - [anon_sym_BSLASHAcf] = ACTIONS(5902), - [anon_sym_BSLASHacfp] = ACTIONS(5902), - [anon_sym_BSLASHAcfp] = ACTIONS(5902), - [anon_sym_BSLASHac] = ACTIONS(5902), - [anon_sym_BSLASHAc] = ACTIONS(5902), - [anon_sym_BSLASHacp] = ACTIONS(5902), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5902), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5902), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5902), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5902), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5902), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5902), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5902), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5904), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5902), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5904), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5902), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5902), - [anon_sym_BSLASHcolor] = ACTIONS(5902), - [anon_sym_BSLASHcolorbox] = ACTIONS(5902), - [anon_sym_BSLASHtextcolor] = ACTIONS(5902), - [anon_sym_BSLASHpagecolor] = ACTIONS(5902), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5902), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5902), - [anon_sym_BSLASHtext] = ACTIONS(5902), - [anon_sym_BSLASHintertext] = ACTIONS(5902), - [anon_sym_shortintertext] = ACTIONS(5902), - }, - [736] = { - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(736), - [aux_sym__section_repeat3] = STATE(736), - [sym_command_name] = ACTIONS(5892), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5894), - [anon_sym_RBRACK] = ACTIONS(5894), - [anon_sym_COMMA] = ACTIONS(5894), - [anon_sym_EQ] = ACTIONS(5894), - [anon_sym_LPAREN] = ACTIONS(5894), - [anon_sym_RPAREN] = ACTIONS(5894), - [anon_sym_BSLASHpart] = ACTIONS(5892), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5894), - [anon_sym_BSLASHaddpart] = ACTIONS(5892), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5894), - [anon_sym_BSLASHchapter] = ACTIONS(5892), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5894), - [anon_sym_BSLASHaddchap] = ACTIONS(5892), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsection] = ACTIONS(6611), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6614), - [anon_sym_BSLASHaddsec] = ACTIONS(6611), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6614), - [anon_sym_BSLASHsubsection] = ACTIONS(5892), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5892), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5894), - [anon_sym_BSLASHparagraph] = ACTIONS(5892), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5892), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5894), - [anon_sym_BSLASHitem] = ACTIONS(5892), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5894), - [anon_sym_LBRACE] = ACTIONS(5894), - [sym_word] = ACTIONS(5892), - [sym_placeholder] = ACTIONS(5894), - [anon_sym_PLUS] = ACTIONS(5894), - [anon_sym_DASH] = ACTIONS(5894), - [anon_sym_STAR] = ACTIONS(5894), - [anon_sym_SLASH] = ACTIONS(5894), - [anon_sym_LT] = ACTIONS(5892), - [anon_sym_GT] = ACTIONS(5892), - [anon_sym_BANG] = ACTIONS(5892), - [anon_sym_PIPE] = ACTIONS(5892), - [anon_sym_COLON] = ACTIONS(5892), - [anon_sym_SQUOTE] = ACTIONS(5892), - [anon_sym__] = ACTIONS(5894), - [anon_sym_CARET] = ACTIONS(5894), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5894), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5894), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5894), - [anon_sym_DOLLAR] = ACTIONS(5892), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5894), - [anon_sym_BSLASHbegin] = ACTIONS(5892), - [anon_sym_BSLASHtitle] = ACTIONS(5892), - [anon_sym_BSLASHauthor] = ACTIONS(5892), - [anon_sym_BSLASHusepackage] = ACTIONS(5892), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5892), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5892), - [anon_sym_BSLASHinclude] = ACTIONS(5892), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5892), - [anon_sym_BSLASHinput] = ACTIONS(5892), - [anon_sym_BSLASHsubfile] = ACTIONS(5892), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5892), - [anon_sym_BSLASHbibliography] = ACTIONS(5892), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5892), - [anon_sym_BSLASHincludesvg] = ACTIONS(5892), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5892), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5892), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5892), - [anon_sym_BSLASHimport] = ACTIONS(5892), - [anon_sym_BSLASHsubimport] = ACTIONS(5892), - [anon_sym_BSLASHinputfrom] = ACTIONS(5892), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5892), - [anon_sym_BSLASHincludefrom] = ACTIONS(5892), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5892), - [anon_sym_BSLASHcaption] = ACTIONS(5892), - [anon_sym_BSLASHcite] = ACTIONS(5892), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCite] = ACTIONS(5892), - [anon_sym_BSLASHnocite] = ACTIONS(5892), - [anon_sym_BSLASHcitet] = ACTIONS(5892), - [anon_sym_BSLASHcitep] = ACTIONS(5892), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteauthor] = ACTIONS(5892), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5892), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitetitle] = ACTIONS(5892), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteyear] = ACTIONS(5892), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitedate] = ACTIONS(5892), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteurl] = ACTIONS(5892), - [anon_sym_BSLASHfullcite] = ACTIONS(5892), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5892), - [anon_sym_BSLASHcitealt] = ACTIONS(5892), - [anon_sym_BSLASHcitealp] = ACTIONS(5892), - [anon_sym_BSLASHcitetext] = ACTIONS(5892), - [anon_sym_BSLASHparencite] = ACTIONS(5892), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHParencite] = ACTIONS(5892), - [anon_sym_BSLASHfootcite] = ACTIONS(5892), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5892), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5892), - [anon_sym_BSLASHtextcite] = ACTIONS(5892), - [anon_sym_BSLASHTextcite] = ACTIONS(5892), - [anon_sym_BSLASHsmartcite] = ACTIONS(5892), - [anon_sym_BSLASHSmartcite] = ACTIONS(5892), - [anon_sym_BSLASHsupercite] = ACTIONS(5892), - [anon_sym_BSLASHautocite] = ACTIONS(5892), - [anon_sym_BSLASHAutocite] = ACTIONS(5892), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHvolcite] = ACTIONS(5892), - [anon_sym_BSLASHVolcite] = ACTIONS(5892), - [anon_sym_BSLASHpvolcite] = ACTIONS(5892), - [anon_sym_BSLASHPvolcite] = ACTIONS(5892), - [anon_sym_BSLASHfvolcite] = ACTIONS(5892), - [anon_sym_BSLASHftvolcite] = ACTIONS(5892), - [anon_sym_BSLASHsvolcite] = ACTIONS(5892), - [anon_sym_BSLASHSvolcite] = ACTIONS(5892), - [anon_sym_BSLASHtvolcite] = ACTIONS(5892), - [anon_sym_BSLASHTvolcite] = ACTIONS(5892), - [anon_sym_BSLASHavolcite] = ACTIONS(5892), - [anon_sym_BSLASHAvolcite] = ACTIONS(5892), - [anon_sym_BSLASHnotecite] = ACTIONS(5892), - [anon_sym_BSLASHNotecite] = ACTIONS(5892), - [anon_sym_BSLASHpnotecite] = ACTIONS(5892), - [anon_sym_BSLASHPnotecite] = ACTIONS(5892), - [anon_sym_BSLASHfnotecite] = ACTIONS(5892), - [anon_sym_BSLASHlabel] = ACTIONS(5892), - [anon_sym_BSLASHref] = ACTIONS(5892), - [anon_sym_BSLASHeqref] = ACTIONS(5892), - [anon_sym_BSLASHvref] = ACTIONS(5892), - [anon_sym_BSLASHVref] = ACTIONS(5892), - [anon_sym_BSLASHautoref] = ACTIONS(5892), - [anon_sym_BSLASHpageref] = ACTIONS(5892), - [anon_sym_BSLASHcref] = ACTIONS(5892), - [anon_sym_BSLASHCref] = ACTIONS(5892), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5894), - [anon_sym_BSLASHnamecref] = ACTIONS(5892), - [anon_sym_BSLASHnameCref] = ACTIONS(5892), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5892), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5892), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5892), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5892), - [anon_sym_BSLASHlabelcref] = ACTIONS(5892), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5892), - [anon_sym_BSLASHcrefrange] = ACTIONS(5892), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCrefrange] = ACTIONS(5892), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5894), - [anon_sym_BSLASHnewlabel] = ACTIONS(5892), - [anon_sym_BSLASHnewcommand] = ACTIONS(5892), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5892), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5892), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5894), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHdef] = ACTIONS(5892), - [anon_sym_BSLASHlet] = ACTIONS(5892), - [anon_sym_BSLASHleft] = ACTIONS(5892), - [anon_sym_BSLASHbig] = ACTIONS(5892), - [anon_sym_BSLASHBig] = ACTIONS(5892), - [anon_sym_BSLASHbigg] = ACTIONS(5892), - [anon_sym_BSLASHBigg] = ACTIONS(5892), - [anon_sym_BSLASHbigl] = ACTIONS(5892), - [anon_sym_BSLASHBigl] = ACTIONS(5892), - [anon_sym_BSLASHbiggl] = ACTIONS(5892), - [anon_sym_BSLASHBiggl] = ACTIONS(5892), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5892), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5892), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5892), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5892), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5892), - [anon_sym_BSLASHgls] = ACTIONS(5892), - [anon_sym_BSLASHGls] = ACTIONS(5892), - [anon_sym_BSLASHGLS] = ACTIONS(5892), - [anon_sym_BSLASHglspl] = ACTIONS(5892), - [anon_sym_BSLASHGlspl] = ACTIONS(5892), - [anon_sym_BSLASHGLSpl] = ACTIONS(5892), - [anon_sym_BSLASHglsdisp] = ACTIONS(5892), - [anon_sym_BSLASHglslink] = ACTIONS(5892), - [anon_sym_BSLASHglstext] = ACTIONS(5892), - [anon_sym_BSLASHGlstext] = ACTIONS(5892), - [anon_sym_BSLASHGLStext] = ACTIONS(5892), - [anon_sym_BSLASHglsfirst] = ACTIONS(5892), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5892), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5892), - [anon_sym_BSLASHglsplural] = ACTIONS(5892), - [anon_sym_BSLASHGlsplural] = ACTIONS(5892), - [anon_sym_BSLASHGLSplural] = ACTIONS(5892), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHglsname] = ACTIONS(5892), - [anon_sym_BSLASHGlsname] = ACTIONS(5892), - [anon_sym_BSLASHGLSname] = ACTIONS(5892), - [anon_sym_BSLASHglssymbol] = ACTIONS(5892), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5892), - [anon_sym_BSLASHglsdesc] = ACTIONS(5892), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5892), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5892), - [anon_sym_BSLASHglsuseri] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5892), - [anon_sym_BSLASHglsuserii] = ACTIONS(5892), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5892), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5892), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5892), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5892), - [anon_sym_BSLASHglsuserv] = ACTIONS(5892), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5892), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5892), - [anon_sym_BSLASHglsuservi] = ACTIONS(5892), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5892), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5892), - [anon_sym_BSLASHnewacronym] = ACTIONS(5892), - [anon_sym_BSLASHacrshort] = ACTIONS(5892), - [anon_sym_BSLASHAcrshort] = ACTIONS(5892), - [anon_sym_BSLASHACRshort] = ACTIONS(5892), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5892), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5892), - [anon_sym_BSLASHacrlong] = ACTIONS(5892), - [anon_sym_BSLASHAcrlong] = ACTIONS(5892), - [anon_sym_BSLASHACRlong] = ACTIONS(5892), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5892), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5892), - [anon_sym_BSLASHacrfull] = ACTIONS(5892), - [anon_sym_BSLASHAcrfull] = ACTIONS(5892), - [anon_sym_BSLASHACRfull] = ACTIONS(5892), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5892), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5892), - [anon_sym_BSLASHacs] = ACTIONS(5892), - [anon_sym_BSLASHAcs] = ACTIONS(5892), - [anon_sym_BSLASHacsp] = ACTIONS(5892), - [anon_sym_BSLASHAcsp] = ACTIONS(5892), - [anon_sym_BSLASHacl] = ACTIONS(5892), - [anon_sym_BSLASHAcl] = ACTIONS(5892), - [anon_sym_BSLASHaclp] = ACTIONS(5892), - [anon_sym_BSLASHAclp] = ACTIONS(5892), - [anon_sym_BSLASHacf] = ACTIONS(5892), - [anon_sym_BSLASHAcf] = ACTIONS(5892), - [anon_sym_BSLASHacfp] = ACTIONS(5892), - [anon_sym_BSLASHAcfp] = ACTIONS(5892), - [anon_sym_BSLASHac] = ACTIONS(5892), - [anon_sym_BSLASHAc] = ACTIONS(5892), - [anon_sym_BSLASHacp] = ACTIONS(5892), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5892), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5892), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5892), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5892), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5892), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5892), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5892), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5894), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5892), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5894), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5892), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5892), - [anon_sym_BSLASHcolor] = ACTIONS(5892), - [anon_sym_BSLASHcolorbox] = ACTIONS(5892), - [anon_sym_BSLASHtextcolor] = ACTIONS(5892), - [anon_sym_BSLASHpagecolor] = ACTIONS(5892), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5892), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5892), - [anon_sym_BSLASHtext] = ACTIONS(5892), - [anon_sym_BSLASHintertext] = ACTIONS(5892), - [anon_sym_shortintertext] = ACTIONS(5892), - }, - [737] = { - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(737), - [aux_sym__section_repeat2] = STATE(737), - [sym_command_name] = ACTIONS(5882), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5882), - [anon_sym_LBRACK] = ACTIONS(5884), - [anon_sym_RBRACK] = ACTIONS(5884), - [anon_sym_COMMA] = ACTIONS(5884), - [anon_sym_EQ] = ACTIONS(5884), - [anon_sym_LPAREN] = ACTIONS(5884), - [anon_sym_RPAREN] = ACTIONS(5884), - [anon_sym_BSLASHpart] = ACTIONS(5882), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5884), - [anon_sym_BSLASHaddpart] = ACTIONS(5882), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5884), - [anon_sym_BSLASHchapter] = ACTIONS(6617), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6620), - [anon_sym_BSLASHaddchap] = ACTIONS(6617), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6620), - [anon_sym_BSLASHsection] = ACTIONS(5882), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHaddsec] = ACTIONS(5882), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubsection] = ACTIONS(5882), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5882), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHparagraph] = ACTIONS(5882), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5882), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5884), - [anon_sym_BSLASHitem] = ACTIONS(5882), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5884), - [anon_sym_LBRACE] = ACTIONS(5884), - [sym_word] = ACTIONS(5882), - [sym_placeholder] = ACTIONS(5884), - [anon_sym_PLUS] = ACTIONS(5884), - [anon_sym_DASH] = ACTIONS(5884), - [anon_sym_STAR] = ACTIONS(5884), - [anon_sym_SLASH] = ACTIONS(5884), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_BANG] = ACTIONS(5882), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_COLON] = ACTIONS(5882), - [anon_sym_SQUOTE] = ACTIONS(5882), - [anon_sym__] = ACTIONS(5884), - [anon_sym_CARET] = ACTIONS(5884), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5884), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5884), - [anon_sym_DOLLAR] = ACTIONS(5882), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5884), - [anon_sym_BSLASHbegin] = ACTIONS(5882), - [anon_sym_BSLASHtitle] = ACTIONS(5882), - [anon_sym_BSLASHauthor] = ACTIONS(5882), - [anon_sym_BSLASHusepackage] = ACTIONS(5882), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5882), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5882), - [anon_sym_BSLASHinclude] = ACTIONS(5882), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5882), - [anon_sym_BSLASHinput] = ACTIONS(5882), - [anon_sym_BSLASHsubfile] = ACTIONS(5882), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5882), - [anon_sym_BSLASHbibliography] = ACTIONS(5882), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5882), - [anon_sym_BSLASHincludesvg] = ACTIONS(5882), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5882), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5882), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5882), - [anon_sym_BSLASHimport] = ACTIONS(5882), - [anon_sym_BSLASHsubimport] = ACTIONS(5882), - [anon_sym_BSLASHinputfrom] = ACTIONS(5882), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5882), - [anon_sym_BSLASHincludefrom] = ACTIONS(5882), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5882), - [anon_sym_BSLASHcaption] = ACTIONS(5882), - [anon_sym_BSLASHcite] = ACTIONS(5882), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCite] = ACTIONS(5882), - [anon_sym_BSLASHnocite] = ACTIONS(5882), - [anon_sym_BSLASHcitet] = ACTIONS(5882), - [anon_sym_BSLASHcitep] = ACTIONS(5882), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteauthor] = ACTIONS(5882), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5882), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitetitle] = ACTIONS(5882), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteyear] = ACTIONS(5882), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitedate] = ACTIONS(5882), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteurl] = ACTIONS(5882), - [anon_sym_BSLASHfullcite] = ACTIONS(5882), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5882), - [anon_sym_BSLASHcitealt] = ACTIONS(5882), - [anon_sym_BSLASHcitealp] = ACTIONS(5882), - [anon_sym_BSLASHcitetext] = ACTIONS(5882), - [anon_sym_BSLASHparencite] = ACTIONS(5882), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHParencite] = ACTIONS(5882), - [anon_sym_BSLASHfootcite] = ACTIONS(5882), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5882), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5882), - [anon_sym_BSLASHtextcite] = ACTIONS(5882), - [anon_sym_BSLASHTextcite] = ACTIONS(5882), - [anon_sym_BSLASHsmartcite] = ACTIONS(5882), - [anon_sym_BSLASHSmartcite] = ACTIONS(5882), - [anon_sym_BSLASHsupercite] = ACTIONS(5882), - [anon_sym_BSLASHautocite] = ACTIONS(5882), - [anon_sym_BSLASHAutocite] = ACTIONS(5882), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHvolcite] = ACTIONS(5882), - [anon_sym_BSLASHVolcite] = ACTIONS(5882), - [anon_sym_BSLASHpvolcite] = ACTIONS(5882), - [anon_sym_BSLASHPvolcite] = ACTIONS(5882), - [anon_sym_BSLASHfvolcite] = ACTIONS(5882), - [anon_sym_BSLASHftvolcite] = ACTIONS(5882), - [anon_sym_BSLASHsvolcite] = ACTIONS(5882), - [anon_sym_BSLASHSvolcite] = ACTIONS(5882), - [anon_sym_BSLASHtvolcite] = ACTIONS(5882), - [anon_sym_BSLASHTvolcite] = ACTIONS(5882), - [anon_sym_BSLASHavolcite] = ACTIONS(5882), - [anon_sym_BSLASHAvolcite] = ACTIONS(5882), - [anon_sym_BSLASHnotecite] = ACTIONS(5882), - [anon_sym_BSLASHNotecite] = ACTIONS(5882), - [anon_sym_BSLASHpnotecite] = ACTIONS(5882), - [anon_sym_BSLASHPnotecite] = ACTIONS(5882), - [anon_sym_BSLASHfnotecite] = ACTIONS(5882), - [anon_sym_BSLASHlabel] = ACTIONS(5882), - [anon_sym_BSLASHref] = ACTIONS(5882), - [anon_sym_BSLASHeqref] = ACTIONS(5882), - [anon_sym_BSLASHvref] = ACTIONS(5882), - [anon_sym_BSLASHVref] = ACTIONS(5882), - [anon_sym_BSLASHautoref] = ACTIONS(5882), - [anon_sym_BSLASHpageref] = ACTIONS(5882), - [anon_sym_BSLASHcref] = ACTIONS(5882), - [anon_sym_BSLASHCref] = ACTIONS(5882), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5884), - [anon_sym_BSLASHnamecref] = ACTIONS(5882), - [anon_sym_BSLASHnameCref] = ACTIONS(5882), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5882), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5882), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5882), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5882), - [anon_sym_BSLASHlabelcref] = ACTIONS(5882), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5882), - [anon_sym_BSLASHcrefrange] = ACTIONS(5882), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCrefrange] = ACTIONS(5882), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5884), - [anon_sym_BSLASHnewlabel] = ACTIONS(5882), - [anon_sym_BSLASHnewcommand] = ACTIONS(5882), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5882), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5882), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5884), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHdef] = ACTIONS(5882), - [anon_sym_BSLASHlet] = ACTIONS(5882), - [anon_sym_BSLASHleft] = ACTIONS(5882), - [anon_sym_BSLASHbig] = ACTIONS(5882), - [anon_sym_BSLASHBig] = ACTIONS(5882), - [anon_sym_BSLASHbigg] = ACTIONS(5882), - [anon_sym_BSLASHBigg] = ACTIONS(5882), - [anon_sym_BSLASHbigl] = ACTIONS(5882), - [anon_sym_BSLASHBigl] = ACTIONS(5882), - [anon_sym_BSLASHbiggl] = ACTIONS(5882), - [anon_sym_BSLASHBiggl] = ACTIONS(5882), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5882), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5882), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5882), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5882), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5882), - [anon_sym_BSLASHgls] = ACTIONS(5882), - [anon_sym_BSLASHGls] = ACTIONS(5882), - [anon_sym_BSLASHGLS] = ACTIONS(5882), - [anon_sym_BSLASHglspl] = ACTIONS(5882), - [anon_sym_BSLASHGlspl] = ACTIONS(5882), - [anon_sym_BSLASHGLSpl] = ACTIONS(5882), - [anon_sym_BSLASHglsdisp] = ACTIONS(5882), - [anon_sym_BSLASHglslink] = ACTIONS(5882), - [anon_sym_BSLASHglstext] = ACTIONS(5882), - [anon_sym_BSLASHGlstext] = ACTIONS(5882), - [anon_sym_BSLASHGLStext] = ACTIONS(5882), - [anon_sym_BSLASHglsfirst] = ACTIONS(5882), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5882), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5882), - [anon_sym_BSLASHglsplural] = ACTIONS(5882), - [anon_sym_BSLASHGlsplural] = ACTIONS(5882), - [anon_sym_BSLASHGLSplural] = ACTIONS(5882), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHglsname] = ACTIONS(5882), - [anon_sym_BSLASHGlsname] = ACTIONS(5882), - [anon_sym_BSLASHGLSname] = ACTIONS(5882), - [anon_sym_BSLASHglssymbol] = ACTIONS(5882), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5882), - [anon_sym_BSLASHglsdesc] = ACTIONS(5882), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5882), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5882), - [anon_sym_BSLASHglsuseri] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5882), - [anon_sym_BSLASHglsuserii] = ACTIONS(5882), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5882), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5882), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5882), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5882), - [anon_sym_BSLASHglsuserv] = ACTIONS(5882), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5882), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5882), - [anon_sym_BSLASHglsuservi] = ACTIONS(5882), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5882), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5882), - [anon_sym_BSLASHnewacronym] = ACTIONS(5882), - [anon_sym_BSLASHacrshort] = ACTIONS(5882), - [anon_sym_BSLASHAcrshort] = ACTIONS(5882), - [anon_sym_BSLASHACRshort] = ACTIONS(5882), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5882), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5882), - [anon_sym_BSLASHacrlong] = ACTIONS(5882), - [anon_sym_BSLASHAcrlong] = ACTIONS(5882), - [anon_sym_BSLASHACRlong] = ACTIONS(5882), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5882), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5882), - [anon_sym_BSLASHacrfull] = ACTIONS(5882), - [anon_sym_BSLASHAcrfull] = ACTIONS(5882), - [anon_sym_BSLASHACRfull] = ACTIONS(5882), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5882), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5882), - [anon_sym_BSLASHacs] = ACTIONS(5882), - [anon_sym_BSLASHAcs] = ACTIONS(5882), - [anon_sym_BSLASHacsp] = ACTIONS(5882), - [anon_sym_BSLASHAcsp] = ACTIONS(5882), - [anon_sym_BSLASHacl] = ACTIONS(5882), - [anon_sym_BSLASHAcl] = ACTIONS(5882), - [anon_sym_BSLASHaclp] = ACTIONS(5882), - [anon_sym_BSLASHAclp] = ACTIONS(5882), - [anon_sym_BSLASHacf] = ACTIONS(5882), - [anon_sym_BSLASHAcf] = ACTIONS(5882), - [anon_sym_BSLASHacfp] = ACTIONS(5882), - [anon_sym_BSLASHAcfp] = ACTIONS(5882), - [anon_sym_BSLASHac] = ACTIONS(5882), - [anon_sym_BSLASHAc] = ACTIONS(5882), - [anon_sym_BSLASHacp] = ACTIONS(5882), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5882), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5882), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5882), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5882), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5882), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5882), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5882), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5884), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5882), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5884), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5882), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5882), - [anon_sym_BSLASHcolor] = ACTIONS(5882), - [anon_sym_BSLASHcolorbox] = ACTIONS(5882), - [anon_sym_BSLASHtextcolor] = ACTIONS(5882), - [anon_sym_BSLASHpagecolor] = ACTIONS(5882), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5882), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5882), - [anon_sym_BSLASHtext] = ACTIONS(5882), - [anon_sym_BSLASHintertext] = ACTIONS(5882), - [anon_sym_shortintertext] = ACTIONS(5882), - }, - [738] = { - [sym__enum_itemdeclaration] = STATE(256), - [sym_enum_item] = STATE(645), - [aux_sym__section_repeat8] = STATE(645), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(722), - [anon_sym_BSLASHitem_STAR] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHend] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [739] = { - [sym__subparagraph_declaration] = STATE(245), - [sym_subparagraph] = STATE(646), - [aux_sym__section_repeat7] = STATE(646), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(718), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(720), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHend] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [740] = { - [sym__paragraph_declaration] = STATE(230), - [sym_paragraph] = STATE(647), - [aux_sym__section_repeat6] = STATE(647), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(714), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(716), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHend] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [741] = { - [sym__subsubsection_declaration] = STATE(222), - [sym_subsubsection] = STATE(648), - [aux_sym__section_repeat5] = STATE(648), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(710), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(712), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHend] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [742] = { - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(742), - [aux_sym__section_repeat1] = STATE(742), - [sym_command_name] = ACTIONS(5872), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5872), - [anon_sym_LBRACK] = ACTIONS(5874), - [anon_sym_RBRACK] = ACTIONS(5874), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [anon_sym_LPAREN] = ACTIONS(5874), - [anon_sym_RPAREN] = ACTIONS(5874), - [anon_sym_BSLASHpart] = ACTIONS(6623), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6626), - [anon_sym_BSLASHaddpart] = ACTIONS(6623), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6626), - [anon_sym_BSLASHchapter] = ACTIONS(5872), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5874), - [anon_sym_BSLASHaddchap] = ACTIONS(5872), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsection] = ACTIONS(5872), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHaddsec] = ACTIONS(5872), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubsection] = ACTIONS(5872), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5872), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHparagraph] = ACTIONS(5872), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5872), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5874), - [anon_sym_BSLASHitem] = ACTIONS(5872), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5874), - [anon_sym_LBRACE] = ACTIONS(5874), - [sym_word] = ACTIONS(5872), - [sym_placeholder] = ACTIONS(5874), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_STAR] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_LT] = ACTIONS(5872), - [anon_sym_GT] = ACTIONS(5872), - [anon_sym_BANG] = ACTIONS(5872), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_COLON] = ACTIONS(5872), - [anon_sym_SQUOTE] = ACTIONS(5872), - [anon_sym__] = ACTIONS(5874), - [anon_sym_CARET] = ACTIONS(5874), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5874), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5874), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5874), - [anon_sym_DOLLAR] = ACTIONS(5872), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5874), - [anon_sym_BSLASHbegin] = ACTIONS(5872), - [anon_sym_BSLASHtitle] = ACTIONS(5872), - [anon_sym_BSLASHauthor] = ACTIONS(5872), - [anon_sym_BSLASHusepackage] = ACTIONS(5872), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5872), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5872), - [anon_sym_BSLASHinclude] = ACTIONS(5872), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5872), - [anon_sym_BSLASHinput] = ACTIONS(5872), - [anon_sym_BSLASHsubfile] = ACTIONS(5872), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5872), - [anon_sym_BSLASHbibliography] = ACTIONS(5872), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5872), - [anon_sym_BSLASHincludesvg] = ACTIONS(5872), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5872), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5872), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5872), - [anon_sym_BSLASHimport] = ACTIONS(5872), - [anon_sym_BSLASHsubimport] = ACTIONS(5872), - [anon_sym_BSLASHinputfrom] = ACTIONS(5872), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5872), - [anon_sym_BSLASHincludefrom] = ACTIONS(5872), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5872), - [anon_sym_BSLASHcaption] = ACTIONS(5872), - [anon_sym_BSLASHcite] = ACTIONS(5872), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCite] = ACTIONS(5872), - [anon_sym_BSLASHnocite] = ACTIONS(5872), - [anon_sym_BSLASHcitet] = ACTIONS(5872), - [anon_sym_BSLASHcitep] = ACTIONS(5872), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteauthor] = ACTIONS(5872), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5872), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitetitle] = ACTIONS(5872), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteyear] = ACTIONS(5872), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitedate] = ACTIONS(5872), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteurl] = ACTIONS(5872), - [anon_sym_BSLASHfullcite] = ACTIONS(5872), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5872), - [anon_sym_BSLASHcitealt] = ACTIONS(5872), - [anon_sym_BSLASHcitealp] = ACTIONS(5872), - [anon_sym_BSLASHcitetext] = ACTIONS(5872), - [anon_sym_BSLASHparencite] = ACTIONS(5872), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHParencite] = ACTIONS(5872), - [anon_sym_BSLASHfootcite] = ACTIONS(5872), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5872), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5872), - [anon_sym_BSLASHtextcite] = ACTIONS(5872), - [anon_sym_BSLASHTextcite] = ACTIONS(5872), - [anon_sym_BSLASHsmartcite] = ACTIONS(5872), - [anon_sym_BSLASHSmartcite] = ACTIONS(5872), - [anon_sym_BSLASHsupercite] = ACTIONS(5872), - [anon_sym_BSLASHautocite] = ACTIONS(5872), - [anon_sym_BSLASHAutocite] = ACTIONS(5872), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHvolcite] = ACTIONS(5872), - [anon_sym_BSLASHVolcite] = ACTIONS(5872), - [anon_sym_BSLASHpvolcite] = ACTIONS(5872), - [anon_sym_BSLASHPvolcite] = ACTIONS(5872), - [anon_sym_BSLASHfvolcite] = ACTIONS(5872), - [anon_sym_BSLASHftvolcite] = ACTIONS(5872), - [anon_sym_BSLASHsvolcite] = ACTIONS(5872), - [anon_sym_BSLASHSvolcite] = ACTIONS(5872), - [anon_sym_BSLASHtvolcite] = ACTIONS(5872), - [anon_sym_BSLASHTvolcite] = ACTIONS(5872), - [anon_sym_BSLASHavolcite] = ACTIONS(5872), - [anon_sym_BSLASHAvolcite] = ACTIONS(5872), - [anon_sym_BSLASHnotecite] = ACTIONS(5872), - [anon_sym_BSLASHNotecite] = ACTIONS(5872), - [anon_sym_BSLASHpnotecite] = ACTIONS(5872), - [anon_sym_BSLASHPnotecite] = ACTIONS(5872), - [anon_sym_BSLASHfnotecite] = ACTIONS(5872), - [anon_sym_BSLASHlabel] = ACTIONS(5872), - [anon_sym_BSLASHref] = ACTIONS(5872), - [anon_sym_BSLASHeqref] = ACTIONS(5872), - [anon_sym_BSLASHvref] = ACTIONS(5872), - [anon_sym_BSLASHVref] = ACTIONS(5872), - [anon_sym_BSLASHautoref] = ACTIONS(5872), - [anon_sym_BSLASHpageref] = ACTIONS(5872), - [anon_sym_BSLASHcref] = ACTIONS(5872), - [anon_sym_BSLASHCref] = ACTIONS(5872), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5874), - [anon_sym_BSLASHnamecref] = ACTIONS(5872), - [anon_sym_BSLASHnameCref] = ACTIONS(5872), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5872), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5872), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5872), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5872), - [anon_sym_BSLASHlabelcref] = ACTIONS(5872), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5872), - [anon_sym_BSLASHcrefrange] = ACTIONS(5872), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCrefrange] = ACTIONS(5872), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5874), - [anon_sym_BSLASHnewlabel] = ACTIONS(5872), - [anon_sym_BSLASHnewcommand] = ACTIONS(5872), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5872), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5872), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5874), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHdef] = ACTIONS(5872), - [anon_sym_BSLASHlet] = ACTIONS(5872), - [anon_sym_BSLASHleft] = ACTIONS(5872), - [anon_sym_BSLASHbig] = ACTIONS(5872), - [anon_sym_BSLASHBig] = ACTIONS(5872), - [anon_sym_BSLASHbigg] = ACTIONS(5872), - [anon_sym_BSLASHBigg] = ACTIONS(5872), - [anon_sym_BSLASHbigl] = ACTIONS(5872), - [anon_sym_BSLASHBigl] = ACTIONS(5872), - [anon_sym_BSLASHbiggl] = ACTIONS(5872), - [anon_sym_BSLASHBiggl] = ACTIONS(5872), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5872), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5872), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5872), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5872), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5872), - [anon_sym_BSLASHgls] = ACTIONS(5872), - [anon_sym_BSLASHGls] = ACTIONS(5872), - [anon_sym_BSLASHGLS] = ACTIONS(5872), - [anon_sym_BSLASHglspl] = ACTIONS(5872), - [anon_sym_BSLASHGlspl] = ACTIONS(5872), - [anon_sym_BSLASHGLSpl] = ACTIONS(5872), - [anon_sym_BSLASHglsdisp] = ACTIONS(5872), - [anon_sym_BSLASHglslink] = ACTIONS(5872), - [anon_sym_BSLASHglstext] = ACTIONS(5872), - [anon_sym_BSLASHGlstext] = ACTIONS(5872), - [anon_sym_BSLASHGLStext] = ACTIONS(5872), - [anon_sym_BSLASHglsfirst] = ACTIONS(5872), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5872), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5872), - [anon_sym_BSLASHglsplural] = ACTIONS(5872), - [anon_sym_BSLASHGlsplural] = ACTIONS(5872), - [anon_sym_BSLASHGLSplural] = ACTIONS(5872), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHglsname] = ACTIONS(5872), - [anon_sym_BSLASHGlsname] = ACTIONS(5872), - [anon_sym_BSLASHGLSname] = ACTIONS(5872), - [anon_sym_BSLASHglssymbol] = ACTIONS(5872), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5872), - [anon_sym_BSLASHglsdesc] = ACTIONS(5872), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5872), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5872), - [anon_sym_BSLASHglsuseri] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5872), - [anon_sym_BSLASHglsuserii] = ACTIONS(5872), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5872), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5872), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5872), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5872), - [anon_sym_BSLASHglsuserv] = ACTIONS(5872), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5872), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5872), - [anon_sym_BSLASHglsuservi] = ACTIONS(5872), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5872), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5872), - [anon_sym_BSLASHnewacronym] = ACTIONS(5872), - [anon_sym_BSLASHacrshort] = ACTIONS(5872), - [anon_sym_BSLASHAcrshort] = ACTIONS(5872), - [anon_sym_BSLASHACRshort] = ACTIONS(5872), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5872), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5872), - [anon_sym_BSLASHacrlong] = ACTIONS(5872), - [anon_sym_BSLASHAcrlong] = ACTIONS(5872), - [anon_sym_BSLASHACRlong] = ACTIONS(5872), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5872), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5872), - [anon_sym_BSLASHacrfull] = ACTIONS(5872), - [anon_sym_BSLASHAcrfull] = ACTIONS(5872), - [anon_sym_BSLASHACRfull] = ACTIONS(5872), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5872), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5872), - [anon_sym_BSLASHacs] = ACTIONS(5872), - [anon_sym_BSLASHAcs] = ACTIONS(5872), - [anon_sym_BSLASHacsp] = ACTIONS(5872), - [anon_sym_BSLASHAcsp] = ACTIONS(5872), - [anon_sym_BSLASHacl] = ACTIONS(5872), - [anon_sym_BSLASHAcl] = ACTIONS(5872), - [anon_sym_BSLASHaclp] = ACTIONS(5872), - [anon_sym_BSLASHAclp] = ACTIONS(5872), - [anon_sym_BSLASHacf] = ACTIONS(5872), - [anon_sym_BSLASHAcf] = ACTIONS(5872), - [anon_sym_BSLASHacfp] = ACTIONS(5872), - [anon_sym_BSLASHAcfp] = ACTIONS(5872), - [anon_sym_BSLASHac] = ACTIONS(5872), - [anon_sym_BSLASHAc] = ACTIONS(5872), - [anon_sym_BSLASHacp] = ACTIONS(5872), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5872), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5872), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5872), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5872), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5872), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5872), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5872), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5874), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5872), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5874), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5872), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5872), - [anon_sym_BSLASHcolor] = ACTIONS(5872), - [anon_sym_BSLASHcolorbox] = ACTIONS(5872), - [anon_sym_BSLASHtextcolor] = ACTIONS(5872), - [anon_sym_BSLASHpagecolor] = ACTIONS(5872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5872), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5872), - [anon_sym_BSLASHtext] = ACTIONS(5872), - [anon_sym_BSLASHintertext] = ACTIONS(5872), - [anon_sym_shortintertext] = ACTIONS(5872), - }, - [743] = { - [sym_curly_group] = STATE(1030), - [aux_sym_generic_command_repeat1] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(5978), - [sym_command_name] = ACTIONS(5976), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5976), - [anon_sym_LBRACK] = ACTIONS(5978), - [anon_sym_RBRACK] = ACTIONS(5978), - [anon_sym_COMMA] = ACTIONS(5978), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LPAREN] = ACTIONS(5978), - [anon_sym_RPAREN] = ACTIONS(5978), - [anon_sym_BSLASHpart] = ACTIONS(5976), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddpart] = ACTIONS(5976), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5978), - [anon_sym_BSLASHchapter] = ACTIONS(5976), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddchap] = ACTIONS(5976), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsection] = ACTIONS(5976), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddsec] = ACTIONS(5976), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubsection] = ACTIONS(5976), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5976), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHparagraph] = ACTIONS(5976), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5976), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5978), - [anon_sym_BSLASHitem] = ACTIONS(5976), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5978), - [anon_sym_LBRACE] = ACTIONS(6629), - [anon_sym_RBRACE] = ACTIONS(5978), - [sym_word] = ACTIONS(5976), - [sym_placeholder] = ACTIONS(5978), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_STAR] = ACTIONS(5978), - [anon_sym_SLASH] = ACTIONS(5978), - [anon_sym_LT] = ACTIONS(5976), - [anon_sym_GT] = ACTIONS(5976), - [anon_sym_BANG] = ACTIONS(5976), - [anon_sym_PIPE] = ACTIONS(5976), - [anon_sym_COLON] = ACTIONS(5976), - [anon_sym_SQUOTE] = ACTIONS(5976), - [anon_sym__] = ACTIONS(5978), - [anon_sym_CARET] = ACTIONS(5978), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5978), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5978), - [anon_sym_DOLLAR] = ACTIONS(5976), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5978), - [anon_sym_BSLASHbegin] = ACTIONS(5976), - [anon_sym_BSLASHtitle] = ACTIONS(5976), - [anon_sym_BSLASHauthor] = ACTIONS(5976), - [anon_sym_BSLASHusepackage] = ACTIONS(5976), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5976), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5976), - [anon_sym_BSLASHinclude] = ACTIONS(5976), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5976), - [anon_sym_BSLASHinput] = ACTIONS(5976), - [anon_sym_BSLASHsubfile] = ACTIONS(5976), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5976), - [anon_sym_BSLASHbibliography] = ACTIONS(5976), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5976), - [anon_sym_BSLASHincludesvg] = ACTIONS(5976), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5976), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5976), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5976), - [anon_sym_BSLASHimport] = ACTIONS(5976), - [anon_sym_BSLASHsubimport] = ACTIONS(5976), - [anon_sym_BSLASHinputfrom] = ACTIONS(5976), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5976), - [anon_sym_BSLASHincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHcaption] = ACTIONS(5976), - [anon_sym_BSLASHcite] = ACTIONS(5976), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCite] = ACTIONS(5976), - [anon_sym_BSLASHnocite] = ACTIONS(5976), - [anon_sym_BSLASHcitet] = ACTIONS(5976), - [anon_sym_BSLASHcitep] = ACTIONS(5976), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteauthor] = ACTIONS(5976), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5976), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitetitle] = ACTIONS(5976), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteyear] = ACTIONS(5976), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitedate] = ACTIONS(5976), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteurl] = ACTIONS(5976), - [anon_sym_BSLASHfullcite] = ACTIONS(5976), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5976), - [anon_sym_BSLASHcitealt] = ACTIONS(5976), - [anon_sym_BSLASHcitealp] = ACTIONS(5976), - [anon_sym_BSLASHcitetext] = ACTIONS(5976), - [anon_sym_BSLASHparencite] = ACTIONS(5976), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHParencite] = ACTIONS(5976), - [anon_sym_BSLASHfootcite] = ACTIONS(5976), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5976), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5976), - [anon_sym_BSLASHtextcite] = ACTIONS(5976), - [anon_sym_BSLASHTextcite] = ACTIONS(5976), - [anon_sym_BSLASHsmartcite] = ACTIONS(5976), - [anon_sym_BSLASHSmartcite] = ACTIONS(5976), - [anon_sym_BSLASHsupercite] = ACTIONS(5976), - [anon_sym_BSLASHautocite] = ACTIONS(5976), - [anon_sym_BSLASHAutocite] = ACTIONS(5976), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHvolcite] = ACTIONS(5976), - [anon_sym_BSLASHVolcite] = ACTIONS(5976), - [anon_sym_BSLASHpvolcite] = ACTIONS(5976), - [anon_sym_BSLASHPvolcite] = ACTIONS(5976), - [anon_sym_BSLASHfvolcite] = ACTIONS(5976), - [anon_sym_BSLASHftvolcite] = ACTIONS(5976), - [anon_sym_BSLASHsvolcite] = ACTIONS(5976), - [anon_sym_BSLASHSvolcite] = ACTIONS(5976), - [anon_sym_BSLASHtvolcite] = ACTIONS(5976), - [anon_sym_BSLASHTvolcite] = ACTIONS(5976), - [anon_sym_BSLASHavolcite] = ACTIONS(5976), - [anon_sym_BSLASHAvolcite] = ACTIONS(5976), - [anon_sym_BSLASHnotecite] = ACTIONS(5976), - [anon_sym_BSLASHNotecite] = ACTIONS(5976), - [anon_sym_BSLASHpnotecite] = ACTIONS(5976), - [anon_sym_BSLASHPnotecite] = ACTIONS(5976), - [anon_sym_BSLASHfnotecite] = ACTIONS(5976), - [anon_sym_BSLASHlabel] = ACTIONS(5976), - [anon_sym_BSLASHref] = ACTIONS(5976), - [anon_sym_BSLASHeqref] = ACTIONS(5976), - [anon_sym_BSLASHvref] = ACTIONS(5976), - [anon_sym_BSLASHVref] = ACTIONS(5976), - [anon_sym_BSLASHautoref] = ACTIONS(5976), - [anon_sym_BSLASHpageref] = ACTIONS(5976), - [anon_sym_BSLASHcref] = ACTIONS(5976), - [anon_sym_BSLASHCref] = ACTIONS(5976), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnameCref] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHlabelcref] = ACTIONS(5976), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCrefrange] = ACTIONS(5976), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnewlabel] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5976), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5976), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5978), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHdef] = ACTIONS(5976), - [anon_sym_BSLASHlet] = ACTIONS(5976), - [anon_sym_BSLASHleft] = ACTIONS(5976), - [anon_sym_BSLASHbig] = ACTIONS(5976), - [anon_sym_BSLASHBig] = ACTIONS(5976), - [anon_sym_BSLASHbigg] = ACTIONS(5976), - [anon_sym_BSLASHBigg] = ACTIONS(5976), - [anon_sym_BSLASHbigl] = ACTIONS(5976), - [anon_sym_BSLASHBigl] = ACTIONS(5976), - [anon_sym_BSLASHbiggl] = ACTIONS(5976), - [anon_sym_BSLASHBiggl] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5976), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5976), - [anon_sym_BSLASHgls] = ACTIONS(5976), - [anon_sym_BSLASHGls] = ACTIONS(5976), - [anon_sym_BSLASHGLS] = ACTIONS(5976), - [anon_sym_BSLASHglspl] = ACTIONS(5976), - [anon_sym_BSLASHGlspl] = ACTIONS(5976), - [anon_sym_BSLASHGLSpl] = ACTIONS(5976), - [anon_sym_BSLASHglsdisp] = ACTIONS(5976), - [anon_sym_BSLASHglslink] = ACTIONS(5976), - [anon_sym_BSLASHglstext] = ACTIONS(5976), - [anon_sym_BSLASHGlstext] = ACTIONS(5976), - [anon_sym_BSLASHGLStext] = ACTIONS(5976), - [anon_sym_BSLASHglsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5976), - [anon_sym_BSLASHglsplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSplural] = ACTIONS(5976), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHglsname] = ACTIONS(5976), - [anon_sym_BSLASHGlsname] = ACTIONS(5976), - [anon_sym_BSLASHGLSname] = ACTIONS(5976), - [anon_sym_BSLASHglssymbol] = ACTIONS(5976), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5976), - [anon_sym_BSLASHglsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5976), - [anon_sym_BSLASHglsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5976), - [anon_sym_BSLASHglsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5976), - [anon_sym_BSLASHglsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5976), - [anon_sym_BSLASHglsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5976), - [anon_sym_BSLASHnewacronym] = ACTIONS(5976), - [anon_sym_BSLASHacrshort] = ACTIONS(5976), - [anon_sym_BSLASHAcrshort] = ACTIONS(5976), - [anon_sym_BSLASHACRshort] = ACTIONS(5976), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5976), - [anon_sym_BSLASHacrlong] = ACTIONS(5976), - [anon_sym_BSLASHAcrlong] = ACTIONS(5976), - [anon_sym_BSLASHACRlong] = ACTIONS(5976), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5976), - [anon_sym_BSLASHacrfull] = ACTIONS(5976), - [anon_sym_BSLASHAcrfull] = ACTIONS(5976), - [anon_sym_BSLASHACRfull] = ACTIONS(5976), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5976), - [anon_sym_BSLASHacs] = ACTIONS(5976), - [anon_sym_BSLASHAcs] = ACTIONS(5976), - [anon_sym_BSLASHacsp] = ACTIONS(5976), - [anon_sym_BSLASHAcsp] = ACTIONS(5976), - [anon_sym_BSLASHacl] = ACTIONS(5976), - [anon_sym_BSLASHAcl] = ACTIONS(5976), - [anon_sym_BSLASHaclp] = ACTIONS(5976), - [anon_sym_BSLASHAclp] = ACTIONS(5976), - [anon_sym_BSLASHacf] = ACTIONS(5976), - [anon_sym_BSLASHAcf] = ACTIONS(5976), - [anon_sym_BSLASHacfp] = ACTIONS(5976), - [anon_sym_BSLASHAcfp] = ACTIONS(5976), - [anon_sym_BSLASHac] = ACTIONS(5976), - [anon_sym_BSLASHAc] = ACTIONS(5976), - [anon_sym_BSLASHacp] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5976), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5976), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5976), - [anon_sym_BSLASHcolor] = ACTIONS(5976), - [anon_sym_BSLASHcolorbox] = ACTIONS(5976), - [anon_sym_BSLASHtextcolor] = ACTIONS(5976), - [anon_sym_BSLASHpagecolor] = ACTIONS(5976), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5976), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5976), - [anon_sym_BSLASHtext] = ACTIONS(5976), - [anon_sym_BSLASHintertext] = ACTIONS(5976), - [anon_sym_shortintertext] = ACTIONS(5976), - }, - [744] = { - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(733), - [aux_sym__section_repeat6] = STATE(733), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5960), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHitem] = ACTIONS(5960), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5962), - [anon_sym_LBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [745] = { - [sym__section_declaration] = STATE(201), - [sym_section] = STATE(650), - [aux_sym__section_repeat3] = STATE(650), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(702), - [anon_sym_BSLASHsection_STAR] = ACTIONS(704), - [anon_sym_BSLASHaddsec] = ACTIONS(702), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(704), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHend] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [746] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [747] = { - [sym__chapter_declaration] = STATE(195), - [sym_chapter] = STATE(651), - [aux_sym__section_repeat2] = STATE(651), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(698), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(700), - [anon_sym_BSLASHaddchap] = ACTIONS(698), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(700), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHend] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [748] = { - [sym__part_declaration] = STATE(183), - [sym_part] = STATE(652), - [aux_sym__section_repeat1] = STATE(652), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(694), - [anon_sym_BSLASHpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHaddpart] = ACTIONS(694), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(696), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHend] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [749] = { - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(737), - [aux_sym__section_repeat2] = STATE(737), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [750] = { - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(736), - [aux_sym__section_repeat3] = STATE(736), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [751] = { - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(735), - [aux_sym__section_repeat4] = STATE(735), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [752] = { - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(734), - [aux_sym__section_repeat5] = STATE(734), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [753] = { - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(733), - [aux_sym__section_repeat6] = STATE(733), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [754] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [755] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(2256), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_RBRACK] = ACTIONS(2258), - [anon_sym_COMMA] = ACTIONS(2258), - [anon_sym_EQ] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_BSLASHpart] = ACTIONS(2256), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddpart] = ACTIONS(2256), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHchapter] = ACTIONS(2256), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddchap] = ACTIONS(2256), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsection] = ACTIONS(2256), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddsec] = ACTIONS(2256), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHparagraph] = ACTIONS(2256), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2256), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(2258), - [sym_word] = ACTIONS(2256), - [sym_placeholder] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2256), - [anon_sym_GT] = ACTIONS(2256), - [anon_sym_BANG] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym_SQUOTE] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2258), - [anon_sym_CARET] = ACTIONS(2258), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2258), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2258), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2256), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2258), - [anon_sym_BSLASHbegin] = ACTIONS(2256), - [anon_sym_BSLASHtitle] = ACTIONS(2256), - [anon_sym_BSLASHauthor] = ACTIONS(2256), - [anon_sym_BSLASHusepackage] = ACTIONS(2256), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2256), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2256), - [anon_sym_BSLASHinclude] = ACTIONS(2256), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2256), - [anon_sym_BSLASHinput] = ACTIONS(2256), - [anon_sym_BSLASHsubfile] = ACTIONS(2256), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2256), - [anon_sym_BSLASHbibliography] = ACTIONS(2256), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2256), - [anon_sym_BSLASHincludesvg] = ACTIONS(2256), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2256), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2256), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2256), - [anon_sym_BSLASHimport] = ACTIONS(2256), - [anon_sym_BSLASHsubimport] = ACTIONS(2256), - [anon_sym_BSLASHinputfrom] = ACTIONS(2256), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2256), - [anon_sym_BSLASHincludefrom] = ACTIONS(2256), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2256), - [anon_sym_BSLASHcaption] = ACTIONS(2256), - [anon_sym_BSLASHcite] = ACTIONS(2256), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCite] = ACTIONS(2256), - [anon_sym_BSLASHnocite] = ACTIONS(2256), - [anon_sym_BSLASHcitet] = ACTIONS(2256), - [anon_sym_BSLASHcitep] = ACTIONS(2256), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteauthor] = ACTIONS(2256), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2256), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitetitle] = ACTIONS(2256), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteyear] = ACTIONS(2256), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitedate] = ACTIONS(2256), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteurl] = ACTIONS(2256), - [anon_sym_BSLASHfullcite] = ACTIONS(2256), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2256), - [anon_sym_BSLASHcitealt] = ACTIONS(2256), - [anon_sym_BSLASHcitealp] = ACTIONS(2256), - [anon_sym_BSLASHcitetext] = ACTIONS(2256), - [anon_sym_BSLASHparencite] = ACTIONS(2256), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHParencite] = ACTIONS(2256), - [anon_sym_BSLASHfootcite] = ACTIONS(2256), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2256), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2256), - [anon_sym_BSLASHtextcite] = ACTIONS(2256), - [anon_sym_BSLASHTextcite] = ACTIONS(2256), - [anon_sym_BSLASHsmartcite] = ACTIONS(2256), - [anon_sym_BSLASHSmartcite] = ACTIONS(2256), - [anon_sym_BSLASHsupercite] = ACTIONS(2256), - [anon_sym_BSLASHautocite] = ACTIONS(2256), - [anon_sym_BSLASHAutocite] = ACTIONS(2256), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHvolcite] = ACTIONS(2256), - [anon_sym_BSLASHVolcite] = ACTIONS(2256), - [anon_sym_BSLASHpvolcite] = ACTIONS(2256), - [anon_sym_BSLASHPvolcite] = ACTIONS(2256), - [anon_sym_BSLASHfvolcite] = ACTIONS(2256), - [anon_sym_BSLASHftvolcite] = ACTIONS(2256), - [anon_sym_BSLASHsvolcite] = ACTIONS(2256), - [anon_sym_BSLASHSvolcite] = ACTIONS(2256), - [anon_sym_BSLASHtvolcite] = ACTIONS(2256), - [anon_sym_BSLASHTvolcite] = ACTIONS(2256), - [anon_sym_BSLASHavolcite] = ACTIONS(2256), - [anon_sym_BSLASHAvolcite] = ACTIONS(2256), - [anon_sym_BSLASHnotecite] = ACTIONS(2256), - [anon_sym_BSLASHNotecite] = ACTIONS(2256), - [anon_sym_BSLASHpnotecite] = ACTIONS(2256), - [anon_sym_BSLASHPnotecite] = ACTIONS(2256), - [anon_sym_BSLASHfnotecite] = ACTIONS(2256), - [anon_sym_BSLASHlabel] = ACTIONS(2256), - [anon_sym_BSLASHref] = ACTIONS(2256), - [anon_sym_BSLASHeqref] = ACTIONS(2256), - [anon_sym_BSLASHvref] = ACTIONS(2256), - [anon_sym_BSLASHVref] = ACTIONS(2256), - [anon_sym_BSLASHautoref] = ACTIONS(2256), - [anon_sym_BSLASHpageref] = ACTIONS(2256), - [anon_sym_BSLASHcref] = ACTIONS(2256), - [anon_sym_BSLASHCref] = ACTIONS(2256), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2258), - [anon_sym_BSLASHnamecref] = ACTIONS(2256), - [anon_sym_BSLASHnameCref] = ACTIONS(2256), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2256), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2256), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2256), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2256), - [anon_sym_BSLASHlabelcref] = ACTIONS(2256), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2256), - [anon_sym_BSLASHcrefrange] = ACTIONS(2256), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCrefrange] = ACTIONS(2256), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2258), - [anon_sym_BSLASHnewlabel] = ACTIONS(2256), - [anon_sym_BSLASHnewcommand] = ACTIONS(2256), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2256), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2256), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2258), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHdef] = ACTIONS(2256), - [anon_sym_BSLASHlet] = ACTIONS(2256), - [anon_sym_BSLASHleft] = ACTIONS(2256), - [anon_sym_BSLASHbig] = ACTIONS(2256), - [anon_sym_BSLASHBig] = ACTIONS(2256), - [anon_sym_BSLASHbigg] = ACTIONS(2256), - [anon_sym_BSLASHBigg] = ACTIONS(2256), - [anon_sym_BSLASHbigl] = ACTIONS(2256), - [anon_sym_BSLASHBigl] = ACTIONS(2256), - [anon_sym_BSLASHbiggl] = ACTIONS(2256), - [anon_sym_BSLASHBiggl] = ACTIONS(2256), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2256), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2256), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2256), - [anon_sym_BSLASHgls] = ACTIONS(2256), - [anon_sym_BSLASHGls] = ACTIONS(2256), - [anon_sym_BSLASHGLS] = ACTIONS(2256), - [anon_sym_BSLASHglspl] = ACTIONS(2256), - [anon_sym_BSLASHGlspl] = ACTIONS(2256), - [anon_sym_BSLASHGLSpl] = ACTIONS(2256), - [anon_sym_BSLASHglsdisp] = ACTIONS(2256), - [anon_sym_BSLASHglslink] = ACTIONS(2256), - [anon_sym_BSLASHglstext] = ACTIONS(2256), - [anon_sym_BSLASHGlstext] = ACTIONS(2256), - [anon_sym_BSLASHGLStext] = ACTIONS(2256), - [anon_sym_BSLASHglsfirst] = ACTIONS(2256), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2256), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2256), - [anon_sym_BSLASHglsplural] = ACTIONS(2256), - [anon_sym_BSLASHGlsplural] = ACTIONS(2256), - [anon_sym_BSLASHGLSplural] = ACTIONS(2256), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHglsname] = ACTIONS(2256), - [anon_sym_BSLASHGlsname] = ACTIONS(2256), - [anon_sym_BSLASHGLSname] = ACTIONS(2256), - [anon_sym_BSLASHglssymbol] = ACTIONS(2256), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2256), - [anon_sym_BSLASHglsdesc] = ACTIONS(2256), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2256), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2256), - [anon_sym_BSLASHglsuseri] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2256), - [anon_sym_BSLASHglsuserii] = ACTIONS(2256), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2256), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2256), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2256), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2256), - [anon_sym_BSLASHglsuserv] = ACTIONS(2256), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2256), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2256), - [anon_sym_BSLASHglsuservi] = ACTIONS(2256), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2256), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2256), - [anon_sym_BSLASHnewacronym] = ACTIONS(2256), - [anon_sym_BSLASHacrshort] = ACTIONS(2256), - [anon_sym_BSLASHAcrshort] = ACTIONS(2256), - [anon_sym_BSLASHACRshort] = ACTIONS(2256), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2256), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2256), - [anon_sym_BSLASHacrlong] = ACTIONS(2256), - [anon_sym_BSLASHAcrlong] = ACTIONS(2256), - [anon_sym_BSLASHACRlong] = ACTIONS(2256), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2256), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2256), - [anon_sym_BSLASHacrfull] = ACTIONS(2256), - [anon_sym_BSLASHAcrfull] = ACTIONS(2256), - [anon_sym_BSLASHACRfull] = ACTIONS(2256), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2256), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2256), - [anon_sym_BSLASHacs] = ACTIONS(2256), - [anon_sym_BSLASHAcs] = ACTIONS(2256), - [anon_sym_BSLASHacsp] = ACTIONS(2256), - [anon_sym_BSLASHAcsp] = ACTIONS(2256), - [anon_sym_BSLASHacl] = ACTIONS(2256), - [anon_sym_BSLASHAcl] = ACTIONS(2256), - [anon_sym_BSLASHaclp] = ACTIONS(2256), - [anon_sym_BSLASHAclp] = ACTIONS(2256), - [anon_sym_BSLASHacf] = ACTIONS(2256), - [anon_sym_BSLASHAcf] = ACTIONS(2256), - [anon_sym_BSLASHacfp] = ACTIONS(2256), - [anon_sym_BSLASHAcfp] = ACTIONS(2256), - [anon_sym_BSLASHac] = ACTIONS(2256), - [anon_sym_BSLASHAc] = ACTIONS(2256), - [anon_sym_BSLASHacp] = ACTIONS(2256), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2256), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2256), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2256), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2256), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2256), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2256), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2256), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2258), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2256), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2258), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2256), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2256), - [anon_sym_BSLASHcolor] = ACTIONS(2256), - [anon_sym_BSLASHcolorbox] = ACTIONS(2256), - [anon_sym_BSLASHtextcolor] = ACTIONS(2256), - [anon_sym_BSLASHpagecolor] = ACTIONS(2256), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2256), - [anon_sym_BSLASHtext] = ACTIONS(2256), - [anon_sym_BSLASHintertext] = ACTIONS(2256), - [anon_sym_shortintertext] = ACTIONS(2256), - }, - [756] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(2230), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2230), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(2232), - [sym_word] = ACTIONS(2230), - [sym_placeholder] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_COLON] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym__] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2232), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2232), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2232), - [anon_sym_BSLASHbegin] = ACTIONS(2230), - [anon_sym_BSLASHtitle] = ACTIONS(2230), - [anon_sym_BSLASHauthor] = ACTIONS(2230), - [anon_sym_BSLASHusepackage] = ACTIONS(2230), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2230), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2230), - [anon_sym_BSLASHinclude] = ACTIONS(2230), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2230), - [anon_sym_BSLASHinput] = ACTIONS(2230), - [anon_sym_BSLASHsubfile] = ACTIONS(2230), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2230), - [anon_sym_BSLASHbibliography] = ACTIONS(2230), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2230), - [anon_sym_BSLASHincludesvg] = ACTIONS(2230), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2230), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2230), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2230), - [anon_sym_BSLASHimport] = ACTIONS(2230), - [anon_sym_BSLASHsubimport] = ACTIONS(2230), - [anon_sym_BSLASHinputfrom] = ACTIONS(2230), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2230), - [anon_sym_BSLASHincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHcaption] = ACTIONS(2230), - [anon_sym_BSLASHcite] = ACTIONS(2230), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCite] = ACTIONS(2230), - [anon_sym_BSLASHnocite] = ACTIONS(2230), - [anon_sym_BSLASHcitet] = ACTIONS(2230), - [anon_sym_BSLASHcitep] = ACTIONS(2230), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteauthor] = ACTIONS(2230), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2230), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitetitle] = ACTIONS(2230), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteyear] = ACTIONS(2230), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitedate] = ACTIONS(2230), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteurl] = ACTIONS(2230), - [anon_sym_BSLASHfullcite] = ACTIONS(2230), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2230), - [anon_sym_BSLASHcitealt] = ACTIONS(2230), - [anon_sym_BSLASHcitealp] = ACTIONS(2230), - [anon_sym_BSLASHcitetext] = ACTIONS(2230), - [anon_sym_BSLASHparencite] = ACTIONS(2230), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHParencite] = ACTIONS(2230), - [anon_sym_BSLASHfootcite] = ACTIONS(2230), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2230), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2230), - [anon_sym_BSLASHtextcite] = ACTIONS(2230), - [anon_sym_BSLASHTextcite] = ACTIONS(2230), - [anon_sym_BSLASHsmartcite] = ACTIONS(2230), - [anon_sym_BSLASHSmartcite] = ACTIONS(2230), - [anon_sym_BSLASHsupercite] = ACTIONS(2230), - [anon_sym_BSLASHautocite] = ACTIONS(2230), - [anon_sym_BSLASHAutocite] = ACTIONS(2230), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHvolcite] = ACTIONS(2230), - [anon_sym_BSLASHVolcite] = ACTIONS(2230), - [anon_sym_BSLASHpvolcite] = ACTIONS(2230), - [anon_sym_BSLASHPvolcite] = ACTIONS(2230), - [anon_sym_BSLASHfvolcite] = ACTIONS(2230), - [anon_sym_BSLASHftvolcite] = ACTIONS(2230), - [anon_sym_BSLASHsvolcite] = ACTIONS(2230), - [anon_sym_BSLASHSvolcite] = ACTIONS(2230), - [anon_sym_BSLASHtvolcite] = ACTIONS(2230), - [anon_sym_BSLASHTvolcite] = ACTIONS(2230), - [anon_sym_BSLASHavolcite] = ACTIONS(2230), - [anon_sym_BSLASHAvolcite] = ACTIONS(2230), - [anon_sym_BSLASHnotecite] = ACTIONS(2230), - [anon_sym_BSLASHNotecite] = ACTIONS(2230), - [anon_sym_BSLASHpnotecite] = ACTIONS(2230), - [anon_sym_BSLASHPnotecite] = ACTIONS(2230), - [anon_sym_BSLASHfnotecite] = ACTIONS(2230), - [anon_sym_BSLASHlabel] = ACTIONS(2230), - [anon_sym_BSLASHref] = ACTIONS(2230), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [anon_sym_BSLASHvref] = ACTIONS(2230), - [anon_sym_BSLASHVref] = ACTIONS(2230), - [anon_sym_BSLASHautoref] = ACTIONS(2230), - [anon_sym_BSLASHpageref] = ACTIONS(2230), - [anon_sym_BSLASHcref] = ACTIONS(2230), - [anon_sym_BSLASHCref] = ACTIONS(2230), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnameCref] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHlabelcref] = ACTIONS(2230), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCrefrange] = ACTIONS(2230), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2230), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2230), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2232), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHdef] = ACTIONS(2230), - [anon_sym_BSLASHlet] = ACTIONS(2230), - [anon_sym_BSLASHleft] = ACTIONS(2230), - [anon_sym_BSLASHbig] = ACTIONS(2230), - [anon_sym_BSLASHBig] = ACTIONS(2230), - [anon_sym_BSLASHbigg] = ACTIONS(2230), - [anon_sym_BSLASHBigg] = ACTIONS(2230), - [anon_sym_BSLASHbigl] = ACTIONS(2230), - [anon_sym_BSLASHBigl] = ACTIONS(2230), - [anon_sym_BSLASHbiggl] = ACTIONS(2230), - [anon_sym_BSLASHBiggl] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2230), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2230), - [anon_sym_BSLASHgls] = ACTIONS(2230), - [anon_sym_BSLASHGls] = ACTIONS(2230), - [anon_sym_BSLASHGLS] = ACTIONS(2230), - [anon_sym_BSLASHglspl] = ACTIONS(2230), - [anon_sym_BSLASHGlspl] = ACTIONS(2230), - [anon_sym_BSLASHGLSpl] = ACTIONS(2230), - [anon_sym_BSLASHglsdisp] = ACTIONS(2230), - [anon_sym_BSLASHglslink] = ACTIONS(2230), - [anon_sym_BSLASHglstext] = ACTIONS(2230), - [anon_sym_BSLASHGlstext] = ACTIONS(2230), - [anon_sym_BSLASHGLStext] = ACTIONS(2230), - [anon_sym_BSLASHglsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2230), - [anon_sym_BSLASHglsplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSplural] = ACTIONS(2230), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHglsname] = ACTIONS(2230), - [anon_sym_BSLASHGlsname] = ACTIONS(2230), - [anon_sym_BSLASHGLSname] = ACTIONS(2230), - [anon_sym_BSLASHglssymbol] = ACTIONS(2230), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2230), - [anon_sym_BSLASHglsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2230), - [anon_sym_BSLASHglsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2230), - [anon_sym_BSLASHglsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2230), - [anon_sym_BSLASHglsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2230), - [anon_sym_BSLASHglsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2230), - [anon_sym_BSLASHnewacronym] = ACTIONS(2230), - [anon_sym_BSLASHacrshort] = ACTIONS(2230), - [anon_sym_BSLASHAcrshort] = ACTIONS(2230), - [anon_sym_BSLASHACRshort] = ACTIONS(2230), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2230), - [anon_sym_BSLASHacrlong] = ACTIONS(2230), - [anon_sym_BSLASHAcrlong] = ACTIONS(2230), - [anon_sym_BSLASHACRlong] = ACTIONS(2230), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2230), - [anon_sym_BSLASHacrfull] = ACTIONS(2230), - [anon_sym_BSLASHAcrfull] = ACTIONS(2230), - [anon_sym_BSLASHACRfull] = ACTIONS(2230), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2230), - [anon_sym_BSLASHacs] = ACTIONS(2230), - [anon_sym_BSLASHAcs] = ACTIONS(2230), - [anon_sym_BSLASHacsp] = ACTIONS(2230), - [anon_sym_BSLASHAcsp] = ACTIONS(2230), - [anon_sym_BSLASHacl] = ACTIONS(2230), - [anon_sym_BSLASHAcl] = ACTIONS(2230), - [anon_sym_BSLASHaclp] = ACTIONS(2230), - [anon_sym_BSLASHAclp] = ACTIONS(2230), - [anon_sym_BSLASHacf] = ACTIONS(2230), - [anon_sym_BSLASHAcf] = ACTIONS(2230), - [anon_sym_BSLASHacfp] = ACTIONS(2230), - [anon_sym_BSLASHAcfp] = ACTIONS(2230), - [anon_sym_BSLASHac] = ACTIONS(2230), - [anon_sym_BSLASHAc] = ACTIONS(2230), - [anon_sym_BSLASHacp] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2230), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2230), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2230), - [anon_sym_BSLASHcolor] = ACTIONS(2230), - [anon_sym_BSLASHcolorbox] = ACTIONS(2230), - [anon_sym_BSLASHtextcolor] = ACTIONS(2230), - [anon_sym_BSLASHpagecolor] = ACTIONS(2230), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2230), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2230), - [anon_sym_BSLASHtext] = ACTIONS(2230), - [anon_sym_BSLASHintertext] = ACTIONS(2230), - [anon_sym_shortintertext] = ACTIONS(2230), - }, - [757] = { - [sym__section_part] = STATE(1182), - [sym_curly_group] = STATE(1196), - [sym_brack_group] = STATE(2690), - [sym_command_name] = ACTIONS(5856), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5856), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5858), - [anon_sym_COMMA] = ACTIONS(5858), - [anon_sym_EQ] = ACTIONS(5858), - [anon_sym_LPAREN] = ACTIONS(5858), - [anon_sym_RPAREN] = ACTIONS(5858), - [anon_sym_BSLASHpart] = ACTIONS(5856), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddpart] = ACTIONS(5856), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5858), - [anon_sym_BSLASHchapter] = ACTIONS(5856), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddchap] = ACTIONS(5856), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsection] = ACTIONS(5856), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddsec] = ACTIONS(5856), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubsection] = ACTIONS(5856), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5856), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHparagraph] = ACTIONS(5856), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5856), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5858), - [anon_sym_BSLASHitem] = ACTIONS(5856), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5858), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(5856), - [sym_placeholder] = ACTIONS(5858), - [anon_sym_PLUS] = ACTIONS(5858), - [anon_sym_DASH] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(5858), - [anon_sym_SLASH] = ACTIONS(5858), - [anon_sym_LT] = ACTIONS(5856), - [anon_sym_GT] = ACTIONS(5856), - [anon_sym_BANG] = ACTIONS(5856), - [anon_sym_PIPE] = ACTIONS(5856), - [anon_sym_COLON] = ACTIONS(5856), - [anon_sym_SQUOTE] = ACTIONS(5856), - [anon_sym__] = ACTIONS(5858), - [anon_sym_CARET] = ACTIONS(5858), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5858), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5858), - [anon_sym_DOLLAR] = ACTIONS(5856), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5858), - [anon_sym_BSLASHbegin] = ACTIONS(5856), - [anon_sym_BSLASHend] = ACTIONS(5856), - [anon_sym_BSLASHtitle] = ACTIONS(5856), - [anon_sym_BSLASHauthor] = ACTIONS(5856), - [anon_sym_BSLASHusepackage] = ACTIONS(5856), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5856), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5856), - [anon_sym_BSLASHinclude] = ACTIONS(5856), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5856), - [anon_sym_BSLASHinput] = ACTIONS(5856), - [anon_sym_BSLASHsubfile] = ACTIONS(5856), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5856), - [anon_sym_BSLASHbibliography] = ACTIONS(5856), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5856), - [anon_sym_BSLASHincludesvg] = ACTIONS(5856), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5856), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5856), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5856), - [anon_sym_BSLASHimport] = ACTIONS(5856), - [anon_sym_BSLASHsubimport] = ACTIONS(5856), - [anon_sym_BSLASHinputfrom] = ACTIONS(5856), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5856), - [anon_sym_BSLASHincludefrom] = ACTIONS(5856), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5856), - [anon_sym_BSLASHcaption] = ACTIONS(5856), - [anon_sym_BSLASHcite] = ACTIONS(5856), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCite] = ACTIONS(5856), - [anon_sym_BSLASHnocite] = ACTIONS(5856), - [anon_sym_BSLASHcitet] = ACTIONS(5856), - [anon_sym_BSLASHcitep] = ACTIONS(5856), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteauthor] = ACTIONS(5856), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5856), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitetitle] = ACTIONS(5856), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteyear] = ACTIONS(5856), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitedate] = ACTIONS(5856), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteurl] = ACTIONS(5856), - [anon_sym_BSLASHfullcite] = ACTIONS(5856), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5856), - [anon_sym_BSLASHcitealt] = ACTIONS(5856), - [anon_sym_BSLASHcitealp] = ACTIONS(5856), - [anon_sym_BSLASHcitetext] = ACTIONS(5856), - [anon_sym_BSLASHparencite] = ACTIONS(5856), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHParencite] = ACTIONS(5856), - [anon_sym_BSLASHfootcite] = ACTIONS(5856), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5856), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5856), - [anon_sym_BSLASHtextcite] = ACTIONS(5856), - [anon_sym_BSLASHTextcite] = ACTIONS(5856), - [anon_sym_BSLASHsmartcite] = ACTIONS(5856), - [anon_sym_BSLASHSmartcite] = ACTIONS(5856), - [anon_sym_BSLASHsupercite] = ACTIONS(5856), - [anon_sym_BSLASHautocite] = ACTIONS(5856), - [anon_sym_BSLASHAutocite] = ACTIONS(5856), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHvolcite] = ACTIONS(5856), - [anon_sym_BSLASHVolcite] = ACTIONS(5856), - [anon_sym_BSLASHpvolcite] = ACTIONS(5856), - [anon_sym_BSLASHPvolcite] = ACTIONS(5856), - [anon_sym_BSLASHfvolcite] = ACTIONS(5856), - [anon_sym_BSLASHftvolcite] = ACTIONS(5856), - [anon_sym_BSLASHsvolcite] = ACTIONS(5856), - [anon_sym_BSLASHSvolcite] = ACTIONS(5856), - [anon_sym_BSLASHtvolcite] = ACTIONS(5856), - [anon_sym_BSLASHTvolcite] = ACTIONS(5856), - [anon_sym_BSLASHavolcite] = ACTIONS(5856), - [anon_sym_BSLASHAvolcite] = ACTIONS(5856), - [anon_sym_BSLASHnotecite] = ACTIONS(5856), - [anon_sym_BSLASHNotecite] = ACTIONS(5856), - [anon_sym_BSLASHpnotecite] = ACTIONS(5856), - [anon_sym_BSLASHPnotecite] = ACTIONS(5856), - [anon_sym_BSLASHfnotecite] = ACTIONS(5856), - [anon_sym_BSLASHlabel] = ACTIONS(5856), - [anon_sym_BSLASHref] = ACTIONS(5856), - [anon_sym_BSLASHeqref] = ACTIONS(5856), - [anon_sym_BSLASHvref] = ACTIONS(5856), - [anon_sym_BSLASHVref] = ACTIONS(5856), - [anon_sym_BSLASHautoref] = ACTIONS(5856), - [anon_sym_BSLASHpageref] = ACTIONS(5856), - [anon_sym_BSLASHcref] = ACTIONS(5856), - [anon_sym_BSLASHCref] = ACTIONS(5856), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5858), - [anon_sym_BSLASHnamecref] = ACTIONS(5856), - [anon_sym_BSLASHnameCref] = ACTIONS(5856), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5856), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5856), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5856), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5856), - [anon_sym_BSLASHlabelcref] = ACTIONS(5856), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5856), - [anon_sym_BSLASHcrefrange] = ACTIONS(5856), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCrefrange] = ACTIONS(5856), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5858), - [anon_sym_BSLASHnewlabel] = ACTIONS(5856), - [anon_sym_BSLASHnewcommand] = ACTIONS(5856), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5856), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5856), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5858), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHdef] = ACTIONS(5856), - [anon_sym_BSLASHlet] = ACTIONS(5856), - [anon_sym_BSLASHleft] = ACTIONS(5856), - [anon_sym_BSLASHbig] = ACTIONS(5856), - [anon_sym_BSLASHBig] = ACTIONS(5856), - [anon_sym_BSLASHbigg] = ACTIONS(5856), - [anon_sym_BSLASHBigg] = ACTIONS(5856), - [anon_sym_BSLASHbigl] = ACTIONS(5856), - [anon_sym_BSLASHBigl] = ACTIONS(5856), - [anon_sym_BSLASHbiggl] = ACTIONS(5856), - [anon_sym_BSLASHBiggl] = ACTIONS(5856), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5856), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5856), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5856), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5856), - [anon_sym_BSLASHgls] = ACTIONS(5856), - [anon_sym_BSLASHGls] = ACTIONS(5856), - [anon_sym_BSLASHGLS] = ACTIONS(5856), - [anon_sym_BSLASHglspl] = ACTIONS(5856), - [anon_sym_BSLASHGlspl] = ACTIONS(5856), - [anon_sym_BSLASHGLSpl] = ACTIONS(5856), - [anon_sym_BSLASHglsdisp] = ACTIONS(5856), - [anon_sym_BSLASHglslink] = ACTIONS(5856), - [anon_sym_BSLASHglstext] = ACTIONS(5856), - [anon_sym_BSLASHGlstext] = ACTIONS(5856), - [anon_sym_BSLASHGLStext] = ACTIONS(5856), - [anon_sym_BSLASHglsfirst] = ACTIONS(5856), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5856), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5856), - [anon_sym_BSLASHglsplural] = ACTIONS(5856), - [anon_sym_BSLASHGlsplural] = ACTIONS(5856), - [anon_sym_BSLASHGLSplural] = ACTIONS(5856), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHglsname] = ACTIONS(5856), - [anon_sym_BSLASHGlsname] = ACTIONS(5856), - [anon_sym_BSLASHGLSname] = ACTIONS(5856), - [anon_sym_BSLASHglssymbol] = ACTIONS(5856), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5856), - [anon_sym_BSLASHglsdesc] = ACTIONS(5856), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5856), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5856), - [anon_sym_BSLASHglsuseri] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5856), - [anon_sym_BSLASHglsuserii] = ACTIONS(5856), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5856), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5856), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5856), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5856), - [anon_sym_BSLASHglsuserv] = ACTIONS(5856), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5856), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5856), - [anon_sym_BSLASHglsuservi] = ACTIONS(5856), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5856), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5856), - [anon_sym_BSLASHnewacronym] = ACTIONS(5856), - [anon_sym_BSLASHacrshort] = ACTIONS(5856), - [anon_sym_BSLASHAcrshort] = ACTIONS(5856), - [anon_sym_BSLASHACRshort] = ACTIONS(5856), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5856), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5856), - [anon_sym_BSLASHacrlong] = ACTIONS(5856), - [anon_sym_BSLASHAcrlong] = ACTIONS(5856), - [anon_sym_BSLASHACRlong] = ACTIONS(5856), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5856), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5856), - [anon_sym_BSLASHacrfull] = ACTIONS(5856), - [anon_sym_BSLASHAcrfull] = ACTIONS(5856), - [anon_sym_BSLASHACRfull] = ACTIONS(5856), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5856), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5856), - [anon_sym_BSLASHacs] = ACTIONS(5856), - [anon_sym_BSLASHAcs] = ACTIONS(5856), - [anon_sym_BSLASHacsp] = ACTIONS(5856), - [anon_sym_BSLASHAcsp] = ACTIONS(5856), - [anon_sym_BSLASHacl] = ACTIONS(5856), - [anon_sym_BSLASHAcl] = ACTIONS(5856), - [anon_sym_BSLASHaclp] = ACTIONS(5856), - [anon_sym_BSLASHAclp] = ACTIONS(5856), - [anon_sym_BSLASHacf] = ACTIONS(5856), - [anon_sym_BSLASHAcf] = ACTIONS(5856), - [anon_sym_BSLASHacfp] = ACTIONS(5856), - [anon_sym_BSLASHAcfp] = ACTIONS(5856), - [anon_sym_BSLASHac] = ACTIONS(5856), - [anon_sym_BSLASHAc] = ACTIONS(5856), - [anon_sym_BSLASHacp] = ACTIONS(5856), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5856), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5856), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5856), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5856), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5856), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5856), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5856), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5858), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5856), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5858), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5856), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5856), - [anon_sym_BSLASHcolor] = ACTIONS(5856), - [anon_sym_BSLASHcolorbox] = ACTIONS(5856), - [anon_sym_BSLASHtextcolor] = ACTIONS(5856), - [anon_sym_BSLASHpagecolor] = ACTIONS(5856), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5856), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5856), - [anon_sym_BSLASHtext] = ACTIONS(5856), - [anon_sym_BSLASHintertext] = ACTIONS(5856), - [anon_sym_shortintertext] = ACTIONS(5856), - }, - [758] = { - [sym_curly_group] = STATE(895), - [sym_brack_group_text] = STATE(2479), - [ts_builtin_sym_end] = ACTIONS(5991), - [sym_command_name] = ACTIONS(5987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5991), - [anon_sym_COMMA] = ACTIONS(5991), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_LPAREN] = ACTIONS(5991), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_BSLASHpart] = ACTIONS(5987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddpart] = ACTIONS(5987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5991), - [anon_sym_BSLASHchapter] = ACTIONS(5987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddchap] = ACTIONS(5987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsection] = ACTIONS(5987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddsec] = ACTIONS(5987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubsection] = ACTIONS(5987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHparagraph] = ACTIONS(5987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5991), - [anon_sym_BSLASHitem] = ACTIONS(5987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5991), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5991), - [sym_word] = ACTIONS(5987), - [sym_placeholder] = ACTIONS(5991), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_SQUOTE] = ACTIONS(5987), - [anon_sym__] = ACTIONS(5991), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5991), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(5987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5991), - [anon_sym_BSLASHbegin] = ACTIONS(5987), - [anon_sym_BSLASHtitle] = ACTIONS(5987), - [anon_sym_BSLASHauthor] = ACTIONS(5987), - [anon_sym_BSLASHusepackage] = ACTIONS(5987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), - [anon_sym_BSLASHinclude] = ACTIONS(5987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), - [anon_sym_BSLASHinput] = ACTIONS(5987), - [anon_sym_BSLASHsubfile] = ACTIONS(5987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), - [anon_sym_BSLASHbibliography] = ACTIONS(5987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), - [anon_sym_BSLASHincludesvg] = ACTIONS(5987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), - [anon_sym_BSLASHimport] = ACTIONS(5987), - [anon_sym_BSLASHsubimport] = ACTIONS(5987), - [anon_sym_BSLASHinputfrom] = ACTIONS(5987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), - [anon_sym_BSLASHincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHcaption] = ACTIONS(5987), - [anon_sym_BSLASHcite] = ACTIONS(5987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCite] = ACTIONS(5987), - [anon_sym_BSLASHnocite] = ACTIONS(5987), - [anon_sym_BSLASHcitet] = ACTIONS(5987), - [anon_sym_BSLASHcitep] = ACTIONS(5987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteauthor] = ACTIONS(5987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitetitle] = ACTIONS(5987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteyear] = ACTIONS(5987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitedate] = ACTIONS(5987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteurl] = ACTIONS(5987), - [anon_sym_BSLASHfullcite] = ACTIONS(5987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), - [anon_sym_BSLASHcitealt] = ACTIONS(5987), - [anon_sym_BSLASHcitealp] = ACTIONS(5987), - [anon_sym_BSLASHcitetext] = ACTIONS(5987), - [anon_sym_BSLASHparencite] = ACTIONS(5987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHParencite] = ACTIONS(5987), - [anon_sym_BSLASHfootcite] = ACTIONS(5987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), - [anon_sym_BSLASHtextcite] = ACTIONS(5987), - [anon_sym_BSLASHTextcite] = ACTIONS(5987), - [anon_sym_BSLASHsmartcite] = ACTIONS(5987), - [anon_sym_BSLASHSmartcite] = ACTIONS(5987), - [anon_sym_BSLASHsupercite] = ACTIONS(5987), - [anon_sym_BSLASHautocite] = ACTIONS(5987), - [anon_sym_BSLASHAutocite] = ACTIONS(5987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHvolcite] = ACTIONS(5987), - [anon_sym_BSLASHVolcite] = ACTIONS(5987), - [anon_sym_BSLASHpvolcite] = ACTIONS(5987), - [anon_sym_BSLASHPvolcite] = ACTIONS(5987), - [anon_sym_BSLASHfvolcite] = ACTIONS(5987), - [anon_sym_BSLASHftvolcite] = ACTIONS(5987), - [anon_sym_BSLASHsvolcite] = ACTIONS(5987), - [anon_sym_BSLASHSvolcite] = ACTIONS(5987), - [anon_sym_BSLASHtvolcite] = ACTIONS(5987), - [anon_sym_BSLASHTvolcite] = ACTIONS(5987), - [anon_sym_BSLASHavolcite] = ACTIONS(5987), - [anon_sym_BSLASHAvolcite] = ACTIONS(5987), - [anon_sym_BSLASHnotecite] = ACTIONS(5987), - [anon_sym_BSLASHNotecite] = ACTIONS(5987), - [anon_sym_BSLASHpnotecite] = ACTIONS(5987), - [anon_sym_BSLASHPnotecite] = ACTIONS(5987), - [anon_sym_BSLASHfnotecite] = ACTIONS(5987), - [anon_sym_BSLASHlabel] = ACTIONS(5987), - [anon_sym_BSLASHref] = ACTIONS(5987), - [anon_sym_BSLASHeqref] = ACTIONS(5987), - [anon_sym_BSLASHvref] = ACTIONS(5987), - [anon_sym_BSLASHVref] = ACTIONS(5987), - [anon_sym_BSLASHautoref] = ACTIONS(5987), - [anon_sym_BSLASHpageref] = ACTIONS(5987), - [anon_sym_BSLASHcref] = ACTIONS(5987), - [anon_sym_BSLASHCref] = ACTIONS(5987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnameCref] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHlabelcref] = ACTIONS(5987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCrefrange] = ACTIONS(5987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnewlabel] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5991), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHdef] = ACTIONS(5987), - [anon_sym_BSLASHlet] = ACTIONS(5987), - [anon_sym_BSLASHleft] = ACTIONS(5987), - [anon_sym_BSLASHbig] = ACTIONS(5987), - [anon_sym_BSLASHBig] = ACTIONS(5987), - [anon_sym_BSLASHbigg] = ACTIONS(5987), - [anon_sym_BSLASHBigg] = ACTIONS(5987), - [anon_sym_BSLASHbigl] = ACTIONS(5987), - [anon_sym_BSLASHBigl] = ACTIONS(5987), - [anon_sym_BSLASHbiggl] = ACTIONS(5987), - [anon_sym_BSLASHBiggl] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), - [anon_sym_BSLASHgls] = ACTIONS(5987), - [anon_sym_BSLASHGls] = ACTIONS(5987), - [anon_sym_BSLASHGLS] = ACTIONS(5987), - [anon_sym_BSLASHglspl] = ACTIONS(5987), - [anon_sym_BSLASHGlspl] = ACTIONS(5987), - [anon_sym_BSLASHGLSpl] = ACTIONS(5987), - [anon_sym_BSLASHglsdisp] = ACTIONS(5987), - [anon_sym_BSLASHglslink] = ACTIONS(5987), - [anon_sym_BSLASHglstext] = ACTIONS(5987), - [anon_sym_BSLASHGlstext] = ACTIONS(5987), - [anon_sym_BSLASHGLStext] = ACTIONS(5987), - [anon_sym_BSLASHglsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), - [anon_sym_BSLASHglsplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSplural] = ACTIONS(5987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHglsname] = ACTIONS(5987), - [anon_sym_BSLASHGlsname] = ACTIONS(5987), - [anon_sym_BSLASHGLSname] = ACTIONS(5987), - [anon_sym_BSLASHglssymbol] = ACTIONS(5987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), - [anon_sym_BSLASHglsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), - [anon_sym_BSLASHglsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), - [anon_sym_BSLASHglsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), - [anon_sym_BSLASHglsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), - [anon_sym_BSLASHglsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), - [anon_sym_BSLASHnewacronym] = ACTIONS(5987), - [anon_sym_BSLASHacrshort] = ACTIONS(5987), - [anon_sym_BSLASHAcrshort] = ACTIONS(5987), - [anon_sym_BSLASHACRshort] = ACTIONS(5987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), - [anon_sym_BSLASHacrlong] = ACTIONS(5987), - [anon_sym_BSLASHAcrlong] = ACTIONS(5987), - [anon_sym_BSLASHACRlong] = ACTIONS(5987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), - [anon_sym_BSLASHacrfull] = ACTIONS(5987), - [anon_sym_BSLASHAcrfull] = ACTIONS(5987), - [anon_sym_BSLASHACRfull] = ACTIONS(5987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), - [anon_sym_BSLASHacs] = ACTIONS(5987), - [anon_sym_BSLASHAcs] = ACTIONS(5987), - [anon_sym_BSLASHacsp] = ACTIONS(5987), - [anon_sym_BSLASHAcsp] = ACTIONS(5987), - [anon_sym_BSLASHacl] = ACTIONS(5987), - [anon_sym_BSLASHAcl] = ACTIONS(5987), - [anon_sym_BSLASHaclp] = ACTIONS(5987), - [anon_sym_BSLASHAclp] = ACTIONS(5987), - [anon_sym_BSLASHacf] = ACTIONS(5987), - [anon_sym_BSLASHAcf] = ACTIONS(5987), - [anon_sym_BSLASHacfp] = ACTIONS(5987), - [anon_sym_BSLASHAcfp] = ACTIONS(5987), - [anon_sym_BSLASHac] = ACTIONS(5987), - [anon_sym_BSLASHAc] = ACTIONS(5987), - [anon_sym_BSLASHacp] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), - [anon_sym_BSLASHcolor] = ACTIONS(5987), - [anon_sym_BSLASHcolorbox] = ACTIONS(5987), - [anon_sym_BSLASHtextcolor] = ACTIONS(5987), - [anon_sym_BSLASHpagecolor] = ACTIONS(5987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), - [anon_sym_BSLASHtext] = ACTIONS(5987), - [anon_sym_BSLASHintertext] = ACTIONS(5987), - [anon_sym_shortintertext] = ACTIONS(5987), - }, - [759] = { - [sym__section_part] = STATE(1188), - [sym_curly_group] = STATE(1196), - [sym_brack_group] = STATE(2690), - [sym_command_name] = ACTIONS(5852), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5852), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5854), - [anon_sym_COMMA] = ACTIONS(5854), - [anon_sym_EQ] = ACTIONS(5854), - [anon_sym_LPAREN] = ACTIONS(5854), - [anon_sym_RPAREN] = ACTIONS(5854), - [anon_sym_BSLASHpart] = ACTIONS(5852), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddpart] = ACTIONS(5852), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5854), - [anon_sym_BSLASHchapter] = ACTIONS(5852), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddchap] = ACTIONS(5852), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsection] = ACTIONS(5852), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddsec] = ACTIONS(5852), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubsection] = ACTIONS(5852), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5852), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHparagraph] = ACTIONS(5852), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5852), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5854), - [anon_sym_BSLASHitem] = ACTIONS(5852), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5854), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(5852), - [sym_placeholder] = ACTIONS(5854), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_STAR] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5854), - [anon_sym_LT] = ACTIONS(5852), - [anon_sym_GT] = ACTIONS(5852), - [anon_sym_BANG] = ACTIONS(5852), - [anon_sym_PIPE] = ACTIONS(5852), - [anon_sym_COLON] = ACTIONS(5852), - [anon_sym_SQUOTE] = ACTIONS(5852), - [anon_sym__] = ACTIONS(5854), - [anon_sym_CARET] = ACTIONS(5854), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5854), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5854), - [anon_sym_DOLLAR] = ACTIONS(5852), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5854), - [anon_sym_BSLASHbegin] = ACTIONS(5852), - [anon_sym_BSLASHend] = ACTIONS(5852), - [anon_sym_BSLASHtitle] = ACTIONS(5852), - [anon_sym_BSLASHauthor] = ACTIONS(5852), - [anon_sym_BSLASHusepackage] = ACTIONS(5852), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5852), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5852), - [anon_sym_BSLASHinclude] = ACTIONS(5852), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5852), - [anon_sym_BSLASHinput] = ACTIONS(5852), - [anon_sym_BSLASHsubfile] = ACTIONS(5852), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5852), - [anon_sym_BSLASHbibliography] = ACTIONS(5852), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5852), - [anon_sym_BSLASHincludesvg] = ACTIONS(5852), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5852), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5852), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5852), - [anon_sym_BSLASHimport] = ACTIONS(5852), - [anon_sym_BSLASHsubimport] = ACTIONS(5852), - [anon_sym_BSLASHinputfrom] = ACTIONS(5852), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5852), - [anon_sym_BSLASHincludefrom] = ACTIONS(5852), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5852), - [anon_sym_BSLASHcaption] = ACTIONS(5852), - [anon_sym_BSLASHcite] = ACTIONS(5852), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCite] = ACTIONS(5852), - [anon_sym_BSLASHnocite] = ACTIONS(5852), - [anon_sym_BSLASHcitet] = ACTIONS(5852), - [anon_sym_BSLASHcitep] = ACTIONS(5852), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteauthor] = ACTIONS(5852), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5852), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitetitle] = ACTIONS(5852), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteyear] = ACTIONS(5852), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitedate] = ACTIONS(5852), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteurl] = ACTIONS(5852), - [anon_sym_BSLASHfullcite] = ACTIONS(5852), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5852), - [anon_sym_BSLASHcitealt] = ACTIONS(5852), - [anon_sym_BSLASHcitealp] = ACTIONS(5852), - [anon_sym_BSLASHcitetext] = ACTIONS(5852), - [anon_sym_BSLASHparencite] = ACTIONS(5852), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHParencite] = ACTIONS(5852), - [anon_sym_BSLASHfootcite] = ACTIONS(5852), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5852), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5852), - [anon_sym_BSLASHtextcite] = ACTIONS(5852), - [anon_sym_BSLASHTextcite] = ACTIONS(5852), - [anon_sym_BSLASHsmartcite] = ACTIONS(5852), - [anon_sym_BSLASHSmartcite] = ACTIONS(5852), - [anon_sym_BSLASHsupercite] = ACTIONS(5852), - [anon_sym_BSLASHautocite] = ACTIONS(5852), - [anon_sym_BSLASHAutocite] = ACTIONS(5852), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHvolcite] = ACTIONS(5852), - [anon_sym_BSLASHVolcite] = ACTIONS(5852), - [anon_sym_BSLASHpvolcite] = ACTIONS(5852), - [anon_sym_BSLASHPvolcite] = ACTIONS(5852), - [anon_sym_BSLASHfvolcite] = ACTIONS(5852), - [anon_sym_BSLASHftvolcite] = ACTIONS(5852), - [anon_sym_BSLASHsvolcite] = ACTIONS(5852), - [anon_sym_BSLASHSvolcite] = ACTIONS(5852), - [anon_sym_BSLASHtvolcite] = ACTIONS(5852), - [anon_sym_BSLASHTvolcite] = ACTIONS(5852), - [anon_sym_BSLASHavolcite] = ACTIONS(5852), - [anon_sym_BSLASHAvolcite] = ACTIONS(5852), - [anon_sym_BSLASHnotecite] = ACTIONS(5852), - [anon_sym_BSLASHNotecite] = ACTIONS(5852), - [anon_sym_BSLASHpnotecite] = ACTIONS(5852), - [anon_sym_BSLASHPnotecite] = ACTIONS(5852), - [anon_sym_BSLASHfnotecite] = ACTIONS(5852), - [anon_sym_BSLASHlabel] = ACTIONS(5852), - [anon_sym_BSLASHref] = ACTIONS(5852), - [anon_sym_BSLASHeqref] = ACTIONS(5852), - [anon_sym_BSLASHvref] = ACTIONS(5852), - [anon_sym_BSLASHVref] = ACTIONS(5852), - [anon_sym_BSLASHautoref] = ACTIONS(5852), - [anon_sym_BSLASHpageref] = ACTIONS(5852), - [anon_sym_BSLASHcref] = ACTIONS(5852), - [anon_sym_BSLASHCref] = ACTIONS(5852), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5854), - [anon_sym_BSLASHnamecref] = ACTIONS(5852), - [anon_sym_BSLASHnameCref] = ACTIONS(5852), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5852), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5852), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5852), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5852), - [anon_sym_BSLASHlabelcref] = ACTIONS(5852), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5852), - [anon_sym_BSLASHcrefrange] = ACTIONS(5852), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCrefrange] = ACTIONS(5852), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5854), - [anon_sym_BSLASHnewlabel] = ACTIONS(5852), - [anon_sym_BSLASHnewcommand] = ACTIONS(5852), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5852), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5852), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5854), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHdef] = ACTIONS(5852), - [anon_sym_BSLASHlet] = ACTIONS(5852), - [anon_sym_BSLASHleft] = ACTIONS(5852), - [anon_sym_BSLASHbig] = ACTIONS(5852), - [anon_sym_BSLASHBig] = ACTIONS(5852), - [anon_sym_BSLASHbigg] = ACTIONS(5852), - [anon_sym_BSLASHBigg] = ACTIONS(5852), - [anon_sym_BSLASHbigl] = ACTIONS(5852), - [anon_sym_BSLASHBigl] = ACTIONS(5852), - [anon_sym_BSLASHbiggl] = ACTIONS(5852), - [anon_sym_BSLASHBiggl] = ACTIONS(5852), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5852), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5852), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5852), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5852), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5852), - [anon_sym_BSLASHgls] = ACTIONS(5852), - [anon_sym_BSLASHGls] = ACTIONS(5852), - [anon_sym_BSLASHGLS] = ACTIONS(5852), - [anon_sym_BSLASHglspl] = ACTIONS(5852), - [anon_sym_BSLASHGlspl] = ACTIONS(5852), - [anon_sym_BSLASHGLSpl] = ACTIONS(5852), - [anon_sym_BSLASHglsdisp] = ACTIONS(5852), - [anon_sym_BSLASHglslink] = ACTIONS(5852), - [anon_sym_BSLASHglstext] = ACTIONS(5852), - [anon_sym_BSLASHGlstext] = ACTIONS(5852), - [anon_sym_BSLASHGLStext] = ACTIONS(5852), - [anon_sym_BSLASHglsfirst] = ACTIONS(5852), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5852), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5852), - [anon_sym_BSLASHglsplural] = ACTIONS(5852), - [anon_sym_BSLASHGlsplural] = ACTIONS(5852), - [anon_sym_BSLASHGLSplural] = ACTIONS(5852), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHglsname] = ACTIONS(5852), - [anon_sym_BSLASHGlsname] = ACTIONS(5852), - [anon_sym_BSLASHGLSname] = ACTIONS(5852), - [anon_sym_BSLASHglssymbol] = ACTIONS(5852), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5852), - [anon_sym_BSLASHglsdesc] = ACTIONS(5852), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5852), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5852), - [anon_sym_BSLASHglsuseri] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5852), - [anon_sym_BSLASHglsuserii] = ACTIONS(5852), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5852), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5852), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5852), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5852), - [anon_sym_BSLASHglsuserv] = ACTIONS(5852), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5852), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5852), - [anon_sym_BSLASHglsuservi] = ACTIONS(5852), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5852), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5852), - [anon_sym_BSLASHnewacronym] = ACTIONS(5852), - [anon_sym_BSLASHacrshort] = ACTIONS(5852), - [anon_sym_BSLASHAcrshort] = ACTIONS(5852), - [anon_sym_BSLASHACRshort] = ACTIONS(5852), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5852), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5852), - [anon_sym_BSLASHacrlong] = ACTIONS(5852), - [anon_sym_BSLASHAcrlong] = ACTIONS(5852), - [anon_sym_BSLASHACRlong] = ACTIONS(5852), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5852), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5852), - [anon_sym_BSLASHacrfull] = ACTIONS(5852), - [anon_sym_BSLASHAcrfull] = ACTIONS(5852), - [anon_sym_BSLASHACRfull] = ACTIONS(5852), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5852), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5852), - [anon_sym_BSLASHacs] = ACTIONS(5852), - [anon_sym_BSLASHAcs] = ACTIONS(5852), - [anon_sym_BSLASHacsp] = ACTIONS(5852), - [anon_sym_BSLASHAcsp] = ACTIONS(5852), - [anon_sym_BSLASHacl] = ACTIONS(5852), - [anon_sym_BSLASHAcl] = ACTIONS(5852), - [anon_sym_BSLASHaclp] = ACTIONS(5852), - [anon_sym_BSLASHAclp] = ACTIONS(5852), - [anon_sym_BSLASHacf] = ACTIONS(5852), - [anon_sym_BSLASHAcf] = ACTIONS(5852), - [anon_sym_BSLASHacfp] = ACTIONS(5852), - [anon_sym_BSLASHAcfp] = ACTIONS(5852), - [anon_sym_BSLASHac] = ACTIONS(5852), - [anon_sym_BSLASHAc] = ACTIONS(5852), - [anon_sym_BSLASHacp] = ACTIONS(5852), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5852), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5852), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5852), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5852), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5852), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5852), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5852), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5854), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5852), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5854), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5852), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5852), - [anon_sym_BSLASHcolor] = ACTIONS(5852), - [anon_sym_BSLASHcolorbox] = ACTIONS(5852), - [anon_sym_BSLASHtextcolor] = ACTIONS(5852), - [anon_sym_BSLASHpagecolor] = ACTIONS(5852), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5852), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5852), - [anon_sym_BSLASHtext] = ACTIONS(5852), - [anon_sym_BSLASHintertext] = ACTIONS(5852), - [anon_sym_shortintertext] = ACTIONS(5852), - }, - [760] = { - [sym__section_part] = STATE(1192), - [sym_curly_group] = STATE(1196), - [sym_brack_group] = STATE(2690), - [sym_command_name] = ACTIONS(5848), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5848), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5850), - [anon_sym_COMMA] = ACTIONS(5850), - [anon_sym_EQ] = ACTIONS(5850), - [anon_sym_LPAREN] = ACTIONS(5850), - [anon_sym_RPAREN] = ACTIONS(5850), - [anon_sym_BSLASHpart] = ACTIONS(5848), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddpart] = ACTIONS(5848), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5850), - [anon_sym_BSLASHchapter] = ACTIONS(5848), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddchap] = ACTIONS(5848), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsection] = ACTIONS(5848), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddsec] = ACTIONS(5848), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubsection] = ACTIONS(5848), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5848), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHparagraph] = ACTIONS(5848), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5848), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5850), - [anon_sym_BSLASHitem] = ACTIONS(5848), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5850), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(5848), - [sym_placeholder] = ACTIONS(5850), - [anon_sym_PLUS] = ACTIONS(5850), - [anon_sym_DASH] = ACTIONS(5850), - [anon_sym_STAR] = ACTIONS(5850), - [anon_sym_SLASH] = ACTIONS(5850), - [anon_sym_LT] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5848), - [anon_sym_BANG] = ACTIONS(5848), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_COLON] = ACTIONS(5848), - [anon_sym_SQUOTE] = ACTIONS(5848), - [anon_sym__] = ACTIONS(5850), - [anon_sym_CARET] = ACTIONS(5850), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5850), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5850), - [anon_sym_DOLLAR] = ACTIONS(5848), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5850), - [anon_sym_BSLASHbegin] = ACTIONS(5848), - [anon_sym_BSLASHend] = ACTIONS(5848), - [anon_sym_BSLASHtitle] = ACTIONS(5848), - [anon_sym_BSLASHauthor] = ACTIONS(5848), - [anon_sym_BSLASHusepackage] = ACTIONS(5848), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5848), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5848), - [anon_sym_BSLASHinclude] = ACTIONS(5848), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5848), - [anon_sym_BSLASHinput] = ACTIONS(5848), - [anon_sym_BSLASHsubfile] = ACTIONS(5848), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5848), - [anon_sym_BSLASHbibliography] = ACTIONS(5848), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5848), - [anon_sym_BSLASHincludesvg] = ACTIONS(5848), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5848), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5848), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5848), - [anon_sym_BSLASHimport] = ACTIONS(5848), - [anon_sym_BSLASHsubimport] = ACTIONS(5848), - [anon_sym_BSLASHinputfrom] = ACTIONS(5848), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5848), - [anon_sym_BSLASHincludefrom] = ACTIONS(5848), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5848), - [anon_sym_BSLASHcaption] = ACTIONS(5848), - [anon_sym_BSLASHcite] = ACTIONS(5848), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCite] = ACTIONS(5848), - [anon_sym_BSLASHnocite] = ACTIONS(5848), - [anon_sym_BSLASHcitet] = ACTIONS(5848), - [anon_sym_BSLASHcitep] = ACTIONS(5848), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteauthor] = ACTIONS(5848), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5848), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitetitle] = ACTIONS(5848), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteyear] = ACTIONS(5848), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitedate] = ACTIONS(5848), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteurl] = ACTIONS(5848), - [anon_sym_BSLASHfullcite] = ACTIONS(5848), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5848), - [anon_sym_BSLASHcitealt] = ACTIONS(5848), - [anon_sym_BSLASHcitealp] = ACTIONS(5848), - [anon_sym_BSLASHcitetext] = ACTIONS(5848), - [anon_sym_BSLASHparencite] = ACTIONS(5848), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHParencite] = ACTIONS(5848), - [anon_sym_BSLASHfootcite] = ACTIONS(5848), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5848), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5848), - [anon_sym_BSLASHtextcite] = ACTIONS(5848), - [anon_sym_BSLASHTextcite] = ACTIONS(5848), - [anon_sym_BSLASHsmartcite] = ACTIONS(5848), - [anon_sym_BSLASHSmartcite] = ACTIONS(5848), - [anon_sym_BSLASHsupercite] = ACTIONS(5848), - [anon_sym_BSLASHautocite] = ACTIONS(5848), - [anon_sym_BSLASHAutocite] = ACTIONS(5848), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHvolcite] = ACTIONS(5848), - [anon_sym_BSLASHVolcite] = ACTIONS(5848), - [anon_sym_BSLASHpvolcite] = ACTIONS(5848), - [anon_sym_BSLASHPvolcite] = ACTIONS(5848), - [anon_sym_BSLASHfvolcite] = ACTIONS(5848), - [anon_sym_BSLASHftvolcite] = ACTIONS(5848), - [anon_sym_BSLASHsvolcite] = ACTIONS(5848), - [anon_sym_BSLASHSvolcite] = ACTIONS(5848), - [anon_sym_BSLASHtvolcite] = ACTIONS(5848), - [anon_sym_BSLASHTvolcite] = ACTIONS(5848), - [anon_sym_BSLASHavolcite] = ACTIONS(5848), - [anon_sym_BSLASHAvolcite] = ACTIONS(5848), - [anon_sym_BSLASHnotecite] = ACTIONS(5848), - [anon_sym_BSLASHNotecite] = ACTIONS(5848), - [anon_sym_BSLASHpnotecite] = ACTIONS(5848), - [anon_sym_BSLASHPnotecite] = ACTIONS(5848), - [anon_sym_BSLASHfnotecite] = ACTIONS(5848), - [anon_sym_BSLASHlabel] = ACTIONS(5848), - [anon_sym_BSLASHref] = ACTIONS(5848), - [anon_sym_BSLASHeqref] = ACTIONS(5848), - [anon_sym_BSLASHvref] = ACTIONS(5848), - [anon_sym_BSLASHVref] = ACTIONS(5848), - [anon_sym_BSLASHautoref] = ACTIONS(5848), - [anon_sym_BSLASHpageref] = ACTIONS(5848), - [anon_sym_BSLASHcref] = ACTIONS(5848), - [anon_sym_BSLASHCref] = ACTIONS(5848), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5850), - [anon_sym_BSLASHnamecref] = ACTIONS(5848), - [anon_sym_BSLASHnameCref] = ACTIONS(5848), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5848), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5848), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5848), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5848), - [anon_sym_BSLASHlabelcref] = ACTIONS(5848), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5848), - [anon_sym_BSLASHcrefrange] = ACTIONS(5848), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCrefrange] = ACTIONS(5848), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5850), - [anon_sym_BSLASHnewlabel] = ACTIONS(5848), - [anon_sym_BSLASHnewcommand] = ACTIONS(5848), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5848), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5848), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5850), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHdef] = ACTIONS(5848), - [anon_sym_BSLASHlet] = ACTIONS(5848), - [anon_sym_BSLASHleft] = ACTIONS(5848), - [anon_sym_BSLASHbig] = ACTIONS(5848), - [anon_sym_BSLASHBig] = ACTIONS(5848), - [anon_sym_BSLASHbigg] = ACTIONS(5848), - [anon_sym_BSLASHBigg] = ACTIONS(5848), - [anon_sym_BSLASHbigl] = ACTIONS(5848), - [anon_sym_BSLASHBigl] = ACTIONS(5848), - [anon_sym_BSLASHbiggl] = ACTIONS(5848), - [anon_sym_BSLASHBiggl] = ACTIONS(5848), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5848), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5848), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5848), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5848), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5848), - [anon_sym_BSLASHgls] = ACTIONS(5848), - [anon_sym_BSLASHGls] = ACTIONS(5848), - [anon_sym_BSLASHGLS] = ACTIONS(5848), - [anon_sym_BSLASHglspl] = ACTIONS(5848), - [anon_sym_BSLASHGlspl] = ACTIONS(5848), - [anon_sym_BSLASHGLSpl] = ACTIONS(5848), - [anon_sym_BSLASHglsdisp] = ACTIONS(5848), - [anon_sym_BSLASHglslink] = ACTIONS(5848), - [anon_sym_BSLASHglstext] = ACTIONS(5848), - [anon_sym_BSLASHGlstext] = ACTIONS(5848), - [anon_sym_BSLASHGLStext] = ACTIONS(5848), - [anon_sym_BSLASHglsfirst] = ACTIONS(5848), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5848), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5848), - [anon_sym_BSLASHglsplural] = ACTIONS(5848), - [anon_sym_BSLASHGlsplural] = ACTIONS(5848), - [anon_sym_BSLASHGLSplural] = ACTIONS(5848), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHglsname] = ACTIONS(5848), - [anon_sym_BSLASHGlsname] = ACTIONS(5848), - [anon_sym_BSLASHGLSname] = ACTIONS(5848), - [anon_sym_BSLASHglssymbol] = ACTIONS(5848), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5848), - [anon_sym_BSLASHglsdesc] = ACTIONS(5848), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5848), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5848), - [anon_sym_BSLASHglsuseri] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5848), - [anon_sym_BSLASHglsuserii] = ACTIONS(5848), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5848), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5848), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5848), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5848), - [anon_sym_BSLASHglsuserv] = ACTIONS(5848), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5848), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5848), - [anon_sym_BSLASHglsuservi] = ACTIONS(5848), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5848), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5848), - [anon_sym_BSLASHnewacronym] = ACTIONS(5848), - [anon_sym_BSLASHacrshort] = ACTIONS(5848), - [anon_sym_BSLASHAcrshort] = ACTIONS(5848), - [anon_sym_BSLASHACRshort] = ACTIONS(5848), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5848), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5848), - [anon_sym_BSLASHacrlong] = ACTIONS(5848), - [anon_sym_BSLASHAcrlong] = ACTIONS(5848), - [anon_sym_BSLASHACRlong] = ACTIONS(5848), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5848), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5848), - [anon_sym_BSLASHacrfull] = ACTIONS(5848), - [anon_sym_BSLASHAcrfull] = ACTIONS(5848), - [anon_sym_BSLASHACRfull] = ACTIONS(5848), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5848), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5848), - [anon_sym_BSLASHacs] = ACTIONS(5848), - [anon_sym_BSLASHAcs] = ACTIONS(5848), - [anon_sym_BSLASHacsp] = ACTIONS(5848), - [anon_sym_BSLASHAcsp] = ACTIONS(5848), - [anon_sym_BSLASHacl] = ACTIONS(5848), - [anon_sym_BSLASHAcl] = ACTIONS(5848), - [anon_sym_BSLASHaclp] = ACTIONS(5848), - [anon_sym_BSLASHAclp] = ACTIONS(5848), - [anon_sym_BSLASHacf] = ACTIONS(5848), - [anon_sym_BSLASHAcf] = ACTIONS(5848), - [anon_sym_BSLASHacfp] = ACTIONS(5848), - [anon_sym_BSLASHAcfp] = ACTIONS(5848), - [anon_sym_BSLASHac] = ACTIONS(5848), - [anon_sym_BSLASHAc] = ACTIONS(5848), - [anon_sym_BSLASHacp] = ACTIONS(5848), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5848), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5848), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5848), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5848), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5848), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5848), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5848), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5850), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5848), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5850), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5848), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5848), - [anon_sym_BSLASHcolor] = ACTIONS(5848), - [anon_sym_BSLASHcolorbox] = ACTIONS(5848), - [anon_sym_BSLASHtextcolor] = ACTIONS(5848), - [anon_sym_BSLASHpagecolor] = ACTIONS(5848), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5848), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5848), - [anon_sym_BSLASHtext] = ACTIONS(5848), - [anon_sym_BSLASHintertext] = ACTIONS(5848), - [anon_sym_shortintertext] = ACTIONS(5848), - }, - [761] = { - [sym__section_part] = STATE(1193), - [sym_curly_group] = STATE(1196), - [sym_brack_group] = STATE(2690), - [sym_command_name] = ACTIONS(5840), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5840), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5842), - [anon_sym_COMMA] = ACTIONS(5842), - [anon_sym_EQ] = ACTIONS(5842), - [anon_sym_LPAREN] = ACTIONS(5842), - [anon_sym_RPAREN] = ACTIONS(5842), - [anon_sym_BSLASHpart] = ACTIONS(5840), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddpart] = ACTIONS(5840), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5842), - [anon_sym_BSLASHchapter] = ACTIONS(5840), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddchap] = ACTIONS(5840), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsection] = ACTIONS(5840), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddsec] = ACTIONS(5840), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubsection] = ACTIONS(5840), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5840), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHparagraph] = ACTIONS(5840), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5840), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5842), - [anon_sym_BSLASHitem] = ACTIONS(5840), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5842), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(5840), - [sym_placeholder] = ACTIONS(5842), - [anon_sym_PLUS] = ACTIONS(5842), - [anon_sym_DASH] = ACTIONS(5842), - [anon_sym_STAR] = ACTIONS(5842), - [anon_sym_SLASH] = ACTIONS(5842), - [anon_sym_LT] = ACTIONS(5840), - [anon_sym_GT] = ACTIONS(5840), - [anon_sym_BANG] = ACTIONS(5840), - [anon_sym_PIPE] = ACTIONS(5840), - [anon_sym_COLON] = ACTIONS(5840), - [anon_sym_SQUOTE] = ACTIONS(5840), - [anon_sym__] = ACTIONS(5842), - [anon_sym_CARET] = ACTIONS(5842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5842), - [anon_sym_DOLLAR] = ACTIONS(5840), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5842), - [anon_sym_BSLASHbegin] = ACTIONS(5840), - [anon_sym_BSLASHend] = ACTIONS(5840), - [anon_sym_BSLASHtitle] = ACTIONS(5840), - [anon_sym_BSLASHauthor] = ACTIONS(5840), - [anon_sym_BSLASHusepackage] = ACTIONS(5840), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5840), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5840), - [anon_sym_BSLASHinclude] = ACTIONS(5840), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5840), - [anon_sym_BSLASHinput] = ACTIONS(5840), - [anon_sym_BSLASHsubfile] = ACTIONS(5840), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5840), - [anon_sym_BSLASHbibliography] = ACTIONS(5840), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5840), - [anon_sym_BSLASHincludesvg] = ACTIONS(5840), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5840), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5840), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5840), - [anon_sym_BSLASHimport] = ACTIONS(5840), - [anon_sym_BSLASHsubimport] = ACTIONS(5840), - [anon_sym_BSLASHinputfrom] = ACTIONS(5840), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5840), - [anon_sym_BSLASHincludefrom] = ACTIONS(5840), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5840), - [anon_sym_BSLASHcaption] = ACTIONS(5840), - [anon_sym_BSLASHcite] = ACTIONS(5840), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCite] = ACTIONS(5840), - [anon_sym_BSLASHnocite] = ACTIONS(5840), - [anon_sym_BSLASHcitet] = ACTIONS(5840), - [anon_sym_BSLASHcitep] = ACTIONS(5840), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteauthor] = ACTIONS(5840), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5840), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitetitle] = ACTIONS(5840), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteyear] = ACTIONS(5840), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitedate] = ACTIONS(5840), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteurl] = ACTIONS(5840), - [anon_sym_BSLASHfullcite] = ACTIONS(5840), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5840), - [anon_sym_BSLASHcitealt] = ACTIONS(5840), - [anon_sym_BSLASHcitealp] = ACTIONS(5840), - [anon_sym_BSLASHcitetext] = ACTIONS(5840), - [anon_sym_BSLASHparencite] = ACTIONS(5840), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHParencite] = ACTIONS(5840), - [anon_sym_BSLASHfootcite] = ACTIONS(5840), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5840), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5840), - [anon_sym_BSLASHtextcite] = ACTIONS(5840), - [anon_sym_BSLASHTextcite] = ACTIONS(5840), - [anon_sym_BSLASHsmartcite] = ACTIONS(5840), - [anon_sym_BSLASHSmartcite] = ACTIONS(5840), - [anon_sym_BSLASHsupercite] = ACTIONS(5840), - [anon_sym_BSLASHautocite] = ACTIONS(5840), - [anon_sym_BSLASHAutocite] = ACTIONS(5840), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHvolcite] = ACTIONS(5840), - [anon_sym_BSLASHVolcite] = ACTIONS(5840), - [anon_sym_BSLASHpvolcite] = ACTIONS(5840), - [anon_sym_BSLASHPvolcite] = ACTIONS(5840), - [anon_sym_BSLASHfvolcite] = ACTIONS(5840), - [anon_sym_BSLASHftvolcite] = ACTIONS(5840), - [anon_sym_BSLASHsvolcite] = ACTIONS(5840), - [anon_sym_BSLASHSvolcite] = ACTIONS(5840), - [anon_sym_BSLASHtvolcite] = ACTIONS(5840), - [anon_sym_BSLASHTvolcite] = ACTIONS(5840), - [anon_sym_BSLASHavolcite] = ACTIONS(5840), - [anon_sym_BSLASHAvolcite] = ACTIONS(5840), - [anon_sym_BSLASHnotecite] = ACTIONS(5840), - [anon_sym_BSLASHNotecite] = ACTIONS(5840), - [anon_sym_BSLASHpnotecite] = ACTIONS(5840), - [anon_sym_BSLASHPnotecite] = ACTIONS(5840), - [anon_sym_BSLASHfnotecite] = ACTIONS(5840), - [anon_sym_BSLASHlabel] = ACTIONS(5840), - [anon_sym_BSLASHref] = ACTIONS(5840), - [anon_sym_BSLASHeqref] = ACTIONS(5840), - [anon_sym_BSLASHvref] = ACTIONS(5840), - [anon_sym_BSLASHVref] = ACTIONS(5840), - [anon_sym_BSLASHautoref] = ACTIONS(5840), - [anon_sym_BSLASHpageref] = ACTIONS(5840), - [anon_sym_BSLASHcref] = ACTIONS(5840), - [anon_sym_BSLASHCref] = ACTIONS(5840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5842), - [anon_sym_BSLASHnamecref] = ACTIONS(5840), - [anon_sym_BSLASHnameCref] = ACTIONS(5840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5840), - [anon_sym_BSLASHlabelcref] = ACTIONS(5840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5840), - [anon_sym_BSLASHcrefrange] = ACTIONS(5840), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCrefrange] = ACTIONS(5840), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5842), - [anon_sym_BSLASHnewlabel] = ACTIONS(5840), - [anon_sym_BSLASHnewcommand] = ACTIONS(5840), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5840), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5840), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5842), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHdef] = ACTIONS(5840), - [anon_sym_BSLASHlet] = ACTIONS(5840), - [anon_sym_BSLASHleft] = ACTIONS(5840), - [anon_sym_BSLASHbig] = ACTIONS(5840), - [anon_sym_BSLASHBig] = ACTIONS(5840), - [anon_sym_BSLASHbigg] = ACTIONS(5840), - [anon_sym_BSLASHBigg] = ACTIONS(5840), - [anon_sym_BSLASHbigl] = ACTIONS(5840), - [anon_sym_BSLASHBigl] = ACTIONS(5840), - [anon_sym_BSLASHbiggl] = ACTIONS(5840), - [anon_sym_BSLASHBiggl] = ACTIONS(5840), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5840), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5840), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5840), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5840), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5840), - [anon_sym_BSLASHgls] = ACTIONS(5840), - [anon_sym_BSLASHGls] = ACTIONS(5840), - [anon_sym_BSLASHGLS] = ACTIONS(5840), - [anon_sym_BSLASHglspl] = ACTIONS(5840), - [anon_sym_BSLASHGlspl] = ACTIONS(5840), - [anon_sym_BSLASHGLSpl] = ACTIONS(5840), - [anon_sym_BSLASHglsdisp] = ACTIONS(5840), - [anon_sym_BSLASHglslink] = ACTIONS(5840), - [anon_sym_BSLASHglstext] = ACTIONS(5840), - [anon_sym_BSLASHGlstext] = ACTIONS(5840), - [anon_sym_BSLASHGLStext] = ACTIONS(5840), - [anon_sym_BSLASHglsfirst] = ACTIONS(5840), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5840), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5840), - [anon_sym_BSLASHglsplural] = ACTIONS(5840), - [anon_sym_BSLASHGlsplural] = ACTIONS(5840), - [anon_sym_BSLASHGLSplural] = ACTIONS(5840), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHglsname] = ACTIONS(5840), - [anon_sym_BSLASHGlsname] = ACTIONS(5840), - [anon_sym_BSLASHGLSname] = ACTIONS(5840), - [anon_sym_BSLASHglssymbol] = ACTIONS(5840), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5840), - [anon_sym_BSLASHglsdesc] = ACTIONS(5840), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5840), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5840), - [anon_sym_BSLASHglsuseri] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5840), - [anon_sym_BSLASHglsuserii] = ACTIONS(5840), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5840), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5840), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5840), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5840), - [anon_sym_BSLASHglsuserv] = ACTIONS(5840), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5840), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5840), - [anon_sym_BSLASHglsuservi] = ACTIONS(5840), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5840), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5840), - [anon_sym_BSLASHnewacronym] = ACTIONS(5840), - [anon_sym_BSLASHacrshort] = ACTIONS(5840), - [anon_sym_BSLASHAcrshort] = ACTIONS(5840), - [anon_sym_BSLASHACRshort] = ACTIONS(5840), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5840), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5840), - [anon_sym_BSLASHacrlong] = ACTIONS(5840), - [anon_sym_BSLASHAcrlong] = ACTIONS(5840), - [anon_sym_BSLASHACRlong] = ACTIONS(5840), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5840), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5840), - [anon_sym_BSLASHacrfull] = ACTIONS(5840), - [anon_sym_BSLASHAcrfull] = ACTIONS(5840), - [anon_sym_BSLASHACRfull] = ACTIONS(5840), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5840), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5840), - [anon_sym_BSLASHacs] = ACTIONS(5840), - [anon_sym_BSLASHAcs] = ACTIONS(5840), - [anon_sym_BSLASHacsp] = ACTIONS(5840), - [anon_sym_BSLASHAcsp] = ACTIONS(5840), - [anon_sym_BSLASHacl] = ACTIONS(5840), - [anon_sym_BSLASHAcl] = ACTIONS(5840), - [anon_sym_BSLASHaclp] = ACTIONS(5840), - [anon_sym_BSLASHAclp] = ACTIONS(5840), - [anon_sym_BSLASHacf] = ACTIONS(5840), - [anon_sym_BSLASHAcf] = ACTIONS(5840), - [anon_sym_BSLASHacfp] = ACTIONS(5840), - [anon_sym_BSLASHAcfp] = ACTIONS(5840), - [anon_sym_BSLASHac] = ACTIONS(5840), - [anon_sym_BSLASHAc] = ACTIONS(5840), - [anon_sym_BSLASHacp] = ACTIONS(5840), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5840), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5840), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5840), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5840), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5840), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5840), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5840), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5842), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5840), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5842), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5840), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5840), - [anon_sym_BSLASHcolor] = ACTIONS(5840), - [anon_sym_BSLASHcolorbox] = ACTIONS(5840), - [anon_sym_BSLASHtextcolor] = ACTIONS(5840), - [anon_sym_BSLASHpagecolor] = ACTIONS(5840), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5840), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5840), - [anon_sym_BSLASHtext] = ACTIONS(5840), - [anon_sym_BSLASHintertext] = ACTIONS(5840), - [anon_sym_shortintertext] = ACTIONS(5840), - }, - [762] = { - [sym__section_part] = STATE(1194), - [sym_curly_group] = STATE(1196), - [sym_brack_group] = STATE(2690), - [sym_command_name] = ACTIONS(5836), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5836), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5838), - [anon_sym_COMMA] = ACTIONS(5838), - [anon_sym_EQ] = ACTIONS(5838), - [anon_sym_LPAREN] = ACTIONS(5838), - [anon_sym_RPAREN] = ACTIONS(5838), - [anon_sym_BSLASHpart] = ACTIONS(5836), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddpart] = ACTIONS(5836), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5838), - [anon_sym_BSLASHchapter] = ACTIONS(5836), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddchap] = ACTIONS(5836), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsection] = ACTIONS(5836), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddsec] = ACTIONS(5836), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubsection] = ACTIONS(5836), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5836), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHparagraph] = ACTIONS(5836), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5836), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5838), - [anon_sym_BSLASHitem] = ACTIONS(5836), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5838), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(5836), - [sym_placeholder] = ACTIONS(5838), - [anon_sym_PLUS] = ACTIONS(5838), - [anon_sym_DASH] = ACTIONS(5838), - [anon_sym_STAR] = ACTIONS(5838), - [anon_sym_SLASH] = ACTIONS(5838), - [anon_sym_LT] = ACTIONS(5836), - [anon_sym_GT] = ACTIONS(5836), - [anon_sym_BANG] = ACTIONS(5836), - [anon_sym_PIPE] = ACTIONS(5836), - [anon_sym_COLON] = ACTIONS(5836), - [anon_sym_SQUOTE] = ACTIONS(5836), - [anon_sym__] = ACTIONS(5838), - [anon_sym_CARET] = ACTIONS(5838), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5838), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5838), - [anon_sym_DOLLAR] = ACTIONS(5836), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5838), - [anon_sym_BSLASHbegin] = ACTIONS(5836), - [anon_sym_BSLASHend] = ACTIONS(5836), - [anon_sym_BSLASHtitle] = ACTIONS(5836), - [anon_sym_BSLASHauthor] = ACTIONS(5836), - [anon_sym_BSLASHusepackage] = ACTIONS(5836), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5836), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5836), - [anon_sym_BSLASHinclude] = ACTIONS(5836), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5836), - [anon_sym_BSLASHinput] = ACTIONS(5836), - [anon_sym_BSLASHsubfile] = ACTIONS(5836), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5836), - [anon_sym_BSLASHbibliography] = ACTIONS(5836), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5836), - [anon_sym_BSLASHincludesvg] = ACTIONS(5836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5836), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5836), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5836), - [anon_sym_BSLASHimport] = ACTIONS(5836), - [anon_sym_BSLASHsubimport] = ACTIONS(5836), - [anon_sym_BSLASHinputfrom] = ACTIONS(5836), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5836), - [anon_sym_BSLASHincludefrom] = ACTIONS(5836), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5836), - [anon_sym_BSLASHcaption] = ACTIONS(5836), - [anon_sym_BSLASHcite] = ACTIONS(5836), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCite] = ACTIONS(5836), - [anon_sym_BSLASHnocite] = ACTIONS(5836), - [anon_sym_BSLASHcitet] = ACTIONS(5836), - [anon_sym_BSLASHcitep] = ACTIONS(5836), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteauthor] = ACTIONS(5836), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5836), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitetitle] = ACTIONS(5836), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteyear] = ACTIONS(5836), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitedate] = ACTIONS(5836), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteurl] = ACTIONS(5836), - [anon_sym_BSLASHfullcite] = ACTIONS(5836), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5836), - [anon_sym_BSLASHcitealt] = ACTIONS(5836), - [anon_sym_BSLASHcitealp] = ACTIONS(5836), - [anon_sym_BSLASHcitetext] = ACTIONS(5836), - [anon_sym_BSLASHparencite] = ACTIONS(5836), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHParencite] = ACTIONS(5836), - [anon_sym_BSLASHfootcite] = ACTIONS(5836), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5836), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5836), - [anon_sym_BSLASHtextcite] = ACTIONS(5836), - [anon_sym_BSLASHTextcite] = ACTIONS(5836), - [anon_sym_BSLASHsmartcite] = ACTIONS(5836), - [anon_sym_BSLASHSmartcite] = ACTIONS(5836), - [anon_sym_BSLASHsupercite] = ACTIONS(5836), - [anon_sym_BSLASHautocite] = ACTIONS(5836), - [anon_sym_BSLASHAutocite] = ACTIONS(5836), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHvolcite] = ACTIONS(5836), - [anon_sym_BSLASHVolcite] = ACTIONS(5836), - [anon_sym_BSLASHpvolcite] = ACTIONS(5836), - [anon_sym_BSLASHPvolcite] = ACTIONS(5836), - [anon_sym_BSLASHfvolcite] = ACTIONS(5836), - [anon_sym_BSLASHftvolcite] = ACTIONS(5836), - [anon_sym_BSLASHsvolcite] = ACTIONS(5836), - [anon_sym_BSLASHSvolcite] = ACTIONS(5836), - [anon_sym_BSLASHtvolcite] = ACTIONS(5836), - [anon_sym_BSLASHTvolcite] = ACTIONS(5836), - [anon_sym_BSLASHavolcite] = ACTIONS(5836), - [anon_sym_BSLASHAvolcite] = ACTIONS(5836), - [anon_sym_BSLASHnotecite] = ACTIONS(5836), - [anon_sym_BSLASHNotecite] = ACTIONS(5836), - [anon_sym_BSLASHpnotecite] = ACTIONS(5836), - [anon_sym_BSLASHPnotecite] = ACTIONS(5836), - [anon_sym_BSLASHfnotecite] = ACTIONS(5836), - [anon_sym_BSLASHlabel] = ACTIONS(5836), - [anon_sym_BSLASHref] = ACTIONS(5836), - [anon_sym_BSLASHeqref] = ACTIONS(5836), - [anon_sym_BSLASHvref] = ACTIONS(5836), - [anon_sym_BSLASHVref] = ACTIONS(5836), - [anon_sym_BSLASHautoref] = ACTIONS(5836), - [anon_sym_BSLASHpageref] = ACTIONS(5836), - [anon_sym_BSLASHcref] = ACTIONS(5836), - [anon_sym_BSLASHCref] = ACTIONS(5836), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5838), - [anon_sym_BSLASHnamecref] = ACTIONS(5836), - [anon_sym_BSLASHnameCref] = ACTIONS(5836), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5836), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5836), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5836), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5836), - [anon_sym_BSLASHlabelcref] = ACTIONS(5836), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5836), - [anon_sym_BSLASHcrefrange] = ACTIONS(5836), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCrefrange] = ACTIONS(5836), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5838), - [anon_sym_BSLASHnewlabel] = ACTIONS(5836), - [anon_sym_BSLASHnewcommand] = ACTIONS(5836), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5836), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5836), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5838), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHdef] = ACTIONS(5836), - [anon_sym_BSLASHlet] = ACTIONS(5836), - [anon_sym_BSLASHleft] = ACTIONS(5836), - [anon_sym_BSLASHbig] = ACTIONS(5836), - [anon_sym_BSLASHBig] = ACTIONS(5836), - [anon_sym_BSLASHbigg] = ACTIONS(5836), - [anon_sym_BSLASHBigg] = ACTIONS(5836), - [anon_sym_BSLASHbigl] = ACTIONS(5836), - [anon_sym_BSLASHBigl] = ACTIONS(5836), - [anon_sym_BSLASHbiggl] = ACTIONS(5836), - [anon_sym_BSLASHBiggl] = ACTIONS(5836), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5836), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5836), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5836), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5836), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5836), - [anon_sym_BSLASHgls] = ACTIONS(5836), - [anon_sym_BSLASHGls] = ACTIONS(5836), - [anon_sym_BSLASHGLS] = ACTIONS(5836), - [anon_sym_BSLASHglspl] = ACTIONS(5836), - [anon_sym_BSLASHGlspl] = ACTIONS(5836), - [anon_sym_BSLASHGLSpl] = ACTIONS(5836), - [anon_sym_BSLASHglsdisp] = ACTIONS(5836), - [anon_sym_BSLASHglslink] = ACTIONS(5836), - [anon_sym_BSLASHglstext] = ACTIONS(5836), - [anon_sym_BSLASHGlstext] = ACTIONS(5836), - [anon_sym_BSLASHGLStext] = ACTIONS(5836), - [anon_sym_BSLASHglsfirst] = ACTIONS(5836), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5836), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5836), - [anon_sym_BSLASHglsplural] = ACTIONS(5836), - [anon_sym_BSLASHGlsplural] = ACTIONS(5836), - [anon_sym_BSLASHGLSplural] = ACTIONS(5836), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHglsname] = ACTIONS(5836), - [anon_sym_BSLASHGlsname] = ACTIONS(5836), - [anon_sym_BSLASHGLSname] = ACTIONS(5836), - [anon_sym_BSLASHglssymbol] = ACTIONS(5836), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5836), - [anon_sym_BSLASHglsdesc] = ACTIONS(5836), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5836), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5836), - [anon_sym_BSLASHglsuseri] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5836), - [anon_sym_BSLASHglsuserii] = ACTIONS(5836), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5836), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5836), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5836), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5836), - [anon_sym_BSLASHglsuserv] = ACTIONS(5836), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5836), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5836), - [anon_sym_BSLASHglsuservi] = ACTIONS(5836), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5836), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5836), - [anon_sym_BSLASHnewacronym] = ACTIONS(5836), - [anon_sym_BSLASHacrshort] = ACTIONS(5836), - [anon_sym_BSLASHAcrshort] = ACTIONS(5836), - [anon_sym_BSLASHACRshort] = ACTIONS(5836), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5836), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5836), - [anon_sym_BSLASHacrlong] = ACTIONS(5836), - [anon_sym_BSLASHAcrlong] = ACTIONS(5836), - [anon_sym_BSLASHACRlong] = ACTIONS(5836), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5836), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5836), - [anon_sym_BSLASHacrfull] = ACTIONS(5836), - [anon_sym_BSLASHAcrfull] = ACTIONS(5836), - [anon_sym_BSLASHACRfull] = ACTIONS(5836), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5836), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5836), - [anon_sym_BSLASHacs] = ACTIONS(5836), - [anon_sym_BSLASHAcs] = ACTIONS(5836), - [anon_sym_BSLASHacsp] = ACTIONS(5836), - [anon_sym_BSLASHAcsp] = ACTIONS(5836), - [anon_sym_BSLASHacl] = ACTIONS(5836), - [anon_sym_BSLASHAcl] = ACTIONS(5836), - [anon_sym_BSLASHaclp] = ACTIONS(5836), - [anon_sym_BSLASHAclp] = ACTIONS(5836), - [anon_sym_BSLASHacf] = ACTIONS(5836), - [anon_sym_BSLASHAcf] = ACTIONS(5836), - [anon_sym_BSLASHacfp] = ACTIONS(5836), - [anon_sym_BSLASHAcfp] = ACTIONS(5836), - [anon_sym_BSLASHac] = ACTIONS(5836), - [anon_sym_BSLASHAc] = ACTIONS(5836), - [anon_sym_BSLASHacp] = ACTIONS(5836), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5836), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5836), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5836), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5836), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5836), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5836), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5836), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5838), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5836), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5838), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5836), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5836), - [anon_sym_BSLASHcolor] = ACTIONS(5836), - [anon_sym_BSLASHcolorbox] = ACTIONS(5836), - [anon_sym_BSLASHtextcolor] = ACTIONS(5836), - [anon_sym_BSLASHpagecolor] = ACTIONS(5836), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5836), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5836), - [anon_sym_BSLASHtext] = ACTIONS(5836), - [anon_sym_BSLASHintertext] = ACTIONS(5836), - [anon_sym_shortintertext] = ACTIONS(5836), - }, - [763] = { - [sym__section_part] = STATE(1195), - [sym_curly_group] = STATE(1196), - [sym_brack_group] = STATE(2690), - [sym_command_name] = ACTIONS(5832), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5832), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5834), - [anon_sym_COMMA] = ACTIONS(5834), - [anon_sym_EQ] = ACTIONS(5834), - [anon_sym_LPAREN] = ACTIONS(5834), - [anon_sym_RPAREN] = ACTIONS(5834), - [anon_sym_BSLASHpart] = ACTIONS(5832), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddpart] = ACTIONS(5832), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5834), - [anon_sym_BSLASHchapter] = ACTIONS(5832), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddchap] = ACTIONS(5832), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsection] = ACTIONS(5832), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddsec] = ACTIONS(5832), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubsection] = ACTIONS(5832), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5832), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHparagraph] = ACTIONS(5832), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5832), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5834), - [anon_sym_BSLASHitem] = ACTIONS(5832), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5834), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(5832), - [sym_placeholder] = ACTIONS(5834), - [anon_sym_PLUS] = ACTIONS(5834), - [anon_sym_DASH] = ACTIONS(5834), - [anon_sym_STAR] = ACTIONS(5834), - [anon_sym_SLASH] = ACTIONS(5834), - [anon_sym_LT] = ACTIONS(5832), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_BANG] = ACTIONS(5832), - [anon_sym_PIPE] = ACTIONS(5832), - [anon_sym_COLON] = ACTIONS(5832), - [anon_sym_SQUOTE] = ACTIONS(5832), - [anon_sym__] = ACTIONS(5834), - [anon_sym_CARET] = ACTIONS(5834), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5834), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5834), - [anon_sym_DOLLAR] = ACTIONS(5832), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5834), - [anon_sym_BSLASHbegin] = ACTIONS(5832), - [anon_sym_BSLASHend] = ACTIONS(5832), - [anon_sym_BSLASHtitle] = ACTIONS(5832), - [anon_sym_BSLASHauthor] = ACTIONS(5832), - [anon_sym_BSLASHusepackage] = ACTIONS(5832), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5832), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5832), - [anon_sym_BSLASHinclude] = ACTIONS(5832), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5832), - [anon_sym_BSLASHinput] = ACTIONS(5832), - [anon_sym_BSLASHsubfile] = ACTIONS(5832), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5832), - [anon_sym_BSLASHbibliography] = ACTIONS(5832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5832), - [anon_sym_BSLASHincludesvg] = ACTIONS(5832), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5832), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5832), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5832), - [anon_sym_BSLASHimport] = ACTIONS(5832), - [anon_sym_BSLASHsubimport] = ACTIONS(5832), - [anon_sym_BSLASHinputfrom] = ACTIONS(5832), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5832), - [anon_sym_BSLASHincludefrom] = ACTIONS(5832), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5832), - [anon_sym_BSLASHcaption] = ACTIONS(5832), - [anon_sym_BSLASHcite] = ACTIONS(5832), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCite] = ACTIONS(5832), - [anon_sym_BSLASHnocite] = ACTIONS(5832), - [anon_sym_BSLASHcitet] = ACTIONS(5832), - [anon_sym_BSLASHcitep] = ACTIONS(5832), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteauthor] = ACTIONS(5832), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5832), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitetitle] = ACTIONS(5832), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteyear] = ACTIONS(5832), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitedate] = ACTIONS(5832), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteurl] = ACTIONS(5832), - [anon_sym_BSLASHfullcite] = ACTIONS(5832), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5832), - [anon_sym_BSLASHcitealt] = ACTIONS(5832), - [anon_sym_BSLASHcitealp] = ACTIONS(5832), - [anon_sym_BSLASHcitetext] = ACTIONS(5832), - [anon_sym_BSLASHparencite] = ACTIONS(5832), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHParencite] = ACTIONS(5832), - [anon_sym_BSLASHfootcite] = ACTIONS(5832), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5832), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5832), - [anon_sym_BSLASHtextcite] = ACTIONS(5832), - [anon_sym_BSLASHTextcite] = ACTIONS(5832), - [anon_sym_BSLASHsmartcite] = ACTIONS(5832), - [anon_sym_BSLASHSmartcite] = ACTIONS(5832), - [anon_sym_BSLASHsupercite] = ACTIONS(5832), - [anon_sym_BSLASHautocite] = ACTIONS(5832), - [anon_sym_BSLASHAutocite] = ACTIONS(5832), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHvolcite] = ACTIONS(5832), - [anon_sym_BSLASHVolcite] = ACTIONS(5832), - [anon_sym_BSLASHpvolcite] = ACTIONS(5832), - [anon_sym_BSLASHPvolcite] = ACTIONS(5832), - [anon_sym_BSLASHfvolcite] = ACTIONS(5832), - [anon_sym_BSLASHftvolcite] = ACTIONS(5832), - [anon_sym_BSLASHsvolcite] = ACTIONS(5832), - [anon_sym_BSLASHSvolcite] = ACTIONS(5832), - [anon_sym_BSLASHtvolcite] = ACTIONS(5832), - [anon_sym_BSLASHTvolcite] = ACTIONS(5832), - [anon_sym_BSLASHavolcite] = ACTIONS(5832), - [anon_sym_BSLASHAvolcite] = ACTIONS(5832), - [anon_sym_BSLASHnotecite] = ACTIONS(5832), - [anon_sym_BSLASHNotecite] = ACTIONS(5832), - [anon_sym_BSLASHpnotecite] = ACTIONS(5832), - [anon_sym_BSLASHPnotecite] = ACTIONS(5832), - [anon_sym_BSLASHfnotecite] = ACTIONS(5832), - [anon_sym_BSLASHlabel] = ACTIONS(5832), - [anon_sym_BSLASHref] = ACTIONS(5832), - [anon_sym_BSLASHeqref] = ACTIONS(5832), - [anon_sym_BSLASHvref] = ACTIONS(5832), - [anon_sym_BSLASHVref] = ACTIONS(5832), - [anon_sym_BSLASHautoref] = ACTIONS(5832), - [anon_sym_BSLASHpageref] = ACTIONS(5832), - [anon_sym_BSLASHcref] = ACTIONS(5832), - [anon_sym_BSLASHCref] = ACTIONS(5832), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5834), - [anon_sym_BSLASHnamecref] = ACTIONS(5832), - [anon_sym_BSLASHnameCref] = ACTIONS(5832), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5832), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5832), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5832), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5832), - [anon_sym_BSLASHlabelcref] = ACTIONS(5832), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5832), - [anon_sym_BSLASHcrefrange] = ACTIONS(5832), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCrefrange] = ACTIONS(5832), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5834), - [anon_sym_BSLASHnewlabel] = ACTIONS(5832), - [anon_sym_BSLASHnewcommand] = ACTIONS(5832), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5832), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5832), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5834), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHdef] = ACTIONS(5832), - [anon_sym_BSLASHlet] = ACTIONS(5832), - [anon_sym_BSLASHleft] = ACTIONS(5832), - [anon_sym_BSLASHbig] = ACTIONS(5832), - [anon_sym_BSLASHBig] = ACTIONS(5832), - [anon_sym_BSLASHbigg] = ACTIONS(5832), - [anon_sym_BSLASHBigg] = ACTIONS(5832), - [anon_sym_BSLASHbigl] = ACTIONS(5832), - [anon_sym_BSLASHBigl] = ACTIONS(5832), - [anon_sym_BSLASHbiggl] = ACTIONS(5832), - [anon_sym_BSLASHBiggl] = ACTIONS(5832), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5832), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5832), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5832), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5832), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5832), - [anon_sym_BSLASHgls] = ACTIONS(5832), - [anon_sym_BSLASHGls] = ACTIONS(5832), - [anon_sym_BSLASHGLS] = ACTIONS(5832), - [anon_sym_BSLASHglspl] = ACTIONS(5832), - [anon_sym_BSLASHGlspl] = ACTIONS(5832), - [anon_sym_BSLASHGLSpl] = ACTIONS(5832), - [anon_sym_BSLASHglsdisp] = ACTIONS(5832), - [anon_sym_BSLASHglslink] = ACTIONS(5832), - [anon_sym_BSLASHglstext] = ACTIONS(5832), - [anon_sym_BSLASHGlstext] = ACTIONS(5832), - [anon_sym_BSLASHGLStext] = ACTIONS(5832), - [anon_sym_BSLASHglsfirst] = ACTIONS(5832), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5832), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5832), - [anon_sym_BSLASHglsplural] = ACTIONS(5832), - [anon_sym_BSLASHGlsplural] = ACTIONS(5832), - [anon_sym_BSLASHGLSplural] = ACTIONS(5832), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHglsname] = ACTIONS(5832), - [anon_sym_BSLASHGlsname] = ACTIONS(5832), - [anon_sym_BSLASHGLSname] = ACTIONS(5832), - [anon_sym_BSLASHglssymbol] = ACTIONS(5832), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5832), - [anon_sym_BSLASHglsdesc] = ACTIONS(5832), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5832), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5832), - [anon_sym_BSLASHglsuseri] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5832), - [anon_sym_BSLASHglsuserii] = ACTIONS(5832), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5832), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5832), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5832), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5832), - [anon_sym_BSLASHglsuserv] = ACTIONS(5832), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5832), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5832), - [anon_sym_BSLASHglsuservi] = ACTIONS(5832), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5832), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5832), - [anon_sym_BSLASHnewacronym] = ACTIONS(5832), - [anon_sym_BSLASHacrshort] = ACTIONS(5832), - [anon_sym_BSLASHAcrshort] = ACTIONS(5832), - [anon_sym_BSLASHACRshort] = ACTIONS(5832), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5832), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5832), - [anon_sym_BSLASHacrlong] = ACTIONS(5832), - [anon_sym_BSLASHAcrlong] = ACTIONS(5832), - [anon_sym_BSLASHACRlong] = ACTIONS(5832), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5832), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5832), - [anon_sym_BSLASHacrfull] = ACTIONS(5832), - [anon_sym_BSLASHAcrfull] = ACTIONS(5832), - [anon_sym_BSLASHACRfull] = ACTIONS(5832), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5832), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5832), - [anon_sym_BSLASHacs] = ACTIONS(5832), - [anon_sym_BSLASHAcs] = ACTIONS(5832), - [anon_sym_BSLASHacsp] = ACTIONS(5832), - [anon_sym_BSLASHAcsp] = ACTIONS(5832), - [anon_sym_BSLASHacl] = ACTIONS(5832), - [anon_sym_BSLASHAcl] = ACTIONS(5832), - [anon_sym_BSLASHaclp] = ACTIONS(5832), - [anon_sym_BSLASHAclp] = ACTIONS(5832), - [anon_sym_BSLASHacf] = ACTIONS(5832), - [anon_sym_BSLASHAcf] = ACTIONS(5832), - [anon_sym_BSLASHacfp] = ACTIONS(5832), - [anon_sym_BSLASHAcfp] = ACTIONS(5832), - [anon_sym_BSLASHac] = ACTIONS(5832), - [anon_sym_BSLASHAc] = ACTIONS(5832), - [anon_sym_BSLASHacp] = ACTIONS(5832), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5832), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5832), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5832), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5832), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5832), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5832), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5832), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5834), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5832), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5834), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5832), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5832), - [anon_sym_BSLASHcolor] = ACTIONS(5832), - [anon_sym_BSLASHcolorbox] = ACTIONS(5832), - [anon_sym_BSLASHtextcolor] = ACTIONS(5832), - [anon_sym_BSLASHpagecolor] = ACTIONS(5832), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5832), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5832), - [anon_sym_BSLASHtext] = ACTIONS(5832), - [anon_sym_BSLASHintertext] = ACTIONS(5832), - [anon_sym_shortintertext] = ACTIONS(5832), - }, - [764] = { - [sym__section_part] = STATE(1197), - [sym_curly_group] = STATE(1196), - [sym_brack_group] = STATE(2690), - [sym_command_name] = ACTIONS(5828), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5828), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5830), - [anon_sym_COMMA] = ACTIONS(5830), - [anon_sym_EQ] = ACTIONS(5830), - [anon_sym_LPAREN] = ACTIONS(5830), - [anon_sym_RPAREN] = ACTIONS(5830), - [anon_sym_BSLASHpart] = ACTIONS(5828), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddpart] = ACTIONS(5828), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5830), - [anon_sym_BSLASHchapter] = ACTIONS(5828), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddchap] = ACTIONS(5828), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsection] = ACTIONS(5828), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddsec] = ACTIONS(5828), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubsection] = ACTIONS(5828), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5828), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHparagraph] = ACTIONS(5828), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5828), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5830), - [anon_sym_BSLASHitem] = ACTIONS(5828), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5830), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(5828), - [sym_placeholder] = ACTIONS(5830), - [anon_sym_PLUS] = ACTIONS(5830), - [anon_sym_DASH] = ACTIONS(5830), - [anon_sym_STAR] = ACTIONS(5830), - [anon_sym_SLASH] = ACTIONS(5830), - [anon_sym_LT] = ACTIONS(5828), - [anon_sym_GT] = ACTIONS(5828), - [anon_sym_BANG] = ACTIONS(5828), - [anon_sym_PIPE] = ACTIONS(5828), - [anon_sym_COLON] = ACTIONS(5828), - [anon_sym_SQUOTE] = ACTIONS(5828), - [anon_sym__] = ACTIONS(5830), - [anon_sym_CARET] = ACTIONS(5830), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5830), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5830), - [anon_sym_DOLLAR] = ACTIONS(5828), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5830), - [anon_sym_BSLASHbegin] = ACTIONS(5828), - [anon_sym_BSLASHend] = ACTIONS(5828), - [anon_sym_BSLASHtitle] = ACTIONS(5828), - [anon_sym_BSLASHauthor] = ACTIONS(5828), - [anon_sym_BSLASHusepackage] = ACTIONS(5828), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5828), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5828), - [anon_sym_BSLASHinclude] = ACTIONS(5828), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5828), - [anon_sym_BSLASHinput] = ACTIONS(5828), - [anon_sym_BSLASHsubfile] = ACTIONS(5828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5828), - [anon_sym_BSLASHbibliography] = ACTIONS(5828), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5828), - [anon_sym_BSLASHincludesvg] = ACTIONS(5828), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5828), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5828), - [anon_sym_BSLASHimport] = ACTIONS(5828), - [anon_sym_BSLASHsubimport] = ACTIONS(5828), - [anon_sym_BSLASHinputfrom] = ACTIONS(5828), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5828), - [anon_sym_BSLASHincludefrom] = ACTIONS(5828), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5828), - [anon_sym_BSLASHcaption] = ACTIONS(5828), - [anon_sym_BSLASHcite] = ACTIONS(5828), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCite] = ACTIONS(5828), - [anon_sym_BSLASHnocite] = ACTIONS(5828), - [anon_sym_BSLASHcitet] = ACTIONS(5828), - [anon_sym_BSLASHcitep] = ACTIONS(5828), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteauthor] = ACTIONS(5828), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5828), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitetitle] = ACTIONS(5828), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteyear] = ACTIONS(5828), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitedate] = ACTIONS(5828), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteurl] = ACTIONS(5828), - [anon_sym_BSLASHfullcite] = ACTIONS(5828), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5828), - [anon_sym_BSLASHcitealt] = ACTIONS(5828), - [anon_sym_BSLASHcitealp] = ACTIONS(5828), - [anon_sym_BSLASHcitetext] = ACTIONS(5828), - [anon_sym_BSLASHparencite] = ACTIONS(5828), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHParencite] = ACTIONS(5828), - [anon_sym_BSLASHfootcite] = ACTIONS(5828), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5828), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5828), - [anon_sym_BSLASHtextcite] = ACTIONS(5828), - [anon_sym_BSLASHTextcite] = ACTIONS(5828), - [anon_sym_BSLASHsmartcite] = ACTIONS(5828), - [anon_sym_BSLASHSmartcite] = ACTIONS(5828), - [anon_sym_BSLASHsupercite] = ACTIONS(5828), - [anon_sym_BSLASHautocite] = ACTIONS(5828), - [anon_sym_BSLASHAutocite] = ACTIONS(5828), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHvolcite] = ACTIONS(5828), - [anon_sym_BSLASHVolcite] = ACTIONS(5828), - [anon_sym_BSLASHpvolcite] = ACTIONS(5828), - [anon_sym_BSLASHPvolcite] = ACTIONS(5828), - [anon_sym_BSLASHfvolcite] = ACTIONS(5828), - [anon_sym_BSLASHftvolcite] = ACTIONS(5828), - [anon_sym_BSLASHsvolcite] = ACTIONS(5828), - [anon_sym_BSLASHSvolcite] = ACTIONS(5828), - [anon_sym_BSLASHtvolcite] = ACTIONS(5828), - [anon_sym_BSLASHTvolcite] = ACTIONS(5828), - [anon_sym_BSLASHavolcite] = ACTIONS(5828), - [anon_sym_BSLASHAvolcite] = ACTIONS(5828), - [anon_sym_BSLASHnotecite] = ACTIONS(5828), - [anon_sym_BSLASHNotecite] = ACTIONS(5828), - [anon_sym_BSLASHpnotecite] = ACTIONS(5828), - [anon_sym_BSLASHPnotecite] = ACTIONS(5828), - [anon_sym_BSLASHfnotecite] = ACTIONS(5828), - [anon_sym_BSLASHlabel] = ACTIONS(5828), - [anon_sym_BSLASHref] = ACTIONS(5828), - [anon_sym_BSLASHeqref] = ACTIONS(5828), - [anon_sym_BSLASHvref] = ACTIONS(5828), - [anon_sym_BSLASHVref] = ACTIONS(5828), - [anon_sym_BSLASHautoref] = ACTIONS(5828), - [anon_sym_BSLASHpageref] = ACTIONS(5828), - [anon_sym_BSLASHcref] = ACTIONS(5828), - [anon_sym_BSLASHCref] = ACTIONS(5828), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5830), - [anon_sym_BSLASHnamecref] = ACTIONS(5828), - [anon_sym_BSLASHnameCref] = ACTIONS(5828), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5828), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5828), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5828), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5828), - [anon_sym_BSLASHlabelcref] = ACTIONS(5828), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5828), - [anon_sym_BSLASHcrefrange] = ACTIONS(5828), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCrefrange] = ACTIONS(5828), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5830), - [anon_sym_BSLASHnewlabel] = ACTIONS(5828), - [anon_sym_BSLASHnewcommand] = ACTIONS(5828), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5828), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5828), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5830), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHdef] = ACTIONS(5828), - [anon_sym_BSLASHlet] = ACTIONS(5828), - [anon_sym_BSLASHleft] = ACTIONS(5828), - [anon_sym_BSLASHbig] = ACTIONS(5828), - [anon_sym_BSLASHBig] = ACTIONS(5828), - [anon_sym_BSLASHbigg] = ACTIONS(5828), - [anon_sym_BSLASHBigg] = ACTIONS(5828), - [anon_sym_BSLASHbigl] = ACTIONS(5828), - [anon_sym_BSLASHBigl] = ACTIONS(5828), - [anon_sym_BSLASHbiggl] = ACTIONS(5828), - [anon_sym_BSLASHBiggl] = ACTIONS(5828), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5828), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5828), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5828), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5828), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5828), - [anon_sym_BSLASHgls] = ACTIONS(5828), - [anon_sym_BSLASHGls] = ACTIONS(5828), - [anon_sym_BSLASHGLS] = ACTIONS(5828), - [anon_sym_BSLASHglspl] = ACTIONS(5828), - [anon_sym_BSLASHGlspl] = ACTIONS(5828), - [anon_sym_BSLASHGLSpl] = ACTIONS(5828), - [anon_sym_BSLASHglsdisp] = ACTIONS(5828), - [anon_sym_BSLASHglslink] = ACTIONS(5828), - [anon_sym_BSLASHglstext] = ACTIONS(5828), - [anon_sym_BSLASHGlstext] = ACTIONS(5828), - [anon_sym_BSLASHGLStext] = ACTIONS(5828), - [anon_sym_BSLASHglsfirst] = ACTIONS(5828), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5828), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5828), - [anon_sym_BSLASHglsplural] = ACTIONS(5828), - [anon_sym_BSLASHGlsplural] = ACTIONS(5828), - [anon_sym_BSLASHGLSplural] = ACTIONS(5828), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHglsname] = ACTIONS(5828), - [anon_sym_BSLASHGlsname] = ACTIONS(5828), - [anon_sym_BSLASHGLSname] = ACTIONS(5828), - [anon_sym_BSLASHglssymbol] = ACTIONS(5828), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5828), - [anon_sym_BSLASHglsdesc] = ACTIONS(5828), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5828), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5828), - [anon_sym_BSLASHglsuseri] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5828), - [anon_sym_BSLASHglsuserii] = ACTIONS(5828), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5828), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5828), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5828), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5828), - [anon_sym_BSLASHglsuserv] = ACTIONS(5828), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5828), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5828), - [anon_sym_BSLASHglsuservi] = ACTIONS(5828), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5828), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5828), - [anon_sym_BSLASHnewacronym] = ACTIONS(5828), - [anon_sym_BSLASHacrshort] = ACTIONS(5828), - [anon_sym_BSLASHAcrshort] = ACTIONS(5828), - [anon_sym_BSLASHACRshort] = ACTIONS(5828), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5828), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5828), - [anon_sym_BSLASHacrlong] = ACTIONS(5828), - [anon_sym_BSLASHAcrlong] = ACTIONS(5828), - [anon_sym_BSLASHACRlong] = ACTIONS(5828), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5828), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5828), - [anon_sym_BSLASHacrfull] = ACTIONS(5828), - [anon_sym_BSLASHAcrfull] = ACTIONS(5828), - [anon_sym_BSLASHACRfull] = ACTIONS(5828), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5828), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5828), - [anon_sym_BSLASHacs] = ACTIONS(5828), - [anon_sym_BSLASHAcs] = ACTIONS(5828), - [anon_sym_BSLASHacsp] = ACTIONS(5828), - [anon_sym_BSLASHAcsp] = ACTIONS(5828), - [anon_sym_BSLASHacl] = ACTIONS(5828), - [anon_sym_BSLASHAcl] = ACTIONS(5828), - [anon_sym_BSLASHaclp] = ACTIONS(5828), - [anon_sym_BSLASHAclp] = ACTIONS(5828), - [anon_sym_BSLASHacf] = ACTIONS(5828), - [anon_sym_BSLASHAcf] = ACTIONS(5828), - [anon_sym_BSLASHacfp] = ACTIONS(5828), - [anon_sym_BSLASHAcfp] = ACTIONS(5828), - [anon_sym_BSLASHac] = ACTIONS(5828), - [anon_sym_BSLASHAc] = ACTIONS(5828), - [anon_sym_BSLASHacp] = ACTIONS(5828), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5828), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5828), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5828), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5828), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5828), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5828), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5828), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5830), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5828), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5830), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5828), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5828), - [anon_sym_BSLASHcolor] = ACTIONS(5828), - [anon_sym_BSLASHcolorbox] = ACTIONS(5828), - [anon_sym_BSLASHtextcolor] = ACTIONS(5828), - [anon_sym_BSLASHpagecolor] = ACTIONS(5828), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5828), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5828), - [anon_sym_BSLASHtext] = ACTIONS(5828), - [anon_sym_BSLASHintertext] = ACTIONS(5828), - [anon_sym_shortintertext] = ACTIONS(5828), - }, - [765] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(2230), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(2230), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2232), - [sym_word] = ACTIONS(2230), - [sym_placeholder] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_COLON] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym__] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2232), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2232), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2232), - [anon_sym_BSLASHbegin] = ACTIONS(2230), - [anon_sym_BSLASHtitle] = ACTIONS(2230), - [anon_sym_BSLASHauthor] = ACTIONS(2230), - [anon_sym_BSLASHusepackage] = ACTIONS(2230), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2230), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2230), - [anon_sym_BSLASHinclude] = ACTIONS(2230), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2230), - [anon_sym_BSLASHinput] = ACTIONS(2230), - [anon_sym_BSLASHsubfile] = ACTIONS(2230), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2230), - [anon_sym_BSLASHbibliography] = ACTIONS(2230), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2230), - [anon_sym_BSLASHincludesvg] = ACTIONS(2230), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2230), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2230), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2230), - [anon_sym_BSLASHimport] = ACTIONS(2230), - [anon_sym_BSLASHsubimport] = ACTIONS(2230), - [anon_sym_BSLASHinputfrom] = ACTIONS(2230), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2230), - [anon_sym_BSLASHincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHcaption] = ACTIONS(2230), - [anon_sym_BSLASHcite] = ACTIONS(2230), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCite] = ACTIONS(2230), - [anon_sym_BSLASHnocite] = ACTIONS(2230), - [anon_sym_BSLASHcitet] = ACTIONS(2230), - [anon_sym_BSLASHcitep] = ACTIONS(2230), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteauthor] = ACTIONS(2230), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2230), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitetitle] = ACTIONS(2230), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteyear] = ACTIONS(2230), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitedate] = ACTIONS(2230), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteurl] = ACTIONS(2230), - [anon_sym_BSLASHfullcite] = ACTIONS(2230), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2230), - [anon_sym_BSLASHcitealt] = ACTIONS(2230), - [anon_sym_BSLASHcitealp] = ACTIONS(2230), - [anon_sym_BSLASHcitetext] = ACTIONS(2230), - [anon_sym_BSLASHparencite] = ACTIONS(2230), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHParencite] = ACTIONS(2230), - [anon_sym_BSLASHfootcite] = ACTIONS(2230), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2230), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2230), - [anon_sym_BSLASHtextcite] = ACTIONS(2230), - [anon_sym_BSLASHTextcite] = ACTIONS(2230), - [anon_sym_BSLASHsmartcite] = ACTIONS(2230), - [anon_sym_BSLASHSmartcite] = ACTIONS(2230), - [anon_sym_BSLASHsupercite] = ACTIONS(2230), - [anon_sym_BSLASHautocite] = ACTIONS(2230), - [anon_sym_BSLASHAutocite] = ACTIONS(2230), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHvolcite] = ACTIONS(2230), - [anon_sym_BSLASHVolcite] = ACTIONS(2230), - [anon_sym_BSLASHpvolcite] = ACTIONS(2230), - [anon_sym_BSLASHPvolcite] = ACTIONS(2230), - [anon_sym_BSLASHfvolcite] = ACTIONS(2230), - [anon_sym_BSLASHftvolcite] = ACTIONS(2230), - [anon_sym_BSLASHsvolcite] = ACTIONS(2230), - [anon_sym_BSLASHSvolcite] = ACTIONS(2230), - [anon_sym_BSLASHtvolcite] = ACTIONS(2230), - [anon_sym_BSLASHTvolcite] = ACTIONS(2230), - [anon_sym_BSLASHavolcite] = ACTIONS(2230), - [anon_sym_BSLASHAvolcite] = ACTIONS(2230), - [anon_sym_BSLASHnotecite] = ACTIONS(2230), - [anon_sym_BSLASHNotecite] = ACTIONS(2230), - [anon_sym_BSLASHpnotecite] = ACTIONS(2230), - [anon_sym_BSLASHPnotecite] = ACTIONS(2230), - [anon_sym_BSLASHfnotecite] = ACTIONS(2230), - [anon_sym_BSLASHlabel] = ACTIONS(2230), - [anon_sym_BSLASHref] = ACTIONS(2230), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [anon_sym_BSLASHvref] = ACTIONS(2230), - [anon_sym_BSLASHVref] = ACTIONS(2230), - [anon_sym_BSLASHautoref] = ACTIONS(2230), - [anon_sym_BSLASHpageref] = ACTIONS(2230), - [anon_sym_BSLASHcref] = ACTIONS(2230), - [anon_sym_BSLASHCref] = ACTIONS(2230), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnameCref] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHlabelcref] = ACTIONS(2230), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCrefrange] = ACTIONS(2230), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2230), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2230), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2232), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHdef] = ACTIONS(2230), - [anon_sym_BSLASHlet] = ACTIONS(2230), - [anon_sym_BSLASHleft] = ACTIONS(2230), - [anon_sym_BSLASHbig] = ACTIONS(2230), - [anon_sym_BSLASHBig] = ACTIONS(2230), - [anon_sym_BSLASHbigg] = ACTIONS(2230), - [anon_sym_BSLASHBigg] = ACTIONS(2230), - [anon_sym_BSLASHbigl] = ACTIONS(2230), - [anon_sym_BSLASHBigl] = ACTIONS(2230), - [anon_sym_BSLASHbiggl] = ACTIONS(2230), - [anon_sym_BSLASHBiggl] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2230), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2230), - [anon_sym_BSLASHgls] = ACTIONS(2230), - [anon_sym_BSLASHGls] = ACTIONS(2230), - [anon_sym_BSLASHGLS] = ACTIONS(2230), - [anon_sym_BSLASHglspl] = ACTIONS(2230), - [anon_sym_BSLASHGlspl] = ACTIONS(2230), - [anon_sym_BSLASHGLSpl] = ACTIONS(2230), - [anon_sym_BSLASHglsdisp] = ACTIONS(2230), - [anon_sym_BSLASHglslink] = ACTIONS(2230), - [anon_sym_BSLASHglstext] = ACTIONS(2230), - [anon_sym_BSLASHGlstext] = ACTIONS(2230), - [anon_sym_BSLASHGLStext] = ACTIONS(2230), - [anon_sym_BSLASHglsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2230), - [anon_sym_BSLASHglsplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSplural] = ACTIONS(2230), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHglsname] = ACTIONS(2230), - [anon_sym_BSLASHGlsname] = ACTIONS(2230), - [anon_sym_BSLASHGLSname] = ACTIONS(2230), - [anon_sym_BSLASHglssymbol] = ACTIONS(2230), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2230), - [anon_sym_BSLASHglsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2230), - [anon_sym_BSLASHglsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2230), - [anon_sym_BSLASHglsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2230), - [anon_sym_BSLASHglsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2230), - [anon_sym_BSLASHglsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2230), - [anon_sym_BSLASHnewacronym] = ACTIONS(2230), - [anon_sym_BSLASHacrshort] = ACTIONS(2230), - [anon_sym_BSLASHAcrshort] = ACTIONS(2230), - [anon_sym_BSLASHACRshort] = ACTIONS(2230), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2230), - [anon_sym_BSLASHacrlong] = ACTIONS(2230), - [anon_sym_BSLASHAcrlong] = ACTIONS(2230), - [anon_sym_BSLASHACRlong] = ACTIONS(2230), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2230), - [anon_sym_BSLASHacrfull] = ACTIONS(2230), - [anon_sym_BSLASHAcrfull] = ACTIONS(2230), - [anon_sym_BSLASHACRfull] = ACTIONS(2230), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2230), - [anon_sym_BSLASHacs] = ACTIONS(2230), - [anon_sym_BSLASHAcs] = ACTIONS(2230), - [anon_sym_BSLASHacsp] = ACTIONS(2230), - [anon_sym_BSLASHAcsp] = ACTIONS(2230), - [anon_sym_BSLASHacl] = ACTIONS(2230), - [anon_sym_BSLASHAcl] = ACTIONS(2230), - [anon_sym_BSLASHaclp] = ACTIONS(2230), - [anon_sym_BSLASHAclp] = ACTIONS(2230), - [anon_sym_BSLASHacf] = ACTIONS(2230), - [anon_sym_BSLASHAcf] = ACTIONS(2230), - [anon_sym_BSLASHacfp] = ACTIONS(2230), - [anon_sym_BSLASHAcfp] = ACTIONS(2230), - [anon_sym_BSLASHac] = ACTIONS(2230), - [anon_sym_BSLASHAc] = ACTIONS(2230), - [anon_sym_BSLASHacp] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2230), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2230), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2230), - [anon_sym_BSLASHcolor] = ACTIONS(2230), - [anon_sym_BSLASHcolorbox] = ACTIONS(2230), - [anon_sym_BSLASHtextcolor] = ACTIONS(2230), - [anon_sym_BSLASHpagecolor] = ACTIONS(2230), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2230), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2230), - [anon_sym_BSLASHtext] = ACTIONS(2230), - [anon_sym_BSLASHintertext] = ACTIONS(2230), - [anon_sym_shortintertext] = ACTIONS(2230), - }, - [766] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(2220), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2220), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [767] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(2220), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(2220), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [768] = { - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(733), - [aux_sym__section_repeat6] = STATE(733), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2220), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHitem] = ACTIONS(2220), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [769] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [770] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [771] = { - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(733), - [aux_sym__section_repeat6] = STATE(733), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [772] = { - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(812), - [aux_sym__section_repeat2] = STATE(812), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [773] = { - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(813), - [aux_sym__section_repeat3] = STATE(813), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [774] = { - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(814), - [aux_sym__section_repeat4] = STATE(814), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [775] = { - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(815), - [aux_sym__section_repeat5] = STATE(815), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [776] = { - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(816), - [aux_sym__section_repeat6] = STATE(816), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [777] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [778] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [779] = { - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(736), - [aux_sym__section_repeat3] = STATE(736), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [780] = { - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(813), - [aux_sym__section_repeat3] = STATE(813), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [781] = { - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(814), - [aux_sym__section_repeat4] = STATE(814), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [782] = { - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(815), - [aux_sym__section_repeat5] = STATE(815), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [783] = { - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(816), - [aux_sym__section_repeat6] = STATE(816), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [784] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [785] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [786] = { - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(733), - [aux_sym__section_repeat6] = STATE(733), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [787] = { - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(814), - [aux_sym__section_repeat4] = STATE(814), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [788] = { - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(815), - [aux_sym__section_repeat5] = STATE(815), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [789] = { - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(816), - [aux_sym__section_repeat6] = STATE(816), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [790] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [791] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [792] = { - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(734), - [aux_sym__section_repeat5] = STATE(734), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [793] = { - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(815), - [aux_sym__section_repeat5] = STATE(815), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [794] = { - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(816), - [aux_sym__section_repeat6] = STATE(816), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [795] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [796] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [797] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [798] = { - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(816), - [aux_sym__section_repeat6] = STATE(816), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2220), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHitem] = ACTIONS(2220), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [799] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(2220), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(2220), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2222), - [anon_sym_LBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [800] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(2220), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_RBRACK] = ACTIONS(2222), - [anon_sym_COMMA] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHpart] = ACTIONS(2220), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddpart] = ACTIONS(2220), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2222), - [anon_sym_BSLASHchapter] = ACTIONS(2220), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddchap] = ACTIONS(2220), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsection] = ACTIONS(2220), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHaddsec] = ACTIONS(2220), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2220), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2222), - [anon_sym_BSLASHparagraph] = ACTIONS(2220), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2220), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2222), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(2222), - [sym_word] = ACTIONS(2220), - [sym_placeholder] = ACTIONS(2222), - [anon_sym_PLUS] = ACTIONS(2222), - [anon_sym_DASH] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_COLON] = ACTIONS(2220), - [anon_sym_SQUOTE] = ACTIONS(2220), - [anon_sym__] = ACTIONS(2222), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2222), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2222), - [anon_sym_DOLLAR] = ACTIONS(2220), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2222), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2222), - [anon_sym_BSLASHbegin] = ACTIONS(2220), - [anon_sym_BSLASHtitle] = ACTIONS(2220), - [anon_sym_BSLASHauthor] = ACTIONS(2220), - [anon_sym_BSLASHusepackage] = ACTIONS(2220), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2220), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2220), - [anon_sym_BSLASHinclude] = ACTIONS(2220), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2220), - [anon_sym_BSLASHinput] = ACTIONS(2220), - [anon_sym_BSLASHsubfile] = ACTIONS(2220), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2220), - [anon_sym_BSLASHbibliography] = ACTIONS(2220), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2220), - [anon_sym_BSLASHincludesvg] = ACTIONS(2220), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2220), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2220), - [anon_sym_BSLASHimport] = ACTIONS(2220), - [anon_sym_BSLASHsubimport] = ACTIONS(2220), - [anon_sym_BSLASHinputfrom] = ACTIONS(2220), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2220), - [anon_sym_BSLASHincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2220), - [anon_sym_BSLASHcaption] = ACTIONS(2220), - [anon_sym_BSLASHcite] = ACTIONS(2220), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCite] = ACTIONS(2220), - [anon_sym_BSLASHnocite] = ACTIONS(2220), - [anon_sym_BSLASHcitet] = ACTIONS(2220), - [anon_sym_BSLASHcitep] = ACTIONS(2220), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteauthor] = ACTIONS(2220), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2220), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitetitle] = ACTIONS(2220), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteyear] = ACTIONS(2220), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2222), - [anon_sym_BSLASHcitedate] = ACTIONS(2220), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2222), - [anon_sym_BSLASHciteurl] = ACTIONS(2220), - [anon_sym_BSLASHfullcite] = ACTIONS(2220), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2220), - [anon_sym_BSLASHcitealt] = ACTIONS(2220), - [anon_sym_BSLASHcitealp] = ACTIONS(2220), - [anon_sym_BSLASHcitetext] = ACTIONS(2220), - [anon_sym_BSLASHparencite] = ACTIONS(2220), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHParencite] = ACTIONS(2220), - [anon_sym_BSLASHfootcite] = ACTIONS(2220), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2220), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2220), - [anon_sym_BSLASHtextcite] = ACTIONS(2220), - [anon_sym_BSLASHTextcite] = ACTIONS(2220), - [anon_sym_BSLASHsmartcite] = ACTIONS(2220), - [anon_sym_BSLASHSmartcite] = ACTIONS(2220), - [anon_sym_BSLASHsupercite] = ACTIONS(2220), - [anon_sym_BSLASHautocite] = ACTIONS(2220), - [anon_sym_BSLASHAutocite] = ACTIONS(2220), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2222), - [anon_sym_BSLASHvolcite] = ACTIONS(2220), - [anon_sym_BSLASHVolcite] = ACTIONS(2220), - [anon_sym_BSLASHpvolcite] = ACTIONS(2220), - [anon_sym_BSLASHPvolcite] = ACTIONS(2220), - [anon_sym_BSLASHfvolcite] = ACTIONS(2220), - [anon_sym_BSLASHftvolcite] = ACTIONS(2220), - [anon_sym_BSLASHsvolcite] = ACTIONS(2220), - [anon_sym_BSLASHSvolcite] = ACTIONS(2220), - [anon_sym_BSLASHtvolcite] = ACTIONS(2220), - [anon_sym_BSLASHTvolcite] = ACTIONS(2220), - [anon_sym_BSLASHavolcite] = ACTIONS(2220), - [anon_sym_BSLASHAvolcite] = ACTIONS(2220), - [anon_sym_BSLASHnotecite] = ACTIONS(2220), - [anon_sym_BSLASHNotecite] = ACTIONS(2220), - [anon_sym_BSLASHpnotecite] = ACTIONS(2220), - [anon_sym_BSLASHPnotecite] = ACTIONS(2220), - [anon_sym_BSLASHfnotecite] = ACTIONS(2220), - [anon_sym_BSLASHlabel] = ACTIONS(2220), - [anon_sym_BSLASHref] = ACTIONS(2220), - [anon_sym_BSLASHeqref] = ACTIONS(2220), - [anon_sym_BSLASHvref] = ACTIONS(2220), - [anon_sym_BSLASHVref] = ACTIONS(2220), - [anon_sym_BSLASHautoref] = ACTIONS(2220), - [anon_sym_BSLASHpageref] = ACTIONS(2220), - [anon_sym_BSLASHcref] = ACTIONS(2220), - [anon_sym_BSLASHCref] = ACTIONS(2220), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnameCref] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2220), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2220), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2220), - [anon_sym_BSLASHlabelcref] = ACTIONS(2220), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange] = ACTIONS(2220), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHCrefrange] = ACTIONS(2220), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2222), - [anon_sym_BSLASHnewlabel] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand] = ACTIONS(2220), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2220), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2222), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2220), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2222), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2220), - [anon_sym_BSLASHdef] = ACTIONS(2220), - [anon_sym_BSLASHlet] = ACTIONS(2220), - [anon_sym_BSLASHleft] = ACTIONS(2220), - [anon_sym_BSLASHbig] = ACTIONS(2220), - [anon_sym_BSLASHBig] = ACTIONS(2220), - [anon_sym_BSLASHbigg] = ACTIONS(2220), - [anon_sym_BSLASHBigg] = ACTIONS(2220), - [anon_sym_BSLASHbigl] = ACTIONS(2220), - [anon_sym_BSLASHBigl] = ACTIONS(2220), - [anon_sym_BSLASHbiggl] = ACTIONS(2220), - [anon_sym_BSLASHBiggl] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2220), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2220), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2220), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2220), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2220), - [anon_sym_BSLASHgls] = ACTIONS(2220), - [anon_sym_BSLASHGls] = ACTIONS(2220), - [anon_sym_BSLASHGLS] = ACTIONS(2220), - [anon_sym_BSLASHglspl] = ACTIONS(2220), - [anon_sym_BSLASHGlspl] = ACTIONS(2220), - [anon_sym_BSLASHGLSpl] = ACTIONS(2220), - [anon_sym_BSLASHglsdisp] = ACTIONS(2220), - [anon_sym_BSLASHglslink] = ACTIONS(2220), - [anon_sym_BSLASHglstext] = ACTIONS(2220), - [anon_sym_BSLASHGlstext] = ACTIONS(2220), - [anon_sym_BSLASHGLStext] = ACTIONS(2220), - [anon_sym_BSLASHglsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2220), - [anon_sym_BSLASHglsplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSplural] = ACTIONS(2220), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2220), - [anon_sym_BSLASHglsname] = ACTIONS(2220), - [anon_sym_BSLASHGlsname] = ACTIONS(2220), - [anon_sym_BSLASHGLSname] = ACTIONS(2220), - [anon_sym_BSLASHglssymbol] = ACTIONS(2220), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2220), - [anon_sym_BSLASHglsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2220), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2220), - [anon_sym_BSLASHglsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2220), - [anon_sym_BSLASHglsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2220), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2220), - [anon_sym_BSLASHglsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2220), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2220), - [anon_sym_BSLASHglsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2220), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2220), - [anon_sym_BSLASHnewacronym] = ACTIONS(2220), - [anon_sym_BSLASHacrshort] = ACTIONS(2220), - [anon_sym_BSLASHAcrshort] = ACTIONS(2220), - [anon_sym_BSLASHACRshort] = ACTIONS(2220), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2220), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2220), - [anon_sym_BSLASHacrlong] = ACTIONS(2220), - [anon_sym_BSLASHAcrlong] = ACTIONS(2220), - [anon_sym_BSLASHACRlong] = ACTIONS(2220), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2220), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2220), - [anon_sym_BSLASHacrfull] = ACTIONS(2220), - [anon_sym_BSLASHAcrfull] = ACTIONS(2220), - [anon_sym_BSLASHACRfull] = ACTIONS(2220), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2220), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2220), - [anon_sym_BSLASHacs] = ACTIONS(2220), - [anon_sym_BSLASHAcs] = ACTIONS(2220), - [anon_sym_BSLASHacsp] = ACTIONS(2220), - [anon_sym_BSLASHAcsp] = ACTIONS(2220), - [anon_sym_BSLASHacl] = ACTIONS(2220), - [anon_sym_BSLASHAcl] = ACTIONS(2220), - [anon_sym_BSLASHaclp] = ACTIONS(2220), - [anon_sym_BSLASHAclp] = ACTIONS(2220), - [anon_sym_BSLASHacf] = ACTIONS(2220), - [anon_sym_BSLASHAcf] = ACTIONS(2220), - [anon_sym_BSLASHacfp] = ACTIONS(2220), - [anon_sym_BSLASHAcfp] = ACTIONS(2220), - [anon_sym_BSLASHac] = ACTIONS(2220), - [anon_sym_BSLASHAc] = ACTIONS(2220), - [anon_sym_BSLASHacp] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2220), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2220), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2220), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2220), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2220), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2222), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2220), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2220), - [anon_sym_BSLASHcolor] = ACTIONS(2220), - [anon_sym_BSLASHcolorbox] = ACTIONS(2220), - [anon_sym_BSLASHtextcolor] = ACTIONS(2220), - [anon_sym_BSLASHpagecolor] = ACTIONS(2220), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2220), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2220), - [anon_sym_BSLASHtext] = ACTIONS(2220), - [anon_sym_BSLASHintertext] = ACTIONS(2220), - [anon_sym_shortintertext] = ACTIONS(2220), - }, - [801] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [802] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(2230), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(2230), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2232), - [sym_word] = ACTIONS(2230), - [sym_placeholder] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_COLON] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym__] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2232), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2232), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHbegin] = ACTIONS(2230), - [anon_sym_BSLASHtitle] = ACTIONS(2230), - [anon_sym_BSLASHauthor] = ACTIONS(2230), - [anon_sym_BSLASHusepackage] = ACTIONS(2230), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2230), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2230), - [anon_sym_BSLASHinclude] = ACTIONS(2230), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2230), - [anon_sym_BSLASHinput] = ACTIONS(2230), - [anon_sym_BSLASHsubfile] = ACTIONS(2230), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2230), - [anon_sym_BSLASHbibliography] = ACTIONS(2230), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2230), - [anon_sym_BSLASHincludesvg] = ACTIONS(2230), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2230), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2230), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2230), - [anon_sym_BSLASHimport] = ACTIONS(2230), - [anon_sym_BSLASHsubimport] = ACTIONS(2230), - [anon_sym_BSLASHinputfrom] = ACTIONS(2230), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2230), - [anon_sym_BSLASHincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHcaption] = ACTIONS(2230), - [anon_sym_BSLASHcite] = ACTIONS(2230), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCite] = ACTIONS(2230), - [anon_sym_BSLASHnocite] = ACTIONS(2230), - [anon_sym_BSLASHcitet] = ACTIONS(2230), - [anon_sym_BSLASHcitep] = ACTIONS(2230), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteauthor] = ACTIONS(2230), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2230), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitetitle] = ACTIONS(2230), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteyear] = ACTIONS(2230), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitedate] = ACTIONS(2230), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteurl] = ACTIONS(2230), - [anon_sym_BSLASHfullcite] = ACTIONS(2230), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2230), - [anon_sym_BSLASHcitealt] = ACTIONS(2230), - [anon_sym_BSLASHcitealp] = ACTIONS(2230), - [anon_sym_BSLASHcitetext] = ACTIONS(2230), - [anon_sym_BSLASHparencite] = ACTIONS(2230), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHParencite] = ACTIONS(2230), - [anon_sym_BSLASHfootcite] = ACTIONS(2230), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2230), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2230), - [anon_sym_BSLASHtextcite] = ACTIONS(2230), - [anon_sym_BSLASHTextcite] = ACTIONS(2230), - [anon_sym_BSLASHsmartcite] = ACTIONS(2230), - [anon_sym_BSLASHSmartcite] = ACTIONS(2230), - [anon_sym_BSLASHsupercite] = ACTIONS(2230), - [anon_sym_BSLASHautocite] = ACTIONS(2230), - [anon_sym_BSLASHAutocite] = ACTIONS(2230), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHvolcite] = ACTIONS(2230), - [anon_sym_BSLASHVolcite] = ACTIONS(2230), - [anon_sym_BSLASHpvolcite] = ACTIONS(2230), - [anon_sym_BSLASHPvolcite] = ACTIONS(2230), - [anon_sym_BSLASHfvolcite] = ACTIONS(2230), - [anon_sym_BSLASHftvolcite] = ACTIONS(2230), - [anon_sym_BSLASHsvolcite] = ACTIONS(2230), - [anon_sym_BSLASHSvolcite] = ACTIONS(2230), - [anon_sym_BSLASHtvolcite] = ACTIONS(2230), - [anon_sym_BSLASHTvolcite] = ACTIONS(2230), - [anon_sym_BSLASHavolcite] = ACTIONS(2230), - [anon_sym_BSLASHAvolcite] = ACTIONS(2230), - [anon_sym_BSLASHnotecite] = ACTIONS(2230), - [anon_sym_BSLASHNotecite] = ACTIONS(2230), - [anon_sym_BSLASHpnotecite] = ACTIONS(2230), - [anon_sym_BSLASHPnotecite] = ACTIONS(2230), - [anon_sym_BSLASHfnotecite] = ACTIONS(2230), - [anon_sym_BSLASHlabel] = ACTIONS(2230), - [anon_sym_BSLASHref] = ACTIONS(2230), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [anon_sym_BSLASHvref] = ACTIONS(2230), - [anon_sym_BSLASHVref] = ACTIONS(2230), - [anon_sym_BSLASHautoref] = ACTIONS(2230), - [anon_sym_BSLASHpageref] = ACTIONS(2230), - [anon_sym_BSLASHcref] = ACTIONS(2230), - [anon_sym_BSLASHCref] = ACTIONS(2230), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnameCref] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHlabelcref] = ACTIONS(2230), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCrefrange] = ACTIONS(2230), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2230), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2230), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2232), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHdef] = ACTIONS(2230), - [anon_sym_BSLASHlet] = ACTIONS(2230), - [anon_sym_BSLASHleft] = ACTIONS(2230), - [anon_sym_BSLASHbig] = ACTIONS(2230), - [anon_sym_BSLASHBig] = ACTIONS(2230), - [anon_sym_BSLASHbigg] = ACTIONS(2230), - [anon_sym_BSLASHBigg] = ACTIONS(2230), - [anon_sym_BSLASHbigl] = ACTIONS(2230), - [anon_sym_BSLASHBigl] = ACTIONS(2230), - [anon_sym_BSLASHbiggl] = ACTIONS(2230), - [anon_sym_BSLASHBiggl] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2230), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2230), - [anon_sym_BSLASHgls] = ACTIONS(2230), - [anon_sym_BSLASHGls] = ACTIONS(2230), - [anon_sym_BSLASHGLS] = ACTIONS(2230), - [anon_sym_BSLASHglspl] = ACTIONS(2230), - [anon_sym_BSLASHGlspl] = ACTIONS(2230), - [anon_sym_BSLASHGLSpl] = ACTIONS(2230), - [anon_sym_BSLASHglsdisp] = ACTIONS(2230), - [anon_sym_BSLASHglslink] = ACTIONS(2230), - [anon_sym_BSLASHglstext] = ACTIONS(2230), - [anon_sym_BSLASHGlstext] = ACTIONS(2230), - [anon_sym_BSLASHGLStext] = ACTIONS(2230), - [anon_sym_BSLASHglsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2230), - [anon_sym_BSLASHglsplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSplural] = ACTIONS(2230), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHglsname] = ACTIONS(2230), - [anon_sym_BSLASHGlsname] = ACTIONS(2230), - [anon_sym_BSLASHGLSname] = ACTIONS(2230), - [anon_sym_BSLASHglssymbol] = ACTIONS(2230), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2230), - [anon_sym_BSLASHglsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2230), - [anon_sym_BSLASHglsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2230), - [anon_sym_BSLASHglsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2230), - [anon_sym_BSLASHglsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2230), - [anon_sym_BSLASHglsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2230), - [anon_sym_BSLASHnewacronym] = ACTIONS(2230), - [anon_sym_BSLASHacrshort] = ACTIONS(2230), - [anon_sym_BSLASHAcrshort] = ACTIONS(2230), - [anon_sym_BSLASHACRshort] = ACTIONS(2230), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2230), - [anon_sym_BSLASHacrlong] = ACTIONS(2230), - [anon_sym_BSLASHAcrlong] = ACTIONS(2230), - [anon_sym_BSLASHACRlong] = ACTIONS(2230), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2230), - [anon_sym_BSLASHacrfull] = ACTIONS(2230), - [anon_sym_BSLASHAcrfull] = ACTIONS(2230), - [anon_sym_BSLASHACRfull] = ACTIONS(2230), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2230), - [anon_sym_BSLASHacs] = ACTIONS(2230), - [anon_sym_BSLASHAcs] = ACTIONS(2230), - [anon_sym_BSLASHacsp] = ACTIONS(2230), - [anon_sym_BSLASHAcsp] = ACTIONS(2230), - [anon_sym_BSLASHacl] = ACTIONS(2230), - [anon_sym_BSLASHAcl] = ACTIONS(2230), - [anon_sym_BSLASHaclp] = ACTIONS(2230), - [anon_sym_BSLASHAclp] = ACTIONS(2230), - [anon_sym_BSLASHacf] = ACTIONS(2230), - [anon_sym_BSLASHAcf] = ACTIONS(2230), - [anon_sym_BSLASHacfp] = ACTIONS(2230), - [anon_sym_BSLASHAcfp] = ACTIONS(2230), - [anon_sym_BSLASHac] = ACTIONS(2230), - [anon_sym_BSLASHAc] = ACTIONS(2230), - [anon_sym_BSLASHacp] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2230), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2230), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2230), - [anon_sym_BSLASHcolor] = ACTIONS(2230), - [anon_sym_BSLASHcolorbox] = ACTIONS(2230), - [anon_sym_BSLASHtextcolor] = ACTIONS(2230), - [anon_sym_BSLASHpagecolor] = ACTIONS(2230), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2230), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2230), - [anon_sym_BSLASHtext] = ACTIONS(2230), - [anon_sym_BSLASHintertext] = ACTIONS(2230), - [anon_sym_shortintertext] = ACTIONS(2230), - }, - [803] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(2230), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_COMMA] = ACTIONS(2232), - [anon_sym_EQ] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHpart] = ACTIONS(2230), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddpart] = ACTIONS(2230), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2232), - [anon_sym_BSLASHchapter] = ACTIONS(2230), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddchap] = ACTIONS(2230), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsection] = ACTIONS(2230), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHaddsec] = ACTIONS(2230), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2230), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2232), - [anon_sym_BSLASHparagraph] = ACTIONS(2230), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2230), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2232), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(2232), - [sym_word] = ACTIONS(2230), - [sym_placeholder] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_COLON] = ACTIONS(2230), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym__] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2232), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2232), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2232), - [anon_sym_DOLLAR] = ACTIONS(2230), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2232), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2232), - [anon_sym_BSLASHbegin] = ACTIONS(2230), - [anon_sym_BSLASHtitle] = ACTIONS(2230), - [anon_sym_BSLASHauthor] = ACTIONS(2230), - [anon_sym_BSLASHusepackage] = ACTIONS(2230), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2230), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2230), - [anon_sym_BSLASHinclude] = ACTIONS(2230), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2230), - [anon_sym_BSLASHinput] = ACTIONS(2230), - [anon_sym_BSLASHsubfile] = ACTIONS(2230), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2230), - [anon_sym_BSLASHbibliography] = ACTIONS(2230), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2230), - [anon_sym_BSLASHincludesvg] = ACTIONS(2230), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2230), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2230), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2230), - [anon_sym_BSLASHimport] = ACTIONS(2230), - [anon_sym_BSLASHsubimport] = ACTIONS(2230), - [anon_sym_BSLASHinputfrom] = ACTIONS(2230), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2230), - [anon_sym_BSLASHincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2230), - [anon_sym_BSLASHcaption] = ACTIONS(2230), - [anon_sym_BSLASHcite] = ACTIONS(2230), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCite] = ACTIONS(2230), - [anon_sym_BSLASHnocite] = ACTIONS(2230), - [anon_sym_BSLASHcitet] = ACTIONS(2230), - [anon_sym_BSLASHcitep] = ACTIONS(2230), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteauthor] = ACTIONS(2230), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2230), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitetitle] = ACTIONS(2230), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteyear] = ACTIONS(2230), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2232), - [anon_sym_BSLASHcitedate] = ACTIONS(2230), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2232), - [anon_sym_BSLASHciteurl] = ACTIONS(2230), - [anon_sym_BSLASHfullcite] = ACTIONS(2230), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2230), - [anon_sym_BSLASHcitealt] = ACTIONS(2230), - [anon_sym_BSLASHcitealp] = ACTIONS(2230), - [anon_sym_BSLASHcitetext] = ACTIONS(2230), - [anon_sym_BSLASHparencite] = ACTIONS(2230), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHParencite] = ACTIONS(2230), - [anon_sym_BSLASHfootcite] = ACTIONS(2230), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2230), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2230), - [anon_sym_BSLASHtextcite] = ACTIONS(2230), - [anon_sym_BSLASHTextcite] = ACTIONS(2230), - [anon_sym_BSLASHsmartcite] = ACTIONS(2230), - [anon_sym_BSLASHSmartcite] = ACTIONS(2230), - [anon_sym_BSLASHsupercite] = ACTIONS(2230), - [anon_sym_BSLASHautocite] = ACTIONS(2230), - [anon_sym_BSLASHAutocite] = ACTIONS(2230), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2232), - [anon_sym_BSLASHvolcite] = ACTIONS(2230), - [anon_sym_BSLASHVolcite] = ACTIONS(2230), - [anon_sym_BSLASHpvolcite] = ACTIONS(2230), - [anon_sym_BSLASHPvolcite] = ACTIONS(2230), - [anon_sym_BSLASHfvolcite] = ACTIONS(2230), - [anon_sym_BSLASHftvolcite] = ACTIONS(2230), - [anon_sym_BSLASHsvolcite] = ACTIONS(2230), - [anon_sym_BSLASHSvolcite] = ACTIONS(2230), - [anon_sym_BSLASHtvolcite] = ACTIONS(2230), - [anon_sym_BSLASHTvolcite] = ACTIONS(2230), - [anon_sym_BSLASHavolcite] = ACTIONS(2230), - [anon_sym_BSLASHAvolcite] = ACTIONS(2230), - [anon_sym_BSLASHnotecite] = ACTIONS(2230), - [anon_sym_BSLASHNotecite] = ACTIONS(2230), - [anon_sym_BSLASHpnotecite] = ACTIONS(2230), - [anon_sym_BSLASHPnotecite] = ACTIONS(2230), - [anon_sym_BSLASHfnotecite] = ACTIONS(2230), - [anon_sym_BSLASHlabel] = ACTIONS(2230), - [anon_sym_BSLASHref] = ACTIONS(2230), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [anon_sym_BSLASHvref] = ACTIONS(2230), - [anon_sym_BSLASHVref] = ACTIONS(2230), - [anon_sym_BSLASHautoref] = ACTIONS(2230), - [anon_sym_BSLASHpageref] = ACTIONS(2230), - [anon_sym_BSLASHcref] = ACTIONS(2230), - [anon_sym_BSLASHCref] = ACTIONS(2230), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnameCref] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2230), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2230), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2230), - [anon_sym_BSLASHlabelcref] = ACTIONS(2230), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange] = ACTIONS(2230), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHCrefrange] = ACTIONS(2230), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand] = ACTIONS(2230), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2230), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2232), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2230), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2232), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2230), - [anon_sym_BSLASHdef] = ACTIONS(2230), - [anon_sym_BSLASHlet] = ACTIONS(2230), - [anon_sym_BSLASHleft] = ACTIONS(2230), - [anon_sym_BSLASHbig] = ACTIONS(2230), - [anon_sym_BSLASHBig] = ACTIONS(2230), - [anon_sym_BSLASHbigg] = ACTIONS(2230), - [anon_sym_BSLASHBigg] = ACTIONS(2230), - [anon_sym_BSLASHbigl] = ACTIONS(2230), - [anon_sym_BSLASHBigl] = ACTIONS(2230), - [anon_sym_BSLASHbiggl] = ACTIONS(2230), - [anon_sym_BSLASHBiggl] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2230), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2230), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2230), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2230), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2230), - [anon_sym_BSLASHgls] = ACTIONS(2230), - [anon_sym_BSLASHGls] = ACTIONS(2230), - [anon_sym_BSLASHGLS] = ACTIONS(2230), - [anon_sym_BSLASHglspl] = ACTIONS(2230), - [anon_sym_BSLASHGlspl] = ACTIONS(2230), - [anon_sym_BSLASHGLSpl] = ACTIONS(2230), - [anon_sym_BSLASHglsdisp] = ACTIONS(2230), - [anon_sym_BSLASHglslink] = ACTIONS(2230), - [anon_sym_BSLASHglstext] = ACTIONS(2230), - [anon_sym_BSLASHGlstext] = ACTIONS(2230), - [anon_sym_BSLASHGLStext] = ACTIONS(2230), - [anon_sym_BSLASHglsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2230), - [anon_sym_BSLASHglsplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSplural] = ACTIONS(2230), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2230), - [anon_sym_BSLASHglsname] = ACTIONS(2230), - [anon_sym_BSLASHGlsname] = ACTIONS(2230), - [anon_sym_BSLASHGLSname] = ACTIONS(2230), - [anon_sym_BSLASHglssymbol] = ACTIONS(2230), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2230), - [anon_sym_BSLASHglsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2230), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2230), - [anon_sym_BSLASHglsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2230), - [anon_sym_BSLASHglsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2230), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2230), - [anon_sym_BSLASHglsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2230), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2230), - [anon_sym_BSLASHglsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2230), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2230), - [anon_sym_BSLASHnewacronym] = ACTIONS(2230), - [anon_sym_BSLASHacrshort] = ACTIONS(2230), - [anon_sym_BSLASHAcrshort] = ACTIONS(2230), - [anon_sym_BSLASHACRshort] = ACTIONS(2230), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2230), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2230), - [anon_sym_BSLASHacrlong] = ACTIONS(2230), - [anon_sym_BSLASHAcrlong] = ACTIONS(2230), - [anon_sym_BSLASHACRlong] = ACTIONS(2230), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2230), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2230), - [anon_sym_BSLASHacrfull] = ACTIONS(2230), - [anon_sym_BSLASHAcrfull] = ACTIONS(2230), - [anon_sym_BSLASHACRfull] = ACTIONS(2230), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2230), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2230), - [anon_sym_BSLASHacs] = ACTIONS(2230), - [anon_sym_BSLASHAcs] = ACTIONS(2230), - [anon_sym_BSLASHacsp] = ACTIONS(2230), - [anon_sym_BSLASHAcsp] = ACTIONS(2230), - [anon_sym_BSLASHacl] = ACTIONS(2230), - [anon_sym_BSLASHAcl] = ACTIONS(2230), - [anon_sym_BSLASHaclp] = ACTIONS(2230), - [anon_sym_BSLASHAclp] = ACTIONS(2230), - [anon_sym_BSLASHacf] = ACTIONS(2230), - [anon_sym_BSLASHAcf] = ACTIONS(2230), - [anon_sym_BSLASHacfp] = ACTIONS(2230), - [anon_sym_BSLASHAcfp] = ACTIONS(2230), - [anon_sym_BSLASHac] = ACTIONS(2230), - [anon_sym_BSLASHAc] = ACTIONS(2230), - [anon_sym_BSLASHacp] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2230), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2230), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2230), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2230), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2230), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2232), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2230), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2230), - [anon_sym_BSLASHcolor] = ACTIONS(2230), - [anon_sym_BSLASHcolorbox] = ACTIONS(2230), - [anon_sym_BSLASHtextcolor] = ACTIONS(2230), - [anon_sym_BSLASHpagecolor] = ACTIONS(2230), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2230), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2230), - [anon_sym_BSLASHtext] = ACTIONS(2230), - [anon_sym_BSLASHintertext] = ACTIONS(2230), - [anon_sym_shortintertext] = ACTIONS(2230), - }, - [804] = { - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(733), - [aux_sym__section_repeat6] = STATE(733), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [805] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(2256), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_RBRACK] = ACTIONS(2258), - [anon_sym_COMMA] = ACTIONS(2258), - [anon_sym_EQ] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_RPAREN] = ACTIONS(2258), - [anon_sym_BSLASHpart] = ACTIONS(2256), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddpart] = ACTIONS(2256), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2258), - [anon_sym_BSLASHchapter] = ACTIONS(2256), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddchap] = ACTIONS(2256), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsection] = ACTIONS(2256), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHaddsec] = ACTIONS(2256), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2256), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2258), - [anon_sym_BSLASHparagraph] = ACTIONS(2256), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2256), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2258), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(2258), - [sym_word] = ACTIONS(2256), - [sym_placeholder] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2256), - [anon_sym_GT] = ACTIONS(2256), - [anon_sym_BANG] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_COLON] = ACTIONS(2256), - [anon_sym_SQUOTE] = ACTIONS(2256), - [anon_sym__] = ACTIONS(2258), - [anon_sym_CARET] = ACTIONS(2258), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2258), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2258), - [anon_sym_DOLLAR] = ACTIONS(2256), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2258), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2258), - [anon_sym_BSLASHbegin] = ACTIONS(2256), - [anon_sym_BSLASHtitle] = ACTIONS(2256), - [anon_sym_BSLASHauthor] = ACTIONS(2256), - [anon_sym_BSLASHusepackage] = ACTIONS(2256), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2256), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2256), - [anon_sym_BSLASHinclude] = ACTIONS(2256), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2256), - [anon_sym_BSLASHinput] = ACTIONS(2256), - [anon_sym_BSLASHsubfile] = ACTIONS(2256), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2256), - [anon_sym_BSLASHbibliography] = ACTIONS(2256), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2256), - [anon_sym_BSLASHincludesvg] = ACTIONS(2256), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2256), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2256), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2256), - [anon_sym_BSLASHimport] = ACTIONS(2256), - [anon_sym_BSLASHsubimport] = ACTIONS(2256), - [anon_sym_BSLASHinputfrom] = ACTIONS(2256), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2256), - [anon_sym_BSLASHincludefrom] = ACTIONS(2256), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2256), - [anon_sym_BSLASHcaption] = ACTIONS(2256), - [anon_sym_BSLASHcite] = ACTIONS(2256), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCite] = ACTIONS(2256), - [anon_sym_BSLASHnocite] = ACTIONS(2256), - [anon_sym_BSLASHcitet] = ACTIONS(2256), - [anon_sym_BSLASHcitep] = ACTIONS(2256), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteauthor] = ACTIONS(2256), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2256), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitetitle] = ACTIONS(2256), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteyear] = ACTIONS(2256), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2258), - [anon_sym_BSLASHcitedate] = ACTIONS(2256), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2258), - [anon_sym_BSLASHciteurl] = ACTIONS(2256), - [anon_sym_BSLASHfullcite] = ACTIONS(2256), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2256), - [anon_sym_BSLASHcitealt] = ACTIONS(2256), - [anon_sym_BSLASHcitealp] = ACTIONS(2256), - [anon_sym_BSLASHcitetext] = ACTIONS(2256), - [anon_sym_BSLASHparencite] = ACTIONS(2256), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHParencite] = ACTIONS(2256), - [anon_sym_BSLASHfootcite] = ACTIONS(2256), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2256), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2256), - [anon_sym_BSLASHtextcite] = ACTIONS(2256), - [anon_sym_BSLASHTextcite] = ACTIONS(2256), - [anon_sym_BSLASHsmartcite] = ACTIONS(2256), - [anon_sym_BSLASHSmartcite] = ACTIONS(2256), - [anon_sym_BSLASHsupercite] = ACTIONS(2256), - [anon_sym_BSLASHautocite] = ACTIONS(2256), - [anon_sym_BSLASHAutocite] = ACTIONS(2256), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2258), - [anon_sym_BSLASHvolcite] = ACTIONS(2256), - [anon_sym_BSLASHVolcite] = ACTIONS(2256), - [anon_sym_BSLASHpvolcite] = ACTIONS(2256), - [anon_sym_BSLASHPvolcite] = ACTIONS(2256), - [anon_sym_BSLASHfvolcite] = ACTIONS(2256), - [anon_sym_BSLASHftvolcite] = ACTIONS(2256), - [anon_sym_BSLASHsvolcite] = ACTIONS(2256), - [anon_sym_BSLASHSvolcite] = ACTIONS(2256), - [anon_sym_BSLASHtvolcite] = ACTIONS(2256), - [anon_sym_BSLASHTvolcite] = ACTIONS(2256), - [anon_sym_BSLASHavolcite] = ACTIONS(2256), - [anon_sym_BSLASHAvolcite] = ACTIONS(2256), - [anon_sym_BSLASHnotecite] = ACTIONS(2256), - [anon_sym_BSLASHNotecite] = ACTIONS(2256), - [anon_sym_BSLASHpnotecite] = ACTIONS(2256), - [anon_sym_BSLASHPnotecite] = ACTIONS(2256), - [anon_sym_BSLASHfnotecite] = ACTIONS(2256), - [anon_sym_BSLASHlabel] = ACTIONS(2256), - [anon_sym_BSLASHref] = ACTIONS(2256), - [anon_sym_BSLASHeqref] = ACTIONS(2256), - [anon_sym_BSLASHvref] = ACTIONS(2256), - [anon_sym_BSLASHVref] = ACTIONS(2256), - [anon_sym_BSLASHautoref] = ACTIONS(2256), - [anon_sym_BSLASHpageref] = ACTIONS(2256), - [anon_sym_BSLASHcref] = ACTIONS(2256), - [anon_sym_BSLASHCref] = ACTIONS(2256), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2258), - [anon_sym_BSLASHnamecref] = ACTIONS(2256), - [anon_sym_BSLASHnameCref] = ACTIONS(2256), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2256), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2256), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2256), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2256), - [anon_sym_BSLASHlabelcref] = ACTIONS(2256), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2256), - [anon_sym_BSLASHcrefrange] = ACTIONS(2256), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2258), - [anon_sym_BSLASHCrefrange] = ACTIONS(2256), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2258), - [anon_sym_BSLASHnewlabel] = ACTIONS(2256), - [anon_sym_BSLASHnewcommand] = ACTIONS(2256), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2256), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2258), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2256), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2258), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2256), - [anon_sym_BSLASHdef] = ACTIONS(2256), - [anon_sym_BSLASHlet] = ACTIONS(2256), - [anon_sym_BSLASHleft] = ACTIONS(2256), - [anon_sym_BSLASHbig] = ACTIONS(2256), - [anon_sym_BSLASHBig] = ACTIONS(2256), - [anon_sym_BSLASHbigg] = ACTIONS(2256), - [anon_sym_BSLASHBigg] = ACTIONS(2256), - [anon_sym_BSLASHbigl] = ACTIONS(2256), - [anon_sym_BSLASHBigl] = ACTIONS(2256), - [anon_sym_BSLASHbiggl] = ACTIONS(2256), - [anon_sym_BSLASHBiggl] = ACTIONS(2256), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2256), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2256), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2256), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2256), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2256), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2256), - [anon_sym_BSLASHgls] = ACTIONS(2256), - [anon_sym_BSLASHGls] = ACTIONS(2256), - [anon_sym_BSLASHGLS] = ACTIONS(2256), - [anon_sym_BSLASHglspl] = ACTIONS(2256), - [anon_sym_BSLASHGlspl] = ACTIONS(2256), - [anon_sym_BSLASHGLSpl] = ACTIONS(2256), - [anon_sym_BSLASHglsdisp] = ACTIONS(2256), - [anon_sym_BSLASHglslink] = ACTIONS(2256), - [anon_sym_BSLASHglstext] = ACTIONS(2256), - [anon_sym_BSLASHGlstext] = ACTIONS(2256), - [anon_sym_BSLASHGLStext] = ACTIONS(2256), - [anon_sym_BSLASHglsfirst] = ACTIONS(2256), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2256), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2256), - [anon_sym_BSLASHglsplural] = ACTIONS(2256), - [anon_sym_BSLASHGlsplural] = ACTIONS(2256), - [anon_sym_BSLASHGLSplural] = ACTIONS(2256), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2256), - [anon_sym_BSLASHglsname] = ACTIONS(2256), - [anon_sym_BSLASHGlsname] = ACTIONS(2256), - [anon_sym_BSLASHGLSname] = ACTIONS(2256), - [anon_sym_BSLASHglssymbol] = ACTIONS(2256), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2256), - [anon_sym_BSLASHglsdesc] = ACTIONS(2256), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2256), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2256), - [anon_sym_BSLASHglsuseri] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2256), - [anon_sym_BSLASHglsuserii] = ACTIONS(2256), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2256), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2256), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2256), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2256), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2256), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2256), - [anon_sym_BSLASHglsuserv] = ACTIONS(2256), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2256), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2256), - [anon_sym_BSLASHglsuservi] = ACTIONS(2256), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2256), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2256), - [anon_sym_BSLASHnewacronym] = ACTIONS(2256), - [anon_sym_BSLASHacrshort] = ACTIONS(2256), - [anon_sym_BSLASHAcrshort] = ACTIONS(2256), - [anon_sym_BSLASHACRshort] = ACTIONS(2256), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2256), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2256), - [anon_sym_BSLASHacrlong] = ACTIONS(2256), - [anon_sym_BSLASHAcrlong] = ACTIONS(2256), - [anon_sym_BSLASHACRlong] = ACTIONS(2256), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2256), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2256), - [anon_sym_BSLASHacrfull] = ACTIONS(2256), - [anon_sym_BSLASHAcrfull] = ACTIONS(2256), - [anon_sym_BSLASHACRfull] = ACTIONS(2256), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2256), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2256), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2256), - [anon_sym_BSLASHacs] = ACTIONS(2256), - [anon_sym_BSLASHAcs] = ACTIONS(2256), - [anon_sym_BSLASHacsp] = ACTIONS(2256), - [anon_sym_BSLASHAcsp] = ACTIONS(2256), - [anon_sym_BSLASHacl] = ACTIONS(2256), - [anon_sym_BSLASHAcl] = ACTIONS(2256), - [anon_sym_BSLASHaclp] = ACTIONS(2256), - [anon_sym_BSLASHAclp] = ACTIONS(2256), - [anon_sym_BSLASHacf] = ACTIONS(2256), - [anon_sym_BSLASHAcf] = ACTIONS(2256), - [anon_sym_BSLASHacfp] = ACTIONS(2256), - [anon_sym_BSLASHAcfp] = ACTIONS(2256), - [anon_sym_BSLASHac] = ACTIONS(2256), - [anon_sym_BSLASHAc] = ACTIONS(2256), - [anon_sym_BSLASHacp] = ACTIONS(2256), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2256), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2256), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2256), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2256), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2256), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2256), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2256), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2256), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2258), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2256), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2258), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2256), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2256), - [anon_sym_BSLASHcolor] = ACTIONS(2256), - [anon_sym_BSLASHcolorbox] = ACTIONS(2256), - [anon_sym_BSLASHtextcolor] = ACTIONS(2256), - [anon_sym_BSLASHpagecolor] = ACTIONS(2256), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2256), - [anon_sym_BSLASHtext] = ACTIONS(2256), - [anon_sym_BSLASHintertext] = ACTIONS(2256), - [anon_sym_shortintertext] = ACTIONS(2256), - }, - [806] = { - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(734), - [aux_sym__section_repeat5] = STATE(734), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [807] = { - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(735), - [aux_sym__section_repeat4] = STATE(735), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [808] = { - [ts_builtin_sym_end] = ACTIONS(5972), - [sym_command_name] = ACTIONS(5968), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5968), - [anon_sym_BSLASHfi] = ACTIONS(6632), - [anon_sym_LBRACK] = ACTIONS(5972), - [anon_sym_RBRACK] = ACTIONS(5972), - [anon_sym_COMMA] = ACTIONS(5972), - [anon_sym_EQ] = ACTIONS(5972), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_RPAREN] = ACTIONS(5972), - [anon_sym_BSLASHpart] = ACTIONS(5968), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddpart] = ACTIONS(5968), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5972), - [anon_sym_BSLASHchapter] = ACTIONS(5968), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddchap] = ACTIONS(5968), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsection] = ACTIONS(5968), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddsec] = ACTIONS(5968), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubsection] = ACTIONS(5968), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5968), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHparagraph] = ACTIONS(5968), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5968), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5972), - [anon_sym_BSLASHitem] = ACTIONS(5968), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5972), - [anon_sym_LBRACE] = ACTIONS(5972), - [anon_sym_RBRACE] = ACTIONS(5972), - [sym_word] = ACTIONS(5968), - [sym_placeholder] = ACTIONS(5972), - [anon_sym_PLUS] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5972), - [anon_sym_STAR] = ACTIONS(5972), - [anon_sym_SLASH] = ACTIONS(5972), - [anon_sym_LT] = ACTIONS(5968), - [anon_sym_GT] = ACTIONS(5968), - [anon_sym_BANG] = ACTIONS(5968), - [anon_sym_PIPE] = ACTIONS(5968), - [anon_sym_COLON] = ACTIONS(5968), - [anon_sym_SQUOTE] = ACTIONS(5968), - [anon_sym__] = ACTIONS(5972), - [anon_sym_CARET] = ACTIONS(5972), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5972), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5972), - [anon_sym_DOLLAR] = ACTIONS(5968), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5972), - [anon_sym_BSLASHbegin] = ACTIONS(5968), - [anon_sym_BSLASHtitle] = ACTIONS(5968), - [anon_sym_BSLASHauthor] = ACTIONS(5968), - [anon_sym_BSLASHusepackage] = ACTIONS(5968), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5968), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5968), - [anon_sym_BSLASHinclude] = ACTIONS(5968), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5968), - [anon_sym_BSLASHinput] = ACTIONS(5968), - [anon_sym_BSLASHsubfile] = ACTIONS(5968), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5968), - [anon_sym_BSLASHbibliography] = ACTIONS(5968), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5968), - [anon_sym_BSLASHincludesvg] = ACTIONS(5968), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5968), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5968), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5968), - [anon_sym_BSLASHimport] = ACTIONS(5968), - [anon_sym_BSLASHsubimport] = ACTIONS(5968), - [anon_sym_BSLASHinputfrom] = ACTIONS(5968), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5968), - [anon_sym_BSLASHincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHcaption] = ACTIONS(5968), - [anon_sym_BSLASHcite] = ACTIONS(5968), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCite] = ACTIONS(5968), - [anon_sym_BSLASHnocite] = ACTIONS(5968), - [anon_sym_BSLASHcitet] = ACTIONS(5968), - [anon_sym_BSLASHcitep] = ACTIONS(5968), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteauthor] = ACTIONS(5968), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5968), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitetitle] = ACTIONS(5968), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteyear] = ACTIONS(5968), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitedate] = ACTIONS(5968), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteurl] = ACTIONS(5968), - [anon_sym_BSLASHfullcite] = ACTIONS(5968), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5968), - [anon_sym_BSLASHcitealt] = ACTIONS(5968), - [anon_sym_BSLASHcitealp] = ACTIONS(5968), - [anon_sym_BSLASHcitetext] = ACTIONS(5968), - [anon_sym_BSLASHparencite] = ACTIONS(5968), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHParencite] = ACTIONS(5968), - [anon_sym_BSLASHfootcite] = ACTIONS(5968), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5968), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5968), - [anon_sym_BSLASHtextcite] = ACTIONS(5968), - [anon_sym_BSLASHTextcite] = ACTIONS(5968), - [anon_sym_BSLASHsmartcite] = ACTIONS(5968), - [anon_sym_BSLASHSmartcite] = ACTIONS(5968), - [anon_sym_BSLASHsupercite] = ACTIONS(5968), - [anon_sym_BSLASHautocite] = ACTIONS(5968), - [anon_sym_BSLASHAutocite] = ACTIONS(5968), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHvolcite] = ACTIONS(5968), - [anon_sym_BSLASHVolcite] = ACTIONS(5968), - [anon_sym_BSLASHpvolcite] = ACTIONS(5968), - [anon_sym_BSLASHPvolcite] = ACTIONS(5968), - [anon_sym_BSLASHfvolcite] = ACTIONS(5968), - [anon_sym_BSLASHftvolcite] = ACTIONS(5968), - [anon_sym_BSLASHsvolcite] = ACTIONS(5968), - [anon_sym_BSLASHSvolcite] = ACTIONS(5968), - [anon_sym_BSLASHtvolcite] = ACTIONS(5968), - [anon_sym_BSLASHTvolcite] = ACTIONS(5968), - [anon_sym_BSLASHavolcite] = ACTIONS(5968), - [anon_sym_BSLASHAvolcite] = ACTIONS(5968), - [anon_sym_BSLASHnotecite] = ACTIONS(5968), - [anon_sym_BSLASHNotecite] = ACTIONS(5968), - [anon_sym_BSLASHpnotecite] = ACTIONS(5968), - [anon_sym_BSLASHPnotecite] = ACTIONS(5968), - [anon_sym_BSLASHfnotecite] = ACTIONS(5968), - [anon_sym_BSLASHlabel] = ACTIONS(5968), - [anon_sym_BSLASHref] = ACTIONS(5968), - [anon_sym_BSLASHeqref] = ACTIONS(5968), - [anon_sym_BSLASHvref] = ACTIONS(5968), - [anon_sym_BSLASHVref] = ACTIONS(5968), - [anon_sym_BSLASHautoref] = ACTIONS(5968), - [anon_sym_BSLASHpageref] = ACTIONS(5968), - [anon_sym_BSLASHcref] = ACTIONS(5968), - [anon_sym_BSLASHCref] = ACTIONS(5968), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnameCref] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHlabelcref] = ACTIONS(5968), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCrefrange] = ACTIONS(5968), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnewlabel] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5968), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5968), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5972), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHdef] = ACTIONS(5968), - [anon_sym_BSLASHlet] = ACTIONS(5968), - [anon_sym_BSLASHleft] = ACTIONS(5968), - [anon_sym_BSLASHbig] = ACTIONS(5968), - [anon_sym_BSLASHBig] = ACTIONS(5968), - [anon_sym_BSLASHbigg] = ACTIONS(5968), - [anon_sym_BSLASHBigg] = ACTIONS(5968), - [anon_sym_BSLASHbigl] = ACTIONS(5968), - [anon_sym_BSLASHBigl] = ACTIONS(5968), - [anon_sym_BSLASHbiggl] = ACTIONS(5968), - [anon_sym_BSLASHBiggl] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5968), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5968), - [anon_sym_BSLASHgls] = ACTIONS(5968), - [anon_sym_BSLASHGls] = ACTIONS(5968), - [anon_sym_BSLASHGLS] = ACTIONS(5968), - [anon_sym_BSLASHglspl] = ACTIONS(5968), - [anon_sym_BSLASHGlspl] = ACTIONS(5968), - [anon_sym_BSLASHGLSpl] = ACTIONS(5968), - [anon_sym_BSLASHglsdisp] = ACTIONS(5968), - [anon_sym_BSLASHglslink] = ACTIONS(5968), - [anon_sym_BSLASHglstext] = ACTIONS(5968), - [anon_sym_BSLASHGlstext] = ACTIONS(5968), - [anon_sym_BSLASHGLStext] = ACTIONS(5968), - [anon_sym_BSLASHglsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5968), - [anon_sym_BSLASHglsplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSplural] = ACTIONS(5968), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHglsname] = ACTIONS(5968), - [anon_sym_BSLASHGlsname] = ACTIONS(5968), - [anon_sym_BSLASHGLSname] = ACTIONS(5968), - [anon_sym_BSLASHglssymbol] = ACTIONS(5968), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5968), - [anon_sym_BSLASHglsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5968), - [anon_sym_BSLASHglsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5968), - [anon_sym_BSLASHglsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5968), - [anon_sym_BSLASHglsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5968), - [anon_sym_BSLASHglsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5968), - [anon_sym_BSLASHnewacronym] = ACTIONS(5968), - [anon_sym_BSLASHacrshort] = ACTIONS(5968), - [anon_sym_BSLASHAcrshort] = ACTIONS(5968), - [anon_sym_BSLASHACRshort] = ACTIONS(5968), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5968), - [anon_sym_BSLASHacrlong] = ACTIONS(5968), - [anon_sym_BSLASHAcrlong] = ACTIONS(5968), - [anon_sym_BSLASHACRlong] = ACTIONS(5968), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5968), - [anon_sym_BSLASHacrfull] = ACTIONS(5968), - [anon_sym_BSLASHAcrfull] = ACTIONS(5968), - [anon_sym_BSLASHACRfull] = ACTIONS(5968), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5968), - [anon_sym_BSLASHacs] = ACTIONS(5968), - [anon_sym_BSLASHAcs] = ACTIONS(5968), - [anon_sym_BSLASHacsp] = ACTIONS(5968), - [anon_sym_BSLASHAcsp] = ACTIONS(5968), - [anon_sym_BSLASHacl] = ACTIONS(5968), - [anon_sym_BSLASHAcl] = ACTIONS(5968), - [anon_sym_BSLASHaclp] = ACTIONS(5968), - [anon_sym_BSLASHAclp] = ACTIONS(5968), - [anon_sym_BSLASHacf] = ACTIONS(5968), - [anon_sym_BSLASHAcf] = ACTIONS(5968), - [anon_sym_BSLASHacfp] = ACTIONS(5968), - [anon_sym_BSLASHAcfp] = ACTIONS(5968), - [anon_sym_BSLASHac] = ACTIONS(5968), - [anon_sym_BSLASHAc] = ACTIONS(5968), - [anon_sym_BSLASHacp] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5968), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5968), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5968), - [anon_sym_BSLASHcolor] = ACTIONS(5968), - [anon_sym_BSLASHcolorbox] = ACTIONS(5968), - [anon_sym_BSLASHtextcolor] = ACTIONS(5968), - [anon_sym_BSLASHpagecolor] = ACTIONS(5968), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5968), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5968), - [anon_sym_BSLASHtext] = ACTIONS(5968), - [anon_sym_BSLASHintertext] = ACTIONS(5968), - [anon_sym_shortintertext] = ACTIONS(5968), - [sym__trivia_raw_fi] = ACTIONS(6634), - }, - [809] = { - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(734), - [aux_sym__section_repeat5] = STATE(734), - [sym_command_name] = ACTIONS(2202), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2202), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_BSLASHpart] = ACTIONS(2202), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddpart] = ACTIONS(2202), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2204), - [anon_sym_BSLASHchapter] = ACTIONS(2202), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddchap] = ACTIONS(2202), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsection] = ACTIONS(2202), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHaddsec] = ACTIONS(2202), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsection] = ACTIONS(2202), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(2202), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2202), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2204), - [anon_sym_BSLASHitem] = ACTIONS(2202), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [sym_word] = ACTIONS(2202), - [sym_placeholder] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2202), - [anon_sym_PIPE] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_SQUOTE] = ACTIONS(2202), - [anon_sym__] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2204), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2204), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2204), - [anon_sym_DOLLAR] = ACTIONS(2202), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2204), - [anon_sym_BSLASHbegin] = ACTIONS(2202), - [anon_sym_BSLASHtitle] = ACTIONS(2202), - [anon_sym_BSLASHauthor] = ACTIONS(2202), - [anon_sym_BSLASHusepackage] = ACTIONS(2202), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2202), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2202), - [anon_sym_BSLASHinclude] = ACTIONS(2202), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2202), - [anon_sym_BSLASHinput] = ACTIONS(2202), - [anon_sym_BSLASHsubfile] = ACTIONS(2202), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2202), - [anon_sym_BSLASHbibliography] = ACTIONS(2202), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2202), - [anon_sym_BSLASHincludesvg] = ACTIONS(2202), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2202), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2202), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2202), - [anon_sym_BSLASHimport] = ACTIONS(2202), - [anon_sym_BSLASHsubimport] = ACTIONS(2202), - [anon_sym_BSLASHinputfrom] = ACTIONS(2202), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2202), - [anon_sym_BSLASHincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2202), - [anon_sym_BSLASHcaption] = ACTIONS(2202), - [anon_sym_BSLASHcite] = ACTIONS(2202), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCite] = ACTIONS(2202), - [anon_sym_BSLASHnocite] = ACTIONS(2202), - [anon_sym_BSLASHcitet] = ACTIONS(2202), - [anon_sym_BSLASHcitep] = ACTIONS(2202), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteauthor] = ACTIONS(2202), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2202), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitetitle] = ACTIONS(2202), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteyear] = ACTIONS(2202), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2204), - [anon_sym_BSLASHcitedate] = ACTIONS(2202), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2204), - [anon_sym_BSLASHciteurl] = ACTIONS(2202), - [anon_sym_BSLASHfullcite] = ACTIONS(2202), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2202), - [anon_sym_BSLASHcitealt] = ACTIONS(2202), - [anon_sym_BSLASHcitealp] = ACTIONS(2202), - [anon_sym_BSLASHcitetext] = ACTIONS(2202), - [anon_sym_BSLASHparencite] = ACTIONS(2202), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHParencite] = ACTIONS(2202), - [anon_sym_BSLASHfootcite] = ACTIONS(2202), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2202), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2202), - [anon_sym_BSLASHtextcite] = ACTIONS(2202), - [anon_sym_BSLASHTextcite] = ACTIONS(2202), - [anon_sym_BSLASHsmartcite] = ACTIONS(2202), - [anon_sym_BSLASHSmartcite] = ACTIONS(2202), - [anon_sym_BSLASHsupercite] = ACTIONS(2202), - [anon_sym_BSLASHautocite] = ACTIONS(2202), - [anon_sym_BSLASHAutocite] = ACTIONS(2202), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2204), - [anon_sym_BSLASHvolcite] = ACTIONS(2202), - [anon_sym_BSLASHVolcite] = ACTIONS(2202), - [anon_sym_BSLASHpvolcite] = ACTIONS(2202), - [anon_sym_BSLASHPvolcite] = ACTIONS(2202), - [anon_sym_BSLASHfvolcite] = ACTIONS(2202), - [anon_sym_BSLASHftvolcite] = ACTIONS(2202), - [anon_sym_BSLASHsvolcite] = ACTIONS(2202), - [anon_sym_BSLASHSvolcite] = ACTIONS(2202), - [anon_sym_BSLASHtvolcite] = ACTIONS(2202), - [anon_sym_BSLASHTvolcite] = ACTIONS(2202), - [anon_sym_BSLASHavolcite] = ACTIONS(2202), - [anon_sym_BSLASHAvolcite] = ACTIONS(2202), - [anon_sym_BSLASHnotecite] = ACTIONS(2202), - [anon_sym_BSLASHNotecite] = ACTIONS(2202), - [anon_sym_BSLASHpnotecite] = ACTIONS(2202), - [anon_sym_BSLASHPnotecite] = ACTIONS(2202), - [anon_sym_BSLASHfnotecite] = ACTIONS(2202), - [anon_sym_BSLASHlabel] = ACTIONS(2202), - [anon_sym_BSLASHref] = ACTIONS(2202), - [anon_sym_BSLASHeqref] = ACTIONS(2202), - [anon_sym_BSLASHvref] = ACTIONS(2202), - [anon_sym_BSLASHVref] = ACTIONS(2202), - [anon_sym_BSLASHautoref] = ACTIONS(2202), - [anon_sym_BSLASHpageref] = ACTIONS(2202), - [anon_sym_BSLASHcref] = ACTIONS(2202), - [anon_sym_BSLASHCref] = ACTIONS(2202), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnameCref] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2202), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2202), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2202), - [anon_sym_BSLASHlabelcref] = ACTIONS(2202), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange] = ACTIONS(2202), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHCrefrange] = ACTIONS(2202), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2204), - [anon_sym_BSLASHnewlabel] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand] = ACTIONS(2202), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2202), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2204), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2202), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2204), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2202), - [anon_sym_BSLASHdef] = ACTIONS(2202), - [anon_sym_BSLASHlet] = ACTIONS(2202), - [anon_sym_BSLASHleft] = ACTIONS(2202), - [anon_sym_BSLASHbig] = ACTIONS(2202), - [anon_sym_BSLASHBig] = ACTIONS(2202), - [anon_sym_BSLASHbigg] = ACTIONS(2202), - [anon_sym_BSLASHBigg] = ACTIONS(2202), - [anon_sym_BSLASHbigl] = ACTIONS(2202), - [anon_sym_BSLASHBigl] = ACTIONS(2202), - [anon_sym_BSLASHbiggl] = ACTIONS(2202), - [anon_sym_BSLASHBiggl] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2202), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2202), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2202), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2202), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2202), - [anon_sym_BSLASHgls] = ACTIONS(2202), - [anon_sym_BSLASHGls] = ACTIONS(2202), - [anon_sym_BSLASHGLS] = ACTIONS(2202), - [anon_sym_BSLASHglspl] = ACTIONS(2202), - [anon_sym_BSLASHGlspl] = ACTIONS(2202), - [anon_sym_BSLASHGLSpl] = ACTIONS(2202), - [anon_sym_BSLASHglsdisp] = ACTIONS(2202), - [anon_sym_BSLASHglslink] = ACTIONS(2202), - [anon_sym_BSLASHglstext] = ACTIONS(2202), - [anon_sym_BSLASHGlstext] = ACTIONS(2202), - [anon_sym_BSLASHGLStext] = ACTIONS(2202), - [anon_sym_BSLASHglsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2202), - [anon_sym_BSLASHglsplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSplural] = ACTIONS(2202), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2202), - [anon_sym_BSLASHglsname] = ACTIONS(2202), - [anon_sym_BSLASHGlsname] = ACTIONS(2202), - [anon_sym_BSLASHGLSname] = ACTIONS(2202), - [anon_sym_BSLASHglssymbol] = ACTIONS(2202), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2202), - [anon_sym_BSLASHglsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2202), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2202), - [anon_sym_BSLASHglsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2202), - [anon_sym_BSLASHglsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2202), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2202), - [anon_sym_BSLASHglsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2202), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2202), - [anon_sym_BSLASHglsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2202), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2202), - [anon_sym_BSLASHnewacronym] = ACTIONS(2202), - [anon_sym_BSLASHacrshort] = ACTIONS(2202), - [anon_sym_BSLASHAcrshort] = ACTIONS(2202), - [anon_sym_BSLASHACRshort] = ACTIONS(2202), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2202), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2202), - [anon_sym_BSLASHacrlong] = ACTIONS(2202), - [anon_sym_BSLASHAcrlong] = ACTIONS(2202), - [anon_sym_BSLASHACRlong] = ACTIONS(2202), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2202), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2202), - [anon_sym_BSLASHacrfull] = ACTIONS(2202), - [anon_sym_BSLASHAcrfull] = ACTIONS(2202), - [anon_sym_BSLASHACRfull] = ACTIONS(2202), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2202), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2202), - [anon_sym_BSLASHacs] = ACTIONS(2202), - [anon_sym_BSLASHAcs] = ACTIONS(2202), - [anon_sym_BSLASHacsp] = ACTIONS(2202), - [anon_sym_BSLASHAcsp] = ACTIONS(2202), - [anon_sym_BSLASHacl] = ACTIONS(2202), - [anon_sym_BSLASHAcl] = ACTIONS(2202), - [anon_sym_BSLASHaclp] = ACTIONS(2202), - [anon_sym_BSLASHAclp] = ACTIONS(2202), - [anon_sym_BSLASHacf] = ACTIONS(2202), - [anon_sym_BSLASHAcf] = ACTIONS(2202), - [anon_sym_BSLASHacfp] = ACTIONS(2202), - [anon_sym_BSLASHAcfp] = ACTIONS(2202), - [anon_sym_BSLASHac] = ACTIONS(2202), - [anon_sym_BSLASHAc] = ACTIONS(2202), - [anon_sym_BSLASHacp] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2202), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2202), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2202), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2202), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2202), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2204), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2202), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2202), - [anon_sym_BSLASHcolor] = ACTIONS(2202), - [anon_sym_BSLASHcolorbox] = ACTIONS(2202), - [anon_sym_BSLASHtextcolor] = ACTIONS(2202), - [anon_sym_BSLASHpagecolor] = ACTIONS(2202), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2202), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2202), - [anon_sym_BSLASHtext] = ACTIONS(2202), - [anon_sym_BSLASHintertext] = ACTIONS(2202), - [anon_sym_shortintertext] = ACTIONS(2202), - }, - [810] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [811] = { - [sym__part_declaration] = STATE(180), - [sym_part] = STATE(811), - [aux_sym__section_repeat1] = STATE(811), - [sym_command_name] = ACTIONS(5872), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5872), - [anon_sym_LBRACK] = ACTIONS(5874), - [anon_sym_RBRACK] = ACTIONS(5874), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [anon_sym_LPAREN] = ACTIONS(5874), - [anon_sym_RPAREN] = ACTIONS(5874), - [anon_sym_BSLASHpart] = ACTIONS(6636), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6639), - [anon_sym_BSLASHaddpart] = ACTIONS(6636), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6639), - [anon_sym_BSLASHchapter] = ACTIONS(5872), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5874), - [anon_sym_BSLASHaddchap] = ACTIONS(5872), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsection] = ACTIONS(5872), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHaddsec] = ACTIONS(5872), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubsection] = ACTIONS(5872), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5872), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5874), - [anon_sym_BSLASHparagraph] = ACTIONS(5872), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5874), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5872), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5874), - [anon_sym_BSLASHitem] = ACTIONS(5872), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5874), - [anon_sym_LBRACE] = ACTIONS(5874), - [sym_word] = ACTIONS(5872), - [sym_placeholder] = ACTIONS(5874), - [anon_sym_PLUS] = ACTIONS(5874), - [anon_sym_DASH] = ACTIONS(5874), - [anon_sym_STAR] = ACTIONS(5874), - [anon_sym_SLASH] = ACTIONS(5874), - [anon_sym_LT] = ACTIONS(5872), - [anon_sym_GT] = ACTIONS(5872), - [anon_sym_BANG] = ACTIONS(5872), - [anon_sym_PIPE] = ACTIONS(5872), - [anon_sym_COLON] = ACTIONS(5872), - [anon_sym_SQUOTE] = ACTIONS(5872), - [anon_sym__] = ACTIONS(5874), - [anon_sym_CARET] = ACTIONS(5874), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5874), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5874), - [anon_sym_DOLLAR] = ACTIONS(5872), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5874), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5874), - [anon_sym_BSLASHbegin] = ACTIONS(5872), - [anon_sym_BSLASHtitle] = ACTIONS(5872), - [anon_sym_BSLASHauthor] = ACTIONS(5872), - [anon_sym_BSLASHusepackage] = ACTIONS(5872), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5872), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5872), - [anon_sym_BSLASHinclude] = ACTIONS(5872), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5872), - [anon_sym_BSLASHinput] = ACTIONS(5872), - [anon_sym_BSLASHsubfile] = ACTIONS(5872), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5872), - [anon_sym_BSLASHbibliography] = ACTIONS(5872), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5872), - [anon_sym_BSLASHincludesvg] = ACTIONS(5872), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5872), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5872), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5872), - [anon_sym_BSLASHimport] = ACTIONS(5872), - [anon_sym_BSLASHsubimport] = ACTIONS(5872), - [anon_sym_BSLASHinputfrom] = ACTIONS(5872), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5872), - [anon_sym_BSLASHincludefrom] = ACTIONS(5872), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5872), - [anon_sym_BSLASHcaption] = ACTIONS(5872), - [anon_sym_BSLASHcite] = ACTIONS(5872), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCite] = ACTIONS(5872), - [anon_sym_BSLASHnocite] = ACTIONS(5872), - [anon_sym_BSLASHcitet] = ACTIONS(5872), - [anon_sym_BSLASHcitep] = ACTIONS(5872), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteauthor] = ACTIONS(5872), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5872), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitetitle] = ACTIONS(5872), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteyear] = ACTIONS(5872), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5874), - [anon_sym_BSLASHcitedate] = ACTIONS(5872), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5874), - [anon_sym_BSLASHciteurl] = ACTIONS(5872), - [anon_sym_BSLASHfullcite] = ACTIONS(5872), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5872), - [anon_sym_BSLASHcitealt] = ACTIONS(5872), - [anon_sym_BSLASHcitealp] = ACTIONS(5872), - [anon_sym_BSLASHcitetext] = ACTIONS(5872), - [anon_sym_BSLASHparencite] = ACTIONS(5872), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHParencite] = ACTIONS(5872), - [anon_sym_BSLASHfootcite] = ACTIONS(5872), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5872), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5872), - [anon_sym_BSLASHtextcite] = ACTIONS(5872), - [anon_sym_BSLASHTextcite] = ACTIONS(5872), - [anon_sym_BSLASHsmartcite] = ACTIONS(5872), - [anon_sym_BSLASHSmartcite] = ACTIONS(5872), - [anon_sym_BSLASHsupercite] = ACTIONS(5872), - [anon_sym_BSLASHautocite] = ACTIONS(5872), - [anon_sym_BSLASHAutocite] = ACTIONS(5872), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5874), - [anon_sym_BSLASHvolcite] = ACTIONS(5872), - [anon_sym_BSLASHVolcite] = ACTIONS(5872), - [anon_sym_BSLASHpvolcite] = ACTIONS(5872), - [anon_sym_BSLASHPvolcite] = ACTIONS(5872), - [anon_sym_BSLASHfvolcite] = ACTIONS(5872), - [anon_sym_BSLASHftvolcite] = ACTIONS(5872), - [anon_sym_BSLASHsvolcite] = ACTIONS(5872), - [anon_sym_BSLASHSvolcite] = ACTIONS(5872), - [anon_sym_BSLASHtvolcite] = ACTIONS(5872), - [anon_sym_BSLASHTvolcite] = ACTIONS(5872), - [anon_sym_BSLASHavolcite] = ACTIONS(5872), - [anon_sym_BSLASHAvolcite] = ACTIONS(5872), - [anon_sym_BSLASHnotecite] = ACTIONS(5872), - [anon_sym_BSLASHNotecite] = ACTIONS(5872), - [anon_sym_BSLASHpnotecite] = ACTIONS(5872), - [anon_sym_BSLASHPnotecite] = ACTIONS(5872), - [anon_sym_BSLASHfnotecite] = ACTIONS(5872), - [anon_sym_BSLASHlabel] = ACTIONS(5872), - [anon_sym_BSLASHref] = ACTIONS(5872), - [anon_sym_BSLASHeqref] = ACTIONS(5872), - [anon_sym_BSLASHvref] = ACTIONS(5872), - [anon_sym_BSLASHVref] = ACTIONS(5872), - [anon_sym_BSLASHautoref] = ACTIONS(5872), - [anon_sym_BSLASHpageref] = ACTIONS(5872), - [anon_sym_BSLASHcref] = ACTIONS(5872), - [anon_sym_BSLASHCref] = ACTIONS(5872), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5874), - [anon_sym_BSLASHnamecref] = ACTIONS(5872), - [anon_sym_BSLASHnameCref] = ACTIONS(5872), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5872), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5872), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5872), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5872), - [anon_sym_BSLASHlabelcref] = ACTIONS(5872), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5872), - [anon_sym_BSLASHcrefrange] = ACTIONS(5872), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5874), - [anon_sym_BSLASHCrefrange] = ACTIONS(5872), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5874), - [anon_sym_BSLASHnewlabel] = ACTIONS(5872), - [anon_sym_BSLASHnewcommand] = ACTIONS(5872), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5872), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5874), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5872), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5874), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5872), - [anon_sym_BSLASHdef] = ACTIONS(5872), - [anon_sym_BSLASHlet] = ACTIONS(5872), - [anon_sym_BSLASHleft] = ACTIONS(5872), - [anon_sym_BSLASHbig] = ACTIONS(5872), - [anon_sym_BSLASHBig] = ACTIONS(5872), - [anon_sym_BSLASHbigg] = ACTIONS(5872), - [anon_sym_BSLASHBigg] = ACTIONS(5872), - [anon_sym_BSLASHbigl] = ACTIONS(5872), - [anon_sym_BSLASHBigl] = ACTIONS(5872), - [anon_sym_BSLASHbiggl] = ACTIONS(5872), - [anon_sym_BSLASHBiggl] = ACTIONS(5872), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5872), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5872), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5872), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5872), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5872), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5872), - [anon_sym_BSLASHgls] = ACTIONS(5872), - [anon_sym_BSLASHGls] = ACTIONS(5872), - [anon_sym_BSLASHGLS] = ACTIONS(5872), - [anon_sym_BSLASHglspl] = ACTIONS(5872), - [anon_sym_BSLASHGlspl] = ACTIONS(5872), - [anon_sym_BSLASHGLSpl] = ACTIONS(5872), - [anon_sym_BSLASHglsdisp] = ACTIONS(5872), - [anon_sym_BSLASHglslink] = ACTIONS(5872), - [anon_sym_BSLASHglstext] = ACTIONS(5872), - [anon_sym_BSLASHGlstext] = ACTIONS(5872), - [anon_sym_BSLASHGLStext] = ACTIONS(5872), - [anon_sym_BSLASHglsfirst] = ACTIONS(5872), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5872), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5872), - [anon_sym_BSLASHglsplural] = ACTIONS(5872), - [anon_sym_BSLASHGlsplural] = ACTIONS(5872), - [anon_sym_BSLASHGLSplural] = ACTIONS(5872), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5872), - [anon_sym_BSLASHglsname] = ACTIONS(5872), - [anon_sym_BSLASHGlsname] = ACTIONS(5872), - [anon_sym_BSLASHGLSname] = ACTIONS(5872), - [anon_sym_BSLASHglssymbol] = ACTIONS(5872), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5872), - [anon_sym_BSLASHglsdesc] = ACTIONS(5872), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5872), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5872), - [anon_sym_BSLASHglsuseri] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5872), - [anon_sym_BSLASHglsuserii] = ACTIONS(5872), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5872), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5872), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5872), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5872), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5872), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5872), - [anon_sym_BSLASHglsuserv] = ACTIONS(5872), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5872), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5872), - [anon_sym_BSLASHglsuservi] = ACTIONS(5872), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5872), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5872), - [anon_sym_BSLASHnewacronym] = ACTIONS(5872), - [anon_sym_BSLASHacrshort] = ACTIONS(5872), - [anon_sym_BSLASHAcrshort] = ACTIONS(5872), - [anon_sym_BSLASHACRshort] = ACTIONS(5872), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5872), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5872), - [anon_sym_BSLASHacrlong] = ACTIONS(5872), - [anon_sym_BSLASHAcrlong] = ACTIONS(5872), - [anon_sym_BSLASHACRlong] = ACTIONS(5872), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5872), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5872), - [anon_sym_BSLASHacrfull] = ACTIONS(5872), - [anon_sym_BSLASHAcrfull] = ACTIONS(5872), - [anon_sym_BSLASHACRfull] = ACTIONS(5872), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5872), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5872), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5872), - [anon_sym_BSLASHacs] = ACTIONS(5872), - [anon_sym_BSLASHAcs] = ACTIONS(5872), - [anon_sym_BSLASHacsp] = ACTIONS(5872), - [anon_sym_BSLASHAcsp] = ACTIONS(5872), - [anon_sym_BSLASHacl] = ACTIONS(5872), - [anon_sym_BSLASHAcl] = ACTIONS(5872), - [anon_sym_BSLASHaclp] = ACTIONS(5872), - [anon_sym_BSLASHAclp] = ACTIONS(5872), - [anon_sym_BSLASHacf] = ACTIONS(5872), - [anon_sym_BSLASHAcf] = ACTIONS(5872), - [anon_sym_BSLASHacfp] = ACTIONS(5872), - [anon_sym_BSLASHAcfp] = ACTIONS(5872), - [anon_sym_BSLASHac] = ACTIONS(5872), - [anon_sym_BSLASHAc] = ACTIONS(5872), - [anon_sym_BSLASHacp] = ACTIONS(5872), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5872), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5872), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5872), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5872), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5872), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5872), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5872), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5872), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5874), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5872), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5874), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5872), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5872), - [anon_sym_BSLASHcolor] = ACTIONS(5872), - [anon_sym_BSLASHcolorbox] = ACTIONS(5872), - [anon_sym_BSLASHtextcolor] = ACTIONS(5872), - [anon_sym_BSLASHpagecolor] = ACTIONS(5872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5872), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5872), - [anon_sym_BSLASHtext] = ACTIONS(5872), - [anon_sym_BSLASHintertext] = ACTIONS(5872), - [anon_sym_shortintertext] = ACTIONS(5872), - }, - [812] = { - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(812), - [aux_sym__section_repeat2] = STATE(812), - [sym_command_name] = ACTIONS(5882), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5882), - [anon_sym_LBRACK] = ACTIONS(5884), - [anon_sym_RBRACK] = ACTIONS(5884), - [anon_sym_COMMA] = ACTIONS(5884), - [anon_sym_EQ] = ACTIONS(5884), - [anon_sym_LPAREN] = ACTIONS(5884), - [anon_sym_RPAREN] = ACTIONS(5884), - [anon_sym_BSLASHpart] = ACTIONS(5882), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5884), - [anon_sym_BSLASHaddpart] = ACTIONS(5882), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5884), - [anon_sym_BSLASHchapter] = ACTIONS(6642), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6645), - [anon_sym_BSLASHaddchap] = ACTIONS(6642), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6645), - [anon_sym_BSLASHsection] = ACTIONS(5882), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHaddsec] = ACTIONS(5882), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubsection] = ACTIONS(5882), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5882), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5884), - [anon_sym_BSLASHparagraph] = ACTIONS(5882), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5882), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5884), - [anon_sym_BSLASHitem] = ACTIONS(5882), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5884), - [anon_sym_LBRACE] = ACTIONS(5884), - [sym_word] = ACTIONS(5882), - [sym_placeholder] = ACTIONS(5884), - [anon_sym_PLUS] = ACTIONS(5884), - [anon_sym_DASH] = ACTIONS(5884), - [anon_sym_STAR] = ACTIONS(5884), - [anon_sym_SLASH] = ACTIONS(5884), - [anon_sym_LT] = ACTIONS(5882), - [anon_sym_GT] = ACTIONS(5882), - [anon_sym_BANG] = ACTIONS(5882), - [anon_sym_PIPE] = ACTIONS(5882), - [anon_sym_COLON] = ACTIONS(5882), - [anon_sym_SQUOTE] = ACTIONS(5882), - [anon_sym__] = ACTIONS(5884), - [anon_sym_CARET] = ACTIONS(5884), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5884), - [anon_sym_DOLLAR] = ACTIONS(5882), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5884), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5884), - [anon_sym_BSLASHbegin] = ACTIONS(5882), - [anon_sym_BSLASHtitle] = ACTIONS(5882), - [anon_sym_BSLASHauthor] = ACTIONS(5882), - [anon_sym_BSLASHusepackage] = ACTIONS(5882), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5882), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5882), - [anon_sym_BSLASHinclude] = ACTIONS(5882), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5882), - [anon_sym_BSLASHinput] = ACTIONS(5882), - [anon_sym_BSLASHsubfile] = ACTIONS(5882), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5882), - [anon_sym_BSLASHbibliography] = ACTIONS(5882), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5882), - [anon_sym_BSLASHincludesvg] = ACTIONS(5882), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5882), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5882), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5882), - [anon_sym_BSLASHimport] = ACTIONS(5882), - [anon_sym_BSLASHsubimport] = ACTIONS(5882), - [anon_sym_BSLASHinputfrom] = ACTIONS(5882), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5882), - [anon_sym_BSLASHincludefrom] = ACTIONS(5882), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5882), - [anon_sym_BSLASHcaption] = ACTIONS(5882), - [anon_sym_BSLASHcite] = ACTIONS(5882), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCite] = ACTIONS(5882), - [anon_sym_BSLASHnocite] = ACTIONS(5882), - [anon_sym_BSLASHcitet] = ACTIONS(5882), - [anon_sym_BSLASHcitep] = ACTIONS(5882), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteauthor] = ACTIONS(5882), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5882), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitetitle] = ACTIONS(5882), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteyear] = ACTIONS(5882), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5884), - [anon_sym_BSLASHcitedate] = ACTIONS(5882), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5884), - [anon_sym_BSLASHciteurl] = ACTIONS(5882), - [anon_sym_BSLASHfullcite] = ACTIONS(5882), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5882), - [anon_sym_BSLASHcitealt] = ACTIONS(5882), - [anon_sym_BSLASHcitealp] = ACTIONS(5882), - [anon_sym_BSLASHcitetext] = ACTIONS(5882), - [anon_sym_BSLASHparencite] = ACTIONS(5882), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHParencite] = ACTIONS(5882), - [anon_sym_BSLASHfootcite] = ACTIONS(5882), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5882), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5882), - [anon_sym_BSLASHtextcite] = ACTIONS(5882), - [anon_sym_BSLASHTextcite] = ACTIONS(5882), - [anon_sym_BSLASHsmartcite] = ACTIONS(5882), - [anon_sym_BSLASHSmartcite] = ACTIONS(5882), - [anon_sym_BSLASHsupercite] = ACTIONS(5882), - [anon_sym_BSLASHautocite] = ACTIONS(5882), - [anon_sym_BSLASHAutocite] = ACTIONS(5882), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5884), - [anon_sym_BSLASHvolcite] = ACTIONS(5882), - [anon_sym_BSLASHVolcite] = ACTIONS(5882), - [anon_sym_BSLASHpvolcite] = ACTIONS(5882), - [anon_sym_BSLASHPvolcite] = ACTIONS(5882), - [anon_sym_BSLASHfvolcite] = ACTIONS(5882), - [anon_sym_BSLASHftvolcite] = ACTIONS(5882), - [anon_sym_BSLASHsvolcite] = ACTIONS(5882), - [anon_sym_BSLASHSvolcite] = ACTIONS(5882), - [anon_sym_BSLASHtvolcite] = ACTIONS(5882), - [anon_sym_BSLASHTvolcite] = ACTIONS(5882), - [anon_sym_BSLASHavolcite] = ACTIONS(5882), - [anon_sym_BSLASHAvolcite] = ACTIONS(5882), - [anon_sym_BSLASHnotecite] = ACTIONS(5882), - [anon_sym_BSLASHNotecite] = ACTIONS(5882), - [anon_sym_BSLASHpnotecite] = ACTIONS(5882), - [anon_sym_BSLASHPnotecite] = ACTIONS(5882), - [anon_sym_BSLASHfnotecite] = ACTIONS(5882), - [anon_sym_BSLASHlabel] = ACTIONS(5882), - [anon_sym_BSLASHref] = ACTIONS(5882), - [anon_sym_BSLASHeqref] = ACTIONS(5882), - [anon_sym_BSLASHvref] = ACTIONS(5882), - [anon_sym_BSLASHVref] = ACTIONS(5882), - [anon_sym_BSLASHautoref] = ACTIONS(5882), - [anon_sym_BSLASHpageref] = ACTIONS(5882), - [anon_sym_BSLASHcref] = ACTIONS(5882), - [anon_sym_BSLASHCref] = ACTIONS(5882), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5884), - [anon_sym_BSLASHnamecref] = ACTIONS(5882), - [anon_sym_BSLASHnameCref] = ACTIONS(5882), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5882), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5882), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5882), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5882), - [anon_sym_BSLASHlabelcref] = ACTIONS(5882), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5882), - [anon_sym_BSLASHcrefrange] = ACTIONS(5882), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5884), - [anon_sym_BSLASHCrefrange] = ACTIONS(5882), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5884), - [anon_sym_BSLASHnewlabel] = ACTIONS(5882), - [anon_sym_BSLASHnewcommand] = ACTIONS(5882), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5882), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5882), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5884), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5882), - [anon_sym_BSLASHdef] = ACTIONS(5882), - [anon_sym_BSLASHlet] = ACTIONS(5882), - [anon_sym_BSLASHleft] = ACTIONS(5882), - [anon_sym_BSLASHbig] = ACTIONS(5882), - [anon_sym_BSLASHBig] = ACTIONS(5882), - [anon_sym_BSLASHbigg] = ACTIONS(5882), - [anon_sym_BSLASHBigg] = ACTIONS(5882), - [anon_sym_BSLASHbigl] = ACTIONS(5882), - [anon_sym_BSLASHBigl] = ACTIONS(5882), - [anon_sym_BSLASHbiggl] = ACTIONS(5882), - [anon_sym_BSLASHBiggl] = ACTIONS(5882), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5882), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5882), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5882), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5882), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5882), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5882), - [anon_sym_BSLASHgls] = ACTIONS(5882), - [anon_sym_BSLASHGls] = ACTIONS(5882), - [anon_sym_BSLASHGLS] = ACTIONS(5882), - [anon_sym_BSLASHglspl] = ACTIONS(5882), - [anon_sym_BSLASHGlspl] = ACTIONS(5882), - [anon_sym_BSLASHGLSpl] = ACTIONS(5882), - [anon_sym_BSLASHglsdisp] = ACTIONS(5882), - [anon_sym_BSLASHglslink] = ACTIONS(5882), - [anon_sym_BSLASHglstext] = ACTIONS(5882), - [anon_sym_BSLASHGlstext] = ACTIONS(5882), - [anon_sym_BSLASHGLStext] = ACTIONS(5882), - [anon_sym_BSLASHglsfirst] = ACTIONS(5882), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5882), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5882), - [anon_sym_BSLASHglsplural] = ACTIONS(5882), - [anon_sym_BSLASHGlsplural] = ACTIONS(5882), - [anon_sym_BSLASHGLSplural] = ACTIONS(5882), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5882), - [anon_sym_BSLASHglsname] = ACTIONS(5882), - [anon_sym_BSLASHGlsname] = ACTIONS(5882), - [anon_sym_BSLASHGLSname] = ACTIONS(5882), - [anon_sym_BSLASHglssymbol] = ACTIONS(5882), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5882), - [anon_sym_BSLASHglsdesc] = ACTIONS(5882), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5882), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5882), - [anon_sym_BSLASHglsuseri] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5882), - [anon_sym_BSLASHglsuserii] = ACTIONS(5882), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5882), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5882), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5882), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5882), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5882), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5882), - [anon_sym_BSLASHglsuserv] = ACTIONS(5882), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5882), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5882), - [anon_sym_BSLASHglsuservi] = ACTIONS(5882), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5882), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5882), - [anon_sym_BSLASHnewacronym] = ACTIONS(5882), - [anon_sym_BSLASHacrshort] = ACTIONS(5882), - [anon_sym_BSLASHAcrshort] = ACTIONS(5882), - [anon_sym_BSLASHACRshort] = ACTIONS(5882), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5882), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5882), - [anon_sym_BSLASHacrlong] = ACTIONS(5882), - [anon_sym_BSLASHAcrlong] = ACTIONS(5882), - [anon_sym_BSLASHACRlong] = ACTIONS(5882), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5882), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5882), - [anon_sym_BSLASHacrfull] = ACTIONS(5882), - [anon_sym_BSLASHAcrfull] = ACTIONS(5882), - [anon_sym_BSLASHACRfull] = ACTIONS(5882), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5882), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5882), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5882), - [anon_sym_BSLASHacs] = ACTIONS(5882), - [anon_sym_BSLASHAcs] = ACTIONS(5882), - [anon_sym_BSLASHacsp] = ACTIONS(5882), - [anon_sym_BSLASHAcsp] = ACTIONS(5882), - [anon_sym_BSLASHacl] = ACTIONS(5882), - [anon_sym_BSLASHAcl] = ACTIONS(5882), - [anon_sym_BSLASHaclp] = ACTIONS(5882), - [anon_sym_BSLASHAclp] = ACTIONS(5882), - [anon_sym_BSLASHacf] = ACTIONS(5882), - [anon_sym_BSLASHAcf] = ACTIONS(5882), - [anon_sym_BSLASHacfp] = ACTIONS(5882), - [anon_sym_BSLASHAcfp] = ACTIONS(5882), - [anon_sym_BSLASHac] = ACTIONS(5882), - [anon_sym_BSLASHAc] = ACTIONS(5882), - [anon_sym_BSLASHacp] = ACTIONS(5882), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5882), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5882), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5882), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5882), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5882), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5882), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5882), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5882), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5884), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5882), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5884), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5882), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5882), - [anon_sym_BSLASHcolor] = ACTIONS(5882), - [anon_sym_BSLASHcolorbox] = ACTIONS(5882), - [anon_sym_BSLASHtextcolor] = ACTIONS(5882), - [anon_sym_BSLASHpagecolor] = ACTIONS(5882), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5882), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5882), - [anon_sym_BSLASHtext] = ACTIONS(5882), - [anon_sym_BSLASHintertext] = ACTIONS(5882), - [anon_sym_shortintertext] = ACTIONS(5882), - }, - [813] = { - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(813), - [aux_sym__section_repeat3] = STATE(813), - [sym_command_name] = ACTIONS(5892), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5892), - [anon_sym_LBRACK] = ACTIONS(5894), - [anon_sym_RBRACK] = ACTIONS(5894), - [anon_sym_COMMA] = ACTIONS(5894), - [anon_sym_EQ] = ACTIONS(5894), - [anon_sym_LPAREN] = ACTIONS(5894), - [anon_sym_RPAREN] = ACTIONS(5894), - [anon_sym_BSLASHpart] = ACTIONS(5892), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5894), - [anon_sym_BSLASHaddpart] = ACTIONS(5892), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5894), - [anon_sym_BSLASHchapter] = ACTIONS(5892), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5894), - [anon_sym_BSLASHaddchap] = ACTIONS(5892), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsection] = ACTIONS(6648), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6651), - [anon_sym_BSLASHaddsec] = ACTIONS(6648), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6651), - [anon_sym_BSLASHsubsection] = ACTIONS(5892), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5892), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5894), - [anon_sym_BSLASHparagraph] = ACTIONS(5892), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5894), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5892), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5894), - [anon_sym_BSLASHitem] = ACTIONS(5892), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5894), - [anon_sym_LBRACE] = ACTIONS(5894), - [sym_word] = ACTIONS(5892), - [sym_placeholder] = ACTIONS(5894), - [anon_sym_PLUS] = ACTIONS(5894), - [anon_sym_DASH] = ACTIONS(5894), - [anon_sym_STAR] = ACTIONS(5894), - [anon_sym_SLASH] = ACTIONS(5894), - [anon_sym_LT] = ACTIONS(5892), - [anon_sym_GT] = ACTIONS(5892), - [anon_sym_BANG] = ACTIONS(5892), - [anon_sym_PIPE] = ACTIONS(5892), - [anon_sym_COLON] = ACTIONS(5892), - [anon_sym_SQUOTE] = ACTIONS(5892), - [anon_sym__] = ACTIONS(5894), - [anon_sym_CARET] = ACTIONS(5894), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5894), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5894), - [anon_sym_DOLLAR] = ACTIONS(5892), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5894), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5894), - [anon_sym_BSLASHbegin] = ACTIONS(5892), - [anon_sym_BSLASHtitle] = ACTIONS(5892), - [anon_sym_BSLASHauthor] = ACTIONS(5892), - [anon_sym_BSLASHusepackage] = ACTIONS(5892), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5892), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5892), - [anon_sym_BSLASHinclude] = ACTIONS(5892), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5892), - [anon_sym_BSLASHinput] = ACTIONS(5892), - [anon_sym_BSLASHsubfile] = ACTIONS(5892), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5892), - [anon_sym_BSLASHbibliography] = ACTIONS(5892), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5892), - [anon_sym_BSLASHincludesvg] = ACTIONS(5892), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5892), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5892), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5892), - [anon_sym_BSLASHimport] = ACTIONS(5892), - [anon_sym_BSLASHsubimport] = ACTIONS(5892), - [anon_sym_BSLASHinputfrom] = ACTIONS(5892), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5892), - [anon_sym_BSLASHincludefrom] = ACTIONS(5892), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5892), - [anon_sym_BSLASHcaption] = ACTIONS(5892), - [anon_sym_BSLASHcite] = ACTIONS(5892), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCite] = ACTIONS(5892), - [anon_sym_BSLASHnocite] = ACTIONS(5892), - [anon_sym_BSLASHcitet] = ACTIONS(5892), - [anon_sym_BSLASHcitep] = ACTIONS(5892), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteauthor] = ACTIONS(5892), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5892), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitetitle] = ACTIONS(5892), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteyear] = ACTIONS(5892), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5894), - [anon_sym_BSLASHcitedate] = ACTIONS(5892), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5894), - [anon_sym_BSLASHciteurl] = ACTIONS(5892), - [anon_sym_BSLASHfullcite] = ACTIONS(5892), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5892), - [anon_sym_BSLASHcitealt] = ACTIONS(5892), - [anon_sym_BSLASHcitealp] = ACTIONS(5892), - [anon_sym_BSLASHcitetext] = ACTIONS(5892), - [anon_sym_BSLASHparencite] = ACTIONS(5892), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHParencite] = ACTIONS(5892), - [anon_sym_BSLASHfootcite] = ACTIONS(5892), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5892), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5892), - [anon_sym_BSLASHtextcite] = ACTIONS(5892), - [anon_sym_BSLASHTextcite] = ACTIONS(5892), - [anon_sym_BSLASHsmartcite] = ACTIONS(5892), - [anon_sym_BSLASHSmartcite] = ACTIONS(5892), - [anon_sym_BSLASHsupercite] = ACTIONS(5892), - [anon_sym_BSLASHautocite] = ACTIONS(5892), - [anon_sym_BSLASHAutocite] = ACTIONS(5892), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5894), - [anon_sym_BSLASHvolcite] = ACTIONS(5892), - [anon_sym_BSLASHVolcite] = ACTIONS(5892), - [anon_sym_BSLASHpvolcite] = ACTIONS(5892), - [anon_sym_BSLASHPvolcite] = ACTIONS(5892), - [anon_sym_BSLASHfvolcite] = ACTIONS(5892), - [anon_sym_BSLASHftvolcite] = ACTIONS(5892), - [anon_sym_BSLASHsvolcite] = ACTIONS(5892), - [anon_sym_BSLASHSvolcite] = ACTIONS(5892), - [anon_sym_BSLASHtvolcite] = ACTIONS(5892), - [anon_sym_BSLASHTvolcite] = ACTIONS(5892), - [anon_sym_BSLASHavolcite] = ACTIONS(5892), - [anon_sym_BSLASHAvolcite] = ACTIONS(5892), - [anon_sym_BSLASHnotecite] = ACTIONS(5892), - [anon_sym_BSLASHNotecite] = ACTIONS(5892), - [anon_sym_BSLASHpnotecite] = ACTIONS(5892), - [anon_sym_BSLASHPnotecite] = ACTIONS(5892), - [anon_sym_BSLASHfnotecite] = ACTIONS(5892), - [anon_sym_BSLASHlabel] = ACTIONS(5892), - [anon_sym_BSLASHref] = ACTIONS(5892), - [anon_sym_BSLASHeqref] = ACTIONS(5892), - [anon_sym_BSLASHvref] = ACTIONS(5892), - [anon_sym_BSLASHVref] = ACTIONS(5892), - [anon_sym_BSLASHautoref] = ACTIONS(5892), - [anon_sym_BSLASHpageref] = ACTIONS(5892), - [anon_sym_BSLASHcref] = ACTIONS(5892), - [anon_sym_BSLASHCref] = ACTIONS(5892), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5894), - [anon_sym_BSLASHnamecref] = ACTIONS(5892), - [anon_sym_BSLASHnameCref] = ACTIONS(5892), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5892), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5892), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5892), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5892), - [anon_sym_BSLASHlabelcref] = ACTIONS(5892), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5892), - [anon_sym_BSLASHcrefrange] = ACTIONS(5892), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5894), - [anon_sym_BSLASHCrefrange] = ACTIONS(5892), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5894), - [anon_sym_BSLASHnewlabel] = ACTIONS(5892), - [anon_sym_BSLASHnewcommand] = ACTIONS(5892), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5892), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5894), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5892), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5894), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5892), - [anon_sym_BSLASHdef] = ACTIONS(5892), - [anon_sym_BSLASHlet] = ACTIONS(5892), - [anon_sym_BSLASHleft] = ACTIONS(5892), - [anon_sym_BSLASHbig] = ACTIONS(5892), - [anon_sym_BSLASHBig] = ACTIONS(5892), - [anon_sym_BSLASHbigg] = ACTIONS(5892), - [anon_sym_BSLASHBigg] = ACTIONS(5892), - [anon_sym_BSLASHbigl] = ACTIONS(5892), - [anon_sym_BSLASHBigl] = ACTIONS(5892), - [anon_sym_BSLASHbiggl] = ACTIONS(5892), - [anon_sym_BSLASHBiggl] = ACTIONS(5892), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5892), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5892), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5892), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5892), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5892), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5892), - [anon_sym_BSLASHgls] = ACTIONS(5892), - [anon_sym_BSLASHGls] = ACTIONS(5892), - [anon_sym_BSLASHGLS] = ACTIONS(5892), - [anon_sym_BSLASHglspl] = ACTIONS(5892), - [anon_sym_BSLASHGlspl] = ACTIONS(5892), - [anon_sym_BSLASHGLSpl] = ACTIONS(5892), - [anon_sym_BSLASHglsdisp] = ACTIONS(5892), - [anon_sym_BSLASHglslink] = ACTIONS(5892), - [anon_sym_BSLASHglstext] = ACTIONS(5892), - [anon_sym_BSLASHGlstext] = ACTIONS(5892), - [anon_sym_BSLASHGLStext] = ACTIONS(5892), - [anon_sym_BSLASHglsfirst] = ACTIONS(5892), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5892), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5892), - [anon_sym_BSLASHglsplural] = ACTIONS(5892), - [anon_sym_BSLASHGlsplural] = ACTIONS(5892), - [anon_sym_BSLASHGLSplural] = ACTIONS(5892), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5892), - [anon_sym_BSLASHglsname] = ACTIONS(5892), - [anon_sym_BSLASHGlsname] = ACTIONS(5892), - [anon_sym_BSLASHGLSname] = ACTIONS(5892), - [anon_sym_BSLASHglssymbol] = ACTIONS(5892), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5892), - [anon_sym_BSLASHglsdesc] = ACTIONS(5892), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5892), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5892), - [anon_sym_BSLASHglsuseri] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5892), - [anon_sym_BSLASHglsuserii] = ACTIONS(5892), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5892), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5892), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5892), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5892), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5892), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5892), - [anon_sym_BSLASHglsuserv] = ACTIONS(5892), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5892), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5892), - [anon_sym_BSLASHglsuservi] = ACTIONS(5892), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5892), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5892), - [anon_sym_BSLASHnewacronym] = ACTIONS(5892), - [anon_sym_BSLASHacrshort] = ACTIONS(5892), - [anon_sym_BSLASHAcrshort] = ACTIONS(5892), - [anon_sym_BSLASHACRshort] = ACTIONS(5892), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5892), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5892), - [anon_sym_BSLASHacrlong] = ACTIONS(5892), - [anon_sym_BSLASHAcrlong] = ACTIONS(5892), - [anon_sym_BSLASHACRlong] = ACTIONS(5892), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5892), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5892), - [anon_sym_BSLASHacrfull] = ACTIONS(5892), - [anon_sym_BSLASHAcrfull] = ACTIONS(5892), - [anon_sym_BSLASHACRfull] = ACTIONS(5892), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5892), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5892), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5892), - [anon_sym_BSLASHacs] = ACTIONS(5892), - [anon_sym_BSLASHAcs] = ACTIONS(5892), - [anon_sym_BSLASHacsp] = ACTIONS(5892), - [anon_sym_BSLASHAcsp] = ACTIONS(5892), - [anon_sym_BSLASHacl] = ACTIONS(5892), - [anon_sym_BSLASHAcl] = ACTIONS(5892), - [anon_sym_BSLASHaclp] = ACTIONS(5892), - [anon_sym_BSLASHAclp] = ACTIONS(5892), - [anon_sym_BSLASHacf] = ACTIONS(5892), - [anon_sym_BSLASHAcf] = ACTIONS(5892), - [anon_sym_BSLASHacfp] = ACTIONS(5892), - [anon_sym_BSLASHAcfp] = ACTIONS(5892), - [anon_sym_BSLASHac] = ACTIONS(5892), - [anon_sym_BSLASHAc] = ACTIONS(5892), - [anon_sym_BSLASHacp] = ACTIONS(5892), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5892), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5892), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5892), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5892), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5892), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5892), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5892), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5892), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5894), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5892), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5894), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5892), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5892), - [anon_sym_BSLASHcolor] = ACTIONS(5892), - [anon_sym_BSLASHcolorbox] = ACTIONS(5892), - [anon_sym_BSLASHtextcolor] = ACTIONS(5892), - [anon_sym_BSLASHpagecolor] = ACTIONS(5892), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5892), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5892), - [anon_sym_BSLASHtext] = ACTIONS(5892), - [anon_sym_BSLASHintertext] = ACTIONS(5892), - [anon_sym_shortintertext] = ACTIONS(5892), - }, - [814] = { - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(814), - [aux_sym__section_repeat4] = STATE(814), - [sym_command_name] = ACTIONS(5902), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5902), - [anon_sym_LBRACK] = ACTIONS(5904), - [anon_sym_RBRACK] = ACTIONS(5904), - [anon_sym_COMMA] = ACTIONS(5904), - [anon_sym_EQ] = ACTIONS(5904), - [anon_sym_LPAREN] = ACTIONS(5904), - [anon_sym_RPAREN] = ACTIONS(5904), - [anon_sym_BSLASHpart] = ACTIONS(5902), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddpart] = ACTIONS(5902), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5904), - [anon_sym_BSLASHchapter] = ACTIONS(5902), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddchap] = ACTIONS(5902), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsection] = ACTIONS(5902), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5904), - [anon_sym_BSLASHaddsec] = ACTIONS(5902), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsubsection] = ACTIONS(6654), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6657), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5902), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5904), - [anon_sym_BSLASHparagraph] = ACTIONS(5902), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5904), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5902), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5904), - [anon_sym_BSLASHitem] = ACTIONS(5902), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5904), - [anon_sym_LBRACE] = ACTIONS(5904), - [sym_word] = ACTIONS(5902), - [sym_placeholder] = ACTIONS(5904), - [anon_sym_PLUS] = ACTIONS(5904), - [anon_sym_DASH] = ACTIONS(5904), - [anon_sym_STAR] = ACTIONS(5904), - [anon_sym_SLASH] = ACTIONS(5904), - [anon_sym_LT] = ACTIONS(5902), - [anon_sym_GT] = ACTIONS(5902), - [anon_sym_BANG] = ACTIONS(5902), - [anon_sym_PIPE] = ACTIONS(5902), - [anon_sym_COLON] = ACTIONS(5902), - [anon_sym_SQUOTE] = ACTIONS(5902), - [anon_sym__] = ACTIONS(5904), - [anon_sym_CARET] = ACTIONS(5904), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5904), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5904), - [anon_sym_DOLLAR] = ACTIONS(5902), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5904), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5904), - [anon_sym_BSLASHbegin] = ACTIONS(5902), - [anon_sym_BSLASHtitle] = ACTIONS(5902), - [anon_sym_BSLASHauthor] = ACTIONS(5902), - [anon_sym_BSLASHusepackage] = ACTIONS(5902), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5902), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5902), - [anon_sym_BSLASHinclude] = ACTIONS(5902), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5902), - [anon_sym_BSLASHinput] = ACTIONS(5902), - [anon_sym_BSLASHsubfile] = ACTIONS(5902), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5902), - [anon_sym_BSLASHbibliography] = ACTIONS(5902), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5902), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5902), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5902), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5902), - [anon_sym_BSLASHimport] = ACTIONS(5902), - [anon_sym_BSLASHsubimport] = ACTIONS(5902), - [anon_sym_BSLASHinputfrom] = ACTIONS(5902), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5902), - [anon_sym_BSLASHincludefrom] = ACTIONS(5902), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5902), - [anon_sym_BSLASHcaption] = ACTIONS(5902), - [anon_sym_BSLASHcite] = ACTIONS(5902), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCite] = ACTIONS(5902), - [anon_sym_BSLASHnocite] = ACTIONS(5902), - [anon_sym_BSLASHcitet] = ACTIONS(5902), - [anon_sym_BSLASHcitep] = ACTIONS(5902), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteauthor] = ACTIONS(5902), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5902), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitetitle] = ACTIONS(5902), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteyear] = ACTIONS(5902), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5904), - [anon_sym_BSLASHcitedate] = ACTIONS(5902), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5904), - [anon_sym_BSLASHciteurl] = ACTIONS(5902), - [anon_sym_BSLASHfullcite] = ACTIONS(5902), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5902), - [anon_sym_BSLASHcitealt] = ACTIONS(5902), - [anon_sym_BSLASHcitealp] = ACTIONS(5902), - [anon_sym_BSLASHcitetext] = ACTIONS(5902), - [anon_sym_BSLASHparencite] = ACTIONS(5902), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHParencite] = ACTIONS(5902), - [anon_sym_BSLASHfootcite] = ACTIONS(5902), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5902), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5902), - [anon_sym_BSLASHtextcite] = ACTIONS(5902), - [anon_sym_BSLASHTextcite] = ACTIONS(5902), - [anon_sym_BSLASHsmartcite] = ACTIONS(5902), - [anon_sym_BSLASHSmartcite] = ACTIONS(5902), - [anon_sym_BSLASHsupercite] = ACTIONS(5902), - [anon_sym_BSLASHautocite] = ACTIONS(5902), - [anon_sym_BSLASHAutocite] = ACTIONS(5902), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5904), - [anon_sym_BSLASHvolcite] = ACTIONS(5902), - [anon_sym_BSLASHVolcite] = ACTIONS(5902), - [anon_sym_BSLASHpvolcite] = ACTIONS(5902), - [anon_sym_BSLASHPvolcite] = ACTIONS(5902), - [anon_sym_BSLASHfvolcite] = ACTIONS(5902), - [anon_sym_BSLASHftvolcite] = ACTIONS(5902), - [anon_sym_BSLASHsvolcite] = ACTIONS(5902), - [anon_sym_BSLASHSvolcite] = ACTIONS(5902), - [anon_sym_BSLASHtvolcite] = ACTIONS(5902), - [anon_sym_BSLASHTvolcite] = ACTIONS(5902), - [anon_sym_BSLASHavolcite] = ACTIONS(5902), - [anon_sym_BSLASHAvolcite] = ACTIONS(5902), - [anon_sym_BSLASHnotecite] = ACTIONS(5902), - [anon_sym_BSLASHNotecite] = ACTIONS(5902), - [anon_sym_BSLASHpnotecite] = ACTIONS(5902), - [anon_sym_BSLASHPnotecite] = ACTIONS(5902), - [anon_sym_BSLASHfnotecite] = ACTIONS(5902), - [anon_sym_BSLASHlabel] = ACTIONS(5902), - [anon_sym_BSLASHref] = ACTIONS(5902), - [anon_sym_BSLASHeqref] = ACTIONS(5902), - [anon_sym_BSLASHvref] = ACTIONS(5902), - [anon_sym_BSLASHVref] = ACTIONS(5902), - [anon_sym_BSLASHautoref] = ACTIONS(5902), - [anon_sym_BSLASHpageref] = ACTIONS(5902), - [anon_sym_BSLASHcref] = ACTIONS(5902), - [anon_sym_BSLASHCref] = ACTIONS(5902), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5904), - [anon_sym_BSLASHnamecref] = ACTIONS(5902), - [anon_sym_BSLASHnameCref] = ACTIONS(5902), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5902), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5902), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5902), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5902), - [anon_sym_BSLASHlabelcref] = ACTIONS(5902), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5902), - [anon_sym_BSLASHcrefrange] = ACTIONS(5902), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5904), - [anon_sym_BSLASHCrefrange] = ACTIONS(5902), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5904), - [anon_sym_BSLASHnewlabel] = ACTIONS(5902), - [anon_sym_BSLASHnewcommand] = ACTIONS(5902), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5902), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5904), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5902), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5904), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5902), - [anon_sym_BSLASHdef] = ACTIONS(5902), - [anon_sym_BSLASHlet] = ACTIONS(5902), - [anon_sym_BSLASHleft] = ACTIONS(5902), - [anon_sym_BSLASHbig] = ACTIONS(5902), - [anon_sym_BSLASHBig] = ACTIONS(5902), - [anon_sym_BSLASHbigg] = ACTIONS(5902), - [anon_sym_BSLASHBigg] = ACTIONS(5902), - [anon_sym_BSLASHbigl] = ACTIONS(5902), - [anon_sym_BSLASHBigl] = ACTIONS(5902), - [anon_sym_BSLASHbiggl] = ACTIONS(5902), - [anon_sym_BSLASHBiggl] = ACTIONS(5902), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5902), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5902), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5902), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5902), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5902), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5902), - [anon_sym_BSLASHgls] = ACTIONS(5902), - [anon_sym_BSLASHGls] = ACTIONS(5902), - [anon_sym_BSLASHGLS] = ACTIONS(5902), - [anon_sym_BSLASHglspl] = ACTIONS(5902), - [anon_sym_BSLASHGlspl] = ACTIONS(5902), - [anon_sym_BSLASHGLSpl] = ACTIONS(5902), - [anon_sym_BSLASHglsdisp] = ACTIONS(5902), - [anon_sym_BSLASHglslink] = ACTIONS(5902), - [anon_sym_BSLASHglstext] = ACTIONS(5902), - [anon_sym_BSLASHGlstext] = ACTIONS(5902), - [anon_sym_BSLASHGLStext] = ACTIONS(5902), - [anon_sym_BSLASHglsfirst] = ACTIONS(5902), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5902), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5902), - [anon_sym_BSLASHglsplural] = ACTIONS(5902), - [anon_sym_BSLASHGlsplural] = ACTIONS(5902), - [anon_sym_BSLASHGLSplural] = ACTIONS(5902), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5902), - [anon_sym_BSLASHglsname] = ACTIONS(5902), - [anon_sym_BSLASHGlsname] = ACTIONS(5902), - [anon_sym_BSLASHGLSname] = ACTIONS(5902), - [anon_sym_BSLASHglssymbol] = ACTIONS(5902), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5902), - [anon_sym_BSLASHglsdesc] = ACTIONS(5902), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5902), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5902), - [anon_sym_BSLASHglsuseri] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5902), - [anon_sym_BSLASHglsuserii] = ACTIONS(5902), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5902), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5902), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5902), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5902), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5902), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5902), - [anon_sym_BSLASHglsuserv] = ACTIONS(5902), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5902), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5902), - [anon_sym_BSLASHglsuservi] = ACTIONS(5902), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5902), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5902), - [anon_sym_BSLASHnewacronym] = ACTIONS(5902), - [anon_sym_BSLASHacrshort] = ACTIONS(5902), - [anon_sym_BSLASHAcrshort] = ACTIONS(5902), - [anon_sym_BSLASHACRshort] = ACTIONS(5902), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5902), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5902), - [anon_sym_BSLASHacrlong] = ACTIONS(5902), - [anon_sym_BSLASHAcrlong] = ACTIONS(5902), - [anon_sym_BSLASHACRlong] = ACTIONS(5902), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5902), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5902), - [anon_sym_BSLASHacrfull] = ACTIONS(5902), - [anon_sym_BSLASHAcrfull] = ACTIONS(5902), - [anon_sym_BSLASHACRfull] = ACTIONS(5902), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5902), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5902), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5902), - [anon_sym_BSLASHacs] = ACTIONS(5902), - [anon_sym_BSLASHAcs] = ACTIONS(5902), - [anon_sym_BSLASHacsp] = ACTIONS(5902), - [anon_sym_BSLASHAcsp] = ACTIONS(5902), - [anon_sym_BSLASHacl] = ACTIONS(5902), - [anon_sym_BSLASHAcl] = ACTIONS(5902), - [anon_sym_BSLASHaclp] = ACTIONS(5902), - [anon_sym_BSLASHAclp] = ACTIONS(5902), - [anon_sym_BSLASHacf] = ACTIONS(5902), - [anon_sym_BSLASHAcf] = ACTIONS(5902), - [anon_sym_BSLASHacfp] = ACTIONS(5902), - [anon_sym_BSLASHAcfp] = ACTIONS(5902), - [anon_sym_BSLASHac] = ACTIONS(5902), - [anon_sym_BSLASHAc] = ACTIONS(5902), - [anon_sym_BSLASHacp] = ACTIONS(5902), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5902), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5902), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5902), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5902), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5902), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5902), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5902), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5902), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5904), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5902), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5904), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5902), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5902), - [anon_sym_BSLASHcolor] = ACTIONS(5902), - [anon_sym_BSLASHcolorbox] = ACTIONS(5902), - [anon_sym_BSLASHtextcolor] = ACTIONS(5902), - [anon_sym_BSLASHpagecolor] = ACTIONS(5902), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5902), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5902), - [anon_sym_BSLASHtext] = ACTIONS(5902), - [anon_sym_BSLASHintertext] = ACTIONS(5902), - [anon_sym_shortintertext] = ACTIONS(5902), - }, - [815] = { - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(815), - [aux_sym__section_repeat5] = STATE(815), - [sym_command_name] = ACTIONS(5912), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5914), - [anon_sym_RBRACK] = ACTIONS(5914), - [anon_sym_COMMA] = ACTIONS(5914), - [anon_sym_EQ] = ACTIONS(5914), - [anon_sym_LPAREN] = ACTIONS(5914), - [anon_sym_RPAREN] = ACTIONS(5914), - [anon_sym_BSLASHpart] = ACTIONS(5912), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddpart] = ACTIONS(5912), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5914), - [anon_sym_BSLASHchapter] = ACTIONS(5912), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddchap] = ACTIONS(5912), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsection] = ACTIONS(5912), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5914), - [anon_sym_BSLASHaddsec] = ACTIONS(5912), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubsection] = ACTIONS(5912), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6660), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6663), - [anon_sym_BSLASHparagraph] = ACTIONS(5912), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5914), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5912), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5914), - [anon_sym_BSLASHitem] = ACTIONS(5912), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5914), - [anon_sym_LBRACE] = ACTIONS(5914), - [sym_word] = ACTIONS(5912), - [sym_placeholder] = ACTIONS(5914), - [anon_sym_PLUS] = ACTIONS(5914), - [anon_sym_DASH] = ACTIONS(5914), - [anon_sym_STAR] = ACTIONS(5914), - [anon_sym_SLASH] = ACTIONS(5914), - [anon_sym_LT] = ACTIONS(5912), - [anon_sym_GT] = ACTIONS(5912), - [anon_sym_BANG] = ACTIONS(5912), - [anon_sym_PIPE] = ACTIONS(5912), - [anon_sym_COLON] = ACTIONS(5912), - [anon_sym_SQUOTE] = ACTIONS(5912), - [anon_sym__] = ACTIONS(5914), - [anon_sym_CARET] = ACTIONS(5914), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5914), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5914), - [anon_sym_DOLLAR] = ACTIONS(5912), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5914), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5914), - [anon_sym_BSLASHbegin] = ACTIONS(5912), - [anon_sym_BSLASHtitle] = ACTIONS(5912), - [anon_sym_BSLASHauthor] = ACTIONS(5912), - [anon_sym_BSLASHusepackage] = ACTIONS(5912), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5912), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5912), - [anon_sym_BSLASHinclude] = ACTIONS(5912), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5912), - [anon_sym_BSLASHinput] = ACTIONS(5912), - [anon_sym_BSLASHsubfile] = ACTIONS(5912), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5912), - [anon_sym_BSLASHbibliography] = ACTIONS(5912), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5912), - [anon_sym_BSLASHincludesvg] = ACTIONS(5912), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5912), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5912), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5912), - [anon_sym_BSLASHimport] = ACTIONS(5912), - [anon_sym_BSLASHsubimport] = ACTIONS(5912), - [anon_sym_BSLASHinputfrom] = ACTIONS(5912), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5912), - [anon_sym_BSLASHincludefrom] = ACTIONS(5912), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5912), - [anon_sym_BSLASHcaption] = ACTIONS(5912), - [anon_sym_BSLASHcite] = ACTIONS(5912), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCite] = ACTIONS(5912), - [anon_sym_BSLASHnocite] = ACTIONS(5912), - [anon_sym_BSLASHcitet] = ACTIONS(5912), - [anon_sym_BSLASHcitep] = ACTIONS(5912), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteauthor] = ACTIONS(5912), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5912), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitetitle] = ACTIONS(5912), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteyear] = ACTIONS(5912), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5914), - [anon_sym_BSLASHcitedate] = ACTIONS(5912), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5914), - [anon_sym_BSLASHciteurl] = ACTIONS(5912), - [anon_sym_BSLASHfullcite] = ACTIONS(5912), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5912), - [anon_sym_BSLASHcitealt] = ACTIONS(5912), - [anon_sym_BSLASHcitealp] = ACTIONS(5912), - [anon_sym_BSLASHcitetext] = ACTIONS(5912), - [anon_sym_BSLASHparencite] = ACTIONS(5912), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHParencite] = ACTIONS(5912), - [anon_sym_BSLASHfootcite] = ACTIONS(5912), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5912), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5912), - [anon_sym_BSLASHtextcite] = ACTIONS(5912), - [anon_sym_BSLASHTextcite] = ACTIONS(5912), - [anon_sym_BSLASHsmartcite] = ACTIONS(5912), - [anon_sym_BSLASHSmartcite] = ACTIONS(5912), - [anon_sym_BSLASHsupercite] = ACTIONS(5912), - [anon_sym_BSLASHautocite] = ACTIONS(5912), - [anon_sym_BSLASHAutocite] = ACTIONS(5912), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5914), - [anon_sym_BSLASHvolcite] = ACTIONS(5912), - [anon_sym_BSLASHVolcite] = ACTIONS(5912), - [anon_sym_BSLASHpvolcite] = ACTIONS(5912), - [anon_sym_BSLASHPvolcite] = ACTIONS(5912), - [anon_sym_BSLASHfvolcite] = ACTIONS(5912), - [anon_sym_BSLASHftvolcite] = ACTIONS(5912), - [anon_sym_BSLASHsvolcite] = ACTIONS(5912), - [anon_sym_BSLASHSvolcite] = ACTIONS(5912), - [anon_sym_BSLASHtvolcite] = ACTIONS(5912), - [anon_sym_BSLASHTvolcite] = ACTIONS(5912), - [anon_sym_BSLASHavolcite] = ACTIONS(5912), - [anon_sym_BSLASHAvolcite] = ACTIONS(5912), - [anon_sym_BSLASHnotecite] = ACTIONS(5912), - [anon_sym_BSLASHNotecite] = ACTIONS(5912), - [anon_sym_BSLASHpnotecite] = ACTIONS(5912), - [anon_sym_BSLASHPnotecite] = ACTIONS(5912), - [anon_sym_BSLASHfnotecite] = ACTIONS(5912), - [anon_sym_BSLASHlabel] = ACTIONS(5912), - [anon_sym_BSLASHref] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5912), - [anon_sym_BSLASHvref] = ACTIONS(5912), - [anon_sym_BSLASHVref] = ACTIONS(5912), - [anon_sym_BSLASHautoref] = ACTIONS(5912), - [anon_sym_BSLASHpageref] = ACTIONS(5912), - [anon_sym_BSLASHcref] = ACTIONS(5912), - [anon_sym_BSLASHCref] = ACTIONS(5912), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5914), - [anon_sym_BSLASHnamecref] = ACTIONS(5912), - [anon_sym_BSLASHnameCref] = ACTIONS(5912), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5912), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5912), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5912), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5912), - [anon_sym_BSLASHlabelcref] = ACTIONS(5912), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5912), - [anon_sym_BSLASHcrefrange] = ACTIONS(5912), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5914), - [anon_sym_BSLASHCrefrange] = ACTIONS(5912), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5914), - [anon_sym_BSLASHnewlabel] = ACTIONS(5912), - [anon_sym_BSLASHnewcommand] = ACTIONS(5912), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5912), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5914), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5912), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5914), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5912), - [anon_sym_BSLASHdef] = ACTIONS(5912), - [anon_sym_BSLASHlet] = ACTIONS(5912), - [anon_sym_BSLASHleft] = ACTIONS(5912), - [anon_sym_BSLASHbig] = ACTIONS(5912), - [anon_sym_BSLASHBig] = ACTIONS(5912), - [anon_sym_BSLASHbigg] = ACTIONS(5912), - [anon_sym_BSLASHBigg] = ACTIONS(5912), - [anon_sym_BSLASHbigl] = ACTIONS(5912), - [anon_sym_BSLASHBigl] = ACTIONS(5912), - [anon_sym_BSLASHbiggl] = ACTIONS(5912), - [anon_sym_BSLASHBiggl] = ACTIONS(5912), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5912), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5912), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5912), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5912), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5912), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5912), - [anon_sym_BSLASHgls] = ACTIONS(5912), - [anon_sym_BSLASHGls] = ACTIONS(5912), - [anon_sym_BSLASHGLS] = ACTIONS(5912), - [anon_sym_BSLASHglspl] = ACTIONS(5912), - [anon_sym_BSLASHGlspl] = ACTIONS(5912), - [anon_sym_BSLASHGLSpl] = ACTIONS(5912), - [anon_sym_BSLASHglsdisp] = ACTIONS(5912), - [anon_sym_BSLASHglslink] = ACTIONS(5912), - [anon_sym_BSLASHglstext] = ACTIONS(5912), - [anon_sym_BSLASHGlstext] = ACTIONS(5912), - [anon_sym_BSLASHGLStext] = ACTIONS(5912), - [anon_sym_BSLASHglsfirst] = ACTIONS(5912), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5912), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5912), - [anon_sym_BSLASHglsplural] = ACTIONS(5912), - [anon_sym_BSLASHGlsplural] = ACTIONS(5912), - [anon_sym_BSLASHGLSplural] = ACTIONS(5912), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5912), - [anon_sym_BSLASHglsname] = ACTIONS(5912), - [anon_sym_BSLASHGlsname] = ACTIONS(5912), - [anon_sym_BSLASHGLSname] = ACTIONS(5912), - [anon_sym_BSLASHglssymbol] = ACTIONS(5912), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5912), - [anon_sym_BSLASHglsdesc] = ACTIONS(5912), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5912), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5912), - [anon_sym_BSLASHglsuseri] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5912), - [anon_sym_BSLASHglsuserii] = ACTIONS(5912), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5912), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5912), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5912), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5912), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5912), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5912), - [anon_sym_BSLASHglsuserv] = ACTIONS(5912), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5912), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5912), - [anon_sym_BSLASHglsuservi] = ACTIONS(5912), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5912), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5912), - [anon_sym_BSLASHnewacronym] = ACTIONS(5912), - [anon_sym_BSLASHacrshort] = ACTIONS(5912), - [anon_sym_BSLASHAcrshort] = ACTIONS(5912), - [anon_sym_BSLASHACRshort] = ACTIONS(5912), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5912), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5912), - [anon_sym_BSLASHacrlong] = ACTIONS(5912), - [anon_sym_BSLASHAcrlong] = ACTIONS(5912), - [anon_sym_BSLASHACRlong] = ACTIONS(5912), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5912), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5912), - [anon_sym_BSLASHacrfull] = ACTIONS(5912), - [anon_sym_BSLASHAcrfull] = ACTIONS(5912), - [anon_sym_BSLASHACRfull] = ACTIONS(5912), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5912), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5912), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5912), - [anon_sym_BSLASHacs] = ACTIONS(5912), - [anon_sym_BSLASHAcs] = ACTIONS(5912), - [anon_sym_BSLASHacsp] = ACTIONS(5912), - [anon_sym_BSLASHAcsp] = ACTIONS(5912), - [anon_sym_BSLASHacl] = ACTIONS(5912), - [anon_sym_BSLASHAcl] = ACTIONS(5912), - [anon_sym_BSLASHaclp] = ACTIONS(5912), - [anon_sym_BSLASHAclp] = ACTIONS(5912), - [anon_sym_BSLASHacf] = ACTIONS(5912), - [anon_sym_BSLASHAcf] = ACTIONS(5912), - [anon_sym_BSLASHacfp] = ACTIONS(5912), - [anon_sym_BSLASHAcfp] = ACTIONS(5912), - [anon_sym_BSLASHac] = ACTIONS(5912), - [anon_sym_BSLASHAc] = ACTIONS(5912), - [anon_sym_BSLASHacp] = ACTIONS(5912), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5912), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5912), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5912), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5912), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5912), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5912), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5912), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5912), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5914), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5912), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5914), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5912), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5912), - [anon_sym_BSLASHcolor] = ACTIONS(5912), - [anon_sym_BSLASHcolorbox] = ACTIONS(5912), - [anon_sym_BSLASHtextcolor] = ACTIONS(5912), - [anon_sym_BSLASHpagecolor] = ACTIONS(5912), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5912), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5912), - [anon_sym_BSLASHtext] = ACTIONS(5912), - [anon_sym_BSLASHintertext] = ACTIONS(5912), - [anon_sym_shortintertext] = ACTIONS(5912), - }, - [816] = { - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(816), - [aux_sym__section_repeat6] = STATE(816), - [sym_command_name] = ACTIONS(5922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5922), - [anon_sym_LBRACK] = ACTIONS(5924), - [anon_sym_RBRACK] = ACTIONS(5924), - [anon_sym_COMMA] = ACTIONS(5924), - [anon_sym_EQ] = ACTIONS(5924), - [anon_sym_LPAREN] = ACTIONS(5924), - [anon_sym_RPAREN] = ACTIONS(5924), - [anon_sym_BSLASHpart] = ACTIONS(5922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddpart] = ACTIONS(5922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5924), - [anon_sym_BSLASHchapter] = ACTIONS(5922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddchap] = ACTIONS(5922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsection] = ACTIONS(5922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHaddsec] = ACTIONS(5922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsubsection] = ACTIONS(5922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5924), - [anon_sym_BSLASHparagraph] = ACTIONS(6666), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6669), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5922), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5924), - [anon_sym_BSLASHitem] = ACTIONS(5922), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5924), - [anon_sym_LBRACE] = ACTIONS(5924), - [sym_word] = ACTIONS(5922), - [sym_placeholder] = ACTIONS(5924), - [anon_sym_PLUS] = ACTIONS(5924), - [anon_sym_DASH] = ACTIONS(5924), - [anon_sym_STAR] = ACTIONS(5924), - [anon_sym_SLASH] = ACTIONS(5924), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_BANG] = ACTIONS(5922), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_COLON] = ACTIONS(5922), - [anon_sym_SQUOTE] = ACTIONS(5922), - [anon_sym__] = ACTIONS(5924), - [anon_sym_CARET] = ACTIONS(5924), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5924), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5924), - [anon_sym_DOLLAR] = ACTIONS(5922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5924), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5924), - [anon_sym_BSLASHbegin] = ACTIONS(5922), - [anon_sym_BSLASHtitle] = ACTIONS(5922), - [anon_sym_BSLASHauthor] = ACTIONS(5922), - [anon_sym_BSLASHusepackage] = ACTIONS(5922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5922), - [anon_sym_BSLASHinclude] = ACTIONS(5922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5922), - [anon_sym_BSLASHinput] = ACTIONS(5922), - [anon_sym_BSLASHsubfile] = ACTIONS(5922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5922), - [anon_sym_BSLASHbibliography] = ACTIONS(5922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5922), - [anon_sym_BSLASHincludesvg] = ACTIONS(5922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5922), - [anon_sym_BSLASHimport] = ACTIONS(5922), - [anon_sym_BSLASHsubimport] = ACTIONS(5922), - [anon_sym_BSLASHinputfrom] = ACTIONS(5922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5922), - [anon_sym_BSLASHincludefrom] = ACTIONS(5922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5922), - [anon_sym_BSLASHcaption] = ACTIONS(5922), - [anon_sym_BSLASHcite] = ACTIONS(5922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCite] = ACTIONS(5922), - [anon_sym_BSLASHnocite] = ACTIONS(5922), - [anon_sym_BSLASHcitet] = ACTIONS(5922), - [anon_sym_BSLASHcitep] = ACTIONS(5922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteauthor] = ACTIONS(5922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitetitle] = ACTIONS(5922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteyear] = ACTIONS(5922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5924), - [anon_sym_BSLASHcitedate] = ACTIONS(5922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5924), - [anon_sym_BSLASHciteurl] = ACTIONS(5922), - [anon_sym_BSLASHfullcite] = ACTIONS(5922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5922), - [anon_sym_BSLASHcitealt] = ACTIONS(5922), - [anon_sym_BSLASHcitealp] = ACTIONS(5922), - [anon_sym_BSLASHcitetext] = ACTIONS(5922), - [anon_sym_BSLASHparencite] = ACTIONS(5922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHParencite] = ACTIONS(5922), - [anon_sym_BSLASHfootcite] = ACTIONS(5922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5922), - [anon_sym_BSLASHtextcite] = ACTIONS(5922), - [anon_sym_BSLASHTextcite] = ACTIONS(5922), - [anon_sym_BSLASHsmartcite] = ACTIONS(5922), - [anon_sym_BSLASHSmartcite] = ACTIONS(5922), - [anon_sym_BSLASHsupercite] = ACTIONS(5922), - [anon_sym_BSLASHautocite] = ACTIONS(5922), - [anon_sym_BSLASHAutocite] = ACTIONS(5922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5924), - [anon_sym_BSLASHvolcite] = ACTIONS(5922), - [anon_sym_BSLASHVolcite] = ACTIONS(5922), - [anon_sym_BSLASHpvolcite] = ACTIONS(5922), - [anon_sym_BSLASHPvolcite] = ACTIONS(5922), - [anon_sym_BSLASHfvolcite] = ACTIONS(5922), - [anon_sym_BSLASHftvolcite] = ACTIONS(5922), - [anon_sym_BSLASHsvolcite] = ACTIONS(5922), - [anon_sym_BSLASHSvolcite] = ACTIONS(5922), - [anon_sym_BSLASHtvolcite] = ACTIONS(5922), - [anon_sym_BSLASHTvolcite] = ACTIONS(5922), - [anon_sym_BSLASHavolcite] = ACTIONS(5922), - [anon_sym_BSLASHAvolcite] = ACTIONS(5922), - [anon_sym_BSLASHnotecite] = ACTIONS(5922), - [anon_sym_BSLASHNotecite] = ACTIONS(5922), - [anon_sym_BSLASHpnotecite] = ACTIONS(5922), - [anon_sym_BSLASHPnotecite] = ACTIONS(5922), - [anon_sym_BSLASHfnotecite] = ACTIONS(5922), - [anon_sym_BSLASHlabel] = ACTIONS(5922), - [anon_sym_BSLASHref] = ACTIONS(5922), - [anon_sym_BSLASHeqref] = ACTIONS(5922), - [anon_sym_BSLASHvref] = ACTIONS(5922), - [anon_sym_BSLASHVref] = ACTIONS(5922), - [anon_sym_BSLASHautoref] = ACTIONS(5922), - [anon_sym_BSLASHpageref] = ACTIONS(5922), - [anon_sym_BSLASHcref] = ACTIONS(5922), - [anon_sym_BSLASHCref] = ACTIONS(5922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5924), - [anon_sym_BSLASHnamecref] = ACTIONS(5922), - [anon_sym_BSLASHnameCref] = ACTIONS(5922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5922), - [anon_sym_BSLASHlabelcref] = ACTIONS(5922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5922), - [anon_sym_BSLASHcrefrange] = ACTIONS(5922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5924), - [anon_sym_BSLASHCrefrange] = ACTIONS(5922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5924), - [anon_sym_BSLASHnewlabel] = ACTIONS(5922), - [anon_sym_BSLASHnewcommand] = ACTIONS(5922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5924), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5924), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5922), - [anon_sym_BSLASHdef] = ACTIONS(5922), - [anon_sym_BSLASHlet] = ACTIONS(5922), - [anon_sym_BSLASHleft] = ACTIONS(5922), - [anon_sym_BSLASHbig] = ACTIONS(5922), - [anon_sym_BSLASHBig] = ACTIONS(5922), - [anon_sym_BSLASHbigg] = ACTIONS(5922), - [anon_sym_BSLASHBigg] = ACTIONS(5922), - [anon_sym_BSLASHbigl] = ACTIONS(5922), - [anon_sym_BSLASHBigl] = ACTIONS(5922), - [anon_sym_BSLASHbiggl] = ACTIONS(5922), - [anon_sym_BSLASHBiggl] = ACTIONS(5922), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5922), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5922), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5922), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5922), - [anon_sym_BSLASHgls] = ACTIONS(5922), - [anon_sym_BSLASHGls] = ACTIONS(5922), - [anon_sym_BSLASHGLS] = ACTIONS(5922), - [anon_sym_BSLASHglspl] = ACTIONS(5922), - [anon_sym_BSLASHGlspl] = ACTIONS(5922), - [anon_sym_BSLASHGLSpl] = ACTIONS(5922), - [anon_sym_BSLASHglsdisp] = ACTIONS(5922), - [anon_sym_BSLASHglslink] = ACTIONS(5922), - [anon_sym_BSLASHglstext] = ACTIONS(5922), - [anon_sym_BSLASHGlstext] = ACTIONS(5922), - [anon_sym_BSLASHGLStext] = ACTIONS(5922), - [anon_sym_BSLASHglsfirst] = ACTIONS(5922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5922), - [anon_sym_BSLASHglsplural] = ACTIONS(5922), - [anon_sym_BSLASHGlsplural] = ACTIONS(5922), - [anon_sym_BSLASHGLSplural] = ACTIONS(5922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5922), - [anon_sym_BSLASHglsname] = ACTIONS(5922), - [anon_sym_BSLASHGlsname] = ACTIONS(5922), - [anon_sym_BSLASHGLSname] = ACTIONS(5922), - [anon_sym_BSLASHglssymbol] = ACTIONS(5922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5922), - [anon_sym_BSLASHglsdesc] = ACTIONS(5922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5922), - [anon_sym_BSLASHglsuseri] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5922), - [anon_sym_BSLASHglsuserii] = ACTIONS(5922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5922), - [anon_sym_BSLASHglsuserv] = ACTIONS(5922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5922), - [anon_sym_BSLASHglsuservi] = ACTIONS(5922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5922), - [anon_sym_BSLASHnewacronym] = ACTIONS(5922), - [anon_sym_BSLASHacrshort] = ACTIONS(5922), - [anon_sym_BSLASHAcrshort] = ACTIONS(5922), - [anon_sym_BSLASHACRshort] = ACTIONS(5922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5922), - [anon_sym_BSLASHacrlong] = ACTIONS(5922), - [anon_sym_BSLASHAcrlong] = ACTIONS(5922), - [anon_sym_BSLASHACRlong] = ACTIONS(5922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5922), - [anon_sym_BSLASHacrfull] = ACTIONS(5922), - [anon_sym_BSLASHAcrfull] = ACTIONS(5922), - [anon_sym_BSLASHACRfull] = ACTIONS(5922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5922), - [anon_sym_BSLASHacs] = ACTIONS(5922), - [anon_sym_BSLASHAcs] = ACTIONS(5922), - [anon_sym_BSLASHacsp] = ACTIONS(5922), - [anon_sym_BSLASHAcsp] = ACTIONS(5922), - [anon_sym_BSLASHacl] = ACTIONS(5922), - [anon_sym_BSLASHAcl] = ACTIONS(5922), - [anon_sym_BSLASHaclp] = ACTIONS(5922), - [anon_sym_BSLASHAclp] = ACTIONS(5922), - [anon_sym_BSLASHacf] = ACTIONS(5922), - [anon_sym_BSLASHAcf] = ACTIONS(5922), - [anon_sym_BSLASHacfp] = ACTIONS(5922), - [anon_sym_BSLASHAcfp] = ACTIONS(5922), - [anon_sym_BSLASHac] = ACTIONS(5922), - [anon_sym_BSLASHAc] = ACTIONS(5922), - [anon_sym_BSLASHacp] = ACTIONS(5922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5922), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5924), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5922), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5924), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5922), - [anon_sym_BSLASHcolor] = ACTIONS(5922), - [anon_sym_BSLASHcolorbox] = ACTIONS(5922), - [anon_sym_BSLASHtextcolor] = ACTIONS(5922), - [anon_sym_BSLASHpagecolor] = ACTIONS(5922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5922), - [anon_sym_BSLASHtext] = ACTIONS(5922), - [anon_sym_BSLASHintertext] = ACTIONS(5922), - [anon_sym_shortintertext] = ACTIONS(5922), - }, - [817] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(5932), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5932), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_RBRACK] = ACTIONS(5934), - [anon_sym_COMMA] = ACTIONS(5934), - [anon_sym_EQ] = ACTIONS(5934), - [anon_sym_LPAREN] = ACTIONS(5934), - [anon_sym_RPAREN] = ACTIONS(5934), - [anon_sym_BSLASHpart] = ACTIONS(5932), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddpart] = ACTIONS(5932), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5934), - [anon_sym_BSLASHchapter] = ACTIONS(5932), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddchap] = ACTIONS(5932), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsection] = ACTIONS(5932), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHaddsec] = ACTIONS(5932), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubsection] = ACTIONS(5932), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5932), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5934), - [anon_sym_BSLASHparagraph] = ACTIONS(5932), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5934), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6672), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6675), - [anon_sym_BSLASHitem] = ACTIONS(5932), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5934), - [anon_sym_LBRACE] = ACTIONS(5934), - [sym_word] = ACTIONS(5932), - [sym_placeholder] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5934), - [anon_sym_DASH] = ACTIONS(5934), - [anon_sym_STAR] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5934), - [anon_sym_LT] = ACTIONS(5932), - [anon_sym_GT] = ACTIONS(5932), - [anon_sym_BANG] = ACTIONS(5932), - [anon_sym_PIPE] = ACTIONS(5932), - [anon_sym_COLON] = ACTIONS(5932), - [anon_sym_SQUOTE] = ACTIONS(5932), - [anon_sym__] = ACTIONS(5934), - [anon_sym_CARET] = ACTIONS(5934), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5934), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5934), - [anon_sym_DOLLAR] = ACTIONS(5932), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5934), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5934), - [anon_sym_BSLASHbegin] = ACTIONS(5932), - [anon_sym_BSLASHtitle] = ACTIONS(5932), - [anon_sym_BSLASHauthor] = ACTIONS(5932), - [anon_sym_BSLASHusepackage] = ACTIONS(5932), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5932), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5932), - [anon_sym_BSLASHinclude] = ACTIONS(5932), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5932), - [anon_sym_BSLASHinput] = ACTIONS(5932), - [anon_sym_BSLASHsubfile] = ACTIONS(5932), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5932), - [anon_sym_BSLASHbibliography] = ACTIONS(5932), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5932), - [anon_sym_BSLASHincludesvg] = ACTIONS(5932), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5932), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5932), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5932), - [anon_sym_BSLASHimport] = ACTIONS(5932), - [anon_sym_BSLASHsubimport] = ACTIONS(5932), - [anon_sym_BSLASHinputfrom] = ACTIONS(5932), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5932), - [anon_sym_BSLASHincludefrom] = ACTIONS(5932), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5932), - [anon_sym_BSLASHcaption] = ACTIONS(5932), - [anon_sym_BSLASHcite] = ACTIONS(5932), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCite] = ACTIONS(5932), - [anon_sym_BSLASHnocite] = ACTIONS(5932), - [anon_sym_BSLASHcitet] = ACTIONS(5932), - [anon_sym_BSLASHcitep] = ACTIONS(5932), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteauthor] = ACTIONS(5932), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5932), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitetitle] = ACTIONS(5932), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteyear] = ACTIONS(5932), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5934), - [anon_sym_BSLASHcitedate] = ACTIONS(5932), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5934), - [anon_sym_BSLASHciteurl] = ACTIONS(5932), - [anon_sym_BSLASHfullcite] = ACTIONS(5932), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5932), - [anon_sym_BSLASHcitealt] = ACTIONS(5932), - [anon_sym_BSLASHcitealp] = ACTIONS(5932), - [anon_sym_BSLASHcitetext] = ACTIONS(5932), - [anon_sym_BSLASHparencite] = ACTIONS(5932), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHParencite] = ACTIONS(5932), - [anon_sym_BSLASHfootcite] = ACTIONS(5932), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5932), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5932), - [anon_sym_BSLASHtextcite] = ACTIONS(5932), - [anon_sym_BSLASHTextcite] = ACTIONS(5932), - [anon_sym_BSLASHsmartcite] = ACTIONS(5932), - [anon_sym_BSLASHSmartcite] = ACTIONS(5932), - [anon_sym_BSLASHsupercite] = ACTIONS(5932), - [anon_sym_BSLASHautocite] = ACTIONS(5932), - [anon_sym_BSLASHAutocite] = ACTIONS(5932), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5934), - [anon_sym_BSLASHvolcite] = ACTIONS(5932), - [anon_sym_BSLASHVolcite] = ACTIONS(5932), - [anon_sym_BSLASHpvolcite] = ACTIONS(5932), - [anon_sym_BSLASHPvolcite] = ACTIONS(5932), - [anon_sym_BSLASHfvolcite] = ACTIONS(5932), - [anon_sym_BSLASHftvolcite] = ACTIONS(5932), - [anon_sym_BSLASHsvolcite] = ACTIONS(5932), - [anon_sym_BSLASHSvolcite] = ACTIONS(5932), - [anon_sym_BSLASHtvolcite] = ACTIONS(5932), - [anon_sym_BSLASHTvolcite] = ACTIONS(5932), - [anon_sym_BSLASHavolcite] = ACTIONS(5932), - [anon_sym_BSLASHAvolcite] = ACTIONS(5932), - [anon_sym_BSLASHnotecite] = ACTIONS(5932), - [anon_sym_BSLASHNotecite] = ACTIONS(5932), - [anon_sym_BSLASHpnotecite] = ACTIONS(5932), - [anon_sym_BSLASHPnotecite] = ACTIONS(5932), - [anon_sym_BSLASHfnotecite] = ACTIONS(5932), - [anon_sym_BSLASHlabel] = ACTIONS(5932), - [anon_sym_BSLASHref] = ACTIONS(5932), - [anon_sym_BSLASHeqref] = ACTIONS(5932), - [anon_sym_BSLASHvref] = ACTIONS(5932), - [anon_sym_BSLASHVref] = ACTIONS(5932), - [anon_sym_BSLASHautoref] = ACTIONS(5932), - [anon_sym_BSLASHpageref] = ACTIONS(5932), - [anon_sym_BSLASHcref] = ACTIONS(5932), - [anon_sym_BSLASHCref] = ACTIONS(5932), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5934), - [anon_sym_BSLASHnamecref] = ACTIONS(5932), - [anon_sym_BSLASHnameCref] = ACTIONS(5932), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5932), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5932), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5932), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5932), - [anon_sym_BSLASHlabelcref] = ACTIONS(5932), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5932), - [anon_sym_BSLASHcrefrange] = ACTIONS(5932), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5934), - [anon_sym_BSLASHCrefrange] = ACTIONS(5932), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5934), - [anon_sym_BSLASHnewlabel] = ACTIONS(5932), - [anon_sym_BSLASHnewcommand] = ACTIONS(5932), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5932), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5934), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5932), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5934), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5932), - [anon_sym_BSLASHdef] = ACTIONS(5932), - [anon_sym_BSLASHlet] = ACTIONS(5932), - [anon_sym_BSLASHleft] = ACTIONS(5932), - [anon_sym_BSLASHbig] = ACTIONS(5932), - [anon_sym_BSLASHBig] = ACTIONS(5932), - [anon_sym_BSLASHbigg] = ACTIONS(5932), - [anon_sym_BSLASHBigg] = ACTIONS(5932), - [anon_sym_BSLASHbigl] = ACTIONS(5932), - [anon_sym_BSLASHBigl] = ACTIONS(5932), - [anon_sym_BSLASHbiggl] = ACTIONS(5932), - [anon_sym_BSLASHBiggl] = ACTIONS(5932), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5932), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5932), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5932), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5932), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5932), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5932), - [anon_sym_BSLASHgls] = ACTIONS(5932), - [anon_sym_BSLASHGls] = ACTIONS(5932), - [anon_sym_BSLASHGLS] = ACTIONS(5932), - [anon_sym_BSLASHglspl] = ACTIONS(5932), - [anon_sym_BSLASHGlspl] = ACTIONS(5932), - [anon_sym_BSLASHGLSpl] = ACTIONS(5932), - [anon_sym_BSLASHglsdisp] = ACTIONS(5932), - [anon_sym_BSLASHglslink] = ACTIONS(5932), - [anon_sym_BSLASHglstext] = ACTIONS(5932), - [anon_sym_BSLASHGlstext] = ACTIONS(5932), - [anon_sym_BSLASHGLStext] = ACTIONS(5932), - [anon_sym_BSLASHglsfirst] = ACTIONS(5932), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5932), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5932), - [anon_sym_BSLASHglsplural] = ACTIONS(5932), - [anon_sym_BSLASHGlsplural] = ACTIONS(5932), - [anon_sym_BSLASHGLSplural] = ACTIONS(5932), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5932), - [anon_sym_BSLASHglsname] = ACTIONS(5932), - [anon_sym_BSLASHGlsname] = ACTIONS(5932), - [anon_sym_BSLASHGLSname] = ACTIONS(5932), - [anon_sym_BSLASHglssymbol] = ACTIONS(5932), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5932), - [anon_sym_BSLASHglsdesc] = ACTIONS(5932), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5932), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5932), - [anon_sym_BSLASHglsuseri] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5932), - [anon_sym_BSLASHglsuserii] = ACTIONS(5932), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5932), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5932), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5932), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5932), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5932), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5932), - [anon_sym_BSLASHglsuserv] = ACTIONS(5932), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5932), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5932), - [anon_sym_BSLASHglsuservi] = ACTIONS(5932), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5932), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5932), - [anon_sym_BSLASHnewacronym] = ACTIONS(5932), - [anon_sym_BSLASHacrshort] = ACTIONS(5932), - [anon_sym_BSLASHAcrshort] = ACTIONS(5932), - [anon_sym_BSLASHACRshort] = ACTIONS(5932), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5932), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5932), - [anon_sym_BSLASHacrlong] = ACTIONS(5932), - [anon_sym_BSLASHAcrlong] = ACTIONS(5932), - [anon_sym_BSLASHACRlong] = ACTIONS(5932), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5932), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5932), - [anon_sym_BSLASHacrfull] = ACTIONS(5932), - [anon_sym_BSLASHAcrfull] = ACTIONS(5932), - [anon_sym_BSLASHACRfull] = ACTIONS(5932), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5932), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5932), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5932), - [anon_sym_BSLASHacs] = ACTIONS(5932), - [anon_sym_BSLASHAcs] = ACTIONS(5932), - [anon_sym_BSLASHacsp] = ACTIONS(5932), - [anon_sym_BSLASHAcsp] = ACTIONS(5932), - [anon_sym_BSLASHacl] = ACTIONS(5932), - [anon_sym_BSLASHAcl] = ACTIONS(5932), - [anon_sym_BSLASHaclp] = ACTIONS(5932), - [anon_sym_BSLASHAclp] = ACTIONS(5932), - [anon_sym_BSLASHacf] = ACTIONS(5932), - [anon_sym_BSLASHAcf] = ACTIONS(5932), - [anon_sym_BSLASHacfp] = ACTIONS(5932), - [anon_sym_BSLASHAcfp] = ACTIONS(5932), - [anon_sym_BSLASHac] = ACTIONS(5932), - [anon_sym_BSLASHAc] = ACTIONS(5932), - [anon_sym_BSLASHacp] = ACTIONS(5932), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5932), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5932), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5932), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5932), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5932), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5932), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5932), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5932), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5934), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5932), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5932), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5932), - [anon_sym_BSLASHcolor] = ACTIONS(5932), - [anon_sym_BSLASHcolorbox] = ACTIONS(5932), - [anon_sym_BSLASHtextcolor] = ACTIONS(5932), - [anon_sym_BSLASHpagecolor] = ACTIONS(5932), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5932), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5932), - [anon_sym_BSLASHtext] = ACTIONS(5932), - [anon_sym_BSLASHintertext] = ACTIONS(5932), - [anon_sym_shortintertext] = ACTIONS(5932), - }, - [818] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(5942), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5942), - [anon_sym_LBRACK] = ACTIONS(5944), - [anon_sym_RBRACK] = ACTIONS(5944), - [anon_sym_COMMA] = ACTIONS(5944), - [anon_sym_EQ] = ACTIONS(5944), - [anon_sym_LPAREN] = ACTIONS(5944), - [anon_sym_RPAREN] = ACTIONS(5944), - [anon_sym_BSLASHpart] = ACTIONS(5942), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddpart] = ACTIONS(5942), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5944), - [anon_sym_BSLASHchapter] = ACTIONS(5942), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddchap] = ACTIONS(5942), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsection] = ACTIONS(5942), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHaddsec] = ACTIONS(5942), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubsection] = ACTIONS(5942), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5942), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5944), - [anon_sym_BSLASHparagraph] = ACTIONS(5942), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5944), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5942), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5944), - [anon_sym_BSLASHitem] = ACTIONS(6678), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6681), - [anon_sym_LBRACE] = ACTIONS(5944), - [sym_word] = ACTIONS(5942), - [sym_placeholder] = ACTIONS(5944), - [anon_sym_PLUS] = ACTIONS(5944), - [anon_sym_DASH] = ACTIONS(5944), - [anon_sym_STAR] = ACTIONS(5944), - [anon_sym_SLASH] = ACTIONS(5944), - [anon_sym_LT] = ACTIONS(5942), - [anon_sym_GT] = ACTIONS(5942), - [anon_sym_BANG] = ACTIONS(5942), - [anon_sym_PIPE] = ACTIONS(5942), - [anon_sym_COLON] = ACTIONS(5942), - [anon_sym_SQUOTE] = ACTIONS(5942), - [anon_sym__] = ACTIONS(5944), - [anon_sym_CARET] = ACTIONS(5944), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5944), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5944), - [anon_sym_DOLLAR] = ACTIONS(5942), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5944), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5944), - [anon_sym_BSLASHbegin] = ACTIONS(5942), - [anon_sym_BSLASHtitle] = ACTIONS(5942), - [anon_sym_BSLASHauthor] = ACTIONS(5942), - [anon_sym_BSLASHusepackage] = ACTIONS(5942), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5942), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5942), - [anon_sym_BSLASHinclude] = ACTIONS(5942), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5942), - [anon_sym_BSLASHinput] = ACTIONS(5942), - [anon_sym_BSLASHsubfile] = ACTIONS(5942), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5942), - [anon_sym_BSLASHbibliography] = ACTIONS(5942), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5942), - [anon_sym_BSLASHincludesvg] = ACTIONS(5942), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5942), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5942), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5942), - [anon_sym_BSLASHimport] = ACTIONS(5942), - [anon_sym_BSLASHsubimport] = ACTIONS(5942), - [anon_sym_BSLASHinputfrom] = ACTIONS(5942), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5942), - [anon_sym_BSLASHincludefrom] = ACTIONS(5942), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5942), - [anon_sym_BSLASHcaption] = ACTIONS(5942), - [anon_sym_BSLASHcite] = ACTIONS(5942), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCite] = ACTIONS(5942), - [anon_sym_BSLASHnocite] = ACTIONS(5942), - [anon_sym_BSLASHcitet] = ACTIONS(5942), - [anon_sym_BSLASHcitep] = ACTIONS(5942), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteauthor] = ACTIONS(5942), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5942), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitetitle] = ACTIONS(5942), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteyear] = ACTIONS(5942), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5944), - [anon_sym_BSLASHcitedate] = ACTIONS(5942), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5944), - [anon_sym_BSLASHciteurl] = ACTIONS(5942), - [anon_sym_BSLASHfullcite] = ACTIONS(5942), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5942), - [anon_sym_BSLASHcitealt] = ACTIONS(5942), - [anon_sym_BSLASHcitealp] = ACTIONS(5942), - [anon_sym_BSLASHcitetext] = ACTIONS(5942), - [anon_sym_BSLASHparencite] = ACTIONS(5942), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHParencite] = ACTIONS(5942), - [anon_sym_BSLASHfootcite] = ACTIONS(5942), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5942), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5942), - [anon_sym_BSLASHtextcite] = ACTIONS(5942), - [anon_sym_BSLASHTextcite] = ACTIONS(5942), - [anon_sym_BSLASHsmartcite] = ACTIONS(5942), - [anon_sym_BSLASHSmartcite] = ACTIONS(5942), - [anon_sym_BSLASHsupercite] = ACTIONS(5942), - [anon_sym_BSLASHautocite] = ACTIONS(5942), - [anon_sym_BSLASHAutocite] = ACTIONS(5942), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5944), - [anon_sym_BSLASHvolcite] = ACTIONS(5942), - [anon_sym_BSLASHVolcite] = ACTIONS(5942), - [anon_sym_BSLASHpvolcite] = ACTIONS(5942), - [anon_sym_BSLASHPvolcite] = ACTIONS(5942), - [anon_sym_BSLASHfvolcite] = ACTIONS(5942), - [anon_sym_BSLASHftvolcite] = ACTIONS(5942), - [anon_sym_BSLASHsvolcite] = ACTIONS(5942), - [anon_sym_BSLASHSvolcite] = ACTIONS(5942), - [anon_sym_BSLASHtvolcite] = ACTIONS(5942), - [anon_sym_BSLASHTvolcite] = ACTIONS(5942), - [anon_sym_BSLASHavolcite] = ACTIONS(5942), - [anon_sym_BSLASHAvolcite] = ACTIONS(5942), - [anon_sym_BSLASHnotecite] = ACTIONS(5942), - [anon_sym_BSLASHNotecite] = ACTIONS(5942), - [anon_sym_BSLASHpnotecite] = ACTIONS(5942), - [anon_sym_BSLASHPnotecite] = ACTIONS(5942), - [anon_sym_BSLASHfnotecite] = ACTIONS(5942), - [anon_sym_BSLASHlabel] = ACTIONS(5942), - [anon_sym_BSLASHref] = ACTIONS(5942), - [anon_sym_BSLASHeqref] = ACTIONS(5942), - [anon_sym_BSLASHvref] = ACTIONS(5942), - [anon_sym_BSLASHVref] = ACTIONS(5942), - [anon_sym_BSLASHautoref] = ACTIONS(5942), - [anon_sym_BSLASHpageref] = ACTIONS(5942), - [anon_sym_BSLASHcref] = ACTIONS(5942), - [anon_sym_BSLASHCref] = ACTIONS(5942), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5944), - [anon_sym_BSLASHnamecref] = ACTIONS(5942), - [anon_sym_BSLASHnameCref] = ACTIONS(5942), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5942), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5942), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5942), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5942), - [anon_sym_BSLASHlabelcref] = ACTIONS(5942), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5942), - [anon_sym_BSLASHcrefrange] = ACTIONS(5942), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5944), - [anon_sym_BSLASHCrefrange] = ACTIONS(5942), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5944), - [anon_sym_BSLASHnewlabel] = ACTIONS(5942), - [anon_sym_BSLASHnewcommand] = ACTIONS(5942), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5942), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5944), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5942), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5944), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5942), - [anon_sym_BSLASHdef] = ACTIONS(5942), - [anon_sym_BSLASHlet] = ACTIONS(5942), - [anon_sym_BSLASHleft] = ACTIONS(5942), - [anon_sym_BSLASHbig] = ACTIONS(5942), - [anon_sym_BSLASHBig] = ACTIONS(5942), - [anon_sym_BSLASHbigg] = ACTIONS(5942), - [anon_sym_BSLASHBigg] = ACTIONS(5942), - [anon_sym_BSLASHbigl] = ACTIONS(5942), - [anon_sym_BSLASHBigl] = ACTIONS(5942), - [anon_sym_BSLASHbiggl] = ACTIONS(5942), - [anon_sym_BSLASHBiggl] = ACTIONS(5942), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5942), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5942), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5942), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5942), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5942), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5942), - [anon_sym_BSLASHgls] = ACTIONS(5942), - [anon_sym_BSLASHGls] = ACTIONS(5942), - [anon_sym_BSLASHGLS] = ACTIONS(5942), - [anon_sym_BSLASHglspl] = ACTIONS(5942), - [anon_sym_BSLASHGlspl] = ACTIONS(5942), - [anon_sym_BSLASHGLSpl] = ACTIONS(5942), - [anon_sym_BSLASHglsdisp] = ACTIONS(5942), - [anon_sym_BSLASHglslink] = ACTIONS(5942), - [anon_sym_BSLASHglstext] = ACTIONS(5942), - [anon_sym_BSLASHGlstext] = ACTIONS(5942), - [anon_sym_BSLASHGLStext] = ACTIONS(5942), - [anon_sym_BSLASHglsfirst] = ACTIONS(5942), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5942), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5942), - [anon_sym_BSLASHglsplural] = ACTIONS(5942), - [anon_sym_BSLASHGlsplural] = ACTIONS(5942), - [anon_sym_BSLASHGLSplural] = ACTIONS(5942), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5942), - [anon_sym_BSLASHglsname] = ACTIONS(5942), - [anon_sym_BSLASHGlsname] = ACTIONS(5942), - [anon_sym_BSLASHGLSname] = ACTIONS(5942), - [anon_sym_BSLASHglssymbol] = ACTIONS(5942), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5942), - [anon_sym_BSLASHglsdesc] = ACTIONS(5942), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5942), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5942), - [anon_sym_BSLASHglsuseri] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5942), - [anon_sym_BSLASHglsuserii] = ACTIONS(5942), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5942), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5942), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5942), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5942), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5942), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5942), - [anon_sym_BSLASHglsuserv] = ACTIONS(5942), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5942), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5942), - [anon_sym_BSLASHglsuservi] = ACTIONS(5942), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5942), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5942), - [anon_sym_BSLASHnewacronym] = ACTIONS(5942), - [anon_sym_BSLASHacrshort] = ACTIONS(5942), - [anon_sym_BSLASHAcrshort] = ACTIONS(5942), - [anon_sym_BSLASHACRshort] = ACTIONS(5942), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5942), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5942), - [anon_sym_BSLASHacrlong] = ACTIONS(5942), - [anon_sym_BSLASHAcrlong] = ACTIONS(5942), - [anon_sym_BSLASHACRlong] = ACTIONS(5942), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5942), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5942), - [anon_sym_BSLASHacrfull] = ACTIONS(5942), - [anon_sym_BSLASHAcrfull] = ACTIONS(5942), - [anon_sym_BSLASHACRfull] = ACTIONS(5942), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5942), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5942), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5942), - [anon_sym_BSLASHacs] = ACTIONS(5942), - [anon_sym_BSLASHAcs] = ACTIONS(5942), - [anon_sym_BSLASHacsp] = ACTIONS(5942), - [anon_sym_BSLASHAcsp] = ACTIONS(5942), - [anon_sym_BSLASHacl] = ACTIONS(5942), - [anon_sym_BSLASHAcl] = ACTIONS(5942), - [anon_sym_BSLASHaclp] = ACTIONS(5942), - [anon_sym_BSLASHAclp] = ACTIONS(5942), - [anon_sym_BSLASHacf] = ACTIONS(5942), - [anon_sym_BSLASHAcf] = ACTIONS(5942), - [anon_sym_BSLASHacfp] = ACTIONS(5942), - [anon_sym_BSLASHAcfp] = ACTIONS(5942), - [anon_sym_BSLASHac] = ACTIONS(5942), - [anon_sym_BSLASHAc] = ACTIONS(5942), - [anon_sym_BSLASHacp] = ACTIONS(5942), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5942), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5942), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5942), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5942), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5942), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5942), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5942), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5942), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5944), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5942), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5944), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5942), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5942), - [anon_sym_BSLASHcolor] = ACTIONS(5942), - [anon_sym_BSLASHcolorbox] = ACTIONS(5942), - [anon_sym_BSLASHtextcolor] = ACTIONS(5942), - [anon_sym_BSLASHpagecolor] = ACTIONS(5942), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5942), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - [anon_sym_BSLASHtext] = ACTIONS(5942), - [anon_sym_BSLASHintertext] = ACTIONS(5942), - [anon_sym_shortintertext] = ACTIONS(5942), - }, - [819] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [820] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [821] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [822] = { - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(733), - [aux_sym__section_repeat6] = STATE(733), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [823] = { - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(734), - [aux_sym__section_repeat5] = STATE(734), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [824] = { - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(733), - [aux_sym__section_repeat6] = STATE(733), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [825] = { - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(735), - [aux_sym__section_repeat4] = STATE(735), - [sym_command_name] = ACTIONS(2184), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_BSLASHpart] = ACTIONS(2184), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddpart] = ACTIONS(2184), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2186), - [anon_sym_BSLASHchapter] = ACTIONS(2184), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddchap] = ACTIONS(2184), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsection] = ACTIONS(2184), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHaddsec] = ACTIONS(2184), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2184), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2186), - [anon_sym_BSLASHparagraph] = ACTIONS(2184), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2184), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2186), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2186), - [anon_sym_LBRACE] = ACTIONS(2186), - [sym_word] = ACTIONS(2184), - [sym_placeholder] = ACTIONS(2186), - [anon_sym_PLUS] = ACTIONS(2186), - [anon_sym_DASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_COLON] = ACTIONS(2184), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2186), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2186), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2186), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2186), - [anon_sym_BSLASHbegin] = ACTIONS(2184), - [anon_sym_BSLASHtitle] = ACTIONS(2184), - [anon_sym_BSLASHauthor] = ACTIONS(2184), - [anon_sym_BSLASHusepackage] = ACTIONS(2184), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2184), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2184), - [anon_sym_BSLASHinclude] = ACTIONS(2184), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2184), - [anon_sym_BSLASHinput] = ACTIONS(2184), - [anon_sym_BSLASHsubfile] = ACTIONS(2184), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2184), - [anon_sym_BSLASHbibliography] = ACTIONS(2184), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2184), - [anon_sym_BSLASHincludesvg] = ACTIONS(2184), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2184), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2184), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2184), - [anon_sym_BSLASHimport] = ACTIONS(2184), - [anon_sym_BSLASHsubimport] = ACTIONS(2184), - [anon_sym_BSLASHinputfrom] = ACTIONS(2184), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2184), - [anon_sym_BSLASHincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2184), - [anon_sym_BSLASHcaption] = ACTIONS(2184), - [anon_sym_BSLASHcite] = ACTIONS(2184), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCite] = ACTIONS(2184), - [anon_sym_BSLASHnocite] = ACTIONS(2184), - [anon_sym_BSLASHcitet] = ACTIONS(2184), - [anon_sym_BSLASHcitep] = ACTIONS(2184), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteauthor] = ACTIONS(2184), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2184), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitetitle] = ACTIONS(2184), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteyear] = ACTIONS(2184), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2186), - [anon_sym_BSLASHcitedate] = ACTIONS(2184), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2186), - [anon_sym_BSLASHciteurl] = ACTIONS(2184), - [anon_sym_BSLASHfullcite] = ACTIONS(2184), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2184), - [anon_sym_BSLASHcitealt] = ACTIONS(2184), - [anon_sym_BSLASHcitealp] = ACTIONS(2184), - [anon_sym_BSLASHcitetext] = ACTIONS(2184), - [anon_sym_BSLASHparencite] = ACTIONS(2184), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHParencite] = ACTIONS(2184), - [anon_sym_BSLASHfootcite] = ACTIONS(2184), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2184), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2184), - [anon_sym_BSLASHtextcite] = ACTIONS(2184), - [anon_sym_BSLASHTextcite] = ACTIONS(2184), - [anon_sym_BSLASHsmartcite] = ACTIONS(2184), - [anon_sym_BSLASHSmartcite] = ACTIONS(2184), - [anon_sym_BSLASHsupercite] = ACTIONS(2184), - [anon_sym_BSLASHautocite] = ACTIONS(2184), - [anon_sym_BSLASHAutocite] = ACTIONS(2184), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2186), - [anon_sym_BSLASHvolcite] = ACTIONS(2184), - [anon_sym_BSLASHVolcite] = ACTIONS(2184), - [anon_sym_BSLASHpvolcite] = ACTIONS(2184), - [anon_sym_BSLASHPvolcite] = ACTIONS(2184), - [anon_sym_BSLASHfvolcite] = ACTIONS(2184), - [anon_sym_BSLASHftvolcite] = ACTIONS(2184), - [anon_sym_BSLASHsvolcite] = ACTIONS(2184), - [anon_sym_BSLASHSvolcite] = ACTIONS(2184), - [anon_sym_BSLASHtvolcite] = ACTIONS(2184), - [anon_sym_BSLASHTvolcite] = ACTIONS(2184), - [anon_sym_BSLASHavolcite] = ACTIONS(2184), - [anon_sym_BSLASHAvolcite] = ACTIONS(2184), - [anon_sym_BSLASHnotecite] = ACTIONS(2184), - [anon_sym_BSLASHNotecite] = ACTIONS(2184), - [anon_sym_BSLASHpnotecite] = ACTIONS(2184), - [anon_sym_BSLASHPnotecite] = ACTIONS(2184), - [anon_sym_BSLASHfnotecite] = ACTIONS(2184), - [anon_sym_BSLASHlabel] = ACTIONS(2184), - [anon_sym_BSLASHref] = ACTIONS(2184), - [anon_sym_BSLASHeqref] = ACTIONS(2184), - [anon_sym_BSLASHvref] = ACTIONS(2184), - [anon_sym_BSLASHVref] = ACTIONS(2184), - [anon_sym_BSLASHautoref] = ACTIONS(2184), - [anon_sym_BSLASHpageref] = ACTIONS(2184), - [anon_sym_BSLASHcref] = ACTIONS(2184), - [anon_sym_BSLASHCref] = ACTIONS(2184), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnameCref] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2184), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2184), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2184), - [anon_sym_BSLASHlabelcref] = ACTIONS(2184), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange] = ACTIONS(2184), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHCrefrange] = ACTIONS(2184), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2186), - [anon_sym_BSLASHnewlabel] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand] = ACTIONS(2184), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2184), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2186), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2184), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2186), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2184), - [anon_sym_BSLASHdef] = ACTIONS(2184), - [anon_sym_BSLASHlet] = ACTIONS(2184), - [anon_sym_BSLASHleft] = ACTIONS(2184), - [anon_sym_BSLASHbig] = ACTIONS(2184), - [anon_sym_BSLASHBig] = ACTIONS(2184), - [anon_sym_BSLASHbigg] = ACTIONS(2184), - [anon_sym_BSLASHBigg] = ACTIONS(2184), - [anon_sym_BSLASHbigl] = ACTIONS(2184), - [anon_sym_BSLASHBigl] = ACTIONS(2184), - [anon_sym_BSLASHbiggl] = ACTIONS(2184), - [anon_sym_BSLASHBiggl] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2184), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2184), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2184), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2184), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2184), - [anon_sym_BSLASHgls] = ACTIONS(2184), - [anon_sym_BSLASHGls] = ACTIONS(2184), - [anon_sym_BSLASHGLS] = ACTIONS(2184), - [anon_sym_BSLASHglspl] = ACTIONS(2184), - [anon_sym_BSLASHGlspl] = ACTIONS(2184), - [anon_sym_BSLASHGLSpl] = ACTIONS(2184), - [anon_sym_BSLASHglsdisp] = ACTIONS(2184), - [anon_sym_BSLASHglslink] = ACTIONS(2184), - [anon_sym_BSLASHglstext] = ACTIONS(2184), - [anon_sym_BSLASHGlstext] = ACTIONS(2184), - [anon_sym_BSLASHGLStext] = ACTIONS(2184), - [anon_sym_BSLASHglsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2184), - [anon_sym_BSLASHglsplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSplural] = ACTIONS(2184), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2184), - [anon_sym_BSLASHglsname] = ACTIONS(2184), - [anon_sym_BSLASHGlsname] = ACTIONS(2184), - [anon_sym_BSLASHGLSname] = ACTIONS(2184), - [anon_sym_BSLASHglssymbol] = ACTIONS(2184), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2184), - [anon_sym_BSLASHglsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2184), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2184), - [anon_sym_BSLASHglsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2184), - [anon_sym_BSLASHglsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2184), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2184), - [anon_sym_BSLASHglsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2184), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2184), - [anon_sym_BSLASHglsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2184), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2184), - [anon_sym_BSLASHnewacronym] = ACTIONS(2184), - [anon_sym_BSLASHacrshort] = ACTIONS(2184), - [anon_sym_BSLASHAcrshort] = ACTIONS(2184), - [anon_sym_BSLASHACRshort] = ACTIONS(2184), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2184), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2184), - [anon_sym_BSLASHacrlong] = ACTIONS(2184), - [anon_sym_BSLASHAcrlong] = ACTIONS(2184), - [anon_sym_BSLASHACRlong] = ACTIONS(2184), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2184), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2184), - [anon_sym_BSLASHacrfull] = ACTIONS(2184), - [anon_sym_BSLASHAcrfull] = ACTIONS(2184), - [anon_sym_BSLASHACRfull] = ACTIONS(2184), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2184), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2184), - [anon_sym_BSLASHacs] = ACTIONS(2184), - [anon_sym_BSLASHAcs] = ACTIONS(2184), - [anon_sym_BSLASHacsp] = ACTIONS(2184), - [anon_sym_BSLASHAcsp] = ACTIONS(2184), - [anon_sym_BSLASHacl] = ACTIONS(2184), - [anon_sym_BSLASHAcl] = ACTIONS(2184), - [anon_sym_BSLASHaclp] = ACTIONS(2184), - [anon_sym_BSLASHAclp] = ACTIONS(2184), - [anon_sym_BSLASHacf] = ACTIONS(2184), - [anon_sym_BSLASHAcf] = ACTIONS(2184), - [anon_sym_BSLASHacfp] = ACTIONS(2184), - [anon_sym_BSLASHAcfp] = ACTIONS(2184), - [anon_sym_BSLASHac] = ACTIONS(2184), - [anon_sym_BSLASHAc] = ACTIONS(2184), - [anon_sym_BSLASHacp] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2184), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2184), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2184), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2184), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2184), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2186), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2184), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2184), - [anon_sym_BSLASHcolor] = ACTIONS(2184), - [anon_sym_BSLASHcolorbox] = ACTIONS(2184), - [anon_sym_BSLASHtextcolor] = ACTIONS(2184), - [anon_sym_BSLASHpagecolor] = ACTIONS(2184), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2184), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2184), - [anon_sym_BSLASHtext] = ACTIONS(2184), - [anon_sym_BSLASHintertext] = ACTIONS(2184), - [anon_sym_shortintertext] = ACTIONS(2184), - }, - [826] = { - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(734), - [aux_sym__section_repeat5] = STATE(734), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [827] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [828] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [829] = { - [sym_curly_group] = STATE(1030), - [aux_sym_generic_command_repeat1] = STATE(885), - [ts_builtin_sym_end] = ACTIONS(5985), - [sym_command_name] = ACTIONS(5983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5983), - [anon_sym_LBRACK] = ACTIONS(5985), - [anon_sym_RBRACK] = ACTIONS(5985), - [anon_sym_COMMA] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(5985), - [anon_sym_LPAREN] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_BSLASHpart] = ACTIONS(5983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddpart] = ACTIONS(5983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5985), - [anon_sym_BSLASHchapter] = ACTIONS(5983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddchap] = ACTIONS(5983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsection] = ACTIONS(5983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddsec] = ACTIONS(5983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubsection] = ACTIONS(5983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHparagraph] = ACTIONS(5983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5985), - [anon_sym_BSLASHitem] = ACTIONS(5983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5985), - [sym_word] = ACTIONS(5983), - [sym_placeholder] = ACTIONS(5985), - [anon_sym_PLUS] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(5985), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_SLASH] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(5983), - [anon_sym_GT] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5983), - [anon_sym_PIPE] = ACTIONS(5983), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_SQUOTE] = ACTIONS(5983), - [anon_sym__] = ACTIONS(5985), - [anon_sym_CARET] = ACTIONS(5985), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(5983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), - [anon_sym_BSLASHbegin] = ACTIONS(5983), - [anon_sym_BSLASHtitle] = ACTIONS(5983), - [anon_sym_BSLASHauthor] = ACTIONS(5983), - [anon_sym_BSLASHusepackage] = ACTIONS(5983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), - [anon_sym_BSLASHinclude] = ACTIONS(5983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), - [anon_sym_BSLASHinput] = ACTIONS(5983), - [anon_sym_BSLASHsubfile] = ACTIONS(5983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), - [anon_sym_BSLASHbibliography] = ACTIONS(5983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), - [anon_sym_BSLASHincludesvg] = ACTIONS(5983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), - [anon_sym_BSLASHimport] = ACTIONS(5983), - [anon_sym_BSLASHsubimport] = ACTIONS(5983), - [anon_sym_BSLASHinputfrom] = ACTIONS(5983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), - [anon_sym_BSLASHincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHcaption] = ACTIONS(5983), - [anon_sym_BSLASHcite] = ACTIONS(5983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCite] = ACTIONS(5983), - [anon_sym_BSLASHnocite] = ACTIONS(5983), - [anon_sym_BSLASHcitet] = ACTIONS(5983), - [anon_sym_BSLASHcitep] = ACTIONS(5983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteauthor] = ACTIONS(5983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitetitle] = ACTIONS(5983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteyear] = ACTIONS(5983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitedate] = ACTIONS(5983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteurl] = ACTIONS(5983), - [anon_sym_BSLASHfullcite] = ACTIONS(5983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), - [anon_sym_BSLASHcitealt] = ACTIONS(5983), - [anon_sym_BSLASHcitealp] = ACTIONS(5983), - [anon_sym_BSLASHcitetext] = ACTIONS(5983), - [anon_sym_BSLASHparencite] = ACTIONS(5983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHParencite] = ACTIONS(5983), - [anon_sym_BSLASHfootcite] = ACTIONS(5983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), - [anon_sym_BSLASHtextcite] = ACTIONS(5983), - [anon_sym_BSLASHTextcite] = ACTIONS(5983), - [anon_sym_BSLASHsmartcite] = ACTIONS(5983), - [anon_sym_BSLASHSmartcite] = ACTIONS(5983), - [anon_sym_BSLASHsupercite] = ACTIONS(5983), - [anon_sym_BSLASHautocite] = ACTIONS(5983), - [anon_sym_BSLASHAutocite] = ACTIONS(5983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHvolcite] = ACTIONS(5983), - [anon_sym_BSLASHVolcite] = ACTIONS(5983), - [anon_sym_BSLASHpvolcite] = ACTIONS(5983), - [anon_sym_BSLASHPvolcite] = ACTIONS(5983), - [anon_sym_BSLASHfvolcite] = ACTIONS(5983), - [anon_sym_BSLASHftvolcite] = ACTIONS(5983), - [anon_sym_BSLASHsvolcite] = ACTIONS(5983), - [anon_sym_BSLASHSvolcite] = ACTIONS(5983), - [anon_sym_BSLASHtvolcite] = ACTIONS(5983), - [anon_sym_BSLASHTvolcite] = ACTIONS(5983), - [anon_sym_BSLASHavolcite] = ACTIONS(5983), - [anon_sym_BSLASHAvolcite] = ACTIONS(5983), - [anon_sym_BSLASHnotecite] = ACTIONS(5983), - [anon_sym_BSLASHNotecite] = ACTIONS(5983), - [anon_sym_BSLASHpnotecite] = ACTIONS(5983), - [anon_sym_BSLASHPnotecite] = ACTIONS(5983), - [anon_sym_BSLASHfnotecite] = ACTIONS(5983), - [anon_sym_BSLASHlabel] = ACTIONS(5983), - [anon_sym_BSLASHref] = ACTIONS(5983), - [anon_sym_BSLASHeqref] = ACTIONS(5983), - [anon_sym_BSLASHvref] = ACTIONS(5983), - [anon_sym_BSLASHVref] = ACTIONS(5983), - [anon_sym_BSLASHautoref] = ACTIONS(5983), - [anon_sym_BSLASHpageref] = ACTIONS(5983), - [anon_sym_BSLASHcref] = ACTIONS(5983), - [anon_sym_BSLASHCref] = ACTIONS(5983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnameCref] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHlabelcref] = ACTIONS(5983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCrefrange] = ACTIONS(5983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnewlabel] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHdef] = ACTIONS(5983), - [anon_sym_BSLASHlet] = ACTIONS(5983), - [anon_sym_BSLASHleft] = ACTIONS(5983), - [anon_sym_BSLASHbig] = ACTIONS(5983), - [anon_sym_BSLASHBig] = ACTIONS(5983), - [anon_sym_BSLASHbigg] = ACTIONS(5983), - [anon_sym_BSLASHBigg] = ACTIONS(5983), - [anon_sym_BSLASHbigl] = ACTIONS(5983), - [anon_sym_BSLASHBigl] = ACTIONS(5983), - [anon_sym_BSLASHbiggl] = ACTIONS(5983), - [anon_sym_BSLASHBiggl] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), - [anon_sym_BSLASHgls] = ACTIONS(5983), - [anon_sym_BSLASHGls] = ACTIONS(5983), - [anon_sym_BSLASHGLS] = ACTIONS(5983), - [anon_sym_BSLASHglspl] = ACTIONS(5983), - [anon_sym_BSLASHGlspl] = ACTIONS(5983), - [anon_sym_BSLASHGLSpl] = ACTIONS(5983), - [anon_sym_BSLASHglsdisp] = ACTIONS(5983), - [anon_sym_BSLASHglslink] = ACTIONS(5983), - [anon_sym_BSLASHglstext] = ACTIONS(5983), - [anon_sym_BSLASHGlstext] = ACTIONS(5983), - [anon_sym_BSLASHGLStext] = ACTIONS(5983), - [anon_sym_BSLASHglsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), - [anon_sym_BSLASHglsplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSplural] = ACTIONS(5983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHglsname] = ACTIONS(5983), - [anon_sym_BSLASHGlsname] = ACTIONS(5983), - [anon_sym_BSLASHGLSname] = ACTIONS(5983), - [anon_sym_BSLASHglssymbol] = ACTIONS(5983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), - [anon_sym_BSLASHglsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), - [anon_sym_BSLASHglsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), - [anon_sym_BSLASHglsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), - [anon_sym_BSLASHglsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), - [anon_sym_BSLASHglsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), - [anon_sym_BSLASHnewacronym] = ACTIONS(5983), - [anon_sym_BSLASHacrshort] = ACTIONS(5983), - [anon_sym_BSLASHAcrshort] = ACTIONS(5983), - [anon_sym_BSLASHACRshort] = ACTIONS(5983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), - [anon_sym_BSLASHacrlong] = ACTIONS(5983), - [anon_sym_BSLASHAcrlong] = ACTIONS(5983), - [anon_sym_BSLASHACRlong] = ACTIONS(5983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), - [anon_sym_BSLASHacrfull] = ACTIONS(5983), - [anon_sym_BSLASHAcrfull] = ACTIONS(5983), - [anon_sym_BSLASHACRfull] = ACTIONS(5983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), - [anon_sym_BSLASHacs] = ACTIONS(5983), - [anon_sym_BSLASHAcs] = ACTIONS(5983), - [anon_sym_BSLASHacsp] = ACTIONS(5983), - [anon_sym_BSLASHAcsp] = ACTIONS(5983), - [anon_sym_BSLASHacl] = ACTIONS(5983), - [anon_sym_BSLASHAcl] = ACTIONS(5983), - [anon_sym_BSLASHaclp] = ACTIONS(5983), - [anon_sym_BSLASHAclp] = ACTIONS(5983), - [anon_sym_BSLASHacf] = ACTIONS(5983), - [anon_sym_BSLASHAcf] = ACTIONS(5983), - [anon_sym_BSLASHacfp] = ACTIONS(5983), - [anon_sym_BSLASHAcfp] = ACTIONS(5983), - [anon_sym_BSLASHac] = ACTIONS(5983), - [anon_sym_BSLASHAc] = ACTIONS(5983), - [anon_sym_BSLASHacp] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), - [anon_sym_BSLASHcolor] = ACTIONS(5983), - [anon_sym_BSLASHcolorbox] = ACTIONS(5983), - [anon_sym_BSLASHtextcolor] = ACTIONS(5983), - [anon_sym_BSLASHpagecolor] = ACTIONS(5983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), - [anon_sym_BSLASHtext] = ACTIONS(5983), - [anon_sym_BSLASHintertext] = ACTIONS(5983), - [anon_sym_shortintertext] = ACTIONS(5983), - }, - [830] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [831] = { - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(733), - [aux_sym__section_repeat6] = STATE(733), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [832] = { - [sym__section_part] = STATE(1303), - [sym_curly_group] = STATE(1301), - [sym_brack_group] = STATE(3082), - [sym_command_name] = ACTIONS(5828), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5828), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5830), - [anon_sym_COMMA] = ACTIONS(5830), - [anon_sym_EQ] = ACTIONS(5830), - [anon_sym_LPAREN] = ACTIONS(5830), - [anon_sym_RPAREN] = ACTIONS(5830), - [anon_sym_BSLASHpart] = ACTIONS(5828), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddpart] = ACTIONS(5828), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5830), - [anon_sym_BSLASHchapter] = ACTIONS(5828), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddchap] = ACTIONS(5828), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsection] = ACTIONS(5828), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHaddsec] = ACTIONS(5828), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubsection] = ACTIONS(5828), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5828), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5830), - [anon_sym_BSLASHparagraph] = ACTIONS(5828), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5830), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5828), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5830), - [anon_sym_BSLASHitem] = ACTIONS(5828), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5830), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(5828), - [sym_placeholder] = ACTIONS(5830), - [anon_sym_PLUS] = ACTIONS(5830), - [anon_sym_DASH] = ACTIONS(5830), - [anon_sym_STAR] = ACTIONS(5830), - [anon_sym_SLASH] = ACTIONS(5830), - [anon_sym_LT] = ACTIONS(5828), - [anon_sym_GT] = ACTIONS(5828), - [anon_sym_BANG] = ACTIONS(5828), - [anon_sym_PIPE] = ACTIONS(5828), - [anon_sym_COLON] = ACTIONS(5828), - [anon_sym_SQUOTE] = ACTIONS(5828), - [anon_sym__] = ACTIONS(5830), - [anon_sym_CARET] = ACTIONS(5830), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5830), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5830), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5830), - [anon_sym_DOLLAR] = ACTIONS(5828), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5830), - [anon_sym_BSLASHbegin] = ACTIONS(5828), - [anon_sym_BSLASHtitle] = ACTIONS(5828), - [anon_sym_BSLASHauthor] = ACTIONS(5828), - [anon_sym_BSLASHusepackage] = ACTIONS(5828), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5828), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5828), - [anon_sym_BSLASHinclude] = ACTIONS(5828), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5828), - [anon_sym_BSLASHinput] = ACTIONS(5828), - [anon_sym_BSLASHsubfile] = ACTIONS(5828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5828), - [anon_sym_BSLASHbibliography] = ACTIONS(5828), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5828), - [anon_sym_BSLASHincludesvg] = ACTIONS(5828), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5828), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5828), - [anon_sym_BSLASHimport] = ACTIONS(5828), - [anon_sym_BSLASHsubimport] = ACTIONS(5828), - [anon_sym_BSLASHinputfrom] = ACTIONS(5828), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5828), - [anon_sym_BSLASHincludefrom] = ACTIONS(5828), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5828), - [anon_sym_BSLASHcaption] = ACTIONS(5828), - [anon_sym_BSLASHcite] = ACTIONS(5828), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCite] = ACTIONS(5828), - [anon_sym_BSLASHnocite] = ACTIONS(5828), - [anon_sym_BSLASHcitet] = ACTIONS(5828), - [anon_sym_BSLASHcitep] = ACTIONS(5828), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteauthor] = ACTIONS(5828), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5828), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitetitle] = ACTIONS(5828), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteyear] = ACTIONS(5828), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5830), - [anon_sym_BSLASHcitedate] = ACTIONS(5828), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5830), - [anon_sym_BSLASHciteurl] = ACTIONS(5828), - [anon_sym_BSLASHfullcite] = ACTIONS(5828), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5828), - [anon_sym_BSLASHcitealt] = ACTIONS(5828), - [anon_sym_BSLASHcitealp] = ACTIONS(5828), - [anon_sym_BSLASHcitetext] = ACTIONS(5828), - [anon_sym_BSLASHparencite] = ACTIONS(5828), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHParencite] = ACTIONS(5828), - [anon_sym_BSLASHfootcite] = ACTIONS(5828), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5828), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5828), - [anon_sym_BSLASHtextcite] = ACTIONS(5828), - [anon_sym_BSLASHTextcite] = ACTIONS(5828), - [anon_sym_BSLASHsmartcite] = ACTIONS(5828), - [anon_sym_BSLASHSmartcite] = ACTIONS(5828), - [anon_sym_BSLASHsupercite] = ACTIONS(5828), - [anon_sym_BSLASHautocite] = ACTIONS(5828), - [anon_sym_BSLASHAutocite] = ACTIONS(5828), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5830), - [anon_sym_BSLASHvolcite] = ACTIONS(5828), - [anon_sym_BSLASHVolcite] = ACTIONS(5828), - [anon_sym_BSLASHpvolcite] = ACTIONS(5828), - [anon_sym_BSLASHPvolcite] = ACTIONS(5828), - [anon_sym_BSLASHfvolcite] = ACTIONS(5828), - [anon_sym_BSLASHftvolcite] = ACTIONS(5828), - [anon_sym_BSLASHsvolcite] = ACTIONS(5828), - [anon_sym_BSLASHSvolcite] = ACTIONS(5828), - [anon_sym_BSLASHtvolcite] = ACTIONS(5828), - [anon_sym_BSLASHTvolcite] = ACTIONS(5828), - [anon_sym_BSLASHavolcite] = ACTIONS(5828), - [anon_sym_BSLASHAvolcite] = ACTIONS(5828), - [anon_sym_BSLASHnotecite] = ACTIONS(5828), - [anon_sym_BSLASHNotecite] = ACTIONS(5828), - [anon_sym_BSLASHpnotecite] = ACTIONS(5828), - [anon_sym_BSLASHPnotecite] = ACTIONS(5828), - [anon_sym_BSLASHfnotecite] = ACTIONS(5828), - [anon_sym_BSLASHlabel] = ACTIONS(5828), - [anon_sym_BSLASHref] = ACTIONS(5828), - [anon_sym_BSLASHeqref] = ACTIONS(5828), - [anon_sym_BSLASHvref] = ACTIONS(5828), - [anon_sym_BSLASHVref] = ACTIONS(5828), - [anon_sym_BSLASHautoref] = ACTIONS(5828), - [anon_sym_BSLASHpageref] = ACTIONS(5828), - [anon_sym_BSLASHcref] = ACTIONS(5828), - [anon_sym_BSLASHCref] = ACTIONS(5828), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5830), - [anon_sym_BSLASHnamecref] = ACTIONS(5828), - [anon_sym_BSLASHnameCref] = ACTIONS(5828), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5828), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5828), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5828), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5828), - [anon_sym_BSLASHlabelcref] = ACTIONS(5828), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5828), - [anon_sym_BSLASHcrefrange] = ACTIONS(5828), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5830), - [anon_sym_BSLASHCrefrange] = ACTIONS(5828), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5830), - [anon_sym_BSLASHnewlabel] = ACTIONS(5828), - [anon_sym_BSLASHnewcommand] = ACTIONS(5828), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5828), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5830), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5828), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5830), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5828), - [anon_sym_BSLASHdef] = ACTIONS(5828), - [anon_sym_BSLASHlet] = ACTIONS(5828), - [anon_sym_BSLASHleft] = ACTIONS(5828), - [anon_sym_BSLASHbig] = ACTIONS(5828), - [anon_sym_BSLASHBig] = ACTIONS(5828), - [anon_sym_BSLASHbigg] = ACTIONS(5828), - [anon_sym_BSLASHBigg] = ACTIONS(5828), - [anon_sym_BSLASHbigl] = ACTIONS(5828), - [anon_sym_BSLASHBigl] = ACTIONS(5828), - [anon_sym_BSLASHbiggl] = ACTIONS(5828), - [anon_sym_BSLASHBiggl] = ACTIONS(5828), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5828), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5828), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5828), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5828), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5828), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5828), - [anon_sym_BSLASHgls] = ACTIONS(5828), - [anon_sym_BSLASHGls] = ACTIONS(5828), - [anon_sym_BSLASHGLS] = ACTIONS(5828), - [anon_sym_BSLASHglspl] = ACTIONS(5828), - [anon_sym_BSLASHGlspl] = ACTIONS(5828), - [anon_sym_BSLASHGLSpl] = ACTIONS(5828), - [anon_sym_BSLASHglsdisp] = ACTIONS(5828), - [anon_sym_BSLASHglslink] = ACTIONS(5828), - [anon_sym_BSLASHglstext] = ACTIONS(5828), - [anon_sym_BSLASHGlstext] = ACTIONS(5828), - [anon_sym_BSLASHGLStext] = ACTIONS(5828), - [anon_sym_BSLASHglsfirst] = ACTIONS(5828), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5828), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5828), - [anon_sym_BSLASHglsplural] = ACTIONS(5828), - [anon_sym_BSLASHGlsplural] = ACTIONS(5828), - [anon_sym_BSLASHGLSplural] = ACTIONS(5828), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5828), - [anon_sym_BSLASHglsname] = ACTIONS(5828), - [anon_sym_BSLASHGlsname] = ACTIONS(5828), - [anon_sym_BSLASHGLSname] = ACTIONS(5828), - [anon_sym_BSLASHglssymbol] = ACTIONS(5828), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5828), - [anon_sym_BSLASHglsdesc] = ACTIONS(5828), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5828), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5828), - [anon_sym_BSLASHglsuseri] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5828), - [anon_sym_BSLASHglsuserii] = ACTIONS(5828), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5828), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5828), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5828), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5828), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5828), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5828), - [anon_sym_BSLASHglsuserv] = ACTIONS(5828), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5828), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5828), - [anon_sym_BSLASHglsuservi] = ACTIONS(5828), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5828), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5828), - [anon_sym_BSLASHnewacronym] = ACTIONS(5828), - [anon_sym_BSLASHacrshort] = ACTIONS(5828), - [anon_sym_BSLASHAcrshort] = ACTIONS(5828), - [anon_sym_BSLASHACRshort] = ACTIONS(5828), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5828), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5828), - [anon_sym_BSLASHacrlong] = ACTIONS(5828), - [anon_sym_BSLASHAcrlong] = ACTIONS(5828), - [anon_sym_BSLASHACRlong] = ACTIONS(5828), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5828), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5828), - [anon_sym_BSLASHacrfull] = ACTIONS(5828), - [anon_sym_BSLASHAcrfull] = ACTIONS(5828), - [anon_sym_BSLASHACRfull] = ACTIONS(5828), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5828), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5828), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5828), - [anon_sym_BSLASHacs] = ACTIONS(5828), - [anon_sym_BSLASHAcs] = ACTIONS(5828), - [anon_sym_BSLASHacsp] = ACTIONS(5828), - [anon_sym_BSLASHAcsp] = ACTIONS(5828), - [anon_sym_BSLASHacl] = ACTIONS(5828), - [anon_sym_BSLASHAcl] = ACTIONS(5828), - [anon_sym_BSLASHaclp] = ACTIONS(5828), - [anon_sym_BSLASHAclp] = ACTIONS(5828), - [anon_sym_BSLASHacf] = ACTIONS(5828), - [anon_sym_BSLASHAcf] = ACTIONS(5828), - [anon_sym_BSLASHacfp] = ACTIONS(5828), - [anon_sym_BSLASHAcfp] = ACTIONS(5828), - [anon_sym_BSLASHac] = ACTIONS(5828), - [anon_sym_BSLASHAc] = ACTIONS(5828), - [anon_sym_BSLASHacp] = ACTIONS(5828), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5828), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5828), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5828), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5828), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5828), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5828), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5828), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5828), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5830), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5828), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5830), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5828), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5828), - [anon_sym_BSLASHcolor] = ACTIONS(5828), - [anon_sym_BSLASHcolorbox] = ACTIONS(5828), - [anon_sym_BSLASHtextcolor] = ACTIONS(5828), - [anon_sym_BSLASHpagecolor] = ACTIONS(5828), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5828), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5828), - [anon_sym_BSLASHtext] = ACTIONS(5828), - [anon_sym_BSLASHintertext] = ACTIONS(5828), - [anon_sym_shortintertext] = ACTIONS(5828), - }, - [833] = { - [sym__section_part] = STATE(1299), - [sym_curly_group] = STATE(1301), - [sym_brack_group] = STATE(3082), - [sym_command_name] = ACTIONS(5832), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5832), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5834), - [anon_sym_COMMA] = ACTIONS(5834), - [anon_sym_EQ] = ACTIONS(5834), - [anon_sym_LPAREN] = ACTIONS(5834), - [anon_sym_RPAREN] = ACTIONS(5834), - [anon_sym_BSLASHpart] = ACTIONS(5832), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddpart] = ACTIONS(5832), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5834), - [anon_sym_BSLASHchapter] = ACTIONS(5832), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddchap] = ACTIONS(5832), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsection] = ACTIONS(5832), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHaddsec] = ACTIONS(5832), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubsection] = ACTIONS(5832), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5832), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5834), - [anon_sym_BSLASHparagraph] = ACTIONS(5832), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5834), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5832), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5834), - [anon_sym_BSLASHitem] = ACTIONS(5832), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5834), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(5832), - [sym_placeholder] = ACTIONS(5834), - [anon_sym_PLUS] = ACTIONS(5834), - [anon_sym_DASH] = ACTIONS(5834), - [anon_sym_STAR] = ACTIONS(5834), - [anon_sym_SLASH] = ACTIONS(5834), - [anon_sym_LT] = ACTIONS(5832), - [anon_sym_GT] = ACTIONS(5832), - [anon_sym_BANG] = ACTIONS(5832), - [anon_sym_PIPE] = ACTIONS(5832), - [anon_sym_COLON] = ACTIONS(5832), - [anon_sym_SQUOTE] = ACTIONS(5832), - [anon_sym__] = ACTIONS(5834), - [anon_sym_CARET] = ACTIONS(5834), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5834), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5834), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5834), - [anon_sym_DOLLAR] = ACTIONS(5832), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5834), - [anon_sym_BSLASHbegin] = ACTIONS(5832), - [anon_sym_BSLASHtitle] = ACTIONS(5832), - [anon_sym_BSLASHauthor] = ACTIONS(5832), - [anon_sym_BSLASHusepackage] = ACTIONS(5832), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5832), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5832), - [anon_sym_BSLASHinclude] = ACTIONS(5832), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5832), - [anon_sym_BSLASHinput] = ACTIONS(5832), - [anon_sym_BSLASHsubfile] = ACTIONS(5832), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5832), - [anon_sym_BSLASHbibliography] = ACTIONS(5832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5832), - [anon_sym_BSLASHincludesvg] = ACTIONS(5832), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5832), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5832), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5832), - [anon_sym_BSLASHimport] = ACTIONS(5832), - [anon_sym_BSLASHsubimport] = ACTIONS(5832), - [anon_sym_BSLASHinputfrom] = ACTIONS(5832), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5832), - [anon_sym_BSLASHincludefrom] = ACTIONS(5832), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5832), - [anon_sym_BSLASHcaption] = ACTIONS(5832), - [anon_sym_BSLASHcite] = ACTIONS(5832), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCite] = ACTIONS(5832), - [anon_sym_BSLASHnocite] = ACTIONS(5832), - [anon_sym_BSLASHcitet] = ACTIONS(5832), - [anon_sym_BSLASHcitep] = ACTIONS(5832), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteauthor] = ACTIONS(5832), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5832), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitetitle] = ACTIONS(5832), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteyear] = ACTIONS(5832), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5834), - [anon_sym_BSLASHcitedate] = ACTIONS(5832), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5834), - [anon_sym_BSLASHciteurl] = ACTIONS(5832), - [anon_sym_BSLASHfullcite] = ACTIONS(5832), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5832), - [anon_sym_BSLASHcitealt] = ACTIONS(5832), - [anon_sym_BSLASHcitealp] = ACTIONS(5832), - [anon_sym_BSLASHcitetext] = ACTIONS(5832), - [anon_sym_BSLASHparencite] = ACTIONS(5832), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHParencite] = ACTIONS(5832), - [anon_sym_BSLASHfootcite] = ACTIONS(5832), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5832), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5832), - [anon_sym_BSLASHtextcite] = ACTIONS(5832), - [anon_sym_BSLASHTextcite] = ACTIONS(5832), - [anon_sym_BSLASHsmartcite] = ACTIONS(5832), - [anon_sym_BSLASHSmartcite] = ACTIONS(5832), - [anon_sym_BSLASHsupercite] = ACTIONS(5832), - [anon_sym_BSLASHautocite] = ACTIONS(5832), - [anon_sym_BSLASHAutocite] = ACTIONS(5832), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5834), - [anon_sym_BSLASHvolcite] = ACTIONS(5832), - [anon_sym_BSLASHVolcite] = ACTIONS(5832), - [anon_sym_BSLASHpvolcite] = ACTIONS(5832), - [anon_sym_BSLASHPvolcite] = ACTIONS(5832), - [anon_sym_BSLASHfvolcite] = ACTIONS(5832), - [anon_sym_BSLASHftvolcite] = ACTIONS(5832), - [anon_sym_BSLASHsvolcite] = ACTIONS(5832), - [anon_sym_BSLASHSvolcite] = ACTIONS(5832), - [anon_sym_BSLASHtvolcite] = ACTIONS(5832), - [anon_sym_BSLASHTvolcite] = ACTIONS(5832), - [anon_sym_BSLASHavolcite] = ACTIONS(5832), - [anon_sym_BSLASHAvolcite] = ACTIONS(5832), - [anon_sym_BSLASHnotecite] = ACTIONS(5832), - [anon_sym_BSLASHNotecite] = ACTIONS(5832), - [anon_sym_BSLASHpnotecite] = ACTIONS(5832), - [anon_sym_BSLASHPnotecite] = ACTIONS(5832), - [anon_sym_BSLASHfnotecite] = ACTIONS(5832), - [anon_sym_BSLASHlabel] = ACTIONS(5832), - [anon_sym_BSLASHref] = ACTIONS(5832), - [anon_sym_BSLASHeqref] = ACTIONS(5832), - [anon_sym_BSLASHvref] = ACTIONS(5832), - [anon_sym_BSLASHVref] = ACTIONS(5832), - [anon_sym_BSLASHautoref] = ACTIONS(5832), - [anon_sym_BSLASHpageref] = ACTIONS(5832), - [anon_sym_BSLASHcref] = ACTIONS(5832), - [anon_sym_BSLASHCref] = ACTIONS(5832), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5834), - [anon_sym_BSLASHnamecref] = ACTIONS(5832), - [anon_sym_BSLASHnameCref] = ACTIONS(5832), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5832), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5832), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5832), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5832), - [anon_sym_BSLASHlabelcref] = ACTIONS(5832), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5832), - [anon_sym_BSLASHcrefrange] = ACTIONS(5832), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5834), - [anon_sym_BSLASHCrefrange] = ACTIONS(5832), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5834), - [anon_sym_BSLASHnewlabel] = ACTIONS(5832), - [anon_sym_BSLASHnewcommand] = ACTIONS(5832), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5832), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5834), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5832), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5834), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5832), - [anon_sym_BSLASHdef] = ACTIONS(5832), - [anon_sym_BSLASHlet] = ACTIONS(5832), - [anon_sym_BSLASHleft] = ACTIONS(5832), - [anon_sym_BSLASHbig] = ACTIONS(5832), - [anon_sym_BSLASHBig] = ACTIONS(5832), - [anon_sym_BSLASHbigg] = ACTIONS(5832), - [anon_sym_BSLASHBigg] = ACTIONS(5832), - [anon_sym_BSLASHbigl] = ACTIONS(5832), - [anon_sym_BSLASHBigl] = ACTIONS(5832), - [anon_sym_BSLASHbiggl] = ACTIONS(5832), - [anon_sym_BSLASHBiggl] = ACTIONS(5832), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5832), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5832), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5832), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5832), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5832), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5832), - [anon_sym_BSLASHgls] = ACTIONS(5832), - [anon_sym_BSLASHGls] = ACTIONS(5832), - [anon_sym_BSLASHGLS] = ACTIONS(5832), - [anon_sym_BSLASHglspl] = ACTIONS(5832), - [anon_sym_BSLASHGlspl] = ACTIONS(5832), - [anon_sym_BSLASHGLSpl] = ACTIONS(5832), - [anon_sym_BSLASHglsdisp] = ACTIONS(5832), - [anon_sym_BSLASHglslink] = ACTIONS(5832), - [anon_sym_BSLASHglstext] = ACTIONS(5832), - [anon_sym_BSLASHGlstext] = ACTIONS(5832), - [anon_sym_BSLASHGLStext] = ACTIONS(5832), - [anon_sym_BSLASHglsfirst] = ACTIONS(5832), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5832), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5832), - [anon_sym_BSLASHglsplural] = ACTIONS(5832), - [anon_sym_BSLASHGlsplural] = ACTIONS(5832), - [anon_sym_BSLASHGLSplural] = ACTIONS(5832), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5832), - [anon_sym_BSLASHglsname] = ACTIONS(5832), - [anon_sym_BSLASHGlsname] = ACTIONS(5832), - [anon_sym_BSLASHGLSname] = ACTIONS(5832), - [anon_sym_BSLASHglssymbol] = ACTIONS(5832), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5832), - [anon_sym_BSLASHglsdesc] = ACTIONS(5832), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5832), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5832), - [anon_sym_BSLASHglsuseri] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5832), - [anon_sym_BSLASHglsuserii] = ACTIONS(5832), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5832), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5832), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5832), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5832), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5832), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5832), - [anon_sym_BSLASHglsuserv] = ACTIONS(5832), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5832), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5832), - [anon_sym_BSLASHglsuservi] = ACTIONS(5832), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5832), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5832), - [anon_sym_BSLASHnewacronym] = ACTIONS(5832), - [anon_sym_BSLASHacrshort] = ACTIONS(5832), - [anon_sym_BSLASHAcrshort] = ACTIONS(5832), - [anon_sym_BSLASHACRshort] = ACTIONS(5832), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5832), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5832), - [anon_sym_BSLASHacrlong] = ACTIONS(5832), - [anon_sym_BSLASHAcrlong] = ACTIONS(5832), - [anon_sym_BSLASHACRlong] = ACTIONS(5832), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5832), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5832), - [anon_sym_BSLASHacrfull] = ACTIONS(5832), - [anon_sym_BSLASHAcrfull] = ACTIONS(5832), - [anon_sym_BSLASHACRfull] = ACTIONS(5832), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5832), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5832), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5832), - [anon_sym_BSLASHacs] = ACTIONS(5832), - [anon_sym_BSLASHAcs] = ACTIONS(5832), - [anon_sym_BSLASHacsp] = ACTIONS(5832), - [anon_sym_BSLASHAcsp] = ACTIONS(5832), - [anon_sym_BSLASHacl] = ACTIONS(5832), - [anon_sym_BSLASHAcl] = ACTIONS(5832), - [anon_sym_BSLASHaclp] = ACTIONS(5832), - [anon_sym_BSLASHAclp] = ACTIONS(5832), - [anon_sym_BSLASHacf] = ACTIONS(5832), - [anon_sym_BSLASHAcf] = ACTIONS(5832), - [anon_sym_BSLASHacfp] = ACTIONS(5832), - [anon_sym_BSLASHAcfp] = ACTIONS(5832), - [anon_sym_BSLASHac] = ACTIONS(5832), - [anon_sym_BSLASHAc] = ACTIONS(5832), - [anon_sym_BSLASHacp] = ACTIONS(5832), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5832), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5832), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5832), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5832), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5832), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5832), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5832), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5832), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5834), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5832), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5834), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5832), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5832), - [anon_sym_BSLASHcolor] = ACTIONS(5832), - [anon_sym_BSLASHcolorbox] = ACTIONS(5832), - [anon_sym_BSLASHtextcolor] = ACTIONS(5832), - [anon_sym_BSLASHpagecolor] = ACTIONS(5832), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5832), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5832), - [anon_sym_BSLASHtext] = ACTIONS(5832), - [anon_sym_BSLASHintertext] = ACTIONS(5832), - [anon_sym_shortintertext] = ACTIONS(5832), - }, - [834] = { - [sym__section_part] = STATE(1297), - [sym_curly_group] = STATE(1301), - [sym_brack_group] = STATE(3082), - [sym_command_name] = ACTIONS(5836), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5836), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5838), - [anon_sym_COMMA] = ACTIONS(5838), - [anon_sym_EQ] = ACTIONS(5838), - [anon_sym_LPAREN] = ACTIONS(5838), - [anon_sym_RPAREN] = ACTIONS(5838), - [anon_sym_BSLASHpart] = ACTIONS(5836), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddpart] = ACTIONS(5836), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5838), - [anon_sym_BSLASHchapter] = ACTIONS(5836), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddchap] = ACTIONS(5836), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsection] = ACTIONS(5836), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHaddsec] = ACTIONS(5836), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubsection] = ACTIONS(5836), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5836), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5838), - [anon_sym_BSLASHparagraph] = ACTIONS(5836), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5838), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5836), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5838), - [anon_sym_BSLASHitem] = ACTIONS(5836), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5838), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(5836), - [sym_placeholder] = ACTIONS(5838), - [anon_sym_PLUS] = ACTIONS(5838), - [anon_sym_DASH] = ACTIONS(5838), - [anon_sym_STAR] = ACTIONS(5838), - [anon_sym_SLASH] = ACTIONS(5838), - [anon_sym_LT] = ACTIONS(5836), - [anon_sym_GT] = ACTIONS(5836), - [anon_sym_BANG] = ACTIONS(5836), - [anon_sym_PIPE] = ACTIONS(5836), - [anon_sym_COLON] = ACTIONS(5836), - [anon_sym_SQUOTE] = ACTIONS(5836), - [anon_sym__] = ACTIONS(5838), - [anon_sym_CARET] = ACTIONS(5838), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5838), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5838), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5838), - [anon_sym_DOLLAR] = ACTIONS(5836), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5838), - [anon_sym_BSLASHbegin] = ACTIONS(5836), - [anon_sym_BSLASHtitle] = ACTIONS(5836), - [anon_sym_BSLASHauthor] = ACTIONS(5836), - [anon_sym_BSLASHusepackage] = ACTIONS(5836), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5836), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5836), - [anon_sym_BSLASHinclude] = ACTIONS(5836), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5836), - [anon_sym_BSLASHinput] = ACTIONS(5836), - [anon_sym_BSLASHsubfile] = ACTIONS(5836), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5836), - [anon_sym_BSLASHbibliography] = ACTIONS(5836), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5836), - [anon_sym_BSLASHincludesvg] = ACTIONS(5836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5836), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5836), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5836), - [anon_sym_BSLASHimport] = ACTIONS(5836), - [anon_sym_BSLASHsubimport] = ACTIONS(5836), - [anon_sym_BSLASHinputfrom] = ACTIONS(5836), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5836), - [anon_sym_BSLASHincludefrom] = ACTIONS(5836), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5836), - [anon_sym_BSLASHcaption] = ACTIONS(5836), - [anon_sym_BSLASHcite] = ACTIONS(5836), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCite] = ACTIONS(5836), - [anon_sym_BSLASHnocite] = ACTIONS(5836), - [anon_sym_BSLASHcitet] = ACTIONS(5836), - [anon_sym_BSLASHcitep] = ACTIONS(5836), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteauthor] = ACTIONS(5836), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5836), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitetitle] = ACTIONS(5836), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteyear] = ACTIONS(5836), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5838), - [anon_sym_BSLASHcitedate] = ACTIONS(5836), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5838), - [anon_sym_BSLASHciteurl] = ACTIONS(5836), - [anon_sym_BSLASHfullcite] = ACTIONS(5836), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5836), - [anon_sym_BSLASHcitealt] = ACTIONS(5836), - [anon_sym_BSLASHcitealp] = ACTIONS(5836), - [anon_sym_BSLASHcitetext] = ACTIONS(5836), - [anon_sym_BSLASHparencite] = ACTIONS(5836), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHParencite] = ACTIONS(5836), - [anon_sym_BSLASHfootcite] = ACTIONS(5836), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5836), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5836), - [anon_sym_BSLASHtextcite] = ACTIONS(5836), - [anon_sym_BSLASHTextcite] = ACTIONS(5836), - [anon_sym_BSLASHsmartcite] = ACTIONS(5836), - [anon_sym_BSLASHSmartcite] = ACTIONS(5836), - [anon_sym_BSLASHsupercite] = ACTIONS(5836), - [anon_sym_BSLASHautocite] = ACTIONS(5836), - [anon_sym_BSLASHAutocite] = ACTIONS(5836), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5838), - [anon_sym_BSLASHvolcite] = ACTIONS(5836), - [anon_sym_BSLASHVolcite] = ACTIONS(5836), - [anon_sym_BSLASHpvolcite] = ACTIONS(5836), - [anon_sym_BSLASHPvolcite] = ACTIONS(5836), - [anon_sym_BSLASHfvolcite] = ACTIONS(5836), - [anon_sym_BSLASHftvolcite] = ACTIONS(5836), - [anon_sym_BSLASHsvolcite] = ACTIONS(5836), - [anon_sym_BSLASHSvolcite] = ACTIONS(5836), - [anon_sym_BSLASHtvolcite] = ACTIONS(5836), - [anon_sym_BSLASHTvolcite] = ACTIONS(5836), - [anon_sym_BSLASHavolcite] = ACTIONS(5836), - [anon_sym_BSLASHAvolcite] = ACTIONS(5836), - [anon_sym_BSLASHnotecite] = ACTIONS(5836), - [anon_sym_BSLASHNotecite] = ACTIONS(5836), - [anon_sym_BSLASHpnotecite] = ACTIONS(5836), - [anon_sym_BSLASHPnotecite] = ACTIONS(5836), - [anon_sym_BSLASHfnotecite] = ACTIONS(5836), - [anon_sym_BSLASHlabel] = ACTIONS(5836), - [anon_sym_BSLASHref] = ACTIONS(5836), - [anon_sym_BSLASHeqref] = ACTIONS(5836), - [anon_sym_BSLASHvref] = ACTIONS(5836), - [anon_sym_BSLASHVref] = ACTIONS(5836), - [anon_sym_BSLASHautoref] = ACTIONS(5836), - [anon_sym_BSLASHpageref] = ACTIONS(5836), - [anon_sym_BSLASHcref] = ACTIONS(5836), - [anon_sym_BSLASHCref] = ACTIONS(5836), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5838), - [anon_sym_BSLASHnamecref] = ACTIONS(5836), - [anon_sym_BSLASHnameCref] = ACTIONS(5836), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5836), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5836), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5836), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5836), - [anon_sym_BSLASHlabelcref] = ACTIONS(5836), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5836), - [anon_sym_BSLASHcrefrange] = ACTIONS(5836), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5838), - [anon_sym_BSLASHCrefrange] = ACTIONS(5836), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5838), - [anon_sym_BSLASHnewlabel] = ACTIONS(5836), - [anon_sym_BSLASHnewcommand] = ACTIONS(5836), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5836), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5838), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5836), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5838), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5836), - [anon_sym_BSLASHdef] = ACTIONS(5836), - [anon_sym_BSLASHlet] = ACTIONS(5836), - [anon_sym_BSLASHleft] = ACTIONS(5836), - [anon_sym_BSLASHbig] = ACTIONS(5836), - [anon_sym_BSLASHBig] = ACTIONS(5836), - [anon_sym_BSLASHbigg] = ACTIONS(5836), - [anon_sym_BSLASHBigg] = ACTIONS(5836), - [anon_sym_BSLASHbigl] = ACTIONS(5836), - [anon_sym_BSLASHBigl] = ACTIONS(5836), - [anon_sym_BSLASHbiggl] = ACTIONS(5836), - [anon_sym_BSLASHBiggl] = ACTIONS(5836), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5836), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5836), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5836), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5836), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5836), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5836), - [anon_sym_BSLASHgls] = ACTIONS(5836), - [anon_sym_BSLASHGls] = ACTIONS(5836), - [anon_sym_BSLASHGLS] = ACTIONS(5836), - [anon_sym_BSLASHglspl] = ACTIONS(5836), - [anon_sym_BSLASHGlspl] = ACTIONS(5836), - [anon_sym_BSLASHGLSpl] = ACTIONS(5836), - [anon_sym_BSLASHglsdisp] = ACTIONS(5836), - [anon_sym_BSLASHglslink] = ACTIONS(5836), - [anon_sym_BSLASHglstext] = ACTIONS(5836), - [anon_sym_BSLASHGlstext] = ACTIONS(5836), - [anon_sym_BSLASHGLStext] = ACTIONS(5836), - [anon_sym_BSLASHglsfirst] = ACTIONS(5836), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5836), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5836), - [anon_sym_BSLASHglsplural] = ACTIONS(5836), - [anon_sym_BSLASHGlsplural] = ACTIONS(5836), - [anon_sym_BSLASHGLSplural] = ACTIONS(5836), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5836), - [anon_sym_BSLASHglsname] = ACTIONS(5836), - [anon_sym_BSLASHGlsname] = ACTIONS(5836), - [anon_sym_BSLASHGLSname] = ACTIONS(5836), - [anon_sym_BSLASHglssymbol] = ACTIONS(5836), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5836), - [anon_sym_BSLASHglsdesc] = ACTIONS(5836), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5836), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5836), - [anon_sym_BSLASHglsuseri] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5836), - [anon_sym_BSLASHglsuserii] = ACTIONS(5836), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5836), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5836), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5836), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5836), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5836), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5836), - [anon_sym_BSLASHglsuserv] = ACTIONS(5836), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5836), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5836), - [anon_sym_BSLASHglsuservi] = ACTIONS(5836), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5836), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5836), - [anon_sym_BSLASHnewacronym] = ACTIONS(5836), - [anon_sym_BSLASHacrshort] = ACTIONS(5836), - [anon_sym_BSLASHAcrshort] = ACTIONS(5836), - [anon_sym_BSLASHACRshort] = ACTIONS(5836), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5836), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5836), - [anon_sym_BSLASHacrlong] = ACTIONS(5836), - [anon_sym_BSLASHAcrlong] = ACTIONS(5836), - [anon_sym_BSLASHACRlong] = ACTIONS(5836), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5836), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5836), - [anon_sym_BSLASHacrfull] = ACTIONS(5836), - [anon_sym_BSLASHAcrfull] = ACTIONS(5836), - [anon_sym_BSLASHACRfull] = ACTIONS(5836), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5836), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5836), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5836), - [anon_sym_BSLASHacs] = ACTIONS(5836), - [anon_sym_BSLASHAcs] = ACTIONS(5836), - [anon_sym_BSLASHacsp] = ACTIONS(5836), - [anon_sym_BSLASHAcsp] = ACTIONS(5836), - [anon_sym_BSLASHacl] = ACTIONS(5836), - [anon_sym_BSLASHAcl] = ACTIONS(5836), - [anon_sym_BSLASHaclp] = ACTIONS(5836), - [anon_sym_BSLASHAclp] = ACTIONS(5836), - [anon_sym_BSLASHacf] = ACTIONS(5836), - [anon_sym_BSLASHAcf] = ACTIONS(5836), - [anon_sym_BSLASHacfp] = ACTIONS(5836), - [anon_sym_BSLASHAcfp] = ACTIONS(5836), - [anon_sym_BSLASHac] = ACTIONS(5836), - [anon_sym_BSLASHAc] = ACTIONS(5836), - [anon_sym_BSLASHacp] = ACTIONS(5836), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5836), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5836), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5836), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5836), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5836), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5836), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5836), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5836), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5838), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5836), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5838), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5836), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5836), - [anon_sym_BSLASHcolor] = ACTIONS(5836), - [anon_sym_BSLASHcolorbox] = ACTIONS(5836), - [anon_sym_BSLASHtextcolor] = ACTIONS(5836), - [anon_sym_BSLASHpagecolor] = ACTIONS(5836), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5836), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5836), - [anon_sym_BSLASHtext] = ACTIONS(5836), - [anon_sym_BSLASHintertext] = ACTIONS(5836), - [anon_sym_shortintertext] = ACTIONS(5836), - }, - [835] = { - [sym__section_part] = STATE(1296), - [sym_curly_group] = STATE(1301), - [sym_brack_group] = STATE(3082), - [sym_command_name] = ACTIONS(5840), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5840), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5842), - [anon_sym_COMMA] = ACTIONS(5842), - [anon_sym_EQ] = ACTIONS(5842), - [anon_sym_LPAREN] = ACTIONS(5842), - [anon_sym_RPAREN] = ACTIONS(5842), - [anon_sym_BSLASHpart] = ACTIONS(5840), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddpart] = ACTIONS(5840), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5842), - [anon_sym_BSLASHchapter] = ACTIONS(5840), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddchap] = ACTIONS(5840), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsection] = ACTIONS(5840), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHaddsec] = ACTIONS(5840), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubsection] = ACTIONS(5840), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5840), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5842), - [anon_sym_BSLASHparagraph] = ACTIONS(5840), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5840), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5842), - [anon_sym_BSLASHitem] = ACTIONS(5840), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5842), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(5840), - [sym_placeholder] = ACTIONS(5842), - [anon_sym_PLUS] = ACTIONS(5842), - [anon_sym_DASH] = ACTIONS(5842), - [anon_sym_STAR] = ACTIONS(5842), - [anon_sym_SLASH] = ACTIONS(5842), - [anon_sym_LT] = ACTIONS(5840), - [anon_sym_GT] = ACTIONS(5840), - [anon_sym_BANG] = ACTIONS(5840), - [anon_sym_PIPE] = ACTIONS(5840), - [anon_sym_COLON] = ACTIONS(5840), - [anon_sym_SQUOTE] = ACTIONS(5840), - [anon_sym__] = ACTIONS(5842), - [anon_sym_CARET] = ACTIONS(5842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5842), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5842), - [anon_sym_DOLLAR] = ACTIONS(5840), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5842), - [anon_sym_BSLASHbegin] = ACTIONS(5840), - [anon_sym_BSLASHtitle] = ACTIONS(5840), - [anon_sym_BSLASHauthor] = ACTIONS(5840), - [anon_sym_BSLASHusepackage] = ACTIONS(5840), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5840), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5840), - [anon_sym_BSLASHinclude] = ACTIONS(5840), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5840), - [anon_sym_BSLASHinput] = ACTIONS(5840), - [anon_sym_BSLASHsubfile] = ACTIONS(5840), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5840), - [anon_sym_BSLASHbibliography] = ACTIONS(5840), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5840), - [anon_sym_BSLASHincludesvg] = ACTIONS(5840), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5840), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5840), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5840), - [anon_sym_BSLASHimport] = ACTIONS(5840), - [anon_sym_BSLASHsubimport] = ACTIONS(5840), - [anon_sym_BSLASHinputfrom] = ACTIONS(5840), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5840), - [anon_sym_BSLASHincludefrom] = ACTIONS(5840), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5840), - [anon_sym_BSLASHcaption] = ACTIONS(5840), - [anon_sym_BSLASHcite] = ACTIONS(5840), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCite] = ACTIONS(5840), - [anon_sym_BSLASHnocite] = ACTIONS(5840), - [anon_sym_BSLASHcitet] = ACTIONS(5840), - [anon_sym_BSLASHcitep] = ACTIONS(5840), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteauthor] = ACTIONS(5840), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5840), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitetitle] = ACTIONS(5840), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteyear] = ACTIONS(5840), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5842), - [anon_sym_BSLASHcitedate] = ACTIONS(5840), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5842), - [anon_sym_BSLASHciteurl] = ACTIONS(5840), - [anon_sym_BSLASHfullcite] = ACTIONS(5840), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5840), - [anon_sym_BSLASHcitealt] = ACTIONS(5840), - [anon_sym_BSLASHcitealp] = ACTIONS(5840), - [anon_sym_BSLASHcitetext] = ACTIONS(5840), - [anon_sym_BSLASHparencite] = ACTIONS(5840), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHParencite] = ACTIONS(5840), - [anon_sym_BSLASHfootcite] = ACTIONS(5840), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5840), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5840), - [anon_sym_BSLASHtextcite] = ACTIONS(5840), - [anon_sym_BSLASHTextcite] = ACTIONS(5840), - [anon_sym_BSLASHsmartcite] = ACTIONS(5840), - [anon_sym_BSLASHSmartcite] = ACTIONS(5840), - [anon_sym_BSLASHsupercite] = ACTIONS(5840), - [anon_sym_BSLASHautocite] = ACTIONS(5840), - [anon_sym_BSLASHAutocite] = ACTIONS(5840), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5842), - [anon_sym_BSLASHvolcite] = ACTIONS(5840), - [anon_sym_BSLASHVolcite] = ACTIONS(5840), - [anon_sym_BSLASHpvolcite] = ACTIONS(5840), - [anon_sym_BSLASHPvolcite] = ACTIONS(5840), - [anon_sym_BSLASHfvolcite] = ACTIONS(5840), - [anon_sym_BSLASHftvolcite] = ACTIONS(5840), - [anon_sym_BSLASHsvolcite] = ACTIONS(5840), - [anon_sym_BSLASHSvolcite] = ACTIONS(5840), - [anon_sym_BSLASHtvolcite] = ACTIONS(5840), - [anon_sym_BSLASHTvolcite] = ACTIONS(5840), - [anon_sym_BSLASHavolcite] = ACTIONS(5840), - [anon_sym_BSLASHAvolcite] = ACTIONS(5840), - [anon_sym_BSLASHnotecite] = ACTIONS(5840), - [anon_sym_BSLASHNotecite] = ACTIONS(5840), - [anon_sym_BSLASHpnotecite] = ACTIONS(5840), - [anon_sym_BSLASHPnotecite] = ACTIONS(5840), - [anon_sym_BSLASHfnotecite] = ACTIONS(5840), - [anon_sym_BSLASHlabel] = ACTIONS(5840), - [anon_sym_BSLASHref] = ACTIONS(5840), - [anon_sym_BSLASHeqref] = ACTIONS(5840), - [anon_sym_BSLASHvref] = ACTIONS(5840), - [anon_sym_BSLASHVref] = ACTIONS(5840), - [anon_sym_BSLASHautoref] = ACTIONS(5840), - [anon_sym_BSLASHpageref] = ACTIONS(5840), - [anon_sym_BSLASHcref] = ACTIONS(5840), - [anon_sym_BSLASHCref] = ACTIONS(5840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5842), - [anon_sym_BSLASHnamecref] = ACTIONS(5840), - [anon_sym_BSLASHnameCref] = ACTIONS(5840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5840), - [anon_sym_BSLASHlabelcref] = ACTIONS(5840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5840), - [anon_sym_BSLASHcrefrange] = ACTIONS(5840), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5842), - [anon_sym_BSLASHCrefrange] = ACTIONS(5840), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5842), - [anon_sym_BSLASHnewlabel] = ACTIONS(5840), - [anon_sym_BSLASHnewcommand] = ACTIONS(5840), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5840), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5840), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5842), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5840), - [anon_sym_BSLASHdef] = ACTIONS(5840), - [anon_sym_BSLASHlet] = ACTIONS(5840), - [anon_sym_BSLASHleft] = ACTIONS(5840), - [anon_sym_BSLASHbig] = ACTIONS(5840), - [anon_sym_BSLASHBig] = ACTIONS(5840), - [anon_sym_BSLASHbigg] = ACTIONS(5840), - [anon_sym_BSLASHBigg] = ACTIONS(5840), - [anon_sym_BSLASHbigl] = ACTIONS(5840), - [anon_sym_BSLASHBigl] = ACTIONS(5840), - [anon_sym_BSLASHbiggl] = ACTIONS(5840), - [anon_sym_BSLASHBiggl] = ACTIONS(5840), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5840), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5840), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5840), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5840), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5840), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5840), - [anon_sym_BSLASHgls] = ACTIONS(5840), - [anon_sym_BSLASHGls] = ACTIONS(5840), - [anon_sym_BSLASHGLS] = ACTIONS(5840), - [anon_sym_BSLASHglspl] = ACTIONS(5840), - [anon_sym_BSLASHGlspl] = ACTIONS(5840), - [anon_sym_BSLASHGLSpl] = ACTIONS(5840), - [anon_sym_BSLASHglsdisp] = ACTIONS(5840), - [anon_sym_BSLASHglslink] = ACTIONS(5840), - [anon_sym_BSLASHglstext] = ACTIONS(5840), - [anon_sym_BSLASHGlstext] = ACTIONS(5840), - [anon_sym_BSLASHGLStext] = ACTIONS(5840), - [anon_sym_BSLASHglsfirst] = ACTIONS(5840), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5840), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5840), - [anon_sym_BSLASHglsplural] = ACTIONS(5840), - [anon_sym_BSLASHGlsplural] = ACTIONS(5840), - [anon_sym_BSLASHGLSplural] = ACTIONS(5840), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5840), - [anon_sym_BSLASHglsname] = ACTIONS(5840), - [anon_sym_BSLASHGlsname] = ACTIONS(5840), - [anon_sym_BSLASHGLSname] = ACTIONS(5840), - [anon_sym_BSLASHglssymbol] = ACTIONS(5840), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5840), - [anon_sym_BSLASHglsdesc] = ACTIONS(5840), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5840), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5840), - [anon_sym_BSLASHglsuseri] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5840), - [anon_sym_BSLASHglsuserii] = ACTIONS(5840), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5840), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5840), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5840), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5840), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5840), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5840), - [anon_sym_BSLASHglsuserv] = ACTIONS(5840), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5840), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5840), - [anon_sym_BSLASHglsuservi] = ACTIONS(5840), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5840), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5840), - [anon_sym_BSLASHnewacronym] = ACTIONS(5840), - [anon_sym_BSLASHacrshort] = ACTIONS(5840), - [anon_sym_BSLASHAcrshort] = ACTIONS(5840), - [anon_sym_BSLASHACRshort] = ACTIONS(5840), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5840), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5840), - [anon_sym_BSLASHacrlong] = ACTIONS(5840), - [anon_sym_BSLASHAcrlong] = ACTIONS(5840), - [anon_sym_BSLASHACRlong] = ACTIONS(5840), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5840), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5840), - [anon_sym_BSLASHacrfull] = ACTIONS(5840), - [anon_sym_BSLASHAcrfull] = ACTIONS(5840), - [anon_sym_BSLASHACRfull] = ACTIONS(5840), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5840), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5840), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5840), - [anon_sym_BSLASHacs] = ACTIONS(5840), - [anon_sym_BSLASHAcs] = ACTIONS(5840), - [anon_sym_BSLASHacsp] = ACTIONS(5840), - [anon_sym_BSLASHAcsp] = ACTIONS(5840), - [anon_sym_BSLASHacl] = ACTIONS(5840), - [anon_sym_BSLASHAcl] = ACTIONS(5840), - [anon_sym_BSLASHaclp] = ACTIONS(5840), - [anon_sym_BSLASHAclp] = ACTIONS(5840), - [anon_sym_BSLASHacf] = ACTIONS(5840), - [anon_sym_BSLASHAcf] = ACTIONS(5840), - [anon_sym_BSLASHacfp] = ACTIONS(5840), - [anon_sym_BSLASHAcfp] = ACTIONS(5840), - [anon_sym_BSLASHac] = ACTIONS(5840), - [anon_sym_BSLASHAc] = ACTIONS(5840), - [anon_sym_BSLASHacp] = ACTIONS(5840), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5840), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5840), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5840), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5840), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5840), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5840), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5840), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5840), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5842), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5840), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5842), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5840), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5840), - [anon_sym_BSLASHcolor] = ACTIONS(5840), - [anon_sym_BSLASHcolorbox] = ACTIONS(5840), - [anon_sym_BSLASHtextcolor] = ACTIONS(5840), - [anon_sym_BSLASHpagecolor] = ACTIONS(5840), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5840), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5840), - [anon_sym_BSLASHtext] = ACTIONS(5840), - [anon_sym_BSLASHintertext] = ACTIONS(5840), - [anon_sym_shortintertext] = ACTIONS(5840), - }, - [836] = { - [sym__section_part] = STATE(1295), - [sym_curly_group] = STATE(1301), - [sym_brack_group] = STATE(3082), - [sym_command_name] = ACTIONS(5848), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5848), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5850), - [anon_sym_COMMA] = ACTIONS(5850), - [anon_sym_EQ] = ACTIONS(5850), - [anon_sym_LPAREN] = ACTIONS(5850), - [anon_sym_RPAREN] = ACTIONS(5850), - [anon_sym_BSLASHpart] = ACTIONS(5848), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddpart] = ACTIONS(5848), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5850), - [anon_sym_BSLASHchapter] = ACTIONS(5848), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddchap] = ACTIONS(5848), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsection] = ACTIONS(5848), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHaddsec] = ACTIONS(5848), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubsection] = ACTIONS(5848), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5848), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5850), - [anon_sym_BSLASHparagraph] = ACTIONS(5848), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5850), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5848), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5850), - [anon_sym_BSLASHitem] = ACTIONS(5848), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5850), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(5848), - [sym_placeholder] = ACTIONS(5850), - [anon_sym_PLUS] = ACTIONS(5850), - [anon_sym_DASH] = ACTIONS(5850), - [anon_sym_STAR] = ACTIONS(5850), - [anon_sym_SLASH] = ACTIONS(5850), - [anon_sym_LT] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5848), - [anon_sym_BANG] = ACTIONS(5848), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_COLON] = ACTIONS(5848), - [anon_sym_SQUOTE] = ACTIONS(5848), - [anon_sym__] = ACTIONS(5850), - [anon_sym_CARET] = ACTIONS(5850), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5850), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5850), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5850), - [anon_sym_DOLLAR] = ACTIONS(5848), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5850), - [anon_sym_BSLASHbegin] = ACTIONS(5848), - [anon_sym_BSLASHtitle] = ACTIONS(5848), - [anon_sym_BSLASHauthor] = ACTIONS(5848), - [anon_sym_BSLASHusepackage] = ACTIONS(5848), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5848), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5848), - [anon_sym_BSLASHinclude] = ACTIONS(5848), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5848), - [anon_sym_BSLASHinput] = ACTIONS(5848), - [anon_sym_BSLASHsubfile] = ACTIONS(5848), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5848), - [anon_sym_BSLASHbibliography] = ACTIONS(5848), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5848), - [anon_sym_BSLASHincludesvg] = ACTIONS(5848), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5848), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5848), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5848), - [anon_sym_BSLASHimport] = ACTIONS(5848), - [anon_sym_BSLASHsubimport] = ACTIONS(5848), - [anon_sym_BSLASHinputfrom] = ACTIONS(5848), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5848), - [anon_sym_BSLASHincludefrom] = ACTIONS(5848), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5848), - [anon_sym_BSLASHcaption] = ACTIONS(5848), - [anon_sym_BSLASHcite] = ACTIONS(5848), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCite] = ACTIONS(5848), - [anon_sym_BSLASHnocite] = ACTIONS(5848), - [anon_sym_BSLASHcitet] = ACTIONS(5848), - [anon_sym_BSLASHcitep] = ACTIONS(5848), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteauthor] = ACTIONS(5848), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5848), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitetitle] = ACTIONS(5848), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteyear] = ACTIONS(5848), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5850), - [anon_sym_BSLASHcitedate] = ACTIONS(5848), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5850), - [anon_sym_BSLASHciteurl] = ACTIONS(5848), - [anon_sym_BSLASHfullcite] = ACTIONS(5848), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5848), - [anon_sym_BSLASHcitealt] = ACTIONS(5848), - [anon_sym_BSLASHcitealp] = ACTIONS(5848), - [anon_sym_BSLASHcitetext] = ACTIONS(5848), - [anon_sym_BSLASHparencite] = ACTIONS(5848), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHParencite] = ACTIONS(5848), - [anon_sym_BSLASHfootcite] = ACTIONS(5848), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5848), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5848), - [anon_sym_BSLASHtextcite] = ACTIONS(5848), - [anon_sym_BSLASHTextcite] = ACTIONS(5848), - [anon_sym_BSLASHsmartcite] = ACTIONS(5848), - [anon_sym_BSLASHSmartcite] = ACTIONS(5848), - [anon_sym_BSLASHsupercite] = ACTIONS(5848), - [anon_sym_BSLASHautocite] = ACTIONS(5848), - [anon_sym_BSLASHAutocite] = ACTIONS(5848), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5850), - [anon_sym_BSLASHvolcite] = ACTIONS(5848), - [anon_sym_BSLASHVolcite] = ACTIONS(5848), - [anon_sym_BSLASHpvolcite] = ACTIONS(5848), - [anon_sym_BSLASHPvolcite] = ACTIONS(5848), - [anon_sym_BSLASHfvolcite] = ACTIONS(5848), - [anon_sym_BSLASHftvolcite] = ACTIONS(5848), - [anon_sym_BSLASHsvolcite] = ACTIONS(5848), - [anon_sym_BSLASHSvolcite] = ACTIONS(5848), - [anon_sym_BSLASHtvolcite] = ACTIONS(5848), - [anon_sym_BSLASHTvolcite] = ACTIONS(5848), - [anon_sym_BSLASHavolcite] = ACTIONS(5848), - [anon_sym_BSLASHAvolcite] = ACTIONS(5848), - [anon_sym_BSLASHnotecite] = ACTIONS(5848), - [anon_sym_BSLASHNotecite] = ACTIONS(5848), - [anon_sym_BSLASHpnotecite] = ACTIONS(5848), - [anon_sym_BSLASHPnotecite] = ACTIONS(5848), - [anon_sym_BSLASHfnotecite] = ACTIONS(5848), - [anon_sym_BSLASHlabel] = ACTIONS(5848), - [anon_sym_BSLASHref] = ACTIONS(5848), - [anon_sym_BSLASHeqref] = ACTIONS(5848), - [anon_sym_BSLASHvref] = ACTIONS(5848), - [anon_sym_BSLASHVref] = ACTIONS(5848), - [anon_sym_BSLASHautoref] = ACTIONS(5848), - [anon_sym_BSLASHpageref] = ACTIONS(5848), - [anon_sym_BSLASHcref] = ACTIONS(5848), - [anon_sym_BSLASHCref] = ACTIONS(5848), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5850), - [anon_sym_BSLASHnamecref] = ACTIONS(5848), - [anon_sym_BSLASHnameCref] = ACTIONS(5848), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5848), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5848), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5848), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5848), - [anon_sym_BSLASHlabelcref] = ACTIONS(5848), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5848), - [anon_sym_BSLASHcrefrange] = ACTIONS(5848), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5850), - [anon_sym_BSLASHCrefrange] = ACTIONS(5848), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5850), - [anon_sym_BSLASHnewlabel] = ACTIONS(5848), - [anon_sym_BSLASHnewcommand] = ACTIONS(5848), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5848), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5850), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5848), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5850), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5848), - [anon_sym_BSLASHdef] = ACTIONS(5848), - [anon_sym_BSLASHlet] = ACTIONS(5848), - [anon_sym_BSLASHleft] = ACTIONS(5848), - [anon_sym_BSLASHbig] = ACTIONS(5848), - [anon_sym_BSLASHBig] = ACTIONS(5848), - [anon_sym_BSLASHbigg] = ACTIONS(5848), - [anon_sym_BSLASHBigg] = ACTIONS(5848), - [anon_sym_BSLASHbigl] = ACTIONS(5848), - [anon_sym_BSLASHBigl] = ACTIONS(5848), - [anon_sym_BSLASHbiggl] = ACTIONS(5848), - [anon_sym_BSLASHBiggl] = ACTIONS(5848), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5848), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5848), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5848), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5848), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5848), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5848), - [anon_sym_BSLASHgls] = ACTIONS(5848), - [anon_sym_BSLASHGls] = ACTIONS(5848), - [anon_sym_BSLASHGLS] = ACTIONS(5848), - [anon_sym_BSLASHglspl] = ACTIONS(5848), - [anon_sym_BSLASHGlspl] = ACTIONS(5848), - [anon_sym_BSLASHGLSpl] = ACTIONS(5848), - [anon_sym_BSLASHglsdisp] = ACTIONS(5848), - [anon_sym_BSLASHglslink] = ACTIONS(5848), - [anon_sym_BSLASHglstext] = ACTIONS(5848), - [anon_sym_BSLASHGlstext] = ACTIONS(5848), - [anon_sym_BSLASHGLStext] = ACTIONS(5848), - [anon_sym_BSLASHglsfirst] = ACTIONS(5848), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5848), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5848), - [anon_sym_BSLASHglsplural] = ACTIONS(5848), - [anon_sym_BSLASHGlsplural] = ACTIONS(5848), - [anon_sym_BSLASHGLSplural] = ACTIONS(5848), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5848), - [anon_sym_BSLASHglsname] = ACTIONS(5848), - [anon_sym_BSLASHGlsname] = ACTIONS(5848), - [anon_sym_BSLASHGLSname] = ACTIONS(5848), - [anon_sym_BSLASHglssymbol] = ACTIONS(5848), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5848), - [anon_sym_BSLASHglsdesc] = ACTIONS(5848), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5848), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5848), - [anon_sym_BSLASHglsuseri] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5848), - [anon_sym_BSLASHglsuserii] = ACTIONS(5848), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5848), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5848), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5848), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5848), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5848), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5848), - [anon_sym_BSLASHglsuserv] = ACTIONS(5848), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5848), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5848), - [anon_sym_BSLASHglsuservi] = ACTIONS(5848), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5848), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5848), - [anon_sym_BSLASHnewacronym] = ACTIONS(5848), - [anon_sym_BSLASHacrshort] = ACTIONS(5848), - [anon_sym_BSLASHAcrshort] = ACTIONS(5848), - [anon_sym_BSLASHACRshort] = ACTIONS(5848), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5848), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5848), - [anon_sym_BSLASHacrlong] = ACTIONS(5848), - [anon_sym_BSLASHAcrlong] = ACTIONS(5848), - [anon_sym_BSLASHACRlong] = ACTIONS(5848), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5848), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5848), - [anon_sym_BSLASHacrfull] = ACTIONS(5848), - [anon_sym_BSLASHAcrfull] = ACTIONS(5848), - [anon_sym_BSLASHACRfull] = ACTIONS(5848), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5848), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5848), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5848), - [anon_sym_BSLASHacs] = ACTIONS(5848), - [anon_sym_BSLASHAcs] = ACTIONS(5848), - [anon_sym_BSLASHacsp] = ACTIONS(5848), - [anon_sym_BSLASHAcsp] = ACTIONS(5848), - [anon_sym_BSLASHacl] = ACTIONS(5848), - [anon_sym_BSLASHAcl] = ACTIONS(5848), - [anon_sym_BSLASHaclp] = ACTIONS(5848), - [anon_sym_BSLASHAclp] = ACTIONS(5848), - [anon_sym_BSLASHacf] = ACTIONS(5848), - [anon_sym_BSLASHAcf] = ACTIONS(5848), - [anon_sym_BSLASHacfp] = ACTIONS(5848), - [anon_sym_BSLASHAcfp] = ACTIONS(5848), - [anon_sym_BSLASHac] = ACTIONS(5848), - [anon_sym_BSLASHAc] = ACTIONS(5848), - [anon_sym_BSLASHacp] = ACTIONS(5848), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5848), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5848), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5848), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5848), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5848), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5848), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5848), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5848), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5850), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5848), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5850), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5848), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5848), - [anon_sym_BSLASHcolor] = ACTIONS(5848), - [anon_sym_BSLASHcolorbox] = ACTIONS(5848), - [anon_sym_BSLASHtextcolor] = ACTIONS(5848), - [anon_sym_BSLASHpagecolor] = ACTIONS(5848), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5848), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5848), - [anon_sym_BSLASHtext] = ACTIONS(5848), - [anon_sym_BSLASHintertext] = ACTIONS(5848), - [anon_sym_shortintertext] = ACTIONS(5848), - }, - [837] = { - [sym__section_part] = STATE(1294), - [sym_curly_group] = STATE(1301), - [sym_brack_group] = STATE(3082), - [sym_command_name] = ACTIONS(5852), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5852), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5854), - [anon_sym_COMMA] = ACTIONS(5854), - [anon_sym_EQ] = ACTIONS(5854), - [anon_sym_LPAREN] = ACTIONS(5854), - [anon_sym_RPAREN] = ACTIONS(5854), - [anon_sym_BSLASHpart] = ACTIONS(5852), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddpart] = ACTIONS(5852), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5854), - [anon_sym_BSLASHchapter] = ACTIONS(5852), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddchap] = ACTIONS(5852), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsection] = ACTIONS(5852), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHaddsec] = ACTIONS(5852), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubsection] = ACTIONS(5852), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5852), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5854), - [anon_sym_BSLASHparagraph] = ACTIONS(5852), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5854), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5852), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5854), - [anon_sym_BSLASHitem] = ACTIONS(5852), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5854), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(5852), - [sym_placeholder] = ACTIONS(5854), - [anon_sym_PLUS] = ACTIONS(5854), - [anon_sym_DASH] = ACTIONS(5854), - [anon_sym_STAR] = ACTIONS(5854), - [anon_sym_SLASH] = ACTIONS(5854), - [anon_sym_LT] = ACTIONS(5852), - [anon_sym_GT] = ACTIONS(5852), - [anon_sym_BANG] = ACTIONS(5852), - [anon_sym_PIPE] = ACTIONS(5852), - [anon_sym_COLON] = ACTIONS(5852), - [anon_sym_SQUOTE] = ACTIONS(5852), - [anon_sym__] = ACTIONS(5854), - [anon_sym_CARET] = ACTIONS(5854), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5854), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5854), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5854), - [anon_sym_DOLLAR] = ACTIONS(5852), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5854), - [anon_sym_BSLASHbegin] = ACTIONS(5852), - [anon_sym_BSLASHtitle] = ACTIONS(5852), - [anon_sym_BSLASHauthor] = ACTIONS(5852), - [anon_sym_BSLASHusepackage] = ACTIONS(5852), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5852), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5852), - [anon_sym_BSLASHinclude] = ACTIONS(5852), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5852), - [anon_sym_BSLASHinput] = ACTIONS(5852), - [anon_sym_BSLASHsubfile] = ACTIONS(5852), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5852), - [anon_sym_BSLASHbibliography] = ACTIONS(5852), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5852), - [anon_sym_BSLASHincludesvg] = ACTIONS(5852), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5852), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5852), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5852), - [anon_sym_BSLASHimport] = ACTIONS(5852), - [anon_sym_BSLASHsubimport] = ACTIONS(5852), - [anon_sym_BSLASHinputfrom] = ACTIONS(5852), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5852), - [anon_sym_BSLASHincludefrom] = ACTIONS(5852), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5852), - [anon_sym_BSLASHcaption] = ACTIONS(5852), - [anon_sym_BSLASHcite] = ACTIONS(5852), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCite] = ACTIONS(5852), - [anon_sym_BSLASHnocite] = ACTIONS(5852), - [anon_sym_BSLASHcitet] = ACTIONS(5852), - [anon_sym_BSLASHcitep] = ACTIONS(5852), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteauthor] = ACTIONS(5852), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5852), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitetitle] = ACTIONS(5852), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteyear] = ACTIONS(5852), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5854), - [anon_sym_BSLASHcitedate] = ACTIONS(5852), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5854), - [anon_sym_BSLASHciteurl] = ACTIONS(5852), - [anon_sym_BSLASHfullcite] = ACTIONS(5852), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5852), - [anon_sym_BSLASHcitealt] = ACTIONS(5852), - [anon_sym_BSLASHcitealp] = ACTIONS(5852), - [anon_sym_BSLASHcitetext] = ACTIONS(5852), - [anon_sym_BSLASHparencite] = ACTIONS(5852), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHParencite] = ACTIONS(5852), - [anon_sym_BSLASHfootcite] = ACTIONS(5852), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5852), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5852), - [anon_sym_BSLASHtextcite] = ACTIONS(5852), - [anon_sym_BSLASHTextcite] = ACTIONS(5852), - [anon_sym_BSLASHsmartcite] = ACTIONS(5852), - [anon_sym_BSLASHSmartcite] = ACTIONS(5852), - [anon_sym_BSLASHsupercite] = ACTIONS(5852), - [anon_sym_BSLASHautocite] = ACTIONS(5852), - [anon_sym_BSLASHAutocite] = ACTIONS(5852), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5854), - [anon_sym_BSLASHvolcite] = ACTIONS(5852), - [anon_sym_BSLASHVolcite] = ACTIONS(5852), - [anon_sym_BSLASHpvolcite] = ACTIONS(5852), - [anon_sym_BSLASHPvolcite] = ACTIONS(5852), - [anon_sym_BSLASHfvolcite] = ACTIONS(5852), - [anon_sym_BSLASHftvolcite] = ACTIONS(5852), - [anon_sym_BSLASHsvolcite] = ACTIONS(5852), - [anon_sym_BSLASHSvolcite] = ACTIONS(5852), - [anon_sym_BSLASHtvolcite] = ACTIONS(5852), - [anon_sym_BSLASHTvolcite] = ACTIONS(5852), - [anon_sym_BSLASHavolcite] = ACTIONS(5852), - [anon_sym_BSLASHAvolcite] = ACTIONS(5852), - [anon_sym_BSLASHnotecite] = ACTIONS(5852), - [anon_sym_BSLASHNotecite] = ACTIONS(5852), - [anon_sym_BSLASHpnotecite] = ACTIONS(5852), - [anon_sym_BSLASHPnotecite] = ACTIONS(5852), - [anon_sym_BSLASHfnotecite] = ACTIONS(5852), - [anon_sym_BSLASHlabel] = ACTIONS(5852), - [anon_sym_BSLASHref] = ACTIONS(5852), - [anon_sym_BSLASHeqref] = ACTIONS(5852), - [anon_sym_BSLASHvref] = ACTIONS(5852), - [anon_sym_BSLASHVref] = ACTIONS(5852), - [anon_sym_BSLASHautoref] = ACTIONS(5852), - [anon_sym_BSLASHpageref] = ACTIONS(5852), - [anon_sym_BSLASHcref] = ACTIONS(5852), - [anon_sym_BSLASHCref] = ACTIONS(5852), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5854), - [anon_sym_BSLASHnamecref] = ACTIONS(5852), - [anon_sym_BSLASHnameCref] = ACTIONS(5852), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5852), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5852), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5852), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5852), - [anon_sym_BSLASHlabelcref] = ACTIONS(5852), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5852), - [anon_sym_BSLASHcrefrange] = ACTIONS(5852), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5854), - [anon_sym_BSLASHCrefrange] = ACTIONS(5852), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5854), - [anon_sym_BSLASHnewlabel] = ACTIONS(5852), - [anon_sym_BSLASHnewcommand] = ACTIONS(5852), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5852), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5854), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5852), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5854), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5852), - [anon_sym_BSLASHdef] = ACTIONS(5852), - [anon_sym_BSLASHlet] = ACTIONS(5852), - [anon_sym_BSLASHleft] = ACTIONS(5852), - [anon_sym_BSLASHbig] = ACTIONS(5852), - [anon_sym_BSLASHBig] = ACTIONS(5852), - [anon_sym_BSLASHbigg] = ACTIONS(5852), - [anon_sym_BSLASHBigg] = ACTIONS(5852), - [anon_sym_BSLASHbigl] = ACTIONS(5852), - [anon_sym_BSLASHBigl] = ACTIONS(5852), - [anon_sym_BSLASHbiggl] = ACTIONS(5852), - [anon_sym_BSLASHBiggl] = ACTIONS(5852), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5852), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5852), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5852), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5852), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5852), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5852), - [anon_sym_BSLASHgls] = ACTIONS(5852), - [anon_sym_BSLASHGls] = ACTIONS(5852), - [anon_sym_BSLASHGLS] = ACTIONS(5852), - [anon_sym_BSLASHglspl] = ACTIONS(5852), - [anon_sym_BSLASHGlspl] = ACTIONS(5852), - [anon_sym_BSLASHGLSpl] = ACTIONS(5852), - [anon_sym_BSLASHglsdisp] = ACTIONS(5852), - [anon_sym_BSLASHglslink] = ACTIONS(5852), - [anon_sym_BSLASHglstext] = ACTIONS(5852), - [anon_sym_BSLASHGlstext] = ACTIONS(5852), - [anon_sym_BSLASHGLStext] = ACTIONS(5852), - [anon_sym_BSLASHglsfirst] = ACTIONS(5852), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5852), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5852), - [anon_sym_BSLASHglsplural] = ACTIONS(5852), - [anon_sym_BSLASHGlsplural] = ACTIONS(5852), - [anon_sym_BSLASHGLSplural] = ACTIONS(5852), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5852), - [anon_sym_BSLASHglsname] = ACTIONS(5852), - [anon_sym_BSLASHGlsname] = ACTIONS(5852), - [anon_sym_BSLASHGLSname] = ACTIONS(5852), - [anon_sym_BSLASHglssymbol] = ACTIONS(5852), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5852), - [anon_sym_BSLASHglsdesc] = ACTIONS(5852), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5852), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5852), - [anon_sym_BSLASHglsuseri] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5852), - [anon_sym_BSLASHglsuserii] = ACTIONS(5852), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5852), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5852), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5852), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5852), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5852), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5852), - [anon_sym_BSLASHglsuserv] = ACTIONS(5852), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5852), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5852), - [anon_sym_BSLASHglsuservi] = ACTIONS(5852), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5852), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5852), - [anon_sym_BSLASHnewacronym] = ACTIONS(5852), - [anon_sym_BSLASHacrshort] = ACTIONS(5852), - [anon_sym_BSLASHAcrshort] = ACTIONS(5852), - [anon_sym_BSLASHACRshort] = ACTIONS(5852), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5852), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5852), - [anon_sym_BSLASHacrlong] = ACTIONS(5852), - [anon_sym_BSLASHAcrlong] = ACTIONS(5852), - [anon_sym_BSLASHACRlong] = ACTIONS(5852), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5852), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5852), - [anon_sym_BSLASHacrfull] = ACTIONS(5852), - [anon_sym_BSLASHAcrfull] = ACTIONS(5852), - [anon_sym_BSLASHACRfull] = ACTIONS(5852), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5852), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5852), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5852), - [anon_sym_BSLASHacs] = ACTIONS(5852), - [anon_sym_BSLASHAcs] = ACTIONS(5852), - [anon_sym_BSLASHacsp] = ACTIONS(5852), - [anon_sym_BSLASHAcsp] = ACTIONS(5852), - [anon_sym_BSLASHacl] = ACTIONS(5852), - [anon_sym_BSLASHAcl] = ACTIONS(5852), - [anon_sym_BSLASHaclp] = ACTIONS(5852), - [anon_sym_BSLASHAclp] = ACTIONS(5852), - [anon_sym_BSLASHacf] = ACTIONS(5852), - [anon_sym_BSLASHAcf] = ACTIONS(5852), - [anon_sym_BSLASHacfp] = ACTIONS(5852), - [anon_sym_BSLASHAcfp] = ACTIONS(5852), - [anon_sym_BSLASHac] = ACTIONS(5852), - [anon_sym_BSLASHAc] = ACTIONS(5852), - [anon_sym_BSLASHacp] = ACTIONS(5852), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5852), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5852), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5852), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5852), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5852), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5852), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5852), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5852), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5854), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5852), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5854), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5852), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5852), - [anon_sym_BSLASHcolor] = ACTIONS(5852), - [anon_sym_BSLASHcolorbox] = ACTIONS(5852), - [anon_sym_BSLASHtextcolor] = ACTIONS(5852), - [anon_sym_BSLASHpagecolor] = ACTIONS(5852), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5852), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5852), - [anon_sym_BSLASHtext] = ACTIONS(5852), - [anon_sym_BSLASHintertext] = ACTIONS(5852), - [anon_sym_shortintertext] = ACTIONS(5852), - }, - [838] = { - [sym__section_part] = STATE(1293), - [sym_curly_group] = STATE(1301), - [sym_brack_group] = STATE(3082), - [sym_command_name] = ACTIONS(5856), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5856), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_RBRACK] = ACTIONS(5858), - [anon_sym_COMMA] = ACTIONS(5858), - [anon_sym_EQ] = ACTIONS(5858), - [anon_sym_LPAREN] = ACTIONS(5858), - [anon_sym_RPAREN] = ACTIONS(5858), - [anon_sym_BSLASHpart] = ACTIONS(5856), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddpart] = ACTIONS(5856), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5858), - [anon_sym_BSLASHchapter] = ACTIONS(5856), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddchap] = ACTIONS(5856), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsection] = ACTIONS(5856), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHaddsec] = ACTIONS(5856), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubsection] = ACTIONS(5856), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5856), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5858), - [anon_sym_BSLASHparagraph] = ACTIONS(5856), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5858), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5856), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5858), - [anon_sym_BSLASHitem] = ACTIONS(5856), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5858), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(5856), - [sym_placeholder] = ACTIONS(5858), - [anon_sym_PLUS] = ACTIONS(5858), - [anon_sym_DASH] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(5858), - [anon_sym_SLASH] = ACTIONS(5858), - [anon_sym_LT] = ACTIONS(5856), - [anon_sym_GT] = ACTIONS(5856), - [anon_sym_BANG] = ACTIONS(5856), - [anon_sym_PIPE] = ACTIONS(5856), - [anon_sym_COLON] = ACTIONS(5856), - [anon_sym_SQUOTE] = ACTIONS(5856), - [anon_sym__] = ACTIONS(5858), - [anon_sym_CARET] = ACTIONS(5858), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5858), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5858), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5858), - [anon_sym_DOLLAR] = ACTIONS(5856), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5858), - [anon_sym_BSLASHbegin] = ACTIONS(5856), - [anon_sym_BSLASHtitle] = ACTIONS(5856), - [anon_sym_BSLASHauthor] = ACTIONS(5856), - [anon_sym_BSLASHusepackage] = ACTIONS(5856), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5856), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5856), - [anon_sym_BSLASHinclude] = ACTIONS(5856), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5856), - [anon_sym_BSLASHinput] = ACTIONS(5856), - [anon_sym_BSLASHsubfile] = ACTIONS(5856), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5856), - [anon_sym_BSLASHbibliography] = ACTIONS(5856), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5856), - [anon_sym_BSLASHincludesvg] = ACTIONS(5856), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5856), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5856), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5856), - [anon_sym_BSLASHimport] = ACTIONS(5856), - [anon_sym_BSLASHsubimport] = ACTIONS(5856), - [anon_sym_BSLASHinputfrom] = ACTIONS(5856), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5856), - [anon_sym_BSLASHincludefrom] = ACTIONS(5856), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5856), - [anon_sym_BSLASHcaption] = ACTIONS(5856), - [anon_sym_BSLASHcite] = ACTIONS(5856), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCite] = ACTIONS(5856), - [anon_sym_BSLASHnocite] = ACTIONS(5856), - [anon_sym_BSLASHcitet] = ACTIONS(5856), - [anon_sym_BSLASHcitep] = ACTIONS(5856), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteauthor] = ACTIONS(5856), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5856), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitetitle] = ACTIONS(5856), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteyear] = ACTIONS(5856), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5858), - [anon_sym_BSLASHcitedate] = ACTIONS(5856), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5858), - [anon_sym_BSLASHciteurl] = ACTIONS(5856), - [anon_sym_BSLASHfullcite] = ACTIONS(5856), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5856), - [anon_sym_BSLASHcitealt] = ACTIONS(5856), - [anon_sym_BSLASHcitealp] = ACTIONS(5856), - [anon_sym_BSLASHcitetext] = ACTIONS(5856), - [anon_sym_BSLASHparencite] = ACTIONS(5856), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHParencite] = ACTIONS(5856), - [anon_sym_BSLASHfootcite] = ACTIONS(5856), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5856), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5856), - [anon_sym_BSLASHtextcite] = ACTIONS(5856), - [anon_sym_BSLASHTextcite] = ACTIONS(5856), - [anon_sym_BSLASHsmartcite] = ACTIONS(5856), - [anon_sym_BSLASHSmartcite] = ACTIONS(5856), - [anon_sym_BSLASHsupercite] = ACTIONS(5856), - [anon_sym_BSLASHautocite] = ACTIONS(5856), - [anon_sym_BSLASHAutocite] = ACTIONS(5856), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5858), - [anon_sym_BSLASHvolcite] = ACTIONS(5856), - [anon_sym_BSLASHVolcite] = ACTIONS(5856), - [anon_sym_BSLASHpvolcite] = ACTIONS(5856), - [anon_sym_BSLASHPvolcite] = ACTIONS(5856), - [anon_sym_BSLASHfvolcite] = ACTIONS(5856), - [anon_sym_BSLASHftvolcite] = ACTIONS(5856), - [anon_sym_BSLASHsvolcite] = ACTIONS(5856), - [anon_sym_BSLASHSvolcite] = ACTIONS(5856), - [anon_sym_BSLASHtvolcite] = ACTIONS(5856), - [anon_sym_BSLASHTvolcite] = ACTIONS(5856), - [anon_sym_BSLASHavolcite] = ACTIONS(5856), - [anon_sym_BSLASHAvolcite] = ACTIONS(5856), - [anon_sym_BSLASHnotecite] = ACTIONS(5856), - [anon_sym_BSLASHNotecite] = ACTIONS(5856), - [anon_sym_BSLASHpnotecite] = ACTIONS(5856), - [anon_sym_BSLASHPnotecite] = ACTIONS(5856), - [anon_sym_BSLASHfnotecite] = ACTIONS(5856), - [anon_sym_BSLASHlabel] = ACTIONS(5856), - [anon_sym_BSLASHref] = ACTIONS(5856), - [anon_sym_BSLASHeqref] = ACTIONS(5856), - [anon_sym_BSLASHvref] = ACTIONS(5856), - [anon_sym_BSLASHVref] = ACTIONS(5856), - [anon_sym_BSLASHautoref] = ACTIONS(5856), - [anon_sym_BSLASHpageref] = ACTIONS(5856), - [anon_sym_BSLASHcref] = ACTIONS(5856), - [anon_sym_BSLASHCref] = ACTIONS(5856), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5858), - [anon_sym_BSLASHnamecref] = ACTIONS(5856), - [anon_sym_BSLASHnameCref] = ACTIONS(5856), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5856), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5856), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5856), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5856), - [anon_sym_BSLASHlabelcref] = ACTIONS(5856), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5856), - [anon_sym_BSLASHcrefrange] = ACTIONS(5856), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5858), - [anon_sym_BSLASHCrefrange] = ACTIONS(5856), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5858), - [anon_sym_BSLASHnewlabel] = ACTIONS(5856), - [anon_sym_BSLASHnewcommand] = ACTIONS(5856), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5856), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5858), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5856), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5858), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5856), - [anon_sym_BSLASHdef] = ACTIONS(5856), - [anon_sym_BSLASHlet] = ACTIONS(5856), - [anon_sym_BSLASHleft] = ACTIONS(5856), - [anon_sym_BSLASHbig] = ACTIONS(5856), - [anon_sym_BSLASHBig] = ACTIONS(5856), - [anon_sym_BSLASHbigg] = ACTIONS(5856), - [anon_sym_BSLASHBigg] = ACTIONS(5856), - [anon_sym_BSLASHbigl] = ACTIONS(5856), - [anon_sym_BSLASHBigl] = ACTIONS(5856), - [anon_sym_BSLASHbiggl] = ACTIONS(5856), - [anon_sym_BSLASHBiggl] = ACTIONS(5856), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5856), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5856), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5856), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5856), - [anon_sym_BSLASHgls] = ACTIONS(5856), - [anon_sym_BSLASHGls] = ACTIONS(5856), - [anon_sym_BSLASHGLS] = ACTIONS(5856), - [anon_sym_BSLASHglspl] = ACTIONS(5856), - [anon_sym_BSLASHGlspl] = ACTIONS(5856), - [anon_sym_BSLASHGLSpl] = ACTIONS(5856), - [anon_sym_BSLASHglsdisp] = ACTIONS(5856), - [anon_sym_BSLASHglslink] = ACTIONS(5856), - [anon_sym_BSLASHglstext] = ACTIONS(5856), - [anon_sym_BSLASHGlstext] = ACTIONS(5856), - [anon_sym_BSLASHGLStext] = ACTIONS(5856), - [anon_sym_BSLASHglsfirst] = ACTIONS(5856), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5856), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5856), - [anon_sym_BSLASHglsplural] = ACTIONS(5856), - [anon_sym_BSLASHGlsplural] = ACTIONS(5856), - [anon_sym_BSLASHGLSplural] = ACTIONS(5856), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5856), - [anon_sym_BSLASHglsname] = ACTIONS(5856), - [anon_sym_BSLASHGlsname] = ACTIONS(5856), - [anon_sym_BSLASHGLSname] = ACTIONS(5856), - [anon_sym_BSLASHglssymbol] = ACTIONS(5856), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5856), - [anon_sym_BSLASHglsdesc] = ACTIONS(5856), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5856), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5856), - [anon_sym_BSLASHglsuseri] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5856), - [anon_sym_BSLASHglsuserii] = ACTIONS(5856), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5856), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5856), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5856), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5856), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5856), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5856), - [anon_sym_BSLASHglsuserv] = ACTIONS(5856), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5856), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5856), - [anon_sym_BSLASHglsuservi] = ACTIONS(5856), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5856), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5856), - [anon_sym_BSLASHnewacronym] = ACTIONS(5856), - [anon_sym_BSLASHacrshort] = ACTIONS(5856), - [anon_sym_BSLASHAcrshort] = ACTIONS(5856), - [anon_sym_BSLASHACRshort] = ACTIONS(5856), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5856), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5856), - [anon_sym_BSLASHacrlong] = ACTIONS(5856), - [anon_sym_BSLASHAcrlong] = ACTIONS(5856), - [anon_sym_BSLASHACRlong] = ACTIONS(5856), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5856), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5856), - [anon_sym_BSLASHacrfull] = ACTIONS(5856), - [anon_sym_BSLASHAcrfull] = ACTIONS(5856), - [anon_sym_BSLASHACRfull] = ACTIONS(5856), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5856), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5856), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5856), - [anon_sym_BSLASHacs] = ACTIONS(5856), - [anon_sym_BSLASHAcs] = ACTIONS(5856), - [anon_sym_BSLASHacsp] = ACTIONS(5856), - [anon_sym_BSLASHAcsp] = ACTIONS(5856), - [anon_sym_BSLASHacl] = ACTIONS(5856), - [anon_sym_BSLASHAcl] = ACTIONS(5856), - [anon_sym_BSLASHaclp] = ACTIONS(5856), - [anon_sym_BSLASHAclp] = ACTIONS(5856), - [anon_sym_BSLASHacf] = ACTIONS(5856), - [anon_sym_BSLASHAcf] = ACTIONS(5856), - [anon_sym_BSLASHacfp] = ACTIONS(5856), - [anon_sym_BSLASHAcfp] = ACTIONS(5856), - [anon_sym_BSLASHac] = ACTIONS(5856), - [anon_sym_BSLASHAc] = ACTIONS(5856), - [anon_sym_BSLASHacp] = ACTIONS(5856), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5856), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5856), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5856), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5856), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5856), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5856), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5856), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5856), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5858), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5856), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5858), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5856), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5856), - [anon_sym_BSLASHcolor] = ACTIONS(5856), - [anon_sym_BSLASHcolorbox] = ACTIONS(5856), - [anon_sym_BSLASHtextcolor] = ACTIONS(5856), - [anon_sym_BSLASHpagecolor] = ACTIONS(5856), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5856), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5856), - [anon_sym_BSLASHtext] = ACTIONS(5856), - [anon_sym_BSLASHintertext] = ACTIONS(5856), - [anon_sym_shortintertext] = ACTIONS(5856), - }, - [839] = { - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(734), - [aux_sym__section_repeat5] = STATE(734), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [840] = { - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(735), - [aux_sym__section_repeat4] = STATE(735), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(2158), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddsec] = ACTIONS(2158), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [841] = { - [sym__part_declaration] = STATE(185), - [sym_part] = STATE(742), - [aux_sym__section_repeat1] = STATE(742), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(622), - [anon_sym_BSLASHpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHaddpart] = ACTIONS(622), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(624), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [842] = { - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(737), - [aux_sym__section_repeat2] = STATE(737), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [843] = { - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(736), - [aux_sym__section_repeat3] = STATE(736), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [844] = { - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(735), - [aux_sym__section_repeat4] = STATE(735), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [845] = { - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(734), - [aux_sym__section_repeat5] = STATE(734), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [846] = { - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(736), - [aux_sym__section_repeat3] = STATE(736), - [sym_command_name] = ACTIONS(2158), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_EQ] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_BSLASHpart] = ACTIONS(2158), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddpart] = ACTIONS(2158), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2160), - [anon_sym_BSLASHchapter] = ACTIONS(2158), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2160), - [anon_sym_BSLASHaddchap] = ACTIONS(2158), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2158), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2160), - [anon_sym_BSLASHparagraph] = ACTIONS(2158), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2158), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2160), - [anon_sym_BSLASHitem] = ACTIONS(2158), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [sym_word] = ACTIONS(2158), - [sym_placeholder] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_COLON] = ACTIONS(2158), - [anon_sym_SQUOTE] = ACTIONS(2158), - [anon_sym__] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2160), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2160), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2160), - [anon_sym_BSLASHbegin] = ACTIONS(2158), - [anon_sym_BSLASHtitle] = ACTIONS(2158), - [anon_sym_BSLASHauthor] = ACTIONS(2158), - [anon_sym_BSLASHusepackage] = ACTIONS(2158), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2158), - [anon_sym_BSLASHinclude] = ACTIONS(2158), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2158), - [anon_sym_BSLASHinput] = ACTIONS(2158), - [anon_sym_BSLASHsubfile] = ACTIONS(2158), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2158), - [anon_sym_BSLASHbibliography] = ACTIONS(2158), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2158), - [anon_sym_BSLASHincludesvg] = ACTIONS(2158), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2158), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2158), - [anon_sym_BSLASHsubimport] = ACTIONS(2158), - [anon_sym_BSLASHinputfrom] = ACTIONS(2158), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2158), - [anon_sym_BSLASHincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(2158), - [anon_sym_BSLASHcite] = ACTIONS(2158), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCite] = ACTIONS(2158), - [anon_sym_BSLASHnocite] = ACTIONS(2158), - [anon_sym_BSLASHcitet] = ACTIONS(2158), - [anon_sym_BSLASHcitep] = ACTIONS(2158), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteauthor] = ACTIONS(2158), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2158), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitetitle] = ACTIONS(2158), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteyear] = ACTIONS(2158), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2160), - [anon_sym_BSLASHcitedate] = ACTIONS(2158), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2160), - [anon_sym_BSLASHciteurl] = ACTIONS(2158), - [anon_sym_BSLASHfullcite] = ACTIONS(2158), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2158), - [anon_sym_BSLASHcitealt] = ACTIONS(2158), - [anon_sym_BSLASHcitealp] = ACTIONS(2158), - [anon_sym_BSLASHcitetext] = ACTIONS(2158), - [anon_sym_BSLASHparencite] = ACTIONS(2158), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHParencite] = ACTIONS(2158), - [anon_sym_BSLASHfootcite] = ACTIONS(2158), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2158), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2158), - [anon_sym_BSLASHtextcite] = ACTIONS(2158), - [anon_sym_BSLASHTextcite] = ACTIONS(2158), - [anon_sym_BSLASHsmartcite] = ACTIONS(2158), - [anon_sym_BSLASHSmartcite] = ACTIONS(2158), - [anon_sym_BSLASHsupercite] = ACTIONS(2158), - [anon_sym_BSLASHautocite] = ACTIONS(2158), - [anon_sym_BSLASHAutocite] = ACTIONS(2158), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2160), - [anon_sym_BSLASHvolcite] = ACTIONS(2158), - [anon_sym_BSLASHVolcite] = ACTIONS(2158), - [anon_sym_BSLASHpvolcite] = ACTIONS(2158), - [anon_sym_BSLASHPvolcite] = ACTIONS(2158), - [anon_sym_BSLASHfvolcite] = ACTIONS(2158), - [anon_sym_BSLASHftvolcite] = ACTIONS(2158), - [anon_sym_BSLASHsvolcite] = ACTIONS(2158), - [anon_sym_BSLASHSvolcite] = ACTIONS(2158), - [anon_sym_BSLASHtvolcite] = ACTIONS(2158), - [anon_sym_BSLASHTvolcite] = ACTIONS(2158), - [anon_sym_BSLASHavolcite] = ACTIONS(2158), - [anon_sym_BSLASHAvolcite] = ACTIONS(2158), - [anon_sym_BSLASHnotecite] = ACTIONS(2158), - [anon_sym_BSLASHNotecite] = ACTIONS(2158), - [anon_sym_BSLASHpnotecite] = ACTIONS(2158), - [anon_sym_BSLASHPnotecite] = ACTIONS(2158), - [anon_sym_BSLASHfnotecite] = ACTIONS(2158), - [anon_sym_BSLASHlabel] = ACTIONS(2158), - [anon_sym_BSLASHref] = ACTIONS(2158), - [anon_sym_BSLASHeqref] = ACTIONS(2158), - [anon_sym_BSLASHvref] = ACTIONS(2158), - [anon_sym_BSLASHVref] = ACTIONS(2158), - [anon_sym_BSLASHautoref] = ACTIONS(2158), - [anon_sym_BSLASHpageref] = ACTIONS(2158), - [anon_sym_BSLASHcref] = ACTIONS(2158), - [anon_sym_BSLASHCref] = ACTIONS(2158), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnameCref] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2158), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2158), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2158), - [anon_sym_BSLASHlabelcref] = ACTIONS(2158), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange] = ACTIONS(2158), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHCrefrange] = ACTIONS(2158), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2160), - [anon_sym_BSLASHnewlabel] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand] = ACTIONS(2158), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2158), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2160), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2158), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2160), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2158), - [anon_sym_BSLASHdef] = ACTIONS(2158), - [anon_sym_BSLASHlet] = ACTIONS(2158), - [anon_sym_BSLASHleft] = ACTIONS(2158), - [anon_sym_BSLASHbig] = ACTIONS(2158), - [anon_sym_BSLASHBig] = ACTIONS(2158), - [anon_sym_BSLASHbigg] = ACTIONS(2158), - [anon_sym_BSLASHBigg] = ACTIONS(2158), - [anon_sym_BSLASHbigl] = ACTIONS(2158), - [anon_sym_BSLASHBigl] = ACTIONS(2158), - [anon_sym_BSLASHbiggl] = ACTIONS(2158), - [anon_sym_BSLASHBiggl] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2158), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2158), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2158), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2158), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2158), - [anon_sym_BSLASHgls] = ACTIONS(2158), - [anon_sym_BSLASHGls] = ACTIONS(2158), - [anon_sym_BSLASHGLS] = ACTIONS(2158), - [anon_sym_BSLASHglspl] = ACTIONS(2158), - [anon_sym_BSLASHGlspl] = ACTIONS(2158), - [anon_sym_BSLASHGLSpl] = ACTIONS(2158), - [anon_sym_BSLASHglsdisp] = ACTIONS(2158), - [anon_sym_BSLASHglslink] = ACTIONS(2158), - [anon_sym_BSLASHglstext] = ACTIONS(2158), - [anon_sym_BSLASHGlstext] = ACTIONS(2158), - [anon_sym_BSLASHGLStext] = ACTIONS(2158), - [anon_sym_BSLASHglsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2158), - [anon_sym_BSLASHglsplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSplural] = ACTIONS(2158), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2158), - [anon_sym_BSLASHglsname] = ACTIONS(2158), - [anon_sym_BSLASHGlsname] = ACTIONS(2158), - [anon_sym_BSLASHGLSname] = ACTIONS(2158), - [anon_sym_BSLASHglssymbol] = ACTIONS(2158), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2158), - [anon_sym_BSLASHglsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2158), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2158), - [anon_sym_BSLASHglsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2158), - [anon_sym_BSLASHglsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2158), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2158), - [anon_sym_BSLASHglsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2158), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2158), - [anon_sym_BSLASHglsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2158), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2158), - [anon_sym_BSLASHnewacronym] = ACTIONS(2158), - [anon_sym_BSLASHacrshort] = ACTIONS(2158), - [anon_sym_BSLASHAcrshort] = ACTIONS(2158), - [anon_sym_BSLASHACRshort] = ACTIONS(2158), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2158), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2158), - [anon_sym_BSLASHacrlong] = ACTIONS(2158), - [anon_sym_BSLASHAcrlong] = ACTIONS(2158), - [anon_sym_BSLASHACRlong] = ACTIONS(2158), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2158), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2158), - [anon_sym_BSLASHacrfull] = ACTIONS(2158), - [anon_sym_BSLASHAcrfull] = ACTIONS(2158), - [anon_sym_BSLASHACRfull] = ACTIONS(2158), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2158), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2158), - [anon_sym_BSLASHacs] = ACTIONS(2158), - [anon_sym_BSLASHAcs] = ACTIONS(2158), - [anon_sym_BSLASHacsp] = ACTIONS(2158), - [anon_sym_BSLASHAcsp] = ACTIONS(2158), - [anon_sym_BSLASHacl] = ACTIONS(2158), - [anon_sym_BSLASHAcl] = ACTIONS(2158), - [anon_sym_BSLASHaclp] = ACTIONS(2158), - [anon_sym_BSLASHAclp] = ACTIONS(2158), - [anon_sym_BSLASHacf] = ACTIONS(2158), - [anon_sym_BSLASHAcf] = ACTIONS(2158), - [anon_sym_BSLASHacfp] = ACTIONS(2158), - [anon_sym_BSLASHAcfp] = ACTIONS(2158), - [anon_sym_BSLASHac] = ACTIONS(2158), - [anon_sym_BSLASHAc] = ACTIONS(2158), - [anon_sym_BSLASHacp] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2158), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2158), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2158), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2158), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2158), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2160), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2158), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2158), - [anon_sym_BSLASHcolor] = ACTIONS(2158), - [anon_sym_BSLASHcolorbox] = ACTIONS(2158), - [anon_sym_BSLASHtextcolor] = ACTIONS(2158), - [anon_sym_BSLASHpagecolor] = ACTIONS(2158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2158), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2158), - [anon_sym_BSLASHtext] = ACTIONS(2158), - [anon_sym_BSLASHintertext] = ACTIONS(2158), - [anon_sym_shortintertext] = ACTIONS(2158), - }, - [847] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(5864), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5866), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [848] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(5864), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5864), - [anon_sym_LBRACK] = ACTIONS(5866), - [anon_sym_RBRACK] = ACTIONS(5866), - [anon_sym_COMMA] = ACTIONS(5866), - [anon_sym_EQ] = ACTIONS(5866), - [anon_sym_LPAREN] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(5866), - [anon_sym_BSLASHpart] = ACTIONS(5864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddpart] = ACTIONS(5864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5866), - [anon_sym_BSLASHchapter] = ACTIONS(5864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddchap] = ACTIONS(5864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsection] = ACTIONS(5864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHaddsec] = ACTIONS(5864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5864), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5866), - [anon_sym_BSLASHparagraph] = ACTIONS(5864), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5864), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(5866), - [sym_word] = ACTIONS(5864), - [sym_placeholder] = ACTIONS(5866), - [anon_sym_PLUS] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), - [anon_sym_STAR] = ACTIONS(5866), - [anon_sym_SLASH] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(5864), - [anon_sym_BANG] = ACTIONS(5864), - [anon_sym_PIPE] = ACTIONS(5864), - [anon_sym_COLON] = ACTIONS(5864), - [anon_sym_SQUOTE] = ACTIONS(5864), - [anon_sym__] = ACTIONS(5866), - [anon_sym_CARET] = ACTIONS(5866), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5866), - [anon_sym_DOLLAR] = ACTIONS(5864), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5866), - [anon_sym_BSLASHbegin] = ACTIONS(5864), - [anon_sym_BSLASHtitle] = ACTIONS(5864), - [anon_sym_BSLASHauthor] = ACTIONS(5864), - [anon_sym_BSLASHusepackage] = ACTIONS(5864), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5864), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5864), - [anon_sym_BSLASHinclude] = ACTIONS(5864), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5864), - [anon_sym_BSLASHinput] = ACTIONS(5864), - [anon_sym_BSLASHsubfile] = ACTIONS(5864), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5864), - [anon_sym_BSLASHbibliography] = ACTIONS(5864), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5864), - [anon_sym_BSLASHincludesvg] = ACTIONS(5864), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5864), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5864), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5864), - [anon_sym_BSLASHimport] = ACTIONS(5864), - [anon_sym_BSLASHsubimport] = ACTIONS(5864), - [anon_sym_BSLASHinputfrom] = ACTIONS(5864), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5864), - [anon_sym_BSLASHincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5864), - [anon_sym_BSLASHcaption] = ACTIONS(5864), - [anon_sym_BSLASHcite] = ACTIONS(5864), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCite] = ACTIONS(5864), - [anon_sym_BSLASHnocite] = ACTIONS(5864), - [anon_sym_BSLASHcitet] = ACTIONS(5864), - [anon_sym_BSLASHcitep] = ACTIONS(5864), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteauthor] = ACTIONS(5864), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5864), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitetitle] = ACTIONS(5864), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteyear] = ACTIONS(5864), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5866), - [anon_sym_BSLASHcitedate] = ACTIONS(5864), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5866), - [anon_sym_BSLASHciteurl] = ACTIONS(5864), - [anon_sym_BSLASHfullcite] = ACTIONS(5864), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5864), - [anon_sym_BSLASHcitealt] = ACTIONS(5864), - [anon_sym_BSLASHcitealp] = ACTIONS(5864), - [anon_sym_BSLASHcitetext] = ACTIONS(5864), - [anon_sym_BSLASHparencite] = ACTIONS(5864), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHParencite] = ACTIONS(5864), - [anon_sym_BSLASHfootcite] = ACTIONS(5864), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5864), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5864), - [anon_sym_BSLASHtextcite] = ACTIONS(5864), - [anon_sym_BSLASHTextcite] = ACTIONS(5864), - [anon_sym_BSLASHsmartcite] = ACTIONS(5864), - [anon_sym_BSLASHSmartcite] = ACTIONS(5864), - [anon_sym_BSLASHsupercite] = ACTIONS(5864), - [anon_sym_BSLASHautocite] = ACTIONS(5864), - [anon_sym_BSLASHAutocite] = ACTIONS(5864), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5866), - [anon_sym_BSLASHvolcite] = ACTIONS(5864), - [anon_sym_BSLASHVolcite] = ACTIONS(5864), - [anon_sym_BSLASHpvolcite] = ACTIONS(5864), - [anon_sym_BSLASHPvolcite] = ACTIONS(5864), - [anon_sym_BSLASHfvolcite] = ACTIONS(5864), - [anon_sym_BSLASHftvolcite] = ACTIONS(5864), - [anon_sym_BSLASHsvolcite] = ACTIONS(5864), - [anon_sym_BSLASHSvolcite] = ACTIONS(5864), - [anon_sym_BSLASHtvolcite] = ACTIONS(5864), - [anon_sym_BSLASHTvolcite] = ACTIONS(5864), - [anon_sym_BSLASHavolcite] = ACTIONS(5864), - [anon_sym_BSLASHAvolcite] = ACTIONS(5864), - [anon_sym_BSLASHnotecite] = ACTIONS(5864), - [anon_sym_BSLASHNotecite] = ACTIONS(5864), - [anon_sym_BSLASHpnotecite] = ACTIONS(5864), - [anon_sym_BSLASHPnotecite] = ACTIONS(5864), - [anon_sym_BSLASHfnotecite] = ACTIONS(5864), - [anon_sym_BSLASHlabel] = ACTIONS(5864), - [anon_sym_BSLASHref] = ACTIONS(5864), - [anon_sym_BSLASHeqref] = ACTIONS(5864), - [anon_sym_BSLASHvref] = ACTIONS(5864), - [anon_sym_BSLASHVref] = ACTIONS(5864), - [anon_sym_BSLASHautoref] = ACTIONS(5864), - [anon_sym_BSLASHpageref] = ACTIONS(5864), - [anon_sym_BSLASHcref] = ACTIONS(5864), - [anon_sym_BSLASHCref] = ACTIONS(5864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnameCref] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5864), - [anon_sym_BSLASHlabelcref] = ACTIONS(5864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange] = ACTIONS(5864), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHCrefrange] = ACTIONS(5864), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5866), - [anon_sym_BSLASHnewlabel] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand] = ACTIONS(5864), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5864), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5864), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5866), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5864), - [anon_sym_BSLASHdef] = ACTIONS(5864), - [anon_sym_BSLASHlet] = ACTIONS(5864), - [anon_sym_BSLASHleft] = ACTIONS(5864), - [anon_sym_BSLASHbig] = ACTIONS(5864), - [anon_sym_BSLASHBig] = ACTIONS(5864), - [anon_sym_BSLASHbigg] = ACTIONS(5864), - [anon_sym_BSLASHBigg] = ACTIONS(5864), - [anon_sym_BSLASHbigl] = ACTIONS(5864), - [anon_sym_BSLASHBigl] = ACTIONS(5864), - [anon_sym_BSLASHbiggl] = ACTIONS(5864), - [anon_sym_BSLASHBiggl] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5864), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5864), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5864), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5864), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5864), - [anon_sym_BSLASHgls] = ACTIONS(5864), - [anon_sym_BSLASHGls] = ACTIONS(5864), - [anon_sym_BSLASHGLS] = ACTIONS(5864), - [anon_sym_BSLASHglspl] = ACTIONS(5864), - [anon_sym_BSLASHGlspl] = ACTIONS(5864), - [anon_sym_BSLASHGLSpl] = ACTIONS(5864), - [anon_sym_BSLASHglsdisp] = ACTIONS(5864), - [anon_sym_BSLASHglslink] = ACTIONS(5864), - [anon_sym_BSLASHglstext] = ACTIONS(5864), - [anon_sym_BSLASHGlstext] = ACTIONS(5864), - [anon_sym_BSLASHGLStext] = ACTIONS(5864), - [anon_sym_BSLASHglsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5864), - [anon_sym_BSLASHglsplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSplural] = ACTIONS(5864), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5864), - [anon_sym_BSLASHglsname] = ACTIONS(5864), - [anon_sym_BSLASHGlsname] = ACTIONS(5864), - [anon_sym_BSLASHGLSname] = ACTIONS(5864), - [anon_sym_BSLASHglssymbol] = ACTIONS(5864), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5864), - [anon_sym_BSLASHglsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5864), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5864), - [anon_sym_BSLASHglsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5864), - [anon_sym_BSLASHglsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5864), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5864), - [anon_sym_BSLASHglsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5864), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5864), - [anon_sym_BSLASHglsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5864), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5864), - [anon_sym_BSLASHnewacronym] = ACTIONS(5864), - [anon_sym_BSLASHacrshort] = ACTIONS(5864), - [anon_sym_BSLASHAcrshort] = ACTIONS(5864), - [anon_sym_BSLASHACRshort] = ACTIONS(5864), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5864), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5864), - [anon_sym_BSLASHacrlong] = ACTIONS(5864), - [anon_sym_BSLASHAcrlong] = ACTIONS(5864), - [anon_sym_BSLASHACRlong] = ACTIONS(5864), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5864), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5864), - [anon_sym_BSLASHacrfull] = ACTIONS(5864), - [anon_sym_BSLASHAcrfull] = ACTIONS(5864), - [anon_sym_BSLASHACRfull] = ACTIONS(5864), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5864), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5864), - [anon_sym_BSLASHacs] = ACTIONS(5864), - [anon_sym_BSLASHAcs] = ACTIONS(5864), - [anon_sym_BSLASHacsp] = ACTIONS(5864), - [anon_sym_BSLASHAcsp] = ACTIONS(5864), - [anon_sym_BSLASHacl] = ACTIONS(5864), - [anon_sym_BSLASHAcl] = ACTIONS(5864), - [anon_sym_BSLASHaclp] = ACTIONS(5864), - [anon_sym_BSLASHAclp] = ACTIONS(5864), - [anon_sym_BSLASHacf] = ACTIONS(5864), - [anon_sym_BSLASHAcf] = ACTIONS(5864), - [anon_sym_BSLASHacfp] = ACTIONS(5864), - [anon_sym_BSLASHAcfp] = ACTIONS(5864), - [anon_sym_BSLASHac] = ACTIONS(5864), - [anon_sym_BSLASHAc] = ACTIONS(5864), - [anon_sym_BSLASHacp] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5864), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5864), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5864), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5864), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5864), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5866), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5864), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5864), - [anon_sym_BSLASHcolor] = ACTIONS(5864), - [anon_sym_BSLASHcolorbox] = ACTIONS(5864), - [anon_sym_BSLASHtextcolor] = ACTIONS(5864), - [anon_sym_BSLASHpagecolor] = ACTIONS(5864), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5864), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5864), - [anon_sym_BSLASHtext] = ACTIONS(5864), - [anon_sym_BSLASHintertext] = ACTIONS(5864), - [anon_sym_shortintertext] = ACTIONS(5864), - }, - [849] = { - [sym__enum_itemdeclaration] = STATE(255), - [sym_enum_item] = STATE(731), - [aux_sym__section_repeat8] = STATE(731), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(650), - [anon_sym_BSLASHitem_STAR] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [850] = { - [sym__subparagraph_declaration] = STATE(246), - [sym_subparagraph] = STATE(732), - [aux_sym__section_repeat7] = STATE(732), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(646), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(648), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [851] = { - [sym__chapter_declaration] = STATE(191), - [sym_chapter] = STATE(812), - [aux_sym__section_repeat2] = STATE(812), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(660), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(662), - [anon_sym_BSLASHaddchap] = ACTIONS(660), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(662), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [852] = { - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(813), - [aux_sym__section_repeat3] = STATE(813), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [853] = { - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(814), - [aux_sym__section_repeat4] = STATE(814), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [854] = { - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(815), - [aux_sym__section_repeat5] = STATE(815), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [855] = { - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(816), - [aux_sym__section_repeat6] = STATE(816), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [856] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(5824), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5826), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [857] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(5824), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5824), - [anon_sym_LBRACK] = ACTIONS(5826), - [anon_sym_RBRACK] = ACTIONS(5826), - [anon_sym_COMMA] = ACTIONS(5826), - [anon_sym_EQ] = ACTIONS(5826), - [anon_sym_LPAREN] = ACTIONS(5826), - [anon_sym_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHpart] = ACTIONS(5824), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddpart] = ACTIONS(5824), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5826), - [anon_sym_BSLASHchapter] = ACTIONS(5824), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddchap] = ACTIONS(5824), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsection] = ACTIONS(5824), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHaddsec] = ACTIONS(5824), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5824), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5826), - [anon_sym_BSLASHparagraph] = ACTIONS(5824), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5824), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5826), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(5826), - [sym_word] = ACTIONS(5824), - [sym_placeholder] = ACTIONS(5826), - [anon_sym_PLUS] = ACTIONS(5826), - [anon_sym_DASH] = ACTIONS(5826), - [anon_sym_STAR] = ACTIONS(5826), - [anon_sym_SLASH] = ACTIONS(5826), - [anon_sym_LT] = ACTIONS(5824), - [anon_sym_GT] = ACTIONS(5824), - [anon_sym_BANG] = ACTIONS(5824), - [anon_sym_PIPE] = ACTIONS(5824), - [anon_sym_COLON] = ACTIONS(5824), - [anon_sym_SQUOTE] = ACTIONS(5824), - [anon_sym__] = ACTIONS(5826), - [anon_sym_CARET] = ACTIONS(5826), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5826), - [anon_sym_DOLLAR] = ACTIONS(5824), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5826), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5826), - [anon_sym_BSLASHbegin] = ACTIONS(5824), - [anon_sym_BSLASHtitle] = ACTIONS(5824), - [anon_sym_BSLASHauthor] = ACTIONS(5824), - [anon_sym_BSLASHusepackage] = ACTIONS(5824), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5824), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5824), - [anon_sym_BSLASHinclude] = ACTIONS(5824), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5824), - [anon_sym_BSLASHinput] = ACTIONS(5824), - [anon_sym_BSLASHsubfile] = ACTIONS(5824), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5824), - [anon_sym_BSLASHbibliography] = ACTIONS(5824), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5824), - [anon_sym_BSLASHincludesvg] = ACTIONS(5824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5824), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), - [anon_sym_BSLASHimport] = ACTIONS(5824), - [anon_sym_BSLASHsubimport] = ACTIONS(5824), - [anon_sym_BSLASHinputfrom] = ACTIONS(5824), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5824), - [anon_sym_BSLASHincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5824), - [anon_sym_BSLASHcaption] = ACTIONS(5824), - [anon_sym_BSLASHcite] = ACTIONS(5824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCite] = ACTIONS(5824), - [anon_sym_BSLASHnocite] = ACTIONS(5824), - [anon_sym_BSLASHcitet] = ACTIONS(5824), - [anon_sym_BSLASHcitep] = ACTIONS(5824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteauthor] = ACTIONS(5824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitetitle] = ACTIONS(5824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteyear] = ACTIONS(5824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5826), - [anon_sym_BSLASHcitedate] = ACTIONS(5824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5826), - [anon_sym_BSLASHciteurl] = ACTIONS(5824), - [anon_sym_BSLASHfullcite] = ACTIONS(5824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5824), - [anon_sym_BSLASHcitealt] = ACTIONS(5824), - [anon_sym_BSLASHcitealp] = ACTIONS(5824), - [anon_sym_BSLASHcitetext] = ACTIONS(5824), - [anon_sym_BSLASHparencite] = ACTIONS(5824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHParencite] = ACTIONS(5824), - [anon_sym_BSLASHfootcite] = ACTIONS(5824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5824), - [anon_sym_BSLASHtextcite] = ACTIONS(5824), - [anon_sym_BSLASHTextcite] = ACTIONS(5824), - [anon_sym_BSLASHsmartcite] = ACTIONS(5824), - [anon_sym_BSLASHSmartcite] = ACTIONS(5824), - [anon_sym_BSLASHsupercite] = ACTIONS(5824), - [anon_sym_BSLASHautocite] = ACTIONS(5824), - [anon_sym_BSLASHAutocite] = ACTIONS(5824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5826), - [anon_sym_BSLASHvolcite] = ACTIONS(5824), - [anon_sym_BSLASHVolcite] = ACTIONS(5824), - [anon_sym_BSLASHpvolcite] = ACTIONS(5824), - [anon_sym_BSLASHPvolcite] = ACTIONS(5824), - [anon_sym_BSLASHfvolcite] = ACTIONS(5824), - [anon_sym_BSLASHftvolcite] = ACTIONS(5824), - [anon_sym_BSLASHsvolcite] = ACTIONS(5824), - [anon_sym_BSLASHSvolcite] = ACTIONS(5824), - [anon_sym_BSLASHtvolcite] = ACTIONS(5824), - [anon_sym_BSLASHTvolcite] = ACTIONS(5824), - [anon_sym_BSLASHavolcite] = ACTIONS(5824), - [anon_sym_BSLASHAvolcite] = ACTIONS(5824), - [anon_sym_BSLASHnotecite] = ACTIONS(5824), - [anon_sym_BSLASHNotecite] = ACTIONS(5824), - [anon_sym_BSLASHpnotecite] = ACTIONS(5824), - [anon_sym_BSLASHPnotecite] = ACTIONS(5824), - [anon_sym_BSLASHfnotecite] = ACTIONS(5824), - [anon_sym_BSLASHlabel] = ACTIONS(5824), - [anon_sym_BSLASHref] = ACTIONS(5824), - [anon_sym_BSLASHeqref] = ACTIONS(5824), - [anon_sym_BSLASHvref] = ACTIONS(5824), - [anon_sym_BSLASHVref] = ACTIONS(5824), - [anon_sym_BSLASHautoref] = ACTIONS(5824), - [anon_sym_BSLASHpageref] = ACTIONS(5824), - [anon_sym_BSLASHcref] = ACTIONS(5824), - [anon_sym_BSLASHCref] = ACTIONS(5824), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnameCref] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5824), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5824), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5824), - [anon_sym_BSLASHlabelcref] = ACTIONS(5824), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange] = ACTIONS(5824), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHCrefrange] = ACTIONS(5824), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5826), - [anon_sym_BSLASHnewlabel] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand] = ACTIONS(5824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5826), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5826), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5824), - [anon_sym_BSLASHdef] = ACTIONS(5824), - [anon_sym_BSLASHlet] = ACTIONS(5824), - [anon_sym_BSLASHleft] = ACTIONS(5824), - [anon_sym_BSLASHbig] = ACTIONS(5824), - [anon_sym_BSLASHBig] = ACTIONS(5824), - [anon_sym_BSLASHbigg] = ACTIONS(5824), - [anon_sym_BSLASHBigg] = ACTIONS(5824), - [anon_sym_BSLASHbigl] = ACTIONS(5824), - [anon_sym_BSLASHBigl] = ACTIONS(5824), - [anon_sym_BSLASHbiggl] = ACTIONS(5824), - [anon_sym_BSLASHBiggl] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5824), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5824), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5824), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5824), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5824), - [anon_sym_BSLASHgls] = ACTIONS(5824), - [anon_sym_BSLASHGls] = ACTIONS(5824), - [anon_sym_BSLASHGLS] = ACTIONS(5824), - [anon_sym_BSLASHglspl] = ACTIONS(5824), - [anon_sym_BSLASHGlspl] = ACTIONS(5824), - [anon_sym_BSLASHGLSpl] = ACTIONS(5824), - [anon_sym_BSLASHglsdisp] = ACTIONS(5824), - [anon_sym_BSLASHglslink] = ACTIONS(5824), - [anon_sym_BSLASHglstext] = ACTIONS(5824), - [anon_sym_BSLASHGlstext] = ACTIONS(5824), - [anon_sym_BSLASHGLStext] = ACTIONS(5824), - [anon_sym_BSLASHglsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5824), - [anon_sym_BSLASHglsplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSplural] = ACTIONS(5824), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5824), - [anon_sym_BSLASHglsname] = ACTIONS(5824), - [anon_sym_BSLASHGlsname] = ACTIONS(5824), - [anon_sym_BSLASHGLSname] = ACTIONS(5824), - [anon_sym_BSLASHglssymbol] = ACTIONS(5824), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5824), - [anon_sym_BSLASHglsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5824), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5824), - [anon_sym_BSLASHglsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5824), - [anon_sym_BSLASHglsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5824), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5824), - [anon_sym_BSLASHglsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5824), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5824), - [anon_sym_BSLASHglsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5824), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5824), - [anon_sym_BSLASHnewacronym] = ACTIONS(5824), - [anon_sym_BSLASHacrshort] = ACTIONS(5824), - [anon_sym_BSLASHAcrshort] = ACTIONS(5824), - [anon_sym_BSLASHACRshort] = ACTIONS(5824), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5824), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5824), - [anon_sym_BSLASHacrlong] = ACTIONS(5824), - [anon_sym_BSLASHAcrlong] = ACTIONS(5824), - [anon_sym_BSLASHACRlong] = ACTIONS(5824), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5824), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5824), - [anon_sym_BSLASHacrfull] = ACTIONS(5824), - [anon_sym_BSLASHAcrfull] = ACTIONS(5824), - [anon_sym_BSLASHACRfull] = ACTIONS(5824), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5824), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5824), - [anon_sym_BSLASHacs] = ACTIONS(5824), - [anon_sym_BSLASHAcs] = ACTIONS(5824), - [anon_sym_BSLASHacsp] = ACTIONS(5824), - [anon_sym_BSLASHAcsp] = ACTIONS(5824), - [anon_sym_BSLASHacl] = ACTIONS(5824), - [anon_sym_BSLASHAcl] = ACTIONS(5824), - [anon_sym_BSLASHaclp] = ACTIONS(5824), - [anon_sym_BSLASHAclp] = ACTIONS(5824), - [anon_sym_BSLASHacf] = ACTIONS(5824), - [anon_sym_BSLASHAcf] = ACTIONS(5824), - [anon_sym_BSLASHacfp] = ACTIONS(5824), - [anon_sym_BSLASHAcfp] = ACTIONS(5824), - [anon_sym_BSLASHac] = ACTIONS(5824), - [anon_sym_BSLASHAc] = ACTIONS(5824), - [anon_sym_BSLASHacp] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5824), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5824), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5824), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5824), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5824), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5826), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5824), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5824), - [anon_sym_BSLASHcolor] = ACTIONS(5824), - [anon_sym_BSLASHcolorbox] = ACTIONS(5824), - [anon_sym_BSLASHtextcolor] = ACTIONS(5824), - [anon_sym_BSLASHpagecolor] = ACTIONS(5824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5824), - [anon_sym_BSLASHtext] = ACTIONS(5824), - [anon_sym_BSLASHintertext] = ACTIONS(5824), - [anon_sym_shortintertext] = ACTIONS(5824), - }, - [858] = { - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(735), - [aux_sym__section_repeat4] = STATE(735), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [859] = { - [sym__section_declaration] = STATE(203), - [sym_section] = STATE(813), - [aux_sym__section_repeat3] = STATE(813), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(664), - [anon_sym_BSLASHsection_STAR] = ACTIONS(666), - [anon_sym_BSLASHaddsec] = ACTIONS(664), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(666), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [860] = { - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(814), - [aux_sym__section_repeat4] = STATE(814), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [861] = { - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(815), - [aux_sym__section_repeat5] = STATE(815), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [862] = { - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(816), - [aux_sym__section_repeat6] = STATE(816), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [863] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(5844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5846), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [864] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(5844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5844), - [anon_sym_LBRACK] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(5846), - [anon_sym_COMMA] = ACTIONS(5846), - [anon_sym_EQ] = ACTIONS(5846), - [anon_sym_LPAREN] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHpart] = ACTIONS(5844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddpart] = ACTIONS(5844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5846), - [anon_sym_BSLASHchapter] = ACTIONS(5844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddchap] = ACTIONS(5844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsection] = ACTIONS(5844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHaddsec] = ACTIONS(5844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5846), - [anon_sym_BSLASHparagraph] = ACTIONS(5844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5846), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(5846), - [sym_word] = ACTIONS(5844), - [sym_placeholder] = ACTIONS(5846), - [anon_sym_PLUS] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_STAR] = ACTIONS(5846), - [anon_sym_SLASH] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_BANG] = ACTIONS(5844), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_SQUOTE] = ACTIONS(5844), - [anon_sym__] = ACTIONS(5846), - [anon_sym_CARET] = ACTIONS(5846), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5846), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5846), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5846), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5846), - [anon_sym_BSLASHbegin] = ACTIONS(5844), - [anon_sym_BSLASHtitle] = ACTIONS(5844), - [anon_sym_BSLASHauthor] = ACTIONS(5844), - [anon_sym_BSLASHusepackage] = ACTIONS(5844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5844), - [anon_sym_BSLASHinclude] = ACTIONS(5844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5844), - [anon_sym_BSLASHinput] = ACTIONS(5844), - [anon_sym_BSLASHsubfile] = ACTIONS(5844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5844), - [anon_sym_BSLASHbibliography] = ACTIONS(5844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5844), - [anon_sym_BSLASHincludesvg] = ACTIONS(5844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5844), - [anon_sym_BSLASHimport] = ACTIONS(5844), - [anon_sym_BSLASHsubimport] = ACTIONS(5844), - [anon_sym_BSLASHinputfrom] = ACTIONS(5844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5844), - [anon_sym_BSLASHincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5844), - [anon_sym_BSLASHcaption] = ACTIONS(5844), - [anon_sym_BSLASHcite] = ACTIONS(5844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCite] = ACTIONS(5844), - [anon_sym_BSLASHnocite] = ACTIONS(5844), - [anon_sym_BSLASHcitet] = ACTIONS(5844), - [anon_sym_BSLASHcitep] = ACTIONS(5844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteauthor] = ACTIONS(5844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitetitle] = ACTIONS(5844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteyear] = ACTIONS(5844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5846), - [anon_sym_BSLASHcitedate] = ACTIONS(5844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5846), - [anon_sym_BSLASHciteurl] = ACTIONS(5844), - [anon_sym_BSLASHfullcite] = ACTIONS(5844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5844), - [anon_sym_BSLASHcitealt] = ACTIONS(5844), - [anon_sym_BSLASHcitealp] = ACTIONS(5844), - [anon_sym_BSLASHcitetext] = ACTIONS(5844), - [anon_sym_BSLASHparencite] = ACTIONS(5844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHParencite] = ACTIONS(5844), - [anon_sym_BSLASHfootcite] = ACTIONS(5844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5844), - [anon_sym_BSLASHtextcite] = ACTIONS(5844), - [anon_sym_BSLASHTextcite] = ACTIONS(5844), - [anon_sym_BSLASHsmartcite] = ACTIONS(5844), - [anon_sym_BSLASHSmartcite] = ACTIONS(5844), - [anon_sym_BSLASHsupercite] = ACTIONS(5844), - [anon_sym_BSLASHautocite] = ACTIONS(5844), - [anon_sym_BSLASHAutocite] = ACTIONS(5844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5846), - [anon_sym_BSLASHvolcite] = ACTIONS(5844), - [anon_sym_BSLASHVolcite] = ACTIONS(5844), - [anon_sym_BSLASHpvolcite] = ACTIONS(5844), - [anon_sym_BSLASHPvolcite] = ACTIONS(5844), - [anon_sym_BSLASHfvolcite] = ACTIONS(5844), - [anon_sym_BSLASHftvolcite] = ACTIONS(5844), - [anon_sym_BSLASHsvolcite] = ACTIONS(5844), - [anon_sym_BSLASHSvolcite] = ACTIONS(5844), - [anon_sym_BSLASHtvolcite] = ACTIONS(5844), - [anon_sym_BSLASHTvolcite] = ACTIONS(5844), - [anon_sym_BSLASHavolcite] = ACTIONS(5844), - [anon_sym_BSLASHAvolcite] = ACTIONS(5844), - [anon_sym_BSLASHnotecite] = ACTIONS(5844), - [anon_sym_BSLASHNotecite] = ACTIONS(5844), - [anon_sym_BSLASHpnotecite] = ACTIONS(5844), - [anon_sym_BSLASHPnotecite] = ACTIONS(5844), - [anon_sym_BSLASHfnotecite] = ACTIONS(5844), - [anon_sym_BSLASHlabel] = ACTIONS(5844), - [anon_sym_BSLASHref] = ACTIONS(5844), - [anon_sym_BSLASHeqref] = ACTIONS(5844), - [anon_sym_BSLASHvref] = ACTIONS(5844), - [anon_sym_BSLASHVref] = ACTIONS(5844), - [anon_sym_BSLASHautoref] = ACTIONS(5844), - [anon_sym_BSLASHpageref] = ACTIONS(5844), - [anon_sym_BSLASHcref] = ACTIONS(5844), - [anon_sym_BSLASHCref] = ACTIONS(5844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnameCref] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5844), - [anon_sym_BSLASHlabelcref] = ACTIONS(5844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange] = ACTIONS(5844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHCrefrange] = ACTIONS(5844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5846), - [anon_sym_BSLASHnewlabel] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand] = ACTIONS(5844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5846), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5846), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5844), - [anon_sym_BSLASHdef] = ACTIONS(5844), - [anon_sym_BSLASHlet] = ACTIONS(5844), - [anon_sym_BSLASHleft] = ACTIONS(5844), - [anon_sym_BSLASHbig] = ACTIONS(5844), - [anon_sym_BSLASHBig] = ACTIONS(5844), - [anon_sym_BSLASHbigg] = ACTIONS(5844), - [anon_sym_BSLASHBigg] = ACTIONS(5844), - [anon_sym_BSLASHbigl] = ACTIONS(5844), - [anon_sym_BSLASHBigl] = ACTIONS(5844), - [anon_sym_BSLASHbiggl] = ACTIONS(5844), - [anon_sym_BSLASHBiggl] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5844), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5844), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5844), - [anon_sym_BSLASHgls] = ACTIONS(5844), - [anon_sym_BSLASHGls] = ACTIONS(5844), - [anon_sym_BSLASHGLS] = ACTIONS(5844), - [anon_sym_BSLASHglspl] = ACTIONS(5844), - [anon_sym_BSLASHGlspl] = ACTIONS(5844), - [anon_sym_BSLASHGLSpl] = ACTIONS(5844), - [anon_sym_BSLASHglsdisp] = ACTIONS(5844), - [anon_sym_BSLASHglslink] = ACTIONS(5844), - [anon_sym_BSLASHglstext] = ACTIONS(5844), - [anon_sym_BSLASHGlstext] = ACTIONS(5844), - [anon_sym_BSLASHGLStext] = ACTIONS(5844), - [anon_sym_BSLASHglsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5844), - [anon_sym_BSLASHglsplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSplural] = ACTIONS(5844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5844), - [anon_sym_BSLASHglsname] = ACTIONS(5844), - [anon_sym_BSLASHGlsname] = ACTIONS(5844), - [anon_sym_BSLASHGLSname] = ACTIONS(5844), - [anon_sym_BSLASHglssymbol] = ACTIONS(5844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5844), - [anon_sym_BSLASHglsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5844), - [anon_sym_BSLASHglsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5844), - [anon_sym_BSLASHglsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5844), - [anon_sym_BSLASHglsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5844), - [anon_sym_BSLASHglsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5844), - [anon_sym_BSLASHnewacronym] = ACTIONS(5844), - [anon_sym_BSLASHacrshort] = ACTIONS(5844), - [anon_sym_BSLASHAcrshort] = ACTIONS(5844), - [anon_sym_BSLASHACRshort] = ACTIONS(5844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5844), - [anon_sym_BSLASHacrlong] = ACTIONS(5844), - [anon_sym_BSLASHAcrlong] = ACTIONS(5844), - [anon_sym_BSLASHACRlong] = ACTIONS(5844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5844), - [anon_sym_BSLASHacrfull] = ACTIONS(5844), - [anon_sym_BSLASHAcrfull] = ACTIONS(5844), - [anon_sym_BSLASHACRfull] = ACTIONS(5844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5844), - [anon_sym_BSLASHacs] = ACTIONS(5844), - [anon_sym_BSLASHAcs] = ACTIONS(5844), - [anon_sym_BSLASHacsp] = ACTIONS(5844), - [anon_sym_BSLASHAcsp] = ACTIONS(5844), - [anon_sym_BSLASHacl] = ACTIONS(5844), - [anon_sym_BSLASHAcl] = ACTIONS(5844), - [anon_sym_BSLASHaclp] = ACTIONS(5844), - [anon_sym_BSLASHAclp] = ACTIONS(5844), - [anon_sym_BSLASHacf] = ACTIONS(5844), - [anon_sym_BSLASHAcf] = ACTIONS(5844), - [anon_sym_BSLASHacfp] = ACTIONS(5844), - [anon_sym_BSLASHAcfp] = ACTIONS(5844), - [anon_sym_BSLASHac] = ACTIONS(5844), - [anon_sym_BSLASHAc] = ACTIONS(5844), - [anon_sym_BSLASHacp] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5844), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5844), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5844), - [anon_sym_BSLASHcolor] = ACTIONS(5844), - [anon_sym_BSLASHcolorbox] = ACTIONS(5844), - [anon_sym_BSLASHtextcolor] = ACTIONS(5844), - [anon_sym_BSLASHpagecolor] = ACTIONS(5844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5844), - [anon_sym_BSLASHtext] = ACTIONS(5844), - [anon_sym_BSLASHintertext] = ACTIONS(5844), - [anon_sym_shortintertext] = ACTIONS(5844), - }, - [865] = { - [sym__subsection_declaration] = STATE(214), - [sym_subsection] = STATE(814), - [aux_sym__section_repeat4] = STATE(814), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(668), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(670), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [866] = { - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(815), - [aux_sym__section_repeat5] = STATE(815), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [867] = { - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(816), - [aux_sym__section_repeat6] = STATE(816), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [868] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(5860), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5862), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [869] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(5860), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5860), - [anon_sym_LBRACK] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(5862), - [anon_sym_COMMA] = ACTIONS(5862), - [anon_sym_EQ] = ACTIONS(5862), - [anon_sym_LPAREN] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHpart] = ACTIONS(5860), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddpart] = ACTIONS(5860), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5862), - [anon_sym_BSLASHchapter] = ACTIONS(5860), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddchap] = ACTIONS(5860), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsection] = ACTIONS(5860), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHaddsec] = ACTIONS(5860), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5860), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5862), - [anon_sym_BSLASHparagraph] = ACTIONS(5860), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5860), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5862), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(5862), - [sym_word] = ACTIONS(5860), - [sym_placeholder] = ACTIONS(5862), - [anon_sym_PLUS] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5860), - [anon_sym_GT] = ACTIONS(5860), - [anon_sym_BANG] = ACTIONS(5860), - [anon_sym_PIPE] = ACTIONS(5860), - [anon_sym_COLON] = ACTIONS(5860), - [anon_sym_SQUOTE] = ACTIONS(5860), - [anon_sym__] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5862), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5862), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5862), - [anon_sym_DOLLAR] = ACTIONS(5860), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5862), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5862), - [anon_sym_BSLASHbegin] = ACTIONS(5860), - [anon_sym_BSLASHtitle] = ACTIONS(5860), - [anon_sym_BSLASHauthor] = ACTIONS(5860), - [anon_sym_BSLASHusepackage] = ACTIONS(5860), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5860), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5860), - [anon_sym_BSLASHinclude] = ACTIONS(5860), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5860), - [anon_sym_BSLASHinput] = ACTIONS(5860), - [anon_sym_BSLASHsubfile] = ACTIONS(5860), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5860), - [anon_sym_BSLASHbibliography] = ACTIONS(5860), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5860), - [anon_sym_BSLASHincludesvg] = ACTIONS(5860), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5860), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5860), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5860), - [anon_sym_BSLASHimport] = ACTIONS(5860), - [anon_sym_BSLASHsubimport] = ACTIONS(5860), - [anon_sym_BSLASHinputfrom] = ACTIONS(5860), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5860), - [anon_sym_BSLASHincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5860), - [anon_sym_BSLASHcaption] = ACTIONS(5860), - [anon_sym_BSLASHcite] = ACTIONS(5860), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCite] = ACTIONS(5860), - [anon_sym_BSLASHnocite] = ACTIONS(5860), - [anon_sym_BSLASHcitet] = ACTIONS(5860), - [anon_sym_BSLASHcitep] = ACTIONS(5860), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteauthor] = ACTIONS(5860), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5860), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitetitle] = ACTIONS(5860), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteyear] = ACTIONS(5860), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5862), - [anon_sym_BSLASHcitedate] = ACTIONS(5860), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5862), - [anon_sym_BSLASHciteurl] = ACTIONS(5860), - [anon_sym_BSLASHfullcite] = ACTIONS(5860), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5860), - [anon_sym_BSLASHcitealt] = ACTIONS(5860), - [anon_sym_BSLASHcitealp] = ACTIONS(5860), - [anon_sym_BSLASHcitetext] = ACTIONS(5860), - [anon_sym_BSLASHparencite] = ACTIONS(5860), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHParencite] = ACTIONS(5860), - [anon_sym_BSLASHfootcite] = ACTIONS(5860), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5860), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5860), - [anon_sym_BSLASHtextcite] = ACTIONS(5860), - [anon_sym_BSLASHTextcite] = ACTIONS(5860), - [anon_sym_BSLASHsmartcite] = ACTIONS(5860), - [anon_sym_BSLASHSmartcite] = ACTIONS(5860), - [anon_sym_BSLASHsupercite] = ACTIONS(5860), - [anon_sym_BSLASHautocite] = ACTIONS(5860), - [anon_sym_BSLASHAutocite] = ACTIONS(5860), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5862), - [anon_sym_BSLASHvolcite] = ACTIONS(5860), - [anon_sym_BSLASHVolcite] = ACTIONS(5860), - [anon_sym_BSLASHpvolcite] = ACTIONS(5860), - [anon_sym_BSLASHPvolcite] = ACTIONS(5860), - [anon_sym_BSLASHfvolcite] = ACTIONS(5860), - [anon_sym_BSLASHftvolcite] = ACTIONS(5860), - [anon_sym_BSLASHsvolcite] = ACTIONS(5860), - [anon_sym_BSLASHSvolcite] = ACTIONS(5860), - [anon_sym_BSLASHtvolcite] = ACTIONS(5860), - [anon_sym_BSLASHTvolcite] = ACTIONS(5860), - [anon_sym_BSLASHavolcite] = ACTIONS(5860), - [anon_sym_BSLASHAvolcite] = ACTIONS(5860), - [anon_sym_BSLASHnotecite] = ACTIONS(5860), - [anon_sym_BSLASHNotecite] = ACTIONS(5860), - [anon_sym_BSLASHpnotecite] = ACTIONS(5860), - [anon_sym_BSLASHPnotecite] = ACTIONS(5860), - [anon_sym_BSLASHfnotecite] = ACTIONS(5860), - [anon_sym_BSLASHlabel] = ACTIONS(5860), - [anon_sym_BSLASHref] = ACTIONS(5860), - [anon_sym_BSLASHeqref] = ACTIONS(5860), - [anon_sym_BSLASHvref] = ACTIONS(5860), - [anon_sym_BSLASHVref] = ACTIONS(5860), - [anon_sym_BSLASHautoref] = ACTIONS(5860), - [anon_sym_BSLASHpageref] = ACTIONS(5860), - [anon_sym_BSLASHcref] = ACTIONS(5860), - [anon_sym_BSLASHCref] = ACTIONS(5860), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnameCref] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5860), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5860), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5860), - [anon_sym_BSLASHlabelcref] = ACTIONS(5860), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange] = ACTIONS(5860), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHCrefrange] = ACTIONS(5860), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5862), - [anon_sym_BSLASHnewlabel] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand] = ACTIONS(5860), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5860), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5862), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5860), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5862), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5860), - [anon_sym_BSLASHdef] = ACTIONS(5860), - [anon_sym_BSLASHlet] = ACTIONS(5860), - [anon_sym_BSLASHleft] = ACTIONS(5860), - [anon_sym_BSLASHbig] = ACTIONS(5860), - [anon_sym_BSLASHBig] = ACTIONS(5860), - [anon_sym_BSLASHbigg] = ACTIONS(5860), - [anon_sym_BSLASHBigg] = ACTIONS(5860), - [anon_sym_BSLASHbigl] = ACTIONS(5860), - [anon_sym_BSLASHBigl] = ACTIONS(5860), - [anon_sym_BSLASHbiggl] = ACTIONS(5860), - [anon_sym_BSLASHBiggl] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5860), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5860), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5860), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), - [anon_sym_BSLASHgls] = ACTIONS(5860), - [anon_sym_BSLASHGls] = ACTIONS(5860), - [anon_sym_BSLASHGLS] = ACTIONS(5860), - [anon_sym_BSLASHglspl] = ACTIONS(5860), - [anon_sym_BSLASHGlspl] = ACTIONS(5860), - [anon_sym_BSLASHGLSpl] = ACTIONS(5860), - [anon_sym_BSLASHglsdisp] = ACTIONS(5860), - [anon_sym_BSLASHglslink] = ACTIONS(5860), - [anon_sym_BSLASHglstext] = ACTIONS(5860), - [anon_sym_BSLASHGlstext] = ACTIONS(5860), - [anon_sym_BSLASHGLStext] = ACTIONS(5860), - [anon_sym_BSLASHglsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5860), - [anon_sym_BSLASHglsplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSplural] = ACTIONS(5860), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5860), - [anon_sym_BSLASHglsname] = ACTIONS(5860), - [anon_sym_BSLASHGlsname] = ACTIONS(5860), - [anon_sym_BSLASHGLSname] = ACTIONS(5860), - [anon_sym_BSLASHglssymbol] = ACTIONS(5860), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5860), - [anon_sym_BSLASHglsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5860), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5860), - [anon_sym_BSLASHglsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5860), - [anon_sym_BSLASHglsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5860), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5860), - [anon_sym_BSLASHglsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5860), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5860), - [anon_sym_BSLASHglsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5860), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5860), - [anon_sym_BSLASHnewacronym] = ACTIONS(5860), - [anon_sym_BSLASHacrshort] = ACTIONS(5860), - [anon_sym_BSLASHAcrshort] = ACTIONS(5860), - [anon_sym_BSLASHACRshort] = ACTIONS(5860), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5860), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5860), - [anon_sym_BSLASHacrlong] = ACTIONS(5860), - [anon_sym_BSLASHAcrlong] = ACTIONS(5860), - [anon_sym_BSLASHACRlong] = ACTIONS(5860), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5860), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5860), - [anon_sym_BSLASHacrfull] = ACTIONS(5860), - [anon_sym_BSLASHAcrfull] = ACTIONS(5860), - [anon_sym_BSLASHACRfull] = ACTIONS(5860), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5860), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5860), - [anon_sym_BSLASHacs] = ACTIONS(5860), - [anon_sym_BSLASHAcs] = ACTIONS(5860), - [anon_sym_BSLASHacsp] = ACTIONS(5860), - [anon_sym_BSLASHAcsp] = ACTIONS(5860), - [anon_sym_BSLASHacl] = ACTIONS(5860), - [anon_sym_BSLASHAcl] = ACTIONS(5860), - [anon_sym_BSLASHaclp] = ACTIONS(5860), - [anon_sym_BSLASHAclp] = ACTIONS(5860), - [anon_sym_BSLASHacf] = ACTIONS(5860), - [anon_sym_BSLASHAcf] = ACTIONS(5860), - [anon_sym_BSLASHacfp] = ACTIONS(5860), - [anon_sym_BSLASHAcfp] = ACTIONS(5860), - [anon_sym_BSLASHac] = ACTIONS(5860), - [anon_sym_BSLASHAc] = ACTIONS(5860), - [anon_sym_BSLASHacp] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5860), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5860), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5860), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5860), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5860), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5862), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5860), - [anon_sym_BSLASHcolor] = ACTIONS(5860), - [anon_sym_BSLASHcolorbox] = ACTIONS(5860), - [anon_sym_BSLASHtextcolor] = ACTIONS(5860), - [anon_sym_BSLASHpagecolor] = ACTIONS(5860), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5860), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5860), - [anon_sym_BSLASHtext] = ACTIONS(5860), - [anon_sym_BSLASHintertext] = ACTIONS(5860), - [anon_sym_shortintertext] = ACTIONS(5860), - }, - [870] = { - [sym__subsubsection_declaration] = STATE(223), - [sym_subsubsection] = STATE(815), - [aux_sym__section_repeat5] = STATE(815), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(672), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(674), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [871] = { - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(816), - [aux_sym__section_repeat6] = STATE(816), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [872] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5870), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [873] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(5868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5870), - [anon_sym_EQ] = ACTIONS(5870), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHpart] = ACTIONS(5868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddpart] = ACTIONS(5868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5870), - [anon_sym_BSLASHchapter] = ACTIONS(5868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddchap] = ACTIONS(5868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsection] = ACTIONS(5868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHaddsec] = ACTIONS(5868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5870), - [anon_sym_BSLASHparagraph] = ACTIONS(5868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5870), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(5870), - [sym_word] = ACTIONS(5868), - [sym_placeholder] = ACTIONS(5870), - [anon_sym_PLUS] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), - [anon_sym_STAR] = ACTIONS(5870), - [anon_sym_SLASH] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5868), - [anon_sym_GT] = ACTIONS(5868), - [anon_sym_BANG] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5868), - [anon_sym_COLON] = ACTIONS(5868), - [anon_sym_SQUOTE] = ACTIONS(5868), - [anon_sym__] = ACTIONS(5870), - [anon_sym_CARET] = ACTIONS(5870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5870), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5870), - [anon_sym_DOLLAR] = ACTIONS(5868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5870), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5870), - [anon_sym_BSLASHbegin] = ACTIONS(5868), - [anon_sym_BSLASHtitle] = ACTIONS(5868), - [anon_sym_BSLASHauthor] = ACTIONS(5868), - [anon_sym_BSLASHusepackage] = ACTIONS(5868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5868), - [anon_sym_BSLASHinclude] = ACTIONS(5868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5868), - [anon_sym_BSLASHinput] = ACTIONS(5868), - [anon_sym_BSLASHsubfile] = ACTIONS(5868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5868), - [anon_sym_BSLASHbibliography] = ACTIONS(5868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5868), - [anon_sym_BSLASHincludesvg] = ACTIONS(5868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5868), - [anon_sym_BSLASHimport] = ACTIONS(5868), - [anon_sym_BSLASHsubimport] = ACTIONS(5868), - [anon_sym_BSLASHinputfrom] = ACTIONS(5868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5868), - [anon_sym_BSLASHincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5868), - [anon_sym_BSLASHcaption] = ACTIONS(5868), - [anon_sym_BSLASHcite] = ACTIONS(5868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCite] = ACTIONS(5868), - [anon_sym_BSLASHnocite] = ACTIONS(5868), - [anon_sym_BSLASHcitet] = ACTIONS(5868), - [anon_sym_BSLASHcitep] = ACTIONS(5868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteauthor] = ACTIONS(5868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitetitle] = ACTIONS(5868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteyear] = ACTIONS(5868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5870), - [anon_sym_BSLASHcitedate] = ACTIONS(5868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5870), - [anon_sym_BSLASHciteurl] = ACTIONS(5868), - [anon_sym_BSLASHfullcite] = ACTIONS(5868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5868), - [anon_sym_BSLASHcitealt] = ACTIONS(5868), - [anon_sym_BSLASHcitealp] = ACTIONS(5868), - [anon_sym_BSLASHcitetext] = ACTIONS(5868), - [anon_sym_BSLASHparencite] = ACTIONS(5868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHParencite] = ACTIONS(5868), - [anon_sym_BSLASHfootcite] = ACTIONS(5868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5868), - [anon_sym_BSLASHtextcite] = ACTIONS(5868), - [anon_sym_BSLASHTextcite] = ACTIONS(5868), - [anon_sym_BSLASHsmartcite] = ACTIONS(5868), - [anon_sym_BSLASHSmartcite] = ACTIONS(5868), - [anon_sym_BSLASHsupercite] = ACTIONS(5868), - [anon_sym_BSLASHautocite] = ACTIONS(5868), - [anon_sym_BSLASHAutocite] = ACTIONS(5868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5870), - [anon_sym_BSLASHvolcite] = ACTIONS(5868), - [anon_sym_BSLASHVolcite] = ACTIONS(5868), - [anon_sym_BSLASHpvolcite] = ACTIONS(5868), - [anon_sym_BSLASHPvolcite] = ACTIONS(5868), - [anon_sym_BSLASHfvolcite] = ACTIONS(5868), - [anon_sym_BSLASHftvolcite] = ACTIONS(5868), - [anon_sym_BSLASHsvolcite] = ACTIONS(5868), - [anon_sym_BSLASHSvolcite] = ACTIONS(5868), - [anon_sym_BSLASHtvolcite] = ACTIONS(5868), - [anon_sym_BSLASHTvolcite] = ACTIONS(5868), - [anon_sym_BSLASHavolcite] = ACTIONS(5868), - [anon_sym_BSLASHAvolcite] = ACTIONS(5868), - [anon_sym_BSLASHnotecite] = ACTIONS(5868), - [anon_sym_BSLASHNotecite] = ACTIONS(5868), - [anon_sym_BSLASHpnotecite] = ACTIONS(5868), - [anon_sym_BSLASHPnotecite] = ACTIONS(5868), - [anon_sym_BSLASHfnotecite] = ACTIONS(5868), - [anon_sym_BSLASHlabel] = ACTIONS(5868), - [anon_sym_BSLASHref] = ACTIONS(5868), - [anon_sym_BSLASHeqref] = ACTIONS(5868), - [anon_sym_BSLASHvref] = ACTIONS(5868), - [anon_sym_BSLASHVref] = ACTIONS(5868), - [anon_sym_BSLASHautoref] = ACTIONS(5868), - [anon_sym_BSLASHpageref] = ACTIONS(5868), - [anon_sym_BSLASHcref] = ACTIONS(5868), - [anon_sym_BSLASHCref] = ACTIONS(5868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnameCref] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5868), - [anon_sym_BSLASHlabelcref] = ACTIONS(5868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange] = ACTIONS(5868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHCrefrange] = ACTIONS(5868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5870), - [anon_sym_BSLASHnewlabel] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand] = ACTIONS(5868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5870), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5870), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5868), - [anon_sym_BSLASHdef] = ACTIONS(5868), - [anon_sym_BSLASHlet] = ACTIONS(5868), - [anon_sym_BSLASHleft] = ACTIONS(5868), - [anon_sym_BSLASHbig] = ACTIONS(5868), - [anon_sym_BSLASHBig] = ACTIONS(5868), - [anon_sym_BSLASHbigg] = ACTIONS(5868), - [anon_sym_BSLASHBigg] = ACTIONS(5868), - [anon_sym_BSLASHbigl] = ACTIONS(5868), - [anon_sym_BSLASHBigl] = ACTIONS(5868), - [anon_sym_BSLASHbiggl] = ACTIONS(5868), - [anon_sym_BSLASHBiggl] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5868), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5868), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5868), - [anon_sym_BSLASHgls] = ACTIONS(5868), - [anon_sym_BSLASHGls] = ACTIONS(5868), - [anon_sym_BSLASHGLS] = ACTIONS(5868), - [anon_sym_BSLASHglspl] = ACTIONS(5868), - [anon_sym_BSLASHGlspl] = ACTIONS(5868), - [anon_sym_BSLASHGLSpl] = ACTIONS(5868), - [anon_sym_BSLASHglsdisp] = ACTIONS(5868), - [anon_sym_BSLASHglslink] = ACTIONS(5868), - [anon_sym_BSLASHglstext] = ACTIONS(5868), - [anon_sym_BSLASHGlstext] = ACTIONS(5868), - [anon_sym_BSLASHGLStext] = ACTIONS(5868), - [anon_sym_BSLASHglsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5868), - [anon_sym_BSLASHglsplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSplural] = ACTIONS(5868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5868), - [anon_sym_BSLASHglsname] = ACTIONS(5868), - [anon_sym_BSLASHGlsname] = ACTIONS(5868), - [anon_sym_BSLASHGLSname] = ACTIONS(5868), - [anon_sym_BSLASHglssymbol] = ACTIONS(5868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5868), - [anon_sym_BSLASHglsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5868), - [anon_sym_BSLASHglsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5868), - [anon_sym_BSLASHglsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5868), - [anon_sym_BSLASHglsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5868), - [anon_sym_BSLASHglsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5868), - [anon_sym_BSLASHnewacronym] = ACTIONS(5868), - [anon_sym_BSLASHacrshort] = ACTIONS(5868), - [anon_sym_BSLASHAcrshort] = ACTIONS(5868), - [anon_sym_BSLASHACRshort] = ACTIONS(5868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5868), - [anon_sym_BSLASHacrlong] = ACTIONS(5868), - [anon_sym_BSLASHAcrlong] = ACTIONS(5868), - [anon_sym_BSLASHACRlong] = ACTIONS(5868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5868), - [anon_sym_BSLASHacrfull] = ACTIONS(5868), - [anon_sym_BSLASHAcrfull] = ACTIONS(5868), - [anon_sym_BSLASHACRfull] = ACTIONS(5868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5868), - [anon_sym_BSLASHacs] = ACTIONS(5868), - [anon_sym_BSLASHAcs] = ACTIONS(5868), - [anon_sym_BSLASHacsp] = ACTIONS(5868), - [anon_sym_BSLASHAcsp] = ACTIONS(5868), - [anon_sym_BSLASHacl] = ACTIONS(5868), - [anon_sym_BSLASHAcl] = ACTIONS(5868), - [anon_sym_BSLASHaclp] = ACTIONS(5868), - [anon_sym_BSLASHAclp] = ACTIONS(5868), - [anon_sym_BSLASHacf] = ACTIONS(5868), - [anon_sym_BSLASHAcf] = ACTIONS(5868), - [anon_sym_BSLASHacfp] = ACTIONS(5868), - [anon_sym_BSLASHAcfp] = ACTIONS(5868), - [anon_sym_BSLASHac] = ACTIONS(5868), - [anon_sym_BSLASHAc] = ACTIONS(5868), - [anon_sym_BSLASHacp] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5868), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5868), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5870), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5868), - [anon_sym_BSLASHcolor] = ACTIONS(5868), - [anon_sym_BSLASHcolorbox] = ACTIONS(5868), - [anon_sym_BSLASHtextcolor] = ACTIONS(5868), - [anon_sym_BSLASHpagecolor] = ACTIONS(5868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5868), - [anon_sym_BSLASHtext] = ACTIONS(5868), - [anon_sym_BSLASHintertext] = ACTIONS(5868), - [anon_sym_shortintertext] = ACTIONS(5868), - }, - [874] = { - [sym__paragraph_declaration] = STATE(234), - [sym_paragraph] = STATE(816), - [aux_sym__section_repeat6] = STATE(816), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(676), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(678), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5960), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHitem] = ACTIONS(5960), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5962), - [anon_sym_LBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [875] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(5960), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(5960), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5962), - [anon_sym_LBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [876] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(5960), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5962), - [anon_sym_RBRACK] = ACTIONS(5962), - [anon_sym_COMMA] = ACTIONS(5962), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_LPAREN] = ACTIONS(5962), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHpart] = ACTIONS(5960), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddpart] = ACTIONS(5960), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5962), - [anon_sym_BSLASHchapter] = ACTIONS(5960), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddchap] = ACTIONS(5960), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsection] = ACTIONS(5960), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHaddsec] = ACTIONS(5960), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5960), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5962), - [anon_sym_BSLASHparagraph] = ACTIONS(5960), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5960), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5962), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(5962), - [sym_word] = ACTIONS(5960), - [sym_placeholder] = ACTIONS(5962), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5962), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_LT] = ACTIONS(5960), - [anon_sym_GT] = ACTIONS(5960), - [anon_sym_BANG] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_SQUOTE] = ACTIONS(5960), - [anon_sym__] = ACTIONS(5962), - [anon_sym_CARET] = ACTIONS(5962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5962), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5962), - [anon_sym_DOLLAR] = ACTIONS(5960), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5962), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5962), - [anon_sym_BSLASHbegin] = ACTIONS(5960), - [anon_sym_BSLASHtitle] = ACTIONS(5960), - [anon_sym_BSLASHauthor] = ACTIONS(5960), - [anon_sym_BSLASHusepackage] = ACTIONS(5960), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5960), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5960), - [anon_sym_BSLASHinclude] = ACTIONS(5960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5960), - [anon_sym_BSLASHinput] = ACTIONS(5960), - [anon_sym_BSLASHsubfile] = ACTIONS(5960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5960), - [anon_sym_BSLASHbibliography] = ACTIONS(5960), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5960), - [anon_sym_BSLASHincludesvg] = ACTIONS(5960), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5960), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5960), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5960), - [anon_sym_BSLASHimport] = ACTIONS(5960), - [anon_sym_BSLASHsubimport] = ACTIONS(5960), - [anon_sym_BSLASHinputfrom] = ACTIONS(5960), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5960), - [anon_sym_BSLASHincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5960), - [anon_sym_BSLASHcaption] = ACTIONS(5960), - [anon_sym_BSLASHcite] = ACTIONS(5960), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCite] = ACTIONS(5960), - [anon_sym_BSLASHnocite] = ACTIONS(5960), - [anon_sym_BSLASHcitet] = ACTIONS(5960), - [anon_sym_BSLASHcitep] = ACTIONS(5960), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteauthor] = ACTIONS(5960), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5960), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitetitle] = ACTIONS(5960), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteyear] = ACTIONS(5960), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5962), - [anon_sym_BSLASHcitedate] = ACTIONS(5960), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5962), - [anon_sym_BSLASHciteurl] = ACTIONS(5960), - [anon_sym_BSLASHfullcite] = ACTIONS(5960), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5960), - [anon_sym_BSLASHcitealt] = ACTIONS(5960), - [anon_sym_BSLASHcitealp] = ACTIONS(5960), - [anon_sym_BSLASHcitetext] = ACTIONS(5960), - [anon_sym_BSLASHparencite] = ACTIONS(5960), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHParencite] = ACTIONS(5960), - [anon_sym_BSLASHfootcite] = ACTIONS(5960), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5960), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5960), - [anon_sym_BSLASHtextcite] = ACTIONS(5960), - [anon_sym_BSLASHTextcite] = ACTIONS(5960), - [anon_sym_BSLASHsmartcite] = ACTIONS(5960), - [anon_sym_BSLASHSmartcite] = ACTIONS(5960), - [anon_sym_BSLASHsupercite] = ACTIONS(5960), - [anon_sym_BSLASHautocite] = ACTIONS(5960), - [anon_sym_BSLASHAutocite] = ACTIONS(5960), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5962), - [anon_sym_BSLASHvolcite] = ACTIONS(5960), - [anon_sym_BSLASHVolcite] = ACTIONS(5960), - [anon_sym_BSLASHpvolcite] = ACTIONS(5960), - [anon_sym_BSLASHPvolcite] = ACTIONS(5960), - [anon_sym_BSLASHfvolcite] = ACTIONS(5960), - [anon_sym_BSLASHftvolcite] = ACTIONS(5960), - [anon_sym_BSLASHsvolcite] = ACTIONS(5960), - [anon_sym_BSLASHSvolcite] = ACTIONS(5960), - [anon_sym_BSLASHtvolcite] = ACTIONS(5960), - [anon_sym_BSLASHTvolcite] = ACTIONS(5960), - [anon_sym_BSLASHavolcite] = ACTIONS(5960), - [anon_sym_BSLASHAvolcite] = ACTIONS(5960), - [anon_sym_BSLASHnotecite] = ACTIONS(5960), - [anon_sym_BSLASHNotecite] = ACTIONS(5960), - [anon_sym_BSLASHpnotecite] = ACTIONS(5960), - [anon_sym_BSLASHPnotecite] = ACTIONS(5960), - [anon_sym_BSLASHfnotecite] = ACTIONS(5960), - [anon_sym_BSLASHlabel] = ACTIONS(5960), - [anon_sym_BSLASHref] = ACTIONS(5960), - [anon_sym_BSLASHeqref] = ACTIONS(5960), - [anon_sym_BSLASHvref] = ACTIONS(5960), - [anon_sym_BSLASHVref] = ACTIONS(5960), - [anon_sym_BSLASHautoref] = ACTIONS(5960), - [anon_sym_BSLASHpageref] = ACTIONS(5960), - [anon_sym_BSLASHcref] = ACTIONS(5960), - [anon_sym_BSLASHCref] = ACTIONS(5960), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnameCref] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5960), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5960), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5960), - [anon_sym_BSLASHlabelcref] = ACTIONS(5960), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange] = ACTIONS(5960), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHCrefrange] = ACTIONS(5960), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5962), - [anon_sym_BSLASHnewlabel] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand] = ACTIONS(5960), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5960), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5962), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5960), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5962), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5960), - [anon_sym_BSLASHdef] = ACTIONS(5960), - [anon_sym_BSLASHlet] = ACTIONS(5960), - [anon_sym_BSLASHleft] = ACTIONS(5960), - [anon_sym_BSLASHbig] = ACTIONS(5960), - [anon_sym_BSLASHBig] = ACTIONS(5960), - [anon_sym_BSLASHbigg] = ACTIONS(5960), - [anon_sym_BSLASHBigg] = ACTIONS(5960), - [anon_sym_BSLASHbigl] = ACTIONS(5960), - [anon_sym_BSLASHBigl] = ACTIONS(5960), - [anon_sym_BSLASHbiggl] = ACTIONS(5960), - [anon_sym_BSLASHBiggl] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5960), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5960), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5960), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5960), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5960), - [anon_sym_BSLASHgls] = ACTIONS(5960), - [anon_sym_BSLASHGls] = ACTIONS(5960), - [anon_sym_BSLASHGLS] = ACTIONS(5960), - [anon_sym_BSLASHglspl] = ACTIONS(5960), - [anon_sym_BSLASHGlspl] = ACTIONS(5960), - [anon_sym_BSLASHGLSpl] = ACTIONS(5960), - [anon_sym_BSLASHglsdisp] = ACTIONS(5960), - [anon_sym_BSLASHglslink] = ACTIONS(5960), - [anon_sym_BSLASHglstext] = ACTIONS(5960), - [anon_sym_BSLASHGlstext] = ACTIONS(5960), - [anon_sym_BSLASHGLStext] = ACTIONS(5960), - [anon_sym_BSLASHglsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5960), - [anon_sym_BSLASHglsplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSplural] = ACTIONS(5960), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5960), - [anon_sym_BSLASHglsname] = ACTIONS(5960), - [anon_sym_BSLASHGlsname] = ACTIONS(5960), - [anon_sym_BSLASHGLSname] = ACTIONS(5960), - [anon_sym_BSLASHglssymbol] = ACTIONS(5960), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5960), - [anon_sym_BSLASHglsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5960), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5960), - [anon_sym_BSLASHglsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5960), - [anon_sym_BSLASHglsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5960), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5960), - [anon_sym_BSLASHglsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5960), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5960), - [anon_sym_BSLASHglsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5960), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5960), - [anon_sym_BSLASHnewacronym] = ACTIONS(5960), - [anon_sym_BSLASHacrshort] = ACTIONS(5960), - [anon_sym_BSLASHAcrshort] = ACTIONS(5960), - [anon_sym_BSLASHACRshort] = ACTIONS(5960), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5960), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5960), - [anon_sym_BSLASHacrlong] = ACTIONS(5960), - [anon_sym_BSLASHAcrlong] = ACTIONS(5960), - [anon_sym_BSLASHACRlong] = ACTIONS(5960), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5960), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5960), - [anon_sym_BSLASHacrfull] = ACTIONS(5960), - [anon_sym_BSLASHAcrfull] = ACTIONS(5960), - [anon_sym_BSLASHACRfull] = ACTIONS(5960), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5960), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5960), - [anon_sym_BSLASHacs] = ACTIONS(5960), - [anon_sym_BSLASHAcs] = ACTIONS(5960), - [anon_sym_BSLASHacsp] = ACTIONS(5960), - [anon_sym_BSLASHAcsp] = ACTIONS(5960), - [anon_sym_BSLASHacl] = ACTIONS(5960), - [anon_sym_BSLASHAcl] = ACTIONS(5960), - [anon_sym_BSLASHaclp] = ACTIONS(5960), - [anon_sym_BSLASHAclp] = ACTIONS(5960), - [anon_sym_BSLASHacf] = ACTIONS(5960), - [anon_sym_BSLASHAcf] = ACTIONS(5960), - [anon_sym_BSLASHacfp] = ACTIONS(5960), - [anon_sym_BSLASHAcfp] = ACTIONS(5960), - [anon_sym_BSLASHac] = ACTIONS(5960), - [anon_sym_BSLASHAc] = ACTIONS(5960), - [anon_sym_BSLASHacp] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5960), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5960), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5960), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5960), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5960), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5962), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5960), - [anon_sym_BSLASHcolor] = ACTIONS(5960), - [anon_sym_BSLASHcolorbox] = ACTIONS(5960), - [anon_sym_BSLASHtextcolor] = ACTIONS(5960), - [anon_sym_BSLASHpagecolor] = ACTIONS(5960), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5960), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5960), - [anon_sym_BSLASHtext] = ACTIONS(5960), - [anon_sym_BSLASHintertext] = ACTIONS(5960), - [anon_sym_shortintertext] = ACTIONS(5960), - }, - [877] = { - [sym__subparagraph_declaration] = STATE(241), - [sym_subparagraph] = STATE(817), - [aux_sym__section_repeat7] = STATE(817), - [sym_command_name] = ACTIONS(5956), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_EQ] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_BSLASHpart] = ACTIONS(5956), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddpart] = ACTIONS(5956), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHchapter] = ACTIONS(5956), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddchap] = ACTIONS(5956), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsection] = ACTIONS(5956), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddsec] = ACTIONS(5956), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHparagraph] = ACTIONS(5956), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubparagraph] = ACTIONS(680), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(682), - [anon_sym_BSLASHitem] = ACTIONS(5956), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5958), - [anon_sym_LBRACE] = ACTIONS(5958), - [sym_word] = ACTIONS(5956), - [sym_placeholder] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5956), - [anon_sym_GT] = ACTIONS(5956), - [anon_sym_BANG] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_SQUOTE] = ACTIONS(5956), - [anon_sym__] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5958), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5958), - [anon_sym_DOLLAR] = ACTIONS(5956), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5958), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5958), - [anon_sym_BSLASHbegin] = ACTIONS(5956), - [anon_sym_BSLASHtitle] = ACTIONS(5956), - [anon_sym_BSLASHauthor] = ACTIONS(5956), - [anon_sym_BSLASHusepackage] = ACTIONS(5956), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5956), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5956), - [anon_sym_BSLASHinclude] = ACTIONS(5956), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5956), - [anon_sym_BSLASHinput] = ACTIONS(5956), - [anon_sym_BSLASHsubfile] = ACTIONS(5956), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5956), - [anon_sym_BSLASHbibliography] = ACTIONS(5956), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5956), - [anon_sym_BSLASHincludesvg] = ACTIONS(5956), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5956), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5956), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5956), - [anon_sym_BSLASHimport] = ACTIONS(5956), - [anon_sym_BSLASHsubimport] = ACTIONS(5956), - [anon_sym_BSLASHinputfrom] = ACTIONS(5956), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5956), - [anon_sym_BSLASHincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHcaption] = ACTIONS(5956), - [anon_sym_BSLASHcite] = ACTIONS(5956), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCite] = ACTIONS(5956), - [anon_sym_BSLASHnocite] = ACTIONS(5956), - [anon_sym_BSLASHcitet] = ACTIONS(5956), - [anon_sym_BSLASHcitep] = ACTIONS(5956), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteauthor] = ACTIONS(5956), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5956), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitetitle] = ACTIONS(5956), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteyear] = ACTIONS(5956), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitedate] = ACTIONS(5956), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteurl] = ACTIONS(5956), - [anon_sym_BSLASHfullcite] = ACTIONS(5956), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5956), - [anon_sym_BSLASHcitealt] = ACTIONS(5956), - [anon_sym_BSLASHcitealp] = ACTIONS(5956), - [anon_sym_BSLASHcitetext] = ACTIONS(5956), - [anon_sym_BSLASHparencite] = ACTIONS(5956), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHParencite] = ACTIONS(5956), - [anon_sym_BSLASHfootcite] = ACTIONS(5956), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5956), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5956), - [anon_sym_BSLASHtextcite] = ACTIONS(5956), - [anon_sym_BSLASHTextcite] = ACTIONS(5956), - [anon_sym_BSLASHsmartcite] = ACTIONS(5956), - [anon_sym_BSLASHSmartcite] = ACTIONS(5956), - [anon_sym_BSLASHsupercite] = ACTIONS(5956), - [anon_sym_BSLASHautocite] = ACTIONS(5956), - [anon_sym_BSLASHAutocite] = ACTIONS(5956), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHvolcite] = ACTIONS(5956), - [anon_sym_BSLASHVolcite] = ACTIONS(5956), - [anon_sym_BSLASHpvolcite] = ACTIONS(5956), - [anon_sym_BSLASHPvolcite] = ACTIONS(5956), - [anon_sym_BSLASHfvolcite] = ACTIONS(5956), - [anon_sym_BSLASHftvolcite] = ACTIONS(5956), - [anon_sym_BSLASHsvolcite] = ACTIONS(5956), - [anon_sym_BSLASHSvolcite] = ACTIONS(5956), - [anon_sym_BSLASHtvolcite] = ACTIONS(5956), - [anon_sym_BSLASHTvolcite] = ACTIONS(5956), - [anon_sym_BSLASHavolcite] = ACTIONS(5956), - [anon_sym_BSLASHAvolcite] = ACTIONS(5956), - [anon_sym_BSLASHnotecite] = ACTIONS(5956), - [anon_sym_BSLASHNotecite] = ACTIONS(5956), - [anon_sym_BSLASHpnotecite] = ACTIONS(5956), - [anon_sym_BSLASHPnotecite] = ACTIONS(5956), - [anon_sym_BSLASHfnotecite] = ACTIONS(5956), - [anon_sym_BSLASHlabel] = ACTIONS(5956), - [anon_sym_BSLASHref] = ACTIONS(5956), - [anon_sym_BSLASHeqref] = ACTIONS(5956), - [anon_sym_BSLASHvref] = ACTIONS(5956), - [anon_sym_BSLASHVref] = ACTIONS(5956), - [anon_sym_BSLASHautoref] = ACTIONS(5956), - [anon_sym_BSLASHpageref] = ACTIONS(5956), - [anon_sym_BSLASHcref] = ACTIONS(5956), - [anon_sym_BSLASHCref] = ACTIONS(5956), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnameCref] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHlabelcref] = ACTIONS(5956), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCrefrange] = ACTIONS(5956), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnewlabel] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5956), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5956), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5958), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHdef] = ACTIONS(5956), - [anon_sym_BSLASHlet] = ACTIONS(5956), - [anon_sym_BSLASHleft] = ACTIONS(5956), - [anon_sym_BSLASHbig] = ACTIONS(5956), - [anon_sym_BSLASHBig] = ACTIONS(5956), - [anon_sym_BSLASHbigg] = ACTIONS(5956), - [anon_sym_BSLASHBigg] = ACTIONS(5956), - [anon_sym_BSLASHbigl] = ACTIONS(5956), - [anon_sym_BSLASHBigl] = ACTIONS(5956), - [anon_sym_BSLASHbiggl] = ACTIONS(5956), - [anon_sym_BSLASHBiggl] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5956), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5956), - [anon_sym_BSLASHgls] = ACTIONS(5956), - [anon_sym_BSLASHGls] = ACTIONS(5956), - [anon_sym_BSLASHGLS] = ACTIONS(5956), - [anon_sym_BSLASHglspl] = ACTIONS(5956), - [anon_sym_BSLASHGlspl] = ACTIONS(5956), - [anon_sym_BSLASHGLSpl] = ACTIONS(5956), - [anon_sym_BSLASHglsdisp] = ACTIONS(5956), - [anon_sym_BSLASHglslink] = ACTIONS(5956), - [anon_sym_BSLASHglstext] = ACTIONS(5956), - [anon_sym_BSLASHGlstext] = ACTIONS(5956), - [anon_sym_BSLASHGLStext] = ACTIONS(5956), - [anon_sym_BSLASHglsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5956), - [anon_sym_BSLASHglsplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSplural] = ACTIONS(5956), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHglsname] = ACTIONS(5956), - [anon_sym_BSLASHGlsname] = ACTIONS(5956), - [anon_sym_BSLASHGLSname] = ACTIONS(5956), - [anon_sym_BSLASHglssymbol] = ACTIONS(5956), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5956), - [anon_sym_BSLASHglsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5956), - [anon_sym_BSLASHglsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5956), - [anon_sym_BSLASHglsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5956), - [anon_sym_BSLASHglsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5956), - [anon_sym_BSLASHglsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5956), - [anon_sym_BSLASHnewacronym] = ACTIONS(5956), - [anon_sym_BSLASHacrshort] = ACTIONS(5956), - [anon_sym_BSLASHAcrshort] = ACTIONS(5956), - [anon_sym_BSLASHACRshort] = ACTIONS(5956), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5956), - [anon_sym_BSLASHacrlong] = ACTIONS(5956), - [anon_sym_BSLASHAcrlong] = ACTIONS(5956), - [anon_sym_BSLASHACRlong] = ACTIONS(5956), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5956), - [anon_sym_BSLASHacrfull] = ACTIONS(5956), - [anon_sym_BSLASHAcrfull] = ACTIONS(5956), - [anon_sym_BSLASHACRfull] = ACTIONS(5956), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5956), - [anon_sym_BSLASHacs] = ACTIONS(5956), - [anon_sym_BSLASHAcs] = ACTIONS(5956), - [anon_sym_BSLASHacsp] = ACTIONS(5956), - [anon_sym_BSLASHAcsp] = ACTIONS(5956), - [anon_sym_BSLASHacl] = ACTIONS(5956), - [anon_sym_BSLASHAcl] = ACTIONS(5956), - [anon_sym_BSLASHaclp] = ACTIONS(5956), - [anon_sym_BSLASHAclp] = ACTIONS(5956), - [anon_sym_BSLASHacf] = ACTIONS(5956), - [anon_sym_BSLASHAcf] = ACTIONS(5956), - [anon_sym_BSLASHacfp] = ACTIONS(5956), - [anon_sym_BSLASHAcfp] = ACTIONS(5956), - [anon_sym_BSLASHac] = ACTIONS(5956), - [anon_sym_BSLASHAc] = ACTIONS(5956), - [anon_sym_BSLASHacp] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5956), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5956), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5956), - [anon_sym_BSLASHcolor] = ACTIONS(5956), - [anon_sym_BSLASHcolorbox] = ACTIONS(5956), - [anon_sym_BSLASHtextcolor] = ACTIONS(5956), - [anon_sym_BSLASHpagecolor] = ACTIONS(5956), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5956), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5956), - [anon_sym_BSLASHtext] = ACTIONS(5956), - [anon_sym_BSLASHintertext] = ACTIONS(5956), - [anon_sym_shortintertext] = ACTIONS(5956), - }, - [878] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(5956), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5958), - [anon_sym_RBRACK] = ACTIONS(5958), - [anon_sym_COMMA] = ACTIONS(5958), - [anon_sym_EQ] = ACTIONS(5958), - [anon_sym_LPAREN] = ACTIONS(5958), - [anon_sym_RPAREN] = ACTIONS(5958), - [anon_sym_BSLASHpart] = ACTIONS(5956), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddpart] = ACTIONS(5956), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5958), - [anon_sym_BSLASHchapter] = ACTIONS(5956), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddchap] = ACTIONS(5956), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsection] = ACTIONS(5956), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHaddsec] = ACTIONS(5956), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5956), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5958), - [anon_sym_BSLASHparagraph] = ACTIONS(5956), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5956), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5958), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(5958), - [sym_word] = ACTIONS(5956), - [sym_placeholder] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_LT] = ACTIONS(5956), - [anon_sym_GT] = ACTIONS(5956), - [anon_sym_BANG] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_SQUOTE] = ACTIONS(5956), - [anon_sym__] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5958), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5958), - [anon_sym_DOLLAR] = ACTIONS(5956), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5958), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5958), - [anon_sym_BSLASHbegin] = ACTIONS(5956), - [anon_sym_BSLASHtitle] = ACTIONS(5956), - [anon_sym_BSLASHauthor] = ACTIONS(5956), - [anon_sym_BSLASHusepackage] = ACTIONS(5956), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5956), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5956), - [anon_sym_BSLASHinclude] = ACTIONS(5956), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5956), - [anon_sym_BSLASHinput] = ACTIONS(5956), - [anon_sym_BSLASHsubfile] = ACTIONS(5956), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5956), - [anon_sym_BSLASHbibliography] = ACTIONS(5956), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5956), - [anon_sym_BSLASHincludesvg] = ACTIONS(5956), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5956), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5956), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5956), - [anon_sym_BSLASHimport] = ACTIONS(5956), - [anon_sym_BSLASHsubimport] = ACTIONS(5956), - [anon_sym_BSLASHinputfrom] = ACTIONS(5956), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5956), - [anon_sym_BSLASHincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5956), - [anon_sym_BSLASHcaption] = ACTIONS(5956), - [anon_sym_BSLASHcite] = ACTIONS(5956), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCite] = ACTIONS(5956), - [anon_sym_BSLASHnocite] = ACTIONS(5956), - [anon_sym_BSLASHcitet] = ACTIONS(5956), - [anon_sym_BSLASHcitep] = ACTIONS(5956), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteauthor] = ACTIONS(5956), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5956), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitetitle] = ACTIONS(5956), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteyear] = ACTIONS(5956), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5958), - [anon_sym_BSLASHcitedate] = ACTIONS(5956), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5958), - [anon_sym_BSLASHciteurl] = ACTIONS(5956), - [anon_sym_BSLASHfullcite] = ACTIONS(5956), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5956), - [anon_sym_BSLASHcitealt] = ACTIONS(5956), - [anon_sym_BSLASHcitealp] = ACTIONS(5956), - [anon_sym_BSLASHcitetext] = ACTIONS(5956), - [anon_sym_BSLASHparencite] = ACTIONS(5956), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHParencite] = ACTIONS(5956), - [anon_sym_BSLASHfootcite] = ACTIONS(5956), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5956), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5956), - [anon_sym_BSLASHtextcite] = ACTIONS(5956), - [anon_sym_BSLASHTextcite] = ACTIONS(5956), - [anon_sym_BSLASHsmartcite] = ACTIONS(5956), - [anon_sym_BSLASHSmartcite] = ACTIONS(5956), - [anon_sym_BSLASHsupercite] = ACTIONS(5956), - [anon_sym_BSLASHautocite] = ACTIONS(5956), - [anon_sym_BSLASHAutocite] = ACTIONS(5956), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5958), - [anon_sym_BSLASHvolcite] = ACTIONS(5956), - [anon_sym_BSLASHVolcite] = ACTIONS(5956), - [anon_sym_BSLASHpvolcite] = ACTIONS(5956), - [anon_sym_BSLASHPvolcite] = ACTIONS(5956), - [anon_sym_BSLASHfvolcite] = ACTIONS(5956), - [anon_sym_BSLASHftvolcite] = ACTIONS(5956), - [anon_sym_BSLASHsvolcite] = ACTIONS(5956), - [anon_sym_BSLASHSvolcite] = ACTIONS(5956), - [anon_sym_BSLASHtvolcite] = ACTIONS(5956), - [anon_sym_BSLASHTvolcite] = ACTIONS(5956), - [anon_sym_BSLASHavolcite] = ACTIONS(5956), - [anon_sym_BSLASHAvolcite] = ACTIONS(5956), - [anon_sym_BSLASHnotecite] = ACTIONS(5956), - [anon_sym_BSLASHNotecite] = ACTIONS(5956), - [anon_sym_BSLASHpnotecite] = ACTIONS(5956), - [anon_sym_BSLASHPnotecite] = ACTIONS(5956), - [anon_sym_BSLASHfnotecite] = ACTIONS(5956), - [anon_sym_BSLASHlabel] = ACTIONS(5956), - [anon_sym_BSLASHref] = ACTIONS(5956), - [anon_sym_BSLASHeqref] = ACTIONS(5956), - [anon_sym_BSLASHvref] = ACTIONS(5956), - [anon_sym_BSLASHVref] = ACTIONS(5956), - [anon_sym_BSLASHautoref] = ACTIONS(5956), - [anon_sym_BSLASHpageref] = ACTIONS(5956), - [anon_sym_BSLASHcref] = ACTIONS(5956), - [anon_sym_BSLASHCref] = ACTIONS(5956), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnameCref] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5956), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5956), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5956), - [anon_sym_BSLASHlabelcref] = ACTIONS(5956), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange] = ACTIONS(5956), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHCrefrange] = ACTIONS(5956), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5958), - [anon_sym_BSLASHnewlabel] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand] = ACTIONS(5956), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5956), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5958), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5956), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5958), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5956), - [anon_sym_BSLASHdef] = ACTIONS(5956), - [anon_sym_BSLASHlet] = ACTIONS(5956), - [anon_sym_BSLASHleft] = ACTIONS(5956), - [anon_sym_BSLASHbig] = ACTIONS(5956), - [anon_sym_BSLASHBig] = ACTIONS(5956), - [anon_sym_BSLASHbigg] = ACTIONS(5956), - [anon_sym_BSLASHBigg] = ACTIONS(5956), - [anon_sym_BSLASHbigl] = ACTIONS(5956), - [anon_sym_BSLASHBigl] = ACTIONS(5956), - [anon_sym_BSLASHbiggl] = ACTIONS(5956), - [anon_sym_BSLASHBiggl] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5956), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5956), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5956), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5956), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5956), - [anon_sym_BSLASHgls] = ACTIONS(5956), - [anon_sym_BSLASHGls] = ACTIONS(5956), - [anon_sym_BSLASHGLS] = ACTIONS(5956), - [anon_sym_BSLASHglspl] = ACTIONS(5956), - [anon_sym_BSLASHGlspl] = ACTIONS(5956), - [anon_sym_BSLASHGLSpl] = ACTIONS(5956), - [anon_sym_BSLASHglsdisp] = ACTIONS(5956), - [anon_sym_BSLASHglslink] = ACTIONS(5956), - [anon_sym_BSLASHglstext] = ACTIONS(5956), - [anon_sym_BSLASHGlstext] = ACTIONS(5956), - [anon_sym_BSLASHGLStext] = ACTIONS(5956), - [anon_sym_BSLASHglsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5956), - [anon_sym_BSLASHglsplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSplural] = ACTIONS(5956), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5956), - [anon_sym_BSLASHglsname] = ACTIONS(5956), - [anon_sym_BSLASHGlsname] = ACTIONS(5956), - [anon_sym_BSLASHGLSname] = ACTIONS(5956), - [anon_sym_BSLASHglssymbol] = ACTIONS(5956), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5956), - [anon_sym_BSLASHglsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5956), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5956), - [anon_sym_BSLASHglsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5956), - [anon_sym_BSLASHglsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5956), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5956), - [anon_sym_BSLASHglsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5956), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5956), - [anon_sym_BSLASHglsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5956), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5956), - [anon_sym_BSLASHnewacronym] = ACTIONS(5956), - [anon_sym_BSLASHacrshort] = ACTIONS(5956), - [anon_sym_BSLASHAcrshort] = ACTIONS(5956), - [anon_sym_BSLASHACRshort] = ACTIONS(5956), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5956), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5956), - [anon_sym_BSLASHacrlong] = ACTIONS(5956), - [anon_sym_BSLASHAcrlong] = ACTIONS(5956), - [anon_sym_BSLASHACRlong] = ACTIONS(5956), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5956), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5956), - [anon_sym_BSLASHacrfull] = ACTIONS(5956), - [anon_sym_BSLASHAcrfull] = ACTIONS(5956), - [anon_sym_BSLASHACRfull] = ACTIONS(5956), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5956), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5956), - [anon_sym_BSLASHacs] = ACTIONS(5956), - [anon_sym_BSLASHAcs] = ACTIONS(5956), - [anon_sym_BSLASHacsp] = ACTIONS(5956), - [anon_sym_BSLASHAcsp] = ACTIONS(5956), - [anon_sym_BSLASHacl] = ACTIONS(5956), - [anon_sym_BSLASHAcl] = ACTIONS(5956), - [anon_sym_BSLASHaclp] = ACTIONS(5956), - [anon_sym_BSLASHAclp] = ACTIONS(5956), - [anon_sym_BSLASHacf] = ACTIONS(5956), - [anon_sym_BSLASHAcf] = ACTIONS(5956), - [anon_sym_BSLASHacfp] = ACTIONS(5956), - [anon_sym_BSLASHAcfp] = ACTIONS(5956), - [anon_sym_BSLASHac] = ACTIONS(5956), - [anon_sym_BSLASHAc] = ACTIONS(5956), - [anon_sym_BSLASHacp] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5956), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5956), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5956), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5956), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5956), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5958), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5956), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5956), - [anon_sym_BSLASHcolor] = ACTIONS(5956), - [anon_sym_BSLASHcolorbox] = ACTIONS(5956), - [anon_sym_BSLASHtextcolor] = ACTIONS(5956), - [anon_sym_BSLASHpagecolor] = ACTIONS(5956), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5956), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5956), - [anon_sym_BSLASHtext] = ACTIONS(5956), - [anon_sym_BSLASHintertext] = ACTIONS(5956), - [anon_sym_shortintertext] = ACTIONS(5956), - }, - [879] = { - [sym__enum_itemdeclaration] = STATE(257), - [sym_enum_item] = STATE(818), - [aux_sym__section_repeat8] = STATE(818), - [sym_command_name] = ACTIONS(5952), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5952), - [anon_sym_LBRACK] = ACTIONS(5954), - [anon_sym_RBRACK] = ACTIONS(5954), - [anon_sym_COMMA] = ACTIONS(5954), - [anon_sym_EQ] = ACTIONS(5954), - [anon_sym_LPAREN] = ACTIONS(5954), - [anon_sym_RPAREN] = ACTIONS(5954), - [anon_sym_BSLASHpart] = ACTIONS(5952), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddpart] = ACTIONS(5952), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5954), - [anon_sym_BSLASHchapter] = ACTIONS(5952), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddchap] = ACTIONS(5952), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsection] = ACTIONS(5952), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHaddsec] = ACTIONS(5952), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubsection] = ACTIONS(5952), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5952), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5954), - [anon_sym_BSLASHparagraph] = ACTIONS(5952), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5954), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5952), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5954), - [anon_sym_BSLASHitem] = ACTIONS(684), - [anon_sym_BSLASHitem_STAR] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(5954), - [sym_word] = ACTIONS(5952), - [sym_placeholder] = ACTIONS(5954), - [anon_sym_PLUS] = ACTIONS(5954), - [anon_sym_DASH] = ACTIONS(5954), - [anon_sym_STAR] = ACTIONS(5954), - [anon_sym_SLASH] = ACTIONS(5954), - [anon_sym_LT] = ACTIONS(5952), - [anon_sym_GT] = ACTIONS(5952), - [anon_sym_BANG] = ACTIONS(5952), - [anon_sym_PIPE] = ACTIONS(5952), - [anon_sym_COLON] = ACTIONS(5952), - [anon_sym_SQUOTE] = ACTIONS(5952), - [anon_sym__] = ACTIONS(5954), - [anon_sym_CARET] = ACTIONS(5954), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5954), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5954), - [anon_sym_DOLLAR] = ACTIONS(5952), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5954), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5954), - [anon_sym_BSLASHbegin] = ACTIONS(5952), - [anon_sym_BSLASHtitle] = ACTIONS(5952), - [anon_sym_BSLASHauthor] = ACTIONS(5952), - [anon_sym_BSLASHusepackage] = ACTIONS(5952), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5952), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5952), - [anon_sym_BSLASHinclude] = ACTIONS(5952), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5952), - [anon_sym_BSLASHinput] = ACTIONS(5952), - [anon_sym_BSLASHsubfile] = ACTIONS(5952), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5952), - [anon_sym_BSLASHbibliography] = ACTIONS(5952), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5952), - [anon_sym_BSLASHincludesvg] = ACTIONS(5952), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5952), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5952), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5952), - [anon_sym_BSLASHimport] = ACTIONS(5952), - [anon_sym_BSLASHsubimport] = ACTIONS(5952), - [anon_sym_BSLASHinputfrom] = ACTIONS(5952), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5952), - [anon_sym_BSLASHincludefrom] = ACTIONS(5952), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5952), - [anon_sym_BSLASHcaption] = ACTIONS(5952), - [anon_sym_BSLASHcite] = ACTIONS(5952), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCite] = ACTIONS(5952), - [anon_sym_BSLASHnocite] = ACTIONS(5952), - [anon_sym_BSLASHcitet] = ACTIONS(5952), - [anon_sym_BSLASHcitep] = ACTIONS(5952), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteauthor] = ACTIONS(5952), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5952), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitetitle] = ACTIONS(5952), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteyear] = ACTIONS(5952), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5954), - [anon_sym_BSLASHcitedate] = ACTIONS(5952), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5954), - [anon_sym_BSLASHciteurl] = ACTIONS(5952), - [anon_sym_BSLASHfullcite] = ACTIONS(5952), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5952), - [anon_sym_BSLASHcitealt] = ACTIONS(5952), - [anon_sym_BSLASHcitealp] = ACTIONS(5952), - [anon_sym_BSLASHcitetext] = ACTIONS(5952), - [anon_sym_BSLASHparencite] = ACTIONS(5952), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHParencite] = ACTIONS(5952), - [anon_sym_BSLASHfootcite] = ACTIONS(5952), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5952), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5952), - [anon_sym_BSLASHtextcite] = ACTIONS(5952), - [anon_sym_BSLASHTextcite] = ACTIONS(5952), - [anon_sym_BSLASHsmartcite] = ACTIONS(5952), - [anon_sym_BSLASHSmartcite] = ACTIONS(5952), - [anon_sym_BSLASHsupercite] = ACTIONS(5952), - [anon_sym_BSLASHautocite] = ACTIONS(5952), - [anon_sym_BSLASHAutocite] = ACTIONS(5952), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5954), - [anon_sym_BSLASHvolcite] = ACTIONS(5952), - [anon_sym_BSLASHVolcite] = ACTIONS(5952), - [anon_sym_BSLASHpvolcite] = ACTIONS(5952), - [anon_sym_BSLASHPvolcite] = ACTIONS(5952), - [anon_sym_BSLASHfvolcite] = ACTIONS(5952), - [anon_sym_BSLASHftvolcite] = ACTIONS(5952), - [anon_sym_BSLASHsvolcite] = ACTIONS(5952), - [anon_sym_BSLASHSvolcite] = ACTIONS(5952), - [anon_sym_BSLASHtvolcite] = ACTIONS(5952), - [anon_sym_BSLASHTvolcite] = ACTIONS(5952), - [anon_sym_BSLASHavolcite] = ACTIONS(5952), - [anon_sym_BSLASHAvolcite] = ACTIONS(5952), - [anon_sym_BSLASHnotecite] = ACTIONS(5952), - [anon_sym_BSLASHNotecite] = ACTIONS(5952), - [anon_sym_BSLASHpnotecite] = ACTIONS(5952), - [anon_sym_BSLASHPnotecite] = ACTIONS(5952), - [anon_sym_BSLASHfnotecite] = ACTIONS(5952), - [anon_sym_BSLASHlabel] = ACTIONS(5952), - [anon_sym_BSLASHref] = ACTIONS(5952), - [anon_sym_BSLASHeqref] = ACTIONS(5952), - [anon_sym_BSLASHvref] = ACTIONS(5952), - [anon_sym_BSLASHVref] = ACTIONS(5952), - [anon_sym_BSLASHautoref] = ACTIONS(5952), - [anon_sym_BSLASHpageref] = ACTIONS(5952), - [anon_sym_BSLASHcref] = ACTIONS(5952), - [anon_sym_BSLASHCref] = ACTIONS(5952), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5954), - [anon_sym_BSLASHnamecref] = ACTIONS(5952), - [anon_sym_BSLASHnameCref] = ACTIONS(5952), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5952), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5952), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5952), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5952), - [anon_sym_BSLASHlabelcref] = ACTIONS(5952), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5952), - [anon_sym_BSLASHcrefrange] = ACTIONS(5952), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5954), - [anon_sym_BSLASHCrefrange] = ACTIONS(5952), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5954), - [anon_sym_BSLASHnewlabel] = ACTIONS(5952), - [anon_sym_BSLASHnewcommand] = ACTIONS(5952), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5952), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5954), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5952), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5954), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5952), - [anon_sym_BSLASHdef] = ACTIONS(5952), - [anon_sym_BSLASHlet] = ACTIONS(5952), - [anon_sym_BSLASHleft] = ACTIONS(5952), - [anon_sym_BSLASHbig] = ACTIONS(5952), - [anon_sym_BSLASHBig] = ACTIONS(5952), - [anon_sym_BSLASHbigg] = ACTIONS(5952), - [anon_sym_BSLASHBigg] = ACTIONS(5952), - [anon_sym_BSLASHbigl] = ACTIONS(5952), - [anon_sym_BSLASHBigl] = ACTIONS(5952), - [anon_sym_BSLASHbiggl] = ACTIONS(5952), - [anon_sym_BSLASHBiggl] = ACTIONS(5952), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5952), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5952), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5952), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5952), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5952), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5952), - [anon_sym_BSLASHgls] = ACTIONS(5952), - [anon_sym_BSLASHGls] = ACTIONS(5952), - [anon_sym_BSLASHGLS] = ACTIONS(5952), - [anon_sym_BSLASHglspl] = ACTIONS(5952), - [anon_sym_BSLASHGlspl] = ACTIONS(5952), - [anon_sym_BSLASHGLSpl] = ACTIONS(5952), - [anon_sym_BSLASHglsdisp] = ACTIONS(5952), - [anon_sym_BSLASHglslink] = ACTIONS(5952), - [anon_sym_BSLASHglstext] = ACTIONS(5952), - [anon_sym_BSLASHGlstext] = ACTIONS(5952), - [anon_sym_BSLASHGLStext] = ACTIONS(5952), - [anon_sym_BSLASHglsfirst] = ACTIONS(5952), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5952), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5952), - [anon_sym_BSLASHglsplural] = ACTIONS(5952), - [anon_sym_BSLASHGlsplural] = ACTIONS(5952), - [anon_sym_BSLASHGLSplural] = ACTIONS(5952), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5952), - [anon_sym_BSLASHglsname] = ACTIONS(5952), - [anon_sym_BSLASHGlsname] = ACTIONS(5952), - [anon_sym_BSLASHGLSname] = ACTIONS(5952), - [anon_sym_BSLASHglssymbol] = ACTIONS(5952), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5952), - [anon_sym_BSLASHglsdesc] = ACTIONS(5952), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5952), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5952), - [anon_sym_BSLASHglsuseri] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5952), - [anon_sym_BSLASHglsuserii] = ACTIONS(5952), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5952), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5952), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5952), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5952), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5952), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5952), - [anon_sym_BSLASHglsuserv] = ACTIONS(5952), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5952), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5952), - [anon_sym_BSLASHglsuservi] = ACTIONS(5952), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5952), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5952), - [anon_sym_BSLASHnewacronym] = ACTIONS(5952), - [anon_sym_BSLASHacrshort] = ACTIONS(5952), - [anon_sym_BSLASHAcrshort] = ACTIONS(5952), - [anon_sym_BSLASHACRshort] = ACTIONS(5952), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5952), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5952), - [anon_sym_BSLASHacrlong] = ACTIONS(5952), - [anon_sym_BSLASHAcrlong] = ACTIONS(5952), - [anon_sym_BSLASHACRlong] = ACTIONS(5952), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5952), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5952), - [anon_sym_BSLASHacrfull] = ACTIONS(5952), - [anon_sym_BSLASHAcrfull] = ACTIONS(5952), - [anon_sym_BSLASHACRfull] = ACTIONS(5952), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5952), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5952), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5952), - [anon_sym_BSLASHacs] = ACTIONS(5952), - [anon_sym_BSLASHAcs] = ACTIONS(5952), - [anon_sym_BSLASHacsp] = ACTIONS(5952), - [anon_sym_BSLASHAcsp] = ACTIONS(5952), - [anon_sym_BSLASHacl] = ACTIONS(5952), - [anon_sym_BSLASHAcl] = ACTIONS(5952), - [anon_sym_BSLASHaclp] = ACTIONS(5952), - [anon_sym_BSLASHAclp] = ACTIONS(5952), - [anon_sym_BSLASHacf] = ACTIONS(5952), - [anon_sym_BSLASHAcf] = ACTIONS(5952), - [anon_sym_BSLASHacfp] = ACTIONS(5952), - [anon_sym_BSLASHAcfp] = ACTIONS(5952), - [anon_sym_BSLASHac] = ACTIONS(5952), - [anon_sym_BSLASHAc] = ACTIONS(5952), - [anon_sym_BSLASHacp] = ACTIONS(5952), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5952), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5952), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5952), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5952), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5952), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5952), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5952), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5952), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5954), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5952), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5954), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5952), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5952), - [anon_sym_BSLASHcolor] = ACTIONS(5952), - [anon_sym_BSLASHcolorbox] = ACTIONS(5952), - [anon_sym_BSLASHtextcolor] = ACTIONS(5952), - [anon_sym_BSLASHpagecolor] = ACTIONS(5952), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5952), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5952), - [anon_sym_BSLASHtext] = ACTIONS(5952), - [anon_sym_BSLASHintertext] = ACTIONS(5952), - [anon_sym_shortintertext] = ACTIONS(5952), - }, - [880] = { - [sym__paragraph_declaration] = STATE(233), - [sym_paragraph] = STATE(733), - [aux_sym__section_repeat6] = STATE(733), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(642), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(644), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [881] = { - [sym__subsubsection_declaration] = STATE(224), - [sym_subsubsection] = STATE(734), - [aux_sym__section_repeat5] = STATE(734), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(638), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(640), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [882] = { - [sym__subsection_declaration] = STATE(211), - [sym_subsection] = STATE(735), - [aux_sym__section_repeat4] = STATE(735), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(634), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(636), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [883] = { - [sym__section_declaration] = STATE(205), - [sym_section] = STATE(736), - [aux_sym__section_repeat3] = STATE(736), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(2138), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddchap] = ACTIONS(2138), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsection] = ACTIONS(630), - [anon_sym_BSLASHsection_STAR] = ACTIONS(632), - [anon_sym_BSLASHaddsec] = ACTIONS(630), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(632), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [884] = { - [sym__chapter_declaration] = STATE(192), - [sym_chapter] = STATE(737), - [aux_sym__section_repeat2] = STATE(737), - [sym_command_name] = ACTIONS(2138), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_RPAREN] = ACTIONS(2140), - [anon_sym_BSLASHpart] = ACTIONS(2138), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddpart] = ACTIONS(2138), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2140), - [anon_sym_BSLASHchapter] = ACTIONS(626), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(628), - [anon_sym_BSLASHaddchap] = ACTIONS(626), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(628), - [anon_sym_BSLASHsection] = ACTIONS(2138), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHaddsec] = ACTIONS(2138), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2138), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2140), - [anon_sym_BSLASHparagraph] = ACTIONS(2138), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2138), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2140), - [anon_sym_BSLASHitem] = ACTIONS(2138), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [sym_word] = ACTIONS(2138), - [sym_placeholder] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_PIPE] = ACTIONS(2138), - [anon_sym_COLON] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [anon_sym__] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2140), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2140), - [anon_sym_BSLASHbegin] = ACTIONS(2138), - [anon_sym_BSLASHtitle] = ACTIONS(2138), - [anon_sym_BSLASHauthor] = ACTIONS(2138), - [anon_sym_BSLASHusepackage] = ACTIONS(2138), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2138), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2138), - [anon_sym_BSLASHinclude] = ACTIONS(2138), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2138), - [anon_sym_BSLASHinput] = ACTIONS(2138), - [anon_sym_BSLASHsubfile] = ACTIONS(2138), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2138), - [anon_sym_BSLASHbibliography] = ACTIONS(2138), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2138), - [anon_sym_BSLASHincludesvg] = ACTIONS(2138), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2138), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2138), - [anon_sym_BSLASHimport] = ACTIONS(2138), - [anon_sym_BSLASHsubimport] = ACTIONS(2138), - [anon_sym_BSLASHinputfrom] = ACTIONS(2138), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2138), - [anon_sym_BSLASHincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2138), - [anon_sym_BSLASHcaption] = ACTIONS(2138), - [anon_sym_BSLASHcite] = ACTIONS(2138), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCite] = ACTIONS(2138), - [anon_sym_BSLASHnocite] = ACTIONS(2138), - [anon_sym_BSLASHcitet] = ACTIONS(2138), - [anon_sym_BSLASHcitep] = ACTIONS(2138), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteauthor] = ACTIONS(2138), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2138), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitetitle] = ACTIONS(2138), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteyear] = ACTIONS(2138), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2140), - [anon_sym_BSLASHcitedate] = ACTIONS(2138), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2140), - [anon_sym_BSLASHciteurl] = ACTIONS(2138), - [anon_sym_BSLASHfullcite] = ACTIONS(2138), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2138), - [anon_sym_BSLASHcitealt] = ACTIONS(2138), - [anon_sym_BSLASHcitealp] = ACTIONS(2138), - [anon_sym_BSLASHcitetext] = ACTIONS(2138), - [anon_sym_BSLASHparencite] = ACTIONS(2138), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHParencite] = ACTIONS(2138), - [anon_sym_BSLASHfootcite] = ACTIONS(2138), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2138), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2138), - [anon_sym_BSLASHtextcite] = ACTIONS(2138), - [anon_sym_BSLASHTextcite] = ACTIONS(2138), - [anon_sym_BSLASHsmartcite] = ACTIONS(2138), - [anon_sym_BSLASHSmartcite] = ACTIONS(2138), - [anon_sym_BSLASHsupercite] = ACTIONS(2138), - [anon_sym_BSLASHautocite] = ACTIONS(2138), - [anon_sym_BSLASHAutocite] = ACTIONS(2138), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2140), - [anon_sym_BSLASHvolcite] = ACTIONS(2138), - [anon_sym_BSLASHVolcite] = ACTIONS(2138), - [anon_sym_BSLASHpvolcite] = ACTIONS(2138), - [anon_sym_BSLASHPvolcite] = ACTIONS(2138), - [anon_sym_BSLASHfvolcite] = ACTIONS(2138), - [anon_sym_BSLASHftvolcite] = ACTIONS(2138), - [anon_sym_BSLASHsvolcite] = ACTIONS(2138), - [anon_sym_BSLASHSvolcite] = ACTIONS(2138), - [anon_sym_BSLASHtvolcite] = ACTIONS(2138), - [anon_sym_BSLASHTvolcite] = ACTIONS(2138), - [anon_sym_BSLASHavolcite] = ACTIONS(2138), - [anon_sym_BSLASHAvolcite] = ACTIONS(2138), - [anon_sym_BSLASHnotecite] = ACTIONS(2138), - [anon_sym_BSLASHNotecite] = ACTIONS(2138), - [anon_sym_BSLASHpnotecite] = ACTIONS(2138), - [anon_sym_BSLASHPnotecite] = ACTIONS(2138), - [anon_sym_BSLASHfnotecite] = ACTIONS(2138), - [anon_sym_BSLASHlabel] = ACTIONS(2138), - [anon_sym_BSLASHref] = ACTIONS(2138), - [anon_sym_BSLASHeqref] = ACTIONS(2138), - [anon_sym_BSLASHvref] = ACTIONS(2138), - [anon_sym_BSLASHVref] = ACTIONS(2138), - [anon_sym_BSLASHautoref] = ACTIONS(2138), - [anon_sym_BSLASHpageref] = ACTIONS(2138), - [anon_sym_BSLASHcref] = ACTIONS(2138), - [anon_sym_BSLASHCref] = ACTIONS(2138), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnameCref] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2138), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2138), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2138), - [anon_sym_BSLASHlabelcref] = ACTIONS(2138), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange] = ACTIONS(2138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHCrefrange] = ACTIONS(2138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2140), - [anon_sym_BSLASHnewlabel] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand] = ACTIONS(2138), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2138), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2140), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2138), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2140), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(2138), - [anon_sym_BSLASHdef] = ACTIONS(2138), - [anon_sym_BSLASHlet] = ACTIONS(2138), - [anon_sym_BSLASHleft] = ACTIONS(2138), - [anon_sym_BSLASHbig] = ACTIONS(2138), - [anon_sym_BSLASHBig] = ACTIONS(2138), - [anon_sym_BSLASHbigg] = ACTIONS(2138), - [anon_sym_BSLASHBigg] = ACTIONS(2138), - [anon_sym_BSLASHbigl] = ACTIONS(2138), - [anon_sym_BSLASHBigl] = ACTIONS(2138), - [anon_sym_BSLASHbiggl] = ACTIONS(2138), - [anon_sym_BSLASHBiggl] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(2138), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(2138), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(2138), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(2138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2138), - [anon_sym_BSLASHgls] = ACTIONS(2138), - [anon_sym_BSLASHGls] = ACTIONS(2138), - [anon_sym_BSLASHGLS] = ACTIONS(2138), - [anon_sym_BSLASHglspl] = ACTIONS(2138), - [anon_sym_BSLASHGlspl] = ACTIONS(2138), - [anon_sym_BSLASHGLSpl] = ACTIONS(2138), - [anon_sym_BSLASHglsdisp] = ACTIONS(2138), - [anon_sym_BSLASHglslink] = ACTIONS(2138), - [anon_sym_BSLASHglstext] = ACTIONS(2138), - [anon_sym_BSLASHGlstext] = ACTIONS(2138), - [anon_sym_BSLASHGLStext] = ACTIONS(2138), - [anon_sym_BSLASHglsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2138), - [anon_sym_BSLASHglsplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSplural] = ACTIONS(2138), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2138), - [anon_sym_BSLASHglsname] = ACTIONS(2138), - [anon_sym_BSLASHGlsname] = ACTIONS(2138), - [anon_sym_BSLASHGLSname] = ACTIONS(2138), - [anon_sym_BSLASHglssymbol] = ACTIONS(2138), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2138), - [anon_sym_BSLASHglsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2138), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2138), - [anon_sym_BSLASHglsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2138), - [anon_sym_BSLASHglsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2138), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2138), - [anon_sym_BSLASHglsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2138), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2138), - [anon_sym_BSLASHglsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2138), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2138), - [anon_sym_BSLASHnewacronym] = ACTIONS(2138), - [anon_sym_BSLASHacrshort] = ACTIONS(2138), - [anon_sym_BSLASHAcrshort] = ACTIONS(2138), - [anon_sym_BSLASHACRshort] = ACTIONS(2138), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2138), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2138), - [anon_sym_BSLASHacrlong] = ACTIONS(2138), - [anon_sym_BSLASHAcrlong] = ACTIONS(2138), - [anon_sym_BSLASHACRlong] = ACTIONS(2138), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2138), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2138), - [anon_sym_BSLASHacrfull] = ACTIONS(2138), - [anon_sym_BSLASHAcrfull] = ACTIONS(2138), - [anon_sym_BSLASHACRfull] = ACTIONS(2138), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2138), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2138), - [anon_sym_BSLASHacs] = ACTIONS(2138), - [anon_sym_BSLASHAcs] = ACTIONS(2138), - [anon_sym_BSLASHacsp] = ACTIONS(2138), - [anon_sym_BSLASHAcsp] = ACTIONS(2138), - [anon_sym_BSLASHacl] = ACTIONS(2138), - [anon_sym_BSLASHAcl] = ACTIONS(2138), - [anon_sym_BSLASHaclp] = ACTIONS(2138), - [anon_sym_BSLASHAclp] = ACTIONS(2138), - [anon_sym_BSLASHacf] = ACTIONS(2138), - [anon_sym_BSLASHAcf] = ACTIONS(2138), - [anon_sym_BSLASHacfp] = ACTIONS(2138), - [anon_sym_BSLASHAcfp] = ACTIONS(2138), - [anon_sym_BSLASHac] = ACTIONS(2138), - [anon_sym_BSLASHAc] = ACTIONS(2138), - [anon_sym_BSLASHacp] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2138), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2138), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2138), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2138), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2138), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2138), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2138), - [anon_sym_BSLASHcolor] = ACTIONS(2138), - [anon_sym_BSLASHcolorbox] = ACTIONS(2138), - [anon_sym_BSLASHtextcolor] = ACTIONS(2138), - [anon_sym_BSLASHpagecolor] = ACTIONS(2138), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2138), - [anon_sym_BSLASHtext] = ACTIONS(2138), - [anon_sym_BSLASHintertext] = ACTIONS(2138), - [anon_sym_shortintertext] = ACTIONS(2138), - }, - [885] = { - [sym_curly_group] = STATE(1030), - [aux_sym_generic_command_repeat1] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(5966), - [sym_command_name] = ACTIONS(5964), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5964), - [anon_sym_LBRACK] = ACTIONS(5966), - [anon_sym_RBRACK] = ACTIONS(5966), - [anon_sym_COMMA] = ACTIONS(5966), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_LPAREN] = ACTIONS(5966), - [anon_sym_RPAREN] = ACTIONS(5966), - [anon_sym_BSLASHpart] = ACTIONS(5964), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddpart] = ACTIONS(5964), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5966), - [anon_sym_BSLASHchapter] = ACTIONS(5964), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddchap] = ACTIONS(5964), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsection] = ACTIONS(5964), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddsec] = ACTIONS(5964), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubsection] = ACTIONS(5964), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5964), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHparagraph] = ACTIONS(5964), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5964), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5966), - [anon_sym_BSLASHitem] = ACTIONS(5964), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5966), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(5966), - [sym_word] = ACTIONS(5964), - [sym_placeholder] = ACTIONS(5966), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5966), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_SQUOTE] = ACTIONS(5964), - [anon_sym__] = ACTIONS(5966), - [anon_sym_CARET] = ACTIONS(5966), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5966), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5966), - [anon_sym_DOLLAR] = ACTIONS(5964), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5966), - [anon_sym_BSLASHbegin] = ACTIONS(5964), - [anon_sym_BSLASHtitle] = ACTIONS(5964), - [anon_sym_BSLASHauthor] = ACTIONS(5964), - [anon_sym_BSLASHusepackage] = ACTIONS(5964), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5964), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5964), - [anon_sym_BSLASHinclude] = ACTIONS(5964), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5964), - [anon_sym_BSLASHinput] = ACTIONS(5964), - [anon_sym_BSLASHsubfile] = ACTIONS(5964), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5964), - [anon_sym_BSLASHbibliography] = ACTIONS(5964), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5964), - [anon_sym_BSLASHincludesvg] = ACTIONS(5964), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5964), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5964), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5964), - [anon_sym_BSLASHimport] = ACTIONS(5964), - [anon_sym_BSLASHsubimport] = ACTIONS(5964), - [anon_sym_BSLASHinputfrom] = ACTIONS(5964), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5964), - [anon_sym_BSLASHincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHcaption] = ACTIONS(5964), - [anon_sym_BSLASHcite] = ACTIONS(5964), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCite] = ACTIONS(5964), - [anon_sym_BSLASHnocite] = ACTIONS(5964), - [anon_sym_BSLASHcitet] = ACTIONS(5964), - [anon_sym_BSLASHcitep] = ACTIONS(5964), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteauthor] = ACTIONS(5964), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5964), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitetitle] = ACTIONS(5964), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteyear] = ACTIONS(5964), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitedate] = ACTIONS(5964), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteurl] = ACTIONS(5964), - [anon_sym_BSLASHfullcite] = ACTIONS(5964), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5964), - [anon_sym_BSLASHcitealt] = ACTIONS(5964), - [anon_sym_BSLASHcitealp] = ACTIONS(5964), - [anon_sym_BSLASHcitetext] = ACTIONS(5964), - [anon_sym_BSLASHparencite] = ACTIONS(5964), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHParencite] = ACTIONS(5964), - [anon_sym_BSLASHfootcite] = ACTIONS(5964), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5964), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5964), - [anon_sym_BSLASHtextcite] = ACTIONS(5964), - [anon_sym_BSLASHTextcite] = ACTIONS(5964), - [anon_sym_BSLASHsmartcite] = ACTIONS(5964), - [anon_sym_BSLASHSmartcite] = ACTIONS(5964), - [anon_sym_BSLASHsupercite] = ACTIONS(5964), - [anon_sym_BSLASHautocite] = ACTIONS(5964), - [anon_sym_BSLASHAutocite] = ACTIONS(5964), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHvolcite] = ACTIONS(5964), - [anon_sym_BSLASHVolcite] = ACTIONS(5964), - [anon_sym_BSLASHpvolcite] = ACTIONS(5964), - [anon_sym_BSLASHPvolcite] = ACTIONS(5964), - [anon_sym_BSLASHfvolcite] = ACTIONS(5964), - [anon_sym_BSLASHftvolcite] = ACTIONS(5964), - [anon_sym_BSLASHsvolcite] = ACTIONS(5964), - [anon_sym_BSLASHSvolcite] = ACTIONS(5964), - [anon_sym_BSLASHtvolcite] = ACTIONS(5964), - [anon_sym_BSLASHTvolcite] = ACTIONS(5964), - [anon_sym_BSLASHavolcite] = ACTIONS(5964), - [anon_sym_BSLASHAvolcite] = ACTIONS(5964), - [anon_sym_BSLASHnotecite] = ACTIONS(5964), - [anon_sym_BSLASHNotecite] = ACTIONS(5964), - [anon_sym_BSLASHpnotecite] = ACTIONS(5964), - [anon_sym_BSLASHPnotecite] = ACTIONS(5964), - [anon_sym_BSLASHfnotecite] = ACTIONS(5964), - [anon_sym_BSLASHlabel] = ACTIONS(5964), - [anon_sym_BSLASHref] = ACTIONS(5964), - [anon_sym_BSLASHeqref] = ACTIONS(5964), - [anon_sym_BSLASHvref] = ACTIONS(5964), - [anon_sym_BSLASHVref] = ACTIONS(5964), - [anon_sym_BSLASHautoref] = ACTIONS(5964), - [anon_sym_BSLASHpageref] = ACTIONS(5964), - [anon_sym_BSLASHcref] = ACTIONS(5964), - [anon_sym_BSLASHCref] = ACTIONS(5964), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnameCref] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHlabelcref] = ACTIONS(5964), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCrefrange] = ACTIONS(5964), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnewlabel] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5964), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5964), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5966), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHdef] = ACTIONS(5964), - [anon_sym_BSLASHlet] = ACTIONS(5964), - [anon_sym_BSLASHleft] = ACTIONS(5964), - [anon_sym_BSLASHbig] = ACTIONS(5964), - [anon_sym_BSLASHBig] = ACTIONS(5964), - [anon_sym_BSLASHbigg] = ACTIONS(5964), - [anon_sym_BSLASHBigg] = ACTIONS(5964), - [anon_sym_BSLASHbigl] = ACTIONS(5964), - [anon_sym_BSLASHBigl] = ACTIONS(5964), - [anon_sym_BSLASHbiggl] = ACTIONS(5964), - [anon_sym_BSLASHBiggl] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5964), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5964), - [anon_sym_BSLASHgls] = ACTIONS(5964), - [anon_sym_BSLASHGls] = ACTIONS(5964), - [anon_sym_BSLASHGLS] = ACTIONS(5964), - [anon_sym_BSLASHglspl] = ACTIONS(5964), - [anon_sym_BSLASHGlspl] = ACTIONS(5964), - [anon_sym_BSLASHGLSpl] = ACTIONS(5964), - [anon_sym_BSLASHglsdisp] = ACTIONS(5964), - [anon_sym_BSLASHglslink] = ACTIONS(5964), - [anon_sym_BSLASHglstext] = ACTIONS(5964), - [anon_sym_BSLASHGlstext] = ACTIONS(5964), - [anon_sym_BSLASHGLStext] = ACTIONS(5964), - [anon_sym_BSLASHglsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5964), - [anon_sym_BSLASHglsplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSplural] = ACTIONS(5964), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHglsname] = ACTIONS(5964), - [anon_sym_BSLASHGlsname] = ACTIONS(5964), - [anon_sym_BSLASHGLSname] = ACTIONS(5964), - [anon_sym_BSLASHglssymbol] = ACTIONS(5964), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5964), - [anon_sym_BSLASHglsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5964), - [anon_sym_BSLASHglsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5964), - [anon_sym_BSLASHglsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5964), - [anon_sym_BSLASHglsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5964), - [anon_sym_BSLASHglsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5964), - [anon_sym_BSLASHnewacronym] = ACTIONS(5964), - [anon_sym_BSLASHacrshort] = ACTIONS(5964), - [anon_sym_BSLASHAcrshort] = ACTIONS(5964), - [anon_sym_BSLASHACRshort] = ACTIONS(5964), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5964), - [anon_sym_BSLASHacrlong] = ACTIONS(5964), - [anon_sym_BSLASHAcrlong] = ACTIONS(5964), - [anon_sym_BSLASHACRlong] = ACTIONS(5964), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5964), - [anon_sym_BSLASHacrfull] = ACTIONS(5964), - [anon_sym_BSLASHAcrfull] = ACTIONS(5964), - [anon_sym_BSLASHACRfull] = ACTIONS(5964), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5964), - [anon_sym_BSLASHacs] = ACTIONS(5964), - [anon_sym_BSLASHAcs] = ACTIONS(5964), - [anon_sym_BSLASHacsp] = ACTIONS(5964), - [anon_sym_BSLASHAcsp] = ACTIONS(5964), - [anon_sym_BSLASHacl] = ACTIONS(5964), - [anon_sym_BSLASHAcl] = ACTIONS(5964), - [anon_sym_BSLASHaclp] = ACTIONS(5964), - [anon_sym_BSLASHAclp] = ACTIONS(5964), - [anon_sym_BSLASHacf] = ACTIONS(5964), - [anon_sym_BSLASHAcf] = ACTIONS(5964), - [anon_sym_BSLASHacfp] = ACTIONS(5964), - [anon_sym_BSLASHAcfp] = ACTIONS(5964), - [anon_sym_BSLASHac] = ACTIONS(5964), - [anon_sym_BSLASHAc] = ACTIONS(5964), - [anon_sym_BSLASHacp] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5964), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5964), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5964), - [anon_sym_BSLASHcolor] = ACTIONS(5964), - [anon_sym_BSLASHcolorbox] = ACTIONS(5964), - [anon_sym_BSLASHtextcolor] = ACTIONS(5964), - [anon_sym_BSLASHpagecolor] = ACTIONS(5964), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5964), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5964), - [anon_sym_BSLASHtext] = ACTIONS(5964), - [anon_sym_BSLASHintertext] = ACTIONS(5964), - [anon_sym_shortintertext] = ACTIONS(5964), - }, - [886] = { - [sym_curly_group] = STATE(1113), - [aux_sym_generic_command_repeat1] = STATE(897), - [sym_command_name] = ACTIONS(5983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5983), - [anon_sym_LBRACK] = ACTIONS(5985), - [anon_sym_RBRACK] = ACTIONS(5985), - [anon_sym_COMMA] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(5985), - [anon_sym_LPAREN] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_BSLASHpart] = ACTIONS(5983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddpart] = ACTIONS(5983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5985), - [anon_sym_BSLASHchapter] = ACTIONS(5983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddchap] = ACTIONS(5983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsection] = ACTIONS(5983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddsec] = ACTIONS(5983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubsection] = ACTIONS(5983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHparagraph] = ACTIONS(5983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5985), - [anon_sym_BSLASHitem] = ACTIONS(5983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(5983), - [sym_placeholder] = ACTIONS(5985), - [anon_sym_PLUS] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(5985), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_SLASH] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(5983), - [anon_sym_GT] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5983), - [anon_sym_PIPE] = ACTIONS(5983), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_SQUOTE] = ACTIONS(5983), - [anon_sym__] = ACTIONS(5985), - [anon_sym_CARET] = ACTIONS(5985), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(5983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), - [anon_sym_BSLASHbegin] = ACTIONS(5983), - [anon_sym_BSLASHend] = ACTIONS(5983), - [anon_sym_BSLASHtitle] = ACTIONS(5983), - [anon_sym_BSLASHauthor] = ACTIONS(5983), - [anon_sym_BSLASHusepackage] = ACTIONS(5983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), - [anon_sym_BSLASHinclude] = ACTIONS(5983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), - [anon_sym_BSLASHinput] = ACTIONS(5983), - [anon_sym_BSLASHsubfile] = ACTIONS(5983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), - [anon_sym_BSLASHbibliography] = ACTIONS(5983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), - [anon_sym_BSLASHincludesvg] = ACTIONS(5983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), - [anon_sym_BSLASHimport] = ACTIONS(5983), - [anon_sym_BSLASHsubimport] = ACTIONS(5983), - [anon_sym_BSLASHinputfrom] = ACTIONS(5983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), - [anon_sym_BSLASHincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHcaption] = ACTIONS(5983), - [anon_sym_BSLASHcite] = ACTIONS(5983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCite] = ACTIONS(5983), - [anon_sym_BSLASHnocite] = ACTIONS(5983), - [anon_sym_BSLASHcitet] = ACTIONS(5983), - [anon_sym_BSLASHcitep] = ACTIONS(5983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteauthor] = ACTIONS(5983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitetitle] = ACTIONS(5983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteyear] = ACTIONS(5983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitedate] = ACTIONS(5983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteurl] = ACTIONS(5983), - [anon_sym_BSLASHfullcite] = ACTIONS(5983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), - [anon_sym_BSLASHcitealt] = ACTIONS(5983), - [anon_sym_BSLASHcitealp] = ACTIONS(5983), - [anon_sym_BSLASHcitetext] = ACTIONS(5983), - [anon_sym_BSLASHparencite] = ACTIONS(5983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHParencite] = ACTIONS(5983), - [anon_sym_BSLASHfootcite] = ACTIONS(5983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), - [anon_sym_BSLASHtextcite] = ACTIONS(5983), - [anon_sym_BSLASHTextcite] = ACTIONS(5983), - [anon_sym_BSLASHsmartcite] = ACTIONS(5983), - [anon_sym_BSLASHSmartcite] = ACTIONS(5983), - [anon_sym_BSLASHsupercite] = ACTIONS(5983), - [anon_sym_BSLASHautocite] = ACTIONS(5983), - [anon_sym_BSLASHAutocite] = ACTIONS(5983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHvolcite] = ACTIONS(5983), - [anon_sym_BSLASHVolcite] = ACTIONS(5983), - [anon_sym_BSLASHpvolcite] = ACTIONS(5983), - [anon_sym_BSLASHPvolcite] = ACTIONS(5983), - [anon_sym_BSLASHfvolcite] = ACTIONS(5983), - [anon_sym_BSLASHftvolcite] = ACTIONS(5983), - [anon_sym_BSLASHsvolcite] = ACTIONS(5983), - [anon_sym_BSLASHSvolcite] = ACTIONS(5983), - [anon_sym_BSLASHtvolcite] = ACTIONS(5983), - [anon_sym_BSLASHTvolcite] = ACTIONS(5983), - [anon_sym_BSLASHavolcite] = ACTIONS(5983), - [anon_sym_BSLASHAvolcite] = ACTIONS(5983), - [anon_sym_BSLASHnotecite] = ACTIONS(5983), - [anon_sym_BSLASHNotecite] = ACTIONS(5983), - [anon_sym_BSLASHpnotecite] = ACTIONS(5983), - [anon_sym_BSLASHPnotecite] = ACTIONS(5983), - [anon_sym_BSLASHfnotecite] = ACTIONS(5983), - [anon_sym_BSLASHlabel] = ACTIONS(5983), - [anon_sym_BSLASHref] = ACTIONS(5983), - [anon_sym_BSLASHeqref] = ACTIONS(5983), - [anon_sym_BSLASHvref] = ACTIONS(5983), - [anon_sym_BSLASHVref] = ACTIONS(5983), - [anon_sym_BSLASHautoref] = ACTIONS(5983), - [anon_sym_BSLASHpageref] = ACTIONS(5983), - [anon_sym_BSLASHcref] = ACTIONS(5983), - [anon_sym_BSLASHCref] = ACTIONS(5983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnameCref] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHlabelcref] = ACTIONS(5983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCrefrange] = ACTIONS(5983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnewlabel] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHdef] = ACTIONS(5983), - [anon_sym_BSLASHlet] = ACTIONS(5983), - [anon_sym_BSLASHleft] = ACTIONS(5983), - [anon_sym_BSLASHbig] = ACTIONS(5983), - [anon_sym_BSLASHBig] = ACTIONS(5983), - [anon_sym_BSLASHbigg] = ACTIONS(5983), - [anon_sym_BSLASHBigg] = ACTIONS(5983), - [anon_sym_BSLASHbigl] = ACTIONS(5983), - [anon_sym_BSLASHBigl] = ACTIONS(5983), - [anon_sym_BSLASHbiggl] = ACTIONS(5983), - [anon_sym_BSLASHBiggl] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), - [anon_sym_BSLASHgls] = ACTIONS(5983), - [anon_sym_BSLASHGls] = ACTIONS(5983), - [anon_sym_BSLASHGLS] = ACTIONS(5983), - [anon_sym_BSLASHglspl] = ACTIONS(5983), - [anon_sym_BSLASHGlspl] = ACTIONS(5983), - [anon_sym_BSLASHGLSpl] = ACTIONS(5983), - [anon_sym_BSLASHglsdisp] = ACTIONS(5983), - [anon_sym_BSLASHglslink] = ACTIONS(5983), - [anon_sym_BSLASHglstext] = ACTIONS(5983), - [anon_sym_BSLASHGlstext] = ACTIONS(5983), - [anon_sym_BSLASHGLStext] = ACTIONS(5983), - [anon_sym_BSLASHglsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), - [anon_sym_BSLASHglsplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSplural] = ACTIONS(5983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHglsname] = ACTIONS(5983), - [anon_sym_BSLASHGlsname] = ACTIONS(5983), - [anon_sym_BSLASHGLSname] = ACTIONS(5983), - [anon_sym_BSLASHglssymbol] = ACTIONS(5983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), - [anon_sym_BSLASHglsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), - [anon_sym_BSLASHglsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), - [anon_sym_BSLASHglsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), - [anon_sym_BSLASHglsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), - [anon_sym_BSLASHglsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), - [anon_sym_BSLASHnewacronym] = ACTIONS(5983), - [anon_sym_BSLASHacrshort] = ACTIONS(5983), - [anon_sym_BSLASHAcrshort] = ACTIONS(5983), - [anon_sym_BSLASHACRshort] = ACTIONS(5983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), - [anon_sym_BSLASHacrlong] = ACTIONS(5983), - [anon_sym_BSLASHAcrlong] = ACTIONS(5983), - [anon_sym_BSLASHACRlong] = ACTIONS(5983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), - [anon_sym_BSLASHacrfull] = ACTIONS(5983), - [anon_sym_BSLASHAcrfull] = ACTIONS(5983), - [anon_sym_BSLASHACRfull] = ACTIONS(5983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), - [anon_sym_BSLASHacs] = ACTIONS(5983), - [anon_sym_BSLASHAcs] = ACTIONS(5983), - [anon_sym_BSLASHacsp] = ACTIONS(5983), - [anon_sym_BSLASHAcsp] = ACTIONS(5983), - [anon_sym_BSLASHacl] = ACTIONS(5983), - [anon_sym_BSLASHAcl] = ACTIONS(5983), - [anon_sym_BSLASHaclp] = ACTIONS(5983), - [anon_sym_BSLASHAclp] = ACTIONS(5983), - [anon_sym_BSLASHacf] = ACTIONS(5983), - [anon_sym_BSLASHAcf] = ACTIONS(5983), - [anon_sym_BSLASHacfp] = ACTIONS(5983), - [anon_sym_BSLASHAcfp] = ACTIONS(5983), - [anon_sym_BSLASHac] = ACTIONS(5983), - [anon_sym_BSLASHAc] = ACTIONS(5983), - [anon_sym_BSLASHacp] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), - [anon_sym_BSLASHcolor] = ACTIONS(5983), - [anon_sym_BSLASHcolorbox] = ACTIONS(5983), - [anon_sym_BSLASHtextcolor] = ACTIONS(5983), - [anon_sym_BSLASHpagecolor] = ACTIONS(5983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), - [anon_sym_BSLASHtext] = ACTIONS(5983), - [anon_sym_BSLASHintertext] = ACTIONS(5983), - [anon_sym_shortintertext] = ACTIONS(5983), - }, - [887] = { - [sym_curly_group] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(6023), - [sym_command_name] = ACTIONS(6021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6021), - [anon_sym_LBRACK] = ACTIONS(6023), - [anon_sym_RBRACK] = ACTIONS(6023), - [anon_sym_COMMA] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(6023), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_RPAREN] = ACTIONS(6023), - [anon_sym_BSLASHpart] = ACTIONS(6021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddpart] = ACTIONS(6021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6023), - [anon_sym_BSLASHchapter] = ACTIONS(6021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddchap] = ACTIONS(6021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsection] = ACTIONS(6021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddsec] = ACTIONS(6021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubsection] = ACTIONS(6021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHparagraph] = ACTIONS(6021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6023), - [anon_sym_BSLASHitem] = ACTIONS(6021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6023), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(6023), - [sym_word] = ACTIONS(6021), - [sym_placeholder] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6023), - [anon_sym_DASH] = ACTIONS(6023), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6023), - [anon_sym_LT] = ACTIONS(6021), - [anon_sym_GT] = ACTIONS(6021), - [anon_sym_BANG] = ACTIONS(6021), - [anon_sym_PIPE] = ACTIONS(6021), - [anon_sym_COLON] = ACTIONS(6021), - [anon_sym_SQUOTE] = ACTIONS(6021), - [anon_sym__] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), - [anon_sym_BSLASHbegin] = ACTIONS(6021), - [anon_sym_BSLASHtitle] = ACTIONS(6021), - [anon_sym_BSLASHauthor] = ACTIONS(6021), - [anon_sym_BSLASHusepackage] = ACTIONS(6021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), - [anon_sym_BSLASHinclude] = ACTIONS(6021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), - [anon_sym_BSLASHinput] = ACTIONS(6021), - [anon_sym_BSLASHsubfile] = ACTIONS(6021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), - [anon_sym_BSLASHbibliography] = ACTIONS(6021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), - [anon_sym_BSLASHincludesvg] = ACTIONS(6021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), - [anon_sym_BSLASHimport] = ACTIONS(6021), - [anon_sym_BSLASHsubimport] = ACTIONS(6021), - [anon_sym_BSLASHinputfrom] = ACTIONS(6021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), - [anon_sym_BSLASHincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHcaption] = ACTIONS(6021), - [anon_sym_BSLASHcite] = ACTIONS(6021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCite] = ACTIONS(6021), - [anon_sym_BSLASHnocite] = ACTIONS(6021), - [anon_sym_BSLASHcitet] = ACTIONS(6021), - [anon_sym_BSLASHcitep] = ACTIONS(6021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteauthor] = ACTIONS(6021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitetitle] = ACTIONS(6021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteyear] = ACTIONS(6021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitedate] = ACTIONS(6021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteurl] = ACTIONS(6021), - [anon_sym_BSLASHfullcite] = ACTIONS(6021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), - [anon_sym_BSLASHcitealt] = ACTIONS(6021), - [anon_sym_BSLASHcitealp] = ACTIONS(6021), - [anon_sym_BSLASHcitetext] = ACTIONS(6021), - [anon_sym_BSLASHparencite] = ACTIONS(6021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHParencite] = ACTIONS(6021), - [anon_sym_BSLASHfootcite] = ACTIONS(6021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), - [anon_sym_BSLASHtextcite] = ACTIONS(6021), - [anon_sym_BSLASHTextcite] = ACTIONS(6021), - [anon_sym_BSLASHsmartcite] = ACTIONS(6021), - [anon_sym_BSLASHSmartcite] = ACTIONS(6021), - [anon_sym_BSLASHsupercite] = ACTIONS(6021), - [anon_sym_BSLASHautocite] = ACTIONS(6021), - [anon_sym_BSLASHAutocite] = ACTIONS(6021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHvolcite] = ACTIONS(6021), - [anon_sym_BSLASHVolcite] = ACTIONS(6021), - [anon_sym_BSLASHpvolcite] = ACTIONS(6021), - [anon_sym_BSLASHPvolcite] = ACTIONS(6021), - [anon_sym_BSLASHfvolcite] = ACTIONS(6021), - [anon_sym_BSLASHftvolcite] = ACTIONS(6021), - [anon_sym_BSLASHsvolcite] = ACTIONS(6021), - [anon_sym_BSLASHSvolcite] = ACTIONS(6021), - [anon_sym_BSLASHtvolcite] = ACTIONS(6021), - [anon_sym_BSLASHTvolcite] = ACTIONS(6021), - [anon_sym_BSLASHavolcite] = ACTIONS(6021), - [anon_sym_BSLASHAvolcite] = ACTIONS(6021), - [anon_sym_BSLASHnotecite] = ACTIONS(6021), - [anon_sym_BSLASHNotecite] = ACTIONS(6021), - [anon_sym_BSLASHpnotecite] = ACTIONS(6021), - [anon_sym_BSLASHPnotecite] = ACTIONS(6021), - [anon_sym_BSLASHfnotecite] = ACTIONS(6021), - [anon_sym_BSLASHlabel] = ACTIONS(6021), - [anon_sym_BSLASHref] = ACTIONS(6021), - [anon_sym_BSLASHeqref] = ACTIONS(6021), - [anon_sym_BSLASHvref] = ACTIONS(6021), - [anon_sym_BSLASHVref] = ACTIONS(6021), - [anon_sym_BSLASHautoref] = ACTIONS(6021), - [anon_sym_BSLASHpageref] = ACTIONS(6021), - [anon_sym_BSLASHcref] = ACTIONS(6021), - [anon_sym_BSLASHCref] = ACTIONS(6021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnameCref] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHlabelcref] = ACTIONS(6021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCrefrange] = ACTIONS(6021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnewlabel] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHdef] = ACTIONS(6021), - [anon_sym_BSLASHlet] = ACTIONS(6021), - [anon_sym_BSLASHleft] = ACTIONS(6021), - [anon_sym_BSLASHbig] = ACTIONS(6021), - [anon_sym_BSLASHBig] = ACTIONS(6021), - [anon_sym_BSLASHbigg] = ACTIONS(6021), - [anon_sym_BSLASHBigg] = ACTIONS(6021), - [anon_sym_BSLASHbigl] = ACTIONS(6021), - [anon_sym_BSLASHBigl] = ACTIONS(6021), - [anon_sym_BSLASHbiggl] = ACTIONS(6021), - [anon_sym_BSLASHBiggl] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), - [anon_sym_BSLASHgls] = ACTIONS(6021), - [anon_sym_BSLASHGls] = ACTIONS(6021), - [anon_sym_BSLASHGLS] = ACTIONS(6021), - [anon_sym_BSLASHglspl] = ACTIONS(6021), - [anon_sym_BSLASHGlspl] = ACTIONS(6021), - [anon_sym_BSLASHGLSpl] = ACTIONS(6021), - [anon_sym_BSLASHglsdisp] = ACTIONS(6021), - [anon_sym_BSLASHglslink] = ACTIONS(6021), - [anon_sym_BSLASHglstext] = ACTIONS(6021), - [anon_sym_BSLASHGlstext] = ACTIONS(6021), - [anon_sym_BSLASHGLStext] = ACTIONS(6021), - [anon_sym_BSLASHglsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), - [anon_sym_BSLASHglsplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSplural] = ACTIONS(6021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHglsname] = ACTIONS(6021), - [anon_sym_BSLASHGlsname] = ACTIONS(6021), - [anon_sym_BSLASHGLSname] = ACTIONS(6021), - [anon_sym_BSLASHglssymbol] = ACTIONS(6021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), - [anon_sym_BSLASHglsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), - [anon_sym_BSLASHglsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), - [anon_sym_BSLASHglsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), - [anon_sym_BSLASHglsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), - [anon_sym_BSLASHglsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), - [anon_sym_BSLASHnewacronym] = ACTIONS(6021), - [anon_sym_BSLASHacrshort] = ACTIONS(6021), - [anon_sym_BSLASHAcrshort] = ACTIONS(6021), - [anon_sym_BSLASHACRshort] = ACTIONS(6021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), - [anon_sym_BSLASHacrlong] = ACTIONS(6021), - [anon_sym_BSLASHAcrlong] = ACTIONS(6021), - [anon_sym_BSLASHACRlong] = ACTIONS(6021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), - [anon_sym_BSLASHacrfull] = ACTIONS(6021), - [anon_sym_BSLASHAcrfull] = ACTIONS(6021), - [anon_sym_BSLASHACRfull] = ACTIONS(6021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), - [anon_sym_BSLASHacs] = ACTIONS(6021), - [anon_sym_BSLASHAcs] = ACTIONS(6021), - [anon_sym_BSLASHacsp] = ACTIONS(6021), - [anon_sym_BSLASHAcsp] = ACTIONS(6021), - [anon_sym_BSLASHacl] = ACTIONS(6021), - [anon_sym_BSLASHAcl] = ACTIONS(6021), - [anon_sym_BSLASHaclp] = ACTIONS(6021), - [anon_sym_BSLASHAclp] = ACTIONS(6021), - [anon_sym_BSLASHacf] = ACTIONS(6021), - [anon_sym_BSLASHAcf] = ACTIONS(6021), - [anon_sym_BSLASHacfp] = ACTIONS(6021), - [anon_sym_BSLASHAcfp] = ACTIONS(6021), - [anon_sym_BSLASHac] = ACTIONS(6021), - [anon_sym_BSLASHAc] = ACTIONS(6021), - [anon_sym_BSLASHacp] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), - [anon_sym_BSLASHcolor] = ACTIONS(6021), - [anon_sym_BSLASHcolorbox] = ACTIONS(6021), - [anon_sym_BSLASHtextcolor] = ACTIONS(6021), - [anon_sym_BSLASHpagecolor] = ACTIONS(6021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), - [anon_sym_BSLASHtext] = ACTIONS(6021), - [anon_sym_BSLASHintertext] = ACTIONS(6021), - [anon_sym_shortintertext] = ACTIONS(6021), - }, - [888] = { - [sym_curly_group] = STATE(960), - [sym_brack_group_text] = STATE(2952), - [sym_command_name] = ACTIONS(5987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5991), - [anon_sym_COMMA] = ACTIONS(5991), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_LPAREN] = ACTIONS(5991), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_BSLASHpart] = ACTIONS(5987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddpart] = ACTIONS(5987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5991), - [anon_sym_BSLASHchapter] = ACTIONS(5987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddchap] = ACTIONS(5987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsection] = ACTIONS(5987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddsec] = ACTIONS(5987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubsection] = ACTIONS(5987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHparagraph] = ACTIONS(5987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5991), - [anon_sym_BSLASHitem] = ACTIONS(5987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5991), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(5987), - [sym_placeholder] = ACTIONS(5991), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_SQUOTE] = ACTIONS(5987), - [anon_sym__] = ACTIONS(5991), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5991), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5991), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(5987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5991), - [anon_sym_BSLASHbegin] = ACTIONS(5987), - [anon_sym_BSLASHtitle] = ACTIONS(5987), - [anon_sym_BSLASHauthor] = ACTIONS(5987), - [anon_sym_BSLASHusepackage] = ACTIONS(5987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), - [anon_sym_BSLASHinclude] = ACTIONS(5987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), - [anon_sym_BSLASHinput] = ACTIONS(5987), - [anon_sym_BSLASHsubfile] = ACTIONS(5987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), - [anon_sym_BSLASHbibliography] = ACTIONS(5987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), - [anon_sym_BSLASHincludesvg] = ACTIONS(5987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), - [anon_sym_BSLASHimport] = ACTIONS(5987), - [anon_sym_BSLASHsubimport] = ACTIONS(5987), - [anon_sym_BSLASHinputfrom] = ACTIONS(5987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), - [anon_sym_BSLASHincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHcaption] = ACTIONS(5987), - [anon_sym_BSLASHcite] = ACTIONS(5987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCite] = ACTIONS(5987), - [anon_sym_BSLASHnocite] = ACTIONS(5987), - [anon_sym_BSLASHcitet] = ACTIONS(5987), - [anon_sym_BSLASHcitep] = ACTIONS(5987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteauthor] = ACTIONS(5987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitetitle] = ACTIONS(5987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteyear] = ACTIONS(5987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitedate] = ACTIONS(5987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteurl] = ACTIONS(5987), - [anon_sym_BSLASHfullcite] = ACTIONS(5987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), - [anon_sym_BSLASHcitealt] = ACTIONS(5987), - [anon_sym_BSLASHcitealp] = ACTIONS(5987), - [anon_sym_BSLASHcitetext] = ACTIONS(5987), - [anon_sym_BSLASHparencite] = ACTIONS(5987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHParencite] = ACTIONS(5987), - [anon_sym_BSLASHfootcite] = ACTIONS(5987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), - [anon_sym_BSLASHtextcite] = ACTIONS(5987), - [anon_sym_BSLASHTextcite] = ACTIONS(5987), - [anon_sym_BSLASHsmartcite] = ACTIONS(5987), - [anon_sym_BSLASHSmartcite] = ACTIONS(5987), - [anon_sym_BSLASHsupercite] = ACTIONS(5987), - [anon_sym_BSLASHautocite] = ACTIONS(5987), - [anon_sym_BSLASHAutocite] = ACTIONS(5987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHvolcite] = ACTIONS(5987), - [anon_sym_BSLASHVolcite] = ACTIONS(5987), - [anon_sym_BSLASHpvolcite] = ACTIONS(5987), - [anon_sym_BSLASHPvolcite] = ACTIONS(5987), - [anon_sym_BSLASHfvolcite] = ACTIONS(5987), - [anon_sym_BSLASHftvolcite] = ACTIONS(5987), - [anon_sym_BSLASHsvolcite] = ACTIONS(5987), - [anon_sym_BSLASHSvolcite] = ACTIONS(5987), - [anon_sym_BSLASHtvolcite] = ACTIONS(5987), - [anon_sym_BSLASHTvolcite] = ACTIONS(5987), - [anon_sym_BSLASHavolcite] = ACTIONS(5987), - [anon_sym_BSLASHAvolcite] = ACTIONS(5987), - [anon_sym_BSLASHnotecite] = ACTIONS(5987), - [anon_sym_BSLASHNotecite] = ACTIONS(5987), - [anon_sym_BSLASHpnotecite] = ACTIONS(5987), - [anon_sym_BSLASHPnotecite] = ACTIONS(5987), - [anon_sym_BSLASHfnotecite] = ACTIONS(5987), - [anon_sym_BSLASHlabel] = ACTIONS(5987), - [anon_sym_BSLASHref] = ACTIONS(5987), - [anon_sym_BSLASHeqref] = ACTIONS(5987), - [anon_sym_BSLASHvref] = ACTIONS(5987), - [anon_sym_BSLASHVref] = ACTIONS(5987), - [anon_sym_BSLASHautoref] = ACTIONS(5987), - [anon_sym_BSLASHpageref] = ACTIONS(5987), - [anon_sym_BSLASHcref] = ACTIONS(5987), - [anon_sym_BSLASHCref] = ACTIONS(5987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnameCref] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHlabelcref] = ACTIONS(5987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCrefrange] = ACTIONS(5987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnewlabel] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5991), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHdef] = ACTIONS(5987), - [anon_sym_BSLASHlet] = ACTIONS(5987), - [anon_sym_BSLASHleft] = ACTIONS(5987), - [anon_sym_BSLASHbig] = ACTIONS(5987), - [anon_sym_BSLASHBig] = ACTIONS(5987), - [anon_sym_BSLASHbigg] = ACTIONS(5987), - [anon_sym_BSLASHBigg] = ACTIONS(5987), - [anon_sym_BSLASHbigl] = ACTIONS(5987), - [anon_sym_BSLASHBigl] = ACTIONS(5987), - [anon_sym_BSLASHbiggl] = ACTIONS(5987), - [anon_sym_BSLASHBiggl] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), - [anon_sym_BSLASHgls] = ACTIONS(5987), - [anon_sym_BSLASHGls] = ACTIONS(5987), - [anon_sym_BSLASHGLS] = ACTIONS(5987), - [anon_sym_BSLASHglspl] = ACTIONS(5987), - [anon_sym_BSLASHGlspl] = ACTIONS(5987), - [anon_sym_BSLASHGLSpl] = ACTIONS(5987), - [anon_sym_BSLASHglsdisp] = ACTIONS(5987), - [anon_sym_BSLASHglslink] = ACTIONS(5987), - [anon_sym_BSLASHglstext] = ACTIONS(5987), - [anon_sym_BSLASHGlstext] = ACTIONS(5987), - [anon_sym_BSLASHGLStext] = ACTIONS(5987), - [anon_sym_BSLASHglsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), - [anon_sym_BSLASHglsplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSplural] = ACTIONS(5987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHglsname] = ACTIONS(5987), - [anon_sym_BSLASHGlsname] = ACTIONS(5987), - [anon_sym_BSLASHGLSname] = ACTIONS(5987), - [anon_sym_BSLASHglssymbol] = ACTIONS(5987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), - [anon_sym_BSLASHglsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), - [anon_sym_BSLASHglsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), - [anon_sym_BSLASHglsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), - [anon_sym_BSLASHglsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), - [anon_sym_BSLASHglsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), - [anon_sym_BSLASHnewacronym] = ACTIONS(5987), - [anon_sym_BSLASHacrshort] = ACTIONS(5987), - [anon_sym_BSLASHAcrshort] = ACTIONS(5987), - [anon_sym_BSLASHACRshort] = ACTIONS(5987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), - [anon_sym_BSLASHacrlong] = ACTIONS(5987), - [anon_sym_BSLASHAcrlong] = ACTIONS(5987), - [anon_sym_BSLASHACRlong] = ACTIONS(5987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), - [anon_sym_BSLASHacrfull] = ACTIONS(5987), - [anon_sym_BSLASHAcrfull] = ACTIONS(5987), - [anon_sym_BSLASHACRfull] = ACTIONS(5987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), - [anon_sym_BSLASHacs] = ACTIONS(5987), - [anon_sym_BSLASHAcs] = ACTIONS(5987), - [anon_sym_BSLASHacsp] = ACTIONS(5987), - [anon_sym_BSLASHAcsp] = ACTIONS(5987), - [anon_sym_BSLASHacl] = ACTIONS(5987), - [anon_sym_BSLASHAcl] = ACTIONS(5987), - [anon_sym_BSLASHaclp] = ACTIONS(5987), - [anon_sym_BSLASHAclp] = ACTIONS(5987), - [anon_sym_BSLASHacf] = ACTIONS(5987), - [anon_sym_BSLASHAcf] = ACTIONS(5987), - [anon_sym_BSLASHacfp] = ACTIONS(5987), - [anon_sym_BSLASHAcfp] = ACTIONS(5987), - [anon_sym_BSLASHac] = ACTIONS(5987), - [anon_sym_BSLASHAc] = ACTIONS(5987), - [anon_sym_BSLASHacp] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), - [anon_sym_BSLASHcolor] = ACTIONS(5987), - [anon_sym_BSLASHcolorbox] = ACTIONS(5987), - [anon_sym_BSLASHtextcolor] = ACTIONS(5987), - [anon_sym_BSLASHpagecolor] = ACTIONS(5987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), - [anon_sym_BSLASHtext] = ACTIONS(5987), - [anon_sym_BSLASHintertext] = ACTIONS(5987), - [anon_sym_shortintertext] = ACTIONS(5987), - }, - [889] = { - [sym_curly_group] = STATE(925), - [sym_brack_group_text] = STATE(2697), - [sym_command_name] = ACTIONS(5993), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5995), - [anon_sym_COMMA] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(5995), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_BSLASHpart] = ACTIONS(5993), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddpart] = ACTIONS(5993), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5995), - [anon_sym_BSLASHchapter] = ACTIONS(5993), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddchap] = ACTIONS(5993), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsection] = ACTIONS(5993), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddsec] = ACTIONS(5993), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubsection] = ACTIONS(5993), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5993), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHparagraph] = ACTIONS(5993), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5993), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5995), - [anon_sym_BSLASHitem] = ACTIONS(5993), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5995), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(5993), - [sym_placeholder] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_BANG] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_SQUOTE] = ACTIONS(5993), - [anon_sym__] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5993), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5995), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5995), - [anon_sym_BSLASHbegin] = ACTIONS(5993), - [anon_sym_BSLASHtitle] = ACTIONS(5993), - [anon_sym_BSLASHauthor] = ACTIONS(5993), - [anon_sym_BSLASHusepackage] = ACTIONS(5993), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5993), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5993), - [anon_sym_BSLASHinclude] = ACTIONS(5993), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5993), - [anon_sym_BSLASHinput] = ACTIONS(5993), - [anon_sym_BSLASHsubfile] = ACTIONS(5993), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5993), - [anon_sym_BSLASHbibliography] = ACTIONS(5993), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5993), - [anon_sym_BSLASHincludesvg] = ACTIONS(5993), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5993), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5993), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5993), - [anon_sym_BSLASHimport] = ACTIONS(5993), - [anon_sym_BSLASHsubimport] = ACTIONS(5993), - [anon_sym_BSLASHinputfrom] = ACTIONS(5993), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5993), - [anon_sym_BSLASHincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHcaption] = ACTIONS(5993), - [anon_sym_BSLASHcite] = ACTIONS(5993), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCite] = ACTIONS(5993), - [anon_sym_BSLASHnocite] = ACTIONS(5993), - [anon_sym_BSLASHcitet] = ACTIONS(5993), - [anon_sym_BSLASHcitep] = ACTIONS(5993), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteauthor] = ACTIONS(5993), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5993), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitetitle] = ACTIONS(5993), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteyear] = ACTIONS(5993), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitedate] = ACTIONS(5993), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteurl] = ACTIONS(5993), - [anon_sym_BSLASHfullcite] = ACTIONS(5993), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5993), - [anon_sym_BSLASHcitealt] = ACTIONS(5993), - [anon_sym_BSLASHcitealp] = ACTIONS(5993), - [anon_sym_BSLASHcitetext] = ACTIONS(5993), - [anon_sym_BSLASHparencite] = ACTIONS(5993), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHParencite] = ACTIONS(5993), - [anon_sym_BSLASHfootcite] = ACTIONS(5993), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5993), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5993), - [anon_sym_BSLASHtextcite] = ACTIONS(5993), - [anon_sym_BSLASHTextcite] = ACTIONS(5993), - [anon_sym_BSLASHsmartcite] = ACTIONS(5993), - [anon_sym_BSLASHSmartcite] = ACTIONS(5993), - [anon_sym_BSLASHsupercite] = ACTIONS(5993), - [anon_sym_BSLASHautocite] = ACTIONS(5993), - [anon_sym_BSLASHAutocite] = ACTIONS(5993), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHvolcite] = ACTIONS(5993), - [anon_sym_BSLASHVolcite] = ACTIONS(5993), - [anon_sym_BSLASHpvolcite] = ACTIONS(5993), - [anon_sym_BSLASHPvolcite] = ACTIONS(5993), - [anon_sym_BSLASHfvolcite] = ACTIONS(5993), - [anon_sym_BSLASHftvolcite] = ACTIONS(5993), - [anon_sym_BSLASHsvolcite] = ACTIONS(5993), - [anon_sym_BSLASHSvolcite] = ACTIONS(5993), - [anon_sym_BSLASHtvolcite] = ACTIONS(5993), - [anon_sym_BSLASHTvolcite] = ACTIONS(5993), - [anon_sym_BSLASHavolcite] = ACTIONS(5993), - [anon_sym_BSLASHAvolcite] = ACTIONS(5993), - [anon_sym_BSLASHnotecite] = ACTIONS(5993), - [anon_sym_BSLASHNotecite] = ACTIONS(5993), - [anon_sym_BSLASHpnotecite] = ACTIONS(5993), - [anon_sym_BSLASHPnotecite] = ACTIONS(5993), - [anon_sym_BSLASHfnotecite] = ACTIONS(5993), - [anon_sym_BSLASHlabel] = ACTIONS(5993), - [anon_sym_BSLASHref] = ACTIONS(5993), - [anon_sym_BSLASHeqref] = ACTIONS(5993), - [anon_sym_BSLASHvref] = ACTIONS(5993), - [anon_sym_BSLASHVref] = ACTIONS(5993), - [anon_sym_BSLASHautoref] = ACTIONS(5993), - [anon_sym_BSLASHpageref] = ACTIONS(5993), - [anon_sym_BSLASHcref] = ACTIONS(5993), - [anon_sym_BSLASHCref] = ACTIONS(5993), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnameCref] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHlabelcref] = ACTIONS(5993), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCrefrange] = ACTIONS(5993), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnewlabel] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5993), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5993), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5995), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHdef] = ACTIONS(5993), - [anon_sym_BSLASHlet] = ACTIONS(5993), - [anon_sym_BSLASHleft] = ACTIONS(5993), - [anon_sym_BSLASHbig] = ACTIONS(5993), - [anon_sym_BSLASHBig] = ACTIONS(5993), - [anon_sym_BSLASHbigg] = ACTIONS(5993), - [anon_sym_BSLASHBigg] = ACTIONS(5993), - [anon_sym_BSLASHbigl] = ACTIONS(5993), - [anon_sym_BSLASHBigl] = ACTIONS(5993), - [anon_sym_BSLASHbiggl] = ACTIONS(5993), - [anon_sym_BSLASHBiggl] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5993), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5993), - [anon_sym_BSLASHgls] = ACTIONS(5993), - [anon_sym_BSLASHGls] = ACTIONS(5993), - [anon_sym_BSLASHGLS] = ACTIONS(5993), - [anon_sym_BSLASHglspl] = ACTIONS(5993), - [anon_sym_BSLASHGlspl] = ACTIONS(5993), - [anon_sym_BSLASHGLSpl] = ACTIONS(5993), - [anon_sym_BSLASHglsdisp] = ACTIONS(5993), - [anon_sym_BSLASHglslink] = ACTIONS(5993), - [anon_sym_BSLASHglstext] = ACTIONS(5993), - [anon_sym_BSLASHGlstext] = ACTIONS(5993), - [anon_sym_BSLASHGLStext] = ACTIONS(5993), - [anon_sym_BSLASHglsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5993), - [anon_sym_BSLASHglsplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSplural] = ACTIONS(5993), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHglsname] = ACTIONS(5993), - [anon_sym_BSLASHGlsname] = ACTIONS(5993), - [anon_sym_BSLASHGLSname] = ACTIONS(5993), - [anon_sym_BSLASHglssymbol] = ACTIONS(5993), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5993), - [anon_sym_BSLASHglsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5993), - [anon_sym_BSLASHglsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5993), - [anon_sym_BSLASHglsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5993), - [anon_sym_BSLASHglsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5993), - [anon_sym_BSLASHglsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5993), - [anon_sym_BSLASHnewacronym] = ACTIONS(5993), - [anon_sym_BSLASHacrshort] = ACTIONS(5993), - [anon_sym_BSLASHAcrshort] = ACTIONS(5993), - [anon_sym_BSLASHACRshort] = ACTIONS(5993), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5993), - [anon_sym_BSLASHacrlong] = ACTIONS(5993), - [anon_sym_BSLASHAcrlong] = ACTIONS(5993), - [anon_sym_BSLASHACRlong] = ACTIONS(5993), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5993), - [anon_sym_BSLASHacrfull] = ACTIONS(5993), - [anon_sym_BSLASHAcrfull] = ACTIONS(5993), - [anon_sym_BSLASHACRfull] = ACTIONS(5993), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5993), - [anon_sym_BSLASHacs] = ACTIONS(5993), - [anon_sym_BSLASHAcs] = ACTIONS(5993), - [anon_sym_BSLASHacsp] = ACTIONS(5993), - [anon_sym_BSLASHAcsp] = ACTIONS(5993), - [anon_sym_BSLASHacl] = ACTIONS(5993), - [anon_sym_BSLASHAcl] = ACTIONS(5993), - [anon_sym_BSLASHaclp] = ACTIONS(5993), - [anon_sym_BSLASHAclp] = ACTIONS(5993), - [anon_sym_BSLASHacf] = ACTIONS(5993), - [anon_sym_BSLASHAcf] = ACTIONS(5993), - [anon_sym_BSLASHacfp] = ACTIONS(5993), - [anon_sym_BSLASHAcfp] = ACTIONS(5993), - [anon_sym_BSLASHac] = ACTIONS(5993), - [anon_sym_BSLASHAc] = ACTIONS(5993), - [anon_sym_BSLASHacp] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5993), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5993), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5993), - [anon_sym_BSLASHcolor] = ACTIONS(5993), - [anon_sym_BSLASHcolorbox] = ACTIONS(5993), - [anon_sym_BSLASHtextcolor] = ACTIONS(5993), - [anon_sym_BSLASHpagecolor] = ACTIONS(5993), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5993), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5993), - [anon_sym_BSLASHtext] = ACTIONS(5993), - [anon_sym_BSLASHintertext] = ACTIONS(5993), - [anon_sym_shortintertext] = ACTIONS(5993), - }, - [890] = { - [sym_curly_group] = STATE(1113), - [aux_sym_generic_command_repeat1] = STATE(890), - [sym_command_name] = ACTIONS(5976), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5976), - [anon_sym_LBRACK] = ACTIONS(5978), - [anon_sym_RBRACK] = ACTIONS(5978), - [anon_sym_COMMA] = ACTIONS(5978), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LPAREN] = ACTIONS(5978), - [anon_sym_RPAREN] = ACTIONS(5978), - [anon_sym_BSLASHpart] = ACTIONS(5976), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddpart] = ACTIONS(5976), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5978), - [anon_sym_BSLASHchapter] = ACTIONS(5976), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddchap] = ACTIONS(5976), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsection] = ACTIONS(5976), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddsec] = ACTIONS(5976), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubsection] = ACTIONS(5976), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5976), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHparagraph] = ACTIONS(5976), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5976), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5978), - [anon_sym_BSLASHitem] = ACTIONS(5976), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5978), - [anon_sym_LBRACE] = ACTIONS(6684), - [sym_word] = ACTIONS(5976), - [sym_placeholder] = ACTIONS(5978), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_STAR] = ACTIONS(5978), - [anon_sym_SLASH] = ACTIONS(5978), - [anon_sym_LT] = ACTIONS(5976), - [anon_sym_GT] = ACTIONS(5976), - [anon_sym_BANG] = ACTIONS(5976), - [anon_sym_PIPE] = ACTIONS(5976), - [anon_sym_COLON] = ACTIONS(5976), - [anon_sym_SQUOTE] = ACTIONS(5976), - [anon_sym__] = ACTIONS(5978), - [anon_sym_CARET] = ACTIONS(5978), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5978), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5978), - [anon_sym_DOLLAR] = ACTIONS(5976), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5978), - [anon_sym_BSLASHbegin] = ACTIONS(5976), - [anon_sym_BSLASHend] = ACTIONS(5976), - [anon_sym_BSLASHtitle] = ACTIONS(5976), - [anon_sym_BSLASHauthor] = ACTIONS(5976), - [anon_sym_BSLASHusepackage] = ACTIONS(5976), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5976), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5976), - [anon_sym_BSLASHinclude] = ACTIONS(5976), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5976), - [anon_sym_BSLASHinput] = ACTIONS(5976), - [anon_sym_BSLASHsubfile] = ACTIONS(5976), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5976), - [anon_sym_BSLASHbibliography] = ACTIONS(5976), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5976), - [anon_sym_BSLASHincludesvg] = ACTIONS(5976), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5976), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5976), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5976), - [anon_sym_BSLASHimport] = ACTIONS(5976), - [anon_sym_BSLASHsubimport] = ACTIONS(5976), - [anon_sym_BSLASHinputfrom] = ACTIONS(5976), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5976), - [anon_sym_BSLASHincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHcaption] = ACTIONS(5976), - [anon_sym_BSLASHcite] = ACTIONS(5976), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCite] = ACTIONS(5976), - [anon_sym_BSLASHnocite] = ACTIONS(5976), - [anon_sym_BSLASHcitet] = ACTIONS(5976), - [anon_sym_BSLASHcitep] = ACTIONS(5976), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteauthor] = ACTIONS(5976), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5976), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitetitle] = ACTIONS(5976), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteyear] = ACTIONS(5976), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitedate] = ACTIONS(5976), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteurl] = ACTIONS(5976), - [anon_sym_BSLASHfullcite] = ACTIONS(5976), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5976), - [anon_sym_BSLASHcitealt] = ACTIONS(5976), - [anon_sym_BSLASHcitealp] = ACTIONS(5976), - [anon_sym_BSLASHcitetext] = ACTIONS(5976), - [anon_sym_BSLASHparencite] = ACTIONS(5976), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHParencite] = ACTIONS(5976), - [anon_sym_BSLASHfootcite] = ACTIONS(5976), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5976), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5976), - [anon_sym_BSLASHtextcite] = ACTIONS(5976), - [anon_sym_BSLASHTextcite] = ACTIONS(5976), - [anon_sym_BSLASHsmartcite] = ACTIONS(5976), - [anon_sym_BSLASHSmartcite] = ACTIONS(5976), - [anon_sym_BSLASHsupercite] = ACTIONS(5976), - [anon_sym_BSLASHautocite] = ACTIONS(5976), - [anon_sym_BSLASHAutocite] = ACTIONS(5976), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHvolcite] = ACTIONS(5976), - [anon_sym_BSLASHVolcite] = ACTIONS(5976), - [anon_sym_BSLASHpvolcite] = ACTIONS(5976), - [anon_sym_BSLASHPvolcite] = ACTIONS(5976), - [anon_sym_BSLASHfvolcite] = ACTIONS(5976), - [anon_sym_BSLASHftvolcite] = ACTIONS(5976), - [anon_sym_BSLASHsvolcite] = ACTIONS(5976), - [anon_sym_BSLASHSvolcite] = ACTIONS(5976), - [anon_sym_BSLASHtvolcite] = ACTIONS(5976), - [anon_sym_BSLASHTvolcite] = ACTIONS(5976), - [anon_sym_BSLASHavolcite] = ACTIONS(5976), - [anon_sym_BSLASHAvolcite] = ACTIONS(5976), - [anon_sym_BSLASHnotecite] = ACTIONS(5976), - [anon_sym_BSLASHNotecite] = ACTIONS(5976), - [anon_sym_BSLASHpnotecite] = ACTIONS(5976), - [anon_sym_BSLASHPnotecite] = ACTIONS(5976), - [anon_sym_BSLASHfnotecite] = ACTIONS(5976), - [anon_sym_BSLASHlabel] = ACTIONS(5976), - [anon_sym_BSLASHref] = ACTIONS(5976), - [anon_sym_BSLASHeqref] = ACTIONS(5976), - [anon_sym_BSLASHvref] = ACTIONS(5976), - [anon_sym_BSLASHVref] = ACTIONS(5976), - [anon_sym_BSLASHautoref] = ACTIONS(5976), - [anon_sym_BSLASHpageref] = ACTIONS(5976), - [anon_sym_BSLASHcref] = ACTIONS(5976), - [anon_sym_BSLASHCref] = ACTIONS(5976), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnameCref] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHlabelcref] = ACTIONS(5976), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCrefrange] = ACTIONS(5976), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnewlabel] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5976), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5976), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5978), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHdef] = ACTIONS(5976), - [anon_sym_BSLASHlet] = ACTIONS(5976), - [anon_sym_BSLASHleft] = ACTIONS(5976), - [anon_sym_BSLASHbig] = ACTIONS(5976), - [anon_sym_BSLASHBig] = ACTIONS(5976), - [anon_sym_BSLASHbigg] = ACTIONS(5976), - [anon_sym_BSLASHBigg] = ACTIONS(5976), - [anon_sym_BSLASHbigl] = ACTIONS(5976), - [anon_sym_BSLASHBigl] = ACTIONS(5976), - [anon_sym_BSLASHbiggl] = ACTIONS(5976), - [anon_sym_BSLASHBiggl] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5976), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5976), - [anon_sym_BSLASHgls] = ACTIONS(5976), - [anon_sym_BSLASHGls] = ACTIONS(5976), - [anon_sym_BSLASHGLS] = ACTIONS(5976), - [anon_sym_BSLASHglspl] = ACTIONS(5976), - [anon_sym_BSLASHGlspl] = ACTIONS(5976), - [anon_sym_BSLASHGLSpl] = ACTIONS(5976), - [anon_sym_BSLASHglsdisp] = ACTIONS(5976), - [anon_sym_BSLASHglslink] = ACTIONS(5976), - [anon_sym_BSLASHglstext] = ACTIONS(5976), - [anon_sym_BSLASHGlstext] = ACTIONS(5976), - [anon_sym_BSLASHGLStext] = ACTIONS(5976), - [anon_sym_BSLASHglsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5976), - [anon_sym_BSLASHglsplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSplural] = ACTIONS(5976), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHglsname] = ACTIONS(5976), - [anon_sym_BSLASHGlsname] = ACTIONS(5976), - [anon_sym_BSLASHGLSname] = ACTIONS(5976), - [anon_sym_BSLASHglssymbol] = ACTIONS(5976), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5976), - [anon_sym_BSLASHglsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5976), - [anon_sym_BSLASHglsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5976), - [anon_sym_BSLASHglsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5976), - [anon_sym_BSLASHglsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5976), - [anon_sym_BSLASHglsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5976), - [anon_sym_BSLASHnewacronym] = ACTIONS(5976), - [anon_sym_BSLASHacrshort] = ACTIONS(5976), - [anon_sym_BSLASHAcrshort] = ACTIONS(5976), - [anon_sym_BSLASHACRshort] = ACTIONS(5976), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5976), - [anon_sym_BSLASHacrlong] = ACTIONS(5976), - [anon_sym_BSLASHAcrlong] = ACTIONS(5976), - [anon_sym_BSLASHACRlong] = ACTIONS(5976), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5976), - [anon_sym_BSLASHacrfull] = ACTIONS(5976), - [anon_sym_BSLASHAcrfull] = ACTIONS(5976), - [anon_sym_BSLASHACRfull] = ACTIONS(5976), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5976), - [anon_sym_BSLASHacs] = ACTIONS(5976), - [anon_sym_BSLASHAcs] = ACTIONS(5976), - [anon_sym_BSLASHacsp] = ACTIONS(5976), - [anon_sym_BSLASHAcsp] = ACTIONS(5976), - [anon_sym_BSLASHacl] = ACTIONS(5976), - [anon_sym_BSLASHAcl] = ACTIONS(5976), - [anon_sym_BSLASHaclp] = ACTIONS(5976), - [anon_sym_BSLASHAclp] = ACTIONS(5976), - [anon_sym_BSLASHacf] = ACTIONS(5976), - [anon_sym_BSLASHAcf] = ACTIONS(5976), - [anon_sym_BSLASHacfp] = ACTIONS(5976), - [anon_sym_BSLASHAcfp] = ACTIONS(5976), - [anon_sym_BSLASHac] = ACTIONS(5976), - [anon_sym_BSLASHAc] = ACTIONS(5976), - [anon_sym_BSLASHacp] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5976), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5976), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5976), - [anon_sym_BSLASHcolor] = ACTIONS(5976), - [anon_sym_BSLASHcolorbox] = ACTIONS(5976), - [anon_sym_BSLASHtextcolor] = ACTIONS(5976), - [anon_sym_BSLASHpagecolor] = ACTIONS(5976), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5976), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5976), - [anon_sym_BSLASHtext] = ACTIONS(5976), - [anon_sym_BSLASHintertext] = ACTIONS(5976), - [anon_sym_shortintertext] = ACTIONS(5976), - }, - [891] = { - [sym_brack_group_text] = STATE(937), - [ts_builtin_sym_end] = ACTIONS(6019), - [sym_command_name] = ACTIONS(6017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6017), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(6019), - [anon_sym_COMMA] = ACTIONS(6019), - [anon_sym_EQ] = ACTIONS(6019), - [anon_sym_LPAREN] = ACTIONS(6019), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_BSLASHpart] = ACTIONS(6017), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddpart] = ACTIONS(6017), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6019), - [anon_sym_BSLASHchapter] = ACTIONS(6017), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddchap] = ACTIONS(6017), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsection] = ACTIONS(6017), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddsec] = ACTIONS(6017), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubsection] = ACTIONS(6017), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6017), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHparagraph] = ACTIONS(6017), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6017), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6019), - [anon_sym_BSLASHitem] = ACTIONS(6017), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6019), - [anon_sym_LBRACE] = ACTIONS(6019), - [anon_sym_RBRACE] = ACTIONS(6019), - [sym_word] = ACTIONS(6017), - [sym_placeholder] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(6017), - [anon_sym_PIPE] = ACTIONS(6017), - [anon_sym_COLON] = ACTIONS(6017), - [anon_sym_SQUOTE] = ACTIONS(6017), - [anon_sym__] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), - [anon_sym_DOLLAR] = ACTIONS(6017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), - [anon_sym_BSLASHbegin] = ACTIONS(6017), - [anon_sym_BSLASHtitle] = ACTIONS(6017), - [anon_sym_BSLASHauthor] = ACTIONS(6017), - [anon_sym_BSLASHusepackage] = ACTIONS(6017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), - [anon_sym_BSLASHinclude] = ACTIONS(6017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), - [anon_sym_BSLASHinput] = ACTIONS(6017), - [anon_sym_BSLASHsubfile] = ACTIONS(6017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), - [anon_sym_BSLASHbibliography] = ACTIONS(6017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), - [anon_sym_BSLASHincludesvg] = ACTIONS(6017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), - [anon_sym_BSLASHimport] = ACTIONS(6017), - [anon_sym_BSLASHsubimport] = ACTIONS(6017), - [anon_sym_BSLASHinputfrom] = ACTIONS(6017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), - [anon_sym_BSLASHincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHcaption] = ACTIONS(6017), - [anon_sym_BSLASHcite] = ACTIONS(6017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCite] = ACTIONS(6017), - [anon_sym_BSLASHnocite] = ACTIONS(6017), - [anon_sym_BSLASHcitet] = ACTIONS(6017), - [anon_sym_BSLASHcitep] = ACTIONS(6017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteauthor] = ACTIONS(6017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitetitle] = ACTIONS(6017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteyear] = ACTIONS(6017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitedate] = ACTIONS(6017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteurl] = ACTIONS(6017), - [anon_sym_BSLASHfullcite] = ACTIONS(6017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), - [anon_sym_BSLASHcitealt] = ACTIONS(6017), - [anon_sym_BSLASHcitealp] = ACTIONS(6017), - [anon_sym_BSLASHcitetext] = ACTIONS(6017), - [anon_sym_BSLASHparencite] = ACTIONS(6017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHParencite] = ACTIONS(6017), - [anon_sym_BSLASHfootcite] = ACTIONS(6017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), - [anon_sym_BSLASHtextcite] = ACTIONS(6017), - [anon_sym_BSLASHTextcite] = ACTIONS(6017), - [anon_sym_BSLASHsmartcite] = ACTIONS(6017), - [anon_sym_BSLASHSmartcite] = ACTIONS(6017), - [anon_sym_BSLASHsupercite] = ACTIONS(6017), - [anon_sym_BSLASHautocite] = ACTIONS(6017), - [anon_sym_BSLASHAutocite] = ACTIONS(6017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHvolcite] = ACTIONS(6017), - [anon_sym_BSLASHVolcite] = ACTIONS(6017), - [anon_sym_BSLASHpvolcite] = ACTIONS(6017), - [anon_sym_BSLASHPvolcite] = ACTIONS(6017), - [anon_sym_BSLASHfvolcite] = ACTIONS(6017), - [anon_sym_BSLASHftvolcite] = ACTIONS(6017), - [anon_sym_BSLASHsvolcite] = ACTIONS(6017), - [anon_sym_BSLASHSvolcite] = ACTIONS(6017), - [anon_sym_BSLASHtvolcite] = ACTIONS(6017), - [anon_sym_BSLASHTvolcite] = ACTIONS(6017), - [anon_sym_BSLASHavolcite] = ACTIONS(6017), - [anon_sym_BSLASHAvolcite] = ACTIONS(6017), - [anon_sym_BSLASHnotecite] = ACTIONS(6017), - [anon_sym_BSLASHNotecite] = ACTIONS(6017), - [anon_sym_BSLASHpnotecite] = ACTIONS(6017), - [anon_sym_BSLASHPnotecite] = ACTIONS(6017), - [anon_sym_BSLASHfnotecite] = ACTIONS(6017), - [anon_sym_BSLASHlabel] = ACTIONS(6017), - [anon_sym_BSLASHref] = ACTIONS(6017), - [anon_sym_BSLASHeqref] = ACTIONS(6017), - [anon_sym_BSLASHvref] = ACTIONS(6017), - [anon_sym_BSLASHVref] = ACTIONS(6017), - [anon_sym_BSLASHautoref] = ACTIONS(6017), - [anon_sym_BSLASHpageref] = ACTIONS(6017), - [anon_sym_BSLASHcref] = ACTIONS(6017), - [anon_sym_BSLASHCref] = ACTIONS(6017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnameCref] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHlabelcref] = ACTIONS(6017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCrefrange] = ACTIONS(6017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnewlabel] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHdef] = ACTIONS(6017), - [anon_sym_BSLASHlet] = ACTIONS(6017), - [anon_sym_BSLASHleft] = ACTIONS(6017), - [anon_sym_BSLASHbig] = ACTIONS(6017), - [anon_sym_BSLASHBig] = ACTIONS(6017), - [anon_sym_BSLASHbigg] = ACTIONS(6017), - [anon_sym_BSLASHBigg] = ACTIONS(6017), - [anon_sym_BSLASHbigl] = ACTIONS(6017), - [anon_sym_BSLASHBigl] = ACTIONS(6017), - [anon_sym_BSLASHbiggl] = ACTIONS(6017), - [anon_sym_BSLASHBiggl] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), - [anon_sym_BSLASHgls] = ACTIONS(6017), - [anon_sym_BSLASHGls] = ACTIONS(6017), - [anon_sym_BSLASHGLS] = ACTIONS(6017), - [anon_sym_BSLASHglspl] = ACTIONS(6017), - [anon_sym_BSLASHGlspl] = ACTIONS(6017), - [anon_sym_BSLASHGLSpl] = ACTIONS(6017), - [anon_sym_BSLASHglsdisp] = ACTIONS(6017), - [anon_sym_BSLASHglslink] = ACTIONS(6017), - [anon_sym_BSLASHglstext] = ACTIONS(6017), - [anon_sym_BSLASHGlstext] = ACTIONS(6017), - [anon_sym_BSLASHGLStext] = ACTIONS(6017), - [anon_sym_BSLASHglsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), - [anon_sym_BSLASHglsplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSplural] = ACTIONS(6017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHglsname] = ACTIONS(6017), - [anon_sym_BSLASHGlsname] = ACTIONS(6017), - [anon_sym_BSLASHGLSname] = ACTIONS(6017), - [anon_sym_BSLASHglssymbol] = ACTIONS(6017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), - [anon_sym_BSLASHglsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), - [anon_sym_BSLASHglsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), - [anon_sym_BSLASHglsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), - [anon_sym_BSLASHglsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), - [anon_sym_BSLASHglsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), - [anon_sym_BSLASHnewacronym] = ACTIONS(6017), - [anon_sym_BSLASHacrshort] = ACTIONS(6017), - [anon_sym_BSLASHAcrshort] = ACTIONS(6017), - [anon_sym_BSLASHACRshort] = ACTIONS(6017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), - [anon_sym_BSLASHacrlong] = ACTIONS(6017), - [anon_sym_BSLASHAcrlong] = ACTIONS(6017), - [anon_sym_BSLASHACRlong] = ACTIONS(6017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), - [anon_sym_BSLASHacrfull] = ACTIONS(6017), - [anon_sym_BSLASHAcrfull] = ACTIONS(6017), - [anon_sym_BSLASHACRfull] = ACTIONS(6017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), - [anon_sym_BSLASHacs] = ACTIONS(6017), - [anon_sym_BSLASHAcs] = ACTIONS(6017), - [anon_sym_BSLASHacsp] = ACTIONS(6017), - [anon_sym_BSLASHAcsp] = ACTIONS(6017), - [anon_sym_BSLASHacl] = ACTIONS(6017), - [anon_sym_BSLASHAcl] = ACTIONS(6017), - [anon_sym_BSLASHaclp] = ACTIONS(6017), - [anon_sym_BSLASHAclp] = ACTIONS(6017), - [anon_sym_BSLASHacf] = ACTIONS(6017), - [anon_sym_BSLASHAcf] = ACTIONS(6017), - [anon_sym_BSLASHacfp] = ACTIONS(6017), - [anon_sym_BSLASHAcfp] = ACTIONS(6017), - [anon_sym_BSLASHac] = ACTIONS(6017), - [anon_sym_BSLASHAc] = ACTIONS(6017), - [anon_sym_BSLASHacp] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), - [anon_sym_BSLASHcolor] = ACTIONS(6017), - [anon_sym_BSLASHcolorbox] = ACTIONS(6017), - [anon_sym_BSLASHtextcolor] = ACTIONS(6017), - [anon_sym_BSLASHpagecolor] = ACTIONS(6017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), - [anon_sym_BSLASHtext] = ACTIONS(6017), - [anon_sym_BSLASHintertext] = ACTIONS(6017), - [anon_sym_shortintertext] = ACTIONS(6017), - }, - [892] = { - [sym_curly_group] = STATE(986), - [ts_builtin_sym_end] = ACTIONS(6015), - [sym_command_name] = ACTIONS(6013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6013), - [anon_sym_LBRACK] = ACTIONS(6015), - [anon_sym_RBRACK] = ACTIONS(6015), - [anon_sym_COMMA] = ACTIONS(6015), - [anon_sym_EQ] = ACTIONS(6015), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_RPAREN] = ACTIONS(6015), - [anon_sym_BSLASHpart] = ACTIONS(6013), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddpart] = ACTIONS(6013), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6015), - [anon_sym_BSLASHchapter] = ACTIONS(6013), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddchap] = ACTIONS(6013), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsection] = ACTIONS(6013), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddsec] = ACTIONS(6013), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubsection] = ACTIONS(6013), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6013), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHparagraph] = ACTIONS(6013), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6013), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6015), - [anon_sym_BSLASHitem] = ACTIONS(6013), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6015), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(6015), - [sym_word] = ACTIONS(6013), - [sym_placeholder] = ACTIONS(6015), - [anon_sym_PLUS] = ACTIONS(6015), - [anon_sym_DASH] = ACTIONS(6015), - [anon_sym_STAR] = ACTIONS(6015), - [anon_sym_SLASH] = ACTIONS(6015), - [anon_sym_LT] = ACTIONS(6013), - [anon_sym_GT] = ACTIONS(6013), - [anon_sym_BANG] = ACTIONS(6013), - [anon_sym_PIPE] = ACTIONS(6013), - [anon_sym_COLON] = ACTIONS(6013), - [anon_sym_SQUOTE] = ACTIONS(6013), - [anon_sym__] = ACTIONS(6015), - [anon_sym_CARET] = ACTIONS(6015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), - [anon_sym_DOLLAR] = ACTIONS(6013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), - [anon_sym_BSLASHbegin] = ACTIONS(6013), - [anon_sym_BSLASHtitle] = ACTIONS(6013), - [anon_sym_BSLASHauthor] = ACTIONS(6013), - [anon_sym_BSLASHusepackage] = ACTIONS(6013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6013), - [anon_sym_BSLASHinclude] = ACTIONS(6013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6013), - [anon_sym_BSLASHinput] = ACTIONS(6013), - [anon_sym_BSLASHsubfile] = ACTIONS(6013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6013), - [anon_sym_BSLASHbibliography] = ACTIONS(6013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6013), - [anon_sym_BSLASHincludesvg] = ACTIONS(6013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6013), - [anon_sym_BSLASHimport] = ACTIONS(6013), - [anon_sym_BSLASHsubimport] = ACTIONS(6013), - [anon_sym_BSLASHinputfrom] = ACTIONS(6013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6013), - [anon_sym_BSLASHincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHcaption] = ACTIONS(6013), - [anon_sym_BSLASHcite] = ACTIONS(6013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCite] = ACTIONS(6013), - [anon_sym_BSLASHnocite] = ACTIONS(6013), - [anon_sym_BSLASHcitet] = ACTIONS(6013), - [anon_sym_BSLASHcitep] = ACTIONS(6013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteauthor] = ACTIONS(6013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitetitle] = ACTIONS(6013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteyear] = ACTIONS(6013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitedate] = ACTIONS(6013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteurl] = ACTIONS(6013), - [anon_sym_BSLASHfullcite] = ACTIONS(6013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6013), - [anon_sym_BSLASHcitealt] = ACTIONS(6013), - [anon_sym_BSLASHcitealp] = ACTIONS(6013), - [anon_sym_BSLASHcitetext] = ACTIONS(6013), - [anon_sym_BSLASHparencite] = ACTIONS(6013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHParencite] = ACTIONS(6013), - [anon_sym_BSLASHfootcite] = ACTIONS(6013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6013), - [anon_sym_BSLASHtextcite] = ACTIONS(6013), - [anon_sym_BSLASHTextcite] = ACTIONS(6013), - [anon_sym_BSLASHsmartcite] = ACTIONS(6013), - [anon_sym_BSLASHSmartcite] = ACTIONS(6013), - [anon_sym_BSLASHsupercite] = ACTIONS(6013), - [anon_sym_BSLASHautocite] = ACTIONS(6013), - [anon_sym_BSLASHAutocite] = ACTIONS(6013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHvolcite] = ACTIONS(6013), - [anon_sym_BSLASHVolcite] = ACTIONS(6013), - [anon_sym_BSLASHpvolcite] = ACTIONS(6013), - [anon_sym_BSLASHPvolcite] = ACTIONS(6013), - [anon_sym_BSLASHfvolcite] = ACTIONS(6013), - [anon_sym_BSLASHftvolcite] = ACTIONS(6013), - [anon_sym_BSLASHsvolcite] = ACTIONS(6013), - [anon_sym_BSLASHSvolcite] = ACTIONS(6013), - [anon_sym_BSLASHtvolcite] = ACTIONS(6013), - [anon_sym_BSLASHTvolcite] = ACTIONS(6013), - [anon_sym_BSLASHavolcite] = ACTIONS(6013), - [anon_sym_BSLASHAvolcite] = ACTIONS(6013), - [anon_sym_BSLASHnotecite] = ACTIONS(6013), - [anon_sym_BSLASHNotecite] = ACTIONS(6013), - [anon_sym_BSLASHpnotecite] = ACTIONS(6013), - [anon_sym_BSLASHPnotecite] = ACTIONS(6013), - [anon_sym_BSLASHfnotecite] = ACTIONS(6013), - [anon_sym_BSLASHlabel] = ACTIONS(6013), - [anon_sym_BSLASHref] = ACTIONS(6013), - [anon_sym_BSLASHeqref] = ACTIONS(6013), - [anon_sym_BSLASHvref] = ACTIONS(6013), - [anon_sym_BSLASHVref] = ACTIONS(6013), - [anon_sym_BSLASHautoref] = ACTIONS(6013), - [anon_sym_BSLASHpageref] = ACTIONS(6013), - [anon_sym_BSLASHcref] = ACTIONS(6013), - [anon_sym_BSLASHCref] = ACTIONS(6013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnameCref] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHlabelcref] = ACTIONS(6013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCrefrange] = ACTIONS(6013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnewlabel] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHdef] = ACTIONS(6013), - [anon_sym_BSLASHlet] = ACTIONS(6013), - [anon_sym_BSLASHleft] = ACTIONS(6013), - [anon_sym_BSLASHbig] = ACTIONS(6013), - [anon_sym_BSLASHBig] = ACTIONS(6013), - [anon_sym_BSLASHbigg] = ACTIONS(6013), - [anon_sym_BSLASHBigg] = ACTIONS(6013), - [anon_sym_BSLASHbigl] = ACTIONS(6013), - [anon_sym_BSLASHBigl] = ACTIONS(6013), - [anon_sym_BSLASHbiggl] = ACTIONS(6013), - [anon_sym_BSLASHBiggl] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6013), - [anon_sym_BSLASHgls] = ACTIONS(6013), - [anon_sym_BSLASHGls] = ACTIONS(6013), - [anon_sym_BSLASHGLS] = ACTIONS(6013), - [anon_sym_BSLASHglspl] = ACTIONS(6013), - [anon_sym_BSLASHGlspl] = ACTIONS(6013), - [anon_sym_BSLASHGLSpl] = ACTIONS(6013), - [anon_sym_BSLASHglsdisp] = ACTIONS(6013), - [anon_sym_BSLASHglslink] = ACTIONS(6013), - [anon_sym_BSLASHglstext] = ACTIONS(6013), - [anon_sym_BSLASHGlstext] = ACTIONS(6013), - [anon_sym_BSLASHGLStext] = ACTIONS(6013), - [anon_sym_BSLASHglsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6013), - [anon_sym_BSLASHglsplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSplural] = ACTIONS(6013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHglsname] = ACTIONS(6013), - [anon_sym_BSLASHGlsname] = ACTIONS(6013), - [anon_sym_BSLASHGLSname] = ACTIONS(6013), - [anon_sym_BSLASHglssymbol] = ACTIONS(6013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6013), - [anon_sym_BSLASHglsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6013), - [anon_sym_BSLASHglsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6013), - [anon_sym_BSLASHglsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6013), - [anon_sym_BSLASHglsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6013), - [anon_sym_BSLASHglsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6013), - [anon_sym_BSLASHnewacronym] = ACTIONS(6013), - [anon_sym_BSLASHacrshort] = ACTIONS(6013), - [anon_sym_BSLASHAcrshort] = ACTIONS(6013), - [anon_sym_BSLASHACRshort] = ACTIONS(6013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6013), - [anon_sym_BSLASHacrlong] = ACTIONS(6013), - [anon_sym_BSLASHAcrlong] = ACTIONS(6013), - [anon_sym_BSLASHACRlong] = ACTIONS(6013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6013), - [anon_sym_BSLASHacrfull] = ACTIONS(6013), - [anon_sym_BSLASHAcrfull] = ACTIONS(6013), - [anon_sym_BSLASHACRfull] = ACTIONS(6013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6013), - [anon_sym_BSLASHacs] = ACTIONS(6013), - [anon_sym_BSLASHAcs] = ACTIONS(6013), - [anon_sym_BSLASHacsp] = ACTIONS(6013), - [anon_sym_BSLASHAcsp] = ACTIONS(6013), - [anon_sym_BSLASHacl] = ACTIONS(6013), - [anon_sym_BSLASHAcl] = ACTIONS(6013), - [anon_sym_BSLASHaclp] = ACTIONS(6013), - [anon_sym_BSLASHAclp] = ACTIONS(6013), - [anon_sym_BSLASHacf] = ACTIONS(6013), - [anon_sym_BSLASHAcf] = ACTIONS(6013), - [anon_sym_BSLASHacfp] = ACTIONS(6013), - [anon_sym_BSLASHAcfp] = ACTIONS(6013), - [anon_sym_BSLASHac] = ACTIONS(6013), - [anon_sym_BSLASHAc] = ACTIONS(6013), - [anon_sym_BSLASHacp] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6013), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6013), - [anon_sym_BSLASHcolor] = ACTIONS(6013), - [anon_sym_BSLASHcolorbox] = ACTIONS(6013), - [anon_sym_BSLASHtextcolor] = ACTIONS(6013), - [anon_sym_BSLASHpagecolor] = ACTIONS(6013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6013), - [anon_sym_BSLASHtext] = ACTIONS(6013), - [anon_sym_BSLASHintertext] = ACTIONS(6013), - [anon_sym_shortintertext] = ACTIONS(6013), - }, - [893] = { - [sym_curly_group] = STATE(980), - [sym_brack_group_text] = STATE(2535), - [sym_command_name] = ACTIONS(5993), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5995), - [anon_sym_COMMA] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(5995), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_BSLASHpart] = ACTIONS(5993), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddpart] = ACTIONS(5993), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5995), - [anon_sym_BSLASHchapter] = ACTIONS(5993), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddchap] = ACTIONS(5993), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsection] = ACTIONS(5993), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddsec] = ACTIONS(5993), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubsection] = ACTIONS(5993), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5993), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHparagraph] = ACTIONS(5993), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5993), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5995), - [anon_sym_BSLASHitem] = ACTIONS(5993), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5995), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(5993), - [sym_placeholder] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_BANG] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_SQUOTE] = ACTIONS(5993), - [anon_sym__] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5993), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5995), - [anon_sym_BSLASHbegin] = ACTIONS(5993), - [anon_sym_BSLASHend] = ACTIONS(5993), - [anon_sym_BSLASHtitle] = ACTIONS(5993), - [anon_sym_BSLASHauthor] = ACTIONS(5993), - [anon_sym_BSLASHusepackage] = ACTIONS(5993), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5993), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5993), - [anon_sym_BSLASHinclude] = ACTIONS(5993), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5993), - [anon_sym_BSLASHinput] = ACTIONS(5993), - [anon_sym_BSLASHsubfile] = ACTIONS(5993), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5993), - [anon_sym_BSLASHbibliography] = ACTIONS(5993), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5993), - [anon_sym_BSLASHincludesvg] = ACTIONS(5993), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5993), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5993), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5993), - [anon_sym_BSLASHimport] = ACTIONS(5993), - [anon_sym_BSLASHsubimport] = ACTIONS(5993), - [anon_sym_BSLASHinputfrom] = ACTIONS(5993), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5993), - [anon_sym_BSLASHincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHcaption] = ACTIONS(5993), - [anon_sym_BSLASHcite] = ACTIONS(5993), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCite] = ACTIONS(5993), - [anon_sym_BSLASHnocite] = ACTIONS(5993), - [anon_sym_BSLASHcitet] = ACTIONS(5993), - [anon_sym_BSLASHcitep] = ACTIONS(5993), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteauthor] = ACTIONS(5993), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5993), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitetitle] = ACTIONS(5993), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteyear] = ACTIONS(5993), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitedate] = ACTIONS(5993), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteurl] = ACTIONS(5993), - [anon_sym_BSLASHfullcite] = ACTIONS(5993), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5993), - [anon_sym_BSLASHcitealt] = ACTIONS(5993), - [anon_sym_BSLASHcitealp] = ACTIONS(5993), - [anon_sym_BSLASHcitetext] = ACTIONS(5993), - [anon_sym_BSLASHparencite] = ACTIONS(5993), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHParencite] = ACTIONS(5993), - [anon_sym_BSLASHfootcite] = ACTIONS(5993), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5993), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5993), - [anon_sym_BSLASHtextcite] = ACTIONS(5993), - [anon_sym_BSLASHTextcite] = ACTIONS(5993), - [anon_sym_BSLASHsmartcite] = ACTIONS(5993), - [anon_sym_BSLASHSmartcite] = ACTIONS(5993), - [anon_sym_BSLASHsupercite] = ACTIONS(5993), - [anon_sym_BSLASHautocite] = ACTIONS(5993), - [anon_sym_BSLASHAutocite] = ACTIONS(5993), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHvolcite] = ACTIONS(5993), - [anon_sym_BSLASHVolcite] = ACTIONS(5993), - [anon_sym_BSLASHpvolcite] = ACTIONS(5993), - [anon_sym_BSLASHPvolcite] = ACTIONS(5993), - [anon_sym_BSLASHfvolcite] = ACTIONS(5993), - [anon_sym_BSLASHftvolcite] = ACTIONS(5993), - [anon_sym_BSLASHsvolcite] = ACTIONS(5993), - [anon_sym_BSLASHSvolcite] = ACTIONS(5993), - [anon_sym_BSLASHtvolcite] = ACTIONS(5993), - [anon_sym_BSLASHTvolcite] = ACTIONS(5993), - [anon_sym_BSLASHavolcite] = ACTIONS(5993), - [anon_sym_BSLASHAvolcite] = ACTIONS(5993), - [anon_sym_BSLASHnotecite] = ACTIONS(5993), - [anon_sym_BSLASHNotecite] = ACTIONS(5993), - [anon_sym_BSLASHpnotecite] = ACTIONS(5993), - [anon_sym_BSLASHPnotecite] = ACTIONS(5993), - [anon_sym_BSLASHfnotecite] = ACTIONS(5993), - [anon_sym_BSLASHlabel] = ACTIONS(5993), - [anon_sym_BSLASHref] = ACTIONS(5993), - [anon_sym_BSLASHeqref] = ACTIONS(5993), - [anon_sym_BSLASHvref] = ACTIONS(5993), - [anon_sym_BSLASHVref] = ACTIONS(5993), - [anon_sym_BSLASHautoref] = ACTIONS(5993), - [anon_sym_BSLASHpageref] = ACTIONS(5993), - [anon_sym_BSLASHcref] = ACTIONS(5993), - [anon_sym_BSLASHCref] = ACTIONS(5993), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnameCref] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHlabelcref] = ACTIONS(5993), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCrefrange] = ACTIONS(5993), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnewlabel] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5993), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5993), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5995), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHdef] = ACTIONS(5993), - [anon_sym_BSLASHlet] = ACTIONS(5993), - [anon_sym_BSLASHleft] = ACTIONS(5993), - [anon_sym_BSLASHbig] = ACTIONS(5993), - [anon_sym_BSLASHBig] = ACTIONS(5993), - [anon_sym_BSLASHbigg] = ACTIONS(5993), - [anon_sym_BSLASHBigg] = ACTIONS(5993), - [anon_sym_BSLASHbigl] = ACTIONS(5993), - [anon_sym_BSLASHBigl] = ACTIONS(5993), - [anon_sym_BSLASHbiggl] = ACTIONS(5993), - [anon_sym_BSLASHBiggl] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5993), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5993), - [anon_sym_BSLASHgls] = ACTIONS(5993), - [anon_sym_BSLASHGls] = ACTIONS(5993), - [anon_sym_BSLASHGLS] = ACTIONS(5993), - [anon_sym_BSLASHglspl] = ACTIONS(5993), - [anon_sym_BSLASHGlspl] = ACTIONS(5993), - [anon_sym_BSLASHGLSpl] = ACTIONS(5993), - [anon_sym_BSLASHglsdisp] = ACTIONS(5993), - [anon_sym_BSLASHglslink] = ACTIONS(5993), - [anon_sym_BSLASHglstext] = ACTIONS(5993), - [anon_sym_BSLASHGlstext] = ACTIONS(5993), - [anon_sym_BSLASHGLStext] = ACTIONS(5993), - [anon_sym_BSLASHglsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5993), - [anon_sym_BSLASHglsplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSplural] = ACTIONS(5993), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHglsname] = ACTIONS(5993), - [anon_sym_BSLASHGlsname] = ACTIONS(5993), - [anon_sym_BSLASHGLSname] = ACTIONS(5993), - [anon_sym_BSLASHglssymbol] = ACTIONS(5993), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5993), - [anon_sym_BSLASHglsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5993), - [anon_sym_BSLASHglsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5993), - [anon_sym_BSLASHglsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5993), - [anon_sym_BSLASHglsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5993), - [anon_sym_BSLASHglsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5993), - [anon_sym_BSLASHnewacronym] = ACTIONS(5993), - [anon_sym_BSLASHacrshort] = ACTIONS(5993), - [anon_sym_BSLASHAcrshort] = ACTIONS(5993), - [anon_sym_BSLASHACRshort] = ACTIONS(5993), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5993), - [anon_sym_BSLASHacrlong] = ACTIONS(5993), - [anon_sym_BSLASHAcrlong] = ACTIONS(5993), - [anon_sym_BSLASHACRlong] = ACTIONS(5993), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5993), - [anon_sym_BSLASHacrfull] = ACTIONS(5993), - [anon_sym_BSLASHAcrfull] = ACTIONS(5993), - [anon_sym_BSLASHACRfull] = ACTIONS(5993), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5993), - [anon_sym_BSLASHacs] = ACTIONS(5993), - [anon_sym_BSLASHAcs] = ACTIONS(5993), - [anon_sym_BSLASHacsp] = ACTIONS(5993), - [anon_sym_BSLASHAcsp] = ACTIONS(5993), - [anon_sym_BSLASHacl] = ACTIONS(5993), - [anon_sym_BSLASHAcl] = ACTIONS(5993), - [anon_sym_BSLASHaclp] = ACTIONS(5993), - [anon_sym_BSLASHAclp] = ACTIONS(5993), - [anon_sym_BSLASHacf] = ACTIONS(5993), - [anon_sym_BSLASHAcf] = ACTIONS(5993), - [anon_sym_BSLASHacfp] = ACTIONS(5993), - [anon_sym_BSLASHAcfp] = ACTIONS(5993), - [anon_sym_BSLASHac] = ACTIONS(5993), - [anon_sym_BSLASHAc] = ACTIONS(5993), - [anon_sym_BSLASHacp] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5993), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5993), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5993), - [anon_sym_BSLASHcolor] = ACTIONS(5993), - [anon_sym_BSLASHcolorbox] = ACTIONS(5993), - [anon_sym_BSLASHtextcolor] = ACTIONS(5993), - [anon_sym_BSLASHpagecolor] = ACTIONS(5993), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5993), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5993), - [anon_sym_BSLASHtext] = ACTIONS(5993), - [anon_sym_BSLASHintertext] = ACTIONS(5993), - [anon_sym_shortintertext] = ACTIONS(5993), - }, - [894] = { - [sym_curly_group] = STATE(1026), - [sym_brack_group_text] = STATE(2564), - [sym_command_name] = ACTIONS(5987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5991), - [anon_sym_COMMA] = ACTIONS(5991), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_LPAREN] = ACTIONS(5991), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_BSLASHpart] = ACTIONS(5987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddpart] = ACTIONS(5987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5991), - [anon_sym_BSLASHchapter] = ACTIONS(5987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddchap] = ACTIONS(5987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsection] = ACTIONS(5987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddsec] = ACTIONS(5987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubsection] = ACTIONS(5987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHparagraph] = ACTIONS(5987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5991), - [anon_sym_BSLASHitem] = ACTIONS(5987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5991), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(5987), - [sym_placeholder] = ACTIONS(5991), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_SQUOTE] = ACTIONS(5987), - [anon_sym__] = ACTIONS(5991), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5991), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(5987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5991), - [anon_sym_BSLASHbegin] = ACTIONS(5987), - [anon_sym_BSLASHend] = ACTIONS(5987), - [anon_sym_BSLASHtitle] = ACTIONS(5987), - [anon_sym_BSLASHauthor] = ACTIONS(5987), - [anon_sym_BSLASHusepackage] = ACTIONS(5987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), - [anon_sym_BSLASHinclude] = ACTIONS(5987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), - [anon_sym_BSLASHinput] = ACTIONS(5987), - [anon_sym_BSLASHsubfile] = ACTIONS(5987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), - [anon_sym_BSLASHbibliography] = ACTIONS(5987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), - [anon_sym_BSLASHincludesvg] = ACTIONS(5987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), - [anon_sym_BSLASHimport] = ACTIONS(5987), - [anon_sym_BSLASHsubimport] = ACTIONS(5987), - [anon_sym_BSLASHinputfrom] = ACTIONS(5987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), - [anon_sym_BSLASHincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHcaption] = ACTIONS(5987), - [anon_sym_BSLASHcite] = ACTIONS(5987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCite] = ACTIONS(5987), - [anon_sym_BSLASHnocite] = ACTIONS(5987), - [anon_sym_BSLASHcitet] = ACTIONS(5987), - [anon_sym_BSLASHcitep] = ACTIONS(5987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteauthor] = ACTIONS(5987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitetitle] = ACTIONS(5987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteyear] = ACTIONS(5987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitedate] = ACTIONS(5987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteurl] = ACTIONS(5987), - [anon_sym_BSLASHfullcite] = ACTIONS(5987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), - [anon_sym_BSLASHcitealt] = ACTIONS(5987), - [anon_sym_BSLASHcitealp] = ACTIONS(5987), - [anon_sym_BSLASHcitetext] = ACTIONS(5987), - [anon_sym_BSLASHparencite] = ACTIONS(5987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHParencite] = ACTIONS(5987), - [anon_sym_BSLASHfootcite] = ACTIONS(5987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), - [anon_sym_BSLASHtextcite] = ACTIONS(5987), - [anon_sym_BSLASHTextcite] = ACTIONS(5987), - [anon_sym_BSLASHsmartcite] = ACTIONS(5987), - [anon_sym_BSLASHSmartcite] = ACTIONS(5987), - [anon_sym_BSLASHsupercite] = ACTIONS(5987), - [anon_sym_BSLASHautocite] = ACTIONS(5987), - [anon_sym_BSLASHAutocite] = ACTIONS(5987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHvolcite] = ACTIONS(5987), - [anon_sym_BSLASHVolcite] = ACTIONS(5987), - [anon_sym_BSLASHpvolcite] = ACTIONS(5987), - [anon_sym_BSLASHPvolcite] = ACTIONS(5987), - [anon_sym_BSLASHfvolcite] = ACTIONS(5987), - [anon_sym_BSLASHftvolcite] = ACTIONS(5987), - [anon_sym_BSLASHsvolcite] = ACTIONS(5987), - [anon_sym_BSLASHSvolcite] = ACTIONS(5987), - [anon_sym_BSLASHtvolcite] = ACTIONS(5987), - [anon_sym_BSLASHTvolcite] = ACTIONS(5987), - [anon_sym_BSLASHavolcite] = ACTIONS(5987), - [anon_sym_BSLASHAvolcite] = ACTIONS(5987), - [anon_sym_BSLASHnotecite] = ACTIONS(5987), - [anon_sym_BSLASHNotecite] = ACTIONS(5987), - [anon_sym_BSLASHpnotecite] = ACTIONS(5987), - [anon_sym_BSLASHPnotecite] = ACTIONS(5987), - [anon_sym_BSLASHfnotecite] = ACTIONS(5987), - [anon_sym_BSLASHlabel] = ACTIONS(5987), - [anon_sym_BSLASHref] = ACTIONS(5987), - [anon_sym_BSLASHeqref] = ACTIONS(5987), - [anon_sym_BSLASHvref] = ACTIONS(5987), - [anon_sym_BSLASHVref] = ACTIONS(5987), - [anon_sym_BSLASHautoref] = ACTIONS(5987), - [anon_sym_BSLASHpageref] = ACTIONS(5987), - [anon_sym_BSLASHcref] = ACTIONS(5987), - [anon_sym_BSLASHCref] = ACTIONS(5987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnameCref] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHlabelcref] = ACTIONS(5987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCrefrange] = ACTIONS(5987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnewlabel] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5991), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHdef] = ACTIONS(5987), - [anon_sym_BSLASHlet] = ACTIONS(5987), - [anon_sym_BSLASHleft] = ACTIONS(5987), - [anon_sym_BSLASHbig] = ACTIONS(5987), - [anon_sym_BSLASHBig] = ACTIONS(5987), - [anon_sym_BSLASHbigg] = ACTIONS(5987), - [anon_sym_BSLASHBigg] = ACTIONS(5987), - [anon_sym_BSLASHbigl] = ACTIONS(5987), - [anon_sym_BSLASHBigl] = ACTIONS(5987), - [anon_sym_BSLASHbiggl] = ACTIONS(5987), - [anon_sym_BSLASHBiggl] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), - [anon_sym_BSLASHgls] = ACTIONS(5987), - [anon_sym_BSLASHGls] = ACTIONS(5987), - [anon_sym_BSLASHGLS] = ACTIONS(5987), - [anon_sym_BSLASHglspl] = ACTIONS(5987), - [anon_sym_BSLASHGlspl] = ACTIONS(5987), - [anon_sym_BSLASHGLSpl] = ACTIONS(5987), - [anon_sym_BSLASHglsdisp] = ACTIONS(5987), - [anon_sym_BSLASHglslink] = ACTIONS(5987), - [anon_sym_BSLASHglstext] = ACTIONS(5987), - [anon_sym_BSLASHGlstext] = ACTIONS(5987), - [anon_sym_BSLASHGLStext] = ACTIONS(5987), - [anon_sym_BSLASHglsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), - [anon_sym_BSLASHglsplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSplural] = ACTIONS(5987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHglsname] = ACTIONS(5987), - [anon_sym_BSLASHGlsname] = ACTIONS(5987), - [anon_sym_BSLASHGLSname] = ACTIONS(5987), - [anon_sym_BSLASHglssymbol] = ACTIONS(5987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), - [anon_sym_BSLASHglsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), - [anon_sym_BSLASHglsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), - [anon_sym_BSLASHglsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), - [anon_sym_BSLASHglsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), - [anon_sym_BSLASHglsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), - [anon_sym_BSLASHnewacronym] = ACTIONS(5987), - [anon_sym_BSLASHacrshort] = ACTIONS(5987), - [anon_sym_BSLASHAcrshort] = ACTIONS(5987), - [anon_sym_BSLASHACRshort] = ACTIONS(5987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), - [anon_sym_BSLASHacrlong] = ACTIONS(5987), - [anon_sym_BSLASHAcrlong] = ACTIONS(5987), - [anon_sym_BSLASHACRlong] = ACTIONS(5987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), - [anon_sym_BSLASHacrfull] = ACTIONS(5987), - [anon_sym_BSLASHAcrfull] = ACTIONS(5987), - [anon_sym_BSLASHACRfull] = ACTIONS(5987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), - [anon_sym_BSLASHacs] = ACTIONS(5987), - [anon_sym_BSLASHAcs] = ACTIONS(5987), - [anon_sym_BSLASHacsp] = ACTIONS(5987), - [anon_sym_BSLASHAcsp] = ACTIONS(5987), - [anon_sym_BSLASHacl] = ACTIONS(5987), - [anon_sym_BSLASHAcl] = ACTIONS(5987), - [anon_sym_BSLASHaclp] = ACTIONS(5987), - [anon_sym_BSLASHAclp] = ACTIONS(5987), - [anon_sym_BSLASHacf] = ACTIONS(5987), - [anon_sym_BSLASHAcf] = ACTIONS(5987), - [anon_sym_BSLASHacfp] = ACTIONS(5987), - [anon_sym_BSLASHAcfp] = ACTIONS(5987), - [anon_sym_BSLASHac] = ACTIONS(5987), - [anon_sym_BSLASHAc] = ACTIONS(5987), - [anon_sym_BSLASHacp] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), - [anon_sym_BSLASHcolor] = ACTIONS(5987), - [anon_sym_BSLASHcolorbox] = ACTIONS(5987), - [anon_sym_BSLASHtextcolor] = ACTIONS(5987), - [anon_sym_BSLASHpagecolor] = ACTIONS(5987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), - [anon_sym_BSLASHtext] = ACTIONS(5987), - [anon_sym_BSLASHintertext] = ACTIONS(5987), - [anon_sym_shortintertext] = ACTIONS(5987), - }, - [895] = { - [sym_brack_group_text] = STATE(1034), - [ts_builtin_sym_end] = ACTIONS(6011), - [sym_command_name] = ACTIONS(6009), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(6011), - [anon_sym_COMMA] = ACTIONS(6011), - [anon_sym_EQ] = ACTIONS(6011), - [anon_sym_LPAREN] = ACTIONS(6011), - [anon_sym_RPAREN] = ACTIONS(6011), - [anon_sym_BSLASHpart] = ACTIONS(6009), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddpart] = ACTIONS(6009), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6011), - [anon_sym_BSLASHchapter] = ACTIONS(6009), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddchap] = ACTIONS(6009), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsection] = ACTIONS(6009), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddsec] = ACTIONS(6009), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubsection] = ACTIONS(6009), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6009), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHparagraph] = ACTIONS(6009), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6009), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6011), - [anon_sym_BSLASHitem] = ACTIONS(6009), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6011), - [anon_sym_LBRACE] = ACTIONS(6011), - [anon_sym_RBRACE] = ACTIONS(6011), - [sym_word] = ACTIONS(6009), - [sym_placeholder] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_SQUOTE] = ACTIONS(6009), - [anon_sym__] = ACTIONS(6011), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6011), - [anon_sym_DOLLAR] = ACTIONS(6009), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6011), - [anon_sym_BSLASHbegin] = ACTIONS(6009), - [anon_sym_BSLASHtitle] = ACTIONS(6009), - [anon_sym_BSLASHauthor] = ACTIONS(6009), - [anon_sym_BSLASHusepackage] = ACTIONS(6009), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6009), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6009), - [anon_sym_BSLASHinclude] = ACTIONS(6009), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6009), - [anon_sym_BSLASHinput] = ACTIONS(6009), - [anon_sym_BSLASHsubfile] = ACTIONS(6009), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6009), - [anon_sym_BSLASHbibliography] = ACTIONS(6009), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6009), - [anon_sym_BSLASHincludesvg] = ACTIONS(6009), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6009), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6009), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6009), - [anon_sym_BSLASHimport] = ACTIONS(6009), - [anon_sym_BSLASHsubimport] = ACTIONS(6009), - [anon_sym_BSLASHinputfrom] = ACTIONS(6009), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6009), - [anon_sym_BSLASHincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHcaption] = ACTIONS(6009), - [anon_sym_BSLASHcite] = ACTIONS(6009), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCite] = ACTIONS(6009), - [anon_sym_BSLASHnocite] = ACTIONS(6009), - [anon_sym_BSLASHcitet] = ACTIONS(6009), - [anon_sym_BSLASHcitep] = ACTIONS(6009), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteauthor] = ACTIONS(6009), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6009), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitetitle] = ACTIONS(6009), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteyear] = ACTIONS(6009), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitedate] = ACTIONS(6009), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteurl] = ACTIONS(6009), - [anon_sym_BSLASHfullcite] = ACTIONS(6009), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6009), - [anon_sym_BSLASHcitealt] = ACTIONS(6009), - [anon_sym_BSLASHcitealp] = ACTIONS(6009), - [anon_sym_BSLASHcitetext] = ACTIONS(6009), - [anon_sym_BSLASHparencite] = ACTIONS(6009), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHParencite] = ACTIONS(6009), - [anon_sym_BSLASHfootcite] = ACTIONS(6009), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6009), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6009), - [anon_sym_BSLASHtextcite] = ACTIONS(6009), - [anon_sym_BSLASHTextcite] = ACTIONS(6009), - [anon_sym_BSLASHsmartcite] = ACTIONS(6009), - [anon_sym_BSLASHSmartcite] = ACTIONS(6009), - [anon_sym_BSLASHsupercite] = ACTIONS(6009), - [anon_sym_BSLASHautocite] = ACTIONS(6009), - [anon_sym_BSLASHAutocite] = ACTIONS(6009), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHvolcite] = ACTIONS(6009), - [anon_sym_BSLASHVolcite] = ACTIONS(6009), - [anon_sym_BSLASHpvolcite] = ACTIONS(6009), - [anon_sym_BSLASHPvolcite] = ACTIONS(6009), - [anon_sym_BSLASHfvolcite] = ACTIONS(6009), - [anon_sym_BSLASHftvolcite] = ACTIONS(6009), - [anon_sym_BSLASHsvolcite] = ACTIONS(6009), - [anon_sym_BSLASHSvolcite] = ACTIONS(6009), - [anon_sym_BSLASHtvolcite] = ACTIONS(6009), - [anon_sym_BSLASHTvolcite] = ACTIONS(6009), - [anon_sym_BSLASHavolcite] = ACTIONS(6009), - [anon_sym_BSLASHAvolcite] = ACTIONS(6009), - [anon_sym_BSLASHnotecite] = ACTIONS(6009), - [anon_sym_BSLASHNotecite] = ACTIONS(6009), - [anon_sym_BSLASHpnotecite] = ACTIONS(6009), - [anon_sym_BSLASHPnotecite] = ACTIONS(6009), - [anon_sym_BSLASHfnotecite] = ACTIONS(6009), - [anon_sym_BSLASHlabel] = ACTIONS(6009), - [anon_sym_BSLASHref] = ACTIONS(6009), - [anon_sym_BSLASHeqref] = ACTIONS(6009), - [anon_sym_BSLASHvref] = ACTIONS(6009), - [anon_sym_BSLASHVref] = ACTIONS(6009), - [anon_sym_BSLASHautoref] = ACTIONS(6009), - [anon_sym_BSLASHpageref] = ACTIONS(6009), - [anon_sym_BSLASHcref] = ACTIONS(6009), - [anon_sym_BSLASHCref] = ACTIONS(6009), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnameCref] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHlabelcref] = ACTIONS(6009), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCrefrange] = ACTIONS(6009), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnewlabel] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6009), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6009), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6011), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHdef] = ACTIONS(6009), - [anon_sym_BSLASHlet] = ACTIONS(6009), - [anon_sym_BSLASHleft] = ACTIONS(6009), - [anon_sym_BSLASHbig] = ACTIONS(6009), - [anon_sym_BSLASHBig] = ACTIONS(6009), - [anon_sym_BSLASHbigg] = ACTIONS(6009), - [anon_sym_BSLASHBigg] = ACTIONS(6009), - [anon_sym_BSLASHbigl] = ACTIONS(6009), - [anon_sym_BSLASHBigl] = ACTIONS(6009), - [anon_sym_BSLASHbiggl] = ACTIONS(6009), - [anon_sym_BSLASHBiggl] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6009), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6009), - [anon_sym_BSLASHgls] = ACTIONS(6009), - [anon_sym_BSLASHGls] = ACTIONS(6009), - [anon_sym_BSLASHGLS] = ACTIONS(6009), - [anon_sym_BSLASHglspl] = ACTIONS(6009), - [anon_sym_BSLASHGlspl] = ACTIONS(6009), - [anon_sym_BSLASHGLSpl] = ACTIONS(6009), - [anon_sym_BSLASHglsdisp] = ACTIONS(6009), - [anon_sym_BSLASHglslink] = ACTIONS(6009), - [anon_sym_BSLASHglstext] = ACTIONS(6009), - [anon_sym_BSLASHGlstext] = ACTIONS(6009), - [anon_sym_BSLASHGLStext] = ACTIONS(6009), - [anon_sym_BSLASHglsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6009), - [anon_sym_BSLASHglsplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSplural] = ACTIONS(6009), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHglsname] = ACTIONS(6009), - [anon_sym_BSLASHGlsname] = ACTIONS(6009), - [anon_sym_BSLASHGLSname] = ACTIONS(6009), - [anon_sym_BSLASHglssymbol] = ACTIONS(6009), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6009), - [anon_sym_BSLASHglsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6009), - [anon_sym_BSLASHglsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6009), - [anon_sym_BSLASHglsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6009), - [anon_sym_BSLASHglsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6009), - [anon_sym_BSLASHglsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6009), - [anon_sym_BSLASHnewacronym] = ACTIONS(6009), - [anon_sym_BSLASHacrshort] = ACTIONS(6009), - [anon_sym_BSLASHAcrshort] = ACTIONS(6009), - [anon_sym_BSLASHACRshort] = ACTIONS(6009), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6009), - [anon_sym_BSLASHacrlong] = ACTIONS(6009), - [anon_sym_BSLASHAcrlong] = ACTIONS(6009), - [anon_sym_BSLASHACRlong] = ACTIONS(6009), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6009), - [anon_sym_BSLASHacrfull] = ACTIONS(6009), - [anon_sym_BSLASHAcrfull] = ACTIONS(6009), - [anon_sym_BSLASHACRfull] = ACTIONS(6009), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6009), - [anon_sym_BSLASHacs] = ACTIONS(6009), - [anon_sym_BSLASHAcs] = ACTIONS(6009), - [anon_sym_BSLASHacsp] = ACTIONS(6009), - [anon_sym_BSLASHAcsp] = ACTIONS(6009), - [anon_sym_BSLASHacl] = ACTIONS(6009), - [anon_sym_BSLASHAcl] = ACTIONS(6009), - [anon_sym_BSLASHaclp] = ACTIONS(6009), - [anon_sym_BSLASHAclp] = ACTIONS(6009), - [anon_sym_BSLASHacf] = ACTIONS(6009), - [anon_sym_BSLASHAcf] = ACTIONS(6009), - [anon_sym_BSLASHacfp] = ACTIONS(6009), - [anon_sym_BSLASHAcfp] = ACTIONS(6009), - [anon_sym_BSLASHac] = ACTIONS(6009), - [anon_sym_BSLASHAc] = ACTIONS(6009), - [anon_sym_BSLASHacp] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6009), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6009), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6009), - [anon_sym_BSLASHcolor] = ACTIONS(6009), - [anon_sym_BSLASHcolorbox] = ACTIONS(6009), - [anon_sym_BSLASHtextcolor] = ACTIONS(6009), - [anon_sym_BSLASHpagecolor] = ACTIONS(6009), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6009), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6009), - [anon_sym_BSLASHtext] = ACTIONS(6009), - [anon_sym_BSLASHintertext] = ACTIONS(6009), - [anon_sym_shortintertext] = ACTIONS(6009), - }, - [896] = { - [sym_command_name] = ACTIONS(5968), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5968), - [anon_sym_BSLASHfi] = ACTIONS(6687), - [anon_sym_LBRACK] = ACTIONS(5972), - [anon_sym_RBRACK] = ACTIONS(5972), - [anon_sym_COMMA] = ACTIONS(5972), - [anon_sym_EQ] = ACTIONS(5972), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_RPAREN] = ACTIONS(5972), - [anon_sym_BSLASHpart] = ACTIONS(5968), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddpart] = ACTIONS(5968), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5972), - [anon_sym_BSLASHchapter] = ACTIONS(5968), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddchap] = ACTIONS(5968), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsection] = ACTIONS(5968), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddsec] = ACTIONS(5968), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubsection] = ACTIONS(5968), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5968), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHparagraph] = ACTIONS(5968), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5968), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5972), - [anon_sym_BSLASHitem] = ACTIONS(5968), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5972), - [anon_sym_LBRACE] = ACTIONS(5972), - [sym_word] = ACTIONS(5968), - [sym_placeholder] = ACTIONS(5972), - [anon_sym_PLUS] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5972), - [anon_sym_STAR] = ACTIONS(5972), - [anon_sym_SLASH] = ACTIONS(5972), - [anon_sym_LT] = ACTIONS(5968), - [anon_sym_GT] = ACTIONS(5968), - [anon_sym_BANG] = ACTIONS(5968), - [anon_sym_PIPE] = ACTIONS(5968), - [anon_sym_COLON] = ACTIONS(5968), - [anon_sym_SQUOTE] = ACTIONS(5968), - [anon_sym__] = ACTIONS(5972), - [anon_sym_CARET] = ACTIONS(5972), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5972), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5972), - [anon_sym_DOLLAR] = ACTIONS(5968), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5972), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5972), - [anon_sym_BSLASHbegin] = ACTIONS(5968), - [anon_sym_BSLASHtitle] = ACTIONS(5968), - [anon_sym_BSLASHauthor] = ACTIONS(5968), - [anon_sym_BSLASHusepackage] = ACTIONS(5968), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5968), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5968), - [anon_sym_BSLASHinclude] = ACTIONS(5968), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5968), - [anon_sym_BSLASHinput] = ACTIONS(5968), - [anon_sym_BSLASHsubfile] = ACTIONS(5968), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5968), - [anon_sym_BSLASHbibliography] = ACTIONS(5968), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5968), - [anon_sym_BSLASHincludesvg] = ACTIONS(5968), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5968), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5968), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5968), - [anon_sym_BSLASHimport] = ACTIONS(5968), - [anon_sym_BSLASHsubimport] = ACTIONS(5968), - [anon_sym_BSLASHinputfrom] = ACTIONS(5968), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5968), - [anon_sym_BSLASHincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHcaption] = ACTIONS(5968), - [anon_sym_BSLASHcite] = ACTIONS(5968), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCite] = ACTIONS(5968), - [anon_sym_BSLASHnocite] = ACTIONS(5968), - [anon_sym_BSLASHcitet] = ACTIONS(5968), - [anon_sym_BSLASHcitep] = ACTIONS(5968), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteauthor] = ACTIONS(5968), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5968), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitetitle] = ACTIONS(5968), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteyear] = ACTIONS(5968), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitedate] = ACTIONS(5968), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteurl] = ACTIONS(5968), - [anon_sym_BSLASHfullcite] = ACTIONS(5968), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5968), - [anon_sym_BSLASHcitealt] = ACTIONS(5968), - [anon_sym_BSLASHcitealp] = ACTIONS(5968), - [anon_sym_BSLASHcitetext] = ACTIONS(5968), - [anon_sym_BSLASHparencite] = ACTIONS(5968), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHParencite] = ACTIONS(5968), - [anon_sym_BSLASHfootcite] = ACTIONS(5968), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5968), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5968), - [anon_sym_BSLASHtextcite] = ACTIONS(5968), - [anon_sym_BSLASHTextcite] = ACTIONS(5968), - [anon_sym_BSLASHsmartcite] = ACTIONS(5968), - [anon_sym_BSLASHSmartcite] = ACTIONS(5968), - [anon_sym_BSLASHsupercite] = ACTIONS(5968), - [anon_sym_BSLASHautocite] = ACTIONS(5968), - [anon_sym_BSLASHAutocite] = ACTIONS(5968), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHvolcite] = ACTIONS(5968), - [anon_sym_BSLASHVolcite] = ACTIONS(5968), - [anon_sym_BSLASHpvolcite] = ACTIONS(5968), - [anon_sym_BSLASHPvolcite] = ACTIONS(5968), - [anon_sym_BSLASHfvolcite] = ACTIONS(5968), - [anon_sym_BSLASHftvolcite] = ACTIONS(5968), - [anon_sym_BSLASHsvolcite] = ACTIONS(5968), - [anon_sym_BSLASHSvolcite] = ACTIONS(5968), - [anon_sym_BSLASHtvolcite] = ACTIONS(5968), - [anon_sym_BSLASHTvolcite] = ACTIONS(5968), - [anon_sym_BSLASHavolcite] = ACTIONS(5968), - [anon_sym_BSLASHAvolcite] = ACTIONS(5968), - [anon_sym_BSLASHnotecite] = ACTIONS(5968), - [anon_sym_BSLASHNotecite] = ACTIONS(5968), - [anon_sym_BSLASHpnotecite] = ACTIONS(5968), - [anon_sym_BSLASHPnotecite] = ACTIONS(5968), - [anon_sym_BSLASHfnotecite] = ACTIONS(5968), - [anon_sym_BSLASHlabel] = ACTIONS(5968), - [anon_sym_BSLASHref] = ACTIONS(5968), - [anon_sym_BSLASHeqref] = ACTIONS(5968), - [anon_sym_BSLASHvref] = ACTIONS(5968), - [anon_sym_BSLASHVref] = ACTIONS(5968), - [anon_sym_BSLASHautoref] = ACTIONS(5968), - [anon_sym_BSLASHpageref] = ACTIONS(5968), - [anon_sym_BSLASHcref] = ACTIONS(5968), - [anon_sym_BSLASHCref] = ACTIONS(5968), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnameCref] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHlabelcref] = ACTIONS(5968), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCrefrange] = ACTIONS(5968), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnewlabel] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5968), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5968), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5972), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHdef] = ACTIONS(5968), - [anon_sym_BSLASHlet] = ACTIONS(5968), - [anon_sym_BSLASHleft] = ACTIONS(5968), - [anon_sym_BSLASHbig] = ACTIONS(5968), - [anon_sym_BSLASHBig] = ACTIONS(5968), - [anon_sym_BSLASHbigg] = ACTIONS(5968), - [anon_sym_BSLASHBigg] = ACTIONS(5968), - [anon_sym_BSLASHbigl] = ACTIONS(5968), - [anon_sym_BSLASHBigl] = ACTIONS(5968), - [anon_sym_BSLASHbiggl] = ACTIONS(5968), - [anon_sym_BSLASHBiggl] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5968), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5968), - [anon_sym_BSLASHgls] = ACTIONS(5968), - [anon_sym_BSLASHGls] = ACTIONS(5968), - [anon_sym_BSLASHGLS] = ACTIONS(5968), - [anon_sym_BSLASHglspl] = ACTIONS(5968), - [anon_sym_BSLASHGlspl] = ACTIONS(5968), - [anon_sym_BSLASHGLSpl] = ACTIONS(5968), - [anon_sym_BSLASHglsdisp] = ACTIONS(5968), - [anon_sym_BSLASHglslink] = ACTIONS(5968), - [anon_sym_BSLASHglstext] = ACTIONS(5968), - [anon_sym_BSLASHGlstext] = ACTIONS(5968), - [anon_sym_BSLASHGLStext] = ACTIONS(5968), - [anon_sym_BSLASHglsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5968), - [anon_sym_BSLASHglsplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSplural] = ACTIONS(5968), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHglsname] = ACTIONS(5968), - [anon_sym_BSLASHGlsname] = ACTIONS(5968), - [anon_sym_BSLASHGLSname] = ACTIONS(5968), - [anon_sym_BSLASHglssymbol] = ACTIONS(5968), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5968), - [anon_sym_BSLASHglsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5968), - [anon_sym_BSLASHglsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5968), - [anon_sym_BSLASHglsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5968), - [anon_sym_BSLASHglsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5968), - [anon_sym_BSLASHglsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5968), - [anon_sym_BSLASHnewacronym] = ACTIONS(5968), - [anon_sym_BSLASHacrshort] = ACTIONS(5968), - [anon_sym_BSLASHAcrshort] = ACTIONS(5968), - [anon_sym_BSLASHACRshort] = ACTIONS(5968), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5968), - [anon_sym_BSLASHacrlong] = ACTIONS(5968), - [anon_sym_BSLASHAcrlong] = ACTIONS(5968), - [anon_sym_BSLASHACRlong] = ACTIONS(5968), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5968), - [anon_sym_BSLASHacrfull] = ACTIONS(5968), - [anon_sym_BSLASHAcrfull] = ACTIONS(5968), - [anon_sym_BSLASHACRfull] = ACTIONS(5968), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5968), - [anon_sym_BSLASHacs] = ACTIONS(5968), - [anon_sym_BSLASHAcs] = ACTIONS(5968), - [anon_sym_BSLASHacsp] = ACTIONS(5968), - [anon_sym_BSLASHAcsp] = ACTIONS(5968), - [anon_sym_BSLASHacl] = ACTIONS(5968), - [anon_sym_BSLASHAcl] = ACTIONS(5968), - [anon_sym_BSLASHaclp] = ACTIONS(5968), - [anon_sym_BSLASHAclp] = ACTIONS(5968), - [anon_sym_BSLASHacf] = ACTIONS(5968), - [anon_sym_BSLASHAcf] = ACTIONS(5968), - [anon_sym_BSLASHacfp] = ACTIONS(5968), - [anon_sym_BSLASHAcfp] = ACTIONS(5968), - [anon_sym_BSLASHac] = ACTIONS(5968), - [anon_sym_BSLASHAc] = ACTIONS(5968), - [anon_sym_BSLASHacp] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5968), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5968), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5968), - [anon_sym_BSLASHcolor] = ACTIONS(5968), - [anon_sym_BSLASHcolorbox] = ACTIONS(5968), - [anon_sym_BSLASHtextcolor] = ACTIONS(5968), - [anon_sym_BSLASHpagecolor] = ACTIONS(5968), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5968), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5968), - [anon_sym_BSLASHtext] = ACTIONS(5968), - [anon_sym_BSLASHintertext] = ACTIONS(5968), - [anon_sym_shortintertext] = ACTIONS(5968), - [sym__trivia_raw_fi] = ACTIONS(6689), - }, - [897] = { - [sym_curly_group] = STATE(1113), - [aux_sym_generic_command_repeat1] = STATE(890), - [sym_command_name] = ACTIONS(5964), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5964), - [anon_sym_LBRACK] = ACTIONS(5966), - [anon_sym_RBRACK] = ACTIONS(5966), - [anon_sym_COMMA] = ACTIONS(5966), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_LPAREN] = ACTIONS(5966), - [anon_sym_RPAREN] = ACTIONS(5966), - [anon_sym_BSLASHpart] = ACTIONS(5964), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddpart] = ACTIONS(5964), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5966), - [anon_sym_BSLASHchapter] = ACTIONS(5964), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddchap] = ACTIONS(5964), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsection] = ACTIONS(5964), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddsec] = ACTIONS(5964), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubsection] = ACTIONS(5964), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5964), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHparagraph] = ACTIONS(5964), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5964), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5966), - [anon_sym_BSLASHitem] = ACTIONS(5964), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5966), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(5964), - [sym_placeholder] = ACTIONS(5966), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5966), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_SQUOTE] = ACTIONS(5964), - [anon_sym__] = ACTIONS(5966), - [anon_sym_CARET] = ACTIONS(5966), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5966), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5966), - [anon_sym_DOLLAR] = ACTIONS(5964), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5966), - [anon_sym_BSLASHbegin] = ACTIONS(5964), - [anon_sym_BSLASHend] = ACTIONS(5964), - [anon_sym_BSLASHtitle] = ACTIONS(5964), - [anon_sym_BSLASHauthor] = ACTIONS(5964), - [anon_sym_BSLASHusepackage] = ACTIONS(5964), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5964), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5964), - [anon_sym_BSLASHinclude] = ACTIONS(5964), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5964), - [anon_sym_BSLASHinput] = ACTIONS(5964), - [anon_sym_BSLASHsubfile] = ACTIONS(5964), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5964), - [anon_sym_BSLASHbibliography] = ACTIONS(5964), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5964), - [anon_sym_BSLASHincludesvg] = ACTIONS(5964), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5964), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5964), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5964), - [anon_sym_BSLASHimport] = ACTIONS(5964), - [anon_sym_BSLASHsubimport] = ACTIONS(5964), - [anon_sym_BSLASHinputfrom] = ACTIONS(5964), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5964), - [anon_sym_BSLASHincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHcaption] = ACTIONS(5964), - [anon_sym_BSLASHcite] = ACTIONS(5964), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCite] = ACTIONS(5964), - [anon_sym_BSLASHnocite] = ACTIONS(5964), - [anon_sym_BSLASHcitet] = ACTIONS(5964), - [anon_sym_BSLASHcitep] = ACTIONS(5964), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteauthor] = ACTIONS(5964), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5964), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitetitle] = ACTIONS(5964), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteyear] = ACTIONS(5964), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitedate] = ACTIONS(5964), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteurl] = ACTIONS(5964), - [anon_sym_BSLASHfullcite] = ACTIONS(5964), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5964), - [anon_sym_BSLASHcitealt] = ACTIONS(5964), - [anon_sym_BSLASHcitealp] = ACTIONS(5964), - [anon_sym_BSLASHcitetext] = ACTIONS(5964), - [anon_sym_BSLASHparencite] = ACTIONS(5964), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHParencite] = ACTIONS(5964), - [anon_sym_BSLASHfootcite] = ACTIONS(5964), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5964), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5964), - [anon_sym_BSLASHtextcite] = ACTIONS(5964), - [anon_sym_BSLASHTextcite] = ACTIONS(5964), - [anon_sym_BSLASHsmartcite] = ACTIONS(5964), - [anon_sym_BSLASHSmartcite] = ACTIONS(5964), - [anon_sym_BSLASHsupercite] = ACTIONS(5964), - [anon_sym_BSLASHautocite] = ACTIONS(5964), - [anon_sym_BSLASHAutocite] = ACTIONS(5964), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHvolcite] = ACTIONS(5964), - [anon_sym_BSLASHVolcite] = ACTIONS(5964), - [anon_sym_BSLASHpvolcite] = ACTIONS(5964), - [anon_sym_BSLASHPvolcite] = ACTIONS(5964), - [anon_sym_BSLASHfvolcite] = ACTIONS(5964), - [anon_sym_BSLASHftvolcite] = ACTIONS(5964), - [anon_sym_BSLASHsvolcite] = ACTIONS(5964), - [anon_sym_BSLASHSvolcite] = ACTIONS(5964), - [anon_sym_BSLASHtvolcite] = ACTIONS(5964), - [anon_sym_BSLASHTvolcite] = ACTIONS(5964), - [anon_sym_BSLASHavolcite] = ACTIONS(5964), - [anon_sym_BSLASHAvolcite] = ACTIONS(5964), - [anon_sym_BSLASHnotecite] = ACTIONS(5964), - [anon_sym_BSLASHNotecite] = ACTIONS(5964), - [anon_sym_BSLASHpnotecite] = ACTIONS(5964), - [anon_sym_BSLASHPnotecite] = ACTIONS(5964), - [anon_sym_BSLASHfnotecite] = ACTIONS(5964), - [anon_sym_BSLASHlabel] = ACTIONS(5964), - [anon_sym_BSLASHref] = ACTIONS(5964), - [anon_sym_BSLASHeqref] = ACTIONS(5964), - [anon_sym_BSLASHvref] = ACTIONS(5964), - [anon_sym_BSLASHVref] = ACTIONS(5964), - [anon_sym_BSLASHautoref] = ACTIONS(5964), - [anon_sym_BSLASHpageref] = ACTIONS(5964), - [anon_sym_BSLASHcref] = ACTIONS(5964), - [anon_sym_BSLASHCref] = ACTIONS(5964), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnameCref] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHlabelcref] = ACTIONS(5964), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCrefrange] = ACTIONS(5964), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnewlabel] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5964), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5964), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5966), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHdef] = ACTIONS(5964), - [anon_sym_BSLASHlet] = ACTIONS(5964), - [anon_sym_BSLASHleft] = ACTIONS(5964), - [anon_sym_BSLASHbig] = ACTIONS(5964), - [anon_sym_BSLASHBig] = ACTIONS(5964), - [anon_sym_BSLASHbigg] = ACTIONS(5964), - [anon_sym_BSLASHBigg] = ACTIONS(5964), - [anon_sym_BSLASHbigl] = ACTIONS(5964), - [anon_sym_BSLASHBigl] = ACTIONS(5964), - [anon_sym_BSLASHbiggl] = ACTIONS(5964), - [anon_sym_BSLASHBiggl] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5964), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5964), - [anon_sym_BSLASHgls] = ACTIONS(5964), - [anon_sym_BSLASHGls] = ACTIONS(5964), - [anon_sym_BSLASHGLS] = ACTIONS(5964), - [anon_sym_BSLASHglspl] = ACTIONS(5964), - [anon_sym_BSLASHGlspl] = ACTIONS(5964), - [anon_sym_BSLASHGLSpl] = ACTIONS(5964), - [anon_sym_BSLASHglsdisp] = ACTIONS(5964), - [anon_sym_BSLASHglslink] = ACTIONS(5964), - [anon_sym_BSLASHglstext] = ACTIONS(5964), - [anon_sym_BSLASHGlstext] = ACTIONS(5964), - [anon_sym_BSLASHGLStext] = ACTIONS(5964), - [anon_sym_BSLASHglsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5964), - [anon_sym_BSLASHglsplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSplural] = ACTIONS(5964), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHglsname] = ACTIONS(5964), - [anon_sym_BSLASHGlsname] = ACTIONS(5964), - [anon_sym_BSLASHGLSname] = ACTIONS(5964), - [anon_sym_BSLASHglssymbol] = ACTIONS(5964), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5964), - [anon_sym_BSLASHglsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5964), - [anon_sym_BSLASHglsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5964), - [anon_sym_BSLASHglsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5964), - [anon_sym_BSLASHglsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5964), - [anon_sym_BSLASHglsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5964), - [anon_sym_BSLASHnewacronym] = ACTIONS(5964), - [anon_sym_BSLASHacrshort] = ACTIONS(5964), - [anon_sym_BSLASHAcrshort] = ACTIONS(5964), - [anon_sym_BSLASHACRshort] = ACTIONS(5964), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5964), - [anon_sym_BSLASHacrlong] = ACTIONS(5964), - [anon_sym_BSLASHAcrlong] = ACTIONS(5964), - [anon_sym_BSLASHACRlong] = ACTIONS(5964), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5964), - [anon_sym_BSLASHacrfull] = ACTIONS(5964), - [anon_sym_BSLASHAcrfull] = ACTIONS(5964), - [anon_sym_BSLASHACRfull] = ACTIONS(5964), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5964), - [anon_sym_BSLASHacs] = ACTIONS(5964), - [anon_sym_BSLASHAcs] = ACTIONS(5964), - [anon_sym_BSLASHacsp] = ACTIONS(5964), - [anon_sym_BSLASHAcsp] = ACTIONS(5964), - [anon_sym_BSLASHacl] = ACTIONS(5964), - [anon_sym_BSLASHAcl] = ACTIONS(5964), - [anon_sym_BSLASHaclp] = ACTIONS(5964), - [anon_sym_BSLASHAclp] = ACTIONS(5964), - [anon_sym_BSLASHacf] = ACTIONS(5964), - [anon_sym_BSLASHAcf] = ACTIONS(5964), - [anon_sym_BSLASHacfp] = ACTIONS(5964), - [anon_sym_BSLASHAcfp] = ACTIONS(5964), - [anon_sym_BSLASHac] = ACTIONS(5964), - [anon_sym_BSLASHAc] = ACTIONS(5964), - [anon_sym_BSLASHacp] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5964), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5964), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5964), - [anon_sym_BSLASHcolor] = ACTIONS(5964), - [anon_sym_BSLASHcolorbox] = ACTIONS(5964), - [anon_sym_BSLASHtextcolor] = ACTIONS(5964), - [anon_sym_BSLASHpagecolor] = ACTIONS(5964), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5964), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5964), - [anon_sym_BSLASHtext] = ACTIONS(5964), - [anon_sym_BSLASHintertext] = ACTIONS(5964), - [anon_sym_shortintertext] = ACTIONS(5964), - }, - [898] = { - [sym_curly_group] = STATE(1395), - [aux_sym_generic_command_repeat1] = STATE(909), - [sym_command_name] = ACTIONS(5983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5983), - [anon_sym_LBRACK] = ACTIONS(5985), - [anon_sym_RBRACK] = ACTIONS(5985), - [anon_sym_COMMA] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(5985), - [anon_sym_LPAREN] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_BSLASHpart] = ACTIONS(5983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddpart] = ACTIONS(5983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5985), - [anon_sym_BSLASHchapter] = ACTIONS(5983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddchap] = ACTIONS(5983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsection] = ACTIONS(5983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddsec] = ACTIONS(5983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubsection] = ACTIONS(5983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHparagraph] = ACTIONS(5983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5985), - [anon_sym_BSLASHitem] = ACTIONS(5983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(5983), - [sym_placeholder] = ACTIONS(5985), - [anon_sym_PLUS] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(5985), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_SLASH] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(5983), - [anon_sym_GT] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5983), - [anon_sym_PIPE] = ACTIONS(5983), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_SQUOTE] = ACTIONS(5983), - [anon_sym__] = ACTIONS(5985), - [anon_sym_CARET] = ACTIONS(5985), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(5983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5985), - [anon_sym_BSLASHbegin] = ACTIONS(5983), - [anon_sym_BSLASHtitle] = ACTIONS(5983), - [anon_sym_BSLASHauthor] = ACTIONS(5983), - [anon_sym_BSLASHusepackage] = ACTIONS(5983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), - [anon_sym_BSLASHinclude] = ACTIONS(5983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), - [anon_sym_BSLASHinput] = ACTIONS(5983), - [anon_sym_BSLASHsubfile] = ACTIONS(5983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), - [anon_sym_BSLASHbibliography] = ACTIONS(5983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), - [anon_sym_BSLASHincludesvg] = ACTIONS(5983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), - [anon_sym_BSLASHimport] = ACTIONS(5983), - [anon_sym_BSLASHsubimport] = ACTIONS(5983), - [anon_sym_BSLASHinputfrom] = ACTIONS(5983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), - [anon_sym_BSLASHincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHcaption] = ACTIONS(5983), - [anon_sym_BSLASHcite] = ACTIONS(5983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCite] = ACTIONS(5983), - [anon_sym_BSLASHnocite] = ACTIONS(5983), - [anon_sym_BSLASHcitet] = ACTIONS(5983), - [anon_sym_BSLASHcitep] = ACTIONS(5983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteauthor] = ACTIONS(5983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitetitle] = ACTIONS(5983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteyear] = ACTIONS(5983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitedate] = ACTIONS(5983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteurl] = ACTIONS(5983), - [anon_sym_BSLASHfullcite] = ACTIONS(5983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), - [anon_sym_BSLASHcitealt] = ACTIONS(5983), - [anon_sym_BSLASHcitealp] = ACTIONS(5983), - [anon_sym_BSLASHcitetext] = ACTIONS(5983), - [anon_sym_BSLASHparencite] = ACTIONS(5983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHParencite] = ACTIONS(5983), - [anon_sym_BSLASHfootcite] = ACTIONS(5983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), - [anon_sym_BSLASHtextcite] = ACTIONS(5983), - [anon_sym_BSLASHTextcite] = ACTIONS(5983), - [anon_sym_BSLASHsmartcite] = ACTIONS(5983), - [anon_sym_BSLASHSmartcite] = ACTIONS(5983), - [anon_sym_BSLASHsupercite] = ACTIONS(5983), - [anon_sym_BSLASHautocite] = ACTIONS(5983), - [anon_sym_BSLASHAutocite] = ACTIONS(5983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHvolcite] = ACTIONS(5983), - [anon_sym_BSLASHVolcite] = ACTIONS(5983), - [anon_sym_BSLASHpvolcite] = ACTIONS(5983), - [anon_sym_BSLASHPvolcite] = ACTIONS(5983), - [anon_sym_BSLASHfvolcite] = ACTIONS(5983), - [anon_sym_BSLASHftvolcite] = ACTIONS(5983), - [anon_sym_BSLASHsvolcite] = ACTIONS(5983), - [anon_sym_BSLASHSvolcite] = ACTIONS(5983), - [anon_sym_BSLASHtvolcite] = ACTIONS(5983), - [anon_sym_BSLASHTvolcite] = ACTIONS(5983), - [anon_sym_BSLASHavolcite] = ACTIONS(5983), - [anon_sym_BSLASHAvolcite] = ACTIONS(5983), - [anon_sym_BSLASHnotecite] = ACTIONS(5983), - [anon_sym_BSLASHNotecite] = ACTIONS(5983), - [anon_sym_BSLASHpnotecite] = ACTIONS(5983), - [anon_sym_BSLASHPnotecite] = ACTIONS(5983), - [anon_sym_BSLASHfnotecite] = ACTIONS(5983), - [anon_sym_BSLASHlabel] = ACTIONS(5983), - [anon_sym_BSLASHref] = ACTIONS(5983), - [anon_sym_BSLASHeqref] = ACTIONS(5983), - [anon_sym_BSLASHvref] = ACTIONS(5983), - [anon_sym_BSLASHVref] = ACTIONS(5983), - [anon_sym_BSLASHautoref] = ACTIONS(5983), - [anon_sym_BSLASHpageref] = ACTIONS(5983), - [anon_sym_BSLASHcref] = ACTIONS(5983), - [anon_sym_BSLASHCref] = ACTIONS(5983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnameCref] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHlabelcref] = ACTIONS(5983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCrefrange] = ACTIONS(5983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnewlabel] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHdef] = ACTIONS(5983), - [anon_sym_BSLASHlet] = ACTIONS(5983), - [anon_sym_BSLASHleft] = ACTIONS(5983), - [anon_sym_BSLASHbig] = ACTIONS(5983), - [anon_sym_BSLASHBig] = ACTIONS(5983), - [anon_sym_BSLASHbigg] = ACTIONS(5983), - [anon_sym_BSLASHBigg] = ACTIONS(5983), - [anon_sym_BSLASHbigl] = ACTIONS(5983), - [anon_sym_BSLASHBigl] = ACTIONS(5983), - [anon_sym_BSLASHbiggl] = ACTIONS(5983), - [anon_sym_BSLASHBiggl] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), - [anon_sym_BSLASHgls] = ACTIONS(5983), - [anon_sym_BSLASHGls] = ACTIONS(5983), - [anon_sym_BSLASHGLS] = ACTIONS(5983), - [anon_sym_BSLASHglspl] = ACTIONS(5983), - [anon_sym_BSLASHGlspl] = ACTIONS(5983), - [anon_sym_BSLASHGLSpl] = ACTIONS(5983), - [anon_sym_BSLASHglsdisp] = ACTIONS(5983), - [anon_sym_BSLASHglslink] = ACTIONS(5983), - [anon_sym_BSLASHglstext] = ACTIONS(5983), - [anon_sym_BSLASHGlstext] = ACTIONS(5983), - [anon_sym_BSLASHGLStext] = ACTIONS(5983), - [anon_sym_BSLASHglsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), - [anon_sym_BSLASHglsplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSplural] = ACTIONS(5983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHglsname] = ACTIONS(5983), - [anon_sym_BSLASHGlsname] = ACTIONS(5983), - [anon_sym_BSLASHGLSname] = ACTIONS(5983), - [anon_sym_BSLASHglssymbol] = ACTIONS(5983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), - [anon_sym_BSLASHglsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), - [anon_sym_BSLASHglsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), - [anon_sym_BSLASHglsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), - [anon_sym_BSLASHglsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), - [anon_sym_BSLASHglsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), - [anon_sym_BSLASHnewacronym] = ACTIONS(5983), - [anon_sym_BSLASHacrshort] = ACTIONS(5983), - [anon_sym_BSLASHAcrshort] = ACTIONS(5983), - [anon_sym_BSLASHACRshort] = ACTIONS(5983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), - [anon_sym_BSLASHacrlong] = ACTIONS(5983), - [anon_sym_BSLASHAcrlong] = ACTIONS(5983), - [anon_sym_BSLASHACRlong] = ACTIONS(5983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), - [anon_sym_BSLASHacrfull] = ACTIONS(5983), - [anon_sym_BSLASHAcrfull] = ACTIONS(5983), - [anon_sym_BSLASHACRfull] = ACTIONS(5983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), - [anon_sym_BSLASHacs] = ACTIONS(5983), - [anon_sym_BSLASHAcs] = ACTIONS(5983), - [anon_sym_BSLASHacsp] = ACTIONS(5983), - [anon_sym_BSLASHAcsp] = ACTIONS(5983), - [anon_sym_BSLASHacl] = ACTIONS(5983), - [anon_sym_BSLASHAcl] = ACTIONS(5983), - [anon_sym_BSLASHaclp] = ACTIONS(5983), - [anon_sym_BSLASHAclp] = ACTIONS(5983), - [anon_sym_BSLASHacf] = ACTIONS(5983), - [anon_sym_BSLASHAcf] = ACTIONS(5983), - [anon_sym_BSLASHacfp] = ACTIONS(5983), - [anon_sym_BSLASHAcfp] = ACTIONS(5983), - [anon_sym_BSLASHac] = ACTIONS(5983), - [anon_sym_BSLASHAc] = ACTIONS(5983), - [anon_sym_BSLASHacp] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), - [anon_sym_BSLASHcolor] = ACTIONS(5983), - [anon_sym_BSLASHcolorbox] = ACTIONS(5983), - [anon_sym_BSLASHtextcolor] = ACTIONS(5983), - [anon_sym_BSLASHpagecolor] = ACTIONS(5983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), - [anon_sym_BSLASHtext] = ACTIONS(5983), - [anon_sym_BSLASHintertext] = ACTIONS(5983), - [anon_sym_shortintertext] = ACTIONS(5983), - }, - [899] = { - [sym_curly_group] = STATE(1284), - [aux_sym_generic_command_repeat1] = STATE(899), - [sym_command_name] = ACTIONS(5976), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5976), - [anon_sym_LBRACK] = ACTIONS(5978), - [anon_sym_RBRACK] = ACTIONS(5978), - [anon_sym_COMMA] = ACTIONS(5978), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LPAREN] = ACTIONS(5978), - [anon_sym_RPAREN] = ACTIONS(5978), - [anon_sym_BSLASHpart] = ACTIONS(5976), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddpart] = ACTIONS(5976), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5978), - [anon_sym_BSLASHchapter] = ACTIONS(5976), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddchap] = ACTIONS(5976), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsection] = ACTIONS(5976), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddsec] = ACTIONS(5976), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubsection] = ACTIONS(5976), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5976), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHparagraph] = ACTIONS(5976), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5976), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5978), - [anon_sym_BSLASHitem] = ACTIONS(5976), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5978), - [anon_sym_LBRACE] = ACTIONS(6691), - [sym_word] = ACTIONS(5976), - [sym_placeholder] = ACTIONS(5978), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_STAR] = ACTIONS(5978), - [anon_sym_SLASH] = ACTIONS(5978), - [anon_sym_LT] = ACTIONS(5976), - [anon_sym_GT] = ACTIONS(5976), - [anon_sym_BANG] = ACTIONS(5976), - [anon_sym_PIPE] = ACTIONS(5976), - [anon_sym_COLON] = ACTIONS(5976), - [anon_sym_SQUOTE] = ACTIONS(5976), - [anon_sym__] = ACTIONS(5978), - [anon_sym_CARET] = ACTIONS(5978), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5978), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5978), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5978), - [anon_sym_DOLLAR] = ACTIONS(5976), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5978), - [anon_sym_BSLASHbegin] = ACTIONS(5976), - [anon_sym_BSLASHtitle] = ACTIONS(5976), - [anon_sym_BSLASHauthor] = ACTIONS(5976), - [anon_sym_BSLASHusepackage] = ACTIONS(5976), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5976), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5976), - [anon_sym_BSLASHinclude] = ACTIONS(5976), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5976), - [anon_sym_BSLASHinput] = ACTIONS(5976), - [anon_sym_BSLASHsubfile] = ACTIONS(5976), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5976), - [anon_sym_BSLASHbibliography] = ACTIONS(5976), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5976), - [anon_sym_BSLASHincludesvg] = ACTIONS(5976), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5976), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5976), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5976), - [anon_sym_BSLASHimport] = ACTIONS(5976), - [anon_sym_BSLASHsubimport] = ACTIONS(5976), - [anon_sym_BSLASHinputfrom] = ACTIONS(5976), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5976), - [anon_sym_BSLASHincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHcaption] = ACTIONS(5976), - [anon_sym_BSLASHcite] = ACTIONS(5976), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCite] = ACTIONS(5976), - [anon_sym_BSLASHnocite] = ACTIONS(5976), - [anon_sym_BSLASHcitet] = ACTIONS(5976), - [anon_sym_BSLASHcitep] = ACTIONS(5976), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteauthor] = ACTIONS(5976), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5976), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitetitle] = ACTIONS(5976), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteyear] = ACTIONS(5976), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitedate] = ACTIONS(5976), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteurl] = ACTIONS(5976), - [anon_sym_BSLASHfullcite] = ACTIONS(5976), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5976), - [anon_sym_BSLASHcitealt] = ACTIONS(5976), - [anon_sym_BSLASHcitealp] = ACTIONS(5976), - [anon_sym_BSLASHcitetext] = ACTIONS(5976), - [anon_sym_BSLASHparencite] = ACTIONS(5976), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHParencite] = ACTIONS(5976), - [anon_sym_BSLASHfootcite] = ACTIONS(5976), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5976), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5976), - [anon_sym_BSLASHtextcite] = ACTIONS(5976), - [anon_sym_BSLASHTextcite] = ACTIONS(5976), - [anon_sym_BSLASHsmartcite] = ACTIONS(5976), - [anon_sym_BSLASHSmartcite] = ACTIONS(5976), - [anon_sym_BSLASHsupercite] = ACTIONS(5976), - [anon_sym_BSLASHautocite] = ACTIONS(5976), - [anon_sym_BSLASHAutocite] = ACTIONS(5976), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHvolcite] = ACTIONS(5976), - [anon_sym_BSLASHVolcite] = ACTIONS(5976), - [anon_sym_BSLASHpvolcite] = ACTIONS(5976), - [anon_sym_BSLASHPvolcite] = ACTIONS(5976), - [anon_sym_BSLASHfvolcite] = ACTIONS(5976), - [anon_sym_BSLASHftvolcite] = ACTIONS(5976), - [anon_sym_BSLASHsvolcite] = ACTIONS(5976), - [anon_sym_BSLASHSvolcite] = ACTIONS(5976), - [anon_sym_BSLASHtvolcite] = ACTIONS(5976), - [anon_sym_BSLASHTvolcite] = ACTIONS(5976), - [anon_sym_BSLASHavolcite] = ACTIONS(5976), - [anon_sym_BSLASHAvolcite] = ACTIONS(5976), - [anon_sym_BSLASHnotecite] = ACTIONS(5976), - [anon_sym_BSLASHNotecite] = ACTIONS(5976), - [anon_sym_BSLASHpnotecite] = ACTIONS(5976), - [anon_sym_BSLASHPnotecite] = ACTIONS(5976), - [anon_sym_BSLASHfnotecite] = ACTIONS(5976), - [anon_sym_BSLASHlabel] = ACTIONS(5976), - [anon_sym_BSLASHref] = ACTIONS(5976), - [anon_sym_BSLASHeqref] = ACTIONS(5976), - [anon_sym_BSLASHvref] = ACTIONS(5976), - [anon_sym_BSLASHVref] = ACTIONS(5976), - [anon_sym_BSLASHautoref] = ACTIONS(5976), - [anon_sym_BSLASHpageref] = ACTIONS(5976), - [anon_sym_BSLASHcref] = ACTIONS(5976), - [anon_sym_BSLASHCref] = ACTIONS(5976), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnameCref] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHlabelcref] = ACTIONS(5976), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCrefrange] = ACTIONS(5976), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnewlabel] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5976), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5976), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5978), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHdef] = ACTIONS(5976), - [anon_sym_BSLASHlet] = ACTIONS(5976), - [anon_sym_BSLASHleft] = ACTIONS(5976), - [anon_sym_BSLASHbig] = ACTIONS(5976), - [anon_sym_BSLASHBig] = ACTIONS(5976), - [anon_sym_BSLASHbigg] = ACTIONS(5976), - [anon_sym_BSLASHBigg] = ACTIONS(5976), - [anon_sym_BSLASHbigl] = ACTIONS(5976), - [anon_sym_BSLASHBigl] = ACTIONS(5976), - [anon_sym_BSLASHbiggl] = ACTIONS(5976), - [anon_sym_BSLASHBiggl] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5976), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5976), - [anon_sym_BSLASHgls] = ACTIONS(5976), - [anon_sym_BSLASHGls] = ACTIONS(5976), - [anon_sym_BSLASHGLS] = ACTIONS(5976), - [anon_sym_BSLASHglspl] = ACTIONS(5976), - [anon_sym_BSLASHGlspl] = ACTIONS(5976), - [anon_sym_BSLASHGLSpl] = ACTIONS(5976), - [anon_sym_BSLASHglsdisp] = ACTIONS(5976), - [anon_sym_BSLASHglslink] = ACTIONS(5976), - [anon_sym_BSLASHglstext] = ACTIONS(5976), - [anon_sym_BSLASHGlstext] = ACTIONS(5976), - [anon_sym_BSLASHGLStext] = ACTIONS(5976), - [anon_sym_BSLASHglsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5976), - [anon_sym_BSLASHglsplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSplural] = ACTIONS(5976), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHglsname] = ACTIONS(5976), - [anon_sym_BSLASHGlsname] = ACTIONS(5976), - [anon_sym_BSLASHGLSname] = ACTIONS(5976), - [anon_sym_BSLASHglssymbol] = ACTIONS(5976), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5976), - [anon_sym_BSLASHglsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5976), - [anon_sym_BSLASHglsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5976), - [anon_sym_BSLASHglsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5976), - [anon_sym_BSLASHglsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5976), - [anon_sym_BSLASHglsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5976), - [anon_sym_BSLASHnewacronym] = ACTIONS(5976), - [anon_sym_BSLASHacrshort] = ACTIONS(5976), - [anon_sym_BSLASHAcrshort] = ACTIONS(5976), - [anon_sym_BSLASHACRshort] = ACTIONS(5976), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5976), - [anon_sym_BSLASHacrlong] = ACTIONS(5976), - [anon_sym_BSLASHAcrlong] = ACTIONS(5976), - [anon_sym_BSLASHACRlong] = ACTIONS(5976), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5976), - [anon_sym_BSLASHacrfull] = ACTIONS(5976), - [anon_sym_BSLASHAcrfull] = ACTIONS(5976), - [anon_sym_BSLASHACRfull] = ACTIONS(5976), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5976), - [anon_sym_BSLASHacs] = ACTIONS(5976), - [anon_sym_BSLASHAcs] = ACTIONS(5976), - [anon_sym_BSLASHacsp] = ACTIONS(5976), - [anon_sym_BSLASHAcsp] = ACTIONS(5976), - [anon_sym_BSLASHacl] = ACTIONS(5976), - [anon_sym_BSLASHAcl] = ACTIONS(5976), - [anon_sym_BSLASHaclp] = ACTIONS(5976), - [anon_sym_BSLASHAclp] = ACTIONS(5976), - [anon_sym_BSLASHacf] = ACTIONS(5976), - [anon_sym_BSLASHAcf] = ACTIONS(5976), - [anon_sym_BSLASHacfp] = ACTIONS(5976), - [anon_sym_BSLASHAcfp] = ACTIONS(5976), - [anon_sym_BSLASHac] = ACTIONS(5976), - [anon_sym_BSLASHAc] = ACTIONS(5976), - [anon_sym_BSLASHacp] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5976), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5976), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5976), - [anon_sym_BSLASHcolor] = ACTIONS(5976), - [anon_sym_BSLASHcolorbox] = ACTIONS(5976), - [anon_sym_BSLASHtextcolor] = ACTIONS(5976), - [anon_sym_BSLASHpagecolor] = ACTIONS(5976), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5976), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5976), - [anon_sym_BSLASHtext] = ACTIONS(5976), - [anon_sym_BSLASHintertext] = ACTIONS(5976), - [anon_sym_shortintertext] = ACTIONS(5976), - }, - [900] = { - [sym_curly_group] = STATE(1284), - [aux_sym_generic_command_repeat1] = STATE(899), - [sym_command_name] = ACTIONS(5964), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5964), - [anon_sym_LBRACK] = ACTIONS(5966), - [anon_sym_RBRACK] = ACTIONS(5966), - [anon_sym_COMMA] = ACTIONS(5966), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_LPAREN] = ACTIONS(5966), - [anon_sym_RPAREN] = ACTIONS(5966), - [anon_sym_BSLASHpart] = ACTIONS(5964), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddpart] = ACTIONS(5964), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5966), - [anon_sym_BSLASHchapter] = ACTIONS(5964), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddchap] = ACTIONS(5964), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsection] = ACTIONS(5964), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddsec] = ACTIONS(5964), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubsection] = ACTIONS(5964), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5964), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHparagraph] = ACTIONS(5964), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5964), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5966), - [anon_sym_BSLASHitem] = ACTIONS(5964), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5966), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(5964), - [sym_placeholder] = ACTIONS(5966), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5966), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_SQUOTE] = ACTIONS(5964), - [anon_sym__] = ACTIONS(5966), - [anon_sym_CARET] = ACTIONS(5966), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5966), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5966), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5966), - [anon_sym_DOLLAR] = ACTIONS(5964), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5966), - [anon_sym_BSLASHbegin] = ACTIONS(5964), - [anon_sym_BSLASHtitle] = ACTIONS(5964), - [anon_sym_BSLASHauthor] = ACTIONS(5964), - [anon_sym_BSLASHusepackage] = ACTIONS(5964), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5964), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5964), - [anon_sym_BSLASHinclude] = ACTIONS(5964), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5964), - [anon_sym_BSLASHinput] = ACTIONS(5964), - [anon_sym_BSLASHsubfile] = ACTIONS(5964), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5964), - [anon_sym_BSLASHbibliography] = ACTIONS(5964), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5964), - [anon_sym_BSLASHincludesvg] = ACTIONS(5964), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5964), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5964), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5964), - [anon_sym_BSLASHimport] = ACTIONS(5964), - [anon_sym_BSLASHsubimport] = ACTIONS(5964), - [anon_sym_BSLASHinputfrom] = ACTIONS(5964), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5964), - [anon_sym_BSLASHincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHcaption] = ACTIONS(5964), - [anon_sym_BSLASHcite] = ACTIONS(5964), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCite] = ACTIONS(5964), - [anon_sym_BSLASHnocite] = ACTIONS(5964), - [anon_sym_BSLASHcitet] = ACTIONS(5964), - [anon_sym_BSLASHcitep] = ACTIONS(5964), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteauthor] = ACTIONS(5964), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5964), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitetitle] = ACTIONS(5964), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteyear] = ACTIONS(5964), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitedate] = ACTIONS(5964), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteurl] = ACTIONS(5964), - [anon_sym_BSLASHfullcite] = ACTIONS(5964), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5964), - [anon_sym_BSLASHcitealt] = ACTIONS(5964), - [anon_sym_BSLASHcitealp] = ACTIONS(5964), - [anon_sym_BSLASHcitetext] = ACTIONS(5964), - [anon_sym_BSLASHparencite] = ACTIONS(5964), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHParencite] = ACTIONS(5964), - [anon_sym_BSLASHfootcite] = ACTIONS(5964), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5964), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5964), - [anon_sym_BSLASHtextcite] = ACTIONS(5964), - [anon_sym_BSLASHTextcite] = ACTIONS(5964), - [anon_sym_BSLASHsmartcite] = ACTIONS(5964), - [anon_sym_BSLASHSmartcite] = ACTIONS(5964), - [anon_sym_BSLASHsupercite] = ACTIONS(5964), - [anon_sym_BSLASHautocite] = ACTIONS(5964), - [anon_sym_BSLASHAutocite] = ACTIONS(5964), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHvolcite] = ACTIONS(5964), - [anon_sym_BSLASHVolcite] = ACTIONS(5964), - [anon_sym_BSLASHpvolcite] = ACTIONS(5964), - [anon_sym_BSLASHPvolcite] = ACTIONS(5964), - [anon_sym_BSLASHfvolcite] = ACTIONS(5964), - [anon_sym_BSLASHftvolcite] = ACTIONS(5964), - [anon_sym_BSLASHsvolcite] = ACTIONS(5964), - [anon_sym_BSLASHSvolcite] = ACTIONS(5964), - [anon_sym_BSLASHtvolcite] = ACTIONS(5964), - [anon_sym_BSLASHTvolcite] = ACTIONS(5964), - [anon_sym_BSLASHavolcite] = ACTIONS(5964), - [anon_sym_BSLASHAvolcite] = ACTIONS(5964), - [anon_sym_BSLASHnotecite] = ACTIONS(5964), - [anon_sym_BSLASHNotecite] = ACTIONS(5964), - [anon_sym_BSLASHpnotecite] = ACTIONS(5964), - [anon_sym_BSLASHPnotecite] = ACTIONS(5964), - [anon_sym_BSLASHfnotecite] = ACTIONS(5964), - [anon_sym_BSLASHlabel] = ACTIONS(5964), - [anon_sym_BSLASHref] = ACTIONS(5964), - [anon_sym_BSLASHeqref] = ACTIONS(5964), - [anon_sym_BSLASHvref] = ACTIONS(5964), - [anon_sym_BSLASHVref] = ACTIONS(5964), - [anon_sym_BSLASHautoref] = ACTIONS(5964), - [anon_sym_BSLASHpageref] = ACTIONS(5964), - [anon_sym_BSLASHcref] = ACTIONS(5964), - [anon_sym_BSLASHCref] = ACTIONS(5964), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnameCref] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHlabelcref] = ACTIONS(5964), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCrefrange] = ACTIONS(5964), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnewlabel] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5964), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5964), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5966), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHdef] = ACTIONS(5964), - [anon_sym_BSLASHlet] = ACTIONS(5964), - [anon_sym_BSLASHleft] = ACTIONS(5964), - [anon_sym_BSLASHbig] = ACTIONS(5964), - [anon_sym_BSLASHBig] = ACTIONS(5964), - [anon_sym_BSLASHbigg] = ACTIONS(5964), - [anon_sym_BSLASHBigg] = ACTIONS(5964), - [anon_sym_BSLASHbigl] = ACTIONS(5964), - [anon_sym_BSLASHBigl] = ACTIONS(5964), - [anon_sym_BSLASHbiggl] = ACTIONS(5964), - [anon_sym_BSLASHBiggl] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5964), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5964), - [anon_sym_BSLASHgls] = ACTIONS(5964), - [anon_sym_BSLASHGls] = ACTIONS(5964), - [anon_sym_BSLASHGLS] = ACTIONS(5964), - [anon_sym_BSLASHglspl] = ACTIONS(5964), - [anon_sym_BSLASHGlspl] = ACTIONS(5964), - [anon_sym_BSLASHGLSpl] = ACTIONS(5964), - [anon_sym_BSLASHglsdisp] = ACTIONS(5964), - [anon_sym_BSLASHglslink] = ACTIONS(5964), - [anon_sym_BSLASHglstext] = ACTIONS(5964), - [anon_sym_BSLASHGlstext] = ACTIONS(5964), - [anon_sym_BSLASHGLStext] = ACTIONS(5964), - [anon_sym_BSLASHglsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5964), - [anon_sym_BSLASHglsplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSplural] = ACTIONS(5964), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHglsname] = ACTIONS(5964), - [anon_sym_BSLASHGlsname] = ACTIONS(5964), - [anon_sym_BSLASHGLSname] = ACTIONS(5964), - [anon_sym_BSLASHglssymbol] = ACTIONS(5964), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5964), - [anon_sym_BSLASHglsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5964), - [anon_sym_BSLASHglsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5964), - [anon_sym_BSLASHglsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5964), - [anon_sym_BSLASHglsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5964), - [anon_sym_BSLASHglsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5964), - [anon_sym_BSLASHnewacronym] = ACTIONS(5964), - [anon_sym_BSLASHacrshort] = ACTIONS(5964), - [anon_sym_BSLASHAcrshort] = ACTIONS(5964), - [anon_sym_BSLASHACRshort] = ACTIONS(5964), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5964), - [anon_sym_BSLASHacrlong] = ACTIONS(5964), - [anon_sym_BSLASHAcrlong] = ACTIONS(5964), - [anon_sym_BSLASHACRlong] = ACTIONS(5964), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5964), - [anon_sym_BSLASHacrfull] = ACTIONS(5964), - [anon_sym_BSLASHAcrfull] = ACTIONS(5964), - [anon_sym_BSLASHACRfull] = ACTIONS(5964), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5964), - [anon_sym_BSLASHacs] = ACTIONS(5964), - [anon_sym_BSLASHAcs] = ACTIONS(5964), - [anon_sym_BSLASHacsp] = ACTIONS(5964), - [anon_sym_BSLASHAcsp] = ACTIONS(5964), - [anon_sym_BSLASHacl] = ACTIONS(5964), - [anon_sym_BSLASHAcl] = ACTIONS(5964), - [anon_sym_BSLASHaclp] = ACTIONS(5964), - [anon_sym_BSLASHAclp] = ACTIONS(5964), - [anon_sym_BSLASHacf] = ACTIONS(5964), - [anon_sym_BSLASHAcf] = ACTIONS(5964), - [anon_sym_BSLASHacfp] = ACTIONS(5964), - [anon_sym_BSLASHAcfp] = ACTIONS(5964), - [anon_sym_BSLASHac] = ACTIONS(5964), - [anon_sym_BSLASHAc] = ACTIONS(5964), - [anon_sym_BSLASHacp] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5964), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5964), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5964), - [anon_sym_BSLASHcolor] = ACTIONS(5964), - [anon_sym_BSLASHcolorbox] = ACTIONS(5964), - [anon_sym_BSLASHtextcolor] = ACTIONS(5964), - [anon_sym_BSLASHpagecolor] = ACTIONS(5964), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5964), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5964), - [anon_sym_BSLASHtext] = ACTIONS(5964), - [anon_sym_BSLASHintertext] = ACTIONS(5964), - [anon_sym_shortintertext] = ACTIONS(5964), - }, - [901] = { - [sym_curly_group] = STATE(1017), - [sym_brack_group_text] = STATE(2915), - [sym_command_name] = ACTIONS(5993), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5995), - [anon_sym_COMMA] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(5995), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_BSLASHpart] = ACTIONS(5993), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddpart] = ACTIONS(5993), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5995), - [anon_sym_BSLASHchapter] = ACTIONS(5993), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddchap] = ACTIONS(5993), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsection] = ACTIONS(5993), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHaddsec] = ACTIONS(5993), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubsection] = ACTIONS(5993), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5993), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5995), - [anon_sym_BSLASHparagraph] = ACTIONS(5993), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5995), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5993), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5995), - [anon_sym_BSLASHitem] = ACTIONS(5993), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5995), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(5993), - [sym_placeholder] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_BANG] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_SQUOTE] = ACTIONS(5993), - [anon_sym__] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5995), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5993), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5995), - [anon_sym_BSLASHbegin] = ACTIONS(5993), - [anon_sym_BSLASHtitle] = ACTIONS(5993), - [anon_sym_BSLASHauthor] = ACTIONS(5993), - [anon_sym_BSLASHusepackage] = ACTIONS(5993), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5993), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5993), - [anon_sym_BSLASHinclude] = ACTIONS(5993), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5993), - [anon_sym_BSLASHinput] = ACTIONS(5993), - [anon_sym_BSLASHsubfile] = ACTIONS(5993), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5993), - [anon_sym_BSLASHbibliography] = ACTIONS(5993), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5993), - [anon_sym_BSLASHincludesvg] = ACTIONS(5993), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5993), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5993), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5993), - [anon_sym_BSLASHimport] = ACTIONS(5993), - [anon_sym_BSLASHsubimport] = ACTIONS(5993), - [anon_sym_BSLASHinputfrom] = ACTIONS(5993), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5993), - [anon_sym_BSLASHincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHcaption] = ACTIONS(5993), - [anon_sym_BSLASHcite] = ACTIONS(5993), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCite] = ACTIONS(5993), - [anon_sym_BSLASHnocite] = ACTIONS(5993), - [anon_sym_BSLASHcitet] = ACTIONS(5993), - [anon_sym_BSLASHcitep] = ACTIONS(5993), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteauthor] = ACTIONS(5993), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5993), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitetitle] = ACTIONS(5993), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteyear] = ACTIONS(5993), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitedate] = ACTIONS(5993), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteurl] = ACTIONS(5993), - [anon_sym_BSLASHfullcite] = ACTIONS(5993), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5993), - [anon_sym_BSLASHcitealt] = ACTIONS(5993), - [anon_sym_BSLASHcitealp] = ACTIONS(5993), - [anon_sym_BSLASHcitetext] = ACTIONS(5993), - [anon_sym_BSLASHparencite] = ACTIONS(5993), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHParencite] = ACTIONS(5993), - [anon_sym_BSLASHfootcite] = ACTIONS(5993), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5993), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5993), - [anon_sym_BSLASHtextcite] = ACTIONS(5993), - [anon_sym_BSLASHTextcite] = ACTIONS(5993), - [anon_sym_BSLASHsmartcite] = ACTIONS(5993), - [anon_sym_BSLASHSmartcite] = ACTIONS(5993), - [anon_sym_BSLASHsupercite] = ACTIONS(5993), - [anon_sym_BSLASHautocite] = ACTIONS(5993), - [anon_sym_BSLASHAutocite] = ACTIONS(5993), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHvolcite] = ACTIONS(5993), - [anon_sym_BSLASHVolcite] = ACTIONS(5993), - [anon_sym_BSLASHpvolcite] = ACTIONS(5993), - [anon_sym_BSLASHPvolcite] = ACTIONS(5993), - [anon_sym_BSLASHfvolcite] = ACTIONS(5993), - [anon_sym_BSLASHftvolcite] = ACTIONS(5993), - [anon_sym_BSLASHsvolcite] = ACTIONS(5993), - [anon_sym_BSLASHSvolcite] = ACTIONS(5993), - [anon_sym_BSLASHtvolcite] = ACTIONS(5993), - [anon_sym_BSLASHTvolcite] = ACTIONS(5993), - [anon_sym_BSLASHavolcite] = ACTIONS(5993), - [anon_sym_BSLASHAvolcite] = ACTIONS(5993), - [anon_sym_BSLASHnotecite] = ACTIONS(5993), - [anon_sym_BSLASHNotecite] = ACTIONS(5993), - [anon_sym_BSLASHpnotecite] = ACTIONS(5993), - [anon_sym_BSLASHPnotecite] = ACTIONS(5993), - [anon_sym_BSLASHfnotecite] = ACTIONS(5993), - [anon_sym_BSLASHlabel] = ACTIONS(5993), - [anon_sym_BSLASHref] = ACTIONS(5993), - [anon_sym_BSLASHeqref] = ACTIONS(5993), - [anon_sym_BSLASHvref] = ACTIONS(5993), - [anon_sym_BSLASHVref] = ACTIONS(5993), - [anon_sym_BSLASHautoref] = ACTIONS(5993), - [anon_sym_BSLASHpageref] = ACTIONS(5993), - [anon_sym_BSLASHcref] = ACTIONS(5993), - [anon_sym_BSLASHCref] = ACTIONS(5993), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnameCref] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHlabelcref] = ACTIONS(5993), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCrefrange] = ACTIONS(5993), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnewlabel] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5993), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5993), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5995), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHdef] = ACTIONS(5993), - [anon_sym_BSLASHlet] = ACTIONS(5993), - [anon_sym_BSLASHleft] = ACTIONS(5993), - [anon_sym_BSLASHbig] = ACTIONS(5993), - [anon_sym_BSLASHBig] = ACTIONS(5993), - [anon_sym_BSLASHbigg] = ACTIONS(5993), - [anon_sym_BSLASHBigg] = ACTIONS(5993), - [anon_sym_BSLASHbigl] = ACTIONS(5993), - [anon_sym_BSLASHBigl] = ACTIONS(5993), - [anon_sym_BSLASHbiggl] = ACTIONS(5993), - [anon_sym_BSLASHBiggl] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5993), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5993), - [anon_sym_BSLASHgls] = ACTIONS(5993), - [anon_sym_BSLASHGls] = ACTIONS(5993), - [anon_sym_BSLASHGLS] = ACTIONS(5993), - [anon_sym_BSLASHglspl] = ACTIONS(5993), - [anon_sym_BSLASHGlspl] = ACTIONS(5993), - [anon_sym_BSLASHGLSpl] = ACTIONS(5993), - [anon_sym_BSLASHglsdisp] = ACTIONS(5993), - [anon_sym_BSLASHglslink] = ACTIONS(5993), - [anon_sym_BSLASHglstext] = ACTIONS(5993), - [anon_sym_BSLASHGlstext] = ACTIONS(5993), - [anon_sym_BSLASHGLStext] = ACTIONS(5993), - [anon_sym_BSLASHglsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5993), - [anon_sym_BSLASHglsplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSplural] = ACTIONS(5993), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHglsname] = ACTIONS(5993), - [anon_sym_BSLASHGlsname] = ACTIONS(5993), - [anon_sym_BSLASHGLSname] = ACTIONS(5993), - [anon_sym_BSLASHglssymbol] = ACTIONS(5993), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5993), - [anon_sym_BSLASHglsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5993), - [anon_sym_BSLASHglsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5993), - [anon_sym_BSLASHglsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5993), - [anon_sym_BSLASHglsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5993), - [anon_sym_BSLASHglsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5993), - [anon_sym_BSLASHnewacronym] = ACTIONS(5993), - [anon_sym_BSLASHacrshort] = ACTIONS(5993), - [anon_sym_BSLASHAcrshort] = ACTIONS(5993), - [anon_sym_BSLASHACRshort] = ACTIONS(5993), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5993), - [anon_sym_BSLASHacrlong] = ACTIONS(5993), - [anon_sym_BSLASHAcrlong] = ACTIONS(5993), - [anon_sym_BSLASHACRlong] = ACTIONS(5993), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5993), - [anon_sym_BSLASHacrfull] = ACTIONS(5993), - [anon_sym_BSLASHAcrfull] = ACTIONS(5993), - [anon_sym_BSLASHACRfull] = ACTIONS(5993), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5993), - [anon_sym_BSLASHacs] = ACTIONS(5993), - [anon_sym_BSLASHAcs] = ACTIONS(5993), - [anon_sym_BSLASHacsp] = ACTIONS(5993), - [anon_sym_BSLASHAcsp] = ACTIONS(5993), - [anon_sym_BSLASHacl] = ACTIONS(5993), - [anon_sym_BSLASHAcl] = ACTIONS(5993), - [anon_sym_BSLASHaclp] = ACTIONS(5993), - [anon_sym_BSLASHAclp] = ACTIONS(5993), - [anon_sym_BSLASHacf] = ACTIONS(5993), - [anon_sym_BSLASHAcf] = ACTIONS(5993), - [anon_sym_BSLASHacfp] = ACTIONS(5993), - [anon_sym_BSLASHAcfp] = ACTIONS(5993), - [anon_sym_BSLASHac] = ACTIONS(5993), - [anon_sym_BSLASHAc] = ACTIONS(5993), - [anon_sym_BSLASHacp] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5993), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5993), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5993), - [anon_sym_BSLASHcolor] = ACTIONS(5993), - [anon_sym_BSLASHcolorbox] = ACTIONS(5993), - [anon_sym_BSLASHtextcolor] = ACTIONS(5993), - [anon_sym_BSLASHpagecolor] = ACTIONS(5993), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5993), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5993), - [anon_sym_BSLASHtext] = ACTIONS(5993), - [anon_sym_BSLASHintertext] = ACTIONS(5993), - [anon_sym_shortintertext] = ACTIONS(5993), - }, - [902] = { - [ts_builtin_sym_end] = ACTIONS(6001), - [sym_command_name] = ACTIONS(5997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5997), - [anon_sym_BSLASHfi] = ACTIONS(6694), - [anon_sym_LBRACK] = ACTIONS(6001), - [anon_sym_RBRACK] = ACTIONS(6001), - [anon_sym_COMMA] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(6001), - [anon_sym_LPAREN] = ACTIONS(6001), - [anon_sym_RPAREN] = ACTIONS(6001), - [anon_sym_BSLASHpart] = ACTIONS(5997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddpart] = ACTIONS(5997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6001), - [anon_sym_BSLASHchapter] = ACTIONS(5997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddchap] = ACTIONS(5997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsection] = ACTIONS(5997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddsec] = ACTIONS(5997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubsection] = ACTIONS(5997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHparagraph] = ACTIONS(5997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5997), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6001), - [anon_sym_BSLASHitem] = ACTIONS(5997), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6001), - [anon_sym_LBRACE] = ACTIONS(6001), - [anon_sym_RBRACE] = ACTIONS(6001), - [sym_word] = ACTIONS(5997), - [sym_placeholder] = ACTIONS(6001), - [anon_sym_PLUS] = ACTIONS(6001), - [anon_sym_DASH] = ACTIONS(6001), - [anon_sym_STAR] = ACTIONS(6001), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_COLON] = ACTIONS(5997), - [anon_sym_SQUOTE] = ACTIONS(5997), - [anon_sym__] = ACTIONS(6001), - [anon_sym_CARET] = ACTIONS(6001), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), - [anon_sym_BSLASHbegin] = ACTIONS(5997), - [anon_sym_BSLASHtitle] = ACTIONS(5997), - [anon_sym_BSLASHauthor] = ACTIONS(5997), - [anon_sym_BSLASHusepackage] = ACTIONS(5997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5997), - [anon_sym_BSLASHinclude] = ACTIONS(5997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5997), - [anon_sym_BSLASHinput] = ACTIONS(5997), - [anon_sym_BSLASHsubfile] = ACTIONS(5997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5997), - [anon_sym_BSLASHbibliography] = ACTIONS(5997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5997), - [anon_sym_BSLASHincludesvg] = ACTIONS(5997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5997), - [anon_sym_BSLASHimport] = ACTIONS(5997), - [anon_sym_BSLASHsubimport] = ACTIONS(5997), - [anon_sym_BSLASHinputfrom] = ACTIONS(5997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5997), - [anon_sym_BSLASHincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHcaption] = ACTIONS(5997), - [anon_sym_BSLASHcite] = ACTIONS(5997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCite] = ACTIONS(5997), - [anon_sym_BSLASHnocite] = ACTIONS(5997), - [anon_sym_BSLASHcitet] = ACTIONS(5997), - [anon_sym_BSLASHcitep] = ACTIONS(5997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteyear] = ACTIONS(5997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitedate] = ACTIONS(5997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteurl] = ACTIONS(5997), - [anon_sym_BSLASHfullcite] = ACTIONS(5997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5997), - [anon_sym_BSLASHcitealt] = ACTIONS(5997), - [anon_sym_BSLASHcitealp] = ACTIONS(5997), - [anon_sym_BSLASHcitetext] = ACTIONS(5997), - [anon_sym_BSLASHparencite] = ACTIONS(5997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHParencite] = ACTIONS(5997), - [anon_sym_BSLASHfootcite] = ACTIONS(5997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5997), - [anon_sym_BSLASHtextcite] = ACTIONS(5997), - [anon_sym_BSLASHTextcite] = ACTIONS(5997), - [anon_sym_BSLASHsmartcite] = ACTIONS(5997), - [anon_sym_BSLASHSmartcite] = ACTIONS(5997), - [anon_sym_BSLASHsupercite] = ACTIONS(5997), - [anon_sym_BSLASHautocite] = ACTIONS(5997), - [anon_sym_BSLASHAutocite] = ACTIONS(5997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHvolcite] = ACTIONS(5997), - [anon_sym_BSLASHVolcite] = ACTIONS(5997), - [anon_sym_BSLASHpvolcite] = ACTIONS(5997), - [anon_sym_BSLASHPvolcite] = ACTIONS(5997), - [anon_sym_BSLASHfvolcite] = ACTIONS(5997), - [anon_sym_BSLASHftvolcite] = ACTIONS(5997), - [anon_sym_BSLASHsvolcite] = ACTIONS(5997), - [anon_sym_BSLASHSvolcite] = ACTIONS(5997), - [anon_sym_BSLASHtvolcite] = ACTIONS(5997), - [anon_sym_BSLASHTvolcite] = ACTIONS(5997), - [anon_sym_BSLASHavolcite] = ACTIONS(5997), - [anon_sym_BSLASHAvolcite] = ACTIONS(5997), - [anon_sym_BSLASHnotecite] = ACTIONS(5997), - [anon_sym_BSLASHNotecite] = ACTIONS(5997), - [anon_sym_BSLASHpnotecite] = ACTIONS(5997), - [anon_sym_BSLASHPnotecite] = ACTIONS(5997), - [anon_sym_BSLASHfnotecite] = ACTIONS(5997), - [anon_sym_BSLASHlabel] = ACTIONS(5997), - [anon_sym_BSLASHref] = ACTIONS(5997), - [anon_sym_BSLASHeqref] = ACTIONS(5997), - [anon_sym_BSLASHvref] = ACTIONS(5997), - [anon_sym_BSLASHVref] = ACTIONS(5997), - [anon_sym_BSLASHautoref] = ACTIONS(5997), - [anon_sym_BSLASHpageref] = ACTIONS(5997), - [anon_sym_BSLASHcref] = ACTIONS(5997), - [anon_sym_BSLASHCref] = ACTIONS(5997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnameCref] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHlabelcref] = ACTIONS(5997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHdef] = ACTIONS(5997), - [anon_sym_BSLASHlet] = ACTIONS(5997), - [anon_sym_BSLASHleft] = ACTIONS(5997), - [anon_sym_BSLASHbig] = ACTIONS(5997), - [anon_sym_BSLASHBig] = ACTIONS(5997), - [anon_sym_BSLASHbigg] = ACTIONS(5997), - [anon_sym_BSLASHBigg] = ACTIONS(5997), - [anon_sym_BSLASHbigl] = ACTIONS(5997), - [anon_sym_BSLASHBigl] = ACTIONS(5997), - [anon_sym_BSLASHbiggl] = ACTIONS(5997), - [anon_sym_BSLASHBiggl] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5997), - [anon_sym_BSLASHgls] = ACTIONS(5997), - [anon_sym_BSLASHGls] = ACTIONS(5997), - [anon_sym_BSLASHGLS] = ACTIONS(5997), - [anon_sym_BSLASHglspl] = ACTIONS(5997), - [anon_sym_BSLASHGlspl] = ACTIONS(5997), - [anon_sym_BSLASHGLSpl] = ACTIONS(5997), - [anon_sym_BSLASHglsdisp] = ACTIONS(5997), - [anon_sym_BSLASHglslink] = ACTIONS(5997), - [anon_sym_BSLASHglstext] = ACTIONS(5997), - [anon_sym_BSLASHGlstext] = ACTIONS(5997), - [anon_sym_BSLASHGLStext] = ACTIONS(5997), - [anon_sym_BSLASHglsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5997), - [anon_sym_BSLASHglsplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSplural] = ACTIONS(5997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHglsname] = ACTIONS(5997), - [anon_sym_BSLASHGlsname] = ACTIONS(5997), - [anon_sym_BSLASHGLSname] = ACTIONS(5997), - [anon_sym_BSLASHglssymbol] = ACTIONS(5997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5997), - [anon_sym_BSLASHglsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5997), - [anon_sym_BSLASHglsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5997), - [anon_sym_BSLASHglsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5997), - [anon_sym_BSLASHglsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5997), - [anon_sym_BSLASHglsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5997), - [anon_sym_BSLASHnewacronym] = ACTIONS(5997), - [anon_sym_BSLASHacrshort] = ACTIONS(5997), - [anon_sym_BSLASHAcrshort] = ACTIONS(5997), - [anon_sym_BSLASHACRshort] = ACTIONS(5997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5997), - [anon_sym_BSLASHacrlong] = ACTIONS(5997), - [anon_sym_BSLASHAcrlong] = ACTIONS(5997), - [anon_sym_BSLASHACRlong] = ACTIONS(5997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5997), - [anon_sym_BSLASHacrfull] = ACTIONS(5997), - [anon_sym_BSLASHAcrfull] = ACTIONS(5997), - [anon_sym_BSLASHACRfull] = ACTIONS(5997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5997), - [anon_sym_BSLASHacs] = ACTIONS(5997), - [anon_sym_BSLASHAcs] = ACTIONS(5997), - [anon_sym_BSLASHacsp] = ACTIONS(5997), - [anon_sym_BSLASHAcsp] = ACTIONS(5997), - [anon_sym_BSLASHacl] = ACTIONS(5997), - [anon_sym_BSLASHAcl] = ACTIONS(5997), - [anon_sym_BSLASHaclp] = ACTIONS(5997), - [anon_sym_BSLASHAclp] = ACTIONS(5997), - [anon_sym_BSLASHacf] = ACTIONS(5997), - [anon_sym_BSLASHAcf] = ACTIONS(5997), - [anon_sym_BSLASHacfp] = ACTIONS(5997), - [anon_sym_BSLASHAcfp] = ACTIONS(5997), - [anon_sym_BSLASHac] = ACTIONS(5997), - [anon_sym_BSLASHAc] = ACTIONS(5997), - [anon_sym_BSLASHacp] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5997), - [anon_sym_BSLASHcolor] = ACTIONS(5997), - [anon_sym_BSLASHcolorbox] = ACTIONS(5997), - [anon_sym_BSLASHtextcolor] = ACTIONS(5997), - [anon_sym_BSLASHpagecolor] = ACTIONS(5997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5997), - [anon_sym_BSLASHtext] = ACTIONS(5997), - [anon_sym_BSLASHintertext] = ACTIONS(5997), - [anon_sym_shortintertext] = ACTIONS(5997), - }, - [903] = { - [sym_command_name] = ACTIONS(5968), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5968), - [anon_sym_BSLASHfi] = ACTIONS(6696), - [anon_sym_LBRACK] = ACTIONS(5972), - [anon_sym_RBRACK] = ACTIONS(5972), - [anon_sym_COMMA] = ACTIONS(5972), - [anon_sym_EQ] = ACTIONS(5972), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_RPAREN] = ACTIONS(5972), - [anon_sym_BSLASHpart] = ACTIONS(5968), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddpart] = ACTIONS(5968), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5972), - [anon_sym_BSLASHchapter] = ACTIONS(5968), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddchap] = ACTIONS(5968), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsection] = ACTIONS(5968), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddsec] = ACTIONS(5968), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubsection] = ACTIONS(5968), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5968), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHparagraph] = ACTIONS(5968), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5968), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5972), - [anon_sym_BSLASHitem] = ACTIONS(5968), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5972), - [anon_sym_LBRACE] = ACTIONS(5972), - [sym_word] = ACTIONS(5968), - [sym_placeholder] = ACTIONS(5972), - [anon_sym_PLUS] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5972), - [anon_sym_STAR] = ACTIONS(5972), - [anon_sym_SLASH] = ACTIONS(5972), - [anon_sym_LT] = ACTIONS(5968), - [anon_sym_GT] = ACTIONS(5968), - [anon_sym_BANG] = ACTIONS(5968), - [anon_sym_PIPE] = ACTIONS(5968), - [anon_sym_COLON] = ACTIONS(5968), - [anon_sym_SQUOTE] = ACTIONS(5968), - [anon_sym__] = ACTIONS(5972), - [anon_sym_CARET] = ACTIONS(5972), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5972), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5972), - [anon_sym_DOLLAR] = ACTIONS(5968), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5972), - [anon_sym_BSLASHbegin] = ACTIONS(5968), - [anon_sym_BSLASHend] = ACTIONS(5968), - [anon_sym_BSLASHtitle] = ACTIONS(5968), - [anon_sym_BSLASHauthor] = ACTIONS(5968), - [anon_sym_BSLASHusepackage] = ACTIONS(5968), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5968), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5968), - [anon_sym_BSLASHinclude] = ACTIONS(5968), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5968), - [anon_sym_BSLASHinput] = ACTIONS(5968), - [anon_sym_BSLASHsubfile] = ACTIONS(5968), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5968), - [anon_sym_BSLASHbibliography] = ACTIONS(5968), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5968), - [anon_sym_BSLASHincludesvg] = ACTIONS(5968), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5968), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5968), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5968), - [anon_sym_BSLASHimport] = ACTIONS(5968), - [anon_sym_BSLASHsubimport] = ACTIONS(5968), - [anon_sym_BSLASHinputfrom] = ACTIONS(5968), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5968), - [anon_sym_BSLASHincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHcaption] = ACTIONS(5968), - [anon_sym_BSLASHcite] = ACTIONS(5968), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCite] = ACTIONS(5968), - [anon_sym_BSLASHnocite] = ACTIONS(5968), - [anon_sym_BSLASHcitet] = ACTIONS(5968), - [anon_sym_BSLASHcitep] = ACTIONS(5968), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteauthor] = ACTIONS(5968), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5968), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitetitle] = ACTIONS(5968), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteyear] = ACTIONS(5968), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitedate] = ACTIONS(5968), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteurl] = ACTIONS(5968), - [anon_sym_BSLASHfullcite] = ACTIONS(5968), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5968), - [anon_sym_BSLASHcitealt] = ACTIONS(5968), - [anon_sym_BSLASHcitealp] = ACTIONS(5968), - [anon_sym_BSLASHcitetext] = ACTIONS(5968), - [anon_sym_BSLASHparencite] = ACTIONS(5968), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHParencite] = ACTIONS(5968), - [anon_sym_BSLASHfootcite] = ACTIONS(5968), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5968), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5968), - [anon_sym_BSLASHtextcite] = ACTIONS(5968), - [anon_sym_BSLASHTextcite] = ACTIONS(5968), - [anon_sym_BSLASHsmartcite] = ACTIONS(5968), - [anon_sym_BSLASHSmartcite] = ACTIONS(5968), - [anon_sym_BSLASHsupercite] = ACTIONS(5968), - [anon_sym_BSLASHautocite] = ACTIONS(5968), - [anon_sym_BSLASHAutocite] = ACTIONS(5968), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHvolcite] = ACTIONS(5968), - [anon_sym_BSLASHVolcite] = ACTIONS(5968), - [anon_sym_BSLASHpvolcite] = ACTIONS(5968), - [anon_sym_BSLASHPvolcite] = ACTIONS(5968), - [anon_sym_BSLASHfvolcite] = ACTIONS(5968), - [anon_sym_BSLASHftvolcite] = ACTIONS(5968), - [anon_sym_BSLASHsvolcite] = ACTIONS(5968), - [anon_sym_BSLASHSvolcite] = ACTIONS(5968), - [anon_sym_BSLASHtvolcite] = ACTIONS(5968), - [anon_sym_BSLASHTvolcite] = ACTIONS(5968), - [anon_sym_BSLASHavolcite] = ACTIONS(5968), - [anon_sym_BSLASHAvolcite] = ACTIONS(5968), - [anon_sym_BSLASHnotecite] = ACTIONS(5968), - [anon_sym_BSLASHNotecite] = ACTIONS(5968), - [anon_sym_BSLASHpnotecite] = ACTIONS(5968), - [anon_sym_BSLASHPnotecite] = ACTIONS(5968), - [anon_sym_BSLASHfnotecite] = ACTIONS(5968), - [anon_sym_BSLASHlabel] = ACTIONS(5968), - [anon_sym_BSLASHref] = ACTIONS(5968), - [anon_sym_BSLASHeqref] = ACTIONS(5968), - [anon_sym_BSLASHvref] = ACTIONS(5968), - [anon_sym_BSLASHVref] = ACTIONS(5968), - [anon_sym_BSLASHautoref] = ACTIONS(5968), - [anon_sym_BSLASHpageref] = ACTIONS(5968), - [anon_sym_BSLASHcref] = ACTIONS(5968), - [anon_sym_BSLASHCref] = ACTIONS(5968), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnameCref] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHlabelcref] = ACTIONS(5968), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCrefrange] = ACTIONS(5968), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnewlabel] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5968), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5968), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5972), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHdef] = ACTIONS(5968), - [anon_sym_BSLASHlet] = ACTIONS(5968), - [anon_sym_BSLASHleft] = ACTIONS(5968), - [anon_sym_BSLASHbig] = ACTIONS(5968), - [anon_sym_BSLASHBig] = ACTIONS(5968), - [anon_sym_BSLASHbigg] = ACTIONS(5968), - [anon_sym_BSLASHBigg] = ACTIONS(5968), - [anon_sym_BSLASHbigl] = ACTIONS(5968), - [anon_sym_BSLASHBigl] = ACTIONS(5968), - [anon_sym_BSLASHbiggl] = ACTIONS(5968), - [anon_sym_BSLASHBiggl] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5968), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5968), - [anon_sym_BSLASHgls] = ACTIONS(5968), - [anon_sym_BSLASHGls] = ACTIONS(5968), - [anon_sym_BSLASHGLS] = ACTIONS(5968), - [anon_sym_BSLASHglspl] = ACTIONS(5968), - [anon_sym_BSLASHGlspl] = ACTIONS(5968), - [anon_sym_BSLASHGLSpl] = ACTIONS(5968), - [anon_sym_BSLASHglsdisp] = ACTIONS(5968), - [anon_sym_BSLASHglslink] = ACTIONS(5968), - [anon_sym_BSLASHglstext] = ACTIONS(5968), - [anon_sym_BSLASHGlstext] = ACTIONS(5968), - [anon_sym_BSLASHGLStext] = ACTIONS(5968), - [anon_sym_BSLASHglsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5968), - [anon_sym_BSLASHglsplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSplural] = ACTIONS(5968), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHglsname] = ACTIONS(5968), - [anon_sym_BSLASHGlsname] = ACTIONS(5968), - [anon_sym_BSLASHGLSname] = ACTIONS(5968), - [anon_sym_BSLASHglssymbol] = ACTIONS(5968), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5968), - [anon_sym_BSLASHglsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5968), - [anon_sym_BSLASHglsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5968), - [anon_sym_BSLASHglsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5968), - [anon_sym_BSLASHglsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5968), - [anon_sym_BSLASHglsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5968), - [anon_sym_BSLASHnewacronym] = ACTIONS(5968), - [anon_sym_BSLASHacrshort] = ACTIONS(5968), - [anon_sym_BSLASHAcrshort] = ACTIONS(5968), - [anon_sym_BSLASHACRshort] = ACTIONS(5968), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5968), - [anon_sym_BSLASHacrlong] = ACTIONS(5968), - [anon_sym_BSLASHAcrlong] = ACTIONS(5968), - [anon_sym_BSLASHACRlong] = ACTIONS(5968), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5968), - [anon_sym_BSLASHacrfull] = ACTIONS(5968), - [anon_sym_BSLASHAcrfull] = ACTIONS(5968), - [anon_sym_BSLASHACRfull] = ACTIONS(5968), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5968), - [anon_sym_BSLASHacs] = ACTIONS(5968), - [anon_sym_BSLASHAcs] = ACTIONS(5968), - [anon_sym_BSLASHacsp] = ACTIONS(5968), - [anon_sym_BSLASHAcsp] = ACTIONS(5968), - [anon_sym_BSLASHacl] = ACTIONS(5968), - [anon_sym_BSLASHAcl] = ACTIONS(5968), - [anon_sym_BSLASHaclp] = ACTIONS(5968), - [anon_sym_BSLASHAclp] = ACTIONS(5968), - [anon_sym_BSLASHacf] = ACTIONS(5968), - [anon_sym_BSLASHAcf] = ACTIONS(5968), - [anon_sym_BSLASHacfp] = ACTIONS(5968), - [anon_sym_BSLASHAcfp] = ACTIONS(5968), - [anon_sym_BSLASHac] = ACTIONS(5968), - [anon_sym_BSLASHAc] = ACTIONS(5968), - [anon_sym_BSLASHacp] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5968), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5968), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5968), - [anon_sym_BSLASHcolor] = ACTIONS(5968), - [anon_sym_BSLASHcolorbox] = ACTIONS(5968), - [anon_sym_BSLASHtextcolor] = ACTIONS(5968), - [anon_sym_BSLASHpagecolor] = ACTIONS(5968), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5968), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5968), - [anon_sym_BSLASHtext] = ACTIONS(5968), - [anon_sym_BSLASHintertext] = ACTIONS(5968), - [anon_sym_shortintertext] = ACTIONS(5968), - [sym__trivia_raw_fi] = ACTIONS(6698), - }, - [904] = { - [sym_brack_group_text] = STATE(979), - [ts_builtin_sym_end] = ACTIONS(6007), - [sym_command_name] = ACTIONS(6003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6003), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(6007), - [anon_sym_COMMA] = ACTIONS(6007), - [anon_sym_EQ] = ACTIONS(6007), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_RPAREN] = ACTIONS(6007), - [anon_sym_BSLASHpart] = ACTIONS(6003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddpart] = ACTIONS(6003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6007), - [anon_sym_BSLASHchapter] = ACTIONS(6003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddchap] = ACTIONS(6003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsection] = ACTIONS(6003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddsec] = ACTIONS(6003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubsection] = ACTIONS(6003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHparagraph] = ACTIONS(6003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6007), - [anon_sym_BSLASHitem] = ACTIONS(6003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6007), - [anon_sym_LBRACE] = ACTIONS(6007), - [anon_sym_RBRACE] = ACTIONS(6007), - [sym_word] = ACTIONS(6003), - [sym_placeholder] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6007), - [anon_sym_DASH] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_SLASH] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6003), - [anon_sym_GT] = ACTIONS(6003), - [anon_sym_BANG] = ACTIONS(6003), - [anon_sym_PIPE] = ACTIONS(6003), - [anon_sym_COLON] = ACTIONS(6003), - [anon_sym_SQUOTE] = ACTIONS(6003), - [anon_sym__] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6007), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6007), - [anon_sym_DOLLAR] = ACTIONS(6003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6007), - [anon_sym_BSLASHbegin] = ACTIONS(6003), - [anon_sym_BSLASHtitle] = ACTIONS(6003), - [anon_sym_BSLASHauthor] = ACTIONS(6003), - [anon_sym_BSLASHusepackage] = ACTIONS(6003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), - [anon_sym_BSLASHinclude] = ACTIONS(6003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), - [anon_sym_BSLASHinput] = ACTIONS(6003), - [anon_sym_BSLASHsubfile] = ACTIONS(6003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), - [anon_sym_BSLASHbibliography] = ACTIONS(6003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), - [anon_sym_BSLASHincludesvg] = ACTIONS(6003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), - [anon_sym_BSLASHimport] = ACTIONS(6003), - [anon_sym_BSLASHsubimport] = ACTIONS(6003), - [anon_sym_BSLASHinputfrom] = ACTIONS(6003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), - [anon_sym_BSLASHincludefrom] = ACTIONS(6003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), - [anon_sym_BSLASHcaption] = ACTIONS(6003), - [anon_sym_BSLASHcite] = ACTIONS(6003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCite] = ACTIONS(6003), - [anon_sym_BSLASHnocite] = ACTIONS(6003), - [anon_sym_BSLASHcitet] = ACTIONS(6003), - [anon_sym_BSLASHcitep] = ACTIONS(6003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteauthor] = ACTIONS(6003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitetitle] = ACTIONS(6003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteyear] = ACTIONS(6003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitedate] = ACTIONS(6003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteurl] = ACTIONS(6003), - [anon_sym_BSLASHfullcite] = ACTIONS(6003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), - [anon_sym_BSLASHcitealt] = ACTIONS(6003), - [anon_sym_BSLASHcitealp] = ACTIONS(6003), - [anon_sym_BSLASHcitetext] = ACTIONS(6003), - [anon_sym_BSLASHparencite] = ACTIONS(6003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHParencite] = ACTIONS(6003), - [anon_sym_BSLASHfootcite] = ACTIONS(6003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), - [anon_sym_BSLASHtextcite] = ACTIONS(6003), - [anon_sym_BSLASHTextcite] = ACTIONS(6003), - [anon_sym_BSLASHsmartcite] = ACTIONS(6003), - [anon_sym_BSLASHSmartcite] = ACTIONS(6003), - [anon_sym_BSLASHsupercite] = ACTIONS(6003), - [anon_sym_BSLASHautocite] = ACTIONS(6003), - [anon_sym_BSLASHAutocite] = ACTIONS(6003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHvolcite] = ACTIONS(6003), - [anon_sym_BSLASHVolcite] = ACTIONS(6003), - [anon_sym_BSLASHpvolcite] = ACTIONS(6003), - [anon_sym_BSLASHPvolcite] = ACTIONS(6003), - [anon_sym_BSLASHfvolcite] = ACTIONS(6003), - [anon_sym_BSLASHftvolcite] = ACTIONS(6003), - [anon_sym_BSLASHsvolcite] = ACTIONS(6003), - [anon_sym_BSLASHSvolcite] = ACTIONS(6003), - [anon_sym_BSLASHtvolcite] = ACTIONS(6003), - [anon_sym_BSLASHTvolcite] = ACTIONS(6003), - [anon_sym_BSLASHavolcite] = ACTIONS(6003), - [anon_sym_BSLASHAvolcite] = ACTIONS(6003), - [anon_sym_BSLASHnotecite] = ACTIONS(6003), - [anon_sym_BSLASHNotecite] = ACTIONS(6003), - [anon_sym_BSLASHpnotecite] = ACTIONS(6003), - [anon_sym_BSLASHPnotecite] = ACTIONS(6003), - [anon_sym_BSLASHfnotecite] = ACTIONS(6003), - [anon_sym_BSLASHlabel] = ACTIONS(6003), - [anon_sym_BSLASHref] = ACTIONS(6003), - [anon_sym_BSLASHeqref] = ACTIONS(6003), - [anon_sym_BSLASHvref] = ACTIONS(6003), - [anon_sym_BSLASHVref] = ACTIONS(6003), - [anon_sym_BSLASHautoref] = ACTIONS(6003), - [anon_sym_BSLASHpageref] = ACTIONS(6003), - [anon_sym_BSLASHcref] = ACTIONS(6003), - [anon_sym_BSLASHCref] = ACTIONS(6003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6007), - [anon_sym_BSLASHnamecref] = ACTIONS(6003), - [anon_sym_BSLASHnameCref] = ACTIONS(6003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), - [anon_sym_BSLASHlabelcref] = ACTIONS(6003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), - [anon_sym_BSLASHcrefrange] = ACTIONS(6003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCrefrange] = ACTIONS(6003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6007), - [anon_sym_BSLASHnewlabel] = ACTIONS(6003), - [anon_sym_BSLASHnewcommand] = ACTIONS(6003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6007), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHdef] = ACTIONS(6003), - [anon_sym_BSLASHlet] = ACTIONS(6003), - [anon_sym_BSLASHleft] = ACTIONS(6003), - [anon_sym_BSLASHbig] = ACTIONS(6003), - [anon_sym_BSLASHBig] = ACTIONS(6003), - [anon_sym_BSLASHbigg] = ACTIONS(6003), - [anon_sym_BSLASHBigg] = ACTIONS(6003), - [anon_sym_BSLASHbigl] = ACTIONS(6003), - [anon_sym_BSLASHBigl] = ACTIONS(6003), - [anon_sym_BSLASHbiggl] = ACTIONS(6003), - [anon_sym_BSLASHBiggl] = ACTIONS(6003), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6003), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), - [anon_sym_BSLASHgls] = ACTIONS(6003), - [anon_sym_BSLASHGls] = ACTIONS(6003), - [anon_sym_BSLASHGLS] = ACTIONS(6003), - [anon_sym_BSLASHglspl] = ACTIONS(6003), - [anon_sym_BSLASHGlspl] = ACTIONS(6003), - [anon_sym_BSLASHGLSpl] = ACTIONS(6003), - [anon_sym_BSLASHglsdisp] = ACTIONS(6003), - [anon_sym_BSLASHglslink] = ACTIONS(6003), - [anon_sym_BSLASHglstext] = ACTIONS(6003), - [anon_sym_BSLASHGlstext] = ACTIONS(6003), - [anon_sym_BSLASHGLStext] = ACTIONS(6003), - [anon_sym_BSLASHglsfirst] = ACTIONS(6003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), - [anon_sym_BSLASHglsplural] = ACTIONS(6003), - [anon_sym_BSLASHGlsplural] = ACTIONS(6003), - [anon_sym_BSLASHGLSplural] = ACTIONS(6003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHglsname] = ACTIONS(6003), - [anon_sym_BSLASHGlsname] = ACTIONS(6003), - [anon_sym_BSLASHGLSname] = ACTIONS(6003), - [anon_sym_BSLASHglssymbol] = ACTIONS(6003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), - [anon_sym_BSLASHglsdesc] = ACTIONS(6003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), - [anon_sym_BSLASHglsuseri] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), - [anon_sym_BSLASHglsuserii] = ACTIONS(6003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), - [anon_sym_BSLASHglsuserv] = ACTIONS(6003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), - [anon_sym_BSLASHglsuservi] = ACTIONS(6003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), - [anon_sym_BSLASHnewacronym] = ACTIONS(6003), - [anon_sym_BSLASHacrshort] = ACTIONS(6003), - [anon_sym_BSLASHAcrshort] = ACTIONS(6003), - [anon_sym_BSLASHACRshort] = ACTIONS(6003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), - [anon_sym_BSLASHacrlong] = ACTIONS(6003), - [anon_sym_BSLASHAcrlong] = ACTIONS(6003), - [anon_sym_BSLASHACRlong] = ACTIONS(6003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), - [anon_sym_BSLASHacrfull] = ACTIONS(6003), - [anon_sym_BSLASHAcrfull] = ACTIONS(6003), - [anon_sym_BSLASHACRfull] = ACTIONS(6003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), - [anon_sym_BSLASHacs] = ACTIONS(6003), - [anon_sym_BSLASHAcs] = ACTIONS(6003), - [anon_sym_BSLASHacsp] = ACTIONS(6003), - [anon_sym_BSLASHAcsp] = ACTIONS(6003), - [anon_sym_BSLASHacl] = ACTIONS(6003), - [anon_sym_BSLASHAcl] = ACTIONS(6003), - [anon_sym_BSLASHaclp] = ACTIONS(6003), - [anon_sym_BSLASHAclp] = ACTIONS(6003), - [anon_sym_BSLASHacf] = ACTIONS(6003), - [anon_sym_BSLASHAcf] = ACTIONS(6003), - [anon_sym_BSLASHacfp] = ACTIONS(6003), - [anon_sym_BSLASHAcfp] = ACTIONS(6003), - [anon_sym_BSLASHac] = ACTIONS(6003), - [anon_sym_BSLASHAc] = ACTIONS(6003), - [anon_sym_BSLASHacp] = ACTIONS(6003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), - [anon_sym_BSLASHcolor] = ACTIONS(6003), - [anon_sym_BSLASHcolorbox] = ACTIONS(6003), - [anon_sym_BSLASHtextcolor] = ACTIONS(6003), - [anon_sym_BSLASHpagecolor] = ACTIONS(6003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), - [anon_sym_BSLASHtext] = ACTIONS(6003), - [anon_sym_BSLASHintertext] = ACTIONS(6003), - [anon_sym_shortintertext] = ACTIONS(6003), - }, - [905] = { - [sym_curly_group] = STATE(1395), - [aux_sym_generic_command_repeat1] = STATE(905), - [sym_command_name] = ACTIONS(5976), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5976), - [anon_sym_LBRACK] = ACTIONS(5978), - [anon_sym_RBRACK] = ACTIONS(5978), - [anon_sym_COMMA] = ACTIONS(5978), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LPAREN] = ACTIONS(5978), - [anon_sym_RPAREN] = ACTIONS(5978), - [anon_sym_BSLASHpart] = ACTIONS(5976), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddpart] = ACTIONS(5976), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5978), - [anon_sym_BSLASHchapter] = ACTIONS(5976), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddchap] = ACTIONS(5976), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsection] = ACTIONS(5976), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHaddsec] = ACTIONS(5976), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubsection] = ACTIONS(5976), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5976), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5978), - [anon_sym_BSLASHparagraph] = ACTIONS(5976), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5978), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5976), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5978), - [anon_sym_BSLASHitem] = ACTIONS(5976), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5978), - [anon_sym_LBRACE] = ACTIONS(6700), - [sym_word] = ACTIONS(5976), - [sym_placeholder] = ACTIONS(5978), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_STAR] = ACTIONS(5978), - [anon_sym_SLASH] = ACTIONS(5978), - [anon_sym_LT] = ACTIONS(5976), - [anon_sym_GT] = ACTIONS(5976), - [anon_sym_BANG] = ACTIONS(5976), - [anon_sym_PIPE] = ACTIONS(5976), - [anon_sym_COLON] = ACTIONS(5976), - [anon_sym_SQUOTE] = ACTIONS(5976), - [anon_sym__] = ACTIONS(5978), - [anon_sym_CARET] = ACTIONS(5978), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5978), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5978), - [anon_sym_DOLLAR] = ACTIONS(5976), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5978), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5978), - [anon_sym_BSLASHbegin] = ACTIONS(5976), - [anon_sym_BSLASHtitle] = ACTIONS(5976), - [anon_sym_BSLASHauthor] = ACTIONS(5976), - [anon_sym_BSLASHusepackage] = ACTIONS(5976), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5976), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5976), - [anon_sym_BSLASHinclude] = ACTIONS(5976), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5976), - [anon_sym_BSLASHinput] = ACTIONS(5976), - [anon_sym_BSLASHsubfile] = ACTIONS(5976), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5976), - [anon_sym_BSLASHbibliography] = ACTIONS(5976), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5976), - [anon_sym_BSLASHincludesvg] = ACTIONS(5976), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5976), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5976), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5976), - [anon_sym_BSLASHimport] = ACTIONS(5976), - [anon_sym_BSLASHsubimport] = ACTIONS(5976), - [anon_sym_BSLASHinputfrom] = ACTIONS(5976), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5976), - [anon_sym_BSLASHincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHcaption] = ACTIONS(5976), - [anon_sym_BSLASHcite] = ACTIONS(5976), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCite] = ACTIONS(5976), - [anon_sym_BSLASHnocite] = ACTIONS(5976), - [anon_sym_BSLASHcitet] = ACTIONS(5976), - [anon_sym_BSLASHcitep] = ACTIONS(5976), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteauthor] = ACTIONS(5976), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5976), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitetitle] = ACTIONS(5976), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteyear] = ACTIONS(5976), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitedate] = ACTIONS(5976), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteurl] = ACTIONS(5976), - [anon_sym_BSLASHfullcite] = ACTIONS(5976), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5976), - [anon_sym_BSLASHcitealt] = ACTIONS(5976), - [anon_sym_BSLASHcitealp] = ACTIONS(5976), - [anon_sym_BSLASHcitetext] = ACTIONS(5976), - [anon_sym_BSLASHparencite] = ACTIONS(5976), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHParencite] = ACTIONS(5976), - [anon_sym_BSLASHfootcite] = ACTIONS(5976), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5976), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5976), - [anon_sym_BSLASHtextcite] = ACTIONS(5976), - [anon_sym_BSLASHTextcite] = ACTIONS(5976), - [anon_sym_BSLASHsmartcite] = ACTIONS(5976), - [anon_sym_BSLASHSmartcite] = ACTIONS(5976), - [anon_sym_BSLASHsupercite] = ACTIONS(5976), - [anon_sym_BSLASHautocite] = ACTIONS(5976), - [anon_sym_BSLASHAutocite] = ACTIONS(5976), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHvolcite] = ACTIONS(5976), - [anon_sym_BSLASHVolcite] = ACTIONS(5976), - [anon_sym_BSLASHpvolcite] = ACTIONS(5976), - [anon_sym_BSLASHPvolcite] = ACTIONS(5976), - [anon_sym_BSLASHfvolcite] = ACTIONS(5976), - [anon_sym_BSLASHftvolcite] = ACTIONS(5976), - [anon_sym_BSLASHsvolcite] = ACTIONS(5976), - [anon_sym_BSLASHSvolcite] = ACTIONS(5976), - [anon_sym_BSLASHtvolcite] = ACTIONS(5976), - [anon_sym_BSLASHTvolcite] = ACTIONS(5976), - [anon_sym_BSLASHavolcite] = ACTIONS(5976), - [anon_sym_BSLASHAvolcite] = ACTIONS(5976), - [anon_sym_BSLASHnotecite] = ACTIONS(5976), - [anon_sym_BSLASHNotecite] = ACTIONS(5976), - [anon_sym_BSLASHpnotecite] = ACTIONS(5976), - [anon_sym_BSLASHPnotecite] = ACTIONS(5976), - [anon_sym_BSLASHfnotecite] = ACTIONS(5976), - [anon_sym_BSLASHlabel] = ACTIONS(5976), - [anon_sym_BSLASHref] = ACTIONS(5976), - [anon_sym_BSLASHeqref] = ACTIONS(5976), - [anon_sym_BSLASHvref] = ACTIONS(5976), - [anon_sym_BSLASHVref] = ACTIONS(5976), - [anon_sym_BSLASHautoref] = ACTIONS(5976), - [anon_sym_BSLASHpageref] = ACTIONS(5976), - [anon_sym_BSLASHcref] = ACTIONS(5976), - [anon_sym_BSLASHCref] = ACTIONS(5976), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnameCref] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHlabelcref] = ACTIONS(5976), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCrefrange] = ACTIONS(5976), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnewlabel] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5976), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5976), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5978), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHdef] = ACTIONS(5976), - [anon_sym_BSLASHlet] = ACTIONS(5976), - [anon_sym_BSLASHleft] = ACTIONS(5976), - [anon_sym_BSLASHbig] = ACTIONS(5976), - [anon_sym_BSLASHBig] = ACTIONS(5976), - [anon_sym_BSLASHbigg] = ACTIONS(5976), - [anon_sym_BSLASHBigg] = ACTIONS(5976), - [anon_sym_BSLASHbigl] = ACTIONS(5976), - [anon_sym_BSLASHBigl] = ACTIONS(5976), - [anon_sym_BSLASHbiggl] = ACTIONS(5976), - [anon_sym_BSLASHBiggl] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5976), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5976), - [anon_sym_BSLASHgls] = ACTIONS(5976), - [anon_sym_BSLASHGls] = ACTIONS(5976), - [anon_sym_BSLASHGLS] = ACTIONS(5976), - [anon_sym_BSLASHglspl] = ACTIONS(5976), - [anon_sym_BSLASHGlspl] = ACTIONS(5976), - [anon_sym_BSLASHGLSpl] = ACTIONS(5976), - [anon_sym_BSLASHglsdisp] = ACTIONS(5976), - [anon_sym_BSLASHglslink] = ACTIONS(5976), - [anon_sym_BSLASHglstext] = ACTIONS(5976), - [anon_sym_BSLASHGlstext] = ACTIONS(5976), - [anon_sym_BSLASHGLStext] = ACTIONS(5976), - [anon_sym_BSLASHglsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5976), - [anon_sym_BSLASHglsplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSplural] = ACTIONS(5976), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHglsname] = ACTIONS(5976), - [anon_sym_BSLASHGlsname] = ACTIONS(5976), - [anon_sym_BSLASHGLSname] = ACTIONS(5976), - [anon_sym_BSLASHglssymbol] = ACTIONS(5976), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5976), - [anon_sym_BSLASHglsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5976), - [anon_sym_BSLASHglsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5976), - [anon_sym_BSLASHglsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5976), - [anon_sym_BSLASHglsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5976), - [anon_sym_BSLASHglsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5976), - [anon_sym_BSLASHnewacronym] = ACTIONS(5976), - [anon_sym_BSLASHacrshort] = ACTIONS(5976), - [anon_sym_BSLASHAcrshort] = ACTIONS(5976), - [anon_sym_BSLASHACRshort] = ACTIONS(5976), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5976), - [anon_sym_BSLASHacrlong] = ACTIONS(5976), - [anon_sym_BSLASHAcrlong] = ACTIONS(5976), - [anon_sym_BSLASHACRlong] = ACTIONS(5976), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5976), - [anon_sym_BSLASHacrfull] = ACTIONS(5976), - [anon_sym_BSLASHAcrfull] = ACTIONS(5976), - [anon_sym_BSLASHACRfull] = ACTIONS(5976), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5976), - [anon_sym_BSLASHacs] = ACTIONS(5976), - [anon_sym_BSLASHAcs] = ACTIONS(5976), - [anon_sym_BSLASHacsp] = ACTIONS(5976), - [anon_sym_BSLASHAcsp] = ACTIONS(5976), - [anon_sym_BSLASHacl] = ACTIONS(5976), - [anon_sym_BSLASHAcl] = ACTIONS(5976), - [anon_sym_BSLASHaclp] = ACTIONS(5976), - [anon_sym_BSLASHAclp] = ACTIONS(5976), - [anon_sym_BSLASHacf] = ACTIONS(5976), - [anon_sym_BSLASHAcf] = ACTIONS(5976), - [anon_sym_BSLASHacfp] = ACTIONS(5976), - [anon_sym_BSLASHAcfp] = ACTIONS(5976), - [anon_sym_BSLASHac] = ACTIONS(5976), - [anon_sym_BSLASHAc] = ACTIONS(5976), - [anon_sym_BSLASHacp] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5976), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5976), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5976), - [anon_sym_BSLASHcolor] = ACTIONS(5976), - [anon_sym_BSLASHcolorbox] = ACTIONS(5976), - [anon_sym_BSLASHtextcolor] = ACTIONS(5976), - [anon_sym_BSLASHpagecolor] = ACTIONS(5976), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5976), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5976), - [anon_sym_BSLASHtext] = ACTIONS(5976), - [anon_sym_BSLASHintertext] = ACTIONS(5976), - [anon_sym_shortintertext] = ACTIONS(5976), - }, - [906] = { - [sym_curly_group] = STATE(1284), - [aux_sym_generic_command_repeat1] = STATE(900), - [sym_command_name] = ACTIONS(5983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5983), - [anon_sym_LBRACK] = ACTIONS(5985), - [anon_sym_RBRACK] = ACTIONS(5985), - [anon_sym_COMMA] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(5985), - [anon_sym_LPAREN] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_BSLASHpart] = ACTIONS(5983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddpart] = ACTIONS(5983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5985), - [anon_sym_BSLASHchapter] = ACTIONS(5983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddchap] = ACTIONS(5983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsection] = ACTIONS(5983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHaddsec] = ACTIONS(5983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubsection] = ACTIONS(5983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5985), - [anon_sym_BSLASHparagraph] = ACTIONS(5983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5985), - [anon_sym_BSLASHitem] = ACTIONS(5983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(5983), - [sym_placeholder] = ACTIONS(5985), - [anon_sym_PLUS] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(5985), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_SLASH] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(5983), - [anon_sym_GT] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5983), - [anon_sym_PIPE] = ACTIONS(5983), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_SQUOTE] = ACTIONS(5983), - [anon_sym__] = ACTIONS(5985), - [anon_sym_CARET] = ACTIONS(5985), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(5983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), - [anon_sym_BSLASHbegin] = ACTIONS(5983), - [anon_sym_BSLASHtitle] = ACTIONS(5983), - [anon_sym_BSLASHauthor] = ACTIONS(5983), - [anon_sym_BSLASHusepackage] = ACTIONS(5983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), - [anon_sym_BSLASHinclude] = ACTIONS(5983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), - [anon_sym_BSLASHinput] = ACTIONS(5983), - [anon_sym_BSLASHsubfile] = ACTIONS(5983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), - [anon_sym_BSLASHbibliography] = ACTIONS(5983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), - [anon_sym_BSLASHincludesvg] = ACTIONS(5983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), - [anon_sym_BSLASHimport] = ACTIONS(5983), - [anon_sym_BSLASHsubimport] = ACTIONS(5983), - [anon_sym_BSLASHinputfrom] = ACTIONS(5983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), - [anon_sym_BSLASHincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHcaption] = ACTIONS(5983), - [anon_sym_BSLASHcite] = ACTIONS(5983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCite] = ACTIONS(5983), - [anon_sym_BSLASHnocite] = ACTIONS(5983), - [anon_sym_BSLASHcitet] = ACTIONS(5983), - [anon_sym_BSLASHcitep] = ACTIONS(5983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteauthor] = ACTIONS(5983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitetitle] = ACTIONS(5983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteyear] = ACTIONS(5983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitedate] = ACTIONS(5983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteurl] = ACTIONS(5983), - [anon_sym_BSLASHfullcite] = ACTIONS(5983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), - [anon_sym_BSLASHcitealt] = ACTIONS(5983), - [anon_sym_BSLASHcitealp] = ACTIONS(5983), - [anon_sym_BSLASHcitetext] = ACTIONS(5983), - [anon_sym_BSLASHparencite] = ACTIONS(5983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHParencite] = ACTIONS(5983), - [anon_sym_BSLASHfootcite] = ACTIONS(5983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), - [anon_sym_BSLASHtextcite] = ACTIONS(5983), - [anon_sym_BSLASHTextcite] = ACTIONS(5983), - [anon_sym_BSLASHsmartcite] = ACTIONS(5983), - [anon_sym_BSLASHSmartcite] = ACTIONS(5983), - [anon_sym_BSLASHsupercite] = ACTIONS(5983), - [anon_sym_BSLASHautocite] = ACTIONS(5983), - [anon_sym_BSLASHAutocite] = ACTIONS(5983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHvolcite] = ACTIONS(5983), - [anon_sym_BSLASHVolcite] = ACTIONS(5983), - [anon_sym_BSLASHpvolcite] = ACTIONS(5983), - [anon_sym_BSLASHPvolcite] = ACTIONS(5983), - [anon_sym_BSLASHfvolcite] = ACTIONS(5983), - [anon_sym_BSLASHftvolcite] = ACTIONS(5983), - [anon_sym_BSLASHsvolcite] = ACTIONS(5983), - [anon_sym_BSLASHSvolcite] = ACTIONS(5983), - [anon_sym_BSLASHtvolcite] = ACTIONS(5983), - [anon_sym_BSLASHTvolcite] = ACTIONS(5983), - [anon_sym_BSLASHavolcite] = ACTIONS(5983), - [anon_sym_BSLASHAvolcite] = ACTIONS(5983), - [anon_sym_BSLASHnotecite] = ACTIONS(5983), - [anon_sym_BSLASHNotecite] = ACTIONS(5983), - [anon_sym_BSLASHpnotecite] = ACTIONS(5983), - [anon_sym_BSLASHPnotecite] = ACTIONS(5983), - [anon_sym_BSLASHfnotecite] = ACTIONS(5983), - [anon_sym_BSLASHlabel] = ACTIONS(5983), - [anon_sym_BSLASHref] = ACTIONS(5983), - [anon_sym_BSLASHeqref] = ACTIONS(5983), - [anon_sym_BSLASHvref] = ACTIONS(5983), - [anon_sym_BSLASHVref] = ACTIONS(5983), - [anon_sym_BSLASHautoref] = ACTIONS(5983), - [anon_sym_BSLASHpageref] = ACTIONS(5983), - [anon_sym_BSLASHcref] = ACTIONS(5983), - [anon_sym_BSLASHCref] = ACTIONS(5983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnameCref] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHlabelcref] = ACTIONS(5983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCrefrange] = ACTIONS(5983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnewlabel] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHdef] = ACTIONS(5983), - [anon_sym_BSLASHlet] = ACTIONS(5983), - [anon_sym_BSLASHleft] = ACTIONS(5983), - [anon_sym_BSLASHbig] = ACTIONS(5983), - [anon_sym_BSLASHBig] = ACTIONS(5983), - [anon_sym_BSLASHbigg] = ACTIONS(5983), - [anon_sym_BSLASHBigg] = ACTIONS(5983), - [anon_sym_BSLASHbigl] = ACTIONS(5983), - [anon_sym_BSLASHBigl] = ACTIONS(5983), - [anon_sym_BSLASHbiggl] = ACTIONS(5983), - [anon_sym_BSLASHBiggl] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), - [anon_sym_BSLASHgls] = ACTIONS(5983), - [anon_sym_BSLASHGls] = ACTIONS(5983), - [anon_sym_BSLASHGLS] = ACTIONS(5983), - [anon_sym_BSLASHglspl] = ACTIONS(5983), - [anon_sym_BSLASHGlspl] = ACTIONS(5983), - [anon_sym_BSLASHGLSpl] = ACTIONS(5983), - [anon_sym_BSLASHglsdisp] = ACTIONS(5983), - [anon_sym_BSLASHglslink] = ACTIONS(5983), - [anon_sym_BSLASHglstext] = ACTIONS(5983), - [anon_sym_BSLASHGlstext] = ACTIONS(5983), - [anon_sym_BSLASHGLStext] = ACTIONS(5983), - [anon_sym_BSLASHglsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), - [anon_sym_BSLASHglsplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSplural] = ACTIONS(5983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHglsname] = ACTIONS(5983), - [anon_sym_BSLASHGlsname] = ACTIONS(5983), - [anon_sym_BSLASHGLSname] = ACTIONS(5983), - [anon_sym_BSLASHglssymbol] = ACTIONS(5983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), - [anon_sym_BSLASHglsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), - [anon_sym_BSLASHglsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), - [anon_sym_BSLASHglsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), - [anon_sym_BSLASHglsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), - [anon_sym_BSLASHglsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), - [anon_sym_BSLASHnewacronym] = ACTIONS(5983), - [anon_sym_BSLASHacrshort] = ACTIONS(5983), - [anon_sym_BSLASHAcrshort] = ACTIONS(5983), - [anon_sym_BSLASHACRshort] = ACTIONS(5983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), - [anon_sym_BSLASHacrlong] = ACTIONS(5983), - [anon_sym_BSLASHAcrlong] = ACTIONS(5983), - [anon_sym_BSLASHACRlong] = ACTIONS(5983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), - [anon_sym_BSLASHacrfull] = ACTIONS(5983), - [anon_sym_BSLASHAcrfull] = ACTIONS(5983), - [anon_sym_BSLASHACRfull] = ACTIONS(5983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), - [anon_sym_BSLASHacs] = ACTIONS(5983), - [anon_sym_BSLASHAcs] = ACTIONS(5983), - [anon_sym_BSLASHacsp] = ACTIONS(5983), - [anon_sym_BSLASHAcsp] = ACTIONS(5983), - [anon_sym_BSLASHacl] = ACTIONS(5983), - [anon_sym_BSLASHAcl] = ACTIONS(5983), - [anon_sym_BSLASHaclp] = ACTIONS(5983), - [anon_sym_BSLASHAclp] = ACTIONS(5983), - [anon_sym_BSLASHacf] = ACTIONS(5983), - [anon_sym_BSLASHAcf] = ACTIONS(5983), - [anon_sym_BSLASHacfp] = ACTIONS(5983), - [anon_sym_BSLASHAcfp] = ACTIONS(5983), - [anon_sym_BSLASHac] = ACTIONS(5983), - [anon_sym_BSLASHAc] = ACTIONS(5983), - [anon_sym_BSLASHacp] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), - [anon_sym_BSLASHcolor] = ACTIONS(5983), - [anon_sym_BSLASHcolorbox] = ACTIONS(5983), - [anon_sym_BSLASHtextcolor] = ACTIONS(5983), - [anon_sym_BSLASHpagecolor] = ACTIONS(5983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), - [anon_sym_BSLASHtext] = ACTIONS(5983), - [anon_sym_BSLASHintertext] = ACTIONS(5983), - [anon_sym_shortintertext] = ACTIONS(5983), - }, - [907] = { - [sym_curly_group] = STATE(924), - [sym_brack_group_text] = STATE(2752), - [sym_command_name] = ACTIONS(5987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5991), - [anon_sym_COMMA] = ACTIONS(5991), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_LPAREN] = ACTIONS(5991), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_BSLASHpart] = ACTIONS(5987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddpart] = ACTIONS(5987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5991), - [anon_sym_BSLASHchapter] = ACTIONS(5987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddchap] = ACTIONS(5987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsection] = ACTIONS(5987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHaddsec] = ACTIONS(5987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubsection] = ACTIONS(5987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5991), - [anon_sym_BSLASHparagraph] = ACTIONS(5987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5991), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5991), - [anon_sym_BSLASHitem] = ACTIONS(5987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5991), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(5987), - [sym_placeholder] = ACTIONS(5991), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_SQUOTE] = ACTIONS(5987), - [anon_sym__] = ACTIONS(5991), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5991), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(5987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5991), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5991), - [anon_sym_BSLASHbegin] = ACTIONS(5987), - [anon_sym_BSLASHtitle] = ACTIONS(5987), - [anon_sym_BSLASHauthor] = ACTIONS(5987), - [anon_sym_BSLASHusepackage] = ACTIONS(5987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), - [anon_sym_BSLASHinclude] = ACTIONS(5987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), - [anon_sym_BSLASHinput] = ACTIONS(5987), - [anon_sym_BSLASHsubfile] = ACTIONS(5987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), - [anon_sym_BSLASHbibliography] = ACTIONS(5987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), - [anon_sym_BSLASHincludesvg] = ACTIONS(5987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), - [anon_sym_BSLASHimport] = ACTIONS(5987), - [anon_sym_BSLASHsubimport] = ACTIONS(5987), - [anon_sym_BSLASHinputfrom] = ACTIONS(5987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), - [anon_sym_BSLASHincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHcaption] = ACTIONS(5987), - [anon_sym_BSLASHcite] = ACTIONS(5987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCite] = ACTIONS(5987), - [anon_sym_BSLASHnocite] = ACTIONS(5987), - [anon_sym_BSLASHcitet] = ACTIONS(5987), - [anon_sym_BSLASHcitep] = ACTIONS(5987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteauthor] = ACTIONS(5987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitetitle] = ACTIONS(5987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteyear] = ACTIONS(5987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitedate] = ACTIONS(5987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteurl] = ACTIONS(5987), - [anon_sym_BSLASHfullcite] = ACTIONS(5987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), - [anon_sym_BSLASHcitealt] = ACTIONS(5987), - [anon_sym_BSLASHcitealp] = ACTIONS(5987), - [anon_sym_BSLASHcitetext] = ACTIONS(5987), - [anon_sym_BSLASHparencite] = ACTIONS(5987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHParencite] = ACTIONS(5987), - [anon_sym_BSLASHfootcite] = ACTIONS(5987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), - [anon_sym_BSLASHtextcite] = ACTIONS(5987), - [anon_sym_BSLASHTextcite] = ACTIONS(5987), - [anon_sym_BSLASHsmartcite] = ACTIONS(5987), - [anon_sym_BSLASHSmartcite] = ACTIONS(5987), - [anon_sym_BSLASHsupercite] = ACTIONS(5987), - [anon_sym_BSLASHautocite] = ACTIONS(5987), - [anon_sym_BSLASHAutocite] = ACTIONS(5987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHvolcite] = ACTIONS(5987), - [anon_sym_BSLASHVolcite] = ACTIONS(5987), - [anon_sym_BSLASHpvolcite] = ACTIONS(5987), - [anon_sym_BSLASHPvolcite] = ACTIONS(5987), - [anon_sym_BSLASHfvolcite] = ACTIONS(5987), - [anon_sym_BSLASHftvolcite] = ACTIONS(5987), - [anon_sym_BSLASHsvolcite] = ACTIONS(5987), - [anon_sym_BSLASHSvolcite] = ACTIONS(5987), - [anon_sym_BSLASHtvolcite] = ACTIONS(5987), - [anon_sym_BSLASHTvolcite] = ACTIONS(5987), - [anon_sym_BSLASHavolcite] = ACTIONS(5987), - [anon_sym_BSLASHAvolcite] = ACTIONS(5987), - [anon_sym_BSLASHnotecite] = ACTIONS(5987), - [anon_sym_BSLASHNotecite] = ACTIONS(5987), - [anon_sym_BSLASHpnotecite] = ACTIONS(5987), - [anon_sym_BSLASHPnotecite] = ACTIONS(5987), - [anon_sym_BSLASHfnotecite] = ACTIONS(5987), - [anon_sym_BSLASHlabel] = ACTIONS(5987), - [anon_sym_BSLASHref] = ACTIONS(5987), - [anon_sym_BSLASHeqref] = ACTIONS(5987), - [anon_sym_BSLASHvref] = ACTIONS(5987), - [anon_sym_BSLASHVref] = ACTIONS(5987), - [anon_sym_BSLASHautoref] = ACTIONS(5987), - [anon_sym_BSLASHpageref] = ACTIONS(5987), - [anon_sym_BSLASHcref] = ACTIONS(5987), - [anon_sym_BSLASHCref] = ACTIONS(5987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnameCref] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHlabelcref] = ACTIONS(5987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCrefrange] = ACTIONS(5987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnewlabel] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5991), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHdef] = ACTIONS(5987), - [anon_sym_BSLASHlet] = ACTIONS(5987), - [anon_sym_BSLASHleft] = ACTIONS(5987), - [anon_sym_BSLASHbig] = ACTIONS(5987), - [anon_sym_BSLASHBig] = ACTIONS(5987), - [anon_sym_BSLASHbigg] = ACTIONS(5987), - [anon_sym_BSLASHBigg] = ACTIONS(5987), - [anon_sym_BSLASHbigl] = ACTIONS(5987), - [anon_sym_BSLASHBigl] = ACTIONS(5987), - [anon_sym_BSLASHbiggl] = ACTIONS(5987), - [anon_sym_BSLASHBiggl] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), - [anon_sym_BSLASHgls] = ACTIONS(5987), - [anon_sym_BSLASHGls] = ACTIONS(5987), - [anon_sym_BSLASHGLS] = ACTIONS(5987), - [anon_sym_BSLASHglspl] = ACTIONS(5987), - [anon_sym_BSLASHGlspl] = ACTIONS(5987), - [anon_sym_BSLASHGLSpl] = ACTIONS(5987), - [anon_sym_BSLASHglsdisp] = ACTIONS(5987), - [anon_sym_BSLASHglslink] = ACTIONS(5987), - [anon_sym_BSLASHglstext] = ACTIONS(5987), - [anon_sym_BSLASHGlstext] = ACTIONS(5987), - [anon_sym_BSLASHGLStext] = ACTIONS(5987), - [anon_sym_BSLASHglsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), - [anon_sym_BSLASHglsplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSplural] = ACTIONS(5987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHglsname] = ACTIONS(5987), - [anon_sym_BSLASHGlsname] = ACTIONS(5987), - [anon_sym_BSLASHGLSname] = ACTIONS(5987), - [anon_sym_BSLASHglssymbol] = ACTIONS(5987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), - [anon_sym_BSLASHglsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), - [anon_sym_BSLASHglsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), - [anon_sym_BSLASHglsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), - [anon_sym_BSLASHglsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), - [anon_sym_BSLASHglsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), - [anon_sym_BSLASHnewacronym] = ACTIONS(5987), - [anon_sym_BSLASHacrshort] = ACTIONS(5987), - [anon_sym_BSLASHAcrshort] = ACTIONS(5987), - [anon_sym_BSLASHACRshort] = ACTIONS(5987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), - [anon_sym_BSLASHacrlong] = ACTIONS(5987), - [anon_sym_BSLASHAcrlong] = ACTIONS(5987), - [anon_sym_BSLASHACRlong] = ACTIONS(5987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), - [anon_sym_BSLASHacrfull] = ACTIONS(5987), - [anon_sym_BSLASHAcrfull] = ACTIONS(5987), - [anon_sym_BSLASHACRfull] = ACTIONS(5987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), - [anon_sym_BSLASHacs] = ACTIONS(5987), - [anon_sym_BSLASHAcs] = ACTIONS(5987), - [anon_sym_BSLASHacsp] = ACTIONS(5987), - [anon_sym_BSLASHAcsp] = ACTIONS(5987), - [anon_sym_BSLASHacl] = ACTIONS(5987), - [anon_sym_BSLASHAcl] = ACTIONS(5987), - [anon_sym_BSLASHaclp] = ACTIONS(5987), - [anon_sym_BSLASHAclp] = ACTIONS(5987), - [anon_sym_BSLASHacf] = ACTIONS(5987), - [anon_sym_BSLASHAcf] = ACTIONS(5987), - [anon_sym_BSLASHacfp] = ACTIONS(5987), - [anon_sym_BSLASHAcfp] = ACTIONS(5987), - [anon_sym_BSLASHac] = ACTIONS(5987), - [anon_sym_BSLASHAc] = ACTIONS(5987), - [anon_sym_BSLASHacp] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), - [anon_sym_BSLASHcolor] = ACTIONS(5987), - [anon_sym_BSLASHcolorbox] = ACTIONS(5987), - [anon_sym_BSLASHtextcolor] = ACTIONS(5987), - [anon_sym_BSLASHpagecolor] = ACTIONS(5987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), - [anon_sym_BSLASHtext] = ACTIONS(5987), - [anon_sym_BSLASHintertext] = ACTIONS(5987), - [anon_sym_shortintertext] = ACTIONS(5987), - }, - [908] = { - [sym_command_name] = ACTIONS(5968), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5968), - [anon_sym_BSLASHfi] = ACTIONS(6703), - [anon_sym_LBRACK] = ACTIONS(5972), - [anon_sym_RBRACK] = ACTIONS(5972), - [anon_sym_COMMA] = ACTIONS(5972), - [anon_sym_EQ] = ACTIONS(5972), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_RPAREN] = ACTIONS(5972), - [anon_sym_BSLASHpart] = ACTIONS(5968), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddpart] = ACTIONS(5968), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5972), - [anon_sym_BSLASHchapter] = ACTIONS(5968), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddchap] = ACTIONS(5968), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsection] = ACTIONS(5968), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHaddsec] = ACTIONS(5968), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubsection] = ACTIONS(5968), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5968), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5972), - [anon_sym_BSLASHparagraph] = ACTIONS(5968), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5972), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5968), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5972), - [anon_sym_BSLASHitem] = ACTIONS(5968), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5972), - [anon_sym_LBRACE] = ACTIONS(5972), - [sym_word] = ACTIONS(5968), - [sym_placeholder] = ACTIONS(5972), - [anon_sym_PLUS] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5972), - [anon_sym_STAR] = ACTIONS(5972), - [anon_sym_SLASH] = ACTIONS(5972), - [anon_sym_LT] = ACTIONS(5968), - [anon_sym_GT] = ACTIONS(5968), - [anon_sym_BANG] = ACTIONS(5968), - [anon_sym_PIPE] = ACTIONS(5968), - [anon_sym_COLON] = ACTIONS(5968), - [anon_sym_SQUOTE] = ACTIONS(5968), - [anon_sym__] = ACTIONS(5972), - [anon_sym_CARET] = ACTIONS(5972), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5972), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5972), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5972), - [anon_sym_DOLLAR] = ACTIONS(5968), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5972), - [anon_sym_BSLASHbegin] = ACTIONS(5968), - [anon_sym_BSLASHtitle] = ACTIONS(5968), - [anon_sym_BSLASHauthor] = ACTIONS(5968), - [anon_sym_BSLASHusepackage] = ACTIONS(5968), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5968), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5968), - [anon_sym_BSLASHinclude] = ACTIONS(5968), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5968), - [anon_sym_BSLASHinput] = ACTIONS(5968), - [anon_sym_BSLASHsubfile] = ACTIONS(5968), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5968), - [anon_sym_BSLASHbibliography] = ACTIONS(5968), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5968), - [anon_sym_BSLASHincludesvg] = ACTIONS(5968), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5968), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5968), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5968), - [anon_sym_BSLASHimport] = ACTIONS(5968), - [anon_sym_BSLASHsubimport] = ACTIONS(5968), - [anon_sym_BSLASHinputfrom] = ACTIONS(5968), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5968), - [anon_sym_BSLASHincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHcaption] = ACTIONS(5968), - [anon_sym_BSLASHcite] = ACTIONS(5968), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCite] = ACTIONS(5968), - [anon_sym_BSLASHnocite] = ACTIONS(5968), - [anon_sym_BSLASHcitet] = ACTIONS(5968), - [anon_sym_BSLASHcitep] = ACTIONS(5968), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteauthor] = ACTIONS(5968), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5968), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitetitle] = ACTIONS(5968), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteyear] = ACTIONS(5968), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitedate] = ACTIONS(5968), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteurl] = ACTIONS(5968), - [anon_sym_BSLASHfullcite] = ACTIONS(5968), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5968), - [anon_sym_BSLASHcitealt] = ACTIONS(5968), - [anon_sym_BSLASHcitealp] = ACTIONS(5968), - [anon_sym_BSLASHcitetext] = ACTIONS(5968), - [anon_sym_BSLASHparencite] = ACTIONS(5968), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHParencite] = ACTIONS(5968), - [anon_sym_BSLASHfootcite] = ACTIONS(5968), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5968), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5968), - [anon_sym_BSLASHtextcite] = ACTIONS(5968), - [anon_sym_BSLASHTextcite] = ACTIONS(5968), - [anon_sym_BSLASHsmartcite] = ACTIONS(5968), - [anon_sym_BSLASHSmartcite] = ACTIONS(5968), - [anon_sym_BSLASHsupercite] = ACTIONS(5968), - [anon_sym_BSLASHautocite] = ACTIONS(5968), - [anon_sym_BSLASHAutocite] = ACTIONS(5968), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHvolcite] = ACTIONS(5968), - [anon_sym_BSLASHVolcite] = ACTIONS(5968), - [anon_sym_BSLASHpvolcite] = ACTIONS(5968), - [anon_sym_BSLASHPvolcite] = ACTIONS(5968), - [anon_sym_BSLASHfvolcite] = ACTIONS(5968), - [anon_sym_BSLASHftvolcite] = ACTIONS(5968), - [anon_sym_BSLASHsvolcite] = ACTIONS(5968), - [anon_sym_BSLASHSvolcite] = ACTIONS(5968), - [anon_sym_BSLASHtvolcite] = ACTIONS(5968), - [anon_sym_BSLASHTvolcite] = ACTIONS(5968), - [anon_sym_BSLASHavolcite] = ACTIONS(5968), - [anon_sym_BSLASHAvolcite] = ACTIONS(5968), - [anon_sym_BSLASHnotecite] = ACTIONS(5968), - [anon_sym_BSLASHNotecite] = ACTIONS(5968), - [anon_sym_BSLASHpnotecite] = ACTIONS(5968), - [anon_sym_BSLASHPnotecite] = ACTIONS(5968), - [anon_sym_BSLASHfnotecite] = ACTIONS(5968), - [anon_sym_BSLASHlabel] = ACTIONS(5968), - [anon_sym_BSLASHref] = ACTIONS(5968), - [anon_sym_BSLASHeqref] = ACTIONS(5968), - [anon_sym_BSLASHvref] = ACTIONS(5968), - [anon_sym_BSLASHVref] = ACTIONS(5968), - [anon_sym_BSLASHautoref] = ACTIONS(5968), - [anon_sym_BSLASHpageref] = ACTIONS(5968), - [anon_sym_BSLASHcref] = ACTIONS(5968), - [anon_sym_BSLASHCref] = ACTIONS(5968), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnameCref] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHlabelcref] = ACTIONS(5968), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCrefrange] = ACTIONS(5968), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnewlabel] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5968), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5968), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5972), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHdef] = ACTIONS(5968), - [anon_sym_BSLASHlet] = ACTIONS(5968), - [anon_sym_BSLASHleft] = ACTIONS(5968), - [anon_sym_BSLASHbig] = ACTIONS(5968), - [anon_sym_BSLASHBig] = ACTIONS(5968), - [anon_sym_BSLASHbigg] = ACTIONS(5968), - [anon_sym_BSLASHBigg] = ACTIONS(5968), - [anon_sym_BSLASHbigl] = ACTIONS(5968), - [anon_sym_BSLASHBigl] = ACTIONS(5968), - [anon_sym_BSLASHbiggl] = ACTIONS(5968), - [anon_sym_BSLASHBiggl] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5968), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5968), - [anon_sym_BSLASHgls] = ACTIONS(5968), - [anon_sym_BSLASHGls] = ACTIONS(5968), - [anon_sym_BSLASHGLS] = ACTIONS(5968), - [anon_sym_BSLASHglspl] = ACTIONS(5968), - [anon_sym_BSLASHGlspl] = ACTIONS(5968), - [anon_sym_BSLASHGLSpl] = ACTIONS(5968), - [anon_sym_BSLASHglsdisp] = ACTIONS(5968), - [anon_sym_BSLASHglslink] = ACTIONS(5968), - [anon_sym_BSLASHglstext] = ACTIONS(5968), - [anon_sym_BSLASHGlstext] = ACTIONS(5968), - [anon_sym_BSLASHGLStext] = ACTIONS(5968), - [anon_sym_BSLASHglsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5968), - [anon_sym_BSLASHglsplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSplural] = ACTIONS(5968), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHglsname] = ACTIONS(5968), - [anon_sym_BSLASHGlsname] = ACTIONS(5968), - [anon_sym_BSLASHGLSname] = ACTIONS(5968), - [anon_sym_BSLASHglssymbol] = ACTIONS(5968), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5968), - [anon_sym_BSLASHglsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5968), - [anon_sym_BSLASHglsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5968), - [anon_sym_BSLASHglsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5968), - [anon_sym_BSLASHglsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5968), - [anon_sym_BSLASHglsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5968), - [anon_sym_BSLASHnewacronym] = ACTIONS(5968), - [anon_sym_BSLASHacrshort] = ACTIONS(5968), - [anon_sym_BSLASHAcrshort] = ACTIONS(5968), - [anon_sym_BSLASHACRshort] = ACTIONS(5968), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5968), - [anon_sym_BSLASHacrlong] = ACTIONS(5968), - [anon_sym_BSLASHAcrlong] = ACTIONS(5968), - [anon_sym_BSLASHACRlong] = ACTIONS(5968), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5968), - [anon_sym_BSLASHacrfull] = ACTIONS(5968), - [anon_sym_BSLASHAcrfull] = ACTIONS(5968), - [anon_sym_BSLASHACRfull] = ACTIONS(5968), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5968), - [anon_sym_BSLASHacs] = ACTIONS(5968), - [anon_sym_BSLASHAcs] = ACTIONS(5968), - [anon_sym_BSLASHacsp] = ACTIONS(5968), - [anon_sym_BSLASHAcsp] = ACTIONS(5968), - [anon_sym_BSLASHacl] = ACTIONS(5968), - [anon_sym_BSLASHAcl] = ACTIONS(5968), - [anon_sym_BSLASHaclp] = ACTIONS(5968), - [anon_sym_BSLASHAclp] = ACTIONS(5968), - [anon_sym_BSLASHacf] = ACTIONS(5968), - [anon_sym_BSLASHAcf] = ACTIONS(5968), - [anon_sym_BSLASHacfp] = ACTIONS(5968), - [anon_sym_BSLASHAcfp] = ACTIONS(5968), - [anon_sym_BSLASHac] = ACTIONS(5968), - [anon_sym_BSLASHAc] = ACTIONS(5968), - [anon_sym_BSLASHacp] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5968), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5968), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5968), - [anon_sym_BSLASHcolor] = ACTIONS(5968), - [anon_sym_BSLASHcolorbox] = ACTIONS(5968), - [anon_sym_BSLASHtextcolor] = ACTIONS(5968), - [anon_sym_BSLASHpagecolor] = ACTIONS(5968), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5968), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5968), - [anon_sym_BSLASHtext] = ACTIONS(5968), - [anon_sym_BSLASHintertext] = ACTIONS(5968), - [anon_sym_shortintertext] = ACTIONS(5968), - [sym__trivia_raw_fi] = ACTIONS(6705), - }, - [909] = { - [sym_curly_group] = STATE(1395), - [aux_sym_generic_command_repeat1] = STATE(905), - [sym_command_name] = ACTIONS(5964), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5964), - [anon_sym_LBRACK] = ACTIONS(5966), - [anon_sym_RBRACK] = ACTIONS(5966), - [anon_sym_COMMA] = ACTIONS(5966), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_LPAREN] = ACTIONS(5966), - [anon_sym_RPAREN] = ACTIONS(5966), - [anon_sym_BSLASHpart] = ACTIONS(5964), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddpart] = ACTIONS(5964), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5966), - [anon_sym_BSLASHchapter] = ACTIONS(5964), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddchap] = ACTIONS(5964), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsection] = ACTIONS(5964), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHaddsec] = ACTIONS(5964), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubsection] = ACTIONS(5964), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5964), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5966), - [anon_sym_BSLASHparagraph] = ACTIONS(5964), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5966), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5964), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5966), - [anon_sym_BSLASHitem] = ACTIONS(5964), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5966), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(5964), - [sym_placeholder] = ACTIONS(5966), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5966), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_SQUOTE] = ACTIONS(5964), - [anon_sym__] = ACTIONS(5966), - [anon_sym_CARET] = ACTIONS(5966), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5966), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5966), - [anon_sym_DOLLAR] = ACTIONS(5964), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5966), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5966), - [anon_sym_BSLASHbegin] = ACTIONS(5964), - [anon_sym_BSLASHtitle] = ACTIONS(5964), - [anon_sym_BSLASHauthor] = ACTIONS(5964), - [anon_sym_BSLASHusepackage] = ACTIONS(5964), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5964), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5964), - [anon_sym_BSLASHinclude] = ACTIONS(5964), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5964), - [anon_sym_BSLASHinput] = ACTIONS(5964), - [anon_sym_BSLASHsubfile] = ACTIONS(5964), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5964), - [anon_sym_BSLASHbibliography] = ACTIONS(5964), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5964), - [anon_sym_BSLASHincludesvg] = ACTIONS(5964), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5964), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5964), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5964), - [anon_sym_BSLASHimport] = ACTIONS(5964), - [anon_sym_BSLASHsubimport] = ACTIONS(5964), - [anon_sym_BSLASHinputfrom] = ACTIONS(5964), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5964), - [anon_sym_BSLASHincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHcaption] = ACTIONS(5964), - [anon_sym_BSLASHcite] = ACTIONS(5964), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCite] = ACTIONS(5964), - [anon_sym_BSLASHnocite] = ACTIONS(5964), - [anon_sym_BSLASHcitet] = ACTIONS(5964), - [anon_sym_BSLASHcitep] = ACTIONS(5964), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteauthor] = ACTIONS(5964), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5964), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitetitle] = ACTIONS(5964), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteyear] = ACTIONS(5964), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitedate] = ACTIONS(5964), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteurl] = ACTIONS(5964), - [anon_sym_BSLASHfullcite] = ACTIONS(5964), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5964), - [anon_sym_BSLASHcitealt] = ACTIONS(5964), - [anon_sym_BSLASHcitealp] = ACTIONS(5964), - [anon_sym_BSLASHcitetext] = ACTIONS(5964), - [anon_sym_BSLASHparencite] = ACTIONS(5964), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHParencite] = ACTIONS(5964), - [anon_sym_BSLASHfootcite] = ACTIONS(5964), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5964), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5964), - [anon_sym_BSLASHtextcite] = ACTIONS(5964), - [anon_sym_BSLASHTextcite] = ACTIONS(5964), - [anon_sym_BSLASHsmartcite] = ACTIONS(5964), - [anon_sym_BSLASHSmartcite] = ACTIONS(5964), - [anon_sym_BSLASHsupercite] = ACTIONS(5964), - [anon_sym_BSLASHautocite] = ACTIONS(5964), - [anon_sym_BSLASHAutocite] = ACTIONS(5964), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHvolcite] = ACTIONS(5964), - [anon_sym_BSLASHVolcite] = ACTIONS(5964), - [anon_sym_BSLASHpvolcite] = ACTIONS(5964), - [anon_sym_BSLASHPvolcite] = ACTIONS(5964), - [anon_sym_BSLASHfvolcite] = ACTIONS(5964), - [anon_sym_BSLASHftvolcite] = ACTIONS(5964), - [anon_sym_BSLASHsvolcite] = ACTIONS(5964), - [anon_sym_BSLASHSvolcite] = ACTIONS(5964), - [anon_sym_BSLASHtvolcite] = ACTIONS(5964), - [anon_sym_BSLASHTvolcite] = ACTIONS(5964), - [anon_sym_BSLASHavolcite] = ACTIONS(5964), - [anon_sym_BSLASHAvolcite] = ACTIONS(5964), - [anon_sym_BSLASHnotecite] = ACTIONS(5964), - [anon_sym_BSLASHNotecite] = ACTIONS(5964), - [anon_sym_BSLASHpnotecite] = ACTIONS(5964), - [anon_sym_BSLASHPnotecite] = ACTIONS(5964), - [anon_sym_BSLASHfnotecite] = ACTIONS(5964), - [anon_sym_BSLASHlabel] = ACTIONS(5964), - [anon_sym_BSLASHref] = ACTIONS(5964), - [anon_sym_BSLASHeqref] = ACTIONS(5964), - [anon_sym_BSLASHvref] = ACTIONS(5964), - [anon_sym_BSLASHVref] = ACTIONS(5964), - [anon_sym_BSLASHautoref] = ACTIONS(5964), - [anon_sym_BSLASHpageref] = ACTIONS(5964), - [anon_sym_BSLASHcref] = ACTIONS(5964), - [anon_sym_BSLASHCref] = ACTIONS(5964), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnameCref] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHlabelcref] = ACTIONS(5964), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCrefrange] = ACTIONS(5964), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnewlabel] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5964), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5964), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5966), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHdef] = ACTIONS(5964), - [anon_sym_BSLASHlet] = ACTIONS(5964), - [anon_sym_BSLASHleft] = ACTIONS(5964), - [anon_sym_BSLASHbig] = ACTIONS(5964), - [anon_sym_BSLASHBig] = ACTIONS(5964), - [anon_sym_BSLASHbigg] = ACTIONS(5964), - [anon_sym_BSLASHBigg] = ACTIONS(5964), - [anon_sym_BSLASHbigl] = ACTIONS(5964), - [anon_sym_BSLASHBigl] = ACTIONS(5964), - [anon_sym_BSLASHbiggl] = ACTIONS(5964), - [anon_sym_BSLASHBiggl] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5964), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5964), - [anon_sym_BSLASHgls] = ACTIONS(5964), - [anon_sym_BSLASHGls] = ACTIONS(5964), - [anon_sym_BSLASHGLS] = ACTIONS(5964), - [anon_sym_BSLASHglspl] = ACTIONS(5964), - [anon_sym_BSLASHGlspl] = ACTIONS(5964), - [anon_sym_BSLASHGLSpl] = ACTIONS(5964), - [anon_sym_BSLASHglsdisp] = ACTIONS(5964), - [anon_sym_BSLASHglslink] = ACTIONS(5964), - [anon_sym_BSLASHglstext] = ACTIONS(5964), - [anon_sym_BSLASHGlstext] = ACTIONS(5964), - [anon_sym_BSLASHGLStext] = ACTIONS(5964), - [anon_sym_BSLASHglsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5964), - [anon_sym_BSLASHglsplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSplural] = ACTIONS(5964), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHglsname] = ACTIONS(5964), - [anon_sym_BSLASHGlsname] = ACTIONS(5964), - [anon_sym_BSLASHGLSname] = ACTIONS(5964), - [anon_sym_BSLASHglssymbol] = ACTIONS(5964), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5964), - [anon_sym_BSLASHglsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5964), - [anon_sym_BSLASHglsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5964), - [anon_sym_BSLASHglsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5964), - [anon_sym_BSLASHglsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5964), - [anon_sym_BSLASHglsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5964), - [anon_sym_BSLASHnewacronym] = ACTIONS(5964), - [anon_sym_BSLASHacrshort] = ACTIONS(5964), - [anon_sym_BSLASHAcrshort] = ACTIONS(5964), - [anon_sym_BSLASHACRshort] = ACTIONS(5964), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5964), - [anon_sym_BSLASHacrlong] = ACTIONS(5964), - [anon_sym_BSLASHAcrlong] = ACTIONS(5964), - [anon_sym_BSLASHACRlong] = ACTIONS(5964), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5964), - [anon_sym_BSLASHacrfull] = ACTIONS(5964), - [anon_sym_BSLASHAcrfull] = ACTIONS(5964), - [anon_sym_BSLASHACRfull] = ACTIONS(5964), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5964), - [anon_sym_BSLASHacs] = ACTIONS(5964), - [anon_sym_BSLASHAcs] = ACTIONS(5964), - [anon_sym_BSLASHacsp] = ACTIONS(5964), - [anon_sym_BSLASHAcsp] = ACTIONS(5964), - [anon_sym_BSLASHacl] = ACTIONS(5964), - [anon_sym_BSLASHAcl] = ACTIONS(5964), - [anon_sym_BSLASHaclp] = ACTIONS(5964), - [anon_sym_BSLASHAclp] = ACTIONS(5964), - [anon_sym_BSLASHacf] = ACTIONS(5964), - [anon_sym_BSLASHAcf] = ACTIONS(5964), - [anon_sym_BSLASHacfp] = ACTIONS(5964), - [anon_sym_BSLASHAcfp] = ACTIONS(5964), - [anon_sym_BSLASHac] = ACTIONS(5964), - [anon_sym_BSLASHAc] = ACTIONS(5964), - [anon_sym_BSLASHacp] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5964), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5964), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5964), - [anon_sym_BSLASHcolor] = ACTIONS(5964), - [anon_sym_BSLASHcolorbox] = ACTIONS(5964), - [anon_sym_BSLASHtextcolor] = ACTIONS(5964), - [anon_sym_BSLASHpagecolor] = ACTIONS(5964), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5964), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5964), - [anon_sym_BSLASHtext] = ACTIONS(5964), - [anon_sym_BSLASHintertext] = ACTIONS(5964), - [anon_sym_shortintertext] = ACTIONS(5964), - }, - [910] = { - [ts_builtin_sym_end] = ACTIONS(6351), - [sym_command_name] = ACTIONS(6349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6349), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_EQ] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_BSLASHpart] = ACTIONS(6349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddpart] = ACTIONS(6349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6351), - [anon_sym_BSLASHchapter] = ACTIONS(6349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddchap] = ACTIONS(6349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsection] = ACTIONS(6349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddsec] = ACTIONS(6349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubsection] = ACTIONS(6349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHparagraph] = ACTIONS(6349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6351), - [anon_sym_BSLASHitem] = ACTIONS(6349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6351), - [anon_sym_LBRACE] = ACTIONS(6351), - [anon_sym_RBRACE] = ACTIONS(6351), - [sym_word] = ACTIONS(6349), - [sym_placeholder] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6351), - [anon_sym_DASH] = ACTIONS(6351), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_SQUOTE] = ACTIONS(6349), - [anon_sym__] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6351), - [anon_sym_DOLLAR] = ACTIONS(6349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6351), - [anon_sym_BSLASHbegin] = ACTIONS(6349), - [anon_sym_BSLASHtitle] = ACTIONS(6349), - [anon_sym_BSLASHauthor] = ACTIONS(6349), - [anon_sym_BSLASHusepackage] = ACTIONS(6349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6349), - [anon_sym_BSLASHinclude] = ACTIONS(6349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6349), - [anon_sym_BSLASHinput] = ACTIONS(6349), - [anon_sym_BSLASHsubfile] = ACTIONS(6349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6349), - [anon_sym_BSLASHbibliography] = ACTIONS(6349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6349), - [anon_sym_BSLASHincludesvg] = ACTIONS(6349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6349), - [anon_sym_BSLASHimport] = ACTIONS(6349), - [anon_sym_BSLASHsubimport] = ACTIONS(6349), - [anon_sym_BSLASHinputfrom] = ACTIONS(6349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6349), - [anon_sym_BSLASHincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHcaption] = ACTIONS(6349), - [anon_sym_BSLASHcite] = ACTIONS(6349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCite] = ACTIONS(6349), - [anon_sym_BSLASHnocite] = ACTIONS(6349), - [anon_sym_BSLASHcitet] = ACTIONS(6349), - [anon_sym_BSLASHcitep] = ACTIONS(6349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteauthor] = ACTIONS(6349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitetitle] = ACTIONS(6349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteyear] = ACTIONS(6349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitedate] = ACTIONS(6349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteurl] = ACTIONS(6349), - [anon_sym_BSLASHfullcite] = ACTIONS(6349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6349), - [anon_sym_BSLASHcitealt] = ACTIONS(6349), - [anon_sym_BSLASHcitealp] = ACTIONS(6349), - [anon_sym_BSLASHcitetext] = ACTIONS(6349), - [anon_sym_BSLASHparencite] = ACTIONS(6349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHParencite] = ACTIONS(6349), - [anon_sym_BSLASHfootcite] = ACTIONS(6349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6349), - [anon_sym_BSLASHtextcite] = ACTIONS(6349), - [anon_sym_BSLASHTextcite] = ACTIONS(6349), - [anon_sym_BSLASHsmartcite] = ACTIONS(6349), - [anon_sym_BSLASHSmartcite] = ACTIONS(6349), - [anon_sym_BSLASHsupercite] = ACTIONS(6349), - [anon_sym_BSLASHautocite] = ACTIONS(6349), - [anon_sym_BSLASHAutocite] = ACTIONS(6349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHvolcite] = ACTIONS(6349), - [anon_sym_BSLASHVolcite] = ACTIONS(6349), - [anon_sym_BSLASHpvolcite] = ACTIONS(6349), - [anon_sym_BSLASHPvolcite] = ACTIONS(6349), - [anon_sym_BSLASHfvolcite] = ACTIONS(6349), - [anon_sym_BSLASHftvolcite] = ACTIONS(6349), - [anon_sym_BSLASHsvolcite] = ACTIONS(6349), - [anon_sym_BSLASHSvolcite] = ACTIONS(6349), - [anon_sym_BSLASHtvolcite] = ACTIONS(6349), - [anon_sym_BSLASHTvolcite] = ACTIONS(6349), - [anon_sym_BSLASHavolcite] = ACTIONS(6349), - [anon_sym_BSLASHAvolcite] = ACTIONS(6349), - [anon_sym_BSLASHnotecite] = ACTIONS(6349), - [anon_sym_BSLASHNotecite] = ACTIONS(6349), - [anon_sym_BSLASHpnotecite] = ACTIONS(6349), - [anon_sym_BSLASHPnotecite] = ACTIONS(6349), - [anon_sym_BSLASHfnotecite] = ACTIONS(6349), - [anon_sym_BSLASHlabel] = ACTIONS(6349), - [anon_sym_BSLASHref] = ACTIONS(6349), - [anon_sym_BSLASHeqref] = ACTIONS(6349), - [anon_sym_BSLASHvref] = ACTIONS(6349), - [anon_sym_BSLASHVref] = ACTIONS(6349), - [anon_sym_BSLASHautoref] = ACTIONS(6349), - [anon_sym_BSLASHpageref] = ACTIONS(6349), - [anon_sym_BSLASHcref] = ACTIONS(6349), - [anon_sym_BSLASHCref] = ACTIONS(6349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnameCref] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHlabelcref] = ACTIONS(6349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCrefrange] = ACTIONS(6349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnewlabel] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6351), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHdef] = ACTIONS(6349), - [anon_sym_BSLASHlet] = ACTIONS(6349), - [anon_sym_BSLASHleft] = ACTIONS(6349), - [anon_sym_BSLASHbig] = ACTIONS(6349), - [anon_sym_BSLASHBig] = ACTIONS(6349), - [anon_sym_BSLASHbigg] = ACTIONS(6349), - [anon_sym_BSLASHBigg] = ACTIONS(6349), - [anon_sym_BSLASHbigl] = ACTIONS(6349), - [anon_sym_BSLASHBigl] = ACTIONS(6349), - [anon_sym_BSLASHbiggl] = ACTIONS(6349), - [anon_sym_BSLASHBiggl] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6349), - [anon_sym_BSLASHgls] = ACTIONS(6349), - [anon_sym_BSLASHGls] = ACTIONS(6349), - [anon_sym_BSLASHGLS] = ACTIONS(6349), - [anon_sym_BSLASHglspl] = ACTIONS(6349), - [anon_sym_BSLASHGlspl] = ACTIONS(6349), - [anon_sym_BSLASHGLSpl] = ACTIONS(6349), - [anon_sym_BSLASHglsdisp] = ACTIONS(6349), - [anon_sym_BSLASHglslink] = ACTIONS(6349), - [anon_sym_BSLASHglstext] = ACTIONS(6349), - [anon_sym_BSLASHGlstext] = ACTIONS(6349), - [anon_sym_BSLASHGLStext] = ACTIONS(6349), - [anon_sym_BSLASHglsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6349), - [anon_sym_BSLASHglsplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSplural] = ACTIONS(6349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHglsname] = ACTIONS(6349), - [anon_sym_BSLASHGlsname] = ACTIONS(6349), - [anon_sym_BSLASHGLSname] = ACTIONS(6349), - [anon_sym_BSLASHglssymbol] = ACTIONS(6349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6349), - [anon_sym_BSLASHglsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6349), - [anon_sym_BSLASHglsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6349), - [anon_sym_BSLASHglsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6349), - [anon_sym_BSLASHglsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6349), - [anon_sym_BSLASHglsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6349), - [anon_sym_BSLASHnewacronym] = ACTIONS(6349), - [anon_sym_BSLASHacrshort] = ACTIONS(6349), - [anon_sym_BSLASHAcrshort] = ACTIONS(6349), - [anon_sym_BSLASHACRshort] = ACTIONS(6349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6349), - [anon_sym_BSLASHacrlong] = ACTIONS(6349), - [anon_sym_BSLASHAcrlong] = ACTIONS(6349), - [anon_sym_BSLASHACRlong] = ACTIONS(6349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6349), - [anon_sym_BSLASHacrfull] = ACTIONS(6349), - [anon_sym_BSLASHAcrfull] = ACTIONS(6349), - [anon_sym_BSLASHACRfull] = ACTIONS(6349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6349), - [anon_sym_BSLASHacs] = ACTIONS(6349), - [anon_sym_BSLASHAcs] = ACTIONS(6349), - [anon_sym_BSLASHacsp] = ACTIONS(6349), - [anon_sym_BSLASHAcsp] = ACTIONS(6349), - [anon_sym_BSLASHacl] = ACTIONS(6349), - [anon_sym_BSLASHAcl] = ACTIONS(6349), - [anon_sym_BSLASHaclp] = ACTIONS(6349), - [anon_sym_BSLASHAclp] = ACTIONS(6349), - [anon_sym_BSLASHacf] = ACTIONS(6349), - [anon_sym_BSLASHAcf] = ACTIONS(6349), - [anon_sym_BSLASHacfp] = ACTIONS(6349), - [anon_sym_BSLASHAcfp] = ACTIONS(6349), - [anon_sym_BSLASHac] = ACTIONS(6349), - [anon_sym_BSLASHAc] = ACTIONS(6349), - [anon_sym_BSLASHacp] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6349), - [anon_sym_BSLASHcolor] = ACTIONS(6349), - [anon_sym_BSLASHcolorbox] = ACTIONS(6349), - [anon_sym_BSLASHtextcolor] = ACTIONS(6349), - [anon_sym_BSLASHpagecolor] = ACTIONS(6349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6349), - [anon_sym_BSLASHtext] = ACTIONS(6349), - [anon_sym_BSLASHintertext] = ACTIONS(6349), - [anon_sym_shortintertext] = ACTIONS(6349), - }, - [911] = { - [sym_curly_group] = STATE(1176), - [sym_command_name] = ACTIONS(6021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6021), - [anon_sym_LBRACK] = ACTIONS(6023), - [anon_sym_RBRACK] = ACTIONS(6023), - [anon_sym_COMMA] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(6023), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_RPAREN] = ACTIONS(6023), - [anon_sym_BSLASHpart] = ACTIONS(6021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddpart] = ACTIONS(6021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6023), - [anon_sym_BSLASHchapter] = ACTIONS(6021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddchap] = ACTIONS(6021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsection] = ACTIONS(6021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddsec] = ACTIONS(6021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubsection] = ACTIONS(6021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHparagraph] = ACTIONS(6021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6023), - [anon_sym_BSLASHitem] = ACTIONS(6021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6023), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(6021), - [sym_placeholder] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6023), - [anon_sym_DASH] = ACTIONS(6023), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6023), - [anon_sym_LT] = ACTIONS(6021), - [anon_sym_GT] = ACTIONS(6021), - [anon_sym_BANG] = ACTIONS(6021), - [anon_sym_PIPE] = ACTIONS(6021), - [anon_sym_COLON] = ACTIONS(6021), - [anon_sym_SQUOTE] = ACTIONS(6021), - [anon_sym__] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), - [anon_sym_BSLASHbegin] = ACTIONS(6021), - [anon_sym_BSLASHend] = ACTIONS(6021), - [anon_sym_BSLASHtitle] = ACTIONS(6021), - [anon_sym_BSLASHauthor] = ACTIONS(6021), - [anon_sym_BSLASHusepackage] = ACTIONS(6021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), - [anon_sym_BSLASHinclude] = ACTIONS(6021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), - [anon_sym_BSLASHinput] = ACTIONS(6021), - [anon_sym_BSLASHsubfile] = ACTIONS(6021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), - [anon_sym_BSLASHbibliography] = ACTIONS(6021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), - [anon_sym_BSLASHincludesvg] = ACTIONS(6021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), - [anon_sym_BSLASHimport] = ACTIONS(6021), - [anon_sym_BSLASHsubimport] = ACTIONS(6021), - [anon_sym_BSLASHinputfrom] = ACTIONS(6021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), - [anon_sym_BSLASHincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHcaption] = ACTIONS(6021), - [anon_sym_BSLASHcite] = ACTIONS(6021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCite] = ACTIONS(6021), - [anon_sym_BSLASHnocite] = ACTIONS(6021), - [anon_sym_BSLASHcitet] = ACTIONS(6021), - [anon_sym_BSLASHcitep] = ACTIONS(6021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteauthor] = ACTIONS(6021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitetitle] = ACTIONS(6021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteyear] = ACTIONS(6021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitedate] = ACTIONS(6021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteurl] = ACTIONS(6021), - [anon_sym_BSLASHfullcite] = ACTIONS(6021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), - [anon_sym_BSLASHcitealt] = ACTIONS(6021), - [anon_sym_BSLASHcitealp] = ACTIONS(6021), - [anon_sym_BSLASHcitetext] = ACTIONS(6021), - [anon_sym_BSLASHparencite] = ACTIONS(6021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHParencite] = ACTIONS(6021), - [anon_sym_BSLASHfootcite] = ACTIONS(6021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), - [anon_sym_BSLASHtextcite] = ACTIONS(6021), - [anon_sym_BSLASHTextcite] = ACTIONS(6021), - [anon_sym_BSLASHsmartcite] = ACTIONS(6021), - [anon_sym_BSLASHSmartcite] = ACTIONS(6021), - [anon_sym_BSLASHsupercite] = ACTIONS(6021), - [anon_sym_BSLASHautocite] = ACTIONS(6021), - [anon_sym_BSLASHAutocite] = ACTIONS(6021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHvolcite] = ACTIONS(6021), - [anon_sym_BSLASHVolcite] = ACTIONS(6021), - [anon_sym_BSLASHpvolcite] = ACTIONS(6021), - [anon_sym_BSLASHPvolcite] = ACTIONS(6021), - [anon_sym_BSLASHfvolcite] = ACTIONS(6021), - [anon_sym_BSLASHftvolcite] = ACTIONS(6021), - [anon_sym_BSLASHsvolcite] = ACTIONS(6021), - [anon_sym_BSLASHSvolcite] = ACTIONS(6021), - [anon_sym_BSLASHtvolcite] = ACTIONS(6021), - [anon_sym_BSLASHTvolcite] = ACTIONS(6021), - [anon_sym_BSLASHavolcite] = ACTIONS(6021), - [anon_sym_BSLASHAvolcite] = ACTIONS(6021), - [anon_sym_BSLASHnotecite] = ACTIONS(6021), - [anon_sym_BSLASHNotecite] = ACTIONS(6021), - [anon_sym_BSLASHpnotecite] = ACTIONS(6021), - [anon_sym_BSLASHPnotecite] = ACTIONS(6021), - [anon_sym_BSLASHfnotecite] = ACTIONS(6021), - [anon_sym_BSLASHlabel] = ACTIONS(6021), - [anon_sym_BSLASHref] = ACTIONS(6021), - [anon_sym_BSLASHeqref] = ACTIONS(6021), - [anon_sym_BSLASHvref] = ACTIONS(6021), - [anon_sym_BSLASHVref] = ACTIONS(6021), - [anon_sym_BSLASHautoref] = ACTIONS(6021), - [anon_sym_BSLASHpageref] = ACTIONS(6021), - [anon_sym_BSLASHcref] = ACTIONS(6021), - [anon_sym_BSLASHCref] = ACTIONS(6021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnameCref] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHlabelcref] = ACTIONS(6021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCrefrange] = ACTIONS(6021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnewlabel] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHdef] = ACTIONS(6021), - [anon_sym_BSLASHlet] = ACTIONS(6021), - [anon_sym_BSLASHleft] = ACTIONS(6021), - [anon_sym_BSLASHbig] = ACTIONS(6021), - [anon_sym_BSLASHBig] = ACTIONS(6021), - [anon_sym_BSLASHbigg] = ACTIONS(6021), - [anon_sym_BSLASHBigg] = ACTIONS(6021), - [anon_sym_BSLASHbigl] = ACTIONS(6021), - [anon_sym_BSLASHBigl] = ACTIONS(6021), - [anon_sym_BSLASHbiggl] = ACTIONS(6021), - [anon_sym_BSLASHBiggl] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), - [anon_sym_BSLASHgls] = ACTIONS(6021), - [anon_sym_BSLASHGls] = ACTIONS(6021), - [anon_sym_BSLASHGLS] = ACTIONS(6021), - [anon_sym_BSLASHglspl] = ACTIONS(6021), - [anon_sym_BSLASHGlspl] = ACTIONS(6021), - [anon_sym_BSLASHGLSpl] = ACTIONS(6021), - [anon_sym_BSLASHglsdisp] = ACTIONS(6021), - [anon_sym_BSLASHglslink] = ACTIONS(6021), - [anon_sym_BSLASHglstext] = ACTIONS(6021), - [anon_sym_BSLASHGlstext] = ACTIONS(6021), - [anon_sym_BSLASHGLStext] = ACTIONS(6021), - [anon_sym_BSLASHglsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), - [anon_sym_BSLASHglsplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSplural] = ACTIONS(6021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHglsname] = ACTIONS(6021), - [anon_sym_BSLASHGlsname] = ACTIONS(6021), - [anon_sym_BSLASHGLSname] = ACTIONS(6021), - [anon_sym_BSLASHglssymbol] = ACTIONS(6021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), - [anon_sym_BSLASHglsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), - [anon_sym_BSLASHglsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), - [anon_sym_BSLASHglsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), - [anon_sym_BSLASHglsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), - [anon_sym_BSLASHglsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), - [anon_sym_BSLASHnewacronym] = ACTIONS(6021), - [anon_sym_BSLASHacrshort] = ACTIONS(6021), - [anon_sym_BSLASHAcrshort] = ACTIONS(6021), - [anon_sym_BSLASHACRshort] = ACTIONS(6021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), - [anon_sym_BSLASHacrlong] = ACTIONS(6021), - [anon_sym_BSLASHAcrlong] = ACTIONS(6021), - [anon_sym_BSLASHACRlong] = ACTIONS(6021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), - [anon_sym_BSLASHacrfull] = ACTIONS(6021), - [anon_sym_BSLASHAcrfull] = ACTIONS(6021), - [anon_sym_BSLASHACRfull] = ACTIONS(6021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), - [anon_sym_BSLASHacs] = ACTIONS(6021), - [anon_sym_BSLASHAcs] = ACTIONS(6021), - [anon_sym_BSLASHacsp] = ACTIONS(6021), - [anon_sym_BSLASHAcsp] = ACTIONS(6021), - [anon_sym_BSLASHacl] = ACTIONS(6021), - [anon_sym_BSLASHAcl] = ACTIONS(6021), - [anon_sym_BSLASHaclp] = ACTIONS(6021), - [anon_sym_BSLASHAclp] = ACTIONS(6021), - [anon_sym_BSLASHacf] = ACTIONS(6021), - [anon_sym_BSLASHAcf] = ACTIONS(6021), - [anon_sym_BSLASHacfp] = ACTIONS(6021), - [anon_sym_BSLASHAcfp] = ACTIONS(6021), - [anon_sym_BSLASHac] = ACTIONS(6021), - [anon_sym_BSLASHAc] = ACTIONS(6021), - [anon_sym_BSLASHacp] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), - [anon_sym_BSLASHcolor] = ACTIONS(6021), - [anon_sym_BSLASHcolorbox] = ACTIONS(6021), - [anon_sym_BSLASHtextcolor] = ACTIONS(6021), - [anon_sym_BSLASHpagecolor] = ACTIONS(6021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), - [anon_sym_BSLASHtext] = ACTIONS(6021), - [anon_sym_BSLASHintertext] = ACTIONS(6021), - [anon_sym_shortintertext] = ACTIONS(6021), - }, - [912] = { - [ts_builtin_sym_end] = ACTIONS(6255), - [sym_command_name] = ACTIONS(6253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6253), - [anon_sym_LBRACK] = ACTIONS(6255), - [anon_sym_RBRACK] = ACTIONS(6255), - [anon_sym_COMMA] = ACTIONS(6255), - [anon_sym_EQ] = ACTIONS(6255), - [anon_sym_LPAREN] = ACTIONS(6255), - [anon_sym_RPAREN] = ACTIONS(6255), - [anon_sym_BSLASHpart] = ACTIONS(6253), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddpart] = ACTIONS(6253), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6255), - [anon_sym_BSLASHchapter] = ACTIONS(6253), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddchap] = ACTIONS(6253), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsection] = ACTIONS(6253), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddsec] = ACTIONS(6253), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubsection] = ACTIONS(6253), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6253), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHparagraph] = ACTIONS(6253), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6253), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6255), - [anon_sym_BSLASHitem] = ACTIONS(6253), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6255), - [anon_sym_LBRACE] = ACTIONS(6255), - [anon_sym_RBRACE] = ACTIONS(6255), - [sym_word] = ACTIONS(6253), - [sym_placeholder] = ACTIONS(6255), - [anon_sym_PLUS] = ACTIONS(6255), - [anon_sym_DASH] = ACTIONS(6255), - [anon_sym_STAR] = ACTIONS(6255), - [anon_sym_SLASH] = ACTIONS(6255), - [anon_sym_LT] = ACTIONS(6253), - [anon_sym_GT] = ACTIONS(6253), - [anon_sym_BANG] = ACTIONS(6253), - [anon_sym_PIPE] = ACTIONS(6253), - [anon_sym_COLON] = ACTIONS(6253), - [anon_sym_SQUOTE] = ACTIONS(6253), - [anon_sym__] = ACTIONS(6255), - [anon_sym_CARET] = ACTIONS(6255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6255), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6255), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6255), - [anon_sym_BSLASHbegin] = ACTIONS(6253), - [anon_sym_BSLASHtitle] = ACTIONS(6253), - [anon_sym_BSLASHauthor] = ACTIONS(6253), - [anon_sym_BSLASHusepackage] = ACTIONS(6253), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), - [anon_sym_BSLASHinclude] = ACTIONS(6253), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), - [anon_sym_BSLASHinput] = ACTIONS(6253), - [anon_sym_BSLASHsubfile] = ACTIONS(6253), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), - [anon_sym_BSLASHbibliography] = ACTIONS(6253), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), - [anon_sym_BSLASHincludesvg] = ACTIONS(6253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), - [anon_sym_BSLASHimport] = ACTIONS(6253), - [anon_sym_BSLASHsubimport] = ACTIONS(6253), - [anon_sym_BSLASHinputfrom] = ACTIONS(6253), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), - [anon_sym_BSLASHincludefrom] = ACTIONS(6253), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), - [anon_sym_BSLASHcaption] = ACTIONS(6253), - [anon_sym_BSLASHcite] = ACTIONS(6253), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCite] = ACTIONS(6253), - [anon_sym_BSLASHnocite] = ACTIONS(6253), - [anon_sym_BSLASHcitet] = ACTIONS(6253), - [anon_sym_BSLASHcitep] = ACTIONS(6253), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteauthor] = ACTIONS(6253), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitetitle] = ACTIONS(6253), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteyear] = ACTIONS(6253), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitedate] = ACTIONS(6253), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteurl] = ACTIONS(6253), - [anon_sym_BSLASHfullcite] = ACTIONS(6253), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), - [anon_sym_BSLASHcitealt] = ACTIONS(6253), - [anon_sym_BSLASHcitealp] = ACTIONS(6253), - [anon_sym_BSLASHcitetext] = ACTIONS(6253), - [anon_sym_BSLASHparencite] = ACTIONS(6253), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHParencite] = ACTIONS(6253), - [anon_sym_BSLASHfootcite] = ACTIONS(6253), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), - [anon_sym_BSLASHtextcite] = ACTIONS(6253), - [anon_sym_BSLASHTextcite] = ACTIONS(6253), - [anon_sym_BSLASHsmartcite] = ACTIONS(6253), - [anon_sym_BSLASHSmartcite] = ACTIONS(6253), - [anon_sym_BSLASHsupercite] = ACTIONS(6253), - [anon_sym_BSLASHautocite] = ACTIONS(6253), - [anon_sym_BSLASHAutocite] = ACTIONS(6253), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHvolcite] = ACTIONS(6253), - [anon_sym_BSLASHVolcite] = ACTIONS(6253), - [anon_sym_BSLASHpvolcite] = ACTIONS(6253), - [anon_sym_BSLASHPvolcite] = ACTIONS(6253), - [anon_sym_BSLASHfvolcite] = ACTIONS(6253), - [anon_sym_BSLASHftvolcite] = ACTIONS(6253), - [anon_sym_BSLASHsvolcite] = ACTIONS(6253), - [anon_sym_BSLASHSvolcite] = ACTIONS(6253), - [anon_sym_BSLASHtvolcite] = ACTIONS(6253), - [anon_sym_BSLASHTvolcite] = ACTIONS(6253), - [anon_sym_BSLASHavolcite] = ACTIONS(6253), - [anon_sym_BSLASHAvolcite] = ACTIONS(6253), - [anon_sym_BSLASHnotecite] = ACTIONS(6253), - [anon_sym_BSLASHNotecite] = ACTIONS(6253), - [anon_sym_BSLASHpnotecite] = ACTIONS(6253), - [anon_sym_BSLASHPnotecite] = ACTIONS(6253), - [anon_sym_BSLASHfnotecite] = ACTIONS(6253), - [anon_sym_BSLASHlabel] = ACTIONS(6253), - [anon_sym_BSLASHref] = ACTIONS(6253), - [anon_sym_BSLASHeqref] = ACTIONS(6253), - [anon_sym_BSLASHvref] = ACTIONS(6253), - [anon_sym_BSLASHVref] = ACTIONS(6253), - [anon_sym_BSLASHautoref] = ACTIONS(6253), - [anon_sym_BSLASHpageref] = ACTIONS(6253), - [anon_sym_BSLASHcref] = ACTIONS(6253), - [anon_sym_BSLASHCref] = ACTIONS(6253), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6255), - [anon_sym_BSLASHnamecref] = ACTIONS(6253), - [anon_sym_BSLASHnameCref] = ACTIONS(6253), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), - [anon_sym_BSLASHlabelcref] = ACTIONS(6253), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), - [anon_sym_BSLASHcrefrange] = ACTIONS(6253), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCrefrange] = ACTIONS(6253), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6255), - [anon_sym_BSLASHnewlabel] = ACTIONS(6253), - [anon_sym_BSLASHnewcommand] = ACTIONS(6253), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6255), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHdef] = ACTIONS(6253), - [anon_sym_BSLASHlet] = ACTIONS(6253), - [anon_sym_BSLASHleft] = ACTIONS(6253), - [anon_sym_BSLASHbig] = ACTIONS(6253), - [anon_sym_BSLASHBig] = ACTIONS(6253), - [anon_sym_BSLASHbigg] = ACTIONS(6253), - [anon_sym_BSLASHBigg] = ACTIONS(6253), - [anon_sym_BSLASHbigl] = ACTIONS(6253), - [anon_sym_BSLASHBigl] = ACTIONS(6253), - [anon_sym_BSLASHbiggl] = ACTIONS(6253), - [anon_sym_BSLASHBiggl] = ACTIONS(6253), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6253), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), - [anon_sym_BSLASHgls] = ACTIONS(6253), - [anon_sym_BSLASHGls] = ACTIONS(6253), - [anon_sym_BSLASHGLS] = ACTIONS(6253), - [anon_sym_BSLASHglspl] = ACTIONS(6253), - [anon_sym_BSLASHGlspl] = ACTIONS(6253), - [anon_sym_BSLASHGLSpl] = ACTIONS(6253), - [anon_sym_BSLASHglsdisp] = ACTIONS(6253), - [anon_sym_BSLASHglslink] = ACTIONS(6253), - [anon_sym_BSLASHglstext] = ACTIONS(6253), - [anon_sym_BSLASHGlstext] = ACTIONS(6253), - [anon_sym_BSLASHGLStext] = ACTIONS(6253), - [anon_sym_BSLASHglsfirst] = ACTIONS(6253), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), - [anon_sym_BSLASHglsplural] = ACTIONS(6253), - [anon_sym_BSLASHGlsplural] = ACTIONS(6253), - [anon_sym_BSLASHGLSplural] = ACTIONS(6253), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHglsname] = ACTIONS(6253), - [anon_sym_BSLASHGlsname] = ACTIONS(6253), - [anon_sym_BSLASHGLSname] = ACTIONS(6253), - [anon_sym_BSLASHglssymbol] = ACTIONS(6253), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), - [anon_sym_BSLASHglsdesc] = ACTIONS(6253), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), - [anon_sym_BSLASHglsuseri] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), - [anon_sym_BSLASHglsuserii] = ACTIONS(6253), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), - [anon_sym_BSLASHglsuserv] = ACTIONS(6253), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), - [anon_sym_BSLASHglsuservi] = ACTIONS(6253), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), - [anon_sym_BSLASHnewacronym] = ACTIONS(6253), - [anon_sym_BSLASHacrshort] = ACTIONS(6253), - [anon_sym_BSLASHAcrshort] = ACTIONS(6253), - [anon_sym_BSLASHACRshort] = ACTIONS(6253), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), - [anon_sym_BSLASHacrlong] = ACTIONS(6253), - [anon_sym_BSLASHAcrlong] = ACTIONS(6253), - [anon_sym_BSLASHACRlong] = ACTIONS(6253), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), - [anon_sym_BSLASHacrfull] = ACTIONS(6253), - [anon_sym_BSLASHAcrfull] = ACTIONS(6253), - [anon_sym_BSLASHACRfull] = ACTIONS(6253), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), - [anon_sym_BSLASHacs] = ACTIONS(6253), - [anon_sym_BSLASHAcs] = ACTIONS(6253), - [anon_sym_BSLASHacsp] = ACTIONS(6253), - [anon_sym_BSLASHAcsp] = ACTIONS(6253), - [anon_sym_BSLASHacl] = ACTIONS(6253), - [anon_sym_BSLASHAcl] = ACTIONS(6253), - [anon_sym_BSLASHaclp] = ACTIONS(6253), - [anon_sym_BSLASHAclp] = ACTIONS(6253), - [anon_sym_BSLASHacf] = ACTIONS(6253), - [anon_sym_BSLASHAcf] = ACTIONS(6253), - [anon_sym_BSLASHacfp] = ACTIONS(6253), - [anon_sym_BSLASHAcfp] = ACTIONS(6253), - [anon_sym_BSLASHac] = ACTIONS(6253), - [anon_sym_BSLASHAc] = ACTIONS(6253), - [anon_sym_BSLASHacp] = ACTIONS(6253), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), - [anon_sym_BSLASHcolor] = ACTIONS(6253), - [anon_sym_BSLASHcolorbox] = ACTIONS(6253), - [anon_sym_BSLASHtextcolor] = ACTIONS(6253), - [anon_sym_BSLASHpagecolor] = ACTIONS(6253), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), - [anon_sym_BSLASHtext] = ACTIONS(6253), - [anon_sym_BSLASHintertext] = ACTIONS(6253), - [anon_sym_shortintertext] = ACTIONS(6253), - }, - [913] = { - [ts_builtin_sym_end] = ACTIONS(6259), - [sym_command_name] = ACTIONS(6257), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6257), - [anon_sym_LBRACK] = ACTIONS(6259), - [anon_sym_RBRACK] = ACTIONS(6259), - [anon_sym_COMMA] = ACTIONS(6259), - [anon_sym_EQ] = ACTIONS(6259), - [anon_sym_LPAREN] = ACTIONS(6259), - [anon_sym_RPAREN] = ACTIONS(6259), - [anon_sym_BSLASHpart] = ACTIONS(6257), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddpart] = ACTIONS(6257), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6259), - [anon_sym_BSLASHchapter] = ACTIONS(6257), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddchap] = ACTIONS(6257), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsection] = ACTIONS(6257), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddsec] = ACTIONS(6257), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubsection] = ACTIONS(6257), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6257), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHparagraph] = ACTIONS(6257), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6257), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6259), - [anon_sym_BSLASHitem] = ACTIONS(6257), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6259), - [anon_sym_LBRACE] = ACTIONS(6259), - [anon_sym_RBRACE] = ACTIONS(6259), - [sym_word] = ACTIONS(6257), - [sym_placeholder] = ACTIONS(6259), - [anon_sym_PLUS] = ACTIONS(6259), - [anon_sym_DASH] = ACTIONS(6259), - [anon_sym_STAR] = ACTIONS(6259), - [anon_sym_SLASH] = ACTIONS(6259), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_GT] = ACTIONS(6257), - [anon_sym_BANG] = ACTIONS(6257), - [anon_sym_PIPE] = ACTIONS(6257), - [anon_sym_COLON] = ACTIONS(6257), - [anon_sym_SQUOTE] = ACTIONS(6257), - [anon_sym__] = ACTIONS(6259), - [anon_sym_CARET] = ACTIONS(6259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6259), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6259), - [anon_sym_DOLLAR] = ACTIONS(6257), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6259), - [anon_sym_BSLASHbegin] = ACTIONS(6257), - [anon_sym_BSLASHtitle] = ACTIONS(6257), - [anon_sym_BSLASHauthor] = ACTIONS(6257), - [anon_sym_BSLASHusepackage] = ACTIONS(6257), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6257), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6257), - [anon_sym_BSLASHinclude] = ACTIONS(6257), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6257), - [anon_sym_BSLASHinput] = ACTIONS(6257), - [anon_sym_BSLASHsubfile] = ACTIONS(6257), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6257), - [anon_sym_BSLASHbibliography] = ACTIONS(6257), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6257), - [anon_sym_BSLASHincludesvg] = ACTIONS(6257), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6257), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6257), - [anon_sym_BSLASHimport] = ACTIONS(6257), - [anon_sym_BSLASHsubimport] = ACTIONS(6257), - [anon_sym_BSLASHinputfrom] = ACTIONS(6257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6257), - [anon_sym_BSLASHincludefrom] = ACTIONS(6257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6257), - [anon_sym_BSLASHcaption] = ACTIONS(6257), - [anon_sym_BSLASHcite] = ACTIONS(6257), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCite] = ACTIONS(6257), - [anon_sym_BSLASHnocite] = ACTIONS(6257), - [anon_sym_BSLASHcitet] = ACTIONS(6257), - [anon_sym_BSLASHcitep] = ACTIONS(6257), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteauthor] = ACTIONS(6257), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6257), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitetitle] = ACTIONS(6257), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteyear] = ACTIONS(6257), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitedate] = ACTIONS(6257), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteurl] = ACTIONS(6257), - [anon_sym_BSLASHfullcite] = ACTIONS(6257), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6257), - [anon_sym_BSLASHcitealt] = ACTIONS(6257), - [anon_sym_BSLASHcitealp] = ACTIONS(6257), - [anon_sym_BSLASHcitetext] = ACTIONS(6257), - [anon_sym_BSLASHparencite] = ACTIONS(6257), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHParencite] = ACTIONS(6257), - [anon_sym_BSLASHfootcite] = ACTIONS(6257), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6257), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6257), - [anon_sym_BSLASHtextcite] = ACTIONS(6257), - [anon_sym_BSLASHTextcite] = ACTIONS(6257), - [anon_sym_BSLASHsmartcite] = ACTIONS(6257), - [anon_sym_BSLASHSmartcite] = ACTIONS(6257), - [anon_sym_BSLASHsupercite] = ACTIONS(6257), - [anon_sym_BSLASHautocite] = ACTIONS(6257), - [anon_sym_BSLASHAutocite] = ACTIONS(6257), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHvolcite] = ACTIONS(6257), - [anon_sym_BSLASHVolcite] = ACTIONS(6257), - [anon_sym_BSLASHpvolcite] = ACTIONS(6257), - [anon_sym_BSLASHPvolcite] = ACTIONS(6257), - [anon_sym_BSLASHfvolcite] = ACTIONS(6257), - [anon_sym_BSLASHftvolcite] = ACTIONS(6257), - [anon_sym_BSLASHsvolcite] = ACTIONS(6257), - [anon_sym_BSLASHSvolcite] = ACTIONS(6257), - [anon_sym_BSLASHtvolcite] = ACTIONS(6257), - [anon_sym_BSLASHTvolcite] = ACTIONS(6257), - [anon_sym_BSLASHavolcite] = ACTIONS(6257), - [anon_sym_BSLASHAvolcite] = ACTIONS(6257), - [anon_sym_BSLASHnotecite] = ACTIONS(6257), - [anon_sym_BSLASHNotecite] = ACTIONS(6257), - [anon_sym_BSLASHpnotecite] = ACTIONS(6257), - [anon_sym_BSLASHPnotecite] = ACTIONS(6257), - [anon_sym_BSLASHfnotecite] = ACTIONS(6257), - [anon_sym_BSLASHlabel] = ACTIONS(6257), - [anon_sym_BSLASHref] = ACTIONS(6257), - [anon_sym_BSLASHeqref] = ACTIONS(6257), - [anon_sym_BSLASHvref] = ACTIONS(6257), - [anon_sym_BSLASHVref] = ACTIONS(6257), - [anon_sym_BSLASHautoref] = ACTIONS(6257), - [anon_sym_BSLASHpageref] = ACTIONS(6257), - [anon_sym_BSLASHcref] = ACTIONS(6257), - [anon_sym_BSLASHCref] = ACTIONS(6257), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6259), - [anon_sym_BSLASHnamecref] = ACTIONS(6257), - [anon_sym_BSLASHnameCref] = ACTIONS(6257), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6257), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6257), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6257), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6257), - [anon_sym_BSLASHlabelcref] = ACTIONS(6257), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6257), - [anon_sym_BSLASHcrefrange] = ACTIONS(6257), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCrefrange] = ACTIONS(6257), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6259), - [anon_sym_BSLASHnewlabel] = ACTIONS(6257), - [anon_sym_BSLASHnewcommand] = ACTIONS(6257), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6257), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6257), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6259), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHdef] = ACTIONS(6257), - [anon_sym_BSLASHlet] = ACTIONS(6257), - [anon_sym_BSLASHleft] = ACTIONS(6257), - [anon_sym_BSLASHbig] = ACTIONS(6257), - [anon_sym_BSLASHBig] = ACTIONS(6257), - [anon_sym_BSLASHbigg] = ACTIONS(6257), - [anon_sym_BSLASHBigg] = ACTIONS(6257), - [anon_sym_BSLASHbigl] = ACTIONS(6257), - [anon_sym_BSLASHBigl] = ACTIONS(6257), - [anon_sym_BSLASHbiggl] = ACTIONS(6257), - [anon_sym_BSLASHBiggl] = ACTIONS(6257), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6257), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6257), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6257), - [anon_sym_BSLASHgls] = ACTIONS(6257), - [anon_sym_BSLASHGls] = ACTIONS(6257), - [anon_sym_BSLASHGLS] = ACTIONS(6257), - [anon_sym_BSLASHglspl] = ACTIONS(6257), - [anon_sym_BSLASHGlspl] = ACTIONS(6257), - [anon_sym_BSLASHGLSpl] = ACTIONS(6257), - [anon_sym_BSLASHglsdisp] = ACTIONS(6257), - [anon_sym_BSLASHglslink] = ACTIONS(6257), - [anon_sym_BSLASHglstext] = ACTIONS(6257), - [anon_sym_BSLASHGlstext] = ACTIONS(6257), - [anon_sym_BSLASHGLStext] = ACTIONS(6257), - [anon_sym_BSLASHglsfirst] = ACTIONS(6257), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6257), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6257), - [anon_sym_BSLASHglsplural] = ACTIONS(6257), - [anon_sym_BSLASHGlsplural] = ACTIONS(6257), - [anon_sym_BSLASHGLSplural] = ACTIONS(6257), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHglsname] = ACTIONS(6257), - [anon_sym_BSLASHGlsname] = ACTIONS(6257), - [anon_sym_BSLASHGLSname] = ACTIONS(6257), - [anon_sym_BSLASHglssymbol] = ACTIONS(6257), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6257), - [anon_sym_BSLASHglsdesc] = ACTIONS(6257), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6257), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6257), - [anon_sym_BSLASHglsuseri] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6257), - [anon_sym_BSLASHglsuserii] = ACTIONS(6257), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6257), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6257), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6257), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6257), - [anon_sym_BSLASHglsuserv] = ACTIONS(6257), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6257), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6257), - [anon_sym_BSLASHglsuservi] = ACTIONS(6257), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6257), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6257), - [anon_sym_BSLASHnewacronym] = ACTIONS(6257), - [anon_sym_BSLASHacrshort] = ACTIONS(6257), - [anon_sym_BSLASHAcrshort] = ACTIONS(6257), - [anon_sym_BSLASHACRshort] = ACTIONS(6257), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6257), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6257), - [anon_sym_BSLASHacrlong] = ACTIONS(6257), - [anon_sym_BSLASHAcrlong] = ACTIONS(6257), - [anon_sym_BSLASHACRlong] = ACTIONS(6257), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6257), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6257), - [anon_sym_BSLASHacrfull] = ACTIONS(6257), - [anon_sym_BSLASHAcrfull] = ACTIONS(6257), - [anon_sym_BSLASHACRfull] = ACTIONS(6257), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6257), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6257), - [anon_sym_BSLASHacs] = ACTIONS(6257), - [anon_sym_BSLASHAcs] = ACTIONS(6257), - [anon_sym_BSLASHacsp] = ACTIONS(6257), - [anon_sym_BSLASHAcsp] = ACTIONS(6257), - [anon_sym_BSLASHacl] = ACTIONS(6257), - [anon_sym_BSLASHAcl] = ACTIONS(6257), - [anon_sym_BSLASHaclp] = ACTIONS(6257), - [anon_sym_BSLASHAclp] = ACTIONS(6257), - [anon_sym_BSLASHacf] = ACTIONS(6257), - [anon_sym_BSLASHAcf] = ACTIONS(6257), - [anon_sym_BSLASHacfp] = ACTIONS(6257), - [anon_sym_BSLASHAcfp] = ACTIONS(6257), - [anon_sym_BSLASHac] = ACTIONS(6257), - [anon_sym_BSLASHAc] = ACTIONS(6257), - [anon_sym_BSLASHacp] = ACTIONS(6257), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6257), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6257), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6257), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6257), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6257), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6257), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6257), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6257), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6257), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6257), - [anon_sym_BSLASHcolor] = ACTIONS(6257), - [anon_sym_BSLASHcolorbox] = ACTIONS(6257), - [anon_sym_BSLASHtextcolor] = ACTIONS(6257), - [anon_sym_BSLASHpagecolor] = ACTIONS(6257), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6257), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6257), - [anon_sym_BSLASHtext] = ACTIONS(6257), - [anon_sym_BSLASHintertext] = ACTIONS(6257), - [anon_sym_shortintertext] = ACTIONS(6257), - }, - [914] = { - [ts_builtin_sym_end] = ACTIONS(6263), - [sym_command_name] = ACTIONS(6261), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(6263), - [anon_sym_RBRACK] = ACTIONS(6263), - [anon_sym_COMMA] = ACTIONS(6263), - [anon_sym_EQ] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6263), - [anon_sym_RPAREN] = ACTIONS(6263), - [anon_sym_BSLASHpart] = ACTIONS(6261), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddpart] = ACTIONS(6261), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6263), - [anon_sym_BSLASHchapter] = ACTIONS(6261), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddchap] = ACTIONS(6261), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsection] = ACTIONS(6261), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddsec] = ACTIONS(6261), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubsection] = ACTIONS(6261), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6261), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHparagraph] = ACTIONS(6261), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6261), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6263), - [anon_sym_BSLASHitem] = ACTIONS(6261), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6263), - [anon_sym_LBRACE] = ACTIONS(6263), - [anon_sym_RBRACE] = ACTIONS(6263), - [sym_word] = ACTIONS(6261), - [sym_placeholder] = ACTIONS(6263), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_STAR] = ACTIONS(6263), - [anon_sym_SLASH] = ACTIONS(6263), - [anon_sym_LT] = ACTIONS(6261), - [anon_sym_GT] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_PIPE] = ACTIONS(6261), - [anon_sym_COLON] = ACTIONS(6261), - [anon_sym_SQUOTE] = ACTIONS(6261), - [anon_sym__] = ACTIONS(6263), - [anon_sym_CARET] = ACTIONS(6263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6263), - [anon_sym_DOLLAR] = ACTIONS(6261), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6263), - [anon_sym_BSLASHbegin] = ACTIONS(6261), - [anon_sym_BSLASHtitle] = ACTIONS(6261), - [anon_sym_BSLASHauthor] = ACTIONS(6261), - [anon_sym_BSLASHusepackage] = ACTIONS(6261), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6261), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6261), - [anon_sym_BSLASHinclude] = ACTIONS(6261), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6261), - [anon_sym_BSLASHinput] = ACTIONS(6261), - [anon_sym_BSLASHsubfile] = ACTIONS(6261), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6261), - [anon_sym_BSLASHbibliography] = ACTIONS(6261), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6261), - [anon_sym_BSLASHincludesvg] = ACTIONS(6261), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6261), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6261), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6261), - [anon_sym_BSLASHimport] = ACTIONS(6261), - [anon_sym_BSLASHsubimport] = ACTIONS(6261), - [anon_sym_BSLASHinputfrom] = ACTIONS(6261), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6261), - [anon_sym_BSLASHincludefrom] = ACTIONS(6261), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6261), - [anon_sym_BSLASHcaption] = ACTIONS(6261), - [anon_sym_BSLASHcite] = ACTIONS(6261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCite] = ACTIONS(6261), - [anon_sym_BSLASHnocite] = ACTIONS(6261), - [anon_sym_BSLASHcitet] = ACTIONS(6261), - [anon_sym_BSLASHcitep] = ACTIONS(6261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteauthor] = ACTIONS(6261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitetitle] = ACTIONS(6261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteyear] = ACTIONS(6261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitedate] = ACTIONS(6261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteurl] = ACTIONS(6261), - [anon_sym_BSLASHfullcite] = ACTIONS(6261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6261), - [anon_sym_BSLASHcitealt] = ACTIONS(6261), - [anon_sym_BSLASHcitealp] = ACTIONS(6261), - [anon_sym_BSLASHcitetext] = ACTIONS(6261), - [anon_sym_BSLASHparencite] = ACTIONS(6261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHParencite] = ACTIONS(6261), - [anon_sym_BSLASHfootcite] = ACTIONS(6261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6261), - [anon_sym_BSLASHtextcite] = ACTIONS(6261), - [anon_sym_BSLASHTextcite] = ACTIONS(6261), - [anon_sym_BSLASHsmartcite] = ACTIONS(6261), - [anon_sym_BSLASHSmartcite] = ACTIONS(6261), - [anon_sym_BSLASHsupercite] = ACTIONS(6261), - [anon_sym_BSLASHautocite] = ACTIONS(6261), - [anon_sym_BSLASHAutocite] = ACTIONS(6261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHvolcite] = ACTIONS(6261), - [anon_sym_BSLASHVolcite] = ACTIONS(6261), - [anon_sym_BSLASHpvolcite] = ACTIONS(6261), - [anon_sym_BSLASHPvolcite] = ACTIONS(6261), - [anon_sym_BSLASHfvolcite] = ACTIONS(6261), - [anon_sym_BSLASHftvolcite] = ACTIONS(6261), - [anon_sym_BSLASHsvolcite] = ACTIONS(6261), - [anon_sym_BSLASHSvolcite] = ACTIONS(6261), - [anon_sym_BSLASHtvolcite] = ACTIONS(6261), - [anon_sym_BSLASHTvolcite] = ACTIONS(6261), - [anon_sym_BSLASHavolcite] = ACTIONS(6261), - [anon_sym_BSLASHAvolcite] = ACTIONS(6261), - [anon_sym_BSLASHnotecite] = ACTIONS(6261), - [anon_sym_BSLASHNotecite] = ACTIONS(6261), - [anon_sym_BSLASHpnotecite] = ACTIONS(6261), - [anon_sym_BSLASHPnotecite] = ACTIONS(6261), - [anon_sym_BSLASHfnotecite] = ACTIONS(6261), - [anon_sym_BSLASHlabel] = ACTIONS(6261), - [anon_sym_BSLASHref] = ACTIONS(6261), - [anon_sym_BSLASHeqref] = ACTIONS(6261), - [anon_sym_BSLASHvref] = ACTIONS(6261), - [anon_sym_BSLASHVref] = ACTIONS(6261), - [anon_sym_BSLASHautoref] = ACTIONS(6261), - [anon_sym_BSLASHpageref] = ACTIONS(6261), - [anon_sym_BSLASHcref] = ACTIONS(6261), - [anon_sym_BSLASHCref] = ACTIONS(6261), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6263), - [anon_sym_BSLASHnamecref] = ACTIONS(6261), - [anon_sym_BSLASHnameCref] = ACTIONS(6261), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6261), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6261), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6261), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6261), - [anon_sym_BSLASHlabelcref] = ACTIONS(6261), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6261), - [anon_sym_BSLASHcrefrange] = ACTIONS(6261), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCrefrange] = ACTIONS(6261), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6263), - [anon_sym_BSLASHnewlabel] = ACTIONS(6261), - [anon_sym_BSLASHnewcommand] = ACTIONS(6261), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6261), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6261), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6263), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHdef] = ACTIONS(6261), - [anon_sym_BSLASHlet] = ACTIONS(6261), - [anon_sym_BSLASHleft] = ACTIONS(6261), - [anon_sym_BSLASHbig] = ACTIONS(6261), - [anon_sym_BSLASHBig] = ACTIONS(6261), - [anon_sym_BSLASHbigg] = ACTIONS(6261), - [anon_sym_BSLASHBigg] = ACTIONS(6261), - [anon_sym_BSLASHbigl] = ACTIONS(6261), - [anon_sym_BSLASHBigl] = ACTIONS(6261), - [anon_sym_BSLASHbiggl] = ACTIONS(6261), - [anon_sym_BSLASHBiggl] = ACTIONS(6261), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6261), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6261), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6261), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6261), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6261), - [anon_sym_BSLASHgls] = ACTIONS(6261), - [anon_sym_BSLASHGls] = ACTIONS(6261), - [anon_sym_BSLASHGLS] = ACTIONS(6261), - [anon_sym_BSLASHglspl] = ACTIONS(6261), - [anon_sym_BSLASHGlspl] = ACTIONS(6261), - [anon_sym_BSLASHGLSpl] = ACTIONS(6261), - [anon_sym_BSLASHglsdisp] = ACTIONS(6261), - [anon_sym_BSLASHglslink] = ACTIONS(6261), - [anon_sym_BSLASHglstext] = ACTIONS(6261), - [anon_sym_BSLASHGlstext] = ACTIONS(6261), - [anon_sym_BSLASHGLStext] = ACTIONS(6261), - [anon_sym_BSLASHglsfirst] = ACTIONS(6261), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6261), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6261), - [anon_sym_BSLASHglsplural] = ACTIONS(6261), - [anon_sym_BSLASHGlsplural] = ACTIONS(6261), - [anon_sym_BSLASHGLSplural] = ACTIONS(6261), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHglsname] = ACTIONS(6261), - [anon_sym_BSLASHGlsname] = ACTIONS(6261), - [anon_sym_BSLASHGLSname] = ACTIONS(6261), - [anon_sym_BSLASHglssymbol] = ACTIONS(6261), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6261), - [anon_sym_BSLASHglsdesc] = ACTIONS(6261), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6261), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6261), - [anon_sym_BSLASHglsuseri] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6261), - [anon_sym_BSLASHglsuserii] = ACTIONS(6261), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6261), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6261), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6261), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6261), - [anon_sym_BSLASHglsuserv] = ACTIONS(6261), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6261), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6261), - [anon_sym_BSLASHglsuservi] = ACTIONS(6261), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6261), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6261), - [anon_sym_BSLASHnewacronym] = ACTIONS(6261), - [anon_sym_BSLASHacrshort] = ACTIONS(6261), - [anon_sym_BSLASHAcrshort] = ACTIONS(6261), - [anon_sym_BSLASHACRshort] = ACTIONS(6261), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6261), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6261), - [anon_sym_BSLASHacrlong] = ACTIONS(6261), - [anon_sym_BSLASHAcrlong] = ACTIONS(6261), - [anon_sym_BSLASHACRlong] = ACTIONS(6261), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6261), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6261), - [anon_sym_BSLASHacrfull] = ACTIONS(6261), - [anon_sym_BSLASHAcrfull] = ACTIONS(6261), - [anon_sym_BSLASHACRfull] = ACTIONS(6261), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6261), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6261), - [anon_sym_BSLASHacs] = ACTIONS(6261), - [anon_sym_BSLASHAcs] = ACTIONS(6261), - [anon_sym_BSLASHacsp] = ACTIONS(6261), - [anon_sym_BSLASHAcsp] = ACTIONS(6261), - [anon_sym_BSLASHacl] = ACTIONS(6261), - [anon_sym_BSLASHAcl] = ACTIONS(6261), - [anon_sym_BSLASHaclp] = ACTIONS(6261), - [anon_sym_BSLASHAclp] = ACTIONS(6261), - [anon_sym_BSLASHacf] = ACTIONS(6261), - [anon_sym_BSLASHAcf] = ACTIONS(6261), - [anon_sym_BSLASHacfp] = ACTIONS(6261), - [anon_sym_BSLASHAcfp] = ACTIONS(6261), - [anon_sym_BSLASHac] = ACTIONS(6261), - [anon_sym_BSLASHAc] = ACTIONS(6261), - [anon_sym_BSLASHacp] = ACTIONS(6261), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6261), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6261), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6261), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6261), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6261), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6261), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6261), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6261), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6261), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6261), - [anon_sym_BSLASHcolor] = ACTIONS(6261), - [anon_sym_BSLASHcolorbox] = ACTIONS(6261), - [anon_sym_BSLASHtextcolor] = ACTIONS(6261), - [anon_sym_BSLASHpagecolor] = ACTIONS(6261), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6261), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6261), - [anon_sym_BSLASHtext] = ACTIONS(6261), - [anon_sym_BSLASHintertext] = ACTIONS(6261), - [anon_sym_shortintertext] = ACTIONS(6261), - }, - [915] = { - [ts_builtin_sym_end] = ACTIONS(6267), - [sym_command_name] = ACTIONS(6265), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6265), - [anon_sym_LBRACK] = ACTIONS(6267), - [anon_sym_RBRACK] = ACTIONS(6267), - [anon_sym_COMMA] = ACTIONS(6267), - [anon_sym_EQ] = ACTIONS(6267), - [anon_sym_LPAREN] = ACTIONS(6267), - [anon_sym_RPAREN] = ACTIONS(6267), - [anon_sym_BSLASHpart] = ACTIONS(6265), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddpart] = ACTIONS(6265), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6267), - [anon_sym_BSLASHchapter] = ACTIONS(6265), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddchap] = ACTIONS(6265), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsection] = ACTIONS(6265), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddsec] = ACTIONS(6265), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubsection] = ACTIONS(6265), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6265), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHparagraph] = ACTIONS(6265), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6265), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6267), - [anon_sym_BSLASHitem] = ACTIONS(6265), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6267), - [anon_sym_LBRACE] = ACTIONS(6267), - [anon_sym_RBRACE] = ACTIONS(6267), - [sym_word] = ACTIONS(6265), - [sym_placeholder] = ACTIONS(6267), - [anon_sym_PLUS] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(6267), - [anon_sym_STAR] = ACTIONS(6267), - [anon_sym_SLASH] = ACTIONS(6267), - [anon_sym_LT] = ACTIONS(6265), - [anon_sym_GT] = ACTIONS(6265), - [anon_sym_BANG] = ACTIONS(6265), - [anon_sym_PIPE] = ACTIONS(6265), - [anon_sym_COLON] = ACTIONS(6265), - [anon_sym_SQUOTE] = ACTIONS(6265), - [anon_sym__] = ACTIONS(6267), - [anon_sym_CARET] = ACTIONS(6267), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6267), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6267), - [anon_sym_DOLLAR] = ACTIONS(6265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6267), - [anon_sym_BSLASHbegin] = ACTIONS(6265), - [anon_sym_BSLASHtitle] = ACTIONS(6265), - [anon_sym_BSLASHauthor] = ACTIONS(6265), - [anon_sym_BSLASHusepackage] = ACTIONS(6265), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6265), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6265), - [anon_sym_BSLASHinclude] = ACTIONS(6265), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6265), - [anon_sym_BSLASHinput] = ACTIONS(6265), - [anon_sym_BSLASHsubfile] = ACTIONS(6265), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6265), - [anon_sym_BSLASHbibliography] = ACTIONS(6265), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6265), - [anon_sym_BSLASHincludesvg] = ACTIONS(6265), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6265), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6265), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6265), - [anon_sym_BSLASHimport] = ACTIONS(6265), - [anon_sym_BSLASHsubimport] = ACTIONS(6265), - [anon_sym_BSLASHinputfrom] = ACTIONS(6265), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6265), - [anon_sym_BSLASHincludefrom] = ACTIONS(6265), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6265), - [anon_sym_BSLASHcaption] = ACTIONS(6265), - [anon_sym_BSLASHcite] = ACTIONS(6265), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCite] = ACTIONS(6265), - [anon_sym_BSLASHnocite] = ACTIONS(6265), - [anon_sym_BSLASHcitet] = ACTIONS(6265), - [anon_sym_BSLASHcitep] = ACTIONS(6265), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteauthor] = ACTIONS(6265), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6265), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitetitle] = ACTIONS(6265), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteyear] = ACTIONS(6265), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitedate] = ACTIONS(6265), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteurl] = ACTIONS(6265), - [anon_sym_BSLASHfullcite] = ACTIONS(6265), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6265), - [anon_sym_BSLASHcitealt] = ACTIONS(6265), - [anon_sym_BSLASHcitealp] = ACTIONS(6265), - [anon_sym_BSLASHcitetext] = ACTIONS(6265), - [anon_sym_BSLASHparencite] = ACTIONS(6265), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHParencite] = ACTIONS(6265), - [anon_sym_BSLASHfootcite] = ACTIONS(6265), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6265), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6265), - [anon_sym_BSLASHtextcite] = ACTIONS(6265), - [anon_sym_BSLASHTextcite] = ACTIONS(6265), - [anon_sym_BSLASHsmartcite] = ACTIONS(6265), - [anon_sym_BSLASHSmartcite] = ACTIONS(6265), - [anon_sym_BSLASHsupercite] = ACTIONS(6265), - [anon_sym_BSLASHautocite] = ACTIONS(6265), - [anon_sym_BSLASHAutocite] = ACTIONS(6265), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHvolcite] = ACTIONS(6265), - [anon_sym_BSLASHVolcite] = ACTIONS(6265), - [anon_sym_BSLASHpvolcite] = ACTIONS(6265), - [anon_sym_BSLASHPvolcite] = ACTIONS(6265), - [anon_sym_BSLASHfvolcite] = ACTIONS(6265), - [anon_sym_BSLASHftvolcite] = ACTIONS(6265), - [anon_sym_BSLASHsvolcite] = ACTIONS(6265), - [anon_sym_BSLASHSvolcite] = ACTIONS(6265), - [anon_sym_BSLASHtvolcite] = ACTIONS(6265), - [anon_sym_BSLASHTvolcite] = ACTIONS(6265), - [anon_sym_BSLASHavolcite] = ACTIONS(6265), - [anon_sym_BSLASHAvolcite] = ACTIONS(6265), - [anon_sym_BSLASHnotecite] = ACTIONS(6265), - [anon_sym_BSLASHNotecite] = ACTIONS(6265), - [anon_sym_BSLASHpnotecite] = ACTIONS(6265), - [anon_sym_BSLASHPnotecite] = ACTIONS(6265), - [anon_sym_BSLASHfnotecite] = ACTIONS(6265), - [anon_sym_BSLASHlabel] = ACTIONS(6265), - [anon_sym_BSLASHref] = ACTIONS(6265), - [anon_sym_BSLASHeqref] = ACTIONS(6265), - [anon_sym_BSLASHvref] = ACTIONS(6265), - [anon_sym_BSLASHVref] = ACTIONS(6265), - [anon_sym_BSLASHautoref] = ACTIONS(6265), - [anon_sym_BSLASHpageref] = ACTIONS(6265), - [anon_sym_BSLASHcref] = ACTIONS(6265), - [anon_sym_BSLASHCref] = ACTIONS(6265), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6267), - [anon_sym_BSLASHnamecref] = ACTIONS(6265), - [anon_sym_BSLASHnameCref] = ACTIONS(6265), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6265), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6265), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6265), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6265), - [anon_sym_BSLASHlabelcref] = ACTIONS(6265), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6265), - [anon_sym_BSLASHcrefrange] = ACTIONS(6265), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCrefrange] = ACTIONS(6265), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6267), - [anon_sym_BSLASHnewlabel] = ACTIONS(6265), - [anon_sym_BSLASHnewcommand] = ACTIONS(6265), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6265), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6265), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6267), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHdef] = ACTIONS(6265), - [anon_sym_BSLASHlet] = ACTIONS(6265), - [anon_sym_BSLASHleft] = ACTIONS(6265), - [anon_sym_BSLASHbig] = ACTIONS(6265), - [anon_sym_BSLASHBig] = ACTIONS(6265), - [anon_sym_BSLASHbigg] = ACTIONS(6265), - [anon_sym_BSLASHBigg] = ACTIONS(6265), - [anon_sym_BSLASHbigl] = ACTIONS(6265), - [anon_sym_BSLASHBigl] = ACTIONS(6265), - [anon_sym_BSLASHbiggl] = ACTIONS(6265), - [anon_sym_BSLASHBiggl] = ACTIONS(6265), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6265), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6265), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6265), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6265), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6265), - [anon_sym_BSLASHgls] = ACTIONS(6265), - [anon_sym_BSLASHGls] = ACTIONS(6265), - [anon_sym_BSLASHGLS] = ACTIONS(6265), - [anon_sym_BSLASHglspl] = ACTIONS(6265), - [anon_sym_BSLASHGlspl] = ACTIONS(6265), - [anon_sym_BSLASHGLSpl] = ACTIONS(6265), - [anon_sym_BSLASHglsdisp] = ACTIONS(6265), - [anon_sym_BSLASHglslink] = ACTIONS(6265), - [anon_sym_BSLASHglstext] = ACTIONS(6265), - [anon_sym_BSLASHGlstext] = ACTIONS(6265), - [anon_sym_BSLASHGLStext] = ACTIONS(6265), - [anon_sym_BSLASHglsfirst] = ACTIONS(6265), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6265), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6265), - [anon_sym_BSLASHglsplural] = ACTIONS(6265), - [anon_sym_BSLASHGlsplural] = ACTIONS(6265), - [anon_sym_BSLASHGLSplural] = ACTIONS(6265), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHglsname] = ACTIONS(6265), - [anon_sym_BSLASHGlsname] = ACTIONS(6265), - [anon_sym_BSLASHGLSname] = ACTIONS(6265), - [anon_sym_BSLASHglssymbol] = ACTIONS(6265), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6265), - [anon_sym_BSLASHglsdesc] = ACTIONS(6265), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6265), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6265), - [anon_sym_BSLASHglsuseri] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6265), - [anon_sym_BSLASHglsuserii] = ACTIONS(6265), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6265), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6265), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6265), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6265), - [anon_sym_BSLASHglsuserv] = ACTIONS(6265), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6265), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6265), - [anon_sym_BSLASHglsuservi] = ACTIONS(6265), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6265), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6265), - [anon_sym_BSLASHnewacronym] = ACTIONS(6265), - [anon_sym_BSLASHacrshort] = ACTIONS(6265), - [anon_sym_BSLASHAcrshort] = ACTIONS(6265), - [anon_sym_BSLASHACRshort] = ACTIONS(6265), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6265), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6265), - [anon_sym_BSLASHacrlong] = ACTIONS(6265), - [anon_sym_BSLASHAcrlong] = ACTIONS(6265), - [anon_sym_BSLASHACRlong] = ACTIONS(6265), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6265), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6265), - [anon_sym_BSLASHacrfull] = ACTIONS(6265), - [anon_sym_BSLASHAcrfull] = ACTIONS(6265), - [anon_sym_BSLASHACRfull] = ACTIONS(6265), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6265), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6265), - [anon_sym_BSLASHacs] = ACTIONS(6265), - [anon_sym_BSLASHAcs] = ACTIONS(6265), - [anon_sym_BSLASHacsp] = ACTIONS(6265), - [anon_sym_BSLASHAcsp] = ACTIONS(6265), - [anon_sym_BSLASHacl] = ACTIONS(6265), - [anon_sym_BSLASHAcl] = ACTIONS(6265), - [anon_sym_BSLASHaclp] = ACTIONS(6265), - [anon_sym_BSLASHAclp] = ACTIONS(6265), - [anon_sym_BSLASHacf] = ACTIONS(6265), - [anon_sym_BSLASHAcf] = ACTIONS(6265), - [anon_sym_BSLASHacfp] = ACTIONS(6265), - [anon_sym_BSLASHAcfp] = ACTIONS(6265), - [anon_sym_BSLASHac] = ACTIONS(6265), - [anon_sym_BSLASHAc] = ACTIONS(6265), - [anon_sym_BSLASHacp] = ACTIONS(6265), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6265), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6265), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6265), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6265), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6265), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6265), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6265), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6265), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6265), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6265), - [anon_sym_BSLASHcolor] = ACTIONS(6265), - [anon_sym_BSLASHcolorbox] = ACTIONS(6265), - [anon_sym_BSLASHtextcolor] = ACTIONS(6265), - [anon_sym_BSLASHpagecolor] = ACTIONS(6265), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6265), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6265), - [anon_sym_BSLASHtext] = ACTIONS(6265), - [anon_sym_BSLASHintertext] = ACTIONS(6265), - [anon_sym_shortintertext] = ACTIONS(6265), - }, - [916] = { - [ts_builtin_sym_end] = ACTIONS(6271), - [sym_command_name] = ACTIONS(6269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6269), - [anon_sym_LBRACK] = ACTIONS(6271), - [anon_sym_RBRACK] = ACTIONS(6271), - [anon_sym_COMMA] = ACTIONS(6271), - [anon_sym_EQ] = ACTIONS(6271), - [anon_sym_LPAREN] = ACTIONS(6271), - [anon_sym_RPAREN] = ACTIONS(6271), - [anon_sym_BSLASHpart] = ACTIONS(6269), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddpart] = ACTIONS(6269), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6271), - [anon_sym_BSLASHchapter] = ACTIONS(6269), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddchap] = ACTIONS(6269), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsection] = ACTIONS(6269), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddsec] = ACTIONS(6269), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubsection] = ACTIONS(6269), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6269), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHparagraph] = ACTIONS(6269), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6269), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6271), - [anon_sym_BSLASHitem] = ACTIONS(6269), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6271), - [anon_sym_LBRACE] = ACTIONS(6271), - [anon_sym_RBRACE] = ACTIONS(6271), - [sym_word] = ACTIONS(6269), - [sym_placeholder] = ACTIONS(6271), - [anon_sym_PLUS] = ACTIONS(6271), - [anon_sym_DASH] = ACTIONS(6271), - [anon_sym_STAR] = ACTIONS(6271), - [anon_sym_SLASH] = ACTIONS(6271), - [anon_sym_LT] = ACTIONS(6269), - [anon_sym_GT] = ACTIONS(6269), - [anon_sym_BANG] = ACTIONS(6269), - [anon_sym_PIPE] = ACTIONS(6269), - [anon_sym_COLON] = ACTIONS(6269), - [anon_sym_SQUOTE] = ACTIONS(6269), - [anon_sym__] = ACTIONS(6271), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6271), - [anon_sym_DOLLAR] = ACTIONS(6269), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6271), - [anon_sym_BSLASHbegin] = ACTIONS(6269), - [anon_sym_BSLASHtitle] = ACTIONS(6269), - [anon_sym_BSLASHauthor] = ACTIONS(6269), - [anon_sym_BSLASHusepackage] = ACTIONS(6269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6269), - [anon_sym_BSLASHinclude] = ACTIONS(6269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6269), - [anon_sym_BSLASHinput] = ACTIONS(6269), - [anon_sym_BSLASHsubfile] = ACTIONS(6269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6269), - [anon_sym_BSLASHbibliography] = ACTIONS(6269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6269), - [anon_sym_BSLASHincludesvg] = ACTIONS(6269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6269), - [anon_sym_BSLASHimport] = ACTIONS(6269), - [anon_sym_BSLASHsubimport] = ACTIONS(6269), - [anon_sym_BSLASHinputfrom] = ACTIONS(6269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6269), - [anon_sym_BSLASHincludefrom] = ACTIONS(6269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6269), - [anon_sym_BSLASHcaption] = ACTIONS(6269), - [anon_sym_BSLASHcite] = ACTIONS(6269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCite] = ACTIONS(6269), - [anon_sym_BSLASHnocite] = ACTIONS(6269), - [anon_sym_BSLASHcitet] = ACTIONS(6269), - [anon_sym_BSLASHcitep] = ACTIONS(6269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteauthor] = ACTIONS(6269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitetitle] = ACTIONS(6269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteyear] = ACTIONS(6269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitedate] = ACTIONS(6269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteurl] = ACTIONS(6269), - [anon_sym_BSLASHfullcite] = ACTIONS(6269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6269), - [anon_sym_BSLASHcitealt] = ACTIONS(6269), - [anon_sym_BSLASHcitealp] = ACTIONS(6269), - [anon_sym_BSLASHcitetext] = ACTIONS(6269), - [anon_sym_BSLASHparencite] = ACTIONS(6269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHParencite] = ACTIONS(6269), - [anon_sym_BSLASHfootcite] = ACTIONS(6269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6269), - [anon_sym_BSLASHtextcite] = ACTIONS(6269), - [anon_sym_BSLASHTextcite] = ACTIONS(6269), - [anon_sym_BSLASHsmartcite] = ACTIONS(6269), - [anon_sym_BSLASHSmartcite] = ACTIONS(6269), - [anon_sym_BSLASHsupercite] = ACTIONS(6269), - [anon_sym_BSLASHautocite] = ACTIONS(6269), - [anon_sym_BSLASHAutocite] = ACTIONS(6269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHvolcite] = ACTIONS(6269), - [anon_sym_BSLASHVolcite] = ACTIONS(6269), - [anon_sym_BSLASHpvolcite] = ACTIONS(6269), - [anon_sym_BSLASHPvolcite] = ACTIONS(6269), - [anon_sym_BSLASHfvolcite] = ACTIONS(6269), - [anon_sym_BSLASHftvolcite] = ACTIONS(6269), - [anon_sym_BSLASHsvolcite] = ACTIONS(6269), - [anon_sym_BSLASHSvolcite] = ACTIONS(6269), - [anon_sym_BSLASHtvolcite] = ACTIONS(6269), - [anon_sym_BSLASHTvolcite] = ACTIONS(6269), - [anon_sym_BSLASHavolcite] = ACTIONS(6269), - [anon_sym_BSLASHAvolcite] = ACTIONS(6269), - [anon_sym_BSLASHnotecite] = ACTIONS(6269), - [anon_sym_BSLASHNotecite] = ACTIONS(6269), - [anon_sym_BSLASHpnotecite] = ACTIONS(6269), - [anon_sym_BSLASHPnotecite] = ACTIONS(6269), - [anon_sym_BSLASHfnotecite] = ACTIONS(6269), - [anon_sym_BSLASHlabel] = ACTIONS(6269), - [anon_sym_BSLASHref] = ACTIONS(6269), - [anon_sym_BSLASHeqref] = ACTIONS(6269), - [anon_sym_BSLASHvref] = ACTIONS(6269), - [anon_sym_BSLASHVref] = ACTIONS(6269), - [anon_sym_BSLASHautoref] = ACTIONS(6269), - [anon_sym_BSLASHpageref] = ACTIONS(6269), - [anon_sym_BSLASHcref] = ACTIONS(6269), - [anon_sym_BSLASHCref] = ACTIONS(6269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6271), - [anon_sym_BSLASHnamecref] = ACTIONS(6269), - [anon_sym_BSLASHnameCref] = ACTIONS(6269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6269), - [anon_sym_BSLASHlabelcref] = ACTIONS(6269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6269), - [anon_sym_BSLASHcrefrange] = ACTIONS(6269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCrefrange] = ACTIONS(6269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6271), - [anon_sym_BSLASHnewlabel] = ACTIONS(6269), - [anon_sym_BSLASHnewcommand] = ACTIONS(6269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6271), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHdef] = ACTIONS(6269), - [anon_sym_BSLASHlet] = ACTIONS(6269), - [anon_sym_BSLASHleft] = ACTIONS(6269), - [anon_sym_BSLASHbig] = ACTIONS(6269), - [anon_sym_BSLASHBig] = ACTIONS(6269), - [anon_sym_BSLASHbigg] = ACTIONS(6269), - [anon_sym_BSLASHBigg] = ACTIONS(6269), - [anon_sym_BSLASHbigl] = ACTIONS(6269), - [anon_sym_BSLASHBigl] = ACTIONS(6269), - [anon_sym_BSLASHbiggl] = ACTIONS(6269), - [anon_sym_BSLASHBiggl] = ACTIONS(6269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6269), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6269), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6269), - [anon_sym_BSLASHgls] = ACTIONS(6269), - [anon_sym_BSLASHGls] = ACTIONS(6269), - [anon_sym_BSLASHGLS] = ACTIONS(6269), - [anon_sym_BSLASHglspl] = ACTIONS(6269), - [anon_sym_BSLASHGlspl] = ACTIONS(6269), - [anon_sym_BSLASHGLSpl] = ACTIONS(6269), - [anon_sym_BSLASHglsdisp] = ACTIONS(6269), - [anon_sym_BSLASHglslink] = ACTIONS(6269), - [anon_sym_BSLASHglstext] = ACTIONS(6269), - [anon_sym_BSLASHGlstext] = ACTIONS(6269), - [anon_sym_BSLASHGLStext] = ACTIONS(6269), - [anon_sym_BSLASHglsfirst] = ACTIONS(6269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6269), - [anon_sym_BSLASHglsplural] = ACTIONS(6269), - [anon_sym_BSLASHGlsplural] = ACTIONS(6269), - [anon_sym_BSLASHGLSplural] = ACTIONS(6269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHglsname] = ACTIONS(6269), - [anon_sym_BSLASHGlsname] = ACTIONS(6269), - [anon_sym_BSLASHGLSname] = ACTIONS(6269), - [anon_sym_BSLASHglssymbol] = ACTIONS(6269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6269), - [anon_sym_BSLASHglsdesc] = ACTIONS(6269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6269), - [anon_sym_BSLASHglsuseri] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6269), - [anon_sym_BSLASHglsuserii] = ACTIONS(6269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6269), - [anon_sym_BSLASHglsuserv] = ACTIONS(6269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6269), - [anon_sym_BSLASHglsuservi] = ACTIONS(6269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6269), - [anon_sym_BSLASHnewacronym] = ACTIONS(6269), - [anon_sym_BSLASHacrshort] = ACTIONS(6269), - [anon_sym_BSLASHAcrshort] = ACTIONS(6269), - [anon_sym_BSLASHACRshort] = ACTIONS(6269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6269), - [anon_sym_BSLASHacrlong] = ACTIONS(6269), - [anon_sym_BSLASHAcrlong] = ACTIONS(6269), - [anon_sym_BSLASHACRlong] = ACTIONS(6269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6269), - [anon_sym_BSLASHacrfull] = ACTIONS(6269), - [anon_sym_BSLASHAcrfull] = ACTIONS(6269), - [anon_sym_BSLASHACRfull] = ACTIONS(6269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6269), - [anon_sym_BSLASHacs] = ACTIONS(6269), - [anon_sym_BSLASHAcs] = ACTIONS(6269), - [anon_sym_BSLASHacsp] = ACTIONS(6269), - [anon_sym_BSLASHAcsp] = ACTIONS(6269), - [anon_sym_BSLASHacl] = ACTIONS(6269), - [anon_sym_BSLASHAcl] = ACTIONS(6269), - [anon_sym_BSLASHaclp] = ACTIONS(6269), - [anon_sym_BSLASHAclp] = ACTIONS(6269), - [anon_sym_BSLASHacf] = ACTIONS(6269), - [anon_sym_BSLASHAcf] = ACTIONS(6269), - [anon_sym_BSLASHacfp] = ACTIONS(6269), - [anon_sym_BSLASHAcfp] = ACTIONS(6269), - [anon_sym_BSLASHac] = ACTIONS(6269), - [anon_sym_BSLASHAc] = ACTIONS(6269), - [anon_sym_BSLASHacp] = ACTIONS(6269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6269), - [anon_sym_BSLASHcolor] = ACTIONS(6269), - [anon_sym_BSLASHcolorbox] = ACTIONS(6269), - [anon_sym_BSLASHtextcolor] = ACTIONS(6269), - [anon_sym_BSLASHpagecolor] = ACTIONS(6269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6269), - [anon_sym_BSLASHtext] = ACTIONS(6269), - [anon_sym_BSLASHintertext] = ACTIONS(6269), - [anon_sym_shortintertext] = ACTIONS(6269), - }, - [917] = { - [ts_builtin_sym_end] = ACTIONS(6279), - [sym_command_name] = ACTIONS(6277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6277), - [anon_sym_LBRACK] = ACTIONS(6279), - [anon_sym_RBRACK] = ACTIONS(6279), - [anon_sym_COMMA] = ACTIONS(6279), - [anon_sym_EQ] = ACTIONS(6279), - [anon_sym_LPAREN] = ACTIONS(6279), - [anon_sym_RPAREN] = ACTIONS(6279), - [anon_sym_BSLASHpart] = ACTIONS(6277), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddpart] = ACTIONS(6277), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6279), - [anon_sym_BSLASHchapter] = ACTIONS(6277), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddchap] = ACTIONS(6277), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsection] = ACTIONS(6277), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddsec] = ACTIONS(6277), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubsection] = ACTIONS(6277), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6277), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHparagraph] = ACTIONS(6277), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6277), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6279), - [anon_sym_BSLASHitem] = ACTIONS(6277), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6279), - [anon_sym_LBRACE] = ACTIONS(6279), - [anon_sym_RBRACE] = ACTIONS(6279), - [sym_word] = ACTIONS(6277), - [sym_placeholder] = ACTIONS(6279), - [anon_sym_PLUS] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6279), - [anon_sym_STAR] = ACTIONS(6279), - [anon_sym_SLASH] = ACTIONS(6279), - [anon_sym_LT] = ACTIONS(6277), - [anon_sym_GT] = ACTIONS(6277), - [anon_sym_BANG] = ACTIONS(6277), - [anon_sym_PIPE] = ACTIONS(6277), - [anon_sym_COLON] = ACTIONS(6277), - [anon_sym_SQUOTE] = ACTIONS(6277), - [anon_sym__] = ACTIONS(6279), - [anon_sym_CARET] = ACTIONS(6279), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6279), - [anon_sym_DOLLAR] = ACTIONS(6277), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6279), - [anon_sym_BSLASHbegin] = ACTIONS(6277), - [anon_sym_BSLASHtitle] = ACTIONS(6277), - [anon_sym_BSLASHauthor] = ACTIONS(6277), - [anon_sym_BSLASHusepackage] = ACTIONS(6277), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6277), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6277), - [anon_sym_BSLASHinclude] = ACTIONS(6277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6277), - [anon_sym_BSLASHinput] = ACTIONS(6277), - [anon_sym_BSLASHsubfile] = ACTIONS(6277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6277), - [anon_sym_BSLASHbibliography] = ACTIONS(6277), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6277), - [anon_sym_BSLASHincludesvg] = ACTIONS(6277), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6277), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6277), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6277), - [anon_sym_BSLASHimport] = ACTIONS(6277), - [anon_sym_BSLASHsubimport] = ACTIONS(6277), - [anon_sym_BSLASHinputfrom] = ACTIONS(6277), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6277), - [anon_sym_BSLASHincludefrom] = ACTIONS(6277), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6277), - [anon_sym_BSLASHcaption] = ACTIONS(6277), - [anon_sym_BSLASHcite] = ACTIONS(6277), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCite] = ACTIONS(6277), - [anon_sym_BSLASHnocite] = ACTIONS(6277), - [anon_sym_BSLASHcitet] = ACTIONS(6277), - [anon_sym_BSLASHcitep] = ACTIONS(6277), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteauthor] = ACTIONS(6277), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6277), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitetitle] = ACTIONS(6277), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteyear] = ACTIONS(6277), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitedate] = ACTIONS(6277), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteurl] = ACTIONS(6277), - [anon_sym_BSLASHfullcite] = ACTIONS(6277), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6277), - [anon_sym_BSLASHcitealt] = ACTIONS(6277), - [anon_sym_BSLASHcitealp] = ACTIONS(6277), - [anon_sym_BSLASHcitetext] = ACTIONS(6277), - [anon_sym_BSLASHparencite] = ACTIONS(6277), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHParencite] = ACTIONS(6277), - [anon_sym_BSLASHfootcite] = ACTIONS(6277), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6277), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6277), - [anon_sym_BSLASHtextcite] = ACTIONS(6277), - [anon_sym_BSLASHTextcite] = ACTIONS(6277), - [anon_sym_BSLASHsmartcite] = ACTIONS(6277), - [anon_sym_BSLASHSmartcite] = ACTIONS(6277), - [anon_sym_BSLASHsupercite] = ACTIONS(6277), - [anon_sym_BSLASHautocite] = ACTIONS(6277), - [anon_sym_BSLASHAutocite] = ACTIONS(6277), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHvolcite] = ACTIONS(6277), - [anon_sym_BSLASHVolcite] = ACTIONS(6277), - [anon_sym_BSLASHpvolcite] = ACTIONS(6277), - [anon_sym_BSLASHPvolcite] = ACTIONS(6277), - [anon_sym_BSLASHfvolcite] = ACTIONS(6277), - [anon_sym_BSLASHftvolcite] = ACTIONS(6277), - [anon_sym_BSLASHsvolcite] = ACTIONS(6277), - [anon_sym_BSLASHSvolcite] = ACTIONS(6277), - [anon_sym_BSLASHtvolcite] = ACTIONS(6277), - [anon_sym_BSLASHTvolcite] = ACTIONS(6277), - [anon_sym_BSLASHavolcite] = ACTIONS(6277), - [anon_sym_BSLASHAvolcite] = ACTIONS(6277), - [anon_sym_BSLASHnotecite] = ACTIONS(6277), - [anon_sym_BSLASHNotecite] = ACTIONS(6277), - [anon_sym_BSLASHpnotecite] = ACTIONS(6277), - [anon_sym_BSLASHPnotecite] = ACTIONS(6277), - [anon_sym_BSLASHfnotecite] = ACTIONS(6277), - [anon_sym_BSLASHlabel] = ACTIONS(6277), - [anon_sym_BSLASHref] = ACTIONS(6277), - [anon_sym_BSLASHeqref] = ACTIONS(6277), - [anon_sym_BSLASHvref] = ACTIONS(6277), - [anon_sym_BSLASHVref] = ACTIONS(6277), - [anon_sym_BSLASHautoref] = ACTIONS(6277), - [anon_sym_BSLASHpageref] = ACTIONS(6277), - [anon_sym_BSLASHcref] = ACTIONS(6277), - [anon_sym_BSLASHCref] = ACTIONS(6277), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6279), - [anon_sym_BSLASHnamecref] = ACTIONS(6277), - [anon_sym_BSLASHnameCref] = ACTIONS(6277), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6277), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6277), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6277), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6277), - [anon_sym_BSLASHlabelcref] = ACTIONS(6277), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6277), - [anon_sym_BSLASHcrefrange] = ACTIONS(6277), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCrefrange] = ACTIONS(6277), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6279), - [anon_sym_BSLASHnewlabel] = ACTIONS(6277), - [anon_sym_BSLASHnewcommand] = ACTIONS(6277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHdef] = ACTIONS(6277), - [anon_sym_BSLASHlet] = ACTIONS(6277), - [anon_sym_BSLASHleft] = ACTIONS(6277), - [anon_sym_BSLASHbig] = ACTIONS(6277), - [anon_sym_BSLASHBig] = ACTIONS(6277), - [anon_sym_BSLASHbigg] = ACTIONS(6277), - [anon_sym_BSLASHBigg] = ACTIONS(6277), - [anon_sym_BSLASHbigl] = ACTIONS(6277), - [anon_sym_BSLASHBigl] = ACTIONS(6277), - [anon_sym_BSLASHbiggl] = ACTIONS(6277), - [anon_sym_BSLASHBiggl] = ACTIONS(6277), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6277), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6277), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6277), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6277), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6277), - [anon_sym_BSLASHgls] = ACTIONS(6277), - [anon_sym_BSLASHGls] = ACTIONS(6277), - [anon_sym_BSLASHGLS] = ACTIONS(6277), - [anon_sym_BSLASHglspl] = ACTIONS(6277), - [anon_sym_BSLASHGlspl] = ACTIONS(6277), - [anon_sym_BSLASHGLSpl] = ACTIONS(6277), - [anon_sym_BSLASHglsdisp] = ACTIONS(6277), - [anon_sym_BSLASHglslink] = ACTIONS(6277), - [anon_sym_BSLASHglstext] = ACTIONS(6277), - [anon_sym_BSLASHGlstext] = ACTIONS(6277), - [anon_sym_BSLASHGLStext] = ACTIONS(6277), - [anon_sym_BSLASHglsfirst] = ACTIONS(6277), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6277), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6277), - [anon_sym_BSLASHglsplural] = ACTIONS(6277), - [anon_sym_BSLASHGlsplural] = ACTIONS(6277), - [anon_sym_BSLASHGLSplural] = ACTIONS(6277), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHglsname] = ACTIONS(6277), - [anon_sym_BSLASHGlsname] = ACTIONS(6277), - [anon_sym_BSLASHGLSname] = ACTIONS(6277), - [anon_sym_BSLASHglssymbol] = ACTIONS(6277), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6277), - [anon_sym_BSLASHglsdesc] = ACTIONS(6277), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6277), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6277), - [anon_sym_BSLASHglsuseri] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6277), - [anon_sym_BSLASHglsuserii] = ACTIONS(6277), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6277), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6277), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6277), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6277), - [anon_sym_BSLASHglsuserv] = ACTIONS(6277), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6277), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6277), - [anon_sym_BSLASHglsuservi] = ACTIONS(6277), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6277), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6277), - [anon_sym_BSLASHnewacronym] = ACTIONS(6277), - [anon_sym_BSLASHacrshort] = ACTIONS(6277), - [anon_sym_BSLASHAcrshort] = ACTIONS(6277), - [anon_sym_BSLASHACRshort] = ACTIONS(6277), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6277), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6277), - [anon_sym_BSLASHacrlong] = ACTIONS(6277), - [anon_sym_BSLASHAcrlong] = ACTIONS(6277), - [anon_sym_BSLASHACRlong] = ACTIONS(6277), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6277), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6277), - [anon_sym_BSLASHacrfull] = ACTIONS(6277), - [anon_sym_BSLASHAcrfull] = ACTIONS(6277), - [anon_sym_BSLASHACRfull] = ACTIONS(6277), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6277), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6277), - [anon_sym_BSLASHacs] = ACTIONS(6277), - [anon_sym_BSLASHAcs] = ACTIONS(6277), - [anon_sym_BSLASHacsp] = ACTIONS(6277), - [anon_sym_BSLASHAcsp] = ACTIONS(6277), - [anon_sym_BSLASHacl] = ACTIONS(6277), - [anon_sym_BSLASHAcl] = ACTIONS(6277), - [anon_sym_BSLASHaclp] = ACTIONS(6277), - [anon_sym_BSLASHAclp] = ACTIONS(6277), - [anon_sym_BSLASHacf] = ACTIONS(6277), - [anon_sym_BSLASHAcf] = ACTIONS(6277), - [anon_sym_BSLASHacfp] = ACTIONS(6277), - [anon_sym_BSLASHAcfp] = ACTIONS(6277), - [anon_sym_BSLASHac] = ACTIONS(6277), - [anon_sym_BSLASHAc] = ACTIONS(6277), - [anon_sym_BSLASHacp] = ACTIONS(6277), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6277), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6277), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6277), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6277), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6277), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6277), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6277), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6279), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6277), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6279), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6277), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6277), - [anon_sym_BSLASHcolor] = ACTIONS(6277), - [anon_sym_BSLASHcolorbox] = ACTIONS(6277), - [anon_sym_BSLASHtextcolor] = ACTIONS(6277), - [anon_sym_BSLASHpagecolor] = ACTIONS(6277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6277), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6277), - [anon_sym_BSLASHtext] = ACTIONS(6277), - [anon_sym_BSLASHintertext] = ACTIONS(6277), - [anon_sym_shortintertext] = ACTIONS(6277), - }, - [918] = { - [ts_builtin_sym_end] = ACTIONS(6055), - [sym_command_name] = ACTIONS(6053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6053), - [anon_sym_LBRACK] = ACTIONS(6055), - [anon_sym_RBRACK] = ACTIONS(6055), - [anon_sym_COMMA] = ACTIONS(6055), - [anon_sym_EQ] = ACTIONS(6055), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_BSLASHpart] = ACTIONS(6053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddpart] = ACTIONS(6053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6055), - [anon_sym_BSLASHchapter] = ACTIONS(6053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddchap] = ACTIONS(6053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsection] = ACTIONS(6053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddsec] = ACTIONS(6053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubsection] = ACTIONS(6053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHparagraph] = ACTIONS(6053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6055), - [anon_sym_BSLASHitem] = ACTIONS(6053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6055), - [anon_sym_LBRACE] = ACTIONS(6055), - [anon_sym_RBRACE] = ACTIONS(6055), - [sym_word] = ACTIONS(6053), - [sym_placeholder] = ACTIONS(6055), - [anon_sym_PLUS] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(6055), - [anon_sym_STAR] = ACTIONS(6055), - [anon_sym_SLASH] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_COLON] = ACTIONS(6053), - [anon_sym_SQUOTE] = ACTIONS(6053), - [anon_sym__] = ACTIONS(6055), - [anon_sym_CARET] = ACTIONS(6055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), - [anon_sym_BSLASHbegin] = ACTIONS(6053), - [anon_sym_BSLASHtitle] = ACTIONS(6053), - [anon_sym_BSLASHauthor] = ACTIONS(6053), - [anon_sym_BSLASHusepackage] = ACTIONS(6053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), - [anon_sym_BSLASHinclude] = ACTIONS(6053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), - [anon_sym_BSLASHinput] = ACTIONS(6053), - [anon_sym_BSLASHsubfile] = ACTIONS(6053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), - [anon_sym_BSLASHbibliography] = ACTIONS(6053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), - [anon_sym_BSLASHincludesvg] = ACTIONS(6053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), - [anon_sym_BSLASHimport] = ACTIONS(6053), - [anon_sym_BSLASHsubimport] = ACTIONS(6053), - [anon_sym_BSLASHinputfrom] = ACTIONS(6053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), - [anon_sym_BSLASHincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHcaption] = ACTIONS(6053), - [anon_sym_BSLASHcite] = ACTIONS(6053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCite] = ACTIONS(6053), - [anon_sym_BSLASHnocite] = ACTIONS(6053), - [anon_sym_BSLASHcitet] = ACTIONS(6053), - [anon_sym_BSLASHcitep] = ACTIONS(6053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteauthor] = ACTIONS(6053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitetitle] = ACTIONS(6053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteyear] = ACTIONS(6053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitedate] = ACTIONS(6053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteurl] = ACTIONS(6053), - [anon_sym_BSLASHfullcite] = ACTIONS(6053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), - [anon_sym_BSLASHcitealt] = ACTIONS(6053), - [anon_sym_BSLASHcitealp] = ACTIONS(6053), - [anon_sym_BSLASHcitetext] = ACTIONS(6053), - [anon_sym_BSLASHparencite] = ACTIONS(6053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHParencite] = ACTIONS(6053), - [anon_sym_BSLASHfootcite] = ACTIONS(6053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), - [anon_sym_BSLASHtextcite] = ACTIONS(6053), - [anon_sym_BSLASHTextcite] = ACTIONS(6053), - [anon_sym_BSLASHsmartcite] = ACTIONS(6053), - [anon_sym_BSLASHSmartcite] = ACTIONS(6053), - [anon_sym_BSLASHsupercite] = ACTIONS(6053), - [anon_sym_BSLASHautocite] = ACTIONS(6053), - [anon_sym_BSLASHAutocite] = ACTIONS(6053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHvolcite] = ACTIONS(6053), - [anon_sym_BSLASHVolcite] = ACTIONS(6053), - [anon_sym_BSLASHpvolcite] = ACTIONS(6053), - [anon_sym_BSLASHPvolcite] = ACTIONS(6053), - [anon_sym_BSLASHfvolcite] = ACTIONS(6053), - [anon_sym_BSLASHftvolcite] = ACTIONS(6053), - [anon_sym_BSLASHsvolcite] = ACTIONS(6053), - [anon_sym_BSLASHSvolcite] = ACTIONS(6053), - [anon_sym_BSLASHtvolcite] = ACTIONS(6053), - [anon_sym_BSLASHTvolcite] = ACTIONS(6053), - [anon_sym_BSLASHavolcite] = ACTIONS(6053), - [anon_sym_BSLASHAvolcite] = ACTIONS(6053), - [anon_sym_BSLASHnotecite] = ACTIONS(6053), - [anon_sym_BSLASHNotecite] = ACTIONS(6053), - [anon_sym_BSLASHpnotecite] = ACTIONS(6053), - [anon_sym_BSLASHPnotecite] = ACTIONS(6053), - [anon_sym_BSLASHfnotecite] = ACTIONS(6053), - [anon_sym_BSLASHlabel] = ACTIONS(6053), - [anon_sym_BSLASHref] = ACTIONS(6053), - [anon_sym_BSLASHeqref] = ACTIONS(6053), - [anon_sym_BSLASHvref] = ACTIONS(6053), - [anon_sym_BSLASHVref] = ACTIONS(6053), - [anon_sym_BSLASHautoref] = ACTIONS(6053), - [anon_sym_BSLASHpageref] = ACTIONS(6053), - [anon_sym_BSLASHcref] = ACTIONS(6053), - [anon_sym_BSLASHCref] = ACTIONS(6053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnameCref] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHlabelcref] = ACTIONS(6053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCrefrange] = ACTIONS(6053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnewlabel] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHdef] = ACTIONS(6053), - [anon_sym_BSLASHlet] = ACTIONS(6053), - [anon_sym_BSLASHleft] = ACTIONS(6053), - [anon_sym_BSLASHbig] = ACTIONS(6053), - [anon_sym_BSLASHBig] = ACTIONS(6053), - [anon_sym_BSLASHbigg] = ACTIONS(6053), - [anon_sym_BSLASHBigg] = ACTIONS(6053), - [anon_sym_BSLASHbigl] = ACTIONS(6053), - [anon_sym_BSLASHBigl] = ACTIONS(6053), - [anon_sym_BSLASHbiggl] = ACTIONS(6053), - [anon_sym_BSLASHBiggl] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), - [anon_sym_BSLASHgls] = ACTIONS(6053), - [anon_sym_BSLASHGls] = ACTIONS(6053), - [anon_sym_BSLASHGLS] = ACTIONS(6053), - [anon_sym_BSLASHglspl] = ACTIONS(6053), - [anon_sym_BSLASHGlspl] = ACTIONS(6053), - [anon_sym_BSLASHGLSpl] = ACTIONS(6053), - [anon_sym_BSLASHglsdisp] = ACTIONS(6053), - [anon_sym_BSLASHglslink] = ACTIONS(6053), - [anon_sym_BSLASHglstext] = ACTIONS(6053), - [anon_sym_BSLASHGlstext] = ACTIONS(6053), - [anon_sym_BSLASHGLStext] = ACTIONS(6053), - [anon_sym_BSLASHglsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), - [anon_sym_BSLASHglsplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSplural] = ACTIONS(6053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHglsname] = ACTIONS(6053), - [anon_sym_BSLASHGlsname] = ACTIONS(6053), - [anon_sym_BSLASHGLSname] = ACTIONS(6053), - [anon_sym_BSLASHglssymbol] = ACTIONS(6053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), - [anon_sym_BSLASHglsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), - [anon_sym_BSLASHglsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), - [anon_sym_BSLASHglsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), - [anon_sym_BSLASHglsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), - [anon_sym_BSLASHglsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), - [anon_sym_BSLASHnewacronym] = ACTIONS(6053), - [anon_sym_BSLASHacrshort] = ACTIONS(6053), - [anon_sym_BSLASHAcrshort] = ACTIONS(6053), - [anon_sym_BSLASHACRshort] = ACTIONS(6053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), - [anon_sym_BSLASHacrlong] = ACTIONS(6053), - [anon_sym_BSLASHAcrlong] = ACTIONS(6053), - [anon_sym_BSLASHACRlong] = ACTIONS(6053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), - [anon_sym_BSLASHacrfull] = ACTIONS(6053), - [anon_sym_BSLASHAcrfull] = ACTIONS(6053), - [anon_sym_BSLASHACRfull] = ACTIONS(6053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), - [anon_sym_BSLASHacs] = ACTIONS(6053), - [anon_sym_BSLASHAcs] = ACTIONS(6053), - [anon_sym_BSLASHacsp] = ACTIONS(6053), - [anon_sym_BSLASHAcsp] = ACTIONS(6053), - [anon_sym_BSLASHacl] = ACTIONS(6053), - [anon_sym_BSLASHAcl] = ACTIONS(6053), - [anon_sym_BSLASHaclp] = ACTIONS(6053), - [anon_sym_BSLASHAclp] = ACTIONS(6053), - [anon_sym_BSLASHacf] = ACTIONS(6053), - [anon_sym_BSLASHAcf] = ACTIONS(6053), - [anon_sym_BSLASHacfp] = ACTIONS(6053), - [anon_sym_BSLASHAcfp] = ACTIONS(6053), - [anon_sym_BSLASHac] = ACTIONS(6053), - [anon_sym_BSLASHAc] = ACTIONS(6053), - [anon_sym_BSLASHacp] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), - [anon_sym_BSLASHcolor] = ACTIONS(6053), - [anon_sym_BSLASHcolorbox] = ACTIONS(6053), - [anon_sym_BSLASHtextcolor] = ACTIONS(6053), - [anon_sym_BSLASHpagecolor] = ACTIONS(6053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), - [anon_sym_BSLASHtext] = ACTIONS(6053), - [anon_sym_BSLASHintertext] = ACTIONS(6053), - [anon_sym_shortintertext] = ACTIONS(6053), - }, - [919] = { - [ts_builtin_sym_end] = ACTIONS(6059), - [sym_command_name] = ACTIONS(6057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6057), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_BSLASHpart] = ACTIONS(6057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddpart] = ACTIONS(6057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6059), - [anon_sym_BSLASHchapter] = ACTIONS(6057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddchap] = ACTIONS(6057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsection] = ACTIONS(6057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddsec] = ACTIONS(6057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubsection] = ACTIONS(6057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHparagraph] = ACTIONS(6057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6059), - [anon_sym_BSLASHitem] = ACTIONS(6057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6059), - [anon_sym_RBRACE] = ACTIONS(6059), - [sym_word] = ACTIONS(6057), - [sym_placeholder] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_BANG] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_SQUOTE] = ACTIONS(6057), - [anon_sym__] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), - [anon_sym_BSLASHbegin] = ACTIONS(6057), - [anon_sym_BSLASHtitle] = ACTIONS(6057), - [anon_sym_BSLASHauthor] = ACTIONS(6057), - [anon_sym_BSLASHusepackage] = ACTIONS(6057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), - [anon_sym_BSLASHinclude] = ACTIONS(6057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), - [anon_sym_BSLASHinput] = ACTIONS(6057), - [anon_sym_BSLASHsubfile] = ACTIONS(6057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), - [anon_sym_BSLASHbibliography] = ACTIONS(6057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), - [anon_sym_BSLASHincludesvg] = ACTIONS(6057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), - [anon_sym_BSLASHimport] = ACTIONS(6057), - [anon_sym_BSLASHsubimport] = ACTIONS(6057), - [anon_sym_BSLASHinputfrom] = ACTIONS(6057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), - [anon_sym_BSLASHincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHcaption] = ACTIONS(6057), - [anon_sym_BSLASHcite] = ACTIONS(6057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCite] = ACTIONS(6057), - [anon_sym_BSLASHnocite] = ACTIONS(6057), - [anon_sym_BSLASHcitet] = ACTIONS(6057), - [anon_sym_BSLASHcitep] = ACTIONS(6057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteauthor] = ACTIONS(6057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitetitle] = ACTIONS(6057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteyear] = ACTIONS(6057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitedate] = ACTIONS(6057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteurl] = ACTIONS(6057), - [anon_sym_BSLASHfullcite] = ACTIONS(6057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), - [anon_sym_BSLASHcitealt] = ACTIONS(6057), - [anon_sym_BSLASHcitealp] = ACTIONS(6057), - [anon_sym_BSLASHcitetext] = ACTIONS(6057), - [anon_sym_BSLASHparencite] = ACTIONS(6057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHParencite] = ACTIONS(6057), - [anon_sym_BSLASHfootcite] = ACTIONS(6057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), - [anon_sym_BSLASHtextcite] = ACTIONS(6057), - [anon_sym_BSLASHTextcite] = ACTIONS(6057), - [anon_sym_BSLASHsmartcite] = ACTIONS(6057), - [anon_sym_BSLASHSmartcite] = ACTIONS(6057), - [anon_sym_BSLASHsupercite] = ACTIONS(6057), - [anon_sym_BSLASHautocite] = ACTIONS(6057), - [anon_sym_BSLASHAutocite] = ACTIONS(6057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHvolcite] = ACTIONS(6057), - [anon_sym_BSLASHVolcite] = ACTIONS(6057), - [anon_sym_BSLASHpvolcite] = ACTIONS(6057), - [anon_sym_BSLASHPvolcite] = ACTIONS(6057), - [anon_sym_BSLASHfvolcite] = ACTIONS(6057), - [anon_sym_BSLASHftvolcite] = ACTIONS(6057), - [anon_sym_BSLASHsvolcite] = ACTIONS(6057), - [anon_sym_BSLASHSvolcite] = ACTIONS(6057), - [anon_sym_BSLASHtvolcite] = ACTIONS(6057), - [anon_sym_BSLASHTvolcite] = ACTIONS(6057), - [anon_sym_BSLASHavolcite] = ACTIONS(6057), - [anon_sym_BSLASHAvolcite] = ACTIONS(6057), - [anon_sym_BSLASHnotecite] = ACTIONS(6057), - [anon_sym_BSLASHNotecite] = ACTIONS(6057), - [anon_sym_BSLASHpnotecite] = ACTIONS(6057), - [anon_sym_BSLASHPnotecite] = ACTIONS(6057), - [anon_sym_BSLASHfnotecite] = ACTIONS(6057), - [anon_sym_BSLASHlabel] = ACTIONS(6057), - [anon_sym_BSLASHref] = ACTIONS(6057), - [anon_sym_BSLASHeqref] = ACTIONS(6057), - [anon_sym_BSLASHvref] = ACTIONS(6057), - [anon_sym_BSLASHVref] = ACTIONS(6057), - [anon_sym_BSLASHautoref] = ACTIONS(6057), - [anon_sym_BSLASHpageref] = ACTIONS(6057), - [anon_sym_BSLASHcref] = ACTIONS(6057), - [anon_sym_BSLASHCref] = ACTIONS(6057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnameCref] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHlabelcref] = ACTIONS(6057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCrefrange] = ACTIONS(6057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnewlabel] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHdef] = ACTIONS(6057), - [anon_sym_BSLASHlet] = ACTIONS(6057), - [anon_sym_BSLASHleft] = ACTIONS(6057), - [anon_sym_BSLASHbig] = ACTIONS(6057), - [anon_sym_BSLASHBig] = ACTIONS(6057), - [anon_sym_BSLASHbigg] = ACTIONS(6057), - [anon_sym_BSLASHBigg] = ACTIONS(6057), - [anon_sym_BSLASHbigl] = ACTIONS(6057), - [anon_sym_BSLASHBigl] = ACTIONS(6057), - [anon_sym_BSLASHbiggl] = ACTIONS(6057), - [anon_sym_BSLASHBiggl] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), - [anon_sym_BSLASHgls] = ACTIONS(6057), - [anon_sym_BSLASHGls] = ACTIONS(6057), - [anon_sym_BSLASHGLS] = ACTIONS(6057), - [anon_sym_BSLASHglspl] = ACTIONS(6057), - [anon_sym_BSLASHGlspl] = ACTIONS(6057), - [anon_sym_BSLASHGLSpl] = ACTIONS(6057), - [anon_sym_BSLASHglsdisp] = ACTIONS(6057), - [anon_sym_BSLASHglslink] = ACTIONS(6057), - [anon_sym_BSLASHglstext] = ACTIONS(6057), - [anon_sym_BSLASHGlstext] = ACTIONS(6057), - [anon_sym_BSLASHGLStext] = ACTIONS(6057), - [anon_sym_BSLASHglsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), - [anon_sym_BSLASHglsplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSplural] = ACTIONS(6057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHglsname] = ACTIONS(6057), - [anon_sym_BSLASHGlsname] = ACTIONS(6057), - [anon_sym_BSLASHGLSname] = ACTIONS(6057), - [anon_sym_BSLASHglssymbol] = ACTIONS(6057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), - [anon_sym_BSLASHglsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), - [anon_sym_BSLASHglsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), - [anon_sym_BSLASHglsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), - [anon_sym_BSLASHglsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), - [anon_sym_BSLASHglsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), - [anon_sym_BSLASHnewacronym] = ACTIONS(6057), - [anon_sym_BSLASHacrshort] = ACTIONS(6057), - [anon_sym_BSLASHAcrshort] = ACTIONS(6057), - [anon_sym_BSLASHACRshort] = ACTIONS(6057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), - [anon_sym_BSLASHacrlong] = ACTIONS(6057), - [anon_sym_BSLASHAcrlong] = ACTIONS(6057), - [anon_sym_BSLASHACRlong] = ACTIONS(6057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), - [anon_sym_BSLASHacrfull] = ACTIONS(6057), - [anon_sym_BSLASHAcrfull] = ACTIONS(6057), - [anon_sym_BSLASHACRfull] = ACTIONS(6057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), - [anon_sym_BSLASHacs] = ACTIONS(6057), - [anon_sym_BSLASHAcs] = ACTIONS(6057), - [anon_sym_BSLASHacsp] = ACTIONS(6057), - [anon_sym_BSLASHAcsp] = ACTIONS(6057), - [anon_sym_BSLASHacl] = ACTIONS(6057), - [anon_sym_BSLASHAcl] = ACTIONS(6057), - [anon_sym_BSLASHaclp] = ACTIONS(6057), - [anon_sym_BSLASHAclp] = ACTIONS(6057), - [anon_sym_BSLASHacf] = ACTIONS(6057), - [anon_sym_BSLASHAcf] = ACTIONS(6057), - [anon_sym_BSLASHacfp] = ACTIONS(6057), - [anon_sym_BSLASHAcfp] = ACTIONS(6057), - [anon_sym_BSLASHac] = ACTIONS(6057), - [anon_sym_BSLASHAc] = ACTIONS(6057), - [anon_sym_BSLASHacp] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), - [anon_sym_BSLASHcolor] = ACTIONS(6057), - [anon_sym_BSLASHcolorbox] = ACTIONS(6057), - [anon_sym_BSLASHtextcolor] = ACTIONS(6057), - [anon_sym_BSLASHpagecolor] = ACTIONS(6057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), - [anon_sym_BSLASHtext] = ACTIONS(6057), - [anon_sym_BSLASHintertext] = ACTIONS(6057), - [anon_sym_shortintertext] = ACTIONS(6057), - }, - [920] = { - [ts_builtin_sym_end] = ACTIONS(6111), - [sym_command_name] = ACTIONS(6109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6109), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_RBRACK] = ACTIONS(6111), - [anon_sym_COMMA] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_LPAREN] = ACTIONS(6111), - [anon_sym_RPAREN] = ACTIONS(6111), - [anon_sym_BSLASHpart] = ACTIONS(6109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddpart] = ACTIONS(6109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6111), - [anon_sym_BSLASHchapter] = ACTIONS(6109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddchap] = ACTIONS(6109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsection] = ACTIONS(6109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddsec] = ACTIONS(6109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubsection] = ACTIONS(6109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHparagraph] = ACTIONS(6109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6111), - [anon_sym_BSLASHitem] = ACTIONS(6109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6111), - [anon_sym_LBRACE] = ACTIONS(6111), - [anon_sym_RBRACE] = ACTIONS(6111), - [sym_word] = ACTIONS(6109), - [sym_placeholder] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6109), - [anon_sym_GT] = ACTIONS(6109), - [anon_sym_BANG] = ACTIONS(6109), - [anon_sym_PIPE] = ACTIONS(6109), - [anon_sym_COLON] = ACTIONS(6109), - [anon_sym_SQUOTE] = ACTIONS(6109), - [anon_sym__] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), - [anon_sym_DOLLAR] = ACTIONS(6109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), - [anon_sym_BSLASHbegin] = ACTIONS(6109), - [anon_sym_BSLASHtitle] = ACTIONS(6109), - [anon_sym_BSLASHauthor] = ACTIONS(6109), - [anon_sym_BSLASHusepackage] = ACTIONS(6109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), - [anon_sym_BSLASHinclude] = ACTIONS(6109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), - [anon_sym_BSLASHinput] = ACTIONS(6109), - [anon_sym_BSLASHsubfile] = ACTIONS(6109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), - [anon_sym_BSLASHbibliography] = ACTIONS(6109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), - [anon_sym_BSLASHincludesvg] = ACTIONS(6109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), - [anon_sym_BSLASHimport] = ACTIONS(6109), - [anon_sym_BSLASHsubimport] = ACTIONS(6109), - [anon_sym_BSLASHinputfrom] = ACTIONS(6109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), - [anon_sym_BSLASHincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHcaption] = ACTIONS(6109), - [anon_sym_BSLASHcite] = ACTIONS(6109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCite] = ACTIONS(6109), - [anon_sym_BSLASHnocite] = ACTIONS(6109), - [anon_sym_BSLASHcitet] = ACTIONS(6109), - [anon_sym_BSLASHcitep] = ACTIONS(6109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteauthor] = ACTIONS(6109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitetitle] = ACTIONS(6109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteyear] = ACTIONS(6109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitedate] = ACTIONS(6109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteurl] = ACTIONS(6109), - [anon_sym_BSLASHfullcite] = ACTIONS(6109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), - [anon_sym_BSLASHcitealt] = ACTIONS(6109), - [anon_sym_BSLASHcitealp] = ACTIONS(6109), - [anon_sym_BSLASHcitetext] = ACTIONS(6109), - [anon_sym_BSLASHparencite] = ACTIONS(6109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHParencite] = ACTIONS(6109), - [anon_sym_BSLASHfootcite] = ACTIONS(6109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), - [anon_sym_BSLASHtextcite] = ACTIONS(6109), - [anon_sym_BSLASHTextcite] = ACTIONS(6109), - [anon_sym_BSLASHsmartcite] = ACTIONS(6109), - [anon_sym_BSLASHSmartcite] = ACTIONS(6109), - [anon_sym_BSLASHsupercite] = ACTIONS(6109), - [anon_sym_BSLASHautocite] = ACTIONS(6109), - [anon_sym_BSLASHAutocite] = ACTIONS(6109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHvolcite] = ACTIONS(6109), - [anon_sym_BSLASHVolcite] = ACTIONS(6109), - [anon_sym_BSLASHpvolcite] = ACTIONS(6109), - [anon_sym_BSLASHPvolcite] = ACTIONS(6109), - [anon_sym_BSLASHfvolcite] = ACTIONS(6109), - [anon_sym_BSLASHftvolcite] = ACTIONS(6109), - [anon_sym_BSLASHsvolcite] = ACTIONS(6109), - [anon_sym_BSLASHSvolcite] = ACTIONS(6109), - [anon_sym_BSLASHtvolcite] = ACTIONS(6109), - [anon_sym_BSLASHTvolcite] = ACTIONS(6109), - [anon_sym_BSLASHavolcite] = ACTIONS(6109), - [anon_sym_BSLASHAvolcite] = ACTIONS(6109), - [anon_sym_BSLASHnotecite] = ACTIONS(6109), - [anon_sym_BSLASHNotecite] = ACTIONS(6109), - [anon_sym_BSLASHpnotecite] = ACTIONS(6109), - [anon_sym_BSLASHPnotecite] = ACTIONS(6109), - [anon_sym_BSLASHfnotecite] = ACTIONS(6109), - [anon_sym_BSLASHlabel] = ACTIONS(6109), - [anon_sym_BSLASHref] = ACTIONS(6109), - [anon_sym_BSLASHeqref] = ACTIONS(6109), - [anon_sym_BSLASHvref] = ACTIONS(6109), - [anon_sym_BSLASHVref] = ACTIONS(6109), - [anon_sym_BSLASHautoref] = ACTIONS(6109), - [anon_sym_BSLASHpageref] = ACTIONS(6109), - [anon_sym_BSLASHcref] = ACTIONS(6109), - [anon_sym_BSLASHCref] = ACTIONS(6109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnameCref] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHlabelcref] = ACTIONS(6109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCrefrange] = ACTIONS(6109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnewlabel] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHdef] = ACTIONS(6109), - [anon_sym_BSLASHlet] = ACTIONS(6109), - [anon_sym_BSLASHleft] = ACTIONS(6109), - [anon_sym_BSLASHbig] = ACTIONS(6109), - [anon_sym_BSLASHBig] = ACTIONS(6109), - [anon_sym_BSLASHbigg] = ACTIONS(6109), - [anon_sym_BSLASHBigg] = ACTIONS(6109), - [anon_sym_BSLASHbigl] = ACTIONS(6109), - [anon_sym_BSLASHBigl] = ACTIONS(6109), - [anon_sym_BSLASHbiggl] = ACTIONS(6109), - [anon_sym_BSLASHBiggl] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), - [anon_sym_BSLASHgls] = ACTIONS(6109), - [anon_sym_BSLASHGls] = ACTIONS(6109), - [anon_sym_BSLASHGLS] = ACTIONS(6109), - [anon_sym_BSLASHglspl] = ACTIONS(6109), - [anon_sym_BSLASHGlspl] = ACTIONS(6109), - [anon_sym_BSLASHGLSpl] = ACTIONS(6109), - [anon_sym_BSLASHglsdisp] = ACTIONS(6109), - [anon_sym_BSLASHglslink] = ACTIONS(6109), - [anon_sym_BSLASHglstext] = ACTIONS(6109), - [anon_sym_BSLASHGlstext] = ACTIONS(6109), - [anon_sym_BSLASHGLStext] = ACTIONS(6109), - [anon_sym_BSLASHglsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), - [anon_sym_BSLASHglsplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSplural] = ACTIONS(6109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHglsname] = ACTIONS(6109), - [anon_sym_BSLASHGlsname] = ACTIONS(6109), - [anon_sym_BSLASHGLSname] = ACTIONS(6109), - [anon_sym_BSLASHglssymbol] = ACTIONS(6109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), - [anon_sym_BSLASHglsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), - [anon_sym_BSLASHglsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), - [anon_sym_BSLASHglsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), - [anon_sym_BSLASHglsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), - [anon_sym_BSLASHglsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), - [anon_sym_BSLASHnewacronym] = ACTIONS(6109), - [anon_sym_BSLASHacrshort] = ACTIONS(6109), - [anon_sym_BSLASHAcrshort] = ACTIONS(6109), - [anon_sym_BSLASHACRshort] = ACTIONS(6109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), - [anon_sym_BSLASHacrlong] = ACTIONS(6109), - [anon_sym_BSLASHAcrlong] = ACTIONS(6109), - [anon_sym_BSLASHACRlong] = ACTIONS(6109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), - [anon_sym_BSLASHacrfull] = ACTIONS(6109), - [anon_sym_BSLASHAcrfull] = ACTIONS(6109), - [anon_sym_BSLASHACRfull] = ACTIONS(6109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), - [anon_sym_BSLASHacs] = ACTIONS(6109), - [anon_sym_BSLASHAcs] = ACTIONS(6109), - [anon_sym_BSLASHacsp] = ACTIONS(6109), - [anon_sym_BSLASHAcsp] = ACTIONS(6109), - [anon_sym_BSLASHacl] = ACTIONS(6109), - [anon_sym_BSLASHAcl] = ACTIONS(6109), - [anon_sym_BSLASHaclp] = ACTIONS(6109), - [anon_sym_BSLASHAclp] = ACTIONS(6109), - [anon_sym_BSLASHacf] = ACTIONS(6109), - [anon_sym_BSLASHAcf] = ACTIONS(6109), - [anon_sym_BSLASHacfp] = ACTIONS(6109), - [anon_sym_BSLASHAcfp] = ACTIONS(6109), - [anon_sym_BSLASHac] = ACTIONS(6109), - [anon_sym_BSLASHAc] = ACTIONS(6109), - [anon_sym_BSLASHacp] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), - [anon_sym_BSLASHcolor] = ACTIONS(6109), - [anon_sym_BSLASHcolorbox] = ACTIONS(6109), - [anon_sym_BSLASHtextcolor] = ACTIONS(6109), - [anon_sym_BSLASHpagecolor] = ACTIONS(6109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), - [anon_sym_BSLASHtext] = ACTIONS(6109), - [anon_sym_BSLASHintertext] = ACTIONS(6109), - [anon_sym_shortintertext] = ACTIONS(6109), - }, - [921] = { - [sym_curly_group] = STATE(1217), - [sym_command_name] = ACTIONS(6013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6013), - [anon_sym_LBRACK] = ACTIONS(6015), - [anon_sym_RBRACK] = ACTIONS(6015), - [anon_sym_COMMA] = ACTIONS(6015), - [anon_sym_EQ] = ACTIONS(6015), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_RPAREN] = ACTIONS(6015), - [anon_sym_BSLASHpart] = ACTIONS(6013), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddpart] = ACTIONS(6013), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6015), - [anon_sym_BSLASHchapter] = ACTIONS(6013), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddchap] = ACTIONS(6013), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsection] = ACTIONS(6013), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddsec] = ACTIONS(6013), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubsection] = ACTIONS(6013), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6013), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHparagraph] = ACTIONS(6013), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6013), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6015), - [anon_sym_BSLASHitem] = ACTIONS(6013), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6015), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(6013), - [sym_placeholder] = ACTIONS(6015), - [anon_sym_PLUS] = ACTIONS(6015), - [anon_sym_DASH] = ACTIONS(6015), - [anon_sym_STAR] = ACTIONS(6015), - [anon_sym_SLASH] = ACTIONS(6015), - [anon_sym_LT] = ACTIONS(6013), - [anon_sym_GT] = ACTIONS(6013), - [anon_sym_BANG] = ACTIONS(6013), - [anon_sym_PIPE] = ACTIONS(6013), - [anon_sym_COLON] = ACTIONS(6013), - [anon_sym_SQUOTE] = ACTIONS(6013), - [anon_sym__] = ACTIONS(6015), - [anon_sym_CARET] = ACTIONS(6015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), - [anon_sym_DOLLAR] = ACTIONS(6013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6015), - [anon_sym_BSLASHbegin] = ACTIONS(6013), - [anon_sym_BSLASHtitle] = ACTIONS(6013), - [anon_sym_BSLASHauthor] = ACTIONS(6013), - [anon_sym_BSLASHusepackage] = ACTIONS(6013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6013), - [anon_sym_BSLASHinclude] = ACTIONS(6013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6013), - [anon_sym_BSLASHinput] = ACTIONS(6013), - [anon_sym_BSLASHsubfile] = ACTIONS(6013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6013), - [anon_sym_BSLASHbibliography] = ACTIONS(6013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6013), - [anon_sym_BSLASHincludesvg] = ACTIONS(6013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6013), - [anon_sym_BSLASHimport] = ACTIONS(6013), - [anon_sym_BSLASHsubimport] = ACTIONS(6013), - [anon_sym_BSLASHinputfrom] = ACTIONS(6013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6013), - [anon_sym_BSLASHincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHcaption] = ACTIONS(6013), - [anon_sym_BSLASHcite] = ACTIONS(6013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCite] = ACTIONS(6013), - [anon_sym_BSLASHnocite] = ACTIONS(6013), - [anon_sym_BSLASHcitet] = ACTIONS(6013), - [anon_sym_BSLASHcitep] = ACTIONS(6013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteauthor] = ACTIONS(6013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitetitle] = ACTIONS(6013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteyear] = ACTIONS(6013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitedate] = ACTIONS(6013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteurl] = ACTIONS(6013), - [anon_sym_BSLASHfullcite] = ACTIONS(6013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6013), - [anon_sym_BSLASHcitealt] = ACTIONS(6013), - [anon_sym_BSLASHcitealp] = ACTIONS(6013), - [anon_sym_BSLASHcitetext] = ACTIONS(6013), - [anon_sym_BSLASHparencite] = ACTIONS(6013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHParencite] = ACTIONS(6013), - [anon_sym_BSLASHfootcite] = ACTIONS(6013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6013), - [anon_sym_BSLASHtextcite] = ACTIONS(6013), - [anon_sym_BSLASHTextcite] = ACTIONS(6013), - [anon_sym_BSLASHsmartcite] = ACTIONS(6013), - [anon_sym_BSLASHSmartcite] = ACTIONS(6013), - [anon_sym_BSLASHsupercite] = ACTIONS(6013), - [anon_sym_BSLASHautocite] = ACTIONS(6013), - [anon_sym_BSLASHAutocite] = ACTIONS(6013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHvolcite] = ACTIONS(6013), - [anon_sym_BSLASHVolcite] = ACTIONS(6013), - [anon_sym_BSLASHpvolcite] = ACTIONS(6013), - [anon_sym_BSLASHPvolcite] = ACTIONS(6013), - [anon_sym_BSLASHfvolcite] = ACTIONS(6013), - [anon_sym_BSLASHftvolcite] = ACTIONS(6013), - [anon_sym_BSLASHsvolcite] = ACTIONS(6013), - [anon_sym_BSLASHSvolcite] = ACTIONS(6013), - [anon_sym_BSLASHtvolcite] = ACTIONS(6013), - [anon_sym_BSLASHTvolcite] = ACTIONS(6013), - [anon_sym_BSLASHavolcite] = ACTIONS(6013), - [anon_sym_BSLASHAvolcite] = ACTIONS(6013), - [anon_sym_BSLASHnotecite] = ACTIONS(6013), - [anon_sym_BSLASHNotecite] = ACTIONS(6013), - [anon_sym_BSLASHpnotecite] = ACTIONS(6013), - [anon_sym_BSLASHPnotecite] = ACTIONS(6013), - [anon_sym_BSLASHfnotecite] = ACTIONS(6013), - [anon_sym_BSLASHlabel] = ACTIONS(6013), - [anon_sym_BSLASHref] = ACTIONS(6013), - [anon_sym_BSLASHeqref] = ACTIONS(6013), - [anon_sym_BSLASHvref] = ACTIONS(6013), - [anon_sym_BSLASHVref] = ACTIONS(6013), - [anon_sym_BSLASHautoref] = ACTIONS(6013), - [anon_sym_BSLASHpageref] = ACTIONS(6013), - [anon_sym_BSLASHcref] = ACTIONS(6013), - [anon_sym_BSLASHCref] = ACTIONS(6013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnameCref] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHlabelcref] = ACTIONS(6013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCrefrange] = ACTIONS(6013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnewlabel] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHdef] = ACTIONS(6013), - [anon_sym_BSLASHlet] = ACTIONS(6013), - [anon_sym_BSLASHleft] = ACTIONS(6013), - [anon_sym_BSLASHbig] = ACTIONS(6013), - [anon_sym_BSLASHBig] = ACTIONS(6013), - [anon_sym_BSLASHbigg] = ACTIONS(6013), - [anon_sym_BSLASHBigg] = ACTIONS(6013), - [anon_sym_BSLASHbigl] = ACTIONS(6013), - [anon_sym_BSLASHBigl] = ACTIONS(6013), - [anon_sym_BSLASHbiggl] = ACTIONS(6013), - [anon_sym_BSLASHBiggl] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6013), - [anon_sym_BSLASHgls] = ACTIONS(6013), - [anon_sym_BSLASHGls] = ACTIONS(6013), - [anon_sym_BSLASHGLS] = ACTIONS(6013), - [anon_sym_BSLASHglspl] = ACTIONS(6013), - [anon_sym_BSLASHGlspl] = ACTIONS(6013), - [anon_sym_BSLASHGLSpl] = ACTIONS(6013), - [anon_sym_BSLASHglsdisp] = ACTIONS(6013), - [anon_sym_BSLASHglslink] = ACTIONS(6013), - [anon_sym_BSLASHglstext] = ACTIONS(6013), - [anon_sym_BSLASHGlstext] = ACTIONS(6013), - [anon_sym_BSLASHGLStext] = ACTIONS(6013), - [anon_sym_BSLASHglsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6013), - [anon_sym_BSLASHglsplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSplural] = ACTIONS(6013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHglsname] = ACTIONS(6013), - [anon_sym_BSLASHGlsname] = ACTIONS(6013), - [anon_sym_BSLASHGLSname] = ACTIONS(6013), - [anon_sym_BSLASHglssymbol] = ACTIONS(6013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6013), - [anon_sym_BSLASHglsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6013), - [anon_sym_BSLASHglsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6013), - [anon_sym_BSLASHglsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6013), - [anon_sym_BSLASHglsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6013), - [anon_sym_BSLASHglsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6013), - [anon_sym_BSLASHnewacronym] = ACTIONS(6013), - [anon_sym_BSLASHacrshort] = ACTIONS(6013), - [anon_sym_BSLASHAcrshort] = ACTIONS(6013), - [anon_sym_BSLASHACRshort] = ACTIONS(6013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6013), - [anon_sym_BSLASHacrlong] = ACTIONS(6013), - [anon_sym_BSLASHAcrlong] = ACTIONS(6013), - [anon_sym_BSLASHACRlong] = ACTIONS(6013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6013), - [anon_sym_BSLASHacrfull] = ACTIONS(6013), - [anon_sym_BSLASHAcrfull] = ACTIONS(6013), - [anon_sym_BSLASHACRfull] = ACTIONS(6013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6013), - [anon_sym_BSLASHacs] = ACTIONS(6013), - [anon_sym_BSLASHAcs] = ACTIONS(6013), - [anon_sym_BSLASHacsp] = ACTIONS(6013), - [anon_sym_BSLASHAcsp] = ACTIONS(6013), - [anon_sym_BSLASHacl] = ACTIONS(6013), - [anon_sym_BSLASHAcl] = ACTIONS(6013), - [anon_sym_BSLASHaclp] = ACTIONS(6013), - [anon_sym_BSLASHAclp] = ACTIONS(6013), - [anon_sym_BSLASHacf] = ACTIONS(6013), - [anon_sym_BSLASHAcf] = ACTIONS(6013), - [anon_sym_BSLASHacfp] = ACTIONS(6013), - [anon_sym_BSLASHAcfp] = ACTIONS(6013), - [anon_sym_BSLASHac] = ACTIONS(6013), - [anon_sym_BSLASHAc] = ACTIONS(6013), - [anon_sym_BSLASHacp] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6013), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6013), - [anon_sym_BSLASHcolor] = ACTIONS(6013), - [anon_sym_BSLASHcolorbox] = ACTIONS(6013), - [anon_sym_BSLASHtextcolor] = ACTIONS(6013), - [anon_sym_BSLASHpagecolor] = ACTIONS(6013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6013), - [anon_sym_BSLASHtext] = ACTIONS(6013), - [anon_sym_BSLASHintertext] = ACTIONS(6013), - [anon_sym_shortintertext] = ACTIONS(6013), - }, - [922] = { - [ts_builtin_sym_end] = ACTIONS(6115), - [sym_command_name] = ACTIONS(6113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6115), - [anon_sym_RBRACK] = ACTIONS(6115), - [anon_sym_COMMA] = ACTIONS(6115), - [anon_sym_EQ] = ACTIONS(6115), - [anon_sym_LPAREN] = ACTIONS(6115), - [anon_sym_RPAREN] = ACTIONS(6115), - [anon_sym_BSLASHpart] = ACTIONS(6113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddpart] = ACTIONS(6113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6115), - [anon_sym_BSLASHchapter] = ACTIONS(6113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddchap] = ACTIONS(6113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsection] = ACTIONS(6113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddsec] = ACTIONS(6113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubsection] = ACTIONS(6113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHparagraph] = ACTIONS(6113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6115), - [anon_sym_BSLASHitem] = ACTIONS(6113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6115), - [anon_sym_LBRACE] = ACTIONS(6115), - [anon_sym_RBRACE] = ACTIONS(6115), - [sym_word] = ACTIONS(6113), - [sym_placeholder] = ACTIONS(6115), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_LT] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6113), - [anon_sym_BANG] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_SQUOTE] = ACTIONS(6113), - [anon_sym__] = ACTIONS(6115), - [anon_sym_CARET] = ACTIONS(6115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6115), - [anon_sym_DOLLAR] = ACTIONS(6113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6115), - [anon_sym_BSLASHbegin] = ACTIONS(6113), - [anon_sym_BSLASHtitle] = ACTIONS(6113), - [anon_sym_BSLASHauthor] = ACTIONS(6113), - [anon_sym_BSLASHusepackage] = ACTIONS(6113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), - [anon_sym_BSLASHinclude] = ACTIONS(6113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), - [anon_sym_BSLASHinput] = ACTIONS(6113), - [anon_sym_BSLASHsubfile] = ACTIONS(6113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), - [anon_sym_BSLASHbibliography] = ACTIONS(6113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), - [anon_sym_BSLASHincludesvg] = ACTIONS(6113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), - [anon_sym_BSLASHimport] = ACTIONS(6113), - [anon_sym_BSLASHsubimport] = ACTIONS(6113), - [anon_sym_BSLASHinputfrom] = ACTIONS(6113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), - [anon_sym_BSLASHincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHcaption] = ACTIONS(6113), - [anon_sym_BSLASHcite] = ACTIONS(6113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCite] = ACTIONS(6113), - [anon_sym_BSLASHnocite] = ACTIONS(6113), - [anon_sym_BSLASHcitet] = ACTIONS(6113), - [anon_sym_BSLASHcitep] = ACTIONS(6113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteauthor] = ACTIONS(6113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitetitle] = ACTIONS(6113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteyear] = ACTIONS(6113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitedate] = ACTIONS(6113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteurl] = ACTIONS(6113), - [anon_sym_BSLASHfullcite] = ACTIONS(6113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), - [anon_sym_BSLASHcitealt] = ACTIONS(6113), - [anon_sym_BSLASHcitealp] = ACTIONS(6113), - [anon_sym_BSLASHcitetext] = ACTIONS(6113), - [anon_sym_BSLASHparencite] = ACTIONS(6113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHParencite] = ACTIONS(6113), - [anon_sym_BSLASHfootcite] = ACTIONS(6113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), - [anon_sym_BSLASHtextcite] = ACTIONS(6113), - [anon_sym_BSLASHTextcite] = ACTIONS(6113), - [anon_sym_BSLASHsmartcite] = ACTIONS(6113), - [anon_sym_BSLASHSmartcite] = ACTIONS(6113), - [anon_sym_BSLASHsupercite] = ACTIONS(6113), - [anon_sym_BSLASHautocite] = ACTIONS(6113), - [anon_sym_BSLASHAutocite] = ACTIONS(6113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHvolcite] = ACTIONS(6113), - [anon_sym_BSLASHVolcite] = ACTIONS(6113), - [anon_sym_BSLASHpvolcite] = ACTIONS(6113), - [anon_sym_BSLASHPvolcite] = ACTIONS(6113), - [anon_sym_BSLASHfvolcite] = ACTIONS(6113), - [anon_sym_BSLASHftvolcite] = ACTIONS(6113), - [anon_sym_BSLASHsvolcite] = ACTIONS(6113), - [anon_sym_BSLASHSvolcite] = ACTIONS(6113), - [anon_sym_BSLASHtvolcite] = ACTIONS(6113), - [anon_sym_BSLASHTvolcite] = ACTIONS(6113), - [anon_sym_BSLASHavolcite] = ACTIONS(6113), - [anon_sym_BSLASHAvolcite] = ACTIONS(6113), - [anon_sym_BSLASHnotecite] = ACTIONS(6113), - [anon_sym_BSLASHNotecite] = ACTIONS(6113), - [anon_sym_BSLASHpnotecite] = ACTIONS(6113), - [anon_sym_BSLASHPnotecite] = ACTIONS(6113), - [anon_sym_BSLASHfnotecite] = ACTIONS(6113), - [anon_sym_BSLASHlabel] = ACTIONS(6113), - [anon_sym_BSLASHref] = ACTIONS(6113), - [anon_sym_BSLASHeqref] = ACTIONS(6113), - [anon_sym_BSLASHvref] = ACTIONS(6113), - [anon_sym_BSLASHVref] = ACTIONS(6113), - [anon_sym_BSLASHautoref] = ACTIONS(6113), - [anon_sym_BSLASHpageref] = ACTIONS(6113), - [anon_sym_BSLASHcref] = ACTIONS(6113), - [anon_sym_BSLASHCref] = ACTIONS(6113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnameCref] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHlabelcref] = ACTIONS(6113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCrefrange] = ACTIONS(6113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnewlabel] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6115), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHdef] = ACTIONS(6113), - [anon_sym_BSLASHlet] = ACTIONS(6113), - [anon_sym_BSLASHleft] = ACTIONS(6113), - [anon_sym_BSLASHbig] = ACTIONS(6113), - [anon_sym_BSLASHBig] = ACTIONS(6113), - [anon_sym_BSLASHbigg] = ACTIONS(6113), - [anon_sym_BSLASHBigg] = ACTIONS(6113), - [anon_sym_BSLASHbigl] = ACTIONS(6113), - [anon_sym_BSLASHBigl] = ACTIONS(6113), - [anon_sym_BSLASHbiggl] = ACTIONS(6113), - [anon_sym_BSLASHBiggl] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), - [anon_sym_BSLASHgls] = ACTIONS(6113), - [anon_sym_BSLASHGls] = ACTIONS(6113), - [anon_sym_BSLASHGLS] = ACTIONS(6113), - [anon_sym_BSLASHglspl] = ACTIONS(6113), - [anon_sym_BSLASHGlspl] = ACTIONS(6113), - [anon_sym_BSLASHGLSpl] = ACTIONS(6113), - [anon_sym_BSLASHglsdisp] = ACTIONS(6113), - [anon_sym_BSLASHglslink] = ACTIONS(6113), - [anon_sym_BSLASHglstext] = ACTIONS(6113), - [anon_sym_BSLASHGlstext] = ACTIONS(6113), - [anon_sym_BSLASHGLStext] = ACTIONS(6113), - [anon_sym_BSLASHglsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), - [anon_sym_BSLASHglsplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSplural] = ACTIONS(6113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHglsname] = ACTIONS(6113), - [anon_sym_BSLASHGlsname] = ACTIONS(6113), - [anon_sym_BSLASHGLSname] = ACTIONS(6113), - [anon_sym_BSLASHglssymbol] = ACTIONS(6113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), - [anon_sym_BSLASHglsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), - [anon_sym_BSLASHglsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), - [anon_sym_BSLASHglsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), - [anon_sym_BSLASHglsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), - [anon_sym_BSLASHglsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), - [anon_sym_BSLASHnewacronym] = ACTIONS(6113), - [anon_sym_BSLASHacrshort] = ACTIONS(6113), - [anon_sym_BSLASHAcrshort] = ACTIONS(6113), - [anon_sym_BSLASHACRshort] = ACTIONS(6113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), - [anon_sym_BSLASHacrlong] = ACTIONS(6113), - [anon_sym_BSLASHAcrlong] = ACTIONS(6113), - [anon_sym_BSLASHACRlong] = ACTIONS(6113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), - [anon_sym_BSLASHacrfull] = ACTIONS(6113), - [anon_sym_BSLASHAcrfull] = ACTIONS(6113), - [anon_sym_BSLASHACRfull] = ACTIONS(6113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), - [anon_sym_BSLASHacs] = ACTIONS(6113), - [anon_sym_BSLASHAcs] = ACTIONS(6113), - [anon_sym_BSLASHacsp] = ACTIONS(6113), - [anon_sym_BSLASHAcsp] = ACTIONS(6113), - [anon_sym_BSLASHacl] = ACTIONS(6113), - [anon_sym_BSLASHAcl] = ACTIONS(6113), - [anon_sym_BSLASHaclp] = ACTIONS(6113), - [anon_sym_BSLASHAclp] = ACTIONS(6113), - [anon_sym_BSLASHacf] = ACTIONS(6113), - [anon_sym_BSLASHAcf] = ACTIONS(6113), - [anon_sym_BSLASHacfp] = ACTIONS(6113), - [anon_sym_BSLASHAcfp] = ACTIONS(6113), - [anon_sym_BSLASHac] = ACTIONS(6113), - [anon_sym_BSLASHAc] = ACTIONS(6113), - [anon_sym_BSLASHacp] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), - [anon_sym_BSLASHcolor] = ACTIONS(6113), - [anon_sym_BSLASHcolorbox] = ACTIONS(6113), - [anon_sym_BSLASHtextcolor] = ACTIONS(6113), - [anon_sym_BSLASHpagecolor] = ACTIONS(6113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), - [anon_sym_BSLASHtext] = ACTIONS(6113), - [anon_sym_BSLASHintertext] = ACTIONS(6113), - [anon_sym_shortintertext] = ACTIONS(6113), - }, - [923] = { - [sym_command_name] = ACTIONS(5997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5997), - [anon_sym_BSLASHfi] = ACTIONS(6707), - [anon_sym_LBRACK] = ACTIONS(6001), - [anon_sym_RBRACK] = ACTIONS(6001), - [anon_sym_COMMA] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(6001), - [anon_sym_LPAREN] = ACTIONS(6001), - [anon_sym_RPAREN] = ACTIONS(6001), - [anon_sym_BSLASHpart] = ACTIONS(5997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddpart] = ACTIONS(5997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6001), - [anon_sym_BSLASHchapter] = ACTIONS(5997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddchap] = ACTIONS(5997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsection] = ACTIONS(5997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddsec] = ACTIONS(5997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubsection] = ACTIONS(5997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHparagraph] = ACTIONS(5997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5997), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6001), - [anon_sym_BSLASHitem] = ACTIONS(5997), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6001), - [anon_sym_LBRACE] = ACTIONS(6001), - [sym_word] = ACTIONS(5997), - [sym_placeholder] = ACTIONS(6001), - [anon_sym_PLUS] = ACTIONS(6001), - [anon_sym_DASH] = ACTIONS(6001), - [anon_sym_STAR] = ACTIONS(6001), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_COLON] = ACTIONS(5997), - [anon_sym_SQUOTE] = ACTIONS(5997), - [anon_sym__] = ACTIONS(6001), - [anon_sym_CARET] = ACTIONS(6001), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6001), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), - [anon_sym_BSLASHbegin] = ACTIONS(5997), - [anon_sym_BSLASHtitle] = ACTIONS(5997), - [anon_sym_BSLASHauthor] = ACTIONS(5997), - [anon_sym_BSLASHusepackage] = ACTIONS(5997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5997), - [anon_sym_BSLASHinclude] = ACTIONS(5997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5997), - [anon_sym_BSLASHinput] = ACTIONS(5997), - [anon_sym_BSLASHsubfile] = ACTIONS(5997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5997), - [anon_sym_BSLASHbibliography] = ACTIONS(5997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5997), - [anon_sym_BSLASHincludesvg] = ACTIONS(5997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5997), - [anon_sym_BSLASHimport] = ACTIONS(5997), - [anon_sym_BSLASHsubimport] = ACTIONS(5997), - [anon_sym_BSLASHinputfrom] = ACTIONS(5997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5997), - [anon_sym_BSLASHincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHcaption] = ACTIONS(5997), - [anon_sym_BSLASHcite] = ACTIONS(5997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCite] = ACTIONS(5997), - [anon_sym_BSLASHnocite] = ACTIONS(5997), - [anon_sym_BSLASHcitet] = ACTIONS(5997), - [anon_sym_BSLASHcitep] = ACTIONS(5997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteyear] = ACTIONS(5997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitedate] = ACTIONS(5997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteurl] = ACTIONS(5997), - [anon_sym_BSLASHfullcite] = ACTIONS(5997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5997), - [anon_sym_BSLASHcitealt] = ACTIONS(5997), - [anon_sym_BSLASHcitealp] = ACTIONS(5997), - [anon_sym_BSLASHcitetext] = ACTIONS(5997), - [anon_sym_BSLASHparencite] = ACTIONS(5997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHParencite] = ACTIONS(5997), - [anon_sym_BSLASHfootcite] = ACTIONS(5997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5997), - [anon_sym_BSLASHtextcite] = ACTIONS(5997), - [anon_sym_BSLASHTextcite] = ACTIONS(5997), - [anon_sym_BSLASHsmartcite] = ACTIONS(5997), - [anon_sym_BSLASHSmartcite] = ACTIONS(5997), - [anon_sym_BSLASHsupercite] = ACTIONS(5997), - [anon_sym_BSLASHautocite] = ACTIONS(5997), - [anon_sym_BSLASHAutocite] = ACTIONS(5997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHvolcite] = ACTIONS(5997), - [anon_sym_BSLASHVolcite] = ACTIONS(5997), - [anon_sym_BSLASHpvolcite] = ACTIONS(5997), - [anon_sym_BSLASHPvolcite] = ACTIONS(5997), - [anon_sym_BSLASHfvolcite] = ACTIONS(5997), - [anon_sym_BSLASHftvolcite] = ACTIONS(5997), - [anon_sym_BSLASHsvolcite] = ACTIONS(5997), - [anon_sym_BSLASHSvolcite] = ACTIONS(5997), - [anon_sym_BSLASHtvolcite] = ACTIONS(5997), - [anon_sym_BSLASHTvolcite] = ACTIONS(5997), - [anon_sym_BSLASHavolcite] = ACTIONS(5997), - [anon_sym_BSLASHAvolcite] = ACTIONS(5997), - [anon_sym_BSLASHnotecite] = ACTIONS(5997), - [anon_sym_BSLASHNotecite] = ACTIONS(5997), - [anon_sym_BSLASHpnotecite] = ACTIONS(5997), - [anon_sym_BSLASHPnotecite] = ACTIONS(5997), - [anon_sym_BSLASHfnotecite] = ACTIONS(5997), - [anon_sym_BSLASHlabel] = ACTIONS(5997), - [anon_sym_BSLASHref] = ACTIONS(5997), - [anon_sym_BSLASHeqref] = ACTIONS(5997), - [anon_sym_BSLASHvref] = ACTIONS(5997), - [anon_sym_BSLASHVref] = ACTIONS(5997), - [anon_sym_BSLASHautoref] = ACTIONS(5997), - [anon_sym_BSLASHpageref] = ACTIONS(5997), - [anon_sym_BSLASHcref] = ACTIONS(5997), - [anon_sym_BSLASHCref] = ACTIONS(5997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnameCref] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHlabelcref] = ACTIONS(5997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHdef] = ACTIONS(5997), - [anon_sym_BSLASHlet] = ACTIONS(5997), - [anon_sym_BSLASHleft] = ACTIONS(5997), - [anon_sym_BSLASHbig] = ACTIONS(5997), - [anon_sym_BSLASHBig] = ACTIONS(5997), - [anon_sym_BSLASHbigg] = ACTIONS(5997), - [anon_sym_BSLASHBigg] = ACTIONS(5997), - [anon_sym_BSLASHbigl] = ACTIONS(5997), - [anon_sym_BSLASHBigl] = ACTIONS(5997), - [anon_sym_BSLASHbiggl] = ACTIONS(5997), - [anon_sym_BSLASHBiggl] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5997), - [anon_sym_BSLASHgls] = ACTIONS(5997), - [anon_sym_BSLASHGls] = ACTIONS(5997), - [anon_sym_BSLASHGLS] = ACTIONS(5997), - [anon_sym_BSLASHglspl] = ACTIONS(5997), - [anon_sym_BSLASHGlspl] = ACTIONS(5997), - [anon_sym_BSLASHGLSpl] = ACTIONS(5997), - [anon_sym_BSLASHglsdisp] = ACTIONS(5997), - [anon_sym_BSLASHglslink] = ACTIONS(5997), - [anon_sym_BSLASHglstext] = ACTIONS(5997), - [anon_sym_BSLASHGlstext] = ACTIONS(5997), - [anon_sym_BSLASHGLStext] = ACTIONS(5997), - [anon_sym_BSLASHglsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5997), - [anon_sym_BSLASHglsplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSplural] = ACTIONS(5997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHglsname] = ACTIONS(5997), - [anon_sym_BSLASHGlsname] = ACTIONS(5997), - [anon_sym_BSLASHGLSname] = ACTIONS(5997), - [anon_sym_BSLASHglssymbol] = ACTIONS(5997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5997), - [anon_sym_BSLASHglsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5997), - [anon_sym_BSLASHglsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5997), - [anon_sym_BSLASHglsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5997), - [anon_sym_BSLASHglsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5997), - [anon_sym_BSLASHglsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5997), - [anon_sym_BSLASHnewacronym] = ACTIONS(5997), - [anon_sym_BSLASHacrshort] = ACTIONS(5997), - [anon_sym_BSLASHAcrshort] = ACTIONS(5997), - [anon_sym_BSLASHACRshort] = ACTIONS(5997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5997), - [anon_sym_BSLASHacrlong] = ACTIONS(5997), - [anon_sym_BSLASHAcrlong] = ACTIONS(5997), - [anon_sym_BSLASHACRlong] = ACTIONS(5997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5997), - [anon_sym_BSLASHacrfull] = ACTIONS(5997), - [anon_sym_BSLASHAcrfull] = ACTIONS(5997), - [anon_sym_BSLASHACRfull] = ACTIONS(5997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5997), - [anon_sym_BSLASHacs] = ACTIONS(5997), - [anon_sym_BSLASHAcs] = ACTIONS(5997), - [anon_sym_BSLASHacsp] = ACTIONS(5997), - [anon_sym_BSLASHAcsp] = ACTIONS(5997), - [anon_sym_BSLASHacl] = ACTIONS(5997), - [anon_sym_BSLASHAcl] = ACTIONS(5997), - [anon_sym_BSLASHaclp] = ACTIONS(5997), - [anon_sym_BSLASHAclp] = ACTIONS(5997), - [anon_sym_BSLASHacf] = ACTIONS(5997), - [anon_sym_BSLASHAcf] = ACTIONS(5997), - [anon_sym_BSLASHacfp] = ACTIONS(5997), - [anon_sym_BSLASHAcfp] = ACTIONS(5997), - [anon_sym_BSLASHac] = ACTIONS(5997), - [anon_sym_BSLASHAc] = ACTIONS(5997), - [anon_sym_BSLASHacp] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5997), - [anon_sym_BSLASHcolor] = ACTIONS(5997), - [anon_sym_BSLASHcolorbox] = ACTIONS(5997), - [anon_sym_BSLASHtextcolor] = ACTIONS(5997), - [anon_sym_BSLASHpagecolor] = ACTIONS(5997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5997), - [anon_sym_BSLASHtext] = ACTIONS(5997), - [anon_sym_BSLASHintertext] = ACTIONS(5997), - [anon_sym_shortintertext] = ACTIONS(5997), - }, - [924] = { - [sym_brack_group_text] = STATE(1255), - [sym_command_name] = ACTIONS(6009), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6709), - [anon_sym_RBRACK] = ACTIONS(6011), - [anon_sym_COMMA] = ACTIONS(6011), - [anon_sym_EQ] = ACTIONS(6011), - [anon_sym_LPAREN] = ACTIONS(6011), - [anon_sym_RPAREN] = ACTIONS(6011), - [anon_sym_BSLASHpart] = ACTIONS(6009), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddpart] = ACTIONS(6009), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6011), - [anon_sym_BSLASHchapter] = ACTIONS(6009), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddchap] = ACTIONS(6009), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsection] = ACTIONS(6009), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddsec] = ACTIONS(6009), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubsection] = ACTIONS(6009), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6009), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHparagraph] = ACTIONS(6009), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6009), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6011), - [anon_sym_BSLASHitem] = ACTIONS(6009), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6011), - [anon_sym_LBRACE] = ACTIONS(6011), - [sym_word] = ACTIONS(6009), - [sym_placeholder] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_SQUOTE] = ACTIONS(6009), - [anon_sym__] = ACTIONS(6011), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6011), - [anon_sym_DOLLAR] = ACTIONS(6009), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6011), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6011), - [anon_sym_BSLASHbegin] = ACTIONS(6009), - [anon_sym_BSLASHtitle] = ACTIONS(6009), - [anon_sym_BSLASHauthor] = ACTIONS(6009), - [anon_sym_BSLASHusepackage] = ACTIONS(6009), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6009), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6009), - [anon_sym_BSLASHinclude] = ACTIONS(6009), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6009), - [anon_sym_BSLASHinput] = ACTIONS(6009), - [anon_sym_BSLASHsubfile] = ACTIONS(6009), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6009), - [anon_sym_BSLASHbibliography] = ACTIONS(6009), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6009), - [anon_sym_BSLASHincludesvg] = ACTIONS(6009), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6009), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6009), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6009), - [anon_sym_BSLASHimport] = ACTIONS(6009), - [anon_sym_BSLASHsubimport] = ACTIONS(6009), - [anon_sym_BSLASHinputfrom] = ACTIONS(6009), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6009), - [anon_sym_BSLASHincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHcaption] = ACTIONS(6009), - [anon_sym_BSLASHcite] = ACTIONS(6009), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCite] = ACTIONS(6009), - [anon_sym_BSLASHnocite] = ACTIONS(6009), - [anon_sym_BSLASHcitet] = ACTIONS(6009), - [anon_sym_BSLASHcitep] = ACTIONS(6009), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteauthor] = ACTIONS(6009), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6009), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitetitle] = ACTIONS(6009), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteyear] = ACTIONS(6009), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitedate] = ACTIONS(6009), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteurl] = ACTIONS(6009), - [anon_sym_BSLASHfullcite] = ACTIONS(6009), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6009), - [anon_sym_BSLASHcitealt] = ACTIONS(6009), - [anon_sym_BSLASHcitealp] = ACTIONS(6009), - [anon_sym_BSLASHcitetext] = ACTIONS(6009), - [anon_sym_BSLASHparencite] = ACTIONS(6009), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHParencite] = ACTIONS(6009), - [anon_sym_BSLASHfootcite] = ACTIONS(6009), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6009), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6009), - [anon_sym_BSLASHtextcite] = ACTIONS(6009), - [anon_sym_BSLASHTextcite] = ACTIONS(6009), - [anon_sym_BSLASHsmartcite] = ACTIONS(6009), - [anon_sym_BSLASHSmartcite] = ACTIONS(6009), - [anon_sym_BSLASHsupercite] = ACTIONS(6009), - [anon_sym_BSLASHautocite] = ACTIONS(6009), - [anon_sym_BSLASHAutocite] = ACTIONS(6009), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHvolcite] = ACTIONS(6009), - [anon_sym_BSLASHVolcite] = ACTIONS(6009), - [anon_sym_BSLASHpvolcite] = ACTIONS(6009), - [anon_sym_BSLASHPvolcite] = ACTIONS(6009), - [anon_sym_BSLASHfvolcite] = ACTIONS(6009), - [anon_sym_BSLASHftvolcite] = ACTIONS(6009), - [anon_sym_BSLASHsvolcite] = ACTIONS(6009), - [anon_sym_BSLASHSvolcite] = ACTIONS(6009), - [anon_sym_BSLASHtvolcite] = ACTIONS(6009), - [anon_sym_BSLASHTvolcite] = ACTIONS(6009), - [anon_sym_BSLASHavolcite] = ACTIONS(6009), - [anon_sym_BSLASHAvolcite] = ACTIONS(6009), - [anon_sym_BSLASHnotecite] = ACTIONS(6009), - [anon_sym_BSLASHNotecite] = ACTIONS(6009), - [anon_sym_BSLASHpnotecite] = ACTIONS(6009), - [anon_sym_BSLASHPnotecite] = ACTIONS(6009), - [anon_sym_BSLASHfnotecite] = ACTIONS(6009), - [anon_sym_BSLASHlabel] = ACTIONS(6009), - [anon_sym_BSLASHref] = ACTIONS(6009), - [anon_sym_BSLASHeqref] = ACTIONS(6009), - [anon_sym_BSLASHvref] = ACTIONS(6009), - [anon_sym_BSLASHVref] = ACTIONS(6009), - [anon_sym_BSLASHautoref] = ACTIONS(6009), - [anon_sym_BSLASHpageref] = ACTIONS(6009), - [anon_sym_BSLASHcref] = ACTIONS(6009), - [anon_sym_BSLASHCref] = ACTIONS(6009), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnameCref] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHlabelcref] = ACTIONS(6009), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCrefrange] = ACTIONS(6009), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnewlabel] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6009), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6009), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6011), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHdef] = ACTIONS(6009), - [anon_sym_BSLASHlet] = ACTIONS(6009), - [anon_sym_BSLASHleft] = ACTIONS(6009), - [anon_sym_BSLASHbig] = ACTIONS(6009), - [anon_sym_BSLASHBig] = ACTIONS(6009), - [anon_sym_BSLASHbigg] = ACTIONS(6009), - [anon_sym_BSLASHBigg] = ACTIONS(6009), - [anon_sym_BSLASHbigl] = ACTIONS(6009), - [anon_sym_BSLASHBigl] = ACTIONS(6009), - [anon_sym_BSLASHbiggl] = ACTIONS(6009), - [anon_sym_BSLASHBiggl] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6009), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6009), - [anon_sym_BSLASHgls] = ACTIONS(6009), - [anon_sym_BSLASHGls] = ACTIONS(6009), - [anon_sym_BSLASHGLS] = ACTIONS(6009), - [anon_sym_BSLASHglspl] = ACTIONS(6009), - [anon_sym_BSLASHGlspl] = ACTIONS(6009), - [anon_sym_BSLASHGLSpl] = ACTIONS(6009), - [anon_sym_BSLASHglsdisp] = ACTIONS(6009), - [anon_sym_BSLASHglslink] = ACTIONS(6009), - [anon_sym_BSLASHglstext] = ACTIONS(6009), - [anon_sym_BSLASHGlstext] = ACTIONS(6009), - [anon_sym_BSLASHGLStext] = ACTIONS(6009), - [anon_sym_BSLASHglsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6009), - [anon_sym_BSLASHglsplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSplural] = ACTIONS(6009), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHglsname] = ACTIONS(6009), - [anon_sym_BSLASHGlsname] = ACTIONS(6009), - [anon_sym_BSLASHGLSname] = ACTIONS(6009), - [anon_sym_BSLASHglssymbol] = ACTIONS(6009), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6009), - [anon_sym_BSLASHglsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6009), - [anon_sym_BSLASHglsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6009), - [anon_sym_BSLASHglsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6009), - [anon_sym_BSLASHglsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6009), - [anon_sym_BSLASHglsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6009), - [anon_sym_BSLASHnewacronym] = ACTIONS(6009), - [anon_sym_BSLASHacrshort] = ACTIONS(6009), - [anon_sym_BSLASHAcrshort] = ACTIONS(6009), - [anon_sym_BSLASHACRshort] = ACTIONS(6009), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6009), - [anon_sym_BSLASHacrlong] = ACTIONS(6009), - [anon_sym_BSLASHAcrlong] = ACTIONS(6009), - [anon_sym_BSLASHACRlong] = ACTIONS(6009), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6009), - [anon_sym_BSLASHacrfull] = ACTIONS(6009), - [anon_sym_BSLASHAcrfull] = ACTIONS(6009), - [anon_sym_BSLASHACRfull] = ACTIONS(6009), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6009), - [anon_sym_BSLASHacs] = ACTIONS(6009), - [anon_sym_BSLASHAcs] = ACTIONS(6009), - [anon_sym_BSLASHacsp] = ACTIONS(6009), - [anon_sym_BSLASHAcsp] = ACTIONS(6009), - [anon_sym_BSLASHacl] = ACTIONS(6009), - [anon_sym_BSLASHAcl] = ACTIONS(6009), - [anon_sym_BSLASHaclp] = ACTIONS(6009), - [anon_sym_BSLASHAclp] = ACTIONS(6009), - [anon_sym_BSLASHacf] = ACTIONS(6009), - [anon_sym_BSLASHAcf] = ACTIONS(6009), - [anon_sym_BSLASHacfp] = ACTIONS(6009), - [anon_sym_BSLASHAcfp] = ACTIONS(6009), - [anon_sym_BSLASHac] = ACTIONS(6009), - [anon_sym_BSLASHAc] = ACTIONS(6009), - [anon_sym_BSLASHacp] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6009), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6009), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6009), - [anon_sym_BSLASHcolor] = ACTIONS(6009), - [anon_sym_BSLASHcolorbox] = ACTIONS(6009), - [anon_sym_BSLASHtextcolor] = ACTIONS(6009), - [anon_sym_BSLASHpagecolor] = ACTIONS(6009), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6009), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6009), - [anon_sym_BSLASHtext] = ACTIONS(6009), - [anon_sym_BSLASHintertext] = ACTIONS(6009), - [anon_sym_shortintertext] = ACTIONS(6009), - }, - [925] = { - [sym_brack_group_text] = STATE(1213), - [sym_command_name] = ACTIONS(6017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6017), - [anon_sym_LBRACK] = ACTIONS(6709), - [anon_sym_RBRACK] = ACTIONS(6019), - [anon_sym_COMMA] = ACTIONS(6019), - [anon_sym_EQ] = ACTIONS(6019), - [anon_sym_LPAREN] = ACTIONS(6019), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_BSLASHpart] = ACTIONS(6017), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddpart] = ACTIONS(6017), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6019), - [anon_sym_BSLASHchapter] = ACTIONS(6017), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddchap] = ACTIONS(6017), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsection] = ACTIONS(6017), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddsec] = ACTIONS(6017), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubsection] = ACTIONS(6017), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6017), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHparagraph] = ACTIONS(6017), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6017), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6019), - [anon_sym_BSLASHitem] = ACTIONS(6017), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6019), - [anon_sym_LBRACE] = ACTIONS(6019), - [sym_word] = ACTIONS(6017), - [sym_placeholder] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(6017), - [anon_sym_PIPE] = ACTIONS(6017), - [anon_sym_COLON] = ACTIONS(6017), - [anon_sym_SQUOTE] = ACTIONS(6017), - [anon_sym__] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), - [anon_sym_DOLLAR] = ACTIONS(6017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6019), - [anon_sym_BSLASHbegin] = ACTIONS(6017), - [anon_sym_BSLASHtitle] = ACTIONS(6017), - [anon_sym_BSLASHauthor] = ACTIONS(6017), - [anon_sym_BSLASHusepackage] = ACTIONS(6017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), - [anon_sym_BSLASHinclude] = ACTIONS(6017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), - [anon_sym_BSLASHinput] = ACTIONS(6017), - [anon_sym_BSLASHsubfile] = ACTIONS(6017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), - [anon_sym_BSLASHbibliography] = ACTIONS(6017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), - [anon_sym_BSLASHincludesvg] = ACTIONS(6017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), - [anon_sym_BSLASHimport] = ACTIONS(6017), - [anon_sym_BSLASHsubimport] = ACTIONS(6017), - [anon_sym_BSLASHinputfrom] = ACTIONS(6017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), - [anon_sym_BSLASHincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHcaption] = ACTIONS(6017), - [anon_sym_BSLASHcite] = ACTIONS(6017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCite] = ACTIONS(6017), - [anon_sym_BSLASHnocite] = ACTIONS(6017), - [anon_sym_BSLASHcitet] = ACTIONS(6017), - [anon_sym_BSLASHcitep] = ACTIONS(6017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteauthor] = ACTIONS(6017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitetitle] = ACTIONS(6017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteyear] = ACTIONS(6017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitedate] = ACTIONS(6017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteurl] = ACTIONS(6017), - [anon_sym_BSLASHfullcite] = ACTIONS(6017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), - [anon_sym_BSLASHcitealt] = ACTIONS(6017), - [anon_sym_BSLASHcitealp] = ACTIONS(6017), - [anon_sym_BSLASHcitetext] = ACTIONS(6017), - [anon_sym_BSLASHparencite] = ACTIONS(6017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHParencite] = ACTIONS(6017), - [anon_sym_BSLASHfootcite] = ACTIONS(6017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), - [anon_sym_BSLASHtextcite] = ACTIONS(6017), - [anon_sym_BSLASHTextcite] = ACTIONS(6017), - [anon_sym_BSLASHsmartcite] = ACTIONS(6017), - [anon_sym_BSLASHSmartcite] = ACTIONS(6017), - [anon_sym_BSLASHsupercite] = ACTIONS(6017), - [anon_sym_BSLASHautocite] = ACTIONS(6017), - [anon_sym_BSLASHAutocite] = ACTIONS(6017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHvolcite] = ACTIONS(6017), - [anon_sym_BSLASHVolcite] = ACTIONS(6017), - [anon_sym_BSLASHpvolcite] = ACTIONS(6017), - [anon_sym_BSLASHPvolcite] = ACTIONS(6017), - [anon_sym_BSLASHfvolcite] = ACTIONS(6017), - [anon_sym_BSLASHftvolcite] = ACTIONS(6017), - [anon_sym_BSLASHsvolcite] = ACTIONS(6017), - [anon_sym_BSLASHSvolcite] = ACTIONS(6017), - [anon_sym_BSLASHtvolcite] = ACTIONS(6017), - [anon_sym_BSLASHTvolcite] = ACTIONS(6017), - [anon_sym_BSLASHavolcite] = ACTIONS(6017), - [anon_sym_BSLASHAvolcite] = ACTIONS(6017), - [anon_sym_BSLASHnotecite] = ACTIONS(6017), - [anon_sym_BSLASHNotecite] = ACTIONS(6017), - [anon_sym_BSLASHpnotecite] = ACTIONS(6017), - [anon_sym_BSLASHPnotecite] = ACTIONS(6017), - [anon_sym_BSLASHfnotecite] = ACTIONS(6017), - [anon_sym_BSLASHlabel] = ACTIONS(6017), - [anon_sym_BSLASHref] = ACTIONS(6017), - [anon_sym_BSLASHeqref] = ACTIONS(6017), - [anon_sym_BSLASHvref] = ACTIONS(6017), - [anon_sym_BSLASHVref] = ACTIONS(6017), - [anon_sym_BSLASHautoref] = ACTIONS(6017), - [anon_sym_BSLASHpageref] = ACTIONS(6017), - [anon_sym_BSLASHcref] = ACTIONS(6017), - [anon_sym_BSLASHCref] = ACTIONS(6017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnameCref] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHlabelcref] = ACTIONS(6017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCrefrange] = ACTIONS(6017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnewlabel] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHdef] = ACTIONS(6017), - [anon_sym_BSLASHlet] = ACTIONS(6017), - [anon_sym_BSLASHleft] = ACTIONS(6017), - [anon_sym_BSLASHbig] = ACTIONS(6017), - [anon_sym_BSLASHBig] = ACTIONS(6017), - [anon_sym_BSLASHbigg] = ACTIONS(6017), - [anon_sym_BSLASHBigg] = ACTIONS(6017), - [anon_sym_BSLASHbigl] = ACTIONS(6017), - [anon_sym_BSLASHBigl] = ACTIONS(6017), - [anon_sym_BSLASHbiggl] = ACTIONS(6017), - [anon_sym_BSLASHBiggl] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), - [anon_sym_BSLASHgls] = ACTIONS(6017), - [anon_sym_BSLASHGls] = ACTIONS(6017), - [anon_sym_BSLASHGLS] = ACTIONS(6017), - [anon_sym_BSLASHglspl] = ACTIONS(6017), - [anon_sym_BSLASHGlspl] = ACTIONS(6017), - [anon_sym_BSLASHGLSpl] = ACTIONS(6017), - [anon_sym_BSLASHglsdisp] = ACTIONS(6017), - [anon_sym_BSLASHglslink] = ACTIONS(6017), - [anon_sym_BSLASHglstext] = ACTIONS(6017), - [anon_sym_BSLASHGlstext] = ACTIONS(6017), - [anon_sym_BSLASHGLStext] = ACTIONS(6017), - [anon_sym_BSLASHglsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), - [anon_sym_BSLASHglsplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSplural] = ACTIONS(6017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHglsname] = ACTIONS(6017), - [anon_sym_BSLASHGlsname] = ACTIONS(6017), - [anon_sym_BSLASHGLSname] = ACTIONS(6017), - [anon_sym_BSLASHglssymbol] = ACTIONS(6017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), - [anon_sym_BSLASHglsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), - [anon_sym_BSLASHglsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), - [anon_sym_BSLASHglsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), - [anon_sym_BSLASHglsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), - [anon_sym_BSLASHglsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), - [anon_sym_BSLASHnewacronym] = ACTIONS(6017), - [anon_sym_BSLASHacrshort] = ACTIONS(6017), - [anon_sym_BSLASHAcrshort] = ACTIONS(6017), - [anon_sym_BSLASHACRshort] = ACTIONS(6017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), - [anon_sym_BSLASHacrlong] = ACTIONS(6017), - [anon_sym_BSLASHAcrlong] = ACTIONS(6017), - [anon_sym_BSLASHACRlong] = ACTIONS(6017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), - [anon_sym_BSLASHacrfull] = ACTIONS(6017), - [anon_sym_BSLASHAcrfull] = ACTIONS(6017), - [anon_sym_BSLASHACRfull] = ACTIONS(6017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), - [anon_sym_BSLASHacs] = ACTIONS(6017), - [anon_sym_BSLASHAcs] = ACTIONS(6017), - [anon_sym_BSLASHacsp] = ACTIONS(6017), - [anon_sym_BSLASHAcsp] = ACTIONS(6017), - [anon_sym_BSLASHacl] = ACTIONS(6017), - [anon_sym_BSLASHAcl] = ACTIONS(6017), - [anon_sym_BSLASHaclp] = ACTIONS(6017), - [anon_sym_BSLASHAclp] = ACTIONS(6017), - [anon_sym_BSLASHacf] = ACTIONS(6017), - [anon_sym_BSLASHAcf] = ACTIONS(6017), - [anon_sym_BSLASHacfp] = ACTIONS(6017), - [anon_sym_BSLASHAcfp] = ACTIONS(6017), - [anon_sym_BSLASHac] = ACTIONS(6017), - [anon_sym_BSLASHAc] = ACTIONS(6017), - [anon_sym_BSLASHacp] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), - [anon_sym_BSLASHcolor] = ACTIONS(6017), - [anon_sym_BSLASHcolorbox] = ACTIONS(6017), - [anon_sym_BSLASHtextcolor] = ACTIONS(6017), - [anon_sym_BSLASHpagecolor] = ACTIONS(6017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), - [anon_sym_BSLASHtext] = ACTIONS(6017), - [anon_sym_BSLASHintertext] = ACTIONS(6017), - [anon_sym_shortintertext] = ACTIONS(6017), - }, - [926] = { - [sym_brack_group_text] = STATE(1292), - [sym_command_name] = ACTIONS(6003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6003), - [anon_sym_LBRACK] = ACTIONS(6711), - [anon_sym_RBRACK] = ACTIONS(6007), - [anon_sym_COMMA] = ACTIONS(6007), - [anon_sym_EQ] = ACTIONS(6007), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_RPAREN] = ACTIONS(6007), - [anon_sym_BSLASHpart] = ACTIONS(6003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddpart] = ACTIONS(6003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6007), - [anon_sym_BSLASHchapter] = ACTIONS(6003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddchap] = ACTIONS(6003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsection] = ACTIONS(6003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddsec] = ACTIONS(6003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubsection] = ACTIONS(6003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHparagraph] = ACTIONS(6003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6007), - [anon_sym_BSLASHitem] = ACTIONS(6003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6007), - [anon_sym_LBRACE] = ACTIONS(6007), - [sym_word] = ACTIONS(6003), - [sym_placeholder] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6007), - [anon_sym_DASH] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_SLASH] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6003), - [anon_sym_GT] = ACTIONS(6003), - [anon_sym_BANG] = ACTIONS(6003), - [anon_sym_PIPE] = ACTIONS(6003), - [anon_sym_COLON] = ACTIONS(6003), - [anon_sym_SQUOTE] = ACTIONS(6003), - [anon_sym__] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6007), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6007), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6007), - [anon_sym_DOLLAR] = ACTIONS(6003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6007), - [anon_sym_BSLASHbegin] = ACTIONS(6003), - [anon_sym_BSLASHtitle] = ACTIONS(6003), - [anon_sym_BSLASHauthor] = ACTIONS(6003), - [anon_sym_BSLASHusepackage] = ACTIONS(6003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), - [anon_sym_BSLASHinclude] = ACTIONS(6003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), - [anon_sym_BSLASHinput] = ACTIONS(6003), - [anon_sym_BSLASHsubfile] = ACTIONS(6003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), - [anon_sym_BSLASHbibliography] = ACTIONS(6003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), - [anon_sym_BSLASHincludesvg] = ACTIONS(6003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), - [anon_sym_BSLASHimport] = ACTIONS(6003), - [anon_sym_BSLASHsubimport] = ACTIONS(6003), - [anon_sym_BSLASHinputfrom] = ACTIONS(6003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), - [anon_sym_BSLASHincludefrom] = ACTIONS(6003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), - [anon_sym_BSLASHcaption] = ACTIONS(6003), - [anon_sym_BSLASHcite] = ACTIONS(6003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCite] = ACTIONS(6003), - [anon_sym_BSLASHnocite] = ACTIONS(6003), - [anon_sym_BSLASHcitet] = ACTIONS(6003), - [anon_sym_BSLASHcitep] = ACTIONS(6003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteauthor] = ACTIONS(6003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitetitle] = ACTIONS(6003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteyear] = ACTIONS(6003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitedate] = ACTIONS(6003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteurl] = ACTIONS(6003), - [anon_sym_BSLASHfullcite] = ACTIONS(6003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), - [anon_sym_BSLASHcitealt] = ACTIONS(6003), - [anon_sym_BSLASHcitealp] = ACTIONS(6003), - [anon_sym_BSLASHcitetext] = ACTIONS(6003), - [anon_sym_BSLASHparencite] = ACTIONS(6003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHParencite] = ACTIONS(6003), - [anon_sym_BSLASHfootcite] = ACTIONS(6003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), - [anon_sym_BSLASHtextcite] = ACTIONS(6003), - [anon_sym_BSLASHTextcite] = ACTIONS(6003), - [anon_sym_BSLASHsmartcite] = ACTIONS(6003), - [anon_sym_BSLASHSmartcite] = ACTIONS(6003), - [anon_sym_BSLASHsupercite] = ACTIONS(6003), - [anon_sym_BSLASHautocite] = ACTIONS(6003), - [anon_sym_BSLASHAutocite] = ACTIONS(6003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHvolcite] = ACTIONS(6003), - [anon_sym_BSLASHVolcite] = ACTIONS(6003), - [anon_sym_BSLASHpvolcite] = ACTIONS(6003), - [anon_sym_BSLASHPvolcite] = ACTIONS(6003), - [anon_sym_BSLASHfvolcite] = ACTIONS(6003), - [anon_sym_BSLASHftvolcite] = ACTIONS(6003), - [anon_sym_BSLASHsvolcite] = ACTIONS(6003), - [anon_sym_BSLASHSvolcite] = ACTIONS(6003), - [anon_sym_BSLASHtvolcite] = ACTIONS(6003), - [anon_sym_BSLASHTvolcite] = ACTIONS(6003), - [anon_sym_BSLASHavolcite] = ACTIONS(6003), - [anon_sym_BSLASHAvolcite] = ACTIONS(6003), - [anon_sym_BSLASHnotecite] = ACTIONS(6003), - [anon_sym_BSLASHNotecite] = ACTIONS(6003), - [anon_sym_BSLASHpnotecite] = ACTIONS(6003), - [anon_sym_BSLASHPnotecite] = ACTIONS(6003), - [anon_sym_BSLASHfnotecite] = ACTIONS(6003), - [anon_sym_BSLASHlabel] = ACTIONS(6003), - [anon_sym_BSLASHref] = ACTIONS(6003), - [anon_sym_BSLASHeqref] = ACTIONS(6003), - [anon_sym_BSLASHvref] = ACTIONS(6003), - [anon_sym_BSLASHVref] = ACTIONS(6003), - [anon_sym_BSLASHautoref] = ACTIONS(6003), - [anon_sym_BSLASHpageref] = ACTIONS(6003), - [anon_sym_BSLASHcref] = ACTIONS(6003), - [anon_sym_BSLASHCref] = ACTIONS(6003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6007), - [anon_sym_BSLASHnamecref] = ACTIONS(6003), - [anon_sym_BSLASHnameCref] = ACTIONS(6003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), - [anon_sym_BSLASHlabelcref] = ACTIONS(6003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), - [anon_sym_BSLASHcrefrange] = ACTIONS(6003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCrefrange] = ACTIONS(6003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6007), - [anon_sym_BSLASHnewlabel] = ACTIONS(6003), - [anon_sym_BSLASHnewcommand] = ACTIONS(6003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6007), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHdef] = ACTIONS(6003), - [anon_sym_BSLASHlet] = ACTIONS(6003), - [anon_sym_BSLASHleft] = ACTIONS(6003), - [anon_sym_BSLASHbig] = ACTIONS(6003), - [anon_sym_BSLASHBig] = ACTIONS(6003), - [anon_sym_BSLASHbigg] = ACTIONS(6003), - [anon_sym_BSLASHBigg] = ACTIONS(6003), - [anon_sym_BSLASHbigl] = ACTIONS(6003), - [anon_sym_BSLASHBigl] = ACTIONS(6003), - [anon_sym_BSLASHbiggl] = ACTIONS(6003), - [anon_sym_BSLASHBiggl] = ACTIONS(6003), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6003), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), - [anon_sym_BSLASHgls] = ACTIONS(6003), - [anon_sym_BSLASHGls] = ACTIONS(6003), - [anon_sym_BSLASHGLS] = ACTIONS(6003), - [anon_sym_BSLASHglspl] = ACTIONS(6003), - [anon_sym_BSLASHGlspl] = ACTIONS(6003), - [anon_sym_BSLASHGLSpl] = ACTIONS(6003), - [anon_sym_BSLASHglsdisp] = ACTIONS(6003), - [anon_sym_BSLASHglslink] = ACTIONS(6003), - [anon_sym_BSLASHglstext] = ACTIONS(6003), - [anon_sym_BSLASHGlstext] = ACTIONS(6003), - [anon_sym_BSLASHGLStext] = ACTIONS(6003), - [anon_sym_BSLASHglsfirst] = ACTIONS(6003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), - [anon_sym_BSLASHglsplural] = ACTIONS(6003), - [anon_sym_BSLASHGlsplural] = ACTIONS(6003), - [anon_sym_BSLASHGLSplural] = ACTIONS(6003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHglsname] = ACTIONS(6003), - [anon_sym_BSLASHGlsname] = ACTIONS(6003), - [anon_sym_BSLASHGLSname] = ACTIONS(6003), - [anon_sym_BSLASHglssymbol] = ACTIONS(6003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), - [anon_sym_BSLASHglsdesc] = ACTIONS(6003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), - [anon_sym_BSLASHglsuseri] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), - [anon_sym_BSLASHglsuserii] = ACTIONS(6003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), - [anon_sym_BSLASHglsuserv] = ACTIONS(6003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), - [anon_sym_BSLASHglsuservi] = ACTIONS(6003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), - [anon_sym_BSLASHnewacronym] = ACTIONS(6003), - [anon_sym_BSLASHacrshort] = ACTIONS(6003), - [anon_sym_BSLASHAcrshort] = ACTIONS(6003), - [anon_sym_BSLASHACRshort] = ACTIONS(6003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), - [anon_sym_BSLASHacrlong] = ACTIONS(6003), - [anon_sym_BSLASHAcrlong] = ACTIONS(6003), - [anon_sym_BSLASHACRlong] = ACTIONS(6003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), - [anon_sym_BSLASHacrfull] = ACTIONS(6003), - [anon_sym_BSLASHAcrfull] = ACTIONS(6003), - [anon_sym_BSLASHACRfull] = ACTIONS(6003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), - [anon_sym_BSLASHacs] = ACTIONS(6003), - [anon_sym_BSLASHAcs] = ACTIONS(6003), - [anon_sym_BSLASHacsp] = ACTIONS(6003), - [anon_sym_BSLASHAcsp] = ACTIONS(6003), - [anon_sym_BSLASHacl] = ACTIONS(6003), - [anon_sym_BSLASHAcl] = ACTIONS(6003), - [anon_sym_BSLASHaclp] = ACTIONS(6003), - [anon_sym_BSLASHAclp] = ACTIONS(6003), - [anon_sym_BSLASHacf] = ACTIONS(6003), - [anon_sym_BSLASHAcf] = ACTIONS(6003), - [anon_sym_BSLASHacfp] = ACTIONS(6003), - [anon_sym_BSLASHAcfp] = ACTIONS(6003), - [anon_sym_BSLASHac] = ACTIONS(6003), - [anon_sym_BSLASHAc] = ACTIONS(6003), - [anon_sym_BSLASHacp] = ACTIONS(6003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), - [anon_sym_BSLASHcolor] = ACTIONS(6003), - [anon_sym_BSLASHcolorbox] = ACTIONS(6003), - [anon_sym_BSLASHtextcolor] = ACTIONS(6003), - [anon_sym_BSLASHpagecolor] = ACTIONS(6003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), - [anon_sym_BSLASHtext] = ACTIONS(6003), - [anon_sym_BSLASHintertext] = ACTIONS(6003), - [anon_sym_shortintertext] = ACTIONS(6003), - }, - [927] = { - [ts_builtin_sym_end] = ACTIONS(6283), - [sym_command_name] = ACTIONS(6281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6281), - [anon_sym_LBRACK] = ACTIONS(6283), - [anon_sym_RBRACK] = ACTIONS(6283), - [anon_sym_COMMA] = ACTIONS(6283), - [anon_sym_EQ] = ACTIONS(6283), - [anon_sym_LPAREN] = ACTIONS(6283), - [anon_sym_RPAREN] = ACTIONS(6283), - [anon_sym_BSLASHpart] = ACTIONS(6281), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddpart] = ACTIONS(6281), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6283), - [anon_sym_BSLASHchapter] = ACTIONS(6281), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddchap] = ACTIONS(6281), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsection] = ACTIONS(6281), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddsec] = ACTIONS(6281), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubsection] = ACTIONS(6281), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6281), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHparagraph] = ACTIONS(6281), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6281), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6283), - [anon_sym_BSLASHitem] = ACTIONS(6281), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6283), - [anon_sym_LBRACE] = ACTIONS(6283), - [anon_sym_RBRACE] = ACTIONS(6283), - [sym_word] = ACTIONS(6281), - [sym_placeholder] = ACTIONS(6283), - [anon_sym_PLUS] = ACTIONS(6283), - [anon_sym_DASH] = ACTIONS(6283), - [anon_sym_STAR] = ACTIONS(6283), - [anon_sym_SLASH] = ACTIONS(6283), - [anon_sym_LT] = ACTIONS(6281), - [anon_sym_GT] = ACTIONS(6281), - [anon_sym_BANG] = ACTIONS(6281), - [anon_sym_PIPE] = ACTIONS(6281), - [anon_sym_COLON] = ACTIONS(6281), - [anon_sym_SQUOTE] = ACTIONS(6281), - [anon_sym__] = ACTIONS(6283), - [anon_sym_CARET] = ACTIONS(6283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6283), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6283), - [anon_sym_DOLLAR] = ACTIONS(6281), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6283), - [anon_sym_BSLASHbegin] = ACTIONS(6281), - [anon_sym_BSLASHtitle] = ACTIONS(6281), - [anon_sym_BSLASHauthor] = ACTIONS(6281), - [anon_sym_BSLASHusepackage] = ACTIONS(6281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6281), - [anon_sym_BSLASHinclude] = ACTIONS(6281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6281), - [anon_sym_BSLASHinput] = ACTIONS(6281), - [anon_sym_BSLASHsubfile] = ACTIONS(6281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6281), - [anon_sym_BSLASHbibliography] = ACTIONS(6281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6281), - [anon_sym_BSLASHincludesvg] = ACTIONS(6281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6281), - [anon_sym_BSLASHimport] = ACTIONS(6281), - [anon_sym_BSLASHsubimport] = ACTIONS(6281), - [anon_sym_BSLASHinputfrom] = ACTIONS(6281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6281), - [anon_sym_BSLASHincludefrom] = ACTIONS(6281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6281), - [anon_sym_BSLASHcaption] = ACTIONS(6281), - [anon_sym_BSLASHcite] = ACTIONS(6281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCite] = ACTIONS(6281), - [anon_sym_BSLASHnocite] = ACTIONS(6281), - [anon_sym_BSLASHcitet] = ACTIONS(6281), - [anon_sym_BSLASHcitep] = ACTIONS(6281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteauthor] = ACTIONS(6281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitetitle] = ACTIONS(6281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteyear] = ACTIONS(6281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitedate] = ACTIONS(6281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteurl] = ACTIONS(6281), - [anon_sym_BSLASHfullcite] = ACTIONS(6281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6281), - [anon_sym_BSLASHcitealt] = ACTIONS(6281), - [anon_sym_BSLASHcitealp] = ACTIONS(6281), - [anon_sym_BSLASHcitetext] = ACTIONS(6281), - [anon_sym_BSLASHparencite] = ACTIONS(6281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHParencite] = ACTIONS(6281), - [anon_sym_BSLASHfootcite] = ACTIONS(6281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6281), - [anon_sym_BSLASHtextcite] = ACTIONS(6281), - [anon_sym_BSLASHTextcite] = ACTIONS(6281), - [anon_sym_BSLASHsmartcite] = ACTIONS(6281), - [anon_sym_BSLASHSmartcite] = ACTIONS(6281), - [anon_sym_BSLASHsupercite] = ACTIONS(6281), - [anon_sym_BSLASHautocite] = ACTIONS(6281), - [anon_sym_BSLASHAutocite] = ACTIONS(6281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHvolcite] = ACTIONS(6281), - [anon_sym_BSLASHVolcite] = ACTIONS(6281), - [anon_sym_BSLASHpvolcite] = ACTIONS(6281), - [anon_sym_BSLASHPvolcite] = ACTIONS(6281), - [anon_sym_BSLASHfvolcite] = ACTIONS(6281), - [anon_sym_BSLASHftvolcite] = ACTIONS(6281), - [anon_sym_BSLASHsvolcite] = ACTIONS(6281), - [anon_sym_BSLASHSvolcite] = ACTIONS(6281), - [anon_sym_BSLASHtvolcite] = ACTIONS(6281), - [anon_sym_BSLASHTvolcite] = ACTIONS(6281), - [anon_sym_BSLASHavolcite] = ACTIONS(6281), - [anon_sym_BSLASHAvolcite] = ACTIONS(6281), - [anon_sym_BSLASHnotecite] = ACTIONS(6281), - [anon_sym_BSLASHNotecite] = ACTIONS(6281), - [anon_sym_BSLASHpnotecite] = ACTIONS(6281), - [anon_sym_BSLASHPnotecite] = ACTIONS(6281), - [anon_sym_BSLASHfnotecite] = ACTIONS(6281), - [anon_sym_BSLASHlabel] = ACTIONS(6281), - [anon_sym_BSLASHref] = ACTIONS(6281), - [anon_sym_BSLASHeqref] = ACTIONS(6281), - [anon_sym_BSLASHvref] = ACTIONS(6281), - [anon_sym_BSLASHVref] = ACTIONS(6281), - [anon_sym_BSLASHautoref] = ACTIONS(6281), - [anon_sym_BSLASHpageref] = ACTIONS(6281), - [anon_sym_BSLASHcref] = ACTIONS(6281), - [anon_sym_BSLASHCref] = ACTIONS(6281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6283), - [anon_sym_BSLASHnamecref] = ACTIONS(6281), - [anon_sym_BSLASHnameCref] = ACTIONS(6281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6281), - [anon_sym_BSLASHlabelcref] = ACTIONS(6281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6281), - [anon_sym_BSLASHcrefrange] = ACTIONS(6281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCrefrange] = ACTIONS(6281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6283), - [anon_sym_BSLASHnewlabel] = ACTIONS(6281), - [anon_sym_BSLASHnewcommand] = ACTIONS(6281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6283), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHdef] = ACTIONS(6281), - [anon_sym_BSLASHlet] = ACTIONS(6281), - [anon_sym_BSLASHleft] = ACTIONS(6281), - [anon_sym_BSLASHbig] = ACTIONS(6281), - [anon_sym_BSLASHBig] = ACTIONS(6281), - [anon_sym_BSLASHbigg] = ACTIONS(6281), - [anon_sym_BSLASHBigg] = ACTIONS(6281), - [anon_sym_BSLASHbigl] = ACTIONS(6281), - [anon_sym_BSLASHBigl] = ACTIONS(6281), - [anon_sym_BSLASHbiggl] = ACTIONS(6281), - [anon_sym_BSLASHBiggl] = ACTIONS(6281), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6281), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6281), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6281), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6281), - [anon_sym_BSLASHgls] = ACTIONS(6281), - [anon_sym_BSLASHGls] = ACTIONS(6281), - [anon_sym_BSLASHGLS] = ACTIONS(6281), - [anon_sym_BSLASHglspl] = ACTIONS(6281), - [anon_sym_BSLASHGlspl] = ACTIONS(6281), - [anon_sym_BSLASHGLSpl] = ACTIONS(6281), - [anon_sym_BSLASHglsdisp] = ACTIONS(6281), - [anon_sym_BSLASHglslink] = ACTIONS(6281), - [anon_sym_BSLASHglstext] = ACTIONS(6281), - [anon_sym_BSLASHGlstext] = ACTIONS(6281), - [anon_sym_BSLASHGLStext] = ACTIONS(6281), - [anon_sym_BSLASHglsfirst] = ACTIONS(6281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6281), - [anon_sym_BSLASHglsplural] = ACTIONS(6281), - [anon_sym_BSLASHGlsplural] = ACTIONS(6281), - [anon_sym_BSLASHGLSplural] = ACTIONS(6281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHglsname] = ACTIONS(6281), - [anon_sym_BSLASHGlsname] = ACTIONS(6281), - [anon_sym_BSLASHGLSname] = ACTIONS(6281), - [anon_sym_BSLASHglssymbol] = ACTIONS(6281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6281), - [anon_sym_BSLASHglsdesc] = ACTIONS(6281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6281), - [anon_sym_BSLASHglsuseri] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6281), - [anon_sym_BSLASHglsuserii] = ACTIONS(6281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6281), - [anon_sym_BSLASHglsuserv] = ACTIONS(6281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6281), - [anon_sym_BSLASHglsuservi] = ACTIONS(6281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6281), - [anon_sym_BSLASHnewacronym] = ACTIONS(6281), - [anon_sym_BSLASHacrshort] = ACTIONS(6281), - [anon_sym_BSLASHAcrshort] = ACTIONS(6281), - [anon_sym_BSLASHACRshort] = ACTIONS(6281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6281), - [anon_sym_BSLASHacrlong] = ACTIONS(6281), - [anon_sym_BSLASHAcrlong] = ACTIONS(6281), - [anon_sym_BSLASHACRlong] = ACTIONS(6281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6281), - [anon_sym_BSLASHacrfull] = ACTIONS(6281), - [anon_sym_BSLASHAcrfull] = ACTIONS(6281), - [anon_sym_BSLASHACRfull] = ACTIONS(6281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6281), - [anon_sym_BSLASHacs] = ACTIONS(6281), - [anon_sym_BSLASHAcs] = ACTIONS(6281), - [anon_sym_BSLASHacsp] = ACTIONS(6281), - [anon_sym_BSLASHAcsp] = ACTIONS(6281), - [anon_sym_BSLASHacl] = ACTIONS(6281), - [anon_sym_BSLASHAcl] = ACTIONS(6281), - [anon_sym_BSLASHaclp] = ACTIONS(6281), - [anon_sym_BSLASHAclp] = ACTIONS(6281), - [anon_sym_BSLASHacf] = ACTIONS(6281), - [anon_sym_BSLASHAcf] = ACTIONS(6281), - [anon_sym_BSLASHacfp] = ACTIONS(6281), - [anon_sym_BSLASHAcfp] = ACTIONS(6281), - [anon_sym_BSLASHac] = ACTIONS(6281), - [anon_sym_BSLASHAc] = ACTIONS(6281), - [anon_sym_BSLASHacp] = ACTIONS(6281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6281), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6283), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6281), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6283), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6281), - [anon_sym_BSLASHcolor] = ACTIONS(6281), - [anon_sym_BSLASHcolorbox] = ACTIONS(6281), - [anon_sym_BSLASHtextcolor] = ACTIONS(6281), - [anon_sym_BSLASHpagecolor] = ACTIONS(6281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6281), - [anon_sym_BSLASHtext] = ACTIONS(6281), - [anon_sym_BSLASHintertext] = ACTIONS(6281), - [anon_sym_shortintertext] = ACTIONS(6281), - }, - [928] = { - [ts_builtin_sym_end] = ACTIONS(6287), - [sym_command_name] = ACTIONS(6285), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6285), - [anon_sym_LBRACK] = ACTIONS(6287), - [anon_sym_RBRACK] = ACTIONS(6287), - [anon_sym_COMMA] = ACTIONS(6287), - [anon_sym_EQ] = ACTIONS(6287), - [anon_sym_LPAREN] = ACTIONS(6287), - [anon_sym_RPAREN] = ACTIONS(6287), - [anon_sym_BSLASHpart] = ACTIONS(6285), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddpart] = ACTIONS(6285), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6287), - [anon_sym_BSLASHchapter] = ACTIONS(6285), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddchap] = ACTIONS(6285), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsection] = ACTIONS(6285), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddsec] = ACTIONS(6285), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubsection] = ACTIONS(6285), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6285), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHparagraph] = ACTIONS(6285), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6285), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6287), - [anon_sym_BSLASHitem] = ACTIONS(6285), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6287), - [anon_sym_LBRACE] = ACTIONS(6287), - [anon_sym_RBRACE] = ACTIONS(6287), - [sym_word] = ACTIONS(6285), - [sym_placeholder] = ACTIONS(6287), - [anon_sym_PLUS] = ACTIONS(6287), - [anon_sym_DASH] = ACTIONS(6287), - [anon_sym_STAR] = ACTIONS(6287), - [anon_sym_SLASH] = ACTIONS(6287), - [anon_sym_LT] = ACTIONS(6285), - [anon_sym_GT] = ACTIONS(6285), - [anon_sym_BANG] = ACTIONS(6285), - [anon_sym_PIPE] = ACTIONS(6285), - [anon_sym_COLON] = ACTIONS(6285), - [anon_sym_SQUOTE] = ACTIONS(6285), - [anon_sym__] = ACTIONS(6287), - [anon_sym_CARET] = ACTIONS(6287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6287), - [anon_sym_DOLLAR] = ACTIONS(6285), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6287), - [anon_sym_BSLASHbegin] = ACTIONS(6285), - [anon_sym_BSLASHtitle] = ACTIONS(6285), - [anon_sym_BSLASHauthor] = ACTIONS(6285), - [anon_sym_BSLASHusepackage] = ACTIONS(6285), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6285), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6285), - [anon_sym_BSLASHinclude] = ACTIONS(6285), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6285), - [anon_sym_BSLASHinput] = ACTIONS(6285), - [anon_sym_BSLASHsubfile] = ACTIONS(6285), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6285), - [anon_sym_BSLASHbibliography] = ACTIONS(6285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6285), - [anon_sym_BSLASHincludesvg] = ACTIONS(6285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6285), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6285), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6285), - [anon_sym_BSLASHimport] = ACTIONS(6285), - [anon_sym_BSLASHsubimport] = ACTIONS(6285), - [anon_sym_BSLASHinputfrom] = ACTIONS(6285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6285), - [anon_sym_BSLASHincludefrom] = ACTIONS(6285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6285), - [anon_sym_BSLASHcaption] = ACTIONS(6285), - [anon_sym_BSLASHcite] = ACTIONS(6285), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCite] = ACTIONS(6285), - [anon_sym_BSLASHnocite] = ACTIONS(6285), - [anon_sym_BSLASHcitet] = ACTIONS(6285), - [anon_sym_BSLASHcitep] = ACTIONS(6285), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteauthor] = ACTIONS(6285), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6285), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitetitle] = ACTIONS(6285), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteyear] = ACTIONS(6285), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitedate] = ACTIONS(6285), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteurl] = ACTIONS(6285), - [anon_sym_BSLASHfullcite] = ACTIONS(6285), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6285), - [anon_sym_BSLASHcitealt] = ACTIONS(6285), - [anon_sym_BSLASHcitealp] = ACTIONS(6285), - [anon_sym_BSLASHcitetext] = ACTIONS(6285), - [anon_sym_BSLASHparencite] = ACTIONS(6285), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHParencite] = ACTIONS(6285), - [anon_sym_BSLASHfootcite] = ACTIONS(6285), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6285), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6285), - [anon_sym_BSLASHtextcite] = ACTIONS(6285), - [anon_sym_BSLASHTextcite] = ACTIONS(6285), - [anon_sym_BSLASHsmartcite] = ACTIONS(6285), - [anon_sym_BSLASHSmartcite] = ACTIONS(6285), - [anon_sym_BSLASHsupercite] = ACTIONS(6285), - [anon_sym_BSLASHautocite] = ACTIONS(6285), - [anon_sym_BSLASHAutocite] = ACTIONS(6285), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHvolcite] = ACTIONS(6285), - [anon_sym_BSLASHVolcite] = ACTIONS(6285), - [anon_sym_BSLASHpvolcite] = ACTIONS(6285), - [anon_sym_BSLASHPvolcite] = ACTIONS(6285), - [anon_sym_BSLASHfvolcite] = ACTIONS(6285), - [anon_sym_BSLASHftvolcite] = ACTIONS(6285), - [anon_sym_BSLASHsvolcite] = ACTIONS(6285), - [anon_sym_BSLASHSvolcite] = ACTIONS(6285), - [anon_sym_BSLASHtvolcite] = ACTIONS(6285), - [anon_sym_BSLASHTvolcite] = ACTIONS(6285), - [anon_sym_BSLASHavolcite] = ACTIONS(6285), - [anon_sym_BSLASHAvolcite] = ACTIONS(6285), - [anon_sym_BSLASHnotecite] = ACTIONS(6285), - [anon_sym_BSLASHNotecite] = ACTIONS(6285), - [anon_sym_BSLASHpnotecite] = ACTIONS(6285), - [anon_sym_BSLASHPnotecite] = ACTIONS(6285), - [anon_sym_BSLASHfnotecite] = ACTIONS(6285), - [anon_sym_BSLASHlabel] = ACTIONS(6285), - [anon_sym_BSLASHref] = ACTIONS(6285), - [anon_sym_BSLASHeqref] = ACTIONS(6285), - [anon_sym_BSLASHvref] = ACTIONS(6285), - [anon_sym_BSLASHVref] = ACTIONS(6285), - [anon_sym_BSLASHautoref] = ACTIONS(6285), - [anon_sym_BSLASHpageref] = ACTIONS(6285), - [anon_sym_BSLASHcref] = ACTIONS(6285), - [anon_sym_BSLASHCref] = ACTIONS(6285), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6287), - [anon_sym_BSLASHnamecref] = ACTIONS(6285), - [anon_sym_BSLASHnameCref] = ACTIONS(6285), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6285), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6285), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6285), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6285), - [anon_sym_BSLASHlabelcref] = ACTIONS(6285), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6285), - [anon_sym_BSLASHcrefrange] = ACTIONS(6285), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCrefrange] = ACTIONS(6285), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6287), - [anon_sym_BSLASHnewlabel] = ACTIONS(6285), - [anon_sym_BSLASHnewcommand] = ACTIONS(6285), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6285), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6285), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6287), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHdef] = ACTIONS(6285), - [anon_sym_BSLASHlet] = ACTIONS(6285), - [anon_sym_BSLASHleft] = ACTIONS(6285), - [anon_sym_BSLASHbig] = ACTIONS(6285), - [anon_sym_BSLASHBig] = ACTIONS(6285), - [anon_sym_BSLASHbigg] = ACTIONS(6285), - [anon_sym_BSLASHBigg] = ACTIONS(6285), - [anon_sym_BSLASHbigl] = ACTIONS(6285), - [anon_sym_BSLASHBigl] = ACTIONS(6285), - [anon_sym_BSLASHbiggl] = ACTIONS(6285), - [anon_sym_BSLASHBiggl] = ACTIONS(6285), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6285), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6285), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6285), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6285), - [anon_sym_BSLASHgls] = ACTIONS(6285), - [anon_sym_BSLASHGls] = ACTIONS(6285), - [anon_sym_BSLASHGLS] = ACTIONS(6285), - [anon_sym_BSLASHglspl] = ACTIONS(6285), - [anon_sym_BSLASHGlspl] = ACTIONS(6285), - [anon_sym_BSLASHGLSpl] = ACTIONS(6285), - [anon_sym_BSLASHglsdisp] = ACTIONS(6285), - [anon_sym_BSLASHglslink] = ACTIONS(6285), - [anon_sym_BSLASHglstext] = ACTIONS(6285), - [anon_sym_BSLASHGlstext] = ACTIONS(6285), - [anon_sym_BSLASHGLStext] = ACTIONS(6285), - [anon_sym_BSLASHglsfirst] = ACTIONS(6285), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6285), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6285), - [anon_sym_BSLASHglsplural] = ACTIONS(6285), - [anon_sym_BSLASHGlsplural] = ACTIONS(6285), - [anon_sym_BSLASHGLSplural] = ACTIONS(6285), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHglsname] = ACTIONS(6285), - [anon_sym_BSLASHGlsname] = ACTIONS(6285), - [anon_sym_BSLASHGLSname] = ACTIONS(6285), - [anon_sym_BSLASHglssymbol] = ACTIONS(6285), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6285), - [anon_sym_BSLASHglsdesc] = ACTIONS(6285), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6285), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6285), - [anon_sym_BSLASHglsuseri] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6285), - [anon_sym_BSLASHglsuserii] = ACTIONS(6285), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6285), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6285), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6285), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6285), - [anon_sym_BSLASHglsuserv] = ACTIONS(6285), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6285), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6285), - [anon_sym_BSLASHglsuservi] = ACTIONS(6285), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6285), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6285), - [anon_sym_BSLASHnewacronym] = ACTIONS(6285), - [anon_sym_BSLASHacrshort] = ACTIONS(6285), - [anon_sym_BSLASHAcrshort] = ACTIONS(6285), - [anon_sym_BSLASHACRshort] = ACTIONS(6285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6285), - [anon_sym_BSLASHacrlong] = ACTIONS(6285), - [anon_sym_BSLASHAcrlong] = ACTIONS(6285), - [anon_sym_BSLASHACRlong] = ACTIONS(6285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6285), - [anon_sym_BSLASHacrfull] = ACTIONS(6285), - [anon_sym_BSLASHAcrfull] = ACTIONS(6285), - [anon_sym_BSLASHACRfull] = ACTIONS(6285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6285), - [anon_sym_BSLASHacs] = ACTIONS(6285), - [anon_sym_BSLASHAcs] = ACTIONS(6285), - [anon_sym_BSLASHacsp] = ACTIONS(6285), - [anon_sym_BSLASHAcsp] = ACTIONS(6285), - [anon_sym_BSLASHacl] = ACTIONS(6285), - [anon_sym_BSLASHAcl] = ACTIONS(6285), - [anon_sym_BSLASHaclp] = ACTIONS(6285), - [anon_sym_BSLASHAclp] = ACTIONS(6285), - [anon_sym_BSLASHacf] = ACTIONS(6285), - [anon_sym_BSLASHAcf] = ACTIONS(6285), - [anon_sym_BSLASHacfp] = ACTIONS(6285), - [anon_sym_BSLASHAcfp] = ACTIONS(6285), - [anon_sym_BSLASHac] = ACTIONS(6285), - [anon_sym_BSLASHAc] = ACTIONS(6285), - [anon_sym_BSLASHacp] = ACTIONS(6285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6285), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6287), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6285), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6287), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6285), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6285), - [anon_sym_BSLASHcolor] = ACTIONS(6285), - [anon_sym_BSLASHcolorbox] = ACTIONS(6285), - [anon_sym_BSLASHtextcolor] = ACTIONS(6285), - [anon_sym_BSLASHpagecolor] = ACTIONS(6285), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6285), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6285), - [anon_sym_BSLASHtext] = ACTIONS(6285), - [anon_sym_BSLASHintertext] = ACTIONS(6285), - [anon_sym_shortintertext] = ACTIONS(6285), - }, - [929] = { - [ts_builtin_sym_end] = ACTIONS(6035), - [sym_command_name] = ACTIONS(6033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6033), - [anon_sym_LBRACK] = ACTIONS(6035), - [anon_sym_RBRACK] = ACTIONS(6035), - [anon_sym_COMMA] = ACTIONS(6035), - [anon_sym_EQ] = ACTIONS(6035), - [anon_sym_LPAREN] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_BSLASHpart] = ACTIONS(6033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddpart] = ACTIONS(6033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6035), - [anon_sym_BSLASHchapter] = ACTIONS(6033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddchap] = ACTIONS(6033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsection] = ACTIONS(6033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddsec] = ACTIONS(6033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubsection] = ACTIONS(6033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHparagraph] = ACTIONS(6033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6035), - [anon_sym_BSLASHitem] = ACTIONS(6033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6035), - [anon_sym_LBRACE] = ACTIONS(6035), - [anon_sym_RBRACE] = ACTIONS(6035), - [sym_word] = ACTIONS(6033), - [sym_placeholder] = ACTIONS(6035), - [anon_sym_PLUS] = ACTIONS(6035), - [anon_sym_DASH] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6035), - [anon_sym_SLASH] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_COLON] = ACTIONS(6033), - [anon_sym_SQUOTE] = ACTIONS(6033), - [anon_sym__] = ACTIONS(6035), - [anon_sym_CARET] = ACTIONS(6035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6035), - [anon_sym_BSLASHbegin] = ACTIONS(6033), - [anon_sym_BSLASHtitle] = ACTIONS(6033), - [anon_sym_BSLASHauthor] = ACTIONS(6033), - [anon_sym_BSLASHusepackage] = ACTIONS(6033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), - [anon_sym_BSLASHinclude] = ACTIONS(6033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), - [anon_sym_BSLASHinput] = ACTIONS(6033), - [anon_sym_BSLASHsubfile] = ACTIONS(6033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), - [anon_sym_BSLASHbibliography] = ACTIONS(6033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), - [anon_sym_BSLASHincludesvg] = ACTIONS(6033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), - [anon_sym_BSLASHimport] = ACTIONS(6033), - [anon_sym_BSLASHsubimport] = ACTIONS(6033), - [anon_sym_BSLASHinputfrom] = ACTIONS(6033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), - [anon_sym_BSLASHincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHcaption] = ACTIONS(6033), - [anon_sym_BSLASHcite] = ACTIONS(6033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCite] = ACTIONS(6033), - [anon_sym_BSLASHnocite] = ACTIONS(6033), - [anon_sym_BSLASHcitet] = ACTIONS(6033), - [anon_sym_BSLASHcitep] = ACTIONS(6033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteauthor] = ACTIONS(6033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitetitle] = ACTIONS(6033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteyear] = ACTIONS(6033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitedate] = ACTIONS(6033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteurl] = ACTIONS(6033), - [anon_sym_BSLASHfullcite] = ACTIONS(6033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), - [anon_sym_BSLASHcitealt] = ACTIONS(6033), - [anon_sym_BSLASHcitealp] = ACTIONS(6033), - [anon_sym_BSLASHcitetext] = ACTIONS(6033), - [anon_sym_BSLASHparencite] = ACTIONS(6033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHParencite] = ACTIONS(6033), - [anon_sym_BSLASHfootcite] = ACTIONS(6033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), - [anon_sym_BSLASHtextcite] = ACTIONS(6033), - [anon_sym_BSLASHTextcite] = ACTIONS(6033), - [anon_sym_BSLASHsmartcite] = ACTIONS(6033), - [anon_sym_BSLASHSmartcite] = ACTIONS(6033), - [anon_sym_BSLASHsupercite] = ACTIONS(6033), - [anon_sym_BSLASHautocite] = ACTIONS(6033), - [anon_sym_BSLASHAutocite] = ACTIONS(6033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHvolcite] = ACTIONS(6033), - [anon_sym_BSLASHVolcite] = ACTIONS(6033), - [anon_sym_BSLASHpvolcite] = ACTIONS(6033), - [anon_sym_BSLASHPvolcite] = ACTIONS(6033), - [anon_sym_BSLASHfvolcite] = ACTIONS(6033), - [anon_sym_BSLASHftvolcite] = ACTIONS(6033), - [anon_sym_BSLASHsvolcite] = ACTIONS(6033), - [anon_sym_BSLASHSvolcite] = ACTIONS(6033), - [anon_sym_BSLASHtvolcite] = ACTIONS(6033), - [anon_sym_BSLASHTvolcite] = ACTIONS(6033), - [anon_sym_BSLASHavolcite] = ACTIONS(6033), - [anon_sym_BSLASHAvolcite] = ACTIONS(6033), - [anon_sym_BSLASHnotecite] = ACTIONS(6033), - [anon_sym_BSLASHNotecite] = ACTIONS(6033), - [anon_sym_BSLASHpnotecite] = ACTIONS(6033), - [anon_sym_BSLASHPnotecite] = ACTIONS(6033), - [anon_sym_BSLASHfnotecite] = ACTIONS(6033), - [anon_sym_BSLASHlabel] = ACTIONS(6033), - [anon_sym_BSLASHref] = ACTIONS(6033), - [anon_sym_BSLASHeqref] = ACTIONS(6033), - [anon_sym_BSLASHvref] = ACTIONS(6033), - [anon_sym_BSLASHVref] = ACTIONS(6033), - [anon_sym_BSLASHautoref] = ACTIONS(6033), - [anon_sym_BSLASHpageref] = ACTIONS(6033), - [anon_sym_BSLASHcref] = ACTIONS(6033), - [anon_sym_BSLASHCref] = ACTIONS(6033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnameCref] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHlabelcref] = ACTIONS(6033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCrefrange] = ACTIONS(6033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnewlabel] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6035), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHdef] = ACTIONS(6033), - [anon_sym_BSLASHlet] = ACTIONS(6033), - [anon_sym_BSLASHleft] = ACTIONS(6033), - [anon_sym_BSLASHbig] = ACTIONS(6033), - [anon_sym_BSLASHBig] = ACTIONS(6033), - [anon_sym_BSLASHbigg] = ACTIONS(6033), - [anon_sym_BSLASHBigg] = ACTIONS(6033), - [anon_sym_BSLASHbigl] = ACTIONS(6033), - [anon_sym_BSLASHBigl] = ACTIONS(6033), - [anon_sym_BSLASHbiggl] = ACTIONS(6033), - [anon_sym_BSLASHBiggl] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), - [anon_sym_BSLASHgls] = ACTIONS(6033), - [anon_sym_BSLASHGls] = ACTIONS(6033), - [anon_sym_BSLASHGLS] = ACTIONS(6033), - [anon_sym_BSLASHglspl] = ACTIONS(6033), - [anon_sym_BSLASHGlspl] = ACTIONS(6033), - [anon_sym_BSLASHGLSpl] = ACTIONS(6033), - [anon_sym_BSLASHglsdisp] = ACTIONS(6033), - [anon_sym_BSLASHglslink] = ACTIONS(6033), - [anon_sym_BSLASHglstext] = ACTIONS(6033), - [anon_sym_BSLASHGlstext] = ACTIONS(6033), - [anon_sym_BSLASHGLStext] = ACTIONS(6033), - [anon_sym_BSLASHglsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), - [anon_sym_BSLASHglsplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSplural] = ACTIONS(6033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHglsname] = ACTIONS(6033), - [anon_sym_BSLASHGlsname] = ACTIONS(6033), - [anon_sym_BSLASHGLSname] = ACTIONS(6033), - [anon_sym_BSLASHglssymbol] = ACTIONS(6033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), - [anon_sym_BSLASHglsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), - [anon_sym_BSLASHglsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), - [anon_sym_BSLASHglsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), - [anon_sym_BSLASHglsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), - [anon_sym_BSLASHglsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), - [anon_sym_BSLASHnewacronym] = ACTIONS(6033), - [anon_sym_BSLASHacrshort] = ACTIONS(6033), - [anon_sym_BSLASHAcrshort] = ACTIONS(6033), - [anon_sym_BSLASHACRshort] = ACTIONS(6033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), - [anon_sym_BSLASHacrlong] = ACTIONS(6033), - [anon_sym_BSLASHAcrlong] = ACTIONS(6033), - [anon_sym_BSLASHACRlong] = ACTIONS(6033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), - [anon_sym_BSLASHacrfull] = ACTIONS(6033), - [anon_sym_BSLASHAcrfull] = ACTIONS(6033), - [anon_sym_BSLASHACRfull] = ACTIONS(6033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), - [anon_sym_BSLASHacs] = ACTIONS(6033), - [anon_sym_BSLASHAcs] = ACTIONS(6033), - [anon_sym_BSLASHacsp] = ACTIONS(6033), - [anon_sym_BSLASHAcsp] = ACTIONS(6033), - [anon_sym_BSLASHacl] = ACTIONS(6033), - [anon_sym_BSLASHAcl] = ACTIONS(6033), - [anon_sym_BSLASHaclp] = ACTIONS(6033), - [anon_sym_BSLASHAclp] = ACTIONS(6033), - [anon_sym_BSLASHacf] = ACTIONS(6033), - [anon_sym_BSLASHAcf] = ACTIONS(6033), - [anon_sym_BSLASHacfp] = ACTIONS(6033), - [anon_sym_BSLASHAcfp] = ACTIONS(6033), - [anon_sym_BSLASHac] = ACTIONS(6033), - [anon_sym_BSLASHAc] = ACTIONS(6033), - [anon_sym_BSLASHacp] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), - [anon_sym_BSLASHcolor] = ACTIONS(6033), - [anon_sym_BSLASHcolorbox] = ACTIONS(6033), - [anon_sym_BSLASHtextcolor] = ACTIONS(6033), - [anon_sym_BSLASHpagecolor] = ACTIONS(6033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), - [anon_sym_BSLASHtext] = ACTIONS(6033), - [anon_sym_BSLASHintertext] = ACTIONS(6033), - [anon_sym_shortintertext] = ACTIONS(6033), - }, - [930] = { - [ts_builtin_sym_end] = ACTIONS(6531), - [sym_command_name] = ACTIONS(6529), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6529), - [anon_sym_LBRACK] = ACTIONS(6531), - [anon_sym_RBRACK] = ACTIONS(6531), - [anon_sym_COMMA] = ACTIONS(6531), - [anon_sym_EQ] = ACTIONS(6531), - [anon_sym_LPAREN] = ACTIONS(6531), - [anon_sym_RPAREN] = ACTIONS(6531), - [anon_sym_BSLASHpart] = ACTIONS(6529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddpart] = ACTIONS(6529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6531), - [anon_sym_BSLASHchapter] = ACTIONS(6529), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddchap] = ACTIONS(6529), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsection] = ACTIONS(6529), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddsec] = ACTIONS(6529), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubsection] = ACTIONS(6529), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6529), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHparagraph] = ACTIONS(6529), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6529), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6531), - [anon_sym_BSLASHitem] = ACTIONS(6529), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6531), - [anon_sym_LBRACE] = ACTIONS(6531), - [anon_sym_RBRACE] = ACTIONS(6531), - [sym_word] = ACTIONS(6529), - [sym_placeholder] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6531), - [anon_sym_DASH] = ACTIONS(6531), - [anon_sym_STAR] = ACTIONS(6531), - [anon_sym_SLASH] = ACTIONS(6531), - [anon_sym_LT] = ACTIONS(6529), - [anon_sym_GT] = ACTIONS(6529), - [anon_sym_BANG] = ACTIONS(6529), - [anon_sym_PIPE] = ACTIONS(6529), - [anon_sym_COLON] = ACTIONS(6529), - [anon_sym_SQUOTE] = ACTIONS(6529), - [anon_sym__] = ACTIONS(6531), - [anon_sym_CARET] = ACTIONS(6531), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6531), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6531), - [anon_sym_DOLLAR] = ACTIONS(6529), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6531), - [anon_sym_BSLASHbegin] = ACTIONS(6529), - [anon_sym_BSLASHtitle] = ACTIONS(6529), - [anon_sym_BSLASHauthor] = ACTIONS(6529), - [anon_sym_BSLASHusepackage] = ACTIONS(6529), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6529), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6529), - [anon_sym_BSLASHinclude] = ACTIONS(6529), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6529), - [anon_sym_BSLASHinput] = ACTIONS(6529), - [anon_sym_BSLASHsubfile] = ACTIONS(6529), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6529), - [anon_sym_BSLASHbibliography] = ACTIONS(6529), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6529), - [anon_sym_BSLASHincludesvg] = ACTIONS(6529), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6529), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6529), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6529), - [anon_sym_BSLASHimport] = ACTIONS(6529), - [anon_sym_BSLASHsubimport] = ACTIONS(6529), - [anon_sym_BSLASHinputfrom] = ACTIONS(6529), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6529), - [anon_sym_BSLASHincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHcaption] = ACTIONS(6529), - [anon_sym_BSLASHcite] = ACTIONS(6529), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCite] = ACTIONS(6529), - [anon_sym_BSLASHnocite] = ACTIONS(6529), - [anon_sym_BSLASHcitet] = ACTIONS(6529), - [anon_sym_BSLASHcitep] = ACTIONS(6529), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteauthor] = ACTIONS(6529), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6529), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitetitle] = ACTIONS(6529), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteyear] = ACTIONS(6529), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitedate] = ACTIONS(6529), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteurl] = ACTIONS(6529), - [anon_sym_BSLASHfullcite] = ACTIONS(6529), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6529), - [anon_sym_BSLASHcitealt] = ACTIONS(6529), - [anon_sym_BSLASHcitealp] = ACTIONS(6529), - [anon_sym_BSLASHcitetext] = ACTIONS(6529), - [anon_sym_BSLASHparencite] = ACTIONS(6529), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHParencite] = ACTIONS(6529), - [anon_sym_BSLASHfootcite] = ACTIONS(6529), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6529), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6529), - [anon_sym_BSLASHtextcite] = ACTIONS(6529), - [anon_sym_BSLASHTextcite] = ACTIONS(6529), - [anon_sym_BSLASHsmartcite] = ACTIONS(6529), - [anon_sym_BSLASHSmartcite] = ACTIONS(6529), - [anon_sym_BSLASHsupercite] = ACTIONS(6529), - [anon_sym_BSLASHautocite] = ACTIONS(6529), - [anon_sym_BSLASHAutocite] = ACTIONS(6529), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHvolcite] = ACTIONS(6529), - [anon_sym_BSLASHVolcite] = ACTIONS(6529), - [anon_sym_BSLASHpvolcite] = ACTIONS(6529), - [anon_sym_BSLASHPvolcite] = ACTIONS(6529), - [anon_sym_BSLASHfvolcite] = ACTIONS(6529), - [anon_sym_BSLASHftvolcite] = ACTIONS(6529), - [anon_sym_BSLASHsvolcite] = ACTIONS(6529), - [anon_sym_BSLASHSvolcite] = ACTIONS(6529), - [anon_sym_BSLASHtvolcite] = ACTIONS(6529), - [anon_sym_BSLASHTvolcite] = ACTIONS(6529), - [anon_sym_BSLASHavolcite] = ACTIONS(6529), - [anon_sym_BSLASHAvolcite] = ACTIONS(6529), - [anon_sym_BSLASHnotecite] = ACTIONS(6529), - [anon_sym_BSLASHNotecite] = ACTIONS(6529), - [anon_sym_BSLASHpnotecite] = ACTIONS(6529), - [anon_sym_BSLASHPnotecite] = ACTIONS(6529), - [anon_sym_BSLASHfnotecite] = ACTIONS(6529), - [anon_sym_BSLASHlabel] = ACTIONS(6529), - [anon_sym_BSLASHref] = ACTIONS(6529), - [anon_sym_BSLASHeqref] = ACTIONS(6529), - [anon_sym_BSLASHvref] = ACTIONS(6529), - [anon_sym_BSLASHVref] = ACTIONS(6529), - [anon_sym_BSLASHautoref] = ACTIONS(6529), - [anon_sym_BSLASHpageref] = ACTIONS(6529), - [anon_sym_BSLASHcref] = ACTIONS(6529), - [anon_sym_BSLASHCref] = ACTIONS(6529), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnameCref] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHlabelcref] = ACTIONS(6529), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCrefrange] = ACTIONS(6529), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnewlabel] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6529), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6529), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6531), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHdef] = ACTIONS(6529), - [anon_sym_BSLASHlet] = ACTIONS(6529), - [anon_sym_BSLASHleft] = ACTIONS(6529), - [anon_sym_BSLASHbig] = ACTIONS(6529), - [anon_sym_BSLASHBig] = ACTIONS(6529), - [anon_sym_BSLASHbigg] = ACTIONS(6529), - [anon_sym_BSLASHBigg] = ACTIONS(6529), - [anon_sym_BSLASHbigl] = ACTIONS(6529), - [anon_sym_BSLASHBigl] = ACTIONS(6529), - [anon_sym_BSLASHbiggl] = ACTIONS(6529), - [anon_sym_BSLASHBiggl] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6529), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6529), - [anon_sym_BSLASHgls] = ACTIONS(6529), - [anon_sym_BSLASHGls] = ACTIONS(6529), - [anon_sym_BSLASHGLS] = ACTIONS(6529), - [anon_sym_BSLASHglspl] = ACTIONS(6529), - [anon_sym_BSLASHGlspl] = ACTIONS(6529), - [anon_sym_BSLASHGLSpl] = ACTIONS(6529), - [anon_sym_BSLASHglsdisp] = ACTIONS(6529), - [anon_sym_BSLASHglslink] = ACTIONS(6529), - [anon_sym_BSLASHglstext] = ACTIONS(6529), - [anon_sym_BSLASHGlstext] = ACTIONS(6529), - [anon_sym_BSLASHGLStext] = ACTIONS(6529), - [anon_sym_BSLASHglsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6529), - [anon_sym_BSLASHglsplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSplural] = ACTIONS(6529), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHglsname] = ACTIONS(6529), - [anon_sym_BSLASHGlsname] = ACTIONS(6529), - [anon_sym_BSLASHGLSname] = ACTIONS(6529), - [anon_sym_BSLASHglssymbol] = ACTIONS(6529), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6529), - [anon_sym_BSLASHglsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6529), - [anon_sym_BSLASHglsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6529), - [anon_sym_BSLASHglsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6529), - [anon_sym_BSLASHglsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6529), - [anon_sym_BSLASHglsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6529), - [anon_sym_BSLASHnewacronym] = ACTIONS(6529), - [anon_sym_BSLASHacrshort] = ACTIONS(6529), - [anon_sym_BSLASHAcrshort] = ACTIONS(6529), - [anon_sym_BSLASHACRshort] = ACTIONS(6529), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6529), - [anon_sym_BSLASHacrlong] = ACTIONS(6529), - [anon_sym_BSLASHAcrlong] = ACTIONS(6529), - [anon_sym_BSLASHACRlong] = ACTIONS(6529), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6529), - [anon_sym_BSLASHacrfull] = ACTIONS(6529), - [anon_sym_BSLASHAcrfull] = ACTIONS(6529), - [anon_sym_BSLASHACRfull] = ACTIONS(6529), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6529), - [anon_sym_BSLASHacs] = ACTIONS(6529), - [anon_sym_BSLASHAcs] = ACTIONS(6529), - [anon_sym_BSLASHacsp] = ACTIONS(6529), - [anon_sym_BSLASHAcsp] = ACTIONS(6529), - [anon_sym_BSLASHacl] = ACTIONS(6529), - [anon_sym_BSLASHAcl] = ACTIONS(6529), - [anon_sym_BSLASHaclp] = ACTIONS(6529), - [anon_sym_BSLASHAclp] = ACTIONS(6529), - [anon_sym_BSLASHacf] = ACTIONS(6529), - [anon_sym_BSLASHAcf] = ACTIONS(6529), - [anon_sym_BSLASHacfp] = ACTIONS(6529), - [anon_sym_BSLASHAcfp] = ACTIONS(6529), - [anon_sym_BSLASHac] = ACTIONS(6529), - [anon_sym_BSLASHAc] = ACTIONS(6529), - [anon_sym_BSLASHacp] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6529), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6529), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6529), - [anon_sym_BSLASHcolor] = ACTIONS(6529), - [anon_sym_BSLASHcolorbox] = ACTIONS(6529), - [anon_sym_BSLASHtextcolor] = ACTIONS(6529), - [anon_sym_BSLASHpagecolor] = ACTIONS(6529), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6529), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6529), - [anon_sym_BSLASHtext] = ACTIONS(6529), - [anon_sym_BSLASHintertext] = ACTIONS(6529), - [anon_sym_shortintertext] = ACTIONS(6529), - }, - [931] = { - [ts_builtin_sym_end] = ACTIONS(6527), - [sym_command_name] = ACTIONS(6525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6527), - [anon_sym_LPAREN] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_BSLASHpart] = ACTIONS(6525), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddpart] = ACTIONS(6525), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6527), - [anon_sym_BSLASHchapter] = ACTIONS(6525), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddchap] = ACTIONS(6525), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsection] = ACTIONS(6525), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddsec] = ACTIONS(6525), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubsection] = ACTIONS(6525), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6525), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHparagraph] = ACTIONS(6525), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6525), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6527), - [anon_sym_BSLASHitem] = ACTIONS(6525), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6527), - [anon_sym_LBRACE] = ACTIONS(6527), - [anon_sym_RBRACE] = ACTIONS(6527), - [sym_word] = ACTIONS(6525), - [sym_placeholder] = ACTIONS(6527), - [anon_sym_PLUS] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6527), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6527), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_BANG] = ACTIONS(6525), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_SQUOTE] = ACTIONS(6525), - [anon_sym__] = ACTIONS(6527), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6527), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6527), - [anon_sym_DOLLAR] = ACTIONS(6525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6527), - [anon_sym_BSLASHbegin] = ACTIONS(6525), - [anon_sym_BSLASHtitle] = ACTIONS(6525), - [anon_sym_BSLASHauthor] = ACTIONS(6525), - [anon_sym_BSLASHusepackage] = ACTIONS(6525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6525), - [anon_sym_BSLASHinclude] = ACTIONS(6525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6525), - [anon_sym_BSLASHinput] = ACTIONS(6525), - [anon_sym_BSLASHsubfile] = ACTIONS(6525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6525), - [anon_sym_BSLASHbibliography] = ACTIONS(6525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6525), - [anon_sym_BSLASHincludesvg] = ACTIONS(6525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6525), - [anon_sym_BSLASHimport] = ACTIONS(6525), - [anon_sym_BSLASHsubimport] = ACTIONS(6525), - [anon_sym_BSLASHinputfrom] = ACTIONS(6525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6525), - [anon_sym_BSLASHincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHcaption] = ACTIONS(6525), - [anon_sym_BSLASHcite] = ACTIONS(6525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCite] = ACTIONS(6525), - [anon_sym_BSLASHnocite] = ACTIONS(6525), - [anon_sym_BSLASHcitet] = ACTIONS(6525), - [anon_sym_BSLASHcitep] = ACTIONS(6525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteauthor] = ACTIONS(6525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitetitle] = ACTIONS(6525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteyear] = ACTIONS(6525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitedate] = ACTIONS(6525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteurl] = ACTIONS(6525), - [anon_sym_BSLASHfullcite] = ACTIONS(6525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6525), - [anon_sym_BSLASHcitealt] = ACTIONS(6525), - [anon_sym_BSLASHcitealp] = ACTIONS(6525), - [anon_sym_BSLASHcitetext] = ACTIONS(6525), - [anon_sym_BSLASHparencite] = ACTIONS(6525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHParencite] = ACTIONS(6525), - [anon_sym_BSLASHfootcite] = ACTIONS(6525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6525), - [anon_sym_BSLASHtextcite] = ACTIONS(6525), - [anon_sym_BSLASHTextcite] = ACTIONS(6525), - [anon_sym_BSLASHsmartcite] = ACTIONS(6525), - [anon_sym_BSLASHSmartcite] = ACTIONS(6525), - [anon_sym_BSLASHsupercite] = ACTIONS(6525), - [anon_sym_BSLASHautocite] = ACTIONS(6525), - [anon_sym_BSLASHAutocite] = ACTIONS(6525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHvolcite] = ACTIONS(6525), - [anon_sym_BSLASHVolcite] = ACTIONS(6525), - [anon_sym_BSLASHpvolcite] = ACTIONS(6525), - [anon_sym_BSLASHPvolcite] = ACTIONS(6525), - [anon_sym_BSLASHfvolcite] = ACTIONS(6525), - [anon_sym_BSLASHftvolcite] = ACTIONS(6525), - [anon_sym_BSLASHsvolcite] = ACTIONS(6525), - [anon_sym_BSLASHSvolcite] = ACTIONS(6525), - [anon_sym_BSLASHtvolcite] = ACTIONS(6525), - [anon_sym_BSLASHTvolcite] = ACTIONS(6525), - [anon_sym_BSLASHavolcite] = ACTIONS(6525), - [anon_sym_BSLASHAvolcite] = ACTIONS(6525), - [anon_sym_BSLASHnotecite] = ACTIONS(6525), - [anon_sym_BSLASHNotecite] = ACTIONS(6525), - [anon_sym_BSLASHpnotecite] = ACTIONS(6525), - [anon_sym_BSLASHPnotecite] = ACTIONS(6525), - [anon_sym_BSLASHfnotecite] = ACTIONS(6525), - [anon_sym_BSLASHlabel] = ACTIONS(6525), - [anon_sym_BSLASHref] = ACTIONS(6525), - [anon_sym_BSLASHeqref] = ACTIONS(6525), - [anon_sym_BSLASHvref] = ACTIONS(6525), - [anon_sym_BSLASHVref] = ACTIONS(6525), - [anon_sym_BSLASHautoref] = ACTIONS(6525), - [anon_sym_BSLASHpageref] = ACTIONS(6525), - [anon_sym_BSLASHcref] = ACTIONS(6525), - [anon_sym_BSLASHCref] = ACTIONS(6525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnameCref] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHlabelcref] = ACTIONS(6525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCrefrange] = ACTIONS(6525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnewlabel] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6527), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHdef] = ACTIONS(6525), - [anon_sym_BSLASHlet] = ACTIONS(6525), - [anon_sym_BSLASHleft] = ACTIONS(6525), - [anon_sym_BSLASHbig] = ACTIONS(6525), - [anon_sym_BSLASHBig] = ACTIONS(6525), - [anon_sym_BSLASHbigg] = ACTIONS(6525), - [anon_sym_BSLASHBigg] = ACTIONS(6525), - [anon_sym_BSLASHbigl] = ACTIONS(6525), - [anon_sym_BSLASHBigl] = ACTIONS(6525), - [anon_sym_BSLASHbiggl] = ACTIONS(6525), - [anon_sym_BSLASHBiggl] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6525), - [anon_sym_BSLASHgls] = ACTIONS(6525), - [anon_sym_BSLASHGls] = ACTIONS(6525), - [anon_sym_BSLASHGLS] = ACTIONS(6525), - [anon_sym_BSLASHglspl] = ACTIONS(6525), - [anon_sym_BSLASHGlspl] = ACTIONS(6525), - [anon_sym_BSLASHGLSpl] = ACTIONS(6525), - [anon_sym_BSLASHglsdisp] = ACTIONS(6525), - [anon_sym_BSLASHglslink] = ACTIONS(6525), - [anon_sym_BSLASHglstext] = ACTIONS(6525), - [anon_sym_BSLASHGlstext] = ACTIONS(6525), - [anon_sym_BSLASHGLStext] = ACTIONS(6525), - [anon_sym_BSLASHglsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6525), - [anon_sym_BSLASHglsplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSplural] = ACTIONS(6525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHglsname] = ACTIONS(6525), - [anon_sym_BSLASHGlsname] = ACTIONS(6525), - [anon_sym_BSLASHGLSname] = ACTIONS(6525), - [anon_sym_BSLASHglssymbol] = ACTIONS(6525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6525), - [anon_sym_BSLASHglsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6525), - [anon_sym_BSLASHglsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6525), - [anon_sym_BSLASHglsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6525), - [anon_sym_BSLASHglsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6525), - [anon_sym_BSLASHglsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6525), - [anon_sym_BSLASHnewacronym] = ACTIONS(6525), - [anon_sym_BSLASHacrshort] = ACTIONS(6525), - [anon_sym_BSLASHAcrshort] = ACTIONS(6525), - [anon_sym_BSLASHACRshort] = ACTIONS(6525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6525), - [anon_sym_BSLASHacrlong] = ACTIONS(6525), - [anon_sym_BSLASHAcrlong] = ACTIONS(6525), - [anon_sym_BSLASHACRlong] = ACTIONS(6525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6525), - [anon_sym_BSLASHacrfull] = ACTIONS(6525), - [anon_sym_BSLASHAcrfull] = ACTIONS(6525), - [anon_sym_BSLASHACRfull] = ACTIONS(6525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6525), - [anon_sym_BSLASHacs] = ACTIONS(6525), - [anon_sym_BSLASHAcs] = ACTIONS(6525), - [anon_sym_BSLASHacsp] = ACTIONS(6525), - [anon_sym_BSLASHAcsp] = ACTIONS(6525), - [anon_sym_BSLASHacl] = ACTIONS(6525), - [anon_sym_BSLASHAcl] = ACTIONS(6525), - [anon_sym_BSLASHaclp] = ACTIONS(6525), - [anon_sym_BSLASHAclp] = ACTIONS(6525), - [anon_sym_BSLASHacf] = ACTIONS(6525), - [anon_sym_BSLASHAcf] = ACTIONS(6525), - [anon_sym_BSLASHacfp] = ACTIONS(6525), - [anon_sym_BSLASHAcfp] = ACTIONS(6525), - [anon_sym_BSLASHac] = ACTIONS(6525), - [anon_sym_BSLASHAc] = ACTIONS(6525), - [anon_sym_BSLASHacp] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6525), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6525), - [anon_sym_BSLASHcolor] = ACTIONS(6525), - [anon_sym_BSLASHcolorbox] = ACTIONS(6525), - [anon_sym_BSLASHtextcolor] = ACTIONS(6525), - [anon_sym_BSLASHpagecolor] = ACTIONS(6525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6525), - [anon_sym_BSLASHtext] = ACTIONS(6525), - [anon_sym_BSLASHintertext] = ACTIONS(6525), - [anon_sym_shortintertext] = ACTIONS(6525), - }, - [932] = { - [ts_builtin_sym_end] = ACTIONS(6523), - [sym_command_name] = ACTIONS(6521), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6521), - [anon_sym_LBRACK] = ACTIONS(6523), - [anon_sym_RBRACK] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_EQ] = ACTIONS(6523), - [anon_sym_LPAREN] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_BSLASHpart] = ACTIONS(6521), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddpart] = ACTIONS(6521), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6523), - [anon_sym_BSLASHchapter] = ACTIONS(6521), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddchap] = ACTIONS(6521), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsection] = ACTIONS(6521), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddsec] = ACTIONS(6521), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubsection] = ACTIONS(6521), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6521), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHparagraph] = ACTIONS(6521), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6521), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6523), - [anon_sym_BSLASHitem] = ACTIONS(6521), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6523), - [anon_sym_LBRACE] = ACTIONS(6523), - [anon_sym_RBRACE] = ACTIONS(6523), - [sym_word] = ACTIONS(6521), - [sym_placeholder] = ACTIONS(6523), - [anon_sym_PLUS] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6523), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_BANG] = ACTIONS(6521), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6521), - [anon_sym_SQUOTE] = ACTIONS(6521), - [anon_sym__] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6523), - [anon_sym_DOLLAR] = ACTIONS(6521), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6523), - [anon_sym_BSLASHbegin] = ACTIONS(6521), - [anon_sym_BSLASHtitle] = ACTIONS(6521), - [anon_sym_BSLASHauthor] = ACTIONS(6521), - [anon_sym_BSLASHusepackage] = ACTIONS(6521), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6521), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6521), - [anon_sym_BSLASHinclude] = ACTIONS(6521), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6521), - [anon_sym_BSLASHinput] = ACTIONS(6521), - [anon_sym_BSLASHsubfile] = ACTIONS(6521), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6521), - [anon_sym_BSLASHbibliography] = ACTIONS(6521), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6521), - [anon_sym_BSLASHincludesvg] = ACTIONS(6521), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6521), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6521), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6521), - [anon_sym_BSLASHimport] = ACTIONS(6521), - [anon_sym_BSLASHsubimport] = ACTIONS(6521), - [anon_sym_BSLASHinputfrom] = ACTIONS(6521), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6521), - [anon_sym_BSLASHincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHcaption] = ACTIONS(6521), - [anon_sym_BSLASHcite] = ACTIONS(6521), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCite] = ACTIONS(6521), - [anon_sym_BSLASHnocite] = ACTIONS(6521), - [anon_sym_BSLASHcitet] = ACTIONS(6521), - [anon_sym_BSLASHcitep] = ACTIONS(6521), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteauthor] = ACTIONS(6521), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6521), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitetitle] = ACTIONS(6521), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteyear] = ACTIONS(6521), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitedate] = ACTIONS(6521), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteurl] = ACTIONS(6521), - [anon_sym_BSLASHfullcite] = ACTIONS(6521), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6521), - [anon_sym_BSLASHcitealt] = ACTIONS(6521), - [anon_sym_BSLASHcitealp] = ACTIONS(6521), - [anon_sym_BSLASHcitetext] = ACTIONS(6521), - [anon_sym_BSLASHparencite] = ACTIONS(6521), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHParencite] = ACTIONS(6521), - [anon_sym_BSLASHfootcite] = ACTIONS(6521), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6521), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6521), - [anon_sym_BSLASHtextcite] = ACTIONS(6521), - [anon_sym_BSLASHTextcite] = ACTIONS(6521), - [anon_sym_BSLASHsmartcite] = ACTIONS(6521), - [anon_sym_BSLASHSmartcite] = ACTIONS(6521), - [anon_sym_BSLASHsupercite] = ACTIONS(6521), - [anon_sym_BSLASHautocite] = ACTIONS(6521), - [anon_sym_BSLASHAutocite] = ACTIONS(6521), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHvolcite] = ACTIONS(6521), - [anon_sym_BSLASHVolcite] = ACTIONS(6521), - [anon_sym_BSLASHpvolcite] = ACTIONS(6521), - [anon_sym_BSLASHPvolcite] = ACTIONS(6521), - [anon_sym_BSLASHfvolcite] = ACTIONS(6521), - [anon_sym_BSLASHftvolcite] = ACTIONS(6521), - [anon_sym_BSLASHsvolcite] = ACTIONS(6521), - [anon_sym_BSLASHSvolcite] = ACTIONS(6521), - [anon_sym_BSLASHtvolcite] = ACTIONS(6521), - [anon_sym_BSLASHTvolcite] = ACTIONS(6521), - [anon_sym_BSLASHavolcite] = ACTIONS(6521), - [anon_sym_BSLASHAvolcite] = ACTIONS(6521), - [anon_sym_BSLASHnotecite] = ACTIONS(6521), - [anon_sym_BSLASHNotecite] = ACTIONS(6521), - [anon_sym_BSLASHpnotecite] = ACTIONS(6521), - [anon_sym_BSLASHPnotecite] = ACTIONS(6521), - [anon_sym_BSLASHfnotecite] = ACTIONS(6521), - [anon_sym_BSLASHlabel] = ACTIONS(6521), - [anon_sym_BSLASHref] = ACTIONS(6521), - [anon_sym_BSLASHeqref] = ACTIONS(6521), - [anon_sym_BSLASHvref] = ACTIONS(6521), - [anon_sym_BSLASHVref] = ACTIONS(6521), - [anon_sym_BSLASHautoref] = ACTIONS(6521), - [anon_sym_BSLASHpageref] = ACTIONS(6521), - [anon_sym_BSLASHcref] = ACTIONS(6521), - [anon_sym_BSLASHCref] = ACTIONS(6521), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnameCref] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHlabelcref] = ACTIONS(6521), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCrefrange] = ACTIONS(6521), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnewlabel] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6521), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6521), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6523), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHdef] = ACTIONS(6521), - [anon_sym_BSLASHlet] = ACTIONS(6521), - [anon_sym_BSLASHleft] = ACTIONS(6521), - [anon_sym_BSLASHbig] = ACTIONS(6521), - [anon_sym_BSLASHBig] = ACTIONS(6521), - [anon_sym_BSLASHbigg] = ACTIONS(6521), - [anon_sym_BSLASHBigg] = ACTIONS(6521), - [anon_sym_BSLASHbigl] = ACTIONS(6521), - [anon_sym_BSLASHBigl] = ACTIONS(6521), - [anon_sym_BSLASHbiggl] = ACTIONS(6521), - [anon_sym_BSLASHBiggl] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6521), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6521), - [anon_sym_BSLASHgls] = ACTIONS(6521), - [anon_sym_BSLASHGls] = ACTIONS(6521), - [anon_sym_BSLASHGLS] = ACTIONS(6521), - [anon_sym_BSLASHglspl] = ACTIONS(6521), - [anon_sym_BSLASHGlspl] = ACTIONS(6521), - [anon_sym_BSLASHGLSpl] = ACTIONS(6521), - [anon_sym_BSLASHglsdisp] = ACTIONS(6521), - [anon_sym_BSLASHglslink] = ACTIONS(6521), - [anon_sym_BSLASHglstext] = ACTIONS(6521), - [anon_sym_BSLASHGlstext] = ACTIONS(6521), - [anon_sym_BSLASHGLStext] = ACTIONS(6521), - [anon_sym_BSLASHglsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6521), - [anon_sym_BSLASHglsplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSplural] = ACTIONS(6521), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHglsname] = ACTIONS(6521), - [anon_sym_BSLASHGlsname] = ACTIONS(6521), - [anon_sym_BSLASHGLSname] = ACTIONS(6521), - [anon_sym_BSLASHglssymbol] = ACTIONS(6521), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6521), - [anon_sym_BSLASHglsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6521), - [anon_sym_BSLASHglsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6521), - [anon_sym_BSLASHglsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6521), - [anon_sym_BSLASHglsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6521), - [anon_sym_BSLASHglsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6521), - [anon_sym_BSLASHnewacronym] = ACTIONS(6521), - [anon_sym_BSLASHacrshort] = ACTIONS(6521), - [anon_sym_BSLASHAcrshort] = ACTIONS(6521), - [anon_sym_BSLASHACRshort] = ACTIONS(6521), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6521), - [anon_sym_BSLASHacrlong] = ACTIONS(6521), - [anon_sym_BSLASHAcrlong] = ACTIONS(6521), - [anon_sym_BSLASHACRlong] = ACTIONS(6521), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6521), - [anon_sym_BSLASHacrfull] = ACTIONS(6521), - [anon_sym_BSLASHAcrfull] = ACTIONS(6521), - [anon_sym_BSLASHACRfull] = ACTIONS(6521), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6521), - [anon_sym_BSLASHacs] = ACTIONS(6521), - [anon_sym_BSLASHAcs] = ACTIONS(6521), - [anon_sym_BSLASHacsp] = ACTIONS(6521), - [anon_sym_BSLASHAcsp] = ACTIONS(6521), - [anon_sym_BSLASHacl] = ACTIONS(6521), - [anon_sym_BSLASHAcl] = ACTIONS(6521), - [anon_sym_BSLASHaclp] = ACTIONS(6521), - [anon_sym_BSLASHAclp] = ACTIONS(6521), - [anon_sym_BSLASHacf] = ACTIONS(6521), - [anon_sym_BSLASHAcf] = ACTIONS(6521), - [anon_sym_BSLASHacfp] = ACTIONS(6521), - [anon_sym_BSLASHAcfp] = ACTIONS(6521), - [anon_sym_BSLASHac] = ACTIONS(6521), - [anon_sym_BSLASHAc] = ACTIONS(6521), - [anon_sym_BSLASHacp] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6521), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6521), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6521), - [anon_sym_BSLASHcolor] = ACTIONS(6521), - [anon_sym_BSLASHcolorbox] = ACTIONS(6521), - [anon_sym_BSLASHtextcolor] = ACTIONS(6521), - [anon_sym_BSLASHpagecolor] = ACTIONS(6521), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6521), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6521), - [anon_sym_BSLASHtext] = ACTIONS(6521), - [anon_sym_BSLASHintertext] = ACTIONS(6521), - [anon_sym_shortintertext] = ACTIONS(6521), - }, - [933] = { - [ts_builtin_sym_end] = ACTIONS(6519), - [sym_command_name] = ACTIONS(6517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6517), - [anon_sym_LBRACK] = ACTIONS(6519), - [anon_sym_RBRACK] = ACTIONS(6519), - [anon_sym_COMMA] = ACTIONS(6519), - [anon_sym_EQ] = ACTIONS(6519), - [anon_sym_LPAREN] = ACTIONS(6519), - [anon_sym_RPAREN] = ACTIONS(6519), - [anon_sym_BSLASHpart] = ACTIONS(6517), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddpart] = ACTIONS(6517), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6519), - [anon_sym_BSLASHchapter] = ACTIONS(6517), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddchap] = ACTIONS(6517), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsection] = ACTIONS(6517), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddsec] = ACTIONS(6517), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubsection] = ACTIONS(6517), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6517), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHparagraph] = ACTIONS(6517), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6517), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6519), - [anon_sym_BSLASHitem] = ACTIONS(6517), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6519), - [anon_sym_LBRACE] = ACTIONS(6519), - [anon_sym_RBRACE] = ACTIONS(6519), - [sym_word] = ACTIONS(6517), - [sym_placeholder] = ACTIONS(6519), - [anon_sym_PLUS] = ACTIONS(6519), - [anon_sym_DASH] = ACTIONS(6519), - [anon_sym_STAR] = ACTIONS(6519), - [anon_sym_SLASH] = ACTIONS(6519), - [anon_sym_LT] = ACTIONS(6517), - [anon_sym_GT] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(6517), - [anon_sym_PIPE] = ACTIONS(6517), - [anon_sym_COLON] = ACTIONS(6517), - [anon_sym_SQUOTE] = ACTIONS(6517), - [anon_sym__] = ACTIONS(6519), - [anon_sym_CARET] = ACTIONS(6519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6519), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6519), - [anon_sym_DOLLAR] = ACTIONS(6517), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6519), - [anon_sym_BSLASHbegin] = ACTIONS(6517), - [anon_sym_BSLASHtitle] = ACTIONS(6517), - [anon_sym_BSLASHauthor] = ACTIONS(6517), - [anon_sym_BSLASHusepackage] = ACTIONS(6517), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6517), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6517), - [anon_sym_BSLASHinclude] = ACTIONS(6517), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6517), - [anon_sym_BSLASHinput] = ACTIONS(6517), - [anon_sym_BSLASHsubfile] = ACTIONS(6517), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6517), - [anon_sym_BSLASHbibliography] = ACTIONS(6517), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6517), - [anon_sym_BSLASHincludesvg] = ACTIONS(6517), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6517), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6517), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6517), - [anon_sym_BSLASHimport] = ACTIONS(6517), - [anon_sym_BSLASHsubimport] = ACTIONS(6517), - [anon_sym_BSLASHinputfrom] = ACTIONS(6517), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6517), - [anon_sym_BSLASHincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHcaption] = ACTIONS(6517), - [anon_sym_BSLASHcite] = ACTIONS(6517), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCite] = ACTIONS(6517), - [anon_sym_BSLASHnocite] = ACTIONS(6517), - [anon_sym_BSLASHcitet] = ACTIONS(6517), - [anon_sym_BSLASHcitep] = ACTIONS(6517), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteauthor] = ACTIONS(6517), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6517), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitetitle] = ACTIONS(6517), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteyear] = ACTIONS(6517), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitedate] = ACTIONS(6517), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteurl] = ACTIONS(6517), - [anon_sym_BSLASHfullcite] = ACTIONS(6517), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6517), - [anon_sym_BSLASHcitealt] = ACTIONS(6517), - [anon_sym_BSLASHcitealp] = ACTIONS(6517), - [anon_sym_BSLASHcitetext] = ACTIONS(6517), - [anon_sym_BSLASHparencite] = ACTIONS(6517), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHParencite] = ACTIONS(6517), - [anon_sym_BSLASHfootcite] = ACTIONS(6517), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6517), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6517), - [anon_sym_BSLASHtextcite] = ACTIONS(6517), - [anon_sym_BSLASHTextcite] = ACTIONS(6517), - [anon_sym_BSLASHsmartcite] = ACTIONS(6517), - [anon_sym_BSLASHSmartcite] = ACTIONS(6517), - [anon_sym_BSLASHsupercite] = ACTIONS(6517), - [anon_sym_BSLASHautocite] = ACTIONS(6517), - [anon_sym_BSLASHAutocite] = ACTIONS(6517), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHvolcite] = ACTIONS(6517), - [anon_sym_BSLASHVolcite] = ACTIONS(6517), - [anon_sym_BSLASHpvolcite] = ACTIONS(6517), - [anon_sym_BSLASHPvolcite] = ACTIONS(6517), - [anon_sym_BSLASHfvolcite] = ACTIONS(6517), - [anon_sym_BSLASHftvolcite] = ACTIONS(6517), - [anon_sym_BSLASHsvolcite] = ACTIONS(6517), - [anon_sym_BSLASHSvolcite] = ACTIONS(6517), - [anon_sym_BSLASHtvolcite] = ACTIONS(6517), - [anon_sym_BSLASHTvolcite] = ACTIONS(6517), - [anon_sym_BSLASHavolcite] = ACTIONS(6517), - [anon_sym_BSLASHAvolcite] = ACTIONS(6517), - [anon_sym_BSLASHnotecite] = ACTIONS(6517), - [anon_sym_BSLASHNotecite] = ACTIONS(6517), - [anon_sym_BSLASHpnotecite] = ACTIONS(6517), - [anon_sym_BSLASHPnotecite] = ACTIONS(6517), - [anon_sym_BSLASHfnotecite] = ACTIONS(6517), - [anon_sym_BSLASHlabel] = ACTIONS(6517), - [anon_sym_BSLASHref] = ACTIONS(6517), - [anon_sym_BSLASHeqref] = ACTIONS(6517), - [anon_sym_BSLASHvref] = ACTIONS(6517), - [anon_sym_BSLASHVref] = ACTIONS(6517), - [anon_sym_BSLASHautoref] = ACTIONS(6517), - [anon_sym_BSLASHpageref] = ACTIONS(6517), - [anon_sym_BSLASHcref] = ACTIONS(6517), - [anon_sym_BSLASHCref] = ACTIONS(6517), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnameCref] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHlabelcref] = ACTIONS(6517), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCrefrange] = ACTIONS(6517), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnewlabel] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6517), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6517), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6519), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHdef] = ACTIONS(6517), - [anon_sym_BSLASHlet] = ACTIONS(6517), - [anon_sym_BSLASHleft] = ACTIONS(6517), - [anon_sym_BSLASHbig] = ACTIONS(6517), - [anon_sym_BSLASHBig] = ACTIONS(6517), - [anon_sym_BSLASHbigg] = ACTIONS(6517), - [anon_sym_BSLASHBigg] = ACTIONS(6517), - [anon_sym_BSLASHbigl] = ACTIONS(6517), - [anon_sym_BSLASHBigl] = ACTIONS(6517), - [anon_sym_BSLASHbiggl] = ACTIONS(6517), - [anon_sym_BSLASHBiggl] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6517), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6517), - [anon_sym_BSLASHgls] = ACTIONS(6517), - [anon_sym_BSLASHGls] = ACTIONS(6517), - [anon_sym_BSLASHGLS] = ACTIONS(6517), - [anon_sym_BSLASHglspl] = ACTIONS(6517), - [anon_sym_BSLASHGlspl] = ACTIONS(6517), - [anon_sym_BSLASHGLSpl] = ACTIONS(6517), - [anon_sym_BSLASHglsdisp] = ACTIONS(6517), - [anon_sym_BSLASHglslink] = ACTIONS(6517), - [anon_sym_BSLASHglstext] = ACTIONS(6517), - [anon_sym_BSLASHGlstext] = ACTIONS(6517), - [anon_sym_BSLASHGLStext] = ACTIONS(6517), - [anon_sym_BSLASHglsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6517), - [anon_sym_BSLASHglsplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSplural] = ACTIONS(6517), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHglsname] = ACTIONS(6517), - [anon_sym_BSLASHGlsname] = ACTIONS(6517), - [anon_sym_BSLASHGLSname] = ACTIONS(6517), - [anon_sym_BSLASHglssymbol] = ACTIONS(6517), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6517), - [anon_sym_BSLASHglsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6517), - [anon_sym_BSLASHglsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6517), - [anon_sym_BSLASHglsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6517), - [anon_sym_BSLASHglsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6517), - [anon_sym_BSLASHglsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6517), - [anon_sym_BSLASHnewacronym] = ACTIONS(6517), - [anon_sym_BSLASHacrshort] = ACTIONS(6517), - [anon_sym_BSLASHAcrshort] = ACTIONS(6517), - [anon_sym_BSLASHACRshort] = ACTIONS(6517), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6517), - [anon_sym_BSLASHacrlong] = ACTIONS(6517), - [anon_sym_BSLASHAcrlong] = ACTIONS(6517), - [anon_sym_BSLASHACRlong] = ACTIONS(6517), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6517), - [anon_sym_BSLASHacrfull] = ACTIONS(6517), - [anon_sym_BSLASHAcrfull] = ACTIONS(6517), - [anon_sym_BSLASHACRfull] = ACTIONS(6517), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6517), - [anon_sym_BSLASHacs] = ACTIONS(6517), - [anon_sym_BSLASHAcs] = ACTIONS(6517), - [anon_sym_BSLASHacsp] = ACTIONS(6517), - [anon_sym_BSLASHAcsp] = ACTIONS(6517), - [anon_sym_BSLASHacl] = ACTIONS(6517), - [anon_sym_BSLASHAcl] = ACTIONS(6517), - [anon_sym_BSLASHaclp] = ACTIONS(6517), - [anon_sym_BSLASHAclp] = ACTIONS(6517), - [anon_sym_BSLASHacf] = ACTIONS(6517), - [anon_sym_BSLASHAcf] = ACTIONS(6517), - [anon_sym_BSLASHacfp] = ACTIONS(6517), - [anon_sym_BSLASHAcfp] = ACTIONS(6517), - [anon_sym_BSLASHac] = ACTIONS(6517), - [anon_sym_BSLASHAc] = ACTIONS(6517), - [anon_sym_BSLASHacp] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6517), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6517), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6517), - [anon_sym_BSLASHcolor] = ACTIONS(6517), - [anon_sym_BSLASHcolorbox] = ACTIONS(6517), - [anon_sym_BSLASHtextcolor] = ACTIONS(6517), - [anon_sym_BSLASHpagecolor] = ACTIONS(6517), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6517), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6517), - [anon_sym_BSLASHtext] = ACTIONS(6517), - [anon_sym_BSLASHintertext] = ACTIONS(6517), - [anon_sym_shortintertext] = ACTIONS(6517), - }, - [934] = { - [ts_builtin_sym_end] = ACTIONS(6515), - [sym_command_name] = ACTIONS(6513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6513), - [anon_sym_LBRACK] = ACTIONS(6515), - [anon_sym_RBRACK] = ACTIONS(6515), - [anon_sym_COMMA] = ACTIONS(6515), - [anon_sym_EQ] = ACTIONS(6515), - [anon_sym_LPAREN] = ACTIONS(6515), - [anon_sym_RPAREN] = ACTIONS(6515), - [anon_sym_BSLASHpart] = ACTIONS(6513), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddpart] = ACTIONS(6513), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6515), - [anon_sym_BSLASHchapter] = ACTIONS(6513), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddchap] = ACTIONS(6513), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsection] = ACTIONS(6513), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddsec] = ACTIONS(6513), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubsection] = ACTIONS(6513), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6513), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHparagraph] = ACTIONS(6513), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6513), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6515), - [anon_sym_BSLASHitem] = ACTIONS(6513), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(6515), - [anon_sym_RBRACE] = ACTIONS(6515), - [sym_word] = ACTIONS(6513), - [sym_placeholder] = ACTIONS(6515), - [anon_sym_PLUS] = ACTIONS(6515), - [anon_sym_DASH] = ACTIONS(6515), - [anon_sym_STAR] = ACTIONS(6515), - [anon_sym_SLASH] = ACTIONS(6515), - [anon_sym_LT] = ACTIONS(6513), - [anon_sym_GT] = ACTIONS(6513), - [anon_sym_BANG] = ACTIONS(6513), - [anon_sym_PIPE] = ACTIONS(6513), - [anon_sym_COLON] = ACTIONS(6513), - [anon_sym_SQUOTE] = ACTIONS(6513), - [anon_sym__] = ACTIONS(6515), - [anon_sym_CARET] = ACTIONS(6515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6515), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6515), - [anon_sym_DOLLAR] = ACTIONS(6513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6515), - [anon_sym_BSLASHbegin] = ACTIONS(6513), - [anon_sym_BSLASHtitle] = ACTIONS(6513), - [anon_sym_BSLASHauthor] = ACTIONS(6513), - [anon_sym_BSLASHusepackage] = ACTIONS(6513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6513), - [anon_sym_BSLASHinclude] = ACTIONS(6513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6513), - [anon_sym_BSLASHinput] = ACTIONS(6513), - [anon_sym_BSLASHsubfile] = ACTIONS(6513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6513), - [anon_sym_BSLASHbibliography] = ACTIONS(6513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6513), - [anon_sym_BSLASHincludesvg] = ACTIONS(6513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6513), - [anon_sym_BSLASHimport] = ACTIONS(6513), - [anon_sym_BSLASHsubimport] = ACTIONS(6513), - [anon_sym_BSLASHinputfrom] = ACTIONS(6513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6513), - [anon_sym_BSLASHincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHcaption] = ACTIONS(6513), - [anon_sym_BSLASHcite] = ACTIONS(6513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCite] = ACTIONS(6513), - [anon_sym_BSLASHnocite] = ACTIONS(6513), - [anon_sym_BSLASHcitet] = ACTIONS(6513), - [anon_sym_BSLASHcitep] = ACTIONS(6513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteauthor] = ACTIONS(6513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitetitle] = ACTIONS(6513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteyear] = ACTIONS(6513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitedate] = ACTIONS(6513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteurl] = ACTIONS(6513), - [anon_sym_BSLASHfullcite] = ACTIONS(6513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6513), - [anon_sym_BSLASHcitealt] = ACTIONS(6513), - [anon_sym_BSLASHcitealp] = ACTIONS(6513), - [anon_sym_BSLASHcitetext] = ACTIONS(6513), - [anon_sym_BSLASHparencite] = ACTIONS(6513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHParencite] = ACTIONS(6513), - [anon_sym_BSLASHfootcite] = ACTIONS(6513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6513), - [anon_sym_BSLASHtextcite] = ACTIONS(6513), - [anon_sym_BSLASHTextcite] = ACTIONS(6513), - [anon_sym_BSLASHsmartcite] = ACTIONS(6513), - [anon_sym_BSLASHSmartcite] = ACTIONS(6513), - [anon_sym_BSLASHsupercite] = ACTIONS(6513), - [anon_sym_BSLASHautocite] = ACTIONS(6513), - [anon_sym_BSLASHAutocite] = ACTIONS(6513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHvolcite] = ACTIONS(6513), - [anon_sym_BSLASHVolcite] = ACTIONS(6513), - [anon_sym_BSLASHpvolcite] = ACTIONS(6513), - [anon_sym_BSLASHPvolcite] = ACTIONS(6513), - [anon_sym_BSLASHfvolcite] = ACTIONS(6513), - [anon_sym_BSLASHftvolcite] = ACTIONS(6513), - [anon_sym_BSLASHsvolcite] = ACTIONS(6513), - [anon_sym_BSLASHSvolcite] = ACTIONS(6513), - [anon_sym_BSLASHtvolcite] = ACTIONS(6513), - [anon_sym_BSLASHTvolcite] = ACTIONS(6513), - [anon_sym_BSLASHavolcite] = ACTIONS(6513), - [anon_sym_BSLASHAvolcite] = ACTIONS(6513), - [anon_sym_BSLASHnotecite] = ACTIONS(6513), - [anon_sym_BSLASHNotecite] = ACTIONS(6513), - [anon_sym_BSLASHpnotecite] = ACTIONS(6513), - [anon_sym_BSLASHPnotecite] = ACTIONS(6513), - [anon_sym_BSLASHfnotecite] = ACTIONS(6513), - [anon_sym_BSLASHlabel] = ACTIONS(6513), - [anon_sym_BSLASHref] = ACTIONS(6513), - [anon_sym_BSLASHeqref] = ACTIONS(6513), - [anon_sym_BSLASHvref] = ACTIONS(6513), - [anon_sym_BSLASHVref] = ACTIONS(6513), - [anon_sym_BSLASHautoref] = ACTIONS(6513), - [anon_sym_BSLASHpageref] = ACTIONS(6513), - [anon_sym_BSLASHcref] = ACTIONS(6513), - [anon_sym_BSLASHCref] = ACTIONS(6513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnameCref] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHlabelcref] = ACTIONS(6513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCrefrange] = ACTIONS(6513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnewlabel] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6515), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHdef] = ACTIONS(6513), - [anon_sym_BSLASHlet] = ACTIONS(6513), - [anon_sym_BSLASHleft] = ACTIONS(6513), - [anon_sym_BSLASHbig] = ACTIONS(6513), - [anon_sym_BSLASHBig] = ACTIONS(6513), - [anon_sym_BSLASHbigg] = ACTIONS(6513), - [anon_sym_BSLASHBigg] = ACTIONS(6513), - [anon_sym_BSLASHbigl] = ACTIONS(6513), - [anon_sym_BSLASHBigl] = ACTIONS(6513), - [anon_sym_BSLASHbiggl] = ACTIONS(6513), - [anon_sym_BSLASHBiggl] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6513), - [anon_sym_BSLASHgls] = ACTIONS(6513), - [anon_sym_BSLASHGls] = ACTIONS(6513), - [anon_sym_BSLASHGLS] = ACTIONS(6513), - [anon_sym_BSLASHglspl] = ACTIONS(6513), - [anon_sym_BSLASHGlspl] = ACTIONS(6513), - [anon_sym_BSLASHGLSpl] = ACTIONS(6513), - [anon_sym_BSLASHglsdisp] = ACTIONS(6513), - [anon_sym_BSLASHglslink] = ACTIONS(6513), - [anon_sym_BSLASHglstext] = ACTIONS(6513), - [anon_sym_BSLASHGlstext] = ACTIONS(6513), - [anon_sym_BSLASHGLStext] = ACTIONS(6513), - [anon_sym_BSLASHglsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6513), - [anon_sym_BSLASHglsplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSplural] = ACTIONS(6513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHglsname] = ACTIONS(6513), - [anon_sym_BSLASHGlsname] = ACTIONS(6513), - [anon_sym_BSLASHGLSname] = ACTIONS(6513), - [anon_sym_BSLASHglssymbol] = ACTIONS(6513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6513), - [anon_sym_BSLASHglsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6513), - [anon_sym_BSLASHglsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6513), - [anon_sym_BSLASHglsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6513), - [anon_sym_BSLASHglsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6513), - [anon_sym_BSLASHglsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6513), - [anon_sym_BSLASHnewacronym] = ACTIONS(6513), - [anon_sym_BSLASHacrshort] = ACTIONS(6513), - [anon_sym_BSLASHAcrshort] = ACTIONS(6513), - [anon_sym_BSLASHACRshort] = ACTIONS(6513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6513), - [anon_sym_BSLASHacrlong] = ACTIONS(6513), - [anon_sym_BSLASHAcrlong] = ACTIONS(6513), - [anon_sym_BSLASHACRlong] = ACTIONS(6513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6513), - [anon_sym_BSLASHacrfull] = ACTIONS(6513), - [anon_sym_BSLASHAcrfull] = ACTIONS(6513), - [anon_sym_BSLASHACRfull] = ACTIONS(6513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6513), - [anon_sym_BSLASHacs] = ACTIONS(6513), - [anon_sym_BSLASHAcs] = ACTIONS(6513), - [anon_sym_BSLASHacsp] = ACTIONS(6513), - [anon_sym_BSLASHAcsp] = ACTIONS(6513), - [anon_sym_BSLASHacl] = ACTIONS(6513), - [anon_sym_BSLASHAcl] = ACTIONS(6513), - [anon_sym_BSLASHaclp] = ACTIONS(6513), - [anon_sym_BSLASHAclp] = ACTIONS(6513), - [anon_sym_BSLASHacf] = ACTIONS(6513), - [anon_sym_BSLASHAcf] = ACTIONS(6513), - [anon_sym_BSLASHacfp] = ACTIONS(6513), - [anon_sym_BSLASHAcfp] = ACTIONS(6513), - [anon_sym_BSLASHac] = ACTIONS(6513), - [anon_sym_BSLASHAc] = ACTIONS(6513), - [anon_sym_BSLASHacp] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6513), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6513), - [anon_sym_BSLASHcolor] = ACTIONS(6513), - [anon_sym_BSLASHcolorbox] = ACTIONS(6513), - [anon_sym_BSLASHtextcolor] = ACTIONS(6513), - [anon_sym_BSLASHpagecolor] = ACTIONS(6513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6513), - [anon_sym_BSLASHtext] = ACTIONS(6513), - [anon_sym_BSLASHintertext] = ACTIONS(6513), - [anon_sym_shortintertext] = ACTIONS(6513), - }, - [935] = { - [ts_builtin_sym_end] = ACTIONS(6511), - [sym_command_name] = ACTIONS(6509), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6509), - [anon_sym_LBRACK] = ACTIONS(6511), - [anon_sym_RBRACK] = ACTIONS(6511), - [anon_sym_COMMA] = ACTIONS(6511), - [anon_sym_EQ] = ACTIONS(6511), - [anon_sym_LPAREN] = ACTIONS(6511), - [anon_sym_RPAREN] = ACTIONS(6511), - [anon_sym_BSLASHpart] = ACTIONS(6509), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddpart] = ACTIONS(6509), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6511), - [anon_sym_BSLASHchapter] = ACTIONS(6509), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddchap] = ACTIONS(6509), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsection] = ACTIONS(6509), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddsec] = ACTIONS(6509), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubsection] = ACTIONS(6509), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6509), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHparagraph] = ACTIONS(6509), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6509), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6511), - [anon_sym_BSLASHitem] = ACTIONS(6509), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6511), - [anon_sym_LBRACE] = ACTIONS(6511), - [anon_sym_RBRACE] = ACTIONS(6511), - [sym_word] = ACTIONS(6509), - [sym_placeholder] = ACTIONS(6511), - [anon_sym_PLUS] = ACTIONS(6511), - [anon_sym_DASH] = ACTIONS(6511), - [anon_sym_STAR] = ACTIONS(6511), - [anon_sym_SLASH] = ACTIONS(6511), - [anon_sym_LT] = ACTIONS(6509), - [anon_sym_GT] = ACTIONS(6509), - [anon_sym_BANG] = ACTIONS(6509), - [anon_sym_PIPE] = ACTIONS(6509), - [anon_sym_COLON] = ACTIONS(6509), - [anon_sym_SQUOTE] = ACTIONS(6509), - [anon_sym__] = ACTIONS(6511), - [anon_sym_CARET] = ACTIONS(6511), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6511), - [anon_sym_DOLLAR] = ACTIONS(6509), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6511), - [anon_sym_BSLASHbegin] = ACTIONS(6509), - [anon_sym_BSLASHtitle] = ACTIONS(6509), - [anon_sym_BSLASHauthor] = ACTIONS(6509), - [anon_sym_BSLASHusepackage] = ACTIONS(6509), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6509), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6509), - [anon_sym_BSLASHinclude] = ACTIONS(6509), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6509), - [anon_sym_BSLASHinput] = ACTIONS(6509), - [anon_sym_BSLASHsubfile] = ACTIONS(6509), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6509), - [anon_sym_BSLASHbibliography] = ACTIONS(6509), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6509), - [anon_sym_BSLASHincludesvg] = ACTIONS(6509), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6509), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6509), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6509), - [anon_sym_BSLASHimport] = ACTIONS(6509), - [anon_sym_BSLASHsubimport] = ACTIONS(6509), - [anon_sym_BSLASHinputfrom] = ACTIONS(6509), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6509), - [anon_sym_BSLASHincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHcaption] = ACTIONS(6509), - [anon_sym_BSLASHcite] = ACTIONS(6509), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCite] = ACTIONS(6509), - [anon_sym_BSLASHnocite] = ACTIONS(6509), - [anon_sym_BSLASHcitet] = ACTIONS(6509), - [anon_sym_BSLASHcitep] = ACTIONS(6509), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteauthor] = ACTIONS(6509), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6509), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitetitle] = ACTIONS(6509), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteyear] = ACTIONS(6509), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitedate] = ACTIONS(6509), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteurl] = ACTIONS(6509), - [anon_sym_BSLASHfullcite] = ACTIONS(6509), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6509), - [anon_sym_BSLASHcitealt] = ACTIONS(6509), - [anon_sym_BSLASHcitealp] = ACTIONS(6509), - [anon_sym_BSLASHcitetext] = ACTIONS(6509), - [anon_sym_BSLASHparencite] = ACTIONS(6509), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHParencite] = ACTIONS(6509), - [anon_sym_BSLASHfootcite] = ACTIONS(6509), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6509), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6509), - [anon_sym_BSLASHtextcite] = ACTIONS(6509), - [anon_sym_BSLASHTextcite] = ACTIONS(6509), - [anon_sym_BSLASHsmartcite] = ACTIONS(6509), - [anon_sym_BSLASHSmartcite] = ACTIONS(6509), - [anon_sym_BSLASHsupercite] = ACTIONS(6509), - [anon_sym_BSLASHautocite] = ACTIONS(6509), - [anon_sym_BSLASHAutocite] = ACTIONS(6509), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHvolcite] = ACTIONS(6509), - [anon_sym_BSLASHVolcite] = ACTIONS(6509), - [anon_sym_BSLASHpvolcite] = ACTIONS(6509), - [anon_sym_BSLASHPvolcite] = ACTIONS(6509), - [anon_sym_BSLASHfvolcite] = ACTIONS(6509), - [anon_sym_BSLASHftvolcite] = ACTIONS(6509), - [anon_sym_BSLASHsvolcite] = ACTIONS(6509), - [anon_sym_BSLASHSvolcite] = ACTIONS(6509), - [anon_sym_BSLASHtvolcite] = ACTIONS(6509), - [anon_sym_BSLASHTvolcite] = ACTIONS(6509), - [anon_sym_BSLASHavolcite] = ACTIONS(6509), - [anon_sym_BSLASHAvolcite] = ACTIONS(6509), - [anon_sym_BSLASHnotecite] = ACTIONS(6509), - [anon_sym_BSLASHNotecite] = ACTIONS(6509), - [anon_sym_BSLASHpnotecite] = ACTIONS(6509), - [anon_sym_BSLASHPnotecite] = ACTIONS(6509), - [anon_sym_BSLASHfnotecite] = ACTIONS(6509), - [anon_sym_BSLASHlabel] = ACTIONS(6509), - [anon_sym_BSLASHref] = ACTIONS(6509), - [anon_sym_BSLASHeqref] = ACTIONS(6509), - [anon_sym_BSLASHvref] = ACTIONS(6509), - [anon_sym_BSLASHVref] = ACTIONS(6509), - [anon_sym_BSLASHautoref] = ACTIONS(6509), - [anon_sym_BSLASHpageref] = ACTIONS(6509), - [anon_sym_BSLASHcref] = ACTIONS(6509), - [anon_sym_BSLASHCref] = ACTIONS(6509), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnameCref] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHlabelcref] = ACTIONS(6509), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCrefrange] = ACTIONS(6509), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnewlabel] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6509), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6509), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6511), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHdef] = ACTIONS(6509), - [anon_sym_BSLASHlet] = ACTIONS(6509), - [anon_sym_BSLASHleft] = ACTIONS(6509), - [anon_sym_BSLASHbig] = ACTIONS(6509), - [anon_sym_BSLASHBig] = ACTIONS(6509), - [anon_sym_BSLASHbigg] = ACTIONS(6509), - [anon_sym_BSLASHBigg] = ACTIONS(6509), - [anon_sym_BSLASHbigl] = ACTIONS(6509), - [anon_sym_BSLASHBigl] = ACTIONS(6509), - [anon_sym_BSLASHbiggl] = ACTIONS(6509), - [anon_sym_BSLASHBiggl] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6509), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6509), - [anon_sym_BSLASHgls] = ACTIONS(6509), - [anon_sym_BSLASHGls] = ACTIONS(6509), - [anon_sym_BSLASHGLS] = ACTIONS(6509), - [anon_sym_BSLASHglspl] = ACTIONS(6509), - [anon_sym_BSLASHGlspl] = ACTIONS(6509), - [anon_sym_BSLASHGLSpl] = ACTIONS(6509), - [anon_sym_BSLASHglsdisp] = ACTIONS(6509), - [anon_sym_BSLASHglslink] = ACTIONS(6509), - [anon_sym_BSLASHglstext] = ACTIONS(6509), - [anon_sym_BSLASHGlstext] = ACTIONS(6509), - [anon_sym_BSLASHGLStext] = ACTIONS(6509), - [anon_sym_BSLASHglsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6509), - [anon_sym_BSLASHglsplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSplural] = ACTIONS(6509), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHglsname] = ACTIONS(6509), - [anon_sym_BSLASHGlsname] = ACTIONS(6509), - [anon_sym_BSLASHGLSname] = ACTIONS(6509), - [anon_sym_BSLASHglssymbol] = ACTIONS(6509), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6509), - [anon_sym_BSLASHglsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6509), - [anon_sym_BSLASHglsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6509), - [anon_sym_BSLASHglsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6509), - [anon_sym_BSLASHglsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6509), - [anon_sym_BSLASHglsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6509), - [anon_sym_BSLASHnewacronym] = ACTIONS(6509), - [anon_sym_BSLASHacrshort] = ACTIONS(6509), - [anon_sym_BSLASHAcrshort] = ACTIONS(6509), - [anon_sym_BSLASHACRshort] = ACTIONS(6509), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6509), - [anon_sym_BSLASHacrlong] = ACTIONS(6509), - [anon_sym_BSLASHAcrlong] = ACTIONS(6509), - [anon_sym_BSLASHACRlong] = ACTIONS(6509), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6509), - [anon_sym_BSLASHacrfull] = ACTIONS(6509), - [anon_sym_BSLASHAcrfull] = ACTIONS(6509), - [anon_sym_BSLASHACRfull] = ACTIONS(6509), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6509), - [anon_sym_BSLASHacs] = ACTIONS(6509), - [anon_sym_BSLASHAcs] = ACTIONS(6509), - [anon_sym_BSLASHacsp] = ACTIONS(6509), - [anon_sym_BSLASHAcsp] = ACTIONS(6509), - [anon_sym_BSLASHacl] = ACTIONS(6509), - [anon_sym_BSLASHAcl] = ACTIONS(6509), - [anon_sym_BSLASHaclp] = ACTIONS(6509), - [anon_sym_BSLASHAclp] = ACTIONS(6509), - [anon_sym_BSLASHacf] = ACTIONS(6509), - [anon_sym_BSLASHAcf] = ACTIONS(6509), - [anon_sym_BSLASHacfp] = ACTIONS(6509), - [anon_sym_BSLASHAcfp] = ACTIONS(6509), - [anon_sym_BSLASHac] = ACTIONS(6509), - [anon_sym_BSLASHAc] = ACTIONS(6509), - [anon_sym_BSLASHacp] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6509), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6509), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6509), - [anon_sym_BSLASHcolor] = ACTIONS(6509), - [anon_sym_BSLASHcolorbox] = ACTIONS(6509), - [anon_sym_BSLASHtextcolor] = ACTIONS(6509), - [anon_sym_BSLASHpagecolor] = ACTIONS(6509), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6509), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6509), - [anon_sym_BSLASHtext] = ACTIONS(6509), - [anon_sym_BSLASHintertext] = ACTIONS(6509), - [anon_sym_shortintertext] = ACTIONS(6509), - }, - [936] = { - [sym_curly_group] = STATE(1207), - [sym_command_name] = ACTIONS(6021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6021), - [anon_sym_LBRACK] = ACTIONS(6023), - [anon_sym_RBRACK] = ACTIONS(6023), - [anon_sym_COMMA] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(6023), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_RPAREN] = ACTIONS(6023), - [anon_sym_BSLASHpart] = ACTIONS(6021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddpart] = ACTIONS(6021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6023), - [anon_sym_BSLASHchapter] = ACTIONS(6021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddchap] = ACTIONS(6021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsection] = ACTIONS(6021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddsec] = ACTIONS(6021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubsection] = ACTIONS(6021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHparagraph] = ACTIONS(6021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6023), - [anon_sym_BSLASHitem] = ACTIONS(6021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6023), - [anon_sym_LBRACE] = ACTIONS(1180), - [sym_word] = ACTIONS(6021), - [sym_placeholder] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6023), - [anon_sym_DASH] = ACTIONS(6023), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6023), - [anon_sym_LT] = ACTIONS(6021), - [anon_sym_GT] = ACTIONS(6021), - [anon_sym_BANG] = ACTIONS(6021), - [anon_sym_PIPE] = ACTIONS(6021), - [anon_sym_COLON] = ACTIONS(6021), - [anon_sym_SQUOTE] = ACTIONS(6021), - [anon_sym__] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6023), - [anon_sym_BSLASHbegin] = ACTIONS(6021), - [anon_sym_BSLASHtitle] = ACTIONS(6021), - [anon_sym_BSLASHauthor] = ACTIONS(6021), - [anon_sym_BSLASHusepackage] = ACTIONS(6021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), - [anon_sym_BSLASHinclude] = ACTIONS(6021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), - [anon_sym_BSLASHinput] = ACTIONS(6021), - [anon_sym_BSLASHsubfile] = ACTIONS(6021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), - [anon_sym_BSLASHbibliography] = ACTIONS(6021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), - [anon_sym_BSLASHincludesvg] = ACTIONS(6021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), - [anon_sym_BSLASHimport] = ACTIONS(6021), - [anon_sym_BSLASHsubimport] = ACTIONS(6021), - [anon_sym_BSLASHinputfrom] = ACTIONS(6021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), - [anon_sym_BSLASHincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHcaption] = ACTIONS(6021), - [anon_sym_BSLASHcite] = ACTIONS(6021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCite] = ACTIONS(6021), - [anon_sym_BSLASHnocite] = ACTIONS(6021), - [anon_sym_BSLASHcitet] = ACTIONS(6021), - [anon_sym_BSLASHcitep] = ACTIONS(6021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteauthor] = ACTIONS(6021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitetitle] = ACTIONS(6021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteyear] = ACTIONS(6021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitedate] = ACTIONS(6021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteurl] = ACTIONS(6021), - [anon_sym_BSLASHfullcite] = ACTIONS(6021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), - [anon_sym_BSLASHcitealt] = ACTIONS(6021), - [anon_sym_BSLASHcitealp] = ACTIONS(6021), - [anon_sym_BSLASHcitetext] = ACTIONS(6021), - [anon_sym_BSLASHparencite] = ACTIONS(6021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHParencite] = ACTIONS(6021), - [anon_sym_BSLASHfootcite] = ACTIONS(6021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), - [anon_sym_BSLASHtextcite] = ACTIONS(6021), - [anon_sym_BSLASHTextcite] = ACTIONS(6021), - [anon_sym_BSLASHsmartcite] = ACTIONS(6021), - [anon_sym_BSLASHSmartcite] = ACTIONS(6021), - [anon_sym_BSLASHsupercite] = ACTIONS(6021), - [anon_sym_BSLASHautocite] = ACTIONS(6021), - [anon_sym_BSLASHAutocite] = ACTIONS(6021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHvolcite] = ACTIONS(6021), - [anon_sym_BSLASHVolcite] = ACTIONS(6021), - [anon_sym_BSLASHpvolcite] = ACTIONS(6021), - [anon_sym_BSLASHPvolcite] = ACTIONS(6021), - [anon_sym_BSLASHfvolcite] = ACTIONS(6021), - [anon_sym_BSLASHftvolcite] = ACTIONS(6021), - [anon_sym_BSLASHsvolcite] = ACTIONS(6021), - [anon_sym_BSLASHSvolcite] = ACTIONS(6021), - [anon_sym_BSLASHtvolcite] = ACTIONS(6021), - [anon_sym_BSLASHTvolcite] = ACTIONS(6021), - [anon_sym_BSLASHavolcite] = ACTIONS(6021), - [anon_sym_BSLASHAvolcite] = ACTIONS(6021), - [anon_sym_BSLASHnotecite] = ACTIONS(6021), - [anon_sym_BSLASHNotecite] = ACTIONS(6021), - [anon_sym_BSLASHpnotecite] = ACTIONS(6021), - [anon_sym_BSLASHPnotecite] = ACTIONS(6021), - [anon_sym_BSLASHfnotecite] = ACTIONS(6021), - [anon_sym_BSLASHlabel] = ACTIONS(6021), - [anon_sym_BSLASHref] = ACTIONS(6021), - [anon_sym_BSLASHeqref] = ACTIONS(6021), - [anon_sym_BSLASHvref] = ACTIONS(6021), - [anon_sym_BSLASHVref] = ACTIONS(6021), - [anon_sym_BSLASHautoref] = ACTIONS(6021), - [anon_sym_BSLASHpageref] = ACTIONS(6021), - [anon_sym_BSLASHcref] = ACTIONS(6021), - [anon_sym_BSLASHCref] = ACTIONS(6021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnameCref] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHlabelcref] = ACTIONS(6021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCrefrange] = ACTIONS(6021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnewlabel] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHdef] = ACTIONS(6021), - [anon_sym_BSLASHlet] = ACTIONS(6021), - [anon_sym_BSLASHleft] = ACTIONS(6021), - [anon_sym_BSLASHbig] = ACTIONS(6021), - [anon_sym_BSLASHBig] = ACTIONS(6021), - [anon_sym_BSLASHbigg] = ACTIONS(6021), - [anon_sym_BSLASHBigg] = ACTIONS(6021), - [anon_sym_BSLASHbigl] = ACTIONS(6021), - [anon_sym_BSLASHBigl] = ACTIONS(6021), - [anon_sym_BSLASHbiggl] = ACTIONS(6021), - [anon_sym_BSLASHBiggl] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), - [anon_sym_BSLASHgls] = ACTIONS(6021), - [anon_sym_BSLASHGls] = ACTIONS(6021), - [anon_sym_BSLASHGLS] = ACTIONS(6021), - [anon_sym_BSLASHglspl] = ACTIONS(6021), - [anon_sym_BSLASHGlspl] = ACTIONS(6021), - [anon_sym_BSLASHGLSpl] = ACTIONS(6021), - [anon_sym_BSLASHglsdisp] = ACTIONS(6021), - [anon_sym_BSLASHglslink] = ACTIONS(6021), - [anon_sym_BSLASHglstext] = ACTIONS(6021), - [anon_sym_BSLASHGlstext] = ACTIONS(6021), - [anon_sym_BSLASHGLStext] = ACTIONS(6021), - [anon_sym_BSLASHglsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), - [anon_sym_BSLASHglsplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSplural] = ACTIONS(6021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHglsname] = ACTIONS(6021), - [anon_sym_BSLASHGlsname] = ACTIONS(6021), - [anon_sym_BSLASHGLSname] = ACTIONS(6021), - [anon_sym_BSLASHglssymbol] = ACTIONS(6021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), - [anon_sym_BSLASHglsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), - [anon_sym_BSLASHglsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), - [anon_sym_BSLASHglsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), - [anon_sym_BSLASHglsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), - [anon_sym_BSLASHglsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), - [anon_sym_BSLASHnewacronym] = ACTIONS(6021), - [anon_sym_BSLASHacrshort] = ACTIONS(6021), - [anon_sym_BSLASHAcrshort] = ACTIONS(6021), - [anon_sym_BSLASHACRshort] = ACTIONS(6021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), - [anon_sym_BSLASHacrlong] = ACTIONS(6021), - [anon_sym_BSLASHAcrlong] = ACTIONS(6021), - [anon_sym_BSLASHACRlong] = ACTIONS(6021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), - [anon_sym_BSLASHacrfull] = ACTIONS(6021), - [anon_sym_BSLASHAcrfull] = ACTIONS(6021), - [anon_sym_BSLASHACRfull] = ACTIONS(6021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), - [anon_sym_BSLASHacs] = ACTIONS(6021), - [anon_sym_BSLASHAcs] = ACTIONS(6021), - [anon_sym_BSLASHacsp] = ACTIONS(6021), - [anon_sym_BSLASHAcsp] = ACTIONS(6021), - [anon_sym_BSLASHacl] = ACTIONS(6021), - [anon_sym_BSLASHAcl] = ACTIONS(6021), - [anon_sym_BSLASHaclp] = ACTIONS(6021), - [anon_sym_BSLASHAclp] = ACTIONS(6021), - [anon_sym_BSLASHacf] = ACTIONS(6021), - [anon_sym_BSLASHAcf] = ACTIONS(6021), - [anon_sym_BSLASHacfp] = ACTIONS(6021), - [anon_sym_BSLASHAcfp] = ACTIONS(6021), - [anon_sym_BSLASHac] = ACTIONS(6021), - [anon_sym_BSLASHAc] = ACTIONS(6021), - [anon_sym_BSLASHacp] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), - [anon_sym_BSLASHcolor] = ACTIONS(6021), - [anon_sym_BSLASHcolorbox] = ACTIONS(6021), - [anon_sym_BSLASHtextcolor] = ACTIONS(6021), - [anon_sym_BSLASHpagecolor] = ACTIONS(6021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), - [anon_sym_BSLASHtext] = ACTIONS(6021), - [anon_sym_BSLASHintertext] = ACTIONS(6021), - [anon_sym_shortintertext] = ACTIONS(6021), - }, - [937] = { - [ts_builtin_sym_end] = ACTIONS(6507), - [sym_command_name] = ACTIONS(6505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(6507), - [anon_sym_RBRACK] = ACTIONS(6507), - [anon_sym_COMMA] = ACTIONS(6507), - [anon_sym_EQ] = ACTIONS(6507), - [anon_sym_LPAREN] = ACTIONS(6507), - [anon_sym_RPAREN] = ACTIONS(6507), - [anon_sym_BSLASHpart] = ACTIONS(6505), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddpart] = ACTIONS(6505), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6507), - [anon_sym_BSLASHchapter] = ACTIONS(6505), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddchap] = ACTIONS(6505), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsection] = ACTIONS(6505), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddsec] = ACTIONS(6505), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubsection] = ACTIONS(6505), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6505), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHparagraph] = ACTIONS(6505), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6505), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6507), - [anon_sym_BSLASHitem] = ACTIONS(6505), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [anon_sym_RBRACE] = ACTIONS(6507), - [sym_word] = ACTIONS(6505), - [sym_placeholder] = ACTIONS(6507), - [anon_sym_PLUS] = ACTIONS(6507), - [anon_sym_DASH] = ACTIONS(6507), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_SLASH] = ACTIONS(6507), - [anon_sym_LT] = ACTIONS(6505), - [anon_sym_GT] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6505), - [anon_sym_PIPE] = ACTIONS(6505), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6505), - [anon_sym__] = ACTIONS(6507), - [anon_sym_CARET] = ACTIONS(6507), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6507), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6507), - [anon_sym_DOLLAR] = ACTIONS(6505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6507), - [anon_sym_BSLASHbegin] = ACTIONS(6505), - [anon_sym_BSLASHtitle] = ACTIONS(6505), - [anon_sym_BSLASHauthor] = ACTIONS(6505), - [anon_sym_BSLASHusepackage] = ACTIONS(6505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6505), - [anon_sym_BSLASHinclude] = ACTIONS(6505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6505), - [anon_sym_BSLASHinput] = ACTIONS(6505), - [anon_sym_BSLASHsubfile] = ACTIONS(6505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6505), - [anon_sym_BSLASHbibliography] = ACTIONS(6505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6505), - [anon_sym_BSLASHincludesvg] = ACTIONS(6505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6505), - [anon_sym_BSLASHimport] = ACTIONS(6505), - [anon_sym_BSLASHsubimport] = ACTIONS(6505), - [anon_sym_BSLASHinputfrom] = ACTIONS(6505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6505), - [anon_sym_BSLASHincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHcaption] = ACTIONS(6505), - [anon_sym_BSLASHcite] = ACTIONS(6505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCite] = ACTIONS(6505), - [anon_sym_BSLASHnocite] = ACTIONS(6505), - [anon_sym_BSLASHcitet] = ACTIONS(6505), - [anon_sym_BSLASHcitep] = ACTIONS(6505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteauthor] = ACTIONS(6505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitetitle] = ACTIONS(6505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteyear] = ACTIONS(6505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitedate] = ACTIONS(6505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteurl] = ACTIONS(6505), - [anon_sym_BSLASHfullcite] = ACTIONS(6505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6505), - [anon_sym_BSLASHcitealt] = ACTIONS(6505), - [anon_sym_BSLASHcitealp] = ACTIONS(6505), - [anon_sym_BSLASHcitetext] = ACTIONS(6505), - [anon_sym_BSLASHparencite] = ACTIONS(6505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHParencite] = ACTIONS(6505), - [anon_sym_BSLASHfootcite] = ACTIONS(6505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6505), - [anon_sym_BSLASHtextcite] = ACTIONS(6505), - [anon_sym_BSLASHTextcite] = ACTIONS(6505), - [anon_sym_BSLASHsmartcite] = ACTIONS(6505), - [anon_sym_BSLASHSmartcite] = ACTIONS(6505), - [anon_sym_BSLASHsupercite] = ACTIONS(6505), - [anon_sym_BSLASHautocite] = ACTIONS(6505), - [anon_sym_BSLASHAutocite] = ACTIONS(6505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHvolcite] = ACTIONS(6505), - [anon_sym_BSLASHVolcite] = ACTIONS(6505), - [anon_sym_BSLASHpvolcite] = ACTIONS(6505), - [anon_sym_BSLASHPvolcite] = ACTIONS(6505), - [anon_sym_BSLASHfvolcite] = ACTIONS(6505), - [anon_sym_BSLASHftvolcite] = ACTIONS(6505), - [anon_sym_BSLASHsvolcite] = ACTIONS(6505), - [anon_sym_BSLASHSvolcite] = ACTIONS(6505), - [anon_sym_BSLASHtvolcite] = ACTIONS(6505), - [anon_sym_BSLASHTvolcite] = ACTIONS(6505), - [anon_sym_BSLASHavolcite] = ACTIONS(6505), - [anon_sym_BSLASHAvolcite] = ACTIONS(6505), - [anon_sym_BSLASHnotecite] = ACTIONS(6505), - [anon_sym_BSLASHNotecite] = ACTIONS(6505), - [anon_sym_BSLASHpnotecite] = ACTIONS(6505), - [anon_sym_BSLASHPnotecite] = ACTIONS(6505), - [anon_sym_BSLASHfnotecite] = ACTIONS(6505), - [anon_sym_BSLASHlabel] = ACTIONS(6505), - [anon_sym_BSLASHref] = ACTIONS(6505), - [anon_sym_BSLASHeqref] = ACTIONS(6505), - [anon_sym_BSLASHvref] = ACTIONS(6505), - [anon_sym_BSLASHVref] = ACTIONS(6505), - [anon_sym_BSLASHautoref] = ACTIONS(6505), - [anon_sym_BSLASHpageref] = ACTIONS(6505), - [anon_sym_BSLASHcref] = ACTIONS(6505), - [anon_sym_BSLASHCref] = ACTIONS(6505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnameCref] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHlabelcref] = ACTIONS(6505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCrefrange] = ACTIONS(6505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnewlabel] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6507), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHdef] = ACTIONS(6505), - [anon_sym_BSLASHlet] = ACTIONS(6505), - [anon_sym_BSLASHleft] = ACTIONS(6505), - [anon_sym_BSLASHbig] = ACTIONS(6505), - [anon_sym_BSLASHBig] = ACTIONS(6505), - [anon_sym_BSLASHbigg] = ACTIONS(6505), - [anon_sym_BSLASHBigg] = ACTIONS(6505), - [anon_sym_BSLASHbigl] = ACTIONS(6505), - [anon_sym_BSLASHBigl] = ACTIONS(6505), - [anon_sym_BSLASHbiggl] = ACTIONS(6505), - [anon_sym_BSLASHBiggl] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6505), - [anon_sym_BSLASHgls] = ACTIONS(6505), - [anon_sym_BSLASHGls] = ACTIONS(6505), - [anon_sym_BSLASHGLS] = ACTIONS(6505), - [anon_sym_BSLASHglspl] = ACTIONS(6505), - [anon_sym_BSLASHGlspl] = ACTIONS(6505), - [anon_sym_BSLASHGLSpl] = ACTIONS(6505), - [anon_sym_BSLASHglsdisp] = ACTIONS(6505), - [anon_sym_BSLASHglslink] = ACTIONS(6505), - [anon_sym_BSLASHglstext] = ACTIONS(6505), - [anon_sym_BSLASHGlstext] = ACTIONS(6505), - [anon_sym_BSLASHGLStext] = ACTIONS(6505), - [anon_sym_BSLASHglsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6505), - [anon_sym_BSLASHglsplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSplural] = ACTIONS(6505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHglsname] = ACTIONS(6505), - [anon_sym_BSLASHGlsname] = ACTIONS(6505), - [anon_sym_BSLASHGLSname] = ACTIONS(6505), - [anon_sym_BSLASHglssymbol] = ACTIONS(6505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6505), - [anon_sym_BSLASHglsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6505), - [anon_sym_BSLASHglsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6505), - [anon_sym_BSLASHglsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6505), - [anon_sym_BSLASHglsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6505), - [anon_sym_BSLASHglsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6505), - [anon_sym_BSLASHnewacronym] = ACTIONS(6505), - [anon_sym_BSLASHacrshort] = ACTIONS(6505), - [anon_sym_BSLASHAcrshort] = ACTIONS(6505), - [anon_sym_BSLASHACRshort] = ACTIONS(6505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6505), - [anon_sym_BSLASHacrlong] = ACTIONS(6505), - [anon_sym_BSLASHAcrlong] = ACTIONS(6505), - [anon_sym_BSLASHACRlong] = ACTIONS(6505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6505), - [anon_sym_BSLASHacrfull] = ACTIONS(6505), - [anon_sym_BSLASHAcrfull] = ACTIONS(6505), - [anon_sym_BSLASHACRfull] = ACTIONS(6505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6505), - [anon_sym_BSLASHacs] = ACTIONS(6505), - [anon_sym_BSLASHAcs] = ACTIONS(6505), - [anon_sym_BSLASHacsp] = ACTIONS(6505), - [anon_sym_BSLASHAcsp] = ACTIONS(6505), - [anon_sym_BSLASHacl] = ACTIONS(6505), - [anon_sym_BSLASHAcl] = ACTIONS(6505), - [anon_sym_BSLASHaclp] = ACTIONS(6505), - [anon_sym_BSLASHAclp] = ACTIONS(6505), - [anon_sym_BSLASHacf] = ACTIONS(6505), - [anon_sym_BSLASHAcf] = ACTIONS(6505), - [anon_sym_BSLASHacfp] = ACTIONS(6505), - [anon_sym_BSLASHAcfp] = ACTIONS(6505), - [anon_sym_BSLASHac] = ACTIONS(6505), - [anon_sym_BSLASHAc] = ACTIONS(6505), - [anon_sym_BSLASHacp] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6505), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6505), - [anon_sym_BSLASHcolor] = ACTIONS(6505), - [anon_sym_BSLASHcolorbox] = ACTIONS(6505), - [anon_sym_BSLASHtextcolor] = ACTIONS(6505), - [anon_sym_BSLASHpagecolor] = ACTIONS(6505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6505), - [anon_sym_BSLASHtext] = ACTIONS(6505), - [anon_sym_BSLASHintertext] = ACTIONS(6505), - [anon_sym_shortintertext] = ACTIONS(6505), - }, - [938] = { - [ts_builtin_sym_end] = ACTIONS(6119), - [sym_command_name] = ACTIONS(6117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6117), - [anon_sym_LBRACK] = ACTIONS(6119), - [anon_sym_RBRACK] = ACTIONS(6119), - [anon_sym_COMMA] = ACTIONS(6119), - [anon_sym_EQ] = ACTIONS(6119), - [anon_sym_LPAREN] = ACTIONS(6119), - [anon_sym_RPAREN] = ACTIONS(6119), - [anon_sym_BSLASHpart] = ACTIONS(6117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddpart] = ACTIONS(6117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6119), - [anon_sym_BSLASHchapter] = ACTIONS(6117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddchap] = ACTIONS(6117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsection] = ACTIONS(6117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddsec] = ACTIONS(6117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubsection] = ACTIONS(6117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHparagraph] = ACTIONS(6117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6119), - [anon_sym_BSLASHitem] = ACTIONS(6117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6119), - [anon_sym_LBRACE] = ACTIONS(6119), - [anon_sym_RBRACE] = ACTIONS(6119), - [sym_word] = ACTIONS(6117), - [sym_placeholder] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6119), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_LT] = ACTIONS(6117), - [anon_sym_GT] = ACTIONS(6117), - [anon_sym_BANG] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_SQUOTE] = ACTIONS(6117), - [anon_sym__] = ACTIONS(6119), - [anon_sym_CARET] = ACTIONS(6119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6119), - [anon_sym_DOLLAR] = ACTIONS(6117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6119), - [anon_sym_BSLASHbegin] = ACTIONS(6117), - [anon_sym_BSLASHtitle] = ACTIONS(6117), - [anon_sym_BSLASHauthor] = ACTIONS(6117), - [anon_sym_BSLASHusepackage] = ACTIONS(6117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6117), - [anon_sym_BSLASHinclude] = ACTIONS(6117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6117), - [anon_sym_BSLASHinput] = ACTIONS(6117), - [anon_sym_BSLASHsubfile] = ACTIONS(6117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6117), - [anon_sym_BSLASHbibliography] = ACTIONS(6117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6117), - [anon_sym_BSLASHincludesvg] = ACTIONS(6117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6117), - [anon_sym_BSLASHimport] = ACTIONS(6117), - [anon_sym_BSLASHsubimport] = ACTIONS(6117), - [anon_sym_BSLASHinputfrom] = ACTIONS(6117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6117), - [anon_sym_BSLASHincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHcaption] = ACTIONS(6117), - [anon_sym_BSLASHcite] = ACTIONS(6117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCite] = ACTIONS(6117), - [anon_sym_BSLASHnocite] = ACTIONS(6117), - [anon_sym_BSLASHcitet] = ACTIONS(6117), - [anon_sym_BSLASHcitep] = ACTIONS(6117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteauthor] = ACTIONS(6117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitetitle] = ACTIONS(6117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteyear] = ACTIONS(6117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitedate] = ACTIONS(6117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteurl] = ACTIONS(6117), - [anon_sym_BSLASHfullcite] = ACTIONS(6117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6117), - [anon_sym_BSLASHcitealt] = ACTIONS(6117), - [anon_sym_BSLASHcitealp] = ACTIONS(6117), - [anon_sym_BSLASHcitetext] = ACTIONS(6117), - [anon_sym_BSLASHparencite] = ACTIONS(6117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHParencite] = ACTIONS(6117), - [anon_sym_BSLASHfootcite] = ACTIONS(6117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6117), - [anon_sym_BSLASHtextcite] = ACTIONS(6117), - [anon_sym_BSLASHTextcite] = ACTIONS(6117), - [anon_sym_BSLASHsmartcite] = ACTIONS(6117), - [anon_sym_BSLASHSmartcite] = ACTIONS(6117), - [anon_sym_BSLASHsupercite] = ACTIONS(6117), - [anon_sym_BSLASHautocite] = ACTIONS(6117), - [anon_sym_BSLASHAutocite] = ACTIONS(6117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHvolcite] = ACTIONS(6117), - [anon_sym_BSLASHVolcite] = ACTIONS(6117), - [anon_sym_BSLASHpvolcite] = ACTIONS(6117), - [anon_sym_BSLASHPvolcite] = ACTIONS(6117), - [anon_sym_BSLASHfvolcite] = ACTIONS(6117), - [anon_sym_BSLASHftvolcite] = ACTIONS(6117), - [anon_sym_BSLASHsvolcite] = ACTIONS(6117), - [anon_sym_BSLASHSvolcite] = ACTIONS(6117), - [anon_sym_BSLASHtvolcite] = ACTIONS(6117), - [anon_sym_BSLASHTvolcite] = ACTIONS(6117), - [anon_sym_BSLASHavolcite] = ACTIONS(6117), - [anon_sym_BSLASHAvolcite] = ACTIONS(6117), - [anon_sym_BSLASHnotecite] = ACTIONS(6117), - [anon_sym_BSLASHNotecite] = ACTIONS(6117), - [anon_sym_BSLASHpnotecite] = ACTIONS(6117), - [anon_sym_BSLASHPnotecite] = ACTIONS(6117), - [anon_sym_BSLASHfnotecite] = ACTIONS(6117), - [anon_sym_BSLASHlabel] = ACTIONS(6117), - [anon_sym_BSLASHref] = ACTIONS(6117), - [anon_sym_BSLASHeqref] = ACTIONS(6117), - [anon_sym_BSLASHvref] = ACTIONS(6117), - [anon_sym_BSLASHVref] = ACTIONS(6117), - [anon_sym_BSLASHautoref] = ACTIONS(6117), - [anon_sym_BSLASHpageref] = ACTIONS(6117), - [anon_sym_BSLASHcref] = ACTIONS(6117), - [anon_sym_BSLASHCref] = ACTIONS(6117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnameCref] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHlabelcref] = ACTIONS(6117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCrefrange] = ACTIONS(6117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnewlabel] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6119), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHdef] = ACTIONS(6117), - [anon_sym_BSLASHlet] = ACTIONS(6117), - [anon_sym_BSLASHleft] = ACTIONS(6117), - [anon_sym_BSLASHbig] = ACTIONS(6117), - [anon_sym_BSLASHBig] = ACTIONS(6117), - [anon_sym_BSLASHbigg] = ACTIONS(6117), - [anon_sym_BSLASHBigg] = ACTIONS(6117), - [anon_sym_BSLASHbigl] = ACTIONS(6117), - [anon_sym_BSLASHBigl] = ACTIONS(6117), - [anon_sym_BSLASHbiggl] = ACTIONS(6117), - [anon_sym_BSLASHBiggl] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6117), - [anon_sym_BSLASHgls] = ACTIONS(6117), - [anon_sym_BSLASHGls] = ACTIONS(6117), - [anon_sym_BSLASHGLS] = ACTIONS(6117), - [anon_sym_BSLASHglspl] = ACTIONS(6117), - [anon_sym_BSLASHGlspl] = ACTIONS(6117), - [anon_sym_BSLASHGLSpl] = ACTIONS(6117), - [anon_sym_BSLASHglsdisp] = ACTIONS(6117), - [anon_sym_BSLASHglslink] = ACTIONS(6117), - [anon_sym_BSLASHglstext] = ACTIONS(6117), - [anon_sym_BSLASHGlstext] = ACTIONS(6117), - [anon_sym_BSLASHGLStext] = ACTIONS(6117), - [anon_sym_BSLASHglsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6117), - [anon_sym_BSLASHglsplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSplural] = ACTIONS(6117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHglsname] = ACTIONS(6117), - [anon_sym_BSLASHGlsname] = ACTIONS(6117), - [anon_sym_BSLASHGLSname] = ACTIONS(6117), - [anon_sym_BSLASHglssymbol] = ACTIONS(6117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6117), - [anon_sym_BSLASHglsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6117), - [anon_sym_BSLASHglsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6117), - [anon_sym_BSLASHglsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6117), - [anon_sym_BSLASHglsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6117), - [anon_sym_BSLASHglsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6117), - [anon_sym_BSLASHnewacronym] = ACTIONS(6117), - [anon_sym_BSLASHacrshort] = ACTIONS(6117), - [anon_sym_BSLASHAcrshort] = ACTIONS(6117), - [anon_sym_BSLASHACRshort] = ACTIONS(6117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6117), - [anon_sym_BSLASHacrlong] = ACTIONS(6117), - [anon_sym_BSLASHAcrlong] = ACTIONS(6117), - [anon_sym_BSLASHACRlong] = ACTIONS(6117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6117), - [anon_sym_BSLASHacrfull] = ACTIONS(6117), - [anon_sym_BSLASHAcrfull] = ACTIONS(6117), - [anon_sym_BSLASHACRfull] = ACTIONS(6117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6117), - [anon_sym_BSLASHacs] = ACTIONS(6117), - [anon_sym_BSLASHAcs] = ACTIONS(6117), - [anon_sym_BSLASHacsp] = ACTIONS(6117), - [anon_sym_BSLASHAcsp] = ACTIONS(6117), - [anon_sym_BSLASHacl] = ACTIONS(6117), - [anon_sym_BSLASHAcl] = ACTIONS(6117), - [anon_sym_BSLASHaclp] = ACTIONS(6117), - [anon_sym_BSLASHAclp] = ACTIONS(6117), - [anon_sym_BSLASHacf] = ACTIONS(6117), - [anon_sym_BSLASHAcf] = ACTIONS(6117), - [anon_sym_BSLASHacfp] = ACTIONS(6117), - [anon_sym_BSLASHAcfp] = ACTIONS(6117), - [anon_sym_BSLASHac] = ACTIONS(6117), - [anon_sym_BSLASHAc] = ACTIONS(6117), - [anon_sym_BSLASHacp] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6117), - [anon_sym_BSLASHcolor] = ACTIONS(6117), - [anon_sym_BSLASHcolorbox] = ACTIONS(6117), - [anon_sym_BSLASHtextcolor] = ACTIONS(6117), - [anon_sym_BSLASHpagecolor] = ACTIONS(6117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6117), - [anon_sym_BSLASHtext] = ACTIONS(6117), - [anon_sym_BSLASHintertext] = ACTIONS(6117), - [anon_sym_shortintertext] = ACTIONS(6117), - }, - [939] = { - [ts_builtin_sym_end] = ACTIONS(6251), - [sym_command_name] = ACTIONS(6249), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_RBRACK] = ACTIONS(6251), - [anon_sym_COMMA] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(6251), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_BSLASHpart] = ACTIONS(6249), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddpart] = ACTIONS(6249), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6251), - [anon_sym_BSLASHchapter] = ACTIONS(6249), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddchap] = ACTIONS(6249), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsection] = ACTIONS(6249), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddsec] = ACTIONS(6249), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubsection] = ACTIONS(6249), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6249), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHparagraph] = ACTIONS(6249), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6249), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6251), - [anon_sym_BSLASHitem] = ACTIONS(6249), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6251), - [anon_sym_LBRACE] = ACTIONS(6251), - [anon_sym_RBRACE] = ACTIONS(6251), - [sym_word] = ACTIONS(6249), - [sym_placeholder] = ACTIONS(6251), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6251), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_LT] = ACTIONS(6249), - [anon_sym_GT] = ACTIONS(6249), - [anon_sym_BANG] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_SQUOTE] = ACTIONS(6249), - [anon_sym__] = ACTIONS(6251), - [anon_sym_CARET] = ACTIONS(6251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), - [anon_sym_DOLLAR] = ACTIONS(6249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), - [anon_sym_BSLASHbegin] = ACTIONS(6249), - [anon_sym_BSLASHtitle] = ACTIONS(6249), - [anon_sym_BSLASHauthor] = ACTIONS(6249), - [anon_sym_BSLASHusepackage] = ACTIONS(6249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), - [anon_sym_BSLASHinclude] = ACTIONS(6249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), - [anon_sym_BSLASHinput] = ACTIONS(6249), - [anon_sym_BSLASHsubfile] = ACTIONS(6249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), - [anon_sym_BSLASHbibliography] = ACTIONS(6249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), - [anon_sym_BSLASHincludesvg] = ACTIONS(6249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), - [anon_sym_BSLASHimport] = ACTIONS(6249), - [anon_sym_BSLASHsubimport] = ACTIONS(6249), - [anon_sym_BSLASHinputfrom] = ACTIONS(6249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), - [anon_sym_BSLASHincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHcaption] = ACTIONS(6249), - [anon_sym_BSLASHcite] = ACTIONS(6249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCite] = ACTIONS(6249), - [anon_sym_BSLASHnocite] = ACTIONS(6249), - [anon_sym_BSLASHcitet] = ACTIONS(6249), - [anon_sym_BSLASHcitep] = ACTIONS(6249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteauthor] = ACTIONS(6249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitetitle] = ACTIONS(6249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteyear] = ACTIONS(6249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitedate] = ACTIONS(6249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteurl] = ACTIONS(6249), - [anon_sym_BSLASHfullcite] = ACTIONS(6249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), - [anon_sym_BSLASHcitealt] = ACTIONS(6249), - [anon_sym_BSLASHcitealp] = ACTIONS(6249), - [anon_sym_BSLASHcitetext] = ACTIONS(6249), - [anon_sym_BSLASHparencite] = ACTIONS(6249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHParencite] = ACTIONS(6249), - [anon_sym_BSLASHfootcite] = ACTIONS(6249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), - [anon_sym_BSLASHtextcite] = ACTIONS(6249), - [anon_sym_BSLASHTextcite] = ACTIONS(6249), - [anon_sym_BSLASHsmartcite] = ACTIONS(6249), - [anon_sym_BSLASHSmartcite] = ACTIONS(6249), - [anon_sym_BSLASHsupercite] = ACTIONS(6249), - [anon_sym_BSLASHautocite] = ACTIONS(6249), - [anon_sym_BSLASHAutocite] = ACTIONS(6249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHvolcite] = ACTIONS(6249), - [anon_sym_BSLASHVolcite] = ACTIONS(6249), - [anon_sym_BSLASHpvolcite] = ACTIONS(6249), - [anon_sym_BSLASHPvolcite] = ACTIONS(6249), - [anon_sym_BSLASHfvolcite] = ACTIONS(6249), - [anon_sym_BSLASHftvolcite] = ACTIONS(6249), - [anon_sym_BSLASHsvolcite] = ACTIONS(6249), - [anon_sym_BSLASHSvolcite] = ACTIONS(6249), - [anon_sym_BSLASHtvolcite] = ACTIONS(6249), - [anon_sym_BSLASHTvolcite] = ACTIONS(6249), - [anon_sym_BSLASHavolcite] = ACTIONS(6249), - [anon_sym_BSLASHAvolcite] = ACTIONS(6249), - [anon_sym_BSLASHnotecite] = ACTIONS(6249), - [anon_sym_BSLASHNotecite] = ACTIONS(6249), - [anon_sym_BSLASHpnotecite] = ACTIONS(6249), - [anon_sym_BSLASHPnotecite] = ACTIONS(6249), - [anon_sym_BSLASHfnotecite] = ACTIONS(6249), - [anon_sym_BSLASHlabel] = ACTIONS(6249), - [anon_sym_BSLASHref] = ACTIONS(6249), - [anon_sym_BSLASHeqref] = ACTIONS(6249), - [anon_sym_BSLASHvref] = ACTIONS(6249), - [anon_sym_BSLASHVref] = ACTIONS(6249), - [anon_sym_BSLASHautoref] = ACTIONS(6249), - [anon_sym_BSLASHpageref] = ACTIONS(6249), - [anon_sym_BSLASHcref] = ACTIONS(6249), - [anon_sym_BSLASHCref] = ACTIONS(6249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnameCref] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHlabelcref] = ACTIONS(6249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCrefrange] = ACTIONS(6249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnewlabel] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHdef] = ACTIONS(6249), - [anon_sym_BSLASHlet] = ACTIONS(6249), - [anon_sym_BSLASHleft] = ACTIONS(6249), - [anon_sym_BSLASHbig] = ACTIONS(6249), - [anon_sym_BSLASHBig] = ACTIONS(6249), - [anon_sym_BSLASHbigg] = ACTIONS(6249), - [anon_sym_BSLASHBigg] = ACTIONS(6249), - [anon_sym_BSLASHbigl] = ACTIONS(6249), - [anon_sym_BSLASHBigl] = ACTIONS(6249), - [anon_sym_BSLASHbiggl] = ACTIONS(6249), - [anon_sym_BSLASHBiggl] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), - [anon_sym_BSLASHgls] = ACTIONS(6249), - [anon_sym_BSLASHGls] = ACTIONS(6249), - [anon_sym_BSLASHGLS] = ACTIONS(6249), - [anon_sym_BSLASHglspl] = ACTIONS(6249), - [anon_sym_BSLASHGlspl] = ACTIONS(6249), - [anon_sym_BSLASHGLSpl] = ACTIONS(6249), - [anon_sym_BSLASHglsdisp] = ACTIONS(6249), - [anon_sym_BSLASHglslink] = ACTIONS(6249), - [anon_sym_BSLASHglstext] = ACTIONS(6249), - [anon_sym_BSLASHGlstext] = ACTIONS(6249), - [anon_sym_BSLASHGLStext] = ACTIONS(6249), - [anon_sym_BSLASHglsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), - [anon_sym_BSLASHglsplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSplural] = ACTIONS(6249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHglsname] = ACTIONS(6249), - [anon_sym_BSLASHGlsname] = ACTIONS(6249), - [anon_sym_BSLASHGLSname] = ACTIONS(6249), - [anon_sym_BSLASHglssymbol] = ACTIONS(6249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), - [anon_sym_BSLASHglsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), - [anon_sym_BSLASHglsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), - [anon_sym_BSLASHglsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), - [anon_sym_BSLASHglsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), - [anon_sym_BSLASHglsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), - [anon_sym_BSLASHnewacronym] = ACTIONS(6249), - [anon_sym_BSLASHacrshort] = ACTIONS(6249), - [anon_sym_BSLASHAcrshort] = ACTIONS(6249), - [anon_sym_BSLASHACRshort] = ACTIONS(6249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), - [anon_sym_BSLASHacrlong] = ACTIONS(6249), - [anon_sym_BSLASHAcrlong] = ACTIONS(6249), - [anon_sym_BSLASHACRlong] = ACTIONS(6249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), - [anon_sym_BSLASHacrfull] = ACTIONS(6249), - [anon_sym_BSLASHAcrfull] = ACTIONS(6249), - [anon_sym_BSLASHACRfull] = ACTIONS(6249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), - [anon_sym_BSLASHacs] = ACTIONS(6249), - [anon_sym_BSLASHAcs] = ACTIONS(6249), - [anon_sym_BSLASHacsp] = ACTIONS(6249), - [anon_sym_BSLASHAcsp] = ACTIONS(6249), - [anon_sym_BSLASHacl] = ACTIONS(6249), - [anon_sym_BSLASHAcl] = ACTIONS(6249), - [anon_sym_BSLASHaclp] = ACTIONS(6249), - [anon_sym_BSLASHAclp] = ACTIONS(6249), - [anon_sym_BSLASHacf] = ACTIONS(6249), - [anon_sym_BSLASHAcf] = ACTIONS(6249), - [anon_sym_BSLASHacfp] = ACTIONS(6249), - [anon_sym_BSLASHAcfp] = ACTIONS(6249), - [anon_sym_BSLASHac] = ACTIONS(6249), - [anon_sym_BSLASHAc] = ACTIONS(6249), - [anon_sym_BSLASHacp] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), - [anon_sym_BSLASHcolor] = ACTIONS(6249), - [anon_sym_BSLASHcolorbox] = ACTIONS(6249), - [anon_sym_BSLASHtextcolor] = ACTIONS(6249), - [anon_sym_BSLASHpagecolor] = ACTIONS(6249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), - [anon_sym_BSLASHtext] = ACTIONS(6249), - [anon_sym_BSLASHintertext] = ACTIONS(6249), - [anon_sym_shortintertext] = ACTIONS(6249), - }, - [940] = { - [ts_builtin_sym_end] = ACTIONS(6183), - [sym_command_name] = ACTIONS(6181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6181), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_EQ] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_BSLASHpart] = ACTIONS(6181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddpart] = ACTIONS(6181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6183), - [anon_sym_BSLASHchapter] = ACTIONS(6181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddchap] = ACTIONS(6181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsection] = ACTIONS(6181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddsec] = ACTIONS(6181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubsection] = ACTIONS(6181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHparagraph] = ACTIONS(6181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6183), - [anon_sym_BSLASHitem] = ACTIONS(6181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6183), - [anon_sym_LBRACE] = ACTIONS(6183), - [anon_sym_RBRACE] = ACTIONS(6183), - [sym_word] = ACTIONS(6181), - [sym_placeholder] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6183), - [anon_sym_DASH] = ACTIONS(6183), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_COLON] = ACTIONS(6181), - [anon_sym_SQUOTE] = ACTIONS(6181), - [anon_sym__] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), - [anon_sym_BSLASHbegin] = ACTIONS(6181), - [anon_sym_BSLASHtitle] = ACTIONS(6181), - [anon_sym_BSLASHauthor] = ACTIONS(6181), - [anon_sym_BSLASHusepackage] = ACTIONS(6181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), - [anon_sym_BSLASHinclude] = ACTIONS(6181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), - [anon_sym_BSLASHinput] = ACTIONS(6181), - [anon_sym_BSLASHsubfile] = ACTIONS(6181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), - [anon_sym_BSLASHbibliography] = ACTIONS(6181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), - [anon_sym_BSLASHincludesvg] = ACTIONS(6181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), - [anon_sym_BSLASHimport] = ACTIONS(6181), - [anon_sym_BSLASHsubimport] = ACTIONS(6181), - [anon_sym_BSLASHinputfrom] = ACTIONS(6181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), - [anon_sym_BSLASHincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHcaption] = ACTIONS(6181), - [anon_sym_BSLASHcite] = ACTIONS(6181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCite] = ACTIONS(6181), - [anon_sym_BSLASHnocite] = ACTIONS(6181), - [anon_sym_BSLASHcitet] = ACTIONS(6181), - [anon_sym_BSLASHcitep] = ACTIONS(6181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteauthor] = ACTIONS(6181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitetitle] = ACTIONS(6181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteyear] = ACTIONS(6181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitedate] = ACTIONS(6181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteurl] = ACTIONS(6181), - [anon_sym_BSLASHfullcite] = ACTIONS(6181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), - [anon_sym_BSLASHcitealt] = ACTIONS(6181), - [anon_sym_BSLASHcitealp] = ACTIONS(6181), - [anon_sym_BSLASHcitetext] = ACTIONS(6181), - [anon_sym_BSLASHparencite] = ACTIONS(6181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHParencite] = ACTIONS(6181), - [anon_sym_BSLASHfootcite] = ACTIONS(6181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), - [anon_sym_BSLASHtextcite] = ACTIONS(6181), - [anon_sym_BSLASHTextcite] = ACTIONS(6181), - [anon_sym_BSLASHsmartcite] = ACTIONS(6181), - [anon_sym_BSLASHSmartcite] = ACTIONS(6181), - [anon_sym_BSLASHsupercite] = ACTIONS(6181), - [anon_sym_BSLASHautocite] = ACTIONS(6181), - [anon_sym_BSLASHAutocite] = ACTIONS(6181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHvolcite] = ACTIONS(6181), - [anon_sym_BSLASHVolcite] = ACTIONS(6181), - [anon_sym_BSLASHpvolcite] = ACTIONS(6181), - [anon_sym_BSLASHPvolcite] = ACTIONS(6181), - [anon_sym_BSLASHfvolcite] = ACTIONS(6181), - [anon_sym_BSLASHftvolcite] = ACTIONS(6181), - [anon_sym_BSLASHsvolcite] = ACTIONS(6181), - [anon_sym_BSLASHSvolcite] = ACTIONS(6181), - [anon_sym_BSLASHtvolcite] = ACTIONS(6181), - [anon_sym_BSLASHTvolcite] = ACTIONS(6181), - [anon_sym_BSLASHavolcite] = ACTIONS(6181), - [anon_sym_BSLASHAvolcite] = ACTIONS(6181), - [anon_sym_BSLASHnotecite] = ACTIONS(6181), - [anon_sym_BSLASHNotecite] = ACTIONS(6181), - [anon_sym_BSLASHpnotecite] = ACTIONS(6181), - [anon_sym_BSLASHPnotecite] = ACTIONS(6181), - [anon_sym_BSLASHfnotecite] = ACTIONS(6181), - [anon_sym_BSLASHlabel] = ACTIONS(6181), - [anon_sym_BSLASHref] = ACTIONS(6181), - [anon_sym_BSLASHeqref] = ACTIONS(6181), - [anon_sym_BSLASHvref] = ACTIONS(6181), - [anon_sym_BSLASHVref] = ACTIONS(6181), - [anon_sym_BSLASHautoref] = ACTIONS(6181), - [anon_sym_BSLASHpageref] = ACTIONS(6181), - [anon_sym_BSLASHcref] = ACTIONS(6181), - [anon_sym_BSLASHCref] = ACTIONS(6181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnameCref] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHlabelcref] = ACTIONS(6181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCrefrange] = ACTIONS(6181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnewlabel] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHdef] = ACTIONS(6181), - [anon_sym_BSLASHlet] = ACTIONS(6181), - [anon_sym_BSLASHleft] = ACTIONS(6181), - [anon_sym_BSLASHbig] = ACTIONS(6181), - [anon_sym_BSLASHBig] = ACTIONS(6181), - [anon_sym_BSLASHbigg] = ACTIONS(6181), - [anon_sym_BSLASHBigg] = ACTIONS(6181), - [anon_sym_BSLASHbigl] = ACTIONS(6181), - [anon_sym_BSLASHBigl] = ACTIONS(6181), - [anon_sym_BSLASHbiggl] = ACTIONS(6181), - [anon_sym_BSLASHBiggl] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), - [anon_sym_BSLASHgls] = ACTIONS(6181), - [anon_sym_BSLASHGls] = ACTIONS(6181), - [anon_sym_BSLASHGLS] = ACTIONS(6181), - [anon_sym_BSLASHglspl] = ACTIONS(6181), - [anon_sym_BSLASHGlspl] = ACTIONS(6181), - [anon_sym_BSLASHGLSpl] = ACTIONS(6181), - [anon_sym_BSLASHglsdisp] = ACTIONS(6181), - [anon_sym_BSLASHglslink] = ACTIONS(6181), - [anon_sym_BSLASHglstext] = ACTIONS(6181), - [anon_sym_BSLASHGlstext] = ACTIONS(6181), - [anon_sym_BSLASHGLStext] = ACTIONS(6181), - [anon_sym_BSLASHglsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), - [anon_sym_BSLASHglsplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSplural] = ACTIONS(6181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHglsname] = ACTIONS(6181), - [anon_sym_BSLASHGlsname] = ACTIONS(6181), - [anon_sym_BSLASHGLSname] = ACTIONS(6181), - [anon_sym_BSLASHglssymbol] = ACTIONS(6181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), - [anon_sym_BSLASHglsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), - [anon_sym_BSLASHglsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), - [anon_sym_BSLASHglsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), - [anon_sym_BSLASHglsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), - [anon_sym_BSLASHglsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), - [anon_sym_BSLASHnewacronym] = ACTIONS(6181), - [anon_sym_BSLASHacrshort] = ACTIONS(6181), - [anon_sym_BSLASHAcrshort] = ACTIONS(6181), - [anon_sym_BSLASHACRshort] = ACTIONS(6181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), - [anon_sym_BSLASHacrlong] = ACTIONS(6181), - [anon_sym_BSLASHAcrlong] = ACTIONS(6181), - [anon_sym_BSLASHACRlong] = ACTIONS(6181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), - [anon_sym_BSLASHacrfull] = ACTIONS(6181), - [anon_sym_BSLASHAcrfull] = ACTIONS(6181), - [anon_sym_BSLASHACRfull] = ACTIONS(6181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), - [anon_sym_BSLASHacs] = ACTIONS(6181), - [anon_sym_BSLASHAcs] = ACTIONS(6181), - [anon_sym_BSLASHacsp] = ACTIONS(6181), - [anon_sym_BSLASHAcsp] = ACTIONS(6181), - [anon_sym_BSLASHacl] = ACTIONS(6181), - [anon_sym_BSLASHAcl] = ACTIONS(6181), - [anon_sym_BSLASHaclp] = ACTIONS(6181), - [anon_sym_BSLASHAclp] = ACTIONS(6181), - [anon_sym_BSLASHacf] = ACTIONS(6181), - [anon_sym_BSLASHAcf] = ACTIONS(6181), - [anon_sym_BSLASHacfp] = ACTIONS(6181), - [anon_sym_BSLASHAcfp] = ACTIONS(6181), - [anon_sym_BSLASHac] = ACTIONS(6181), - [anon_sym_BSLASHAc] = ACTIONS(6181), - [anon_sym_BSLASHacp] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), - [anon_sym_BSLASHcolor] = ACTIONS(6181), - [anon_sym_BSLASHcolorbox] = ACTIONS(6181), - [anon_sym_BSLASHtextcolor] = ACTIONS(6181), - [anon_sym_BSLASHpagecolor] = ACTIONS(6181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), - [anon_sym_BSLASHtext] = ACTIONS(6181), - [anon_sym_BSLASHintertext] = ACTIONS(6181), - [anon_sym_shortintertext] = ACTIONS(6181), - }, - [941] = { - [ts_builtin_sym_end] = ACTIONS(6203), - [sym_command_name] = ACTIONS(6201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6201), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_EQ] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_BSLASHpart] = ACTIONS(6201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddpart] = ACTIONS(6201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6203), - [anon_sym_BSLASHchapter] = ACTIONS(6201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddchap] = ACTIONS(6201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsection] = ACTIONS(6201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddsec] = ACTIONS(6201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubsection] = ACTIONS(6201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHparagraph] = ACTIONS(6201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6203), - [anon_sym_BSLASHitem] = ACTIONS(6201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6203), - [anon_sym_RBRACE] = ACTIONS(6203), - [sym_word] = ACTIONS(6201), - [sym_placeholder] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_SQUOTE] = ACTIONS(6201), - [anon_sym__] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), - [anon_sym_DOLLAR] = ACTIONS(6201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), - [anon_sym_BSLASHbegin] = ACTIONS(6201), - [anon_sym_BSLASHtitle] = ACTIONS(6201), - [anon_sym_BSLASHauthor] = ACTIONS(6201), - [anon_sym_BSLASHusepackage] = ACTIONS(6201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), - [anon_sym_BSLASHinclude] = ACTIONS(6201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), - [anon_sym_BSLASHinput] = ACTIONS(6201), - [anon_sym_BSLASHsubfile] = ACTIONS(6201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), - [anon_sym_BSLASHbibliography] = ACTIONS(6201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), - [anon_sym_BSLASHincludesvg] = ACTIONS(6201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), - [anon_sym_BSLASHimport] = ACTIONS(6201), - [anon_sym_BSLASHsubimport] = ACTIONS(6201), - [anon_sym_BSLASHinputfrom] = ACTIONS(6201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), - [anon_sym_BSLASHincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHcaption] = ACTIONS(6201), - [anon_sym_BSLASHcite] = ACTIONS(6201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCite] = ACTIONS(6201), - [anon_sym_BSLASHnocite] = ACTIONS(6201), - [anon_sym_BSLASHcitet] = ACTIONS(6201), - [anon_sym_BSLASHcitep] = ACTIONS(6201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteauthor] = ACTIONS(6201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitetitle] = ACTIONS(6201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteyear] = ACTIONS(6201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitedate] = ACTIONS(6201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteurl] = ACTIONS(6201), - [anon_sym_BSLASHfullcite] = ACTIONS(6201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), - [anon_sym_BSLASHcitealt] = ACTIONS(6201), - [anon_sym_BSLASHcitealp] = ACTIONS(6201), - [anon_sym_BSLASHcitetext] = ACTIONS(6201), - [anon_sym_BSLASHparencite] = ACTIONS(6201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHParencite] = ACTIONS(6201), - [anon_sym_BSLASHfootcite] = ACTIONS(6201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), - [anon_sym_BSLASHtextcite] = ACTIONS(6201), - [anon_sym_BSLASHTextcite] = ACTIONS(6201), - [anon_sym_BSLASHsmartcite] = ACTIONS(6201), - [anon_sym_BSLASHSmartcite] = ACTIONS(6201), - [anon_sym_BSLASHsupercite] = ACTIONS(6201), - [anon_sym_BSLASHautocite] = ACTIONS(6201), - [anon_sym_BSLASHAutocite] = ACTIONS(6201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHvolcite] = ACTIONS(6201), - [anon_sym_BSLASHVolcite] = ACTIONS(6201), - [anon_sym_BSLASHpvolcite] = ACTIONS(6201), - [anon_sym_BSLASHPvolcite] = ACTIONS(6201), - [anon_sym_BSLASHfvolcite] = ACTIONS(6201), - [anon_sym_BSLASHftvolcite] = ACTIONS(6201), - [anon_sym_BSLASHsvolcite] = ACTIONS(6201), - [anon_sym_BSLASHSvolcite] = ACTIONS(6201), - [anon_sym_BSLASHtvolcite] = ACTIONS(6201), - [anon_sym_BSLASHTvolcite] = ACTIONS(6201), - [anon_sym_BSLASHavolcite] = ACTIONS(6201), - [anon_sym_BSLASHAvolcite] = ACTIONS(6201), - [anon_sym_BSLASHnotecite] = ACTIONS(6201), - [anon_sym_BSLASHNotecite] = ACTIONS(6201), - [anon_sym_BSLASHpnotecite] = ACTIONS(6201), - [anon_sym_BSLASHPnotecite] = ACTIONS(6201), - [anon_sym_BSLASHfnotecite] = ACTIONS(6201), - [anon_sym_BSLASHlabel] = ACTIONS(6201), - [anon_sym_BSLASHref] = ACTIONS(6201), - [anon_sym_BSLASHeqref] = ACTIONS(6201), - [anon_sym_BSLASHvref] = ACTIONS(6201), - [anon_sym_BSLASHVref] = ACTIONS(6201), - [anon_sym_BSLASHautoref] = ACTIONS(6201), - [anon_sym_BSLASHpageref] = ACTIONS(6201), - [anon_sym_BSLASHcref] = ACTIONS(6201), - [anon_sym_BSLASHCref] = ACTIONS(6201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnameCref] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHlabelcref] = ACTIONS(6201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCrefrange] = ACTIONS(6201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnewlabel] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHdef] = ACTIONS(6201), - [anon_sym_BSLASHlet] = ACTIONS(6201), - [anon_sym_BSLASHleft] = ACTIONS(6201), - [anon_sym_BSLASHbig] = ACTIONS(6201), - [anon_sym_BSLASHBig] = ACTIONS(6201), - [anon_sym_BSLASHbigg] = ACTIONS(6201), - [anon_sym_BSLASHBigg] = ACTIONS(6201), - [anon_sym_BSLASHbigl] = ACTIONS(6201), - [anon_sym_BSLASHBigl] = ACTIONS(6201), - [anon_sym_BSLASHbiggl] = ACTIONS(6201), - [anon_sym_BSLASHBiggl] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), - [anon_sym_BSLASHgls] = ACTIONS(6201), - [anon_sym_BSLASHGls] = ACTIONS(6201), - [anon_sym_BSLASHGLS] = ACTIONS(6201), - [anon_sym_BSLASHglspl] = ACTIONS(6201), - [anon_sym_BSLASHGlspl] = ACTIONS(6201), - [anon_sym_BSLASHGLSpl] = ACTIONS(6201), - [anon_sym_BSLASHglsdisp] = ACTIONS(6201), - [anon_sym_BSLASHglslink] = ACTIONS(6201), - [anon_sym_BSLASHglstext] = ACTIONS(6201), - [anon_sym_BSLASHGlstext] = ACTIONS(6201), - [anon_sym_BSLASHGLStext] = ACTIONS(6201), - [anon_sym_BSLASHglsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), - [anon_sym_BSLASHglsplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSplural] = ACTIONS(6201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHglsname] = ACTIONS(6201), - [anon_sym_BSLASHGlsname] = ACTIONS(6201), - [anon_sym_BSLASHGLSname] = ACTIONS(6201), - [anon_sym_BSLASHglssymbol] = ACTIONS(6201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), - [anon_sym_BSLASHglsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), - [anon_sym_BSLASHglsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), - [anon_sym_BSLASHglsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), - [anon_sym_BSLASHglsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), - [anon_sym_BSLASHglsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), - [anon_sym_BSLASHnewacronym] = ACTIONS(6201), - [anon_sym_BSLASHacrshort] = ACTIONS(6201), - [anon_sym_BSLASHAcrshort] = ACTIONS(6201), - [anon_sym_BSLASHACRshort] = ACTIONS(6201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), - [anon_sym_BSLASHacrlong] = ACTIONS(6201), - [anon_sym_BSLASHAcrlong] = ACTIONS(6201), - [anon_sym_BSLASHACRlong] = ACTIONS(6201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), - [anon_sym_BSLASHacrfull] = ACTIONS(6201), - [anon_sym_BSLASHAcrfull] = ACTIONS(6201), - [anon_sym_BSLASHACRfull] = ACTIONS(6201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), - [anon_sym_BSLASHacs] = ACTIONS(6201), - [anon_sym_BSLASHAcs] = ACTIONS(6201), - [anon_sym_BSLASHacsp] = ACTIONS(6201), - [anon_sym_BSLASHAcsp] = ACTIONS(6201), - [anon_sym_BSLASHacl] = ACTIONS(6201), - [anon_sym_BSLASHAcl] = ACTIONS(6201), - [anon_sym_BSLASHaclp] = ACTIONS(6201), - [anon_sym_BSLASHAclp] = ACTIONS(6201), - [anon_sym_BSLASHacf] = ACTIONS(6201), - [anon_sym_BSLASHAcf] = ACTIONS(6201), - [anon_sym_BSLASHacfp] = ACTIONS(6201), - [anon_sym_BSLASHAcfp] = ACTIONS(6201), - [anon_sym_BSLASHac] = ACTIONS(6201), - [anon_sym_BSLASHAc] = ACTIONS(6201), - [anon_sym_BSLASHacp] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), - [anon_sym_BSLASHcolor] = ACTIONS(6201), - [anon_sym_BSLASHcolorbox] = ACTIONS(6201), - [anon_sym_BSLASHtextcolor] = ACTIONS(6201), - [anon_sym_BSLASHpagecolor] = ACTIONS(6201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), - [anon_sym_BSLASHtext] = ACTIONS(6201), - [anon_sym_BSLASHintertext] = ACTIONS(6201), - [anon_sym_shortintertext] = ACTIONS(6201), - }, - [942] = { - [ts_builtin_sym_end] = ACTIONS(6223), - [sym_command_name] = ACTIONS(6221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6221), - [anon_sym_LBRACK] = ACTIONS(6223), - [anon_sym_RBRACK] = ACTIONS(6223), - [anon_sym_COMMA] = ACTIONS(6223), - [anon_sym_EQ] = ACTIONS(6223), - [anon_sym_LPAREN] = ACTIONS(6223), - [anon_sym_RPAREN] = ACTIONS(6223), - [anon_sym_BSLASHpart] = ACTIONS(6221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddpart] = ACTIONS(6221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6223), - [anon_sym_BSLASHchapter] = ACTIONS(6221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddchap] = ACTIONS(6221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsection] = ACTIONS(6221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddsec] = ACTIONS(6221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubsection] = ACTIONS(6221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHparagraph] = ACTIONS(6221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6223), - [anon_sym_BSLASHitem] = ACTIONS(6221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6223), - [anon_sym_LBRACE] = ACTIONS(6223), - [anon_sym_RBRACE] = ACTIONS(6223), - [sym_word] = ACTIONS(6221), - [sym_placeholder] = ACTIONS(6223), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6223), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_LT] = ACTIONS(6221), - [anon_sym_GT] = ACTIONS(6221), - [anon_sym_BANG] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_SQUOTE] = ACTIONS(6221), - [anon_sym__] = ACTIONS(6223), - [anon_sym_CARET] = ACTIONS(6223), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6223), - [anon_sym_DOLLAR] = ACTIONS(6221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6223), - [anon_sym_BSLASHbegin] = ACTIONS(6221), - [anon_sym_BSLASHtitle] = ACTIONS(6221), - [anon_sym_BSLASHauthor] = ACTIONS(6221), - [anon_sym_BSLASHusepackage] = ACTIONS(6221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6221), - [anon_sym_BSLASHinclude] = ACTIONS(6221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6221), - [anon_sym_BSLASHinput] = ACTIONS(6221), - [anon_sym_BSLASHsubfile] = ACTIONS(6221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6221), - [anon_sym_BSLASHbibliography] = ACTIONS(6221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6221), - [anon_sym_BSLASHincludesvg] = ACTIONS(6221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6221), - [anon_sym_BSLASHimport] = ACTIONS(6221), - [anon_sym_BSLASHsubimport] = ACTIONS(6221), - [anon_sym_BSLASHinputfrom] = ACTIONS(6221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6221), - [anon_sym_BSLASHincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHcaption] = ACTIONS(6221), - [anon_sym_BSLASHcite] = ACTIONS(6221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCite] = ACTIONS(6221), - [anon_sym_BSLASHnocite] = ACTIONS(6221), - [anon_sym_BSLASHcitet] = ACTIONS(6221), - [anon_sym_BSLASHcitep] = ACTIONS(6221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteauthor] = ACTIONS(6221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitetitle] = ACTIONS(6221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteyear] = ACTIONS(6221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitedate] = ACTIONS(6221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteurl] = ACTIONS(6221), - [anon_sym_BSLASHfullcite] = ACTIONS(6221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6221), - [anon_sym_BSLASHcitealt] = ACTIONS(6221), - [anon_sym_BSLASHcitealp] = ACTIONS(6221), - [anon_sym_BSLASHcitetext] = ACTIONS(6221), - [anon_sym_BSLASHparencite] = ACTIONS(6221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHParencite] = ACTIONS(6221), - [anon_sym_BSLASHfootcite] = ACTIONS(6221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6221), - [anon_sym_BSLASHtextcite] = ACTIONS(6221), - [anon_sym_BSLASHTextcite] = ACTIONS(6221), - [anon_sym_BSLASHsmartcite] = ACTIONS(6221), - [anon_sym_BSLASHSmartcite] = ACTIONS(6221), - [anon_sym_BSLASHsupercite] = ACTIONS(6221), - [anon_sym_BSLASHautocite] = ACTIONS(6221), - [anon_sym_BSLASHAutocite] = ACTIONS(6221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHvolcite] = ACTIONS(6221), - [anon_sym_BSLASHVolcite] = ACTIONS(6221), - [anon_sym_BSLASHpvolcite] = ACTIONS(6221), - [anon_sym_BSLASHPvolcite] = ACTIONS(6221), - [anon_sym_BSLASHfvolcite] = ACTIONS(6221), - [anon_sym_BSLASHftvolcite] = ACTIONS(6221), - [anon_sym_BSLASHsvolcite] = ACTIONS(6221), - [anon_sym_BSLASHSvolcite] = ACTIONS(6221), - [anon_sym_BSLASHtvolcite] = ACTIONS(6221), - [anon_sym_BSLASHTvolcite] = ACTIONS(6221), - [anon_sym_BSLASHavolcite] = ACTIONS(6221), - [anon_sym_BSLASHAvolcite] = ACTIONS(6221), - [anon_sym_BSLASHnotecite] = ACTIONS(6221), - [anon_sym_BSLASHNotecite] = ACTIONS(6221), - [anon_sym_BSLASHpnotecite] = ACTIONS(6221), - [anon_sym_BSLASHPnotecite] = ACTIONS(6221), - [anon_sym_BSLASHfnotecite] = ACTIONS(6221), - [anon_sym_BSLASHlabel] = ACTIONS(6221), - [anon_sym_BSLASHref] = ACTIONS(6221), - [anon_sym_BSLASHeqref] = ACTIONS(6221), - [anon_sym_BSLASHvref] = ACTIONS(6221), - [anon_sym_BSLASHVref] = ACTIONS(6221), - [anon_sym_BSLASHautoref] = ACTIONS(6221), - [anon_sym_BSLASHpageref] = ACTIONS(6221), - [anon_sym_BSLASHcref] = ACTIONS(6221), - [anon_sym_BSLASHCref] = ACTIONS(6221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnameCref] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHlabelcref] = ACTIONS(6221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCrefrange] = ACTIONS(6221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnewlabel] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6223), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHdef] = ACTIONS(6221), - [anon_sym_BSLASHlet] = ACTIONS(6221), - [anon_sym_BSLASHleft] = ACTIONS(6221), - [anon_sym_BSLASHbig] = ACTIONS(6221), - [anon_sym_BSLASHBig] = ACTIONS(6221), - [anon_sym_BSLASHbigg] = ACTIONS(6221), - [anon_sym_BSLASHBigg] = ACTIONS(6221), - [anon_sym_BSLASHbigl] = ACTIONS(6221), - [anon_sym_BSLASHBigl] = ACTIONS(6221), - [anon_sym_BSLASHbiggl] = ACTIONS(6221), - [anon_sym_BSLASHBiggl] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6221), - [anon_sym_BSLASHgls] = ACTIONS(6221), - [anon_sym_BSLASHGls] = ACTIONS(6221), - [anon_sym_BSLASHGLS] = ACTIONS(6221), - [anon_sym_BSLASHglspl] = ACTIONS(6221), - [anon_sym_BSLASHGlspl] = ACTIONS(6221), - [anon_sym_BSLASHGLSpl] = ACTIONS(6221), - [anon_sym_BSLASHglsdisp] = ACTIONS(6221), - [anon_sym_BSLASHglslink] = ACTIONS(6221), - [anon_sym_BSLASHglstext] = ACTIONS(6221), - [anon_sym_BSLASHGlstext] = ACTIONS(6221), - [anon_sym_BSLASHGLStext] = ACTIONS(6221), - [anon_sym_BSLASHglsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6221), - [anon_sym_BSLASHglsplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSplural] = ACTIONS(6221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHglsname] = ACTIONS(6221), - [anon_sym_BSLASHGlsname] = ACTIONS(6221), - [anon_sym_BSLASHGLSname] = ACTIONS(6221), - [anon_sym_BSLASHglssymbol] = ACTIONS(6221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6221), - [anon_sym_BSLASHglsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6221), - [anon_sym_BSLASHglsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6221), - [anon_sym_BSLASHglsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6221), - [anon_sym_BSLASHglsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6221), - [anon_sym_BSLASHglsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6221), - [anon_sym_BSLASHnewacronym] = ACTIONS(6221), - [anon_sym_BSLASHacrshort] = ACTIONS(6221), - [anon_sym_BSLASHAcrshort] = ACTIONS(6221), - [anon_sym_BSLASHACRshort] = ACTIONS(6221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6221), - [anon_sym_BSLASHacrlong] = ACTIONS(6221), - [anon_sym_BSLASHAcrlong] = ACTIONS(6221), - [anon_sym_BSLASHACRlong] = ACTIONS(6221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6221), - [anon_sym_BSLASHacrfull] = ACTIONS(6221), - [anon_sym_BSLASHAcrfull] = ACTIONS(6221), - [anon_sym_BSLASHACRfull] = ACTIONS(6221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6221), - [anon_sym_BSLASHacs] = ACTIONS(6221), - [anon_sym_BSLASHAcs] = ACTIONS(6221), - [anon_sym_BSLASHacsp] = ACTIONS(6221), - [anon_sym_BSLASHAcsp] = ACTIONS(6221), - [anon_sym_BSLASHacl] = ACTIONS(6221), - [anon_sym_BSLASHAcl] = ACTIONS(6221), - [anon_sym_BSLASHaclp] = ACTIONS(6221), - [anon_sym_BSLASHAclp] = ACTIONS(6221), - [anon_sym_BSLASHacf] = ACTIONS(6221), - [anon_sym_BSLASHAcf] = ACTIONS(6221), - [anon_sym_BSLASHacfp] = ACTIONS(6221), - [anon_sym_BSLASHAcfp] = ACTIONS(6221), - [anon_sym_BSLASHac] = ACTIONS(6221), - [anon_sym_BSLASHAc] = ACTIONS(6221), - [anon_sym_BSLASHacp] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6221), - [anon_sym_BSLASHcolor] = ACTIONS(6221), - [anon_sym_BSLASHcolorbox] = ACTIONS(6221), - [anon_sym_BSLASHtextcolor] = ACTIONS(6221), - [anon_sym_BSLASHpagecolor] = ACTIONS(6221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6221), - [anon_sym_BSLASHtext] = ACTIONS(6221), - [anon_sym_BSLASHintertext] = ACTIONS(6221), - [anon_sym_shortintertext] = ACTIONS(6221), - }, - [943] = { - [ts_builtin_sym_end] = ACTIONS(6239), - [sym_command_name] = ACTIONS(6237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6237), - [anon_sym_LBRACK] = ACTIONS(6239), - [anon_sym_RBRACK] = ACTIONS(6239), - [anon_sym_COMMA] = ACTIONS(6239), - [anon_sym_EQ] = ACTIONS(6239), - [anon_sym_LPAREN] = ACTIONS(6239), - [anon_sym_RPAREN] = ACTIONS(6239), - [anon_sym_BSLASHpart] = ACTIONS(6237), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddpart] = ACTIONS(6237), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6239), - [anon_sym_BSLASHchapter] = ACTIONS(6237), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddchap] = ACTIONS(6237), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsection] = ACTIONS(6237), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddsec] = ACTIONS(6237), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubsection] = ACTIONS(6237), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6237), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHparagraph] = ACTIONS(6237), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6237), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6239), - [anon_sym_BSLASHitem] = ACTIONS(6237), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6239), - [anon_sym_RBRACE] = ACTIONS(6239), - [sym_word] = ACTIONS(6237), - [sym_placeholder] = ACTIONS(6239), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6239), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_BANG] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_SQUOTE] = ACTIONS(6237), - [anon_sym__] = ACTIONS(6239), - [anon_sym_CARET] = ACTIONS(6239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), - [anon_sym_DOLLAR] = ACTIONS(6237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), - [anon_sym_BSLASHbegin] = ACTIONS(6237), - [anon_sym_BSLASHtitle] = ACTIONS(6237), - [anon_sym_BSLASHauthor] = ACTIONS(6237), - [anon_sym_BSLASHusepackage] = ACTIONS(6237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6237), - [anon_sym_BSLASHinclude] = ACTIONS(6237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6237), - [anon_sym_BSLASHinput] = ACTIONS(6237), - [anon_sym_BSLASHsubfile] = ACTIONS(6237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6237), - [anon_sym_BSLASHbibliography] = ACTIONS(6237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6237), - [anon_sym_BSLASHincludesvg] = ACTIONS(6237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6237), - [anon_sym_BSLASHimport] = ACTIONS(6237), - [anon_sym_BSLASHsubimport] = ACTIONS(6237), - [anon_sym_BSLASHinputfrom] = ACTIONS(6237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6237), - [anon_sym_BSLASHincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHcaption] = ACTIONS(6237), - [anon_sym_BSLASHcite] = ACTIONS(6237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCite] = ACTIONS(6237), - [anon_sym_BSLASHnocite] = ACTIONS(6237), - [anon_sym_BSLASHcitet] = ACTIONS(6237), - [anon_sym_BSLASHcitep] = ACTIONS(6237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteauthor] = ACTIONS(6237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitetitle] = ACTIONS(6237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteyear] = ACTIONS(6237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitedate] = ACTIONS(6237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteurl] = ACTIONS(6237), - [anon_sym_BSLASHfullcite] = ACTIONS(6237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6237), - [anon_sym_BSLASHcitealt] = ACTIONS(6237), - [anon_sym_BSLASHcitealp] = ACTIONS(6237), - [anon_sym_BSLASHcitetext] = ACTIONS(6237), - [anon_sym_BSLASHparencite] = ACTIONS(6237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHParencite] = ACTIONS(6237), - [anon_sym_BSLASHfootcite] = ACTIONS(6237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6237), - [anon_sym_BSLASHtextcite] = ACTIONS(6237), - [anon_sym_BSLASHTextcite] = ACTIONS(6237), - [anon_sym_BSLASHsmartcite] = ACTIONS(6237), - [anon_sym_BSLASHSmartcite] = ACTIONS(6237), - [anon_sym_BSLASHsupercite] = ACTIONS(6237), - [anon_sym_BSLASHautocite] = ACTIONS(6237), - [anon_sym_BSLASHAutocite] = ACTIONS(6237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHvolcite] = ACTIONS(6237), - [anon_sym_BSLASHVolcite] = ACTIONS(6237), - [anon_sym_BSLASHpvolcite] = ACTIONS(6237), - [anon_sym_BSLASHPvolcite] = ACTIONS(6237), - [anon_sym_BSLASHfvolcite] = ACTIONS(6237), - [anon_sym_BSLASHftvolcite] = ACTIONS(6237), - [anon_sym_BSLASHsvolcite] = ACTIONS(6237), - [anon_sym_BSLASHSvolcite] = ACTIONS(6237), - [anon_sym_BSLASHtvolcite] = ACTIONS(6237), - [anon_sym_BSLASHTvolcite] = ACTIONS(6237), - [anon_sym_BSLASHavolcite] = ACTIONS(6237), - [anon_sym_BSLASHAvolcite] = ACTIONS(6237), - [anon_sym_BSLASHnotecite] = ACTIONS(6237), - [anon_sym_BSLASHNotecite] = ACTIONS(6237), - [anon_sym_BSLASHpnotecite] = ACTIONS(6237), - [anon_sym_BSLASHPnotecite] = ACTIONS(6237), - [anon_sym_BSLASHfnotecite] = ACTIONS(6237), - [anon_sym_BSLASHlabel] = ACTIONS(6237), - [anon_sym_BSLASHref] = ACTIONS(6237), - [anon_sym_BSLASHeqref] = ACTIONS(6237), - [anon_sym_BSLASHvref] = ACTIONS(6237), - [anon_sym_BSLASHVref] = ACTIONS(6237), - [anon_sym_BSLASHautoref] = ACTIONS(6237), - [anon_sym_BSLASHpageref] = ACTIONS(6237), - [anon_sym_BSLASHcref] = ACTIONS(6237), - [anon_sym_BSLASHCref] = ACTIONS(6237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnameCref] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHlabelcref] = ACTIONS(6237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCrefrange] = ACTIONS(6237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnewlabel] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHdef] = ACTIONS(6237), - [anon_sym_BSLASHlet] = ACTIONS(6237), - [anon_sym_BSLASHleft] = ACTIONS(6237), - [anon_sym_BSLASHbig] = ACTIONS(6237), - [anon_sym_BSLASHBig] = ACTIONS(6237), - [anon_sym_BSLASHbigg] = ACTIONS(6237), - [anon_sym_BSLASHBigg] = ACTIONS(6237), - [anon_sym_BSLASHbigl] = ACTIONS(6237), - [anon_sym_BSLASHBigl] = ACTIONS(6237), - [anon_sym_BSLASHbiggl] = ACTIONS(6237), - [anon_sym_BSLASHBiggl] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6237), - [anon_sym_BSLASHgls] = ACTIONS(6237), - [anon_sym_BSLASHGls] = ACTIONS(6237), - [anon_sym_BSLASHGLS] = ACTIONS(6237), - [anon_sym_BSLASHglspl] = ACTIONS(6237), - [anon_sym_BSLASHGlspl] = ACTIONS(6237), - [anon_sym_BSLASHGLSpl] = ACTIONS(6237), - [anon_sym_BSLASHglsdisp] = ACTIONS(6237), - [anon_sym_BSLASHglslink] = ACTIONS(6237), - [anon_sym_BSLASHglstext] = ACTIONS(6237), - [anon_sym_BSLASHGlstext] = ACTIONS(6237), - [anon_sym_BSLASHGLStext] = ACTIONS(6237), - [anon_sym_BSLASHglsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6237), - [anon_sym_BSLASHglsplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSplural] = ACTIONS(6237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHglsname] = ACTIONS(6237), - [anon_sym_BSLASHGlsname] = ACTIONS(6237), - [anon_sym_BSLASHGLSname] = ACTIONS(6237), - [anon_sym_BSLASHglssymbol] = ACTIONS(6237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6237), - [anon_sym_BSLASHglsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6237), - [anon_sym_BSLASHglsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6237), - [anon_sym_BSLASHglsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6237), - [anon_sym_BSLASHglsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6237), - [anon_sym_BSLASHglsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6237), - [anon_sym_BSLASHnewacronym] = ACTIONS(6237), - [anon_sym_BSLASHacrshort] = ACTIONS(6237), - [anon_sym_BSLASHAcrshort] = ACTIONS(6237), - [anon_sym_BSLASHACRshort] = ACTIONS(6237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6237), - [anon_sym_BSLASHacrlong] = ACTIONS(6237), - [anon_sym_BSLASHAcrlong] = ACTIONS(6237), - [anon_sym_BSLASHACRlong] = ACTIONS(6237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6237), - [anon_sym_BSLASHacrfull] = ACTIONS(6237), - [anon_sym_BSLASHAcrfull] = ACTIONS(6237), - [anon_sym_BSLASHACRfull] = ACTIONS(6237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6237), - [anon_sym_BSLASHacs] = ACTIONS(6237), - [anon_sym_BSLASHAcs] = ACTIONS(6237), - [anon_sym_BSLASHacsp] = ACTIONS(6237), - [anon_sym_BSLASHAcsp] = ACTIONS(6237), - [anon_sym_BSLASHacl] = ACTIONS(6237), - [anon_sym_BSLASHAcl] = ACTIONS(6237), - [anon_sym_BSLASHaclp] = ACTIONS(6237), - [anon_sym_BSLASHAclp] = ACTIONS(6237), - [anon_sym_BSLASHacf] = ACTIONS(6237), - [anon_sym_BSLASHAcf] = ACTIONS(6237), - [anon_sym_BSLASHacfp] = ACTIONS(6237), - [anon_sym_BSLASHAcfp] = ACTIONS(6237), - [anon_sym_BSLASHac] = ACTIONS(6237), - [anon_sym_BSLASHAc] = ACTIONS(6237), - [anon_sym_BSLASHacp] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6237), - [anon_sym_BSLASHcolor] = ACTIONS(6237), - [anon_sym_BSLASHcolorbox] = ACTIONS(6237), - [anon_sym_BSLASHtextcolor] = ACTIONS(6237), - [anon_sym_BSLASHpagecolor] = ACTIONS(6237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6237), - [anon_sym_BSLASHtext] = ACTIONS(6237), - [anon_sym_BSLASHintertext] = ACTIONS(6237), - [anon_sym_shortintertext] = ACTIONS(6237), - }, - [944] = { - [ts_builtin_sym_end] = ACTIONS(6503), - [sym_command_name] = ACTIONS(6501), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6501), - [anon_sym_LBRACK] = ACTIONS(6503), - [anon_sym_RBRACK] = ACTIONS(6503), - [anon_sym_COMMA] = ACTIONS(6503), - [anon_sym_EQ] = ACTIONS(6503), - [anon_sym_LPAREN] = ACTIONS(6503), - [anon_sym_RPAREN] = ACTIONS(6503), - [anon_sym_BSLASHpart] = ACTIONS(6501), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddpart] = ACTIONS(6501), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6503), - [anon_sym_BSLASHchapter] = ACTIONS(6501), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddchap] = ACTIONS(6501), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsection] = ACTIONS(6501), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddsec] = ACTIONS(6501), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubsection] = ACTIONS(6501), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6501), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHparagraph] = ACTIONS(6501), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6501), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6503), - [anon_sym_BSLASHitem] = ACTIONS(6501), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6503), - [anon_sym_LBRACE] = ACTIONS(6503), - [anon_sym_RBRACE] = ACTIONS(6503), - [sym_word] = ACTIONS(6501), - [sym_placeholder] = ACTIONS(6503), - [anon_sym_PLUS] = ACTIONS(6503), - [anon_sym_DASH] = ACTIONS(6503), - [anon_sym_STAR] = ACTIONS(6503), - [anon_sym_SLASH] = ACTIONS(6503), - [anon_sym_LT] = ACTIONS(6501), - [anon_sym_GT] = ACTIONS(6501), - [anon_sym_BANG] = ACTIONS(6501), - [anon_sym_PIPE] = ACTIONS(6501), - [anon_sym_COLON] = ACTIONS(6501), - [anon_sym_SQUOTE] = ACTIONS(6501), - [anon_sym__] = ACTIONS(6503), - [anon_sym_CARET] = ACTIONS(6503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6503), - [anon_sym_DOLLAR] = ACTIONS(6501), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6503), - [anon_sym_BSLASHbegin] = ACTIONS(6501), - [anon_sym_BSLASHtitle] = ACTIONS(6501), - [anon_sym_BSLASHauthor] = ACTIONS(6501), - [anon_sym_BSLASHusepackage] = ACTIONS(6501), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6501), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6501), - [anon_sym_BSLASHinclude] = ACTIONS(6501), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6501), - [anon_sym_BSLASHinput] = ACTIONS(6501), - [anon_sym_BSLASHsubfile] = ACTIONS(6501), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6501), - [anon_sym_BSLASHbibliography] = ACTIONS(6501), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6501), - [anon_sym_BSLASHincludesvg] = ACTIONS(6501), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6501), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6501), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6501), - [anon_sym_BSLASHimport] = ACTIONS(6501), - [anon_sym_BSLASHsubimport] = ACTIONS(6501), - [anon_sym_BSLASHinputfrom] = ACTIONS(6501), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6501), - [anon_sym_BSLASHincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHcaption] = ACTIONS(6501), - [anon_sym_BSLASHcite] = ACTIONS(6501), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCite] = ACTIONS(6501), - [anon_sym_BSLASHnocite] = ACTIONS(6501), - [anon_sym_BSLASHcitet] = ACTIONS(6501), - [anon_sym_BSLASHcitep] = ACTIONS(6501), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteauthor] = ACTIONS(6501), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6501), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitetitle] = ACTIONS(6501), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteyear] = ACTIONS(6501), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitedate] = ACTIONS(6501), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteurl] = ACTIONS(6501), - [anon_sym_BSLASHfullcite] = ACTIONS(6501), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6501), - [anon_sym_BSLASHcitealt] = ACTIONS(6501), - [anon_sym_BSLASHcitealp] = ACTIONS(6501), - [anon_sym_BSLASHcitetext] = ACTIONS(6501), - [anon_sym_BSLASHparencite] = ACTIONS(6501), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHParencite] = ACTIONS(6501), - [anon_sym_BSLASHfootcite] = ACTIONS(6501), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6501), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6501), - [anon_sym_BSLASHtextcite] = ACTIONS(6501), - [anon_sym_BSLASHTextcite] = ACTIONS(6501), - [anon_sym_BSLASHsmartcite] = ACTIONS(6501), - [anon_sym_BSLASHSmartcite] = ACTIONS(6501), - [anon_sym_BSLASHsupercite] = ACTIONS(6501), - [anon_sym_BSLASHautocite] = ACTIONS(6501), - [anon_sym_BSLASHAutocite] = ACTIONS(6501), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHvolcite] = ACTIONS(6501), - [anon_sym_BSLASHVolcite] = ACTIONS(6501), - [anon_sym_BSLASHpvolcite] = ACTIONS(6501), - [anon_sym_BSLASHPvolcite] = ACTIONS(6501), - [anon_sym_BSLASHfvolcite] = ACTIONS(6501), - [anon_sym_BSLASHftvolcite] = ACTIONS(6501), - [anon_sym_BSLASHsvolcite] = ACTIONS(6501), - [anon_sym_BSLASHSvolcite] = ACTIONS(6501), - [anon_sym_BSLASHtvolcite] = ACTIONS(6501), - [anon_sym_BSLASHTvolcite] = ACTIONS(6501), - [anon_sym_BSLASHavolcite] = ACTIONS(6501), - [anon_sym_BSLASHAvolcite] = ACTIONS(6501), - [anon_sym_BSLASHnotecite] = ACTIONS(6501), - [anon_sym_BSLASHNotecite] = ACTIONS(6501), - [anon_sym_BSLASHpnotecite] = ACTIONS(6501), - [anon_sym_BSLASHPnotecite] = ACTIONS(6501), - [anon_sym_BSLASHfnotecite] = ACTIONS(6501), - [anon_sym_BSLASHlabel] = ACTIONS(6501), - [anon_sym_BSLASHref] = ACTIONS(6501), - [anon_sym_BSLASHeqref] = ACTIONS(6501), - [anon_sym_BSLASHvref] = ACTIONS(6501), - [anon_sym_BSLASHVref] = ACTIONS(6501), - [anon_sym_BSLASHautoref] = ACTIONS(6501), - [anon_sym_BSLASHpageref] = ACTIONS(6501), - [anon_sym_BSLASHcref] = ACTIONS(6501), - [anon_sym_BSLASHCref] = ACTIONS(6501), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnameCref] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHlabelcref] = ACTIONS(6501), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCrefrange] = ACTIONS(6501), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnewlabel] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6501), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6501), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6503), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHdef] = ACTIONS(6501), - [anon_sym_BSLASHlet] = ACTIONS(6501), - [anon_sym_BSLASHleft] = ACTIONS(6501), - [anon_sym_BSLASHbig] = ACTIONS(6501), - [anon_sym_BSLASHBig] = ACTIONS(6501), - [anon_sym_BSLASHbigg] = ACTIONS(6501), - [anon_sym_BSLASHBigg] = ACTIONS(6501), - [anon_sym_BSLASHbigl] = ACTIONS(6501), - [anon_sym_BSLASHBigl] = ACTIONS(6501), - [anon_sym_BSLASHbiggl] = ACTIONS(6501), - [anon_sym_BSLASHBiggl] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6501), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6501), - [anon_sym_BSLASHgls] = ACTIONS(6501), - [anon_sym_BSLASHGls] = ACTIONS(6501), - [anon_sym_BSLASHGLS] = ACTIONS(6501), - [anon_sym_BSLASHglspl] = ACTIONS(6501), - [anon_sym_BSLASHGlspl] = ACTIONS(6501), - [anon_sym_BSLASHGLSpl] = ACTIONS(6501), - [anon_sym_BSLASHglsdisp] = ACTIONS(6501), - [anon_sym_BSLASHglslink] = ACTIONS(6501), - [anon_sym_BSLASHglstext] = ACTIONS(6501), - [anon_sym_BSLASHGlstext] = ACTIONS(6501), - [anon_sym_BSLASHGLStext] = ACTIONS(6501), - [anon_sym_BSLASHglsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6501), - [anon_sym_BSLASHglsplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSplural] = ACTIONS(6501), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHglsname] = ACTIONS(6501), - [anon_sym_BSLASHGlsname] = ACTIONS(6501), - [anon_sym_BSLASHGLSname] = ACTIONS(6501), - [anon_sym_BSLASHglssymbol] = ACTIONS(6501), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6501), - [anon_sym_BSLASHglsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6501), - [anon_sym_BSLASHglsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6501), - [anon_sym_BSLASHglsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6501), - [anon_sym_BSLASHglsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6501), - [anon_sym_BSLASHglsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6501), - [anon_sym_BSLASHnewacronym] = ACTIONS(6501), - [anon_sym_BSLASHacrshort] = ACTIONS(6501), - [anon_sym_BSLASHAcrshort] = ACTIONS(6501), - [anon_sym_BSLASHACRshort] = ACTIONS(6501), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6501), - [anon_sym_BSLASHacrlong] = ACTIONS(6501), - [anon_sym_BSLASHAcrlong] = ACTIONS(6501), - [anon_sym_BSLASHACRlong] = ACTIONS(6501), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6501), - [anon_sym_BSLASHacrfull] = ACTIONS(6501), - [anon_sym_BSLASHAcrfull] = ACTIONS(6501), - [anon_sym_BSLASHACRfull] = ACTIONS(6501), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6501), - [anon_sym_BSLASHacs] = ACTIONS(6501), - [anon_sym_BSLASHAcs] = ACTIONS(6501), - [anon_sym_BSLASHacsp] = ACTIONS(6501), - [anon_sym_BSLASHAcsp] = ACTIONS(6501), - [anon_sym_BSLASHacl] = ACTIONS(6501), - [anon_sym_BSLASHAcl] = ACTIONS(6501), - [anon_sym_BSLASHaclp] = ACTIONS(6501), - [anon_sym_BSLASHAclp] = ACTIONS(6501), - [anon_sym_BSLASHacf] = ACTIONS(6501), - [anon_sym_BSLASHAcf] = ACTIONS(6501), - [anon_sym_BSLASHacfp] = ACTIONS(6501), - [anon_sym_BSLASHAcfp] = ACTIONS(6501), - [anon_sym_BSLASHac] = ACTIONS(6501), - [anon_sym_BSLASHAc] = ACTIONS(6501), - [anon_sym_BSLASHacp] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6501), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6501), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6501), - [anon_sym_BSLASHcolor] = ACTIONS(6501), - [anon_sym_BSLASHcolorbox] = ACTIONS(6501), - [anon_sym_BSLASHtextcolor] = ACTIONS(6501), - [anon_sym_BSLASHpagecolor] = ACTIONS(6501), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6501), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6501), - [anon_sym_BSLASHtext] = ACTIONS(6501), - [anon_sym_BSLASHintertext] = ACTIONS(6501), - [anon_sym_shortintertext] = ACTIONS(6501), - }, - [945] = { - [ts_builtin_sym_end] = ACTIONS(6499), - [sym_command_name] = ACTIONS(6497), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(6499), - [anon_sym_RBRACK] = ACTIONS(6499), - [anon_sym_COMMA] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(6499), - [anon_sym_LPAREN] = ACTIONS(6499), - [anon_sym_RPAREN] = ACTIONS(6499), - [anon_sym_BSLASHpart] = ACTIONS(6497), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddpart] = ACTIONS(6497), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6499), - [anon_sym_BSLASHchapter] = ACTIONS(6497), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddchap] = ACTIONS(6497), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsection] = ACTIONS(6497), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddsec] = ACTIONS(6497), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubsection] = ACTIONS(6497), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6497), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHparagraph] = ACTIONS(6497), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6497), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6499), - [anon_sym_BSLASHitem] = ACTIONS(6497), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6499), - [anon_sym_LBRACE] = ACTIONS(6499), - [anon_sym_RBRACE] = ACTIONS(6499), - [sym_word] = ACTIONS(6497), - [sym_placeholder] = ACTIONS(6499), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_STAR] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6499), - [anon_sym_LT] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6497), - [anon_sym_BANG] = ACTIONS(6497), - [anon_sym_PIPE] = ACTIONS(6497), - [anon_sym_COLON] = ACTIONS(6497), - [anon_sym_SQUOTE] = ACTIONS(6497), - [anon_sym__] = ACTIONS(6499), - [anon_sym_CARET] = ACTIONS(6499), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6499), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6499), - [anon_sym_DOLLAR] = ACTIONS(6497), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6499), - [anon_sym_BSLASHbegin] = ACTIONS(6497), - [anon_sym_BSLASHtitle] = ACTIONS(6497), - [anon_sym_BSLASHauthor] = ACTIONS(6497), - [anon_sym_BSLASHusepackage] = ACTIONS(6497), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6497), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6497), - [anon_sym_BSLASHinclude] = ACTIONS(6497), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6497), - [anon_sym_BSLASHinput] = ACTIONS(6497), - [anon_sym_BSLASHsubfile] = ACTIONS(6497), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6497), - [anon_sym_BSLASHbibliography] = ACTIONS(6497), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6497), - [anon_sym_BSLASHincludesvg] = ACTIONS(6497), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6497), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6497), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6497), - [anon_sym_BSLASHimport] = ACTIONS(6497), - [anon_sym_BSLASHsubimport] = ACTIONS(6497), - [anon_sym_BSLASHinputfrom] = ACTIONS(6497), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6497), - [anon_sym_BSLASHincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHcaption] = ACTIONS(6497), - [anon_sym_BSLASHcite] = ACTIONS(6497), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCite] = ACTIONS(6497), - [anon_sym_BSLASHnocite] = ACTIONS(6497), - [anon_sym_BSLASHcitet] = ACTIONS(6497), - [anon_sym_BSLASHcitep] = ACTIONS(6497), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteauthor] = ACTIONS(6497), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6497), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitetitle] = ACTIONS(6497), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteyear] = ACTIONS(6497), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitedate] = ACTIONS(6497), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteurl] = ACTIONS(6497), - [anon_sym_BSLASHfullcite] = ACTIONS(6497), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6497), - [anon_sym_BSLASHcitealt] = ACTIONS(6497), - [anon_sym_BSLASHcitealp] = ACTIONS(6497), - [anon_sym_BSLASHcitetext] = ACTIONS(6497), - [anon_sym_BSLASHparencite] = ACTIONS(6497), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHParencite] = ACTIONS(6497), - [anon_sym_BSLASHfootcite] = ACTIONS(6497), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6497), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6497), - [anon_sym_BSLASHtextcite] = ACTIONS(6497), - [anon_sym_BSLASHTextcite] = ACTIONS(6497), - [anon_sym_BSLASHsmartcite] = ACTIONS(6497), - [anon_sym_BSLASHSmartcite] = ACTIONS(6497), - [anon_sym_BSLASHsupercite] = ACTIONS(6497), - [anon_sym_BSLASHautocite] = ACTIONS(6497), - [anon_sym_BSLASHAutocite] = ACTIONS(6497), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHvolcite] = ACTIONS(6497), - [anon_sym_BSLASHVolcite] = ACTIONS(6497), - [anon_sym_BSLASHpvolcite] = ACTIONS(6497), - [anon_sym_BSLASHPvolcite] = ACTIONS(6497), - [anon_sym_BSLASHfvolcite] = ACTIONS(6497), - [anon_sym_BSLASHftvolcite] = ACTIONS(6497), - [anon_sym_BSLASHsvolcite] = ACTIONS(6497), - [anon_sym_BSLASHSvolcite] = ACTIONS(6497), - [anon_sym_BSLASHtvolcite] = ACTIONS(6497), - [anon_sym_BSLASHTvolcite] = ACTIONS(6497), - [anon_sym_BSLASHavolcite] = ACTIONS(6497), - [anon_sym_BSLASHAvolcite] = ACTIONS(6497), - [anon_sym_BSLASHnotecite] = ACTIONS(6497), - [anon_sym_BSLASHNotecite] = ACTIONS(6497), - [anon_sym_BSLASHpnotecite] = ACTIONS(6497), - [anon_sym_BSLASHPnotecite] = ACTIONS(6497), - [anon_sym_BSLASHfnotecite] = ACTIONS(6497), - [anon_sym_BSLASHlabel] = ACTIONS(6497), - [anon_sym_BSLASHref] = ACTIONS(6497), - [anon_sym_BSLASHeqref] = ACTIONS(6497), - [anon_sym_BSLASHvref] = ACTIONS(6497), - [anon_sym_BSLASHVref] = ACTIONS(6497), - [anon_sym_BSLASHautoref] = ACTIONS(6497), - [anon_sym_BSLASHpageref] = ACTIONS(6497), - [anon_sym_BSLASHcref] = ACTIONS(6497), - [anon_sym_BSLASHCref] = ACTIONS(6497), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnameCref] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHlabelcref] = ACTIONS(6497), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCrefrange] = ACTIONS(6497), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnewlabel] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6497), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6497), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6499), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHdef] = ACTIONS(6497), - [anon_sym_BSLASHlet] = ACTIONS(6497), - [anon_sym_BSLASHleft] = ACTIONS(6497), - [anon_sym_BSLASHbig] = ACTIONS(6497), - [anon_sym_BSLASHBig] = ACTIONS(6497), - [anon_sym_BSLASHbigg] = ACTIONS(6497), - [anon_sym_BSLASHBigg] = ACTIONS(6497), - [anon_sym_BSLASHbigl] = ACTIONS(6497), - [anon_sym_BSLASHBigl] = ACTIONS(6497), - [anon_sym_BSLASHbiggl] = ACTIONS(6497), - [anon_sym_BSLASHBiggl] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6497), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6497), - [anon_sym_BSLASHgls] = ACTIONS(6497), - [anon_sym_BSLASHGls] = ACTIONS(6497), - [anon_sym_BSLASHGLS] = ACTIONS(6497), - [anon_sym_BSLASHglspl] = ACTIONS(6497), - [anon_sym_BSLASHGlspl] = ACTIONS(6497), - [anon_sym_BSLASHGLSpl] = ACTIONS(6497), - [anon_sym_BSLASHglsdisp] = ACTIONS(6497), - [anon_sym_BSLASHglslink] = ACTIONS(6497), - [anon_sym_BSLASHglstext] = ACTIONS(6497), - [anon_sym_BSLASHGlstext] = ACTIONS(6497), - [anon_sym_BSLASHGLStext] = ACTIONS(6497), - [anon_sym_BSLASHglsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6497), - [anon_sym_BSLASHglsplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSplural] = ACTIONS(6497), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHglsname] = ACTIONS(6497), - [anon_sym_BSLASHGlsname] = ACTIONS(6497), - [anon_sym_BSLASHGLSname] = ACTIONS(6497), - [anon_sym_BSLASHglssymbol] = ACTIONS(6497), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6497), - [anon_sym_BSLASHglsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6497), - [anon_sym_BSLASHglsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6497), - [anon_sym_BSLASHglsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6497), - [anon_sym_BSLASHglsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6497), - [anon_sym_BSLASHglsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6497), - [anon_sym_BSLASHnewacronym] = ACTIONS(6497), - [anon_sym_BSLASHacrshort] = ACTIONS(6497), - [anon_sym_BSLASHAcrshort] = ACTIONS(6497), - [anon_sym_BSLASHACRshort] = ACTIONS(6497), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6497), - [anon_sym_BSLASHacrlong] = ACTIONS(6497), - [anon_sym_BSLASHAcrlong] = ACTIONS(6497), - [anon_sym_BSLASHACRlong] = ACTIONS(6497), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6497), - [anon_sym_BSLASHacrfull] = ACTIONS(6497), - [anon_sym_BSLASHAcrfull] = ACTIONS(6497), - [anon_sym_BSLASHACRfull] = ACTIONS(6497), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6497), - [anon_sym_BSLASHacs] = ACTIONS(6497), - [anon_sym_BSLASHAcs] = ACTIONS(6497), - [anon_sym_BSLASHacsp] = ACTIONS(6497), - [anon_sym_BSLASHAcsp] = ACTIONS(6497), - [anon_sym_BSLASHacl] = ACTIONS(6497), - [anon_sym_BSLASHAcl] = ACTIONS(6497), - [anon_sym_BSLASHaclp] = ACTIONS(6497), - [anon_sym_BSLASHAclp] = ACTIONS(6497), - [anon_sym_BSLASHacf] = ACTIONS(6497), - [anon_sym_BSLASHAcf] = ACTIONS(6497), - [anon_sym_BSLASHacfp] = ACTIONS(6497), - [anon_sym_BSLASHAcfp] = ACTIONS(6497), - [anon_sym_BSLASHac] = ACTIONS(6497), - [anon_sym_BSLASHAc] = ACTIONS(6497), - [anon_sym_BSLASHacp] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6497), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6497), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6497), - [anon_sym_BSLASHcolor] = ACTIONS(6497), - [anon_sym_BSLASHcolorbox] = ACTIONS(6497), - [anon_sym_BSLASHtextcolor] = ACTIONS(6497), - [anon_sym_BSLASHpagecolor] = ACTIONS(6497), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6497), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6497), - [anon_sym_BSLASHtext] = ACTIONS(6497), - [anon_sym_BSLASHintertext] = ACTIONS(6497), - [anon_sym_shortintertext] = ACTIONS(6497), - }, - [946] = { - [ts_builtin_sym_end] = ACTIONS(6243), - [sym_command_name] = ACTIONS(6241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6241), - [anon_sym_LBRACK] = ACTIONS(6243), - [anon_sym_RBRACK] = ACTIONS(6243), - [anon_sym_COMMA] = ACTIONS(6243), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_LPAREN] = ACTIONS(6243), - [anon_sym_RPAREN] = ACTIONS(6243), - [anon_sym_BSLASHpart] = ACTIONS(6241), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddpart] = ACTIONS(6241), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6243), - [anon_sym_BSLASHchapter] = ACTIONS(6241), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddchap] = ACTIONS(6241), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsection] = ACTIONS(6241), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddsec] = ACTIONS(6241), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubsection] = ACTIONS(6241), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6241), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHparagraph] = ACTIONS(6241), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6241), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6243), - [anon_sym_BSLASHitem] = ACTIONS(6241), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6243), - [anon_sym_LBRACE] = ACTIONS(6243), - [anon_sym_RBRACE] = ACTIONS(6243), - [sym_word] = ACTIONS(6241), - [sym_placeholder] = ACTIONS(6243), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6243), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(6241), - [anon_sym_GT] = ACTIONS(6241), - [anon_sym_BANG] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_SQUOTE] = ACTIONS(6241), - [anon_sym__] = ACTIONS(6243), - [anon_sym_CARET] = ACTIONS(6243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), - [anon_sym_DOLLAR] = ACTIONS(6241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), - [anon_sym_BSLASHbegin] = ACTIONS(6241), - [anon_sym_BSLASHtitle] = ACTIONS(6241), - [anon_sym_BSLASHauthor] = ACTIONS(6241), - [anon_sym_BSLASHusepackage] = ACTIONS(6241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), - [anon_sym_BSLASHinclude] = ACTIONS(6241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), - [anon_sym_BSLASHinput] = ACTIONS(6241), - [anon_sym_BSLASHsubfile] = ACTIONS(6241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), - [anon_sym_BSLASHbibliography] = ACTIONS(6241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), - [anon_sym_BSLASHincludesvg] = ACTIONS(6241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), - [anon_sym_BSLASHimport] = ACTIONS(6241), - [anon_sym_BSLASHsubimport] = ACTIONS(6241), - [anon_sym_BSLASHinputfrom] = ACTIONS(6241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), - [anon_sym_BSLASHincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHcaption] = ACTIONS(6241), - [anon_sym_BSLASHcite] = ACTIONS(6241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCite] = ACTIONS(6241), - [anon_sym_BSLASHnocite] = ACTIONS(6241), - [anon_sym_BSLASHcitet] = ACTIONS(6241), - [anon_sym_BSLASHcitep] = ACTIONS(6241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteauthor] = ACTIONS(6241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitetitle] = ACTIONS(6241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteyear] = ACTIONS(6241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitedate] = ACTIONS(6241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteurl] = ACTIONS(6241), - [anon_sym_BSLASHfullcite] = ACTIONS(6241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), - [anon_sym_BSLASHcitealt] = ACTIONS(6241), - [anon_sym_BSLASHcitealp] = ACTIONS(6241), - [anon_sym_BSLASHcitetext] = ACTIONS(6241), - [anon_sym_BSLASHparencite] = ACTIONS(6241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHParencite] = ACTIONS(6241), - [anon_sym_BSLASHfootcite] = ACTIONS(6241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), - [anon_sym_BSLASHtextcite] = ACTIONS(6241), - [anon_sym_BSLASHTextcite] = ACTIONS(6241), - [anon_sym_BSLASHsmartcite] = ACTIONS(6241), - [anon_sym_BSLASHSmartcite] = ACTIONS(6241), - [anon_sym_BSLASHsupercite] = ACTIONS(6241), - [anon_sym_BSLASHautocite] = ACTIONS(6241), - [anon_sym_BSLASHAutocite] = ACTIONS(6241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHvolcite] = ACTIONS(6241), - [anon_sym_BSLASHVolcite] = ACTIONS(6241), - [anon_sym_BSLASHpvolcite] = ACTIONS(6241), - [anon_sym_BSLASHPvolcite] = ACTIONS(6241), - [anon_sym_BSLASHfvolcite] = ACTIONS(6241), - [anon_sym_BSLASHftvolcite] = ACTIONS(6241), - [anon_sym_BSLASHsvolcite] = ACTIONS(6241), - [anon_sym_BSLASHSvolcite] = ACTIONS(6241), - [anon_sym_BSLASHtvolcite] = ACTIONS(6241), - [anon_sym_BSLASHTvolcite] = ACTIONS(6241), - [anon_sym_BSLASHavolcite] = ACTIONS(6241), - [anon_sym_BSLASHAvolcite] = ACTIONS(6241), - [anon_sym_BSLASHnotecite] = ACTIONS(6241), - [anon_sym_BSLASHNotecite] = ACTIONS(6241), - [anon_sym_BSLASHpnotecite] = ACTIONS(6241), - [anon_sym_BSLASHPnotecite] = ACTIONS(6241), - [anon_sym_BSLASHfnotecite] = ACTIONS(6241), - [anon_sym_BSLASHlabel] = ACTIONS(6241), - [anon_sym_BSLASHref] = ACTIONS(6241), - [anon_sym_BSLASHeqref] = ACTIONS(6241), - [anon_sym_BSLASHvref] = ACTIONS(6241), - [anon_sym_BSLASHVref] = ACTIONS(6241), - [anon_sym_BSLASHautoref] = ACTIONS(6241), - [anon_sym_BSLASHpageref] = ACTIONS(6241), - [anon_sym_BSLASHcref] = ACTIONS(6241), - [anon_sym_BSLASHCref] = ACTIONS(6241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnameCref] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHlabelcref] = ACTIONS(6241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCrefrange] = ACTIONS(6241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnewlabel] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHdef] = ACTIONS(6241), - [anon_sym_BSLASHlet] = ACTIONS(6241), - [anon_sym_BSLASHleft] = ACTIONS(6241), - [anon_sym_BSLASHbig] = ACTIONS(6241), - [anon_sym_BSLASHBig] = ACTIONS(6241), - [anon_sym_BSLASHbigg] = ACTIONS(6241), - [anon_sym_BSLASHBigg] = ACTIONS(6241), - [anon_sym_BSLASHbigl] = ACTIONS(6241), - [anon_sym_BSLASHBigl] = ACTIONS(6241), - [anon_sym_BSLASHbiggl] = ACTIONS(6241), - [anon_sym_BSLASHBiggl] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), - [anon_sym_BSLASHgls] = ACTIONS(6241), - [anon_sym_BSLASHGls] = ACTIONS(6241), - [anon_sym_BSLASHGLS] = ACTIONS(6241), - [anon_sym_BSLASHglspl] = ACTIONS(6241), - [anon_sym_BSLASHGlspl] = ACTIONS(6241), - [anon_sym_BSLASHGLSpl] = ACTIONS(6241), - [anon_sym_BSLASHglsdisp] = ACTIONS(6241), - [anon_sym_BSLASHglslink] = ACTIONS(6241), - [anon_sym_BSLASHglstext] = ACTIONS(6241), - [anon_sym_BSLASHGlstext] = ACTIONS(6241), - [anon_sym_BSLASHGLStext] = ACTIONS(6241), - [anon_sym_BSLASHglsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), - [anon_sym_BSLASHglsplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSplural] = ACTIONS(6241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHglsname] = ACTIONS(6241), - [anon_sym_BSLASHGlsname] = ACTIONS(6241), - [anon_sym_BSLASHGLSname] = ACTIONS(6241), - [anon_sym_BSLASHglssymbol] = ACTIONS(6241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), - [anon_sym_BSLASHglsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), - [anon_sym_BSLASHglsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), - [anon_sym_BSLASHglsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), - [anon_sym_BSLASHglsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), - [anon_sym_BSLASHglsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), - [anon_sym_BSLASHnewacronym] = ACTIONS(6241), - [anon_sym_BSLASHacrshort] = ACTIONS(6241), - [anon_sym_BSLASHAcrshort] = ACTIONS(6241), - [anon_sym_BSLASHACRshort] = ACTIONS(6241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), - [anon_sym_BSLASHacrlong] = ACTIONS(6241), - [anon_sym_BSLASHAcrlong] = ACTIONS(6241), - [anon_sym_BSLASHACRlong] = ACTIONS(6241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), - [anon_sym_BSLASHacrfull] = ACTIONS(6241), - [anon_sym_BSLASHAcrfull] = ACTIONS(6241), - [anon_sym_BSLASHACRfull] = ACTIONS(6241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), - [anon_sym_BSLASHacs] = ACTIONS(6241), - [anon_sym_BSLASHAcs] = ACTIONS(6241), - [anon_sym_BSLASHacsp] = ACTIONS(6241), - [anon_sym_BSLASHAcsp] = ACTIONS(6241), - [anon_sym_BSLASHacl] = ACTIONS(6241), - [anon_sym_BSLASHAcl] = ACTIONS(6241), - [anon_sym_BSLASHaclp] = ACTIONS(6241), - [anon_sym_BSLASHAclp] = ACTIONS(6241), - [anon_sym_BSLASHacf] = ACTIONS(6241), - [anon_sym_BSLASHAcf] = ACTIONS(6241), - [anon_sym_BSLASHacfp] = ACTIONS(6241), - [anon_sym_BSLASHAcfp] = ACTIONS(6241), - [anon_sym_BSLASHac] = ACTIONS(6241), - [anon_sym_BSLASHAc] = ACTIONS(6241), - [anon_sym_BSLASHacp] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), - [anon_sym_BSLASHcolor] = ACTIONS(6241), - [anon_sym_BSLASHcolorbox] = ACTIONS(6241), - [anon_sym_BSLASHtextcolor] = ACTIONS(6241), - [anon_sym_BSLASHpagecolor] = ACTIONS(6241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), - [anon_sym_BSLASHtext] = ACTIONS(6241), - [anon_sym_BSLASHintertext] = ACTIONS(6241), - [anon_sym_shortintertext] = ACTIONS(6241), - }, - [947] = { - [ts_builtin_sym_end] = ACTIONS(6031), - [sym_command_name] = ACTIONS(6029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6029), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_EQ] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_BSLASHpart] = ACTIONS(6029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddpart] = ACTIONS(6029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6031), - [anon_sym_BSLASHchapter] = ACTIONS(6029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddchap] = ACTIONS(6029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsection] = ACTIONS(6029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddsec] = ACTIONS(6029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubsection] = ACTIONS(6029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHparagraph] = ACTIONS(6029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6031), - [anon_sym_BSLASHitem] = ACTIONS(6029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6031), - [anon_sym_LBRACE] = ACTIONS(6031), - [anon_sym_RBRACE] = ACTIONS(6031), - [sym_word] = ACTIONS(6029), - [sym_placeholder] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6031), - [anon_sym_DASH] = ACTIONS(6031), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6029), - [anon_sym_GT] = ACTIONS(6029), - [anon_sym_BANG] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_COLON] = ACTIONS(6029), - [anon_sym_SQUOTE] = ACTIONS(6029), - [anon_sym__] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), - [anon_sym_BSLASHbegin] = ACTIONS(6029), - [anon_sym_BSLASHtitle] = ACTIONS(6029), - [anon_sym_BSLASHauthor] = ACTIONS(6029), - [anon_sym_BSLASHusepackage] = ACTIONS(6029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), - [anon_sym_BSLASHinclude] = ACTIONS(6029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), - [anon_sym_BSLASHinput] = ACTIONS(6029), - [anon_sym_BSLASHsubfile] = ACTIONS(6029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), - [anon_sym_BSLASHbibliography] = ACTIONS(6029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), - [anon_sym_BSLASHincludesvg] = ACTIONS(6029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), - [anon_sym_BSLASHimport] = ACTIONS(6029), - [anon_sym_BSLASHsubimport] = ACTIONS(6029), - [anon_sym_BSLASHinputfrom] = ACTIONS(6029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), - [anon_sym_BSLASHincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHcaption] = ACTIONS(6029), - [anon_sym_BSLASHcite] = ACTIONS(6029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCite] = ACTIONS(6029), - [anon_sym_BSLASHnocite] = ACTIONS(6029), - [anon_sym_BSLASHcitet] = ACTIONS(6029), - [anon_sym_BSLASHcitep] = ACTIONS(6029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteauthor] = ACTIONS(6029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitetitle] = ACTIONS(6029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteyear] = ACTIONS(6029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitedate] = ACTIONS(6029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteurl] = ACTIONS(6029), - [anon_sym_BSLASHfullcite] = ACTIONS(6029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), - [anon_sym_BSLASHcitealt] = ACTIONS(6029), - [anon_sym_BSLASHcitealp] = ACTIONS(6029), - [anon_sym_BSLASHcitetext] = ACTIONS(6029), - [anon_sym_BSLASHparencite] = ACTIONS(6029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHParencite] = ACTIONS(6029), - [anon_sym_BSLASHfootcite] = ACTIONS(6029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), - [anon_sym_BSLASHtextcite] = ACTIONS(6029), - [anon_sym_BSLASHTextcite] = ACTIONS(6029), - [anon_sym_BSLASHsmartcite] = ACTIONS(6029), - [anon_sym_BSLASHSmartcite] = ACTIONS(6029), - [anon_sym_BSLASHsupercite] = ACTIONS(6029), - [anon_sym_BSLASHautocite] = ACTIONS(6029), - [anon_sym_BSLASHAutocite] = ACTIONS(6029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHvolcite] = ACTIONS(6029), - [anon_sym_BSLASHVolcite] = ACTIONS(6029), - [anon_sym_BSLASHpvolcite] = ACTIONS(6029), - [anon_sym_BSLASHPvolcite] = ACTIONS(6029), - [anon_sym_BSLASHfvolcite] = ACTIONS(6029), - [anon_sym_BSLASHftvolcite] = ACTIONS(6029), - [anon_sym_BSLASHsvolcite] = ACTIONS(6029), - [anon_sym_BSLASHSvolcite] = ACTIONS(6029), - [anon_sym_BSLASHtvolcite] = ACTIONS(6029), - [anon_sym_BSLASHTvolcite] = ACTIONS(6029), - [anon_sym_BSLASHavolcite] = ACTIONS(6029), - [anon_sym_BSLASHAvolcite] = ACTIONS(6029), - [anon_sym_BSLASHnotecite] = ACTIONS(6029), - [anon_sym_BSLASHNotecite] = ACTIONS(6029), - [anon_sym_BSLASHpnotecite] = ACTIONS(6029), - [anon_sym_BSLASHPnotecite] = ACTIONS(6029), - [anon_sym_BSLASHfnotecite] = ACTIONS(6029), - [anon_sym_BSLASHlabel] = ACTIONS(6029), - [anon_sym_BSLASHref] = ACTIONS(6029), - [anon_sym_BSLASHeqref] = ACTIONS(6029), - [anon_sym_BSLASHvref] = ACTIONS(6029), - [anon_sym_BSLASHVref] = ACTIONS(6029), - [anon_sym_BSLASHautoref] = ACTIONS(6029), - [anon_sym_BSLASHpageref] = ACTIONS(6029), - [anon_sym_BSLASHcref] = ACTIONS(6029), - [anon_sym_BSLASHCref] = ACTIONS(6029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnameCref] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHlabelcref] = ACTIONS(6029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCrefrange] = ACTIONS(6029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnewlabel] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHdef] = ACTIONS(6029), - [anon_sym_BSLASHlet] = ACTIONS(6029), - [anon_sym_BSLASHleft] = ACTIONS(6029), - [anon_sym_BSLASHbig] = ACTIONS(6029), - [anon_sym_BSLASHBig] = ACTIONS(6029), - [anon_sym_BSLASHbigg] = ACTIONS(6029), - [anon_sym_BSLASHBigg] = ACTIONS(6029), - [anon_sym_BSLASHbigl] = ACTIONS(6029), - [anon_sym_BSLASHBigl] = ACTIONS(6029), - [anon_sym_BSLASHbiggl] = ACTIONS(6029), - [anon_sym_BSLASHBiggl] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), - [anon_sym_BSLASHgls] = ACTIONS(6029), - [anon_sym_BSLASHGls] = ACTIONS(6029), - [anon_sym_BSLASHGLS] = ACTIONS(6029), - [anon_sym_BSLASHglspl] = ACTIONS(6029), - [anon_sym_BSLASHGlspl] = ACTIONS(6029), - [anon_sym_BSLASHGLSpl] = ACTIONS(6029), - [anon_sym_BSLASHglsdisp] = ACTIONS(6029), - [anon_sym_BSLASHglslink] = ACTIONS(6029), - [anon_sym_BSLASHglstext] = ACTIONS(6029), - [anon_sym_BSLASHGlstext] = ACTIONS(6029), - [anon_sym_BSLASHGLStext] = ACTIONS(6029), - [anon_sym_BSLASHglsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), - [anon_sym_BSLASHglsplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSplural] = ACTIONS(6029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHglsname] = ACTIONS(6029), - [anon_sym_BSLASHGlsname] = ACTIONS(6029), - [anon_sym_BSLASHGLSname] = ACTIONS(6029), - [anon_sym_BSLASHglssymbol] = ACTIONS(6029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), - [anon_sym_BSLASHglsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), - [anon_sym_BSLASHglsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), - [anon_sym_BSLASHglsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), - [anon_sym_BSLASHglsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), - [anon_sym_BSLASHglsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), - [anon_sym_BSLASHnewacronym] = ACTIONS(6029), - [anon_sym_BSLASHacrshort] = ACTIONS(6029), - [anon_sym_BSLASHAcrshort] = ACTIONS(6029), - [anon_sym_BSLASHACRshort] = ACTIONS(6029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), - [anon_sym_BSLASHacrlong] = ACTIONS(6029), - [anon_sym_BSLASHAcrlong] = ACTIONS(6029), - [anon_sym_BSLASHACRlong] = ACTIONS(6029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), - [anon_sym_BSLASHacrfull] = ACTIONS(6029), - [anon_sym_BSLASHAcrfull] = ACTIONS(6029), - [anon_sym_BSLASHACRfull] = ACTIONS(6029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), - [anon_sym_BSLASHacs] = ACTIONS(6029), - [anon_sym_BSLASHAcs] = ACTIONS(6029), - [anon_sym_BSLASHacsp] = ACTIONS(6029), - [anon_sym_BSLASHAcsp] = ACTIONS(6029), - [anon_sym_BSLASHacl] = ACTIONS(6029), - [anon_sym_BSLASHAcl] = ACTIONS(6029), - [anon_sym_BSLASHaclp] = ACTIONS(6029), - [anon_sym_BSLASHAclp] = ACTIONS(6029), - [anon_sym_BSLASHacf] = ACTIONS(6029), - [anon_sym_BSLASHAcf] = ACTIONS(6029), - [anon_sym_BSLASHacfp] = ACTIONS(6029), - [anon_sym_BSLASHAcfp] = ACTIONS(6029), - [anon_sym_BSLASHac] = ACTIONS(6029), - [anon_sym_BSLASHAc] = ACTIONS(6029), - [anon_sym_BSLASHacp] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), - [anon_sym_BSLASHcolor] = ACTIONS(6029), - [anon_sym_BSLASHcolorbox] = ACTIONS(6029), - [anon_sym_BSLASHtextcolor] = ACTIONS(6029), - [anon_sym_BSLASHpagecolor] = ACTIONS(6029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), - [anon_sym_BSLASHtext] = ACTIONS(6029), - [anon_sym_BSLASHintertext] = ACTIONS(6029), - [anon_sym_shortintertext] = ACTIONS(6029), - }, - [948] = { - [ts_builtin_sym_end] = ACTIONS(6275), - [sym_command_name] = ACTIONS(6273), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6273), - [anon_sym_LBRACK] = ACTIONS(6275), - [anon_sym_RBRACK] = ACTIONS(6275), - [anon_sym_COMMA] = ACTIONS(6275), - [anon_sym_EQ] = ACTIONS(6275), - [anon_sym_LPAREN] = ACTIONS(6275), - [anon_sym_RPAREN] = ACTIONS(6275), - [anon_sym_BSLASHpart] = ACTIONS(6273), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddpart] = ACTIONS(6273), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6275), - [anon_sym_BSLASHchapter] = ACTIONS(6273), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddchap] = ACTIONS(6273), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsection] = ACTIONS(6273), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddsec] = ACTIONS(6273), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubsection] = ACTIONS(6273), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6273), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHparagraph] = ACTIONS(6273), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6273), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6275), - [anon_sym_BSLASHitem] = ACTIONS(6273), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6275), - [anon_sym_LBRACE] = ACTIONS(6275), - [anon_sym_RBRACE] = ACTIONS(6275), - [sym_word] = ACTIONS(6273), - [sym_placeholder] = ACTIONS(6275), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_SQUOTE] = ACTIONS(6273), - [anon_sym__] = ACTIONS(6275), - [anon_sym_CARET] = ACTIONS(6275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6275), - [anon_sym_DOLLAR] = ACTIONS(6273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6275), - [anon_sym_BSLASHbegin] = ACTIONS(6273), - [anon_sym_BSLASHtitle] = ACTIONS(6273), - [anon_sym_BSLASHauthor] = ACTIONS(6273), - [anon_sym_BSLASHusepackage] = ACTIONS(6273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6273), - [anon_sym_BSLASHinclude] = ACTIONS(6273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6273), - [anon_sym_BSLASHinput] = ACTIONS(6273), - [anon_sym_BSLASHsubfile] = ACTIONS(6273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6273), - [anon_sym_BSLASHbibliography] = ACTIONS(6273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6273), - [anon_sym_BSLASHincludesvg] = ACTIONS(6273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6273), - [anon_sym_BSLASHimport] = ACTIONS(6273), - [anon_sym_BSLASHsubimport] = ACTIONS(6273), - [anon_sym_BSLASHinputfrom] = ACTIONS(6273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6273), - [anon_sym_BSLASHincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHcaption] = ACTIONS(6273), - [anon_sym_BSLASHcite] = ACTIONS(6273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCite] = ACTIONS(6273), - [anon_sym_BSLASHnocite] = ACTIONS(6273), - [anon_sym_BSLASHcitet] = ACTIONS(6273), - [anon_sym_BSLASHcitep] = ACTIONS(6273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteauthor] = ACTIONS(6273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitetitle] = ACTIONS(6273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteyear] = ACTIONS(6273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitedate] = ACTIONS(6273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteurl] = ACTIONS(6273), - [anon_sym_BSLASHfullcite] = ACTIONS(6273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6273), - [anon_sym_BSLASHcitealt] = ACTIONS(6273), - [anon_sym_BSLASHcitealp] = ACTIONS(6273), - [anon_sym_BSLASHcitetext] = ACTIONS(6273), - [anon_sym_BSLASHparencite] = ACTIONS(6273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHParencite] = ACTIONS(6273), - [anon_sym_BSLASHfootcite] = ACTIONS(6273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6273), - [anon_sym_BSLASHtextcite] = ACTIONS(6273), - [anon_sym_BSLASHTextcite] = ACTIONS(6273), - [anon_sym_BSLASHsmartcite] = ACTIONS(6273), - [anon_sym_BSLASHSmartcite] = ACTIONS(6273), - [anon_sym_BSLASHsupercite] = ACTIONS(6273), - [anon_sym_BSLASHautocite] = ACTIONS(6273), - [anon_sym_BSLASHAutocite] = ACTIONS(6273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHvolcite] = ACTIONS(6273), - [anon_sym_BSLASHVolcite] = ACTIONS(6273), - [anon_sym_BSLASHpvolcite] = ACTIONS(6273), - [anon_sym_BSLASHPvolcite] = ACTIONS(6273), - [anon_sym_BSLASHfvolcite] = ACTIONS(6273), - [anon_sym_BSLASHftvolcite] = ACTIONS(6273), - [anon_sym_BSLASHsvolcite] = ACTIONS(6273), - [anon_sym_BSLASHSvolcite] = ACTIONS(6273), - [anon_sym_BSLASHtvolcite] = ACTIONS(6273), - [anon_sym_BSLASHTvolcite] = ACTIONS(6273), - [anon_sym_BSLASHavolcite] = ACTIONS(6273), - [anon_sym_BSLASHAvolcite] = ACTIONS(6273), - [anon_sym_BSLASHnotecite] = ACTIONS(6273), - [anon_sym_BSLASHNotecite] = ACTIONS(6273), - [anon_sym_BSLASHpnotecite] = ACTIONS(6273), - [anon_sym_BSLASHPnotecite] = ACTIONS(6273), - [anon_sym_BSLASHfnotecite] = ACTIONS(6273), - [anon_sym_BSLASHlabel] = ACTIONS(6273), - [anon_sym_BSLASHref] = ACTIONS(6273), - [anon_sym_BSLASHeqref] = ACTIONS(6273), - [anon_sym_BSLASHvref] = ACTIONS(6273), - [anon_sym_BSLASHVref] = ACTIONS(6273), - [anon_sym_BSLASHautoref] = ACTIONS(6273), - [anon_sym_BSLASHpageref] = ACTIONS(6273), - [anon_sym_BSLASHcref] = ACTIONS(6273), - [anon_sym_BSLASHCref] = ACTIONS(6273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnameCref] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHlabelcref] = ACTIONS(6273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCrefrange] = ACTIONS(6273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnewlabel] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6275), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHdef] = ACTIONS(6273), - [anon_sym_BSLASHlet] = ACTIONS(6273), - [anon_sym_BSLASHleft] = ACTIONS(6273), - [anon_sym_BSLASHbig] = ACTIONS(6273), - [anon_sym_BSLASHBig] = ACTIONS(6273), - [anon_sym_BSLASHbigg] = ACTIONS(6273), - [anon_sym_BSLASHBigg] = ACTIONS(6273), - [anon_sym_BSLASHbigl] = ACTIONS(6273), - [anon_sym_BSLASHBigl] = ACTIONS(6273), - [anon_sym_BSLASHbiggl] = ACTIONS(6273), - [anon_sym_BSLASHBiggl] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6273), - [anon_sym_BSLASHgls] = ACTIONS(6273), - [anon_sym_BSLASHGls] = ACTIONS(6273), - [anon_sym_BSLASHGLS] = ACTIONS(6273), - [anon_sym_BSLASHglspl] = ACTIONS(6273), - [anon_sym_BSLASHGlspl] = ACTIONS(6273), - [anon_sym_BSLASHGLSpl] = ACTIONS(6273), - [anon_sym_BSLASHglsdisp] = ACTIONS(6273), - [anon_sym_BSLASHglslink] = ACTIONS(6273), - [anon_sym_BSLASHglstext] = ACTIONS(6273), - [anon_sym_BSLASHGlstext] = ACTIONS(6273), - [anon_sym_BSLASHGLStext] = ACTIONS(6273), - [anon_sym_BSLASHglsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6273), - [anon_sym_BSLASHglsplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSplural] = ACTIONS(6273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHglsname] = ACTIONS(6273), - [anon_sym_BSLASHGlsname] = ACTIONS(6273), - [anon_sym_BSLASHGLSname] = ACTIONS(6273), - [anon_sym_BSLASHglssymbol] = ACTIONS(6273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6273), - [anon_sym_BSLASHglsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6273), - [anon_sym_BSLASHglsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6273), - [anon_sym_BSLASHglsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6273), - [anon_sym_BSLASHglsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6273), - [anon_sym_BSLASHglsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6273), - [anon_sym_BSLASHnewacronym] = ACTIONS(6273), - [anon_sym_BSLASHacrshort] = ACTIONS(6273), - [anon_sym_BSLASHAcrshort] = ACTIONS(6273), - [anon_sym_BSLASHACRshort] = ACTIONS(6273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6273), - [anon_sym_BSLASHacrlong] = ACTIONS(6273), - [anon_sym_BSLASHAcrlong] = ACTIONS(6273), - [anon_sym_BSLASHACRlong] = ACTIONS(6273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6273), - [anon_sym_BSLASHacrfull] = ACTIONS(6273), - [anon_sym_BSLASHAcrfull] = ACTIONS(6273), - [anon_sym_BSLASHACRfull] = ACTIONS(6273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6273), - [anon_sym_BSLASHacs] = ACTIONS(6273), - [anon_sym_BSLASHAcs] = ACTIONS(6273), - [anon_sym_BSLASHacsp] = ACTIONS(6273), - [anon_sym_BSLASHAcsp] = ACTIONS(6273), - [anon_sym_BSLASHacl] = ACTIONS(6273), - [anon_sym_BSLASHAcl] = ACTIONS(6273), - [anon_sym_BSLASHaclp] = ACTIONS(6273), - [anon_sym_BSLASHAclp] = ACTIONS(6273), - [anon_sym_BSLASHacf] = ACTIONS(6273), - [anon_sym_BSLASHAcf] = ACTIONS(6273), - [anon_sym_BSLASHacfp] = ACTIONS(6273), - [anon_sym_BSLASHAcfp] = ACTIONS(6273), - [anon_sym_BSLASHac] = ACTIONS(6273), - [anon_sym_BSLASHAc] = ACTIONS(6273), - [anon_sym_BSLASHacp] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6273), - [anon_sym_BSLASHcolor] = ACTIONS(6273), - [anon_sym_BSLASHcolorbox] = ACTIONS(6273), - [anon_sym_BSLASHtextcolor] = ACTIONS(6273), - [anon_sym_BSLASHpagecolor] = ACTIONS(6273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6273), - [anon_sym_BSLASHtext] = ACTIONS(6273), - [anon_sym_BSLASHintertext] = ACTIONS(6273), - [anon_sym_shortintertext] = ACTIONS(6273), - }, - [949] = { - [ts_builtin_sym_end] = ACTIONS(6291), - [sym_command_name] = ACTIONS(6289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(6291), - [anon_sym_RBRACK] = ACTIONS(6291), - [anon_sym_COMMA] = ACTIONS(6291), - [anon_sym_EQ] = ACTIONS(6291), - [anon_sym_LPAREN] = ACTIONS(6291), - [anon_sym_RPAREN] = ACTIONS(6291), - [anon_sym_BSLASHpart] = ACTIONS(6289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddpart] = ACTIONS(6289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6291), - [anon_sym_BSLASHchapter] = ACTIONS(6289), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddchap] = ACTIONS(6289), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsection] = ACTIONS(6289), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddsec] = ACTIONS(6289), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubsection] = ACTIONS(6289), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6289), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHparagraph] = ACTIONS(6289), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6289), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6291), - [anon_sym_BSLASHitem] = ACTIONS(6289), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6291), - [anon_sym_LBRACE] = ACTIONS(6291), - [anon_sym_RBRACE] = ACTIONS(6291), - [sym_word] = ACTIONS(6289), - [sym_placeholder] = ACTIONS(6291), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6291), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_LT] = ACTIONS(6289), - [anon_sym_GT] = ACTIONS(6289), - [anon_sym_BANG] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_SQUOTE] = ACTIONS(6289), - [anon_sym__] = ACTIONS(6291), - [anon_sym_CARET] = ACTIONS(6291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6291), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6291), - [anon_sym_DOLLAR] = ACTIONS(6289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6291), - [anon_sym_BSLASHbegin] = ACTIONS(6289), - [anon_sym_BSLASHtitle] = ACTIONS(6289), - [anon_sym_BSLASHauthor] = ACTIONS(6289), - [anon_sym_BSLASHusepackage] = ACTIONS(6289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), - [anon_sym_BSLASHinclude] = ACTIONS(6289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), - [anon_sym_BSLASHinput] = ACTIONS(6289), - [anon_sym_BSLASHsubfile] = ACTIONS(6289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), - [anon_sym_BSLASHbibliography] = ACTIONS(6289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), - [anon_sym_BSLASHincludesvg] = ACTIONS(6289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), - [anon_sym_BSLASHimport] = ACTIONS(6289), - [anon_sym_BSLASHsubimport] = ACTIONS(6289), - [anon_sym_BSLASHinputfrom] = ACTIONS(6289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), - [anon_sym_BSLASHincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHcaption] = ACTIONS(6289), - [anon_sym_BSLASHcite] = ACTIONS(6289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCite] = ACTIONS(6289), - [anon_sym_BSLASHnocite] = ACTIONS(6289), - [anon_sym_BSLASHcitet] = ACTIONS(6289), - [anon_sym_BSLASHcitep] = ACTIONS(6289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteauthor] = ACTIONS(6289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitetitle] = ACTIONS(6289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteyear] = ACTIONS(6289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitedate] = ACTIONS(6289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteurl] = ACTIONS(6289), - [anon_sym_BSLASHfullcite] = ACTIONS(6289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), - [anon_sym_BSLASHcitealt] = ACTIONS(6289), - [anon_sym_BSLASHcitealp] = ACTIONS(6289), - [anon_sym_BSLASHcitetext] = ACTIONS(6289), - [anon_sym_BSLASHparencite] = ACTIONS(6289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHParencite] = ACTIONS(6289), - [anon_sym_BSLASHfootcite] = ACTIONS(6289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), - [anon_sym_BSLASHtextcite] = ACTIONS(6289), - [anon_sym_BSLASHTextcite] = ACTIONS(6289), - [anon_sym_BSLASHsmartcite] = ACTIONS(6289), - [anon_sym_BSLASHSmartcite] = ACTIONS(6289), - [anon_sym_BSLASHsupercite] = ACTIONS(6289), - [anon_sym_BSLASHautocite] = ACTIONS(6289), - [anon_sym_BSLASHAutocite] = ACTIONS(6289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHvolcite] = ACTIONS(6289), - [anon_sym_BSLASHVolcite] = ACTIONS(6289), - [anon_sym_BSLASHpvolcite] = ACTIONS(6289), - [anon_sym_BSLASHPvolcite] = ACTIONS(6289), - [anon_sym_BSLASHfvolcite] = ACTIONS(6289), - [anon_sym_BSLASHftvolcite] = ACTIONS(6289), - [anon_sym_BSLASHsvolcite] = ACTIONS(6289), - [anon_sym_BSLASHSvolcite] = ACTIONS(6289), - [anon_sym_BSLASHtvolcite] = ACTIONS(6289), - [anon_sym_BSLASHTvolcite] = ACTIONS(6289), - [anon_sym_BSLASHavolcite] = ACTIONS(6289), - [anon_sym_BSLASHAvolcite] = ACTIONS(6289), - [anon_sym_BSLASHnotecite] = ACTIONS(6289), - [anon_sym_BSLASHNotecite] = ACTIONS(6289), - [anon_sym_BSLASHpnotecite] = ACTIONS(6289), - [anon_sym_BSLASHPnotecite] = ACTIONS(6289), - [anon_sym_BSLASHfnotecite] = ACTIONS(6289), - [anon_sym_BSLASHlabel] = ACTIONS(6289), - [anon_sym_BSLASHref] = ACTIONS(6289), - [anon_sym_BSLASHeqref] = ACTIONS(6289), - [anon_sym_BSLASHvref] = ACTIONS(6289), - [anon_sym_BSLASHVref] = ACTIONS(6289), - [anon_sym_BSLASHautoref] = ACTIONS(6289), - [anon_sym_BSLASHpageref] = ACTIONS(6289), - [anon_sym_BSLASHcref] = ACTIONS(6289), - [anon_sym_BSLASHCref] = ACTIONS(6289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnameCref] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHlabelcref] = ACTIONS(6289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCrefrange] = ACTIONS(6289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnewlabel] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHdef] = ACTIONS(6289), - [anon_sym_BSLASHlet] = ACTIONS(6289), - [anon_sym_BSLASHleft] = ACTIONS(6289), - [anon_sym_BSLASHbig] = ACTIONS(6289), - [anon_sym_BSLASHBig] = ACTIONS(6289), - [anon_sym_BSLASHbigg] = ACTIONS(6289), - [anon_sym_BSLASHBigg] = ACTIONS(6289), - [anon_sym_BSLASHbigl] = ACTIONS(6289), - [anon_sym_BSLASHBigl] = ACTIONS(6289), - [anon_sym_BSLASHbiggl] = ACTIONS(6289), - [anon_sym_BSLASHBiggl] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), - [anon_sym_BSLASHgls] = ACTIONS(6289), - [anon_sym_BSLASHGls] = ACTIONS(6289), - [anon_sym_BSLASHGLS] = ACTIONS(6289), - [anon_sym_BSLASHglspl] = ACTIONS(6289), - [anon_sym_BSLASHGlspl] = ACTIONS(6289), - [anon_sym_BSLASHGLSpl] = ACTIONS(6289), - [anon_sym_BSLASHglsdisp] = ACTIONS(6289), - [anon_sym_BSLASHglslink] = ACTIONS(6289), - [anon_sym_BSLASHglstext] = ACTIONS(6289), - [anon_sym_BSLASHGlstext] = ACTIONS(6289), - [anon_sym_BSLASHGLStext] = ACTIONS(6289), - [anon_sym_BSLASHglsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), - [anon_sym_BSLASHglsplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSplural] = ACTIONS(6289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHglsname] = ACTIONS(6289), - [anon_sym_BSLASHGlsname] = ACTIONS(6289), - [anon_sym_BSLASHGLSname] = ACTIONS(6289), - [anon_sym_BSLASHglssymbol] = ACTIONS(6289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), - [anon_sym_BSLASHglsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), - [anon_sym_BSLASHglsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), - [anon_sym_BSLASHglsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), - [anon_sym_BSLASHglsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), - [anon_sym_BSLASHglsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), - [anon_sym_BSLASHnewacronym] = ACTIONS(6289), - [anon_sym_BSLASHacrshort] = ACTIONS(6289), - [anon_sym_BSLASHAcrshort] = ACTIONS(6289), - [anon_sym_BSLASHACRshort] = ACTIONS(6289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), - [anon_sym_BSLASHacrlong] = ACTIONS(6289), - [anon_sym_BSLASHAcrlong] = ACTIONS(6289), - [anon_sym_BSLASHACRlong] = ACTIONS(6289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), - [anon_sym_BSLASHacrfull] = ACTIONS(6289), - [anon_sym_BSLASHAcrfull] = ACTIONS(6289), - [anon_sym_BSLASHACRfull] = ACTIONS(6289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), - [anon_sym_BSLASHacs] = ACTIONS(6289), - [anon_sym_BSLASHAcs] = ACTIONS(6289), - [anon_sym_BSLASHacsp] = ACTIONS(6289), - [anon_sym_BSLASHAcsp] = ACTIONS(6289), - [anon_sym_BSLASHacl] = ACTIONS(6289), - [anon_sym_BSLASHAcl] = ACTIONS(6289), - [anon_sym_BSLASHaclp] = ACTIONS(6289), - [anon_sym_BSLASHAclp] = ACTIONS(6289), - [anon_sym_BSLASHacf] = ACTIONS(6289), - [anon_sym_BSLASHAcf] = ACTIONS(6289), - [anon_sym_BSLASHacfp] = ACTIONS(6289), - [anon_sym_BSLASHAcfp] = ACTIONS(6289), - [anon_sym_BSLASHac] = ACTIONS(6289), - [anon_sym_BSLASHAc] = ACTIONS(6289), - [anon_sym_BSLASHacp] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), - [anon_sym_BSLASHcolor] = ACTIONS(6289), - [anon_sym_BSLASHcolorbox] = ACTIONS(6289), - [anon_sym_BSLASHtextcolor] = ACTIONS(6289), - [anon_sym_BSLASHpagecolor] = ACTIONS(6289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), - [anon_sym_BSLASHtext] = ACTIONS(6289), - [anon_sym_BSLASHintertext] = ACTIONS(6289), - [anon_sym_shortintertext] = ACTIONS(6289), - }, - [950] = { - [ts_builtin_sym_end] = ACTIONS(6295), - [sym_command_name] = ACTIONS(6293), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(6295), - [anon_sym_RBRACK] = ACTIONS(6295), - [anon_sym_COMMA] = ACTIONS(6295), - [anon_sym_EQ] = ACTIONS(6295), - [anon_sym_LPAREN] = ACTIONS(6295), - [anon_sym_RPAREN] = ACTIONS(6295), - [anon_sym_BSLASHpart] = ACTIONS(6293), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddpart] = ACTIONS(6293), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6295), - [anon_sym_BSLASHchapter] = ACTIONS(6293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddchap] = ACTIONS(6293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsection] = ACTIONS(6293), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddsec] = ACTIONS(6293), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubsection] = ACTIONS(6293), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6293), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHparagraph] = ACTIONS(6293), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6293), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6295), - [anon_sym_BSLASHitem] = ACTIONS(6293), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6295), - [anon_sym_LBRACE] = ACTIONS(6295), - [anon_sym_RBRACE] = ACTIONS(6295), - [sym_word] = ACTIONS(6293), - [sym_placeholder] = ACTIONS(6295), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6295), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_LT] = ACTIONS(6293), - [anon_sym_GT] = ACTIONS(6293), - [anon_sym_BANG] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_SQUOTE] = ACTIONS(6293), - [anon_sym__] = ACTIONS(6295), - [anon_sym_CARET] = ACTIONS(6295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6295), - [anon_sym_DOLLAR] = ACTIONS(6293), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6295), - [anon_sym_BSLASHbegin] = ACTIONS(6293), - [anon_sym_BSLASHtitle] = ACTIONS(6293), - [anon_sym_BSLASHauthor] = ACTIONS(6293), - [anon_sym_BSLASHusepackage] = ACTIONS(6293), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6293), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6293), - [anon_sym_BSLASHinclude] = ACTIONS(6293), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6293), - [anon_sym_BSLASHinput] = ACTIONS(6293), - [anon_sym_BSLASHsubfile] = ACTIONS(6293), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6293), - [anon_sym_BSLASHbibliography] = ACTIONS(6293), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6293), - [anon_sym_BSLASHincludesvg] = ACTIONS(6293), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6293), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6293), - [anon_sym_BSLASHimport] = ACTIONS(6293), - [anon_sym_BSLASHsubimport] = ACTIONS(6293), - [anon_sym_BSLASHinputfrom] = ACTIONS(6293), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6293), - [anon_sym_BSLASHincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHcaption] = ACTIONS(6293), - [anon_sym_BSLASHcite] = ACTIONS(6293), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCite] = ACTIONS(6293), - [anon_sym_BSLASHnocite] = ACTIONS(6293), - [anon_sym_BSLASHcitet] = ACTIONS(6293), - [anon_sym_BSLASHcitep] = ACTIONS(6293), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteauthor] = ACTIONS(6293), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6293), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitetitle] = ACTIONS(6293), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteyear] = ACTIONS(6293), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitedate] = ACTIONS(6293), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteurl] = ACTIONS(6293), - [anon_sym_BSLASHfullcite] = ACTIONS(6293), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6293), - [anon_sym_BSLASHcitealt] = ACTIONS(6293), - [anon_sym_BSLASHcitealp] = ACTIONS(6293), - [anon_sym_BSLASHcitetext] = ACTIONS(6293), - [anon_sym_BSLASHparencite] = ACTIONS(6293), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHParencite] = ACTIONS(6293), - [anon_sym_BSLASHfootcite] = ACTIONS(6293), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6293), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6293), - [anon_sym_BSLASHtextcite] = ACTIONS(6293), - [anon_sym_BSLASHTextcite] = ACTIONS(6293), - [anon_sym_BSLASHsmartcite] = ACTIONS(6293), - [anon_sym_BSLASHSmartcite] = ACTIONS(6293), - [anon_sym_BSLASHsupercite] = ACTIONS(6293), - [anon_sym_BSLASHautocite] = ACTIONS(6293), - [anon_sym_BSLASHAutocite] = ACTIONS(6293), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHvolcite] = ACTIONS(6293), - [anon_sym_BSLASHVolcite] = ACTIONS(6293), - [anon_sym_BSLASHpvolcite] = ACTIONS(6293), - [anon_sym_BSLASHPvolcite] = ACTIONS(6293), - [anon_sym_BSLASHfvolcite] = ACTIONS(6293), - [anon_sym_BSLASHftvolcite] = ACTIONS(6293), - [anon_sym_BSLASHsvolcite] = ACTIONS(6293), - [anon_sym_BSLASHSvolcite] = ACTIONS(6293), - [anon_sym_BSLASHtvolcite] = ACTIONS(6293), - [anon_sym_BSLASHTvolcite] = ACTIONS(6293), - [anon_sym_BSLASHavolcite] = ACTIONS(6293), - [anon_sym_BSLASHAvolcite] = ACTIONS(6293), - [anon_sym_BSLASHnotecite] = ACTIONS(6293), - [anon_sym_BSLASHNotecite] = ACTIONS(6293), - [anon_sym_BSLASHpnotecite] = ACTIONS(6293), - [anon_sym_BSLASHPnotecite] = ACTIONS(6293), - [anon_sym_BSLASHfnotecite] = ACTIONS(6293), - [anon_sym_BSLASHlabel] = ACTIONS(6293), - [anon_sym_BSLASHref] = ACTIONS(6293), - [anon_sym_BSLASHeqref] = ACTIONS(6293), - [anon_sym_BSLASHvref] = ACTIONS(6293), - [anon_sym_BSLASHVref] = ACTIONS(6293), - [anon_sym_BSLASHautoref] = ACTIONS(6293), - [anon_sym_BSLASHpageref] = ACTIONS(6293), - [anon_sym_BSLASHcref] = ACTIONS(6293), - [anon_sym_BSLASHCref] = ACTIONS(6293), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnameCref] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHlabelcref] = ACTIONS(6293), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCrefrange] = ACTIONS(6293), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnewlabel] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6293), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6293), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6295), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHdef] = ACTIONS(6293), - [anon_sym_BSLASHlet] = ACTIONS(6293), - [anon_sym_BSLASHleft] = ACTIONS(6293), - [anon_sym_BSLASHbig] = ACTIONS(6293), - [anon_sym_BSLASHBig] = ACTIONS(6293), - [anon_sym_BSLASHbigg] = ACTIONS(6293), - [anon_sym_BSLASHBigg] = ACTIONS(6293), - [anon_sym_BSLASHbigl] = ACTIONS(6293), - [anon_sym_BSLASHBigl] = ACTIONS(6293), - [anon_sym_BSLASHbiggl] = ACTIONS(6293), - [anon_sym_BSLASHBiggl] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6293), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6293), - [anon_sym_BSLASHgls] = ACTIONS(6293), - [anon_sym_BSLASHGls] = ACTIONS(6293), - [anon_sym_BSLASHGLS] = ACTIONS(6293), - [anon_sym_BSLASHglspl] = ACTIONS(6293), - [anon_sym_BSLASHGlspl] = ACTIONS(6293), - [anon_sym_BSLASHGLSpl] = ACTIONS(6293), - [anon_sym_BSLASHglsdisp] = ACTIONS(6293), - [anon_sym_BSLASHglslink] = ACTIONS(6293), - [anon_sym_BSLASHglstext] = ACTIONS(6293), - [anon_sym_BSLASHGlstext] = ACTIONS(6293), - [anon_sym_BSLASHGLStext] = ACTIONS(6293), - [anon_sym_BSLASHglsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6293), - [anon_sym_BSLASHglsplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSplural] = ACTIONS(6293), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHglsname] = ACTIONS(6293), - [anon_sym_BSLASHGlsname] = ACTIONS(6293), - [anon_sym_BSLASHGLSname] = ACTIONS(6293), - [anon_sym_BSLASHglssymbol] = ACTIONS(6293), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6293), - [anon_sym_BSLASHglsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6293), - [anon_sym_BSLASHglsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6293), - [anon_sym_BSLASHglsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6293), - [anon_sym_BSLASHglsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6293), - [anon_sym_BSLASHglsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6293), - [anon_sym_BSLASHnewacronym] = ACTIONS(6293), - [anon_sym_BSLASHacrshort] = ACTIONS(6293), - [anon_sym_BSLASHAcrshort] = ACTIONS(6293), - [anon_sym_BSLASHACRshort] = ACTIONS(6293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6293), - [anon_sym_BSLASHacrlong] = ACTIONS(6293), - [anon_sym_BSLASHAcrlong] = ACTIONS(6293), - [anon_sym_BSLASHACRlong] = ACTIONS(6293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6293), - [anon_sym_BSLASHacrfull] = ACTIONS(6293), - [anon_sym_BSLASHAcrfull] = ACTIONS(6293), - [anon_sym_BSLASHACRfull] = ACTIONS(6293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6293), - [anon_sym_BSLASHacs] = ACTIONS(6293), - [anon_sym_BSLASHAcs] = ACTIONS(6293), - [anon_sym_BSLASHacsp] = ACTIONS(6293), - [anon_sym_BSLASHAcsp] = ACTIONS(6293), - [anon_sym_BSLASHacl] = ACTIONS(6293), - [anon_sym_BSLASHAcl] = ACTIONS(6293), - [anon_sym_BSLASHaclp] = ACTIONS(6293), - [anon_sym_BSLASHAclp] = ACTIONS(6293), - [anon_sym_BSLASHacf] = ACTIONS(6293), - [anon_sym_BSLASHAcf] = ACTIONS(6293), - [anon_sym_BSLASHacfp] = ACTIONS(6293), - [anon_sym_BSLASHAcfp] = ACTIONS(6293), - [anon_sym_BSLASHac] = ACTIONS(6293), - [anon_sym_BSLASHAc] = ACTIONS(6293), - [anon_sym_BSLASHacp] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6293), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6293), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6293), - [anon_sym_BSLASHcolor] = ACTIONS(6293), - [anon_sym_BSLASHcolorbox] = ACTIONS(6293), - [anon_sym_BSLASHtextcolor] = ACTIONS(6293), - [anon_sym_BSLASHpagecolor] = ACTIONS(6293), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6293), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6293), - [anon_sym_BSLASHtext] = ACTIONS(6293), - [anon_sym_BSLASHintertext] = ACTIONS(6293), - [anon_sym_shortintertext] = ACTIONS(6293), - }, - [951] = { - [ts_builtin_sym_end] = ACTIONS(6495), - [sym_command_name] = ACTIONS(6493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6495), - [anon_sym_RBRACK] = ACTIONS(6495), - [anon_sym_COMMA] = ACTIONS(6495), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_LPAREN] = ACTIONS(6495), - [anon_sym_RPAREN] = ACTIONS(6495), - [anon_sym_BSLASHpart] = ACTIONS(6493), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddpart] = ACTIONS(6493), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6495), - [anon_sym_BSLASHchapter] = ACTIONS(6493), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddchap] = ACTIONS(6493), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsection] = ACTIONS(6493), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddsec] = ACTIONS(6493), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubsection] = ACTIONS(6493), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6493), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHparagraph] = ACTIONS(6493), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6493), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6495), - [anon_sym_BSLASHitem] = ACTIONS(6493), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6495), - [anon_sym_LBRACE] = ACTIONS(6495), - [anon_sym_RBRACE] = ACTIONS(6495), - [sym_word] = ACTIONS(6493), - [sym_placeholder] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6495), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6493), - [anon_sym_GT] = ACTIONS(6493), - [anon_sym_BANG] = ACTIONS(6493), - [anon_sym_PIPE] = ACTIONS(6493), - [anon_sym_COLON] = ACTIONS(6493), - [anon_sym_SQUOTE] = ACTIONS(6493), - [anon_sym__] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6495), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6495), - [anon_sym_DOLLAR] = ACTIONS(6493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6495), - [anon_sym_BSLASHbegin] = ACTIONS(6493), - [anon_sym_BSLASHtitle] = ACTIONS(6493), - [anon_sym_BSLASHauthor] = ACTIONS(6493), - [anon_sym_BSLASHusepackage] = ACTIONS(6493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6493), - [anon_sym_BSLASHinclude] = ACTIONS(6493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6493), - [anon_sym_BSLASHinput] = ACTIONS(6493), - [anon_sym_BSLASHsubfile] = ACTIONS(6493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6493), - [anon_sym_BSLASHbibliography] = ACTIONS(6493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6493), - [anon_sym_BSLASHincludesvg] = ACTIONS(6493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6493), - [anon_sym_BSLASHimport] = ACTIONS(6493), - [anon_sym_BSLASHsubimport] = ACTIONS(6493), - [anon_sym_BSLASHinputfrom] = ACTIONS(6493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6493), - [anon_sym_BSLASHincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHcaption] = ACTIONS(6493), - [anon_sym_BSLASHcite] = ACTIONS(6493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCite] = ACTIONS(6493), - [anon_sym_BSLASHnocite] = ACTIONS(6493), - [anon_sym_BSLASHcitet] = ACTIONS(6493), - [anon_sym_BSLASHcitep] = ACTIONS(6493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteauthor] = ACTIONS(6493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitetitle] = ACTIONS(6493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteyear] = ACTIONS(6493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitedate] = ACTIONS(6493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteurl] = ACTIONS(6493), - [anon_sym_BSLASHfullcite] = ACTIONS(6493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6493), - [anon_sym_BSLASHcitealt] = ACTIONS(6493), - [anon_sym_BSLASHcitealp] = ACTIONS(6493), - [anon_sym_BSLASHcitetext] = ACTIONS(6493), - [anon_sym_BSLASHparencite] = ACTIONS(6493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHParencite] = ACTIONS(6493), - [anon_sym_BSLASHfootcite] = ACTIONS(6493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6493), - [anon_sym_BSLASHtextcite] = ACTIONS(6493), - [anon_sym_BSLASHTextcite] = ACTIONS(6493), - [anon_sym_BSLASHsmartcite] = ACTIONS(6493), - [anon_sym_BSLASHSmartcite] = ACTIONS(6493), - [anon_sym_BSLASHsupercite] = ACTIONS(6493), - [anon_sym_BSLASHautocite] = ACTIONS(6493), - [anon_sym_BSLASHAutocite] = ACTIONS(6493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHvolcite] = ACTIONS(6493), - [anon_sym_BSLASHVolcite] = ACTIONS(6493), - [anon_sym_BSLASHpvolcite] = ACTIONS(6493), - [anon_sym_BSLASHPvolcite] = ACTIONS(6493), - [anon_sym_BSLASHfvolcite] = ACTIONS(6493), - [anon_sym_BSLASHftvolcite] = ACTIONS(6493), - [anon_sym_BSLASHsvolcite] = ACTIONS(6493), - [anon_sym_BSLASHSvolcite] = ACTIONS(6493), - [anon_sym_BSLASHtvolcite] = ACTIONS(6493), - [anon_sym_BSLASHTvolcite] = ACTIONS(6493), - [anon_sym_BSLASHavolcite] = ACTIONS(6493), - [anon_sym_BSLASHAvolcite] = ACTIONS(6493), - [anon_sym_BSLASHnotecite] = ACTIONS(6493), - [anon_sym_BSLASHNotecite] = ACTIONS(6493), - [anon_sym_BSLASHpnotecite] = ACTIONS(6493), - [anon_sym_BSLASHPnotecite] = ACTIONS(6493), - [anon_sym_BSLASHfnotecite] = ACTIONS(6493), - [anon_sym_BSLASHlabel] = ACTIONS(6493), - [anon_sym_BSLASHref] = ACTIONS(6493), - [anon_sym_BSLASHeqref] = ACTIONS(6493), - [anon_sym_BSLASHvref] = ACTIONS(6493), - [anon_sym_BSLASHVref] = ACTIONS(6493), - [anon_sym_BSLASHautoref] = ACTIONS(6493), - [anon_sym_BSLASHpageref] = ACTIONS(6493), - [anon_sym_BSLASHcref] = ACTIONS(6493), - [anon_sym_BSLASHCref] = ACTIONS(6493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnameCref] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHlabelcref] = ACTIONS(6493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCrefrange] = ACTIONS(6493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnewlabel] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6495), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHdef] = ACTIONS(6493), - [anon_sym_BSLASHlet] = ACTIONS(6493), - [anon_sym_BSLASHleft] = ACTIONS(6493), - [anon_sym_BSLASHbig] = ACTIONS(6493), - [anon_sym_BSLASHBig] = ACTIONS(6493), - [anon_sym_BSLASHbigg] = ACTIONS(6493), - [anon_sym_BSLASHBigg] = ACTIONS(6493), - [anon_sym_BSLASHbigl] = ACTIONS(6493), - [anon_sym_BSLASHBigl] = ACTIONS(6493), - [anon_sym_BSLASHbiggl] = ACTIONS(6493), - [anon_sym_BSLASHBiggl] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6493), - [anon_sym_BSLASHgls] = ACTIONS(6493), - [anon_sym_BSLASHGls] = ACTIONS(6493), - [anon_sym_BSLASHGLS] = ACTIONS(6493), - [anon_sym_BSLASHglspl] = ACTIONS(6493), - [anon_sym_BSLASHGlspl] = ACTIONS(6493), - [anon_sym_BSLASHGLSpl] = ACTIONS(6493), - [anon_sym_BSLASHglsdisp] = ACTIONS(6493), - [anon_sym_BSLASHglslink] = ACTIONS(6493), - [anon_sym_BSLASHglstext] = ACTIONS(6493), - [anon_sym_BSLASHGlstext] = ACTIONS(6493), - [anon_sym_BSLASHGLStext] = ACTIONS(6493), - [anon_sym_BSLASHglsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6493), - [anon_sym_BSLASHglsplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSplural] = ACTIONS(6493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHglsname] = ACTIONS(6493), - [anon_sym_BSLASHGlsname] = ACTIONS(6493), - [anon_sym_BSLASHGLSname] = ACTIONS(6493), - [anon_sym_BSLASHglssymbol] = ACTIONS(6493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6493), - [anon_sym_BSLASHglsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6493), - [anon_sym_BSLASHglsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6493), - [anon_sym_BSLASHglsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6493), - [anon_sym_BSLASHglsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6493), - [anon_sym_BSLASHglsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6493), - [anon_sym_BSLASHnewacronym] = ACTIONS(6493), - [anon_sym_BSLASHacrshort] = ACTIONS(6493), - [anon_sym_BSLASHAcrshort] = ACTIONS(6493), - [anon_sym_BSLASHACRshort] = ACTIONS(6493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6493), - [anon_sym_BSLASHacrlong] = ACTIONS(6493), - [anon_sym_BSLASHAcrlong] = ACTIONS(6493), - [anon_sym_BSLASHACRlong] = ACTIONS(6493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6493), - [anon_sym_BSLASHacrfull] = ACTIONS(6493), - [anon_sym_BSLASHAcrfull] = ACTIONS(6493), - [anon_sym_BSLASHACRfull] = ACTIONS(6493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6493), - [anon_sym_BSLASHacs] = ACTIONS(6493), - [anon_sym_BSLASHAcs] = ACTIONS(6493), - [anon_sym_BSLASHacsp] = ACTIONS(6493), - [anon_sym_BSLASHAcsp] = ACTIONS(6493), - [anon_sym_BSLASHacl] = ACTIONS(6493), - [anon_sym_BSLASHAcl] = ACTIONS(6493), - [anon_sym_BSLASHaclp] = ACTIONS(6493), - [anon_sym_BSLASHAclp] = ACTIONS(6493), - [anon_sym_BSLASHacf] = ACTIONS(6493), - [anon_sym_BSLASHAcf] = ACTIONS(6493), - [anon_sym_BSLASHacfp] = ACTIONS(6493), - [anon_sym_BSLASHAcfp] = ACTIONS(6493), - [anon_sym_BSLASHac] = ACTIONS(6493), - [anon_sym_BSLASHAc] = ACTIONS(6493), - [anon_sym_BSLASHacp] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6493), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6493), - [anon_sym_BSLASHcolor] = ACTIONS(6493), - [anon_sym_BSLASHcolorbox] = ACTIONS(6493), - [anon_sym_BSLASHtextcolor] = ACTIONS(6493), - [anon_sym_BSLASHpagecolor] = ACTIONS(6493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6493), - [anon_sym_BSLASHtext] = ACTIONS(6493), - [anon_sym_BSLASHintertext] = ACTIONS(6493), - [anon_sym_shortintertext] = ACTIONS(6493), - }, - [952] = { - [sym_brack_group_text] = STATE(1168), - [sym_command_name] = ACTIONS(6003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6003), - [anon_sym_LBRACK] = ACTIONS(6713), - [anon_sym_RBRACK] = ACTIONS(6007), - [anon_sym_COMMA] = ACTIONS(6007), - [anon_sym_EQ] = ACTIONS(6007), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_RPAREN] = ACTIONS(6007), - [anon_sym_BSLASHpart] = ACTIONS(6003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddpart] = ACTIONS(6003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6007), - [anon_sym_BSLASHchapter] = ACTIONS(6003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddchap] = ACTIONS(6003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsection] = ACTIONS(6003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddsec] = ACTIONS(6003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubsection] = ACTIONS(6003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHparagraph] = ACTIONS(6003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6007), - [anon_sym_BSLASHitem] = ACTIONS(6003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6007), - [anon_sym_LBRACE] = ACTIONS(6007), - [sym_word] = ACTIONS(6003), - [sym_placeholder] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6007), - [anon_sym_DASH] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_SLASH] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6003), - [anon_sym_GT] = ACTIONS(6003), - [anon_sym_BANG] = ACTIONS(6003), - [anon_sym_PIPE] = ACTIONS(6003), - [anon_sym_COLON] = ACTIONS(6003), - [anon_sym_SQUOTE] = ACTIONS(6003), - [anon_sym__] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6007), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6007), - [anon_sym_DOLLAR] = ACTIONS(6003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6007), - [anon_sym_BSLASHbegin] = ACTIONS(6003), - [anon_sym_BSLASHend] = ACTIONS(6003), - [anon_sym_BSLASHtitle] = ACTIONS(6003), - [anon_sym_BSLASHauthor] = ACTIONS(6003), - [anon_sym_BSLASHusepackage] = ACTIONS(6003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), - [anon_sym_BSLASHinclude] = ACTIONS(6003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), - [anon_sym_BSLASHinput] = ACTIONS(6003), - [anon_sym_BSLASHsubfile] = ACTIONS(6003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), - [anon_sym_BSLASHbibliography] = ACTIONS(6003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), - [anon_sym_BSLASHincludesvg] = ACTIONS(6003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), - [anon_sym_BSLASHimport] = ACTIONS(6003), - [anon_sym_BSLASHsubimport] = ACTIONS(6003), - [anon_sym_BSLASHinputfrom] = ACTIONS(6003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), - [anon_sym_BSLASHincludefrom] = ACTIONS(6003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), - [anon_sym_BSLASHcaption] = ACTIONS(6003), - [anon_sym_BSLASHcite] = ACTIONS(6003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCite] = ACTIONS(6003), - [anon_sym_BSLASHnocite] = ACTIONS(6003), - [anon_sym_BSLASHcitet] = ACTIONS(6003), - [anon_sym_BSLASHcitep] = ACTIONS(6003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteauthor] = ACTIONS(6003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitetitle] = ACTIONS(6003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteyear] = ACTIONS(6003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitedate] = ACTIONS(6003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteurl] = ACTIONS(6003), - [anon_sym_BSLASHfullcite] = ACTIONS(6003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), - [anon_sym_BSLASHcitealt] = ACTIONS(6003), - [anon_sym_BSLASHcitealp] = ACTIONS(6003), - [anon_sym_BSLASHcitetext] = ACTIONS(6003), - [anon_sym_BSLASHparencite] = ACTIONS(6003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHParencite] = ACTIONS(6003), - [anon_sym_BSLASHfootcite] = ACTIONS(6003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), - [anon_sym_BSLASHtextcite] = ACTIONS(6003), - [anon_sym_BSLASHTextcite] = ACTIONS(6003), - [anon_sym_BSLASHsmartcite] = ACTIONS(6003), - [anon_sym_BSLASHSmartcite] = ACTIONS(6003), - [anon_sym_BSLASHsupercite] = ACTIONS(6003), - [anon_sym_BSLASHautocite] = ACTIONS(6003), - [anon_sym_BSLASHAutocite] = ACTIONS(6003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHvolcite] = ACTIONS(6003), - [anon_sym_BSLASHVolcite] = ACTIONS(6003), - [anon_sym_BSLASHpvolcite] = ACTIONS(6003), - [anon_sym_BSLASHPvolcite] = ACTIONS(6003), - [anon_sym_BSLASHfvolcite] = ACTIONS(6003), - [anon_sym_BSLASHftvolcite] = ACTIONS(6003), - [anon_sym_BSLASHsvolcite] = ACTIONS(6003), - [anon_sym_BSLASHSvolcite] = ACTIONS(6003), - [anon_sym_BSLASHtvolcite] = ACTIONS(6003), - [anon_sym_BSLASHTvolcite] = ACTIONS(6003), - [anon_sym_BSLASHavolcite] = ACTIONS(6003), - [anon_sym_BSLASHAvolcite] = ACTIONS(6003), - [anon_sym_BSLASHnotecite] = ACTIONS(6003), - [anon_sym_BSLASHNotecite] = ACTIONS(6003), - [anon_sym_BSLASHpnotecite] = ACTIONS(6003), - [anon_sym_BSLASHPnotecite] = ACTIONS(6003), - [anon_sym_BSLASHfnotecite] = ACTIONS(6003), - [anon_sym_BSLASHlabel] = ACTIONS(6003), - [anon_sym_BSLASHref] = ACTIONS(6003), - [anon_sym_BSLASHeqref] = ACTIONS(6003), - [anon_sym_BSLASHvref] = ACTIONS(6003), - [anon_sym_BSLASHVref] = ACTIONS(6003), - [anon_sym_BSLASHautoref] = ACTIONS(6003), - [anon_sym_BSLASHpageref] = ACTIONS(6003), - [anon_sym_BSLASHcref] = ACTIONS(6003), - [anon_sym_BSLASHCref] = ACTIONS(6003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6007), - [anon_sym_BSLASHnamecref] = ACTIONS(6003), - [anon_sym_BSLASHnameCref] = ACTIONS(6003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), - [anon_sym_BSLASHlabelcref] = ACTIONS(6003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), - [anon_sym_BSLASHcrefrange] = ACTIONS(6003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCrefrange] = ACTIONS(6003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6007), - [anon_sym_BSLASHnewlabel] = ACTIONS(6003), - [anon_sym_BSLASHnewcommand] = ACTIONS(6003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6007), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHdef] = ACTIONS(6003), - [anon_sym_BSLASHlet] = ACTIONS(6003), - [anon_sym_BSLASHleft] = ACTIONS(6003), - [anon_sym_BSLASHbig] = ACTIONS(6003), - [anon_sym_BSLASHBig] = ACTIONS(6003), - [anon_sym_BSLASHbigg] = ACTIONS(6003), - [anon_sym_BSLASHBigg] = ACTIONS(6003), - [anon_sym_BSLASHbigl] = ACTIONS(6003), - [anon_sym_BSLASHBigl] = ACTIONS(6003), - [anon_sym_BSLASHbiggl] = ACTIONS(6003), - [anon_sym_BSLASHBiggl] = ACTIONS(6003), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6003), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), - [anon_sym_BSLASHgls] = ACTIONS(6003), - [anon_sym_BSLASHGls] = ACTIONS(6003), - [anon_sym_BSLASHGLS] = ACTIONS(6003), - [anon_sym_BSLASHglspl] = ACTIONS(6003), - [anon_sym_BSLASHGlspl] = ACTIONS(6003), - [anon_sym_BSLASHGLSpl] = ACTIONS(6003), - [anon_sym_BSLASHglsdisp] = ACTIONS(6003), - [anon_sym_BSLASHglslink] = ACTIONS(6003), - [anon_sym_BSLASHglstext] = ACTIONS(6003), - [anon_sym_BSLASHGlstext] = ACTIONS(6003), - [anon_sym_BSLASHGLStext] = ACTIONS(6003), - [anon_sym_BSLASHglsfirst] = ACTIONS(6003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), - [anon_sym_BSLASHglsplural] = ACTIONS(6003), - [anon_sym_BSLASHGlsplural] = ACTIONS(6003), - [anon_sym_BSLASHGLSplural] = ACTIONS(6003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHglsname] = ACTIONS(6003), - [anon_sym_BSLASHGlsname] = ACTIONS(6003), - [anon_sym_BSLASHGLSname] = ACTIONS(6003), - [anon_sym_BSLASHglssymbol] = ACTIONS(6003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), - [anon_sym_BSLASHglsdesc] = ACTIONS(6003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), - [anon_sym_BSLASHglsuseri] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), - [anon_sym_BSLASHglsuserii] = ACTIONS(6003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), - [anon_sym_BSLASHglsuserv] = ACTIONS(6003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), - [anon_sym_BSLASHglsuservi] = ACTIONS(6003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), - [anon_sym_BSLASHnewacronym] = ACTIONS(6003), - [anon_sym_BSLASHacrshort] = ACTIONS(6003), - [anon_sym_BSLASHAcrshort] = ACTIONS(6003), - [anon_sym_BSLASHACRshort] = ACTIONS(6003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), - [anon_sym_BSLASHacrlong] = ACTIONS(6003), - [anon_sym_BSLASHAcrlong] = ACTIONS(6003), - [anon_sym_BSLASHACRlong] = ACTIONS(6003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), - [anon_sym_BSLASHacrfull] = ACTIONS(6003), - [anon_sym_BSLASHAcrfull] = ACTIONS(6003), - [anon_sym_BSLASHACRfull] = ACTIONS(6003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), - [anon_sym_BSLASHacs] = ACTIONS(6003), - [anon_sym_BSLASHAcs] = ACTIONS(6003), - [anon_sym_BSLASHacsp] = ACTIONS(6003), - [anon_sym_BSLASHAcsp] = ACTIONS(6003), - [anon_sym_BSLASHacl] = ACTIONS(6003), - [anon_sym_BSLASHAcl] = ACTIONS(6003), - [anon_sym_BSLASHaclp] = ACTIONS(6003), - [anon_sym_BSLASHAclp] = ACTIONS(6003), - [anon_sym_BSLASHacf] = ACTIONS(6003), - [anon_sym_BSLASHAcf] = ACTIONS(6003), - [anon_sym_BSLASHacfp] = ACTIONS(6003), - [anon_sym_BSLASHAcfp] = ACTIONS(6003), - [anon_sym_BSLASHac] = ACTIONS(6003), - [anon_sym_BSLASHAc] = ACTIONS(6003), - [anon_sym_BSLASHacp] = ACTIONS(6003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), - [anon_sym_BSLASHcolor] = ACTIONS(6003), - [anon_sym_BSLASHcolorbox] = ACTIONS(6003), - [anon_sym_BSLASHtextcolor] = ACTIONS(6003), - [anon_sym_BSLASHpagecolor] = ACTIONS(6003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), - [anon_sym_BSLASHtext] = ACTIONS(6003), - [anon_sym_BSLASHintertext] = ACTIONS(6003), - [anon_sym_shortintertext] = ACTIONS(6003), - }, - [953] = { - [ts_builtin_sym_end] = ACTIONS(6323), - [sym_command_name] = ACTIONS(6321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(6323), - [anon_sym_RBRACK] = ACTIONS(6323), - [anon_sym_COMMA] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(6323), - [anon_sym_LPAREN] = ACTIONS(6323), - [anon_sym_RPAREN] = ACTIONS(6323), - [anon_sym_BSLASHpart] = ACTIONS(6321), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddpart] = ACTIONS(6321), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6323), - [anon_sym_BSLASHchapter] = ACTIONS(6321), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddchap] = ACTIONS(6321), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsection] = ACTIONS(6321), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddsec] = ACTIONS(6321), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubsection] = ACTIONS(6321), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6321), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHparagraph] = ACTIONS(6321), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6321), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6323), - [anon_sym_BSLASHitem] = ACTIONS(6321), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6323), - [anon_sym_LBRACE] = ACTIONS(6323), - [anon_sym_RBRACE] = ACTIONS(6323), - [sym_word] = ACTIONS(6321), - [sym_placeholder] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6323), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_LT] = ACTIONS(6321), - [anon_sym_GT] = ACTIONS(6321), - [anon_sym_BANG] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_SQUOTE] = ACTIONS(6321), - [anon_sym__] = ACTIONS(6323), - [anon_sym_CARET] = ACTIONS(6323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6323), - [anon_sym_DOLLAR] = ACTIONS(6321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6323), - [anon_sym_BSLASHbegin] = ACTIONS(6321), - [anon_sym_BSLASHtitle] = ACTIONS(6321), - [anon_sym_BSLASHauthor] = ACTIONS(6321), - [anon_sym_BSLASHusepackage] = ACTIONS(6321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6321), - [anon_sym_BSLASHinclude] = ACTIONS(6321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6321), - [anon_sym_BSLASHinput] = ACTIONS(6321), - [anon_sym_BSLASHsubfile] = ACTIONS(6321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6321), - [anon_sym_BSLASHbibliography] = ACTIONS(6321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6321), - [anon_sym_BSLASHincludesvg] = ACTIONS(6321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6321), - [anon_sym_BSLASHimport] = ACTIONS(6321), - [anon_sym_BSLASHsubimport] = ACTIONS(6321), - [anon_sym_BSLASHinputfrom] = ACTIONS(6321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6321), - [anon_sym_BSLASHincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHcaption] = ACTIONS(6321), - [anon_sym_BSLASHcite] = ACTIONS(6321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCite] = ACTIONS(6321), - [anon_sym_BSLASHnocite] = ACTIONS(6321), - [anon_sym_BSLASHcitet] = ACTIONS(6321), - [anon_sym_BSLASHcitep] = ACTIONS(6321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteauthor] = ACTIONS(6321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitetitle] = ACTIONS(6321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteyear] = ACTIONS(6321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitedate] = ACTIONS(6321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteurl] = ACTIONS(6321), - [anon_sym_BSLASHfullcite] = ACTIONS(6321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6321), - [anon_sym_BSLASHcitealt] = ACTIONS(6321), - [anon_sym_BSLASHcitealp] = ACTIONS(6321), - [anon_sym_BSLASHcitetext] = ACTIONS(6321), - [anon_sym_BSLASHparencite] = ACTIONS(6321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHParencite] = ACTIONS(6321), - [anon_sym_BSLASHfootcite] = ACTIONS(6321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6321), - [anon_sym_BSLASHtextcite] = ACTIONS(6321), - [anon_sym_BSLASHTextcite] = ACTIONS(6321), - [anon_sym_BSLASHsmartcite] = ACTIONS(6321), - [anon_sym_BSLASHSmartcite] = ACTIONS(6321), - [anon_sym_BSLASHsupercite] = ACTIONS(6321), - [anon_sym_BSLASHautocite] = ACTIONS(6321), - [anon_sym_BSLASHAutocite] = ACTIONS(6321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHvolcite] = ACTIONS(6321), - [anon_sym_BSLASHVolcite] = ACTIONS(6321), - [anon_sym_BSLASHpvolcite] = ACTIONS(6321), - [anon_sym_BSLASHPvolcite] = ACTIONS(6321), - [anon_sym_BSLASHfvolcite] = ACTIONS(6321), - [anon_sym_BSLASHftvolcite] = ACTIONS(6321), - [anon_sym_BSLASHsvolcite] = ACTIONS(6321), - [anon_sym_BSLASHSvolcite] = ACTIONS(6321), - [anon_sym_BSLASHtvolcite] = ACTIONS(6321), - [anon_sym_BSLASHTvolcite] = ACTIONS(6321), - [anon_sym_BSLASHavolcite] = ACTIONS(6321), - [anon_sym_BSLASHAvolcite] = ACTIONS(6321), - [anon_sym_BSLASHnotecite] = ACTIONS(6321), - [anon_sym_BSLASHNotecite] = ACTIONS(6321), - [anon_sym_BSLASHpnotecite] = ACTIONS(6321), - [anon_sym_BSLASHPnotecite] = ACTIONS(6321), - [anon_sym_BSLASHfnotecite] = ACTIONS(6321), - [anon_sym_BSLASHlabel] = ACTIONS(6321), - [anon_sym_BSLASHref] = ACTIONS(6321), - [anon_sym_BSLASHeqref] = ACTIONS(6321), - [anon_sym_BSLASHvref] = ACTIONS(6321), - [anon_sym_BSLASHVref] = ACTIONS(6321), - [anon_sym_BSLASHautoref] = ACTIONS(6321), - [anon_sym_BSLASHpageref] = ACTIONS(6321), - [anon_sym_BSLASHcref] = ACTIONS(6321), - [anon_sym_BSLASHCref] = ACTIONS(6321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnameCref] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHlabelcref] = ACTIONS(6321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCrefrange] = ACTIONS(6321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnewlabel] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6323), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHdef] = ACTIONS(6321), - [anon_sym_BSLASHlet] = ACTIONS(6321), - [anon_sym_BSLASHleft] = ACTIONS(6321), - [anon_sym_BSLASHbig] = ACTIONS(6321), - [anon_sym_BSLASHBig] = ACTIONS(6321), - [anon_sym_BSLASHbigg] = ACTIONS(6321), - [anon_sym_BSLASHBigg] = ACTIONS(6321), - [anon_sym_BSLASHbigl] = ACTIONS(6321), - [anon_sym_BSLASHBigl] = ACTIONS(6321), - [anon_sym_BSLASHbiggl] = ACTIONS(6321), - [anon_sym_BSLASHBiggl] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6321), - [anon_sym_BSLASHgls] = ACTIONS(6321), - [anon_sym_BSLASHGls] = ACTIONS(6321), - [anon_sym_BSLASHGLS] = ACTIONS(6321), - [anon_sym_BSLASHglspl] = ACTIONS(6321), - [anon_sym_BSLASHGlspl] = ACTIONS(6321), - [anon_sym_BSLASHGLSpl] = ACTIONS(6321), - [anon_sym_BSLASHglsdisp] = ACTIONS(6321), - [anon_sym_BSLASHglslink] = ACTIONS(6321), - [anon_sym_BSLASHglstext] = ACTIONS(6321), - [anon_sym_BSLASHGlstext] = ACTIONS(6321), - [anon_sym_BSLASHGLStext] = ACTIONS(6321), - [anon_sym_BSLASHglsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6321), - [anon_sym_BSLASHglsplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSplural] = ACTIONS(6321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHglsname] = ACTIONS(6321), - [anon_sym_BSLASHGlsname] = ACTIONS(6321), - [anon_sym_BSLASHGLSname] = ACTIONS(6321), - [anon_sym_BSLASHglssymbol] = ACTIONS(6321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6321), - [anon_sym_BSLASHglsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6321), - [anon_sym_BSLASHglsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6321), - [anon_sym_BSLASHglsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6321), - [anon_sym_BSLASHglsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6321), - [anon_sym_BSLASHglsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6321), - [anon_sym_BSLASHnewacronym] = ACTIONS(6321), - [anon_sym_BSLASHacrshort] = ACTIONS(6321), - [anon_sym_BSLASHAcrshort] = ACTIONS(6321), - [anon_sym_BSLASHACRshort] = ACTIONS(6321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6321), - [anon_sym_BSLASHacrlong] = ACTIONS(6321), - [anon_sym_BSLASHAcrlong] = ACTIONS(6321), - [anon_sym_BSLASHACRlong] = ACTIONS(6321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6321), - [anon_sym_BSLASHacrfull] = ACTIONS(6321), - [anon_sym_BSLASHAcrfull] = ACTIONS(6321), - [anon_sym_BSLASHACRfull] = ACTIONS(6321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6321), - [anon_sym_BSLASHacs] = ACTIONS(6321), - [anon_sym_BSLASHAcs] = ACTIONS(6321), - [anon_sym_BSLASHacsp] = ACTIONS(6321), - [anon_sym_BSLASHAcsp] = ACTIONS(6321), - [anon_sym_BSLASHacl] = ACTIONS(6321), - [anon_sym_BSLASHAcl] = ACTIONS(6321), - [anon_sym_BSLASHaclp] = ACTIONS(6321), - [anon_sym_BSLASHAclp] = ACTIONS(6321), - [anon_sym_BSLASHacf] = ACTIONS(6321), - [anon_sym_BSLASHAcf] = ACTIONS(6321), - [anon_sym_BSLASHacfp] = ACTIONS(6321), - [anon_sym_BSLASHAcfp] = ACTIONS(6321), - [anon_sym_BSLASHac] = ACTIONS(6321), - [anon_sym_BSLASHAc] = ACTIONS(6321), - [anon_sym_BSLASHacp] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6321), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6321), - [anon_sym_BSLASHcolor] = ACTIONS(6321), - [anon_sym_BSLASHcolorbox] = ACTIONS(6321), - [anon_sym_BSLASHtextcolor] = ACTIONS(6321), - [anon_sym_BSLASHpagecolor] = ACTIONS(6321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6321), - [anon_sym_BSLASHtext] = ACTIONS(6321), - [anon_sym_BSLASHintertext] = ACTIONS(6321), - [anon_sym_shortintertext] = ACTIONS(6321), - }, - [954] = { - [ts_builtin_sym_end] = ACTIONS(6331), - [sym_command_name] = ACTIONS(6329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6329), - [anon_sym_LBRACK] = ACTIONS(6331), - [anon_sym_RBRACK] = ACTIONS(6331), - [anon_sym_COMMA] = ACTIONS(6331), - [anon_sym_EQ] = ACTIONS(6331), - [anon_sym_LPAREN] = ACTIONS(6331), - [anon_sym_RPAREN] = ACTIONS(6331), - [anon_sym_BSLASHpart] = ACTIONS(6329), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddpart] = ACTIONS(6329), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6331), - [anon_sym_BSLASHchapter] = ACTIONS(6329), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddchap] = ACTIONS(6329), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsection] = ACTIONS(6329), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddsec] = ACTIONS(6329), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubsection] = ACTIONS(6329), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6329), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHparagraph] = ACTIONS(6329), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6329), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6331), - [anon_sym_BSLASHitem] = ACTIONS(6329), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6331), - [anon_sym_RBRACE] = ACTIONS(6331), - [sym_word] = ACTIONS(6329), - [sym_placeholder] = ACTIONS(6331), - [anon_sym_PLUS] = ACTIONS(6331), - [anon_sym_DASH] = ACTIONS(6331), - [anon_sym_STAR] = ACTIONS(6331), - [anon_sym_SLASH] = ACTIONS(6331), - [anon_sym_LT] = ACTIONS(6329), - [anon_sym_GT] = ACTIONS(6329), - [anon_sym_BANG] = ACTIONS(6329), - [anon_sym_PIPE] = ACTIONS(6329), - [anon_sym_COLON] = ACTIONS(6329), - [anon_sym_SQUOTE] = ACTIONS(6329), - [anon_sym__] = ACTIONS(6331), - [anon_sym_CARET] = ACTIONS(6331), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6331), - [anon_sym_DOLLAR] = ACTIONS(6329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6331), - [anon_sym_BSLASHbegin] = ACTIONS(6329), - [anon_sym_BSLASHtitle] = ACTIONS(6329), - [anon_sym_BSLASHauthor] = ACTIONS(6329), - [anon_sym_BSLASHusepackage] = ACTIONS(6329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6329), - [anon_sym_BSLASHinclude] = ACTIONS(6329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6329), - [anon_sym_BSLASHinput] = ACTIONS(6329), - [anon_sym_BSLASHsubfile] = ACTIONS(6329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6329), - [anon_sym_BSLASHbibliography] = ACTIONS(6329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6329), - [anon_sym_BSLASHincludesvg] = ACTIONS(6329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6329), - [anon_sym_BSLASHimport] = ACTIONS(6329), - [anon_sym_BSLASHsubimport] = ACTIONS(6329), - [anon_sym_BSLASHinputfrom] = ACTIONS(6329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6329), - [anon_sym_BSLASHincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHcaption] = ACTIONS(6329), - [anon_sym_BSLASHcite] = ACTIONS(6329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCite] = ACTIONS(6329), - [anon_sym_BSLASHnocite] = ACTIONS(6329), - [anon_sym_BSLASHcitet] = ACTIONS(6329), - [anon_sym_BSLASHcitep] = ACTIONS(6329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteauthor] = ACTIONS(6329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitetitle] = ACTIONS(6329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteyear] = ACTIONS(6329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitedate] = ACTIONS(6329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteurl] = ACTIONS(6329), - [anon_sym_BSLASHfullcite] = ACTIONS(6329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6329), - [anon_sym_BSLASHcitealt] = ACTIONS(6329), - [anon_sym_BSLASHcitealp] = ACTIONS(6329), - [anon_sym_BSLASHcitetext] = ACTIONS(6329), - [anon_sym_BSLASHparencite] = ACTIONS(6329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHParencite] = ACTIONS(6329), - [anon_sym_BSLASHfootcite] = ACTIONS(6329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6329), - [anon_sym_BSLASHtextcite] = ACTIONS(6329), - [anon_sym_BSLASHTextcite] = ACTIONS(6329), - [anon_sym_BSLASHsmartcite] = ACTIONS(6329), - [anon_sym_BSLASHSmartcite] = ACTIONS(6329), - [anon_sym_BSLASHsupercite] = ACTIONS(6329), - [anon_sym_BSLASHautocite] = ACTIONS(6329), - [anon_sym_BSLASHAutocite] = ACTIONS(6329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHvolcite] = ACTIONS(6329), - [anon_sym_BSLASHVolcite] = ACTIONS(6329), - [anon_sym_BSLASHpvolcite] = ACTIONS(6329), - [anon_sym_BSLASHPvolcite] = ACTIONS(6329), - [anon_sym_BSLASHfvolcite] = ACTIONS(6329), - [anon_sym_BSLASHftvolcite] = ACTIONS(6329), - [anon_sym_BSLASHsvolcite] = ACTIONS(6329), - [anon_sym_BSLASHSvolcite] = ACTIONS(6329), - [anon_sym_BSLASHtvolcite] = ACTIONS(6329), - [anon_sym_BSLASHTvolcite] = ACTIONS(6329), - [anon_sym_BSLASHavolcite] = ACTIONS(6329), - [anon_sym_BSLASHAvolcite] = ACTIONS(6329), - [anon_sym_BSLASHnotecite] = ACTIONS(6329), - [anon_sym_BSLASHNotecite] = ACTIONS(6329), - [anon_sym_BSLASHpnotecite] = ACTIONS(6329), - [anon_sym_BSLASHPnotecite] = ACTIONS(6329), - [anon_sym_BSLASHfnotecite] = ACTIONS(6329), - [anon_sym_BSLASHlabel] = ACTIONS(6329), - [anon_sym_BSLASHref] = ACTIONS(6329), - [anon_sym_BSLASHeqref] = ACTIONS(6329), - [anon_sym_BSLASHvref] = ACTIONS(6329), - [anon_sym_BSLASHVref] = ACTIONS(6329), - [anon_sym_BSLASHautoref] = ACTIONS(6329), - [anon_sym_BSLASHpageref] = ACTIONS(6329), - [anon_sym_BSLASHcref] = ACTIONS(6329), - [anon_sym_BSLASHCref] = ACTIONS(6329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnameCref] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHlabelcref] = ACTIONS(6329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCrefrange] = ACTIONS(6329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnewlabel] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6331), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHdef] = ACTIONS(6329), - [anon_sym_BSLASHlet] = ACTIONS(6329), - [anon_sym_BSLASHleft] = ACTIONS(6329), - [anon_sym_BSLASHbig] = ACTIONS(6329), - [anon_sym_BSLASHBig] = ACTIONS(6329), - [anon_sym_BSLASHbigg] = ACTIONS(6329), - [anon_sym_BSLASHBigg] = ACTIONS(6329), - [anon_sym_BSLASHbigl] = ACTIONS(6329), - [anon_sym_BSLASHBigl] = ACTIONS(6329), - [anon_sym_BSLASHbiggl] = ACTIONS(6329), - [anon_sym_BSLASHBiggl] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6329), - [anon_sym_BSLASHgls] = ACTIONS(6329), - [anon_sym_BSLASHGls] = ACTIONS(6329), - [anon_sym_BSLASHGLS] = ACTIONS(6329), - [anon_sym_BSLASHglspl] = ACTIONS(6329), - [anon_sym_BSLASHGlspl] = ACTIONS(6329), - [anon_sym_BSLASHGLSpl] = ACTIONS(6329), - [anon_sym_BSLASHglsdisp] = ACTIONS(6329), - [anon_sym_BSLASHglslink] = ACTIONS(6329), - [anon_sym_BSLASHglstext] = ACTIONS(6329), - [anon_sym_BSLASHGlstext] = ACTIONS(6329), - [anon_sym_BSLASHGLStext] = ACTIONS(6329), - [anon_sym_BSLASHglsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6329), - [anon_sym_BSLASHglsplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSplural] = ACTIONS(6329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHglsname] = ACTIONS(6329), - [anon_sym_BSLASHGlsname] = ACTIONS(6329), - [anon_sym_BSLASHGLSname] = ACTIONS(6329), - [anon_sym_BSLASHglssymbol] = ACTIONS(6329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6329), - [anon_sym_BSLASHglsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6329), - [anon_sym_BSLASHglsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6329), - [anon_sym_BSLASHglsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6329), - [anon_sym_BSLASHglsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6329), - [anon_sym_BSLASHglsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6329), - [anon_sym_BSLASHnewacronym] = ACTIONS(6329), - [anon_sym_BSLASHacrshort] = ACTIONS(6329), - [anon_sym_BSLASHAcrshort] = ACTIONS(6329), - [anon_sym_BSLASHACRshort] = ACTIONS(6329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6329), - [anon_sym_BSLASHacrlong] = ACTIONS(6329), - [anon_sym_BSLASHAcrlong] = ACTIONS(6329), - [anon_sym_BSLASHACRlong] = ACTIONS(6329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6329), - [anon_sym_BSLASHacrfull] = ACTIONS(6329), - [anon_sym_BSLASHAcrfull] = ACTIONS(6329), - [anon_sym_BSLASHACRfull] = ACTIONS(6329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6329), - [anon_sym_BSLASHacs] = ACTIONS(6329), - [anon_sym_BSLASHAcs] = ACTIONS(6329), - [anon_sym_BSLASHacsp] = ACTIONS(6329), - [anon_sym_BSLASHAcsp] = ACTIONS(6329), - [anon_sym_BSLASHacl] = ACTIONS(6329), - [anon_sym_BSLASHAcl] = ACTIONS(6329), - [anon_sym_BSLASHaclp] = ACTIONS(6329), - [anon_sym_BSLASHAclp] = ACTIONS(6329), - [anon_sym_BSLASHacf] = ACTIONS(6329), - [anon_sym_BSLASHAcf] = ACTIONS(6329), - [anon_sym_BSLASHacfp] = ACTIONS(6329), - [anon_sym_BSLASHAcfp] = ACTIONS(6329), - [anon_sym_BSLASHac] = ACTIONS(6329), - [anon_sym_BSLASHAc] = ACTIONS(6329), - [anon_sym_BSLASHacp] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6329), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6329), - [anon_sym_BSLASHcolor] = ACTIONS(6329), - [anon_sym_BSLASHcolorbox] = ACTIONS(6329), - [anon_sym_BSLASHtextcolor] = ACTIONS(6329), - [anon_sym_BSLASHpagecolor] = ACTIONS(6329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6329), - [anon_sym_BSLASHtext] = ACTIONS(6329), - [anon_sym_BSLASHintertext] = ACTIONS(6329), - [anon_sym_shortintertext] = ACTIONS(6329), - }, - [955] = { - [ts_builtin_sym_end] = ACTIONS(6127), - [sym_command_name] = ACTIONS(6125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6127), - [anon_sym_RBRACK] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6127), - [anon_sym_EQ] = ACTIONS(6127), - [anon_sym_LPAREN] = ACTIONS(6127), - [anon_sym_RPAREN] = ACTIONS(6127), - [anon_sym_BSLASHpart] = ACTIONS(6125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddpart] = ACTIONS(6125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6127), - [anon_sym_BSLASHchapter] = ACTIONS(6125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddchap] = ACTIONS(6125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsection] = ACTIONS(6125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddsec] = ACTIONS(6125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubsection] = ACTIONS(6125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHparagraph] = ACTIONS(6125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6127), - [anon_sym_BSLASHitem] = ACTIONS(6125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6127), - [anon_sym_LBRACE] = ACTIONS(6127), - [anon_sym_RBRACE] = ACTIONS(6127), - [sym_word] = ACTIONS(6125), - [sym_placeholder] = ACTIONS(6127), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_LT] = ACTIONS(6125), - [anon_sym_GT] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_SQUOTE] = ACTIONS(6125), - [anon_sym__] = ACTIONS(6127), - [anon_sym_CARET] = ACTIONS(6127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6127), - [anon_sym_DOLLAR] = ACTIONS(6125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6127), - [anon_sym_BSLASHbegin] = ACTIONS(6125), - [anon_sym_BSLASHtitle] = ACTIONS(6125), - [anon_sym_BSLASHauthor] = ACTIONS(6125), - [anon_sym_BSLASHusepackage] = ACTIONS(6125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6125), - [anon_sym_BSLASHinclude] = ACTIONS(6125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6125), - [anon_sym_BSLASHinput] = ACTIONS(6125), - [anon_sym_BSLASHsubfile] = ACTIONS(6125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6125), - [anon_sym_BSLASHbibliography] = ACTIONS(6125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6125), - [anon_sym_BSLASHincludesvg] = ACTIONS(6125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6125), - [anon_sym_BSLASHimport] = ACTIONS(6125), - [anon_sym_BSLASHsubimport] = ACTIONS(6125), - [anon_sym_BSLASHinputfrom] = ACTIONS(6125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6125), - [anon_sym_BSLASHincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHcaption] = ACTIONS(6125), - [anon_sym_BSLASHcite] = ACTIONS(6125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCite] = ACTIONS(6125), - [anon_sym_BSLASHnocite] = ACTIONS(6125), - [anon_sym_BSLASHcitet] = ACTIONS(6125), - [anon_sym_BSLASHcitep] = ACTIONS(6125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteauthor] = ACTIONS(6125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitetitle] = ACTIONS(6125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteyear] = ACTIONS(6125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitedate] = ACTIONS(6125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteurl] = ACTIONS(6125), - [anon_sym_BSLASHfullcite] = ACTIONS(6125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6125), - [anon_sym_BSLASHcitealt] = ACTIONS(6125), - [anon_sym_BSLASHcitealp] = ACTIONS(6125), - [anon_sym_BSLASHcitetext] = ACTIONS(6125), - [anon_sym_BSLASHparencite] = ACTIONS(6125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHParencite] = ACTIONS(6125), - [anon_sym_BSLASHfootcite] = ACTIONS(6125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6125), - [anon_sym_BSLASHtextcite] = ACTIONS(6125), - [anon_sym_BSLASHTextcite] = ACTIONS(6125), - [anon_sym_BSLASHsmartcite] = ACTIONS(6125), - [anon_sym_BSLASHSmartcite] = ACTIONS(6125), - [anon_sym_BSLASHsupercite] = ACTIONS(6125), - [anon_sym_BSLASHautocite] = ACTIONS(6125), - [anon_sym_BSLASHAutocite] = ACTIONS(6125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHvolcite] = ACTIONS(6125), - [anon_sym_BSLASHVolcite] = ACTIONS(6125), - [anon_sym_BSLASHpvolcite] = ACTIONS(6125), - [anon_sym_BSLASHPvolcite] = ACTIONS(6125), - [anon_sym_BSLASHfvolcite] = ACTIONS(6125), - [anon_sym_BSLASHftvolcite] = ACTIONS(6125), - [anon_sym_BSLASHsvolcite] = ACTIONS(6125), - [anon_sym_BSLASHSvolcite] = ACTIONS(6125), - [anon_sym_BSLASHtvolcite] = ACTIONS(6125), - [anon_sym_BSLASHTvolcite] = ACTIONS(6125), - [anon_sym_BSLASHavolcite] = ACTIONS(6125), - [anon_sym_BSLASHAvolcite] = ACTIONS(6125), - [anon_sym_BSLASHnotecite] = ACTIONS(6125), - [anon_sym_BSLASHNotecite] = ACTIONS(6125), - [anon_sym_BSLASHpnotecite] = ACTIONS(6125), - [anon_sym_BSLASHPnotecite] = ACTIONS(6125), - [anon_sym_BSLASHfnotecite] = ACTIONS(6125), - [anon_sym_BSLASHlabel] = ACTIONS(6125), - [anon_sym_BSLASHref] = ACTIONS(6125), - [anon_sym_BSLASHeqref] = ACTIONS(6125), - [anon_sym_BSLASHvref] = ACTIONS(6125), - [anon_sym_BSLASHVref] = ACTIONS(6125), - [anon_sym_BSLASHautoref] = ACTIONS(6125), - [anon_sym_BSLASHpageref] = ACTIONS(6125), - [anon_sym_BSLASHcref] = ACTIONS(6125), - [anon_sym_BSLASHCref] = ACTIONS(6125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnameCref] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHlabelcref] = ACTIONS(6125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCrefrange] = ACTIONS(6125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnewlabel] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6127), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHdef] = ACTIONS(6125), - [anon_sym_BSLASHlet] = ACTIONS(6125), - [anon_sym_BSLASHleft] = ACTIONS(6125), - [anon_sym_BSLASHbig] = ACTIONS(6125), - [anon_sym_BSLASHBig] = ACTIONS(6125), - [anon_sym_BSLASHbigg] = ACTIONS(6125), - [anon_sym_BSLASHBigg] = ACTIONS(6125), - [anon_sym_BSLASHbigl] = ACTIONS(6125), - [anon_sym_BSLASHBigl] = ACTIONS(6125), - [anon_sym_BSLASHbiggl] = ACTIONS(6125), - [anon_sym_BSLASHBiggl] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6125), - [anon_sym_BSLASHgls] = ACTIONS(6125), - [anon_sym_BSLASHGls] = ACTIONS(6125), - [anon_sym_BSLASHGLS] = ACTIONS(6125), - [anon_sym_BSLASHglspl] = ACTIONS(6125), - [anon_sym_BSLASHGlspl] = ACTIONS(6125), - [anon_sym_BSLASHGLSpl] = ACTIONS(6125), - [anon_sym_BSLASHglsdisp] = ACTIONS(6125), - [anon_sym_BSLASHglslink] = ACTIONS(6125), - [anon_sym_BSLASHglstext] = ACTIONS(6125), - [anon_sym_BSLASHGlstext] = ACTIONS(6125), - [anon_sym_BSLASHGLStext] = ACTIONS(6125), - [anon_sym_BSLASHglsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6125), - [anon_sym_BSLASHglsplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSplural] = ACTIONS(6125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHglsname] = ACTIONS(6125), - [anon_sym_BSLASHGlsname] = ACTIONS(6125), - [anon_sym_BSLASHGLSname] = ACTIONS(6125), - [anon_sym_BSLASHglssymbol] = ACTIONS(6125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6125), - [anon_sym_BSLASHglsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6125), - [anon_sym_BSLASHglsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6125), - [anon_sym_BSLASHglsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6125), - [anon_sym_BSLASHglsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6125), - [anon_sym_BSLASHglsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6125), - [anon_sym_BSLASHnewacronym] = ACTIONS(6125), - [anon_sym_BSLASHacrshort] = ACTIONS(6125), - [anon_sym_BSLASHAcrshort] = ACTIONS(6125), - [anon_sym_BSLASHACRshort] = ACTIONS(6125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6125), - [anon_sym_BSLASHacrlong] = ACTIONS(6125), - [anon_sym_BSLASHAcrlong] = ACTIONS(6125), - [anon_sym_BSLASHACRlong] = ACTIONS(6125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6125), - [anon_sym_BSLASHacrfull] = ACTIONS(6125), - [anon_sym_BSLASHAcrfull] = ACTIONS(6125), - [anon_sym_BSLASHACRfull] = ACTIONS(6125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6125), - [anon_sym_BSLASHacs] = ACTIONS(6125), - [anon_sym_BSLASHAcs] = ACTIONS(6125), - [anon_sym_BSLASHacsp] = ACTIONS(6125), - [anon_sym_BSLASHAcsp] = ACTIONS(6125), - [anon_sym_BSLASHacl] = ACTIONS(6125), - [anon_sym_BSLASHAcl] = ACTIONS(6125), - [anon_sym_BSLASHaclp] = ACTIONS(6125), - [anon_sym_BSLASHAclp] = ACTIONS(6125), - [anon_sym_BSLASHacf] = ACTIONS(6125), - [anon_sym_BSLASHAcf] = ACTIONS(6125), - [anon_sym_BSLASHacfp] = ACTIONS(6125), - [anon_sym_BSLASHAcfp] = ACTIONS(6125), - [anon_sym_BSLASHac] = ACTIONS(6125), - [anon_sym_BSLASHAc] = ACTIONS(6125), - [anon_sym_BSLASHacp] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6125), - [anon_sym_BSLASHcolor] = ACTIONS(6125), - [anon_sym_BSLASHcolorbox] = ACTIONS(6125), - [anon_sym_BSLASHtextcolor] = ACTIONS(6125), - [anon_sym_BSLASHpagecolor] = ACTIONS(6125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6125), - [anon_sym_BSLASHtext] = ACTIONS(6125), - [anon_sym_BSLASHintertext] = ACTIONS(6125), - [anon_sym_shortintertext] = ACTIONS(6125), - }, - [956] = { - [ts_builtin_sym_end] = ACTIONS(6175), - [sym_command_name] = ACTIONS(6173), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6173), - [anon_sym_LBRACK] = ACTIONS(6175), - [anon_sym_RBRACK] = ACTIONS(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_EQ] = ACTIONS(6175), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_BSLASHpart] = ACTIONS(6173), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddpart] = ACTIONS(6173), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6175), - [anon_sym_BSLASHchapter] = ACTIONS(6173), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddchap] = ACTIONS(6173), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsection] = ACTIONS(6173), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddsec] = ACTIONS(6173), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubsection] = ACTIONS(6173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6173), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHparagraph] = ACTIONS(6173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6173), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6175), - [anon_sym_BSLASHitem] = ACTIONS(6173), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6175), - [anon_sym_LBRACE] = ACTIONS(6175), - [anon_sym_RBRACE] = ACTIONS(6175), - [sym_word] = ACTIONS(6173), - [sym_placeholder] = ACTIONS(6175), - [anon_sym_PLUS] = ACTIONS(6175), - [anon_sym_DASH] = ACTIONS(6175), - [anon_sym_STAR] = ACTIONS(6175), - [anon_sym_SLASH] = ACTIONS(6175), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_BANG] = ACTIONS(6173), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_COLON] = ACTIONS(6173), - [anon_sym_SQUOTE] = ACTIONS(6173), - [anon_sym__] = ACTIONS(6175), - [anon_sym_CARET] = ACTIONS(6175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6175), - [anon_sym_DOLLAR] = ACTIONS(6173), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6175), - [anon_sym_BSLASHbegin] = ACTIONS(6173), - [anon_sym_BSLASHtitle] = ACTIONS(6173), - [anon_sym_BSLASHauthor] = ACTIONS(6173), - [anon_sym_BSLASHusepackage] = ACTIONS(6173), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6173), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6173), - [anon_sym_BSLASHinclude] = ACTIONS(6173), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6173), - [anon_sym_BSLASHinput] = ACTIONS(6173), - [anon_sym_BSLASHsubfile] = ACTIONS(6173), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6173), - [anon_sym_BSLASHbibliography] = ACTIONS(6173), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6173), - [anon_sym_BSLASHincludesvg] = ACTIONS(6173), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6173), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6173), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6173), - [anon_sym_BSLASHimport] = ACTIONS(6173), - [anon_sym_BSLASHsubimport] = ACTIONS(6173), - [anon_sym_BSLASHinputfrom] = ACTIONS(6173), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6173), - [anon_sym_BSLASHincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHcaption] = ACTIONS(6173), - [anon_sym_BSLASHcite] = ACTIONS(6173), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCite] = ACTIONS(6173), - [anon_sym_BSLASHnocite] = ACTIONS(6173), - [anon_sym_BSLASHcitet] = ACTIONS(6173), - [anon_sym_BSLASHcitep] = ACTIONS(6173), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteauthor] = ACTIONS(6173), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6173), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitetitle] = ACTIONS(6173), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteyear] = ACTIONS(6173), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitedate] = ACTIONS(6173), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteurl] = ACTIONS(6173), - [anon_sym_BSLASHfullcite] = ACTIONS(6173), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6173), - [anon_sym_BSLASHcitealt] = ACTIONS(6173), - [anon_sym_BSLASHcitealp] = ACTIONS(6173), - [anon_sym_BSLASHcitetext] = ACTIONS(6173), - [anon_sym_BSLASHparencite] = ACTIONS(6173), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHParencite] = ACTIONS(6173), - [anon_sym_BSLASHfootcite] = ACTIONS(6173), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6173), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6173), - [anon_sym_BSLASHtextcite] = ACTIONS(6173), - [anon_sym_BSLASHTextcite] = ACTIONS(6173), - [anon_sym_BSLASHsmartcite] = ACTIONS(6173), - [anon_sym_BSLASHSmartcite] = ACTIONS(6173), - [anon_sym_BSLASHsupercite] = ACTIONS(6173), - [anon_sym_BSLASHautocite] = ACTIONS(6173), - [anon_sym_BSLASHAutocite] = ACTIONS(6173), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHvolcite] = ACTIONS(6173), - [anon_sym_BSLASHVolcite] = ACTIONS(6173), - [anon_sym_BSLASHpvolcite] = ACTIONS(6173), - [anon_sym_BSLASHPvolcite] = ACTIONS(6173), - [anon_sym_BSLASHfvolcite] = ACTIONS(6173), - [anon_sym_BSLASHftvolcite] = ACTIONS(6173), - [anon_sym_BSLASHsvolcite] = ACTIONS(6173), - [anon_sym_BSLASHSvolcite] = ACTIONS(6173), - [anon_sym_BSLASHtvolcite] = ACTIONS(6173), - [anon_sym_BSLASHTvolcite] = ACTIONS(6173), - [anon_sym_BSLASHavolcite] = ACTIONS(6173), - [anon_sym_BSLASHAvolcite] = ACTIONS(6173), - [anon_sym_BSLASHnotecite] = ACTIONS(6173), - [anon_sym_BSLASHNotecite] = ACTIONS(6173), - [anon_sym_BSLASHpnotecite] = ACTIONS(6173), - [anon_sym_BSLASHPnotecite] = ACTIONS(6173), - [anon_sym_BSLASHfnotecite] = ACTIONS(6173), - [anon_sym_BSLASHlabel] = ACTIONS(6173), - [anon_sym_BSLASHref] = ACTIONS(6173), - [anon_sym_BSLASHeqref] = ACTIONS(6173), - [anon_sym_BSLASHvref] = ACTIONS(6173), - [anon_sym_BSLASHVref] = ACTIONS(6173), - [anon_sym_BSLASHautoref] = ACTIONS(6173), - [anon_sym_BSLASHpageref] = ACTIONS(6173), - [anon_sym_BSLASHcref] = ACTIONS(6173), - [anon_sym_BSLASHCref] = ACTIONS(6173), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnameCref] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHlabelcref] = ACTIONS(6173), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCrefrange] = ACTIONS(6173), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnewlabel] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6173), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6173), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6175), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHdef] = ACTIONS(6173), - [anon_sym_BSLASHlet] = ACTIONS(6173), - [anon_sym_BSLASHleft] = ACTIONS(6173), - [anon_sym_BSLASHbig] = ACTIONS(6173), - [anon_sym_BSLASHBig] = ACTIONS(6173), - [anon_sym_BSLASHbigg] = ACTIONS(6173), - [anon_sym_BSLASHBigg] = ACTIONS(6173), - [anon_sym_BSLASHbigl] = ACTIONS(6173), - [anon_sym_BSLASHBigl] = ACTIONS(6173), - [anon_sym_BSLASHbiggl] = ACTIONS(6173), - [anon_sym_BSLASHBiggl] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6173), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6173), - [anon_sym_BSLASHgls] = ACTIONS(6173), - [anon_sym_BSLASHGls] = ACTIONS(6173), - [anon_sym_BSLASHGLS] = ACTIONS(6173), - [anon_sym_BSLASHglspl] = ACTIONS(6173), - [anon_sym_BSLASHGlspl] = ACTIONS(6173), - [anon_sym_BSLASHGLSpl] = ACTIONS(6173), - [anon_sym_BSLASHglsdisp] = ACTIONS(6173), - [anon_sym_BSLASHglslink] = ACTIONS(6173), - [anon_sym_BSLASHglstext] = ACTIONS(6173), - [anon_sym_BSLASHGlstext] = ACTIONS(6173), - [anon_sym_BSLASHGLStext] = ACTIONS(6173), - [anon_sym_BSLASHglsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6173), - [anon_sym_BSLASHglsplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSplural] = ACTIONS(6173), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHglsname] = ACTIONS(6173), - [anon_sym_BSLASHGlsname] = ACTIONS(6173), - [anon_sym_BSLASHGLSname] = ACTIONS(6173), - [anon_sym_BSLASHglssymbol] = ACTIONS(6173), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6173), - [anon_sym_BSLASHglsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6173), - [anon_sym_BSLASHglsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6173), - [anon_sym_BSLASHglsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6173), - [anon_sym_BSLASHglsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6173), - [anon_sym_BSLASHglsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6173), - [anon_sym_BSLASHnewacronym] = ACTIONS(6173), - [anon_sym_BSLASHacrshort] = ACTIONS(6173), - [anon_sym_BSLASHAcrshort] = ACTIONS(6173), - [anon_sym_BSLASHACRshort] = ACTIONS(6173), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6173), - [anon_sym_BSLASHacrlong] = ACTIONS(6173), - [anon_sym_BSLASHAcrlong] = ACTIONS(6173), - [anon_sym_BSLASHACRlong] = ACTIONS(6173), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6173), - [anon_sym_BSLASHacrfull] = ACTIONS(6173), - [anon_sym_BSLASHAcrfull] = ACTIONS(6173), - [anon_sym_BSLASHACRfull] = ACTIONS(6173), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6173), - [anon_sym_BSLASHacs] = ACTIONS(6173), - [anon_sym_BSLASHAcs] = ACTIONS(6173), - [anon_sym_BSLASHacsp] = ACTIONS(6173), - [anon_sym_BSLASHAcsp] = ACTIONS(6173), - [anon_sym_BSLASHacl] = ACTIONS(6173), - [anon_sym_BSLASHAcl] = ACTIONS(6173), - [anon_sym_BSLASHaclp] = ACTIONS(6173), - [anon_sym_BSLASHAclp] = ACTIONS(6173), - [anon_sym_BSLASHacf] = ACTIONS(6173), - [anon_sym_BSLASHAcf] = ACTIONS(6173), - [anon_sym_BSLASHacfp] = ACTIONS(6173), - [anon_sym_BSLASHAcfp] = ACTIONS(6173), - [anon_sym_BSLASHac] = ACTIONS(6173), - [anon_sym_BSLASHAc] = ACTIONS(6173), - [anon_sym_BSLASHacp] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6173), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6173), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6173), - [anon_sym_BSLASHcolor] = ACTIONS(6173), - [anon_sym_BSLASHcolorbox] = ACTIONS(6173), - [anon_sym_BSLASHtextcolor] = ACTIONS(6173), - [anon_sym_BSLASHpagecolor] = ACTIONS(6173), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6173), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6173), - [anon_sym_BSLASHtext] = ACTIONS(6173), - [anon_sym_BSLASHintertext] = ACTIONS(6173), - [anon_sym_shortintertext] = ACTIONS(6173), - }, - [957] = { - [ts_builtin_sym_end] = ACTIONS(6179), - [sym_command_name] = ACTIONS(6177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6177), - [anon_sym_LBRACK] = ACTIONS(6179), - [anon_sym_RBRACK] = ACTIONS(6179), - [anon_sym_COMMA] = ACTIONS(6179), - [anon_sym_EQ] = ACTIONS(6179), - [anon_sym_LPAREN] = ACTIONS(6179), - [anon_sym_RPAREN] = ACTIONS(6179), - [anon_sym_BSLASHpart] = ACTIONS(6177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddpart] = ACTIONS(6177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6179), - [anon_sym_BSLASHchapter] = ACTIONS(6177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddchap] = ACTIONS(6177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsection] = ACTIONS(6177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddsec] = ACTIONS(6177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubsection] = ACTIONS(6177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHparagraph] = ACTIONS(6177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6179), - [anon_sym_BSLASHitem] = ACTIONS(6177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6179), - [anon_sym_LBRACE] = ACTIONS(6179), - [anon_sym_RBRACE] = ACTIONS(6179), - [sym_word] = ACTIONS(6177), - [sym_placeholder] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6179), - [anon_sym_DASH] = ACTIONS(6179), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6177), - [anon_sym_GT] = ACTIONS(6177), - [anon_sym_BANG] = ACTIONS(6177), - [anon_sym_PIPE] = ACTIONS(6177), - [anon_sym_COLON] = ACTIONS(6177), - [anon_sym_SQUOTE] = ACTIONS(6177), - [anon_sym__] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), - [anon_sym_DOLLAR] = ACTIONS(6177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), - [anon_sym_BSLASHbegin] = ACTIONS(6177), - [anon_sym_BSLASHtitle] = ACTIONS(6177), - [anon_sym_BSLASHauthor] = ACTIONS(6177), - [anon_sym_BSLASHusepackage] = ACTIONS(6177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6177), - [anon_sym_BSLASHinclude] = ACTIONS(6177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6177), - [anon_sym_BSLASHinput] = ACTIONS(6177), - [anon_sym_BSLASHsubfile] = ACTIONS(6177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6177), - [anon_sym_BSLASHbibliography] = ACTIONS(6177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6177), - [anon_sym_BSLASHincludesvg] = ACTIONS(6177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6177), - [anon_sym_BSLASHimport] = ACTIONS(6177), - [anon_sym_BSLASHsubimport] = ACTIONS(6177), - [anon_sym_BSLASHinputfrom] = ACTIONS(6177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6177), - [anon_sym_BSLASHincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHcaption] = ACTIONS(6177), - [anon_sym_BSLASHcite] = ACTIONS(6177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCite] = ACTIONS(6177), - [anon_sym_BSLASHnocite] = ACTIONS(6177), - [anon_sym_BSLASHcitet] = ACTIONS(6177), - [anon_sym_BSLASHcitep] = ACTIONS(6177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteauthor] = ACTIONS(6177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitetitle] = ACTIONS(6177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteyear] = ACTIONS(6177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitedate] = ACTIONS(6177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteurl] = ACTIONS(6177), - [anon_sym_BSLASHfullcite] = ACTIONS(6177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6177), - [anon_sym_BSLASHcitealt] = ACTIONS(6177), - [anon_sym_BSLASHcitealp] = ACTIONS(6177), - [anon_sym_BSLASHcitetext] = ACTIONS(6177), - [anon_sym_BSLASHparencite] = ACTIONS(6177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHParencite] = ACTIONS(6177), - [anon_sym_BSLASHfootcite] = ACTIONS(6177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6177), - [anon_sym_BSLASHtextcite] = ACTIONS(6177), - [anon_sym_BSLASHTextcite] = ACTIONS(6177), - [anon_sym_BSLASHsmartcite] = ACTIONS(6177), - [anon_sym_BSLASHSmartcite] = ACTIONS(6177), - [anon_sym_BSLASHsupercite] = ACTIONS(6177), - [anon_sym_BSLASHautocite] = ACTIONS(6177), - [anon_sym_BSLASHAutocite] = ACTIONS(6177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHvolcite] = ACTIONS(6177), - [anon_sym_BSLASHVolcite] = ACTIONS(6177), - [anon_sym_BSLASHpvolcite] = ACTIONS(6177), - [anon_sym_BSLASHPvolcite] = ACTIONS(6177), - [anon_sym_BSLASHfvolcite] = ACTIONS(6177), - [anon_sym_BSLASHftvolcite] = ACTIONS(6177), - [anon_sym_BSLASHsvolcite] = ACTIONS(6177), - [anon_sym_BSLASHSvolcite] = ACTIONS(6177), - [anon_sym_BSLASHtvolcite] = ACTIONS(6177), - [anon_sym_BSLASHTvolcite] = ACTIONS(6177), - [anon_sym_BSLASHavolcite] = ACTIONS(6177), - [anon_sym_BSLASHAvolcite] = ACTIONS(6177), - [anon_sym_BSLASHnotecite] = ACTIONS(6177), - [anon_sym_BSLASHNotecite] = ACTIONS(6177), - [anon_sym_BSLASHpnotecite] = ACTIONS(6177), - [anon_sym_BSLASHPnotecite] = ACTIONS(6177), - [anon_sym_BSLASHfnotecite] = ACTIONS(6177), - [anon_sym_BSLASHlabel] = ACTIONS(6177), - [anon_sym_BSLASHref] = ACTIONS(6177), - [anon_sym_BSLASHeqref] = ACTIONS(6177), - [anon_sym_BSLASHvref] = ACTIONS(6177), - [anon_sym_BSLASHVref] = ACTIONS(6177), - [anon_sym_BSLASHautoref] = ACTIONS(6177), - [anon_sym_BSLASHpageref] = ACTIONS(6177), - [anon_sym_BSLASHcref] = ACTIONS(6177), - [anon_sym_BSLASHCref] = ACTIONS(6177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnameCref] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHlabelcref] = ACTIONS(6177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCrefrange] = ACTIONS(6177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnewlabel] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHdef] = ACTIONS(6177), - [anon_sym_BSLASHlet] = ACTIONS(6177), - [anon_sym_BSLASHleft] = ACTIONS(6177), - [anon_sym_BSLASHbig] = ACTIONS(6177), - [anon_sym_BSLASHBig] = ACTIONS(6177), - [anon_sym_BSLASHbigg] = ACTIONS(6177), - [anon_sym_BSLASHBigg] = ACTIONS(6177), - [anon_sym_BSLASHbigl] = ACTIONS(6177), - [anon_sym_BSLASHBigl] = ACTIONS(6177), - [anon_sym_BSLASHbiggl] = ACTIONS(6177), - [anon_sym_BSLASHBiggl] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6177), - [anon_sym_BSLASHgls] = ACTIONS(6177), - [anon_sym_BSLASHGls] = ACTIONS(6177), - [anon_sym_BSLASHGLS] = ACTIONS(6177), - [anon_sym_BSLASHglspl] = ACTIONS(6177), - [anon_sym_BSLASHGlspl] = ACTIONS(6177), - [anon_sym_BSLASHGLSpl] = ACTIONS(6177), - [anon_sym_BSLASHglsdisp] = ACTIONS(6177), - [anon_sym_BSLASHglslink] = ACTIONS(6177), - [anon_sym_BSLASHglstext] = ACTIONS(6177), - [anon_sym_BSLASHGlstext] = ACTIONS(6177), - [anon_sym_BSLASHGLStext] = ACTIONS(6177), - [anon_sym_BSLASHglsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6177), - [anon_sym_BSLASHglsplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSplural] = ACTIONS(6177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHglsname] = ACTIONS(6177), - [anon_sym_BSLASHGlsname] = ACTIONS(6177), - [anon_sym_BSLASHGLSname] = ACTIONS(6177), - [anon_sym_BSLASHglssymbol] = ACTIONS(6177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6177), - [anon_sym_BSLASHglsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6177), - [anon_sym_BSLASHglsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6177), - [anon_sym_BSLASHglsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6177), - [anon_sym_BSLASHglsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6177), - [anon_sym_BSLASHglsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6177), - [anon_sym_BSLASHnewacronym] = ACTIONS(6177), - [anon_sym_BSLASHacrshort] = ACTIONS(6177), - [anon_sym_BSLASHAcrshort] = ACTIONS(6177), - [anon_sym_BSLASHACRshort] = ACTIONS(6177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6177), - [anon_sym_BSLASHacrlong] = ACTIONS(6177), - [anon_sym_BSLASHAcrlong] = ACTIONS(6177), - [anon_sym_BSLASHACRlong] = ACTIONS(6177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6177), - [anon_sym_BSLASHacrfull] = ACTIONS(6177), - [anon_sym_BSLASHAcrfull] = ACTIONS(6177), - [anon_sym_BSLASHACRfull] = ACTIONS(6177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6177), - [anon_sym_BSLASHacs] = ACTIONS(6177), - [anon_sym_BSLASHAcs] = ACTIONS(6177), - [anon_sym_BSLASHacsp] = ACTIONS(6177), - [anon_sym_BSLASHAcsp] = ACTIONS(6177), - [anon_sym_BSLASHacl] = ACTIONS(6177), - [anon_sym_BSLASHAcl] = ACTIONS(6177), - [anon_sym_BSLASHaclp] = ACTIONS(6177), - [anon_sym_BSLASHAclp] = ACTIONS(6177), - [anon_sym_BSLASHacf] = ACTIONS(6177), - [anon_sym_BSLASHAcf] = ACTIONS(6177), - [anon_sym_BSLASHacfp] = ACTIONS(6177), - [anon_sym_BSLASHAcfp] = ACTIONS(6177), - [anon_sym_BSLASHac] = ACTIONS(6177), - [anon_sym_BSLASHAc] = ACTIONS(6177), - [anon_sym_BSLASHacp] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6177), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6177), - [anon_sym_BSLASHcolor] = ACTIONS(6177), - [anon_sym_BSLASHcolorbox] = ACTIONS(6177), - [anon_sym_BSLASHtextcolor] = ACTIONS(6177), - [anon_sym_BSLASHpagecolor] = ACTIONS(6177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6177), - [anon_sym_BSLASHtext] = ACTIONS(6177), - [anon_sym_BSLASHintertext] = ACTIONS(6177), - [anon_sym_shortintertext] = ACTIONS(6177), - }, - [958] = { - [ts_builtin_sym_end] = ACTIONS(6335), - [sym_command_name] = ACTIONS(6333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6333), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_BSLASHpart] = ACTIONS(6333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddpart] = ACTIONS(6333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6335), - [anon_sym_BSLASHchapter] = ACTIONS(6333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddchap] = ACTIONS(6333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsection] = ACTIONS(6333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddsec] = ACTIONS(6333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubsection] = ACTIONS(6333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHparagraph] = ACTIONS(6333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6335), - [anon_sym_BSLASHitem] = ACTIONS(6333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6335), - [anon_sym_LBRACE] = ACTIONS(6335), - [anon_sym_RBRACE] = ACTIONS(6335), - [sym_word] = ACTIONS(6333), - [sym_placeholder] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6335), - [anon_sym_DASH] = ACTIONS(6335), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6333), - [anon_sym_GT] = ACTIONS(6333), - [anon_sym_BANG] = ACTIONS(6333), - [anon_sym_PIPE] = ACTIONS(6333), - [anon_sym_COLON] = ACTIONS(6333), - [anon_sym_SQUOTE] = ACTIONS(6333), - [anon_sym__] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6335), - [anon_sym_DOLLAR] = ACTIONS(6333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6335), - [anon_sym_BSLASHbegin] = ACTIONS(6333), - [anon_sym_BSLASHtitle] = ACTIONS(6333), - [anon_sym_BSLASHauthor] = ACTIONS(6333), - [anon_sym_BSLASHusepackage] = ACTIONS(6333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6333), - [anon_sym_BSLASHinclude] = ACTIONS(6333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6333), - [anon_sym_BSLASHinput] = ACTIONS(6333), - [anon_sym_BSLASHsubfile] = ACTIONS(6333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6333), - [anon_sym_BSLASHbibliography] = ACTIONS(6333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6333), - [anon_sym_BSLASHincludesvg] = ACTIONS(6333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6333), - [anon_sym_BSLASHimport] = ACTIONS(6333), - [anon_sym_BSLASHsubimport] = ACTIONS(6333), - [anon_sym_BSLASHinputfrom] = ACTIONS(6333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6333), - [anon_sym_BSLASHincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHcaption] = ACTIONS(6333), - [anon_sym_BSLASHcite] = ACTIONS(6333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCite] = ACTIONS(6333), - [anon_sym_BSLASHnocite] = ACTIONS(6333), - [anon_sym_BSLASHcitet] = ACTIONS(6333), - [anon_sym_BSLASHcitep] = ACTIONS(6333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteauthor] = ACTIONS(6333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitetitle] = ACTIONS(6333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteyear] = ACTIONS(6333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitedate] = ACTIONS(6333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteurl] = ACTIONS(6333), - [anon_sym_BSLASHfullcite] = ACTIONS(6333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6333), - [anon_sym_BSLASHcitealt] = ACTIONS(6333), - [anon_sym_BSLASHcitealp] = ACTIONS(6333), - [anon_sym_BSLASHcitetext] = ACTIONS(6333), - [anon_sym_BSLASHparencite] = ACTIONS(6333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHParencite] = ACTIONS(6333), - [anon_sym_BSLASHfootcite] = ACTIONS(6333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6333), - [anon_sym_BSLASHtextcite] = ACTIONS(6333), - [anon_sym_BSLASHTextcite] = ACTIONS(6333), - [anon_sym_BSLASHsmartcite] = ACTIONS(6333), - [anon_sym_BSLASHSmartcite] = ACTIONS(6333), - [anon_sym_BSLASHsupercite] = ACTIONS(6333), - [anon_sym_BSLASHautocite] = ACTIONS(6333), - [anon_sym_BSLASHAutocite] = ACTIONS(6333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHvolcite] = ACTIONS(6333), - [anon_sym_BSLASHVolcite] = ACTIONS(6333), - [anon_sym_BSLASHpvolcite] = ACTIONS(6333), - [anon_sym_BSLASHPvolcite] = ACTIONS(6333), - [anon_sym_BSLASHfvolcite] = ACTIONS(6333), - [anon_sym_BSLASHftvolcite] = ACTIONS(6333), - [anon_sym_BSLASHsvolcite] = ACTIONS(6333), - [anon_sym_BSLASHSvolcite] = ACTIONS(6333), - [anon_sym_BSLASHtvolcite] = ACTIONS(6333), - [anon_sym_BSLASHTvolcite] = ACTIONS(6333), - [anon_sym_BSLASHavolcite] = ACTIONS(6333), - [anon_sym_BSLASHAvolcite] = ACTIONS(6333), - [anon_sym_BSLASHnotecite] = ACTIONS(6333), - [anon_sym_BSLASHNotecite] = ACTIONS(6333), - [anon_sym_BSLASHpnotecite] = ACTIONS(6333), - [anon_sym_BSLASHPnotecite] = ACTIONS(6333), - [anon_sym_BSLASHfnotecite] = ACTIONS(6333), - [anon_sym_BSLASHlabel] = ACTIONS(6333), - [anon_sym_BSLASHref] = ACTIONS(6333), - [anon_sym_BSLASHeqref] = ACTIONS(6333), - [anon_sym_BSLASHvref] = ACTIONS(6333), - [anon_sym_BSLASHVref] = ACTIONS(6333), - [anon_sym_BSLASHautoref] = ACTIONS(6333), - [anon_sym_BSLASHpageref] = ACTIONS(6333), - [anon_sym_BSLASHcref] = ACTIONS(6333), - [anon_sym_BSLASHCref] = ACTIONS(6333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnameCref] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHlabelcref] = ACTIONS(6333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCrefrange] = ACTIONS(6333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnewlabel] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6335), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHdef] = ACTIONS(6333), - [anon_sym_BSLASHlet] = ACTIONS(6333), - [anon_sym_BSLASHleft] = ACTIONS(6333), - [anon_sym_BSLASHbig] = ACTIONS(6333), - [anon_sym_BSLASHBig] = ACTIONS(6333), - [anon_sym_BSLASHbigg] = ACTIONS(6333), - [anon_sym_BSLASHBigg] = ACTIONS(6333), - [anon_sym_BSLASHbigl] = ACTIONS(6333), - [anon_sym_BSLASHBigl] = ACTIONS(6333), - [anon_sym_BSLASHbiggl] = ACTIONS(6333), - [anon_sym_BSLASHBiggl] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6333), - [anon_sym_BSLASHgls] = ACTIONS(6333), - [anon_sym_BSLASHGls] = ACTIONS(6333), - [anon_sym_BSLASHGLS] = ACTIONS(6333), - [anon_sym_BSLASHglspl] = ACTIONS(6333), - [anon_sym_BSLASHGlspl] = ACTIONS(6333), - [anon_sym_BSLASHGLSpl] = ACTIONS(6333), - [anon_sym_BSLASHglsdisp] = ACTIONS(6333), - [anon_sym_BSLASHglslink] = ACTIONS(6333), - [anon_sym_BSLASHglstext] = ACTIONS(6333), - [anon_sym_BSLASHGlstext] = ACTIONS(6333), - [anon_sym_BSLASHGLStext] = ACTIONS(6333), - [anon_sym_BSLASHglsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6333), - [anon_sym_BSLASHglsplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSplural] = ACTIONS(6333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHglsname] = ACTIONS(6333), - [anon_sym_BSLASHGlsname] = ACTIONS(6333), - [anon_sym_BSLASHGLSname] = ACTIONS(6333), - [anon_sym_BSLASHglssymbol] = ACTIONS(6333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6333), - [anon_sym_BSLASHglsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6333), - [anon_sym_BSLASHglsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6333), - [anon_sym_BSLASHglsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6333), - [anon_sym_BSLASHglsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6333), - [anon_sym_BSLASHglsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6333), - [anon_sym_BSLASHnewacronym] = ACTIONS(6333), - [anon_sym_BSLASHacrshort] = ACTIONS(6333), - [anon_sym_BSLASHAcrshort] = ACTIONS(6333), - [anon_sym_BSLASHACRshort] = ACTIONS(6333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6333), - [anon_sym_BSLASHacrlong] = ACTIONS(6333), - [anon_sym_BSLASHAcrlong] = ACTIONS(6333), - [anon_sym_BSLASHACRlong] = ACTIONS(6333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6333), - [anon_sym_BSLASHacrfull] = ACTIONS(6333), - [anon_sym_BSLASHAcrfull] = ACTIONS(6333), - [anon_sym_BSLASHACRfull] = ACTIONS(6333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6333), - [anon_sym_BSLASHacs] = ACTIONS(6333), - [anon_sym_BSLASHAcs] = ACTIONS(6333), - [anon_sym_BSLASHacsp] = ACTIONS(6333), - [anon_sym_BSLASHAcsp] = ACTIONS(6333), - [anon_sym_BSLASHacl] = ACTIONS(6333), - [anon_sym_BSLASHAcl] = ACTIONS(6333), - [anon_sym_BSLASHaclp] = ACTIONS(6333), - [anon_sym_BSLASHAclp] = ACTIONS(6333), - [anon_sym_BSLASHacf] = ACTIONS(6333), - [anon_sym_BSLASHAcf] = ACTIONS(6333), - [anon_sym_BSLASHacfp] = ACTIONS(6333), - [anon_sym_BSLASHAcfp] = ACTIONS(6333), - [anon_sym_BSLASHac] = ACTIONS(6333), - [anon_sym_BSLASHAc] = ACTIONS(6333), - [anon_sym_BSLASHacp] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6333), - [anon_sym_BSLASHcolor] = ACTIONS(6333), - [anon_sym_BSLASHcolorbox] = ACTIONS(6333), - [anon_sym_BSLASHtextcolor] = ACTIONS(6333), - [anon_sym_BSLASHpagecolor] = ACTIONS(6333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6333), - [anon_sym_BSLASHtext] = ACTIONS(6333), - [anon_sym_BSLASHintertext] = ACTIONS(6333), - [anon_sym_shortintertext] = ACTIONS(6333), - }, - [959] = { - [ts_builtin_sym_end] = ACTIONS(6139), - [sym_command_name] = ACTIONS(6137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6137), - [anon_sym_LBRACK] = ACTIONS(6139), - [anon_sym_RBRACK] = ACTIONS(6139), - [anon_sym_COMMA] = ACTIONS(6139), - [anon_sym_EQ] = ACTIONS(6139), - [anon_sym_LPAREN] = ACTIONS(6139), - [anon_sym_RPAREN] = ACTIONS(6139), - [anon_sym_BSLASHpart] = ACTIONS(6137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddpart] = ACTIONS(6137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6139), - [anon_sym_BSLASHchapter] = ACTIONS(6137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddchap] = ACTIONS(6137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsection] = ACTIONS(6137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddsec] = ACTIONS(6137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubsection] = ACTIONS(6137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHparagraph] = ACTIONS(6137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6139), - [anon_sym_BSLASHitem] = ACTIONS(6137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6139), - [anon_sym_LBRACE] = ACTIONS(6139), - [anon_sym_RBRACE] = ACTIONS(6139), - [sym_word] = ACTIONS(6137), - [sym_placeholder] = ACTIONS(6139), - [anon_sym_PLUS] = ACTIONS(6139), - [anon_sym_DASH] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(6139), - [anon_sym_SLASH] = ACTIONS(6139), - [anon_sym_LT] = ACTIONS(6137), - [anon_sym_GT] = ACTIONS(6137), - [anon_sym_BANG] = ACTIONS(6137), - [anon_sym_PIPE] = ACTIONS(6137), - [anon_sym_COLON] = ACTIONS(6137), - [anon_sym_SQUOTE] = ACTIONS(6137), - [anon_sym__] = ACTIONS(6139), - [anon_sym_CARET] = ACTIONS(6139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6139), - [anon_sym_DOLLAR] = ACTIONS(6137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6139), - [anon_sym_BSLASHbegin] = ACTIONS(6137), - [anon_sym_BSLASHtitle] = ACTIONS(6137), - [anon_sym_BSLASHauthor] = ACTIONS(6137), - [anon_sym_BSLASHusepackage] = ACTIONS(6137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6137), - [anon_sym_BSLASHinclude] = ACTIONS(6137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6137), - [anon_sym_BSLASHinput] = ACTIONS(6137), - [anon_sym_BSLASHsubfile] = ACTIONS(6137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6137), - [anon_sym_BSLASHbibliography] = ACTIONS(6137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6137), - [anon_sym_BSLASHincludesvg] = ACTIONS(6137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6137), - [anon_sym_BSLASHimport] = ACTIONS(6137), - [anon_sym_BSLASHsubimport] = ACTIONS(6137), - [anon_sym_BSLASHinputfrom] = ACTIONS(6137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6137), - [anon_sym_BSLASHincludefrom] = ACTIONS(6137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6137), - [anon_sym_BSLASHcaption] = ACTIONS(6137), - [anon_sym_BSLASHcite] = ACTIONS(6137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCite] = ACTIONS(6137), - [anon_sym_BSLASHnocite] = ACTIONS(6137), - [anon_sym_BSLASHcitet] = ACTIONS(6137), - [anon_sym_BSLASHcitep] = ACTIONS(6137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteauthor] = ACTIONS(6137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitetitle] = ACTIONS(6137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteyear] = ACTIONS(6137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitedate] = ACTIONS(6137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteurl] = ACTIONS(6137), - [anon_sym_BSLASHfullcite] = ACTIONS(6137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6137), - [anon_sym_BSLASHcitealt] = ACTIONS(6137), - [anon_sym_BSLASHcitealp] = ACTIONS(6137), - [anon_sym_BSLASHcitetext] = ACTIONS(6137), - [anon_sym_BSLASHparencite] = ACTIONS(6137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHParencite] = ACTIONS(6137), - [anon_sym_BSLASHfootcite] = ACTIONS(6137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6137), - [anon_sym_BSLASHtextcite] = ACTIONS(6137), - [anon_sym_BSLASHTextcite] = ACTIONS(6137), - [anon_sym_BSLASHsmartcite] = ACTIONS(6137), - [anon_sym_BSLASHSmartcite] = ACTIONS(6137), - [anon_sym_BSLASHsupercite] = ACTIONS(6137), - [anon_sym_BSLASHautocite] = ACTIONS(6137), - [anon_sym_BSLASHAutocite] = ACTIONS(6137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHvolcite] = ACTIONS(6137), - [anon_sym_BSLASHVolcite] = ACTIONS(6137), - [anon_sym_BSLASHpvolcite] = ACTIONS(6137), - [anon_sym_BSLASHPvolcite] = ACTIONS(6137), - [anon_sym_BSLASHfvolcite] = ACTIONS(6137), - [anon_sym_BSLASHftvolcite] = ACTIONS(6137), - [anon_sym_BSLASHsvolcite] = ACTIONS(6137), - [anon_sym_BSLASHSvolcite] = ACTIONS(6137), - [anon_sym_BSLASHtvolcite] = ACTIONS(6137), - [anon_sym_BSLASHTvolcite] = ACTIONS(6137), - [anon_sym_BSLASHavolcite] = ACTIONS(6137), - [anon_sym_BSLASHAvolcite] = ACTIONS(6137), - [anon_sym_BSLASHnotecite] = ACTIONS(6137), - [anon_sym_BSLASHNotecite] = ACTIONS(6137), - [anon_sym_BSLASHpnotecite] = ACTIONS(6137), - [anon_sym_BSLASHPnotecite] = ACTIONS(6137), - [anon_sym_BSLASHfnotecite] = ACTIONS(6137), - [anon_sym_BSLASHlabel] = ACTIONS(6137), - [anon_sym_BSLASHref] = ACTIONS(6137), - [anon_sym_BSLASHeqref] = ACTIONS(6137), - [anon_sym_BSLASHvref] = ACTIONS(6137), - [anon_sym_BSLASHVref] = ACTIONS(6137), - [anon_sym_BSLASHautoref] = ACTIONS(6137), - [anon_sym_BSLASHpageref] = ACTIONS(6137), - [anon_sym_BSLASHcref] = ACTIONS(6137), - [anon_sym_BSLASHCref] = ACTIONS(6137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6139), - [anon_sym_BSLASHnamecref] = ACTIONS(6137), - [anon_sym_BSLASHnameCref] = ACTIONS(6137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6137), - [anon_sym_BSLASHlabelcref] = ACTIONS(6137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6137), - [anon_sym_BSLASHcrefrange] = ACTIONS(6137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCrefrange] = ACTIONS(6137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6139), - [anon_sym_BSLASHnewlabel] = ACTIONS(6137), - [anon_sym_BSLASHnewcommand] = ACTIONS(6137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6139), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHdef] = ACTIONS(6137), - [anon_sym_BSLASHlet] = ACTIONS(6137), - [anon_sym_BSLASHleft] = ACTIONS(6137), - [anon_sym_BSLASHbig] = ACTIONS(6137), - [anon_sym_BSLASHBig] = ACTIONS(6137), - [anon_sym_BSLASHbigg] = ACTIONS(6137), - [anon_sym_BSLASHBigg] = ACTIONS(6137), - [anon_sym_BSLASHbigl] = ACTIONS(6137), - [anon_sym_BSLASHBigl] = ACTIONS(6137), - [anon_sym_BSLASHbiggl] = ACTIONS(6137), - [anon_sym_BSLASHBiggl] = ACTIONS(6137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6137), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6137), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6137), - [anon_sym_BSLASHgls] = ACTIONS(6137), - [anon_sym_BSLASHGls] = ACTIONS(6137), - [anon_sym_BSLASHGLS] = ACTIONS(6137), - [anon_sym_BSLASHglspl] = ACTIONS(6137), - [anon_sym_BSLASHGlspl] = ACTIONS(6137), - [anon_sym_BSLASHGLSpl] = ACTIONS(6137), - [anon_sym_BSLASHglsdisp] = ACTIONS(6137), - [anon_sym_BSLASHglslink] = ACTIONS(6137), - [anon_sym_BSLASHglstext] = ACTIONS(6137), - [anon_sym_BSLASHGlstext] = ACTIONS(6137), - [anon_sym_BSLASHGLStext] = ACTIONS(6137), - [anon_sym_BSLASHglsfirst] = ACTIONS(6137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6137), - [anon_sym_BSLASHglsplural] = ACTIONS(6137), - [anon_sym_BSLASHGlsplural] = ACTIONS(6137), - [anon_sym_BSLASHGLSplural] = ACTIONS(6137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHglsname] = ACTIONS(6137), - [anon_sym_BSLASHGlsname] = ACTIONS(6137), - [anon_sym_BSLASHGLSname] = ACTIONS(6137), - [anon_sym_BSLASHglssymbol] = ACTIONS(6137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6137), - [anon_sym_BSLASHglsdesc] = ACTIONS(6137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6137), - [anon_sym_BSLASHglsuseri] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6137), - [anon_sym_BSLASHglsuserii] = ACTIONS(6137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6137), - [anon_sym_BSLASHglsuserv] = ACTIONS(6137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6137), - [anon_sym_BSLASHglsuservi] = ACTIONS(6137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6137), - [anon_sym_BSLASHnewacronym] = ACTIONS(6137), - [anon_sym_BSLASHacrshort] = ACTIONS(6137), - [anon_sym_BSLASHAcrshort] = ACTIONS(6137), - [anon_sym_BSLASHACRshort] = ACTIONS(6137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6137), - [anon_sym_BSLASHacrlong] = ACTIONS(6137), - [anon_sym_BSLASHAcrlong] = ACTIONS(6137), - [anon_sym_BSLASHACRlong] = ACTIONS(6137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6137), - [anon_sym_BSLASHacrfull] = ACTIONS(6137), - [anon_sym_BSLASHAcrfull] = ACTIONS(6137), - [anon_sym_BSLASHACRfull] = ACTIONS(6137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6137), - [anon_sym_BSLASHacs] = ACTIONS(6137), - [anon_sym_BSLASHAcs] = ACTIONS(6137), - [anon_sym_BSLASHacsp] = ACTIONS(6137), - [anon_sym_BSLASHAcsp] = ACTIONS(6137), - [anon_sym_BSLASHacl] = ACTIONS(6137), - [anon_sym_BSLASHAcl] = ACTIONS(6137), - [anon_sym_BSLASHaclp] = ACTIONS(6137), - [anon_sym_BSLASHAclp] = ACTIONS(6137), - [anon_sym_BSLASHacf] = ACTIONS(6137), - [anon_sym_BSLASHAcf] = ACTIONS(6137), - [anon_sym_BSLASHacfp] = ACTIONS(6137), - [anon_sym_BSLASHAcfp] = ACTIONS(6137), - [anon_sym_BSLASHac] = ACTIONS(6137), - [anon_sym_BSLASHAc] = ACTIONS(6137), - [anon_sym_BSLASHacp] = ACTIONS(6137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6137), - [anon_sym_BSLASHcolor] = ACTIONS(6137), - [anon_sym_BSLASHcolorbox] = ACTIONS(6137), - [anon_sym_BSLASHtextcolor] = ACTIONS(6137), - [anon_sym_BSLASHpagecolor] = ACTIONS(6137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6137), - [anon_sym_BSLASHtext] = ACTIONS(6137), - [anon_sym_BSLASHintertext] = ACTIONS(6137), - [anon_sym_shortintertext] = ACTIONS(6137), - }, - [960] = { - [sym_brack_group_text] = STATE(1233), - [sym_command_name] = ACTIONS(6009), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6711), - [anon_sym_RBRACK] = ACTIONS(6011), - [anon_sym_COMMA] = ACTIONS(6011), - [anon_sym_EQ] = ACTIONS(6011), - [anon_sym_LPAREN] = ACTIONS(6011), - [anon_sym_RPAREN] = ACTIONS(6011), - [anon_sym_BSLASHpart] = ACTIONS(6009), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddpart] = ACTIONS(6009), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6011), - [anon_sym_BSLASHchapter] = ACTIONS(6009), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddchap] = ACTIONS(6009), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsection] = ACTIONS(6009), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddsec] = ACTIONS(6009), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubsection] = ACTIONS(6009), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6009), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHparagraph] = ACTIONS(6009), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6009), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6011), - [anon_sym_BSLASHitem] = ACTIONS(6009), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6011), - [anon_sym_LBRACE] = ACTIONS(6011), - [sym_word] = ACTIONS(6009), - [sym_placeholder] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_SQUOTE] = ACTIONS(6009), - [anon_sym__] = ACTIONS(6011), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6011), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6011), - [anon_sym_DOLLAR] = ACTIONS(6009), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6011), - [anon_sym_BSLASHbegin] = ACTIONS(6009), - [anon_sym_BSLASHtitle] = ACTIONS(6009), - [anon_sym_BSLASHauthor] = ACTIONS(6009), - [anon_sym_BSLASHusepackage] = ACTIONS(6009), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6009), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6009), - [anon_sym_BSLASHinclude] = ACTIONS(6009), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6009), - [anon_sym_BSLASHinput] = ACTIONS(6009), - [anon_sym_BSLASHsubfile] = ACTIONS(6009), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6009), - [anon_sym_BSLASHbibliography] = ACTIONS(6009), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6009), - [anon_sym_BSLASHincludesvg] = ACTIONS(6009), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6009), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6009), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6009), - [anon_sym_BSLASHimport] = ACTIONS(6009), - [anon_sym_BSLASHsubimport] = ACTIONS(6009), - [anon_sym_BSLASHinputfrom] = ACTIONS(6009), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6009), - [anon_sym_BSLASHincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHcaption] = ACTIONS(6009), - [anon_sym_BSLASHcite] = ACTIONS(6009), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCite] = ACTIONS(6009), - [anon_sym_BSLASHnocite] = ACTIONS(6009), - [anon_sym_BSLASHcitet] = ACTIONS(6009), - [anon_sym_BSLASHcitep] = ACTIONS(6009), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteauthor] = ACTIONS(6009), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6009), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitetitle] = ACTIONS(6009), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteyear] = ACTIONS(6009), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitedate] = ACTIONS(6009), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteurl] = ACTIONS(6009), - [anon_sym_BSLASHfullcite] = ACTIONS(6009), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6009), - [anon_sym_BSLASHcitealt] = ACTIONS(6009), - [anon_sym_BSLASHcitealp] = ACTIONS(6009), - [anon_sym_BSLASHcitetext] = ACTIONS(6009), - [anon_sym_BSLASHparencite] = ACTIONS(6009), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHParencite] = ACTIONS(6009), - [anon_sym_BSLASHfootcite] = ACTIONS(6009), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6009), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6009), - [anon_sym_BSLASHtextcite] = ACTIONS(6009), - [anon_sym_BSLASHTextcite] = ACTIONS(6009), - [anon_sym_BSLASHsmartcite] = ACTIONS(6009), - [anon_sym_BSLASHSmartcite] = ACTIONS(6009), - [anon_sym_BSLASHsupercite] = ACTIONS(6009), - [anon_sym_BSLASHautocite] = ACTIONS(6009), - [anon_sym_BSLASHAutocite] = ACTIONS(6009), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHvolcite] = ACTIONS(6009), - [anon_sym_BSLASHVolcite] = ACTIONS(6009), - [anon_sym_BSLASHpvolcite] = ACTIONS(6009), - [anon_sym_BSLASHPvolcite] = ACTIONS(6009), - [anon_sym_BSLASHfvolcite] = ACTIONS(6009), - [anon_sym_BSLASHftvolcite] = ACTIONS(6009), - [anon_sym_BSLASHsvolcite] = ACTIONS(6009), - [anon_sym_BSLASHSvolcite] = ACTIONS(6009), - [anon_sym_BSLASHtvolcite] = ACTIONS(6009), - [anon_sym_BSLASHTvolcite] = ACTIONS(6009), - [anon_sym_BSLASHavolcite] = ACTIONS(6009), - [anon_sym_BSLASHAvolcite] = ACTIONS(6009), - [anon_sym_BSLASHnotecite] = ACTIONS(6009), - [anon_sym_BSLASHNotecite] = ACTIONS(6009), - [anon_sym_BSLASHpnotecite] = ACTIONS(6009), - [anon_sym_BSLASHPnotecite] = ACTIONS(6009), - [anon_sym_BSLASHfnotecite] = ACTIONS(6009), - [anon_sym_BSLASHlabel] = ACTIONS(6009), - [anon_sym_BSLASHref] = ACTIONS(6009), - [anon_sym_BSLASHeqref] = ACTIONS(6009), - [anon_sym_BSLASHvref] = ACTIONS(6009), - [anon_sym_BSLASHVref] = ACTIONS(6009), - [anon_sym_BSLASHautoref] = ACTIONS(6009), - [anon_sym_BSLASHpageref] = ACTIONS(6009), - [anon_sym_BSLASHcref] = ACTIONS(6009), - [anon_sym_BSLASHCref] = ACTIONS(6009), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnameCref] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHlabelcref] = ACTIONS(6009), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCrefrange] = ACTIONS(6009), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnewlabel] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6009), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6009), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6011), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHdef] = ACTIONS(6009), - [anon_sym_BSLASHlet] = ACTIONS(6009), - [anon_sym_BSLASHleft] = ACTIONS(6009), - [anon_sym_BSLASHbig] = ACTIONS(6009), - [anon_sym_BSLASHBig] = ACTIONS(6009), - [anon_sym_BSLASHbigg] = ACTIONS(6009), - [anon_sym_BSLASHBigg] = ACTIONS(6009), - [anon_sym_BSLASHbigl] = ACTIONS(6009), - [anon_sym_BSLASHBigl] = ACTIONS(6009), - [anon_sym_BSLASHbiggl] = ACTIONS(6009), - [anon_sym_BSLASHBiggl] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6009), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6009), - [anon_sym_BSLASHgls] = ACTIONS(6009), - [anon_sym_BSLASHGls] = ACTIONS(6009), - [anon_sym_BSLASHGLS] = ACTIONS(6009), - [anon_sym_BSLASHglspl] = ACTIONS(6009), - [anon_sym_BSLASHGlspl] = ACTIONS(6009), - [anon_sym_BSLASHGLSpl] = ACTIONS(6009), - [anon_sym_BSLASHglsdisp] = ACTIONS(6009), - [anon_sym_BSLASHglslink] = ACTIONS(6009), - [anon_sym_BSLASHglstext] = ACTIONS(6009), - [anon_sym_BSLASHGlstext] = ACTIONS(6009), - [anon_sym_BSLASHGLStext] = ACTIONS(6009), - [anon_sym_BSLASHglsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6009), - [anon_sym_BSLASHglsplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSplural] = ACTIONS(6009), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHglsname] = ACTIONS(6009), - [anon_sym_BSLASHGlsname] = ACTIONS(6009), - [anon_sym_BSLASHGLSname] = ACTIONS(6009), - [anon_sym_BSLASHglssymbol] = ACTIONS(6009), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6009), - [anon_sym_BSLASHglsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6009), - [anon_sym_BSLASHglsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6009), - [anon_sym_BSLASHglsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6009), - [anon_sym_BSLASHglsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6009), - [anon_sym_BSLASHglsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6009), - [anon_sym_BSLASHnewacronym] = ACTIONS(6009), - [anon_sym_BSLASHacrshort] = ACTIONS(6009), - [anon_sym_BSLASHAcrshort] = ACTIONS(6009), - [anon_sym_BSLASHACRshort] = ACTIONS(6009), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6009), - [anon_sym_BSLASHacrlong] = ACTIONS(6009), - [anon_sym_BSLASHAcrlong] = ACTIONS(6009), - [anon_sym_BSLASHACRlong] = ACTIONS(6009), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6009), - [anon_sym_BSLASHacrfull] = ACTIONS(6009), - [anon_sym_BSLASHAcrfull] = ACTIONS(6009), - [anon_sym_BSLASHACRfull] = ACTIONS(6009), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6009), - [anon_sym_BSLASHacs] = ACTIONS(6009), - [anon_sym_BSLASHAcs] = ACTIONS(6009), - [anon_sym_BSLASHacsp] = ACTIONS(6009), - [anon_sym_BSLASHAcsp] = ACTIONS(6009), - [anon_sym_BSLASHacl] = ACTIONS(6009), - [anon_sym_BSLASHAcl] = ACTIONS(6009), - [anon_sym_BSLASHaclp] = ACTIONS(6009), - [anon_sym_BSLASHAclp] = ACTIONS(6009), - [anon_sym_BSLASHacf] = ACTIONS(6009), - [anon_sym_BSLASHAcf] = ACTIONS(6009), - [anon_sym_BSLASHacfp] = ACTIONS(6009), - [anon_sym_BSLASHAcfp] = ACTIONS(6009), - [anon_sym_BSLASHac] = ACTIONS(6009), - [anon_sym_BSLASHAc] = ACTIONS(6009), - [anon_sym_BSLASHacp] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6009), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6009), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6009), - [anon_sym_BSLASHcolor] = ACTIONS(6009), - [anon_sym_BSLASHcolorbox] = ACTIONS(6009), - [anon_sym_BSLASHtextcolor] = ACTIONS(6009), - [anon_sym_BSLASHpagecolor] = ACTIONS(6009), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6009), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6009), - [anon_sym_BSLASHtext] = ACTIONS(6009), - [anon_sym_BSLASHintertext] = ACTIONS(6009), - [anon_sym_shortintertext] = ACTIONS(6009), - }, - [961] = { - [ts_builtin_sym_end] = ACTIONS(6159), - [sym_command_name] = ACTIONS(6157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_EQ] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_BSLASHpart] = ACTIONS(6157), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddpart] = ACTIONS(6157), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6159), - [anon_sym_BSLASHchapter] = ACTIONS(6157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddchap] = ACTIONS(6157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsection] = ACTIONS(6157), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddsec] = ACTIONS(6157), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubsection] = ACTIONS(6157), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6157), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHparagraph] = ACTIONS(6157), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6157), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6159), - [anon_sym_BSLASHitem] = ACTIONS(6157), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6159), - [anon_sym_LBRACE] = ACTIONS(6159), - [anon_sym_RBRACE] = ACTIONS(6159), - [sym_word] = ACTIONS(6157), - [sym_placeholder] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6157), - [anon_sym_GT] = ACTIONS(6157), - [anon_sym_BANG] = ACTIONS(6157), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_SQUOTE] = ACTIONS(6157), - [anon_sym__] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6159), - [anon_sym_DOLLAR] = ACTIONS(6157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6159), - [anon_sym_BSLASHbegin] = ACTIONS(6157), - [anon_sym_BSLASHtitle] = ACTIONS(6157), - [anon_sym_BSLASHauthor] = ACTIONS(6157), - [anon_sym_BSLASHusepackage] = ACTIONS(6157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6157), - [anon_sym_BSLASHinclude] = ACTIONS(6157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6157), - [anon_sym_BSLASHinput] = ACTIONS(6157), - [anon_sym_BSLASHsubfile] = ACTIONS(6157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6157), - [anon_sym_BSLASHbibliography] = ACTIONS(6157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6157), - [anon_sym_BSLASHincludesvg] = ACTIONS(6157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6157), - [anon_sym_BSLASHimport] = ACTIONS(6157), - [anon_sym_BSLASHsubimport] = ACTIONS(6157), - [anon_sym_BSLASHinputfrom] = ACTIONS(6157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6157), - [anon_sym_BSLASHincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHcaption] = ACTIONS(6157), - [anon_sym_BSLASHcite] = ACTIONS(6157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCite] = ACTIONS(6157), - [anon_sym_BSLASHnocite] = ACTIONS(6157), - [anon_sym_BSLASHcitet] = ACTIONS(6157), - [anon_sym_BSLASHcitep] = ACTIONS(6157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteauthor] = ACTIONS(6157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitetitle] = ACTIONS(6157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteyear] = ACTIONS(6157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitedate] = ACTIONS(6157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteurl] = ACTIONS(6157), - [anon_sym_BSLASHfullcite] = ACTIONS(6157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6157), - [anon_sym_BSLASHcitealt] = ACTIONS(6157), - [anon_sym_BSLASHcitealp] = ACTIONS(6157), - [anon_sym_BSLASHcitetext] = ACTIONS(6157), - [anon_sym_BSLASHparencite] = ACTIONS(6157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHParencite] = ACTIONS(6157), - [anon_sym_BSLASHfootcite] = ACTIONS(6157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6157), - [anon_sym_BSLASHtextcite] = ACTIONS(6157), - [anon_sym_BSLASHTextcite] = ACTIONS(6157), - [anon_sym_BSLASHsmartcite] = ACTIONS(6157), - [anon_sym_BSLASHSmartcite] = ACTIONS(6157), - [anon_sym_BSLASHsupercite] = ACTIONS(6157), - [anon_sym_BSLASHautocite] = ACTIONS(6157), - [anon_sym_BSLASHAutocite] = ACTIONS(6157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHvolcite] = ACTIONS(6157), - [anon_sym_BSLASHVolcite] = ACTIONS(6157), - [anon_sym_BSLASHpvolcite] = ACTIONS(6157), - [anon_sym_BSLASHPvolcite] = ACTIONS(6157), - [anon_sym_BSLASHfvolcite] = ACTIONS(6157), - [anon_sym_BSLASHftvolcite] = ACTIONS(6157), - [anon_sym_BSLASHsvolcite] = ACTIONS(6157), - [anon_sym_BSLASHSvolcite] = ACTIONS(6157), - [anon_sym_BSLASHtvolcite] = ACTIONS(6157), - [anon_sym_BSLASHTvolcite] = ACTIONS(6157), - [anon_sym_BSLASHavolcite] = ACTIONS(6157), - [anon_sym_BSLASHAvolcite] = ACTIONS(6157), - [anon_sym_BSLASHnotecite] = ACTIONS(6157), - [anon_sym_BSLASHNotecite] = ACTIONS(6157), - [anon_sym_BSLASHpnotecite] = ACTIONS(6157), - [anon_sym_BSLASHPnotecite] = ACTIONS(6157), - [anon_sym_BSLASHfnotecite] = ACTIONS(6157), - [anon_sym_BSLASHlabel] = ACTIONS(6157), - [anon_sym_BSLASHref] = ACTIONS(6157), - [anon_sym_BSLASHeqref] = ACTIONS(6157), - [anon_sym_BSLASHvref] = ACTIONS(6157), - [anon_sym_BSLASHVref] = ACTIONS(6157), - [anon_sym_BSLASHautoref] = ACTIONS(6157), - [anon_sym_BSLASHpageref] = ACTIONS(6157), - [anon_sym_BSLASHcref] = ACTIONS(6157), - [anon_sym_BSLASHCref] = ACTIONS(6157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnameCref] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHlabelcref] = ACTIONS(6157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCrefrange] = ACTIONS(6157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnewlabel] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6159), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHdef] = ACTIONS(6157), - [anon_sym_BSLASHlet] = ACTIONS(6157), - [anon_sym_BSLASHleft] = ACTIONS(6157), - [anon_sym_BSLASHbig] = ACTIONS(6157), - [anon_sym_BSLASHBig] = ACTIONS(6157), - [anon_sym_BSLASHbigg] = ACTIONS(6157), - [anon_sym_BSLASHBigg] = ACTIONS(6157), - [anon_sym_BSLASHbigl] = ACTIONS(6157), - [anon_sym_BSLASHBigl] = ACTIONS(6157), - [anon_sym_BSLASHbiggl] = ACTIONS(6157), - [anon_sym_BSLASHBiggl] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6157), - [anon_sym_BSLASHgls] = ACTIONS(6157), - [anon_sym_BSLASHGls] = ACTIONS(6157), - [anon_sym_BSLASHGLS] = ACTIONS(6157), - [anon_sym_BSLASHglspl] = ACTIONS(6157), - [anon_sym_BSLASHGlspl] = ACTIONS(6157), - [anon_sym_BSLASHGLSpl] = ACTIONS(6157), - [anon_sym_BSLASHglsdisp] = ACTIONS(6157), - [anon_sym_BSLASHglslink] = ACTIONS(6157), - [anon_sym_BSLASHglstext] = ACTIONS(6157), - [anon_sym_BSLASHGlstext] = ACTIONS(6157), - [anon_sym_BSLASHGLStext] = ACTIONS(6157), - [anon_sym_BSLASHglsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6157), - [anon_sym_BSLASHglsplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSplural] = ACTIONS(6157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHglsname] = ACTIONS(6157), - [anon_sym_BSLASHGlsname] = ACTIONS(6157), - [anon_sym_BSLASHGLSname] = ACTIONS(6157), - [anon_sym_BSLASHglssymbol] = ACTIONS(6157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6157), - [anon_sym_BSLASHglsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6157), - [anon_sym_BSLASHglsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6157), - [anon_sym_BSLASHglsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6157), - [anon_sym_BSLASHglsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6157), - [anon_sym_BSLASHglsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6157), - [anon_sym_BSLASHnewacronym] = ACTIONS(6157), - [anon_sym_BSLASHacrshort] = ACTIONS(6157), - [anon_sym_BSLASHAcrshort] = ACTIONS(6157), - [anon_sym_BSLASHACRshort] = ACTIONS(6157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6157), - [anon_sym_BSLASHacrlong] = ACTIONS(6157), - [anon_sym_BSLASHAcrlong] = ACTIONS(6157), - [anon_sym_BSLASHACRlong] = ACTIONS(6157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6157), - [anon_sym_BSLASHacrfull] = ACTIONS(6157), - [anon_sym_BSLASHAcrfull] = ACTIONS(6157), - [anon_sym_BSLASHACRfull] = ACTIONS(6157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6157), - [anon_sym_BSLASHacs] = ACTIONS(6157), - [anon_sym_BSLASHAcs] = ACTIONS(6157), - [anon_sym_BSLASHacsp] = ACTIONS(6157), - [anon_sym_BSLASHAcsp] = ACTIONS(6157), - [anon_sym_BSLASHacl] = ACTIONS(6157), - [anon_sym_BSLASHAcl] = ACTIONS(6157), - [anon_sym_BSLASHaclp] = ACTIONS(6157), - [anon_sym_BSLASHAclp] = ACTIONS(6157), - [anon_sym_BSLASHacf] = ACTIONS(6157), - [anon_sym_BSLASHAcf] = ACTIONS(6157), - [anon_sym_BSLASHacfp] = ACTIONS(6157), - [anon_sym_BSLASHAcfp] = ACTIONS(6157), - [anon_sym_BSLASHac] = ACTIONS(6157), - [anon_sym_BSLASHAc] = ACTIONS(6157), - [anon_sym_BSLASHacp] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6157), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6157), - [anon_sym_BSLASHcolor] = ACTIONS(6157), - [anon_sym_BSLASHcolorbox] = ACTIONS(6157), - [anon_sym_BSLASHtextcolor] = ACTIONS(6157), - [anon_sym_BSLASHpagecolor] = ACTIONS(6157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6157), - [anon_sym_BSLASHtext] = ACTIONS(6157), - [anon_sym_BSLASHintertext] = ACTIONS(6157), - [anon_sym_shortintertext] = ACTIONS(6157), - }, - [962] = { - [ts_builtin_sym_end] = ACTIONS(201), - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(199), - [anon_sym_BSLASHpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddpart] = ACTIONS(199), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHchapter] = ACTIONS(199), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddchap] = ACTIONS(199), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHparagraph] = ACTIONS(199), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubparagraph] = ACTIONS(199), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHitem] = ACTIONS(199), - [anon_sym_BSLASHitem_STAR] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [963] = { - [ts_builtin_sym_end] = ACTIONS(197), - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(195), - [anon_sym_BSLASHpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddpart] = ACTIONS(195), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(195), - [anon_sym_BSLASHsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddsec] = ACTIONS(195), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHparagraph] = ACTIONS(195), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubparagraph] = ACTIONS(195), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHitem] = ACTIONS(195), - [anon_sym_BSLASHitem_STAR] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [964] = { - [ts_builtin_sym_end] = ACTIONS(6339), - [sym_command_name] = ACTIONS(6337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6337), - [anon_sym_LBRACK] = ACTIONS(6339), - [anon_sym_RBRACK] = ACTIONS(6339), - [anon_sym_COMMA] = ACTIONS(6339), - [anon_sym_EQ] = ACTIONS(6339), - [anon_sym_LPAREN] = ACTIONS(6339), - [anon_sym_RPAREN] = ACTIONS(6339), - [anon_sym_BSLASHpart] = ACTIONS(6337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddpart] = ACTIONS(6337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6339), - [anon_sym_BSLASHchapter] = ACTIONS(6337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddchap] = ACTIONS(6337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsection] = ACTIONS(6337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddsec] = ACTIONS(6337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubsection] = ACTIONS(6337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHparagraph] = ACTIONS(6337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6339), - [anon_sym_BSLASHitem] = ACTIONS(6337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6339), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(6339), - [sym_word] = ACTIONS(6337), - [sym_placeholder] = ACTIONS(6339), - [anon_sym_PLUS] = ACTIONS(6339), - [anon_sym_DASH] = ACTIONS(6339), - [anon_sym_STAR] = ACTIONS(6339), - [anon_sym_SLASH] = ACTIONS(6339), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_COLON] = ACTIONS(6337), - [anon_sym_SQUOTE] = ACTIONS(6337), - [anon_sym__] = ACTIONS(6339), - [anon_sym_CARET] = ACTIONS(6339), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6339), - [anon_sym_DOLLAR] = ACTIONS(6337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6339), - [anon_sym_BSLASHbegin] = ACTIONS(6337), - [anon_sym_BSLASHtitle] = ACTIONS(6337), - [anon_sym_BSLASHauthor] = ACTIONS(6337), - [anon_sym_BSLASHusepackage] = ACTIONS(6337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6337), - [anon_sym_BSLASHinclude] = ACTIONS(6337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6337), - [anon_sym_BSLASHinput] = ACTIONS(6337), - [anon_sym_BSLASHsubfile] = ACTIONS(6337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6337), - [anon_sym_BSLASHbibliography] = ACTIONS(6337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6337), - [anon_sym_BSLASHincludesvg] = ACTIONS(6337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6337), - [anon_sym_BSLASHimport] = ACTIONS(6337), - [anon_sym_BSLASHsubimport] = ACTIONS(6337), - [anon_sym_BSLASHinputfrom] = ACTIONS(6337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6337), - [anon_sym_BSLASHincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHcaption] = ACTIONS(6337), - [anon_sym_BSLASHcite] = ACTIONS(6337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCite] = ACTIONS(6337), - [anon_sym_BSLASHnocite] = ACTIONS(6337), - [anon_sym_BSLASHcitet] = ACTIONS(6337), - [anon_sym_BSLASHcitep] = ACTIONS(6337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteauthor] = ACTIONS(6337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitetitle] = ACTIONS(6337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteyear] = ACTIONS(6337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitedate] = ACTIONS(6337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteurl] = ACTIONS(6337), - [anon_sym_BSLASHfullcite] = ACTIONS(6337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6337), - [anon_sym_BSLASHcitealt] = ACTIONS(6337), - [anon_sym_BSLASHcitealp] = ACTIONS(6337), - [anon_sym_BSLASHcitetext] = ACTIONS(6337), - [anon_sym_BSLASHparencite] = ACTIONS(6337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHParencite] = ACTIONS(6337), - [anon_sym_BSLASHfootcite] = ACTIONS(6337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6337), - [anon_sym_BSLASHtextcite] = ACTIONS(6337), - [anon_sym_BSLASHTextcite] = ACTIONS(6337), - [anon_sym_BSLASHsmartcite] = ACTIONS(6337), - [anon_sym_BSLASHSmartcite] = ACTIONS(6337), - [anon_sym_BSLASHsupercite] = ACTIONS(6337), - [anon_sym_BSLASHautocite] = ACTIONS(6337), - [anon_sym_BSLASHAutocite] = ACTIONS(6337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHvolcite] = ACTIONS(6337), - [anon_sym_BSLASHVolcite] = ACTIONS(6337), - [anon_sym_BSLASHpvolcite] = ACTIONS(6337), - [anon_sym_BSLASHPvolcite] = ACTIONS(6337), - [anon_sym_BSLASHfvolcite] = ACTIONS(6337), - [anon_sym_BSLASHftvolcite] = ACTIONS(6337), - [anon_sym_BSLASHsvolcite] = ACTIONS(6337), - [anon_sym_BSLASHSvolcite] = ACTIONS(6337), - [anon_sym_BSLASHtvolcite] = ACTIONS(6337), - [anon_sym_BSLASHTvolcite] = ACTIONS(6337), - [anon_sym_BSLASHavolcite] = ACTIONS(6337), - [anon_sym_BSLASHAvolcite] = ACTIONS(6337), - [anon_sym_BSLASHnotecite] = ACTIONS(6337), - [anon_sym_BSLASHNotecite] = ACTIONS(6337), - [anon_sym_BSLASHpnotecite] = ACTIONS(6337), - [anon_sym_BSLASHPnotecite] = ACTIONS(6337), - [anon_sym_BSLASHfnotecite] = ACTIONS(6337), - [anon_sym_BSLASHlabel] = ACTIONS(6337), - [anon_sym_BSLASHref] = ACTIONS(6337), - [anon_sym_BSLASHeqref] = ACTIONS(6337), - [anon_sym_BSLASHvref] = ACTIONS(6337), - [anon_sym_BSLASHVref] = ACTIONS(6337), - [anon_sym_BSLASHautoref] = ACTIONS(6337), - [anon_sym_BSLASHpageref] = ACTIONS(6337), - [anon_sym_BSLASHcref] = ACTIONS(6337), - [anon_sym_BSLASHCref] = ACTIONS(6337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnameCref] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHlabelcref] = ACTIONS(6337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCrefrange] = ACTIONS(6337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnewlabel] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6339), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHdef] = ACTIONS(6337), - [anon_sym_BSLASHlet] = ACTIONS(6337), - [anon_sym_BSLASHleft] = ACTIONS(6337), - [anon_sym_BSLASHbig] = ACTIONS(6337), - [anon_sym_BSLASHBig] = ACTIONS(6337), - [anon_sym_BSLASHbigg] = ACTIONS(6337), - [anon_sym_BSLASHBigg] = ACTIONS(6337), - [anon_sym_BSLASHbigl] = ACTIONS(6337), - [anon_sym_BSLASHBigl] = ACTIONS(6337), - [anon_sym_BSLASHbiggl] = ACTIONS(6337), - [anon_sym_BSLASHBiggl] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6337), - [anon_sym_BSLASHgls] = ACTIONS(6337), - [anon_sym_BSLASHGls] = ACTIONS(6337), - [anon_sym_BSLASHGLS] = ACTIONS(6337), - [anon_sym_BSLASHglspl] = ACTIONS(6337), - [anon_sym_BSLASHGlspl] = ACTIONS(6337), - [anon_sym_BSLASHGLSpl] = ACTIONS(6337), - [anon_sym_BSLASHglsdisp] = ACTIONS(6337), - [anon_sym_BSLASHglslink] = ACTIONS(6337), - [anon_sym_BSLASHglstext] = ACTIONS(6337), - [anon_sym_BSLASHGlstext] = ACTIONS(6337), - [anon_sym_BSLASHGLStext] = ACTIONS(6337), - [anon_sym_BSLASHglsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6337), - [anon_sym_BSLASHglsplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSplural] = ACTIONS(6337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHglsname] = ACTIONS(6337), - [anon_sym_BSLASHGlsname] = ACTIONS(6337), - [anon_sym_BSLASHGLSname] = ACTIONS(6337), - [anon_sym_BSLASHglssymbol] = ACTIONS(6337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6337), - [anon_sym_BSLASHglsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6337), - [anon_sym_BSLASHglsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6337), - [anon_sym_BSLASHglsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6337), - [anon_sym_BSLASHglsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6337), - [anon_sym_BSLASHglsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6337), - [anon_sym_BSLASHnewacronym] = ACTIONS(6337), - [anon_sym_BSLASHacrshort] = ACTIONS(6337), - [anon_sym_BSLASHAcrshort] = ACTIONS(6337), - [anon_sym_BSLASHACRshort] = ACTIONS(6337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6337), - [anon_sym_BSLASHacrlong] = ACTIONS(6337), - [anon_sym_BSLASHAcrlong] = ACTIONS(6337), - [anon_sym_BSLASHACRlong] = ACTIONS(6337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6337), - [anon_sym_BSLASHacrfull] = ACTIONS(6337), - [anon_sym_BSLASHAcrfull] = ACTIONS(6337), - [anon_sym_BSLASHACRfull] = ACTIONS(6337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6337), - [anon_sym_BSLASHacs] = ACTIONS(6337), - [anon_sym_BSLASHAcs] = ACTIONS(6337), - [anon_sym_BSLASHacsp] = ACTIONS(6337), - [anon_sym_BSLASHAcsp] = ACTIONS(6337), - [anon_sym_BSLASHacl] = ACTIONS(6337), - [anon_sym_BSLASHAcl] = ACTIONS(6337), - [anon_sym_BSLASHaclp] = ACTIONS(6337), - [anon_sym_BSLASHAclp] = ACTIONS(6337), - [anon_sym_BSLASHacf] = ACTIONS(6337), - [anon_sym_BSLASHAcf] = ACTIONS(6337), - [anon_sym_BSLASHacfp] = ACTIONS(6337), - [anon_sym_BSLASHAcfp] = ACTIONS(6337), - [anon_sym_BSLASHac] = ACTIONS(6337), - [anon_sym_BSLASHAc] = ACTIONS(6337), - [anon_sym_BSLASHacp] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6337), - [anon_sym_BSLASHcolor] = ACTIONS(6337), - [anon_sym_BSLASHcolorbox] = ACTIONS(6337), - [anon_sym_BSLASHtextcolor] = ACTIONS(6337), - [anon_sym_BSLASHpagecolor] = ACTIONS(6337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6337), - [anon_sym_BSLASHtext] = ACTIONS(6337), - [anon_sym_BSLASHintertext] = ACTIONS(6337), - [anon_sym_shortintertext] = ACTIONS(6337), - }, - [965] = { - [ts_builtin_sym_end] = ACTIONS(6319), - [sym_command_name] = ACTIONS(6317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(6319), - [anon_sym_RBRACK] = ACTIONS(6319), - [anon_sym_COMMA] = ACTIONS(6319), - [anon_sym_EQ] = ACTIONS(6319), - [anon_sym_LPAREN] = ACTIONS(6319), - [anon_sym_RPAREN] = ACTIONS(6319), - [anon_sym_BSLASHpart] = ACTIONS(6317), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddpart] = ACTIONS(6317), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6319), - [anon_sym_BSLASHchapter] = ACTIONS(6317), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddchap] = ACTIONS(6317), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsection] = ACTIONS(6317), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddsec] = ACTIONS(6317), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubsection] = ACTIONS(6317), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6317), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHparagraph] = ACTIONS(6317), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6317), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6319), - [anon_sym_BSLASHitem] = ACTIONS(6317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6319), - [anon_sym_LBRACE] = ACTIONS(6319), - [anon_sym_RBRACE] = ACTIONS(6319), - [sym_word] = ACTIONS(6317), - [sym_placeholder] = ACTIONS(6319), - [anon_sym_PLUS] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(6319), - [anon_sym_SLASH] = ACTIONS(6319), - [anon_sym_LT] = ACTIONS(6317), - [anon_sym_GT] = ACTIONS(6317), - [anon_sym_BANG] = ACTIONS(6317), - [anon_sym_PIPE] = ACTIONS(6317), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_SQUOTE] = ACTIONS(6317), - [anon_sym__] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6319), - [anon_sym_DOLLAR] = ACTIONS(6317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6319), - [anon_sym_BSLASHbegin] = ACTIONS(6317), - [anon_sym_BSLASHtitle] = ACTIONS(6317), - [anon_sym_BSLASHauthor] = ACTIONS(6317), - [anon_sym_BSLASHusepackage] = ACTIONS(6317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6317), - [anon_sym_BSLASHinclude] = ACTIONS(6317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6317), - [anon_sym_BSLASHinput] = ACTIONS(6317), - [anon_sym_BSLASHsubfile] = ACTIONS(6317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6317), - [anon_sym_BSLASHbibliography] = ACTIONS(6317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6317), - [anon_sym_BSLASHincludesvg] = ACTIONS(6317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6317), - [anon_sym_BSLASHimport] = ACTIONS(6317), - [anon_sym_BSLASHsubimport] = ACTIONS(6317), - [anon_sym_BSLASHinputfrom] = ACTIONS(6317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6317), - [anon_sym_BSLASHincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHcaption] = ACTIONS(6317), - [anon_sym_BSLASHcite] = ACTIONS(6317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCite] = ACTIONS(6317), - [anon_sym_BSLASHnocite] = ACTIONS(6317), - [anon_sym_BSLASHcitet] = ACTIONS(6317), - [anon_sym_BSLASHcitep] = ACTIONS(6317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteauthor] = ACTIONS(6317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitetitle] = ACTIONS(6317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteyear] = ACTIONS(6317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitedate] = ACTIONS(6317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteurl] = ACTIONS(6317), - [anon_sym_BSLASHfullcite] = ACTIONS(6317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6317), - [anon_sym_BSLASHcitealt] = ACTIONS(6317), - [anon_sym_BSLASHcitealp] = ACTIONS(6317), - [anon_sym_BSLASHcitetext] = ACTIONS(6317), - [anon_sym_BSLASHparencite] = ACTIONS(6317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHParencite] = ACTIONS(6317), - [anon_sym_BSLASHfootcite] = ACTIONS(6317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6317), - [anon_sym_BSLASHtextcite] = ACTIONS(6317), - [anon_sym_BSLASHTextcite] = ACTIONS(6317), - [anon_sym_BSLASHsmartcite] = ACTIONS(6317), - [anon_sym_BSLASHSmartcite] = ACTIONS(6317), - [anon_sym_BSLASHsupercite] = ACTIONS(6317), - [anon_sym_BSLASHautocite] = ACTIONS(6317), - [anon_sym_BSLASHAutocite] = ACTIONS(6317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHvolcite] = ACTIONS(6317), - [anon_sym_BSLASHVolcite] = ACTIONS(6317), - [anon_sym_BSLASHpvolcite] = ACTIONS(6317), - [anon_sym_BSLASHPvolcite] = ACTIONS(6317), - [anon_sym_BSLASHfvolcite] = ACTIONS(6317), - [anon_sym_BSLASHftvolcite] = ACTIONS(6317), - [anon_sym_BSLASHsvolcite] = ACTIONS(6317), - [anon_sym_BSLASHSvolcite] = ACTIONS(6317), - [anon_sym_BSLASHtvolcite] = ACTIONS(6317), - [anon_sym_BSLASHTvolcite] = ACTIONS(6317), - [anon_sym_BSLASHavolcite] = ACTIONS(6317), - [anon_sym_BSLASHAvolcite] = ACTIONS(6317), - [anon_sym_BSLASHnotecite] = ACTIONS(6317), - [anon_sym_BSLASHNotecite] = ACTIONS(6317), - [anon_sym_BSLASHpnotecite] = ACTIONS(6317), - [anon_sym_BSLASHPnotecite] = ACTIONS(6317), - [anon_sym_BSLASHfnotecite] = ACTIONS(6317), - [anon_sym_BSLASHlabel] = ACTIONS(6317), - [anon_sym_BSLASHref] = ACTIONS(6317), - [anon_sym_BSLASHeqref] = ACTIONS(6317), - [anon_sym_BSLASHvref] = ACTIONS(6317), - [anon_sym_BSLASHVref] = ACTIONS(6317), - [anon_sym_BSLASHautoref] = ACTIONS(6317), - [anon_sym_BSLASHpageref] = ACTIONS(6317), - [anon_sym_BSLASHcref] = ACTIONS(6317), - [anon_sym_BSLASHCref] = ACTIONS(6317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnameCref] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHlabelcref] = ACTIONS(6317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCrefrange] = ACTIONS(6317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnewlabel] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6319), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHdef] = ACTIONS(6317), - [anon_sym_BSLASHlet] = ACTIONS(6317), - [anon_sym_BSLASHleft] = ACTIONS(6317), - [anon_sym_BSLASHbig] = ACTIONS(6317), - [anon_sym_BSLASHBig] = ACTIONS(6317), - [anon_sym_BSLASHbigg] = ACTIONS(6317), - [anon_sym_BSLASHBigg] = ACTIONS(6317), - [anon_sym_BSLASHbigl] = ACTIONS(6317), - [anon_sym_BSLASHBigl] = ACTIONS(6317), - [anon_sym_BSLASHbiggl] = ACTIONS(6317), - [anon_sym_BSLASHBiggl] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6317), - [anon_sym_BSLASHgls] = ACTIONS(6317), - [anon_sym_BSLASHGls] = ACTIONS(6317), - [anon_sym_BSLASHGLS] = ACTIONS(6317), - [anon_sym_BSLASHglspl] = ACTIONS(6317), - [anon_sym_BSLASHGlspl] = ACTIONS(6317), - [anon_sym_BSLASHGLSpl] = ACTIONS(6317), - [anon_sym_BSLASHglsdisp] = ACTIONS(6317), - [anon_sym_BSLASHglslink] = ACTIONS(6317), - [anon_sym_BSLASHglstext] = ACTIONS(6317), - [anon_sym_BSLASHGlstext] = ACTIONS(6317), - [anon_sym_BSLASHGLStext] = ACTIONS(6317), - [anon_sym_BSLASHglsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6317), - [anon_sym_BSLASHglsplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSplural] = ACTIONS(6317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHglsname] = ACTIONS(6317), - [anon_sym_BSLASHGlsname] = ACTIONS(6317), - [anon_sym_BSLASHGLSname] = ACTIONS(6317), - [anon_sym_BSLASHglssymbol] = ACTIONS(6317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6317), - [anon_sym_BSLASHglsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6317), - [anon_sym_BSLASHglsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6317), - [anon_sym_BSLASHglsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6317), - [anon_sym_BSLASHglsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6317), - [anon_sym_BSLASHglsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6317), - [anon_sym_BSLASHnewacronym] = ACTIONS(6317), - [anon_sym_BSLASHacrshort] = ACTIONS(6317), - [anon_sym_BSLASHAcrshort] = ACTIONS(6317), - [anon_sym_BSLASHACRshort] = ACTIONS(6317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6317), - [anon_sym_BSLASHacrlong] = ACTIONS(6317), - [anon_sym_BSLASHAcrlong] = ACTIONS(6317), - [anon_sym_BSLASHACRlong] = ACTIONS(6317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6317), - [anon_sym_BSLASHacrfull] = ACTIONS(6317), - [anon_sym_BSLASHAcrfull] = ACTIONS(6317), - [anon_sym_BSLASHACRfull] = ACTIONS(6317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6317), - [anon_sym_BSLASHacs] = ACTIONS(6317), - [anon_sym_BSLASHAcs] = ACTIONS(6317), - [anon_sym_BSLASHacsp] = ACTIONS(6317), - [anon_sym_BSLASHAcsp] = ACTIONS(6317), - [anon_sym_BSLASHacl] = ACTIONS(6317), - [anon_sym_BSLASHAcl] = ACTIONS(6317), - [anon_sym_BSLASHaclp] = ACTIONS(6317), - [anon_sym_BSLASHAclp] = ACTIONS(6317), - [anon_sym_BSLASHacf] = ACTIONS(6317), - [anon_sym_BSLASHAcf] = ACTIONS(6317), - [anon_sym_BSLASHacfp] = ACTIONS(6317), - [anon_sym_BSLASHAcfp] = ACTIONS(6317), - [anon_sym_BSLASHac] = ACTIONS(6317), - [anon_sym_BSLASHAc] = ACTIONS(6317), - [anon_sym_BSLASHacp] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6317), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6317), - [anon_sym_BSLASHcolor] = ACTIONS(6317), - [anon_sym_BSLASHcolorbox] = ACTIONS(6317), - [anon_sym_BSLASHtextcolor] = ACTIONS(6317), - [anon_sym_BSLASHpagecolor] = ACTIONS(6317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6317), - [anon_sym_BSLASHtext] = ACTIONS(6317), - [anon_sym_BSLASHintertext] = ACTIONS(6317), - [anon_sym_shortintertext] = ACTIONS(6317), - }, - [966] = { - [ts_builtin_sym_end] = ACTIONS(6343), - [sym_command_name] = ACTIONS(6341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(6343), - [anon_sym_RBRACK] = ACTIONS(6343), - [anon_sym_COMMA] = ACTIONS(6343), - [anon_sym_EQ] = ACTIONS(6343), - [anon_sym_LPAREN] = ACTIONS(6343), - [anon_sym_RPAREN] = ACTIONS(6343), - [anon_sym_BSLASHpart] = ACTIONS(6341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddpart] = ACTIONS(6341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6343), - [anon_sym_BSLASHchapter] = ACTIONS(6341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddchap] = ACTIONS(6341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsection] = ACTIONS(6341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddsec] = ACTIONS(6341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubsection] = ACTIONS(6341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHparagraph] = ACTIONS(6341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6343), - [anon_sym_BSLASHitem] = ACTIONS(6341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6343), - [anon_sym_LBRACE] = ACTIONS(6343), - [anon_sym_RBRACE] = ACTIONS(6343), - [sym_word] = ACTIONS(6341), - [sym_placeholder] = ACTIONS(6343), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_LT] = ACTIONS(6341), - [anon_sym_GT] = ACTIONS(6341), - [anon_sym_BANG] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_SQUOTE] = ACTIONS(6341), - [anon_sym__] = ACTIONS(6343), - [anon_sym_CARET] = ACTIONS(6343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6343), - [anon_sym_DOLLAR] = ACTIONS(6341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6343), - [anon_sym_BSLASHbegin] = ACTIONS(6341), - [anon_sym_BSLASHtitle] = ACTIONS(6341), - [anon_sym_BSLASHauthor] = ACTIONS(6341), - [anon_sym_BSLASHusepackage] = ACTIONS(6341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6341), - [anon_sym_BSLASHinclude] = ACTIONS(6341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6341), - [anon_sym_BSLASHinput] = ACTIONS(6341), - [anon_sym_BSLASHsubfile] = ACTIONS(6341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6341), - [anon_sym_BSLASHbibliography] = ACTIONS(6341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6341), - [anon_sym_BSLASHincludesvg] = ACTIONS(6341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6341), - [anon_sym_BSLASHimport] = ACTIONS(6341), - [anon_sym_BSLASHsubimport] = ACTIONS(6341), - [anon_sym_BSLASHinputfrom] = ACTIONS(6341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6341), - [anon_sym_BSLASHincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHcaption] = ACTIONS(6341), - [anon_sym_BSLASHcite] = ACTIONS(6341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCite] = ACTIONS(6341), - [anon_sym_BSLASHnocite] = ACTIONS(6341), - [anon_sym_BSLASHcitet] = ACTIONS(6341), - [anon_sym_BSLASHcitep] = ACTIONS(6341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteauthor] = ACTIONS(6341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitetitle] = ACTIONS(6341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteyear] = ACTIONS(6341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitedate] = ACTIONS(6341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteurl] = ACTIONS(6341), - [anon_sym_BSLASHfullcite] = ACTIONS(6341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6341), - [anon_sym_BSLASHcitealt] = ACTIONS(6341), - [anon_sym_BSLASHcitealp] = ACTIONS(6341), - [anon_sym_BSLASHcitetext] = ACTIONS(6341), - [anon_sym_BSLASHparencite] = ACTIONS(6341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHParencite] = ACTIONS(6341), - [anon_sym_BSLASHfootcite] = ACTIONS(6341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6341), - [anon_sym_BSLASHtextcite] = ACTIONS(6341), - [anon_sym_BSLASHTextcite] = ACTIONS(6341), - [anon_sym_BSLASHsmartcite] = ACTIONS(6341), - [anon_sym_BSLASHSmartcite] = ACTIONS(6341), - [anon_sym_BSLASHsupercite] = ACTIONS(6341), - [anon_sym_BSLASHautocite] = ACTIONS(6341), - [anon_sym_BSLASHAutocite] = ACTIONS(6341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHvolcite] = ACTIONS(6341), - [anon_sym_BSLASHVolcite] = ACTIONS(6341), - [anon_sym_BSLASHpvolcite] = ACTIONS(6341), - [anon_sym_BSLASHPvolcite] = ACTIONS(6341), - [anon_sym_BSLASHfvolcite] = ACTIONS(6341), - [anon_sym_BSLASHftvolcite] = ACTIONS(6341), - [anon_sym_BSLASHsvolcite] = ACTIONS(6341), - [anon_sym_BSLASHSvolcite] = ACTIONS(6341), - [anon_sym_BSLASHtvolcite] = ACTIONS(6341), - [anon_sym_BSLASHTvolcite] = ACTIONS(6341), - [anon_sym_BSLASHavolcite] = ACTIONS(6341), - [anon_sym_BSLASHAvolcite] = ACTIONS(6341), - [anon_sym_BSLASHnotecite] = ACTIONS(6341), - [anon_sym_BSLASHNotecite] = ACTIONS(6341), - [anon_sym_BSLASHpnotecite] = ACTIONS(6341), - [anon_sym_BSLASHPnotecite] = ACTIONS(6341), - [anon_sym_BSLASHfnotecite] = ACTIONS(6341), - [anon_sym_BSLASHlabel] = ACTIONS(6341), - [anon_sym_BSLASHref] = ACTIONS(6341), - [anon_sym_BSLASHeqref] = ACTIONS(6341), - [anon_sym_BSLASHvref] = ACTIONS(6341), - [anon_sym_BSLASHVref] = ACTIONS(6341), - [anon_sym_BSLASHautoref] = ACTIONS(6341), - [anon_sym_BSLASHpageref] = ACTIONS(6341), - [anon_sym_BSLASHcref] = ACTIONS(6341), - [anon_sym_BSLASHCref] = ACTIONS(6341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnameCref] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHlabelcref] = ACTIONS(6341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCrefrange] = ACTIONS(6341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnewlabel] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6343), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHdef] = ACTIONS(6341), - [anon_sym_BSLASHlet] = ACTIONS(6341), - [anon_sym_BSLASHleft] = ACTIONS(6341), - [anon_sym_BSLASHbig] = ACTIONS(6341), - [anon_sym_BSLASHBig] = ACTIONS(6341), - [anon_sym_BSLASHbigg] = ACTIONS(6341), - [anon_sym_BSLASHBigg] = ACTIONS(6341), - [anon_sym_BSLASHbigl] = ACTIONS(6341), - [anon_sym_BSLASHBigl] = ACTIONS(6341), - [anon_sym_BSLASHbiggl] = ACTIONS(6341), - [anon_sym_BSLASHBiggl] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6341), - [anon_sym_BSLASHgls] = ACTIONS(6341), - [anon_sym_BSLASHGls] = ACTIONS(6341), - [anon_sym_BSLASHGLS] = ACTIONS(6341), - [anon_sym_BSLASHglspl] = ACTIONS(6341), - [anon_sym_BSLASHGlspl] = ACTIONS(6341), - [anon_sym_BSLASHGLSpl] = ACTIONS(6341), - [anon_sym_BSLASHglsdisp] = ACTIONS(6341), - [anon_sym_BSLASHglslink] = ACTIONS(6341), - [anon_sym_BSLASHglstext] = ACTIONS(6341), - [anon_sym_BSLASHGlstext] = ACTIONS(6341), - [anon_sym_BSLASHGLStext] = ACTIONS(6341), - [anon_sym_BSLASHglsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6341), - [anon_sym_BSLASHglsplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSplural] = ACTIONS(6341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHglsname] = ACTIONS(6341), - [anon_sym_BSLASHGlsname] = ACTIONS(6341), - [anon_sym_BSLASHGLSname] = ACTIONS(6341), - [anon_sym_BSLASHglssymbol] = ACTIONS(6341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6341), - [anon_sym_BSLASHglsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6341), - [anon_sym_BSLASHglsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6341), - [anon_sym_BSLASHglsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6341), - [anon_sym_BSLASHglsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6341), - [anon_sym_BSLASHglsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6341), - [anon_sym_BSLASHnewacronym] = ACTIONS(6341), - [anon_sym_BSLASHacrshort] = ACTIONS(6341), - [anon_sym_BSLASHAcrshort] = ACTIONS(6341), - [anon_sym_BSLASHACRshort] = ACTIONS(6341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6341), - [anon_sym_BSLASHacrlong] = ACTIONS(6341), - [anon_sym_BSLASHAcrlong] = ACTIONS(6341), - [anon_sym_BSLASHACRlong] = ACTIONS(6341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6341), - [anon_sym_BSLASHacrfull] = ACTIONS(6341), - [anon_sym_BSLASHAcrfull] = ACTIONS(6341), - [anon_sym_BSLASHACRfull] = ACTIONS(6341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6341), - [anon_sym_BSLASHacs] = ACTIONS(6341), - [anon_sym_BSLASHAcs] = ACTIONS(6341), - [anon_sym_BSLASHacsp] = ACTIONS(6341), - [anon_sym_BSLASHAcsp] = ACTIONS(6341), - [anon_sym_BSLASHacl] = ACTIONS(6341), - [anon_sym_BSLASHAcl] = ACTIONS(6341), - [anon_sym_BSLASHaclp] = ACTIONS(6341), - [anon_sym_BSLASHAclp] = ACTIONS(6341), - [anon_sym_BSLASHacf] = ACTIONS(6341), - [anon_sym_BSLASHAcf] = ACTIONS(6341), - [anon_sym_BSLASHacfp] = ACTIONS(6341), - [anon_sym_BSLASHAcfp] = ACTIONS(6341), - [anon_sym_BSLASHac] = ACTIONS(6341), - [anon_sym_BSLASHAc] = ACTIONS(6341), - [anon_sym_BSLASHacp] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6341), - [anon_sym_BSLASHcolor] = ACTIONS(6341), - [anon_sym_BSLASHcolorbox] = ACTIONS(6341), - [anon_sym_BSLASHtextcolor] = ACTIONS(6341), - [anon_sym_BSLASHpagecolor] = ACTIONS(6341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6341), - [anon_sym_BSLASHtext] = ACTIONS(6341), - [anon_sym_BSLASHintertext] = ACTIONS(6341), - [anon_sym_shortintertext] = ACTIONS(6341), - }, - [967] = { - [ts_builtin_sym_end] = ACTIONS(6171), - [sym_command_name] = ACTIONS(6169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6169), - [anon_sym_LBRACK] = ACTIONS(6171), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_EQ] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_BSLASHpart] = ACTIONS(6169), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddpart] = ACTIONS(6169), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6171), - [anon_sym_BSLASHchapter] = ACTIONS(6169), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddchap] = ACTIONS(6169), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsection] = ACTIONS(6169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddsec] = ACTIONS(6169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubsection] = ACTIONS(6169), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHparagraph] = ACTIONS(6169), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6169), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6171), - [anon_sym_BSLASHitem] = ACTIONS(6169), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6171), - [anon_sym_LBRACE] = ACTIONS(6171), - [anon_sym_RBRACE] = ACTIONS(6171), - [sym_word] = ACTIONS(6169), - [sym_placeholder] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6171), - [anon_sym_DASH] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_COLON] = ACTIONS(6169), - [anon_sym_SQUOTE] = ACTIONS(6169), - [anon_sym__] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6171), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6171), - [anon_sym_DOLLAR] = ACTIONS(6169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6171), - [anon_sym_BSLASHbegin] = ACTIONS(6169), - [anon_sym_BSLASHtitle] = ACTIONS(6169), - [anon_sym_BSLASHauthor] = ACTIONS(6169), - [anon_sym_BSLASHusepackage] = ACTIONS(6169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6169), - [anon_sym_BSLASHinclude] = ACTIONS(6169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6169), - [anon_sym_BSLASHinput] = ACTIONS(6169), - [anon_sym_BSLASHsubfile] = ACTIONS(6169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6169), - [anon_sym_BSLASHbibliography] = ACTIONS(6169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6169), - [anon_sym_BSLASHincludesvg] = ACTIONS(6169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6169), - [anon_sym_BSLASHimport] = ACTIONS(6169), - [anon_sym_BSLASHsubimport] = ACTIONS(6169), - [anon_sym_BSLASHinputfrom] = ACTIONS(6169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6169), - [anon_sym_BSLASHincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHcaption] = ACTIONS(6169), - [anon_sym_BSLASHcite] = ACTIONS(6169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCite] = ACTIONS(6169), - [anon_sym_BSLASHnocite] = ACTIONS(6169), - [anon_sym_BSLASHcitet] = ACTIONS(6169), - [anon_sym_BSLASHcitep] = ACTIONS(6169), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteauthor] = ACTIONS(6169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitetitle] = ACTIONS(6169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteyear] = ACTIONS(6169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitedate] = ACTIONS(6169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteurl] = ACTIONS(6169), - [anon_sym_BSLASHfullcite] = ACTIONS(6169), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6169), - [anon_sym_BSLASHcitealt] = ACTIONS(6169), - [anon_sym_BSLASHcitealp] = ACTIONS(6169), - [anon_sym_BSLASHcitetext] = ACTIONS(6169), - [anon_sym_BSLASHparencite] = ACTIONS(6169), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHParencite] = ACTIONS(6169), - [anon_sym_BSLASHfootcite] = ACTIONS(6169), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6169), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6169), - [anon_sym_BSLASHtextcite] = ACTIONS(6169), - [anon_sym_BSLASHTextcite] = ACTIONS(6169), - [anon_sym_BSLASHsmartcite] = ACTIONS(6169), - [anon_sym_BSLASHSmartcite] = ACTIONS(6169), - [anon_sym_BSLASHsupercite] = ACTIONS(6169), - [anon_sym_BSLASHautocite] = ACTIONS(6169), - [anon_sym_BSLASHAutocite] = ACTIONS(6169), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHvolcite] = ACTIONS(6169), - [anon_sym_BSLASHVolcite] = ACTIONS(6169), - [anon_sym_BSLASHpvolcite] = ACTIONS(6169), - [anon_sym_BSLASHPvolcite] = ACTIONS(6169), - [anon_sym_BSLASHfvolcite] = ACTIONS(6169), - [anon_sym_BSLASHftvolcite] = ACTIONS(6169), - [anon_sym_BSLASHsvolcite] = ACTIONS(6169), - [anon_sym_BSLASHSvolcite] = ACTIONS(6169), - [anon_sym_BSLASHtvolcite] = ACTIONS(6169), - [anon_sym_BSLASHTvolcite] = ACTIONS(6169), - [anon_sym_BSLASHavolcite] = ACTIONS(6169), - [anon_sym_BSLASHAvolcite] = ACTIONS(6169), - [anon_sym_BSLASHnotecite] = ACTIONS(6169), - [anon_sym_BSLASHNotecite] = ACTIONS(6169), - [anon_sym_BSLASHpnotecite] = ACTIONS(6169), - [anon_sym_BSLASHPnotecite] = ACTIONS(6169), - [anon_sym_BSLASHfnotecite] = ACTIONS(6169), - [anon_sym_BSLASHlabel] = ACTIONS(6169), - [anon_sym_BSLASHref] = ACTIONS(6169), - [anon_sym_BSLASHeqref] = ACTIONS(6169), - [anon_sym_BSLASHvref] = ACTIONS(6169), - [anon_sym_BSLASHVref] = ACTIONS(6169), - [anon_sym_BSLASHautoref] = ACTIONS(6169), - [anon_sym_BSLASHpageref] = ACTIONS(6169), - [anon_sym_BSLASHcref] = ACTIONS(6169), - [anon_sym_BSLASHCref] = ACTIONS(6169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnameCref] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHlabelcref] = ACTIONS(6169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCrefrange] = ACTIONS(6169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnewlabel] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6171), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHdef] = ACTIONS(6169), - [anon_sym_BSLASHlet] = ACTIONS(6169), - [anon_sym_BSLASHleft] = ACTIONS(6169), - [anon_sym_BSLASHbig] = ACTIONS(6169), - [anon_sym_BSLASHBig] = ACTIONS(6169), - [anon_sym_BSLASHbigg] = ACTIONS(6169), - [anon_sym_BSLASHBigg] = ACTIONS(6169), - [anon_sym_BSLASHbigl] = ACTIONS(6169), - [anon_sym_BSLASHBigl] = ACTIONS(6169), - [anon_sym_BSLASHbiggl] = ACTIONS(6169), - [anon_sym_BSLASHBiggl] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6169), - [anon_sym_BSLASHgls] = ACTIONS(6169), - [anon_sym_BSLASHGls] = ACTIONS(6169), - [anon_sym_BSLASHGLS] = ACTIONS(6169), - [anon_sym_BSLASHglspl] = ACTIONS(6169), - [anon_sym_BSLASHGlspl] = ACTIONS(6169), - [anon_sym_BSLASHGLSpl] = ACTIONS(6169), - [anon_sym_BSLASHglsdisp] = ACTIONS(6169), - [anon_sym_BSLASHglslink] = ACTIONS(6169), - [anon_sym_BSLASHglstext] = ACTIONS(6169), - [anon_sym_BSLASHGlstext] = ACTIONS(6169), - [anon_sym_BSLASHGLStext] = ACTIONS(6169), - [anon_sym_BSLASHglsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6169), - [anon_sym_BSLASHglsplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSplural] = ACTIONS(6169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHglsname] = ACTIONS(6169), - [anon_sym_BSLASHGlsname] = ACTIONS(6169), - [anon_sym_BSLASHGLSname] = ACTIONS(6169), - [anon_sym_BSLASHglssymbol] = ACTIONS(6169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6169), - [anon_sym_BSLASHglsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6169), - [anon_sym_BSLASHglsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6169), - [anon_sym_BSLASHglsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6169), - [anon_sym_BSLASHglsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6169), - [anon_sym_BSLASHglsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6169), - [anon_sym_BSLASHnewacronym] = ACTIONS(6169), - [anon_sym_BSLASHacrshort] = ACTIONS(6169), - [anon_sym_BSLASHAcrshort] = ACTIONS(6169), - [anon_sym_BSLASHACRshort] = ACTIONS(6169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6169), - [anon_sym_BSLASHacrlong] = ACTIONS(6169), - [anon_sym_BSLASHAcrlong] = ACTIONS(6169), - [anon_sym_BSLASHACRlong] = ACTIONS(6169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6169), - [anon_sym_BSLASHacrfull] = ACTIONS(6169), - [anon_sym_BSLASHAcrfull] = ACTIONS(6169), - [anon_sym_BSLASHACRfull] = ACTIONS(6169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6169), - [anon_sym_BSLASHacs] = ACTIONS(6169), - [anon_sym_BSLASHAcs] = ACTIONS(6169), - [anon_sym_BSLASHacsp] = ACTIONS(6169), - [anon_sym_BSLASHAcsp] = ACTIONS(6169), - [anon_sym_BSLASHacl] = ACTIONS(6169), - [anon_sym_BSLASHAcl] = ACTIONS(6169), - [anon_sym_BSLASHaclp] = ACTIONS(6169), - [anon_sym_BSLASHAclp] = ACTIONS(6169), - [anon_sym_BSLASHacf] = ACTIONS(6169), - [anon_sym_BSLASHAcf] = ACTIONS(6169), - [anon_sym_BSLASHacfp] = ACTIONS(6169), - [anon_sym_BSLASHAcfp] = ACTIONS(6169), - [anon_sym_BSLASHac] = ACTIONS(6169), - [anon_sym_BSLASHAc] = ACTIONS(6169), - [anon_sym_BSLASHacp] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6169), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6169), - [anon_sym_BSLASHcolor] = ACTIONS(6169), - [anon_sym_BSLASHcolorbox] = ACTIONS(6169), - [anon_sym_BSLASHtextcolor] = ACTIONS(6169), - [anon_sym_BSLASHpagecolor] = ACTIONS(6169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6169), - [anon_sym_BSLASHtext] = ACTIONS(6169), - [anon_sym_BSLASHintertext] = ACTIONS(6169), - [anon_sym_shortintertext] = ACTIONS(6169), - }, - [968] = { - [ts_builtin_sym_end] = ACTIONS(6047), - [sym_command_name] = ACTIONS(6045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6045), - [anon_sym_LBRACK] = ACTIONS(6047), - [anon_sym_RBRACK] = ACTIONS(6047), - [anon_sym_COMMA] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(6047), - [anon_sym_LPAREN] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_BSLASHpart] = ACTIONS(6045), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddpart] = ACTIONS(6045), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6047), - [anon_sym_BSLASHchapter] = ACTIONS(6045), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddchap] = ACTIONS(6045), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsection] = ACTIONS(6045), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddsec] = ACTIONS(6045), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubsection] = ACTIONS(6045), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6045), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHparagraph] = ACTIONS(6045), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6045), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6047), - [anon_sym_BSLASHitem] = ACTIONS(6045), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6047), - [anon_sym_LBRACE] = ACTIONS(6047), - [anon_sym_RBRACE] = ACTIONS(6047), - [sym_word] = ACTIONS(6045), - [sym_placeholder] = ACTIONS(6047), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6047), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_BANG] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_SQUOTE] = ACTIONS(6045), - [anon_sym__] = ACTIONS(6047), - [anon_sym_CARET] = ACTIONS(6047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6047), - [anon_sym_BSLASHbegin] = ACTIONS(6045), - [anon_sym_BSLASHtitle] = ACTIONS(6045), - [anon_sym_BSLASHauthor] = ACTIONS(6045), - [anon_sym_BSLASHusepackage] = ACTIONS(6045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6045), - [anon_sym_BSLASHinclude] = ACTIONS(6045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6045), - [anon_sym_BSLASHinput] = ACTIONS(6045), - [anon_sym_BSLASHsubfile] = ACTIONS(6045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6045), - [anon_sym_BSLASHbibliography] = ACTIONS(6045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6045), - [anon_sym_BSLASHincludesvg] = ACTIONS(6045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6045), - [anon_sym_BSLASHimport] = ACTIONS(6045), - [anon_sym_BSLASHsubimport] = ACTIONS(6045), - [anon_sym_BSLASHinputfrom] = ACTIONS(6045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6045), - [anon_sym_BSLASHincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHcaption] = ACTIONS(6045), - [anon_sym_BSLASHcite] = ACTIONS(6045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCite] = ACTIONS(6045), - [anon_sym_BSLASHnocite] = ACTIONS(6045), - [anon_sym_BSLASHcitet] = ACTIONS(6045), - [anon_sym_BSLASHcitep] = ACTIONS(6045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteauthor] = ACTIONS(6045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitetitle] = ACTIONS(6045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteyear] = ACTIONS(6045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitedate] = ACTIONS(6045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteurl] = ACTIONS(6045), - [anon_sym_BSLASHfullcite] = ACTIONS(6045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6045), - [anon_sym_BSLASHcitealt] = ACTIONS(6045), - [anon_sym_BSLASHcitealp] = ACTIONS(6045), - [anon_sym_BSLASHcitetext] = ACTIONS(6045), - [anon_sym_BSLASHparencite] = ACTIONS(6045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHParencite] = ACTIONS(6045), - [anon_sym_BSLASHfootcite] = ACTIONS(6045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6045), - [anon_sym_BSLASHtextcite] = ACTIONS(6045), - [anon_sym_BSLASHTextcite] = ACTIONS(6045), - [anon_sym_BSLASHsmartcite] = ACTIONS(6045), - [anon_sym_BSLASHSmartcite] = ACTIONS(6045), - [anon_sym_BSLASHsupercite] = ACTIONS(6045), - [anon_sym_BSLASHautocite] = ACTIONS(6045), - [anon_sym_BSLASHAutocite] = ACTIONS(6045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHvolcite] = ACTIONS(6045), - [anon_sym_BSLASHVolcite] = ACTIONS(6045), - [anon_sym_BSLASHpvolcite] = ACTIONS(6045), - [anon_sym_BSLASHPvolcite] = ACTIONS(6045), - [anon_sym_BSLASHfvolcite] = ACTIONS(6045), - [anon_sym_BSLASHftvolcite] = ACTIONS(6045), - [anon_sym_BSLASHsvolcite] = ACTIONS(6045), - [anon_sym_BSLASHSvolcite] = ACTIONS(6045), - [anon_sym_BSLASHtvolcite] = ACTIONS(6045), - [anon_sym_BSLASHTvolcite] = ACTIONS(6045), - [anon_sym_BSLASHavolcite] = ACTIONS(6045), - [anon_sym_BSLASHAvolcite] = ACTIONS(6045), - [anon_sym_BSLASHnotecite] = ACTIONS(6045), - [anon_sym_BSLASHNotecite] = ACTIONS(6045), - [anon_sym_BSLASHpnotecite] = ACTIONS(6045), - [anon_sym_BSLASHPnotecite] = ACTIONS(6045), - [anon_sym_BSLASHfnotecite] = ACTIONS(6045), - [anon_sym_BSLASHlabel] = ACTIONS(6045), - [anon_sym_BSLASHref] = ACTIONS(6045), - [anon_sym_BSLASHeqref] = ACTIONS(6045), - [anon_sym_BSLASHvref] = ACTIONS(6045), - [anon_sym_BSLASHVref] = ACTIONS(6045), - [anon_sym_BSLASHautoref] = ACTIONS(6045), - [anon_sym_BSLASHpageref] = ACTIONS(6045), - [anon_sym_BSLASHcref] = ACTIONS(6045), - [anon_sym_BSLASHCref] = ACTIONS(6045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnameCref] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHlabelcref] = ACTIONS(6045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCrefrange] = ACTIONS(6045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnewlabel] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6047), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHdef] = ACTIONS(6045), - [anon_sym_BSLASHlet] = ACTIONS(6045), - [anon_sym_BSLASHleft] = ACTIONS(6045), - [anon_sym_BSLASHbig] = ACTIONS(6045), - [anon_sym_BSLASHBig] = ACTIONS(6045), - [anon_sym_BSLASHbigg] = ACTIONS(6045), - [anon_sym_BSLASHBigg] = ACTIONS(6045), - [anon_sym_BSLASHbigl] = ACTIONS(6045), - [anon_sym_BSLASHBigl] = ACTIONS(6045), - [anon_sym_BSLASHbiggl] = ACTIONS(6045), - [anon_sym_BSLASHBiggl] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6045), - [anon_sym_BSLASHgls] = ACTIONS(6045), - [anon_sym_BSLASHGls] = ACTIONS(6045), - [anon_sym_BSLASHGLS] = ACTIONS(6045), - [anon_sym_BSLASHglspl] = ACTIONS(6045), - [anon_sym_BSLASHGlspl] = ACTIONS(6045), - [anon_sym_BSLASHGLSpl] = ACTIONS(6045), - [anon_sym_BSLASHglsdisp] = ACTIONS(6045), - [anon_sym_BSLASHglslink] = ACTIONS(6045), - [anon_sym_BSLASHglstext] = ACTIONS(6045), - [anon_sym_BSLASHGlstext] = ACTIONS(6045), - [anon_sym_BSLASHGLStext] = ACTIONS(6045), - [anon_sym_BSLASHglsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6045), - [anon_sym_BSLASHglsplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSplural] = ACTIONS(6045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHglsname] = ACTIONS(6045), - [anon_sym_BSLASHGlsname] = ACTIONS(6045), - [anon_sym_BSLASHGLSname] = ACTIONS(6045), - [anon_sym_BSLASHglssymbol] = ACTIONS(6045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6045), - [anon_sym_BSLASHglsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6045), - [anon_sym_BSLASHglsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6045), - [anon_sym_BSLASHglsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6045), - [anon_sym_BSLASHglsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6045), - [anon_sym_BSLASHglsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6045), - [anon_sym_BSLASHnewacronym] = ACTIONS(6045), - [anon_sym_BSLASHacrshort] = ACTIONS(6045), - [anon_sym_BSLASHAcrshort] = ACTIONS(6045), - [anon_sym_BSLASHACRshort] = ACTIONS(6045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6045), - [anon_sym_BSLASHacrlong] = ACTIONS(6045), - [anon_sym_BSLASHAcrlong] = ACTIONS(6045), - [anon_sym_BSLASHACRlong] = ACTIONS(6045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6045), - [anon_sym_BSLASHacrfull] = ACTIONS(6045), - [anon_sym_BSLASHAcrfull] = ACTIONS(6045), - [anon_sym_BSLASHACRfull] = ACTIONS(6045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6045), - [anon_sym_BSLASHacs] = ACTIONS(6045), - [anon_sym_BSLASHAcs] = ACTIONS(6045), - [anon_sym_BSLASHacsp] = ACTIONS(6045), - [anon_sym_BSLASHAcsp] = ACTIONS(6045), - [anon_sym_BSLASHacl] = ACTIONS(6045), - [anon_sym_BSLASHAcl] = ACTIONS(6045), - [anon_sym_BSLASHaclp] = ACTIONS(6045), - [anon_sym_BSLASHAclp] = ACTIONS(6045), - [anon_sym_BSLASHacf] = ACTIONS(6045), - [anon_sym_BSLASHAcf] = ACTIONS(6045), - [anon_sym_BSLASHacfp] = ACTIONS(6045), - [anon_sym_BSLASHAcfp] = ACTIONS(6045), - [anon_sym_BSLASHac] = ACTIONS(6045), - [anon_sym_BSLASHAc] = ACTIONS(6045), - [anon_sym_BSLASHacp] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6045), - [anon_sym_BSLASHcolor] = ACTIONS(6045), - [anon_sym_BSLASHcolorbox] = ACTIONS(6045), - [anon_sym_BSLASHtextcolor] = ACTIONS(6045), - [anon_sym_BSLASHpagecolor] = ACTIONS(6045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6045), - [anon_sym_BSLASHtext] = ACTIONS(6045), - [anon_sym_BSLASHintertext] = ACTIONS(6045), - [anon_sym_shortintertext] = ACTIONS(6045), - }, - [969] = { - [ts_builtin_sym_end] = ACTIONS(6355), - [sym_command_name] = ACTIONS(6353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6353), - [anon_sym_LBRACK] = ACTIONS(6355), - [anon_sym_RBRACK] = ACTIONS(6355), - [anon_sym_COMMA] = ACTIONS(6355), - [anon_sym_EQ] = ACTIONS(6355), - [anon_sym_LPAREN] = ACTIONS(6355), - [anon_sym_RPAREN] = ACTIONS(6355), - [anon_sym_BSLASHpart] = ACTIONS(6353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddpart] = ACTIONS(6353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6355), - [anon_sym_BSLASHchapter] = ACTIONS(6353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddchap] = ACTIONS(6353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsection] = ACTIONS(6353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddsec] = ACTIONS(6353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubsection] = ACTIONS(6353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHparagraph] = ACTIONS(6353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6355), - [anon_sym_BSLASHitem] = ACTIONS(6353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6355), - [anon_sym_LBRACE] = ACTIONS(6355), - [anon_sym_RBRACE] = ACTIONS(6355), - [sym_word] = ACTIONS(6353), - [sym_placeholder] = ACTIONS(6355), - [anon_sym_PLUS] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [anon_sym_STAR] = ACTIONS(6355), - [anon_sym_SLASH] = ACTIONS(6355), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_COLON] = ACTIONS(6353), - [anon_sym_SQUOTE] = ACTIONS(6353), - [anon_sym__] = ACTIONS(6355), - [anon_sym_CARET] = ACTIONS(6355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6355), - [anon_sym_DOLLAR] = ACTIONS(6353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6355), - [anon_sym_BSLASHbegin] = ACTIONS(6353), - [anon_sym_BSLASHtitle] = ACTIONS(6353), - [anon_sym_BSLASHauthor] = ACTIONS(6353), - [anon_sym_BSLASHusepackage] = ACTIONS(6353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6353), - [anon_sym_BSLASHinclude] = ACTIONS(6353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6353), - [anon_sym_BSLASHinput] = ACTIONS(6353), - [anon_sym_BSLASHsubfile] = ACTIONS(6353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6353), - [anon_sym_BSLASHbibliography] = ACTIONS(6353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6353), - [anon_sym_BSLASHincludesvg] = ACTIONS(6353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6353), - [anon_sym_BSLASHimport] = ACTIONS(6353), - [anon_sym_BSLASHsubimport] = ACTIONS(6353), - [anon_sym_BSLASHinputfrom] = ACTIONS(6353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6353), - [anon_sym_BSLASHincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHcaption] = ACTIONS(6353), - [anon_sym_BSLASHcite] = ACTIONS(6353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCite] = ACTIONS(6353), - [anon_sym_BSLASHnocite] = ACTIONS(6353), - [anon_sym_BSLASHcitet] = ACTIONS(6353), - [anon_sym_BSLASHcitep] = ACTIONS(6353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteauthor] = ACTIONS(6353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitetitle] = ACTIONS(6353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteyear] = ACTIONS(6353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitedate] = ACTIONS(6353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteurl] = ACTIONS(6353), - [anon_sym_BSLASHfullcite] = ACTIONS(6353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6353), - [anon_sym_BSLASHcitealt] = ACTIONS(6353), - [anon_sym_BSLASHcitealp] = ACTIONS(6353), - [anon_sym_BSLASHcitetext] = ACTIONS(6353), - [anon_sym_BSLASHparencite] = ACTIONS(6353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHParencite] = ACTIONS(6353), - [anon_sym_BSLASHfootcite] = ACTIONS(6353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6353), - [anon_sym_BSLASHtextcite] = ACTIONS(6353), - [anon_sym_BSLASHTextcite] = ACTIONS(6353), - [anon_sym_BSLASHsmartcite] = ACTIONS(6353), - [anon_sym_BSLASHSmartcite] = ACTIONS(6353), - [anon_sym_BSLASHsupercite] = ACTIONS(6353), - [anon_sym_BSLASHautocite] = ACTIONS(6353), - [anon_sym_BSLASHAutocite] = ACTIONS(6353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHvolcite] = ACTIONS(6353), - [anon_sym_BSLASHVolcite] = ACTIONS(6353), - [anon_sym_BSLASHpvolcite] = ACTIONS(6353), - [anon_sym_BSLASHPvolcite] = ACTIONS(6353), - [anon_sym_BSLASHfvolcite] = ACTIONS(6353), - [anon_sym_BSLASHftvolcite] = ACTIONS(6353), - [anon_sym_BSLASHsvolcite] = ACTIONS(6353), - [anon_sym_BSLASHSvolcite] = ACTIONS(6353), - [anon_sym_BSLASHtvolcite] = ACTIONS(6353), - [anon_sym_BSLASHTvolcite] = ACTIONS(6353), - [anon_sym_BSLASHavolcite] = ACTIONS(6353), - [anon_sym_BSLASHAvolcite] = ACTIONS(6353), - [anon_sym_BSLASHnotecite] = ACTIONS(6353), - [anon_sym_BSLASHNotecite] = ACTIONS(6353), - [anon_sym_BSLASHpnotecite] = ACTIONS(6353), - [anon_sym_BSLASHPnotecite] = ACTIONS(6353), - [anon_sym_BSLASHfnotecite] = ACTIONS(6353), - [anon_sym_BSLASHlabel] = ACTIONS(6353), - [anon_sym_BSLASHref] = ACTIONS(6353), - [anon_sym_BSLASHeqref] = ACTIONS(6353), - [anon_sym_BSLASHvref] = ACTIONS(6353), - [anon_sym_BSLASHVref] = ACTIONS(6353), - [anon_sym_BSLASHautoref] = ACTIONS(6353), - [anon_sym_BSLASHpageref] = ACTIONS(6353), - [anon_sym_BSLASHcref] = ACTIONS(6353), - [anon_sym_BSLASHCref] = ACTIONS(6353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnameCref] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHlabelcref] = ACTIONS(6353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCrefrange] = ACTIONS(6353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnewlabel] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6355), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHdef] = ACTIONS(6353), - [anon_sym_BSLASHlet] = ACTIONS(6353), - [anon_sym_BSLASHleft] = ACTIONS(6353), - [anon_sym_BSLASHbig] = ACTIONS(6353), - [anon_sym_BSLASHBig] = ACTIONS(6353), - [anon_sym_BSLASHbigg] = ACTIONS(6353), - [anon_sym_BSLASHBigg] = ACTIONS(6353), - [anon_sym_BSLASHbigl] = ACTIONS(6353), - [anon_sym_BSLASHBigl] = ACTIONS(6353), - [anon_sym_BSLASHbiggl] = ACTIONS(6353), - [anon_sym_BSLASHBiggl] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6353), - [anon_sym_BSLASHgls] = ACTIONS(6353), - [anon_sym_BSLASHGls] = ACTIONS(6353), - [anon_sym_BSLASHGLS] = ACTIONS(6353), - [anon_sym_BSLASHglspl] = ACTIONS(6353), - [anon_sym_BSLASHGlspl] = ACTIONS(6353), - [anon_sym_BSLASHGLSpl] = ACTIONS(6353), - [anon_sym_BSLASHglsdisp] = ACTIONS(6353), - [anon_sym_BSLASHglslink] = ACTIONS(6353), - [anon_sym_BSLASHglstext] = ACTIONS(6353), - [anon_sym_BSLASHGlstext] = ACTIONS(6353), - [anon_sym_BSLASHGLStext] = ACTIONS(6353), - [anon_sym_BSLASHglsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6353), - [anon_sym_BSLASHglsplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSplural] = ACTIONS(6353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHglsname] = ACTIONS(6353), - [anon_sym_BSLASHGlsname] = ACTIONS(6353), - [anon_sym_BSLASHGLSname] = ACTIONS(6353), - [anon_sym_BSLASHglssymbol] = ACTIONS(6353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6353), - [anon_sym_BSLASHglsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6353), - [anon_sym_BSLASHglsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6353), - [anon_sym_BSLASHglsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6353), - [anon_sym_BSLASHglsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6353), - [anon_sym_BSLASHglsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6353), - [anon_sym_BSLASHnewacronym] = ACTIONS(6353), - [anon_sym_BSLASHacrshort] = ACTIONS(6353), - [anon_sym_BSLASHAcrshort] = ACTIONS(6353), - [anon_sym_BSLASHACRshort] = ACTIONS(6353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6353), - [anon_sym_BSLASHacrlong] = ACTIONS(6353), - [anon_sym_BSLASHAcrlong] = ACTIONS(6353), - [anon_sym_BSLASHACRlong] = ACTIONS(6353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6353), - [anon_sym_BSLASHacrfull] = ACTIONS(6353), - [anon_sym_BSLASHAcrfull] = ACTIONS(6353), - [anon_sym_BSLASHACRfull] = ACTIONS(6353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6353), - [anon_sym_BSLASHacs] = ACTIONS(6353), - [anon_sym_BSLASHAcs] = ACTIONS(6353), - [anon_sym_BSLASHacsp] = ACTIONS(6353), - [anon_sym_BSLASHAcsp] = ACTIONS(6353), - [anon_sym_BSLASHacl] = ACTIONS(6353), - [anon_sym_BSLASHAcl] = ACTIONS(6353), - [anon_sym_BSLASHaclp] = ACTIONS(6353), - [anon_sym_BSLASHAclp] = ACTIONS(6353), - [anon_sym_BSLASHacf] = ACTIONS(6353), - [anon_sym_BSLASHAcf] = ACTIONS(6353), - [anon_sym_BSLASHacfp] = ACTIONS(6353), - [anon_sym_BSLASHAcfp] = ACTIONS(6353), - [anon_sym_BSLASHac] = ACTIONS(6353), - [anon_sym_BSLASHAc] = ACTIONS(6353), - [anon_sym_BSLASHacp] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6353), - [anon_sym_BSLASHcolor] = ACTIONS(6353), - [anon_sym_BSLASHcolorbox] = ACTIONS(6353), - [anon_sym_BSLASHtextcolor] = ACTIONS(6353), - [anon_sym_BSLASHpagecolor] = ACTIONS(6353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6353), - [anon_sym_BSLASHtext] = ACTIONS(6353), - [anon_sym_BSLASHintertext] = ACTIONS(6353), - [anon_sym_shortintertext] = ACTIONS(6353), - }, - [970] = { - [sym_command_name] = ACTIONS(5997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5997), - [anon_sym_BSLASHfi] = ACTIONS(6715), - [anon_sym_LBRACK] = ACTIONS(6001), - [anon_sym_RBRACK] = ACTIONS(6001), - [anon_sym_COMMA] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(6001), - [anon_sym_LPAREN] = ACTIONS(6001), - [anon_sym_RPAREN] = ACTIONS(6001), - [anon_sym_BSLASHpart] = ACTIONS(5997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddpart] = ACTIONS(5997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6001), - [anon_sym_BSLASHchapter] = ACTIONS(5997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddchap] = ACTIONS(5997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsection] = ACTIONS(5997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddsec] = ACTIONS(5997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubsection] = ACTIONS(5997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHparagraph] = ACTIONS(5997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5997), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6001), - [anon_sym_BSLASHitem] = ACTIONS(5997), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6001), - [anon_sym_LBRACE] = ACTIONS(6001), - [sym_word] = ACTIONS(5997), - [sym_placeholder] = ACTIONS(6001), - [anon_sym_PLUS] = ACTIONS(6001), - [anon_sym_DASH] = ACTIONS(6001), - [anon_sym_STAR] = ACTIONS(6001), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_COLON] = ACTIONS(5997), - [anon_sym_SQUOTE] = ACTIONS(5997), - [anon_sym__] = ACTIONS(6001), - [anon_sym_CARET] = ACTIONS(6001), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), - [anon_sym_BSLASHbegin] = ACTIONS(5997), - [anon_sym_BSLASHend] = ACTIONS(5997), - [anon_sym_BSLASHtitle] = ACTIONS(5997), - [anon_sym_BSLASHauthor] = ACTIONS(5997), - [anon_sym_BSLASHusepackage] = ACTIONS(5997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5997), - [anon_sym_BSLASHinclude] = ACTIONS(5997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5997), - [anon_sym_BSLASHinput] = ACTIONS(5997), - [anon_sym_BSLASHsubfile] = ACTIONS(5997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5997), - [anon_sym_BSLASHbibliography] = ACTIONS(5997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5997), - [anon_sym_BSLASHincludesvg] = ACTIONS(5997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5997), - [anon_sym_BSLASHimport] = ACTIONS(5997), - [anon_sym_BSLASHsubimport] = ACTIONS(5997), - [anon_sym_BSLASHinputfrom] = ACTIONS(5997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5997), - [anon_sym_BSLASHincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHcaption] = ACTIONS(5997), - [anon_sym_BSLASHcite] = ACTIONS(5997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCite] = ACTIONS(5997), - [anon_sym_BSLASHnocite] = ACTIONS(5997), - [anon_sym_BSLASHcitet] = ACTIONS(5997), - [anon_sym_BSLASHcitep] = ACTIONS(5997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteyear] = ACTIONS(5997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitedate] = ACTIONS(5997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteurl] = ACTIONS(5997), - [anon_sym_BSLASHfullcite] = ACTIONS(5997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5997), - [anon_sym_BSLASHcitealt] = ACTIONS(5997), - [anon_sym_BSLASHcitealp] = ACTIONS(5997), - [anon_sym_BSLASHcitetext] = ACTIONS(5997), - [anon_sym_BSLASHparencite] = ACTIONS(5997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHParencite] = ACTIONS(5997), - [anon_sym_BSLASHfootcite] = ACTIONS(5997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5997), - [anon_sym_BSLASHtextcite] = ACTIONS(5997), - [anon_sym_BSLASHTextcite] = ACTIONS(5997), - [anon_sym_BSLASHsmartcite] = ACTIONS(5997), - [anon_sym_BSLASHSmartcite] = ACTIONS(5997), - [anon_sym_BSLASHsupercite] = ACTIONS(5997), - [anon_sym_BSLASHautocite] = ACTIONS(5997), - [anon_sym_BSLASHAutocite] = ACTIONS(5997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHvolcite] = ACTIONS(5997), - [anon_sym_BSLASHVolcite] = ACTIONS(5997), - [anon_sym_BSLASHpvolcite] = ACTIONS(5997), - [anon_sym_BSLASHPvolcite] = ACTIONS(5997), - [anon_sym_BSLASHfvolcite] = ACTIONS(5997), - [anon_sym_BSLASHftvolcite] = ACTIONS(5997), - [anon_sym_BSLASHsvolcite] = ACTIONS(5997), - [anon_sym_BSLASHSvolcite] = ACTIONS(5997), - [anon_sym_BSLASHtvolcite] = ACTIONS(5997), - [anon_sym_BSLASHTvolcite] = ACTIONS(5997), - [anon_sym_BSLASHavolcite] = ACTIONS(5997), - [anon_sym_BSLASHAvolcite] = ACTIONS(5997), - [anon_sym_BSLASHnotecite] = ACTIONS(5997), - [anon_sym_BSLASHNotecite] = ACTIONS(5997), - [anon_sym_BSLASHpnotecite] = ACTIONS(5997), - [anon_sym_BSLASHPnotecite] = ACTIONS(5997), - [anon_sym_BSLASHfnotecite] = ACTIONS(5997), - [anon_sym_BSLASHlabel] = ACTIONS(5997), - [anon_sym_BSLASHref] = ACTIONS(5997), - [anon_sym_BSLASHeqref] = ACTIONS(5997), - [anon_sym_BSLASHvref] = ACTIONS(5997), - [anon_sym_BSLASHVref] = ACTIONS(5997), - [anon_sym_BSLASHautoref] = ACTIONS(5997), - [anon_sym_BSLASHpageref] = ACTIONS(5997), - [anon_sym_BSLASHcref] = ACTIONS(5997), - [anon_sym_BSLASHCref] = ACTIONS(5997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnameCref] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHlabelcref] = ACTIONS(5997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHdef] = ACTIONS(5997), - [anon_sym_BSLASHlet] = ACTIONS(5997), - [anon_sym_BSLASHleft] = ACTIONS(5997), - [anon_sym_BSLASHbig] = ACTIONS(5997), - [anon_sym_BSLASHBig] = ACTIONS(5997), - [anon_sym_BSLASHbigg] = ACTIONS(5997), - [anon_sym_BSLASHBigg] = ACTIONS(5997), - [anon_sym_BSLASHbigl] = ACTIONS(5997), - [anon_sym_BSLASHBigl] = ACTIONS(5997), - [anon_sym_BSLASHbiggl] = ACTIONS(5997), - [anon_sym_BSLASHBiggl] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5997), - [anon_sym_BSLASHgls] = ACTIONS(5997), - [anon_sym_BSLASHGls] = ACTIONS(5997), - [anon_sym_BSLASHGLS] = ACTIONS(5997), - [anon_sym_BSLASHglspl] = ACTIONS(5997), - [anon_sym_BSLASHGlspl] = ACTIONS(5997), - [anon_sym_BSLASHGLSpl] = ACTIONS(5997), - [anon_sym_BSLASHglsdisp] = ACTIONS(5997), - [anon_sym_BSLASHglslink] = ACTIONS(5997), - [anon_sym_BSLASHglstext] = ACTIONS(5997), - [anon_sym_BSLASHGlstext] = ACTIONS(5997), - [anon_sym_BSLASHGLStext] = ACTIONS(5997), - [anon_sym_BSLASHglsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5997), - [anon_sym_BSLASHglsplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSplural] = ACTIONS(5997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHglsname] = ACTIONS(5997), - [anon_sym_BSLASHGlsname] = ACTIONS(5997), - [anon_sym_BSLASHGLSname] = ACTIONS(5997), - [anon_sym_BSLASHglssymbol] = ACTIONS(5997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5997), - [anon_sym_BSLASHglsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5997), - [anon_sym_BSLASHglsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5997), - [anon_sym_BSLASHglsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5997), - [anon_sym_BSLASHglsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5997), - [anon_sym_BSLASHglsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5997), - [anon_sym_BSLASHnewacronym] = ACTIONS(5997), - [anon_sym_BSLASHacrshort] = ACTIONS(5997), - [anon_sym_BSLASHAcrshort] = ACTIONS(5997), - [anon_sym_BSLASHACRshort] = ACTIONS(5997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5997), - [anon_sym_BSLASHacrlong] = ACTIONS(5997), - [anon_sym_BSLASHAcrlong] = ACTIONS(5997), - [anon_sym_BSLASHACRlong] = ACTIONS(5997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5997), - [anon_sym_BSLASHacrfull] = ACTIONS(5997), - [anon_sym_BSLASHAcrfull] = ACTIONS(5997), - [anon_sym_BSLASHACRfull] = ACTIONS(5997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5997), - [anon_sym_BSLASHacs] = ACTIONS(5997), - [anon_sym_BSLASHAcs] = ACTIONS(5997), - [anon_sym_BSLASHacsp] = ACTIONS(5997), - [anon_sym_BSLASHAcsp] = ACTIONS(5997), - [anon_sym_BSLASHacl] = ACTIONS(5997), - [anon_sym_BSLASHAcl] = ACTIONS(5997), - [anon_sym_BSLASHaclp] = ACTIONS(5997), - [anon_sym_BSLASHAclp] = ACTIONS(5997), - [anon_sym_BSLASHacf] = ACTIONS(5997), - [anon_sym_BSLASHAcf] = ACTIONS(5997), - [anon_sym_BSLASHacfp] = ACTIONS(5997), - [anon_sym_BSLASHAcfp] = ACTIONS(5997), - [anon_sym_BSLASHac] = ACTIONS(5997), - [anon_sym_BSLASHAc] = ACTIONS(5997), - [anon_sym_BSLASHacp] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5997), - [anon_sym_BSLASHcolor] = ACTIONS(5997), - [anon_sym_BSLASHcolorbox] = ACTIONS(5997), - [anon_sym_BSLASHtextcolor] = ACTIONS(5997), - [anon_sym_BSLASHpagecolor] = ACTIONS(5997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5997), - [anon_sym_BSLASHtext] = ACTIONS(5997), - [anon_sym_BSLASHintertext] = ACTIONS(5997), - [anon_sym_shortintertext] = ACTIONS(5997), - }, - [971] = { - [ts_builtin_sym_end] = ACTIONS(6359), - [sym_command_name] = ACTIONS(6357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(6359), - [anon_sym_RBRACK] = ACTIONS(6359), - [anon_sym_COMMA] = ACTIONS(6359), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LPAREN] = ACTIONS(6359), - [anon_sym_RPAREN] = ACTIONS(6359), - [anon_sym_BSLASHpart] = ACTIONS(6357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddpart] = ACTIONS(6357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6359), - [anon_sym_BSLASHchapter] = ACTIONS(6357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddchap] = ACTIONS(6357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsection] = ACTIONS(6357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddsec] = ACTIONS(6357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubsection] = ACTIONS(6357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHparagraph] = ACTIONS(6357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6359), - [anon_sym_BSLASHitem] = ACTIONS(6357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6359), - [anon_sym_RBRACE] = ACTIONS(6359), - [sym_word] = ACTIONS(6357), - [sym_placeholder] = ACTIONS(6359), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6359), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_LT] = ACTIONS(6357), - [anon_sym_GT] = ACTIONS(6357), - [anon_sym_BANG] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_SQUOTE] = ACTIONS(6357), - [anon_sym__] = ACTIONS(6359), - [anon_sym_CARET] = ACTIONS(6359), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6359), - [anon_sym_DOLLAR] = ACTIONS(6357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6359), - [anon_sym_BSLASHbegin] = ACTIONS(6357), - [anon_sym_BSLASHtitle] = ACTIONS(6357), - [anon_sym_BSLASHauthor] = ACTIONS(6357), - [anon_sym_BSLASHusepackage] = ACTIONS(6357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6357), - [anon_sym_BSLASHinclude] = ACTIONS(6357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6357), - [anon_sym_BSLASHinput] = ACTIONS(6357), - [anon_sym_BSLASHsubfile] = ACTIONS(6357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6357), - [anon_sym_BSLASHbibliography] = ACTIONS(6357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6357), - [anon_sym_BSLASHincludesvg] = ACTIONS(6357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6357), - [anon_sym_BSLASHimport] = ACTIONS(6357), - [anon_sym_BSLASHsubimport] = ACTIONS(6357), - [anon_sym_BSLASHinputfrom] = ACTIONS(6357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6357), - [anon_sym_BSLASHincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHcaption] = ACTIONS(6357), - [anon_sym_BSLASHcite] = ACTIONS(6357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCite] = ACTIONS(6357), - [anon_sym_BSLASHnocite] = ACTIONS(6357), - [anon_sym_BSLASHcitet] = ACTIONS(6357), - [anon_sym_BSLASHcitep] = ACTIONS(6357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteauthor] = ACTIONS(6357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitetitle] = ACTIONS(6357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteyear] = ACTIONS(6357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitedate] = ACTIONS(6357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteurl] = ACTIONS(6357), - [anon_sym_BSLASHfullcite] = ACTIONS(6357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6357), - [anon_sym_BSLASHcitealt] = ACTIONS(6357), - [anon_sym_BSLASHcitealp] = ACTIONS(6357), - [anon_sym_BSLASHcitetext] = ACTIONS(6357), - [anon_sym_BSLASHparencite] = ACTIONS(6357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHParencite] = ACTIONS(6357), - [anon_sym_BSLASHfootcite] = ACTIONS(6357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6357), - [anon_sym_BSLASHtextcite] = ACTIONS(6357), - [anon_sym_BSLASHTextcite] = ACTIONS(6357), - [anon_sym_BSLASHsmartcite] = ACTIONS(6357), - [anon_sym_BSLASHSmartcite] = ACTIONS(6357), - [anon_sym_BSLASHsupercite] = ACTIONS(6357), - [anon_sym_BSLASHautocite] = ACTIONS(6357), - [anon_sym_BSLASHAutocite] = ACTIONS(6357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHvolcite] = ACTIONS(6357), - [anon_sym_BSLASHVolcite] = ACTIONS(6357), - [anon_sym_BSLASHpvolcite] = ACTIONS(6357), - [anon_sym_BSLASHPvolcite] = ACTIONS(6357), - [anon_sym_BSLASHfvolcite] = ACTIONS(6357), - [anon_sym_BSLASHftvolcite] = ACTIONS(6357), - [anon_sym_BSLASHsvolcite] = ACTIONS(6357), - [anon_sym_BSLASHSvolcite] = ACTIONS(6357), - [anon_sym_BSLASHtvolcite] = ACTIONS(6357), - [anon_sym_BSLASHTvolcite] = ACTIONS(6357), - [anon_sym_BSLASHavolcite] = ACTIONS(6357), - [anon_sym_BSLASHAvolcite] = ACTIONS(6357), - [anon_sym_BSLASHnotecite] = ACTIONS(6357), - [anon_sym_BSLASHNotecite] = ACTIONS(6357), - [anon_sym_BSLASHpnotecite] = ACTIONS(6357), - [anon_sym_BSLASHPnotecite] = ACTIONS(6357), - [anon_sym_BSLASHfnotecite] = ACTIONS(6357), - [anon_sym_BSLASHlabel] = ACTIONS(6357), - [anon_sym_BSLASHref] = ACTIONS(6357), - [anon_sym_BSLASHeqref] = ACTIONS(6357), - [anon_sym_BSLASHvref] = ACTIONS(6357), - [anon_sym_BSLASHVref] = ACTIONS(6357), - [anon_sym_BSLASHautoref] = ACTIONS(6357), - [anon_sym_BSLASHpageref] = ACTIONS(6357), - [anon_sym_BSLASHcref] = ACTIONS(6357), - [anon_sym_BSLASHCref] = ACTIONS(6357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnameCref] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHlabelcref] = ACTIONS(6357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCrefrange] = ACTIONS(6357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnewlabel] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6359), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHdef] = ACTIONS(6357), - [anon_sym_BSLASHlet] = ACTIONS(6357), - [anon_sym_BSLASHleft] = ACTIONS(6357), - [anon_sym_BSLASHbig] = ACTIONS(6357), - [anon_sym_BSLASHBig] = ACTIONS(6357), - [anon_sym_BSLASHbigg] = ACTIONS(6357), - [anon_sym_BSLASHBigg] = ACTIONS(6357), - [anon_sym_BSLASHbigl] = ACTIONS(6357), - [anon_sym_BSLASHBigl] = ACTIONS(6357), - [anon_sym_BSLASHbiggl] = ACTIONS(6357), - [anon_sym_BSLASHBiggl] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6357), - [anon_sym_BSLASHgls] = ACTIONS(6357), - [anon_sym_BSLASHGls] = ACTIONS(6357), - [anon_sym_BSLASHGLS] = ACTIONS(6357), - [anon_sym_BSLASHglspl] = ACTIONS(6357), - [anon_sym_BSLASHGlspl] = ACTIONS(6357), - [anon_sym_BSLASHGLSpl] = ACTIONS(6357), - [anon_sym_BSLASHglsdisp] = ACTIONS(6357), - [anon_sym_BSLASHglslink] = ACTIONS(6357), - [anon_sym_BSLASHglstext] = ACTIONS(6357), - [anon_sym_BSLASHGlstext] = ACTIONS(6357), - [anon_sym_BSLASHGLStext] = ACTIONS(6357), - [anon_sym_BSLASHglsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6357), - [anon_sym_BSLASHglsplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSplural] = ACTIONS(6357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHglsname] = ACTIONS(6357), - [anon_sym_BSLASHGlsname] = ACTIONS(6357), - [anon_sym_BSLASHGLSname] = ACTIONS(6357), - [anon_sym_BSLASHglssymbol] = ACTIONS(6357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6357), - [anon_sym_BSLASHglsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6357), - [anon_sym_BSLASHglsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6357), - [anon_sym_BSLASHglsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6357), - [anon_sym_BSLASHglsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6357), - [anon_sym_BSLASHglsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6357), - [anon_sym_BSLASHnewacronym] = ACTIONS(6357), - [anon_sym_BSLASHacrshort] = ACTIONS(6357), - [anon_sym_BSLASHAcrshort] = ACTIONS(6357), - [anon_sym_BSLASHACRshort] = ACTIONS(6357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6357), - [anon_sym_BSLASHacrlong] = ACTIONS(6357), - [anon_sym_BSLASHAcrlong] = ACTIONS(6357), - [anon_sym_BSLASHACRlong] = ACTIONS(6357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6357), - [anon_sym_BSLASHacrfull] = ACTIONS(6357), - [anon_sym_BSLASHAcrfull] = ACTIONS(6357), - [anon_sym_BSLASHACRfull] = ACTIONS(6357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6357), - [anon_sym_BSLASHacs] = ACTIONS(6357), - [anon_sym_BSLASHAcs] = ACTIONS(6357), - [anon_sym_BSLASHacsp] = ACTIONS(6357), - [anon_sym_BSLASHAcsp] = ACTIONS(6357), - [anon_sym_BSLASHacl] = ACTIONS(6357), - [anon_sym_BSLASHAcl] = ACTIONS(6357), - [anon_sym_BSLASHaclp] = ACTIONS(6357), - [anon_sym_BSLASHAclp] = ACTIONS(6357), - [anon_sym_BSLASHacf] = ACTIONS(6357), - [anon_sym_BSLASHAcf] = ACTIONS(6357), - [anon_sym_BSLASHacfp] = ACTIONS(6357), - [anon_sym_BSLASHAcfp] = ACTIONS(6357), - [anon_sym_BSLASHac] = ACTIONS(6357), - [anon_sym_BSLASHAc] = ACTIONS(6357), - [anon_sym_BSLASHacp] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6357), - [anon_sym_BSLASHcolor] = ACTIONS(6357), - [anon_sym_BSLASHcolorbox] = ACTIONS(6357), - [anon_sym_BSLASHtextcolor] = ACTIONS(6357), - [anon_sym_BSLASHpagecolor] = ACTIONS(6357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6357), - [anon_sym_BSLASHtext] = ACTIONS(6357), - [anon_sym_BSLASHintertext] = ACTIONS(6357), - [anon_sym_shortintertext] = ACTIONS(6357), - }, - [972] = { - [ts_builtin_sym_end] = ACTIONS(6347), - [sym_command_name] = ACTIONS(6345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6345), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_EQ] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_BSLASHpart] = ACTIONS(6345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddpart] = ACTIONS(6345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6347), - [anon_sym_BSLASHchapter] = ACTIONS(6345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddchap] = ACTIONS(6345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsection] = ACTIONS(6345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddsec] = ACTIONS(6345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubsection] = ACTIONS(6345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHparagraph] = ACTIONS(6345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6347), - [anon_sym_BSLASHitem] = ACTIONS(6345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6347), - [anon_sym_LBRACE] = ACTIONS(6347), - [anon_sym_RBRACE] = ACTIONS(6347), - [sym_word] = ACTIONS(6345), - [sym_placeholder] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6345), - [anon_sym_GT] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(6345), - [anon_sym_PIPE] = ACTIONS(6345), - [anon_sym_COLON] = ACTIONS(6345), - [anon_sym_SQUOTE] = ACTIONS(6345), - [anon_sym__] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6347), - [anon_sym_DOLLAR] = ACTIONS(6345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6347), - [anon_sym_BSLASHbegin] = ACTIONS(6345), - [anon_sym_BSLASHtitle] = ACTIONS(6345), - [anon_sym_BSLASHauthor] = ACTIONS(6345), - [anon_sym_BSLASHusepackage] = ACTIONS(6345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6345), - [anon_sym_BSLASHinclude] = ACTIONS(6345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6345), - [anon_sym_BSLASHinput] = ACTIONS(6345), - [anon_sym_BSLASHsubfile] = ACTIONS(6345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6345), - [anon_sym_BSLASHbibliography] = ACTIONS(6345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6345), - [anon_sym_BSLASHincludesvg] = ACTIONS(6345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6345), - [anon_sym_BSLASHimport] = ACTIONS(6345), - [anon_sym_BSLASHsubimport] = ACTIONS(6345), - [anon_sym_BSLASHinputfrom] = ACTIONS(6345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6345), - [anon_sym_BSLASHincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHcaption] = ACTIONS(6345), - [anon_sym_BSLASHcite] = ACTIONS(6345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCite] = ACTIONS(6345), - [anon_sym_BSLASHnocite] = ACTIONS(6345), - [anon_sym_BSLASHcitet] = ACTIONS(6345), - [anon_sym_BSLASHcitep] = ACTIONS(6345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteauthor] = ACTIONS(6345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitetitle] = ACTIONS(6345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteyear] = ACTIONS(6345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitedate] = ACTIONS(6345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteurl] = ACTIONS(6345), - [anon_sym_BSLASHfullcite] = ACTIONS(6345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6345), - [anon_sym_BSLASHcitealt] = ACTIONS(6345), - [anon_sym_BSLASHcitealp] = ACTIONS(6345), - [anon_sym_BSLASHcitetext] = ACTIONS(6345), - [anon_sym_BSLASHparencite] = ACTIONS(6345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHParencite] = ACTIONS(6345), - [anon_sym_BSLASHfootcite] = ACTIONS(6345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6345), - [anon_sym_BSLASHtextcite] = ACTIONS(6345), - [anon_sym_BSLASHTextcite] = ACTIONS(6345), - [anon_sym_BSLASHsmartcite] = ACTIONS(6345), - [anon_sym_BSLASHSmartcite] = ACTIONS(6345), - [anon_sym_BSLASHsupercite] = ACTIONS(6345), - [anon_sym_BSLASHautocite] = ACTIONS(6345), - [anon_sym_BSLASHAutocite] = ACTIONS(6345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHvolcite] = ACTIONS(6345), - [anon_sym_BSLASHVolcite] = ACTIONS(6345), - [anon_sym_BSLASHpvolcite] = ACTIONS(6345), - [anon_sym_BSLASHPvolcite] = ACTIONS(6345), - [anon_sym_BSLASHfvolcite] = ACTIONS(6345), - [anon_sym_BSLASHftvolcite] = ACTIONS(6345), - [anon_sym_BSLASHsvolcite] = ACTIONS(6345), - [anon_sym_BSLASHSvolcite] = ACTIONS(6345), - [anon_sym_BSLASHtvolcite] = ACTIONS(6345), - [anon_sym_BSLASHTvolcite] = ACTIONS(6345), - [anon_sym_BSLASHavolcite] = ACTIONS(6345), - [anon_sym_BSLASHAvolcite] = ACTIONS(6345), - [anon_sym_BSLASHnotecite] = ACTIONS(6345), - [anon_sym_BSLASHNotecite] = ACTIONS(6345), - [anon_sym_BSLASHpnotecite] = ACTIONS(6345), - [anon_sym_BSLASHPnotecite] = ACTIONS(6345), - [anon_sym_BSLASHfnotecite] = ACTIONS(6345), - [anon_sym_BSLASHlabel] = ACTIONS(6345), - [anon_sym_BSLASHref] = ACTIONS(6345), - [anon_sym_BSLASHeqref] = ACTIONS(6345), - [anon_sym_BSLASHvref] = ACTIONS(6345), - [anon_sym_BSLASHVref] = ACTIONS(6345), - [anon_sym_BSLASHautoref] = ACTIONS(6345), - [anon_sym_BSLASHpageref] = ACTIONS(6345), - [anon_sym_BSLASHcref] = ACTIONS(6345), - [anon_sym_BSLASHCref] = ACTIONS(6345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnameCref] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHlabelcref] = ACTIONS(6345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCrefrange] = ACTIONS(6345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnewlabel] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6347), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHdef] = ACTIONS(6345), - [anon_sym_BSLASHlet] = ACTIONS(6345), - [anon_sym_BSLASHleft] = ACTIONS(6345), - [anon_sym_BSLASHbig] = ACTIONS(6345), - [anon_sym_BSLASHBig] = ACTIONS(6345), - [anon_sym_BSLASHbigg] = ACTIONS(6345), - [anon_sym_BSLASHBigg] = ACTIONS(6345), - [anon_sym_BSLASHbigl] = ACTIONS(6345), - [anon_sym_BSLASHBigl] = ACTIONS(6345), - [anon_sym_BSLASHbiggl] = ACTIONS(6345), - [anon_sym_BSLASHBiggl] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6345), - [anon_sym_BSLASHgls] = ACTIONS(6345), - [anon_sym_BSLASHGls] = ACTIONS(6345), - [anon_sym_BSLASHGLS] = ACTIONS(6345), - [anon_sym_BSLASHglspl] = ACTIONS(6345), - [anon_sym_BSLASHGlspl] = ACTIONS(6345), - [anon_sym_BSLASHGLSpl] = ACTIONS(6345), - [anon_sym_BSLASHglsdisp] = ACTIONS(6345), - [anon_sym_BSLASHglslink] = ACTIONS(6345), - [anon_sym_BSLASHglstext] = ACTIONS(6345), - [anon_sym_BSLASHGlstext] = ACTIONS(6345), - [anon_sym_BSLASHGLStext] = ACTIONS(6345), - [anon_sym_BSLASHglsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6345), - [anon_sym_BSLASHglsplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSplural] = ACTIONS(6345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHglsname] = ACTIONS(6345), - [anon_sym_BSLASHGlsname] = ACTIONS(6345), - [anon_sym_BSLASHGLSname] = ACTIONS(6345), - [anon_sym_BSLASHglssymbol] = ACTIONS(6345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6345), - [anon_sym_BSLASHglsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6345), - [anon_sym_BSLASHglsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6345), - [anon_sym_BSLASHglsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6345), - [anon_sym_BSLASHglsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6345), - [anon_sym_BSLASHglsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6345), - [anon_sym_BSLASHnewacronym] = ACTIONS(6345), - [anon_sym_BSLASHacrshort] = ACTIONS(6345), - [anon_sym_BSLASHAcrshort] = ACTIONS(6345), - [anon_sym_BSLASHACRshort] = ACTIONS(6345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6345), - [anon_sym_BSLASHacrlong] = ACTIONS(6345), - [anon_sym_BSLASHAcrlong] = ACTIONS(6345), - [anon_sym_BSLASHACRlong] = ACTIONS(6345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6345), - [anon_sym_BSLASHacrfull] = ACTIONS(6345), - [anon_sym_BSLASHAcrfull] = ACTIONS(6345), - [anon_sym_BSLASHACRfull] = ACTIONS(6345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6345), - [anon_sym_BSLASHacs] = ACTIONS(6345), - [anon_sym_BSLASHAcs] = ACTIONS(6345), - [anon_sym_BSLASHacsp] = ACTIONS(6345), - [anon_sym_BSLASHAcsp] = ACTIONS(6345), - [anon_sym_BSLASHacl] = ACTIONS(6345), - [anon_sym_BSLASHAcl] = ACTIONS(6345), - [anon_sym_BSLASHaclp] = ACTIONS(6345), - [anon_sym_BSLASHAclp] = ACTIONS(6345), - [anon_sym_BSLASHacf] = ACTIONS(6345), - [anon_sym_BSLASHAcf] = ACTIONS(6345), - [anon_sym_BSLASHacfp] = ACTIONS(6345), - [anon_sym_BSLASHAcfp] = ACTIONS(6345), - [anon_sym_BSLASHac] = ACTIONS(6345), - [anon_sym_BSLASHAc] = ACTIONS(6345), - [anon_sym_BSLASHacp] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6345), - [anon_sym_BSLASHcolor] = ACTIONS(6345), - [anon_sym_BSLASHcolorbox] = ACTIONS(6345), - [anon_sym_BSLASHtextcolor] = ACTIONS(6345), - [anon_sym_BSLASHpagecolor] = ACTIONS(6345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6345), - [anon_sym_BSLASHtext] = ACTIONS(6345), - [anon_sym_BSLASHintertext] = ACTIONS(6345), - [anon_sym_shortintertext] = ACTIONS(6345), - }, - [973] = { - [ts_builtin_sym_end] = ACTIONS(6367), - [sym_command_name] = ACTIONS(6365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6367), - [anon_sym_RBRACK] = ACTIONS(6367), - [anon_sym_COMMA] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(6367), - [anon_sym_LPAREN] = ACTIONS(6367), - [anon_sym_RPAREN] = ACTIONS(6367), - [anon_sym_BSLASHpart] = ACTIONS(6365), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddpart] = ACTIONS(6365), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6367), - [anon_sym_BSLASHchapter] = ACTIONS(6365), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddchap] = ACTIONS(6365), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsection] = ACTIONS(6365), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddsec] = ACTIONS(6365), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubsection] = ACTIONS(6365), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6365), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHparagraph] = ACTIONS(6365), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6365), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6367), - [anon_sym_BSLASHitem] = ACTIONS(6365), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6367), - [anon_sym_LBRACE] = ACTIONS(6367), - [anon_sym_RBRACE] = ACTIONS(6367), - [sym_word] = ACTIONS(6365), - [sym_placeholder] = ACTIONS(6367), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6367), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_LT] = ACTIONS(6365), - [anon_sym_GT] = ACTIONS(6365), - [anon_sym_BANG] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_SQUOTE] = ACTIONS(6365), - [anon_sym__] = ACTIONS(6367), - [anon_sym_CARET] = ACTIONS(6367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6367), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6367), - [anon_sym_DOLLAR] = ACTIONS(6365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6367), - [anon_sym_BSLASHbegin] = ACTIONS(6365), - [anon_sym_BSLASHtitle] = ACTIONS(6365), - [anon_sym_BSLASHauthor] = ACTIONS(6365), - [anon_sym_BSLASHusepackage] = ACTIONS(6365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6365), - [anon_sym_BSLASHinclude] = ACTIONS(6365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6365), - [anon_sym_BSLASHinput] = ACTIONS(6365), - [anon_sym_BSLASHsubfile] = ACTIONS(6365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6365), - [anon_sym_BSLASHbibliography] = ACTIONS(6365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6365), - [anon_sym_BSLASHincludesvg] = ACTIONS(6365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6365), - [anon_sym_BSLASHimport] = ACTIONS(6365), - [anon_sym_BSLASHsubimport] = ACTIONS(6365), - [anon_sym_BSLASHinputfrom] = ACTIONS(6365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6365), - [anon_sym_BSLASHincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHcaption] = ACTIONS(6365), - [anon_sym_BSLASHcite] = ACTIONS(6365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCite] = ACTIONS(6365), - [anon_sym_BSLASHnocite] = ACTIONS(6365), - [anon_sym_BSLASHcitet] = ACTIONS(6365), - [anon_sym_BSLASHcitep] = ACTIONS(6365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteauthor] = ACTIONS(6365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitetitle] = ACTIONS(6365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteyear] = ACTIONS(6365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitedate] = ACTIONS(6365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteurl] = ACTIONS(6365), - [anon_sym_BSLASHfullcite] = ACTIONS(6365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6365), - [anon_sym_BSLASHcitealt] = ACTIONS(6365), - [anon_sym_BSLASHcitealp] = ACTIONS(6365), - [anon_sym_BSLASHcitetext] = ACTIONS(6365), - [anon_sym_BSLASHparencite] = ACTIONS(6365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHParencite] = ACTIONS(6365), - [anon_sym_BSLASHfootcite] = ACTIONS(6365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6365), - [anon_sym_BSLASHtextcite] = ACTIONS(6365), - [anon_sym_BSLASHTextcite] = ACTIONS(6365), - [anon_sym_BSLASHsmartcite] = ACTIONS(6365), - [anon_sym_BSLASHSmartcite] = ACTIONS(6365), - [anon_sym_BSLASHsupercite] = ACTIONS(6365), - [anon_sym_BSLASHautocite] = ACTIONS(6365), - [anon_sym_BSLASHAutocite] = ACTIONS(6365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHvolcite] = ACTIONS(6365), - [anon_sym_BSLASHVolcite] = ACTIONS(6365), - [anon_sym_BSLASHpvolcite] = ACTIONS(6365), - [anon_sym_BSLASHPvolcite] = ACTIONS(6365), - [anon_sym_BSLASHfvolcite] = ACTIONS(6365), - [anon_sym_BSLASHftvolcite] = ACTIONS(6365), - [anon_sym_BSLASHsvolcite] = ACTIONS(6365), - [anon_sym_BSLASHSvolcite] = ACTIONS(6365), - [anon_sym_BSLASHtvolcite] = ACTIONS(6365), - [anon_sym_BSLASHTvolcite] = ACTIONS(6365), - [anon_sym_BSLASHavolcite] = ACTIONS(6365), - [anon_sym_BSLASHAvolcite] = ACTIONS(6365), - [anon_sym_BSLASHnotecite] = ACTIONS(6365), - [anon_sym_BSLASHNotecite] = ACTIONS(6365), - [anon_sym_BSLASHpnotecite] = ACTIONS(6365), - [anon_sym_BSLASHPnotecite] = ACTIONS(6365), - [anon_sym_BSLASHfnotecite] = ACTIONS(6365), - [anon_sym_BSLASHlabel] = ACTIONS(6365), - [anon_sym_BSLASHref] = ACTIONS(6365), - [anon_sym_BSLASHeqref] = ACTIONS(6365), - [anon_sym_BSLASHvref] = ACTIONS(6365), - [anon_sym_BSLASHVref] = ACTIONS(6365), - [anon_sym_BSLASHautoref] = ACTIONS(6365), - [anon_sym_BSLASHpageref] = ACTIONS(6365), - [anon_sym_BSLASHcref] = ACTIONS(6365), - [anon_sym_BSLASHCref] = ACTIONS(6365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnameCref] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHlabelcref] = ACTIONS(6365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCrefrange] = ACTIONS(6365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnewlabel] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6367), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHdef] = ACTIONS(6365), - [anon_sym_BSLASHlet] = ACTIONS(6365), - [anon_sym_BSLASHleft] = ACTIONS(6365), - [anon_sym_BSLASHbig] = ACTIONS(6365), - [anon_sym_BSLASHBig] = ACTIONS(6365), - [anon_sym_BSLASHbigg] = ACTIONS(6365), - [anon_sym_BSLASHBigg] = ACTIONS(6365), - [anon_sym_BSLASHbigl] = ACTIONS(6365), - [anon_sym_BSLASHBigl] = ACTIONS(6365), - [anon_sym_BSLASHbiggl] = ACTIONS(6365), - [anon_sym_BSLASHBiggl] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6365), - [anon_sym_BSLASHgls] = ACTIONS(6365), - [anon_sym_BSLASHGls] = ACTIONS(6365), - [anon_sym_BSLASHGLS] = ACTIONS(6365), - [anon_sym_BSLASHglspl] = ACTIONS(6365), - [anon_sym_BSLASHGlspl] = ACTIONS(6365), - [anon_sym_BSLASHGLSpl] = ACTIONS(6365), - [anon_sym_BSLASHglsdisp] = ACTIONS(6365), - [anon_sym_BSLASHglslink] = ACTIONS(6365), - [anon_sym_BSLASHglstext] = ACTIONS(6365), - [anon_sym_BSLASHGlstext] = ACTIONS(6365), - [anon_sym_BSLASHGLStext] = ACTIONS(6365), - [anon_sym_BSLASHglsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6365), - [anon_sym_BSLASHglsplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSplural] = ACTIONS(6365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHglsname] = ACTIONS(6365), - [anon_sym_BSLASHGlsname] = ACTIONS(6365), - [anon_sym_BSLASHGLSname] = ACTIONS(6365), - [anon_sym_BSLASHglssymbol] = ACTIONS(6365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6365), - [anon_sym_BSLASHglsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6365), - [anon_sym_BSLASHglsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6365), - [anon_sym_BSLASHglsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6365), - [anon_sym_BSLASHglsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6365), - [anon_sym_BSLASHglsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6365), - [anon_sym_BSLASHnewacronym] = ACTIONS(6365), - [anon_sym_BSLASHacrshort] = ACTIONS(6365), - [anon_sym_BSLASHAcrshort] = ACTIONS(6365), - [anon_sym_BSLASHACRshort] = ACTIONS(6365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6365), - [anon_sym_BSLASHacrlong] = ACTIONS(6365), - [anon_sym_BSLASHAcrlong] = ACTIONS(6365), - [anon_sym_BSLASHACRlong] = ACTIONS(6365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6365), - [anon_sym_BSLASHacrfull] = ACTIONS(6365), - [anon_sym_BSLASHAcrfull] = ACTIONS(6365), - [anon_sym_BSLASHACRfull] = ACTIONS(6365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6365), - [anon_sym_BSLASHacs] = ACTIONS(6365), - [anon_sym_BSLASHAcs] = ACTIONS(6365), - [anon_sym_BSLASHacsp] = ACTIONS(6365), - [anon_sym_BSLASHAcsp] = ACTIONS(6365), - [anon_sym_BSLASHacl] = ACTIONS(6365), - [anon_sym_BSLASHAcl] = ACTIONS(6365), - [anon_sym_BSLASHaclp] = ACTIONS(6365), - [anon_sym_BSLASHAclp] = ACTIONS(6365), - [anon_sym_BSLASHacf] = ACTIONS(6365), - [anon_sym_BSLASHAcf] = ACTIONS(6365), - [anon_sym_BSLASHacfp] = ACTIONS(6365), - [anon_sym_BSLASHAcfp] = ACTIONS(6365), - [anon_sym_BSLASHac] = ACTIONS(6365), - [anon_sym_BSLASHAc] = ACTIONS(6365), - [anon_sym_BSLASHacp] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6365), - [anon_sym_BSLASHcolor] = ACTIONS(6365), - [anon_sym_BSLASHcolorbox] = ACTIONS(6365), - [anon_sym_BSLASHtextcolor] = ACTIONS(6365), - [anon_sym_BSLASHpagecolor] = ACTIONS(6365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6365), - [anon_sym_BSLASHtext] = ACTIONS(6365), - [anon_sym_BSLASHintertext] = ACTIONS(6365), - [anon_sym_shortintertext] = ACTIONS(6365), - }, - [974] = { - [ts_builtin_sym_end] = ACTIONS(6371), - [sym_command_name] = ACTIONS(6369), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6371), - [anon_sym_RBRACK] = ACTIONS(6371), - [anon_sym_COMMA] = ACTIONS(6371), - [anon_sym_EQ] = ACTIONS(6371), - [anon_sym_LPAREN] = ACTIONS(6371), - [anon_sym_RPAREN] = ACTIONS(6371), - [anon_sym_BSLASHpart] = ACTIONS(6369), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddpart] = ACTIONS(6369), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6371), - [anon_sym_BSLASHchapter] = ACTIONS(6369), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddchap] = ACTIONS(6369), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsection] = ACTIONS(6369), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddsec] = ACTIONS(6369), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubsection] = ACTIONS(6369), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6369), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHparagraph] = ACTIONS(6369), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6369), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6371), - [anon_sym_BSLASHitem] = ACTIONS(6369), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6371), - [anon_sym_LBRACE] = ACTIONS(6371), - [anon_sym_RBRACE] = ACTIONS(6371), - [sym_word] = ACTIONS(6369), - [sym_placeholder] = ACTIONS(6371), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6371), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_LT] = ACTIONS(6369), - [anon_sym_GT] = ACTIONS(6369), - [anon_sym_BANG] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_SQUOTE] = ACTIONS(6369), - [anon_sym__] = ACTIONS(6371), - [anon_sym_CARET] = ACTIONS(6371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6371), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6371), - [anon_sym_DOLLAR] = ACTIONS(6369), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6371), - [anon_sym_BSLASHbegin] = ACTIONS(6369), - [anon_sym_BSLASHtitle] = ACTIONS(6369), - [anon_sym_BSLASHauthor] = ACTIONS(6369), - [anon_sym_BSLASHusepackage] = ACTIONS(6369), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6369), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6369), - [anon_sym_BSLASHinclude] = ACTIONS(6369), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6369), - [anon_sym_BSLASHinput] = ACTIONS(6369), - [anon_sym_BSLASHsubfile] = ACTIONS(6369), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6369), - [anon_sym_BSLASHbibliography] = ACTIONS(6369), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6369), - [anon_sym_BSLASHincludesvg] = ACTIONS(6369), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6369), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6369), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6369), - [anon_sym_BSLASHimport] = ACTIONS(6369), - [anon_sym_BSLASHsubimport] = ACTIONS(6369), - [anon_sym_BSLASHinputfrom] = ACTIONS(6369), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6369), - [anon_sym_BSLASHincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHcaption] = ACTIONS(6369), - [anon_sym_BSLASHcite] = ACTIONS(6369), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCite] = ACTIONS(6369), - [anon_sym_BSLASHnocite] = ACTIONS(6369), - [anon_sym_BSLASHcitet] = ACTIONS(6369), - [anon_sym_BSLASHcitep] = ACTIONS(6369), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteauthor] = ACTIONS(6369), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6369), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitetitle] = ACTIONS(6369), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteyear] = ACTIONS(6369), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitedate] = ACTIONS(6369), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteurl] = ACTIONS(6369), - [anon_sym_BSLASHfullcite] = ACTIONS(6369), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6369), - [anon_sym_BSLASHcitealt] = ACTIONS(6369), - [anon_sym_BSLASHcitealp] = ACTIONS(6369), - [anon_sym_BSLASHcitetext] = ACTIONS(6369), - [anon_sym_BSLASHparencite] = ACTIONS(6369), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHParencite] = ACTIONS(6369), - [anon_sym_BSLASHfootcite] = ACTIONS(6369), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6369), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6369), - [anon_sym_BSLASHtextcite] = ACTIONS(6369), - [anon_sym_BSLASHTextcite] = ACTIONS(6369), - [anon_sym_BSLASHsmartcite] = ACTIONS(6369), - [anon_sym_BSLASHSmartcite] = ACTIONS(6369), - [anon_sym_BSLASHsupercite] = ACTIONS(6369), - [anon_sym_BSLASHautocite] = ACTIONS(6369), - [anon_sym_BSLASHAutocite] = ACTIONS(6369), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHvolcite] = ACTIONS(6369), - [anon_sym_BSLASHVolcite] = ACTIONS(6369), - [anon_sym_BSLASHpvolcite] = ACTIONS(6369), - [anon_sym_BSLASHPvolcite] = ACTIONS(6369), - [anon_sym_BSLASHfvolcite] = ACTIONS(6369), - [anon_sym_BSLASHftvolcite] = ACTIONS(6369), - [anon_sym_BSLASHsvolcite] = ACTIONS(6369), - [anon_sym_BSLASHSvolcite] = ACTIONS(6369), - [anon_sym_BSLASHtvolcite] = ACTIONS(6369), - [anon_sym_BSLASHTvolcite] = ACTIONS(6369), - [anon_sym_BSLASHavolcite] = ACTIONS(6369), - [anon_sym_BSLASHAvolcite] = ACTIONS(6369), - [anon_sym_BSLASHnotecite] = ACTIONS(6369), - [anon_sym_BSLASHNotecite] = ACTIONS(6369), - [anon_sym_BSLASHpnotecite] = ACTIONS(6369), - [anon_sym_BSLASHPnotecite] = ACTIONS(6369), - [anon_sym_BSLASHfnotecite] = ACTIONS(6369), - [anon_sym_BSLASHlabel] = ACTIONS(6369), - [anon_sym_BSLASHref] = ACTIONS(6369), - [anon_sym_BSLASHeqref] = ACTIONS(6369), - [anon_sym_BSLASHvref] = ACTIONS(6369), - [anon_sym_BSLASHVref] = ACTIONS(6369), - [anon_sym_BSLASHautoref] = ACTIONS(6369), - [anon_sym_BSLASHpageref] = ACTIONS(6369), - [anon_sym_BSLASHcref] = ACTIONS(6369), - [anon_sym_BSLASHCref] = ACTIONS(6369), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnameCref] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHlabelcref] = ACTIONS(6369), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCrefrange] = ACTIONS(6369), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnewlabel] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6369), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6369), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6371), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHdef] = ACTIONS(6369), - [anon_sym_BSLASHlet] = ACTIONS(6369), - [anon_sym_BSLASHleft] = ACTIONS(6369), - [anon_sym_BSLASHbig] = ACTIONS(6369), - [anon_sym_BSLASHBig] = ACTIONS(6369), - [anon_sym_BSLASHbigg] = ACTIONS(6369), - [anon_sym_BSLASHBigg] = ACTIONS(6369), - [anon_sym_BSLASHbigl] = ACTIONS(6369), - [anon_sym_BSLASHBigl] = ACTIONS(6369), - [anon_sym_BSLASHbiggl] = ACTIONS(6369), - [anon_sym_BSLASHBiggl] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6369), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6369), - [anon_sym_BSLASHgls] = ACTIONS(6369), - [anon_sym_BSLASHGls] = ACTIONS(6369), - [anon_sym_BSLASHGLS] = ACTIONS(6369), - [anon_sym_BSLASHglspl] = ACTIONS(6369), - [anon_sym_BSLASHGlspl] = ACTIONS(6369), - [anon_sym_BSLASHGLSpl] = ACTIONS(6369), - [anon_sym_BSLASHglsdisp] = ACTIONS(6369), - [anon_sym_BSLASHglslink] = ACTIONS(6369), - [anon_sym_BSLASHglstext] = ACTIONS(6369), - [anon_sym_BSLASHGlstext] = ACTIONS(6369), - [anon_sym_BSLASHGLStext] = ACTIONS(6369), - [anon_sym_BSLASHglsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6369), - [anon_sym_BSLASHglsplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSplural] = ACTIONS(6369), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHglsname] = ACTIONS(6369), - [anon_sym_BSLASHGlsname] = ACTIONS(6369), - [anon_sym_BSLASHGLSname] = ACTIONS(6369), - [anon_sym_BSLASHglssymbol] = ACTIONS(6369), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6369), - [anon_sym_BSLASHglsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6369), - [anon_sym_BSLASHglsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6369), - [anon_sym_BSLASHglsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6369), - [anon_sym_BSLASHglsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6369), - [anon_sym_BSLASHglsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6369), - [anon_sym_BSLASHnewacronym] = ACTIONS(6369), - [anon_sym_BSLASHacrshort] = ACTIONS(6369), - [anon_sym_BSLASHAcrshort] = ACTIONS(6369), - [anon_sym_BSLASHACRshort] = ACTIONS(6369), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6369), - [anon_sym_BSLASHacrlong] = ACTIONS(6369), - [anon_sym_BSLASHAcrlong] = ACTIONS(6369), - [anon_sym_BSLASHACRlong] = ACTIONS(6369), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6369), - [anon_sym_BSLASHacrfull] = ACTIONS(6369), - [anon_sym_BSLASHAcrfull] = ACTIONS(6369), - [anon_sym_BSLASHACRfull] = ACTIONS(6369), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6369), - [anon_sym_BSLASHacs] = ACTIONS(6369), - [anon_sym_BSLASHAcs] = ACTIONS(6369), - [anon_sym_BSLASHacsp] = ACTIONS(6369), - [anon_sym_BSLASHAcsp] = ACTIONS(6369), - [anon_sym_BSLASHacl] = ACTIONS(6369), - [anon_sym_BSLASHAcl] = ACTIONS(6369), - [anon_sym_BSLASHaclp] = ACTIONS(6369), - [anon_sym_BSLASHAclp] = ACTIONS(6369), - [anon_sym_BSLASHacf] = ACTIONS(6369), - [anon_sym_BSLASHAcf] = ACTIONS(6369), - [anon_sym_BSLASHacfp] = ACTIONS(6369), - [anon_sym_BSLASHAcfp] = ACTIONS(6369), - [anon_sym_BSLASHac] = ACTIONS(6369), - [anon_sym_BSLASHAc] = ACTIONS(6369), - [anon_sym_BSLASHacp] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6369), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6369), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6369), - [anon_sym_BSLASHcolor] = ACTIONS(6369), - [anon_sym_BSLASHcolorbox] = ACTIONS(6369), - [anon_sym_BSLASHtextcolor] = ACTIONS(6369), - [anon_sym_BSLASHpagecolor] = ACTIONS(6369), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6369), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6369), - [anon_sym_BSLASHtext] = ACTIONS(6369), - [anon_sym_BSLASHintertext] = ACTIONS(6369), - [anon_sym_shortintertext] = ACTIONS(6369), - }, - [975] = { - [ts_builtin_sym_end] = ACTIONS(6375), - [sym_command_name] = ACTIONS(6373), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6375), - [anon_sym_RBRACK] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_EQ] = ACTIONS(6375), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_RPAREN] = ACTIONS(6375), - [anon_sym_BSLASHpart] = ACTIONS(6373), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddpart] = ACTIONS(6373), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6375), - [anon_sym_BSLASHchapter] = ACTIONS(6373), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddchap] = ACTIONS(6373), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsection] = ACTIONS(6373), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddsec] = ACTIONS(6373), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubsection] = ACTIONS(6373), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6373), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHparagraph] = ACTIONS(6373), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6373), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6375), - [anon_sym_BSLASHitem] = ACTIONS(6373), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6375), - [anon_sym_LBRACE] = ACTIONS(6375), - [anon_sym_RBRACE] = ACTIONS(6375), - [sym_word] = ACTIONS(6373), - [sym_placeholder] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6373), - [anon_sym_GT] = ACTIONS(6373), - [anon_sym_BANG] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_SQUOTE] = ACTIONS(6373), - [anon_sym__] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6375), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6375), - [anon_sym_DOLLAR] = ACTIONS(6373), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6375), - [anon_sym_BSLASHbegin] = ACTIONS(6373), - [anon_sym_BSLASHtitle] = ACTIONS(6373), - [anon_sym_BSLASHauthor] = ACTIONS(6373), - [anon_sym_BSLASHusepackage] = ACTIONS(6373), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6373), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6373), - [anon_sym_BSLASHinclude] = ACTIONS(6373), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6373), - [anon_sym_BSLASHinput] = ACTIONS(6373), - [anon_sym_BSLASHsubfile] = ACTIONS(6373), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6373), - [anon_sym_BSLASHbibliography] = ACTIONS(6373), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6373), - [anon_sym_BSLASHincludesvg] = ACTIONS(6373), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6373), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6373), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6373), - [anon_sym_BSLASHimport] = ACTIONS(6373), - [anon_sym_BSLASHsubimport] = ACTIONS(6373), - [anon_sym_BSLASHinputfrom] = ACTIONS(6373), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6373), - [anon_sym_BSLASHincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHcaption] = ACTIONS(6373), - [anon_sym_BSLASHcite] = ACTIONS(6373), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCite] = ACTIONS(6373), - [anon_sym_BSLASHnocite] = ACTIONS(6373), - [anon_sym_BSLASHcitet] = ACTIONS(6373), - [anon_sym_BSLASHcitep] = ACTIONS(6373), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteauthor] = ACTIONS(6373), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6373), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitetitle] = ACTIONS(6373), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteyear] = ACTIONS(6373), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitedate] = ACTIONS(6373), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteurl] = ACTIONS(6373), - [anon_sym_BSLASHfullcite] = ACTIONS(6373), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6373), - [anon_sym_BSLASHcitealt] = ACTIONS(6373), - [anon_sym_BSLASHcitealp] = ACTIONS(6373), - [anon_sym_BSLASHcitetext] = ACTIONS(6373), - [anon_sym_BSLASHparencite] = ACTIONS(6373), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHParencite] = ACTIONS(6373), - [anon_sym_BSLASHfootcite] = ACTIONS(6373), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6373), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6373), - [anon_sym_BSLASHtextcite] = ACTIONS(6373), - [anon_sym_BSLASHTextcite] = ACTIONS(6373), - [anon_sym_BSLASHsmartcite] = ACTIONS(6373), - [anon_sym_BSLASHSmartcite] = ACTIONS(6373), - [anon_sym_BSLASHsupercite] = ACTIONS(6373), - [anon_sym_BSLASHautocite] = ACTIONS(6373), - [anon_sym_BSLASHAutocite] = ACTIONS(6373), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHvolcite] = ACTIONS(6373), - [anon_sym_BSLASHVolcite] = ACTIONS(6373), - [anon_sym_BSLASHpvolcite] = ACTIONS(6373), - [anon_sym_BSLASHPvolcite] = ACTIONS(6373), - [anon_sym_BSLASHfvolcite] = ACTIONS(6373), - [anon_sym_BSLASHftvolcite] = ACTIONS(6373), - [anon_sym_BSLASHsvolcite] = ACTIONS(6373), - [anon_sym_BSLASHSvolcite] = ACTIONS(6373), - [anon_sym_BSLASHtvolcite] = ACTIONS(6373), - [anon_sym_BSLASHTvolcite] = ACTIONS(6373), - [anon_sym_BSLASHavolcite] = ACTIONS(6373), - [anon_sym_BSLASHAvolcite] = ACTIONS(6373), - [anon_sym_BSLASHnotecite] = ACTIONS(6373), - [anon_sym_BSLASHNotecite] = ACTIONS(6373), - [anon_sym_BSLASHpnotecite] = ACTIONS(6373), - [anon_sym_BSLASHPnotecite] = ACTIONS(6373), - [anon_sym_BSLASHfnotecite] = ACTIONS(6373), - [anon_sym_BSLASHlabel] = ACTIONS(6373), - [anon_sym_BSLASHref] = ACTIONS(6373), - [anon_sym_BSLASHeqref] = ACTIONS(6373), - [anon_sym_BSLASHvref] = ACTIONS(6373), - [anon_sym_BSLASHVref] = ACTIONS(6373), - [anon_sym_BSLASHautoref] = ACTIONS(6373), - [anon_sym_BSLASHpageref] = ACTIONS(6373), - [anon_sym_BSLASHcref] = ACTIONS(6373), - [anon_sym_BSLASHCref] = ACTIONS(6373), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnameCref] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHlabelcref] = ACTIONS(6373), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCrefrange] = ACTIONS(6373), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnewlabel] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6373), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6373), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6375), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHdef] = ACTIONS(6373), - [anon_sym_BSLASHlet] = ACTIONS(6373), - [anon_sym_BSLASHleft] = ACTIONS(6373), - [anon_sym_BSLASHbig] = ACTIONS(6373), - [anon_sym_BSLASHBig] = ACTIONS(6373), - [anon_sym_BSLASHbigg] = ACTIONS(6373), - [anon_sym_BSLASHBigg] = ACTIONS(6373), - [anon_sym_BSLASHbigl] = ACTIONS(6373), - [anon_sym_BSLASHBigl] = ACTIONS(6373), - [anon_sym_BSLASHbiggl] = ACTIONS(6373), - [anon_sym_BSLASHBiggl] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6373), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6373), - [anon_sym_BSLASHgls] = ACTIONS(6373), - [anon_sym_BSLASHGls] = ACTIONS(6373), - [anon_sym_BSLASHGLS] = ACTIONS(6373), - [anon_sym_BSLASHglspl] = ACTIONS(6373), - [anon_sym_BSLASHGlspl] = ACTIONS(6373), - [anon_sym_BSLASHGLSpl] = ACTIONS(6373), - [anon_sym_BSLASHglsdisp] = ACTIONS(6373), - [anon_sym_BSLASHglslink] = ACTIONS(6373), - [anon_sym_BSLASHglstext] = ACTIONS(6373), - [anon_sym_BSLASHGlstext] = ACTIONS(6373), - [anon_sym_BSLASHGLStext] = ACTIONS(6373), - [anon_sym_BSLASHglsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6373), - [anon_sym_BSLASHglsplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSplural] = ACTIONS(6373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHglsname] = ACTIONS(6373), - [anon_sym_BSLASHGlsname] = ACTIONS(6373), - [anon_sym_BSLASHGLSname] = ACTIONS(6373), - [anon_sym_BSLASHglssymbol] = ACTIONS(6373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6373), - [anon_sym_BSLASHglsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6373), - [anon_sym_BSLASHglsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6373), - [anon_sym_BSLASHglsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6373), - [anon_sym_BSLASHglsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6373), - [anon_sym_BSLASHglsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6373), - [anon_sym_BSLASHnewacronym] = ACTIONS(6373), - [anon_sym_BSLASHacrshort] = ACTIONS(6373), - [anon_sym_BSLASHAcrshort] = ACTIONS(6373), - [anon_sym_BSLASHACRshort] = ACTIONS(6373), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6373), - [anon_sym_BSLASHacrlong] = ACTIONS(6373), - [anon_sym_BSLASHAcrlong] = ACTIONS(6373), - [anon_sym_BSLASHACRlong] = ACTIONS(6373), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6373), - [anon_sym_BSLASHacrfull] = ACTIONS(6373), - [anon_sym_BSLASHAcrfull] = ACTIONS(6373), - [anon_sym_BSLASHACRfull] = ACTIONS(6373), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6373), - [anon_sym_BSLASHacs] = ACTIONS(6373), - [anon_sym_BSLASHAcs] = ACTIONS(6373), - [anon_sym_BSLASHacsp] = ACTIONS(6373), - [anon_sym_BSLASHAcsp] = ACTIONS(6373), - [anon_sym_BSLASHacl] = ACTIONS(6373), - [anon_sym_BSLASHAcl] = ACTIONS(6373), - [anon_sym_BSLASHaclp] = ACTIONS(6373), - [anon_sym_BSLASHAclp] = ACTIONS(6373), - [anon_sym_BSLASHacf] = ACTIONS(6373), - [anon_sym_BSLASHAcf] = ACTIONS(6373), - [anon_sym_BSLASHacfp] = ACTIONS(6373), - [anon_sym_BSLASHAcfp] = ACTIONS(6373), - [anon_sym_BSLASHac] = ACTIONS(6373), - [anon_sym_BSLASHAc] = ACTIONS(6373), - [anon_sym_BSLASHacp] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6373), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6373), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6373), - [anon_sym_BSLASHcolor] = ACTIONS(6373), - [anon_sym_BSLASHcolorbox] = ACTIONS(6373), - [anon_sym_BSLASHtextcolor] = ACTIONS(6373), - [anon_sym_BSLASHpagecolor] = ACTIONS(6373), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6373), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6373), - [anon_sym_BSLASHtext] = ACTIONS(6373), - [anon_sym_BSLASHintertext] = ACTIONS(6373), - [anon_sym_shortintertext] = ACTIONS(6373), - }, - [976] = { - [ts_builtin_sym_end] = ACTIONS(6379), - [sym_command_name] = ACTIONS(6377), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6379), - [anon_sym_RBRACK] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_EQ] = ACTIONS(6379), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_BSLASHpart] = ACTIONS(6377), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddpart] = ACTIONS(6377), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6379), - [anon_sym_BSLASHchapter] = ACTIONS(6377), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddchap] = ACTIONS(6377), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsection] = ACTIONS(6377), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddsec] = ACTIONS(6377), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubsection] = ACTIONS(6377), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6377), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHparagraph] = ACTIONS(6377), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6377), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6379), - [anon_sym_BSLASHitem] = ACTIONS(6377), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6379), - [anon_sym_LBRACE] = ACTIONS(6379), - [anon_sym_RBRACE] = ACTIONS(6379), - [sym_word] = ACTIONS(6377), - [sym_placeholder] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_SQUOTE] = ACTIONS(6377), - [anon_sym__] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6379), - [anon_sym_DOLLAR] = ACTIONS(6377), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6379), - [anon_sym_BSLASHbegin] = ACTIONS(6377), - [anon_sym_BSLASHtitle] = ACTIONS(6377), - [anon_sym_BSLASHauthor] = ACTIONS(6377), - [anon_sym_BSLASHusepackage] = ACTIONS(6377), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6377), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6377), - [anon_sym_BSLASHinclude] = ACTIONS(6377), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6377), - [anon_sym_BSLASHinput] = ACTIONS(6377), - [anon_sym_BSLASHsubfile] = ACTIONS(6377), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6377), - [anon_sym_BSLASHbibliography] = ACTIONS(6377), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6377), - [anon_sym_BSLASHincludesvg] = ACTIONS(6377), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6377), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6377), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6377), - [anon_sym_BSLASHimport] = ACTIONS(6377), - [anon_sym_BSLASHsubimport] = ACTIONS(6377), - [anon_sym_BSLASHinputfrom] = ACTIONS(6377), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6377), - [anon_sym_BSLASHincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHcaption] = ACTIONS(6377), - [anon_sym_BSLASHcite] = ACTIONS(6377), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCite] = ACTIONS(6377), - [anon_sym_BSLASHnocite] = ACTIONS(6377), - [anon_sym_BSLASHcitet] = ACTIONS(6377), - [anon_sym_BSLASHcitep] = ACTIONS(6377), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteauthor] = ACTIONS(6377), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6377), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitetitle] = ACTIONS(6377), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteyear] = ACTIONS(6377), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitedate] = ACTIONS(6377), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteurl] = ACTIONS(6377), - [anon_sym_BSLASHfullcite] = ACTIONS(6377), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6377), - [anon_sym_BSLASHcitealt] = ACTIONS(6377), - [anon_sym_BSLASHcitealp] = ACTIONS(6377), - [anon_sym_BSLASHcitetext] = ACTIONS(6377), - [anon_sym_BSLASHparencite] = ACTIONS(6377), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHParencite] = ACTIONS(6377), - [anon_sym_BSLASHfootcite] = ACTIONS(6377), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6377), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6377), - [anon_sym_BSLASHtextcite] = ACTIONS(6377), - [anon_sym_BSLASHTextcite] = ACTIONS(6377), - [anon_sym_BSLASHsmartcite] = ACTIONS(6377), - [anon_sym_BSLASHSmartcite] = ACTIONS(6377), - [anon_sym_BSLASHsupercite] = ACTIONS(6377), - [anon_sym_BSLASHautocite] = ACTIONS(6377), - [anon_sym_BSLASHAutocite] = ACTIONS(6377), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHvolcite] = ACTIONS(6377), - [anon_sym_BSLASHVolcite] = ACTIONS(6377), - [anon_sym_BSLASHpvolcite] = ACTIONS(6377), - [anon_sym_BSLASHPvolcite] = ACTIONS(6377), - [anon_sym_BSLASHfvolcite] = ACTIONS(6377), - [anon_sym_BSLASHftvolcite] = ACTIONS(6377), - [anon_sym_BSLASHsvolcite] = ACTIONS(6377), - [anon_sym_BSLASHSvolcite] = ACTIONS(6377), - [anon_sym_BSLASHtvolcite] = ACTIONS(6377), - [anon_sym_BSLASHTvolcite] = ACTIONS(6377), - [anon_sym_BSLASHavolcite] = ACTIONS(6377), - [anon_sym_BSLASHAvolcite] = ACTIONS(6377), - [anon_sym_BSLASHnotecite] = ACTIONS(6377), - [anon_sym_BSLASHNotecite] = ACTIONS(6377), - [anon_sym_BSLASHpnotecite] = ACTIONS(6377), - [anon_sym_BSLASHPnotecite] = ACTIONS(6377), - [anon_sym_BSLASHfnotecite] = ACTIONS(6377), - [anon_sym_BSLASHlabel] = ACTIONS(6377), - [anon_sym_BSLASHref] = ACTIONS(6377), - [anon_sym_BSLASHeqref] = ACTIONS(6377), - [anon_sym_BSLASHvref] = ACTIONS(6377), - [anon_sym_BSLASHVref] = ACTIONS(6377), - [anon_sym_BSLASHautoref] = ACTIONS(6377), - [anon_sym_BSLASHpageref] = ACTIONS(6377), - [anon_sym_BSLASHcref] = ACTIONS(6377), - [anon_sym_BSLASHCref] = ACTIONS(6377), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnameCref] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHlabelcref] = ACTIONS(6377), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCrefrange] = ACTIONS(6377), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnewlabel] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6377), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6377), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6379), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHdef] = ACTIONS(6377), - [anon_sym_BSLASHlet] = ACTIONS(6377), - [anon_sym_BSLASHleft] = ACTIONS(6377), - [anon_sym_BSLASHbig] = ACTIONS(6377), - [anon_sym_BSLASHBig] = ACTIONS(6377), - [anon_sym_BSLASHbigg] = ACTIONS(6377), - [anon_sym_BSLASHBigg] = ACTIONS(6377), - [anon_sym_BSLASHbigl] = ACTIONS(6377), - [anon_sym_BSLASHBigl] = ACTIONS(6377), - [anon_sym_BSLASHbiggl] = ACTIONS(6377), - [anon_sym_BSLASHBiggl] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6377), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6377), - [anon_sym_BSLASHgls] = ACTIONS(6377), - [anon_sym_BSLASHGls] = ACTIONS(6377), - [anon_sym_BSLASHGLS] = ACTIONS(6377), - [anon_sym_BSLASHglspl] = ACTIONS(6377), - [anon_sym_BSLASHGlspl] = ACTIONS(6377), - [anon_sym_BSLASHGLSpl] = ACTIONS(6377), - [anon_sym_BSLASHglsdisp] = ACTIONS(6377), - [anon_sym_BSLASHglslink] = ACTIONS(6377), - [anon_sym_BSLASHglstext] = ACTIONS(6377), - [anon_sym_BSLASHGlstext] = ACTIONS(6377), - [anon_sym_BSLASHGLStext] = ACTIONS(6377), - [anon_sym_BSLASHglsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6377), - [anon_sym_BSLASHglsplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSplural] = ACTIONS(6377), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHglsname] = ACTIONS(6377), - [anon_sym_BSLASHGlsname] = ACTIONS(6377), - [anon_sym_BSLASHGLSname] = ACTIONS(6377), - [anon_sym_BSLASHglssymbol] = ACTIONS(6377), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6377), - [anon_sym_BSLASHglsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6377), - [anon_sym_BSLASHglsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6377), - [anon_sym_BSLASHglsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6377), - [anon_sym_BSLASHglsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6377), - [anon_sym_BSLASHglsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6377), - [anon_sym_BSLASHnewacronym] = ACTIONS(6377), - [anon_sym_BSLASHacrshort] = ACTIONS(6377), - [anon_sym_BSLASHAcrshort] = ACTIONS(6377), - [anon_sym_BSLASHACRshort] = ACTIONS(6377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6377), - [anon_sym_BSLASHacrlong] = ACTIONS(6377), - [anon_sym_BSLASHAcrlong] = ACTIONS(6377), - [anon_sym_BSLASHACRlong] = ACTIONS(6377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6377), - [anon_sym_BSLASHacrfull] = ACTIONS(6377), - [anon_sym_BSLASHAcrfull] = ACTIONS(6377), - [anon_sym_BSLASHACRfull] = ACTIONS(6377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6377), - [anon_sym_BSLASHacs] = ACTIONS(6377), - [anon_sym_BSLASHAcs] = ACTIONS(6377), - [anon_sym_BSLASHacsp] = ACTIONS(6377), - [anon_sym_BSLASHAcsp] = ACTIONS(6377), - [anon_sym_BSLASHacl] = ACTIONS(6377), - [anon_sym_BSLASHAcl] = ACTIONS(6377), - [anon_sym_BSLASHaclp] = ACTIONS(6377), - [anon_sym_BSLASHAclp] = ACTIONS(6377), - [anon_sym_BSLASHacf] = ACTIONS(6377), - [anon_sym_BSLASHAcf] = ACTIONS(6377), - [anon_sym_BSLASHacfp] = ACTIONS(6377), - [anon_sym_BSLASHAcfp] = ACTIONS(6377), - [anon_sym_BSLASHac] = ACTIONS(6377), - [anon_sym_BSLASHAc] = ACTIONS(6377), - [anon_sym_BSLASHacp] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6377), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6377), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6377), - [anon_sym_BSLASHcolor] = ACTIONS(6377), - [anon_sym_BSLASHcolorbox] = ACTIONS(6377), - [anon_sym_BSLASHtextcolor] = ACTIONS(6377), - [anon_sym_BSLASHpagecolor] = ACTIONS(6377), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6377), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6377), - [anon_sym_BSLASHtext] = ACTIONS(6377), - [anon_sym_BSLASHintertext] = ACTIONS(6377), - [anon_sym_shortintertext] = ACTIONS(6377), - }, - [977] = { - [ts_builtin_sym_end] = ACTIONS(6131), - [sym_command_name] = ACTIONS(6129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(6131), - [anon_sym_RBRACK] = ACTIONS(6131), - [anon_sym_COMMA] = ACTIONS(6131), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_LPAREN] = ACTIONS(6131), - [anon_sym_RPAREN] = ACTIONS(6131), - [anon_sym_BSLASHpart] = ACTIONS(6129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddpart] = ACTIONS(6129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6131), - [anon_sym_BSLASHchapter] = ACTIONS(6129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddchap] = ACTIONS(6129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsection] = ACTIONS(6129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddsec] = ACTIONS(6129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubsection] = ACTIONS(6129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHparagraph] = ACTIONS(6129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6131), - [anon_sym_BSLASHitem] = ACTIONS(6129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(6131), - [anon_sym_RBRACE] = ACTIONS(6131), - [sym_word] = ACTIONS(6129), - [sym_placeholder] = ACTIONS(6131), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_BANG] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_SQUOTE] = ACTIONS(6129), - [anon_sym__] = ACTIONS(6131), - [anon_sym_CARET] = ACTIONS(6131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6131), - [anon_sym_DOLLAR] = ACTIONS(6129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6131), - [anon_sym_BSLASHbegin] = ACTIONS(6129), - [anon_sym_BSLASHtitle] = ACTIONS(6129), - [anon_sym_BSLASHauthor] = ACTIONS(6129), - [anon_sym_BSLASHusepackage] = ACTIONS(6129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6129), - [anon_sym_BSLASHinclude] = ACTIONS(6129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6129), - [anon_sym_BSLASHinput] = ACTIONS(6129), - [anon_sym_BSLASHsubfile] = ACTIONS(6129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6129), - [anon_sym_BSLASHbibliography] = ACTIONS(6129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6129), - [anon_sym_BSLASHincludesvg] = ACTIONS(6129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6129), - [anon_sym_BSLASHimport] = ACTIONS(6129), - [anon_sym_BSLASHsubimport] = ACTIONS(6129), - [anon_sym_BSLASHinputfrom] = ACTIONS(6129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6129), - [anon_sym_BSLASHincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHcaption] = ACTIONS(6129), - [anon_sym_BSLASHcite] = ACTIONS(6129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCite] = ACTIONS(6129), - [anon_sym_BSLASHnocite] = ACTIONS(6129), - [anon_sym_BSLASHcitet] = ACTIONS(6129), - [anon_sym_BSLASHcitep] = ACTIONS(6129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteauthor] = ACTIONS(6129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitetitle] = ACTIONS(6129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteyear] = ACTIONS(6129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitedate] = ACTIONS(6129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteurl] = ACTIONS(6129), - [anon_sym_BSLASHfullcite] = ACTIONS(6129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6129), - [anon_sym_BSLASHcitealt] = ACTIONS(6129), - [anon_sym_BSLASHcitealp] = ACTIONS(6129), - [anon_sym_BSLASHcitetext] = ACTIONS(6129), - [anon_sym_BSLASHparencite] = ACTIONS(6129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHParencite] = ACTIONS(6129), - [anon_sym_BSLASHfootcite] = ACTIONS(6129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6129), - [anon_sym_BSLASHtextcite] = ACTIONS(6129), - [anon_sym_BSLASHTextcite] = ACTIONS(6129), - [anon_sym_BSLASHsmartcite] = ACTIONS(6129), - [anon_sym_BSLASHSmartcite] = ACTIONS(6129), - [anon_sym_BSLASHsupercite] = ACTIONS(6129), - [anon_sym_BSLASHautocite] = ACTIONS(6129), - [anon_sym_BSLASHAutocite] = ACTIONS(6129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHvolcite] = ACTIONS(6129), - [anon_sym_BSLASHVolcite] = ACTIONS(6129), - [anon_sym_BSLASHpvolcite] = ACTIONS(6129), - [anon_sym_BSLASHPvolcite] = ACTIONS(6129), - [anon_sym_BSLASHfvolcite] = ACTIONS(6129), - [anon_sym_BSLASHftvolcite] = ACTIONS(6129), - [anon_sym_BSLASHsvolcite] = ACTIONS(6129), - [anon_sym_BSLASHSvolcite] = ACTIONS(6129), - [anon_sym_BSLASHtvolcite] = ACTIONS(6129), - [anon_sym_BSLASHTvolcite] = ACTIONS(6129), - [anon_sym_BSLASHavolcite] = ACTIONS(6129), - [anon_sym_BSLASHAvolcite] = ACTIONS(6129), - [anon_sym_BSLASHnotecite] = ACTIONS(6129), - [anon_sym_BSLASHNotecite] = ACTIONS(6129), - [anon_sym_BSLASHpnotecite] = ACTIONS(6129), - [anon_sym_BSLASHPnotecite] = ACTIONS(6129), - [anon_sym_BSLASHfnotecite] = ACTIONS(6129), - [anon_sym_BSLASHlabel] = ACTIONS(6129), - [anon_sym_BSLASHref] = ACTIONS(6129), - [anon_sym_BSLASHeqref] = ACTIONS(6129), - [anon_sym_BSLASHvref] = ACTIONS(6129), - [anon_sym_BSLASHVref] = ACTIONS(6129), - [anon_sym_BSLASHautoref] = ACTIONS(6129), - [anon_sym_BSLASHpageref] = ACTIONS(6129), - [anon_sym_BSLASHcref] = ACTIONS(6129), - [anon_sym_BSLASHCref] = ACTIONS(6129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnameCref] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHlabelcref] = ACTIONS(6129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCrefrange] = ACTIONS(6129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnewlabel] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6131), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHdef] = ACTIONS(6129), - [anon_sym_BSLASHlet] = ACTIONS(6129), - [anon_sym_BSLASHleft] = ACTIONS(6129), - [anon_sym_BSLASHbig] = ACTIONS(6129), - [anon_sym_BSLASHBig] = ACTIONS(6129), - [anon_sym_BSLASHbigg] = ACTIONS(6129), - [anon_sym_BSLASHBigg] = ACTIONS(6129), - [anon_sym_BSLASHbigl] = ACTIONS(6129), - [anon_sym_BSLASHBigl] = ACTIONS(6129), - [anon_sym_BSLASHbiggl] = ACTIONS(6129), - [anon_sym_BSLASHBiggl] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6129), - [anon_sym_BSLASHgls] = ACTIONS(6129), - [anon_sym_BSLASHGls] = ACTIONS(6129), - [anon_sym_BSLASHGLS] = ACTIONS(6129), - [anon_sym_BSLASHglspl] = ACTIONS(6129), - [anon_sym_BSLASHGlspl] = ACTIONS(6129), - [anon_sym_BSLASHGLSpl] = ACTIONS(6129), - [anon_sym_BSLASHglsdisp] = ACTIONS(6129), - [anon_sym_BSLASHglslink] = ACTIONS(6129), - [anon_sym_BSLASHglstext] = ACTIONS(6129), - [anon_sym_BSLASHGlstext] = ACTIONS(6129), - [anon_sym_BSLASHGLStext] = ACTIONS(6129), - [anon_sym_BSLASHglsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6129), - [anon_sym_BSLASHglsplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSplural] = ACTIONS(6129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHglsname] = ACTIONS(6129), - [anon_sym_BSLASHGlsname] = ACTIONS(6129), - [anon_sym_BSLASHGLSname] = ACTIONS(6129), - [anon_sym_BSLASHglssymbol] = ACTIONS(6129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6129), - [anon_sym_BSLASHglsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6129), - [anon_sym_BSLASHglsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6129), - [anon_sym_BSLASHglsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6129), - [anon_sym_BSLASHglsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6129), - [anon_sym_BSLASHglsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6129), - [anon_sym_BSLASHnewacronym] = ACTIONS(6129), - [anon_sym_BSLASHacrshort] = ACTIONS(6129), - [anon_sym_BSLASHAcrshort] = ACTIONS(6129), - [anon_sym_BSLASHACRshort] = ACTIONS(6129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6129), - [anon_sym_BSLASHacrlong] = ACTIONS(6129), - [anon_sym_BSLASHAcrlong] = ACTIONS(6129), - [anon_sym_BSLASHACRlong] = ACTIONS(6129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6129), - [anon_sym_BSLASHacrfull] = ACTIONS(6129), - [anon_sym_BSLASHAcrfull] = ACTIONS(6129), - [anon_sym_BSLASHACRfull] = ACTIONS(6129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6129), - [anon_sym_BSLASHacs] = ACTIONS(6129), - [anon_sym_BSLASHAcs] = ACTIONS(6129), - [anon_sym_BSLASHacsp] = ACTIONS(6129), - [anon_sym_BSLASHAcsp] = ACTIONS(6129), - [anon_sym_BSLASHacl] = ACTIONS(6129), - [anon_sym_BSLASHAcl] = ACTIONS(6129), - [anon_sym_BSLASHaclp] = ACTIONS(6129), - [anon_sym_BSLASHAclp] = ACTIONS(6129), - [anon_sym_BSLASHacf] = ACTIONS(6129), - [anon_sym_BSLASHAcf] = ACTIONS(6129), - [anon_sym_BSLASHacfp] = ACTIONS(6129), - [anon_sym_BSLASHAcfp] = ACTIONS(6129), - [anon_sym_BSLASHac] = ACTIONS(6129), - [anon_sym_BSLASHAc] = ACTIONS(6129), - [anon_sym_BSLASHacp] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6129), - [anon_sym_BSLASHcolor] = ACTIONS(6129), - [anon_sym_BSLASHcolorbox] = ACTIONS(6129), - [anon_sym_BSLASHtextcolor] = ACTIONS(6129), - [anon_sym_BSLASHpagecolor] = ACTIONS(6129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6129), - [anon_sym_BSLASHtext] = ACTIONS(6129), - [anon_sym_BSLASHintertext] = ACTIONS(6129), - [anon_sym_shortintertext] = ACTIONS(6129), - }, - [978] = { - [ts_builtin_sym_end] = ACTIONS(6163), - [sym_command_name] = ACTIONS(6161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_EQ] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_BSLASHpart] = ACTIONS(6161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddpart] = ACTIONS(6161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6163), - [anon_sym_BSLASHchapter] = ACTIONS(6161), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddchap] = ACTIONS(6161), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsection] = ACTIONS(6161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddsec] = ACTIONS(6161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubsection] = ACTIONS(6161), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6161), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHparagraph] = ACTIONS(6161), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6161), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6163), - [anon_sym_BSLASHitem] = ACTIONS(6161), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6163), - [anon_sym_LBRACE] = ACTIONS(6163), - [anon_sym_RBRACE] = ACTIONS(6163), - [sym_word] = ACTIONS(6161), - [sym_placeholder] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6163), - [anon_sym_DASH] = ACTIONS(6163), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_COLON] = ACTIONS(6161), - [anon_sym_SQUOTE] = ACTIONS(6161), - [anon_sym__] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6163), - [anon_sym_DOLLAR] = ACTIONS(6161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6163), - [anon_sym_BSLASHbegin] = ACTIONS(6161), - [anon_sym_BSLASHtitle] = ACTIONS(6161), - [anon_sym_BSLASHauthor] = ACTIONS(6161), - [anon_sym_BSLASHusepackage] = ACTIONS(6161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6161), - [anon_sym_BSLASHinclude] = ACTIONS(6161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6161), - [anon_sym_BSLASHinput] = ACTIONS(6161), - [anon_sym_BSLASHsubfile] = ACTIONS(6161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6161), - [anon_sym_BSLASHbibliography] = ACTIONS(6161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6161), - [anon_sym_BSLASHincludesvg] = ACTIONS(6161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6161), - [anon_sym_BSLASHimport] = ACTIONS(6161), - [anon_sym_BSLASHsubimport] = ACTIONS(6161), - [anon_sym_BSLASHinputfrom] = ACTIONS(6161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6161), - [anon_sym_BSLASHincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHcaption] = ACTIONS(6161), - [anon_sym_BSLASHcite] = ACTIONS(6161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCite] = ACTIONS(6161), - [anon_sym_BSLASHnocite] = ACTIONS(6161), - [anon_sym_BSLASHcitet] = ACTIONS(6161), - [anon_sym_BSLASHcitep] = ACTIONS(6161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteauthor] = ACTIONS(6161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitetitle] = ACTIONS(6161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteyear] = ACTIONS(6161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitedate] = ACTIONS(6161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteurl] = ACTIONS(6161), - [anon_sym_BSLASHfullcite] = ACTIONS(6161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6161), - [anon_sym_BSLASHcitealt] = ACTIONS(6161), - [anon_sym_BSLASHcitealp] = ACTIONS(6161), - [anon_sym_BSLASHcitetext] = ACTIONS(6161), - [anon_sym_BSLASHparencite] = ACTIONS(6161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHParencite] = ACTIONS(6161), - [anon_sym_BSLASHfootcite] = ACTIONS(6161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6161), - [anon_sym_BSLASHtextcite] = ACTIONS(6161), - [anon_sym_BSLASHTextcite] = ACTIONS(6161), - [anon_sym_BSLASHsmartcite] = ACTIONS(6161), - [anon_sym_BSLASHSmartcite] = ACTIONS(6161), - [anon_sym_BSLASHsupercite] = ACTIONS(6161), - [anon_sym_BSLASHautocite] = ACTIONS(6161), - [anon_sym_BSLASHAutocite] = ACTIONS(6161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHvolcite] = ACTIONS(6161), - [anon_sym_BSLASHVolcite] = ACTIONS(6161), - [anon_sym_BSLASHpvolcite] = ACTIONS(6161), - [anon_sym_BSLASHPvolcite] = ACTIONS(6161), - [anon_sym_BSLASHfvolcite] = ACTIONS(6161), - [anon_sym_BSLASHftvolcite] = ACTIONS(6161), - [anon_sym_BSLASHsvolcite] = ACTIONS(6161), - [anon_sym_BSLASHSvolcite] = ACTIONS(6161), - [anon_sym_BSLASHtvolcite] = ACTIONS(6161), - [anon_sym_BSLASHTvolcite] = ACTIONS(6161), - [anon_sym_BSLASHavolcite] = ACTIONS(6161), - [anon_sym_BSLASHAvolcite] = ACTIONS(6161), - [anon_sym_BSLASHnotecite] = ACTIONS(6161), - [anon_sym_BSLASHNotecite] = ACTIONS(6161), - [anon_sym_BSLASHpnotecite] = ACTIONS(6161), - [anon_sym_BSLASHPnotecite] = ACTIONS(6161), - [anon_sym_BSLASHfnotecite] = ACTIONS(6161), - [anon_sym_BSLASHlabel] = ACTIONS(6161), - [anon_sym_BSLASHref] = ACTIONS(6161), - [anon_sym_BSLASHeqref] = ACTIONS(6161), - [anon_sym_BSLASHvref] = ACTIONS(6161), - [anon_sym_BSLASHVref] = ACTIONS(6161), - [anon_sym_BSLASHautoref] = ACTIONS(6161), - [anon_sym_BSLASHpageref] = ACTIONS(6161), - [anon_sym_BSLASHcref] = ACTIONS(6161), - [anon_sym_BSLASHCref] = ACTIONS(6161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnameCref] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHlabelcref] = ACTIONS(6161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCrefrange] = ACTIONS(6161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnewlabel] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6163), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHdef] = ACTIONS(6161), - [anon_sym_BSLASHlet] = ACTIONS(6161), - [anon_sym_BSLASHleft] = ACTIONS(6161), - [anon_sym_BSLASHbig] = ACTIONS(6161), - [anon_sym_BSLASHBig] = ACTIONS(6161), - [anon_sym_BSLASHbigg] = ACTIONS(6161), - [anon_sym_BSLASHBigg] = ACTIONS(6161), - [anon_sym_BSLASHbigl] = ACTIONS(6161), - [anon_sym_BSLASHBigl] = ACTIONS(6161), - [anon_sym_BSLASHbiggl] = ACTIONS(6161), - [anon_sym_BSLASHBiggl] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6161), - [anon_sym_BSLASHgls] = ACTIONS(6161), - [anon_sym_BSLASHGls] = ACTIONS(6161), - [anon_sym_BSLASHGLS] = ACTIONS(6161), - [anon_sym_BSLASHglspl] = ACTIONS(6161), - [anon_sym_BSLASHGlspl] = ACTIONS(6161), - [anon_sym_BSLASHGLSpl] = ACTIONS(6161), - [anon_sym_BSLASHglsdisp] = ACTIONS(6161), - [anon_sym_BSLASHglslink] = ACTIONS(6161), - [anon_sym_BSLASHglstext] = ACTIONS(6161), - [anon_sym_BSLASHGlstext] = ACTIONS(6161), - [anon_sym_BSLASHGLStext] = ACTIONS(6161), - [anon_sym_BSLASHglsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6161), - [anon_sym_BSLASHglsplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSplural] = ACTIONS(6161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHglsname] = ACTIONS(6161), - [anon_sym_BSLASHGlsname] = ACTIONS(6161), - [anon_sym_BSLASHGLSname] = ACTIONS(6161), - [anon_sym_BSLASHglssymbol] = ACTIONS(6161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6161), - [anon_sym_BSLASHglsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6161), - [anon_sym_BSLASHglsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6161), - [anon_sym_BSLASHglsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6161), - [anon_sym_BSLASHglsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6161), - [anon_sym_BSLASHglsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6161), - [anon_sym_BSLASHnewacronym] = ACTIONS(6161), - [anon_sym_BSLASHacrshort] = ACTIONS(6161), - [anon_sym_BSLASHAcrshort] = ACTIONS(6161), - [anon_sym_BSLASHACRshort] = ACTIONS(6161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6161), - [anon_sym_BSLASHacrlong] = ACTIONS(6161), - [anon_sym_BSLASHAcrlong] = ACTIONS(6161), - [anon_sym_BSLASHACRlong] = ACTIONS(6161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6161), - [anon_sym_BSLASHacrfull] = ACTIONS(6161), - [anon_sym_BSLASHAcrfull] = ACTIONS(6161), - [anon_sym_BSLASHACRfull] = ACTIONS(6161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6161), - [anon_sym_BSLASHacs] = ACTIONS(6161), - [anon_sym_BSLASHAcs] = ACTIONS(6161), - [anon_sym_BSLASHacsp] = ACTIONS(6161), - [anon_sym_BSLASHAcsp] = ACTIONS(6161), - [anon_sym_BSLASHacl] = ACTIONS(6161), - [anon_sym_BSLASHAcl] = ACTIONS(6161), - [anon_sym_BSLASHaclp] = ACTIONS(6161), - [anon_sym_BSLASHAclp] = ACTIONS(6161), - [anon_sym_BSLASHacf] = ACTIONS(6161), - [anon_sym_BSLASHAcf] = ACTIONS(6161), - [anon_sym_BSLASHacfp] = ACTIONS(6161), - [anon_sym_BSLASHAcfp] = ACTIONS(6161), - [anon_sym_BSLASHac] = ACTIONS(6161), - [anon_sym_BSLASHAc] = ACTIONS(6161), - [anon_sym_BSLASHacp] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6161), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6161), - [anon_sym_BSLASHcolor] = ACTIONS(6161), - [anon_sym_BSLASHcolorbox] = ACTIONS(6161), - [anon_sym_BSLASHtextcolor] = ACTIONS(6161), - [anon_sym_BSLASHpagecolor] = ACTIONS(6161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6161), - [anon_sym_BSLASHtext] = ACTIONS(6161), - [anon_sym_BSLASHintertext] = ACTIONS(6161), - [anon_sym_shortintertext] = ACTIONS(6161), - }, - [979] = { - [ts_builtin_sym_end] = ACTIONS(6247), - [sym_command_name] = ACTIONS(6245), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6247), - [anon_sym_RBRACK] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(6247), - [anon_sym_EQ] = ACTIONS(6247), - [anon_sym_LPAREN] = ACTIONS(6247), - [anon_sym_RPAREN] = ACTIONS(6247), - [anon_sym_BSLASHpart] = ACTIONS(6245), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddpart] = ACTIONS(6245), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6247), - [anon_sym_BSLASHchapter] = ACTIONS(6245), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddchap] = ACTIONS(6245), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsection] = ACTIONS(6245), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddsec] = ACTIONS(6245), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubsection] = ACTIONS(6245), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6245), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHparagraph] = ACTIONS(6245), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6245), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6247), - [anon_sym_BSLASHitem] = ACTIONS(6245), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6247), - [anon_sym_RBRACE] = ACTIONS(6247), - [sym_word] = ACTIONS(6245), - [sym_placeholder] = ACTIONS(6247), - [anon_sym_PLUS] = ACTIONS(6247), - [anon_sym_DASH] = ACTIONS(6247), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_LT] = ACTIONS(6245), - [anon_sym_GT] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6245), - [anon_sym_PIPE] = ACTIONS(6245), - [anon_sym_COLON] = ACTIONS(6245), - [anon_sym_SQUOTE] = ACTIONS(6245), - [anon_sym__] = ACTIONS(6247), - [anon_sym_CARET] = ACTIONS(6247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), - [anon_sym_DOLLAR] = ACTIONS(6245), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), - [anon_sym_BSLASHbegin] = ACTIONS(6245), - [anon_sym_BSLASHtitle] = ACTIONS(6245), - [anon_sym_BSLASHauthor] = ACTIONS(6245), - [anon_sym_BSLASHusepackage] = ACTIONS(6245), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), - [anon_sym_BSLASHinclude] = ACTIONS(6245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), - [anon_sym_BSLASHinput] = ACTIONS(6245), - [anon_sym_BSLASHsubfile] = ACTIONS(6245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), - [anon_sym_BSLASHbibliography] = ACTIONS(6245), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), - [anon_sym_BSLASHincludesvg] = ACTIONS(6245), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), - [anon_sym_BSLASHimport] = ACTIONS(6245), - [anon_sym_BSLASHsubimport] = ACTIONS(6245), - [anon_sym_BSLASHinputfrom] = ACTIONS(6245), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), - [anon_sym_BSLASHincludefrom] = ACTIONS(6245), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), - [anon_sym_BSLASHcaption] = ACTIONS(6245), - [anon_sym_BSLASHcite] = ACTIONS(6245), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCite] = ACTIONS(6245), - [anon_sym_BSLASHnocite] = ACTIONS(6245), - [anon_sym_BSLASHcitet] = ACTIONS(6245), - [anon_sym_BSLASHcitep] = ACTIONS(6245), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteauthor] = ACTIONS(6245), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitetitle] = ACTIONS(6245), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteyear] = ACTIONS(6245), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitedate] = ACTIONS(6245), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteurl] = ACTIONS(6245), - [anon_sym_BSLASHfullcite] = ACTIONS(6245), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), - [anon_sym_BSLASHcitealt] = ACTIONS(6245), - [anon_sym_BSLASHcitealp] = ACTIONS(6245), - [anon_sym_BSLASHcitetext] = ACTIONS(6245), - [anon_sym_BSLASHparencite] = ACTIONS(6245), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHParencite] = ACTIONS(6245), - [anon_sym_BSLASHfootcite] = ACTIONS(6245), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), - [anon_sym_BSLASHtextcite] = ACTIONS(6245), - [anon_sym_BSLASHTextcite] = ACTIONS(6245), - [anon_sym_BSLASHsmartcite] = ACTIONS(6245), - [anon_sym_BSLASHSmartcite] = ACTIONS(6245), - [anon_sym_BSLASHsupercite] = ACTIONS(6245), - [anon_sym_BSLASHautocite] = ACTIONS(6245), - [anon_sym_BSLASHAutocite] = ACTIONS(6245), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHvolcite] = ACTIONS(6245), - [anon_sym_BSLASHVolcite] = ACTIONS(6245), - [anon_sym_BSLASHpvolcite] = ACTIONS(6245), - [anon_sym_BSLASHPvolcite] = ACTIONS(6245), - [anon_sym_BSLASHfvolcite] = ACTIONS(6245), - [anon_sym_BSLASHftvolcite] = ACTIONS(6245), - [anon_sym_BSLASHsvolcite] = ACTIONS(6245), - [anon_sym_BSLASHSvolcite] = ACTIONS(6245), - [anon_sym_BSLASHtvolcite] = ACTIONS(6245), - [anon_sym_BSLASHTvolcite] = ACTIONS(6245), - [anon_sym_BSLASHavolcite] = ACTIONS(6245), - [anon_sym_BSLASHAvolcite] = ACTIONS(6245), - [anon_sym_BSLASHnotecite] = ACTIONS(6245), - [anon_sym_BSLASHNotecite] = ACTIONS(6245), - [anon_sym_BSLASHpnotecite] = ACTIONS(6245), - [anon_sym_BSLASHPnotecite] = ACTIONS(6245), - [anon_sym_BSLASHfnotecite] = ACTIONS(6245), - [anon_sym_BSLASHlabel] = ACTIONS(6245), - [anon_sym_BSLASHref] = ACTIONS(6245), - [anon_sym_BSLASHeqref] = ACTIONS(6245), - [anon_sym_BSLASHvref] = ACTIONS(6245), - [anon_sym_BSLASHVref] = ACTIONS(6245), - [anon_sym_BSLASHautoref] = ACTIONS(6245), - [anon_sym_BSLASHpageref] = ACTIONS(6245), - [anon_sym_BSLASHcref] = ACTIONS(6245), - [anon_sym_BSLASHCref] = ACTIONS(6245), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), - [anon_sym_BSLASHnamecref] = ACTIONS(6245), - [anon_sym_BSLASHnameCref] = ACTIONS(6245), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), - [anon_sym_BSLASHlabelcref] = ACTIONS(6245), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), - [anon_sym_BSLASHcrefrange] = ACTIONS(6245), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCrefrange] = ACTIONS(6245), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), - [anon_sym_BSLASHnewlabel] = ACTIONS(6245), - [anon_sym_BSLASHnewcommand] = ACTIONS(6245), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHdef] = ACTIONS(6245), - [anon_sym_BSLASHlet] = ACTIONS(6245), - [anon_sym_BSLASHleft] = ACTIONS(6245), - [anon_sym_BSLASHbig] = ACTIONS(6245), - [anon_sym_BSLASHBig] = ACTIONS(6245), - [anon_sym_BSLASHbigg] = ACTIONS(6245), - [anon_sym_BSLASHBigg] = ACTIONS(6245), - [anon_sym_BSLASHbigl] = ACTIONS(6245), - [anon_sym_BSLASHBigl] = ACTIONS(6245), - [anon_sym_BSLASHbiggl] = ACTIONS(6245), - [anon_sym_BSLASHBiggl] = ACTIONS(6245), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6245), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), - [anon_sym_BSLASHgls] = ACTIONS(6245), - [anon_sym_BSLASHGls] = ACTIONS(6245), - [anon_sym_BSLASHGLS] = ACTIONS(6245), - [anon_sym_BSLASHglspl] = ACTIONS(6245), - [anon_sym_BSLASHGlspl] = ACTIONS(6245), - [anon_sym_BSLASHGLSpl] = ACTIONS(6245), - [anon_sym_BSLASHglsdisp] = ACTIONS(6245), - [anon_sym_BSLASHglslink] = ACTIONS(6245), - [anon_sym_BSLASHglstext] = ACTIONS(6245), - [anon_sym_BSLASHGlstext] = ACTIONS(6245), - [anon_sym_BSLASHGLStext] = ACTIONS(6245), - [anon_sym_BSLASHglsfirst] = ACTIONS(6245), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), - [anon_sym_BSLASHglsplural] = ACTIONS(6245), - [anon_sym_BSLASHGlsplural] = ACTIONS(6245), - [anon_sym_BSLASHGLSplural] = ACTIONS(6245), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHglsname] = ACTIONS(6245), - [anon_sym_BSLASHGlsname] = ACTIONS(6245), - [anon_sym_BSLASHGLSname] = ACTIONS(6245), - [anon_sym_BSLASHglssymbol] = ACTIONS(6245), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), - [anon_sym_BSLASHglsdesc] = ACTIONS(6245), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), - [anon_sym_BSLASHglsuseri] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), - [anon_sym_BSLASHglsuserii] = ACTIONS(6245), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), - [anon_sym_BSLASHglsuserv] = ACTIONS(6245), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), - [anon_sym_BSLASHglsuservi] = ACTIONS(6245), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), - [anon_sym_BSLASHnewacronym] = ACTIONS(6245), - [anon_sym_BSLASHacrshort] = ACTIONS(6245), - [anon_sym_BSLASHAcrshort] = ACTIONS(6245), - [anon_sym_BSLASHACRshort] = ACTIONS(6245), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), - [anon_sym_BSLASHacrlong] = ACTIONS(6245), - [anon_sym_BSLASHAcrlong] = ACTIONS(6245), - [anon_sym_BSLASHACRlong] = ACTIONS(6245), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), - [anon_sym_BSLASHacrfull] = ACTIONS(6245), - [anon_sym_BSLASHAcrfull] = ACTIONS(6245), - [anon_sym_BSLASHACRfull] = ACTIONS(6245), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), - [anon_sym_BSLASHacs] = ACTIONS(6245), - [anon_sym_BSLASHAcs] = ACTIONS(6245), - [anon_sym_BSLASHacsp] = ACTIONS(6245), - [anon_sym_BSLASHAcsp] = ACTIONS(6245), - [anon_sym_BSLASHacl] = ACTIONS(6245), - [anon_sym_BSLASHAcl] = ACTIONS(6245), - [anon_sym_BSLASHaclp] = ACTIONS(6245), - [anon_sym_BSLASHAclp] = ACTIONS(6245), - [anon_sym_BSLASHacf] = ACTIONS(6245), - [anon_sym_BSLASHAcf] = ACTIONS(6245), - [anon_sym_BSLASHacfp] = ACTIONS(6245), - [anon_sym_BSLASHAcfp] = ACTIONS(6245), - [anon_sym_BSLASHac] = ACTIONS(6245), - [anon_sym_BSLASHAc] = ACTIONS(6245), - [anon_sym_BSLASHacp] = ACTIONS(6245), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), - [anon_sym_BSLASHcolor] = ACTIONS(6245), - [anon_sym_BSLASHcolorbox] = ACTIONS(6245), - [anon_sym_BSLASHtextcolor] = ACTIONS(6245), - [anon_sym_BSLASHpagecolor] = ACTIONS(6245), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), - [anon_sym_BSLASHtext] = ACTIONS(6245), - [anon_sym_BSLASHintertext] = ACTIONS(6245), - [anon_sym_shortintertext] = ACTIONS(6245), - }, - [980] = { - [sym_brack_group_text] = STATE(1172), - [sym_command_name] = ACTIONS(6017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6017), - [anon_sym_LBRACK] = ACTIONS(6713), - [anon_sym_RBRACK] = ACTIONS(6019), - [anon_sym_COMMA] = ACTIONS(6019), - [anon_sym_EQ] = ACTIONS(6019), - [anon_sym_LPAREN] = ACTIONS(6019), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_BSLASHpart] = ACTIONS(6017), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddpart] = ACTIONS(6017), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6019), - [anon_sym_BSLASHchapter] = ACTIONS(6017), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddchap] = ACTIONS(6017), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsection] = ACTIONS(6017), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddsec] = ACTIONS(6017), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubsection] = ACTIONS(6017), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6017), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHparagraph] = ACTIONS(6017), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6017), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6019), - [anon_sym_BSLASHitem] = ACTIONS(6017), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6019), - [anon_sym_LBRACE] = ACTIONS(6019), - [sym_word] = ACTIONS(6017), - [sym_placeholder] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(6017), - [anon_sym_PIPE] = ACTIONS(6017), - [anon_sym_COLON] = ACTIONS(6017), - [anon_sym_SQUOTE] = ACTIONS(6017), - [anon_sym__] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), - [anon_sym_DOLLAR] = ACTIONS(6017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), - [anon_sym_BSLASHbegin] = ACTIONS(6017), - [anon_sym_BSLASHend] = ACTIONS(6017), - [anon_sym_BSLASHtitle] = ACTIONS(6017), - [anon_sym_BSLASHauthor] = ACTIONS(6017), - [anon_sym_BSLASHusepackage] = ACTIONS(6017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), - [anon_sym_BSLASHinclude] = ACTIONS(6017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), - [anon_sym_BSLASHinput] = ACTIONS(6017), - [anon_sym_BSLASHsubfile] = ACTIONS(6017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), - [anon_sym_BSLASHbibliography] = ACTIONS(6017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), - [anon_sym_BSLASHincludesvg] = ACTIONS(6017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), - [anon_sym_BSLASHimport] = ACTIONS(6017), - [anon_sym_BSLASHsubimport] = ACTIONS(6017), - [anon_sym_BSLASHinputfrom] = ACTIONS(6017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), - [anon_sym_BSLASHincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHcaption] = ACTIONS(6017), - [anon_sym_BSLASHcite] = ACTIONS(6017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCite] = ACTIONS(6017), - [anon_sym_BSLASHnocite] = ACTIONS(6017), - [anon_sym_BSLASHcitet] = ACTIONS(6017), - [anon_sym_BSLASHcitep] = ACTIONS(6017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteauthor] = ACTIONS(6017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitetitle] = ACTIONS(6017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteyear] = ACTIONS(6017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitedate] = ACTIONS(6017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteurl] = ACTIONS(6017), - [anon_sym_BSLASHfullcite] = ACTIONS(6017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), - [anon_sym_BSLASHcitealt] = ACTIONS(6017), - [anon_sym_BSLASHcitealp] = ACTIONS(6017), - [anon_sym_BSLASHcitetext] = ACTIONS(6017), - [anon_sym_BSLASHparencite] = ACTIONS(6017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHParencite] = ACTIONS(6017), - [anon_sym_BSLASHfootcite] = ACTIONS(6017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), - [anon_sym_BSLASHtextcite] = ACTIONS(6017), - [anon_sym_BSLASHTextcite] = ACTIONS(6017), - [anon_sym_BSLASHsmartcite] = ACTIONS(6017), - [anon_sym_BSLASHSmartcite] = ACTIONS(6017), - [anon_sym_BSLASHsupercite] = ACTIONS(6017), - [anon_sym_BSLASHautocite] = ACTIONS(6017), - [anon_sym_BSLASHAutocite] = ACTIONS(6017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHvolcite] = ACTIONS(6017), - [anon_sym_BSLASHVolcite] = ACTIONS(6017), - [anon_sym_BSLASHpvolcite] = ACTIONS(6017), - [anon_sym_BSLASHPvolcite] = ACTIONS(6017), - [anon_sym_BSLASHfvolcite] = ACTIONS(6017), - [anon_sym_BSLASHftvolcite] = ACTIONS(6017), - [anon_sym_BSLASHsvolcite] = ACTIONS(6017), - [anon_sym_BSLASHSvolcite] = ACTIONS(6017), - [anon_sym_BSLASHtvolcite] = ACTIONS(6017), - [anon_sym_BSLASHTvolcite] = ACTIONS(6017), - [anon_sym_BSLASHavolcite] = ACTIONS(6017), - [anon_sym_BSLASHAvolcite] = ACTIONS(6017), - [anon_sym_BSLASHnotecite] = ACTIONS(6017), - [anon_sym_BSLASHNotecite] = ACTIONS(6017), - [anon_sym_BSLASHpnotecite] = ACTIONS(6017), - [anon_sym_BSLASHPnotecite] = ACTIONS(6017), - [anon_sym_BSLASHfnotecite] = ACTIONS(6017), - [anon_sym_BSLASHlabel] = ACTIONS(6017), - [anon_sym_BSLASHref] = ACTIONS(6017), - [anon_sym_BSLASHeqref] = ACTIONS(6017), - [anon_sym_BSLASHvref] = ACTIONS(6017), - [anon_sym_BSLASHVref] = ACTIONS(6017), - [anon_sym_BSLASHautoref] = ACTIONS(6017), - [anon_sym_BSLASHpageref] = ACTIONS(6017), - [anon_sym_BSLASHcref] = ACTIONS(6017), - [anon_sym_BSLASHCref] = ACTIONS(6017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnameCref] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHlabelcref] = ACTIONS(6017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCrefrange] = ACTIONS(6017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnewlabel] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHdef] = ACTIONS(6017), - [anon_sym_BSLASHlet] = ACTIONS(6017), - [anon_sym_BSLASHleft] = ACTIONS(6017), - [anon_sym_BSLASHbig] = ACTIONS(6017), - [anon_sym_BSLASHBig] = ACTIONS(6017), - [anon_sym_BSLASHbigg] = ACTIONS(6017), - [anon_sym_BSLASHBigg] = ACTIONS(6017), - [anon_sym_BSLASHbigl] = ACTIONS(6017), - [anon_sym_BSLASHBigl] = ACTIONS(6017), - [anon_sym_BSLASHbiggl] = ACTIONS(6017), - [anon_sym_BSLASHBiggl] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), - [anon_sym_BSLASHgls] = ACTIONS(6017), - [anon_sym_BSLASHGls] = ACTIONS(6017), - [anon_sym_BSLASHGLS] = ACTIONS(6017), - [anon_sym_BSLASHglspl] = ACTIONS(6017), - [anon_sym_BSLASHGlspl] = ACTIONS(6017), - [anon_sym_BSLASHGLSpl] = ACTIONS(6017), - [anon_sym_BSLASHglsdisp] = ACTIONS(6017), - [anon_sym_BSLASHglslink] = ACTIONS(6017), - [anon_sym_BSLASHglstext] = ACTIONS(6017), - [anon_sym_BSLASHGlstext] = ACTIONS(6017), - [anon_sym_BSLASHGLStext] = ACTIONS(6017), - [anon_sym_BSLASHglsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), - [anon_sym_BSLASHglsplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSplural] = ACTIONS(6017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHglsname] = ACTIONS(6017), - [anon_sym_BSLASHGlsname] = ACTIONS(6017), - [anon_sym_BSLASHGLSname] = ACTIONS(6017), - [anon_sym_BSLASHglssymbol] = ACTIONS(6017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), - [anon_sym_BSLASHglsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), - [anon_sym_BSLASHglsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), - [anon_sym_BSLASHglsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), - [anon_sym_BSLASHglsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), - [anon_sym_BSLASHglsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), - [anon_sym_BSLASHnewacronym] = ACTIONS(6017), - [anon_sym_BSLASHacrshort] = ACTIONS(6017), - [anon_sym_BSLASHAcrshort] = ACTIONS(6017), - [anon_sym_BSLASHACRshort] = ACTIONS(6017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), - [anon_sym_BSLASHacrlong] = ACTIONS(6017), - [anon_sym_BSLASHAcrlong] = ACTIONS(6017), - [anon_sym_BSLASHACRlong] = ACTIONS(6017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), - [anon_sym_BSLASHacrfull] = ACTIONS(6017), - [anon_sym_BSLASHAcrfull] = ACTIONS(6017), - [anon_sym_BSLASHACRfull] = ACTIONS(6017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), - [anon_sym_BSLASHacs] = ACTIONS(6017), - [anon_sym_BSLASHAcs] = ACTIONS(6017), - [anon_sym_BSLASHacsp] = ACTIONS(6017), - [anon_sym_BSLASHAcsp] = ACTIONS(6017), - [anon_sym_BSLASHacl] = ACTIONS(6017), - [anon_sym_BSLASHAcl] = ACTIONS(6017), - [anon_sym_BSLASHaclp] = ACTIONS(6017), - [anon_sym_BSLASHAclp] = ACTIONS(6017), - [anon_sym_BSLASHacf] = ACTIONS(6017), - [anon_sym_BSLASHAcf] = ACTIONS(6017), - [anon_sym_BSLASHacfp] = ACTIONS(6017), - [anon_sym_BSLASHAcfp] = ACTIONS(6017), - [anon_sym_BSLASHac] = ACTIONS(6017), - [anon_sym_BSLASHAc] = ACTIONS(6017), - [anon_sym_BSLASHacp] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), - [anon_sym_BSLASHcolor] = ACTIONS(6017), - [anon_sym_BSLASHcolorbox] = ACTIONS(6017), - [anon_sym_BSLASHtextcolor] = ACTIONS(6017), - [anon_sym_BSLASHpagecolor] = ACTIONS(6017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), - [anon_sym_BSLASHtext] = ACTIONS(6017), - [anon_sym_BSLASHintertext] = ACTIONS(6017), - [anon_sym_shortintertext] = ACTIONS(6017), - }, - [981] = { - [sym_curly_group] = STATE(1167), - [sym_command_name] = ACTIONS(6013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6013), - [anon_sym_LBRACK] = ACTIONS(6015), - [anon_sym_RBRACK] = ACTIONS(6015), - [anon_sym_COMMA] = ACTIONS(6015), - [anon_sym_EQ] = ACTIONS(6015), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_RPAREN] = ACTIONS(6015), - [anon_sym_BSLASHpart] = ACTIONS(6013), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddpart] = ACTIONS(6013), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6015), - [anon_sym_BSLASHchapter] = ACTIONS(6013), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddchap] = ACTIONS(6013), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsection] = ACTIONS(6013), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddsec] = ACTIONS(6013), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubsection] = ACTIONS(6013), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6013), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHparagraph] = ACTIONS(6013), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6013), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6015), - [anon_sym_BSLASHitem] = ACTIONS(6013), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6015), - [anon_sym_LBRACE] = ACTIONS(726), - [sym_word] = ACTIONS(6013), - [sym_placeholder] = ACTIONS(6015), - [anon_sym_PLUS] = ACTIONS(6015), - [anon_sym_DASH] = ACTIONS(6015), - [anon_sym_STAR] = ACTIONS(6015), - [anon_sym_SLASH] = ACTIONS(6015), - [anon_sym_LT] = ACTIONS(6013), - [anon_sym_GT] = ACTIONS(6013), - [anon_sym_BANG] = ACTIONS(6013), - [anon_sym_PIPE] = ACTIONS(6013), - [anon_sym_COLON] = ACTIONS(6013), - [anon_sym_SQUOTE] = ACTIONS(6013), - [anon_sym__] = ACTIONS(6015), - [anon_sym_CARET] = ACTIONS(6015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), - [anon_sym_DOLLAR] = ACTIONS(6013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), - [anon_sym_BSLASHbegin] = ACTIONS(6013), - [anon_sym_BSLASHend] = ACTIONS(6013), - [anon_sym_BSLASHtitle] = ACTIONS(6013), - [anon_sym_BSLASHauthor] = ACTIONS(6013), - [anon_sym_BSLASHusepackage] = ACTIONS(6013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6013), - [anon_sym_BSLASHinclude] = ACTIONS(6013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6013), - [anon_sym_BSLASHinput] = ACTIONS(6013), - [anon_sym_BSLASHsubfile] = ACTIONS(6013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6013), - [anon_sym_BSLASHbibliography] = ACTIONS(6013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6013), - [anon_sym_BSLASHincludesvg] = ACTIONS(6013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6013), - [anon_sym_BSLASHimport] = ACTIONS(6013), - [anon_sym_BSLASHsubimport] = ACTIONS(6013), - [anon_sym_BSLASHinputfrom] = ACTIONS(6013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6013), - [anon_sym_BSLASHincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHcaption] = ACTIONS(6013), - [anon_sym_BSLASHcite] = ACTIONS(6013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCite] = ACTIONS(6013), - [anon_sym_BSLASHnocite] = ACTIONS(6013), - [anon_sym_BSLASHcitet] = ACTIONS(6013), - [anon_sym_BSLASHcitep] = ACTIONS(6013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteauthor] = ACTIONS(6013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitetitle] = ACTIONS(6013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteyear] = ACTIONS(6013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitedate] = ACTIONS(6013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteurl] = ACTIONS(6013), - [anon_sym_BSLASHfullcite] = ACTIONS(6013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6013), - [anon_sym_BSLASHcitealt] = ACTIONS(6013), - [anon_sym_BSLASHcitealp] = ACTIONS(6013), - [anon_sym_BSLASHcitetext] = ACTIONS(6013), - [anon_sym_BSLASHparencite] = ACTIONS(6013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHParencite] = ACTIONS(6013), - [anon_sym_BSLASHfootcite] = ACTIONS(6013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6013), - [anon_sym_BSLASHtextcite] = ACTIONS(6013), - [anon_sym_BSLASHTextcite] = ACTIONS(6013), - [anon_sym_BSLASHsmartcite] = ACTIONS(6013), - [anon_sym_BSLASHSmartcite] = ACTIONS(6013), - [anon_sym_BSLASHsupercite] = ACTIONS(6013), - [anon_sym_BSLASHautocite] = ACTIONS(6013), - [anon_sym_BSLASHAutocite] = ACTIONS(6013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHvolcite] = ACTIONS(6013), - [anon_sym_BSLASHVolcite] = ACTIONS(6013), - [anon_sym_BSLASHpvolcite] = ACTIONS(6013), - [anon_sym_BSLASHPvolcite] = ACTIONS(6013), - [anon_sym_BSLASHfvolcite] = ACTIONS(6013), - [anon_sym_BSLASHftvolcite] = ACTIONS(6013), - [anon_sym_BSLASHsvolcite] = ACTIONS(6013), - [anon_sym_BSLASHSvolcite] = ACTIONS(6013), - [anon_sym_BSLASHtvolcite] = ACTIONS(6013), - [anon_sym_BSLASHTvolcite] = ACTIONS(6013), - [anon_sym_BSLASHavolcite] = ACTIONS(6013), - [anon_sym_BSLASHAvolcite] = ACTIONS(6013), - [anon_sym_BSLASHnotecite] = ACTIONS(6013), - [anon_sym_BSLASHNotecite] = ACTIONS(6013), - [anon_sym_BSLASHpnotecite] = ACTIONS(6013), - [anon_sym_BSLASHPnotecite] = ACTIONS(6013), - [anon_sym_BSLASHfnotecite] = ACTIONS(6013), - [anon_sym_BSLASHlabel] = ACTIONS(6013), - [anon_sym_BSLASHref] = ACTIONS(6013), - [anon_sym_BSLASHeqref] = ACTIONS(6013), - [anon_sym_BSLASHvref] = ACTIONS(6013), - [anon_sym_BSLASHVref] = ACTIONS(6013), - [anon_sym_BSLASHautoref] = ACTIONS(6013), - [anon_sym_BSLASHpageref] = ACTIONS(6013), - [anon_sym_BSLASHcref] = ACTIONS(6013), - [anon_sym_BSLASHCref] = ACTIONS(6013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnameCref] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHlabelcref] = ACTIONS(6013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCrefrange] = ACTIONS(6013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnewlabel] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHdef] = ACTIONS(6013), - [anon_sym_BSLASHlet] = ACTIONS(6013), - [anon_sym_BSLASHleft] = ACTIONS(6013), - [anon_sym_BSLASHbig] = ACTIONS(6013), - [anon_sym_BSLASHBig] = ACTIONS(6013), - [anon_sym_BSLASHbigg] = ACTIONS(6013), - [anon_sym_BSLASHBigg] = ACTIONS(6013), - [anon_sym_BSLASHbigl] = ACTIONS(6013), - [anon_sym_BSLASHBigl] = ACTIONS(6013), - [anon_sym_BSLASHbiggl] = ACTIONS(6013), - [anon_sym_BSLASHBiggl] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6013), - [anon_sym_BSLASHgls] = ACTIONS(6013), - [anon_sym_BSLASHGls] = ACTIONS(6013), - [anon_sym_BSLASHGLS] = ACTIONS(6013), - [anon_sym_BSLASHglspl] = ACTIONS(6013), - [anon_sym_BSLASHGlspl] = ACTIONS(6013), - [anon_sym_BSLASHGLSpl] = ACTIONS(6013), - [anon_sym_BSLASHglsdisp] = ACTIONS(6013), - [anon_sym_BSLASHglslink] = ACTIONS(6013), - [anon_sym_BSLASHglstext] = ACTIONS(6013), - [anon_sym_BSLASHGlstext] = ACTIONS(6013), - [anon_sym_BSLASHGLStext] = ACTIONS(6013), - [anon_sym_BSLASHglsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6013), - [anon_sym_BSLASHglsplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSplural] = ACTIONS(6013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHglsname] = ACTIONS(6013), - [anon_sym_BSLASHGlsname] = ACTIONS(6013), - [anon_sym_BSLASHGLSname] = ACTIONS(6013), - [anon_sym_BSLASHglssymbol] = ACTIONS(6013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6013), - [anon_sym_BSLASHglsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6013), - [anon_sym_BSLASHglsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6013), - [anon_sym_BSLASHglsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6013), - [anon_sym_BSLASHglsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6013), - [anon_sym_BSLASHglsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6013), - [anon_sym_BSLASHnewacronym] = ACTIONS(6013), - [anon_sym_BSLASHacrshort] = ACTIONS(6013), - [anon_sym_BSLASHAcrshort] = ACTIONS(6013), - [anon_sym_BSLASHACRshort] = ACTIONS(6013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6013), - [anon_sym_BSLASHacrlong] = ACTIONS(6013), - [anon_sym_BSLASHAcrlong] = ACTIONS(6013), - [anon_sym_BSLASHACRlong] = ACTIONS(6013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6013), - [anon_sym_BSLASHacrfull] = ACTIONS(6013), - [anon_sym_BSLASHAcrfull] = ACTIONS(6013), - [anon_sym_BSLASHACRfull] = ACTIONS(6013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6013), - [anon_sym_BSLASHacs] = ACTIONS(6013), - [anon_sym_BSLASHAcs] = ACTIONS(6013), - [anon_sym_BSLASHacsp] = ACTIONS(6013), - [anon_sym_BSLASHAcsp] = ACTIONS(6013), - [anon_sym_BSLASHacl] = ACTIONS(6013), - [anon_sym_BSLASHAcl] = ACTIONS(6013), - [anon_sym_BSLASHaclp] = ACTIONS(6013), - [anon_sym_BSLASHAclp] = ACTIONS(6013), - [anon_sym_BSLASHacf] = ACTIONS(6013), - [anon_sym_BSLASHAcf] = ACTIONS(6013), - [anon_sym_BSLASHacfp] = ACTIONS(6013), - [anon_sym_BSLASHAcfp] = ACTIONS(6013), - [anon_sym_BSLASHac] = ACTIONS(6013), - [anon_sym_BSLASHAc] = ACTIONS(6013), - [anon_sym_BSLASHacp] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6013), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6013), - [anon_sym_BSLASHcolor] = ACTIONS(6013), - [anon_sym_BSLASHcolorbox] = ACTIONS(6013), - [anon_sym_BSLASHtextcolor] = ACTIONS(6013), - [anon_sym_BSLASHpagecolor] = ACTIONS(6013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6013), - [anon_sym_BSLASHtext] = ACTIONS(6013), - [anon_sym_BSLASHintertext] = ACTIONS(6013), - [anon_sym_shortintertext] = ACTIONS(6013), - }, - [982] = { - [sym_command_name] = ACTIONS(5997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5997), - [anon_sym_BSLASHfi] = ACTIONS(6717), - [anon_sym_LBRACK] = ACTIONS(6001), - [anon_sym_RBRACK] = ACTIONS(6001), - [anon_sym_COMMA] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(6001), - [anon_sym_LPAREN] = ACTIONS(6001), - [anon_sym_RPAREN] = ACTIONS(6001), - [anon_sym_BSLASHpart] = ACTIONS(5997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddpart] = ACTIONS(5997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6001), - [anon_sym_BSLASHchapter] = ACTIONS(5997), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddchap] = ACTIONS(5997), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsection] = ACTIONS(5997), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHaddsec] = ACTIONS(5997), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubsection] = ACTIONS(5997), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5997), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6001), - [anon_sym_BSLASHparagraph] = ACTIONS(5997), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5997), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6001), - [anon_sym_BSLASHitem] = ACTIONS(5997), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6001), - [anon_sym_LBRACE] = ACTIONS(6001), - [sym_word] = ACTIONS(5997), - [sym_placeholder] = ACTIONS(6001), - [anon_sym_PLUS] = ACTIONS(6001), - [anon_sym_DASH] = ACTIONS(6001), - [anon_sym_STAR] = ACTIONS(6001), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_COLON] = ACTIONS(5997), - [anon_sym_SQUOTE] = ACTIONS(5997), - [anon_sym__] = ACTIONS(6001), - [anon_sym_CARET] = ACTIONS(6001), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6001), - [anon_sym_BSLASHbegin] = ACTIONS(5997), - [anon_sym_BSLASHtitle] = ACTIONS(5997), - [anon_sym_BSLASHauthor] = ACTIONS(5997), - [anon_sym_BSLASHusepackage] = ACTIONS(5997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5997), - [anon_sym_BSLASHinclude] = ACTIONS(5997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5997), - [anon_sym_BSLASHinput] = ACTIONS(5997), - [anon_sym_BSLASHsubfile] = ACTIONS(5997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5997), - [anon_sym_BSLASHbibliography] = ACTIONS(5997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5997), - [anon_sym_BSLASHincludesvg] = ACTIONS(5997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5997), - [anon_sym_BSLASHimport] = ACTIONS(5997), - [anon_sym_BSLASHsubimport] = ACTIONS(5997), - [anon_sym_BSLASHinputfrom] = ACTIONS(5997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5997), - [anon_sym_BSLASHincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHcaption] = ACTIONS(5997), - [anon_sym_BSLASHcite] = ACTIONS(5997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCite] = ACTIONS(5997), - [anon_sym_BSLASHnocite] = ACTIONS(5997), - [anon_sym_BSLASHcitet] = ACTIONS(5997), - [anon_sym_BSLASHcitep] = ACTIONS(5997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteyear] = ACTIONS(5997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitedate] = ACTIONS(5997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteurl] = ACTIONS(5997), - [anon_sym_BSLASHfullcite] = ACTIONS(5997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5997), - [anon_sym_BSLASHcitealt] = ACTIONS(5997), - [anon_sym_BSLASHcitealp] = ACTIONS(5997), - [anon_sym_BSLASHcitetext] = ACTIONS(5997), - [anon_sym_BSLASHparencite] = ACTIONS(5997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHParencite] = ACTIONS(5997), - [anon_sym_BSLASHfootcite] = ACTIONS(5997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5997), - [anon_sym_BSLASHtextcite] = ACTIONS(5997), - [anon_sym_BSLASHTextcite] = ACTIONS(5997), - [anon_sym_BSLASHsmartcite] = ACTIONS(5997), - [anon_sym_BSLASHSmartcite] = ACTIONS(5997), - [anon_sym_BSLASHsupercite] = ACTIONS(5997), - [anon_sym_BSLASHautocite] = ACTIONS(5997), - [anon_sym_BSLASHAutocite] = ACTIONS(5997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHvolcite] = ACTIONS(5997), - [anon_sym_BSLASHVolcite] = ACTIONS(5997), - [anon_sym_BSLASHpvolcite] = ACTIONS(5997), - [anon_sym_BSLASHPvolcite] = ACTIONS(5997), - [anon_sym_BSLASHfvolcite] = ACTIONS(5997), - [anon_sym_BSLASHftvolcite] = ACTIONS(5997), - [anon_sym_BSLASHsvolcite] = ACTIONS(5997), - [anon_sym_BSLASHSvolcite] = ACTIONS(5997), - [anon_sym_BSLASHtvolcite] = ACTIONS(5997), - [anon_sym_BSLASHTvolcite] = ACTIONS(5997), - [anon_sym_BSLASHavolcite] = ACTIONS(5997), - [anon_sym_BSLASHAvolcite] = ACTIONS(5997), - [anon_sym_BSLASHnotecite] = ACTIONS(5997), - [anon_sym_BSLASHNotecite] = ACTIONS(5997), - [anon_sym_BSLASHpnotecite] = ACTIONS(5997), - [anon_sym_BSLASHPnotecite] = ACTIONS(5997), - [anon_sym_BSLASHfnotecite] = ACTIONS(5997), - [anon_sym_BSLASHlabel] = ACTIONS(5997), - [anon_sym_BSLASHref] = ACTIONS(5997), - [anon_sym_BSLASHeqref] = ACTIONS(5997), - [anon_sym_BSLASHvref] = ACTIONS(5997), - [anon_sym_BSLASHVref] = ACTIONS(5997), - [anon_sym_BSLASHautoref] = ACTIONS(5997), - [anon_sym_BSLASHpageref] = ACTIONS(5997), - [anon_sym_BSLASHcref] = ACTIONS(5997), - [anon_sym_BSLASHCref] = ACTIONS(5997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnameCref] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHlabelcref] = ACTIONS(5997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHdef] = ACTIONS(5997), - [anon_sym_BSLASHlet] = ACTIONS(5997), - [anon_sym_BSLASHleft] = ACTIONS(5997), - [anon_sym_BSLASHbig] = ACTIONS(5997), - [anon_sym_BSLASHBig] = ACTIONS(5997), - [anon_sym_BSLASHbigg] = ACTIONS(5997), - [anon_sym_BSLASHBigg] = ACTIONS(5997), - [anon_sym_BSLASHbigl] = ACTIONS(5997), - [anon_sym_BSLASHBigl] = ACTIONS(5997), - [anon_sym_BSLASHbiggl] = ACTIONS(5997), - [anon_sym_BSLASHBiggl] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5997), - [anon_sym_BSLASHgls] = ACTIONS(5997), - [anon_sym_BSLASHGls] = ACTIONS(5997), - [anon_sym_BSLASHGLS] = ACTIONS(5997), - [anon_sym_BSLASHglspl] = ACTIONS(5997), - [anon_sym_BSLASHGlspl] = ACTIONS(5997), - [anon_sym_BSLASHGLSpl] = ACTIONS(5997), - [anon_sym_BSLASHglsdisp] = ACTIONS(5997), - [anon_sym_BSLASHglslink] = ACTIONS(5997), - [anon_sym_BSLASHglstext] = ACTIONS(5997), - [anon_sym_BSLASHGlstext] = ACTIONS(5997), - [anon_sym_BSLASHGLStext] = ACTIONS(5997), - [anon_sym_BSLASHglsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5997), - [anon_sym_BSLASHglsplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSplural] = ACTIONS(5997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHglsname] = ACTIONS(5997), - [anon_sym_BSLASHGlsname] = ACTIONS(5997), - [anon_sym_BSLASHGLSname] = ACTIONS(5997), - [anon_sym_BSLASHglssymbol] = ACTIONS(5997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5997), - [anon_sym_BSLASHglsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5997), - [anon_sym_BSLASHglsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5997), - [anon_sym_BSLASHglsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5997), - [anon_sym_BSLASHglsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5997), - [anon_sym_BSLASHglsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5997), - [anon_sym_BSLASHnewacronym] = ACTIONS(5997), - [anon_sym_BSLASHacrshort] = ACTIONS(5997), - [anon_sym_BSLASHAcrshort] = ACTIONS(5997), - [anon_sym_BSLASHACRshort] = ACTIONS(5997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5997), - [anon_sym_BSLASHacrlong] = ACTIONS(5997), - [anon_sym_BSLASHAcrlong] = ACTIONS(5997), - [anon_sym_BSLASHACRlong] = ACTIONS(5997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5997), - [anon_sym_BSLASHacrfull] = ACTIONS(5997), - [anon_sym_BSLASHAcrfull] = ACTIONS(5997), - [anon_sym_BSLASHACRfull] = ACTIONS(5997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5997), - [anon_sym_BSLASHacs] = ACTIONS(5997), - [anon_sym_BSLASHAcs] = ACTIONS(5997), - [anon_sym_BSLASHacsp] = ACTIONS(5997), - [anon_sym_BSLASHAcsp] = ACTIONS(5997), - [anon_sym_BSLASHacl] = ACTIONS(5997), - [anon_sym_BSLASHAcl] = ACTIONS(5997), - [anon_sym_BSLASHaclp] = ACTIONS(5997), - [anon_sym_BSLASHAclp] = ACTIONS(5997), - [anon_sym_BSLASHacf] = ACTIONS(5997), - [anon_sym_BSLASHAcf] = ACTIONS(5997), - [anon_sym_BSLASHacfp] = ACTIONS(5997), - [anon_sym_BSLASHAcfp] = ACTIONS(5997), - [anon_sym_BSLASHac] = ACTIONS(5997), - [anon_sym_BSLASHAc] = ACTIONS(5997), - [anon_sym_BSLASHacp] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5997), - [anon_sym_BSLASHcolor] = ACTIONS(5997), - [anon_sym_BSLASHcolorbox] = ACTIONS(5997), - [anon_sym_BSLASHtextcolor] = ACTIONS(5997), - [anon_sym_BSLASHpagecolor] = ACTIONS(5997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5997), - [anon_sym_BSLASHtext] = ACTIONS(5997), - [anon_sym_BSLASHintertext] = ACTIONS(5997), - [anon_sym_shortintertext] = ACTIONS(5997), - }, - [983] = { - [ts_builtin_sym_end] = ACTIONS(6383), - [sym_command_name] = ACTIONS(6381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(6383), - [anon_sym_RBRACK] = ACTIONS(6383), - [anon_sym_COMMA] = ACTIONS(6383), - [anon_sym_EQ] = ACTIONS(6383), - [anon_sym_LPAREN] = ACTIONS(6383), - [anon_sym_RPAREN] = ACTIONS(6383), - [anon_sym_BSLASHpart] = ACTIONS(6381), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddpart] = ACTIONS(6381), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6383), - [anon_sym_BSLASHchapter] = ACTIONS(6381), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddchap] = ACTIONS(6381), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsection] = ACTIONS(6381), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddsec] = ACTIONS(6381), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubsection] = ACTIONS(6381), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6381), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHparagraph] = ACTIONS(6381), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6381), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6383), - [anon_sym_BSLASHitem] = ACTIONS(6381), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6383), - [anon_sym_LBRACE] = ACTIONS(6383), - [anon_sym_RBRACE] = ACTIONS(6383), - [sym_word] = ACTIONS(6381), - [sym_placeholder] = ACTIONS(6383), - [anon_sym_PLUS] = ACTIONS(6383), - [anon_sym_DASH] = ACTIONS(6383), - [anon_sym_STAR] = ACTIONS(6383), - [anon_sym_SLASH] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_COLON] = ACTIONS(6381), - [anon_sym_SQUOTE] = ACTIONS(6381), - [anon_sym__] = ACTIONS(6383), - [anon_sym_CARET] = ACTIONS(6383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6383), - [anon_sym_DOLLAR] = ACTIONS(6381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6383), - [anon_sym_BSLASHbegin] = ACTIONS(6381), - [anon_sym_BSLASHtitle] = ACTIONS(6381), - [anon_sym_BSLASHauthor] = ACTIONS(6381), - [anon_sym_BSLASHusepackage] = ACTIONS(6381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6381), - [anon_sym_BSLASHinclude] = ACTIONS(6381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6381), - [anon_sym_BSLASHinput] = ACTIONS(6381), - [anon_sym_BSLASHsubfile] = ACTIONS(6381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6381), - [anon_sym_BSLASHbibliography] = ACTIONS(6381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6381), - [anon_sym_BSLASHincludesvg] = ACTIONS(6381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6381), - [anon_sym_BSLASHimport] = ACTIONS(6381), - [anon_sym_BSLASHsubimport] = ACTIONS(6381), - [anon_sym_BSLASHinputfrom] = ACTIONS(6381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6381), - [anon_sym_BSLASHincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHcaption] = ACTIONS(6381), - [anon_sym_BSLASHcite] = ACTIONS(6381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCite] = ACTIONS(6381), - [anon_sym_BSLASHnocite] = ACTIONS(6381), - [anon_sym_BSLASHcitet] = ACTIONS(6381), - [anon_sym_BSLASHcitep] = ACTIONS(6381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteauthor] = ACTIONS(6381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitetitle] = ACTIONS(6381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteyear] = ACTIONS(6381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitedate] = ACTIONS(6381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteurl] = ACTIONS(6381), - [anon_sym_BSLASHfullcite] = ACTIONS(6381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6381), - [anon_sym_BSLASHcitealt] = ACTIONS(6381), - [anon_sym_BSLASHcitealp] = ACTIONS(6381), - [anon_sym_BSLASHcitetext] = ACTIONS(6381), - [anon_sym_BSLASHparencite] = ACTIONS(6381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHParencite] = ACTIONS(6381), - [anon_sym_BSLASHfootcite] = ACTIONS(6381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6381), - [anon_sym_BSLASHtextcite] = ACTIONS(6381), - [anon_sym_BSLASHTextcite] = ACTIONS(6381), - [anon_sym_BSLASHsmartcite] = ACTIONS(6381), - [anon_sym_BSLASHSmartcite] = ACTIONS(6381), - [anon_sym_BSLASHsupercite] = ACTIONS(6381), - [anon_sym_BSLASHautocite] = ACTIONS(6381), - [anon_sym_BSLASHAutocite] = ACTIONS(6381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHvolcite] = ACTIONS(6381), - [anon_sym_BSLASHVolcite] = ACTIONS(6381), - [anon_sym_BSLASHpvolcite] = ACTIONS(6381), - [anon_sym_BSLASHPvolcite] = ACTIONS(6381), - [anon_sym_BSLASHfvolcite] = ACTIONS(6381), - [anon_sym_BSLASHftvolcite] = ACTIONS(6381), - [anon_sym_BSLASHsvolcite] = ACTIONS(6381), - [anon_sym_BSLASHSvolcite] = ACTIONS(6381), - [anon_sym_BSLASHtvolcite] = ACTIONS(6381), - [anon_sym_BSLASHTvolcite] = ACTIONS(6381), - [anon_sym_BSLASHavolcite] = ACTIONS(6381), - [anon_sym_BSLASHAvolcite] = ACTIONS(6381), - [anon_sym_BSLASHnotecite] = ACTIONS(6381), - [anon_sym_BSLASHNotecite] = ACTIONS(6381), - [anon_sym_BSLASHpnotecite] = ACTIONS(6381), - [anon_sym_BSLASHPnotecite] = ACTIONS(6381), - [anon_sym_BSLASHfnotecite] = ACTIONS(6381), - [anon_sym_BSLASHlabel] = ACTIONS(6381), - [anon_sym_BSLASHref] = ACTIONS(6381), - [anon_sym_BSLASHeqref] = ACTIONS(6381), - [anon_sym_BSLASHvref] = ACTIONS(6381), - [anon_sym_BSLASHVref] = ACTIONS(6381), - [anon_sym_BSLASHautoref] = ACTIONS(6381), - [anon_sym_BSLASHpageref] = ACTIONS(6381), - [anon_sym_BSLASHcref] = ACTIONS(6381), - [anon_sym_BSLASHCref] = ACTIONS(6381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnameCref] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHlabelcref] = ACTIONS(6381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCrefrange] = ACTIONS(6381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnewlabel] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6383), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHdef] = ACTIONS(6381), - [anon_sym_BSLASHlet] = ACTIONS(6381), - [anon_sym_BSLASHleft] = ACTIONS(6381), - [anon_sym_BSLASHbig] = ACTIONS(6381), - [anon_sym_BSLASHBig] = ACTIONS(6381), - [anon_sym_BSLASHbigg] = ACTIONS(6381), - [anon_sym_BSLASHBigg] = ACTIONS(6381), - [anon_sym_BSLASHbigl] = ACTIONS(6381), - [anon_sym_BSLASHBigl] = ACTIONS(6381), - [anon_sym_BSLASHbiggl] = ACTIONS(6381), - [anon_sym_BSLASHBiggl] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6381), - [anon_sym_BSLASHgls] = ACTIONS(6381), - [anon_sym_BSLASHGls] = ACTIONS(6381), - [anon_sym_BSLASHGLS] = ACTIONS(6381), - [anon_sym_BSLASHglspl] = ACTIONS(6381), - [anon_sym_BSLASHGlspl] = ACTIONS(6381), - [anon_sym_BSLASHGLSpl] = ACTIONS(6381), - [anon_sym_BSLASHglsdisp] = ACTIONS(6381), - [anon_sym_BSLASHglslink] = ACTIONS(6381), - [anon_sym_BSLASHglstext] = ACTIONS(6381), - [anon_sym_BSLASHGlstext] = ACTIONS(6381), - [anon_sym_BSLASHGLStext] = ACTIONS(6381), - [anon_sym_BSLASHglsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6381), - [anon_sym_BSLASHglsplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSplural] = ACTIONS(6381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHglsname] = ACTIONS(6381), - [anon_sym_BSLASHGlsname] = ACTIONS(6381), - [anon_sym_BSLASHGLSname] = ACTIONS(6381), - [anon_sym_BSLASHglssymbol] = ACTIONS(6381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6381), - [anon_sym_BSLASHglsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6381), - [anon_sym_BSLASHglsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6381), - [anon_sym_BSLASHglsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6381), - [anon_sym_BSLASHglsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6381), - [anon_sym_BSLASHglsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6381), - [anon_sym_BSLASHnewacronym] = ACTIONS(6381), - [anon_sym_BSLASHacrshort] = ACTIONS(6381), - [anon_sym_BSLASHAcrshort] = ACTIONS(6381), - [anon_sym_BSLASHACRshort] = ACTIONS(6381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6381), - [anon_sym_BSLASHacrlong] = ACTIONS(6381), - [anon_sym_BSLASHAcrlong] = ACTIONS(6381), - [anon_sym_BSLASHACRlong] = ACTIONS(6381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6381), - [anon_sym_BSLASHacrfull] = ACTIONS(6381), - [anon_sym_BSLASHAcrfull] = ACTIONS(6381), - [anon_sym_BSLASHACRfull] = ACTIONS(6381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6381), - [anon_sym_BSLASHacs] = ACTIONS(6381), - [anon_sym_BSLASHAcs] = ACTIONS(6381), - [anon_sym_BSLASHacsp] = ACTIONS(6381), - [anon_sym_BSLASHAcsp] = ACTIONS(6381), - [anon_sym_BSLASHacl] = ACTIONS(6381), - [anon_sym_BSLASHAcl] = ACTIONS(6381), - [anon_sym_BSLASHaclp] = ACTIONS(6381), - [anon_sym_BSLASHAclp] = ACTIONS(6381), - [anon_sym_BSLASHacf] = ACTIONS(6381), - [anon_sym_BSLASHAcf] = ACTIONS(6381), - [anon_sym_BSLASHacfp] = ACTIONS(6381), - [anon_sym_BSLASHAcfp] = ACTIONS(6381), - [anon_sym_BSLASHac] = ACTIONS(6381), - [anon_sym_BSLASHAc] = ACTIONS(6381), - [anon_sym_BSLASHacp] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6381), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6381), - [anon_sym_BSLASHcolor] = ACTIONS(6381), - [anon_sym_BSLASHcolorbox] = ACTIONS(6381), - [anon_sym_BSLASHtextcolor] = ACTIONS(6381), - [anon_sym_BSLASHpagecolor] = ACTIONS(6381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6381), - [anon_sym_BSLASHtext] = ACTIONS(6381), - [anon_sym_BSLASHintertext] = ACTIONS(6381), - [anon_sym_shortintertext] = ACTIONS(6381), - }, - [984] = { - [ts_builtin_sym_end] = ACTIONS(6387), - [sym_command_name] = ACTIONS(6385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6387), - [anon_sym_RBRACK] = ACTIONS(6387), - [anon_sym_COMMA] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LPAREN] = ACTIONS(6387), - [anon_sym_RPAREN] = ACTIONS(6387), - [anon_sym_BSLASHpart] = ACTIONS(6385), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddpart] = ACTIONS(6385), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6387), - [anon_sym_BSLASHchapter] = ACTIONS(6385), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddchap] = ACTIONS(6385), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsection] = ACTIONS(6385), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddsec] = ACTIONS(6385), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubsection] = ACTIONS(6385), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6385), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHparagraph] = ACTIONS(6385), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6385), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6387), - [anon_sym_BSLASHitem] = ACTIONS(6385), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6387), - [anon_sym_RBRACE] = ACTIONS(6387), - [sym_word] = ACTIONS(6385), - [sym_placeholder] = ACTIONS(6387), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6387), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_LT] = ACTIONS(6385), - [anon_sym_GT] = ACTIONS(6385), - [anon_sym_BANG] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_SQUOTE] = ACTIONS(6385), - [anon_sym__] = ACTIONS(6387), - [anon_sym_CARET] = ACTIONS(6387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6387), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6387), - [anon_sym_DOLLAR] = ACTIONS(6385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6387), - [anon_sym_BSLASHbegin] = ACTIONS(6385), - [anon_sym_BSLASHtitle] = ACTIONS(6385), - [anon_sym_BSLASHauthor] = ACTIONS(6385), - [anon_sym_BSLASHusepackage] = ACTIONS(6385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6385), - [anon_sym_BSLASHinclude] = ACTIONS(6385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6385), - [anon_sym_BSLASHinput] = ACTIONS(6385), - [anon_sym_BSLASHsubfile] = ACTIONS(6385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6385), - [anon_sym_BSLASHbibliography] = ACTIONS(6385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6385), - [anon_sym_BSLASHincludesvg] = ACTIONS(6385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6385), - [anon_sym_BSLASHimport] = ACTIONS(6385), - [anon_sym_BSLASHsubimport] = ACTIONS(6385), - [anon_sym_BSLASHinputfrom] = ACTIONS(6385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6385), - [anon_sym_BSLASHincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHcaption] = ACTIONS(6385), - [anon_sym_BSLASHcite] = ACTIONS(6385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCite] = ACTIONS(6385), - [anon_sym_BSLASHnocite] = ACTIONS(6385), - [anon_sym_BSLASHcitet] = ACTIONS(6385), - [anon_sym_BSLASHcitep] = ACTIONS(6385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteauthor] = ACTIONS(6385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitetitle] = ACTIONS(6385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteyear] = ACTIONS(6385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitedate] = ACTIONS(6385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteurl] = ACTIONS(6385), - [anon_sym_BSLASHfullcite] = ACTIONS(6385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6385), - [anon_sym_BSLASHcitealt] = ACTIONS(6385), - [anon_sym_BSLASHcitealp] = ACTIONS(6385), - [anon_sym_BSLASHcitetext] = ACTIONS(6385), - [anon_sym_BSLASHparencite] = ACTIONS(6385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHParencite] = ACTIONS(6385), - [anon_sym_BSLASHfootcite] = ACTIONS(6385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6385), - [anon_sym_BSLASHtextcite] = ACTIONS(6385), - [anon_sym_BSLASHTextcite] = ACTIONS(6385), - [anon_sym_BSLASHsmartcite] = ACTIONS(6385), - [anon_sym_BSLASHSmartcite] = ACTIONS(6385), - [anon_sym_BSLASHsupercite] = ACTIONS(6385), - [anon_sym_BSLASHautocite] = ACTIONS(6385), - [anon_sym_BSLASHAutocite] = ACTIONS(6385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHvolcite] = ACTIONS(6385), - [anon_sym_BSLASHVolcite] = ACTIONS(6385), - [anon_sym_BSLASHpvolcite] = ACTIONS(6385), - [anon_sym_BSLASHPvolcite] = ACTIONS(6385), - [anon_sym_BSLASHfvolcite] = ACTIONS(6385), - [anon_sym_BSLASHftvolcite] = ACTIONS(6385), - [anon_sym_BSLASHsvolcite] = ACTIONS(6385), - [anon_sym_BSLASHSvolcite] = ACTIONS(6385), - [anon_sym_BSLASHtvolcite] = ACTIONS(6385), - [anon_sym_BSLASHTvolcite] = ACTIONS(6385), - [anon_sym_BSLASHavolcite] = ACTIONS(6385), - [anon_sym_BSLASHAvolcite] = ACTIONS(6385), - [anon_sym_BSLASHnotecite] = ACTIONS(6385), - [anon_sym_BSLASHNotecite] = ACTIONS(6385), - [anon_sym_BSLASHpnotecite] = ACTIONS(6385), - [anon_sym_BSLASHPnotecite] = ACTIONS(6385), - [anon_sym_BSLASHfnotecite] = ACTIONS(6385), - [anon_sym_BSLASHlabel] = ACTIONS(6385), - [anon_sym_BSLASHref] = ACTIONS(6385), - [anon_sym_BSLASHeqref] = ACTIONS(6385), - [anon_sym_BSLASHvref] = ACTIONS(6385), - [anon_sym_BSLASHVref] = ACTIONS(6385), - [anon_sym_BSLASHautoref] = ACTIONS(6385), - [anon_sym_BSLASHpageref] = ACTIONS(6385), - [anon_sym_BSLASHcref] = ACTIONS(6385), - [anon_sym_BSLASHCref] = ACTIONS(6385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnameCref] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHlabelcref] = ACTIONS(6385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCrefrange] = ACTIONS(6385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnewlabel] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6387), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHdef] = ACTIONS(6385), - [anon_sym_BSLASHlet] = ACTIONS(6385), - [anon_sym_BSLASHleft] = ACTIONS(6385), - [anon_sym_BSLASHbig] = ACTIONS(6385), - [anon_sym_BSLASHBig] = ACTIONS(6385), - [anon_sym_BSLASHbigg] = ACTIONS(6385), - [anon_sym_BSLASHBigg] = ACTIONS(6385), - [anon_sym_BSLASHbigl] = ACTIONS(6385), - [anon_sym_BSLASHBigl] = ACTIONS(6385), - [anon_sym_BSLASHbiggl] = ACTIONS(6385), - [anon_sym_BSLASHBiggl] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6385), - [anon_sym_BSLASHgls] = ACTIONS(6385), - [anon_sym_BSLASHGls] = ACTIONS(6385), - [anon_sym_BSLASHGLS] = ACTIONS(6385), - [anon_sym_BSLASHglspl] = ACTIONS(6385), - [anon_sym_BSLASHGlspl] = ACTIONS(6385), - [anon_sym_BSLASHGLSpl] = ACTIONS(6385), - [anon_sym_BSLASHglsdisp] = ACTIONS(6385), - [anon_sym_BSLASHglslink] = ACTIONS(6385), - [anon_sym_BSLASHglstext] = ACTIONS(6385), - [anon_sym_BSLASHGlstext] = ACTIONS(6385), - [anon_sym_BSLASHGLStext] = ACTIONS(6385), - [anon_sym_BSLASHglsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6385), - [anon_sym_BSLASHglsplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSplural] = ACTIONS(6385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHglsname] = ACTIONS(6385), - [anon_sym_BSLASHGlsname] = ACTIONS(6385), - [anon_sym_BSLASHGLSname] = ACTIONS(6385), - [anon_sym_BSLASHglssymbol] = ACTIONS(6385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6385), - [anon_sym_BSLASHglsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6385), - [anon_sym_BSLASHglsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6385), - [anon_sym_BSLASHglsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6385), - [anon_sym_BSLASHglsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6385), - [anon_sym_BSLASHglsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6385), - [anon_sym_BSLASHnewacronym] = ACTIONS(6385), - [anon_sym_BSLASHacrshort] = ACTIONS(6385), - [anon_sym_BSLASHAcrshort] = ACTIONS(6385), - [anon_sym_BSLASHACRshort] = ACTIONS(6385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6385), - [anon_sym_BSLASHacrlong] = ACTIONS(6385), - [anon_sym_BSLASHAcrlong] = ACTIONS(6385), - [anon_sym_BSLASHACRlong] = ACTIONS(6385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6385), - [anon_sym_BSLASHacrfull] = ACTIONS(6385), - [anon_sym_BSLASHAcrfull] = ACTIONS(6385), - [anon_sym_BSLASHACRfull] = ACTIONS(6385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6385), - [anon_sym_BSLASHacs] = ACTIONS(6385), - [anon_sym_BSLASHAcs] = ACTIONS(6385), - [anon_sym_BSLASHacsp] = ACTIONS(6385), - [anon_sym_BSLASHAcsp] = ACTIONS(6385), - [anon_sym_BSLASHacl] = ACTIONS(6385), - [anon_sym_BSLASHAcl] = ACTIONS(6385), - [anon_sym_BSLASHaclp] = ACTIONS(6385), - [anon_sym_BSLASHAclp] = ACTIONS(6385), - [anon_sym_BSLASHacf] = ACTIONS(6385), - [anon_sym_BSLASHAcf] = ACTIONS(6385), - [anon_sym_BSLASHacfp] = ACTIONS(6385), - [anon_sym_BSLASHAcfp] = ACTIONS(6385), - [anon_sym_BSLASHac] = ACTIONS(6385), - [anon_sym_BSLASHAc] = ACTIONS(6385), - [anon_sym_BSLASHacp] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6385), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6385), - [anon_sym_BSLASHcolor] = ACTIONS(6385), - [anon_sym_BSLASHcolorbox] = ACTIONS(6385), - [anon_sym_BSLASHtextcolor] = ACTIONS(6385), - [anon_sym_BSLASHpagecolor] = ACTIONS(6385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6385), - [anon_sym_BSLASHtext] = ACTIONS(6385), - [anon_sym_BSLASHintertext] = ACTIONS(6385), - [anon_sym_shortintertext] = ACTIONS(6385), - }, - [985] = { - [ts_builtin_sym_end] = ACTIONS(6391), - [sym_command_name] = ACTIONS(6389), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(6391), - [anon_sym_RBRACK] = ACTIONS(6391), - [anon_sym_COMMA] = ACTIONS(6391), - [anon_sym_EQ] = ACTIONS(6391), - [anon_sym_LPAREN] = ACTIONS(6391), - [anon_sym_RPAREN] = ACTIONS(6391), - [anon_sym_BSLASHpart] = ACTIONS(6389), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddpart] = ACTIONS(6389), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6391), - [anon_sym_BSLASHchapter] = ACTIONS(6389), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddchap] = ACTIONS(6389), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsection] = ACTIONS(6389), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddsec] = ACTIONS(6389), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubsection] = ACTIONS(6389), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6389), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHparagraph] = ACTIONS(6389), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6389), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6391), - [anon_sym_BSLASHitem] = ACTIONS(6389), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6391), - [anon_sym_LBRACE] = ACTIONS(6391), - [anon_sym_RBRACE] = ACTIONS(6391), - [sym_word] = ACTIONS(6389), - [sym_placeholder] = ACTIONS(6391), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6391), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_LT] = ACTIONS(6389), - [anon_sym_GT] = ACTIONS(6389), - [anon_sym_BANG] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_SQUOTE] = ACTIONS(6389), - [anon_sym__] = ACTIONS(6391), - [anon_sym_CARET] = ACTIONS(6391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6391), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6391), - [anon_sym_DOLLAR] = ACTIONS(6389), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6391), - [anon_sym_BSLASHbegin] = ACTIONS(6389), - [anon_sym_BSLASHtitle] = ACTIONS(6389), - [anon_sym_BSLASHauthor] = ACTIONS(6389), - [anon_sym_BSLASHusepackage] = ACTIONS(6389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6389), - [anon_sym_BSLASHinclude] = ACTIONS(6389), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6389), - [anon_sym_BSLASHinput] = ACTIONS(6389), - [anon_sym_BSLASHsubfile] = ACTIONS(6389), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6389), - [anon_sym_BSLASHbibliography] = ACTIONS(6389), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6389), - [anon_sym_BSLASHincludesvg] = ACTIONS(6389), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6389), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6389), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6389), - [anon_sym_BSLASHimport] = ACTIONS(6389), - [anon_sym_BSLASHsubimport] = ACTIONS(6389), - [anon_sym_BSLASHinputfrom] = ACTIONS(6389), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6389), - [anon_sym_BSLASHincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHcaption] = ACTIONS(6389), - [anon_sym_BSLASHcite] = ACTIONS(6389), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCite] = ACTIONS(6389), - [anon_sym_BSLASHnocite] = ACTIONS(6389), - [anon_sym_BSLASHcitet] = ACTIONS(6389), - [anon_sym_BSLASHcitep] = ACTIONS(6389), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteauthor] = ACTIONS(6389), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6389), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitetitle] = ACTIONS(6389), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteyear] = ACTIONS(6389), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitedate] = ACTIONS(6389), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteurl] = ACTIONS(6389), - [anon_sym_BSLASHfullcite] = ACTIONS(6389), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6389), - [anon_sym_BSLASHcitealt] = ACTIONS(6389), - [anon_sym_BSLASHcitealp] = ACTIONS(6389), - [anon_sym_BSLASHcitetext] = ACTIONS(6389), - [anon_sym_BSLASHparencite] = ACTIONS(6389), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHParencite] = ACTIONS(6389), - [anon_sym_BSLASHfootcite] = ACTIONS(6389), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6389), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6389), - [anon_sym_BSLASHtextcite] = ACTIONS(6389), - [anon_sym_BSLASHTextcite] = ACTIONS(6389), - [anon_sym_BSLASHsmartcite] = ACTIONS(6389), - [anon_sym_BSLASHSmartcite] = ACTIONS(6389), - [anon_sym_BSLASHsupercite] = ACTIONS(6389), - [anon_sym_BSLASHautocite] = ACTIONS(6389), - [anon_sym_BSLASHAutocite] = ACTIONS(6389), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHvolcite] = ACTIONS(6389), - [anon_sym_BSLASHVolcite] = ACTIONS(6389), - [anon_sym_BSLASHpvolcite] = ACTIONS(6389), - [anon_sym_BSLASHPvolcite] = ACTIONS(6389), - [anon_sym_BSLASHfvolcite] = ACTIONS(6389), - [anon_sym_BSLASHftvolcite] = ACTIONS(6389), - [anon_sym_BSLASHsvolcite] = ACTIONS(6389), - [anon_sym_BSLASHSvolcite] = ACTIONS(6389), - [anon_sym_BSLASHtvolcite] = ACTIONS(6389), - [anon_sym_BSLASHTvolcite] = ACTIONS(6389), - [anon_sym_BSLASHavolcite] = ACTIONS(6389), - [anon_sym_BSLASHAvolcite] = ACTIONS(6389), - [anon_sym_BSLASHnotecite] = ACTIONS(6389), - [anon_sym_BSLASHNotecite] = ACTIONS(6389), - [anon_sym_BSLASHpnotecite] = ACTIONS(6389), - [anon_sym_BSLASHPnotecite] = ACTIONS(6389), - [anon_sym_BSLASHfnotecite] = ACTIONS(6389), - [anon_sym_BSLASHlabel] = ACTIONS(6389), - [anon_sym_BSLASHref] = ACTIONS(6389), - [anon_sym_BSLASHeqref] = ACTIONS(6389), - [anon_sym_BSLASHvref] = ACTIONS(6389), - [anon_sym_BSLASHVref] = ACTIONS(6389), - [anon_sym_BSLASHautoref] = ACTIONS(6389), - [anon_sym_BSLASHpageref] = ACTIONS(6389), - [anon_sym_BSLASHcref] = ACTIONS(6389), - [anon_sym_BSLASHCref] = ACTIONS(6389), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnameCref] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHlabelcref] = ACTIONS(6389), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCrefrange] = ACTIONS(6389), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnewlabel] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6389), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6389), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6391), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHdef] = ACTIONS(6389), - [anon_sym_BSLASHlet] = ACTIONS(6389), - [anon_sym_BSLASHleft] = ACTIONS(6389), - [anon_sym_BSLASHbig] = ACTIONS(6389), - [anon_sym_BSLASHBig] = ACTIONS(6389), - [anon_sym_BSLASHbigg] = ACTIONS(6389), - [anon_sym_BSLASHBigg] = ACTIONS(6389), - [anon_sym_BSLASHbigl] = ACTIONS(6389), - [anon_sym_BSLASHBigl] = ACTIONS(6389), - [anon_sym_BSLASHbiggl] = ACTIONS(6389), - [anon_sym_BSLASHBiggl] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6389), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6389), - [anon_sym_BSLASHgls] = ACTIONS(6389), - [anon_sym_BSLASHGls] = ACTIONS(6389), - [anon_sym_BSLASHGLS] = ACTIONS(6389), - [anon_sym_BSLASHglspl] = ACTIONS(6389), - [anon_sym_BSLASHGlspl] = ACTIONS(6389), - [anon_sym_BSLASHGLSpl] = ACTIONS(6389), - [anon_sym_BSLASHglsdisp] = ACTIONS(6389), - [anon_sym_BSLASHglslink] = ACTIONS(6389), - [anon_sym_BSLASHglstext] = ACTIONS(6389), - [anon_sym_BSLASHGlstext] = ACTIONS(6389), - [anon_sym_BSLASHGLStext] = ACTIONS(6389), - [anon_sym_BSLASHglsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6389), - [anon_sym_BSLASHglsplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSplural] = ACTIONS(6389), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHglsname] = ACTIONS(6389), - [anon_sym_BSLASHGlsname] = ACTIONS(6389), - [anon_sym_BSLASHGLSname] = ACTIONS(6389), - [anon_sym_BSLASHglssymbol] = ACTIONS(6389), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6389), - [anon_sym_BSLASHglsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6389), - [anon_sym_BSLASHglsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6389), - [anon_sym_BSLASHglsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6389), - [anon_sym_BSLASHglsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6389), - [anon_sym_BSLASHglsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6389), - [anon_sym_BSLASHnewacronym] = ACTIONS(6389), - [anon_sym_BSLASHacrshort] = ACTIONS(6389), - [anon_sym_BSLASHAcrshort] = ACTIONS(6389), - [anon_sym_BSLASHACRshort] = ACTIONS(6389), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6389), - [anon_sym_BSLASHacrlong] = ACTIONS(6389), - [anon_sym_BSLASHAcrlong] = ACTIONS(6389), - [anon_sym_BSLASHACRlong] = ACTIONS(6389), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6389), - [anon_sym_BSLASHacrfull] = ACTIONS(6389), - [anon_sym_BSLASHAcrfull] = ACTIONS(6389), - [anon_sym_BSLASHACRfull] = ACTIONS(6389), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6389), - [anon_sym_BSLASHacs] = ACTIONS(6389), - [anon_sym_BSLASHAcs] = ACTIONS(6389), - [anon_sym_BSLASHacsp] = ACTIONS(6389), - [anon_sym_BSLASHAcsp] = ACTIONS(6389), - [anon_sym_BSLASHacl] = ACTIONS(6389), - [anon_sym_BSLASHAcl] = ACTIONS(6389), - [anon_sym_BSLASHaclp] = ACTIONS(6389), - [anon_sym_BSLASHAclp] = ACTIONS(6389), - [anon_sym_BSLASHacf] = ACTIONS(6389), - [anon_sym_BSLASHAcf] = ACTIONS(6389), - [anon_sym_BSLASHacfp] = ACTIONS(6389), - [anon_sym_BSLASHAcfp] = ACTIONS(6389), - [anon_sym_BSLASHac] = ACTIONS(6389), - [anon_sym_BSLASHAc] = ACTIONS(6389), - [anon_sym_BSLASHacp] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6389), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6389), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6389), - [anon_sym_BSLASHcolor] = ACTIONS(6389), - [anon_sym_BSLASHcolorbox] = ACTIONS(6389), - [anon_sym_BSLASHtextcolor] = ACTIONS(6389), - [anon_sym_BSLASHpagecolor] = ACTIONS(6389), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6389), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6389), - [anon_sym_BSLASHtext] = ACTIONS(6389), - [anon_sym_BSLASHintertext] = ACTIONS(6389), - [anon_sym_shortintertext] = ACTIONS(6389), - }, - [986] = { - [ts_builtin_sym_end] = ACTIONS(6491), - [sym_command_name] = ACTIONS(6489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6489), - [anon_sym_LBRACK] = ACTIONS(6491), - [anon_sym_RBRACK] = ACTIONS(6491), - [anon_sym_COMMA] = ACTIONS(6491), - [anon_sym_EQ] = ACTIONS(6491), - [anon_sym_LPAREN] = ACTIONS(6491), - [anon_sym_RPAREN] = ACTIONS(6491), - [anon_sym_BSLASHpart] = ACTIONS(6489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddpart] = ACTIONS(6489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6491), - [anon_sym_BSLASHchapter] = ACTIONS(6489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddchap] = ACTIONS(6489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsection] = ACTIONS(6489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddsec] = ACTIONS(6489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubsection] = ACTIONS(6489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHparagraph] = ACTIONS(6489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6491), - [anon_sym_BSLASHitem] = ACTIONS(6489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6491), - [anon_sym_LBRACE] = ACTIONS(6491), - [anon_sym_RBRACE] = ACTIONS(6491), - [sym_word] = ACTIONS(6489), - [sym_placeholder] = ACTIONS(6491), - [anon_sym_PLUS] = ACTIONS(6491), - [anon_sym_DASH] = ACTIONS(6491), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_LT] = ACTIONS(6489), - [anon_sym_GT] = ACTIONS(6489), - [anon_sym_BANG] = ACTIONS(6489), - [anon_sym_PIPE] = ACTIONS(6489), - [anon_sym_COLON] = ACTIONS(6489), - [anon_sym_SQUOTE] = ACTIONS(6489), - [anon_sym__] = ACTIONS(6491), - [anon_sym_CARET] = ACTIONS(6491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6491), - [anon_sym_DOLLAR] = ACTIONS(6489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6491), - [anon_sym_BSLASHbegin] = ACTIONS(6489), - [anon_sym_BSLASHtitle] = ACTIONS(6489), - [anon_sym_BSLASHauthor] = ACTIONS(6489), - [anon_sym_BSLASHusepackage] = ACTIONS(6489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6489), - [anon_sym_BSLASHinclude] = ACTIONS(6489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6489), - [anon_sym_BSLASHinput] = ACTIONS(6489), - [anon_sym_BSLASHsubfile] = ACTIONS(6489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6489), - [anon_sym_BSLASHbibliography] = ACTIONS(6489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6489), - [anon_sym_BSLASHincludesvg] = ACTIONS(6489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6489), - [anon_sym_BSLASHimport] = ACTIONS(6489), - [anon_sym_BSLASHsubimport] = ACTIONS(6489), - [anon_sym_BSLASHinputfrom] = ACTIONS(6489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6489), - [anon_sym_BSLASHincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHcaption] = ACTIONS(6489), - [anon_sym_BSLASHcite] = ACTIONS(6489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCite] = ACTIONS(6489), - [anon_sym_BSLASHnocite] = ACTIONS(6489), - [anon_sym_BSLASHcitet] = ACTIONS(6489), - [anon_sym_BSLASHcitep] = ACTIONS(6489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteauthor] = ACTIONS(6489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitetitle] = ACTIONS(6489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteyear] = ACTIONS(6489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitedate] = ACTIONS(6489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteurl] = ACTIONS(6489), - [anon_sym_BSLASHfullcite] = ACTIONS(6489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6489), - [anon_sym_BSLASHcitealt] = ACTIONS(6489), - [anon_sym_BSLASHcitealp] = ACTIONS(6489), - [anon_sym_BSLASHcitetext] = ACTIONS(6489), - [anon_sym_BSLASHparencite] = ACTIONS(6489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHParencite] = ACTIONS(6489), - [anon_sym_BSLASHfootcite] = ACTIONS(6489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6489), - [anon_sym_BSLASHtextcite] = ACTIONS(6489), - [anon_sym_BSLASHTextcite] = ACTIONS(6489), - [anon_sym_BSLASHsmartcite] = ACTIONS(6489), - [anon_sym_BSLASHSmartcite] = ACTIONS(6489), - [anon_sym_BSLASHsupercite] = ACTIONS(6489), - [anon_sym_BSLASHautocite] = ACTIONS(6489), - [anon_sym_BSLASHAutocite] = ACTIONS(6489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHvolcite] = ACTIONS(6489), - [anon_sym_BSLASHVolcite] = ACTIONS(6489), - [anon_sym_BSLASHpvolcite] = ACTIONS(6489), - [anon_sym_BSLASHPvolcite] = ACTIONS(6489), - [anon_sym_BSLASHfvolcite] = ACTIONS(6489), - [anon_sym_BSLASHftvolcite] = ACTIONS(6489), - [anon_sym_BSLASHsvolcite] = ACTIONS(6489), - [anon_sym_BSLASHSvolcite] = ACTIONS(6489), - [anon_sym_BSLASHtvolcite] = ACTIONS(6489), - [anon_sym_BSLASHTvolcite] = ACTIONS(6489), - [anon_sym_BSLASHavolcite] = ACTIONS(6489), - [anon_sym_BSLASHAvolcite] = ACTIONS(6489), - [anon_sym_BSLASHnotecite] = ACTIONS(6489), - [anon_sym_BSLASHNotecite] = ACTIONS(6489), - [anon_sym_BSLASHpnotecite] = ACTIONS(6489), - [anon_sym_BSLASHPnotecite] = ACTIONS(6489), - [anon_sym_BSLASHfnotecite] = ACTIONS(6489), - [anon_sym_BSLASHlabel] = ACTIONS(6489), - [anon_sym_BSLASHref] = ACTIONS(6489), - [anon_sym_BSLASHeqref] = ACTIONS(6489), - [anon_sym_BSLASHvref] = ACTIONS(6489), - [anon_sym_BSLASHVref] = ACTIONS(6489), - [anon_sym_BSLASHautoref] = ACTIONS(6489), - [anon_sym_BSLASHpageref] = ACTIONS(6489), - [anon_sym_BSLASHcref] = ACTIONS(6489), - [anon_sym_BSLASHCref] = ACTIONS(6489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnameCref] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHlabelcref] = ACTIONS(6489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCrefrange] = ACTIONS(6489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnewlabel] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6491), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHdef] = ACTIONS(6489), - [anon_sym_BSLASHlet] = ACTIONS(6489), - [anon_sym_BSLASHleft] = ACTIONS(6489), - [anon_sym_BSLASHbig] = ACTIONS(6489), - [anon_sym_BSLASHBig] = ACTIONS(6489), - [anon_sym_BSLASHbigg] = ACTIONS(6489), - [anon_sym_BSLASHBigg] = ACTIONS(6489), - [anon_sym_BSLASHbigl] = ACTIONS(6489), - [anon_sym_BSLASHBigl] = ACTIONS(6489), - [anon_sym_BSLASHbiggl] = ACTIONS(6489), - [anon_sym_BSLASHBiggl] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6489), - [anon_sym_BSLASHgls] = ACTIONS(6489), - [anon_sym_BSLASHGls] = ACTIONS(6489), - [anon_sym_BSLASHGLS] = ACTIONS(6489), - [anon_sym_BSLASHglspl] = ACTIONS(6489), - [anon_sym_BSLASHGlspl] = ACTIONS(6489), - [anon_sym_BSLASHGLSpl] = ACTIONS(6489), - [anon_sym_BSLASHglsdisp] = ACTIONS(6489), - [anon_sym_BSLASHglslink] = ACTIONS(6489), - [anon_sym_BSLASHglstext] = ACTIONS(6489), - [anon_sym_BSLASHGlstext] = ACTIONS(6489), - [anon_sym_BSLASHGLStext] = ACTIONS(6489), - [anon_sym_BSLASHglsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6489), - [anon_sym_BSLASHglsplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSplural] = ACTIONS(6489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHglsname] = ACTIONS(6489), - [anon_sym_BSLASHGlsname] = ACTIONS(6489), - [anon_sym_BSLASHGLSname] = ACTIONS(6489), - [anon_sym_BSLASHglssymbol] = ACTIONS(6489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6489), - [anon_sym_BSLASHglsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6489), - [anon_sym_BSLASHglsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6489), - [anon_sym_BSLASHglsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6489), - [anon_sym_BSLASHglsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6489), - [anon_sym_BSLASHglsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6489), - [anon_sym_BSLASHnewacronym] = ACTIONS(6489), - [anon_sym_BSLASHacrshort] = ACTIONS(6489), - [anon_sym_BSLASHAcrshort] = ACTIONS(6489), - [anon_sym_BSLASHACRshort] = ACTIONS(6489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6489), - [anon_sym_BSLASHacrlong] = ACTIONS(6489), - [anon_sym_BSLASHAcrlong] = ACTIONS(6489), - [anon_sym_BSLASHACRlong] = ACTIONS(6489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6489), - [anon_sym_BSLASHacrfull] = ACTIONS(6489), - [anon_sym_BSLASHAcrfull] = ACTIONS(6489), - [anon_sym_BSLASHACRfull] = ACTIONS(6489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6489), - [anon_sym_BSLASHacs] = ACTIONS(6489), - [anon_sym_BSLASHAcs] = ACTIONS(6489), - [anon_sym_BSLASHacsp] = ACTIONS(6489), - [anon_sym_BSLASHAcsp] = ACTIONS(6489), - [anon_sym_BSLASHacl] = ACTIONS(6489), - [anon_sym_BSLASHAcl] = ACTIONS(6489), - [anon_sym_BSLASHaclp] = ACTIONS(6489), - [anon_sym_BSLASHAclp] = ACTIONS(6489), - [anon_sym_BSLASHacf] = ACTIONS(6489), - [anon_sym_BSLASHAcf] = ACTIONS(6489), - [anon_sym_BSLASHacfp] = ACTIONS(6489), - [anon_sym_BSLASHAcfp] = ACTIONS(6489), - [anon_sym_BSLASHac] = ACTIONS(6489), - [anon_sym_BSLASHAc] = ACTIONS(6489), - [anon_sym_BSLASHacp] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6489), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6489), - [anon_sym_BSLASHcolor] = ACTIONS(6489), - [anon_sym_BSLASHcolorbox] = ACTIONS(6489), - [anon_sym_BSLASHtextcolor] = ACTIONS(6489), - [anon_sym_BSLASHpagecolor] = ACTIONS(6489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6489), - [anon_sym_BSLASHtext] = ACTIONS(6489), - [anon_sym_BSLASHintertext] = ACTIONS(6489), - [anon_sym_shortintertext] = ACTIONS(6489), - }, - [987] = { - [ts_builtin_sym_end] = ACTIONS(6039), - [sym_command_name] = ACTIONS(6037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6037), - [anon_sym_LBRACK] = ACTIONS(6039), - [anon_sym_RBRACK] = ACTIONS(6039), - [anon_sym_COMMA] = ACTIONS(6039), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_LPAREN] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_BSLASHpart] = ACTIONS(6037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddpart] = ACTIONS(6037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6039), - [anon_sym_BSLASHchapter] = ACTIONS(6037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddchap] = ACTIONS(6037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsection] = ACTIONS(6037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddsec] = ACTIONS(6037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubsection] = ACTIONS(6037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHparagraph] = ACTIONS(6037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6039), - [anon_sym_BSLASHitem] = ACTIONS(6037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6039), - [anon_sym_LBRACE] = ACTIONS(6039), - [anon_sym_RBRACE] = ACTIONS(6039), - [sym_word] = ACTIONS(6037), - [sym_placeholder] = ACTIONS(6039), - [anon_sym_PLUS] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [anon_sym_STAR] = ACTIONS(6039), - [anon_sym_SLASH] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6037), - [anon_sym_GT] = ACTIONS(6037), - [anon_sym_BANG] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_COLON] = ACTIONS(6037), - [anon_sym_SQUOTE] = ACTIONS(6037), - [anon_sym__] = ACTIONS(6039), - [anon_sym_CARET] = ACTIONS(6039), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6039), - [anon_sym_BSLASHbegin] = ACTIONS(6037), - [anon_sym_BSLASHtitle] = ACTIONS(6037), - [anon_sym_BSLASHauthor] = ACTIONS(6037), - [anon_sym_BSLASHusepackage] = ACTIONS(6037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6037), - [anon_sym_BSLASHinclude] = ACTIONS(6037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6037), - [anon_sym_BSLASHinput] = ACTIONS(6037), - [anon_sym_BSLASHsubfile] = ACTIONS(6037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6037), - [anon_sym_BSLASHbibliography] = ACTIONS(6037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6037), - [anon_sym_BSLASHincludesvg] = ACTIONS(6037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6037), - [anon_sym_BSLASHimport] = ACTIONS(6037), - [anon_sym_BSLASHsubimport] = ACTIONS(6037), - [anon_sym_BSLASHinputfrom] = ACTIONS(6037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6037), - [anon_sym_BSLASHincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHcaption] = ACTIONS(6037), - [anon_sym_BSLASHcite] = ACTIONS(6037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCite] = ACTIONS(6037), - [anon_sym_BSLASHnocite] = ACTIONS(6037), - [anon_sym_BSLASHcitet] = ACTIONS(6037), - [anon_sym_BSLASHcitep] = ACTIONS(6037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteauthor] = ACTIONS(6037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitetitle] = ACTIONS(6037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteyear] = ACTIONS(6037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitedate] = ACTIONS(6037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteurl] = ACTIONS(6037), - [anon_sym_BSLASHfullcite] = ACTIONS(6037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6037), - [anon_sym_BSLASHcitealt] = ACTIONS(6037), - [anon_sym_BSLASHcitealp] = ACTIONS(6037), - [anon_sym_BSLASHcitetext] = ACTIONS(6037), - [anon_sym_BSLASHparencite] = ACTIONS(6037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHParencite] = ACTIONS(6037), - [anon_sym_BSLASHfootcite] = ACTIONS(6037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6037), - [anon_sym_BSLASHtextcite] = ACTIONS(6037), - [anon_sym_BSLASHTextcite] = ACTIONS(6037), - [anon_sym_BSLASHsmartcite] = ACTIONS(6037), - [anon_sym_BSLASHSmartcite] = ACTIONS(6037), - [anon_sym_BSLASHsupercite] = ACTIONS(6037), - [anon_sym_BSLASHautocite] = ACTIONS(6037), - [anon_sym_BSLASHAutocite] = ACTIONS(6037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHvolcite] = ACTIONS(6037), - [anon_sym_BSLASHVolcite] = ACTIONS(6037), - [anon_sym_BSLASHpvolcite] = ACTIONS(6037), - [anon_sym_BSLASHPvolcite] = ACTIONS(6037), - [anon_sym_BSLASHfvolcite] = ACTIONS(6037), - [anon_sym_BSLASHftvolcite] = ACTIONS(6037), - [anon_sym_BSLASHsvolcite] = ACTIONS(6037), - [anon_sym_BSLASHSvolcite] = ACTIONS(6037), - [anon_sym_BSLASHtvolcite] = ACTIONS(6037), - [anon_sym_BSLASHTvolcite] = ACTIONS(6037), - [anon_sym_BSLASHavolcite] = ACTIONS(6037), - [anon_sym_BSLASHAvolcite] = ACTIONS(6037), - [anon_sym_BSLASHnotecite] = ACTIONS(6037), - [anon_sym_BSLASHNotecite] = ACTIONS(6037), - [anon_sym_BSLASHpnotecite] = ACTIONS(6037), - [anon_sym_BSLASHPnotecite] = ACTIONS(6037), - [anon_sym_BSLASHfnotecite] = ACTIONS(6037), - [anon_sym_BSLASHlabel] = ACTIONS(6037), - [anon_sym_BSLASHref] = ACTIONS(6037), - [anon_sym_BSLASHeqref] = ACTIONS(6037), - [anon_sym_BSLASHvref] = ACTIONS(6037), - [anon_sym_BSLASHVref] = ACTIONS(6037), - [anon_sym_BSLASHautoref] = ACTIONS(6037), - [anon_sym_BSLASHpageref] = ACTIONS(6037), - [anon_sym_BSLASHcref] = ACTIONS(6037), - [anon_sym_BSLASHCref] = ACTIONS(6037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnameCref] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHlabelcref] = ACTIONS(6037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCrefrange] = ACTIONS(6037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnewlabel] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6039), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHdef] = ACTIONS(6037), - [anon_sym_BSLASHlet] = ACTIONS(6037), - [anon_sym_BSLASHleft] = ACTIONS(6037), - [anon_sym_BSLASHbig] = ACTIONS(6037), - [anon_sym_BSLASHBig] = ACTIONS(6037), - [anon_sym_BSLASHbigg] = ACTIONS(6037), - [anon_sym_BSLASHBigg] = ACTIONS(6037), - [anon_sym_BSLASHbigl] = ACTIONS(6037), - [anon_sym_BSLASHBigl] = ACTIONS(6037), - [anon_sym_BSLASHbiggl] = ACTIONS(6037), - [anon_sym_BSLASHBiggl] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6037), - [anon_sym_BSLASHgls] = ACTIONS(6037), - [anon_sym_BSLASHGls] = ACTIONS(6037), - [anon_sym_BSLASHGLS] = ACTIONS(6037), - [anon_sym_BSLASHglspl] = ACTIONS(6037), - [anon_sym_BSLASHGlspl] = ACTIONS(6037), - [anon_sym_BSLASHGLSpl] = ACTIONS(6037), - [anon_sym_BSLASHglsdisp] = ACTIONS(6037), - [anon_sym_BSLASHglslink] = ACTIONS(6037), - [anon_sym_BSLASHglstext] = ACTIONS(6037), - [anon_sym_BSLASHGlstext] = ACTIONS(6037), - [anon_sym_BSLASHGLStext] = ACTIONS(6037), - [anon_sym_BSLASHglsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6037), - [anon_sym_BSLASHglsplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSplural] = ACTIONS(6037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHglsname] = ACTIONS(6037), - [anon_sym_BSLASHGlsname] = ACTIONS(6037), - [anon_sym_BSLASHGLSname] = ACTIONS(6037), - [anon_sym_BSLASHglssymbol] = ACTIONS(6037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6037), - [anon_sym_BSLASHglsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6037), - [anon_sym_BSLASHglsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6037), - [anon_sym_BSLASHglsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6037), - [anon_sym_BSLASHglsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6037), - [anon_sym_BSLASHglsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6037), - [anon_sym_BSLASHnewacronym] = ACTIONS(6037), - [anon_sym_BSLASHacrshort] = ACTIONS(6037), - [anon_sym_BSLASHAcrshort] = ACTIONS(6037), - [anon_sym_BSLASHACRshort] = ACTIONS(6037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6037), - [anon_sym_BSLASHacrlong] = ACTIONS(6037), - [anon_sym_BSLASHAcrlong] = ACTIONS(6037), - [anon_sym_BSLASHACRlong] = ACTIONS(6037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6037), - [anon_sym_BSLASHacrfull] = ACTIONS(6037), - [anon_sym_BSLASHAcrfull] = ACTIONS(6037), - [anon_sym_BSLASHACRfull] = ACTIONS(6037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6037), - [anon_sym_BSLASHacs] = ACTIONS(6037), - [anon_sym_BSLASHAcs] = ACTIONS(6037), - [anon_sym_BSLASHacsp] = ACTIONS(6037), - [anon_sym_BSLASHAcsp] = ACTIONS(6037), - [anon_sym_BSLASHacl] = ACTIONS(6037), - [anon_sym_BSLASHAcl] = ACTIONS(6037), - [anon_sym_BSLASHaclp] = ACTIONS(6037), - [anon_sym_BSLASHAclp] = ACTIONS(6037), - [anon_sym_BSLASHacf] = ACTIONS(6037), - [anon_sym_BSLASHAcf] = ACTIONS(6037), - [anon_sym_BSLASHacfp] = ACTIONS(6037), - [anon_sym_BSLASHAcfp] = ACTIONS(6037), - [anon_sym_BSLASHac] = ACTIONS(6037), - [anon_sym_BSLASHAc] = ACTIONS(6037), - [anon_sym_BSLASHacp] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6037), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6037), - [anon_sym_BSLASHcolor] = ACTIONS(6037), - [anon_sym_BSLASHcolorbox] = ACTIONS(6037), - [anon_sym_BSLASHtextcolor] = ACTIONS(6037), - [anon_sym_BSLASHpagecolor] = ACTIONS(6037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6037), - [anon_sym_BSLASHtext] = ACTIONS(6037), - [anon_sym_BSLASHintertext] = ACTIONS(6037), - [anon_sym_shortintertext] = ACTIONS(6037), - }, - [988] = { - [ts_builtin_sym_end] = ACTIONS(6395), - [sym_command_name] = ACTIONS(6393), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6393), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_RBRACK] = ACTIONS(6395), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_LPAREN] = ACTIONS(6395), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_BSLASHpart] = ACTIONS(6393), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddpart] = ACTIONS(6393), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6395), - [anon_sym_BSLASHchapter] = ACTIONS(6393), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddchap] = ACTIONS(6393), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsection] = ACTIONS(6393), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddsec] = ACTIONS(6393), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubsection] = ACTIONS(6393), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6393), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHparagraph] = ACTIONS(6393), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6393), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6395), - [anon_sym_BSLASHitem] = ACTIONS(6393), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6395), - [anon_sym_LBRACE] = ACTIONS(6395), - [anon_sym_RBRACE] = ACTIONS(6395), - [sym_word] = ACTIONS(6393), - [sym_placeholder] = ACTIONS(6395), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6395), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_LT] = ACTIONS(6393), - [anon_sym_GT] = ACTIONS(6393), - [anon_sym_BANG] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_SQUOTE] = ACTIONS(6393), - [anon_sym__] = ACTIONS(6395), - [anon_sym_CARET] = ACTIONS(6395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6395), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6395), - [anon_sym_DOLLAR] = ACTIONS(6393), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6395), - [anon_sym_BSLASHbegin] = ACTIONS(6393), - [anon_sym_BSLASHtitle] = ACTIONS(6393), - [anon_sym_BSLASHauthor] = ACTIONS(6393), - [anon_sym_BSLASHusepackage] = ACTIONS(6393), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6393), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6393), - [anon_sym_BSLASHinclude] = ACTIONS(6393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6393), - [anon_sym_BSLASHinput] = ACTIONS(6393), - [anon_sym_BSLASHsubfile] = ACTIONS(6393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6393), - [anon_sym_BSLASHbibliography] = ACTIONS(6393), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6393), - [anon_sym_BSLASHincludesvg] = ACTIONS(6393), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6393), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6393), - [anon_sym_BSLASHimport] = ACTIONS(6393), - [anon_sym_BSLASHsubimport] = ACTIONS(6393), - [anon_sym_BSLASHinputfrom] = ACTIONS(6393), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6393), - [anon_sym_BSLASHincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHcaption] = ACTIONS(6393), - [anon_sym_BSLASHcite] = ACTIONS(6393), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCite] = ACTIONS(6393), - [anon_sym_BSLASHnocite] = ACTIONS(6393), - [anon_sym_BSLASHcitet] = ACTIONS(6393), - [anon_sym_BSLASHcitep] = ACTIONS(6393), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteauthor] = ACTIONS(6393), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6393), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitetitle] = ACTIONS(6393), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteyear] = ACTIONS(6393), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitedate] = ACTIONS(6393), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteurl] = ACTIONS(6393), - [anon_sym_BSLASHfullcite] = ACTIONS(6393), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6393), - [anon_sym_BSLASHcitealt] = ACTIONS(6393), - [anon_sym_BSLASHcitealp] = ACTIONS(6393), - [anon_sym_BSLASHcitetext] = ACTIONS(6393), - [anon_sym_BSLASHparencite] = ACTIONS(6393), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHParencite] = ACTIONS(6393), - [anon_sym_BSLASHfootcite] = ACTIONS(6393), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6393), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6393), - [anon_sym_BSLASHtextcite] = ACTIONS(6393), - [anon_sym_BSLASHTextcite] = ACTIONS(6393), - [anon_sym_BSLASHsmartcite] = ACTIONS(6393), - [anon_sym_BSLASHSmartcite] = ACTIONS(6393), - [anon_sym_BSLASHsupercite] = ACTIONS(6393), - [anon_sym_BSLASHautocite] = ACTIONS(6393), - [anon_sym_BSLASHAutocite] = ACTIONS(6393), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHvolcite] = ACTIONS(6393), - [anon_sym_BSLASHVolcite] = ACTIONS(6393), - [anon_sym_BSLASHpvolcite] = ACTIONS(6393), - [anon_sym_BSLASHPvolcite] = ACTIONS(6393), - [anon_sym_BSLASHfvolcite] = ACTIONS(6393), - [anon_sym_BSLASHftvolcite] = ACTIONS(6393), - [anon_sym_BSLASHsvolcite] = ACTIONS(6393), - [anon_sym_BSLASHSvolcite] = ACTIONS(6393), - [anon_sym_BSLASHtvolcite] = ACTIONS(6393), - [anon_sym_BSLASHTvolcite] = ACTIONS(6393), - [anon_sym_BSLASHavolcite] = ACTIONS(6393), - [anon_sym_BSLASHAvolcite] = ACTIONS(6393), - [anon_sym_BSLASHnotecite] = ACTIONS(6393), - [anon_sym_BSLASHNotecite] = ACTIONS(6393), - [anon_sym_BSLASHpnotecite] = ACTIONS(6393), - [anon_sym_BSLASHPnotecite] = ACTIONS(6393), - [anon_sym_BSLASHfnotecite] = ACTIONS(6393), - [anon_sym_BSLASHlabel] = ACTIONS(6393), - [anon_sym_BSLASHref] = ACTIONS(6393), - [anon_sym_BSLASHeqref] = ACTIONS(6393), - [anon_sym_BSLASHvref] = ACTIONS(6393), - [anon_sym_BSLASHVref] = ACTIONS(6393), - [anon_sym_BSLASHautoref] = ACTIONS(6393), - [anon_sym_BSLASHpageref] = ACTIONS(6393), - [anon_sym_BSLASHcref] = ACTIONS(6393), - [anon_sym_BSLASHCref] = ACTIONS(6393), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnameCref] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHlabelcref] = ACTIONS(6393), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCrefrange] = ACTIONS(6393), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnewlabel] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6393), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6393), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6395), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHdef] = ACTIONS(6393), - [anon_sym_BSLASHlet] = ACTIONS(6393), - [anon_sym_BSLASHleft] = ACTIONS(6393), - [anon_sym_BSLASHbig] = ACTIONS(6393), - [anon_sym_BSLASHBig] = ACTIONS(6393), - [anon_sym_BSLASHbigg] = ACTIONS(6393), - [anon_sym_BSLASHBigg] = ACTIONS(6393), - [anon_sym_BSLASHbigl] = ACTIONS(6393), - [anon_sym_BSLASHBigl] = ACTIONS(6393), - [anon_sym_BSLASHbiggl] = ACTIONS(6393), - [anon_sym_BSLASHBiggl] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6393), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6393), - [anon_sym_BSLASHgls] = ACTIONS(6393), - [anon_sym_BSLASHGls] = ACTIONS(6393), - [anon_sym_BSLASHGLS] = ACTIONS(6393), - [anon_sym_BSLASHglspl] = ACTIONS(6393), - [anon_sym_BSLASHGlspl] = ACTIONS(6393), - [anon_sym_BSLASHGLSpl] = ACTIONS(6393), - [anon_sym_BSLASHglsdisp] = ACTIONS(6393), - [anon_sym_BSLASHglslink] = ACTIONS(6393), - [anon_sym_BSLASHglstext] = ACTIONS(6393), - [anon_sym_BSLASHGlstext] = ACTIONS(6393), - [anon_sym_BSLASHGLStext] = ACTIONS(6393), - [anon_sym_BSLASHglsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6393), - [anon_sym_BSLASHglsplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSplural] = ACTIONS(6393), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHglsname] = ACTIONS(6393), - [anon_sym_BSLASHGlsname] = ACTIONS(6393), - [anon_sym_BSLASHGLSname] = ACTIONS(6393), - [anon_sym_BSLASHglssymbol] = ACTIONS(6393), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6393), - [anon_sym_BSLASHglsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6393), - [anon_sym_BSLASHglsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6393), - [anon_sym_BSLASHglsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6393), - [anon_sym_BSLASHglsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6393), - [anon_sym_BSLASHglsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6393), - [anon_sym_BSLASHnewacronym] = ACTIONS(6393), - [anon_sym_BSLASHacrshort] = ACTIONS(6393), - [anon_sym_BSLASHAcrshort] = ACTIONS(6393), - [anon_sym_BSLASHACRshort] = ACTIONS(6393), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6393), - [anon_sym_BSLASHacrlong] = ACTIONS(6393), - [anon_sym_BSLASHAcrlong] = ACTIONS(6393), - [anon_sym_BSLASHACRlong] = ACTIONS(6393), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6393), - [anon_sym_BSLASHacrfull] = ACTIONS(6393), - [anon_sym_BSLASHAcrfull] = ACTIONS(6393), - [anon_sym_BSLASHACRfull] = ACTIONS(6393), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6393), - [anon_sym_BSLASHacs] = ACTIONS(6393), - [anon_sym_BSLASHAcs] = ACTIONS(6393), - [anon_sym_BSLASHacsp] = ACTIONS(6393), - [anon_sym_BSLASHAcsp] = ACTIONS(6393), - [anon_sym_BSLASHacl] = ACTIONS(6393), - [anon_sym_BSLASHAcl] = ACTIONS(6393), - [anon_sym_BSLASHaclp] = ACTIONS(6393), - [anon_sym_BSLASHAclp] = ACTIONS(6393), - [anon_sym_BSLASHacf] = ACTIONS(6393), - [anon_sym_BSLASHAcf] = ACTIONS(6393), - [anon_sym_BSLASHacfp] = ACTIONS(6393), - [anon_sym_BSLASHAcfp] = ACTIONS(6393), - [anon_sym_BSLASHac] = ACTIONS(6393), - [anon_sym_BSLASHAc] = ACTIONS(6393), - [anon_sym_BSLASHacp] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6393), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6393), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6393), - [anon_sym_BSLASHcolor] = ACTIONS(6393), - [anon_sym_BSLASHcolorbox] = ACTIONS(6393), - [anon_sym_BSLASHtextcolor] = ACTIONS(6393), - [anon_sym_BSLASHpagecolor] = ACTIONS(6393), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6393), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6393), - [anon_sym_BSLASHtext] = ACTIONS(6393), - [anon_sym_BSLASHintertext] = ACTIONS(6393), - [anon_sym_shortintertext] = ACTIONS(6393), - }, - [989] = { - [ts_builtin_sym_end] = ACTIONS(6043), - [sym_command_name] = ACTIONS(6041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6041), - [anon_sym_LBRACK] = ACTIONS(6043), - [anon_sym_RBRACK] = ACTIONS(6043), - [anon_sym_COMMA] = ACTIONS(6043), - [anon_sym_EQ] = ACTIONS(6043), - [anon_sym_LPAREN] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_BSLASHpart] = ACTIONS(6041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddpart] = ACTIONS(6041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6043), - [anon_sym_BSLASHchapter] = ACTIONS(6041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddchap] = ACTIONS(6041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsection] = ACTIONS(6041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddsec] = ACTIONS(6041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubsection] = ACTIONS(6041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHparagraph] = ACTIONS(6041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6043), - [anon_sym_BSLASHitem] = ACTIONS(6041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6043), - [anon_sym_LBRACE] = ACTIONS(6043), - [anon_sym_RBRACE] = ACTIONS(6043), - [sym_word] = ACTIONS(6041), - [sym_placeholder] = ACTIONS(6043), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6043), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6041), - [anon_sym_GT] = ACTIONS(6041), - [anon_sym_BANG] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_SQUOTE] = ACTIONS(6041), - [anon_sym__] = ACTIONS(6043), - [anon_sym_CARET] = ACTIONS(6043), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6043), - [anon_sym_BSLASHbegin] = ACTIONS(6041), - [anon_sym_BSLASHtitle] = ACTIONS(6041), - [anon_sym_BSLASHauthor] = ACTIONS(6041), - [anon_sym_BSLASHusepackage] = ACTIONS(6041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6041), - [anon_sym_BSLASHinclude] = ACTIONS(6041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6041), - [anon_sym_BSLASHinput] = ACTIONS(6041), - [anon_sym_BSLASHsubfile] = ACTIONS(6041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6041), - [anon_sym_BSLASHbibliography] = ACTIONS(6041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6041), - [anon_sym_BSLASHincludesvg] = ACTIONS(6041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6041), - [anon_sym_BSLASHimport] = ACTIONS(6041), - [anon_sym_BSLASHsubimport] = ACTIONS(6041), - [anon_sym_BSLASHinputfrom] = ACTIONS(6041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6041), - [anon_sym_BSLASHincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHcaption] = ACTIONS(6041), - [anon_sym_BSLASHcite] = ACTIONS(6041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCite] = ACTIONS(6041), - [anon_sym_BSLASHnocite] = ACTIONS(6041), - [anon_sym_BSLASHcitet] = ACTIONS(6041), - [anon_sym_BSLASHcitep] = ACTIONS(6041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteauthor] = ACTIONS(6041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitetitle] = ACTIONS(6041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteyear] = ACTIONS(6041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitedate] = ACTIONS(6041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteurl] = ACTIONS(6041), - [anon_sym_BSLASHfullcite] = ACTIONS(6041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6041), - [anon_sym_BSLASHcitealt] = ACTIONS(6041), - [anon_sym_BSLASHcitealp] = ACTIONS(6041), - [anon_sym_BSLASHcitetext] = ACTIONS(6041), - [anon_sym_BSLASHparencite] = ACTIONS(6041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHParencite] = ACTIONS(6041), - [anon_sym_BSLASHfootcite] = ACTIONS(6041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6041), - [anon_sym_BSLASHtextcite] = ACTIONS(6041), - [anon_sym_BSLASHTextcite] = ACTIONS(6041), - [anon_sym_BSLASHsmartcite] = ACTIONS(6041), - [anon_sym_BSLASHSmartcite] = ACTIONS(6041), - [anon_sym_BSLASHsupercite] = ACTIONS(6041), - [anon_sym_BSLASHautocite] = ACTIONS(6041), - [anon_sym_BSLASHAutocite] = ACTIONS(6041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHvolcite] = ACTIONS(6041), - [anon_sym_BSLASHVolcite] = ACTIONS(6041), - [anon_sym_BSLASHpvolcite] = ACTIONS(6041), - [anon_sym_BSLASHPvolcite] = ACTIONS(6041), - [anon_sym_BSLASHfvolcite] = ACTIONS(6041), - [anon_sym_BSLASHftvolcite] = ACTIONS(6041), - [anon_sym_BSLASHsvolcite] = ACTIONS(6041), - [anon_sym_BSLASHSvolcite] = ACTIONS(6041), - [anon_sym_BSLASHtvolcite] = ACTIONS(6041), - [anon_sym_BSLASHTvolcite] = ACTIONS(6041), - [anon_sym_BSLASHavolcite] = ACTIONS(6041), - [anon_sym_BSLASHAvolcite] = ACTIONS(6041), - [anon_sym_BSLASHnotecite] = ACTIONS(6041), - [anon_sym_BSLASHNotecite] = ACTIONS(6041), - [anon_sym_BSLASHpnotecite] = ACTIONS(6041), - [anon_sym_BSLASHPnotecite] = ACTIONS(6041), - [anon_sym_BSLASHfnotecite] = ACTIONS(6041), - [anon_sym_BSLASHlabel] = ACTIONS(6041), - [anon_sym_BSLASHref] = ACTIONS(6041), - [anon_sym_BSLASHeqref] = ACTIONS(6041), - [anon_sym_BSLASHvref] = ACTIONS(6041), - [anon_sym_BSLASHVref] = ACTIONS(6041), - [anon_sym_BSLASHautoref] = ACTIONS(6041), - [anon_sym_BSLASHpageref] = ACTIONS(6041), - [anon_sym_BSLASHcref] = ACTIONS(6041), - [anon_sym_BSLASHCref] = ACTIONS(6041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnameCref] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHlabelcref] = ACTIONS(6041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCrefrange] = ACTIONS(6041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnewlabel] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6043), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHdef] = ACTIONS(6041), - [anon_sym_BSLASHlet] = ACTIONS(6041), - [anon_sym_BSLASHleft] = ACTIONS(6041), - [anon_sym_BSLASHbig] = ACTIONS(6041), - [anon_sym_BSLASHBig] = ACTIONS(6041), - [anon_sym_BSLASHbigg] = ACTIONS(6041), - [anon_sym_BSLASHBigg] = ACTIONS(6041), - [anon_sym_BSLASHbigl] = ACTIONS(6041), - [anon_sym_BSLASHBigl] = ACTIONS(6041), - [anon_sym_BSLASHbiggl] = ACTIONS(6041), - [anon_sym_BSLASHBiggl] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6041), - [anon_sym_BSLASHgls] = ACTIONS(6041), - [anon_sym_BSLASHGls] = ACTIONS(6041), - [anon_sym_BSLASHGLS] = ACTIONS(6041), - [anon_sym_BSLASHglspl] = ACTIONS(6041), - [anon_sym_BSLASHGlspl] = ACTIONS(6041), - [anon_sym_BSLASHGLSpl] = ACTIONS(6041), - [anon_sym_BSLASHglsdisp] = ACTIONS(6041), - [anon_sym_BSLASHglslink] = ACTIONS(6041), - [anon_sym_BSLASHglstext] = ACTIONS(6041), - [anon_sym_BSLASHGlstext] = ACTIONS(6041), - [anon_sym_BSLASHGLStext] = ACTIONS(6041), - [anon_sym_BSLASHglsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6041), - [anon_sym_BSLASHglsplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSplural] = ACTIONS(6041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHglsname] = ACTIONS(6041), - [anon_sym_BSLASHGlsname] = ACTIONS(6041), - [anon_sym_BSLASHGLSname] = ACTIONS(6041), - [anon_sym_BSLASHglssymbol] = ACTIONS(6041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6041), - [anon_sym_BSLASHglsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6041), - [anon_sym_BSLASHglsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6041), - [anon_sym_BSLASHglsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6041), - [anon_sym_BSLASHglsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6041), - [anon_sym_BSLASHglsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6041), - [anon_sym_BSLASHnewacronym] = ACTIONS(6041), - [anon_sym_BSLASHacrshort] = ACTIONS(6041), - [anon_sym_BSLASHAcrshort] = ACTIONS(6041), - [anon_sym_BSLASHACRshort] = ACTIONS(6041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6041), - [anon_sym_BSLASHacrlong] = ACTIONS(6041), - [anon_sym_BSLASHAcrlong] = ACTIONS(6041), - [anon_sym_BSLASHACRlong] = ACTIONS(6041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6041), - [anon_sym_BSLASHacrfull] = ACTIONS(6041), - [anon_sym_BSLASHAcrfull] = ACTIONS(6041), - [anon_sym_BSLASHACRfull] = ACTIONS(6041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6041), - [anon_sym_BSLASHacs] = ACTIONS(6041), - [anon_sym_BSLASHAcs] = ACTIONS(6041), - [anon_sym_BSLASHacsp] = ACTIONS(6041), - [anon_sym_BSLASHAcsp] = ACTIONS(6041), - [anon_sym_BSLASHacl] = ACTIONS(6041), - [anon_sym_BSLASHAcl] = ACTIONS(6041), - [anon_sym_BSLASHaclp] = ACTIONS(6041), - [anon_sym_BSLASHAclp] = ACTIONS(6041), - [anon_sym_BSLASHacf] = ACTIONS(6041), - [anon_sym_BSLASHAcf] = ACTIONS(6041), - [anon_sym_BSLASHacfp] = ACTIONS(6041), - [anon_sym_BSLASHAcfp] = ACTIONS(6041), - [anon_sym_BSLASHac] = ACTIONS(6041), - [anon_sym_BSLASHAc] = ACTIONS(6041), - [anon_sym_BSLASHacp] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6041), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6041), - [anon_sym_BSLASHcolor] = ACTIONS(6041), - [anon_sym_BSLASHcolorbox] = ACTIONS(6041), - [anon_sym_BSLASHtextcolor] = ACTIONS(6041), - [anon_sym_BSLASHpagecolor] = ACTIONS(6041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6041), - [anon_sym_BSLASHtext] = ACTIONS(6041), - [anon_sym_BSLASHintertext] = ACTIONS(6041), - [anon_sym_shortintertext] = ACTIONS(6041), - }, - [990] = { - [ts_builtin_sym_end] = ACTIONS(6399), - [sym_command_name] = ACTIONS(6397), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6397), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(6399), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_LPAREN] = ACTIONS(6399), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_BSLASHpart] = ACTIONS(6397), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddpart] = ACTIONS(6397), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6399), - [anon_sym_BSLASHchapter] = ACTIONS(6397), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddchap] = ACTIONS(6397), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsection] = ACTIONS(6397), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddsec] = ACTIONS(6397), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubsection] = ACTIONS(6397), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6397), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHparagraph] = ACTIONS(6397), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6397), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6399), - [anon_sym_BSLASHitem] = ACTIONS(6397), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6399), - [anon_sym_LBRACE] = ACTIONS(6399), - [anon_sym_RBRACE] = ACTIONS(6399), - [sym_word] = ACTIONS(6397), - [sym_placeholder] = ACTIONS(6399), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_LT] = ACTIONS(6397), - [anon_sym_GT] = ACTIONS(6397), - [anon_sym_BANG] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_SQUOTE] = ACTIONS(6397), - [anon_sym__] = ACTIONS(6399), - [anon_sym_CARET] = ACTIONS(6399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6399), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6399), - [anon_sym_DOLLAR] = ACTIONS(6397), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6399), - [anon_sym_BSLASHbegin] = ACTIONS(6397), - [anon_sym_BSLASHtitle] = ACTIONS(6397), - [anon_sym_BSLASHauthor] = ACTIONS(6397), - [anon_sym_BSLASHusepackage] = ACTIONS(6397), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6397), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6397), - [anon_sym_BSLASHinclude] = ACTIONS(6397), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6397), - [anon_sym_BSLASHinput] = ACTIONS(6397), - [anon_sym_BSLASHsubfile] = ACTIONS(6397), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6397), - [anon_sym_BSLASHbibliography] = ACTIONS(6397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6397), - [anon_sym_BSLASHincludesvg] = ACTIONS(6397), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6397), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6397), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6397), - [anon_sym_BSLASHimport] = ACTIONS(6397), - [anon_sym_BSLASHsubimport] = ACTIONS(6397), - [anon_sym_BSLASHinputfrom] = ACTIONS(6397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6397), - [anon_sym_BSLASHincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHcaption] = ACTIONS(6397), - [anon_sym_BSLASHcite] = ACTIONS(6397), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCite] = ACTIONS(6397), - [anon_sym_BSLASHnocite] = ACTIONS(6397), - [anon_sym_BSLASHcitet] = ACTIONS(6397), - [anon_sym_BSLASHcitep] = ACTIONS(6397), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteauthor] = ACTIONS(6397), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6397), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitetitle] = ACTIONS(6397), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteyear] = ACTIONS(6397), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitedate] = ACTIONS(6397), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteurl] = ACTIONS(6397), - [anon_sym_BSLASHfullcite] = ACTIONS(6397), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6397), - [anon_sym_BSLASHcitealt] = ACTIONS(6397), - [anon_sym_BSLASHcitealp] = ACTIONS(6397), - [anon_sym_BSLASHcitetext] = ACTIONS(6397), - [anon_sym_BSLASHparencite] = ACTIONS(6397), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHParencite] = ACTIONS(6397), - [anon_sym_BSLASHfootcite] = ACTIONS(6397), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6397), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6397), - [anon_sym_BSLASHtextcite] = ACTIONS(6397), - [anon_sym_BSLASHTextcite] = ACTIONS(6397), - [anon_sym_BSLASHsmartcite] = ACTIONS(6397), - [anon_sym_BSLASHSmartcite] = ACTIONS(6397), - [anon_sym_BSLASHsupercite] = ACTIONS(6397), - [anon_sym_BSLASHautocite] = ACTIONS(6397), - [anon_sym_BSLASHAutocite] = ACTIONS(6397), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHvolcite] = ACTIONS(6397), - [anon_sym_BSLASHVolcite] = ACTIONS(6397), - [anon_sym_BSLASHpvolcite] = ACTIONS(6397), - [anon_sym_BSLASHPvolcite] = ACTIONS(6397), - [anon_sym_BSLASHfvolcite] = ACTIONS(6397), - [anon_sym_BSLASHftvolcite] = ACTIONS(6397), - [anon_sym_BSLASHsvolcite] = ACTIONS(6397), - [anon_sym_BSLASHSvolcite] = ACTIONS(6397), - [anon_sym_BSLASHtvolcite] = ACTIONS(6397), - [anon_sym_BSLASHTvolcite] = ACTIONS(6397), - [anon_sym_BSLASHavolcite] = ACTIONS(6397), - [anon_sym_BSLASHAvolcite] = ACTIONS(6397), - [anon_sym_BSLASHnotecite] = ACTIONS(6397), - [anon_sym_BSLASHNotecite] = ACTIONS(6397), - [anon_sym_BSLASHpnotecite] = ACTIONS(6397), - [anon_sym_BSLASHPnotecite] = ACTIONS(6397), - [anon_sym_BSLASHfnotecite] = ACTIONS(6397), - [anon_sym_BSLASHlabel] = ACTIONS(6397), - [anon_sym_BSLASHref] = ACTIONS(6397), - [anon_sym_BSLASHeqref] = ACTIONS(6397), - [anon_sym_BSLASHvref] = ACTIONS(6397), - [anon_sym_BSLASHVref] = ACTIONS(6397), - [anon_sym_BSLASHautoref] = ACTIONS(6397), - [anon_sym_BSLASHpageref] = ACTIONS(6397), - [anon_sym_BSLASHcref] = ACTIONS(6397), - [anon_sym_BSLASHCref] = ACTIONS(6397), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnameCref] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHlabelcref] = ACTIONS(6397), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCrefrange] = ACTIONS(6397), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnewlabel] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6397), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6397), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6399), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHdef] = ACTIONS(6397), - [anon_sym_BSLASHlet] = ACTIONS(6397), - [anon_sym_BSLASHleft] = ACTIONS(6397), - [anon_sym_BSLASHbig] = ACTIONS(6397), - [anon_sym_BSLASHBig] = ACTIONS(6397), - [anon_sym_BSLASHbigg] = ACTIONS(6397), - [anon_sym_BSLASHBigg] = ACTIONS(6397), - [anon_sym_BSLASHbigl] = ACTIONS(6397), - [anon_sym_BSLASHBigl] = ACTIONS(6397), - [anon_sym_BSLASHbiggl] = ACTIONS(6397), - [anon_sym_BSLASHBiggl] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6397), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6397), - [anon_sym_BSLASHgls] = ACTIONS(6397), - [anon_sym_BSLASHGls] = ACTIONS(6397), - [anon_sym_BSLASHGLS] = ACTIONS(6397), - [anon_sym_BSLASHglspl] = ACTIONS(6397), - [anon_sym_BSLASHGlspl] = ACTIONS(6397), - [anon_sym_BSLASHGLSpl] = ACTIONS(6397), - [anon_sym_BSLASHglsdisp] = ACTIONS(6397), - [anon_sym_BSLASHglslink] = ACTIONS(6397), - [anon_sym_BSLASHglstext] = ACTIONS(6397), - [anon_sym_BSLASHGlstext] = ACTIONS(6397), - [anon_sym_BSLASHGLStext] = ACTIONS(6397), - [anon_sym_BSLASHglsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6397), - [anon_sym_BSLASHglsplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSplural] = ACTIONS(6397), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHglsname] = ACTIONS(6397), - [anon_sym_BSLASHGlsname] = ACTIONS(6397), - [anon_sym_BSLASHGLSname] = ACTIONS(6397), - [anon_sym_BSLASHglssymbol] = ACTIONS(6397), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6397), - [anon_sym_BSLASHglsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6397), - [anon_sym_BSLASHglsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6397), - [anon_sym_BSLASHglsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6397), - [anon_sym_BSLASHglsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6397), - [anon_sym_BSLASHglsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6397), - [anon_sym_BSLASHnewacronym] = ACTIONS(6397), - [anon_sym_BSLASHacrshort] = ACTIONS(6397), - [anon_sym_BSLASHAcrshort] = ACTIONS(6397), - [anon_sym_BSLASHACRshort] = ACTIONS(6397), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6397), - [anon_sym_BSLASHacrlong] = ACTIONS(6397), - [anon_sym_BSLASHAcrlong] = ACTIONS(6397), - [anon_sym_BSLASHACRlong] = ACTIONS(6397), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6397), - [anon_sym_BSLASHacrfull] = ACTIONS(6397), - [anon_sym_BSLASHAcrfull] = ACTIONS(6397), - [anon_sym_BSLASHACRfull] = ACTIONS(6397), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6397), - [anon_sym_BSLASHacs] = ACTIONS(6397), - [anon_sym_BSLASHAcs] = ACTIONS(6397), - [anon_sym_BSLASHacsp] = ACTIONS(6397), - [anon_sym_BSLASHAcsp] = ACTIONS(6397), - [anon_sym_BSLASHacl] = ACTIONS(6397), - [anon_sym_BSLASHAcl] = ACTIONS(6397), - [anon_sym_BSLASHaclp] = ACTIONS(6397), - [anon_sym_BSLASHAclp] = ACTIONS(6397), - [anon_sym_BSLASHacf] = ACTIONS(6397), - [anon_sym_BSLASHAcf] = ACTIONS(6397), - [anon_sym_BSLASHacfp] = ACTIONS(6397), - [anon_sym_BSLASHAcfp] = ACTIONS(6397), - [anon_sym_BSLASHac] = ACTIONS(6397), - [anon_sym_BSLASHAc] = ACTIONS(6397), - [anon_sym_BSLASHacp] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6397), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6397), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6397), - [anon_sym_BSLASHcolor] = ACTIONS(6397), - [anon_sym_BSLASHcolorbox] = ACTIONS(6397), - [anon_sym_BSLASHtextcolor] = ACTIONS(6397), - [anon_sym_BSLASHpagecolor] = ACTIONS(6397), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6397), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6397), - [anon_sym_BSLASHtext] = ACTIONS(6397), - [anon_sym_BSLASHintertext] = ACTIONS(6397), - [anon_sym_shortintertext] = ACTIONS(6397), - }, - [991] = { - [sym_brack_group_text] = STATE(1405), - [sym_command_name] = ACTIONS(6003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6003), - [anon_sym_LBRACK] = ACTIONS(6709), - [anon_sym_RBRACK] = ACTIONS(6007), - [anon_sym_COMMA] = ACTIONS(6007), - [anon_sym_EQ] = ACTIONS(6007), - [anon_sym_LPAREN] = ACTIONS(6007), - [anon_sym_RPAREN] = ACTIONS(6007), - [anon_sym_BSLASHpart] = ACTIONS(6003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddpart] = ACTIONS(6003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6007), - [anon_sym_BSLASHchapter] = ACTIONS(6003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddchap] = ACTIONS(6003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsection] = ACTIONS(6003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHaddsec] = ACTIONS(6003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubsection] = ACTIONS(6003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6007), - [anon_sym_BSLASHparagraph] = ACTIONS(6003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6007), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6007), - [anon_sym_BSLASHitem] = ACTIONS(6003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6007), - [anon_sym_LBRACE] = ACTIONS(6007), - [sym_word] = ACTIONS(6003), - [sym_placeholder] = ACTIONS(6007), - [anon_sym_PLUS] = ACTIONS(6007), - [anon_sym_DASH] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6007), - [anon_sym_SLASH] = ACTIONS(6007), - [anon_sym_LT] = ACTIONS(6003), - [anon_sym_GT] = ACTIONS(6003), - [anon_sym_BANG] = ACTIONS(6003), - [anon_sym_PIPE] = ACTIONS(6003), - [anon_sym_COLON] = ACTIONS(6003), - [anon_sym_SQUOTE] = ACTIONS(6003), - [anon_sym__] = ACTIONS(6007), - [anon_sym_CARET] = ACTIONS(6007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6007), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6007), - [anon_sym_DOLLAR] = ACTIONS(6003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6007), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6007), - [anon_sym_BSLASHbegin] = ACTIONS(6003), - [anon_sym_BSLASHtitle] = ACTIONS(6003), - [anon_sym_BSLASHauthor] = ACTIONS(6003), - [anon_sym_BSLASHusepackage] = ACTIONS(6003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6003), - [anon_sym_BSLASHinclude] = ACTIONS(6003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6003), - [anon_sym_BSLASHinput] = ACTIONS(6003), - [anon_sym_BSLASHsubfile] = ACTIONS(6003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6003), - [anon_sym_BSLASHbibliography] = ACTIONS(6003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6003), - [anon_sym_BSLASHincludesvg] = ACTIONS(6003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6003), - [anon_sym_BSLASHimport] = ACTIONS(6003), - [anon_sym_BSLASHsubimport] = ACTIONS(6003), - [anon_sym_BSLASHinputfrom] = ACTIONS(6003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6003), - [anon_sym_BSLASHincludefrom] = ACTIONS(6003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6003), - [anon_sym_BSLASHcaption] = ACTIONS(6003), - [anon_sym_BSLASHcite] = ACTIONS(6003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCite] = ACTIONS(6003), - [anon_sym_BSLASHnocite] = ACTIONS(6003), - [anon_sym_BSLASHcitet] = ACTIONS(6003), - [anon_sym_BSLASHcitep] = ACTIONS(6003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteauthor] = ACTIONS(6003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitetitle] = ACTIONS(6003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteyear] = ACTIONS(6003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6007), - [anon_sym_BSLASHcitedate] = ACTIONS(6003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6007), - [anon_sym_BSLASHciteurl] = ACTIONS(6003), - [anon_sym_BSLASHfullcite] = ACTIONS(6003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6003), - [anon_sym_BSLASHcitealt] = ACTIONS(6003), - [anon_sym_BSLASHcitealp] = ACTIONS(6003), - [anon_sym_BSLASHcitetext] = ACTIONS(6003), - [anon_sym_BSLASHparencite] = ACTIONS(6003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHParencite] = ACTIONS(6003), - [anon_sym_BSLASHfootcite] = ACTIONS(6003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6003), - [anon_sym_BSLASHtextcite] = ACTIONS(6003), - [anon_sym_BSLASHTextcite] = ACTIONS(6003), - [anon_sym_BSLASHsmartcite] = ACTIONS(6003), - [anon_sym_BSLASHSmartcite] = ACTIONS(6003), - [anon_sym_BSLASHsupercite] = ACTIONS(6003), - [anon_sym_BSLASHautocite] = ACTIONS(6003), - [anon_sym_BSLASHAutocite] = ACTIONS(6003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6007), - [anon_sym_BSLASHvolcite] = ACTIONS(6003), - [anon_sym_BSLASHVolcite] = ACTIONS(6003), - [anon_sym_BSLASHpvolcite] = ACTIONS(6003), - [anon_sym_BSLASHPvolcite] = ACTIONS(6003), - [anon_sym_BSLASHfvolcite] = ACTIONS(6003), - [anon_sym_BSLASHftvolcite] = ACTIONS(6003), - [anon_sym_BSLASHsvolcite] = ACTIONS(6003), - [anon_sym_BSLASHSvolcite] = ACTIONS(6003), - [anon_sym_BSLASHtvolcite] = ACTIONS(6003), - [anon_sym_BSLASHTvolcite] = ACTIONS(6003), - [anon_sym_BSLASHavolcite] = ACTIONS(6003), - [anon_sym_BSLASHAvolcite] = ACTIONS(6003), - [anon_sym_BSLASHnotecite] = ACTIONS(6003), - [anon_sym_BSLASHNotecite] = ACTIONS(6003), - [anon_sym_BSLASHpnotecite] = ACTIONS(6003), - [anon_sym_BSLASHPnotecite] = ACTIONS(6003), - [anon_sym_BSLASHfnotecite] = ACTIONS(6003), - [anon_sym_BSLASHlabel] = ACTIONS(6003), - [anon_sym_BSLASHref] = ACTIONS(6003), - [anon_sym_BSLASHeqref] = ACTIONS(6003), - [anon_sym_BSLASHvref] = ACTIONS(6003), - [anon_sym_BSLASHVref] = ACTIONS(6003), - [anon_sym_BSLASHautoref] = ACTIONS(6003), - [anon_sym_BSLASHpageref] = ACTIONS(6003), - [anon_sym_BSLASHcref] = ACTIONS(6003), - [anon_sym_BSLASHCref] = ACTIONS(6003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6007), - [anon_sym_BSLASHnamecref] = ACTIONS(6003), - [anon_sym_BSLASHnameCref] = ACTIONS(6003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6003), - [anon_sym_BSLASHlabelcref] = ACTIONS(6003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6003), - [anon_sym_BSLASHcrefrange] = ACTIONS(6003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6007), - [anon_sym_BSLASHCrefrange] = ACTIONS(6003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6007), - [anon_sym_BSLASHnewlabel] = ACTIONS(6003), - [anon_sym_BSLASHnewcommand] = ACTIONS(6003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6007), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6007), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6003), - [anon_sym_BSLASHdef] = ACTIONS(6003), - [anon_sym_BSLASHlet] = ACTIONS(6003), - [anon_sym_BSLASHleft] = ACTIONS(6003), - [anon_sym_BSLASHbig] = ACTIONS(6003), - [anon_sym_BSLASHBig] = ACTIONS(6003), - [anon_sym_BSLASHbigg] = ACTIONS(6003), - [anon_sym_BSLASHBigg] = ACTIONS(6003), - [anon_sym_BSLASHbigl] = ACTIONS(6003), - [anon_sym_BSLASHBigl] = ACTIONS(6003), - [anon_sym_BSLASHbiggl] = ACTIONS(6003), - [anon_sym_BSLASHBiggl] = ACTIONS(6003), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6003), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6003), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6003), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6003), - [anon_sym_BSLASHgls] = ACTIONS(6003), - [anon_sym_BSLASHGls] = ACTIONS(6003), - [anon_sym_BSLASHGLS] = ACTIONS(6003), - [anon_sym_BSLASHglspl] = ACTIONS(6003), - [anon_sym_BSLASHGlspl] = ACTIONS(6003), - [anon_sym_BSLASHGLSpl] = ACTIONS(6003), - [anon_sym_BSLASHglsdisp] = ACTIONS(6003), - [anon_sym_BSLASHglslink] = ACTIONS(6003), - [anon_sym_BSLASHglstext] = ACTIONS(6003), - [anon_sym_BSLASHGlstext] = ACTIONS(6003), - [anon_sym_BSLASHGLStext] = ACTIONS(6003), - [anon_sym_BSLASHglsfirst] = ACTIONS(6003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6003), - [anon_sym_BSLASHglsplural] = ACTIONS(6003), - [anon_sym_BSLASHGlsplural] = ACTIONS(6003), - [anon_sym_BSLASHGLSplural] = ACTIONS(6003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6003), - [anon_sym_BSLASHglsname] = ACTIONS(6003), - [anon_sym_BSLASHGlsname] = ACTIONS(6003), - [anon_sym_BSLASHGLSname] = ACTIONS(6003), - [anon_sym_BSLASHglssymbol] = ACTIONS(6003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6003), - [anon_sym_BSLASHglsdesc] = ACTIONS(6003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6003), - [anon_sym_BSLASHglsuseri] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6003), - [anon_sym_BSLASHglsuserii] = ACTIONS(6003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6003), - [anon_sym_BSLASHglsuserv] = ACTIONS(6003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6003), - [anon_sym_BSLASHglsuservi] = ACTIONS(6003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6003), - [anon_sym_BSLASHnewacronym] = ACTIONS(6003), - [anon_sym_BSLASHacrshort] = ACTIONS(6003), - [anon_sym_BSLASHAcrshort] = ACTIONS(6003), - [anon_sym_BSLASHACRshort] = ACTIONS(6003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6003), - [anon_sym_BSLASHacrlong] = ACTIONS(6003), - [anon_sym_BSLASHAcrlong] = ACTIONS(6003), - [anon_sym_BSLASHACRlong] = ACTIONS(6003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6003), - [anon_sym_BSLASHacrfull] = ACTIONS(6003), - [anon_sym_BSLASHAcrfull] = ACTIONS(6003), - [anon_sym_BSLASHACRfull] = ACTIONS(6003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6003), - [anon_sym_BSLASHacs] = ACTIONS(6003), - [anon_sym_BSLASHAcs] = ACTIONS(6003), - [anon_sym_BSLASHacsp] = ACTIONS(6003), - [anon_sym_BSLASHAcsp] = ACTIONS(6003), - [anon_sym_BSLASHacl] = ACTIONS(6003), - [anon_sym_BSLASHAcl] = ACTIONS(6003), - [anon_sym_BSLASHaclp] = ACTIONS(6003), - [anon_sym_BSLASHAclp] = ACTIONS(6003), - [anon_sym_BSLASHacf] = ACTIONS(6003), - [anon_sym_BSLASHAcf] = ACTIONS(6003), - [anon_sym_BSLASHacfp] = ACTIONS(6003), - [anon_sym_BSLASHAcfp] = ACTIONS(6003), - [anon_sym_BSLASHac] = ACTIONS(6003), - [anon_sym_BSLASHAc] = ACTIONS(6003), - [anon_sym_BSLASHacp] = ACTIONS(6003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6003), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6003), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6003), - [anon_sym_BSLASHcolor] = ACTIONS(6003), - [anon_sym_BSLASHcolorbox] = ACTIONS(6003), - [anon_sym_BSLASHtextcolor] = ACTIONS(6003), - [anon_sym_BSLASHpagecolor] = ACTIONS(6003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6003), - [anon_sym_BSLASHtext] = ACTIONS(6003), - [anon_sym_BSLASHintertext] = ACTIONS(6003), - [anon_sym_shortintertext] = ACTIONS(6003), - }, - [992] = { - [ts_builtin_sym_end] = ACTIONS(207), - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddpart] = ACTIONS(205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHchapter] = ACTIONS(205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddchap] = ACTIONS(205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(207), - [anon_sym_BSLASHsection] = ACTIONS(205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddsec] = ACTIONS(205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHitem] = ACTIONS(205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [993] = { - [ts_builtin_sym_end] = ACTIONS(6403), - [sym_command_name] = ACTIONS(6401), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6401), - [anon_sym_LBRACK] = ACTIONS(6403), - [anon_sym_RBRACK] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(6403), - [anon_sym_EQ] = ACTIONS(6403), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(6403), - [anon_sym_BSLASHpart] = ACTIONS(6401), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddpart] = ACTIONS(6401), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6403), - [anon_sym_BSLASHchapter] = ACTIONS(6401), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddchap] = ACTIONS(6401), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsection] = ACTIONS(6401), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddsec] = ACTIONS(6401), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubsection] = ACTIONS(6401), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6401), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHparagraph] = ACTIONS(6401), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6401), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6403), - [anon_sym_BSLASHitem] = ACTIONS(6401), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6403), - [anon_sym_LBRACE] = ACTIONS(6403), - [anon_sym_RBRACE] = ACTIONS(6403), - [sym_word] = ACTIONS(6401), - [sym_placeholder] = ACTIONS(6403), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6403), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_LT] = ACTIONS(6401), - [anon_sym_GT] = ACTIONS(6401), - [anon_sym_BANG] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_SQUOTE] = ACTIONS(6401), - [anon_sym__] = ACTIONS(6403), - [anon_sym_CARET] = ACTIONS(6403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6403), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6403), - [anon_sym_DOLLAR] = ACTIONS(6401), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6403), - [anon_sym_BSLASHbegin] = ACTIONS(6401), - [anon_sym_BSLASHtitle] = ACTIONS(6401), - [anon_sym_BSLASHauthor] = ACTIONS(6401), - [anon_sym_BSLASHusepackage] = ACTIONS(6401), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6401), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6401), - [anon_sym_BSLASHinclude] = ACTIONS(6401), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6401), - [anon_sym_BSLASHinput] = ACTIONS(6401), - [anon_sym_BSLASHsubfile] = ACTIONS(6401), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6401), - [anon_sym_BSLASHbibliography] = ACTIONS(6401), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6401), - [anon_sym_BSLASHincludesvg] = ACTIONS(6401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6401), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6401), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6401), - [anon_sym_BSLASHimport] = ACTIONS(6401), - [anon_sym_BSLASHsubimport] = ACTIONS(6401), - [anon_sym_BSLASHinputfrom] = ACTIONS(6401), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6401), - [anon_sym_BSLASHincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHcaption] = ACTIONS(6401), - [anon_sym_BSLASHcite] = ACTIONS(6401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCite] = ACTIONS(6401), - [anon_sym_BSLASHnocite] = ACTIONS(6401), - [anon_sym_BSLASHcitet] = ACTIONS(6401), - [anon_sym_BSLASHcitep] = ACTIONS(6401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteauthor] = ACTIONS(6401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitetitle] = ACTIONS(6401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteyear] = ACTIONS(6401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitedate] = ACTIONS(6401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteurl] = ACTIONS(6401), - [anon_sym_BSLASHfullcite] = ACTIONS(6401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6401), - [anon_sym_BSLASHcitealt] = ACTIONS(6401), - [anon_sym_BSLASHcitealp] = ACTIONS(6401), - [anon_sym_BSLASHcitetext] = ACTIONS(6401), - [anon_sym_BSLASHparencite] = ACTIONS(6401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHParencite] = ACTIONS(6401), - [anon_sym_BSLASHfootcite] = ACTIONS(6401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6401), - [anon_sym_BSLASHtextcite] = ACTIONS(6401), - [anon_sym_BSLASHTextcite] = ACTIONS(6401), - [anon_sym_BSLASHsmartcite] = ACTIONS(6401), - [anon_sym_BSLASHSmartcite] = ACTIONS(6401), - [anon_sym_BSLASHsupercite] = ACTIONS(6401), - [anon_sym_BSLASHautocite] = ACTIONS(6401), - [anon_sym_BSLASHAutocite] = ACTIONS(6401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHvolcite] = ACTIONS(6401), - [anon_sym_BSLASHVolcite] = ACTIONS(6401), - [anon_sym_BSLASHpvolcite] = ACTIONS(6401), - [anon_sym_BSLASHPvolcite] = ACTIONS(6401), - [anon_sym_BSLASHfvolcite] = ACTIONS(6401), - [anon_sym_BSLASHftvolcite] = ACTIONS(6401), - [anon_sym_BSLASHsvolcite] = ACTIONS(6401), - [anon_sym_BSLASHSvolcite] = ACTIONS(6401), - [anon_sym_BSLASHtvolcite] = ACTIONS(6401), - [anon_sym_BSLASHTvolcite] = ACTIONS(6401), - [anon_sym_BSLASHavolcite] = ACTIONS(6401), - [anon_sym_BSLASHAvolcite] = ACTIONS(6401), - [anon_sym_BSLASHnotecite] = ACTIONS(6401), - [anon_sym_BSLASHNotecite] = ACTIONS(6401), - [anon_sym_BSLASHpnotecite] = ACTIONS(6401), - [anon_sym_BSLASHPnotecite] = ACTIONS(6401), - [anon_sym_BSLASHfnotecite] = ACTIONS(6401), - [anon_sym_BSLASHlabel] = ACTIONS(6401), - [anon_sym_BSLASHref] = ACTIONS(6401), - [anon_sym_BSLASHeqref] = ACTIONS(6401), - [anon_sym_BSLASHvref] = ACTIONS(6401), - [anon_sym_BSLASHVref] = ACTIONS(6401), - [anon_sym_BSLASHautoref] = ACTIONS(6401), - [anon_sym_BSLASHpageref] = ACTIONS(6401), - [anon_sym_BSLASHcref] = ACTIONS(6401), - [anon_sym_BSLASHCref] = ACTIONS(6401), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnameCref] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHlabelcref] = ACTIONS(6401), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCrefrange] = ACTIONS(6401), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnewlabel] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6401), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6401), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6403), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHdef] = ACTIONS(6401), - [anon_sym_BSLASHlet] = ACTIONS(6401), - [anon_sym_BSLASHleft] = ACTIONS(6401), - [anon_sym_BSLASHbig] = ACTIONS(6401), - [anon_sym_BSLASHBig] = ACTIONS(6401), - [anon_sym_BSLASHbigg] = ACTIONS(6401), - [anon_sym_BSLASHBigg] = ACTIONS(6401), - [anon_sym_BSLASHbigl] = ACTIONS(6401), - [anon_sym_BSLASHBigl] = ACTIONS(6401), - [anon_sym_BSLASHbiggl] = ACTIONS(6401), - [anon_sym_BSLASHBiggl] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6401), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6401), - [anon_sym_BSLASHgls] = ACTIONS(6401), - [anon_sym_BSLASHGls] = ACTIONS(6401), - [anon_sym_BSLASHGLS] = ACTIONS(6401), - [anon_sym_BSLASHglspl] = ACTIONS(6401), - [anon_sym_BSLASHGlspl] = ACTIONS(6401), - [anon_sym_BSLASHGLSpl] = ACTIONS(6401), - [anon_sym_BSLASHglsdisp] = ACTIONS(6401), - [anon_sym_BSLASHglslink] = ACTIONS(6401), - [anon_sym_BSLASHglstext] = ACTIONS(6401), - [anon_sym_BSLASHGlstext] = ACTIONS(6401), - [anon_sym_BSLASHGLStext] = ACTIONS(6401), - [anon_sym_BSLASHglsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6401), - [anon_sym_BSLASHglsplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSplural] = ACTIONS(6401), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHglsname] = ACTIONS(6401), - [anon_sym_BSLASHGlsname] = ACTIONS(6401), - [anon_sym_BSLASHGLSname] = ACTIONS(6401), - [anon_sym_BSLASHglssymbol] = ACTIONS(6401), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6401), - [anon_sym_BSLASHglsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6401), - [anon_sym_BSLASHglsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6401), - [anon_sym_BSLASHglsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6401), - [anon_sym_BSLASHglsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6401), - [anon_sym_BSLASHglsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6401), - [anon_sym_BSLASHnewacronym] = ACTIONS(6401), - [anon_sym_BSLASHacrshort] = ACTIONS(6401), - [anon_sym_BSLASHAcrshort] = ACTIONS(6401), - [anon_sym_BSLASHACRshort] = ACTIONS(6401), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6401), - [anon_sym_BSLASHacrlong] = ACTIONS(6401), - [anon_sym_BSLASHAcrlong] = ACTIONS(6401), - [anon_sym_BSLASHACRlong] = ACTIONS(6401), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6401), - [anon_sym_BSLASHacrfull] = ACTIONS(6401), - [anon_sym_BSLASHAcrfull] = ACTIONS(6401), - [anon_sym_BSLASHACRfull] = ACTIONS(6401), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6401), - [anon_sym_BSLASHacs] = ACTIONS(6401), - [anon_sym_BSLASHAcs] = ACTIONS(6401), - [anon_sym_BSLASHacsp] = ACTIONS(6401), - [anon_sym_BSLASHAcsp] = ACTIONS(6401), - [anon_sym_BSLASHacl] = ACTIONS(6401), - [anon_sym_BSLASHAcl] = ACTIONS(6401), - [anon_sym_BSLASHaclp] = ACTIONS(6401), - [anon_sym_BSLASHAclp] = ACTIONS(6401), - [anon_sym_BSLASHacf] = ACTIONS(6401), - [anon_sym_BSLASHAcf] = ACTIONS(6401), - [anon_sym_BSLASHacfp] = ACTIONS(6401), - [anon_sym_BSLASHAcfp] = ACTIONS(6401), - [anon_sym_BSLASHac] = ACTIONS(6401), - [anon_sym_BSLASHAc] = ACTIONS(6401), - [anon_sym_BSLASHacp] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6401), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6401), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6401), - [anon_sym_BSLASHcolor] = ACTIONS(6401), - [anon_sym_BSLASHcolorbox] = ACTIONS(6401), - [anon_sym_BSLASHtextcolor] = ACTIONS(6401), - [anon_sym_BSLASHpagecolor] = ACTIONS(6401), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6401), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6401), - [anon_sym_BSLASHtext] = ACTIONS(6401), - [anon_sym_BSLASHintertext] = ACTIONS(6401), - [anon_sym_shortintertext] = ACTIONS(6401), - }, - [994] = { - [ts_builtin_sym_end] = ACTIONS(149), - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddpart] = ACTIONS(145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHchapter] = ACTIONS(145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddchap] = ACTIONS(145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), - [anon_sym_BSLASHsection] = ACTIONS(145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddsec] = ACTIONS(145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHparagraph] = ACTIONS(145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHitem] = ACTIONS(145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [995] = { - [ts_builtin_sym_end] = ACTIONS(6407), - [sym_command_name] = ACTIONS(6405), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6405), - [anon_sym_LBRACK] = ACTIONS(6407), - [anon_sym_RBRACK] = ACTIONS(6407), - [anon_sym_COMMA] = ACTIONS(6407), - [anon_sym_EQ] = ACTIONS(6407), - [anon_sym_LPAREN] = ACTIONS(6407), - [anon_sym_RPAREN] = ACTIONS(6407), - [anon_sym_BSLASHpart] = ACTIONS(6405), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddpart] = ACTIONS(6405), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6407), - [anon_sym_BSLASHchapter] = ACTIONS(6405), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddchap] = ACTIONS(6405), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsection] = ACTIONS(6405), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddsec] = ACTIONS(6405), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubsection] = ACTIONS(6405), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6405), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHparagraph] = ACTIONS(6405), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6405), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6407), - [anon_sym_BSLASHitem] = ACTIONS(6405), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6407), - [anon_sym_LBRACE] = ACTIONS(6407), - [anon_sym_RBRACE] = ACTIONS(6407), - [sym_word] = ACTIONS(6405), - [sym_placeholder] = ACTIONS(6407), - [anon_sym_PLUS] = ACTIONS(6407), - [anon_sym_DASH] = ACTIONS(6407), - [anon_sym_STAR] = ACTIONS(6407), - [anon_sym_SLASH] = ACTIONS(6407), - [anon_sym_LT] = ACTIONS(6405), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(6405), - [anon_sym_PIPE] = ACTIONS(6405), - [anon_sym_COLON] = ACTIONS(6405), - [anon_sym_SQUOTE] = ACTIONS(6405), - [anon_sym__] = ACTIONS(6407), - [anon_sym_CARET] = ACTIONS(6407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6407), - [anon_sym_DOLLAR] = ACTIONS(6405), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6407), - [anon_sym_BSLASHbegin] = ACTIONS(6405), - [anon_sym_BSLASHtitle] = ACTIONS(6405), - [anon_sym_BSLASHauthor] = ACTIONS(6405), - [anon_sym_BSLASHusepackage] = ACTIONS(6405), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6405), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6405), - [anon_sym_BSLASHinclude] = ACTIONS(6405), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6405), - [anon_sym_BSLASHinput] = ACTIONS(6405), - [anon_sym_BSLASHsubfile] = ACTIONS(6405), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6405), - [anon_sym_BSLASHbibliography] = ACTIONS(6405), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6405), - [anon_sym_BSLASHincludesvg] = ACTIONS(6405), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6405), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6405), - [anon_sym_BSLASHimport] = ACTIONS(6405), - [anon_sym_BSLASHsubimport] = ACTIONS(6405), - [anon_sym_BSLASHinputfrom] = ACTIONS(6405), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6405), - [anon_sym_BSLASHincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHcaption] = ACTIONS(6405), - [anon_sym_BSLASHcite] = ACTIONS(6405), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCite] = ACTIONS(6405), - [anon_sym_BSLASHnocite] = ACTIONS(6405), - [anon_sym_BSLASHcitet] = ACTIONS(6405), - [anon_sym_BSLASHcitep] = ACTIONS(6405), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteauthor] = ACTIONS(6405), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6405), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitetitle] = ACTIONS(6405), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteyear] = ACTIONS(6405), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitedate] = ACTIONS(6405), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteurl] = ACTIONS(6405), - [anon_sym_BSLASHfullcite] = ACTIONS(6405), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6405), - [anon_sym_BSLASHcitealt] = ACTIONS(6405), - [anon_sym_BSLASHcitealp] = ACTIONS(6405), - [anon_sym_BSLASHcitetext] = ACTIONS(6405), - [anon_sym_BSLASHparencite] = ACTIONS(6405), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHParencite] = ACTIONS(6405), - [anon_sym_BSLASHfootcite] = ACTIONS(6405), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6405), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6405), - [anon_sym_BSLASHtextcite] = ACTIONS(6405), - [anon_sym_BSLASHTextcite] = ACTIONS(6405), - [anon_sym_BSLASHsmartcite] = ACTIONS(6405), - [anon_sym_BSLASHSmartcite] = ACTIONS(6405), - [anon_sym_BSLASHsupercite] = ACTIONS(6405), - [anon_sym_BSLASHautocite] = ACTIONS(6405), - [anon_sym_BSLASHAutocite] = ACTIONS(6405), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHvolcite] = ACTIONS(6405), - [anon_sym_BSLASHVolcite] = ACTIONS(6405), - [anon_sym_BSLASHpvolcite] = ACTIONS(6405), - [anon_sym_BSLASHPvolcite] = ACTIONS(6405), - [anon_sym_BSLASHfvolcite] = ACTIONS(6405), - [anon_sym_BSLASHftvolcite] = ACTIONS(6405), - [anon_sym_BSLASHsvolcite] = ACTIONS(6405), - [anon_sym_BSLASHSvolcite] = ACTIONS(6405), - [anon_sym_BSLASHtvolcite] = ACTIONS(6405), - [anon_sym_BSLASHTvolcite] = ACTIONS(6405), - [anon_sym_BSLASHavolcite] = ACTIONS(6405), - [anon_sym_BSLASHAvolcite] = ACTIONS(6405), - [anon_sym_BSLASHnotecite] = ACTIONS(6405), - [anon_sym_BSLASHNotecite] = ACTIONS(6405), - [anon_sym_BSLASHpnotecite] = ACTIONS(6405), - [anon_sym_BSLASHPnotecite] = ACTIONS(6405), - [anon_sym_BSLASHfnotecite] = ACTIONS(6405), - [anon_sym_BSLASHlabel] = ACTIONS(6405), - [anon_sym_BSLASHref] = ACTIONS(6405), - [anon_sym_BSLASHeqref] = ACTIONS(6405), - [anon_sym_BSLASHvref] = ACTIONS(6405), - [anon_sym_BSLASHVref] = ACTIONS(6405), - [anon_sym_BSLASHautoref] = ACTIONS(6405), - [anon_sym_BSLASHpageref] = ACTIONS(6405), - [anon_sym_BSLASHcref] = ACTIONS(6405), - [anon_sym_BSLASHCref] = ACTIONS(6405), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnameCref] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHlabelcref] = ACTIONS(6405), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCrefrange] = ACTIONS(6405), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnewlabel] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6405), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6405), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6407), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHdef] = ACTIONS(6405), - [anon_sym_BSLASHlet] = ACTIONS(6405), - [anon_sym_BSLASHleft] = ACTIONS(6405), - [anon_sym_BSLASHbig] = ACTIONS(6405), - [anon_sym_BSLASHBig] = ACTIONS(6405), - [anon_sym_BSLASHbigg] = ACTIONS(6405), - [anon_sym_BSLASHBigg] = ACTIONS(6405), - [anon_sym_BSLASHbigl] = ACTIONS(6405), - [anon_sym_BSLASHBigl] = ACTIONS(6405), - [anon_sym_BSLASHbiggl] = ACTIONS(6405), - [anon_sym_BSLASHBiggl] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6405), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6405), - [anon_sym_BSLASHgls] = ACTIONS(6405), - [anon_sym_BSLASHGls] = ACTIONS(6405), - [anon_sym_BSLASHGLS] = ACTIONS(6405), - [anon_sym_BSLASHglspl] = ACTIONS(6405), - [anon_sym_BSLASHGlspl] = ACTIONS(6405), - [anon_sym_BSLASHGLSpl] = ACTIONS(6405), - [anon_sym_BSLASHglsdisp] = ACTIONS(6405), - [anon_sym_BSLASHglslink] = ACTIONS(6405), - [anon_sym_BSLASHglstext] = ACTIONS(6405), - [anon_sym_BSLASHGlstext] = ACTIONS(6405), - [anon_sym_BSLASHGLStext] = ACTIONS(6405), - [anon_sym_BSLASHglsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6405), - [anon_sym_BSLASHglsplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSplural] = ACTIONS(6405), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHglsname] = ACTIONS(6405), - [anon_sym_BSLASHGlsname] = ACTIONS(6405), - [anon_sym_BSLASHGLSname] = ACTIONS(6405), - [anon_sym_BSLASHglssymbol] = ACTIONS(6405), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6405), - [anon_sym_BSLASHglsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6405), - [anon_sym_BSLASHglsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6405), - [anon_sym_BSLASHglsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6405), - [anon_sym_BSLASHglsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6405), - [anon_sym_BSLASHglsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6405), - [anon_sym_BSLASHnewacronym] = ACTIONS(6405), - [anon_sym_BSLASHacrshort] = ACTIONS(6405), - [anon_sym_BSLASHAcrshort] = ACTIONS(6405), - [anon_sym_BSLASHACRshort] = ACTIONS(6405), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6405), - [anon_sym_BSLASHacrlong] = ACTIONS(6405), - [anon_sym_BSLASHAcrlong] = ACTIONS(6405), - [anon_sym_BSLASHACRlong] = ACTIONS(6405), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6405), - [anon_sym_BSLASHacrfull] = ACTIONS(6405), - [anon_sym_BSLASHAcrfull] = ACTIONS(6405), - [anon_sym_BSLASHACRfull] = ACTIONS(6405), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6405), - [anon_sym_BSLASHacs] = ACTIONS(6405), - [anon_sym_BSLASHAcs] = ACTIONS(6405), - [anon_sym_BSLASHacsp] = ACTIONS(6405), - [anon_sym_BSLASHAcsp] = ACTIONS(6405), - [anon_sym_BSLASHacl] = ACTIONS(6405), - [anon_sym_BSLASHAcl] = ACTIONS(6405), - [anon_sym_BSLASHaclp] = ACTIONS(6405), - [anon_sym_BSLASHAclp] = ACTIONS(6405), - [anon_sym_BSLASHacf] = ACTIONS(6405), - [anon_sym_BSLASHAcf] = ACTIONS(6405), - [anon_sym_BSLASHacfp] = ACTIONS(6405), - [anon_sym_BSLASHAcfp] = ACTIONS(6405), - [anon_sym_BSLASHac] = ACTIONS(6405), - [anon_sym_BSLASHAc] = ACTIONS(6405), - [anon_sym_BSLASHacp] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6405), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6405), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6405), - [anon_sym_BSLASHcolor] = ACTIONS(6405), - [anon_sym_BSLASHcolorbox] = ACTIONS(6405), - [anon_sym_BSLASHtextcolor] = ACTIONS(6405), - [anon_sym_BSLASHpagecolor] = ACTIONS(6405), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6405), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6405), - [anon_sym_BSLASHtext] = ACTIONS(6405), - [anon_sym_BSLASHintertext] = ACTIONS(6405), - [anon_sym_shortintertext] = ACTIONS(6405), - }, - [996] = { - [ts_builtin_sym_end] = ACTIONS(6487), - [sym_command_name] = ACTIONS(6485), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6485), - [anon_sym_LBRACK] = ACTIONS(6487), - [anon_sym_RBRACK] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(6487), - [anon_sym_EQ] = ACTIONS(6487), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(6487), - [anon_sym_BSLASHpart] = ACTIONS(6485), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddpart] = ACTIONS(6485), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6487), - [anon_sym_BSLASHchapter] = ACTIONS(6485), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddchap] = ACTIONS(6485), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsection] = ACTIONS(6485), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddsec] = ACTIONS(6485), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubsection] = ACTIONS(6485), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6485), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHparagraph] = ACTIONS(6485), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6485), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6487), - [anon_sym_BSLASHitem] = ACTIONS(6485), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6487), - [anon_sym_LBRACE] = ACTIONS(6487), - [anon_sym_RBRACE] = ACTIONS(6487), - [sym_word] = ACTIONS(6485), - [sym_placeholder] = ACTIONS(6487), - [anon_sym_PLUS] = ACTIONS(6487), - [anon_sym_DASH] = ACTIONS(6487), - [anon_sym_STAR] = ACTIONS(6487), - [anon_sym_SLASH] = ACTIONS(6487), - [anon_sym_LT] = ACTIONS(6485), - [anon_sym_GT] = ACTIONS(6485), - [anon_sym_BANG] = ACTIONS(6485), - [anon_sym_PIPE] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6485), - [anon_sym_SQUOTE] = ACTIONS(6485), - [anon_sym__] = ACTIONS(6487), - [anon_sym_CARET] = ACTIONS(6487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6487), - [anon_sym_DOLLAR] = ACTIONS(6485), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6487), - [anon_sym_BSLASHbegin] = ACTIONS(6485), - [anon_sym_BSLASHtitle] = ACTIONS(6485), - [anon_sym_BSLASHauthor] = ACTIONS(6485), - [anon_sym_BSLASHusepackage] = ACTIONS(6485), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6485), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6485), - [anon_sym_BSLASHinclude] = ACTIONS(6485), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6485), - [anon_sym_BSLASHinput] = ACTIONS(6485), - [anon_sym_BSLASHsubfile] = ACTIONS(6485), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6485), - [anon_sym_BSLASHbibliography] = ACTIONS(6485), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6485), - [anon_sym_BSLASHincludesvg] = ACTIONS(6485), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6485), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6485), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6485), - [anon_sym_BSLASHimport] = ACTIONS(6485), - [anon_sym_BSLASHsubimport] = ACTIONS(6485), - [anon_sym_BSLASHinputfrom] = ACTIONS(6485), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6485), - [anon_sym_BSLASHincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHcaption] = ACTIONS(6485), - [anon_sym_BSLASHcite] = ACTIONS(6485), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCite] = ACTIONS(6485), - [anon_sym_BSLASHnocite] = ACTIONS(6485), - [anon_sym_BSLASHcitet] = ACTIONS(6485), - [anon_sym_BSLASHcitep] = ACTIONS(6485), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteauthor] = ACTIONS(6485), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6485), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitetitle] = ACTIONS(6485), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteyear] = ACTIONS(6485), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitedate] = ACTIONS(6485), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteurl] = ACTIONS(6485), - [anon_sym_BSLASHfullcite] = ACTIONS(6485), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6485), - [anon_sym_BSLASHcitealt] = ACTIONS(6485), - [anon_sym_BSLASHcitealp] = ACTIONS(6485), - [anon_sym_BSLASHcitetext] = ACTIONS(6485), - [anon_sym_BSLASHparencite] = ACTIONS(6485), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHParencite] = ACTIONS(6485), - [anon_sym_BSLASHfootcite] = ACTIONS(6485), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6485), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6485), - [anon_sym_BSLASHtextcite] = ACTIONS(6485), - [anon_sym_BSLASHTextcite] = ACTIONS(6485), - [anon_sym_BSLASHsmartcite] = ACTIONS(6485), - [anon_sym_BSLASHSmartcite] = ACTIONS(6485), - [anon_sym_BSLASHsupercite] = ACTIONS(6485), - [anon_sym_BSLASHautocite] = ACTIONS(6485), - [anon_sym_BSLASHAutocite] = ACTIONS(6485), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHvolcite] = ACTIONS(6485), - [anon_sym_BSLASHVolcite] = ACTIONS(6485), - [anon_sym_BSLASHpvolcite] = ACTIONS(6485), - [anon_sym_BSLASHPvolcite] = ACTIONS(6485), - [anon_sym_BSLASHfvolcite] = ACTIONS(6485), - [anon_sym_BSLASHftvolcite] = ACTIONS(6485), - [anon_sym_BSLASHsvolcite] = ACTIONS(6485), - [anon_sym_BSLASHSvolcite] = ACTIONS(6485), - [anon_sym_BSLASHtvolcite] = ACTIONS(6485), - [anon_sym_BSLASHTvolcite] = ACTIONS(6485), - [anon_sym_BSLASHavolcite] = ACTIONS(6485), - [anon_sym_BSLASHAvolcite] = ACTIONS(6485), - [anon_sym_BSLASHnotecite] = ACTIONS(6485), - [anon_sym_BSLASHNotecite] = ACTIONS(6485), - [anon_sym_BSLASHpnotecite] = ACTIONS(6485), - [anon_sym_BSLASHPnotecite] = ACTIONS(6485), - [anon_sym_BSLASHfnotecite] = ACTIONS(6485), - [anon_sym_BSLASHlabel] = ACTIONS(6485), - [anon_sym_BSLASHref] = ACTIONS(6485), - [anon_sym_BSLASHeqref] = ACTIONS(6485), - [anon_sym_BSLASHvref] = ACTIONS(6485), - [anon_sym_BSLASHVref] = ACTIONS(6485), - [anon_sym_BSLASHautoref] = ACTIONS(6485), - [anon_sym_BSLASHpageref] = ACTIONS(6485), - [anon_sym_BSLASHcref] = ACTIONS(6485), - [anon_sym_BSLASHCref] = ACTIONS(6485), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnameCref] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHlabelcref] = ACTIONS(6485), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCrefrange] = ACTIONS(6485), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnewlabel] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6485), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6485), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6487), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHdef] = ACTIONS(6485), - [anon_sym_BSLASHlet] = ACTIONS(6485), - [anon_sym_BSLASHleft] = ACTIONS(6485), - [anon_sym_BSLASHbig] = ACTIONS(6485), - [anon_sym_BSLASHBig] = ACTIONS(6485), - [anon_sym_BSLASHbigg] = ACTIONS(6485), - [anon_sym_BSLASHBigg] = ACTIONS(6485), - [anon_sym_BSLASHbigl] = ACTIONS(6485), - [anon_sym_BSLASHBigl] = ACTIONS(6485), - [anon_sym_BSLASHbiggl] = ACTIONS(6485), - [anon_sym_BSLASHBiggl] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6485), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6485), - [anon_sym_BSLASHgls] = ACTIONS(6485), - [anon_sym_BSLASHGls] = ACTIONS(6485), - [anon_sym_BSLASHGLS] = ACTIONS(6485), - [anon_sym_BSLASHglspl] = ACTIONS(6485), - [anon_sym_BSLASHGlspl] = ACTIONS(6485), - [anon_sym_BSLASHGLSpl] = ACTIONS(6485), - [anon_sym_BSLASHglsdisp] = ACTIONS(6485), - [anon_sym_BSLASHglslink] = ACTIONS(6485), - [anon_sym_BSLASHglstext] = ACTIONS(6485), - [anon_sym_BSLASHGlstext] = ACTIONS(6485), - [anon_sym_BSLASHGLStext] = ACTIONS(6485), - [anon_sym_BSLASHglsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6485), - [anon_sym_BSLASHglsplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSplural] = ACTIONS(6485), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHglsname] = ACTIONS(6485), - [anon_sym_BSLASHGlsname] = ACTIONS(6485), - [anon_sym_BSLASHGLSname] = ACTIONS(6485), - [anon_sym_BSLASHglssymbol] = ACTIONS(6485), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6485), - [anon_sym_BSLASHglsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6485), - [anon_sym_BSLASHglsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6485), - [anon_sym_BSLASHglsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6485), - [anon_sym_BSLASHglsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6485), - [anon_sym_BSLASHglsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6485), - [anon_sym_BSLASHnewacronym] = ACTIONS(6485), - [anon_sym_BSLASHacrshort] = ACTIONS(6485), - [anon_sym_BSLASHAcrshort] = ACTIONS(6485), - [anon_sym_BSLASHACRshort] = ACTIONS(6485), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6485), - [anon_sym_BSLASHacrlong] = ACTIONS(6485), - [anon_sym_BSLASHAcrlong] = ACTIONS(6485), - [anon_sym_BSLASHACRlong] = ACTIONS(6485), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6485), - [anon_sym_BSLASHacrfull] = ACTIONS(6485), - [anon_sym_BSLASHAcrfull] = ACTIONS(6485), - [anon_sym_BSLASHACRfull] = ACTIONS(6485), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6485), - [anon_sym_BSLASHacs] = ACTIONS(6485), - [anon_sym_BSLASHAcs] = ACTIONS(6485), - [anon_sym_BSLASHacsp] = ACTIONS(6485), - [anon_sym_BSLASHAcsp] = ACTIONS(6485), - [anon_sym_BSLASHacl] = ACTIONS(6485), - [anon_sym_BSLASHAcl] = ACTIONS(6485), - [anon_sym_BSLASHaclp] = ACTIONS(6485), - [anon_sym_BSLASHAclp] = ACTIONS(6485), - [anon_sym_BSLASHacf] = ACTIONS(6485), - [anon_sym_BSLASHAcf] = ACTIONS(6485), - [anon_sym_BSLASHacfp] = ACTIONS(6485), - [anon_sym_BSLASHAcfp] = ACTIONS(6485), - [anon_sym_BSLASHac] = ACTIONS(6485), - [anon_sym_BSLASHAc] = ACTIONS(6485), - [anon_sym_BSLASHacp] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6485), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6485), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6485), - [anon_sym_BSLASHcolor] = ACTIONS(6485), - [anon_sym_BSLASHcolorbox] = ACTIONS(6485), - [anon_sym_BSLASHtextcolor] = ACTIONS(6485), - [anon_sym_BSLASHpagecolor] = ACTIONS(6485), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6485), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6485), - [anon_sym_BSLASHtext] = ACTIONS(6485), - [anon_sym_BSLASHintertext] = ACTIONS(6485), - [anon_sym_shortintertext] = ACTIONS(6485), - }, - [997] = { - [ts_builtin_sym_end] = ACTIONS(6411), - [sym_command_name] = ACTIONS(6409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6409), - [anon_sym_LBRACK] = ACTIONS(6411), - [anon_sym_RBRACK] = ACTIONS(6411), - [anon_sym_COMMA] = ACTIONS(6411), - [anon_sym_EQ] = ACTIONS(6411), - [anon_sym_LPAREN] = ACTIONS(6411), - [anon_sym_RPAREN] = ACTIONS(6411), - [anon_sym_BSLASHpart] = ACTIONS(6409), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddpart] = ACTIONS(6409), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6411), - [anon_sym_BSLASHchapter] = ACTIONS(6409), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddchap] = ACTIONS(6409), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsection] = ACTIONS(6409), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddsec] = ACTIONS(6409), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubsection] = ACTIONS(6409), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6409), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHparagraph] = ACTIONS(6409), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6409), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6411), - [anon_sym_BSLASHitem] = ACTIONS(6409), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6411), - [anon_sym_LBRACE] = ACTIONS(6411), - [anon_sym_RBRACE] = ACTIONS(6411), - [sym_word] = ACTIONS(6409), - [sym_placeholder] = ACTIONS(6411), - [anon_sym_PLUS] = ACTIONS(6411), - [anon_sym_DASH] = ACTIONS(6411), - [anon_sym_STAR] = ACTIONS(6411), - [anon_sym_SLASH] = ACTIONS(6411), - [anon_sym_LT] = ACTIONS(6409), - [anon_sym_GT] = ACTIONS(6409), - [anon_sym_BANG] = ACTIONS(6409), - [anon_sym_PIPE] = ACTIONS(6409), - [anon_sym_COLON] = ACTIONS(6409), - [anon_sym_SQUOTE] = ACTIONS(6409), - [anon_sym__] = ACTIONS(6411), - [anon_sym_CARET] = ACTIONS(6411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6411), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6411), - [anon_sym_DOLLAR] = ACTIONS(6409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6411), - [anon_sym_BSLASHbegin] = ACTIONS(6409), - [anon_sym_BSLASHtitle] = ACTIONS(6409), - [anon_sym_BSLASHauthor] = ACTIONS(6409), - [anon_sym_BSLASHusepackage] = ACTIONS(6409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6409), - [anon_sym_BSLASHinclude] = ACTIONS(6409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6409), - [anon_sym_BSLASHinput] = ACTIONS(6409), - [anon_sym_BSLASHsubfile] = ACTIONS(6409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6409), - [anon_sym_BSLASHbibliography] = ACTIONS(6409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6409), - [anon_sym_BSLASHincludesvg] = ACTIONS(6409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6409), - [anon_sym_BSLASHimport] = ACTIONS(6409), - [anon_sym_BSLASHsubimport] = ACTIONS(6409), - [anon_sym_BSLASHinputfrom] = ACTIONS(6409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6409), - [anon_sym_BSLASHincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHcaption] = ACTIONS(6409), - [anon_sym_BSLASHcite] = ACTIONS(6409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCite] = ACTIONS(6409), - [anon_sym_BSLASHnocite] = ACTIONS(6409), - [anon_sym_BSLASHcitet] = ACTIONS(6409), - [anon_sym_BSLASHcitep] = ACTIONS(6409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteauthor] = ACTIONS(6409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitetitle] = ACTIONS(6409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteyear] = ACTIONS(6409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitedate] = ACTIONS(6409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteurl] = ACTIONS(6409), - [anon_sym_BSLASHfullcite] = ACTIONS(6409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6409), - [anon_sym_BSLASHcitealt] = ACTIONS(6409), - [anon_sym_BSLASHcitealp] = ACTIONS(6409), - [anon_sym_BSLASHcitetext] = ACTIONS(6409), - [anon_sym_BSLASHparencite] = ACTIONS(6409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHParencite] = ACTIONS(6409), - [anon_sym_BSLASHfootcite] = ACTIONS(6409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6409), - [anon_sym_BSLASHtextcite] = ACTIONS(6409), - [anon_sym_BSLASHTextcite] = ACTIONS(6409), - [anon_sym_BSLASHsmartcite] = ACTIONS(6409), - [anon_sym_BSLASHSmartcite] = ACTIONS(6409), - [anon_sym_BSLASHsupercite] = ACTIONS(6409), - [anon_sym_BSLASHautocite] = ACTIONS(6409), - [anon_sym_BSLASHAutocite] = ACTIONS(6409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHvolcite] = ACTIONS(6409), - [anon_sym_BSLASHVolcite] = ACTIONS(6409), - [anon_sym_BSLASHpvolcite] = ACTIONS(6409), - [anon_sym_BSLASHPvolcite] = ACTIONS(6409), - [anon_sym_BSLASHfvolcite] = ACTIONS(6409), - [anon_sym_BSLASHftvolcite] = ACTIONS(6409), - [anon_sym_BSLASHsvolcite] = ACTIONS(6409), - [anon_sym_BSLASHSvolcite] = ACTIONS(6409), - [anon_sym_BSLASHtvolcite] = ACTIONS(6409), - [anon_sym_BSLASHTvolcite] = ACTIONS(6409), - [anon_sym_BSLASHavolcite] = ACTIONS(6409), - [anon_sym_BSLASHAvolcite] = ACTIONS(6409), - [anon_sym_BSLASHnotecite] = ACTIONS(6409), - [anon_sym_BSLASHNotecite] = ACTIONS(6409), - [anon_sym_BSLASHpnotecite] = ACTIONS(6409), - [anon_sym_BSLASHPnotecite] = ACTIONS(6409), - [anon_sym_BSLASHfnotecite] = ACTIONS(6409), - [anon_sym_BSLASHlabel] = ACTIONS(6409), - [anon_sym_BSLASHref] = ACTIONS(6409), - [anon_sym_BSLASHeqref] = ACTIONS(6409), - [anon_sym_BSLASHvref] = ACTIONS(6409), - [anon_sym_BSLASHVref] = ACTIONS(6409), - [anon_sym_BSLASHautoref] = ACTIONS(6409), - [anon_sym_BSLASHpageref] = ACTIONS(6409), - [anon_sym_BSLASHcref] = ACTIONS(6409), - [anon_sym_BSLASHCref] = ACTIONS(6409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnameCref] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHlabelcref] = ACTIONS(6409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCrefrange] = ACTIONS(6409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnewlabel] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6411), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHdef] = ACTIONS(6409), - [anon_sym_BSLASHlet] = ACTIONS(6409), - [anon_sym_BSLASHleft] = ACTIONS(6409), - [anon_sym_BSLASHbig] = ACTIONS(6409), - [anon_sym_BSLASHBig] = ACTIONS(6409), - [anon_sym_BSLASHbigg] = ACTIONS(6409), - [anon_sym_BSLASHBigg] = ACTIONS(6409), - [anon_sym_BSLASHbigl] = ACTIONS(6409), - [anon_sym_BSLASHBigl] = ACTIONS(6409), - [anon_sym_BSLASHbiggl] = ACTIONS(6409), - [anon_sym_BSLASHBiggl] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6409), - [anon_sym_BSLASHgls] = ACTIONS(6409), - [anon_sym_BSLASHGls] = ACTIONS(6409), - [anon_sym_BSLASHGLS] = ACTIONS(6409), - [anon_sym_BSLASHglspl] = ACTIONS(6409), - [anon_sym_BSLASHGlspl] = ACTIONS(6409), - [anon_sym_BSLASHGLSpl] = ACTIONS(6409), - [anon_sym_BSLASHglsdisp] = ACTIONS(6409), - [anon_sym_BSLASHglslink] = ACTIONS(6409), - [anon_sym_BSLASHglstext] = ACTIONS(6409), - [anon_sym_BSLASHGlstext] = ACTIONS(6409), - [anon_sym_BSLASHGLStext] = ACTIONS(6409), - [anon_sym_BSLASHglsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6409), - [anon_sym_BSLASHglsplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSplural] = ACTIONS(6409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHglsname] = ACTIONS(6409), - [anon_sym_BSLASHGlsname] = ACTIONS(6409), - [anon_sym_BSLASHGLSname] = ACTIONS(6409), - [anon_sym_BSLASHglssymbol] = ACTIONS(6409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6409), - [anon_sym_BSLASHglsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6409), - [anon_sym_BSLASHglsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6409), - [anon_sym_BSLASHglsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6409), - [anon_sym_BSLASHglsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6409), - [anon_sym_BSLASHglsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6409), - [anon_sym_BSLASHnewacronym] = ACTIONS(6409), - [anon_sym_BSLASHacrshort] = ACTIONS(6409), - [anon_sym_BSLASHAcrshort] = ACTIONS(6409), - [anon_sym_BSLASHACRshort] = ACTIONS(6409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6409), - [anon_sym_BSLASHacrlong] = ACTIONS(6409), - [anon_sym_BSLASHAcrlong] = ACTIONS(6409), - [anon_sym_BSLASHACRlong] = ACTIONS(6409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6409), - [anon_sym_BSLASHacrfull] = ACTIONS(6409), - [anon_sym_BSLASHAcrfull] = ACTIONS(6409), - [anon_sym_BSLASHACRfull] = ACTIONS(6409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6409), - [anon_sym_BSLASHacs] = ACTIONS(6409), - [anon_sym_BSLASHAcs] = ACTIONS(6409), - [anon_sym_BSLASHacsp] = ACTIONS(6409), - [anon_sym_BSLASHAcsp] = ACTIONS(6409), - [anon_sym_BSLASHacl] = ACTIONS(6409), - [anon_sym_BSLASHAcl] = ACTIONS(6409), - [anon_sym_BSLASHaclp] = ACTIONS(6409), - [anon_sym_BSLASHAclp] = ACTIONS(6409), - [anon_sym_BSLASHacf] = ACTIONS(6409), - [anon_sym_BSLASHAcf] = ACTIONS(6409), - [anon_sym_BSLASHacfp] = ACTIONS(6409), - [anon_sym_BSLASHAcfp] = ACTIONS(6409), - [anon_sym_BSLASHac] = ACTIONS(6409), - [anon_sym_BSLASHAc] = ACTIONS(6409), - [anon_sym_BSLASHacp] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6409), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6409), - [anon_sym_BSLASHcolor] = ACTIONS(6409), - [anon_sym_BSLASHcolorbox] = ACTIONS(6409), - [anon_sym_BSLASHtextcolor] = ACTIONS(6409), - [anon_sym_BSLASHpagecolor] = ACTIONS(6409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6409), - [anon_sym_BSLASHtext] = ACTIONS(6409), - [anon_sym_BSLASHintertext] = ACTIONS(6409), - [anon_sym_shortintertext] = ACTIONS(6409), - }, - [998] = { - [ts_builtin_sym_end] = ACTIONS(6415), - [sym_command_name] = ACTIONS(6413), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6413), - [anon_sym_LBRACK] = ACTIONS(6415), - [anon_sym_RBRACK] = ACTIONS(6415), - [anon_sym_COMMA] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(6415), - [anon_sym_LPAREN] = ACTIONS(6415), - [anon_sym_RPAREN] = ACTIONS(6415), - [anon_sym_BSLASHpart] = ACTIONS(6413), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddpart] = ACTIONS(6413), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6415), - [anon_sym_BSLASHchapter] = ACTIONS(6413), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddchap] = ACTIONS(6413), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsection] = ACTIONS(6413), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddsec] = ACTIONS(6413), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubsection] = ACTIONS(6413), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6413), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHparagraph] = ACTIONS(6413), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6413), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6415), - [anon_sym_BSLASHitem] = ACTIONS(6413), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6415), - [anon_sym_LBRACE] = ACTIONS(6415), - [anon_sym_RBRACE] = ACTIONS(6415), - [sym_word] = ACTIONS(6413), - [sym_placeholder] = ACTIONS(6415), - [anon_sym_PLUS] = ACTIONS(6415), - [anon_sym_DASH] = ACTIONS(6415), - [anon_sym_STAR] = ACTIONS(6415), - [anon_sym_SLASH] = ACTIONS(6415), - [anon_sym_LT] = ACTIONS(6413), - [anon_sym_GT] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(6413), - [anon_sym_PIPE] = ACTIONS(6413), - [anon_sym_COLON] = ACTIONS(6413), - [anon_sym_SQUOTE] = ACTIONS(6413), - [anon_sym__] = ACTIONS(6415), - [anon_sym_CARET] = ACTIONS(6415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6415), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6415), - [anon_sym_DOLLAR] = ACTIONS(6413), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6415), - [anon_sym_BSLASHbegin] = ACTIONS(6413), - [anon_sym_BSLASHtitle] = ACTIONS(6413), - [anon_sym_BSLASHauthor] = ACTIONS(6413), - [anon_sym_BSLASHusepackage] = ACTIONS(6413), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6413), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6413), - [anon_sym_BSLASHinclude] = ACTIONS(6413), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6413), - [anon_sym_BSLASHinput] = ACTIONS(6413), - [anon_sym_BSLASHsubfile] = ACTIONS(6413), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6413), - [anon_sym_BSLASHbibliography] = ACTIONS(6413), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6413), - [anon_sym_BSLASHincludesvg] = ACTIONS(6413), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6413), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6413), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6413), - [anon_sym_BSLASHimport] = ACTIONS(6413), - [anon_sym_BSLASHsubimport] = ACTIONS(6413), - [anon_sym_BSLASHinputfrom] = ACTIONS(6413), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6413), - [anon_sym_BSLASHincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHcaption] = ACTIONS(6413), - [anon_sym_BSLASHcite] = ACTIONS(6413), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCite] = ACTIONS(6413), - [anon_sym_BSLASHnocite] = ACTIONS(6413), - [anon_sym_BSLASHcitet] = ACTIONS(6413), - [anon_sym_BSLASHcitep] = ACTIONS(6413), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteauthor] = ACTIONS(6413), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6413), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitetitle] = ACTIONS(6413), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteyear] = ACTIONS(6413), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitedate] = ACTIONS(6413), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteurl] = ACTIONS(6413), - [anon_sym_BSLASHfullcite] = ACTIONS(6413), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6413), - [anon_sym_BSLASHcitealt] = ACTIONS(6413), - [anon_sym_BSLASHcitealp] = ACTIONS(6413), - [anon_sym_BSLASHcitetext] = ACTIONS(6413), - [anon_sym_BSLASHparencite] = ACTIONS(6413), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHParencite] = ACTIONS(6413), - [anon_sym_BSLASHfootcite] = ACTIONS(6413), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6413), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6413), - [anon_sym_BSLASHtextcite] = ACTIONS(6413), - [anon_sym_BSLASHTextcite] = ACTIONS(6413), - [anon_sym_BSLASHsmartcite] = ACTIONS(6413), - [anon_sym_BSLASHSmartcite] = ACTIONS(6413), - [anon_sym_BSLASHsupercite] = ACTIONS(6413), - [anon_sym_BSLASHautocite] = ACTIONS(6413), - [anon_sym_BSLASHAutocite] = ACTIONS(6413), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHvolcite] = ACTIONS(6413), - [anon_sym_BSLASHVolcite] = ACTIONS(6413), - [anon_sym_BSLASHpvolcite] = ACTIONS(6413), - [anon_sym_BSLASHPvolcite] = ACTIONS(6413), - [anon_sym_BSLASHfvolcite] = ACTIONS(6413), - [anon_sym_BSLASHftvolcite] = ACTIONS(6413), - [anon_sym_BSLASHsvolcite] = ACTIONS(6413), - [anon_sym_BSLASHSvolcite] = ACTIONS(6413), - [anon_sym_BSLASHtvolcite] = ACTIONS(6413), - [anon_sym_BSLASHTvolcite] = ACTIONS(6413), - [anon_sym_BSLASHavolcite] = ACTIONS(6413), - [anon_sym_BSLASHAvolcite] = ACTIONS(6413), - [anon_sym_BSLASHnotecite] = ACTIONS(6413), - [anon_sym_BSLASHNotecite] = ACTIONS(6413), - [anon_sym_BSLASHpnotecite] = ACTIONS(6413), - [anon_sym_BSLASHPnotecite] = ACTIONS(6413), - [anon_sym_BSLASHfnotecite] = ACTIONS(6413), - [anon_sym_BSLASHlabel] = ACTIONS(6413), - [anon_sym_BSLASHref] = ACTIONS(6413), - [anon_sym_BSLASHeqref] = ACTIONS(6413), - [anon_sym_BSLASHvref] = ACTIONS(6413), - [anon_sym_BSLASHVref] = ACTIONS(6413), - [anon_sym_BSLASHautoref] = ACTIONS(6413), - [anon_sym_BSLASHpageref] = ACTIONS(6413), - [anon_sym_BSLASHcref] = ACTIONS(6413), - [anon_sym_BSLASHCref] = ACTIONS(6413), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnameCref] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHlabelcref] = ACTIONS(6413), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCrefrange] = ACTIONS(6413), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnewlabel] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6413), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6413), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6415), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHdef] = ACTIONS(6413), - [anon_sym_BSLASHlet] = ACTIONS(6413), - [anon_sym_BSLASHleft] = ACTIONS(6413), - [anon_sym_BSLASHbig] = ACTIONS(6413), - [anon_sym_BSLASHBig] = ACTIONS(6413), - [anon_sym_BSLASHbigg] = ACTIONS(6413), - [anon_sym_BSLASHBigg] = ACTIONS(6413), - [anon_sym_BSLASHbigl] = ACTIONS(6413), - [anon_sym_BSLASHBigl] = ACTIONS(6413), - [anon_sym_BSLASHbiggl] = ACTIONS(6413), - [anon_sym_BSLASHBiggl] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6413), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6413), - [anon_sym_BSLASHgls] = ACTIONS(6413), - [anon_sym_BSLASHGls] = ACTIONS(6413), - [anon_sym_BSLASHGLS] = ACTIONS(6413), - [anon_sym_BSLASHglspl] = ACTIONS(6413), - [anon_sym_BSLASHGlspl] = ACTIONS(6413), - [anon_sym_BSLASHGLSpl] = ACTIONS(6413), - [anon_sym_BSLASHglsdisp] = ACTIONS(6413), - [anon_sym_BSLASHglslink] = ACTIONS(6413), - [anon_sym_BSLASHglstext] = ACTIONS(6413), - [anon_sym_BSLASHGlstext] = ACTIONS(6413), - [anon_sym_BSLASHGLStext] = ACTIONS(6413), - [anon_sym_BSLASHglsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6413), - [anon_sym_BSLASHglsplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSplural] = ACTIONS(6413), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHglsname] = ACTIONS(6413), - [anon_sym_BSLASHGlsname] = ACTIONS(6413), - [anon_sym_BSLASHGLSname] = ACTIONS(6413), - [anon_sym_BSLASHglssymbol] = ACTIONS(6413), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6413), - [anon_sym_BSLASHglsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6413), - [anon_sym_BSLASHglsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6413), - [anon_sym_BSLASHglsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6413), - [anon_sym_BSLASHglsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6413), - [anon_sym_BSLASHglsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6413), - [anon_sym_BSLASHnewacronym] = ACTIONS(6413), - [anon_sym_BSLASHacrshort] = ACTIONS(6413), - [anon_sym_BSLASHAcrshort] = ACTIONS(6413), - [anon_sym_BSLASHACRshort] = ACTIONS(6413), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6413), - [anon_sym_BSLASHacrlong] = ACTIONS(6413), - [anon_sym_BSLASHAcrlong] = ACTIONS(6413), - [anon_sym_BSLASHACRlong] = ACTIONS(6413), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6413), - [anon_sym_BSLASHacrfull] = ACTIONS(6413), - [anon_sym_BSLASHAcrfull] = ACTIONS(6413), - [anon_sym_BSLASHACRfull] = ACTIONS(6413), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6413), - [anon_sym_BSLASHacs] = ACTIONS(6413), - [anon_sym_BSLASHAcs] = ACTIONS(6413), - [anon_sym_BSLASHacsp] = ACTIONS(6413), - [anon_sym_BSLASHAcsp] = ACTIONS(6413), - [anon_sym_BSLASHacl] = ACTIONS(6413), - [anon_sym_BSLASHAcl] = ACTIONS(6413), - [anon_sym_BSLASHaclp] = ACTIONS(6413), - [anon_sym_BSLASHAclp] = ACTIONS(6413), - [anon_sym_BSLASHacf] = ACTIONS(6413), - [anon_sym_BSLASHAcf] = ACTIONS(6413), - [anon_sym_BSLASHacfp] = ACTIONS(6413), - [anon_sym_BSLASHAcfp] = ACTIONS(6413), - [anon_sym_BSLASHac] = ACTIONS(6413), - [anon_sym_BSLASHAc] = ACTIONS(6413), - [anon_sym_BSLASHacp] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6413), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6413), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6413), - [anon_sym_BSLASHcolor] = ACTIONS(6413), - [anon_sym_BSLASHcolorbox] = ACTIONS(6413), - [anon_sym_BSLASHtextcolor] = ACTIONS(6413), - [anon_sym_BSLASHpagecolor] = ACTIONS(6413), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6413), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6413), - [anon_sym_BSLASHtext] = ACTIONS(6413), - [anon_sym_BSLASHintertext] = ACTIONS(6413), - [anon_sym_shortintertext] = ACTIONS(6413), - }, - [999] = { - [ts_builtin_sym_end] = ACTIONS(191), - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddpart] = ACTIONS(189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddsec] = ACTIONS(189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHparagraph] = ACTIONS(189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [1000] = { - [ts_builtin_sym_end] = ACTIONS(6195), - [sym_command_name] = ACTIONS(6193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6193), - [anon_sym_LBRACK] = ACTIONS(6195), - [anon_sym_RBRACK] = ACTIONS(6195), - [anon_sym_COMMA] = ACTIONS(6195), - [anon_sym_EQ] = ACTIONS(6195), - [anon_sym_LPAREN] = ACTIONS(6195), - [anon_sym_RPAREN] = ACTIONS(6195), - [anon_sym_BSLASHpart] = ACTIONS(6193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddpart] = ACTIONS(6193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6195), - [anon_sym_BSLASHchapter] = ACTIONS(6193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddchap] = ACTIONS(6193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsection] = ACTIONS(6193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddsec] = ACTIONS(6193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubsection] = ACTIONS(6193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHparagraph] = ACTIONS(6193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6195), - [anon_sym_BSLASHitem] = ACTIONS(6193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6195), - [anon_sym_LBRACE] = ACTIONS(6195), - [anon_sym_RBRACE] = ACTIONS(6195), - [sym_word] = ACTIONS(6193), - [sym_placeholder] = ACTIONS(6195), - [anon_sym_PLUS] = ACTIONS(6195), - [anon_sym_DASH] = ACTIONS(6195), - [anon_sym_STAR] = ACTIONS(6195), - [anon_sym_SLASH] = ACTIONS(6195), - [anon_sym_LT] = ACTIONS(6193), - [anon_sym_GT] = ACTIONS(6193), - [anon_sym_BANG] = ACTIONS(6193), - [anon_sym_PIPE] = ACTIONS(6193), - [anon_sym_COLON] = ACTIONS(6193), - [anon_sym_SQUOTE] = ACTIONS(6193), - [anon_sym__] = ACTIONS(6195), - [anon_sym_CARET] = ACTIONS(6195), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), - [anon_sym_DOLLAR] = ACTIONS(6193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), - [anon_sym_BSLASHbegin] = ACTIONS(6193), - [anon_sym_BSLASHtitle] = ACTIONS(6193), - [anon_sym_BSLASHauthor] = ACTIONS(6193), - [anon_sym_BSLASHusepackage] = ACTIONS(6193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), - [anon_sym_BSLASHinclude] = ACTIONS(6193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), - [anon_sym_BSLASHinput] = ACTIONS(6193), - [anon_sym_BSLASHsubfile] = ACTIONS(6193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), - [anon_sym_BSLASHbibliography] = ACTIONS(6193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), - [anon_sym_BSLASHincludesvg] = ACTIONS(6193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), - [anon_sym_BSLASHimport] = ACTIONS(6193), - [anon_sym_BSLASHsubimport] = ACTIONS(6193), - [anon_sym_BSLASHinputfrom] = ACTIONS(6193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), - [anon_sym_BSLASHincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHcaption] = ACTIONS(6193), - [anon_sym_BSLASHcite] = ACTIONS(6193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCite] = ACTIONS(6193), - [anon_sym_BSLASHnocite] = ACTIONS(6193), - [anon_sym_BSLASHcitet] = ACTIONS(6193), - [anon_sym_BSLASHcitep] = ACTIONS(6193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteauthor] = ACTIONS(6193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitetitle] = ACTIONS(6193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteyear] = ACTIONS(6193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitedate] = ACTIONS(6193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteurl] = ACTIONS(6193), - [anon_sym_BSLASHfullcite] = ACTIONS(6193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), - [anon_sym_BSLASHcitealt] = ACTIONS(6193), - [anon_sym_BSLASHcitealp] = ACTIONS(6193), - [anon_sym_BSLASHcitetext] = ACTIONS(6193), - [anon_sym_BSLASHparencite] = ACTIONS(6193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHParencite] = ACTIONS(6193), - [anon_sym_BSLASHfootcite] = ACTIONS(6193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), - [anon_sym_BSLASHtextcite] = ACTIONS(6193), - [anon_sym_BSLASHTextcite] = ACTIONS(6193), - [anon_sym_BSLASHsmartcite] = ACTIONS(6193), - [anon_sym_BSLASHSmartcite] = ACTIONS(6193), - [anon_sym_BSLASHsupercite] = ACTIONS(6193), - [anon_sym_BSLASHautocite] = ACTIONS(6193), - [anon_sym_BSLASHAutocite] = ACTIONS(6193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHvolcite] = ACTIONS(6193), - [anon_sym_BSLASHVolcite] = ACTIONS(6193), - [anon_sym_BSLASHpvolcite] = ACTIONS(6193), - [anon_sym_BSLASHPvolcite] = ACTIONS(6193), - [anon_sym_BSLASHfvolcite] = ACTIONS(6193), - [anon_sym_BSLASHftvolcite] = ACTIONS(6193), - [anon_sym_BSLASHsvolcite] = ACTIONS(6193), - [anon_sym_BSLASHSvolcite] = ACTIONS(6193), - [anon_sym_BSLASHtvolcite] = ACTIONS(6193), - [anon_sym_BSLASHTvolcite] = ACTIONS(6193), - [anon_sym_BSLASHavolcite] = ACTIONS(6193), - [anon_sym_BSLASHAvolcite] = ACTIONS(6193), - [anon_sym_BSLASHnotecite] = ACTIONS(6193), - [anon_sym_BSLASHNotecite] = ACTIONS(6193), - [anon_sym_BSLASHpnotecite] = ACTIONS(6193), - [anon_sym_BSLASHPnotecite] = ACTIONS(6193), - [anon_sym_BSLASHfnotecite] = ACTIONS(6193), - [anon_sym_BSLASHlabel] = ACTIONS(6193), - [anon_sym_BSLASHref] = ACTIONS(6193), - [anon_sym_BSLASHeqref] = ACTIONS(6193), - [anon_sym_BSLASHvref] = ACTIONS(6193), - [anon_sym_BSLASHVref] = ACTIONS(6193), - [anon_sym_BSLASHautoref] = ACTIONS(6193), - [anon_sym_BSLASHpageref] = ACTIONS(6193), - [anon_sym_BSLASHcref] = ACTIONS(6193), - [anon_sym_BSLASHCref] = ACTIONS(6193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnameCref] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHlabelcref] = ACTIONS(6193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCrefrange] = ACTIONS(6193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnewlabel] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHdef] = ACTIONS(6193), - [anon_sym_BSLASHlet] = ACTIONS(6193), - [anon_sym_BSLASHleft] = ACTIONS(6193), - [anon_sym_BSLASHbig] = ACTIONS(6193), - [anon_sym_BSLASHBig] = ACTIONS(6193), - [anon_sym_BSLASHbigg] = ACTIONS(6193), - [anon_sym_BSLASHBigg] = ACTIONS(6193), - [anon_sym_BSLASHbigl] = ACTIONS(6193), - [anon_sym_BSLASHBigl] = ACTIONS(6193), - [anon_sym_BSLASHbiggl] = ACTIONS(6193), - [anon_sym_BSLASHBiggl] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), - [anon_sym_BSLASHgls] = ACTIONS(6193), - [anon_sym_BSLASHGls] = ACTIONS(6193), - [anon_sym_BSLASHGLS] = ACTIONS(6193), - [anon_sym_BSLASHglspl] = ACTIONS(6193), - [anon_sym_BSLASHGlspl] = ACTIONS(6193), - [anon_sym_BSLASHGLSpl] = ACTIONS(6193), - [anon_sym_BSLASHglsdisp] = ACTIONS(6193), - [anon_sym_BSLASHglslink] = ACTIONS(6193), - [anon_sym_BSLASHglstext] = ACTIONS(6193), - [anon_sym_BSLASHGlstext] = ACTIONS(6193), - [anon_sym_BSLASHGLStext] = ACTIONS(6193), - [anon_sym_BSLASHglsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), - [anon_sym_BSLASHglsplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSplural] = ACTIONS(6193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHglsname] = ACTIONS(6193), - [anon_sym_BSLASHGlsname] = ACTIONS(6193), - [anon_sym_BSLASHGLSname] = ACTIONS(6193), - [anon_sym_BSLASHglssymbol] = ACTIONS(6193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), - [anon_sym_BSLASHglsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), - [anon_sym_BSLASHglsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), - [anon_sym_BSLASHglsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), - [anon_sym_BSLASHglsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), - [anon_sym_BSLASHglsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), - [anon_sym_BSLASHnewacronym] = ACTIONS(6193), - [anon_sym_BSLASHacrshort] = ACTIONS(6193), - [anon_sym_BSLASHAcrshort] = ACTIONS(6193), - [anon_sym_BSLASHACRshort] = ACTIONS(6193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), - [anon_sym_BSLASHacrlong] = ACTIONS(6193), - [anon_sym_BSLASHAcrlong] = ACTIONS(6193), - [anon_sym_BSLASHACRlong] = ACTIONS(6193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), - [anon_sym_BSLASHacrfull] = ACTIONS(6193), - [anon_sym_BSLASHAcrfull] = ACTIONS(6193), - [anon_sym_BSLASHACRfull] = ACTIONS(6193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), - [anon_sym_BSLASHacs] = ACTIONS(6193), - [anon_sym_BSLASHAcs] = ACTIONS(6193), - [anon_sym_BSLASHacsp] = ACTIONS(6193), - [anon_sym_BSLASHAcsp] = ACTIONS(6193), - [anon_sym_BSLASHacl] = ACTIONS(6193), - [anon_sym_BSLASHAcl] = ACTIONS(6193), - [anon_sym_BSLASHaclp] = ACTIONS(6193), - [anon_sym_BSLASHAclp] = ACTIONS(6193), - [anon_sym_BSLASHacf] = ACTIONS(6193), - [anon_sym_BSLASHAcf] = ACTIONS(6193), - [anon_sym_BSLASHacfp] = ACTIONS(6193), - [anon_sym_BSLASHAcfp] = ACTIONS(6193), - [anon_sym_BSLASHac] = ACTIONS(6193), - [anon_sym_BSLASHAc] = ACTIONS(6193), - [anon_sym_BSLASHacp] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), - [anon_sym_BSLASHcolor] = ACTIONS(6193), - [anon_sym_BSLASHcolorbox] = ACTIONS(6193), - [anon_sym_BSLASHtextcolor] = ACTIONS(6193), - [anon_sym_BSLASHpagecolor] = ACTIONS(6193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), - [anon_sym_BSLASHtext] = ACTIONS(6193), - [anon_sym_BSLASHintertext] = ACTIONS(6193), - [anon_sym_shortintertext] = ACTIONS(6193), - }, - [1001] = { - [ts_builtin_sym_end] = ACTIONS(6199), - [sym_command_name] = ACTIONS(6197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6197), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_RBRACK] = ACTIONS(6199), - [anon_sym_COMMA] = ACTIONS(6199), - [anon_sym_EQ] = ACTIONS(6199), - [anon_sym_LPAREN] = ACTIONS(6199), - [anon_sym_RPAREN] = ACTIONS(6199), - [anon_sym_BSLASHpart] = ACTIONS(6197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddpart] = ACTIONS(6197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6199), - [anon_sym_BSLASHchapter] = ACTIONS(6197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddchap] = ACTIONS(6197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsection] = ACTIONS(6197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddsec] = ACTIONS(6197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubsection] = ACTIONS(6197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHparagraph] = ACTIONS(6197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6199), - [anon_sym_BSLASHitem] = ACTIONS(6197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6199), - [anon_sym_LBRACE] = ACTIONS(6199), - [anon_sym_RBRACE] = ACTIONS(6199), - [sym_word] = ACTIONS(6197), - [sym_placeholder] = ACTIONS(6199), - [anon_sym_PLUS] = ACTIONS(6199), - [anon_sym_DASH] = ACTIONS(6199), - [anon_sym_STAR] = ACTIONS(6199), - [anon_sym_SLASH] = ACTIONS(6199), - [anon_sym_LT] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6197), - [anon_sym_BANG] = ACTIONS(6197), - [anon_sym_PIPE] = ACTIONS(6197), - [anon_sym_COLON] = ACTIONS(6197), - [anon_sym_SQUOTE] = ACTIONS(6197), - [anon_sym__] = ACTIONS(6199), - [anon_sym_CARET] = ACTIONS(6199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), - [anon_sym_DOLLAR] = ACTIONS(6197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), - [anon_sym_BSLASHbegin] = ACTIONS(6197), - [anon_sym_BSLASHtitle] = ACTIONS(6197), - [anon_sym_BSLASHauthor] = ACTIONS(6197), - [anon_sym_BSLASHusepackage] = ACTIONS(6197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), - [anon_sym_BSLASHinclude] = ACTIONS(6197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), - [anon_sym_BSLASHinput] = ACTIONS(6197), - [anon_sym_BSLASHsubfile] = ACTIONS(6197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), - [anon_sym_BSLASHbibliography] = ACTIONS(6197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), - [anon_sym_BSLASHincludesvg] = ACTIONS(6197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), - [anon_sym_BSLASHimport] = ACTIONS(6197), - [anon_sym_BSLASHsubimport] = ACTIONS(6197), - [anon_sym_BSLASHinputfrom] = ACTIONS(6197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), - [anon_sym_BSLASHincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHcaption] = ACTIONS(6197), - [anon_sym_BSLASHcite] = ACTIONS(6197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCite] = ACTIONS(6197), - [anon_sym_BSLASHnocite] = ACTIONS(6197), - [anon_sym_BSLASHcitet] = ACTIONS(6197), - [anon_sym_BSLASHcitep] = ACTIONS(6197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteauthor] = ACTIONS(6197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitetitle] = ACTIONS(6197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteyear] = ACTIONS(6197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitedate] = ACTIONS(6197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteurl] = ACTIONS(6197), - [anon_sym_BSLASHfullcite] = ACTIONS(6197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), - [anon_sym_BSLASHcitealt] = ACTIONS(6197), - [anon_sym_BSLASHcitealp] = ACTIONS(6197), - [anon_sym_BSLASHcitetext] = ACTIONS(6197), - [anon_sym_BSLASHparencite] = ACTIONS(6197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHParencite] = ACTIONS(6197), - [anon_sym_BSLASHfootcite] = ACTIONS(6197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), - [anon_sym_BSLASHtextcite] = ACTIONS(6197), - [anon_sym_BSLASHTextcite] = ACTIONS(6197), - [anon_sym_BSLASHsmartcite] = ACTIONS(6197), - [anon_sym_BSLASHSmartcite] = ACTIONS(6197), - [anon_sym_BSLASHsupercite] = ACTIONS(6197), - [anon_sym_BSLASHautocite] = ACTIONS(6197), - [anon_sym_BSLASHAutocite] = ACTIONS(6197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHvolcite] = ACTIONS(6197), - [anon_sym_BSLASHVolcite] = ACTIONS(6197), - [anon_sym_BSLASHpvolcite] = ACTIONS(6197), - [anon_sym_BSLASHPvolcite] = ACTIONS(6197), - [anon_sym_BSLASHfvolcite] = ACTIONS(6197), - [anon_sym_BSLASHftvolcite] = ACTIONS(6197), - [anon_sym_BSLASHsvolcite] = ACTIONS(6197), - [anon_sym_BSLASHSvolcite] = ACTIONS(6197), - [anon_sym_BSLASHtvolcite] = ACTIONS(6197), - [anon_sym_BSLASHTvolcite] = ACTIONS(6197), - [anon_sym_BSLASHavolcite] = ACTIONS(6197), - [anon_sym_BSLASHAvolcite] = ACTIONS(6197), - [anon_sym_BSLASHnotecite] = ACTIONS(6197), - [anon_sym_BSLASHNotecite] = ACTIONS(6197), - [anon_sym_BSLASHpnotecite] = ACTIONS(6197), - [anon_sym_BSLASHPnotecite] = ACTIONS(6197), - [anon_sym_BSLASHfnotecite] = ACTIONS(6197), - [anon_sym_BSLASHlabel] = ACTIONS(6197), - [anon_sym_BSLASHref] = ACTIONS(6197), - [anon_sym_BSLASHeqref] = ACTIONS(6197), - [anon_sym_BSLASHvref] = ACTIONS(6197), - [anon_sym_BSLASHVref] = ACTIONS(6197), - [anon_sym_BSLASHautoref] = ACTIONS(6197), - [anon_sym_BSLASHpageref] = ACTIONS(6197), - [anon_sym_BSLASHcref] = ACTIONS(6197), - [anon_sym_BSLASHCref] = ACTIONS(6197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnameCref] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHlabelcref] = ACTIONS(6197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCrefrange] = ACTIONS(6197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnewlabel] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHdef] = ACTIONS(6197), - [anon_sym_BSLASHlet] = ACTIONS(6197), - [anon_sym_BSLASHleft] = ACTIONS(6197), - [anon_sym_BSLASHbig] = ACTIONS(6197), - [anon_sym_BSLASHBig] = ACTIONS(6197), - [anon_sym_BSLASHbigg] = ACTIONS(6197), - [anon_sym_BSLASHBigg] = ACTIONS(6197), - [anon_sym_BSLASHbigl] = ACTIONS(6197), - [anon_sym_BSLASHBigl] = ACTIONS(6197), - [anon_sym_BSLASHbiggl] = ACTIONS(6197), - [anon_sym_BSLASHBiggl] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), - [anon_sym_BSLASHgls] = ACTIONS(6197), - [anon_sym_BSLASHGls] = ACTIONS(6197), - [anon_sym_BSLASHGLS] = ACTIONS(6197), - [anon_sym_BSLASHglspl] = ACTIONS(6197), - [anon_sym_BSLASHGlspl] = ACTIONS(6197), - [anon_sym_BSLASHGLSpl] = ACTIONS(6197), - [anon_sym_BSLASHglsdisp] = ACTIONS(6197), - [anon_sym_BSLASHglslink] = ACTIONS(6197), - [anon_sym_BSLASHglstext] = ACTIONS(6197), - [anon_sym_BSLASHGlstext] = ACTIONS(6197), - [anon_sym_BSLASHGLStext] = ACTIONS(6197), - [anon_sym_BSLASHglsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), - [anon_sym_BSLASHglsplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSplural] = ACTIONS(6197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHglsname] = ACTIONS(6197), - [anon_sym_BSLASHGlsname] = ACTIONS(6197), - [anon_sym_BSLASHGLSname] = ACTIONS(6197), - [anon_sym_BSLASHglssymbol] = ACTIONS(6197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), - [anon_sym_BSLASHglsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), - [anon_sym_BSLASHglsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), - [anon_sym_BSLASHglsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), - [anon_sym_BSLASHglsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), - [anon_sym_BSLASHglsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), - [anon_sym_BSLASHnewacronym] = ACTIONS(6197), - [anon_sym_BSLASHacrshort] = ACTIONS(6197), - [anon_sym_BSLASHAcrshort] = ACTIONS(6197), - [anon_sym_BSLASHACRshort] = ACTIONS(6197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), - [anon_sym_BSLASHacrlong] = ACTIONS(6197), - [anon_sym_BSLASHAcrlong] = ACTIONS(6197), - [anon_sym_BSLASHACRlong] = ACTIONS(6197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), - [anon_sym_BSLASHacrfull] = ACTIONS(6197), - [anon_sym_BSLASHAcrfull] = ACTIONS(6197), - [anon_sym_BSLASHACRfull] = ACTIONS(6197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), - [anon_sym_BSLASHacs] = ACTIONS(6197), - [anon_sym_BSLASHAcs] = ACTIONS(6197), - [anon_sym_BSLASHacsp] = ACTIONS(6197), - [anon_sym_BSLASHAcsp] = ACTIONS(6197), - [anon_sym_BSLASHacl] = ACTIONS(6197), - [anon_sym_BSLASHAcl] = ACTIONS(6197), - [anon_sym_BSLASHaclp] = ACTIONS(6197), - [anon_sym_BSLASHAclp] = ACTIONS(6197), - [anon_sym_BSLASHacf] = ACTIONS(6197), - [anon_sym_BSLASHAcf] = ACTIONS(6197), - [anon_sym_BSLASHacfp] = ACTIONS(6197), - [anon_sym_BSLASHAcfp] = ACTIONS(6197), - [anon_sym_BSLASHac] = ACTIONS(6197), - [anon_sym_BSLASHAc] = ACTIONS(6197), - [anon_sym_BSLASHacp] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), - [anon_sym_BSLASHcolor] = ACTIONS(6197), - [anon_sym_BSLASHcolorbox] = ACTIONS(6197), - [anon_sym_BSLASHtextcolor] = ACTIONS(6197), - [anon_sym_BSLASHpagecolor] = ACTIONS(6197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), - [anon_sym_BSLASHtext] = ACTIONS(6197), - [anon_sym_BSLASHintertext] = ACTIONS(6197), - [anon_sym_shortintertext] = ACTIONS(6197), - }, - [1002] = { - [sym_curly_group] = STATE(1375), - [sym_command_name] = ACTIONS(6021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6021), - [anon_sym_LBRACK] = ACTIONS(6023), - [anon_sym_RBRACK] = ACTIONS(6023), - [anon_sym_COMMA] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(6023), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_RPAREN] = ACTIONS(6023), - [anon_sym_BSLASHpart] = ACTIONS(6021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddpart] = ACTIONS(6021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6023), - [anon_sym_BSLASHchapter] = ACTIONS(6021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddchap] = ACTIONS(6021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsection] = ACTIONS(6021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHaddsec] = ACTIONS(6021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubsection] = ACTIONS(6021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6023), - [anon_sym_BSLASHparagraph] = ACTIONS(6021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6023), - [anon_sym_BSLASHitem] = ACTIONS(6021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6023), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(6021), - [sym_placeholder] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6023), - [anon_sym_DASH] = ACTIONS(6023), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6023), - [anon_sym_LT] = ACTIONS(6021), - [anon_sym_GT] = ACTIONS(6021), - [anon_sym_BANG] = ACTIONS(6021), - [anon_sym_PIPE] = ACTIONS(6021), - [anon_sym_COLON] = ACTIONS(6021), - [anon_sym_SQUOTE] = ACTIONS(6021), - [anon_sym__] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), - [anon_sym_BSLASHbegin] = ACTIONS(6021), - [anon_sym_BSLASHtitle] = ACTIONS(6021), - [anon_sym_BSLASHauthor] = ACTIONS(6021), - [anon_sym_BSLASHusepackage] = ACTIONS(6021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), - [anon_sym_BSLASHinclude] = ACTIONS(6021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), - [anon_sym_BSLASHinput] = ACTIONS(6021), - [anon_sym_BSLASHsubfile] = ACTIONS(6021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), - [anon_sym_BSLASHbibliography] = ACTIONS(6021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), - [anon_sym_BSLASHincludesvg] = ACTIONS(6021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), - [anon_sym_BSLASHimport] = ACTIONS(6021), - [anon_sym_BSLASHsubimport] = ACTIONS(6021), - [anon_sym_BSLASHinputfrom] = ACTIONS(6021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), - [anon_sym_BSLASHincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHcaption] = ACTIONS(6021), - [anon_sym_BSLASHcite] = ACTIONS(6021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCite] = ACTIONS(6021), - [anon_sym_BSLASHnocite] = ACTIONS(6021), - [anon_sym_BSLASHcitet] = ACTIONS(6021), - [anon_sym_BSLASHcitep] = ACTIONS(6021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteauthor] = ACTIONS(6021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitetitle] = ACTIONS(6021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteyear] = ACTIONS(6021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitedate] = ACTIONS(6021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteurl] = ACTIONS(6021), - [anon_sym_BSLASHfullcite] = ACTIONS(6021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), - [anon_sym_BSLASHcitealt] = ACTIONS(6021), - [anon_sym_BSLASHcitealp] = ACTIONS(6021), - [anon_sym_BSLASHcitetext] = ACTIONS(6021), - [anon_sym_BSLASHparencite] = ACTIONS(6021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHParencite] = ACTIONS(6021), - [anon_sym_BSLASHfootcite] = ACTIONS(6021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), - [anon_sym_BSLASHtextcite] = ACTIONS(6021), - [anon_sym_BSLASHTextcite] = ACTIONS(6021), - [anon_sym_BSLASHsmartcite] = ACTIONS(6021), - [anon_sym_BSLASHSmartcite] = ACTIONS(6021), - [anon_sym_BSLASHsupercite] = ACTIONS(6021), - [anon_sym_BSLASHautocite] = ACTIONS(6021), - [anon_sym_BSLASHAutocite] = ACTIONS(6021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHvolcite] = ACTIONS(6021), - [anon_sym_BSLASHVolcite] = ACTIONS(6021), - [anon_sym_BSLASHpvolcite] = ACTIONS(6021), - [anon_sym_BSLASHPvolcite] = ACTIONS(6021), - [anon_sym_BSLASHfvolcite] = ACTIONS(6021), - [anon_sym_BSLASHftvolcite] = ACTIONS(6021), - [anon_sym_BSLASHsvolcite] = ACTIONS(6021), - [anon_sym_BSLASHSvolcite] = ACTIONS(6021), - [anon_sym_BSLASHtvolcite] = ACTIONS(6021), - [anon_sym_BSLASHTvolcite] = ACTIONS(6021), - [anon_sym_BSLASHavolcite] = ACTIONS(6021), - [anon_sym_BSLASHAvolcite] = ACTIONS(6021), - [anon_sym_BSLASHnotecite] = ACTIONS(6021), - [anon_sym_BSLASHNotecite] = ACTIONS(6021), - [anon_sym_BSLASHpnotecite] = ACTIONS(6021), - [anon_sym_BSLASHPnotecite] = ACTIONS(6021), - [anon_sym_BSLASHfnotecite] = ACTIONS(6021), - [anon_sym_BSLASHlabel] = ACTIONS(6021), - [anon_sym_BSLASHref] = ACTIONS(6021), - [anon_sym_BSLASHeqref] = ACTIONS(6021), - [anon_sym_BSLASHvref] = ACTIONS(6021), - [anon_sym_BSLASHVref] = ACTIONS(6021), - [anon_sym_BSLASHautoref] = ACTIONS(6021), - [anon_sym_BSLASHpageref] = ACTIONS(6021), - [anon_sym_BSLASHcref] = ACTIONS(6021), - [anon_sym_BSLASHCref] = ACTIONS(6021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnameCref] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHlabelcref] = ACTIONS(6021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCrefrange] = ACTIONS(6021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnewlabel] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHdef] = ACTIONS(6021), - [anon_sym_BSLASHlet] = ACTIONS(6021), - [anon_sym_BSLASHleft] = ACTIONS(6021), - [anon_sym_BSLASHbig] = ACTIONS(6021), - [anon_sym_BSLASHBig] = ACTIONS(6021), - [anon_sym_BSLASHbigg] = ACTIONS(6021), - [anon_sym_BSLASHBigg] = ACTIONS(6021), - [anon_sym_BSLASHbigl] = ACTIONS(6021), - [anon_sym_BSLASHBigl] = ACTIONS(6021), - [anon_sym_BSLASHbiggl] = ACTIONS(6021), - [anon_sym_BSLASHBiggl] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), - [anon_sym_BSLASHgls] = ACTIONS(6021), - [anon_sym_BSLASHGls] = ACTIONS(6021), - [anon_sym_BSLASHGLS] = ACTIONS(6021), - [anon_sym_BSLASHglspl] = ACTIONS(6021), - [anon_sym_BSLASHGlspl] = ACTIONS(6021), - [anon_sym_BSLASHGLSpl] = ACTIONS(6021), - [anon_sym_BSLASHglsdisp] = ACTIONS(6021), - [anon_sym_BSLASHglslink] = ACTIONS(6021), - [anon_sym_BSLASHglstext] = ACTIONS(6021), - [anon_sym_BSLASHGlstext] = ACTIONS(6021), - [anon_sym_BSLASHGLStext] = ACTIONS(6021), - [anon_sym_BSLASHglsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), - [anon_sym_BSLASHglsplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSplural] = ACTIONS(6021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHglsname] = ACTIONS(6021), - [anon_sym_BSLASHGlsname] = ACTIONS(6021), - [anon_sym_BSLASHGLSname] = ACTIONS(6021), - [anon_sym_BSLASHglssymbol] = ACTIONS(6021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), - [anon_sym_BSLASHglsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), - [anon_sym_BSLASHglsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), - [anon_sym_BSLASHglsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), - [anon_sym_BSLASHglsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), - [anon_sym_BSLASHglsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), - [anon_sym_BSLASHnewacronym] = ACTIONS(6021), - [anon_sym_BSLASHacrshort] = ACTIONS(6021), - [anon_sym_BSLASHAcrshort] = ACTIONS(6021), - [anon_sym_BSLASHACRshort] = ACTIONS(6021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), - [anon_sym_BSLASHacrlong] = ACTIONS(6021), - [anon_sym_BSLASHAcrlong] = ACTIONS(6021), - [anon_sym_BSLASHACRlong] = ACTIONS(6021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), - [anon_sym_BSLASHacrfull] = ACTIONS(6021), - [anon_sym_BSLASHAcrfull] = ACTIONS(6021), - [anon_sym_BSLASHACRfull] = ACTIONS(6021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), - [anon_sym_BSLASHacs] = ACTIONS(6021), - [anon_sym_BSLASHAcs] = ACTIONS(6021), - [anon_sym_BSLASHacsp] = ACTIONS(6021), - [anon_sym_BSLASHAcsp] = ACTIONS(6021), - [anon_sym_BSLASHacl] = ACTIONS(6021), - [anon_sym_BSLASHAcl] = ACTIONS(6021), - [anon_sym_BSLASHaclp] = ACTIONS(6021), - [anon_sym_BSLASHAclp] = ACTIONS(6021), - [anon_sym_BSLASHacf] = ACTIONS(6021), - [anon_sym_BSLASHAcf] = ACTIONS(6021), - [anon_sym_BSLASHacfp] = ACTIONS(6021), - [anon_sym_BSLASHAcfp] = ACTIONS(6021), - [anon_sym_BSLASHac] = ACTIONS(6021), - [anon_sym_BSLASHAc] = ACTIONS(6021), - [anon_sym_BSLASHacp] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), - [anon_sym_BSLASHcolor] = ACTIONS(6021), - [anon_sym_BSLASHcolorbox] = ACTIONS(6021), - [anon_sym_BSLASHtextcolor] = ACTIONS(6021), - [anon_sym_BSLASHpagecolor] = ACTIONS(6021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), - [anon_sym_BSLASHtext] = ACTIONS(6021), - [anon_sym_BSLASHintertext] = ACTIONS(6021), - [anon_sym_shortintertext] = ACTIONS(6021), - }, - [1003] = { - [ts_builtin_sym_end] = ACTIONS(6207), - [sym_command_name] = ACTIONS(6205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6205), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_RBRACK] = ACTIONS(6207), - [anon_sym_COMMA] = ACTIONS(6207), - [anon_sym_EQ] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_RPAREN] = ACTIONS(6207), - [anon_sym_BSLASHpart] = ACTIONS(6205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddpart] = ACTIONS(6205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6207), - [anon_sym_BSLASHchapter] = ACTIONS(6205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddchap] = ACTIONS(6205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsection] = ACTIONS(6205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddsec] = ACTIONS(6205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubsection] = ACTIONS(6205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHparagraph] = ACTIONS(6205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6207), - [anon_sym_BSLASHitem] = ACTIONS(6205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6207), - [anon_sym_LBRACE] = ACTIONS(6207), - [anon_sym_RBRACE] = ACTIONS(6207), - [sym_word] = ACTIONS(6205), - [sym_placeholder] = ACTIONS(6207), - [anon_sym_PLUS] = ACTIONS(6207), - [anon_sym_DASH] = ACTIONS(6207), - [anon_sym_STAR] = ACTIONS(6207), - [anon_sym_SLASH] = ACTIONS(6207), - [anon_sym_LT] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6205), - [anon_sym_BANG] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_COLON] = ACTIONS(6205), - [anon_sym_SQUOTE] = ACTIONS(6205), - [anon_sym__] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), - [anon_sym_DOLLAR] = ACTIONS(6205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), - [anon_sym_BSLASHbegin] = ACTIONS(6205), - [anon_sym_BSLASHtitle] = ACTIONS(6205), - [anon_sym_BSLASHauthor] = ACTIONS(6205), - [anon_sym_BSLASHusepackage] = ACTIONS(6205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), - [anon_sym_BSLASHinclude] = ACTIONS(6205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), - [anon_sym_BSLASHinput] = ACTIONS(6205), - [anon_sym_BSLASHsubfile] = ACTIONS(6205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), - [anon_sym_BSLASHbibliography] = ACTIONS(6205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), - [anon_sym_BSLASHincludesvg] = ACTIONS(6205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), - [anon_sym_BSLASHimport] = ACTIONS(6205), - [anon_sym_BSLASHsubimport] = ACTIONS(6205), - [anon_sym_BSLASHinputfrom] = ACTIONS(6205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), - [anon_sym_BSLASHincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHcaption] = ACTIONS(6205), - [anon_sym_BSLASHcite] = ACTIONS(6205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCite] = ACTIONS(6205), - [anon_sym_BSLASHnocite] = ACTIONS(6205), - [anon_sym_BSLASHcitet] = ACTIONS(6205), - [anon_sym_BSLASHcitep] = ACTIONS(6205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteauthor] = ACTIONS(6205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitetitle] = ACTIONS(6205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteyear] = ACTIONS(6205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitedate] = ACTIONS(6205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteurl] = ACTIONS(6205), - [anon_sym_BSLASHfullcite] = ACTIONS(6205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), - [anon_sym_BSLASHcitealt] = ACTIONS(6205), - [anon_sym_BSLASHcitealp] = ACTIONS(6205), - [anon_sym_BSLASHcitetext] = ACTIONS(6205), - [anon_sym_BSLASHparencite] = ACTIONS(6205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHParencite] = ACTIONS(6205), - [anon_sym_BSLASHfootcite] = ACTIONS(6205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), - [anon_sym_BSLASHtextcite] = ACTIONS(6205), - [anon_sym_BSLASHTextcite] = ACTIONS(6205), - [anon_sym_BSLASHsmartcite] = ACTIONS(6205), - [anon_sym_BSLASHSmartcite] = ACTIONS(6205), - [anon_sym_BSLASHsupercite] = ACTIONS(6205), - [anon_sym_BSLASHautocite] = ACTIONS(6205), - [anon_sym_BSLASHAutocite] = ACTIONS(6205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHvolcite] = ACTIONS(6205), - [anon_sym_BSLASHVolcite] = ACTIONS(6205), - [anon_sym_BSLASHpvolcite] = ACTIONS(6205), - [anon_sym_BSLASHPvolcite] = ACTIONS(6205), - [anon_sym_BSLASHfvolcite] = ACTIONS(6205), - [anon_sym_BSLASHftvolcite] = ACTIONS(6205), - [anon_sym_BSLASHsvolcite] = ACTIONS(6205), - [anon_sym_BSLASHSvolcite] = ACTIONS(6205), - [anon_sym_BSLASHtvolcite] = ACTIONS(6205), - [anon_sym_BSLASHTvolcite] = ACTIONS(6205), - [anon_sym_BSLASHavolcite] = ACTIONS(6205), - [anon_sym_BSLASHAvolcite] = ACTIONS(6205), - [anon_sym_BSLASHnotecite] = ACTIONS(6205), - [anon_sym_BSLASHNotecite] = ACTIONS(6205), - [anon_sym_BSLASHpnotecite] = ACTIONS(6205), - [anon_sym_BSLASHPnotecite] = ACTIONS(6205), - [anon_sym_BSLASHfnotecite] = ACTIONS(6205), - [anon_sym_BSLASHlabel] = ACTIONS(6205), - [anon_sym_BSLASHref] = ACTIONS(6205), - [anon_sym_BSLASHeqref] = ACTIONS(6205), - [anon_sym_BSLASHvref] = ACTIONS(6205), - [anon_sym_BSLASHVref] = ACTIONS(6205), - [anon_sym_BSLASHautoref] = ACTIONS(6205), - [anon_sym_BSLASHpageref] = ACTIONS(6205), - [anon_sym_BSLASHcref] = ACTIONS(6205), - [anon_sym_BSLASHCref] = ACTIONS(6205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnameCref] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHlabelcref] = ACTIONS(6205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCrefrange] = ACTIONS(6205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnewlabel] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHdef] = ACTIONS(6205), - [anon_sym_BSLASHlet] = ACTIONS(6205), - [anon_sym_BSLASHleft] = ACTIONS(6205), - [anon_sym_BSLASHbig] = ACTIONS(6205), - [anon_sym_BSLASHBig] = ACTIONS(6205), - [anon_sym_BSLASHbigg] = ACTIONS(6205), - [anon_sym_BSLASHBigg] = ACTIONS(6205), - [anon_sym_BSLASHbigl] = ACTIONS(6205), - [anon_sym_BSLASHBigl] = ACTIONS(6205), - [anon_sym_BSLASHbiggl] = ACTIONS(6205), - [anon_sym_BSLASHBiggl] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), - [anon_sym_BSLASHgls] = ACTIONS(6205), - [anon_sym_BSLASHGls] = ACTIONS(6205), - [anon_sym_BSLASHGLS] = ACTIONS(6205), - [anon_sym_BSLASHglspl] = ACTIONS(6205), - [anon_sym_BSLASHGlspl] = ACTIONS(6205), - [anon_sym_BSLASHGLSpl] = ACTIONS(6205), - [anon_sym_BSLASHglsdisp] = ACTIONS(6205), - [anon_sym_BSLASHglslink] = ACTIONS(6205), - [anon_sym_BSLASHglstext] = ACTIONS(6205), - [anon_sym_BSLASHGlstext] = ACTIONS(6205), - [anon_sym_BSLASHGLStext] = ACTIONS(6205), - [anon_sym_BSLASHglsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), - [anon_sym_BSLASHglsplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSplural] = ACTIONS(6205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHglsname] = ACTIONS(6205), - [anon_sym_BSLASHGlsname] = ACTIONS(6205), - [anon_sym_BSLASHGLSname] = ACTIONS(6205), - [anon_sym_BSLASHglssymbol] = ACTIONS(6205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), - [anon_sym_BSLASHglsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), - [anon_sym_BSLASHglsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), - [anon_sym_BSLASHglsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), - [anon_sym_BSLASHglsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), - [anon_sym_BSLASHglsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), - [anon_sym_BSLASHnewacronym] = ACTIONS(6205), - [anon_sym_BSLASHacrshort] = ACTIONS(6205), - [anon_sym_BSLASHAcrshort] = ACTIONS(6205), - [anon_sym_BSLASHACRshort] = ACTIONS(6205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), - [anon_sym_BSLASHacrlong] = ACTIONS(6205), - [anon_sym_BSLASHAcrlong] = ACTIONS(6205), - [anon_sym_BSLASHACRlong] = ACTIONS(6205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), - [anon_sym_BSLASHacrfull] = ACTIONS(6205), - [anon_sym_BSLASHAcrfull] = ACTIONS(6205), - [anon_sym_BSLASHACRfull] = ACTIONS(6205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), - [anon_sym_BSLASHacs] = ACTIONS(6205), - [anon_sym_BSLASHAcs] = ACTIONS(6205), - [anon_sym_BSLASHacsp] = ACTIONS(6205), - [anon_sym_BSLASHAcsp] = ACTIONS(6205), - [anon_sym_BSLASHacl] = ACTIONS(6205), - [anon_sym_BSLASHAcl] = ACTIONS(6205), - [anon_sym_BSLASHaclp] = ACTIONS(6205), - [anon_sym_BSLASHAclp] = ACTIONS(6205), - [anon_sym_BSLASHacf] = ACTIONS(6205), - [anon_sym_BSLASHAcf] = ACTIONS(6205), - [anon_sym_BSLASHacfp] = ACTIONS(6205), - [anon_sym_BSLASHAcfp] = ACTIONS(6205), - [anon_sym_BSLASHac] = ACTIONS(6205), - [anon_sym_BSLASHAc] = ACTIONS(6205), - [anon_sym_BSLASHacp] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), - [anon_sym_BSLASHcolor] = ACTIONS(6205), - [anon_sym_BSLASHcolorbox] = ACTIONS(6205), - [anon_sym_BSLASHtextcolor] = ACTIONS(6205), - [anon_sym_BSLASHpagecolor] = ACTIONS(6205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), - [anon_sym_BSLASHtext] = ACTIONS(6205), - [anon_sym_BSLASHintertext] = ACTIONS(6205), - [anon_sym_shortintertext] = ACTIONS(6205), - }, - [1004] = { - [ts_builtin_sym_end] = ACTIONS(6167), - [sym_command_name] = ACTIONS(6165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6165), - [anon_sym_LBRACK] = ACTIONS(6167), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_EQ] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_BSLASHpart] = ACTIONS(6165), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddpart] = ACTIONS(6165), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6167), - [anon_sym_BSLASHchapter] = ACTIONS(6165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddchap] = ACTIONS(6165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsection] = ACTIONS(6165), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddsec] = ACTIONS(6165), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubsection] = ACTIONS(6165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6165), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHparagraph] = ACTIONS(6165), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6165), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6167), - [anon_sym_BSLASHitem] = ACTIONS(6165), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6167), - [anon_sym_LBRACE] = ACTIONS(6167), - [anon_sym_RBRACE] = ACTIONS(6167), - [sym_word] = ACTIONS(6165), - [sym_placeholder] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6167), - [anon_sym_DASH] = ACTIONS(6167), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_COLON] = ACTIONS(6165), - [anon_sym_SQUOTE] = ACTIONS(6165), - [anon_sym__] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6167), - [anon_sym_BSLASHbegin] = ACTIONS(6165), - [anon_sym_BSLASHtitle] = ACTIONS(6165), - [anon_sym_BSLASHauthor] = ACTIONS(6165), - [anon_sym_BSLASHusepackage] = ACTIONS(6165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6165), - [anon_sym_BSLASHinclude] = ACTIONS(6165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6165), - [anon_sym_BSLASHinput] = ACTIONS(6165), - [anon_sym_BSLASHsubfile] = ACTIONS(6165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6165), - [anon_sym_BSLASHbibliography] = ACTIONS(6165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6165), - [anon_sym_BSLASHincludesvg] = ACTIONS(6165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6165), - [anon_sym_BSLASHimport] = ACTIONS(6165), - [anon_sym_BSLASHsubimport] = ACTIONS(6165), - [anon_sym_BSLASHinputfrom] = ACTIONS(6165), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6165), - [anon_sym_BSLASHincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHcaption] = ACTIONS(6165), - [anon_sym_BSLASHcite] = ACTIONS(6165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCite] = ACTIONS(6165), - [anon_sym_BSLASHnocite] = ACTIONS(6165), - [anon_sym_BSLASHcitet] = ACTIONS(6165), - [anon_sym_BSLASHcitep] = ACTIONS(6165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteauthor] = ACTIONS(6165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitetitle] = ACTIONS(6165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteyear] = ACTIONS(6165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitedate] = ACTIONS(6165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteurl] = ACTIONS(6165), - [anon_sym_BSLASHfullcite] = ACTIONS(6165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6165), - [anon_sym_BSLASHcitealt] = ACTIONS(6165), - [anon_sym_BSLASHcitealp] = ACTIONS(6165), - [anon_sym_BSLASHcitetext] = ACTIONS(6165), - [anon_sym_BSLASHparencite] = ACTIONS(6165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHParencite] = ACTIONS(6165), - [anon_sym_BSLASHfootcite] = ACTIONS(6165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6165), - [anon_sym_BSLASHtextcite] = ACTIONS(6165), - [anon_sym_BSLASHTextcite] = ACTIONS(6165), - [anon_sym_BSLASHsmartcite] = ACTIONS(6165), - [anon_sym_BSLASHSmartcite] = ACTIONS(6165), - [anon_sym_BSLASHsupercite] = ACTIONS(6165), - [anon_sym_BSLASHautocite] = ACTIONS(6165), - [anon_sym_BSLASHAutocite] = ACTIONS(6165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHvolcite] = ACTIONS(6165), - [anon_sym_BSLASHVolcite] = ACTIONS(6165), - [anon_sym_BSLASHpvolcite] = ACTIONS(6165), - [anon_sym_BSLASHPvolcite] = ACTIONS(6165), - [anon_sym_BSLASHfvolcite] = ACTIONS(6165), - [anon_sym_BSLASHftvolcite] = ACTIONS(6165), - [anon_sym_BSLASHsvolcite] = ACTIONS(6165), - [anon_sym_BSLASHSvolcite] = ACTIONS(6165), - [anon_sym_BSLASHtvolcite] = ACTIONS(6165), - [anon_sym_BSLASHTvolcite] = ACTIONS(6165), - [anon_sym_BSLASHavolcite] = ACTIONS(6165), - [anon_sym_BSLASHAvolcite] = ACTIONS(6165), - [anon_sym_BSLASHnotecite] = ACTIONS(6165), - [anon_sym_BSLASHNotecite] = ACTIONS(6165), - [anon_sym_BSLASHpnotecite] = ACTIONS(6165), - [anon_sym_BSLASHPnotecite] = ACTIONS(6165), - [anon_sym_BSLASHfnotecite] = ACTIONS(6165), - [anon_sym_BSLASHlabel] = ACTIONS(6165), - [anon_sym_BSLASHref] = ACTIONS(6165), - [anon_sym_BSLASHeqref] = ACTIONS(6165), - [anon_sym_BSLASHvref] = ACTIONS(6165), - [anon_sym_BSLASHVref] = ACTIONS(6165), - [anon_sym_BSLASHautoref] = ACTIONS(6165), - [anon_sym_BSLASHpageref] = ACTIONS(6165), - [anon_sym_BSLASHcref] = ACTIONS(6165), - [anon_sym_BSLASHCref] = ACTIONS(6165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnameCref] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHlabelcref] = ACTIONS(6165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCrefrange] = ACTIONS(6165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnewlabel] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6167), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHdef] = ACTIONS(6165), - [anon_sym_BSLASHlet] = ACTIONS(6165), - [anon_sym_BSLASHleft] = ACTIONS(6165), - [anon_sym_BSLASHbig] = ACTIONS(6165), - [anon_sym_BSLASHBig] = ACTIONS(6165), - [anon_sym_BSLASHbigg] = ACTIONS(6165), - [anon_sym_BSLASHBigg] = ACTIONS(6165), - [anon_sym_BSLASHbigl] = ACTIONS(6165), - [anon_sym_BSLASHBigl] = ACTIONS(6165), - [anon_sym_BSLASHbiggl] = ACTIONS(6165), - [anon_sym_BSLASHBiggl] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6165), - [anon_sym_BSLASHgls] = ACTIONS(6165), - [anon_sym_BSLASHGls] = ACTIONS(6165), - [anon_sym_BSLASHGLS] = ACTIONS(6165), - [anon_sym_BSLASHglspl] = ACTIONS(6165), - [anon_sym_BSLASHGlspl] = ACTIONS(6165), - [anon_sym_BSLASHGLSpl] = ACTIONS(6165), - [anon_sym_BSLASHglsdisp] = ACTIONS(6165), - [anon_sym_BSLASHglslink] = ACTIONS(6165), - [anon_sym_BSLASHglstext] = ACTIONS(6165), - [anon_sym_BSLASHGlstext] = ACTIONS(6165), - [anon_sym_BSLASHGLStext] = ACTIONS(6165), - [anon_sym_BSLASHglsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6165), - [anon_sym_BSLASHglsplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSplural] = ACTIONS(6165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHglsname] = ACTIONS(6165), - [anon_sym_BSLASHGlsname] = ACTIONS(6165), - [anon_sym_BSLASHGLSname] = ACTIONS(6165), - [anon_sym_BSLASHglssymbol] = ACTIONS(6165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6165), - [anon_sym_BSLASHglsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6165), - [anon_sym_BSLASHglsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6165), - [anon_sym_BSLASHglsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6165), - [anon_sym_BSLASHglsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6165), - [anon_sym_BSLASHglsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6165), - [anon_sym_BSLASHnewacronym] = ACTIONS(6165), - [anon_sym_BSLASHacrshort] = ACTIONS(6165), - [anon_sym_BSLASHAcrshort] = ACTIONS(6165), - [anon_sym_BSLASHACRshort] = ACTIONS(6165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6165), - [anon_sym_BSLASHacrlong] = ACTIONS(6165), - [anon_sym_BSLASHAcrlong] = ACTIONS(6165), - [anon_sym_BSLASHACRlong] = ACTIONS(6165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6165), - [anon_sym_BSLASHacrfull] = ACTIONS(6165), - [anon_sym_BSLASHAcrfull] = ACTIONS(6165), - [anon_sym_BSLASHACRfull] = ACTIONS(6165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6165), - [anon_sym_BSLASHacs] = ACTIONS(6165), - [anon_sym_BSLASHAcs] = ACTIONS(6165), - [anon_sym_BSLASHacsp] = ACTIONS(6165), - [anon_sym_BSLASHAcsp] = ACTIONS(6165), - [anon_sym_BSLASHacl] = ACTIONS(6165), - [anon_sym_BSLASHAcl] = ACTIONS(6165), - [anon_sym_BSLASHaclp] = ACTIONS(6165), - [anon_sym_BSLASHAclp] = ACTIONS(6165), - [anon_sym_BSLASHacf] = ACTIONS(6165), - [anon_sym_BSLASHAcf] = ACTIONS(6165), - [anon_sym_BSLASHacfp] = ACTIONS(6165), - [anon_sym_BSLASHAcfp] = ACTIONS(6165), - [anon_sym_BSLASHac] = ACTIONS(6165), - [anon_sym_BSLASHAc] = ACTIONS(6165), - [anon_sym_BSLASHacp] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6165), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6165), - [anon_sym_BSLASHcolor] = ACTIONS(6165), - [anon_sym_BSLASHcolorbox] = ACTIONS(6165), - [anon_sym_BSLASHtextcolor] = ACTIONS(6165), - [anon_sym_BSLASHpagecolor] = ACTIONS(6165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6165), - [anon_sym_BSLASHtext] = ACTIONS(6165), - [anon_sym_BSLASHintertext] = ACTIONS(6165), - [anon_sym_shortintertext] = ACTIONS(6165), - }, - [1005] = { - [ts_builtin_sym_end] = ACTIONS(6211), - [sym_command_name] = ACTIONS(6209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6209), - [anon_sym_LBRACK] = ACTIONS(6211), - [anon_sym_RBRACK] = ACTIONS(6211), - [anon_sym_COMMA] = ACTIONS(6211), - [anon_sym_EQ] = ACTIONS(6211), - [anon_sym_LPAREN] = ACTIONS(6211), - [anon_sym_RPAREN] = ACTIONS(6211), - [anon_sym_BSLASHpart] = ACTIONS(6209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddpart] = ACTIONS(6209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6211), - [anon_sym_BSLASHchapter] = ACTIONS(6209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddchap] = ACTIONS(6209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsection] = ACTIONS(6209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddsec] = ACTIONS(6209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubsection] = ACTIONS(6209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHparagraph] = ACTIONS(6209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6211), - [anon_sym_BSLASHitem] = ACTIONS(6209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6211), - [anon_sym_LBRACE] = ACTIONS(6211), - [anon_sym_RBRACE] = ACTIONS(6211), - [sym_word] = ACTIONS(6209), - [sym_placeholder] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6211), - [anon_sym_DASH] = ACTIONS(6211), - [anon_sym_STAR] = ACTIONS(6211), - [anon_sym_SLASH] = ACTIONS(6211), - [anon_sym_LT] = ACTIONS(6209), - [anon_sym_GT] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6209), - [anon_sym_COLON] = ACTIONS(6209), - [anon_sym_SQUOTE] = ACTIONS(6209), - [anon_sym__] = ACTIONS(6211), - [anon_sym_CARET] = ACTIONS(6211), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6211), - [anon_sym_DOLLAR] = ACTIONS(6209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6211), - [anon_sym_BSLASHbegin] = ACTIONS(6209), - [anon_sym_BSLASHtitle] = ACTIONS(6209), - [anon_sym_BSLASHauthor] = ACTIONS(6209), - [anon_sym_BSLASHusepackage] = ACTIONS(6209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), - [anon_sym_BSLASHinclude] = ACTIONS(6209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), - [anon_sym_BSLASHinput] = ACTIONS(6209), - [anon_sym_BSLASHsubfile] = ACTIONS(6209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), - [anon_sym_BSLASHbibliography] = ACTIONS(6209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), - [anon_sym_BSLASHincludesvg] = ACTIONS(6209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), - [anon_sym_BSLASHimport] = ACTIONS(6209), - [anon_sym_BSLASHsubimport] = ACTIONS(6209), - [anon_sym_BSLASHinputfrom] = ACTIONS(6209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), - [anon_sym_BSLASHincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHcaption] = ACTIONS(6209), - [anon_sym_BSLASHcite] = ACTIONS(6209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCite] = ACTIONS(6209), - [anon_sym_BSLASHnocite] = ACTIONS(6209), - [anon_sym_BSLASHcitet] = ACTIONS(6209), - [anon_sym_BSLASHcitep] = ACTIONS(6209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteauthor] = ACTIONS(6209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitetitle] = ACTIONS(6209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteyear] = ACTIONS(6209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitedate] = ACTIONS(6209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteurl] = ACTIONS(6209), - [anon_sym_BSLASHfullcite] = ACTIONS(6209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), - [anon_sym_BSLASHcitealt] = ACTIONS(6209), - [anon_sym_BSLASHcitealp] = ACTIONS(6209), - [anon_sym_BSLASHcitetext] = ACTIONS(6209), - [anon_sym_BSLASHparencite] = ACTIONS(6209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHParencite] = ACTIONS(6209), - [anon_sym_BSLASHfootcite] = ACTIONS(6209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), - [anon_sym_BSLASHtextcite] = ACTIONS(6209), - [anon_sym_BSLASHTextcite] = ACTIONS(6209), - [anon_sym_BSLASHsmartcite] = ACTIONS(6209), - [anon_sym_BSLASHSmartcite] = ACTIONS(6209), - [anon_sym_BSLASHsupercite] = ACTIONS(6209), - [anon_sym_BSLASHautocite] = ACTIONS(6209), - [anon_sym_BSLASHAutocite] = ACTIONS(6209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHvolcite] = ACTIONS(6209), - [anon_sym_BSLASHVolcite] = ACTIONS(6209), - [anon_sym_BSLASHpvolcite] = ACTIONS(6209), - [anon_sym_BSLASHPvolcite] = ACTIONS(6209), - [anon_sym_BSLASHfvolcite] = ACTIONS(6209), - [anon_sym_BSLASHftvolcite] = ACTIONS(6209), - [anon_sym_BSLASHsvolcite] = ACTIONS(6209), - [anon_sym_BSLASHSvolcite] = ACTIONS(6209), - [anon_sym_BSLASHtvolcite] = ACTIONS(6209), - [anon_sym_BSLASHTvolcite] = ACTIONS(6209), - [anon_sym_BSLASHavolcite] = ACTIONS(6209), - [anon_sym_BSLASHAvolcite] = ACTIONS(6209), - [anon_sym_BSLASHnotecite] = ACTIONS(6209), - [anon_sym_BSLASHNotecite] = ACTIONS(6209), - [anon_sym_BSLASHpnotecite] = ACTIONS(6209), - [anon_sym_BSLASHPnotecite] = ACTIONS(6209), - [anon_sym_BSLASHfnotecite] = ACTIONS(6209), - [anon_sym_BSLASHlabel] = ACTIONS(6209), - [anon_sym_BSLASHref] = ACTIONS(6209), - [anon_sym_BSLASHeqref] = ACTIONS(6209), - [anon_sym_BSLASHvref] = ACTIONS(6209), - [anon_sym_BSLASHVref] = ACTIONS(6209), - [anon_sym_BSLASHautoref] = ACTIONS(6209), - [anon_sym_BSLASHpageref] = ACTIONS(6209), - [anon_sym_BSLASHcref] = ACTIONS(6209), - [anon_sym_BSLASHCref] = ACTIONS(6209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnameCref] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHlabelcref] = ACTIONS(6209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCrefrange] = ACTIONS(6209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnewlabel] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6211), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHdef] = ACTIONS(6209), - [anon_sym_BSLASHlet] = ACTIONS(6209), - [anon_sym_BSLASHleft] = ACTIONS(6209), - [anon_sym_BSLASHbig] = ACTIONS(6209), - [anon_sym_BSLASHBig] = ACTIONS(6209), - [anon_sym_BSLASHbigg] = ACTIONS(6209), - [anon_sym_BSLASHBigg] = ACTIONS(6209), - [anon_sym_BSLASHbigl] = ACTIONS(6209), - [anon_sym_BSLASHBigl] = ACTIONS(6209), - [anon_sym_BSLASHbiggl] = ACTIONS(6209), - [anon_sym_BSLASHBiggl] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), - [anon_sym_BSLASHgls] = ACTIONS(6209), - [anon_sym_BSLASHGls] = ACTIONS(6209), - [anon_sym_BSLASHGLS] = ACTIONS(6209), - [anon_sym_BSLASHglspl] = ACTIONS(6209), - [anon_sym_BSLASHGlspl] = ACTIONS(6209), - [anon_sym_BSLASHGLSpl] = ACTIONS(6209), - [anon_sym_BSLASHglsdisp] = ACTIONS(6209), - [anon_sym_BSLASHglslink] = ACTIONS(6209), - [anon_sym_BSLASHglstext] = ACTIONS(6209), - [anon_sym_BSLASHGlstext] = ACTIONS(6209), - [anon_sym_BSLASHGLStext] = ACTIONS(6209), - [anon_sym_BSLASHglsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), - [anon_sym_BSLASHglsplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSplural] = ACTIONS(6209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHglsname] = ACTIONS(6209), - [anon_sym_BSLASHGlsname] = ACTIONS(6209), - [anon_sym_BSLASHGLSname] = ACTIONS(6209), - [anon_sym_BSLASHglssymbol] = ACTIONS(6209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), - [anon_sym_BSLASHglsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), - [anon_sym_BSLASHglsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), - [anon_sym_BSLASHglsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), - [anon_sym_BSLASHglsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), - [anon_sym_BSLASHglsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), - [anon_sym_BSLASHnewacronym] = ACTIONS(6209), - [anon_sym_BSLASHacrshort] = ACTIONS(6209), - [anon_sym_BSLASHAcrshort] = ACTIONS(6209), - [anon_sym_BSLASHACRshort] = ACTIONS(6209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), - [anon_sym_BSLASHacrlong] = ACTIONS(6209), - [anon_sym_BSLASHAcrlong] = ACTIONS(6209), - [anon_sym_BSLASHACRlong] = ACTIONS(6209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), - [anon_sym_BSLASHacrfull] = ACTIONS(6209), - [anon_sym_BSLASHAcrfull] = ACTIONS(6209), - [anon_sym_BSLASHACRfull] = ACTIONS(6209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), - [anon_sym_BSLASHacs] = ACTIONS(6209), - [anon_sym_BSLASHAcs] = ACTIONS(6209), - [anon_sym_BSLASHacsp] = ACTIONS(6209), - [anon_sym_BSLASHAcsp] = ACTIONS(6209), - [anon_sym_BSLASHacl] = ACTIONS(6209), - [anon_sym_BSLASHAcl] = ACTIONS(6209), - [anon_sym_BSLASHaclp] = ACTIONS(6209), - [anon_sym_BSLASHAclp] = ACTIONS(6209), - [anon_sym_BSLASHacf] = ACTIONS(6209), - [anon_sym_BSLASHAcf] = ACTIONS(6209), - [anon_sym_BSLASHacfp] = ACTIONS(6209), - [anon_sym_BSLASHAcfp] = ACTIONS(6209), - [anon_sym_BSLASHac] = ACTIONS(6209), - [anon_sym_BSLASHAc] = ACTIONS(6209), - [anon_sym_BSLASHacp] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), - [anon_sym_BSLASHcolor] = ACTIONS(6209), - [anon_sym_BSLASHcolorbox] = ACTIONS(6209), - [anon_sym_BSLASHtextcolor] = ACTIONS(6209), - [anon_sym_BSLASHpagecolor] = ACTIONS(6209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), - [anon_sym_BSLASHtext] = ACTIONS(6209), - [anon_sym_BSLASHintertext] = ACTIONS(6209), - [anon_sym_shortintertext] = ACTIONS(6209), - }, - [1006] = { - [ts_builtin_sym_end] = ACTIONS(6215), - [sym_command_name] = ACTIONS(6213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(6215), - [anon_sym_RBRACK] = ACTIONS(6215), - [anon_sym_COMMA] = ACTIONS(6215), - [anon_sym_EQ] = ACTIONS(6215), - [anon_sym_LPAREN] = ACTIONS(6215), - [anon_sym_RPAREN] = ACTIONS(6215), - [anon_sym_BSLASHpart] = ACTIONS(6213), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddpart] = ACTIONS(6213), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6215), - [anon_sym_BSLASHchapter] = ACTIONS(6213), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddchap] = ACTIONS(6213), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsection] = ACTIONS(6213), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddsec] = ACTIONS(6213), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubsection] = ACTIONS(6213), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6213), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHparagraph] = ACTIONS(6213), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6213), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6215), - [anon_sym_BSLASHitem] = ACTIONS(6213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6215), - [anon_sym_LBRACE] = ACTIONS(6215), - [anon_sym_RBRACE] = ACTIONS(6215), - [sym_word] = ACTIONS(6213), - [sym_placeholder] = ACTIONS(6215), - [anon_sym_PLUS] = ACTIONS(6215), - [anon_sym_DASH] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6215), - [anon_sym_SLASH] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6213), - [anon_sym_GT] = ACTIONS(6213), - [anon_sym_BANG] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6213), - [anon_sym_COLON] = ACTIONS(6213), - [anon_sym_SQUOTE] = ACTIONS(6213), - [anon_sym__] = ACTIONS(6215), - [anon_sym_CARET] = ACTIONS(6215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6215), - [anon_sym_DOLLAR] = ACTIONS(6213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6215), - [anon_sym_BSLASHbegin] = ACTIONS(6213), - [anon_sym_BSLASHtitle] = ACTIONS(6213), - [anon_sym_BSLASHauthor] = ACTIONS(6213), - [anon_sym_BSLASHusepackage] = ACTIONS(6213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6213), - [anon_sym_BSLASHinclude] = ACTIONS(6213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6213), - [anon_sym_BSLASHinput] = ACTIONS(6213), - [anon_sym_BSLASHsubfile] = ACTIONS(6213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6213), - [anon_sym_BSLASHbibliography] = ACTIONS(6213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6213), - [anon_sym_BSLASHincludesvg] = ACTIONS(6213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6213), - [anon_sym_BSLASHimport] = ACTIONS(6213), - [anon_sym_BSLASHsubimport] = ACTIONS(6213), - [anon_sym_BSLASHinputfrom] = ACTIONS(6213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6213), - [anon_sym_BSLASHincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHcaption] = ACTIONS(6213), - [anon_sym_BSLASHcite] = ACTIONS(6213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCite] = ACTIONS(6213), - [anon_sym_BSLASHnocite] = ACTIONS(6213), - [anon_sym_BSLASHcitet] = ACTIONS(6213), - [anon_sym_BSLASHcitep] = ACTIONS(6213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteauthor] = ACTIONS(6213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitetitle] = ACTIONS(6213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteyear] = ACTIONS(6213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitedate] = ACTIONS(6213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteurl] = ACTIONS(6213), - [anon_sym_BSLASHfullcite] = ACTIONS(6213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6213), - [anon_sym_BSLASHcitealt] = ACTIONS(6213), - [anon_sym_BSLASHcitealp] = ACTIONS(6213), - [anon_sym_BSLASHcitetext] = ACTIONS(6213), - [anon_sym_BSLASHparencite] = ACTIONS(6213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHParencite] = ACTIONS(6213), - [anon_sym_BSLASHfootcite] = ACTIONS(6213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6213), - [anon_sym_BSLASHtextcite] = ACTIONS(6213), - [anon_sym_BSLASHTextcite] = ACTIONS(6213), - [anon_sym_BSLASHsmartcite] = ACTIONS(6213), - [anon_sym_BSLASHSmartcite] = ACTIONS(6213), - [anon_sym_BSLASHsupercite] = ACTIONS(6213), - [anon_sym_BSLASHautocite] = ACTIONS(6213), - [anon_sym_BSLASHAutocite] = ACTIONS(6213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHvolcite] = ACTIONS(6213), - [anon_sym_BSLASHVolcite] = ACTIONS(6213), - [anon_sym_BSLASHpvolcite] = ACTIONS(6213), - [anon_sym_BSLASHPvolcite] = ACTIONS(6213), - [anon_sym_BSLASHfvolcite] = ACTIONS(6213), - [anon_sym_BSLASHftvolcite] = ACTIONS(6213), - [anon_sym_BSLASHsvolcite] = ACTIONS(6213), - [anon_sym_BSLASHSvolcite] = ACTIONS(6213), - [anon_sym_BSLASHtvolcite] = ACTIONS(6213), - [anon_sym_BSLASHTvolcite] = ACTIONS(6213), - [anon_sym_BSLASHavolcite] = ACTIONS(6213), - [anon_sym_BSLASHAvolcite] = ACTIONS(6213), - [anon_sym_BSLASHnotecite] = ACTIONS(6213), - [anon_sym_BSLASHNotecite] = ACTIONS(6213), - [anon_sym_BSLASHpnotecite] = ACTIONS(6213), - [anon_sym_BSLASHPnotecite] = ACTIONS(6213), - [anon_sym_BSLASHfnotecite] = ACTIONS(6213), - [anon_sym_BSLASHlabel] = ACTIONS(6213), - [anon_sym_BSLASHref] = ACTIONS(6213), - [anon_sym_BSLASHeqref] = ACTIONS(6213), - [anon_sym_BSLASHvref] = ACTIONS(6213), - [anon_sym_BSLASHVref] = ACTIONS(6213), - [anon_sym_BSLASHautoref] = ACTIONS(6213), - [anon_sym_BSLASHpageref] = ACTIONS(6213), - [anon_sym_BSLASHcref] = ACTIONS(6213), - [anon_sym_BSLASHCref] = ACTIONS(6213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnameCref] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHlabelcref] = ACTIONS(6213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCrefrange] = ACTIONS(6213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnewlabel] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6215), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHdef] = ACTIONS(6213), - [anon_sym_BSLASHlet] = ACTIONS(6213), - [anon_sym_BSLASHleft] = ACTIONS(6213), - [anon_sym_BSLASHbig] = ACTIONS(6213), - [anon_sym_BSLASHBig] = ACTIONS(6213), - [anon_sym_BSLASHbigg] = ACTIONS(6213), - [anon_sym_BSLASHBigg] = ACTIONS(6213), - [anon_sym_BSLASHbigl] = ACTIONS(6213), - [anon_sym_BSLASHBigl] = ACTIONS(6213), - [anon_sym_BSLASHbiggl] = ACTIONS(6213), - [anon_sym_BSLASHBiggl] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6213), - [anon_sym_BSLASHgls] = ACTIONS(6213), - [anon_sym_BSLASHGls] = ACTIONS(6213), - [anon_sym_BSLASHGLS] = ACTIONS(6213), - [anon_sym_BSLASHglspl] = ACTIONS(6213), - [anon_sym_BSLASHGlspl] = ACTIONS(6213), - [anon_sym_BSLASHGLSpl] = ACTIONS(6213), - [anon_sym_BSLASHglsdisp] = ACTIONS(6213), - [anon_sym_BSLASHglslink] = ACTIONS(6213), - [anon_sym_BSLASHglstext] = ACTIONS(6213), - [anon_sym_BSLASHGlstext] = ACTIONS(6213), - [anon_sym_BSLASHGLStext] = ACTIONS(6213), - [anon_sym_BSLASHglsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6213), - [anon_sym_BSLASHglsplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSplural] = ACTIONS(6213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHglsname] = ACTIONS(6213), - [anon_sym_BSLASHGlsname] = ACTIONS(6213), - [anon_sym_BSLASHGLSname] = ACTIONS(6213), - [anon_sym_BSLASHglssymbol] = ACTIONS(6213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6213), - [anon_sym_BSLASHglsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6213), - [anon_sym_BSLASHglsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6213), - [anon_sym_BSLASHglsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6213), - [anon_sym_BSLASHglsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6213), - [anon_sym_BSLASHglsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6213), - [anon_sym_BSLASHnewacronym] = ACTIONS(6213), - [anon_sym_BSLASHacrshort] = ACTIONS(6213), - [anon_sym_BSLASHAcrshort] = ACTIONS(6213), - [anon_sym_BSLASHACRshort] = ACTIONS(6213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6213), - [anon_sym_BSLASHacrlong] = ACTIONS(6213), - [anon_sym_BSLASHAcrlong] = ACTIONS(6213), - [anon_sym_BSLASHACRlong] = ACTIONS(6213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6213), - [anon_sym_BSLASHacrfull] = ACTIONS(6213), - [anon_sym_BSLASHAcrfull] = ACTIONS(6213), - [anon_sym_BSLASHACRfull] = ACTIONS(6213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6213), - [anon_sym_BSLASHacs] = ACTIONS(6213), - [anon_sym_BSLASHAcs] = ACTIONS(6213), - [anon_sym_BSLASHacsp] = ACTIONS(6213), - [anon_sym_BSLASHAcsp] = ACTIONS(6213), - [anon_sym_BSLASHacl] = ACTIONS(6213), - [anon_sym_BSLASHAcl] = ACTIONS(6213), - [anon_sym_BSLASHaclp] = ACTIONS(6213), - [anon_sym_BSLASHAclp] = ACTIONS(6213), - [anon_sym_BSLASHacf] = ACTIONS(6213), - [anon_sym_BSLASHAcf] = ACTIONS(6213), - [anon_sym_BSLASHacfp] = ACTIONS(6213), - [anon_sym_BSLASHAcfp] = ACTIONS(6213), - [anon_sym_BSLASHac] = ACTIONS(6213), - [anon_sym_BSLASHAc] = ACTIONS(6213), - [anon_sym_BSLASHacp] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6213), - [anon_sym_BSLASHcolor] = ACTIONS(6213), - [anon_sym_BSLASHcolorbox] = ACTIONS(6213), - [anon_sym_BSLASHtextcolor] = ACTIONS(6213), - [anon_sym_BSLASHpagecolor] = ACTIONS(6213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6213), - [anon_sym_BSLASHtext] = ACTIONS(6213), - [anon_sym_BSLASHintertext] = ACTIONS(6213), - [anon_sym_shortintertext] = ACTIONS(6213), - }, - [1007] = { - [ts_builtin_sym_end] = ACTIONS(6219), - [sym_command_name] = ACTIONS(6217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6217), - [anon_sym_LBRACK] = ACTIONS(6219), - [anon_sym_RBRACK] = ACTIONS(6219), - [anon_sym_COMMA] = ACTIONS(6219), - [anon_sym_EQ] = ACTIONS(6219), - [anon_sym_LPAREN] = ACTIONS(6219), - [anon_sym_RPAREN] = ACTIONS(6219), - [anon_sym_BSLASHpart] = ACTIONS(6217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddpart] = ACTIONS(6217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6219), - [anon_sym_BSLASHchapter] = ACTIONS(6217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddchap] = ACTIONS(6217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsection] = ACTIONS(6217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddsec] = ACTIONS(6217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubsection] = ACTIONS(6217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHparagraph] = ACTIONS(6217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6219), - [anon_sym_BSLASHitem] = ACTIONS(6217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6219), - [anon_sym_LBRACE] = ACTIONS(6219), - [anon_sym_RBRACE] = ACTIONS(6219), - [sym_word] = ACTIONS(6217), - [sym_placeholder] = ACTIONS(6219), - [anon_sym_PLUS] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_STAR] = ACTIONS(6219), - [anon_sym_SLASH] = ACTIONS(6219), - [anon_sym_LT] = ACTIONS(6217), - [anon_sym_GT] = ACTIONS(6217), - [anon_sym_BANG] = ACTIONS(6217), - [anon_sym_PIPE] = ACTIONS(6217), - [anon_sym_COLON] = ACTIONS(6217), - [anon_sym_SQUOTE] = ACTIONS(6217), - [anon_sym__] = ACTIONS(6219), - [anon_sym_CARET] = ACTIONS(6219), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6219), - [anon_sym_DOLLAR] = ACTIONS(6217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6219), - [anon_sym_BSLASHbegin] = ACTIONS(6217), - [anon_sym_BSLASHtitle] = ACTIONS(6217), - [anon_sym_BSLASHauthor] = ACTIONS(6217), - [anon_sym_BSLASHusepackage] = ACTIONS(6217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6217), - [anon_sym_BSLASHinclude] = ACTIONS(6217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6217), - [anon_sym_BSLASHinput] = ACTIONS(6217), - [anon_sym_BSLASHsubfile] = ACTIONS(6217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6217), - [anon_sym_BSLASHbibliography] = ACTIONS(6217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6217), - [anon_sym_BSLASHincludesvg] = ACTIONS(6217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6217), - [anon_sym_BSLASHimport] = ACTIONS(6217), - [anon_sym_BSLASHsubimport] = ACTIONS(6217), - [anon_sym_BSLASHinputfrom] = ACTIONS(6217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6217), - [anon_sym_BSLASHincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHcaption] = ACTIONS(6217), - [anon_sym_BSLASHcite] = ACTIONS(6217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCite] = ACTIONS(6217), - [anon_sym_BSLASHnocite] = ACTIONS(6217), - [anon_sym_BSLASHcitet] = ACTIONS(6217), - [anon_sym_BSLASHcitep] = ACTIONS(6217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteauthor] = ACTIONS(6217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitetitle] = ACTIONS(6217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteyear] = ACTIONS(6217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitedate] = ACTIONS(6217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteurl] = ACTIONS(6217), - [anon_sym_BSLASHfullcite] = ACTIONS(6217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6217), - [anon_sym_BSLASHcitealt] = ACTIONS(6217), - [anon_sym_BSLASHcitealp] = ACTIONS(6217), - [anon_sym_BSLASHcitetext] = ACTIONS(6217), - [anon_sym_BSLASHparencite] = ACTIONS(6217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHParencite] = ACTIONS(6217), - [anon_sym_BSLASHfootcite] = ACTIONS(6217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6217), - [anon_sym_BSLASHtextcite] = ACTIONS(6217), - [anon_sym_BSLASHTextcite] = ACTIONS(6217), - [anon_sym_BSLASHsmartcite] = ACTIONS(6217), - [anon_sym_BSLASHSmartcite] = ACTIONS(6217), - [anon_sym_BSLASHsupercite] = ACTIONS(6217), - [anon_sym_BSLASHautocite] = ACTIONS(6217), - [anon_sym_BSLASHAutocite] = ACTIONS(6217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHvolcite] = ACTIONS(6217), - [anon_sym_BSLASHVolcite] = ACTIONS(6217), - [anon_sym_BSLASHpvolcite] = ACTIONS(6217), - [anon_sym_BSLASHPvolcite] = ACTIONS(6217), - [anon_sym_BSLASHfvolcite] = ACTIONS(6217), - [anon_sym_BSLASHftvolcite] = ACTIONS(6217), - [anon_sym_BSLASHsvolcite] = ACTIONS(6217), - [anon_sym_BSLASHSvolcite] = ACTIONS(6217), - [anon_sym_BSLASHtvolcite] = ACTIONS(6217), - [anon_sym_BSLASHTvolcite] = ACTIONS(6217), - [anon_sym_BSLASHavolcite] = ACTIONS(6217), - [anon_sym_BSLASHAvolcite] = ACTIONS(6217), - [anon_sym_BSLASHnotecite] = ACTIONS(6217), - [anon_sym_BSLASHNotecite] = ACTIONS(6217), - [anon_sym_BSLASHpnotecite] = ACTIONS(6217), - [anon_sym_BSLASHPnotecite] = ACTIONS(6217), - [anon_sym_BSLASHfnotecite] = ACTIONS(6217), - [anon_sym_BSLASHlabel] = ACTIONS(6217), - [anon_sym_BSLASHref] = ACTIONS(6217), - [anon_sym_BSLASHeqref] = ACTIONS(6217), - [anon_sym_BSLASHvref] = ACTIONS(6217), - [anon_sym_BSLASHVref] = ACTIONS(6217), - [anon_sym_BSLASHautoref] = ACTIONS(6217), - [anon_sym_BSLASHpageref] = ACTIONS(6217), - [anon_sym_BSLASHcref] = ACTIONS(6217), - [anon_sym_BSLASHCref] = ACTIONS(6217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnameCref] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHlabelcref] = ACTIONS(6217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCrefrange] = ACTIONS(6217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnewlabel] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6219), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHdef] = ACTIONS(6217), - [anon_sym_BSLASHlet] = ACTIONS(6217), - [anon_sym_BSLASHleft] = ACTIONS(6217), - [anon_sym_BSLASHbig] = ACTIONS(6217), - [anon_sym_BSLASHBig] = ACTIONS(6217), - [anon_sym_BSLASHbigg] = ACTIONS(6217), - [anon_sym_BSLASHBigg] = ACTIONS(6217), - [anon_sym_BSLASHbigl] = ACTIONS(6217), - [anon_sym_BSLASHBigl] = ACTIONS(6217), - [anon_sym_BSLASHbiggl] = ACTIONS(6217), - [anon_sym_BSLASHBiggl] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6217), - [anon_sym_BSLASHgls] = ACTIONS(6217), - [anon_sym_BSLASHGls] = ACTIONS(6217), - [anon_sym_BSLASHGLS] = ACTIONS(6217), - [anon_sym_BSLASHglspl] = ACTIONS(6217), - [anon_sym_BSLASHGlspl] = ACTIONS(6217), - [anon_sym_BSLASHGLSpl] = ACTIONS(6217), - [anon_sym_BSLASHglsdisp] = ACTIONS(6217), - [anon_sym_BSLASHglslink] = ACTIONS(6217), - [anon_sym_BSLASHglstext] = ACTIONS(6217), - [anon_sym_BSLASHGlstext] = ACTIONS(6217), - [anon_sym_BSLASHGLStext] = ACTIONS(6217), - [anon_sym_BSLASHglsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6217), - [anon_sym_BSLASHglsplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSplural] = ACTIONS(6217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHglsname] = ACTIONS(6217), - [anon_sym_BSLASHGlsname] = ACTIONS(6217), - [anon_sym_BSLASHGLSname] = ACTIONS(6217), - [anon_sym_BSLASHglssymbol] = ACTIONS(6217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6217), - [anon_sym_BSLASHglsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6217), - [anon_sym_BSLASHglsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6217), - [anon_sym_BSLASHglsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6217), - [anon_sym_BSLASHglsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6217), - [anon_sym_BSLASHglsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6217), - [anon_sym_BSLASHnewacronym] = ACTIONS(6217), - [anon_sym_BSLASHacrshort] = ACTIONS(6217), - [anon_sym_BSLASHAcrshort] = ACTIONS(6217), - [anon_sym_BSLASHACRshort] = ACTIONS(6217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6217), - [anon_sym_BSLASHacrlong] = ACTIONS(6217), - [anon_sym_BSLASHAcrlong] = ACTIONS(6217), - [anon_sym_BSLASHACRlong] = ACTIONS(6217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6217), - [anon_sym_BSLASHacrfull] = ACTIONS(6217), - [anon_sym_BSLASHAcrfull] = ACTIONS(6217), - [anon_sym_BSLASHACRfull] = ACTIONS(6217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6217), - [anon_sym_BSLASHacs] = ACTIONS(6217), - [anon_sym_BSLASHAcs] = ACTIONS(6217), - [anon_sym_BSLASHacsp] = ACTIONS(6217), - [anon_sym_BSLASHAcsp] = ACTIONS(6217), - [anon_sym_BSLASHacl] = ACTIONS(6217), - [anon_sym_BSLASHAcl] = ACTIONS(6217), - [anon_sym_BSLASHaclp] = ACTIONS(6217), - [anon_sym_BSLASHAclp] = ACTIONS(6217), - [anon_sym_BSLASHacf] = ACTIONS(6217), - [anon_sym_BSLASHAcf] = ACTIONS(6217), - [anon_sym_BSLASHacfp] = ACTIONS(6217), - [anon_sym_BSLASHAcfp] = ACTIONS(6217), - [anon_sym_BSLASHac] = ACTIONS(6217), - [anon_sym_BSLASHAc] = ACTIONS(6217), - [anon_sym_BSLASHacp] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6217), - [anon_sym_BSLASHcolor] = ACTIONS(6217), - [anon_sym_BSLASHcolorbox] = ACTIONS(6217), - [anon_sym_BSLASHtextcolor] = ACTIONS(6217), - [anon_sym_BSLASHpagecolor] = ACTIONS(6217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6217), - [anon_sym_BSLASHtext] = ACTIONS(6217), - [anon_sym_BSLASHintertext] = ACTIONS(6217), - [anon_sym_shortintertext] = ACTIONS(6217), - }, - [1008] = { - [sym_brack_group] = STATE(1399), - [sym_command_name] = ACTIONS(6719), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6719), - [anon_sym_LBRACK] = ACTIONS(6721), - [anon_sym_RBRACK] = ACTIONS(6723), - [anon_sym_COMMA] = ACTIONS(6723), - [anon_sym_EQ] = ACTIONS(6723), - [anon_sym_LPAREN] = ACTIONS(6723), - [anon_sym_RPAREN] = ACTIONS(6723), - [anon_sym_BSLASHpart] = ACTIONS(6719), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6723), - [anon_sym_BSLASHaddpart] = ACTIONS(6719), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6723), - [anon_sym_BSLASHchapter] = ACTIONS(6719), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6723), - [anon_sym_BSLASHaddchap] = ACTIONS(6719), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6723), - [anon_sym_BSLASHsection] = ACTIONS(6719), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6723), - [anon_sym_BSLASHaddsec] = ACTIONS(6719), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6723), - [anon_sym_BSLASHsubsection] = ACTIONS(6719), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6723), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6719), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6723), - [anon_sym_BSLASHparagraph] = ACTIONS(6719), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6723), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6719), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6723), - [anon_sym_BSLASHitem] = ACTIONS(6719), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6723), - [anon_sym_LBRACE] = ACTIONS(6723), - [sym_word] = ACTIONS(6719), - [sym_placeholder] = ACTIONS(6723), - [anon_sym_PLUS] = ACTIONS(6723), - [anon_sym_DASH] = ACTIONS(6723), - [anon_sym_STAR] = ACTIONS(6723), - [anon_sym_SLASH] = ACTIONS(6723), - [anon_sym_LT] = ACTIONS(6719), - [anon_sym_GT] = ACTIONS(6719), - [anon_sym_BANG] = ACTIONS(6719), - [anon_sym_PIPE] = ACTIONS(6719), - [anon_sym_COLON] = ACTIONS(6719), - [anon_sym_SQUOTE] = ACTIONS(6719), - [anon_sym__] = ACTIONS(6723), - [anon_sym_CARET] = ACTIONS(6723), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6723), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6723), - [anon_sym_DOLLAR] = ACTIONS(6719), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6723), - [anon_sym_BSLASHbegin] = ACTIONS(6719), - [anon_sym_BSLASHend] = ACTIONS(6719), - [anon_sym_BSLASHtitle] = ACTIONS(6719), - [anon_sym_BSLASHauthor] = ACTIONS(6719), - [anon_sym_BSLASHusepackage] = ACTIONS(6719), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6719), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6719), - [anon_sym_BSLASHinclude] = ACTIONS(6719), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6719), - [anon_sym_BSLASHinput] = ACTIONS(6719), - [anon_sym_BSLASHsubfile] = ACTIONS(6719), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6719), - [anon_sym_BSLASHbibliography] = ACTIONS(6719), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6719), - [anon_sym_BSLASHincludesvg] = ACTIONS(6719), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6719), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6719), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6719), - [anon_sym_BSLASHimport] = ACTIONS(6719), - [anon_sym_BSLASHsubimport] = ACTIONS(6719), - [anon_sym_BSLASHinputfrom] = ACTIONS(6719), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6719), - [anon_sym_BSLASHincludefrom] = ACTIONS(6719), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6719), - [anon_sym_BSLASHcaption] = ACTIONS(6719), - [anon_sym_BSLASHcite] = ACTIONS(6719), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6723), - [anon_sym_BSLASHCite] = ACTIONS(6719), - [anon_sym_BSLASHnocite] = ACTIONS(6719), - [anon_sym_BSLASHcitet] = ACTIONS(6719), - [anon_sym_BSLASHcitep] = ACTIONS(6719), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6723), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6723), - [anon_sym_BSLASHciteauthor] = ACTIONS(6719), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6723), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6719), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6723), - [anon_sym_BSLASHcitetitle] = ACTIONS(6719), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6723), - [anon_sym_BSLASHciteyear] = ACTIONS(6719), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6723), - [anon_sym_BSLASHcitedate] = ACTIONS(6719), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6723), - [anon_sym_BSLASHciteurl] = ACTIONS(6719), - [anon_sym_BSLASHfullcite] = ACTIONS(6719), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6719), - [anon_sym_BSLASHcitealt] = ACTIONS(6719), - [anon_sym_BSLASHcitealp] = ACTIONS(6719), - [anon_sym_BSLASHcitetext] = ACTIONS(6719), - [anon_sym_BSLASHparencite] = ACTIONS(6719), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6723), - [anon_sym_BSLASHParencite] = ACTIONS(6719), - [anon_sym_BSLASHfootcite] = ACTIONS(6719), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6719), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6719), - [anon_sym_BSLASHtextcite] = ACTIONS(6719), - [anon_sym_BSLASHTextcite] = ACTIONS(6719), - [anon_sym_BSLASHsmartcite] = ACTIONS(6719), - [anon_sym_BSLASHSmartcite] = ACTIONS(6719), - [anon_sym_BSLASHsupercite] = ACTIONS(6719), - [anon_sym_BSLASHautocite] = ACTIONS(6719), - [anon_sym_BSLASHAutocite] = ACTIONS(6719), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6723), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6723), - [anon_sym_BSLASHvolcite] = ACTIONS(6719), - [anon_sym_BSLASHVolcite] = ACTIONS(6719), - [anon_sym_BSLASHpvolcite] = ACTIONS(6719), - [anon_sym_BSLASHPvolcite] = ACTIONS(6719), - [anon_sym_BSLASHfvolcite] = ACTIONS(6719), - [anon_sym_BSLASHftvolcite] = ACTIONS(6719), - [anon_sym_BSLASHsvolcite] = ACTIONS(6719), - [anon_sym_BSLASHSvolcite] = ACTIONS(6719), - [anon_sym_BSLASHtvolcite] = ACTIONS(6719), - [anon_sym_BSLASHTvolcite] = ACTIONS(6719), - [anon_sym_BSLASHavolcite] = ACTIONS(6719), - [anon_sym_BSLASHAvolcite] = ACTIONS(6719), - [anon_sym_BSLASHnotecite] = ACTIONS(6719), - [anon_sym_BSLASHNotecite] = ACTIONS(6719), - [anon_sym_BSLASHpnotecite] = ACTIONS(6719), - [anon_sym_BSLASHPnotecite] = ACTIONS(6719), - [anon_sym_BSLASHfnotecite] = ACTIONS(6719), - [anon_sym_BSLASHlabel] = ACTIONS(6719), - [anon_sym_BSLASHref] = ACTIONS(6719), - [anon_sym_BSLASHeqref] = ACTIONS(6719), - [anon_sym_BSLASHvref] = ACTIONS(6719), - [anon_sym_BSLASHVref] = ACTIONS(6719), - [anon_sym_BSLASHautoref] = ACTIONS(6719), - [anon_sym_BSLASHpageref] = ACTIONS(6719), - [anon_sym_BSLASHcref] = ACTIONS(6719), - [anon_sym_BSLASHCref] = ACTIONS(6719), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6723), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6723), - [anon_sym_BSLASHnamecref] = ACTIONS(6719), - [anon_sym_BSLASHnameCref] = ACTIONS(6719), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6719), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6719), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6719), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6719), - [anon_sym_BSLASHlabelcref] = ACTIONS(6719), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6719), - [anon_sym_BSLASHcrefrange] = ACTIONS(6719), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6723), - [anon_sym_BSLASHCrefrange] = ACTIONS(6719), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6723), - [anon_sym_BSLASHnewlabel] = ACTIONS(6719), - [anon_sym_BSLASHnewcommand] = ACTIONS(6719), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6723), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6719), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6723), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6719), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6723), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6719), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6723), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6719), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6719), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6719), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6719), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6719), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6719), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6719), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6719), - [anon_sym_BSLASHdef] = ACTIONS(6719), - [anon_sym_BSLASHlet] = ACTIONS(6719), - [anon_sym_BSLASHleft] = ACTIONS(6719), - [anon_sym_BSLASHbig] = ACTIONS(6719), - [anon_sym_BSLASHBig] = ACTIONS(6719), - [anon_sym_BSLASHbigg] = ACTIONS(6719), - [anon_sym_BSLASHBigg] = ACTIONS(6719), - [anon_sym_BSLASHbigl] = ACTIONS(6719), - [anon_sym_BSLASHBigl] = ACTIONS(6719), - [anon_sym_BSLASHbiggl] = ACTIONS(6719), - [anon_sym_BSLASHBiggl] = ACTIONS(6719), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6719), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6719), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6719), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6719), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6719), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6719), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6719), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6719), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6719), - [anon_sym_BSLASHgls] = ACTIONS(6719), - [anon_sym_BSLASHGls] = ACTIONS(6719), - [anon_sym_BSLASHGLS] = ACTIONS(6719), - [anon_sym_BSLASHglspl] = ACTIONS(6719), - [anon_sym_BSLASHGlspl] = ACTIONS(6719), - [anon_sym_BSLASHGLSpl] = ACTIONS(6719), - [anon_sym_BSLASHglsdisp] = ACTIONS(6719), - [anon_sym_BSLASHglslink] = ACTIONS(6719), - [anon_sym_BSLASHglstext] = ACTIONS(6719), - [anon_sym_BSLASHGlstext] = ACTIONS(6719), - [anon_sym_BSLASHGLStext] = ACTIONS(6719), - [anon_sym_BSLASHglsfirst] = ACTIONS(6719), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6719), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6719), - [anon_sym_BSLASHglsplural] = ACTIONS(6719), - [anon_sym_BSLASHGlsplural] = ACTIONS(6719), - [anon_sym_BSLASHGLSplural] = ACTIONS(6719), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6719), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6719), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6719), - [anon_sym_BSLASHglsname] = ACTIONS(6719), - [anon_sym_BSLASHGlsname] = ACTIONS(6719), - [anon_sym_BSLASHGLSname] = ACTIONS(6719), - [anon_sym_BSLASHglssymbol] = ACTIONS(6719), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6719), - [anon_sym_BSLASHglsdesc] = ACTIONS(6719), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6719), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6719), - [anon_sym_BSLASHglsuseri] = ACTIONS(6719), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6719), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6719), - [anon_sym_BSLASHglsuserii] = ACTIONS(6719), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6719), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6719), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6719), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6719), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6719), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6719), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6719), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6719), - [anon_sym_BSLASHglsuserv] = ACTIONS(6719), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6719), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6719), - [anon_sym_BSLASHglsuservi] = ACTIONS(6719), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6719), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6719), - [anon_sym_BSLASHnewacronym] = ACTIONS(6719), - [anon_sym_BSLASHacrshort] = ACTIONS(6719), - [anon_sym_BSLASHAcrshort] = ACTIONS(6719), - [anon_sym_BSLASHACRshort] = ACTIONS(6719), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6719), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6719), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6719), - [anon_sym_BSLASHacrlong] = ACTIONS(6719), - [anon_sym_BSLASHAcrlong] = ACTIONS(6719), - [anon_sym_BSLASHACRlong] = ACTIONS(6719), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6719), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6719), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6719), - [anon_sym_BSLASHacrfull] = ACTIONS(6719), - [anon_sym_BSLASHAcrfull] = ACTIONS(6719), - [anon_sym_BSLASHACRfull] = ACTIONS(6719), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6719), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6719), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6719), - [anon_sym_BSLASHacs] = ACTIONS(6719), - [anon_sym_BSLASHAcs] = ACTIONS(6719), - [anon_sym_BSLASHacsp] = ACTIONS(6719), - [anon_sym_BSLASHAcsp] = ACTIONS(6719), - [anon_sym_BSLASHacl] = ACTIONS(6719), - [anon_sym_BSLASHAcl] = ACTIONS(6719), - [anon_sym_BSLASHaclp] = ACTIONS(6719), - [anon_sym_BSLASHAclp] = ACTIONS(6719), - [anon_sym_BSLASHacf] = ACTIONS(6719), - [anon_sym_BSLASHAcf] = ACTIONS(6719), - [anon_sym_BSLASHacfp] = ACTIONS(6719), - [anon_sym_BSLASHAcfp] = ACTIONS(6719), - [anon_sym_BSLASHac] = ACTIONS(6719), - [anon_sym_BSLASHAc] = ACTIONS(6719), - [anon_sym_BSLASHacp] = ACTIONS(6719), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6719), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6719), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6719), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6719), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6719), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6719), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6719), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6719), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6719), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6719), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6719), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6723), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6719), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6723), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6719), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6719), - [anon_sym_BSLASHcolor] = ACTIONS(6719), - [anon_sym_BSLASHcolorbox] = ACTIONS(6719), - [anon_sym_BSLASHtextcolor] = ACTIONS(6719), - [anon_sym_BSLASHpagecolor] = ACTIONS(6719), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6719), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6719), - [anon_sym_BSLASHtext] = ACTIONS(6719), - [anon_sym_BSLASHintertext] = ACTIONS(6719), - [anon_sym_shortintertext] = ACTIONS(6719), - }, - [1009] = { - [ts_builtin_sym_end] = ACTIONS(6227), - [sym_command_name] = ACTIONS(6225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6225), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_RBRACK] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_EQ] = ACTIONS(6227), - [anon_sym_LPAREN] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [anon_sym_BSLASHpart] = ACTIONS(6225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddpart] = ACTIONS(6225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6227), - [anon_sym_BSLASHchapter] = ACTIONS(6225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddchap] = ACTIONS(6225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsection] = ACTIONS(6225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddsec] = ACTIONS(6225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubsection] = ACTIONS(6225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHparagraph] = ACTIONS(6225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6227), - [anon_sym_BSLASHitem] = ACTIONS(6225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6227), - [anon_sym_LBRACE] = ACTIONS(6227), - [anon_sym_RBRACE] = ACTIONS(6227), - [sym_word] = ACTIONS(6225), - [sym_placeholder] = ACTIONS(6227), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(6225), - [anon_sym_GT] = ACTIONS(6225), - [anon_sym_BANG] = ACTIONS(6225), - [anon_sym_PIPE] = ACTIONS(6225), - [anon_sym_COLON] = ACTIONS(6225), - [anon_sym_SQUOTE] = ACTIONS(6225), - [anon_sym__] = ACTIONS(6227), - [anon_sym_CARET] = ACTIONS(6227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6227), - [anon_sym_DOLLAR] = ACTIONS(6225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6227), - [anon_sym_BSLASHbegin] = ACTIONS(6225), - [anon_sym_BSLASHtitle] = ACTIONS(6225), - [anon_sym_BSLASHauthor] = ACTIONS(6225), - [anon_sym_BSLASHusepackage] = ACTIONS(6225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6225), - [anon_sym_BSLASHinclude] = ACTIONS(6225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6225), - [anon_sym_BSLASHinput] = ACTIONS(6225), - [anon_sym_BSLASHsubfile] = ACTIONS(6225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6225), - [anon_sym_BSLASHbibliography] = ACTIONS(6225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6225), - [anon_sym_BSLASHincludesvg] = ACTIONS(6225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6225), - [anon_sym_BSLASHimport] = ACTIONS(6225), - [anon_sym_BSLASHsubimport] = ACTIONS(6225), - [anon_sym_BSLASHinputfrom] = ACTIONS(6225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6225), - [anon_sym_BSLASHincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHcaption] = ACTIONS(6225), - [anon_sym_BSLASHcite] = ACTIONS(6225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCite] = ACTIONS(6225), - [anon_sym_BSLASHnocite] = ACTIONS(6225), - [anon_sym_BSLASHcitet] = ACTIONS(6225), - [anon_sym_BSLASHcitep] = ACTIONS(6225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteauthor] = ACTIONS(6225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitetitle] = ACTIONS(6225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteyear] = ACTIONS(6225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitedate] = ACTIONS(6225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteurl] = ACTIONS(6225), - [anon_sym_BSLASHfullcite] = ACTIONS(6225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6225), - [anon_sym_BSLASHcitealt] = ACTIONS(6225), - [anon_sym_BSLASHcitealp] = ACTIONS(6225), - [anon_sym_BSLASHcitetext] = ACTIONS(6225), - [anon_sym_BSLASHparencite] = ACTIONS(6225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHParencite] = ACTIONS(6225), - [anon_sym_BSLASHfootcite] = ACTIONS(6225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6225), - [anon_sym_BSLASHtextcite] = ACTIONS(6225), - [anon_sym_BSLASHTextcite] = ACTIONS(6225), - [anon_sym_BSLASHsmartcite] = ACTIONS(6225), - [anon_sym_BSLASHSmartcite] = ACTIONS(6225), - [anon_sym_BSLASHsupercite] = ACTIONS(6225), - [anon_sym_BSLASHautocite] = ACTIONS(6225), - [anon_sym_BSLASHAutocite] = ACTIONS(6225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHvolcite] = ACTIONS(6225), - [anon_sym_BSLASHVolcite] = ACTIONS(6225), - [anon_sym_BSLASHpvolcite] = ACTIONS(6225), - [anon_sym_BSLASHPvolcite] = ACTIONS(6225), - [anon_sym_BSLASHfvolcite] = ACTIONS(6225), - [anon_sym_BSLASHftvolcite] = ACTIONS(6225), - [anon_sym_BSLASHsvolcite] = ACTIONS(6225), - [anon_sym_BSLASHSvolcite] = ACTIONS(6225), - [anon_sym_BSLASHtvolcite] = ACTIONS(6225), - [anon_sym_BSLASHTvolcite] = ACTIONS(6225), - [anon_sym_BSLASHavolcite] = ACTIONS(6225), - [anon_sym_BSLASHAvolcite] = ACTIONS(6225), - [anon_sym_BSLASHnotecite] = ACTIONS(6225), - [anon_sym_BSLASHNotecite] = ACTIONS(6225), - [anon_sym_BSLASHpnotecite] = ACTIONS(6225), - [anon_sym_BSLASHPnotecite] = ACTIONS(6225), - [anon_sym_BSLASHfnotecite] = ACTIONS(6225), - [anon_sym_BSLASHlabel] = ACTIONS(6225), - [anon_sym_BSLASHref] = ACTIONS(6225), - [anon_sym_BSLASHeqref] = ACTIONS(6225), - [anon_sym_BSLASHvref] = ACTIONS(6225), - [anon_sym_BSLASHVref] = ACTIONS(6225), - [anon_sym_BSLASHautoref] = ACTIONS(6225), - [anon_sym_BSLASHpageref] = ACTIONS(6225), - [anon_sym_BSLASHcref] = ACTIONS(6225), - [anon_sym_BSLASHCref] = ACTIONS(6225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnameCref] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHlabelcref] = ACTIONS(6225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCrefrange] = ACTIONS(6225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnewlabel] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6227), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHdef] = ACTIONS(6225), - [anon_sym_BSLASHlet] = ACTIONS(6225), - [anon_sym_BSLASHleft] = ACTIONS(6225), - [anon_sym_BSLASHbig] = ACTIONS(6225), - [anon_sym_BSLASHBig] = ACTIONS(6225), - [anon_sym_BSLASHbigg] = ACTIONS(6225), - [anon_sym_BSLASHBigg] = ACTIONS(6225), - [anon_sym_BSLASHbigl] = ACTIONS(6225), - [anon_sym_BSLASHBigl] = ACTIONS(6225), - [anon_sym_BSLASHbiggl] = ACTIONS(6225), - [anon_sym_BSLASHBiggl] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6225), - [anon_sym_BSLASHgls] = ACTIONS(6225), - [anon_sym_BSLASHGls] = ACTIONS(6225), - [anon_sym_BSLASHGLS] = ACTIONS(6225), - [anon_sym_BSLASHglspl] = ACTIONS(6225), - [anon_sym_BSLASHGlspl] = ACTIONS(6225), - [anon_sym_BSLASHGLSpl] = ACTIONS(6225), - [anon_sym_BSLASHglsdisp] = ACTIONS(6225), - [anon_sym_BSLASHglslink] = ACTIONS(6225), - [anon_sym_BSLASHglstext] = ACTIONS(6225), - [anon_sym_BSLASHGlstext] = ACTIONS(6225), - [anon_sym_BSLASHGLStext] = ACTIONS(6225), - [anon_sym_BSLASHglsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6225), - [anon_sym_BSLASHglsplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSplural] = ACTIONS(6225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHglsname] = ACTIONS(6225), - [anon_sym_BSLASHGlsname] = ACTIONS(6225), - [anon_sym_BSLASHGLSname] = ACTIONS(6225), - [anon_sym_BSLASHglssymbol] = ACTIONS(6225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6225), - [anon_sym_BSLASHglsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6225), - [anon_sym_BSLASHglsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6225), - [anon_sym_BSLASHglsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6225), - [anon_sym_BSLASHglsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6225), - [anon_sym_BSLASHglsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6225), - [anon_sym_BSLASHnewacronym] = ACTIONS(6225), - [anon_sym_BSLASHacrshort] = ACTIONS(6225), - [anon_sym_BSLASHAcrshort] = ACTIONS(6225), - [anon_sym_BSLASHACRshort] = ACTIONS(6225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6225), - [anon_sym_BSLASHacrlong] = ACTIONS(6225), - [anon_sym_BSLASHAcrlong] = ACTIONS(6225), - [anon_sym_BSLASHACRlong] = ACTIONS(6225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6225), - [anon_sym_BSLASHacrfull] = ACTIONS(6225), - [anon_sym_BSLASHAcrfull] = ACTIONS(6225), - [anon_sym_BSLASHACRfull] = ACTIONS(6225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6225), - [anon_sym_BSLASHacs] = ACTIONS(6225), - [anon_sym_BSLASHAcs] = ACTIONS(6225), - [anon_sym_BSLASHacsp] = ACTIONS(6225), - [anon_sym_BSLASHAcsp] = ACTIONS(6225), - [anon_sym_BSLASHacl] = ACTIONS(6225), - [anon_sym_BSLASHAcl] = ACTIONS(6225), - [anon_sym_BSLASHaclp] = ACTIONS(6225), - [anon_sym_BSLASHAclp] = ACTIONS(6225), - [anon_sym_BSLASHacf] = ACTIONS(6225), - [anon_sym_BSLASHAcf] = ACTIONS(6225), - [anon_sym_BSLASHacfp] = ACTIONS(6225), - [anon_sym_BSLASHAcfp] = ACTIONS(6225), - [anon_sym_BSLASHac] = ACTIONS(6225), - [anon_sym_BSLASHAc] = ACTIONS(6225), - [anon_sym_BSLASHacp] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6225), - [anon_sym_BSLASHcolor] = ACTIONS(6225), - [anon_sym_BSLASHcolorbox] = ACTIONS(6225), - [anon_sym_BSLASHtextcolor] = ACTIONS(6225), - [anon_sym_BSLASHpagecolor] = ACTIONS(6225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6225), - [anon_sym_BSLASHtext] = ACTIONS(6225), - [anon_sym_BSLASHintertext] = ACTIONS(6225), - [anon_sym_shortintertext] = ACTIONS(6225), - }, - [1010] = { - [ts_builtin_sym_end] = ACTIONS(6231), - [sym_command_name] = ACTIONS(6229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6229), - [anon_sym_LBRACK] = ACTIONS(6231), - [anon_sym_RBRACK] = ACTIONS(6231), - [anon_sym_COMMA] = ACTIONS(6231), - [anon_sym_EQ] = ACTIONS(6231), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_RPAREN] = ACTIONS(6231), - [anon_sym_BSLASHpart] = ACTIONS(6229), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddpart] = ACTIONS(6229), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6231), - [anon_sym_BSLASHchapter] = ACTIONS(6229), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddchap] = ACTIONS(6229), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsection] = ACTIONS(6229), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddsec] = ACTIONS(6229), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubsection] = ACTIONS(6229), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6229), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHparagraph] = ACTIONS(6229), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6229), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6231), - [anon_sym_BSLASHitem] = ACTIONS(6229), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6231), - [anon_sym_LBRACE] = ACTIONS(6231), - [anon_sym_RBRACE] = ACTIONS(6231), - [sym_word] = ACTIONS(6229), - [sym_placeholder] = ACTIONS(6231), - [anon_sym_PLUS] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_SLASH] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(6229), - [anon_sym_GT] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [anon_sym_PIPE] = ACTIONS(6229), - [anon_sym_COLON] = ACTIONS(6229), - [anon_sym_SQUOTE] = ACTIONS(6229), - [anon_sym__] = ACTIONS(6231), - [anon_sym_CARET] = ACTIONS(6231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6231), - [anon_sym_DOLLAR] = ACTIONS(6229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6231), - [anon_sym_BSLASHbegin] = ACTIONS(6229), - [anon_sym_BSLASHtitle] = ACTIONS(6229), - [anon_sym_BSLASHauthor] = ACTIONS(6229), - [anon_sym_BSLASHusepackage] = ACTIONS(6229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6229), - [anon_sym_BSLASHinclude] = ACTIONS(6229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6229), - [anon_sym_BSLASHinput] = ACTIONS(6229), - [anon_sym_BSLASHsubfile] = ACTIONS(6229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6229), - [anon_sym_BSLASHbibliography] = ACTIONS(6229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6229), - [anon_sym_BSLASHincludesvg] = ACTIONS(6229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6229), - [anon_sym_BSLASHimport] = ACTIONS(6229), - [anon_sym_BSLASHsubimport] = ACTIONS(6229), - [anon_sym_BSLASHinputfrom] = ACTIONS(6229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6229), - [anon_sym_BSLASHincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHcaption] = ACTIONS(6229), - [anon_sym_BSLASHcite] = ACTIONS(6229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCite] = ACTIONS(6229), - [anon_sym_BSLASHnocite] = ACTIONS(6229), - [anon_sym_BSLASHcitet] = ACTIONS(6229), - [anon_sym_BSLASHcitep] = ACTIONS(6229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteauthor] = ACTIONS(6229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitetitle] = ACTIONS(6229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteyear] = ACTIONS(6229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitedate] = ACTIONS(6229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteurl] = ACTIONS(6229), - [anon_sym_BSLASHfullcite] = ACTIONS(6229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6229), - [anon_sym_BSLASHcitealt] = ACTIONS(6229), - [anon_sym_BSLASHcitealp] = ACTIONS(6229), - [anon_sym_BSLASHcitetext] = ACTIONS(6229), - [anon_sym_BSLASHparencite] = ACTIONS(6229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHParencite] = ACTIONS(6229), - [anon_sym_BSLASHfootcite] = ACTIONS(6229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6229), - [anon_sym_BSLASHtextcite] = ACTIONS(6229), - [anon_sym_BSLASHTextcite] = ACTIONS(6229), - [anon_sym_BSLASHsmartcite] = ACTIONS(6229), - [anon_sym_BSLASHSmartcite] = ACTIONS(6229), - [anon_sym_BSLASHsupercite] = ACTIONS(6229), - [anon_sym_BSLASHautocite] = ACTIONS(6229), - [anon_sym_BSLASHAutocite] = ACTIONS(6229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHvolcite] = ACTIONS(6229), - [anon_sym_BSLASHVolcite] = ACTIONS(6229), - [anon_sym_BSLASHpvolcite] = ACTIONS(6229), - [anon_sym_BSLASHPvolcite] = ACTIONS(6229), - [anon_sym_BSLASHfvolcite] = ACTIONS(6229), - [anon_sym_BSLASHftvolcite] = ACTIONS(6229), - [anon_sym_BSLASHsvolcite] = ACTIONS(6229), - [anon_sym_BSLASHSvolcite] = ACTIONS(6229), - [anon_sym_BSLASHtvolcite] = ACTIONS(6229), - [anon_sym_BSLASHTvolcite] = ACTIONS(6229), - [anon_sym_BSLASHavolcite] = ACTIONS(6229), - [anon_sym_BSLASHAvolcite] = ACTIONS(6229), - [anon_sym_BSLASHnotecite] = ACTIONS(6229), - [anon_sym_BSLASHNotecite] = ACTIONS(6229), - [anon_sym_BSLASHpnotecite] = ACTIONS(6229), - [anon_sym_BSLASHPnotecite] = ACTIONS(6229), - [anon_sym_BSLASHfnotecite] = ACTIONS(6229), - [anon_sym_BSLASHlabel] = ACTIONS(6229), - [anon_sym_BSLASHref] = ACTIONS(6229), - [anon_sym_BSLASHeqref] = ACTIONS(6229), - [anon_sym_BSLASHvref] = ACTIONS(6229), - [anon_sym_BSLASHVref] = ACTIONS(6229), - [anon_sym_BSLASHautoref] = ACTIONS(6229), - [anon_sym_BSLASHpageref] = ACTIONS(6229), - [anon_sym_BSLASHcref] = ACTIONS(6229), - [anon_sym_BSLASHCref] = ACTIONS(6229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnameCref] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHlabelcref] = ACTIONS(6229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCrefrange] = ACTIONS(6229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnewlabel] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6231), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHdef] = ACTIONS(6229), - [anon_sym_BSLASHlet] = ACTIONS(6229), - [anon_sym_BSLASHleft] = ACTIONS(6229), - [anon_sym_BSLASHbig] = ACTIONS(6229), - [anon_sym_BSLASHBig] = ACTIONS(6229), - [anon_sym_BSLASHbigg] = ACTIONS(6229), - [anon_sym_BSLASHBigg] = ACTIONS(6229), - [anon_sym_BSLASHbigl] = ACTIONS(6229), - [anon_sym_BSLASHBigl] = ACTIONS(6229), - [anon_sym_BSLASHbiggl] = ACTIONS(6229), - [anon_sym_BSLASHBiggl] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6229), - [anon_sym_BSLASHgls] = ACTIONS(6229), - [anon_sym_BSLASHGls] = ACTIONS(6229), - [anon_sym_BSLASHGLS] = ACTIONS(6229), - [anon_sym_BSLASHglspl] = ACTIONS(6229), - [anon_sym_BSLASHGlspl] = ACTIONS(6229), - [anon_sym_BSLASHGLSpl] = ACTIONS(6229), - [anon_sym_BSLASHglsdisp] = ACTIONS(6229), - [anon_sym_BSLASHglslink] = ACTIONS(6229), - [anon_sym_BSLASHglstext] = ACTIONS(6229), - [anon_sym_BSLASHGlstext] = ACTIONS(6229), - [anon_sym_BSLASHGLStext] = ACTIONS(6229), - [anon_sym_BSLASHglsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6229), - [anon_sym_BSLASHglsplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSplural] = ACTIONS(6229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHglsname] = ACTIONS(6229), - [anon_sym_BSLASHGlsname] = ACTIONS(6229), - [anon_sym_BSLASHGLSname] = ACTIONS(6229), - [anon_sym_BSLASHglssymbol] = ACTIONS(6229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6229), - [anon_sym_BSLASHglsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6229), - [anon_sym_BSLASHglsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6229), - [anon_sym_BSLASHglsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6229), - [anon_sym_BSLASHglsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6229), - [anon_sym_BSLASHglsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6229), - [anon_sym_BSLASHnewacronym] = ACTIONS(6229), - [anon_sym_BSLASHacrshort] = ACTIONS(6229), - [anon_sym_BSLASHAcrshort] = ACTIONS(6229), - [anon_sym_BSLASHACRshort] = ACTIONS(6229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6229), - [anon_sym_BSLASHacrlong] = ACTIONS(6229), - [anon_sym_BSLASHAcrlong] = ACTIONS(6229), - [anon_sym_BSLASHACRlong] = ACTIONS(6229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6229), - [anon_sym_BSLASHacrfull] = ACTIONS(6229), - [anon_sym_BSLASHAcrfull] = ACTIONS(6229), - [anon_sym_BSLASHACRfull] = ACTIONS(6229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6229), - [anon_sym_BSLASHacs] = ACTIONS(6229), - [anon_sym_BSLASHAcs] = ACTIONS(6229), - [anon_sym_BSLASHacsp] = ACTIONS(6229), - [anon_sym_BSLASHAcsp] = ACTIONS(6229), - [anon_sym_BSLASHacl] = ACTIONS(6229), - [anon_sym_BSLASHAcl] = ACTIONS(6229), - [anon_sym_BSLASHaclp] = ACTIONS(6229), - [anon_sym_BSLASHAclp] = ACTIONS(6229), - [anon_sym_BSLASHacf] = ACTIONS(6229), - [anon_sym_BSLASHAcf] = ACTIONS(6229), - [anon_sym_BSLASHacfp] = ACTIONS(6229), - [anon_sym_BSLASHAcfp] = ACTIONS(6229), - [anon_sym_BSLASHac] = ACTIONS(6229), - [anon_sym_BSLASHAc] = ACTIONS(6229), - [anon_sym_BSLASHacp] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6229), - [anon_sym_BSLASHcolor] = ACTIONS(6229), - [anon_sym_BSLASHcolorbox] = ACTIONS(6229), - [anon_sym_BSLASHtextcolor] = ACTIONS(6229), - [anon_sym_BSLASHpagecolor] = ACTIONS(6229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6229), - [anon_sym_BSLASHtext] = ACTIONS(6229), - [anon_sym_BSLASHintertext] = ACTIONS(6229), - [anon_sym_shortintertext] = ACTIONS(6229), - }, - [1011] = { - [ts_builtin_sym_end] = ACTIONS(6235), - [sym_command_name] = ACTIONS(6233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_RBRACK] = ACTIONS(6235), - [anon_sym_COMMA] = ACTIONS(6235), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_LPAREN] = ACTIONS(6235), - [anon_sym_RPAREN] = ACTIONS(6235), - [anon_sym_BSLASHpart] = ACTIONS(6233), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddpart] = ACTIONS(6233), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6235), - [anon_sym_BSLASHchapter] = ACTIONS(6233), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddchap] = ACTIONS(6233), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsection] = ACTIONS(6233), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddsec] = ACTIONS(6233), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubsection] = ACTIONS(6233), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6233), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHparagraph] = ACTIONS(6233), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6233), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6235), - [anon_sym_BSLASHitem] = ACTIONS(6233), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6235), - [anon_sym_LBRACE] = ACTIONS(6235), - [anon_sym_RBRACE] = ACTIONS(6235), - [sym_word] = ACTIONS(6233), - [sym_placeholder] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6233), - [anon_sym_BANG] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(6233), - [anon_sym_SQUOTE] = ACTIONS(6233), - [anon_sym__] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6235), - [anon_sym_DOLLAR] = ACTIONS(6233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6235), - [anon_sym_BSLASHbegin] = ACTIONS(6233), - [anon_sym_BSLASHtitle] = ACTIONS(6233), - [anon_sym_BSLASHauthor] = ACTIONS(6233), - [anon_sym_BSLASHusepackage] = ACTIONS(6233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6233), - [anon_sym_BSLASHinclude] = ACTIONS(6233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6233), - [anon_sym_BSLASHinput] = ACTIONS(6233), - [anon_sym_BSLASHsubfile] = ACTIONS(6233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6233), - [anon_sym_BSLASHbibliography] = ACTIONS(6233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6233), - [anon_sym_BSLASHincludesvg] = ACTIONS(6233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6233), - [anon_sym_BSLASHimport] = ACTIONS(6233), - [anon_sym_BSLASHsubimport] = ACTIONS(6233), - [anon_sym_BSLASHinputfrom] = ACTIONS(6233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6233), - [anon_sym_BSLASHincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHcaption] = ACTIONS(6233), - [anon_sym_BSLASHcite] = ACTIONS(6233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCite] = ACTIONS(6233), - [anon_sym_BSLASHnocite] = ACTIONS(6233), - [anon_sym_BSLASHcitet] = ACTIONS(6233), - [anon_sym_BSLASHcitep] = ACTIONS(6233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteauthor] = ACTIONS(6233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitetitle] = ACTIONS(6233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteyear] = ACTIONS(6233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitedate] = ACTIONS(6233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteurl] = ACTIONS(6233), - [anon_sym_BSLASHfullcite] = ACTIONS(6233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6233), - [anon_sym_BSLASHcitealt] = ACTIONS(6233), - [anon_sym_BSLASHcitealp] = ACTIONS(6233), - [anon_sym_BSLASHcitetext] = ACTIONS(6233), - [anon_sym_BSLASHparencite] = ACTIONS(6233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHParencite] = ACTIONS(6233), - [anon_sym_BSLASHfootcite] = ACTIONS(6233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6233), - [anon_sym_BSLASHtextcite] = ACTIONS(6233), - [anon_sym_BSLASHTextcite] = ACTIONS(6233), - [anon_sym_BSLASHsmartcite] = ACTIONS(6233), - [anon_sym_BSLASHSmartcite] = ACTIONS(6233), - [anon_sym_BSLASHsupercite] = ACTIONS(6233), - [anon_sym_BSLASHautocite] = ACTIONS(6233), - [anon_sym_BSLASHAutocite] = ACTIONS(6233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHvolcite] = ACTIONS(6233), - [anon_sym_BSLASHVolcite] = ACTIONS(6233), - [anon_sym_BSLASHpvolcite] = ACTIONS(6233), - [anon_sym_BSLASHPvolcite] = ACTIONS(6233), - [anon_sym_BSLASHfvolcite] = ACTIONS(6233), - [anon_sym_BSLASHftvolcite] = ACTIONS(6233), - [anon_sym_BSLASHsvolcite] = ACTIONS(6233), - [anon_sym_BSLASHSvolcite] = ACTIONS(6233), - [anon_sym_BSLASHtvolcite] = ACTIONS(6233), - [anon_sym_BSLASHTvolcite] = ACTIONS(6233), - [anon_sym_BSLASHavolcite] = ACTIONS(6233), - [anon_sym_BSLASHAvolcite] = ACTIONS(6233), - [anon_sym_BSLASHnotecite] = ACTIONS(6233), - [anon_sym_BSLASHNotecite] = ACTIONS(6233), - [anon_sym_BSLASHpnotecite] = ACTIONS(6233), - [anon_sym_BSLASHPnotecite] = ACTIONS(6233), - [anon_sym_BSLASHfnotecite] = ACTIONS(6233), - [anon_sym_BSLASHlabel] = ACTIONS(6233), - [anon_sym_BSLASHref] = ACTIONS(6233), - [anon_sym_BSLASHeqref] = ACTIONS(6233), - [anon_sym_BSLASHvref] = ACTIONS(6233), - [anon_sym_BSLASHVref] = ACTIONS(6233), - [anon_sym_BSLASHautoref] = ACTIONS(6233), - [anon_sym_BSLASHpageref] = ACTIONS(6233), - [anon_sym_BSLASHcref] = ACTIONS(6233), - [anon_sym_BSLASHCref] = ACTIONS(6233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnameCref] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHlabelcref] = ACTIONS(6233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCrefrange] = ACTIONS(6233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnewlabel] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6235), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHdef] = ACTIONS(6233), - [anon_sym_BSLASHlet] = ACTIONS(6233), - [anon_sym_BSLASHleft] = ACTIONS(6233), - [anon_sym_BSLASHbig] = ACTIONS(6233), - [anon_sym_BSLASHBig] = ACTIONS(6233), - [anon_sym_BSLASHbigg] = ACTIONS(6233), - [anon_sym_BSLASHBigg] = ACTIONS(6233), - [anon_sym_BSLASHbigl] = ACTIONS(6233), - [anon_sym_BSLASHBigl] = ACTIONS(6233), - [anon_sym_BSLASHbiggl] = ACTIONS(6233), - [anon_sym_BSLASHBiggl] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6233), - [anon_sym_BSLASHgls] = ACTIONS(6233), - [anon_sym_BSLASHGls] = ACTIONS(6233), - [anon_sym_BSLASHGLS] = ACTIONS(6233), - [anon_sym_BSLASHglspl] = ACTIONS(6233), - [anon_sym_BSLASHGlspl] = ACTIONS(6233), - [anon_sym_BSLASHGLSpl] = ACTIONS(6233), - [anon_sym_BSLASHglsdisp] = ACTIONS(6233), - [anon_sym_BSLASHglslink] = ACTIONS(6233), - [anon_sym_BSLASHglstext] = ACTIONS(6233), - [anon_sym_BSLASHGlstext] = ACTIONS(6233), - [anon_sym_BSLASHGLStext] = ACTIONS(6233), - [anon_sym_BSLASHglsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6233), - [anon_sym_BSLASHglsplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSplural] = ACTIONS(6233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHglsname] = ACTIONS(6233), - [anon_sym_BSLASHGlsname] = ACTIONS(6233), - [anon_sym_BSLASHGLSname] = ACTIONS(6233), - [anon_sym_BSLASHglssymbol] = ACTIONS(6233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6233), - [anon_sym_BSLASHglsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6233), - [anon_sym_BSLASHglsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6233), - [anon_sym_BSLASHglsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6233), - [anon_sym_BSLASHglsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6233), - [anon_sym_BSLASHglsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6233), - [anon_sym_BSLASHnewacronym] = ACTIONS(6233), - [anon_sym_BSLASHacrshort] = ACTIONS(6233), - [anon_sym_BSLASHAcrshort] = ACTIONS(6233), - [anon_sym_BSLASHACRshort] = ACTIONS(6233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6233), - [anon_sym_BSLASHacrlong] = ACTIONS(6233), - [anon_sym_BSLASHAcrlong] = ACTIONS(6233), - [anon_sym_BSLASHACRlong] = ACTIONS(6233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6233), - [anon_sym_BSLASHacrfull] = ACTIONS(6233), - [anon_sym_BSLASHAcrfull] = ACTIONS(6233), - [anon_sym_BSLASHACRfull] = ACTIONS(6233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6233), - [anon_sym_BSLASHacs] = ACTIONS(6233), - [anon_sym_BSLASHAcs] = ACTIONS(6233), - [anon_sym_BSLASHacsp] = ACTIONS(6233), - [anon_sym_BSLASHAcsp] = ACTIONS(6233), - [anon_sym_BSLASHacl] = ACTIONS(6233), - [anon_sym_BSLASHAcl] = ACTIONS(6233), - [anon_sym_BSLASHaclp] = ACTIONS(6233), - [anon_sym_BSLASHAclp] = ACTIONS(6233), - [anon_sym_BSLASHacf] = ACTIONS(6233), - [anon_sym_BSLASHAcf] = ACTIONS(6233), - [anon_sym_BSLASHacfp] = ACTIONS(6233), - [anon_sym_BSLASHAcfp] = ACTIONS(6233), - [anon_sym_BSLASHac] = ACTIONS(6233), - [anon_sym_BSLASHAc] = ACTIONS(6233), - [anon_sym_BSLASHacp] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6233), - [anon_sym_BSLASHcolor] = ACTIONS(6233), - [anon_sym_BSLASHcolorbox] = ACTIONS(6233), - [anon_sym_BSLASHtextcolor] = ACTIONS(6233), - [anon_sym_BSLASHpagecolor] = ACTIONS(6233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6233), - [anon_sym_BSLASHtext] = ACTIONS(6233), - [anon_sym_BSLASHintertext] = ACTIONS(6233), - [anon_sym_shortintertext] = ACTIONS(6233), - }, - [1012] = { - [ts_builtin_sym_end] = ACTIONS(6363), - [sym_command_name] = ACTIONS(6361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6363), - [anon_sym_RBRACK] = ACTIONS(6363), - [anon_sym_COMMA] = ACTIONS(6363), - [anon_sym_EQ] = ACTIONS(6363), - [anon_sym_LPAREN] = ACTIONS(6363), - [anon_sym_RPAREN] = ACTIONS(6363), - [anon_sym_BSLASHpart] = ACTIONS(6361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddpart] = ACTIONS(6361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6363), - [anon_sym_BSLASHchapter] = ACTIONS(6361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddchap] = ACTIONS(6361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsection] = ACTIONS(6361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddsec] = ACTIONS(6361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubsection] = ACTIONS(6361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHparagraph] = ACTIONS(6361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6363), - [anon_sym_BSLASHitem] = ACTIONS(6361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6363), - [anon_sym_LBRACE] = ACTIONS(6363), - [anon_sym_RBRACE] = ACTIONS(6363), - [sym_word] = ACTIONS(6361), - [sym_placeholder] = ACTIONS(6363), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_LT] = ACTIONS(6361), - [anon_sym_GT] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6361), - [anon_sym__] = ACTIONS(6363), - [anon_sym_CARET] = ACTIONS(6363), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6363), - [anon_sym_DOLLAR] = ACTIONS(6361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6363), - [anon_sym_BSLASHbegin] = ACTIONS(6361), - [anon_sym_BSLASHtitle] = ACTIONS(6361), - [anon_sym_BSLASHauthor] = ACTIONS(6361), - [anon_sym_BSLASHusepackage] = ACTIONS(6361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6361), - [anon_sym_BSLASHinclude] = ACTIONS(6361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6361), - [anon_sym_BSLASHinput] = ACTIONS(6361), - [anon_sym_BSLASHsubfile] = ACTIONS(6361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6361), - [anon_sym_BSLASHbibliography] = ACTIONS(6361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6361), - [anon_sym_BSLASHincludesvg] = ACTIONS(6361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6361), - [anon_sym_BSLASHimport] = ACTIONS(6361), - [anon_sym_BSLASHsubimport] = ACTIONS(6361), - [anon_sym_BSLASHinputfrom] = ACTIONS(6361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6361), - [anon_sym_BSLASHincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHcaption] = ACTIONS(6361), - [anon_sym_BSLASHcite] = ACTIONS(6361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCite] = ACTIONS(6361), - [anon_sym_BSLASHnocite] = ACTIONS(6361), - [anon_sym_BSLASHcitet] = ACTIONS(6361), - [anon_sym_BSLASHcitep] = ACTIONS(6361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteauthor] = ACTIONS(6361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitetitle] = ACTIONS(6361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteyear] = ACTIONS(6361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitedate] = ACTIONS(6361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteurl] = ACTIONS(6361), - [anon_sym_BSLASHfullcite] = ACTIONS(6361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6361), - [anon_sym_BSLASHcitealt] = ACTIONS(6361), - [anon_sym_BSLASHcitealp] = ACTIONS(6361), - [anon_sym_BSLASHcitetext] = ACTIONS(6361), - [anon_sym_BSLASHparencite] = ACTIONS(6361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHParencite] = ACTIONS(6361), - [anon_sym_BSLASHfootcite] = ACTIONS(6361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6361), - [anon_sym_BSLASHtextcite] = ACTIONS(6361), - [anon_sym_BSLASHTextcite] = ACTIONS(6361), - [anon_sym_BSLASHsmartcite] = ACTIONS(6361), - [anon_sym_BSLASHSmartcite] = ACTIONS(6361), - [anon_sym_BSLASHsupercite] = ACTIONS(6361), - [anon_sym_BSLASHautocite] = ACTIONS(6361), - [anon_sym_BSLASHAutocite] = ACTIONS(6361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHvolcite] = ACTIONS(6361), - [anon_sym_BSLASHVolcite] = ACTIONS(6361), - [anon_sym_BSLASHpvolcite] = ACTIONS(6361), - [anon_sym_BSLASHPvolcite] = ACTIONS(6361), - [anon_sym_BSLASHfvolcite] = ACTIONS(6361), - [anon_sym_BSLASHftvolcite] = ACTIONS(6361), - [anon_sym_BSLASHsvolcite] = ACTIONS(6361), - [anon_sym_BSLASHSvolcite] = ACTIONS(6361), - [anon_sym_BSLASHtvolcite] = ACTIONS(6361), - [anon_sym_BSLASHTvolcite] = ACTIONS(6361), - [anon_sym_BSLASHavolcite] = ACTIONS(6361), - [anon_sym_BSLASHAvolcite] = ACTIONS(6361), - [anon_sym_BSLASHnotecite] = ACTIONS(6361), - [anon_sym_BSLASHNotecite] = ACTIONS(6361), - [anon_sym_BSLASHpnotecite] = ACTIONS(6361), - [anon_sym_BSLASHPnotecite] = ACTIONS(6361), - [anon_sym_BSLASHfnotecite] = ACTIONS(6361), - [anon_sym_BSLASHlabel] = ACTIONS(6361), - [anon_sym_BSLASHref] = ACTIONS(6361), - [anon_sym_BSLASHeqref] = ACTIONS(6361), - [anon_sym_BSLASHvref] = ACTIONS(6361), - [anon_sym_BSLASHVref] = ACTIONS(6361), - [anon_sym_BSLASHautoref] = ACTIONS(6361), - [anon_sym_BSLASHpageref] = ACTIONS(6361), - [anon_sym_BSLASHcref] = ACTIONS(6361), - [anon_sym_BSLASHCref] = ACTIONS(6361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnameCref] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHlabelcref] = ACTIONS(6361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCrefrange] = ACTIONS(6361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnewlabel] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6363), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHdef] = ACTIONS(6361), - [anon_sym_BSLASHlet] = ACTIONS(6361), - [anon_sym_BSLASHleft] = ACTIONS(6361), - [anon_sym_BSLASHbig] = ACTIONS(6361), - [anon_sym_BSLASHBig] = ACTIONS(6361), - [anon_sym_BSLASHbigg] = ACTIONS(6361), - [anon_sym_BSLASHBigg] = ACTIONS(6361), - [anon_sym_BSLASHbigl] = ACTIONS(6361), - [anon_sym_BSLASHBigl] = ACTIONS(6361), - [anon_sym_BSLASHbiggl] = ACTIONS(6361), - [anon_sym_BSLASHBiggl] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6361), - [anon_sym_BSLASHgls] = ACTIONS(6361), - [anon_sym_BSLASHGls] = ACTIONS(6361), - [anon_sym_BSLASHGLS] = ACTIONS(6361), - [anon_sym_BSLASHglspl] = ACTIONS(6361), - [anon_sym_BSLASHGlspl] = ACTIONS(6361), - [anon_sym_BSLASHGLSpl] = ACTIONS(6361), - [anon_sym_BSLASHglsdisp] = ACTIONS(6361), - [anon_sym_BSLASHglslink] = ACTIONS(6361), - [anon_sym_BSLASHglstext] = ACTIONS(6361), - [anon_sym_BSLASHGlstext] = ACTIONS(6361), - [anon_sym_BSLASHGLStext] = ACTIONS(6361), - [anon_sym_BSLASHglsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6361), - [anon_sym_BSLASHglsplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSplural] = ACTIONS(6361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHglsname] = ACTIONS(6361), - [anon_sym_BSLASHGlsname] = ACTIONS(6361), - [anon_sym_BSLASHGLSname] = ACTIONS(6361), - [anon_sym_BSLASHglssymbol] = ACTIONS(6361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6361), - [anon_sym_BSLASHglsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6361), - [anon_sym_BSLASHglsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6361), - [anon_sym_BSLASHglsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6361), - [anon_sym_BSLASHglsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6361), - [anon_sym_BSLASHglsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6361), - [anon_sym_BSLASHnewacronym] = ACTIONS(6361), - [anon_sym_BSLASHacrshort] = ACTIONS(6361), - [anon_sym_BSLASHAcrshort] = ACTIONS(6361), - [anon_sym_BSLASHACRshort] = ACTIONS(6361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6361), - [anon_sym_BSLASHacrlong] = ACTIONS(6361), - [anon_sym_BSLASHAcrlong] = ACTIONS(6361), - [anon_sym_BSLASHACRlong] = ACTIONS(6361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6361), - [anon_sym_BSLASHacrfull] = ACTIONS(6361), - [anon_sym_BSLASHAcrfull] = ACTIONS(6361), - [anon_sym_BSLASHACRfull] = ACTIONS(6361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6361), - [anon_sym_BSLASHacs] = ACTIONS(6361), - [anon_sym_BSLASHAcs] = ACTIONS(6361), - [anon_sym_BSLASHacsp] = ACTIONS(6361), - [anon_sym_BSLASHAcsp] = ACTIONS(6361), - [anon_sym_BSLASHacl] = ACTIONS(6361), - [anon_sym_BSLASHAcl] = ACTIONS(6361), - [anon_sym_BSLASHaclp] = ACTIONS(6361), - [anon_sym_BSLASHAclp] = ACTIONS(6361), - [anon_sym_BSLASHacf] = ACTIONS(6361), - [anon_sym_BSLASHAcf] = ACTIONS(6361), - [anon_sym_BSLASHacfp] = ACTIONS(6361), - [anon_sym_BSLASHAcfp] = ACTIONS(6361), - [anon_sym_BSLASHac] = ACTIONS(6361), - [anon_sym_BSLASHAc] = ACTIONS(6361), - [anon_sym_BSLASHacp] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6361), - [anon_sym_BSLASHcolor] = ACTIONS(6361), - [anon_sym_BSLASHcolorbox] = ACTIONS(6361), - [anon_sym_BSLASHtextcolor] = ACTIONS(6361), - [anon_sym_BSLASHpagecolor] = ACTIONS(6361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6361), - [anon_sym_BSLASHtext] = ACTIONS(6361), - [anon_sym_BSLASHintertext] = ACTIONS(6361), - [anon_sym_shortintertext] = ACTIONS(6361), - }, - [1013] = { - [ts_builtin_sym_end] = ACTIONS(6299), - [sym_command_name] = ACTIONS(6297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6297), - [anon_sym_LBRACK] = ACTIONS(6299), - [anon_sym_RBRACK] = ACTIONS(6299), - [anon_sym_COMMA] = ACTIONS(6299), - [anon_sym_EQ] = ACTIONS(6299), - [anon_sym_LPAREN] = ACTIONS(6299), - [anon_sym_RPAREN] = ACTIONS(6299), - [anon_sym_BSLASHpart] = ACTIONS(6297), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddpart] = ACTIONS(6297), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6299), - [anon_sym_BSLASHchapter] = ACTIONS(6297), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddchap] = ACTIONS(6297), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsection] = ACTIONS(6297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddsec] = ACTIONS(6297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubsection] = ACTIONS(6297), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6297), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHparagraph] = ACTIONS(6297), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6297), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6299), - [anon_sym_BSLASHitem] = ACTIONS(6297), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6299), - [anon_sym_LBRACE] = ACTIONS(6299), - [anon_sym_RBRACE] = ACTIONS(6299), - [sym_word] = ACTIONS(6297), - [sym_placeholder] = ACTIONS(6299), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_LT] = ACTIONS(6297), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(6297), - [anon_sym_PIPE] = ACTIONS(6297), - [anon_sym_COLON] = ACTIONS(6297), - [anon_sym_SQUOTE] = ACTIONS(6297), - [anon_sym__] = ACTIONS(6299), - [anon_sym_CARET] = ACTIONS(6299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6299), - [anon_sym_DOLLAR] = ACTIONS(6297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6299), - [anon_sym_BSLASHbegin] = ACTIONS(6297), - [anon_sym_BSLASHtitle] = ACTIONS(6297), - [anon_sym_BSLASHauthor] = ACTIONS(6297), - [anon_sym_BSLASHusepackage] = ACTIONS(6297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6297), - [anon_sym_BSLASHinclude] = ACTIONS(6297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6297), - [anon_sym_BSLASHinput] = ACTIONS(6297), - [anon_sym_BSLASHsubfile] = ACTIONS(6297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6297), - [anon_sym_BSLASHbibliography] = ACTIONS(6297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6297), - [anon_sym_BSLASHincludesvg] = ACTIONS(6297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6297), - [anon_sym_BSLASHimport] = ACTIONS(6297), - [anon_sym_BSLASHsubimport] = ACTIONS(6297), - [anon_sym_BSLASHinputfrom] = ACTIONS(6297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6297), - [anon_sym_BSLASHincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHcaption] = ACTIONS(6297), - [anon_sym_BSLASHcite] = ACTIONS(6297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCite] = ACTIONS(6297), - [anon_sym_BSLASHnocite] = ACTIONS(6297), - [anon_sym_BSLASHcitet] = ACTIONS(6297), - [anon_sym_BSLASHcitep] = ACTIONS(6297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteauthor] = ACTIONS(6297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitetitle] = ACTIONS(6297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteyear] = ACTIONS(6297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitedate] = ACTIONS(6297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteurl] = ACTIONS(6297), - [anon_sym_BSLASHfullcite] = ACTIONS(6297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6297), - [anon_sym_BSLASHcitealt] = ACTIONS(6297), - [anon_sym_BSLASHcitealp] = ACTIONS(6297), - [anon_sym_BSLASHcitetext] = ACTIONS(6297), - [anon_sym_BSLASHparencite] = ACTIONS(6297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHParencite] = ACTIONS(6297), - [anon_sym_BSLASHfootcite] = ACTIONS(6297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6297), - [anon_sym_BSLASHtextcite] = ACTIONS(6297), - [anon_sym_BSLASHTextcite] = ACTIONS(6297), - [anon_sym_BSLASHsmartcite] = ACTIONS(6297), - [anon_sym_BSLASHSmartcite] = ACTIONS(6297), - [anon_sym_BSLASHsupercite] = ACTIONS(6297), - [anon_sym_BSLASHautocite] = ACTIONS(6297), - [anon_sym_BSLASHAutocite] = ACTIONS(6297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHvolcite] = ACTIONS(6297), - [anon_sym_BSLASHVolcite] = ACTIONS(6297), - [anon_sym_BSLASHpvolcite] = ACTIONS(6297), - [anon_sym_BSLASHPvolcite] = ACTIONS(6297), - [anon_sym_BSLASHfvolcite] = ACTIONS(6297), - [anon_sym_BSLASHftvolcite] = ACTIONS(6297), - [anon_sym_BSLASHsvolcite] = ACTIONS(6297), - [anon_sym_BSLASHSvolcite] = ACTIONS(6297), - [anon_sym_BSLASHtvolcite] = ACTIONS(6297), - [anon_sym_BSLASHTvolcite] = ACTIONS(6297), - [anon_sym_BSLASHavolcite] = ACTIONS(6297), - [anon_sym_BSLASHAvolcite] = ACTIONS(6297), - [anon_sym_BSLASHnotecite] = ACTIONS(6297), - [anon_sym_BSLASHNotecite] = ACTIONS(6297), - [anon_sym_BSLASHpnotecite] = ACTIONS(6297), - [anon_sym_BSLASHPnotecite] = ACTIONS(6297), - [anon_sym_BSLASHfnotecite] = ACTIONS(6297), - [anon_sym_BSLASHlabel] = ACTIONS(6297), - [anon_sym_BSLASHref] = ACTIONS(6297), - [anon_sym_BSLASHeqref] = ACTIONS(6297), - [anon_sym_BSLASHvref] = ACTIONS(6297), - [anon_sym_BSLASHVref] = ACTIONS(6297), - [anon_sym_BSLASHautoref] = ACTIONS(6297), - [anon_sym_BSLASHpageref] = ACTIONS(6297), - [anon_sym_BSLASHcref] = ACTIONS(6297), - [anon_sym_BSLASHCref] = ACTIONS(6297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnameCref] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHlabelcref] = ACTIONS(6297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCrefrange] = ACTIONS(6297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnewlabel] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6299), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHdef] = ACTIONS(6297), - [anon_sym_BSLASHlet] = ACTIONS(6297), - [anon_sym_BSLASHleft] = ACTIONS(6297), - [anon_sym_BSLASHbig] = ACTIONS(6297), - [anon_sym_BSLASHBig] = ACTIONS(6297), - [anon_sym_BSLASHbigg] = ACTIONS(6297), - [anon_sym_BSLASHBigg] = ACTIONS(6297), - [anon_sym_BSLASHbigl] = ACTIONS(6297), - [anon_sym_BSLASHBigl] = ACTIONS(6297), - [anon_sym_BSLASHbiggl] = ACTIONS(6297), - [anon_sym_BSLASHBiggl] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6297), - [anon_sym_BSLASHgls] = ACTIONS(6297), - [anon_sym_BSLASHGls] = ACTIONS(6297), - [anon_sym_BSLASHGLS] = ACTIONS(6297), - [anon_sym_BSLASHglspl] = ACTIONS(6297), - [anon_sym_BSLASHGlspl] = ACTIONS(6297), - [anon_sym_BSLASHGLSpl] = ACTIONS(6297), - [anon_sym_BSLASHglsdisp] = ACTIONS(6297), - [anon_sym_BSLASHglslink] = ACTIONS(6297), - [anon_sym_BSLASHglstext] = ACTIONS(6297), - [anon_sym_BSLASHGlstext] = ACTIONS(6297), - [anon_sym_BSLASHGLStext] = ACTIONS(6297), - [anon_sym_BSLASHglsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6297), - [anon_sym_BSLASHglsplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSplural] = ACTIONS(6297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHglsname] = ACTIONS(6297), - [anon_sym_BSLASHGlsname] = ACTIONS(6297), - [anon_sym_BSLASHGLSname] = ACTIONS(6297), - [anon_sym_BSLASHglssymbol] = ACTIONS(6297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6297), - [anon_sym_BSLASHglsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6297), - [anon_sym_BSLASHglsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6297), - [anon_sym_BSLASHglsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6297), - [anon_sym_BSLASHglsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6297), - [anon_sym_BSLASHglsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6297), - [anon_sym_BSLASHnewacronym] = ACTIONS(6297), - [anon_sym_BSLASHacrshort] = ACTIONS(6297), - [anon_sym_BSLASHAcrshort] = ACTIONS(6297), - [anon_sym_BSLASHACRshort] = ACTIONS(6297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6297), - [anon_sym_BSLASHacrlong] = ACTIONS(6297), - [anon_sym_BSLASHAcrlong] = ACTIONS(6297), - [anon_sym_BSLASHACRlong] = ACTIONS(6297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6297), - [anon_sym_BSLASHacrfull] = ACTIONS(6297), - [anon_sym_BSLASHAcrfull] = ACTIONS(6297), - [anon_sym_BSLASHACRfull] = ACTIONS(6297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6297), - [anon_sym_BSLASHacs] = ACTIONS(6297), - [anon_sym_BSLASHAcs] = ACTIONS(6297), - [anon_sym_BSLASHacsp] = ACTIONS(6297), - [anon_sym_BSLASHAcsp] = ACTIONS(6297), - [anon_sym_BSLASHacl] = ACTIONS(6297), - [anon_sym_BSLASHAcl] = ACTIONS(6297), - [anon_sym_BSLASHaclp] = ACTIONS(6297), - [anon_sym_BSLASHAclp] = ACTIONS(6297), - [anon_sym_BSLASHacf] = ACTIONS(6297), - [anon_sym_BSLASHAcf] = ACTIONS(6297), - [anon_sym_BSLASHacfp] = ACTIONS(6297), - [anon_sym_BSLASHAcfp] = ACTIONS(6297), - [anon_sym_BSLASHac] = ACTIONS(6297), - [anon_sym_BSLASHAc] = ACTIONS(6297), - [anon_sym_BSLASHacp] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6297), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6297), - [anon_sym_BSLASHcolor] = ACTIONS(6297), - [anon_sym_BSLASHcolorbox] = ACTIONS(6297), - [anon_sym_BSLASHtextcolor] = ACTIONS(6297), - [anon_sym_BSLASHpagecolor] = ACTIONS(6297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6297), - [anon_sym_BSLASHtext] = ACTIONS(6297), - [anon_sym_BSLASHintertext] = ACTIONS(6297), - [anon_sym_shortintertext] = ACTIONS(6297), - }, - [1014] = { - [ts_builtin_sym_end] = ACTIONS(6419), - [sym_command_name] = ACTIONS(6417), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6417), - [anon_sym_LBRACK] = ACTIONS(6419), - [anon_sym_RBRACK] = ACTIONS(6419), - [anon_sym_COMMA] = ACTIONS(6419), - [anon_sym_EQ] = ACTIONS(6419), - [anon_sym_LPAREN] = ACTIONS(6419), - [anon_sym_RPAREN] = ACTIONS(6419), - [anon_sym_BSLASHpart] = ACTIONS(6417), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddpart] = ACTIONS(6417), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6419), - [anon_sym_BSLASHchapter] = ACTIONS(6417), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddchap] = ACTIONS(6417), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsection] = ACTIONS(6417), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddsec] = ACTIONS(6417), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubsection] = ACTIONS(6417), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6417), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHparagraph] = ACTIONS(6417), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6417), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6419), - [anon_sym_BSLASHitem] = ACTIONS(6417), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6419), - [anon_sym_LBRACE] = ACTIONS(6419), - [anon_sym_RBRACE] = ACTIONS(6419), - [sym_word] = ACTIONS(6417), - [sym_placeholder] = ACTIONS(6419), - [anon_sym_PLUS] = ACTIONS(6419), - [anon_sym_DASH] = ACTIONS(6419), - [anon_sym_STAR] = ACTIONS(6419), - [anon_sym_SLASH] = ACTIONS(6419), - [anon_sym_LT] = ACTIONS(6417), - [anon_sym_GT] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(6417), - [anon_sym_PIPE] = ACTIONS(6417), - [anon_sym_COLON] = ACTIONS(6417), - [anon_sym_SQUOTE] = ACTIONS(6417), - [anon_sym__] = ACTIONS(6419), - [anon_sym_CARET] = ACTIONS(6419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6419), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6419), - [anon_sym_DOLLAR] = ACTIONS(6417), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6419), - [anon_sym_BSLASHbegin] = ACTIONS(6417), - [anon_sym_BSLASHtitle] = ACTIONS(6417), - [anon_sym_BSLASHauthor] = ACTIONS(6417), - [anon_sym_BSLASHusepackage] = ACTIONS(6417), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6417), - [anon_sym_BSLASHinclude] = ACTIONS(6417), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6417), - [anon_sym_BSLASHinput] = ACTIONS(6417), - [anon_sym_BSLASHsubfile] = ACTIONS(6417), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6417), - [anon_sym_BSLASHbibliography] = ACTIONS(6417), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6417), - [anon_sym_BSLASHincludesvg] = ACTIONS(6417), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6417), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6417), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6417), - [anon_sym_BSLASHimport] = ACTIONS(6417), - [anon_sym_BSLASHsubimport] = ACTIONS(6417), - [anon_sym_BSLASHinputfrom] = ACTIONS(6417), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6417), - [anon_sym_BSLASHincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHcaption] = ACTIONS(6417), - [anon_sym_BSLASHcite] = ACTIONS(6417), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCite] = ACTIONS(6417), - [anon_sym_BSLASHnocite] = ACTIONS(6417), - [anon_sym_BSLASHcitet] = ACTIONS(6417), - [anon_sym_BSLASHcitep] = ACTIONS(6417), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteauthor] = ACTIONS(6417), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6417), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitetitle] = ACTIONS(6417), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteyear] = ACTIONS(6417), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitedate] = ACTIONS(6417), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteurl] = ACTIONS(6417), - [anon_sym_BSLASHfullcite] = ACTIONS(6417), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6417), - [anon_sym_BSLASHcitealt] = ACTIONS(6417), - [anon_sym_BSLASHcitealp] = ACTIONS(6417), - [anon_sym_BSLASHcitetext] = ACTIONS(6417), - [anon_sym_BSLASHparencite] = ACTIONS(6417), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHParencite] = ACTIONS(6417), - [anon_sym_BSLASHfootcite] = ACTIONS(6417), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6417), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6417), - [anon_sym_BSLASHtextcite] = ACTIONS(6417), - [anon_sym_BSLASHTextcite] = ACTIONS(6417), - [anon_sym_BSLASHsmartcite] = ACTIONS(6417), - [anon_sym_BSLASHSmartcite] = ACTIONS(6417), - [anon_sym_BSLASHsupercite] = ACTIONS(6417), - [anon_sym_BSLASHautocite] = ACTIONS(6417), - [anon_sym_BSLASHAutocite] = ACTIONS(6417), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHvolcite] = ACTIONS(6417), - [anon_sym_BSLASHVolcite] = ACTIONS(6417), - [anon_sym_BSLASHpvolcite] = ACTIONS(6417), - [anon_sym_BSLASHPvolcite] = ACTIONS(6417), - [anon_sym_BSLASHfvolcite] = ACTIONS(6417), - [anon_sym_BSLASHftvolcite] = ACTIONS(6417), - [anon_sym_BSLASHsvolcite] = ACTIONS(6417), - [anon_sym_BSLASHSvolcite] = ACTIONS(6417), - [anon_sym_BSLASHtvolcite] = ACTIONS(6417), - [anon_sym_BSLASHTvolcite] = ACTIONS(6417), - [anon_sym_BSLASHavolcite] = ACTIONS(6417), - [anon_sym_BSLASHAvolcite] = ACTIONS(6417), - [anon_sym_BSLASHnotecite] = ACTIONS(6417), - [anon_sym_BSLASHNotecite] = ACTIONS(6417), - [anon_sym_BSLASHpnotecite] = ACTIONS(6417), - [anon_sym_BSLASHPnotecite] = ACTIONS(6417), - [anon_sym_BSLASHfnotecite] = ACTIONS(6417), - [anon_sym_BSLASHlabel] = ACTIONS(6417), - [anon_sym_BSLASHref] = ACTIONS(6417), - [anon_sym_BSLASHeqref] = ACTIONS(6417), - [anon_sym_BSLASHvref] = ACTIONS(6417), - [anon_sym_BSLASHVref] = ACTIONS(6417), - [anon_sym_BSLASHautoref] = ACTIONS(6417), - [anon_sym_BSLASHpageref] = ACTIONS(6417), - [anon_sym_BSLASHcref] = ACTIONS(6417), - [anon_sym_BSLASHCref] = ACTIONS(6417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnameCref] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHlabelcref] = ACTIONS(6417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCrefrange] = ACTIONS(6417), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnewlabel] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6419), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHdef] = ACTIONS(6417), - [anon_sym_BSLASHlet] = ACTIONS(6417), - [anon_sym_BSLASHleft] = ACTIONS(6417), - [anon_sym_BSLASHbig] = ACTIONS(6417), - [anon_sym_BSLASHBig] = ACTIONS(6417), - [anon_sym_BSLASHbigg] = ACTIONS(6417), - [anon_sym_BSLASHBigg] = ACTIONS(6417), - [anon_sym_BSLASHbigl] = ACTIONS(6417), - [anon_sym_BSLASHBigl] = ACTIONS(6417), - [anon_sym_BSLASHbiggl] = ACTIONS(6417), - [anon_sym_BSLASHBiggl] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6417), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6417), - [anon_sym_BSLASHgls] = ACTIONS(6417), - [anon_sym_BSLASHGls] = ACTIONS(6417), - [anon_sym_BSLASHGLS] = ACTIONS(6417), - [anon_sym_BSLASHglspl] = ACTIONS(6417), - [anon_sym_BSLASHGlspl] = ACTIONS(6417), - [anon_sym_BSLASHGLSpl] = ACTIONS(6417), - [anon_sym_BSLASHglsdisp] = ACTIONS(6417), - [anon_sym_BSLASHglslink] = ACTIONS(6417), - [anon_sym_BSLASHglstext] = ACTIONS(6417), - [anon_sym_BSLASHGlstext] = ACTIONS(6417), - [anon_sym_BSLASHGLStext] = ACTIONS(6417), - [anon_sym_BSLASHglsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6417), - [anon_sym_BSLASHglsplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSplural] = ACTIONS(6417), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHglsname] = ACTIONS(6417), - [anon_sym_BSLASHGlsname] = ACTIONS(6417), - [anon_sym_BSLASHGLSname] = ACTIONS(6417), - [anon_sym_BSLASHglssymbol] = ACTIONS(6417), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6417), - [anon_sym_BSLASHglsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6417), - [anon_sym_BSLASHglsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6417), - [anon_sym_BSLASHglsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6417), - [anon_sym_BSLASHglsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6417), - [anon_sym_BSLASHglsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6417), - [anon_sym_BSLASHnewacronym] = ACTIONS(6417), - [anon_sym_BSLASHacrshort] = ACTIONS(6417), - [anon_sym_BSLASHAcrshort] = ACTIONS(6417), - [anon_sym_BSLASHACRshort] = ACTIONS(6417), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6417), - [anon_sym_BSLASHacrlong] = ACTIONS(6417), - [anon_sym_BSLASHAcrlong] = ACTIONS(6417), - [anon_sym_BSLASHACRlong] = ACTIONS(6417), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6417), - [anon_sym_BSLASHacrfull] = ACTIONS(6417), - [anon_sym_BSLASHAcrfull] = ACTIONS(6417), - [anon_sym_BSLASHACRfull] = ACTIONS(6417), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6417), - [anon_sym_BSLASHacs] = ACTIONS(6417), - [anon_sym_BSLASHAcs] = ACTIONS(6417), - [anon_sym_BSLASHacsp] = ACTIONS(6417), - [anon_sym_BSLASHAcsp] = ACTIONS(6417), - [anon_sym_BSLASHacl] = ACTIONS(6417), - [anon_sym_BSLASHAcl] = ACTIONS(6417), - [anon_sym_BSLASHaclp] = ACTIONS(6417), - [anon_sym_BSLASHAclp] = ACTIONS(6417), - [anon_sym_BSLASHacf] = ACTIONS(6417), - [anon_sym_BSLASHAcf] = ACTIONS(6417), - [anon_sym_BSLASHacfp] = ACTIONS(6417), - [anon_sym_BSLASHAcfp] = ACTIONS(6417), - [anon_sym_BSLASHac] = ACTIONS(6417), - [anon_sym_BSLASHAc] = ACTIONS(6417), - [anon_sym_BSLASHacp] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6417), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6417), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6417), - [anon_sym_BSLASHcolor] = ACTIONS(6417), - [anon_sym_BSLASHcolorbox] = ACTIONS(6417), - [anon_sym_BSLASHtextcolor] = ACTIONS(6417), - [anon_sym_BSLASHpagecolor] = ACTIONS(6417), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6417), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6417), - [anon_sym_BSLASHtext] = ACTIONS(6417), - [anon_sym_BSLASHintertext] = ACTIONS(6417), - [anon_sym_shortintertext] = ACTIONS(6417), - }, - [1015] = { - [ts_builtin_sym_end] = ACTIONS(6423), - [sym_command_name] = ACTIONS(6421), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6421), - [anon_sym_LBRACK] = ACTIONS(6423), - [anon_sym_RBRACK] = ACTIONS(6423), - [anon_sym_COMMA] = ACTIONS(6423), - [anon_sym_EQ] = ACTIONS(6423), - [anon_sym_LPAREN] = ACTIONS(6423), - [anon_sym_RPAREN] = ACTIONS(6423), - [anon_sym_BSLASHpart] = ACTIONS(6421), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddpart] = ACTIONS(6421), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6423), - [anon_sym_BSLASHchapter] = ACTIONS(6421), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddchap] = ACTIONS(6421), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsection] = ACTIONS(6421), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddsec] = ACTIONS(6421), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubsection] = ACTIONS(6421), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6421), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHparagraph] = ACTIONS(6421), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6421), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6423), - [anon_sym_BSLASHitem] = ACTIONS(6421), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6423), - [anon_sym_LBRACE] = ACTIONS(6423), - [anon_sym_RBRACE] = ACTIONS(6423), - [sym_word] = ACTIONS(6421), - [sym_placeholder] = ACTIONS(6423), - [anon_sym_PLUS] = ACTIONS(6423), - [anon_sym_DASH] = ACTIONS(6423), - [anon_sym_STAR] = ACTIONS(6423), - [anon_sym_SLASH] = ACTIONS(6423), - [anon_sym_LT] = ACTIONS(6421), - [anon_sym_GT] = ACTIONS(6421), - [anon_sym_BANG] = ACTIONS(6421), - [anon_sym_PIPE] = ACTIONS(6421), - [anon_sym_COLON] = ACTIONS(6421), - [anon_sym_SQUOTE] = ACTIONS(6421), - [anon_sym__] = ACTIONS(6423), - [anon_sym_CARET] = ACTIONS(6423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6423), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6423), - [anon_sym_DOLLAR] = ACTIONS(6421), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6423), - [anon_sym_BSLASHbegin] = ACTIONS(6421), - [anon_sym_BSLASHtitle] = ACTIONS(6421), - [anon_sym_BSLASHauthor] = ACTIONS(6421), - [anon_sym_BSLASHusepackage] = ACTIONS(6421), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6421), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6421), - [anon_sym_BSLASHinclude] = ACTIONS(6421), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6421), - [anon_sym_BSLASHinput] = ACTIONS(6421), - [anon_sym_BSLASHsubfile] = ACTIONS(6421), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6421), - [anon_sym_BSLASHbibliography] = ACTIONS(6421), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6421), - [anon_sym_BSLASHincludesvg] = ACTIONS(6421), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6421), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6421), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6421), - [anon_sym_BSLASHimport] = ACTIONS(6421), - [anon_sym_BSLASHsubimport] = ACTIONS(6421), - [anon_sym_BSLASHinputfrom] = ACTIONS(6421), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6421), - [anon_sym_BSLASHincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHcaption] = ACTIONS(6421), - [anon_sym_BSLASHcite] = ACTIONS(6421), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCite] = ACTIONS(6421), - [anon_sym_BSLASHnocite] = ACTIONS(6421), - [anon_sym_BSLASHcitet] = ACTIONS(6421), - [anon_sym_BSLASHcitep] = ACTIONS(6421), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteauthor] = ACTIONS(6421), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6421), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitetitle] = ACTIONS(6421), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteyear] = ACTIONS(6421), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitedate] = ACTIONS(6421), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteurl] = ACTIONS(6421), - [anon_sym_BSLASHfullcite] = ACTIONS(6421), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6421), - [anon_sym_BSLASHcitealt] = ACTIONS(6421), - [anon_sym_BSLASHcitealp] = ACTIONS(6421), - [anon_sym_BSLASHcitetext] = ACTIONS(6421), - [anon_sym_BSLASHparencite] = ACTIONS(6421), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHParencite] = ACTIONS(6421), - [anon_sym_BSLASHfootcite] = ACTIONS(6421), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6421), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6421), - [anon_sym_BSLASHtextcite] = ACTIONS(6421), - [anon_sym_BSLASHTextcite] = ACTIONS(6421), - [anon_sym_BSLASHsmartcite] = ACTIONS(6421), - [anon_sym_BSLASHSmartcite] = ACTIONS(6421), - [anon_sym_BSLASHsupercite] = ACTIONS(6421), - [anon_sym_BSLASHautocite] = ACTIONS(6421), - [anon_sym_BSLASHAutocite] = ACTIONS(6421), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHvolcite] = ACTIONS(6421), - [anon_sym_BSLASHVolcite] = ACTIONS(6421), - [anon_sym_BSLASHpvolcite] = ACTIONS(6421), - [anon_sym_BSLASHPvolcite] = ACTIONS(6421), - [anon_sym_BSLASHfvolcite] = ACTIONS(6421), - [anon_sym_BSLASHftvolcite] = ACTIONS(6421), - [anon_sym_BSLASHsvolcite] = ACTIONS(6421), - [anon_sym_BSLASHSvolcite] = ACTIONS(6421), - [anon_sym_BSLASHtvolcite] = ACTIONS(6421), - [anon_sym_BSLASHTvolcite] = ACTIONS(6421), - [anon_sym_BSLASHavolcite] = ACTIONS(6421), - [anon_sym_BSLASHAvolcite] = ACTIONS(6421), - [anon_sym_BSLASHnotecite] = ACTIONS(6421), - [anon_sym_BSLASHNotecite] = ACTIONS(6421), - [anon_sym_BSLASHpnotecite] = ACTIONS(6421), - [anon_sym_BSLASHPnotecite] = ACTIONS(6421), - [anon_sym_BSLASHfnotecite] = ACTIONS(6421), - [anon_sym_BSLASHlabel] = ACTIONS(6421), - [anon_sym_BSLASHref] = ACTIONS(6421), - [anon_sym_BSLASHeqref] = ACTIONS(6421), - [anon_sym_BSLASHvref] = ACTIONS(6421), - [anon_sym_BSLASHVref] = ACTIONS(6421), - [anon_sym_BSLASHautoref] = ACTIONS(6421), - [anon_sym_BSLASHpageref] = ACTIONS(6421), - [anon_sym_BSLASHcref] = ACTIONS(6421), - [anon_sym_BSLASHCref] = ACTIONS(6421), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnameCref] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHlabelcref] = ACTIONS(6421), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCrefrange] = ACTIONS(6421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnewlabel] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6421), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6421), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6423), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHdef] = ACTIONS(6421), - [anon_sym_BSLASHlet] = ACTIONS(6421), - [anon_sym_BSLASHleft] = ACTIONS(6421), - [anon_sym_BSLASHbig] = ACTIONS(6421), - [anon_sym_BSLASHBig] = ACTIONS(6421), - [anon_sym_BSLASHbigg] = ACTIONS(6421), - [anon_sym_BSLASHBigg] = ACTIONS(6421), - [anon_sym_BSLASHbigl] = ACTIONS(6421), - [anon_sym_BSLASHBigl] = ACTIONS(6421), - [anon_sym_BSLASHbiggl] = ACTIONS(6421), - [anon_sym_BSLASHBiggl] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6421), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6421), - [anon_sym_BSLASHgls] = ACTIONS(6421), - [anon_sym_BSLASHGls] = ACTIONS(6421), - [anon_sym_BSLASHGLS] = ACTIONS(6421), - [anon_sym_BSLASHglspl] = ACTIONS(6421), - [anon_sym_BSLASHGlspl] = ACTIONS(6421), - [anon_sym_BSLASHGLSpl] = ACTIONS(6421), - [anon_sym_BSLASHglsdisp] = ACTIONS(6421), - [anon_sym_BSLASHglslink] = ACTIONS(6421), - [anon_sym_BSLASHglstext] = ACTIONS(6421), - [anon_sym_BSLASHGlstext] = ACTIONS(6421), - [anon_sym_BSLASHGLStext] = ACTIONS(6421), - [anon_sym_BSLASHglsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6421), - [anon_sym_BSLASHglsplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSplural] = ACTIONS(6421), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHglsname] = ACTIONS(6421), - [anon_sym_BSLASHGlsname] = ACTIONS(6421), - [anon_sym_BSLASHGLSname] = ACTIONS(6421), - [anon_sym_BSLASHglssymbol] = ACTIONS(6421), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6421), - [anon_sym_BSLASHglsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6421), - [anon_sym_BSLASHglsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6421), - [anon_sym_BSLASHglsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6421), - [anon_sym_BSLASHglsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6421), - [anon_sym_BSLASHglsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6421), - [anon_sym_BSLASHnewacronym] = ACTIONS(6421), - [anon_sym_BSLASHacrshort] = ACTIONS(6421), - [anon_sym_BSLASHAcrshort] = ACTIONS(6421), - [anon_sym_BSLASHACRshort] = ACTIONS(6421), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6421), - [anon_sym_BSLASHacrlong] = ACTIONS(6421), - [anon_sym_BSLASHAcrlong] = ACTIONS(6421), - [anon_sym_BSLASHACRlong] = ACTIONS(6421), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6421), - [anon_sym_BSLASHacrfull] = ACTIONS(6421), - [anon_sym_BSLASHAcrfull] = ACTIONS(6421), - [anon_sym_BSLASHACRfull] = ACTIONS(6421), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6421), - [anon_sym_BSLASHacs] = ACTIONS(6421), - [anon_sym_BSLASHAcs] = ACTIONS(6421), - [anon_sym_BSLASHacsp] = ACTIONS(6421), - [anon_sym_BSLASHAcsp] = ACTIONS(6421), - [anon_sym_BSLASHacl] = ACTIONS(6421), - [anon_sym_BSLASHAcl] = ACTIONS(6421), - [anon_sym_BSLASHaclp] = ACTIONS(6421), - [anon_sym_BSLASHAclp] = ACTIONS(6421), - [anon_sym_BSLASHacf] = ACTIONS(6421), - [anon_sym_BSLASHAcf] = ACTIONS(6421), - [anon_sym_BSLASHacfp] = ACTIONS(6421), - [anon_sym_BSLASHAcfp] = ACTIONS(6421), - [anon_sym_BSLASHac] = ACTIONS(6421), - [anon_sym_BSLASHAc] = ACTIONS(6421), - [anon_sym_BSLASHacp] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6421), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6421), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6421), - [anon_sym_BSLASHcolor] = ACTIONS(6421), - [anon_sym_BSLASHcolorbox] = ACTIONS(6421), - [anon_sym_BSLASHtextcolor] = ACTIONS(6421), - [anon_sym_BSLASHpagecolor] = ACTIONS(6421), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6421), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6421), - [anon_sym_BSLASHtext] = ACTIONS(6421), - [anon_sym_BSLASHintertext] = ACTIONS(6421), - [anon_sym_shortintertext] = ACTIONS(6421), - }, - [1016] = { - [ts_builtin_sym_end] = ACTIONS(6427), - [sym_command_name] = ACTIONS(6425), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6425), - [anon_sym_LBRACK] = ACTIONS(6427), - [anon_sym_RBRACK] = ACTIONS(6427), - [anon_sym_COMMA] = ACTIONS(6427), - [anon_sym_EQ] = ACTIONS(6427), - [anon_sym_LPAREN] = ACTIONS(6427), - [anon_sym_RPAREN] = ACTIONS(6427), - [anon_sym_BSLASHpart] = ACTIONS(6425), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddpart] = ACTIONS(6425), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6427), - [anon_sym_BSLASHchapter] = ACTIONS(6425), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddchap] = ACTIONS(6425), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsection] = ACTIONS(6425), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddsec] = ACTIONS(6425), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubsection] = ACTIONS(6425), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6425), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHparagraph] = ACTIONS(6425), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6425), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6427), - [anon_sym_BSLASHitem] = ACTIONS(6425), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6427), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(6427), - [sym_word] = ACTIONS(6425), - [sym_placeholder] = ACTIONS(6427), - [anon_sym_PLUS] = ACTIONS(6427), - [anon_sym_DASH] = ACTIONS(6427), - [anon_sym_STAR] = ACTIONS(6427), - [anon_sym_SLASH] = ACTIONS(6427), - [anon_sym_LT] = ACTIONS(6425), - [anon_sym_GT] = ACTIONS(6425), - [anon_sym_BANG] = ACTIONS(6425), - [anon_sym_PIPE] = ACTIONS(6425), - [anon_sym_COLON] = ACTIONS(6425), - [anon_sym_SQUOTE] = ACTIONS(6425), - [anon_sym__] = ACTIONS(6427), - [anon_sym_CARET] = ACTIONS(6427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6427), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6427), - [anon_sym_DOLLAR] = ACTIONS(6425), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6427), - [anon_sym_BSLASHbegin] = ACTIONS(6425), - [anon_sym_BSLASHtitle] = ACTIONS(6425), - [anon_sym_BSLASHauthor] = ACTIONS(6425), - [anon_sym_BSLASHusepackage] = ACTIONS(6425), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6425), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6425), - [anon_sym_BSLASHinclude] = ACTIONS(6425), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6425), - [anon_sym_BSLASHinput] = ACTIONS(6425), - [anon_sym_BSLASHsubfile] = ACTIONS(6425), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6425), - [anon_sym_BSLASHbibliography] = ACTIONS(6425), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6425), - [anon_sym_BSLASHincludesvg] = ACTIONS(6425), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6425), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6425), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6425), - [anon_sym_BSLASHimport] = ACTIONS(6425), - [anon_sym_BSLASHsubimport] = ACTIONS(6425), - [anon_sym_BSLASHinputfrom] = ACTIONS(6425), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6425), - [anon_sym_BSLASHincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHcaption] = ACTIONS(6425), - [anon_sym_BSLASHcite] = ACTIONS(6425), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCite] = ACTIONS(6425), - [anon_sym_BSLASHnocite] = ACTIONS(6425), - [anon_sym_BSLASHcitet] = ACTIONS(6425), - [anon_sym_BSLASHcitep] = ACTIONS(6425), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteauthor] = ACTIONS(6425), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6425), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitetitle] = ACTIONS(6425), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteyear] = ACTIONS(6425), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitedate] = ACTIONS(6425), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteurl] = ACTIONS(6425), - [anon_sym_BSLASHfullcite] = ACTIONS(6425), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6425), - [anon_sym_BSLASHcitealt] = ACTIONS(6425), - [anon_sym_BSLASHcitealp] = ACTIONS(6425), - [anon_sym_BSLASHcitetext] = ACTIONS(6425), - [anon_sym_BSLASHparencite] = ACTIONS(6425), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHParencite] = ACTIONS(6425), - [anon_sym_BSLASHfootcite] = ACTIONS(6425), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6425), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6425), - [anon_sym_BSLASHtextcite] = ACTIONS(6425), - [anon_sym_BSLASHTextcite] = ACTIONS(6425), - [anon_sym_BSLASHsmartcite] = ACTIONS(6425), - [anon_sym_BSLASHSmartcite] = ACTIONS(6425), - [anon_sym_BSLASHsupercite] = ACTIONS(6425), - [anon_sym_BSLASHautocite] = ACTIONS(6425), - [anon_sym_BSLASHAutocite] = ACTIONS(6425), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHvolcite] = ACTIONS(6425), - [anon_sym_BSLASHVolcite] = ACTIONS(6425), - [anon_sym_BSLASHpvolcite] = ACTIONS(6425), - [anon_sym_BSLASHPvolcite] = ACTIONS(6425), - [anon_sym_BSLASHfvolcite] = ACTIONS(6425), - [anon_sym_BSLASHftvolcite] = ACTIONS(6425), - [anon_sym_BSLASHsvolcite] = ACTIONS(6425), - [anon_sym_BSLASHSvolcite] = ACTIONS(6425), - [anon_sym_BSLASHtvolcite] = ACTIONS(6425), - [anon_sym_BSLASHTvolcite] = ACTIONS(6425), - [anon_sym_BSLASHavolcite] = ACTIONS(6425), - [anon_sym_BSLASHAvolcite] = ACTIONS(6425), - [anon_sym_BSLASHnotecite] = ACTIONS(6425), - [anon_sym_BSLASHNotecite] = ACTIONS(6425), - [anon_sym_BSLASHpnotecite] = ACTIONS(6425), - [anon_sym_BSLASHPnotecite] = ACTIONS(6425), - [anon_sym_BSLASHfnotecite] = ACTIONS(6425), - [anon_sym_BSLASHlabel] = ACTIONS(6425), - [anon_sym_BSLASHref] = ACTIONS(6425), - [anon_sym_BSLASHeqref] = ACTIONS(6425), - [anon_sym_BSLASHvref] = ACTIONS(6425), - [anon_sym_BSLASHVref] = ACTIONS(6425), - [anon_sym_BSLASHautoref] = ACTIONS(6425), - [anon_sym_BSLASHpageref] = ACTIONS(6425), - [anon_sym_BSLASHcref] = ACTIONS(6425), - [anon_sym_BSLASHCref] = ACTIONS(6425), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnameCref] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHlabelcref] = ACTIONS(6425), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCrefrange] = ACTIONS(6425), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnewlabel] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6425), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6425), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6427), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHdef] = ACTIONS(6425), - [anon_sym_BSLASHlet] = ACTIONS(6425), - [anon_sym_BSLASHleft] = ACTIONS(6425), - [anon_sym_BSLASHbig] = ACTIONS(6425), - [anon_sym_BSLASHBig] = ACTIONS(6425), - [anon_sym_BSLASHbigg] = ACTIONS(6425), - [anon_sym_BSLASHBigg] = ACTIONS(6425), - [anon_sym_BSLASHbigl] = ACTIONS(6425), - [anon_sym_BSLASHBigl] = ACTIONS(6425), - [anon_sym_BSLASHbiggl] = ACTIONS(6425), - [anon_sym_BSLASHBiggl] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6425), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6425), - [anon_sym_BSLASHgls] = ACTIONS(6425), - [anon_sym_BSLASHGls] = ACTIONS(6425), - [anon_sym_BSLASHGLS] = ACTIONS(6425), - [anon_sym_BSLASHglspl] = ACTIONS(6425), - [anon_sym_BSLASHGlspl] = ACTIONS(6425), - [anon_sym_BSLASHGLSpl] = ACTIONS(6425), - [anon_sym_BSLASHglsdisp] = ACTIONS(6425), - [anon_sym_BSLASHglslink] = ACTIONS(6425), - [anon_sym_BSLASHglstext] = ACTIONS(6425), - [anon_sym_BSLASHGlstext] = ACTIONS(6425), - [anon_sym_BSLASHGLStext] = ACTIONS(6425), - [anon_sym_BSLASHglsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6425), - [anon_sym_BSLASHglsplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSplural] = ACTIONS(6425), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHglsname] = ACTIONS(6425), - [anon_sym_BSLASHGlsname] = ACTIONS(6425), - [anon_sym_BSLASHGLSname] = ACTIONS(6425), - [anon_sym_BSLASHglssymbol] = ACTIONS(6425), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6425), - [anon_sym_BSLASHglsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6425), - [anon_sym_BSLASHglsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6425), - [anon_sym_BSLASHglsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6425), - [anon_sym_BSLASHglsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6425), - [anon_sym_BSLASHglsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6425), - [anon_sym_BSLASHnewacronym] = ACTIONS(6425), - [anon_sym_BSLASHacrshort] = ACTIONS(6425), - [anon_sym_BSLASHAcrshort] = ACTIONS(6425), - [anon_sym_BSLASHACRshort] = ACTIONS(6425), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6425), - [anon_sym_BSLASHacrlong] = ACTIONS(6425), - [anon_sym_BSLASHAcrlong] = ACTIONS(6425), - [anon_sym_BSLASHACRlong] = ACTIONS(6425), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6425), - [anon_sym_BSLASHacrfull] = ACTIONS(6425), - [anon_sym_BSLASHAcrfull] = ACTIONS(6425), - [anon_sym_BSLASHACRfull] = ACTIONS(6425), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6425), - [anon_sym_BSLASHacs] = ACTIONS(6425), - [anon_sym_BSLASHAcs] = ACTIONS(6425), - [anon_sym_BSLASHacsp] = ACTIONS(6425), - [anon_sym_BSLASHAcsp] = ACTIONS(6425), - [anon_sym_BSLASHacl] = ACTIONS(6425), - [anon_sym_BSLASHAcl] = ACTIONS(6425), - [anon_sym_BSLASHaclp] = ACTIONS(6425), - [anon_sym_BSLASHAclp] = ACTIONS(6425), - [anon_sym_BSLASHacf] = ACTIONS(6425), - [anon_sym_BSLASHAcf] = ACTIONS(6425), - [anon_sym_BSLASHacfp] = ACTIONS(6425), - [anon_sym_BSLASHAcfp] = ACTIONS(6425), - [anon_sym_BSLASHac] = ACTIONS(6425), - [anon_sym_BSLASHAc] = ACTIONS(6425), - [anon_sym_BSLASHacp] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6425), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6425), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6425), - [anon_sym_BSLASHcolor] = ACTIONS(6425), - [anon_sym_BSLASHcolorbox] = ACTIONS(6425), - [anon_sym_BSLASHtextcolor] = ACTIONS(6425), - [anon_sym_BSLASHpagecolor] = ACTIONS(6425), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6425), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6425), - [anon_sym_BSLASHtext] = ACTIONS(6425), - [anon_sym_BSLASHintertext] = ACTIONS(6425), - [anon_sym_shortintertext] = ACTIONS(6425), - }, - [1017] = { - [sym_brack_group_text] = STATE(1326), - [sym_command_name] = ACTIONS(6017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6017), - [anon_sym_LBRACK] = ACTIONS(6711), - [anon_sym_RBRACK] = ACTIONS(6019), - [anon_sym_COMMA] = ACTIONS(6019), - [anon_sym_EQ] = ACTIONS(6019), - [anon_sym_LPAREN] = ACTIONS(6019), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_BSLASHpart] = ACTIONS(6017), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddpart] = ACTIONS(6017), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6019), - [anon_sym_BSLASHchapter] = ACTIONS(6017), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddchap] = ACTIONS(6017), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsection] = ACTIONS(6017), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHaddsec] = ACTIONS(6017), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubsection] = ACTIONS(6017), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6017), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6019), - [anon_sym_BSLASHparagraph] = ACTIONS(6017), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6017), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6019), - [anon_sym_BSLASHitem] = ACTIONS(6017), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6019), - [anon_sym_LBRACE] = ACTIONS(6019), - [sym_word] = ACTIONS(6017), - [sym_placeholder] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(6017), - [anon_sym_PIPE] = ACTIONS(6017), - [anon_sym_COLON] = ACTIONS(6017), - [anon_sym_SQUOTE] = ACTIONS(6017), - [anon_sym__] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6019), - [anon_sym_DOLLAR] = ACTIONS(6017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), - [anon_sym_BSLASHbegin] = ACTIONS(6017), - [anon_sym_BSLASHtitle] = ACTIONS(6017), - [anon_sym_BSLASHauthor] = ACTIONS(6017), - [anon_sym_BSLASHusepackage] = ACTIONS(6017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), - [anon_sym_BSLASHinclude] = ACTIONS(6017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), - [anon_sym_BSLASHinput] = ACTIONS(6017), - [anon_sym_BSLASHsubfile] = ACTIONS(6017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), - [anon_sym_BSLASHbibliography] = ACTIONS(6017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), - [anon_sym_BSLASHincludesvg] = ACTIONS(6017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), - [anon_sym_BSLASHimport] = ACTIONS(6017), - [anon_sym_BSLASHsubimport] = ACTIONS(6017), - [anon_sym_BSLASHinputfrom] = ACTIONS(6017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), - [anon_sym_BSLASHincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHcaption] = ACTIONS(6017), - [anon_sym_BSLASHcite] = ACTIONS(6017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCite] = ACTIONS(6017), - [anon_sym_BSLASHnocite] = ACTIONS(6017), - [anon_sym_BSLASHcitet] = ACTIONS(6017), - [anon_sym_BSLASHcitep] = ACTIONS(6017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteauthor] = ACTIONS(6017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitetitle] = ACTIONS(6017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteyear] = ACTIONS(6017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitedate] = ACTIONS(6017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteurl] = ACTIONS(6017), - [anon_sym_BSLASHfullcite] = ACTIONS(6017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), - [anon_sym_BSLASHcitealt] = ACTIONS(6017), - [anon_sym_BSLASHcitealp] = ACTIONS(6017), - [anon_sym_BSLASHcitetext] = ACTIONS(6017), - [anon_sym_BSLASHparencite] = ACTIONS(6017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHParencite] = ACTIONS(6017), - [anon_sym_BSLASHfootcite] = ACTIONS(6017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), - [anon_sym_BSLASHtextcite] = ACTIONS(6017), - [anon_sym_BSLASHTextcite] = ACTIONS(6017), - [anon_sym_BSLASHsmartcite] = ACTIONS(6017), - [anon_sym_BSLASHSmartcite] = ACTIONS(6017), - [anon_sym_BSLASHsupercite] = ACTIONS(6017), - [anon_sym_BSLASHautocite] = ACTIONS(6017), - [anon_sym_BSLASHAutocite] = ACTIONS(6017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHvolcite] = ACTIONS(6017), - [anon_sym_BSLASHVolcite] = ACTIONS(6017), - [anon_sym_BSLASHpvolcite] = ACTIONS(6017), - [anon_sym_BSLASHPvolcite] = ACTIONS(6017), - [anon_sym_BSLASHfvolcite] = ACTIONS(6017), - [anon_sym_BSLASHftvolcite] = ACTIONS(6017), - [anon_sym_BSLASHsvolcite] = ACTIONS(6017), - [anon_sym_BSLASHSvolcite] = ACTIONS(6017), - [anon_sym_BSLASHtvolcite] = ACTIONS(6017), - [anon_sym_BSLASHTvolcite] = ACTIONS(6017), - [anon_sym_BSLASHavolcite] = ACTIONS(6017), - [anon_sym_BSLASHAvolcite] = ACTIONS(6017), - [anon_sym_BSLASHnotecite] = ACTIONS(6017), - [anon_sym_BSLASHNotecite] = ACTIONS(6017), - [anon_sym_BSLASHpnotecite] = ACTIONS(6017), - [anon_sym_BSLASHPnotecite] = ACTIONS(6017), - [anon_sym_BSLASHfnotecite] = ACTIONS(6017), - [anon_sym_BSLASHlabel] = ACTIONS(6017), - [anon_sym_BSLASHref] = ACTIONS(6017), - [anon_sym_BSLASHeqref] = ACTIONS(6017), - [anon_sym_BSLASHvref] = ACTIONS(6017), - [anon_sym_BSLASHVref] = ACTIONS(6017), - [anon_sym_BSLASHautoref] = ACTIONS(6017), - [anon_sym_BSLASHpageref] = ACTIONS(6017), - [anon_sym_BSLASHcref] = ACTIONS(6017), - [anon_sym_BSLASHCref] = ACTIONS(6017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnameCref] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHlabelcref] = ACTIONS(6017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCrefrange] = ACTIONS(6017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnewlabel] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHdef] = ACTIONS(6017), - [anon_sym_BSLASHlet] = ACTIONS(6017), - [anon_sym_BSLASHleft] = ACTIONS(6017), - [anon_sym_BSLASHbig] = ACTIONS(6017), - [anon_sym_BSLASHBig] = ACTIONS(6017), - [anon_sym_BSLASHbigg] = ACTIONS(6017), - [anon_sym_BSLASHBigg] = ACTIONS(6017), - [anon_sym_BSLASHbigl] = ACTIONS(6017), - [anon_sym_BSLASHBigl] = ACTIONS(6017), - [anon_sym_BSLASHbiggl] = ACTIONS(6017), - [anon_sym_BSLASHBiggl] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), - [anon_sym_BSLASHgls] = ACTIONS(6017), - [anon_sym_BSLASHGls] = ACTIONS(6017), - [anon_sym_BSLASHGLS] = ACTIONS(6017), - [anon_sym_BSLASHglspl] = ACTIONS(6017), - [anon_sym_BSLASHGlspl] = ACTIONS(6017), - [anon_sym_BSLASHGLSpl] = ACTIONS(6017), - [anon_sym_BSLASHglsdisp] = ACTIONS(6017), - [anon_sym_BSLASHglslink] = ACTIONS(6017), - [anon_sym_BSLASHglstext] = ACTIONS(6017), - [anon_sym_BSLASHGlstext] = ACTIONS(6017), - [anon_sym_BSLASHGLStext] = ACTIONS(6017), - [anon_sym_BSLASHglsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), - [anon_sym_BSLASHglsplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSplural] = ACTIONS(6017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHglsname] = ACTIONS(6017), - [anon_sym_BSLASHGlsname] = ACTIONS(6017), - [anon_sym_BSLASHGLSname] = ACTIONS(6017), - [anon_sym_BSLASHglssymbol] = ACTIONS(6017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), - [anon_sym_BSLASHglsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), - [anon_sym_BSLASHglsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), - [anon_sym_BSLASHglsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), - [anon_sym_BSLASHglsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), - [anon_sym_BSLASHglsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), - [anon_sym_BSLASHnewacronym] = ACTIONS(6017), - [anon_sym_BSLASHacrshort] = ACTIONS(6017), - [anon_sym_BSLASHAcrshort] = ACTIONS(6017), - [anon_sym_BSLASHACRshort] = ACTIONS(6017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), - [anon_sym_BSLASHacrlong] = ACTIONS(6017), - [anon_sym_BSLASHAcrlong] = ACTIONS(6017), - [anon_sym_BSLASHACRlong] = ACTIONS(6017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), - [anon_sym_BSLASHacrfull] = ACTIONS(6017), - [anon_sym_BSLASHAcrfull] = ACTIONS(6017), - [anon_sym_BSLASHACRfull] = ACTIONS(6017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), - [anon_sym_BSLASHacs] = ACTIONS(6017), - [anon_sym_BSLASHAcs] = ACTIONS(6017), - [anon_sym_BSLASHacsp] = ACTIONS(6017), - [anon_sym_BSLASHAcsp] = ACTIONS(6017), - [anon_sym_BSLASHacl] = ACTIONS(6017), - [anon_sym_BSLASHAcl] = ACTIONS(6017), - [anon_sym_BSLASHaclp] = ACTIONS(6017), - [anon_sym_BSLASHAclp] = ACTIONS(6017), - [anon_sym_BSLASHacf] = ACTIONS(6017), - [anon_sym_BSLASHAcf] = ACTIONS(6017), - [anon_sym_BSLASHacfp] = ACTIONS(6017), - [anon_sym_BSLASHAcfp] = ACTIONS(6017), - [anon_sym_BSLASHac] = ACTIONS(6017), - [anon_sym_BSLASHAc] = ACTIONS(6017), - [anon_sym_BSLASHacp] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), - [anon_sym_BSLASHcolor] = ACTIONS(6017), - [anon_sym_BSLASHcolorbox] = ACTIONS(6017), - [anon_sym_BSLASHtextcolor] = ACTIONS(6017), - [anon_sym_BSLASHpagecolor] = ACTIONS(6017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), - [anon_sym_BSLASHtext] = ACTIONS(6017), - [anon_sym_BSLASHintertext] = ACTIONS(6017), - [anon_sym_shortintertext] = ACTIONS(6017), - }, - [1018] = { - [ts_builtin_sym_end] = ACTIONS(6431), - [sym_command_name] = ACTIONS(6429), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6429), - [anon_sym_LBRACK] = ACTIONS(6431), - [anon_sym_RBRACK] = ACTIONS(6431), - [anon_sym_COMMA] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(6431), - [anon_sym_LPAREN] = ACTIONS(6431), - [anon_sym_RPAREN] = ACTIONS(6431), - [anon_sym_BSLASHpart] = ACTIONS(6429), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddpart] = ACTIONS(6429), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6431), - [anon_sym_BSLASHchapter] = ACTIONS(6429), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddchap] = ACTIONS(6429), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsection] = ACTIONS(6429), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddsec] = ACTIONS(6429), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubsection] = ACTIONS(6429), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6429), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHparagraph] = ACTIONS(6429), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6429), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6431), - [anon_sym_BSLASHitem] = ACTIONS(6429), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6431), - [anon_sym_LBRACE] = ACTIONS(6431), - [anon_sym_RBRACE] = ACTIONS(6431), - [sym_word] = ACTIONS(6429), - [sym_placeholder] = ACTIONS(6431), - [anon_sym_PLUS] = ACTIONS(6431), - [anon_sym_DASH] = ACTIONS(6431), - [anon_sym_STAR] = ACTIONS(6431), - [anon_sym_SLASH] = ACTIONS(6431), - [anon_sym_LT] = ACTIONS(6429), - [anon_sym_GT] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(6429), - [anon_sym_PIPE] = ACTIONS(6429), - [anon_sym_COLON] = ACTIONS(6429), - [anon_sym_SQUOTE] = ACTIONS(6429), - [anon_sym__] = ACTIONS(6431), - [anon_sym_CARET] = ACTIONS(6431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6431), - [anon_sym_DOLLAR] = ACTIONS(6429), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6431), - [anon_sym_BSLASHbegin] = ACTIONS(6429), - [anon_sym_BSLASHtitle] = ACTIONS(6429), - [anon_sym_BSLASHauthor] = ACTIONS(6429), - [anon_sym_BSLASHusepackage] = ACTIONS(6429), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6429), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6429), - [anon_sym_BSLASHinclude] = ACTIONS(6429), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6429), - [anon_sym_BSLASHinput] = ACTIONS(6429), - [anon_sym_BSLASHsubfile] = ACTIONS(6429), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6429), - [anon_sym_BSLASHbibliography] = ACTIONS(6429), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6429), - [anon_sym_BSLASHincludesvg] = ACTIONS(6429), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6429), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6429), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6429), - [anon_sym_BSLASHimport] = ACTIONS(6429), - [anon_sym_BSLASHsubimport] = ACTIONS(6429), - [anon_sym_BSLASHinputfrom] = ACTIONS(6429), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6429), - [anon_sym_BSLASHincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHcaption] = ACTIONS(6429), - [anon_sym_BSLASHcite] = ACTIONS(6429), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCite] = ACTIONS(6429), - [anon_sym_BSLASHnocite] = ACTIONS(6429), - [anon_sym_BSLASHcitet] = ACTIONS(6429), - [anon_sym_BSLASHcitep] = ACTIONS(6429), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteauthor] = ACTIONS(6429), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6429), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitetitle] = ACTIONS(6429), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteyear] = ACTIONS(6429), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitedate] = ACTIONS(6429), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteurl] = ACTIONS(6429), - [anon_sym_BSLASHfullcite] = ACTIONS(6429), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6429), - [anon_sym_BSLASHcitealt] = ACTIONS(6429), - [anon_sym_BSLASHcitealp] = ACTIONS(6429), - [anon_sym_BSLASHcitetext] = ACTIONS(6429), - [anon_sym_BSLASHparencite] = ACTIONS(6429), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHParencite] = ACTIONS(6429), - [anon_sym_BSLASHfootcite] = ACTIONS(6429), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6429), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6429), - [anon_sym_BSLASHtextcite] = ACTIONS(6429), - [anon_sym_BSLASHTextcite] = ACTIONS(6429), - [anon_sym_BSLASHsmartcite] = ACTIONS(6429), - [anon_sym_BSLASHSmartcite] = ACTIONS(6429), - [anon_sym_BSLASHsupercite] = ACTIONS(6429), - [anon_sym_BSLASHautocite] = ACTIONS(6429), - [anon_sym_BSLASHAutocite] = ACTIONS(6429), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHvolcite] = ACTIONS(6429), - [anon_sym_BSLASHVolcite] = ACTIONS(6429), - [anon_sym_BSLASHpvolcite] = ACTIONS(6429), - [anon_sym_BSLASHPvolcite] = ACTIONS(6429), - [anon_sym_BSLASHfvolcite] = ACTIONS(6429), - [anon_sym_BSLASHftvolcite] = ACTIONS(6429), - [anon_sym_BSLASHsvolcite] = ACTIONS(6429), - [anon_sym_BSLASHSvolcite] = ACTIONS(6429), - [anon_sym_BSLASHtvolcite] = ACTIONS(6429), - [anon_sym_BSLASHTvolcite] = ACTIONS(6429), - [anon_sym_BSLASHavolcite] = ACTIONS(6429), - [anon_sym_BSLASHAvolcite] = ACTIONS(6429), - [anon_sym_BSLASHnotecite] = ACTIONS(6429), - [anon_sym_BSLASHNotecite] = ACTIONS(6429), - [anon_sym_BSLASHpnotecite] = ACTIONS(6429), - [anon_sym_BSLASHPnotecite] = ACTIONS(6429), - [anon_sym_BSLASHfnotecite] = ACTIONS(6429), - [anon_sym_BSLASHlabel] = ACTIONS(6429), - [anon_sym_BSLASHref] = ACTIONS(6429), - [anon_sym_BSLASHeqref] = ACTIONS(6429), - [anon_sym_BSLASHvref] = ACTIONS(6429), - [anon_sym_BSLASHVref] = ACTIONS(6429), - [anon_sym_BSLASHautoref] = ACTIONS(6429), - [anon_sym_BSLASHpageref] = ACTIONS(6429), - [anon_sym_BSLASHcref] = ACTIONS(6429), - [anon_sym_BSLASHCref] = ACTIONS(6429), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnameCref] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHlabelcref] = ACTIONS(6429), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCrefrange] = ACTIONS(6429), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnewlabel] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6429), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6429), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6431), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHdef] = ACTIONS(6429), - [anon_sym_BSLASHlet] = ACTIONS(6429), - [anon_sym_BSLASHleft] = ACTIONS(6429), - [anon_sym_BSLASHbig] = ACTIONS(6429), - [anon_sym_BSLASHBig] = ACTIONS(6429), - [anon_sym_BSLASHbigg] = ACTIONS(6429), - [anon_sym_BSLASHBigg] = ACTIONS(6429), - [anon_sym_BSLASHbigl] = ACTIONS(6429), - [anon_sym_BSLASHBigl] = ACTIONS(6429), - [anon_sym_BSLASHbiggl] = ACTIONS(6429), - [anon_sym_BSLASHBiggl] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6429), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6429), - [anon_sym_BSLASHgls] = ACTIONS(6429), - [anon_sym_BSLASHGls] = ACTIONS(6429), - [anon_sym_BSLASHGLS] = ACTIONS(6429), - [anon_sym_BSLASHglspl] = ACTIONS(6429), - [anon_sym_BSLASHGlspl] = ACTIONS(6429), - [anon_sym_BSLASHGLSpl] = ACTIONS(6429), - [anon_sym_BSLASHglsdisp] = ACTIONS(6429), - [anon_sym_BSLASHglslink] = ACTIONS(6429), - [anon_sym_BSLASHglstext] = ACTIONS(6429), - [anon_sym_BSLASHGlstext] = ACTIONS(6429), - [anon_sym_BSLASHGLStext] = ACTIONS(6429), - [anon_sym_BSLASHglsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6429), - [anon_sym_BSLASHglsplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSplural] = ACTIONS(6429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHglsname] = ACTIONS(6429), - [anon_sym_BSLASHGlsname] = ACTIONS(6429), - [anon_sym_BSLASHGLSname] = ACTIONS(6429), - [anon_sym_BSLASHglssymbol] = ACTIONS(6429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6429), - [anon_sym_BSLASHglsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6429), - [anon_sym_BSLASHglsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6429), - [anon_sym_BSLASHglsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6429), - [anon_sym_BSLASHglsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6429), - [anon_sym_BSLASHglsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6429), - [anon_sym_BSLASHnewacronym] = ACTIONS(6429), - [anon_sym_BSLASHacrshort] = ACTIONS(6429), - [anon_sym_BSLASHAcrshort] = ACTIONS(6429), - [anon_sym_BSLASHACRshort] = ACTIONS(6429), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6429), - [anon_sym_BSLASHacrlong] = ACTIONS(6429), - [anon_sym_BSLASHAcrlong] = ACTIONS(6429), - [anon_sym_BSLASHACRlong] = ACTIONS(6429), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6429), - [anon_sym_BSLASHacrfull] = ACTIONS(6429), - [anon_sym_BSLASHAcrfull] = ACTIONS(6429), - [anon_sym_BSLASHACRfull] = ACTIONS(6429), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6429), - [anon_sym_BSLASHacs] = ACTIONS(6429), - [anon_sym_BSLASHAcs] = ACTIONS(6429), - [anon_sym_BSLASHacsp] = ACTIONS(6429), - [anon_sym_BSLASHAcsp] = ACTIONS(6429), - [anon_sym_BSLASHacl] = ACTIONS(6429), - [anon_sym_BSLASHAcl] = ACTIONS(6429), - [anon_sym_BSLASHaclp] = ACTIONS(6429), - [anon_sym_BSLASHAclp] = ACTIONS(6429), - [anon_sym_BSLASHacf] = ACTIONS(6429), - [anon_sym_BSLASHAcf] = ACTIONS(6429), - [anon_sym_BSLASHacfp] = ACTIONS(6429), - [anon_sym_BSLASHAcfp] = ACTIONS(6429), - [anon_sym_BSLASHac] = ACTIONS(6429), - [anon_sym_BSLASHAc] = ACTIONS(6429), - [anon_sym_BSLASHacp] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6429), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6429), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6429), - [anon_sym_BSLASHcolor] = ACTIONS(6429), - [anon_sym_BSLASHcolorbox] = ACTIONS(6429), - [anon_sym_BSLASHtextcolor] = ACTIONS(6429), - [anon_sym_BSLASHpagecolor] = ACTIONS(6429), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6429), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6429), - [anon_sym_BSLASHtext] = ACTIONS(6429), - [anon_sym_BSLASHintertext] = ACTIONS(6429), - [anon_sym_shortintertext] = ACTIONS(6429), - }, - [1019] = { - [ts_builtin_sym_end] = ACTIONS(6135), - [sym_command_name] = ACTIONS(6133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6133), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_EQ] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_BSLASHpart] = ACTIONS(6133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddpart] = ACTIONS(6133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6135), - [anon_sym_BSLASHchapter] = ACTIONS(6133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddchap] = ACTIONS(6133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsection] = ACTIONS(6133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddsec] = ACTIONS(6133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubsection] = ACTIONS(6133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHparagraph] = ACTIONS(6133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6135), - [anon_sym_BSLASHitem] = ACTIONS(6133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6135), - [anon_sym_LBRACE] = ACTIONS(6135), - [anon_sym_RBRACE] = ACTIONS(6135), - [sym_word] = ACTIONS(6133), - [sym_placeholder] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6135), - [anon_sym_DASH] = ACTIONS(6135), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6133), - [anon_sym_GT] = ACTIONS(6133), - [anon_sym_BANG] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6133), - [anon_sym_COLON] = ACTIONS(6133), - [anon_sym_SQUOTE] = ACTIONS(6133), - [anon_sym__] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6135), - [anon_sym_DOLLAR] = ACTIONS(6133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6135), - [anon_sym_BSLASHbegin] = ACTIONS(6133), - [anon_sym_BSLASHtitle] = ACTIONS(6133), - [anon_sym_BSLASHauthor] = ACTIONS(6133), - [anon_sym_BSLASHusepackage] = ACTIONS(6133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6133), - [anon_sym_BSLASHinclude] = ACTIONS(6133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6133), - [anon_sym_BSLASHinput] = ACTIONS(6133), - [anon_sym_BSLASHsubfile] = ACTIONS(6133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6133), - [anon_sym_BSLASHbibliography] = ACTIONS(6133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6133), - [anon_sym_BSLASHincludesvg] = ACTIONS(6133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6133), - [anon_sym_BSLASHimport] = ACTIONS(6133), - [anon_sym_BSLASHsubimport] = ACTIONS(6133), - [anon_sym_BSLASHinputfrom] = ACTIONS(6133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6133), - [anon_sym_BSLASHincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHcaption] = ACTIONS(6133), - [anon_sym_BSLASHcite] = ACTIONS(6133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCite] = ACTIONS(6133), - [anon_sym_BSLASHnocite] = ACTIONS(6133), - [anon_sym_BSLASHcitet] = ACTIONS(6133), - [anon_sym_BSLASHcitep] = ACTIONS(6133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteauthor] = ACTIONS(6133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitetitle] = ACTIONS(6133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteyear] = ACTIONS(6133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitedate] = ACTIONS(6133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteurl] = ACTIONS(6133), - [anon_sym_BSLASHfullcite] = ACTIONS(6133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6133), - [anon_sym_BSLASHcitealt] = ACTIONS(6133), - [anon_sym_BSLASHcitealp] = ACTIONS(6133), - [anon_sym_BSLASHcitetext] = ACTIONS(6133), - [anon_sym_BSLASHparencite] = ACTIONS(6133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHParencite] = ACTIONS(6133), - [anon_sym_BSLASHfootcite] = ACTIONS(6133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6133), - [anon_sym_BSLASHtextcite] = ACTIONS(6133), - [anon_sym_BSLASHTextcite] = ACTIONS(6133), - [anon_sym_BSLASHsmartcite] = ACTIONS(6133), - [anon_sym_BSLASHSmartcite] = ACTIONS(6133), - [anon_sym_BSLASHsupercite] = ACTIONS(6133), - [anon_sym_BSLASHautocite] = ACTIONS(6133), - [anon_sym_BSLASHAutocite] = ACTIONS(6133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHvolcite] = ACTIONS(6133), - [anon_sym_BSLASHVolcite] = ACTIONS(6133), - [anon_sym_BSLASHpvolcite] = ACTIONS(6133), - [anon_sym_BSLASHPvolcite] = ACTIONS(6133), - [anon_sym_BSLASHfvolcite] = ACTIONS(6133), - [anon_sym_BSLASHftvolcite] = ACTIONS(6133), - [anon_sym_BSLASHsvolcite] = ACTIONS(6133), - [anon_sym_BSLASHSvolcite] = ACTIONS(6133), - [anon_sym_BSLASHtvolcite] = ACTIONS(6133), - [anon_sym_BSLASHTvolcite] = ACTIONS(6133), - [anon_sym_BSLASHavolcite] = ACTIONS(6133), - [anon_sym_BSLASHAvolcite] = ACTIONS(6133), - [anon_sym_BSLASHnotecite] = ACTIONS(6133), - [anon_sym_BSLASHNotecite] = ACTIONS(6133), - [anon_sym_BSLASHpnotecite] = ACTIONS(6133), - [anon_sym_BSLASHPnotecite] = ACTIONS(6133), - [anon_sym_BSLASHfnotecite] = ACTIONS(6133), - [anon_sym_BSLASHlabel] = ACTIONS(6133), - [anon_sym_BSLASHref] = ACTIONS(6133), - [anon_sym_BSLASHeqref] = ACTIONS(6133), - [anon_sym_BSLASHvref] = ACTIONS(6133), - [anon_sym_BSLASHVref] = ACTIONS(6133), - [anon_sym_BSLASHautoref] = ACTIONS(6133), - [anon_sym_BSLASHpageref] = ACTIONS(6133), - [anon_sym_BSLASHcref] = ACTIONS(6133), - [anon_sym_BSLASHCref] = ACTIONS(6133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnameCref] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHlabelcref] = ACTIONS(6133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCrefrange] = ACTIONS(6133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnewlabel] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6135), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHdef] = ACTIONS(6133), - [anon_sym_BSLASHlet] = ACTIONS(6133), - [anon_sym_BSLASHleft] = ACTIONS(6133), - [anon_sym_BSLASHbig] = ACTIONS(6133), - [anon_sym_BSLASHBig] = ACTIONS(6133), - [anon_sym_BSLASHbigg] = ACTIONS(6133), - [anon_sym_BSLASHBigg] = ACTIONS(6133), - [anon_sym_BSLASHbigl] = ACTIONS(6133), - [anon_sym_BSLASHBigl] = ACTIONS(6133), - [anon_sym_BSLASHbiggl] = ACTIONS(6133), - [anon_sym_BSLASHBiggl] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6133), - [anon_sym_BSLASHgls] = ACTIONS(6133), - [anon_sym_BSLASHGls] = ACTIONS(6133), - [anon_sym_BSLASHGLS] = ACTIONS(6133), - [anon_sym_BSLASHglspl] = ACTIONS(6133), - [anon_sym_BSLASHGlspl] = ACTIONS(6133), - [anon_sym_BSLASHGLSpl] = ACTIONS(6133), - [anon_sym_BSLASHglsdisp] = ACTIONS(6133), - [anon_sym_BSLASHglslink] = ACTIONS(6133), - [anon_sym_BSLASHglstext] = ACTIONS(6133), - [anon_sym_BSLASHGlstext] = ACTIONS(6133), - [anon_sym_BSLASHGLStext] = ACTIONS(6133), - [anon_sym_BSLASHglsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6133), - [anon_sym_BSLASHglsplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSplural] = ACTIONS(6133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHglsname] = ACTIONS(6133), - [anon_sym_BSLASHGlsname] = ACTIONS(6133), - [anon_sym_BSLASHGLSname] = ACTIONS(6133), - [anon_sym_BSLASHglssymbol] = ACTIONS(6133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6133), - [anon_sym_BSLASHglsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6133), - [anon_sym_BSLASHglsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6133), - [anon_sym_BSLASHglsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6133), - [anon_sym_BSLASHglsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6133), - [anon_sym_BSLASHglsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6133), - [anon_sym_BSLASHnewacronym] = ACTIONS(6133), - [anon_sym_BSLASHacrshort] = ACTIONS(6133), - [anon_sym_BSLASHAcrshort] = ACTIONS(6133), - [anon_sym_BSLASHACRshort] = ACTIONS(6133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6133), - [anon_sym_BSLASHacrlong] = ACTIONS(6133), - [anon_sym_BSLASHAcrlong] = ACTIONS(6133), - [anon_sym_BSLASHACRlong] = ACTIONS(6133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6133), - [anon_sym_BSLASHacrfull] = ACTIONS(6133), - [anon_sym_BSLASHAcrfull] = ACTIONS(6133), - [anon_sym_BSLASHACRfull] = ACTIONS(6133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6133), - [anon_sym_BSLASHacs] = ACTIONS(6133), - [anon_sym_BSLASHAcs] = ACTIONS(6133), - [anon_sym_BSLASHacsp] = ACTIONS(6133), - [anon_sym_BSLASHAcsp] = ACTIONS(6133), - [anon_sym_BSLASHacl] = ACTIONS(6133), - [anon_sym_BSLASHAcl] = ACTIONS(6133), - [anon_sym_BSLASHaclp] = ACTIONS(6133), - [anon_sym_BSLASHAclp] = ACTIONS(6133), - [anon_sym_BSLASHacf] = ACTIONS(6133), - [anon_sym_BSLASHAcf] = ACTIONS(6133), - [anon_sym_BSLASHacfp] = ACTIONS(6133), - [anon_sym_BSLASHAcfp] = ACTIONS(6133), - [anon_sym_BSLASHac] = ACTIONS(6133), - [anon_sym_BSLASHAc] = ACTIONS(6133), - [anon_sym_BSLASHacp] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6133), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6133), - [anon_sym_BSLASHcolor] = ACTIONS(6133), - [anon_sym_BSLASHcolorbox] = ACTIONS(6133), - [anon_sym_BSLASHtextcolor] = ACTIONS(6133), - [anon_sym_BSLASHpagecolor] = ACTIONS(6133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6133), - [anon_sym_BSLASHtext] = ACTIONS(6133), - [anon_sym_BSLASHintertext] = ACTIONS(6133), - [anon_sym_shortintertext] = ACTIONS(6133), - }, - [1020] = { - [ts_builtin_sym_end] = ACTIONS(6483), - [sym_command_name] = ACTIONS(6481), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(6483), - [anon_sym_COMMA] = ACTIONS(6483), - [anon_sym_EQ] = ACTIONS(6483), - [anon_sym_LPAREN] = ACTIONS(6483), - [anon_sym_RPAREN] = ACTIONS(6483), - [anon_sym_BSLASHpart] = ACTIONS(6481), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddpart] = ACTIONS(6481), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6483), - [anon_sym_BSLASHchapter] = ACTIONS(6481), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddchap] = ACTIONS(6481), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsection] = ACTIONS(6481), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddsec] = ACTIONS(6481), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubsection] = ACTIONS(6481), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6481), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHparagraph] = ACTIONS(6481), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6481), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6483), - [anon_sym_BSLASHitem] = ACTIONS(6481), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6483), - [anon_sym_LBRACE] = ACTIONS(6483), - [anon_sym_RBRACE] = ACTIONS(6483), - [sym_word] = ACTIONS(6481), - [sym_placeholder] = ACTIONS(6483), - [anon_sym_PLUS] = ACTIONS(6483), - [anon_sym_DASH] = ACTIONS(6483), - [anon_sym_STAR] = ACTIONS(6483), - [anon_sym_SLASH] = ACTIONS(6483), - [anon_sym_LT] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6481), - [anon_sym_BANG] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6481), - [anon_sym_COLON] = ACTIONS(6481), - [anon_sym_SQUOTE] = ACTIONS(6481), - [anon_sym__] = ACTIONS(6483), - [anon_sym_CARET] = ACTIONS(6483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6483), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6483), - [anon_sym_DOLLAR] = ACTIONS(6481), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6483), - [anon_sym_BSLASHbegin] = ACTIONS(6481), - [anon_sym_BSLASHtitle] = ACTIONS(6481), - [anon_sym_BSLASHauthor] = ACTIONS(6481), - [anon_sym_BSLASHusepackage] = ACTIONS(6481), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6481), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6481), - [anon_sym_BSLASHinclude] = ACTIONS(6481), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6481), - [anon_sym_BSLASHinput] = ACTIONS(6481), - [anon_sym_BSLASHsubfile] = ACTIONS(6481), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6481), - [anon_sym_BSLASHbibliography] = ACTIONS(6481), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6481), - [anon_sym_BSLASHincludesvg] = ACTIONS(6481), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6481), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6481), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6481), - [anon_sym_BSLASHimport] = ACTIONS(6481), - [anon_sym_BSLASHsubimport] = ACTIONS(6481), - [anon_sym_BSLASHinputfrom] = ACTIONS(6481), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6481), - [anon_sym_BSLASHincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHcaption] = ACTIONS(6481), - [anon_sym_BSLASHcite] = ACTIONS(6481), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCite] = ACTIONS(6481), - [anon_sym_BSLASHnocite] = ACTIONS(6481), - [anon_sym_BSLASHcitet] = ACTIONS(6481), - [anon_sym_BSLASHcitep] = ACTIONS(6481), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteauthor] = ACTIONS(6481), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6481), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitetitle] = ACTIONS(6481), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteyear] = ACTIONS(6481), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitedate] = ACTIONS(6481), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteurl] = ACTIONS(6481), - [anon_sym_BSLASHfullcite] = ACTIONS(6481), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6481), - [anon_sym_BSLASHcitealt] = ACTIONS(6481), - [anon_sym_BSLASHcitealp] = ACTIONS(6481), - [anon_sym_BSLASHcitetext] = ACTIONS(6481), - [anon_sym_BSLASHparencite] = ACTIONS(6481), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHParencite] = ACTIONS(6481), - [anon_sym_BSLASHfootcite] = ACTIONS(6481), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6481), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6481), - [anon_sym_BSLASHtextcite] = ACTIONS(6481), - [anon_sym_BSLASHTextcite] = ACTIONS(6481), - [anon_sym_BSLASHsmartcite] = ACTIONS(6481), - [anon_sym_BSLASHSmartcite] = ACTIONS(6481), - [anon_sym_BSLASHsupercite] = ACTIONS(6481), - [anon_sym_BSLASHautocite] = ACTIONS(6481), - [anon_sym_BSLASHAutocite] = ACTIONS(6481), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHvolcite] = ACTIONS(6481), - [anon_sym_BSLASHVolcite] = ACTIONS(6481), - [anon_sym_BSLASHpvolcite] = ACTIONS(6481), - [anon_sym_BSLASHPvolcite] = ACTIONS(6481), - [anon_sym_BSLASHfvolcite] = ACTIONS(6481), - [anon_sym_BSLASHftvolcite] = ACTIONS(6481), - [anon_sym_BSLASHsvolcite] = ACTIONS(6481), - [anon_sym_BSLASHSvolcite] = ACTIONS(6481), - [anon_sym_BSLASHtvolcite] = ACTIONS(6481), - [anon_sym_BSLASHTvolcite] = ACTIONS(6481), - [anon_sym_BSLASHavolcite] = ACTIONS(6481), - [anon_sym_BSLASHAvolcite] = ACTIONS(6481), - [anon_sym_BSLASHnotecite] = ACTIONS(6481), - [anon_sym_BSLASHNotecite] = ACTIONS(6481), - [anon_sym_BSLASHpnotecite] = ACTIONS(6481), - [anon_sym_BSLASHPnotecite] = ACTIONS(6481), - [anon_sym_BSLASHfnotecite] = ACTIONS(6481), - [anon_sym_BSLASHlabel] = ACTIONS(6481), - [anon_sym_BSLASHref] = ACTIONS(6481), - [anon_sym_BSLASHeqref] = ACTIONS(6481), - [anon_sym_BSLASHvref] = ACTIONS(6481), - [anon_sym_BSLASHVref] = ACTIONS(6481), - [anon_sym_BSLASHautoref] = ACTIONS(6481), - [anon_sym_BSLASHpageref] = ACTIONS(6481), - [anon_sym_BSLASHcref] = ACTIONS(6481), - [anon_sym_BSLASHCref] = ACTIONS(6481), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnameCref] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHlabelcref] = ACTIONS(6481), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCrefrange] = ACTIONS(6481), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnewlabel] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6481), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6481), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6483), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHdef] = ACTIONS(6481), - [anon_sym_BSLASHlet] = ACTIONS(6481), - [anon_sym_BSLASHleft] = ACTIONS(6481), - [anon_sym_BSLASHbig] = ACTIONS(6481), - [anon_sym_BSLASHBig] = ACTIONS(6481), - [anon_sym_BSLASHbigg] = ACTIONS(6481), - [anon_sym_BSLASHBigg] = ACTIONS(6481), - [anon_sym_BSLASHbigl] = ACTIONS(6481), - [anon_sym_BSLASHBigl] = ACTIONS(6481), - [anon_sym_BSLASHbiggl] = ACTIONS(6481), - [anon_sym_BSLASHBiggl] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6481), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6481), - [anon_sym_BSLASHgls] = ACTIONS(6481), - [anon_sym_BSLASHGls] = ACTIONS(6481), - [anon_sym_BSLASHGLS] = ACTIONS(6481), - [anon_sym_BSLASHglspl] = ACTIONS(6481), - [anon_sym_BSLASHGlspl] = ACTIONS(6481), - [anon_sym_BSLASHGLSpl] = ACTIONS(6481), - [anon_sym_BSLASHglsdisp] = ACTIONS(6481), - [anon_sym_BSLASHglslink] = ACTIONS(6481), - [anon_sym_BSLASHglstext] = ACTIONS(6481), - [anon_sym_BSLASHGlstext] = ACTIONS(6481), - [anon_sym_BSLASHGLStext] = ACTIONS(6481), - [anon_sym_BSLASHglsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6481), - [anon_sym_BSLASHglsplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSplural] = ACTIONS(6481), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHglsname] = ACTIONS(6481), - [anon_sym_BSLASHGlsname] = ACTIONS(6481), - [anon_sym_BSLASHGLSname] = ACTIONS(6481), - [anon_sym_BSLASHglssymbol] = ACTIONS(6481), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6481), - [anon_sym_BSLASHglsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6481), - [anon_sym_BSLASHglsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6481), - [anon_sym_BSLASHglsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6481), - [anon_sym_BSLASHglsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6481), - [anon_sym_BSLASHglsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6481), - [anon_sym_BSLASHnewacronym] = ACTIONS(6481), - [anon_sym_BSLASHacrshort] = ACTIONS(6481), - [anon_sym_BSLASHAcrshort] = ACTIONS(6481), - [anon_sym_BSLASHACRshort] = ACTIONS(6481), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6481), - [anon_sym_BSLASHacrlong] = ACTIONS(6481), - [anon_sym_BSLASHAcrlong] = ACTIONS(6481), - [anon_sym_BSLASHACRlong] = ACTIONS(6481), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6481), - [anon_sym_BSLASHacrfull] = ACTIONS(6481), - [anon_sym_BSLASHAcrfull] = ACTIONS(6481), - [anon_sym_BSLASHACRfull] = ACTIONS(6481), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6481), - [anon_sym_BSLASHacs] = ACTIONS(6481), - [anon_sym_BSLASHAcs] = ACTIONS(6481), - [anon_sym_BSLASHacsp] = ACTIONS(6481), - [anon_sym_BSLASHAcsp] = ACTIONS(6481), - [anon_sym_BSLASHacl] = ACTIONS(6481), - [anon_sym_BSLASHAcl] = ACTIONS(6481), - [anon_sym_BSLASHaclp] = ACTIONS(6481), - [anon_sym_BSLASHAclp] = ACTIONS(6481), - [anon_sym_BSLASHacf] = ACTIONS(6481), - [anon_sym_BSLASHAcf] = ACTIONS(6481), - [anon_sym_BSLASHacfp] = ACTIONS(6481), - [anon_sym_BSLASHAcfp] = ACTIONS(6481), - [anon_sym_BSLASHac] = ACTIONS(6481), - [anon_sym_BSLASHAc] = ACTIONS(6481), - [anon_sym_BSLASHacp] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6481), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6481), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6481), - [anon_sym_BSLASHcolor] = ACTIONS(6481), - [anon_sym_BSLASHcolorbox] = ACTIONS(6481), - [anon_sym_BSLASHtextcolor] = ACTIONS(6481), - [anon_sym_BSLASHpagecolor] = ACTIONS(6481), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6481), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6481), - [anon_sym_BSLASHtext] = ACTIONS(6481), - [anon_sym_BSLASHintertext] = ACTIONS(6481), - [anon_sym_shortintertext] = ACTIONS(6481), - }, - [1021] = { - [ts_builtin_sym_end] = ACTIONS(6435), - [sym_command_name] = ACTIONS(6433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6433), - [anon_sym_LBRACK] = ACTIONS(6435), - [anon_sym_RBRACK] = ACTIONS(6435), - [anon_sym_COMMA] = ACTIONS(6435), - [anon_sym_EQ] = ACTIONS(6435), - [anon_sym_LPAREN] = ACTIONS(6435), - [anon_sym_RPAREN] = ACTIONS(6435), - [anon_sym_BSLASHpart] = ACTIONS(6433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddpart] = ACTIONS(6433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6435), - [anon_sym_BSLASHchapter] = ACTIONS(6433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddchap] = ACTIONS(6433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsection] = ACTIONS(6433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddsec] = ACTIONS(6433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubsection] = ACTIONS(6433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHparagraph] = ACTIONS(6433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6435), - [anon_sym_BSLASHitem] = ACTIONS(6433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6435), - [anon_sym_LBRACE] = ACTIONS(6435), - [anon_sym_RBRACE] = ACTIONS(6435), - [sym_word] = ACTIONS(6433), - [sym_placeholder] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6435), - [anon_sym_DASH] = ACTIONS(6435), - [anon_sym_STAR] = ACTIONS(6435), - [anon_sym_SLASH] = ACTIONS(6435), - [anon_sym_LT] = ACTIONS(6433), - [anon_sym_GT] = ACTIONS(6433), - [anon_sym_BANG] = ACTIONS(6433), - [anon_sym_PIPE] = ACTIONS(6433), - [anon_sym_COLON] = ACTIONS(6433), - [anon_sym_SQUOTE] = ACTIONS(6433), - [anon_sym__] = ACTIONS(6435), - [anon_sym_CARET] = ACTIONS(6435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6435), - [anon_sym_DOLLAR] = ACTIONS(6433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6435), - [anon_sym_BSLASHbegin] = ACTIONS(6433), - [anon_sym_BSLASHtitle] = ACTIONS(6433), - [anon_sym_BSLASHauthor] = ACTIONS(6433), - [anon_sym_BSLASHusepackage] = ACTIONS(6433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6433), - [anon_sym_BSLASHinclude] = ACTIONS(6433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6433), - [anon_sym_BSLASHinput] = ACTIONS(6433), - [anon_sym_BSLASHsubfile] = ACTIONS(6433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6433), - [anon_sym_BSLASHbibliography] = ACTIONS(6433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6433), - [anon_sym_BSLASHincludesvg] = ACTIONS(6433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6433), - [anon_sym_BSLASHimport] = ACTIONS(6433), - [anon_sym_BSLASHsubimport] = ACTIONS(6433), - [anon_sym_BSLASHinputfrom] = ACTIONS(6433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6433), - [anon_sym_BSLASHincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHcaption] = ACTIONS(6433), - [anon_sym_BSLASHcite] = ACTIONS(6433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCite] = ACTIONS(6433), - [anon_sym_BSLASHnocite] = ACTIONS(6433), - [anon_sym_BSLASHcitet] = ACTIONS(6433), - [anon_sym_BSLASHcitep] = ACTIONS(6433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteauthor] = ACTIONS(6433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitetitle] = ACTIONS(6433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteyear] = ACTIONS(6433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitedate] = ACTIONS(6433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteurl] = ACTIONS(6433), - [anon_sym_BSLASHfullcite] = ACTIONS(6433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6433), - [anon_sym_BSLASHcitealt] = ACTIONS(6433), - [anon_sym_BSLASHcitealp] = ACTIONS(6433), - [anon_sym_BSLASHcitetext] = ACTIONS(6433), - [anon_sym_BSLASHparencite] = ACTIONS(6433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHParencite] = ACTIONS(6433), - [anon_sym_BSLASHfootcite] = ACTIONS(6433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6433), - [anon_sym_BSLASHtextcite] = ACTIONS(6433), - [anon_sym_BSLASHTextcite] = ACTIONS(6433), - [anon_sym_BSLASHsmartcite] = ACTIONS(6433), - [anon_sym_BSLASHSmartcite] = ACTIONS(6433), - [anon_sym_BSLASHsupercite] = ACTIONS(6433), - [anon_sym_BSLASHautocite] = ACTIONS(6433), - [anon_sym_BSLASHAutocite] = ACTIONS(6433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHvolcite] = ACTIONS(6433), - [anon_sym_BSLASHVolcite] = ACTIONS(6433), - [anon_sym_BSLASHpvolcite] = ACTIONS(6433), - [anon_sym_BSLASHPvolcite] = ACTIONS(6433), - [anon_sym_BSLASHfvolcite] = ACTIONS(6433), - [anon_sym_BSLASHftvolcite] = ACTIONS(6433), - [anon_sym_BSLASHsvolcite] = ACTIONS(6433), - [anon_sym_BSLASHSvolcite] = ACTIONS(6433), - [anon_sym_BSLASHtvolcite] = ACTIONS(6433), - [anon_sym_BSLASHTvolcite] = ACTIONS(6433), - [anon_sym_BSLASHavolcite] = ACTIONS(6433), - [anon_sym_BSLASHAvolcite] = ACTIONS(6433), - [anon_sym_BSLASHnotecite] = ACTIONS(6433), - [anon_sym_BSLASHNotecite] = ACTIONS(6433), - [anon_sym_BSLASHpnotecite] = ACTIONS(6433), - [anon_sym_BSLASHPnotecite] = ACTIONS(6433), - [anon_sym_BSLASHfnotecite] = ACTIONS(6433), - [anon_sym_BSLASHlabel] = ACTIONS(6433), - [anon_sym_BSLASHref] = ACTIONS(6433), - [anon_sym_BSLASHeqref] = ACTIONS(6433), - [anon_sym_BSLASHvref] = ACTIONS(6433), - [anon_sym_BSLASHVref] = ACTIONS(6433), - [anon_sym_BSLASHautoref] = ACTIONS(6433), - [anon_sym_BSLASHpageref] = ACTIONS(6433), - [anon_sym_BSLASHcref] = ACTIONS(6433), - [anon_sym_BSLASHCref] = ACTIONS(6433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnameCref] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHlabelcref] = ACTIONS(6433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCrefrange] = ACTIONS(6433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnewlabel] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6435), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHdef] = ACTIONS(6433), - [anon_sym_BSLASHlet] = ACTIONS(6433), - [anon_sym_BSLASHleft] = ACTIONS(6433), - [anon_sym_BSLASHbig] = ACTIONS(6433), - [anon_sym_BSLASHBig] = ACTIONS(6433), - [anon_sym_BSLASHbigg] = ACTIONS(6433), - [anon_sym_BSLASHBigg] = ACTIONS(6433), - [anon_sym_BSLASHbigl] = ACTIONS(6433), - [anon_sym_BSLASHBigl] = ACTIONS(6433), - [anon_sym_BSLASHbiggl] = ACTIONS(6433), - [anon_sym_BSLASHBiggl] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6433), - [anon_sym_BSLASHgls] = ACTIONS(6433), - [anon_sym_BSLASHGls] = ACTIONS(6433), - [anon_sym_BSLASHGLS] = ACTIONS(6433), - [anon_sym_BSLASHglspl] = ACTIONS(6433), - [anon_sym_BSLASHGlspl] = ACTIONS(6433), - [anon_sym_BSLASHGLSpl] = ACTIONS(6433), - [anon_sym_BSLASHglsdisp] = ACTIONS(6433), - [anon_sym_BSLASHglslink] = ACTIONS(6433), - [anon_sym_BSLASHglstext] = ACTIONS(6433), - [anon_sym_BSLASHGlstext] = ACTIONS(6433), - [anon_sym_BSLASHGLStext] = ACTIONS(6433), - [anon_sym_BSLASHglsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6433), - [anon_sym_BSLASHglsplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSplural] = ACTIONS(6433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHglsname] = ACTIONS(6433), - [anon_sym_BSLASHGlsname] = ACTIONS(6433), - [anon_sym_BSLASHGLSname] = ACTIONS(6433), - [anon_sym_BSLASHglssymbol] = ACTIONS(6433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6433), - [anon_sym_BSLASHglsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6433), - [anon_sym_BSLASHglsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6433), - [anon_sym_BSLASHglsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6433), - [anon_sym_BSLASHglsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6433), - [anon_sym_BSLASHglsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6433), - [anon_sym_BSLASHnewacronym] = ACTIONS(6433), - [anon_sym_BSLASHacrshort] = ACTIONS(6433), - [anon_sym_BSLASHAcrshort] = ACTIONS(6433), - [anon_sym_BSLASHACRshort] = ACTIONS(6433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6433), - [anon_sym_BSLASHacrlong] = ACTIONS(6433), - [anon_sym_BSLASHAcrlong] = ACTIONS(6433), - [anon_sym_BSLASHACRlong] = ACTIONS(6433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6433), - [anon_sym_BSLASHacrfull] = ACTIONS(6433), - [anon_sym_BSLASHAcrfull] = ACTIONS(6433), - [anon_sym_BSLASHACRfull] = ACTIONS(6433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6433), - [anon_sym_BSLASHacs] = ACTIONS(6433), - [anon_sym_BSLASHAcs] = ACTIONS(6433), - [anon_sym_BSLASHacsp] = ACTIONS(6433), - [anon_sym_BSLASHAcsp] = ACTIONS(6433), - [anon_sym_BSLASHacl] = ACTIONS(6433), - [anon_sym_BSLASHAcl] = ACTIONS(6433), - [anon_sym_BSLASHaclp] = ACTIONS(6433), - [anon_sym_BSLASHAclp] = ACTIONS(6433), - [anon_sym_BSLASHacf] = ACTIONS(6433), - [anon_sym_BSLASHAcf] = ACTIONS(6433), - [anon_sym_BSLASHacfp] = ACTIONS(6433), - [anon_sym_BSLASHAcfp] = ACTIONS(6433), - [anon_sym_BSLASHac] = ACTIONS(6433), - [anon_sym_BSLASHAc] = ACTIONS(6433), - [anon_sym_BSLASHacp] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6433), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6433), - [anon_sym_BSLASHcolor] = ACTIONS(6433), - [anon_sym_BSLASHcolorbox] = ACTIONS(6433), - [anon_sym_BSLASHtextcolor] = ACTIONS(6433), - [anon_sym_BSLASHpagecolor] = ACTIONS(6433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6433), - [anon_sym_BSLASHtext] = ACTIONS(6433), - [anon_sym_BSLASHintertext] = ACTIONS(6433), - [anon_sym_shortintertext] = ACTIONS(6433), - }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(6439), - [sym_command_name] = ACTIONS(6437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6437), - [anon_sym_LBRACK] = ACTIONS(6439), - [anon_sym_RBRACK] = ACTIONS(6439), - [anon_sym_COMMA] = ACTIONS(6439), - [anon_sym_EQ] = ACTIONS(6439), - [anon_sym_LPAREN] = ACTIONS(6439), - [anon_sym_RPAREN] = ACTIONS(6439), - [anon_sym_BSLASHpart] = ACTIONS(6437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddpart] = ACTIONS(6437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6439), - [anon_sym_BSLASHchapter] = ACTIONS(6437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddchap] = ACTIONS(6437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsection] = ACTIONS(6437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddsec] = ACTIONS(6437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubsection] = ACTIONS(6437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHparagraph] = ACTIONS(6437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6439), - [anon_sym_BSLASHitem] = ACTIONS(6437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6439), - [anon_sym_LBRACE] = ACTIONS(6439), - [anon_sym_RBRACE] = ACTIONS(6439), - [sym_word] = ACTIONS(6437), - [sym_placeholder] = ACTIONS(6439), - [anon_sym_PLUS] = ACTIONS(6439), - [anon_sym_DASH] = ACTIONS(6439), - [anon_sym_STAR] = ACTIONS(6439), - [anon_sym_SLASH] = ACTIONS(6439), - [anon_sym_LT] = ACTIONS(6437), - [anon_sym_GT] = ACTIONS(6437), - [anon_sym_BANG] = ACTIONS(6437), - [anon_sym_PIPE] = ACTIONS(6437), - [anon_sym_COLON] = ACTIONS(6437), - [anon_sym_SQUOTE] = ACTIONS(6437), - [anon_sym__] = ACTIONS(6439), - [anon_sym_CARET] = ACTIONS(6439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6439), - [anon_sym_DOLLAR] = ACTIONS(6437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6439), - [anon_sym_BSLASHbegin] = ACTIONS(6437), - [anon_sym_BSLASHtitle] = ACTIONS(6437), - [anon_sym_BSLASHauthor] = ACTIONS(6437), - [anon_sym_BSLASHusepackage] = ACTIONS(6437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6437), - [anon_sym_BSLASHinclude] = ACTIONS(6437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6437), - [anon_sym_BSLASHinput] = ACTIONS(6437), - [anon_sym_BSLASHsubfile] = ACTIONS(6437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6437), - [anon_sym_BSLASHbibliography] = ACTIONS(6437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6437), - [anon_sym_BSLASHincludesvg] = ACTIONS(6437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6437), - [anon_sym_BSLASHimport] = ACTIONS(6437), - [anon_sym_BSLASHsubimport] = ACTIONS(6437), - [anon_sym_BSLASHinputfrom] = ACTIONS(6437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6437), - [anon_sym_BSLASHincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHcaption] = ACTIONS(6437), - [anon_sym_BSLASHcite] = ACTIONS(6437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCite] = ACTIONS(6437), - [anon_sym_BSLASHnocite] = ACTIONS(6437), - [anon_sym_BSLASHcitet] = ACTIONS(6437), - [anon_sym_BSLASHcitep] = ACTIONS(6437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteauthor] = ACTIONS(6437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitetitle] = ACTIONS(6437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteyear] = ACTIONS(6437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitedate] = ACTIONS(6437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteurl] = ACTIONS(6437), - [anon_sym_BSLASHfullcite] = ACTIONS(6437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6437), - [anon_sym_BSLASHcitealt] = ACTIONS(6437), - [anon_sym_BSLASHcitealp] = ACTIONS(6437), - [anon_sym_BSLASHcitetext] = ACTIONS(6437), - [anon_sym_BSLASHparencite] = ACTIONS(6437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHParencite] = ACTIONS(6437), - [anon_sym_BSLASHfootcite] = ACTIONS(6437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6437), - [anon_sym_BSLASHtextcite] = ACTIONS(6437), - [anon_sym_BSLASHTextcite] = ACTIONS(6437), - [anon_sym_BSLASHsmartcite] = ACTIONS(6437), - [anon_sym_BSLASHSmartcite] = ACTIONS(6437), - [anon_sym_BSLASHsupercite] = ACTIONS(6437), - [anon_sym_BSLASHautocite] = ACTIONS(6437), - [anon_sym_BSLASHAutocite] = ACTIONS(6437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHvolcite] = ACTIONS(6437), - [anon_sym_BSLASHVolcite] = ACTIONS(6437), - [anon_sym_BSLASHpvolcite] = ACTIONS(6437), - [anon_sym_BSLASHPvolcite] = ACTIONS(6437), - [anon_sym_BSLASHfvolcite] = ACTIONS(6437), - [anon_sym_BSLASHftvolcite] = ACTIONS(6437), - [anon_sym_BSLASHsvolcite] = ACTIONS(6437), - [anon_sym_BSLASHSvolcite] = ACTIONS(6437), - [anon_sym_BSLASHtvolcite] = ACTIONS(6437), - [anon_sym_BSLASHTvolcite] = ACTIONS(6437), - [anon_sym_BSLASHavolcite] = ACTIONS(6437), - [anon_sym_BSLASHAvolcite] = ACTIONS(6437), - [anon_sym_BSLASHnotecite] = ACTIONS(6437), - [anon_sym_BSLASHNotecite] = ACTIONS(6437), - [anon_sym_BSLASHpnotecite] = ACTIONS(6437), - [anon_sym_BSLASHPnotecite] = ACTIONS(6437), - [anon_sym_BSLASHfnotecite] = ACTIONS(6437), - [anon_sym_BSLASHlabel] = ACTIONS(6437), - [anon_sym_BSLASHref] = ACTIONS(6437), - [anon_sym_BSLASHeqref] = ACTIONS(6437), - [anon_sym_BSLASHvref] = ACTIONS(6437), - [anon_sym_BSLASHVref] = ACTIONS(6437), - [anon_sym_BSLASHautoref] = ACTIONS(6437), - [anon_sym_BSLASHpageref] = ACTIONS(6437), - [anon_sym_BSLASHcref] = ACTIONS(6437), - [anon_sym_BSLASHCref] = ACTIONS(6437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnameCref] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHlabelcref] = ACTIONS(6437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCrefrange] = ACTIONS(6437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnewlabel] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6439), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHdef] = ACTIONS(6437), - [anon_sym_BSLASHlet] = ACTIONS(6437), - [anon_sym_BSLASHleft] = ACTIONS(6437), - [anon_sym_BSLASHbig] = ACTIONS(6437), - [anon_sym_BSLASHBig] = ACTIONS(6437), - [anon_sym_BSLASHbigg] = ACTIONS(6437), - [anon_sym_BSLASHBigg] = ACTIONS(6437), - [anon_sym_BSLASHbigl] = ACTIONS(6437), - [anon_sym_BSLASHBigl] = ACTIONS(6437), - [anon_sym_BSLASHbiggl] = ACTIONS(6437), - [anon_sym_BSLASHBiggl] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6437), - [anon_sym_BSLASHgls] = ACTIONS(6437), - [anon_sym_BSLASHGls] = ACTIONS(6437), - [anon_sym_BSLASHGLS] = ACTIONS(6437), - [anon_sym_BSLASHglspl] = ACTIONS(6437), - [anon_sym_BSLASHGlspl] = ACTIONS(6437), - [anon_sym_BSLASHGLSpl] = ACTIONS(6437), - [anon_sym_BSLASHglsdisp] = ACTIONS(6437), - [anon_sym_BSLASHglslink] = ACTIONS(6437), - [anon_sym_BSLASHglstext] = ACTIONS(6437), - [anon_sym_BSLASHGlstext] = ACTIONS(6437), - [anon_sym_BSLASHGLStext] = ACTIONS(6437), - [anon_sym_BSLASHglsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6437), - [anon_sym_BSLASHglsplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSplural] = ACTIONS(6437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHglsname] = ACTIONS(6437), - [anon_sym_BSLASHGlsname] = ACTIONS(6437), - [anon_sym_BSLASHGLSname] = ACTIONS(6437), - [anon_sym_BSLASHglssymbol] = ACTIONS(6437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6437), - [anon_sym_BSLASHglsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6437), - [anon_sym_BSLASHglsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6437), - [anon_sym_BSLASHglsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6437), - [anon_sym_BSLASHglsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6437), - [anon_sym_BSLASHglsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6437), - [anon_sym_BSLASHnewacronym] = ACTIONS(6437), - [anon_sym_BSLASHacrshort] = ACTIONS(6437), - [anon_sym_BSLASHAcrshort] = ACTIONS(6437), - [anon_sym_BSLASHACRshort] = ACTIONS(6437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6437), - [anon_sym_BSLASHacrlong] = ACTIONS(6437), - [anon_sym_BSLASHAcrlong] = ACTIONS(6437), - [anon_sym_BSLASHACRlong] = ACTIONS(6437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6437), - [anon_sym_BSLASHacrfull] = ACTIONS(6437), - [anon_sym_BSLASHAcrfull] = ACTIONS(6437), - [anon_sym_BSLASHACRfull] = ACTIONS(6437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6437), - [anon_sym_BSLASHacs] = ACTIONS(6437), - [anon_sym_BSLASHAcs] = ACTIONS(6437), - [anon_sym_BSLASHacsp] = ACTIONS(6437), - [anon_sym_BSLASHAcsp] = ACTIONS(6437), - [anon_sym_BSLASHacl] = ACTIONS(6437), - [anon_sym_BSLASHAcl] = ACTIONS(6437), - [anon_sym_BSLASHaclp] = ACTIONS(6437), - [anon_sym_BSLASHAclp] = ACTIONS(6437), - [anon_sym_BSLASHacf] = ACTIONS(6437), - [anon_sym_BSLASHAcf] = ACTIONS(6437), - [anon_sym_BSLASHacfp] = ACTIONS(6437), - [anon_sym_BSLASHAcfp] = ACTIONS(6437), - [anon_sym_BSLASHac] = ACTIONS(6437), - [anon_sym_BSLASHAc] = ACTIONS(6437), - [anon_sym_BSLASHacp] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6437), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6437), - [anon_sym_BSLASHcolor] = ACTIONS(6437), - [anon_sym_BSLASHcolorbox] = ACTIONS(6437), - [anon_sym_BSLASHtextcolor] = ACTIONS(6437), - [anon_sym_BSLASHpagecolor] = ACTIONS(6437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6437), - [anon_sym_BSLASHtext] = ACTIONS(6437), - [anon_sym_BSLASHintertext] = ACTIONS(6437), - [anon_sym_shortintertext] = ACTIONS(6437), - }, - [1023] = { - [ts_builtin_sym_end] = ACTIONS(6479), - [sym_command_name] = ACTIONS(6477), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6477), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_RBRACK] = ACTIONS(6479), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_LPAREN] = ACTIONS(6479), - [anon_sym_RPAREN] = ACTIONS(6479), - [anon_sym_BSLASHpart] = ACTIONS(6477), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddpart] = ACTIONS(6477), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6479), - [anon_sym_BSLASHchapter] = ACTIONS(6477), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddchap] = ACTIONS(6477), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsection] = ACTIONS(6477), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddsec] = ACTIONS(6477), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubsection] = ACTIONS(6477), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6477), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHparagraph] = ACTIONS(6477), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6477), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6479), - [anon_sym_BSLASHitem] = ACTIONS(6477), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6479), - [anon_sym_LBRACE] = ACTIONS(6479), - [anon_sym_RBRACE] = ACTIONS(6479), - [sym_word] = ACTIONS(6477), - [sym_placeholder] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6477), - [anon_sym_GT] = ACTIONS(6477), - [anon_sym_BANG] = ACTIONS(6477), - [anon_sym_PIPE] = ACTIONS(6477), - [anon_sym_COLON] = ACTIONS(6477), - [anon_sym_SQUOTE] = ACTIONS(6477), - [anon_sym__] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6479), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6479), - [anon_sym_DOLLAR] = ACTIONS(6477), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6479), - [anon_sym_BSLASHbegin] = ACTIONS(6477), - [anon_sym_BSLASHtitle] = ACTIONS(6477), - [anon_sym_BSLASHauthor] = ACTIONS(6477), - [anon_sym_BSLASHusepackage] = ACTIONS(6477), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6477), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6477), - [anon_sym_BSLASHinclude] = ACTIONS(6477), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6477), - [anon_sym_BSLASHinput] = ACTIONS(6477), - [anon_sym_BSLASHsubfile] = ACTIONS(6477), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6477), - [anon_sym_BSLASHbibliography] = ACTIONS(6477), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6477), - [anon_sym_BSLASHincludesvg] = ACTIONS(6477), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6477), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6477), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6477), - [anon_sym_BSLASHimport] = ACTIONS(6477), - [anon_sym_BSLASHsubimport] = ACTIONS(6477), - [anon_sym_BSLASHinputfrom] = ACTIONS(6477), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6477), - [anon_sym_BSLASHincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHcaption] = ACTIONS(6477), - [anon_sym_BSLASHcite] = ACTIONS(6477), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCite] = ACTIONS(6477), - [anon_sym_BSLASHnocite] = ACTIONS(6477), - [anon_sym_BSLASHcitet] = ACTIONS(6477), - [anon_sym_BSLASHcitep] = ACTIONS(6477), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteauthor] = ACTIONS(6477), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6477), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitetitle] = ACTIONS(6477), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteyear] = ACTIONS(6477), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitedate] = ACTIONS(6477), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteurl] = ACTIONS(6477), - [anon_sym_BSLASHfullcite] = ACTIONS(6477), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6477), - [anon_sym_BSLASHcitealt] = ACTIONS(6477), - [anon_sym_BSLASHcitealp] = ACTIONS(6477), - [anon_sym_BSLASHcitetext] = ACTIONS(6477), - [anon_sym_BSLASHparencite] = ACTIONS(6477), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHParencite] = ACTIONS(6477), - [anon_sym_BSLASHfootcite] = ACTIONS(6477), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6477), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6477), - [anon_sym_BSLASHtextcite] = ACTIONS(6477), - [anon_sym_BSLASHTextcite] = ACTIONS(6477), - [anon_sym_BSLASHsmartcite] = ACTIONS(6477), - [anon_sym_BSLASHSmartcite] = ACTIONS(6477), - [anon_sym_BSLASHsupercite] = ACTIONS(6477), - [anon_sym_BSLASHautocite] = ACTIONS(6477), - [anon_sym_BSLASHAutocite] = ACTIONS(6477), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHvolcite] = ACTIONS(6477), - [anon_sym_BSLASHVolcite] = ACTIONS(6477), - [anon_sym_BSLASHpvolcite] = ACTIONS(6477), - [anon_sym_BSLASHPvolcite] = ACTIONS(6477), - [anon_sym_BSLASHfvolcite] = ACTIONS(6477), - [anon_sym_BSLASHftvolcite] = ACTIONS(6477), - [anon_sym_BSLASHsvolcite] = ACTIONS(6477), - [anon_sym_BSLASHSvolcite] = ACTIONS(6477), - [anon_sym_BSLASHtvolcite] = ACTIONS(6477), - [anon_sym_BSLASHTvolcite] = ACTIONS(6477), - [anon_sym_BSLASHavolcite] = ACTIONS(6477), - [anon_sym_BSLASHAvolcite] = ACTIONS(6477), - [anon_sym_BSLASHnotecite] = ACTIONS(6477), - [anon_sym_BSLASHNotecite] = ACTIONS(6477), - [anon_sym_BSLASHpnotecite] = ACTIONS(6477), - [anon_sym_BSLASHPnotecite] = ACTIONS(6477), - [anon_sym_BSLASHfnotecite] = ACTIONS(6477), - [anon_sym_BSLASHlabel] = ACTIONS(6477), - [anon_sym_BSLASHref] = ACTIONS(6477), - [anon_sym_BSLASHeqref] = ACTIONS(6477), - [anon_sym_BSLASHvref] = ACTIONS(6477), - [anon_sym_BSLASHVref] = ACTIONS(6477), - [anon_sym_BSLASHautoref] = ACTIONS(6477), - [anon_sym_BSLASHpageref] = ACTIONS(6477), - [anon_sym_BSLASHcref] = ACTIONS(6477), - [anon_sym_BSLASHCref] = ACTIONS(6477), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnameCref] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHlabelcref] = ACTIONS(6477), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCrefrange] = ACTIONS(6477), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnewlabel] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6477), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6477), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6479), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHdef] = ACTIONS(6477), - [anon_sym_BSLASHlet] = ACTIONS(6477), - [anon_sym_BSLASHleft] = ACTIONS(6477), - [anon_sym_BSLASHbig] = ACTIONS(6477), - [anon_sym_BSLASHBig] = ACTIONS(6477), - [anon_sym_BSLASHbigg] = ACTIONS(6477), - [anon_sym_BSLASHBigg] = ACTIONS(6477), - [anon_sym_BSLASHbigl] = ACTIONS(6477), - [anon_sym_BSLASHBigl] = ACTIONS(6477), - [anon_sym_BSLASHbiggl] = ACTIONS(6477), - [anon_sym_BSLASHBiggl] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6477), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6477), - [anon_sym_BSLASHgls] = ACTIONS(6477), - [anon_sym_BSLASHGls] = ACTIONS(6477), - [anon_sym_BSLASHGLS] = ACTIONS(6477), - [anon_sym_BSLASHglspl] = ACTIONS(6477), - [anon_sym_BSLASHGlspl] = ACTIONS(6477), - [anon_sym_BSLASHGLSpl] = ACTIONS(6477), - [anon_sym_BSLASHglsdisp] = ACTIONS(6477), - [anon_sym_BSLASHglslink] = ACTIONS(6477), - [anon_sym_BSLASHglstext] = ACTIONS(6477), - [anon_sym_BSLASHGlstext] = ACTIONS(6477), - [anon_sym_BSLASHGLStext] = ACTIONS(6477), - [anon_sym_BSLASHglsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6477), - [anon_sym_BSLASHglsplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSplural] = ACTIONS(6477), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHglsname] = ACTIONS(6477), - [anon_sym_BSLASHGlsname] = ACTIONS(6477), - [anon_sym_BSLASHGLSname] = ACTIONS(6477), - [anon_sym_BSLASHglssymbol] = ACTIONS(6477), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6477), - [anon_sym_BSLASHglsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6477), - [anon_sym_BSLASHglsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6477), - [anon_sym_BSLASHglsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6477), - [anon_sym_BSLASHglsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6477), - [anon_sym_BSLASHglsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6477), - [anon_sym_BSLASHnewacronym] = ACTIONS(6477), - [anon_sym_BSLASHacrshort] = ACTIONS(6477), - [anon_sym_BSLASHAcrshort] = ACTIONS(6477), - [anon_sym_BSLASHACRshort] = ACTIONS(6477), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6477), - [anon_sym_BSLASHacrlong] = ACTIONS(6477), - [anon_sym_BSLASHAcrlong] = ACTIONS(6477), - [anon_sym_BSLASHACRlong] = ACTIONS(6477), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6477), - [anon_sym_BSLASHacrfull] = ACTIONS(6477), - [anon_sym_BSLASHAcrfull] = ACTIONS(6477), - [anon_sym_BSLASHACRfull] = ACTIONS(6477), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6477), - [anon_sym_BSLASHacs] = ACTIONS(6477), - [anon_sym_BSLASHAcs] = ACTIONS(6477), - [anon_sym_BSLASHacsp] = ACTIONS(6477), - [anon_sym_BSLASHAcsp] = ACTIONS(6477), - [anon_sym_BSLASHacl] = ACTIONS(6477), - [anon_sym_BSLASHAcl] = ACTIONS(6477), - [anon_sym_BSLASHaclp] = ACTIONS(6477), - [anon_sym_BSLASHAclp] = ACTIONS(6477), - [anon_sym_BSLASHacf] = ACTIONS(6477), - [anon_sym_BSLASHAcf] = ACTIONS(6477), - [anon_sym_BSLASHacfp] = ACTIONS(6477), - [anon_sym_BSLASHAcfp] = ACTIONS(6477), - [anon_sym_BSLASHac] = ACTIONS(6477), - [anon_sym_BSLASHAc] = ACTIONS(6477), - [anon_sym_BSLASHacp] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6477), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6477), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6477), - [anon_sym_BSLASHcolor] = ACTIONS(6477), - [anon_sym_BSLASHcolorbox] = ACTIONS(6477), - [anon_sym_BSLASHtextcolor] = ACTIONS(6477), - [anon_sym_BSLASHpagecolor] = ACTIONS(6477), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6477), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6477), - [anon_sym_BSLASHtext] = ACTIONS(6477), - [anon_sym_BSLASHintertext] = ACTIONS(6477), - [anon_sym_shortintertext] = ACTIONS(6477), - }, - [1024] = { - [sym_curly_group] = STATE(1307), - [sym_command_name] = ACTIONS(6013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6013), - [anon_sym_LBRACK] = ACTIONS(6015), - [anon_sym_RBRACK] = ACTIONS(6015), - [anon_sym_COMMA] = ACTIONS(6015), - [anon_sym_EQ] = ACTIONS(6015), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_RPAREN] = ACTIONS(6015), - [anon_sym_BSLASHpart] = ACTIONS(6013), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddpart] = ACTIONS(6013), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6015), - [anon_sym_BSLASHchapter] = ACTIONS(6013), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddchap] = ACTIONS(6013), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsection] = ACTIONS(6013), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHaddsec] = ACTIONS(6013), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubsection] = ACTIONS(6013), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6013), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6015), - [anon_sym_BSLASHparagraph] = ACTIONS(6013), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6015), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6013), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6015), - [anon_sym_BSLASHitem] = ACTIONS(6013), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6015), - [anon_sym_LBRACE] = ACTIONS(1072), - [sym_word] = ACTIONS(6013), - [sym_placeholder] = ACTIONS(6015), - [anon_sym_PLUS] = ACTIONS(6015), - [anon_sym_DASH] = ACTIONS(6015), - [anon_sym_STAR] = ACTIONS(6015), - [anon_sym_SLASH] = ACTIONS(6015), - [anon_sym_LT] = ACTIONS(6013), - [anon_sym_GT] = ACTIONS(6013), - [anon_sym_BANG] = ACTIONS(6013), - [anon_sym_PIPE] = ACTIONS(6013), - [anon_sym_COLON] = ACTIONS(6013), - [anon_sym_SQUOTE] = ACTIONS(6013), - [anon_sym__] = ACTIONS(6015), - [anon_sym_CARET] = ACTIONS(6015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6015), - [anon_sym_DOLLAR] = ACTIONS(6013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), - [anon_sym_BSLASHbegin] = ACTIONS(6013), - [anon_sym_BSLASHtitle] = ACTIONS(6013), - [anon_sym_BSLASHauthor] = ACTIONS(6013), - [anon_sym_BSLASHusepackage] = ACTIONS(6013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6013), - [anon_sym_BSLASHinclude] = ACTIONS(6013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6013), - [anon_sym_BSLASHinput] = ACTIONS(6013), - [anon_sym_BSLASHsubfile] = ACTIONS(6013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6013), - [anon_sym_BSLASHbibliography] = ACTIONS(6013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6013), - [anon_sym_BSLASHincludesvg] = ACTIONS(6013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6013), - [anon_sym_BSLASHimport] = ACTIONS(6013), - [anon_sym_BSLASHsubimport] = ACTIONS(6013), - [anon_sym_BSLASHinputfrom] = ACTIONS(6013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6013), - [anon_sym_BSLASHincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHcaption] = ACTIONS(6013), - [anon_sym_BSLASHcite] = ACTIONS(6013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCite] = ACTIONS(6013), - [anon_sym_BSLASHnocite] = ACTIONS(6013), - [anon_sym_BSLASHcitet] = ACTIONS(6013), - [anon_sym_BSLASHcitep] = ACTIONS(6013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteauthor] = ACTIONS(6013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitetitle] = ACTIONS(6013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteyear] = ACTIONS(6013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitedate] = ACTIONS(6013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteurl] = ACTIONS(6013), - [anon_sym_BSLASHfullcite] = ACTIONS(6013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6013), - [anon_sym_BSLASHcitealt] = ACTIONS(6013), - [anon_sym_BSLASHcitealp] = ACTIONS(6013), - [anon_sym_BSLASHcitetext] = ACTIONS(6013), - [anon_sym_BSLASHparencite] = ACTIONS(6013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHParencite] = ACTIONS(6013), - [anon_sym_BSLASHfootcite] = ACTIONS(6013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6013), - [anon_sym_BSLASHtextcite] = ACTIONS(6013), - [anon_sym_BSLASHTextcite] = ACTIONS(6013), - [anon_sym_BSLASHsmartcite] = ACTIONS(6013), - [anon_sym_BSLASHSmartcite] = ACTIONS(6013), - [anon_sym_BSLASHsupercite] = ACTIONS(6013), - [anon_sym_BSLASHautocite] = ACTIONS(6013), - [anon_sym_BSLASHAutocite] = ACTIONS(6013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHvolcite] = ACTIONS(6013), - [anon_sym_BSLASHVolcite] = ACTIONS(6013), - [anon_sym_BSLASHpvolcite] = ACTIONS(6013), - [anon_sym_BSLASHPvolcite] = ACTIONS(6013), - [anon_sym_BSLASHfvolcite] = ACTIONS(6013), - [anon_sym_BSLASHftvolcite] = ACTIONS(6013), - [anon_sym_BSLASHsvolcite] = ACTIONS(6013), - [anon_sym_BSLASHSvolcite] = ACTIONS(6013), - [anon_sym_BSLASHtvolcite] = ACTIONS(6013), - [anon_sym_BSLASHTvolcite] = ACTIONS(6013), - [anon_sym_BSLASHavolcite] = ACTIONS(6013), - [anon_sym_BSLASHAvolcite] = ACTIONS(6013), - [anon_sym_BSLASHnotecite] = ACTIONS(6013), - [anon_sym_BSLASHNotecite] = ACTIONS(6013), - [anon_sym_BSLASHpnotecite] = ACTIONS(6013), - [anon_sym_BSLASHPnotecite] = ACTIONS(6013), - [anon_sym_BSLASHfnotecite] = ACTIONS(6013), - [anon_sym_BSLASHlabel] = ACTIONS(6013), - [anon_sym_BSLASHref] = ACTIONS(6013), - [anon_sym_BSLASHeqref] = ACTIONS(6013), - [anon_sym_BSLASHvref] = ACTIONS(6013), - [anon_sym_BSLASHVref] = ACTIONS(6013), - [anon_sym_BSLASHautoref] = ACTIONS(6013), - [anon_sym_BSLASHpageref] = ACTIONS(6013), - [anon_sym_BSLASHcref] = ACTIONS(6013), - [anon_sym_BSLASHCref] = ACTIONS(6013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnameCref] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHlabelcref] = ACTIONS(6013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCrefrange] = ACTIONS(6013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnewlabel] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHdef] = ACTIONS(6013), - [anon_sym_BSLASHlet] = ACTIONS(6013), - [anon_sym_BSLASHleft] = ACTIONS(6013), - [anon_sym_BSLASHbig] = ACTIONS(6013), - [anon_sym_BSLASHBig] = ACTIONS(6013), - [anon_sym_BSLASHbigg] = ACTIONS(6013), - [anon_sym_BSLASHBigg] = ACTIONS(6013), - [anon_sym_BSLASHbigl] = ACTIONS(6013), - [anon_sym_BSLASHBigl] = ACTIONS(6013), - [anon_sym_BSLASHbiggl] = ACTIONS(6013), - [anon_sym_BSLASHBiggl] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6013), - [anon_sym_BSLASHgls] = ACTIONS(6013), - [anon_sym_BSLASHGls] = ACTIONS(6013), - [anon_sym_BSLASHGLS] = ACTIONS(6013), - [anon_sym_BSLASHglspl] = ACTIONS(6013), - [anon_sym_BSLASHGlspl] = ACTIONS(6013), - [anon_sym_BSLASHGLSpl] = ACTIONS(6013), - [anon_sym_BSLASHglsdisp] = ACTIONS(6013), - [anon_sym_BSLASHglslink] = ACTIONS(6013), - [anon_sym_BSLASHglstext] = ACTIONS(6013), - [anon_sym_BSLASHGlstext] = ACTIONS(6013), - [anon_sym_BSLASHGLStext] = ACTIONS(6013), - [anon_sym_BSLASHglsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6013), - [anon_sym_BSLASHglsplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSplural] = ACTIONS(6013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHglsname] = ACTIONS(6013), - [anon_sym_BSLASHGlsname] = ACTIONS(6013), - [anon_sym_BSLASHGLSname] = ACTIONS(6013), - [anon_sym_BSLASHglssymbol] = ACTIONS(6013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6013), - [anon_sym_BSLASHglsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6013), - [anon_sym_BSLASHglsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6013), - [anon_sym_BSLASHglsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6013), - [anon_sym_BSLASHglsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6013), - [anon_sym_BSLASHglsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6013), - [anon_sym_BSLASHnewacronym] = ACTIONS(6013), - [anon_sym_BSLASHacrshort] = ACTIONS(6013), - [anon_sym_BSLASHAcrshort] = ACTIONS(6013), - [anon_sym_BSLASHACRshort] = ACTIONS(6013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6013), - [anon_sym_BSLASHacrlong] = ACTIONS(6013), - [anon_sym_BSLASHAcrlong] = ACTIONS(6013), - [anon_sym_BSLASHACRlong] = ACTIONS(6013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6013), - [anon_sym_BSLASHacrfull] = ACTIONS(6013), - [anon_sym_BSLASHAcrfull] = ACTIONS(6013), - [anon_sym_BSLASHACRfull] = ACTIONS(6013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6013), - [anon_sym_BSLASHacs] = ACTIONS(6013), - [anon_sym_BSLASHAcs] = ACTIONS(6013), - [anon_sym_BSLASHacsp] = ACTIONS(6013), - [anon_sym_BSLASHAcsp] = ACTIONS(6013), - [anon_sym_BSLASHacl] = ACTIONS(6013), - [anon_sym_BSLASHAcl] = ACTIONS(6013), - [anon_sym_BSLASHaclp] = ACTIONS(6013), - [anon_sym_BSLASHAclp] = ACTIONS(6013), - [anon_sym_BSLASHacf] = ACTIONS(6013), - [anon_sym_BSLASHAcf] = ACTIONS(6013), - [anon_sym_BSLASHacfp] = ACTIONS(6013), - [anon_sym_BSLASHAcfp] = ACTIONS(6013), - [anon_sym_BSLASHac] = ACTIONS(6013), - [anon_sym_BSLASHAc] = ACTIONS(6013), - [anon_sym_BSLASHacp] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6013), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6013), - [anon_sym_BSLASHcolor] = ACTIONS(6013), - [anon_sym_BSLASHcolorbox] = ACTIONS(6013), - [anon_sym_BSLASHtextcolor] = ACTIONS(6013), - [anon_sym_BSLASHpagecolor] = ACTIONS(6013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6013), - [anon_sym_BSLASHtext] = ACTIONS(6013), - [anon_sym_BSLASHintertext] = ACTIONS(6013), - [anon_sym_shortintertext] = ACTIONS(6013), - }, - [1025] = { - [ts_builtin_sym_end] = ACTIONS(6187), - [sym_command_name] = ACTIONS(6185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_RBRACK] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_EQ] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_BSLASHpart] = ACTIONS(6185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddpart] = ACTIONS(6185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6187), - [anon_sym_BSLASHchapter] = ACTIONS(6185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddchap] = ACTIONS(6185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsection] = ACTIONS(6185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddsec] = ACTIONS(6185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubsection] = ACTIONS(6185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHparagraph] = ACTIONS(6185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6187), - [anon_sym_BSLASHitem] = ACTIONS(6185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6187), - [anon_sym_LBRACE] = ACTIONS(6187), - [anon_sym_RBRACE] = ACTIONS(6187), - [sym_word] = ACTIONS(6185), - [sym_placeholder] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6187), - [anon_sym_DASH] = ACTIONS(6187), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_SQUOTE] = ACTIONS(6185), - [anon_sym__] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), - [anon_sym_DOLLAR] = ACTIONS(6185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), - [anon_sym_BSLASHbegin] = ACTIONS(6185), - [anon_sym_BSLASHtitle] = ACTIONS(6185), - [anon_sym_BSLASHauthor] = ACTIONS(6185), - [anon_sym_BSLASHusepackage] = ACTIONS(6185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), - [anon_sym_BSLASHinclude] = ACTIONS(6185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), - [anon_sym_BSLASHinput] = ACTIONS(6185), - [anon_sym_BSLASHsubfile] = ACTIONS(6185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), - [anon_sym_BSLASHbibliography] = ACTIONS(6185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), - [anon_sym_BSLASHincludesvg] = ACTIONS(6185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), - [anon_sym_BSLASHimport] = ACTIONS(6185), - [anon_sym_BSLASHsubimport] = ACTIONS(6185), - [anon_sym_BSLASHinputfrom] = ACTIONS(6185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), - [anon_sym_BSLASHincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHcaption] = ACTIONS(6185), - [anon_sym_BSLASHcite] = ACTIONS(6185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCite] = ACTIONS(6185), - [anon_sym_BSLASHnocite] = ACTIONS(6185), - [anon_sym_BSLASHcitet] = ACTIONS(6185), - [anon_sym_BSLASHcitep] = ACTIONS(6185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteauthor] = ACTIONS(6185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitetitle] = ACTIONS(6185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteyear] = ACTIONS(6185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitedate] = ACTIONS(6185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteurl] = ACTIONS(6185), - [anon_sym_BSLASHfullcite] = ACTIONS(6185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), - [anon_sym_BSLASHcitealt] = ACTIONS(6185), - [anon_sym_BSLASHcitealp] = ACTIONS(6185), - [anon_sym_BSLASHcitetext] = ACTIONS(6185), - [anon_sym_BSLASHparencite] = ACTIONS(6185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHParencite] = ACTIONS(6185), - [anon_sym_BSLASHfootcite] = ACTIONS(6185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), - [anon_sym_BSLASHtextcite] = ACTIONS(6185), - [anon_sym_BSLASHTextcite] = ACTIONS(6185), - [anon_sym_BSLASHsmartcite] = ACTIONS(6185), - [anon_sym_BSLASHSmartcite] = ACTIONS(6185), - [anon_sym_BSLASHsupercite] = ACTIONS(6185), - [anon_sym_BSLASHautocite] = ACTIONS(6185), - [anon_sym_BSLASHAutocite] = ACTIONS(6185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHvolcite] = ACTIONS(6185), - [anon_sym_BSLASHVolcite] = ACTIONS(6185), - [anon_sym_BSLASHpvolcite] = ACTIONS(6185), - [anon_sym_BSLASHPvolcite] = ACTIONS(6185), - [anon_sym_BSLASHfvolcite] = ACTIONS(6185), - [anon_sym_BSLASHftvolcite] = ACTIONS(6185), - [anon_sym_BSLASHsvolcite] = ACTIONS(6185), - [anon_sym_BSLASHSvolcite] = ACTIONS(6185), - [anon_sym_BSLASHtvolcite] = ACTIONS(6185), - [anon_sym_BSLASHTvolcite] = ACTIONS(6185), - [anon_sym_BSLASHavolcite] = ACTIONS(6185), - [anon_sym_BSLASHAvolcite] = ACTIONS(6185), - [anon_sym_BSLASHnotecite] = ACTIONS(6185), - [anon_sym_BSLASHNotecite] = ACTIONS(6185), - [anon_sym_BSLASHpnotecite] = ACTIONS(6185), - [anon_sym_BSLASHPnotecite] = ACTIONS(6185), - [anon_sym_BSLASHfnotecite] = ACTIONS(6185), - [anon_sym_BSLASHlabel] = ACTIONS(6185), - [anon_sym_BSLASHref] = ACTIONS(6185), - [anon_sym_BSLASHeqref] = ACTIONS(6185), - [anon_sym_BSLASHvref] = ACTIONS(6185), - [anon_sym_BSLASHVref] = ACTIONS(6185), - [anon_sym_BSLASHautoref] = ACTIONS(6185), - [anon_sym_BSLASHpageref] = ACTIONS(6185), - [anon_sym_BSLASHcref] = ACTIONS(6185), - [anon_sym_BSLASHCref] = ACTIONS(6185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnameCref] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHlabelcref] = ACTIONS(6185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCrefrange] = ACTIONS(6185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnewlabel] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHdef] = ACTIONS(6185), - [anon_sym_BSLASHlet] = ACTIONS(6185), - [anon_sym_BSLASHleft] = ACTIONS(6185), - [anon_sym_BSLASHbig] = ACTIONS(6185), - [anon_sym_BSLASHBig] = ACTIONS(6185), - [anon_sym_BSLASHbigg] = ACTIONS(6185), - [anon_sym_BSLASHBigg] = ACTIONS(6185), - [anon_sym_BSLASHbigl] = ACTIONS(6185), - [anon_sym_BSLASHBigl] = ACTIONS(6185), - [anon_sym_BSLASHbiggl] = ACTIONS(6185), - [anon_sym_BSLASHBiggl] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), - [anon_sym_BSLASHgls] = ACTIONS(6185), - [anon_sym_BSLASHGls] = ACTIONS(6185), - [anon_sym_BSLASHGLS] = ACTIONS(6185), - [anon_sym_BSLASHglspl] = ACTIONS(6185), - [anon_sym_BSLASHGlspl] = ACTIONS(6185), - [anon_sym_BSLASHGLSpl] = ACTIONS(6185), - [anon_sym_BSLASHglsdisp] = ACTIONS(6185), - [anon_sym_BSLASHglslink] = ACTIONS(6185), - [anon_sym_BSLASHglstext] = ACTIONS(6185), - [anon_sym_BSLASHGlstext] = ACTIONS(6185), - [anon_sym_BSLASHGLStext] = ACTIONS(6185), - [anon_sym_BSLASHglsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), - [anon_sym_BSLASHglsplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSplural] = ACTIONS(6185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHglsname] = ACTIONS(6185), - [anon_sym_BSLASHGlsname] = ACTIONS(6185), - [anon_sym_BSLASHGLSname] = ACTIONS(6185), - [anon_sym_BSLASHglssymbol] = ACTIONS(6185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), - [anon_sym_BSLASHglsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), - [anon_sym_BSLASHglsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), - [anon_sym_BSLASHglsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), - [anon_sym_BSLASHglsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), - [anon_sym_BSLASHglsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), - [anon_sym_BSLASHnewacronym] = ACTIONS(6185), - [anon_sym_BSLASHacrshort] = ACTIONS(6185), - [anon_sym_BSLASHAcrshort] = ACTIONS(6185), - [anon_sym_BSLASHACRshort] = ACTIONS(6185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), - [anon_sym_BSLASHacrlong] = ACTIONS(6185), - [anon_sym_BSLASHAcrlong] = ACTIONS(6185), - [anon_sym_BSLASHACRlong] = ACTIONS(6185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), - [anon_sym_BSLASHacrfull] = ACTIONS(6185), - [anon_sym_BSLASHAcrfull] = ACTIONS(6185), - [anon_sym_BSLASHACRfull] = ACTIONS(6185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), - [anon_sym_BSLASHacs] = ACTIONS(6185), - [anon_sym_BSLASHAcs] = ACTIONS(6185), - [anon_sym_BSLASHacsp] = ACTIONS(6185), - [anon_sym_BSLASHAcsp] = ACTIONS(6185), - [anon_sym_BSLASHacl] = ACTIONS(6185), - [anon_sym_BSLASHAcl] = ACTIONS(6185), - [anon_sym_BSLASHaclp] = ACTIONS(6185), - [anon_sym_BSLASHAclp] = ACTIONS(6185), - [anon_sym_BSLASHacf] = ACTIONS(6185), - [anon_sym_BSLASHAcf] = ACTIONS(6185), - [anon_sym_BSLASHacfp] = ACTIONS(6185), - [anon_sym_BSLASHAcfp] = ACTIONS(6185), - [anon_sym_BSLASHac] = ACTIONS(6185), - [anon_sym_BSLASHAc] = ACTIONS(6185), - [anon_sym_BSLASHacp] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), - [anon_sym_BSLASHcolor] = ACTIONS(6185), - [anon_sym_BSLASHcolorbox] = ACTIONS(6185), - [anon_sym_BSLASHtextcolor] = ACTIONS(6185), - [anon_sym_BSLASHpagecolor] = ACTIONS(6185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), - [anon_sym_BSLASHtext] = ACTIONS(6185), - [anon_sym_BSLASHintertext] = ACTIONS(6185), - [anon_sym_shortintertext] = ACTIONS(6185), - }, - [1026] = { - [sym_brack_group_text] = STATE(1151), - [sym_command_name] = ACTIONS(6009), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6713), - [anon_sym_RBRACK] = ACTIONS(6011), - [anon_sym_COMMA] = ACTIONS(6011), - [anon_sym_EQ] = ACTIONS(6011), - [anon_sym_LPAREN] = ACTIONS(6011), - [anon_sym_RPAREN] = ACTIONS(6011), - [anon_sym_BSLASHpart] = ACTIONS(6009), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddpart] = ACTIONS(6009), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6011), - [anon_sym_BSLASHchapter] = ACTIONS(6009), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddchap] = ACTIONS(6009), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsection] = ACTIONS(6009), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHaddsec] = ACTIONS(6009), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubsection] = ACTIONS(6009), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6009), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6011), - [anon_sym_BSLASHparagraph] = ACTIONS(6009), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6011), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6009), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6011), - [anon_sym_BSLASHitem] = ACTIONS(6009), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6011), - [anon_sym_LBRACE] = ACTIONS(6011), - [sym_word] = ACTIONS(6009), - [sym_placeholder] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_SQUOTE] = ACTIONS(6009), - [anon_sym__] = ACTIONS(6011), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6011), - [anon_sym_DOLLAR] = ACTIONS(6009), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6011), - [anon_sym_BSLASHbegin] = ACTIONS(6009), - [anon_sym_BSLASHend] = ACTIONS(6009), - [anon_sym_BSLASHtitle] = ACTIONS(6009), - [anon_sym_BSLASHauthor] = ACTIONS(6009), - [anon_sym_BSLASHusepackage] = ACTIONS(6009), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6009), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6009), - [anon_sym_BSLASHinclude] = ACTIONS(6009), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6009), - [anon_sym_BSLASHinput] = ACTIONS(6009), - [anon_sym_BSLASHsubfile] = ACTIONS(6009), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6009), - [anon_sym_BSLASHbibliography] = ACTIONS(6009), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6009), - [anon_sym_BSLASHincludesvg] = ACTIONS(6009), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6009), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6009), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6009), - [anon_sym_BSLASHimport] = ACTIONS(6009), - [anon_sym_BSLASHsubimport] = ACTIONS(6009), - [anon_sym_BSLASHinputfrom] = ACTIONS(6009), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6009), - [anon_sym_BSLASHincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHcaption] = ACTIONS(6009), - [anon_sym_BSLASHcite] = ACTIONS(6009), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCite] = ACTIONS(6009), - [anon_sym_BSLASHnocite] = ACTIONS(6009), - [anon_sym_BSLASHcitet] = ACTIONS(6009), - [anon_sym_BSLASHcitep] = ACTIONS(6009), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteauthor] = ACTIONS(6009), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6009), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitetitle] = ACTIONS(6009), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteyear] = ACTIONS(6009), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitedate] = ACTIONS(6009), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteurl] = ACTIONS(6009), - [anon_sym_BSLASHfullcite] = ACTIONS(6009), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6009), - [anon_sym_BSLASHcitealt] = ACTIONS(6009), - [anon_sym_BSLASHcitealp] = ACTIONS(6009), - [anon_sym_BSLASHcitetext] = ACTIONS(6009), - [anon_sym_BSLASHparencite] = ACTIONS(6009), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHParencite] = ACTIONS(6009), - [anon_sym_BSLASHfootcite] = ACTIONS(6009), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6009), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6009), - [anon_sym_BSLASHtextcite] = ACTIONS(6009), - [anon_sym_BSLASHTextcite] = ACTIONS(6009), - [anon_sym_BSLASHsmartcite] = ACTIONS(6009), - [anon_sym_BSLASHSmartcite] = ACTIONS(6009), - [anon_sym_BSLASHsupercite] = ACTIONS(6009), - [anon_sym_BSLASHautocite] = ACTIONS(6009), - [anon_sym_BSLASHAutocite] = ACTIONS(6009), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHvolcite] = ACTIONS(6009), - [anon_sym_BSLASHVolcite] = ACTIONS(6009), - [anon_sym_BSLASHpvolcite] = ACTIONS(6009), - [anon_sym_BSLASHPvolcite] = ACTIONS(6009), - [anon_sym_BSLASHfvolcite] = ACTIONS(6009), - [anon_sym_BSLASHftvolcite] = ACTIONS(6009), - [anon_sym_BSLASHsvolcite] = ACTIONS(6009), - [anon_sym_BSLASHSvolcite] = ACTIONS(6009), - [anon_sym_BSLASHtvolcite] = ACTIONS(6009), - [anon_sym_BSLASHTvolcite] = ACTIONS(6009), - [anon_sym_BSLASHavolcite] = ACTIONS(6009), - [anon_sym_BSLASHAvolcite] = ACTIONS(6009), - [anon_sym_BSLASHnotecite] = ACTIONS(6009), - [anon_sym_BSLASHNotecite] = ACTIONS(6009), - [anon_sym_BSLASHpnotecite] = ACTIONS(6009), - [anon_sym_BSLASHPnotecite] = ACTIONS(6009), - [anon_sym_BSLASHfnotecite] = ACTIONS(6009), - [anon_sym_BSLASHlabel] = ACTIONS(6009), - [anon_sym_BSLASHref] = ACTIONS(6009), - [anon_sym_BSLASHeqref] = ACTIONS(6009), - [anon_sym_BSLASHvref] = ACTIONS(6009), - [anon_sym_BSLASHVref] = ACTIONS(6009), - [anon_sym_BSLASHautoref] = ACTIONS(6009), - [anon_sym_BSLASHpageref] = ACTIONS(6009), - [anon_sym_BSLASHcref] = ACTIONS(6009), - [anon_sym_BSLASHCref] = ACTIONS(6009), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnameCref] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHlabelcref] = ACTIONS(6009), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCrefrange] = ACTIONS(6009), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnewlabel] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6009), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6009), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6011), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHdef] = ACTIONS(6009), - [anon_sym_BSLASHlet] = ACTIONS(6009), - [anon_sym_BSLASHleft] = ACTIONS(6009), - [anon_sym_BSLASHbig] = ACTIONS(6009), - [anon_sym_BSLASHBig] = ACTIONS(6009), - [anon_sym_BSLASHbigg] = ACTIONS(6009), - [anon_sym_BSLASHBigg] = ACTIONS(6009), - [anon_sym_BSLASHbigl] = ACTIONS(6009), - [anon_sym_BSLASHBigl] = ACTIONS(6009), - [anon_sym_BSLASHbiggl] = ACTIONS(6009), - [anon_sym_BSLASHBiggl] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6009), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6009), - [anon_sym_BSLASHgls] = ACTIONS(6009), - [anon_sym_BSLASHGls] = ACTIONS(6009), - [anon_sym_BSLASHGLS] = ACTIONS(6009), - [anon_sym_BSLASHglspl] = ACTIONS(6009), - [anon_sym_BSLASHGlspl] = ACTIONS(6009), - [anon_sym_BSLASHGLSpl] = ACTIONS(6009), - [anon_sym_BSLASHglsdisp] = ACTIONS(6009), - [anon_sym_BSLASHglslink] = ACTIONS(6009), - [anon_sym_BSLASHglstext] = ACTIONS(6009), - [anon_sym_BSLASHGlstext] = ACTIONS(6009), - [anon_sym_BSLASHGLStext] = ACTIONS(6009), - [anon_sym_BSLASHglsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6009), - [anon_sym_BSLASHglsplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSplural] = ACTIONS(6009), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHglsname] = ACTIONS(6009), - [anon_sym_BSLASHGlsname] = ACTIONS(6009), - [anon_sym_BSLASHGLSname] = ACTIONS(6009), - [anon_sym_BSLASHglssymbol] = ACTIONS(6009), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6009), - [anon_sym_BSLASHglsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6009), - [anon_sym_BSLASHglsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6009), - [anon_sym_BSLASHglsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6009), - [anon_sym_BSLASHglsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6009), - [anon_sym_BSLASHglsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6009), - [anon_sym_BSLASHnewacronym] = ACTIONS(6009), - [anon_sym_BSLASHacrshort] = ACTIONS(6009), - [anon_sym_BSLASHAcrshort] = ACTIONS(6009), - [anon_sym_BSLASHACRshort] = ACTIONS(6009), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6009), - [anon_sym_BSLASHacrlong] = ACTIONS(6009), - [anon_sym_BSLASHAcrlong] = ACTIONS(6009), - [anon_sym_BSLASHACRlong] = ACTIONS(6009), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6009), - [anon_sym_BSLASHacrfull] = ACTIONS(6009), - [anon_sym_BSLASHAcrfull] = ACTIONS(6009), - [anon_sym_BSLASHACRfull] = ACTIONS(6009), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6009), - [anon_sym_BSLASHacs] = ACTIONS(6009), - [anon_sym_BSLASHAcs] = ACTIONS(6009), - [anon_sym_BSLASHacsp] = ACTIONS(6009), - [anon_sym_BSLASHAcsp] = ACTIONS(6009), - [anon_sym_BSLASHacl] = ACTIONS(6009), - [anon_sym_BSLASHAcl] = ACTIONS(6009), - [anon_sym_BSLASHaclp] = ACTIONS(6009), - [anon_sym_BSLASHAclp] = ACTIONS(6009), - [anon_sym_BSLASHacf] = ACTIONS(6009), - [anon_sym_BSLASHAcf] = ACTIONS(6009), - [anon_sym_BSLASHacfp] = ACTIONS(6009), - [anon_sym_BSLASHAcfp] = ACTIONS(6009), - [anon_sym_BSLASHac] = ACTIONS(6009), - [anon_sym_BSLASHAc] = ACTIONS(6009), - [anon_sym_BSLASHacp] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6009), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6009), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6009), - [anon_sym_BSLASHcolor] = ACTIONS(6009), - [anon_sym_BSLASHcolorbox] = ACTIONS(6009), - [anon_sym_BSLASHtextcolor] = ACTIONS(6009), - [anon_sym_BSLASHpagecolor] = ACTIONS(6009), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6009), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6009), - [anon_sym_BSLASHtext] = ACTIONS(6009), - [anon_sym_BSLASHintertext] = ACTIONS(6009), - [anon_sym_shortintertext] = ACTIONS(6009), - }, - [1027] = { - [ts_builtin_sym_end] = ACTIONS(6123), - [sym_command_name] = ACTIONS(6121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6121), - [anon_sym_LBRACK] = ACTIONS(6123), - [anon_sym_RBRACK] = ACTIONS(6123), - [anon_sym_COMMA] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(6123), - [anon_sym_LPAREN] = ACTIONS(6123), - [anon_sym_RPAREN] = ACTIONS(6123), - [anon_sym_BSLASHpart] = ACTIONS(6121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddpart] = ACTIONS(6121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6123), - [anon_sym_BSLASHchapter] = ACTIONS(6121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddchap] = ACTIONS(6121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsection] = ACTIONS(6121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddsec] = ACTIONS(6121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubsection] = ACTIONS(6121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHparagraph] = ACTIONS(6121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6123), - [anon_sym_BSLASHitem] = ACTIONS(6121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6123), - [anon_sym_LBRACE] = ACTIONS(6123), - [anon_sym_RBRACE] = ACTIONS(6123), - [sym_word] = ACTIONS(6121), - [sym_placeholder] = ACTIONS(6123), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6123), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_LT] = ACTIONS(6121), - [anon_sym_GT] = ACTIONS(6121), - [anon_sym_BANG] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_SQUOTE] = ACTIONS(6121), - [anon_sym__] = ACTIONS(6123), - [anon_sym_CARET] = ACTIONS(6123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6123), - [anon_sym_DOLLAR] = ACTIONS(6121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6123), - [anon_sym_BSLASHbegin] = ACTIONS(6121), - [anon_sym_BSLASHtitle] = ACTIONS(6121), - [anon_sym_BSLASHauthor] = ACTIONS(6121), - [anon_sym_BSLASHusepackage] = ACTIONS(6121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6121), - [anon_sym_BSLASHinclude] = ACTIONS(6121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6121), - [anon_sym_BSLASHinput] = ACTIONS(6121), - [anon_sym_BSLASHsubfile] = ACTIONS(6121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6121), - [anon_sym_BSLASHbibliography] = ACTIONS(6121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6121), - [anon_sym_BSLASHincludesvg] = ACTIONS(6121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6121), - [anon_sym_BSLASHimport] = ACTIONS(6121), - [anon_sym_BSLASHsubimport] = ACTIONS(6121), - [anon_sym_BSLASHinputfrom] = ACTIONS(6121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6121), - [anon_sym_BSLASHincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHcaption] = ACTIONS(6121), - [anon_sym_BSLASHcite] = ACTIONS(6121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCite] = ACTIONS(6121), - [anon_sym_BSLASHnocite] = ACTIONS(6121), - [anon_sym_BSLASHcitet] = ACTIONS(6121), - [anon_sym_BSLASHcitep] = ACTIONS(6121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteauthor] = ACTIONS(6121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitetitle] = ACTIONS(6121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteyear] = ACTIONS(6121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitedate] = ACTIONS(6121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteurl] = ACTIONS(6121), - [anon_sym_BSLASHfullcite] = ACTIONS(6121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6121), - [anon_sym_BSLASHcitealt] = ACTIONS(6121), - [anon_sym_BSLASHcitealp] = ACTIONS(6121), - [anon_sym_BSLASHcitetext] = ACTIONS(6121), - [anon_sym_BSLASHparencite] = ACTIONS(6121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHParencite] = ACTIONS(6121), - [anon_sym_BSLASHfootcite] = ACTIONS(6121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6121), - [anon_sym_BSLASHtextcite] = ACTIONS(6121), - [anon_sym_BSLASHTextcite] = ACTIONS(6121), - [anon_sym_BSLASHsmartcite] = ACTIONS(6121), - [anon_sym_BSLASHSmartcite] = ACTIONS(6121), - [anon_sym_BSLASHsupercite] = ACTIONS(6121), - [anon_sym_BSLASHautocite] = ACTIONS(6121), - [anon_sym_BSLASHAutocite] = ACTIONS(6121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHvolcite] = ACTIONS(6121), - [anon_sym_BSLASHVolcite] = ACTIONS(6121), - [anon_sym_BSLASHpvolcite] = ACTIONS(6121), - [anon_sym_BSLASHPvolcite] = ACTIONS(6121), - [anon_sym_BSLASHfvolcite] = ACTIONS(6121), - [anon_sym_BSLASHftvolcite] = ACTIONS(6121), - [anon_sym_BSLASHsvolcite] = ACTIONS(6121), - [anon_sym_BSLASHSvolcite] = ACTIONS(6121), - [anon_sym_BSLASHtvolcite] = ACTIONS(6121), - [anon_sym_BSLASHTvolcite] = ACTIONS(6121), - [anon_sym_BSLASHavolcite] = ACTIONS(6121), - [anon_sym_BSLASHAvolcite] = ACTIONS(6121), - [anon_sym_BSLASHnotecite] = ACTIONS(6121), - [anon_sym_BSLASHNotecite] = ACTIONS(6121), - [anon_sym_BSLASHpnotecite] = ACTIONS(6121), - [anon_sym_BSLASHPnotecite] = ACTIONS(6121), - [anon_sym_BSLASHfnotecite] = ACTIONS(6121), - [anon_sym_BSLASHlabel] = ACTIONS(6121), - [anon_sym_BSLASHref] = ACTIONS(6121), - [anon_sym_BSLASHeqref] = ACTIONS(6121), - [anon_sym_BSLASHvref] = ACTIONS(6121), - [anon_sym_BSLASHVref] = ACTIONS(6121), - [anon_sym_BSLASHautoref] = ACTIONS(6121), - [anon_sym_BSLASHpageref] = ACTIONS(6121), - [anon_sym_BSLASHcref] = ACTIONS(6121), - [anon_sym_BSLASHCref] = ACTIONS(6121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnameCref] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHlabelcref] = ACTIONS(6121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCrefrange] = ACTIONS(6121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnewlabel] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6123), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHdef] = ACTIONS(6121), - [anon_sym_BSLASHlet] = ACTIONS(6121), - [anon_sym_BSLASHleft] = ACTIONS(6121), - [anon_sym_BSLASHbig] = ACTIONS(6121), - [anon_sym_BSLASHBig] = ACTIONS(6121), - [anon_sym_BSLASHbigg] = ACTIONS(6121), - [anon_sym_BSLASHBigg] = ACTIONS(6121), - [anon_sym_BSLASHbigl] = ACTIONS(6121), - [anon_sym_BSLASHBigl] = ACTIONS(6121), - [anon_sym_BSLASHbiggl] = ACTIONS(6121), - [anon_sym_BSLASHBiggl] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6121), - [anon_sym_BSLASHgls] = ACTIONS(6121), - [anon_sym_BSLASHGls] = ACTIONS(6121), - [anon_sym_BSLASHGLS] = ACTIONS(6121), - [anon_sym_BSLASHglspl] = ACTIONS(6121), - [anon_sym_BSLASHGlspl] = ACTIONS(6121), - [anon_sym_BSLASHGLSpl] = ACTIONS(6121), - [anon_sym_BSLASHglsdisp] = ACTIONS(6121), - [anon_sym_BSLASHglslink] = ACTIONS(6121), - [anon_sym_BSLASHglstext] = ACTIONS(6121), - [anon_sym_BSLASHGlstext] = ACTIONS(6121), - [anon_sym_BSLASHGLStext] = ACTIONS(6121), - [anon_sym_BSLASHglsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6121), - [anon_sym_BSLASHglsplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSplural] = ACTIONS(6121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHglsname] = ACTIONS(6121), - [anon_sym_BSLASHGlsname] = ACTIONS(6121), - [anon_sym_BSLASHGLSname] = ACTIONS(6121), - [anon_sym_BSLASHglssymbol] = ACTIONS(6121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6121), - [anon_sym_BSLASHglsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6121), - [anon_sym_BSLASHglsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6121), - [anon_sym_BSLASHglsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6121), - [anon_sym_BSLASHglsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6121), - [anon_sym_BSLASHglsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6121), - [anon_sym_BSLASHnewacronym] = ACTIONS(6121), - [anon_sym_BSLASHacrshort] = ACTIONS(6121), - [anon_sym_BSLASHAcrshort] = ACTIONS(6121), - [anon_sym_BSLASHACRshort] = ACTIONS(6121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6121), - [anon_sym_BSLASHacrlong] = ACTIONS(6121), - [anon_sym_BSLASHAcrlong] = ACTIONS(6121), - [anon_sym_BSLASHACRlong] = ACTIONS(6121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6121), - [anon_sym_BSLASHacrfull] = ACTIONS(6121), - [anon_sym_BSLASHAcrfull] = ACTIONS(6121), - [anon_sym_BSLASHACRfull] = ACTIONS(6121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6121), - [anon_sym_BSLASHacs] = ACTIONS(6121), - [anon_sym_BSLASHAcs] = ACTIONS(6121), - [anon_sym_BSLASHacsp] = ACTIONS(6121), - [anon_sym_BSLASHAcsp] = ACTIONS(6121), - [anon_sym_BSLASHacl] = ACTIONS(6121), - [anon_sym_BSLASHAcl] = ACTIONS(6121), - [anon_sym_BSLASHaclp] = ACTIONS(6121), - [anon_sym_BSLASHAclp] = ACTIONS(6121), - [anon_sym_BSLASHacf] = ACTIONS(6121), - [anon_sym_BSLASHAcf] = ACTIONS(6121), - [anon_sym_BSLASHacfp] = ACTIONS(6121), - [anon_sym_BSLASHAcfp] = ACTIONS(6121), - [anon_sym_BSLASHac] = ACTIONS(6121), - [anon_sym_BSLASHAc] = ACTIONS(6121), - [anon_sym_BSLASHacp] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6121), - [anon_sym_BSLASHcolor] = ACTIONS(6121), - [anon_sym_BSLASHcolorbox] = ACTIONS(6121), - [anon_sym_BSLASHtextcolor] = ACTIONS(6121), - [anon_sym_BSLASHpagecolor] = ACTIONS(6121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6121), - [anon_sym_BSLASHtext] = ACTIONS(6121), - [anon_sym_BSLASHintertext] = ACTIONS(6121), - [anon_sym_shortintertext] = ACTIONS(6121), - }, - [1028] = { - [ts_builtin_sym_end] = ACTIONS(6447), - [sym_command_name] = ACTIONS(6445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6445), - [anon_sym_LBRACK] = ACTIONS(6447), - [anon_sym_RBRACK] = ACTIONS(6447), - [anon_sym_COMMA] = ACTIONS(6447), - [anon_sym_EQ] = ACTIONS(6447), - [anon_sym_LPAREN] = ACTIONS(6447), - [anon_sym_RPAREN] = ACTIONS(6447), - [anon_sym_BSLASHpart] = ACTIONS(6445), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddpart] = ACTIONS(6445), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6447), - [anon_sym_BSLASHchapter] = ACTIONS(6445), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddchap] = ACTIONS(6445), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsection] = ACTIONS(6445), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddsec] = ACTIONS(6445), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubsection] = ACTIONS(6445), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6445), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHparagraph] = ACTIONS(6445), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6445), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6447), - [anon_sym_BSLASHitem] = ACTIONS(6445), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6447), - [anon_sym_LBRACE] = ACTIONS(6447), - [anon_sym_RBRACE] = ACTIONS(6447), - [sym_word] = ACTIONS(6445), - [sym_placeholder] = ACTIONS(6447), - [anon_sym_PLUS] = ACTIONS(6447), - [anon_sym_DASH] = ACTIONS(6447), - [anon_sym_STAR] = ACTIONS(6447), - [anon_sym_SLASH] = ACTIONS(6447), - [anon_sym_LT] = ACTIONS(6445), - [anon_sym_GT] = ACTIONS(6445), - [anon_sym_BANG] = ACTIONS(6445), - [anon_sym_PIPE] = ACTIONS(6445), - [anon_sym_COLON] = ACTIONS(6445), - [anon_sym_SQUOTE] = ACTIONS(6445), - [anon_sym__] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6447), - [anon_sym_DOLLAR] = ACTIONS(6445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6447), - [anon_sym_BSLASHbegin] = ACTIONS(6445), - [anon_sym_BSLASHtitle] = ACTIONS(6445), - [anon_sym_BSLASHauthor] = ACTIONS(6445), - [anon_sym_BSLASHusepackage] = ACTIONS(6445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6445), - [anon_sym_BSLASHinclude] = ACTIONS(6445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6445), - [anon_sym_BSLASHinput] = ACTIONS(6445), - [anon_sym_BSLASHsubfile] = ACTIONS(6445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6445), - [anon_sym_BSLASHbibliography] = ACTIONS(6445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6445), - [anon_sym_BSLASHincludesvg] = ACTIONS(6445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6445), - [anon_sym_BSLASHimport] = ACTIONS(6445), - [anon_sym_BSLASHsubimport] = ACTIONS(6445), - [anon_sym_BSLASHinputfrom] = ACTIONS(6445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6445), - [anon_sym_BSLASHincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHcaption] = ACTIONS(6445), - [anon_sym_BSLASHcite] = ACTIONS(6445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCite] = ACTIONS(6445), - [anon_sym_BSLASHnocite] = ACTIONS(6445), - [anon_sym_BSLASHcitet] = ACTIONS(6445), - [anon_sym_BSLASHcitep] = ACTIONS(6445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteauthor] = ACTIONS(6445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitetitle] = ACTIONS(6445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteyear] = ACTIONS(6445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitedate] = ACTIONS(6445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteurl] = ACTIONS(6445), - [anon_sym_BSLASHfullcite] = ACTIONS(6445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6445), - [anon_sym_BSLASHcitealt] = ACTIONS(6445), - [anon_sym_BSLASHcitealp] = ACTIONS(6445), - [anon_sym_BSLASHcitetext] = ACTIONS(6445), - [anon_sym_BSLASHparencite] = ACTIONS(6445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHParencite] = ACTIONS(6445), - [anon_sym_BSLASHfootcite] = ACTIONS(6445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6445), - [anon_sym_BSLASHtextcite] = ACTIONS(6445), - [anon_sym_BSLASHTextcite] = ACTIONS(6445), - [anon_sym_BSLASHsmartcite] = ACTIONS(6445), - [anon_sym_BSLASHSmartcite] = ACTIONS(6445), - [anon_sym_BSLASHsupercite] = ACTIONS(6445), - [anon_sym_BSLASHautocite] = ACTIONS(6445), - [anon_sym_BSLASHAutocite] = ACTIONS(6445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHvolcite] = ACTIONS(6445), - [anon_sym_BSLASHVolcite] = ACTIONS(6445), - [anon_sym_BSLASHpvolcite] = ACTIONS(6445), - [anon_sym_BSLASHPvolcite] = ACTIONS(6445), - [anon_sym_BSLASHfvolcite] = ACTIONS(6445), - [anon_sym_BSLASHftvolcite] = ACTIONS(6445), - [anon_sym_BSLASHsvolcite] = ACTIONS(6445), - [anon_sym_BSLASHSvolcite] = ACTIONS(6445), - [anon_sym_BSLASHtvolcite] = ACTIONS(6445), - [anon_sym_BSLASHTvolcite] = ACTIONS(6445), - [anon_sym_BSLASHavolcite] = ACTIONS(6445), - [anon_sym_BSLASHAvolcite] = ACTIONS(6445), - [anon_sym_BSLASHnotecite] = ACTIONS(6445), - [anon_sym_BSLASHNotecite] = ACTIONS(6445), - [anon_sym_BSLASHpnotecite] = ACTIONS(6445), - [anon_sym_BSLASHPnotecite] = ACTIONS(6445), - [anon_sym_BSLASHfnotecite] = ACTIONS(6445), - [anon_sym_BSLASHlabel] = ACTIONS(6445), - [anon_sym_BSLASHref] = ACTIONS(6445), - [anon_sym_BSLASHeqref] = ACTIONS(6445), - [anon_sym_BSLASHvref] = ACTIONS(6445), - [anon_sym_BSLASHVref] = ACTIONS(6445), - [anon_sym_BSLASHautoref] = ACTIONS(6445), - [anon_sym_BSLASHpageref] = ACTIONS(6445), - [anon_sym_BSLASHcref] = ACTIONS(6445), - [anon_sym_BSLASHCref] = ACTIONS(6445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnameCref] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHlabelcref] = ACTIONS(6445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCrefrange] = ACTIONS(6445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnewlabel] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6447), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHdef] = ACTIONS(6445), - [anon_sym_BSLASHlet] = ACTIONS(6445), - [anon_sym_BSLASHleft] = ACTIONS(6445), - [anon_sym_BSLASHbig] = ACTIONS(6445), - [anon_sym_BSLASHBig] = ACTIONS(6445), - [anon_sym_BSLASHbigg] = ACTIONS(6445), - [anon_sym_BSLASHBigg] = ACTIONS(6445), - [anon_sym_BSLASHbigl] = ACTIONS(6445), - [anon_sym_BSLASHBigl] = ACTIONS(6445), - [anon_sym_BSLASHbiggl] = ACTIONS(6445), - [anon_sym_BSLASHBiggl] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6445), - [anon_sym_BSLASHgls] = ACTIONS(6445), - [anon_sym_BSLASHGls] = ACTIONS(6445), - [anon_sym_BSLASHGLS] = ACTIONS(6445), - [anon_sym_BSLASHglspl] = ACTIONS(6445), - [anon_sym_BSLASHGlspl] = ACTIONS(6445), - [anon_sym_BSLASHGLSpl] = ACTIONS(6445), - [anon_sym_BSLASHglsdisp] = ACTIONS(6445), - [anon_sym_BSLASHglslink] = ACTIONS(6445), - [anon_sym_BSLASHglstext] = ACTIONS(6445), - [anon_sym_BSLASHGlstext] = ACTIONS(6445), - [anon_sym_BSLASHGLStext] = ACTIONS(6445), - [anon_sym_BSLASHglsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6445), - [anon_sym_BSLASHglsplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSplural] = ACTIONS(6445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHglsname] = ACTIONS(6445), - [anon_sym_BSLASHGlsname] = ACTIONS(6445), - [anon_sym_BSLASHGLSname] = ACTIONS(6445), - [anon_sym_BSLASHglssymbol] = ACTIONS(6445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6445), - [anon_sym_BSLASHglsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6445), - [anon_sym_BSLASHglsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6445), - [anon_sym_BSLASHglsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6445), - [anon_sym_BSLASHglsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6445), - [anon_sym_BSLASHglsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6445), - [anon_sym_BSLASHnewacronym] = ACTIONS(6445), - [anon_sym_BSLASHacrshort] = ACTIONS(6445), - [anon_sym_BSLASHAcrshort] = ACTIONS(6445), - [anon_sym_BSLASHACRshort] = ACTIONS(6445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6445), - [anon_sym_BSLASHacrlong] = ACTIONS(6445), - [anon_sym_BSLASHAcrlong] = ACTIONS(6445), - [anon_sym_BSLASHACRlong] = ACTIONS(6445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6445), - [anon_sym_BSLASHacrfull] = ACTIONS(6445), - [anon_sym_BSLASHAcrfull] = ACTIONS(6445), - [anon_sym_BSLASHACRfull] = ACTIONS(6445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6445), - [anon_sym_BSLASHacs] = ACTIONS(6445), - [anon_sym_BSLASHAcs] = ACTIONS(6445), - [anon_sym_BSLASHacsp] = ACTIONS(6445), - [anon_sym_BSLASHAcsp] = ACTIONS(6445), - [anon_sym_BSLASHacl] = ACTIONS(6445), - [anon_sym_BSLASHAcl] = ACTIONS(6445), - [anon_sym_BSLASHaclp] = ACTIONS(6445), - [anon_sym_BSLASHAclp] = ACTIONS(6445), - [anon_sym_BSLASHacf] = ACTIONS(6445), - [anon_sym_BSLASHAcf] = ACTIONS(6445), - [anon_sym_BSLASHacfp] = ACTIONS(6445), - [anon_sym_BSLASHAcfp] = ACTIONS(6445), - [anon_sym_BSLASHac] = ACTIONS(6445), - [anon_sym_BSLASHAc] = ACTIONS(6445), - [anon_sym_BSLASHacp] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6445), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6445), - [anon_sym_BSLASHcolor] = ACTIONS(6445), - [anon_sym_BSLASHcolorbox] = ACTIONS(6445), - [anon_sym_BSLASHtextcolor] = ACTIONS(6445), - [anon_sym_BSLASHpagecolor] = ACTIONS(6445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6445), - [anon_sym_BSLASHtext] = ACTIONS(6445), - [anon_sym_BSLASHintertext] = ACTIONS(6445), - [anon_sym_shortintertext] = ACTIONS(6445), - }, - [1029] = { - [ts_builtin_sym_end] = ACTIONS(185), - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(187), - [anon_sym_BSLASHpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddpart] = ACTIONS(187), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHchapter] = ACTIONS(187), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddchap] = ACTIONS(187), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(185), - [anon_sym_BSLASHsection] = ACTIONS(187), - [anon_sym_BSLASHsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddsec] = ACTIONS(187), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHparagraph] = ACTIONS(187), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph] = ACTIONS(187), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHitem] = ACTIONS(187), - [anon_sym_BSLASHitem_STAR] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [1030] = { - [ts_builtin_sym_end] = ACTIONS(6027), - [sym_command_name] = ACTIONS(6025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6025), - [anon_sym_LBRACK] = ACTIONS(6027), - [anon_sym_RBRACK] = ACTIONS(6027), - [anon_sym_COMMA] = ACTIONS(6027), - [anon_sym_EQ] = ACTIONS(6027), - [anon_sym_LPAREN] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_BSLASHpart] = ACTIONS(6025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddpart] = ACTIONS(6025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6027), - [anon_sym_BSLASHchapter] = ACTIONS(6025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddchap] = ACTIONS(6025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsection] = ACTIONS(6025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddsec] = ACTIONS(6025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubsection] = ACTIONS(6025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHparagraph] = ACTIONS(6025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6027), - [anon_sym_BSLASHitem] = ACTIONS(6025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6027), - [anon_sym_LBRACE] = ACTIONS(6027), - [anon_sym_RBRACE] = ACTIONS(6027), - [sym_word] = ACTIONS(6025), - [sym_placeholder] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6025), - [anon_sym_GT] = ACTIONS(6025), - [anon_sym_BANG] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_SQUOTE] = ACTIONS(6025), - [anon_sym__] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), - [anon_sym_BSLASHbegin] = ACTIONS(6025), - [anon_sym_BSLASHtitle] = ACTIONS(6025), - [anon_sym_BSLASHauthor] = ACTIONS(6025), - [anon_sym_BSLASHusepackage] = ACTIONS(6025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), - [anon_sym_BSLASHinclude] = ACTIONS(6025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), - [anon_sym_BSLASHinput] = ACTIONS(6025), - [anon_sym_BSLASHsubfile] = ACTIONS(6025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), - [anon_sym_BSLASHbibliography] = ACTIONS(6025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), - [anon_sym_BSLASHincludesvg] = ACTIONS(6025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), - [anon_sym_BSLASHimport] = ACTIONS(6025), - [anon_sym_BSLASHsubimport] = ACTIONS(6025), - [anon_sym_BSLASHinputfrom] = ACTIONS(6025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), - [anon_sym_BSLASHincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHcaption] = ACTIONS(6025), - [anon_sym_BSLASHcite] = ACTIONS(6025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCite] = ACTIONS(6025), - [anon_sym_BSLASHnocite] = ACTIONS(6025), - [anon_sym_BSLASHcitet] = ACTIONS(6025), - [anon_sym_BSLASHcitep] = ACTIONS(6025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteauthor] = ACTIONS(6025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitetitle] = ACTIONS(6025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteyear] = ACTIONS(6025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitedate] = ACTIONS(6025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteurl] = ACTIONS(6025), - [anon_sym_BSLASHfullcite] = ACTIONS(6025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), - [anon_sym_BSLASHcitealt] = ACTIONS(6025), - [anon_sym_BSLASHcitealp] = ACTIONS(6025), - [anon_sym_BSLASHcitetext] = ACTIONS(6025), - [anon_sym_BSLASHparencite] = ACTIONS(6025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHParencite] = ACTIONS(6025), - [anon_sym_BSLASHfootcite] = ACTIONS(6025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), - [anon_sym_BSLASHtextcite] = ACTIONS(6025), - [anon_sym_BSLASHTextcite] = ACTIONS(6025), - [anon_sym_BSLASHsmartcite] = ACTIONS(6025), - [anon_sym_BSLASHSmartcite] = ACTIONS(6025), - [anon_sym_BSLASHsupercite] = ACTIONS(6025), - [anon_sym_BSLASHautocite] = ACTIONS(6025), - [anon_sym_BSLASHAutocite] = ACTIONS(6025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHvolcite] = ACTIONS(6025), - [anon_sym_BSLASHVolcite] = ACTIONS(6025), - [anon_sym_BSLASHpvolcite] = ACTIONS(6025), - [anon_sym_BSLASHPvolcite] = ACTIONS(6025), - [anon_sym_BSLASHfvolcite] = ACTIONS(6025), - [anon_sym_BSLASHftvolcite] = ACTIONS(6025), - [anon_sym_BSLASHsvolcite] = ACTIONS(6025), - [anon_sym_BSLASHSvolcite] = ACTIONS(6025), - [anon_sym_BSLASHtvolcite] = ACTIONS(6025), - [anon_sym_BSLASHTvolcite] = ACTIONS(6025), - [anon_sym_BSLASHavolcite] = ACTIONS(6025), - [anon_sym_BSLASHAvolcite] = ACTIONS(6025), - [anon_sym_BSLASHnotecite] = ACTIONS(6025), - [anon_sym_BSLASHNotecite] = ACTIONS(6025), - [anon_sym_BSLASHpnotecite] = ACTIONS(6025), - [anon_sym_BSLASHPnotecite] = ACTIONS(6025), - [anon_sym_BSLASHfnotecite] = ACTIONS(6025), - [anon_sym_BSLASHlabel] = ACTIONS(6025), - [anon_sym_BSLASHref] = ACTIONS(6025), - [anon_sym_BSLASHeqref] = ACTIONS(6025), - [anon_sym_BSLASHvref] = ACTIONS(6025), - [anon_sym_BSLASHVref] = ACTIONS(6025), - [anon_sym_BSLASHautoref] = ACTIONS(6025), - [anon_sym_BSLASHpageref] = ACTIONS(6025), - [anon_sym_BSLASHcref] = ACTIONS(6025), - [anon_sym_BSLASHCref] = ACTIONS(6025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnameCref] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHlabelcref] = ACTIONS(6025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCrefrange] = ACTIONS(6025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnewlabel] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHdef] = ACTIONS(6025), - [anon_sym_BSLASHlet] = ACTIONS(6025), - [anon_sym_BSLASHleft] = ACTIONS(6025), - [anon_sym_BSLASHbig] = ACTIONS(6025), - [anon_sym_BSLASHBig] = ACTIONS(6025), - [anon_sym_BSLASHbigg] = ACTIONS(6025), - [anon_sym_BSLASHBigg] = ACTIONS(6025), - [anon_sym_BSLASHbigl] = ACTIONS(6025), - [anon_sym_BSLASHBigl] = ACTIONS(6025), - [anon_sym_BSLASHbiggl] = ACTIONS(6025), - [anon_sym_BSLASHBiggl] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), - [anon_sym_BSLASHgls] = ACTIONS(6025), - [anon_sym_BSLASHGls] = ACTIONS(6025), - [anon_sym_BSLASHGLS] = ACTIONS(6025), - [anon_sym_BSLASHglspl] = ACTIONS(6025), - [anon_sym_BSLASHGlspl] = ACTIONS(6025), - [anon_sym_BSLASHGLSpl] = ACTIONS(6025), - [anon_sym_BSLASHglsdisp] = ACTIONS(6025), - [anon_sym_BSLASHglslink] = ACTIONS(6025), - [anon_sym_BSLASHglstext] = ACTIONS(6025), - [anon_sym_BSLASHGlstext] = ACTIONS(6025), - [anon_sym_BSLASHGLStext] = ACTIONS(6025), - [anon_sym_BSLASHglsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), - [anon_sym_BSLASHglsplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSplural] = ACTIONS(6025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHglsname] = ACTIONS(6025), - [anon_sym_BSLASHGlsname] = ACTIONS(6025), - [anon_sym_BSLASHGLSname] = ACTIONS(6025), - [anon_sym_BSLASHglssymbol] = ACTIONS(6025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), - [anon_sym_BSLASHglsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), - [anon_sym_BSLASHglsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), - [anon_sym_BSLASHglsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), - [anon_sym_BSLASHglsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), - [anon_sym_BSLASHglsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), - [anon_sym_BSLASHnewacronym] = ACTIONS(6025), - [anon_sym_BSLASHacrshort] = ACTIONS(6025), - [anon_sym_BSLASHAcrshort] = ACTIONS(6025), - [anon_sym_BSLASHACRshort] = ACTIONS(6025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), - [anon_sym_BSLASHacrlong] = ACTIONS(6025), - [anon_sym_BSLASHAcrlong] = ACTIONS(6025), - [anon_sym_BSLASHACRlong] = ACTIONS(6025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), - [anon_sym_BSLASHacrfull] = ACTIONS(6025), - [anon_sym_BSLASHAcrfull] = ACTIONS(6025), - [anon_sym_BSLASHACRfull] = ACTIONS(6025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), - [anon_sym_BSLASHacs] = ACTIONS(6025), - [anon_sym_BSLASHAcs] = ACTIONS(6025), - [anon_sym_BSLASHacsp] = ACTIONS(6025), - [anon_sym_BSLASHAcsp] = ACTIONS(6025), - [anon_sym_BSLASHacl] = ACTIONS(6025), - [anon_sym_BSLASHAcl] = ACTIONS(6025), - [anon_sym_BSLASHaclp] = ACTIONS(6025), - [anon_sym_BSLASHAclp] = ACTIONS(6025), - [anon_sym_BSLASHacf] = ACTIONS(6025), - [anon_sym_BSLASHAcf] = ACTIONS(6025), - [anon_sym_BSLASHacfp] = ACTIONS(6025), - [anon_sym_BSLASHAcfp] = ACTIONS(6025), - [anon_sym_BSLASHac] = ACTIONS(6025), - [anon_sym_BSLASHAc] = ACTIONS(6025), - [anon_sym_BSLASHacp] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), - [anon_sym_BSLASHcolor] = ACTIONS(6025), - [anon_sym_BSLASHcolorbox] = ACTIONS(6025), - [anon_sym_BSLASHtextcolor] = ACTIONS(6025), - [anon_sym_BSLASHpagecolor] = ACTIONS(6025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), - [anon_sym_BSLASHtext] = ACTIONS(6025), - [anon_sym_BSLASHintertext] = ACTIONS(6025), - [anon_sym_shortintertext] = ACTIONS(6025), - }, - [1031] = { - [ts_builtin_sym_end] = ACTIONS(6451), - [sym_command_name] = ACTIONS(6449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6449), - [anon_sym_LBRACK] = ACTIONS(6451), - [anon_sym_RBRACK] = ACTIONS(6451), - [anon_sym_COMMA] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(6451), - [anon_sym_LPAREN] = ACTIONS(6451), - [anon_sym_RPAREN] = ACTIONS(6451), - [anon_sym_BSLASHpart] = ACTIONS(6449), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddpart] = ACTIONS(6449), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6451), - [anon_sym_BSLASHchapter] = ACTIONS(6449), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddchap] = ACTIONS(6449), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsection] = ACTIONS(6449), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddsec] = ACTIONS(6449), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubsection] = ACTIONS(6449), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6449), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHparagraph] = ACTIONS(6449), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6449), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6451), - [anon_sym_BSLASHitem] = ACTIONS(6449), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6451), - [anon_sym_LBRACE] = ACTIONS(6451), - [anon_sym_RBRACE] = ACTIONS(6451), - [sym_word] = ACTIONS(6449), - [sym_placeholder] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6451), - [anon_sym_DASH] = ACTIONS(6451), - [anon_sym_STAR] = ACTIONS(6451), - [anon_sym_SLASH] = ACTIONS(6451), - [anon_sym_LT] = ACTIONS(6449), - [anon_sym_GT] = ACTIONS(6449), - [anon_sym_BANG] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6449), - [anon_sym_COLON] = ACTIONS(6449), - [anon_sym_SQUOTE] = ACTIONS(6449), - [anon_sym__] = ACTIONS(6451), - [anon_sym_CARET] = ACTIONS(6451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6451), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6451), - [anon_sym_DOLLAR] = ACTIONS(6449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6451), - [anon_sym_BSLASHbegin] = ACTIONS(6449), - [anon_sym_BSLASHtitle] = ACTIONS(6449), - [anon_sym_BSLASHauthor] = ACTIONS(6449), - [anon_sym_BSLASHusepackage] = ACTIONS(6449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6449), - [anon_sym_BSLASHinclude] = ACTIONS(6449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6449), - [anon_sym_BSLASHinput] = ACTIONS(6449), - [anon_sym_BSLASHsubfile] = ACTIONS(6449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6449), - [anon_sym_BSLASHbibliography] = ACTIONS(6449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6449), - [anon_sym_BSLASHincludesvg] = ACTIONS(6449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6449), - [anon_sym_BSLASHimport] = ACTIONS(6449), - [anon_sym_BSLASHsubimport] = ACTIONS(6449), - [anon_sym_BSLASHinputfrom] = ACTIONS(6449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6449), - [anon_sym_BSLASHincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHcaption] = ACTIONS(6449), - [anon_sym_BSLASHcite] = ACTIONS(6449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCite] = ACTIONS(6449), - [anon_sym_BSLASHnocite] = ACTIONS(6449), - [anon_sym_BSLASHcitet] = ACTIONS(6449), - [anon_sym_BSLASHcitep] = ACTIONS(6449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteauthor] = ACTIONS(6449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitetitle] = ACTIONS(6449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteyear] = ACTIONS(6449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitedate] = ACTIONS(6449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteurl] = ACTIONS(6449), - [anon_sym_BSLASHfullcite] = ACTIONS(6449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6449), - [anon_sym_BSLASHcitealt] = ACTIONS(6449), - [anon_sym_BSLASHcitealp] = ACTIONS(6449), - [anon_sym_BSLASHcitetext] = ACTIONS(6449), - [anon_sym_BSLASHparencite] = ACTIONS(6449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHParencite] = ACTIONS(6449), - [anon_sym_BSLASHfootcite] = ACTIONS(6449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6449), - [anon_sym_BSLASHtextcite] = ACTIONS(6449), - [anon_sym_BSLASHTextcite] = ACTIONS(6449), - [anon_sym_BSLASHsmartcite] = ACTIONS(6449), - [anon_sym_BSLASHSmartcite] = ACTIONS(6449), - [anon_sym_BSLASHsupercite] = ACTIONS(6449), - [anon_sym_BSLASHautocite] = ACTIONS(6449), - [anon_sym_BSLASHAutocite] = ACTIONS(6449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHvolcite] = ACTIONS(6449), - [anon_sym_BSLASHVolcite] = ACTIONS(6449), - [anon_sym_BSLASHpvolcite] = ACTIONS(6449), - [anon_sym_BSLASHPvolcite] = ACTIONS(6449), - [anon_sym_BSLASHfvolcite] = ACTIONS(6449), - [anon_sym_BSLASHftvolcite] = ACTIONS(6449), - [anon_sym_BSLASHsvolcite] = ACTIONS(6449), - [anon_sym_BSLASHSvolcite] = ACTIONS(6449), - [anon_sym_BSLASHtvolcite] = ACTIONS(6449), - [anon_sym_BSLASHTvolcite] = ACTIONS(6449), - [anon_sym_BSLASHavolcite] = ACTIONS(6449), - [anon_sym_BSLASHAvolcite] = ACTIONS(6449), - [anon_sym_BSLASHnotecite] = ACTIONS(6449), - [anon_sym_BSLASHNotecite] = ACTIONS(6449), - [anon_sym_BSLASHpnotecite] = ACTIONS(6449), - [anon_sym_BSLASHPnotecite] = ACTIONS(6449), - [anon_sym_BSLASHfnotecite] = ACTIONS(6449), - [anon_sym_BSLASHlabel] = ACTIONS(6449), - [anon_sym_BSLASHref] = ACTIONS(6449), - [anon_sym_BSLASHeqref] = ACTIONS(6449), - [anon_sym_BSLASHvref] = ACTIONS(6449), - [anon_sym_BSLASHVref] = ACTIONS(6449), - [anon_sym_BSLASHautoref] = ACTIONS(6449), - [anon_sym_BSLASHpageref] = ACTIONS(6449), - [anon_sym_BSLASHcref] = ACTIONS(6449), - [anon_sym_BSLASHCref] = ACTIONS(6449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnameCref] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHlabelcref] = ACTIONS(6449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCrefrange] = ACTIONS(6449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnewlabel] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6451), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHdef] = ACTIONS(6449), - [anon_sym_BSLASHlet] = ACTIONS(6449), - [anon_sym_BSLASHleft] = ACTIONS(6449), - [anon_sym_BSLASHbig] = ACTIONS(6449), - [anon_sym_BSLASHBig] = ACTIONS(6449), - [anon_sym_BSLASHbigg] = ACTIONS(6449), - [anon_sym_BSLASHBigg] = ACTIONS(6449), - [anon_sym_BSLASHbigl] = ACTIONS(6449), - [anon_sym_BSLASHBigl] = ACTIONS(6449), - [anon_sym_BSLASHbiggl] = ACTIONS(6449), - [anon_sym_BSLASHBiggl] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6449), - [anon_sym_BSLASHgls] = ACTIONS(6449), - [anon_sym_BSLASHGls] = ACTIONS(6449), - [anon_sym_BSLASHGLS] = ACTIONS(6449), - [anon_sym_BSLASHglspl] = ACTIONS(6449), - [anon_sym_BSLASHGlspl] = ACTIONS(6449), - [anon_sym_BSLASHGLSpl] = ACTIONS(6449), - [anon_sym_BSLASHglsdisp] = ACTIONS(6449), - [anon_sym_BSLASHglslink] = ACTIONS(6449), - [anon_sym_BSLASHglstext] = ACTIONS(6449), - [anon_sym_BSLASHGlstext] = ACTIONS(6449), - [anon_sym_BSLASHGLStext] = ACTIONS(6449), - [anon_sym_BSLASHglsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6449), - [anon_sym_BSLASHglsplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSplural] = ACTIONS(6449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHglsname] = ACTIONS(6449), - [anon_sym_BSLASHGlsname] = ACTIONS(6449), - [anon_sym_BSLASHGLSname] = ACTIONS(6449), - [anon_sym_BSLASHglssymbol] = ACTIONS(6449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6449), - [anon_sym_BSLASHglsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6449), - [anon_sym_BSLASHglsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6449), - [anon_sym_BSLASHglsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6449), - [anon_sym_BSLASHglsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6449), - [anon_sym_BSLASHglsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6449), - [anon_sym_BSLASHnewacronym] = ACTIONS(6449), - [anon_sym_BSLASHacrshort] = ACTIONS(6449), - [anon_sym_BSLASHAcrshort] = ACTIONS(6449), - [anon_sym_BSLASHACRshort] = ACTIONS(6449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6449), - [anon_sym_BSLASHacrlong] = ACTIONS(6449), - [anon_sym_BSLASHAcrlong] = ACTIONS(6449), - [anon_sym_BSLASHACRlong] = ACTIONS(6449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6449), - [anon_sym_BSLASHacrfull] = ACTIONS(6449), - [anon_sym_BSLASHAcrfull] = ACTIONS(6449), - [anon_sym_BSLASHACRfull] = ACTIONS(6449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6449), - [anon_sym_BSLASHacs] = ACTIONS(6449), - [anon_sym_BSLASHAcs] = ACTIONS(6449), - [anon_sym_BSLASHacsp] = ACTIONS(6449), - [anon_sym_BSLASHAcsp] = ACTIONS(6449), - [anon_sym_BSLASHacl] = ACTIONS(6449), - [anon_sym_BSLASHAcl] = ACTIONS(6449), - [anon_sym_BSLASHaclp] = ACTIONS(6449), - [anon_sym_BSLASHAclp] = ACTIONS(6449), - [anon_sym_BSLASHacf] = ACTIONS(6449), - [anon_sym_BSLASHAcf] = ACTIONS(6449), - [anon_sym_BSLASHacfp] = ACTIONS(6449), - [anon_sym_BSLASHAcfp] = ACTIONS(6449), - [anon_sym_BSLASHac] = ACTIONS(6449), - [anon_sym_BSLASHAc] = ACTIONS(6449), - [anon_sym_BSLASHacp] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6449), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6449), - [anon_sym_BSLASHcolor] = ACTIONS(6449), - [anon_sym_BSLASHcolorbox] = ACTIONS(6449), - [anon_sym_BSLASHtextcolor] = ACTIONS(6449), - [anon_sym_BSLASHpagecolor] = ACTIONS(6449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6449), - [anon_sym_BSLASHtext] = ACTIONS(6449), - [anon_sym_BSLASHintertext] = ACTIONS(6449), - [anon_sym_shortintertext] = ACTIONS(6449), - }, - [1032] = { - [ts_builtin_sym_end] = ACTIONS(6455), - [sym_command_name] = ACTIONS(6453), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6453), - [anon_sym_LBRACK] = ACTIONS(6455), - [anon_sym_RBRACK] = ACTIONS(6455), - [anon_sym_COMMA] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(6455), - [anon_sym_LPAREN] = ACTIONS(6455), - [anon_sym_RPAREN] = ACTIONS(6455), - [anon_sym_BSLASHpart] = ACTIONS(6453), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddpart] = ACTIONS(6453), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6455), - [anon_sym_BSLASHchapter] = ACTIONS(6453), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddchap] = ACTIONS(6453), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsection] = ACTIONS(6453), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddsec] = ACTIONS(6453), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubsection] = ACTIONS(6453), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6453), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHparagraph] = ACTIONS(6453), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6453), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6455), - [anon_sym_BSLASHitem] = ACTIONS(6453), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6455), - [anon_sym_LBRACE] = ACTIONS(6455), - [anon_sym_RBRACE] = ACTIONS(6455), - [sym_word] = ACTIONS(6453), - [sym_placeholder] = ACTIONS(6455), - [anon_sym_PLUS] = ACTIONS(6455), - [anon_sym_DASH] = ACTIONS(6455), - [anon_sym_STAR] = ACTIONS(6455), - [anon_sym_SLASH] = ACTIONS(6455), - [anon_sym_LT] = ACTIONS(6453), - [anon_sym_GT] = ACTIONS(6453), - [anon_sym_BANG] = ACTIONS(6453), - [anon_sym_PIPE] = ACTIONS(6453), - [anon_sym_COLON] = ACTIONS(6453), - [anon_sym_SQUOTE] = ACTIONS(6453), - [anon_sym__] = ACTIONS(6455), - [anon_sym_CARET] = ACTIONS(6455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6455), - [anon_sym_DOLLAR] = ACTIONS(6453), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6455), - [anon_sym_BSLASHbegin] = ACTIONS(6453), - [anon_sym_BSLASHtitle] = ACTIONS(6453), - [anon_sym_BSLASHauthor] = ACTIONS(6453), - [anon_sym_BSLASHusepackage] = ACTIONS(6453), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6453), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6453), - [anon_sym_BSLASHinclude] = ACTIONS(6453), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6453), - [anon_sym_BSLASHinput] = ACTIONS(6453), - [anon_sym_BSLASHsubfile] = ACTIONS(6453), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6453), - [anon_sym_BSLASHbibliography] = ACTIONS(6453), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6453), - [anon_sym_BSLASHincludesvg] = ACTIONS(6453), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6453), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6453), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6453), - [anon_sym_BSLASHimport] = ACTIONS(6453), - [anon_sym_BSLASHsubimport] = ACTIONS(6453), - [anon_sym_BSLASHinputfrom] = ACTIONS(6453), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6453), - [anon_sym_BSLASHincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHcaption] = ACTIONS(6453), - [anon_sym_BSLASHcite] = ACTIONS(6453), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCite] = ACTIONS(6453), - [anon_sym_BSLASHnocite] = ACTIONS(6453), - [anon_sym_BSLASHcitet] = ACTIONS(6453), - [anon_sym_BSLASHcitep] = ACTIONS(6453), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteauthor] = ACTIONS(6453), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6453), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitetitle] = ACTIONS(6453), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteyear] = ACTIONS(6453), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitedate] = ACTIONS(6453), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteurl] = ACTIONS(6453), - [anon_sym_BSLASHfullcite] = ACTIONS(6453), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6453), - [anon_sym_BSLASHcitealt] = ACTIONS(6453), - [anon_sym_BSLASHcitealp] = ACTIONS(6453), - [anon_sym_BSLASHcitetext] = ACTIONS(6453), - [anon_sym_BSLASHparencite] = ACTIONS(6453), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHParencite] = ACTIONS(6453), - [anon_sym_BSLASHfootcite] = ACTIONS(6453), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6453), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6453), - [anon_sym_BSLASHtextcite] = ACTIONS(6453), - [anon_sym_BSLASHTextcite] = ACTIONS(6453), - [anon_sym_BSLASHsmartcite] = ACTIONS(6453), - [anon_sym_BSLASHSmartcite] = ACTIONS(6453), - [anon_sym_BSLASHsupercite] = ACTIONS(6453), - [anon_sym_BSLASHautocite] = ACTIONS(6453), - [anon_sym_BSLASHAutocite] = ACTIONS(6453), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHvolcite] = ACTIONS(6453), - [anon_sym_BSLASHVolcite] = ACTIONS(6453), - [anon_sym_BSLASHpvolcite] = ACTIONS(6453), - [anon_sym_BSLASHPvolcite] = ACTIONS(6453), - [anon_sym_BSLASHfvolcite] = ACTIONS(6453), - [anon_sym_BSLASHftvolcite] = ACTIONS(6453), - [anon_sym_BSLASHsvolcite] = ACTIONS(6453), - [anon_sym_BSLASHSvolcite] = ACTIONS(6453), - [anon_sym_BSLASHtvolcite] = ACTIONS(6453), - [anon_sym_BSLASHTvolcite] = ACTIONS(6453), - [anon_sym_BSLASHavolcite] = ACTIONS(6453), - [anon_sym_BSLASHAvolcite] = ACTIONS(6453), - [anon_sym_BSLASHnotecite] = ACTIONS(6453), - [anon_sym_BSLASHNotecite] = ACTIONS(6453), - [anon_sym_BSLASHpnotecite] = ACTIONS(6453), - [anon_sym_BSLASHPnotecite] = ACTIONS(6453), - [anon_sym_BSLASHfnotecite] = ACTIONS(6453), - [anon_sym_BSLASHlabel] = ACTIONS(6453), - [anon_sym_BSLASHref] = ACTIONS(6453), - [anon_sym_BSLASHeqref] = ACTIONS(6453), - [anon_sym_BSLASHvref] = ACTIONS(6453), - [anon_sym_BSLASHVref] = ACTIONS(6453), - [anon_sym_BSLASHautoref] = ACTIONS(6453), - [anon_sym_BSLASHpageref] = ACTIONS(6453), - [anon_sym_BSLASHcref] = ACTIONS(6453), - [anon_sym_BSLASHCref] = ACTIONS(6453), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnameCref] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHlabelcref] = ACTIONS(6453), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCrefrange] = ACTIONS(6453), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnewlabel] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6453), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6453), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6455), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHdef] = ACTIONS(6453), - [anon_sym_BSLASHlet] = ACTIONS(6453), - [anon_sym_BSLASHleft] = ACTIONS(6453), - [anon_sym_BSLASHbig] = ACTIONS(6453), - [anon_sym_BSLASHBig] = ACTIONS(6453), - [anon_sym_BSLASHbigg] = ACTIONS(6453), - [anon_sym_BSLASHBigg] = ACTIONS(6453), - [anon_sym_BSLASHbigl] = ACTIONS(6453), - [anon_sym_BSLASHBigl] = ACTIONS(6453), - [anon_sym_BSLASHbiggl] = ACTIONS(6453), - [anon_sym_BSLASHBiggl] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6453), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6453), - [anon_sym_BSLASHgls] = ACTIONS(6453), - [anon_sym_BSLASHGls] = ACTIONS(6453), - [anon_sym_BSLASHGLS] = ACTIONS(6453), - [anon_sym_BSLASHglspl] = ACTIONS(6453), - [anon_sym_BSLASHGlspl] = ACTIONS(6453), - [anon_sym_BSLASHGLSpl] = ACTIONS(6453), - [anon_sym_BSLASHglsdisp] = ACTIONS(6453), - [anon_sym_BSLASHglslink] = ACTIONS(6453), - [anon_sym_BSLASHglstext] = ACTIONS(6453), - [anon_sym_BSLASHGlstext] = ACTIONS(6453), - [anon_sym_BSLASHGLStext] = ACTIONS(6453), - [anon_sym_BSLASHglsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6453), - [anon_sym_BSLASHglsplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSplural] = ACTIONS(6453), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHglsname] = ACTIONS(6453), - [anon_sym_BSLASHGlsname] = ACTIONS(6453), - [anon_sym_BSLASHGLSname] = ACTIONS(6453), - [anon_sym_BSLASHglssymbol] = ACTIONS(6453), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6453), - [anon_sym_BSLASHglsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6453), - [anon_sym_BSLASHglsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6453), - [anon_sym_BSLASHglsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6453), - [anon_sym_BSLASHglsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6453), - [anon_sym_BSLASHglsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6453), - [anon_sym_BSLASHnewacronym] = ACTIONS(6453), - [anon_sym_BSLASHacrshort] = ACTIONS(6453), - [anon_sym_BSLASHAcrshort] = ACTIONS(6453), - [anon_sym_BSLASHACRshort] = ACTIONS(6453), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6453), - [anon_sym_BSLASHacrlong] = ACTIONS(6453), - [anon_sym_BSLASHAcrlong] = ACTIONS(6453), - [anon_sym_BSLASHACRlong] = ACTIONS(6453), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6453), - [anon_sym_BSLASHacrfull] = ACTIONS(6453), - [anon_sym_BSLASHAcrfull] = ACTIONS(6453), - [anon_sym_BSLASHACRfull] = ACTIONS(6453), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6453), - [anon_sym_BSLASHacs] = ACTIONS(6453), - [anon_sym_BSLASHAcs] = ACTIONS(6453), - [anon_sym_BSLASHacsp] = ACTIONS(6453), - [anon_sym_BSLASHAcsp] = ACTIONS(6453), - [anon_sym_BSLASHacl] = ACTIONS(6453), - [anon_sym_BSLASHAcl] = ACTIONS(6453), - [anon_sym_BSLASHaclp] = ACTIONS(6453), - [anon_sym_BSLASHAclp] = ACTIONS(6453), - [anon_sym_BSLASHacf] = ACTIONS(6453), - [anon_sym_BSLASHAcf] = ACTIONS(6453), - [anon_sym_BSLASHacfp] = ACTIONS(6453), - [anon_sym_BSLASHAcfp] = ACTIONS(6453), - [anon_sym_BSLASHac] = ACTIONS(6453), - [anon_sym_BSLASHAc] = ACTIONS(6453), - [anon_sym_BSLASHacp] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6453), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6453), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6453), - [anon_sym_BSLASHcolor] = ACTIONS(6453), - [anon_sym_BSLASHcolorbox] = ACTIONS(6453), - [anon_sym_BSLASHtextcolor] = ACTIONS(6453), - [anon_sym_BSLASHpagecolor] = ACTIONS(6453), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6453), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6453), - [anon_sym_BSLASHtext] = ACTIONS(6453), - [anon_sym_BSLASHintertext] = ACTIONS(6453), - [anon_sym_shortintertext] = ACTIONS(6453), - }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(6459), - [sym_command_name] = ACTIONS(6457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6457), - [anon_sym_LBRACK] = ACTIONS(6459), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(6459), - [anon_sym_LPAREN] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_BSLASHpart] = ACTIONS(6457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddpart] = ACTIONS(6457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6459), - [anon_sym_BSLASHchapter] = ACTIONS(6457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddchap] = ACTIONS(6457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsection] = ACTIONS(6457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddsec] = ACTIONS(6457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubsection] = ACTIONS(6457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHparagraph] = ACTIONS(6457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6459), - [anon_sym_BSLASHitem] = ACTIONS(6457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6459), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(6459), - [sym_word] = ACTIONS(6457), - [sym_placeholder] = ACTIONS(6459), - [anon_sym_PLUS] = ACTIONS(6459), - [anon_sym_DASH] = ACTIONS(6459), - [anon_sym_STAR] = ACTIONS(6459), - [anon_sym_SLASH] = ACTIONS(6459), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_BANG] = ACTIONS(6457), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_SQUOTE] = ACTIONS(6457), - [anon_sym__] = ACTIONS(6459), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6459), - [anon_sym_DOLLAR] = ACTIONS(6457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6459), - [anon_sym_BSLASHbegin] = ACTIONS(6457), - [anon_sym_BSLASHtitle] = ACTIONS(6457), - [anon_sym_BSLASHauthor] = ACTIONS(6457), - [anon_sym_BSLASHusepackage] = ACTIONS(6457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6457), - [anon_sym_BSLASHinclude] = ACTIONS(6457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6457), - [anon_sym_BSLASHinput] = ACTIONS(6457), - [anon_sym_BSLASHsubfile] = ACTIONS(6457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6457), - [anon_sym_BSLASHbibliography] = ACTIONS(6457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6457), - [anon_sym_BSLASHincludesvg] = ACTIONS(6457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6457), - [anon_sym_BSLASHimport] = ACTIONS(6457), - [anon_sym_BSLASHsubimport] = ACTIONS(6457), - [anon_sym_BSLASHinputfrom] = ACTIONS(6457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6457), - [anon_sym_BSLASHincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHcaption] = ACTIONS(6457), - [anon_sym_BSLASHcite] = ACTIONS(6457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCite] = ACTIONS(6457), - [anon_sym_BSLASHnocite] = ACTIONS(6457), - [anon_sym_BSLASHcitet] = ACTIONS(6457), - [anon_sym_BSLASHcitep] = ACTIONS(6457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteauthor] = ACTIONS(6457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitetitle] = ACTIONS(6457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteyear] = ACTIONS(6457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitedate] = ACTIONS(6457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteurl] = ACTIONS(6457), - [anon_sym_BSLASHfullcite] = ACTIONS(6457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6457), - [anon_sym_BSLASHcitealt] = ACTIONS(6457), - [anon_sym_BSLASHcitealp] = ACTIONS(6457), - [anon_sym_BSLASHcitetext] = ACTIONS(6457), - [anon_sym_BSLASHparencite] = ACTIONS(6457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHParencite] = ACTIONS(6457), - [anon_sym_BSLASHfootcite] = ACTIONS(6457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6457), - [anon_sym_BSLASHtextcite] = ACTIONS(6457), - [anon_sym_BSLASHTextcite] = ACTIONS(6457), - [anon_sym_BSLASHsmartcite] = ACTIONS(6457), - [anon_sym_BSLASHSmartcite] = ACTIONS(6457), - [anon_sym_BSLASHsupercite] = ACTIONS(6457), - [anon_sym_BSLASHautocite] = ACTIONS(6457), - [anon_sym_BSLASHAutocite] = ACTIONS(6457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHvolcite] = ACTIONS(6457), - [anon_sym_BSLASHVolcite] = ACTIONS(6457), - [anon_sym_BSLASHpvolcite] = ACTIONS(6457), - [anon_sym_BSLASHPvolcite] = ACTIONS(6457), - [anon_sym_BSLASHfvolcite] = ACTIONS(6457), - [anon_sym_BSLASHftvolcite] = ACTIONS(6457), - [anon_sym_BSLASHsvolcite] = ACTIONS(6457), - [anon_sym_BSLASHSvolcite] = ACTIONS(6457), - [anon_sym_BSLASHtvolcite] = ACTIONS(6457), - [anon_sym_BSLASHTvolcite] = ACTIONS(6457), - [anon_sym_BSLASHavolcite] = ACTIONS(6457), - [anon_sym_BSLASHAvolcite] = ACTIONS(6457), - [anon_sym_BSLASHnotecite] = ACTIONS(6457), - [anon_sym_BSLASHNotecite] = ACTIONS(6457), - [anon_sym_BSLASHpnotecite] = ACTIONS(6457), - [anon_sym_BSLASHPnotecite] = ACTIONS(6457), - [anon_sym_BSLASHfnotecite] = ACTIONS(6457), - [anon_sym_BSLASHlabel] = ACTIONS(6457), - [anon_sym_BSLASHref] = ACTIONS(6457), - [anon_sym_BSLASHeqref] = ACTIONS(6457), - [anon_sym_BSLASHvref] = ACTIONS(6457), - [anon_sym_BSLASHVref] = ACTIONS(6457), - [anon_sym_BSLASHautoref] = ACTIONS(6457), - [anon_sym_BSLASHpageref] = ACTIONS(6457), - [anon_sym_BSLASHcref] = ACTIONS(6457), - [anon_sym_BSLASHCref] = ACTIONS(6457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnameCref] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHlabelcref] = ACTIONS(6457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCrefrange] = ACTIONS(6457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnewlabel] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6459), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHdef] = ACTIONS(6457), - [anon_sym_BSLASHlet] = ACTIONS(6457), - [anon_sym_BSLASHleft] = ACTIONS(6457), - [anon_sym_BSLASHbig] = ACTIONS(6457), - [anon_sym_BSLASHBig] = ACTIONS(6457), - [anon_sym_BSLASHbigg] = ACTIONS(6457), - [anon_sym_BSLASHBigg] = ACTIONS(6457), - [anon_sym_BSLASHbigl] = ACTIONS(6457), - [anon_sym_BSLASHBigl] = ACTIONS(6457), - [anon_sym_BSLASHbiggl] = ACTIONS(6457), - [anon_sym_BSLASHBiggl] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6457), - [anon_sym_BSLASHgls] = ACTIONS(6457), - [anon_sym_BSLASHGls] = ACTIONS(6457), - [anon_sym_BSLASHGLS] = ACTIONS(6457), - [anon_sym_BSLASHglspl] = ACTIONS(6457), - [anon_sym_BSLASHGlspl] = ACTIONS(6457), - [anon_sym_BSLASHGLSpl] = ACTIONS(6457), - [anon_sym_BSLASHglsdisp] = ACTIONS(6457), - [anon_sym_BSLASHglslink] = ACTIONS(6457), - [anon_sym_BSLASHglstext] = ACTIONS(6457), - [anon_sym_BSLASHGlstext] = ACTIONS(6457), - [anon_sym_BSLASHGLStext] = ACTIONS(6457), - [anon_sym_BSLASHglsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6457), - [anon_sym_BSLASHglsplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSplural] = ACTIONS(6457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHglsname] = ACTIONS(6457), - [anon_sym_BSLASHGlsname] = ACTIONS(6457), - [anon_sym_BSLASHGLSname] = ACTIONS(6457), - [anon_sym_BSLASHglssymbol] = ACTIONS(6457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6457), - [anon_sym_BSLASHglsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6457), - [anon_sym_BSLASHglsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6457), - [anon_sym_BSLASHglsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6457), - [anon_sym_BSLASHglsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6457), - [anon_sym_BSLASHglsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6457), - [anon_sym_BSLASHnewacronym] = ACTIONS(6457), - [anon_sym_BSLASHacrshort] = ACTIONS(6457), - [anon_sym_BSLASHAcrshort] = ACTIONS(6457), - [anon_sym_BSLASHACRshort] = ACTIONS(6457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6457), - [anon_sym_BSLASHacrlong] = ACTIONS(6457), - [anon_sym_BSLASHAcrlong] = ACTIONS(6457), - [anon_sym_BSLASHACRlong] = ACTIONS(6457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6457), - [anon_sym_BSLASHacrfull] = ACTIONS(6457), - [anon_sym_BSLASHAcrfull] = ACTIONS(6457), - [anon_sym_BSLASHACRfull] = ACTIONS(6457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6457), - [anon_sym_BSLASHacs] = ACTIONS(6457), - [anon_sym_BSLASHAcs] = ACTIONS(6457), - [anon_sym_BSLASHacsp] = ACTIONS(6457), - [anon_sym_BSLASHAcsp] = ACTIONS(6457), - [anon_sym_BSLASHacl] = ACTIONS(6457), - [anon_sym_BSLASHAcl] = ACTIONS(6457), - [anon_sym_BSLASHaclp] = ACTIONS(6457), - [anon_sym_BSLASHAclp] = ACTIONS(6457), - [anon_sym_BSLASHacf] = ACTIONS(6457), - [anon_sym_BSLASHAcf] = ACTIONS(6457), - [anon_sym_BSLASHacfp] = ACTIONS(6457), - [anon_sym_BSLASHAcfp] = ACTIONS(6457), - [anon_sym_BSLASHac] = ACTIONS(6457), - [anon_sym_BSLASHAc] = ACTIONS(6457), - [anon_sym_BSLASHacp] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6457), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6457), - [anon_sym_BSLASHcolor] = ACTIONS(6457), - [anon_sym_BSLASHcolorbox] = ACTIONS(6457), - [anon_sym_BSLASHtextcolor] = ACTIONS(6457), - [anon_sym_BSLASHpagecolor] = ACTIONS(6457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6457), - [anon_sym_BSLASHtext] = ACTIONS(6457), - [anon_sym_BSLASHintertext] = ACTIONS(6457), - [anon_sym_shortintertext] = ACTIONS(6457), - }, - [1034] = { - [ts_builtin_sym_end] = ACTIONS(6463), - [sym_command_name] = ACTIONS(6461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6461), - [anon_sym_LBRACK] = ACTIONS(6463), - [anon_sym_RBRACK] = ACTIONS(6463), - [anon_sym_COMMA] = ACTIONS(6463), - [anon_sym_EQ] = ACTIONS(6463), - [anon_sym_LPAREN] = ACTIONS(6463), - [anon_sym_RPAREN] = ACTIONS(6463), - [anon_sym_BSLASHpart] = ACTIONS(6461), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddpart] = ACTIONS(6461), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6463), - [anon_sym_BSLASHchapter] = ACTIONS(6461), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddchap] = ACTIONS(6461), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsection] = ACTIONS(6461), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddsec] = ACTIONS(6461), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubsection] = ACTIONS(6461), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6461), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHparagraph] = ACTIONS(6461), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6461), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6463), - [anon_sym_BSLASHitem] = ACTIONS(6461), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6463), - [anon_sym_LBRACE] = ACTIONS(6463), - [anon_sym_RBRACE] = ACTIONS(6463), - [sym_word] = ACTIONS(6461), - [sym_placeholder] = ACTIONS(6463), - [anon_sym_PLUS] = ACTIONS(6463), - [anon_sym_DASH] = ACTIONS(6463), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6463), - [anon_sym_LT] = ACTIONS(6461), - [anon_sym_GT] = ACTIONS(6461), - [anon_sym_BANG] = ACTIONS(6461), - [anon_sym_PIPE] = ACTIONS(6461), - [anon_sym_COLON] = ACTIONS(6461), - [anon_sym_SQUOTE] = ACTIONS(6461), - [anon_sym__] = ACTIONS(6463), - [anon_sym_CARET] = ACTIONS(6463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6463), - [anon_sym_DOLLAR] = ACTIONS(6461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6463), - [anon_sym_BSLASHbegin] = ACTIONS(6461), - [anon_sym_BSLASHtitle] = ACTIONS(6461), - [anon_sym_BSLASHauthor] = ACTIONS(6461), - [anon_sym_BSLASHusepackage] = ACTIONS(6461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6461), - [anon_sym_BSLASHinclude] = ACTIONS(6461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6461), - [anon_sym_BSLASHinput] = ACTIONS(6461), - [anon_sym_BSLASHsubfile] = ACTIONS(6461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6461), - [anon_sym_BSLASHbibliography] = ACTIONS(6461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6461), - [anon_sym_BSLASHincludesvg] = ACTIONS(6461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6461), - [anon_sym_BSLASHimport] = ACTIONS(6461), - [anon_sym_BSLASHsubimport] = ACTIONS(6461), - [anon_sym_BSLASHinputfrom] = ACTIONS(6461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6461), - [anon_sym_BSLASHincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHcaption] = ACTIONS(6461), - [anon_sym_BSLASHcite] = ACTIONS(6461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCite] = ACTIONS(6461), - [anon_sym_BSLASHnocite] = ACTIONS(6461), - [anon_sym_BSLASHcitet] = ACTIONS(6461), - [anon_sym_BSLASHcitep] = ACTIONS(6461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteauthor] = ACTIONS(6461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitetitle] = ACTIONS(6461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteyear] = ACTIONS(6461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitedate] = ACTIONS(6461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteurl] = ACTIONS(6461), - [anon_sym_BSLASHfullcite] = ACTIONS(6461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6461), - [anon_sym_BSLASHcitealt] = ACTIONS(6461), - [anon_sym_BSLASHcitealp] = ACTIONS(6461), - [anon_sym_BSLASHcitetext] = ACTIONS(6461), - [anon_sym_BSLASHparencite] = ACTIONS(6461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHParencite] = ACTIONS(6461), - [anon_sym_BSLASHfootcite] = ACTIONS(6461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6461), - [anon_sym_BSLASHtextcite] = ACTIONS(6461), - [anon_sym_BSLASHTextcite] = ACTIONS(6461), - [anon_sym_BSLASHsmartcite] = ACTIONS(6461), - [anon_sym_BSLASHSmartcite] = ACTIONS(6461), - [anon_sym_BSLASHsupercite] = ACTIONS(6461), - [anon_sym_BSLASHautocite] = ACTIONS(6461), - [anon_sym_BSLASHAutocite] = ACTIONS(6461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHvolcite] = ACTIONS(6461), - [anon_sym_BSLASHVolcite] = ACTIONS(6461), - [anon_sym_BSLASHpvolcite] = ACTIONS(6461), - [anon_sym_BSLASHPvolcite] = ACTIONS(6461), - [anon_sym_BSLASHfvolcite] = ACTIONS(6461), - [anon_sym_BSLASHftvolcite] = ACTIONS(6461), - [anon_sym_BSLASHsvolcite] = ACTIONS(6461), - [anon_sym_BSLASHSvolcite] = ACTIONS(6461), - [anon_sym_BSLASHtvolcite] = ACTIONS(6461), - [anon_sym_BSLASHTvolcite] = ACTIONS(6461), - [anon_sym_BSLASHavolcite] = ACTIONS(6461), - [anon_sym_BSLASHAvolcite] = ACTIONS(6461), - [anon_sym_BSLASHnotecite] = ACTIONS(6461), - [anon_sym_BSLASHNotecite] = ACTIONS(6461), - [anon_sym_BSLASHpnotecite] = ACTIONS(6461), - [anon_sym_BSLASHPnotecite] = ACTIONS(6461), - [anon_sym_BSLASHfnotecite] = ACTIONS(6461), - [anon_sym_BSLASHlabel] = ACTIONS(6461), - [anon_sym_BSLASHref] = ACTIONS(6461), - [anon_sym_BSLASHeqref] = ACTIONS(6461), - [anon_sym_BSLASHvref] = ACTIONS(6461), - [anon_sym_BSLASHVref] = ACTIONS(6461), - [anon_sym_BSLASHautoref] = ACTIONS(6461), - [anon_sym_BSLASHpageref] = ACTIONS(6461), - [anon_sym_BSLASHcref] = ACTIONS(6461), - [anon_sym_BSLASHCref] = ACTIONS(6461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnameCref] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHlabelcref] = ACTIONS(6461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCrefrange] = ACTIONS(6461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnewlabel] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6463), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHdef] = ACTIONS(6461), - [anon_sym_BSLASHlet] = ACTIONS(6461), - [anon_sym_BSLASHleft] = ACTIONS(6461), - [anon_sym_BSLASHbig] = ACTIONS(6461), - [anon_sym_BSLASHBig] = ACTIONS(6461), - [anon_sym_BSLASHbigg] = ACTIONS(6461), - [anon_sym_BSLASHBigg] = ACTIONS(6461), - [anon_sym_BSLASHbigl] = ACTIONS(6461), - [anon_sym_BSLASHBigl] = ACTIONS(6461), - [anon_sym_BSLASHbiggl] = ACTIONS(6461), - [anon_sym_BSLASHBiggl] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6461), - [anon_sym_BSLASHgls] = ACTIONS(6461), - [anon_sym_BSLASHGls] = ACTIONS(6461), - [anon_sym_BSLASHGLS] = ACTIONS(6461), - [anon_sym_BSLASHglspl] = ACTIONS(6461), - [anon_sym_BSLASHGlspl] = ACTIONS(6461), - [anon_sym_BSLASHGLSpl] = ACTIONS(6461), - [anon_sym_BSLASHglsdisp] = ACTIONS(6461), - [anon_sym_BSLASHglslink] = ACTIONS(6461), - [anon_sym_BSLASHglstext] = ACTIONS(6461), - [anon_sym_BSLASHGlstext] = ACTIONS(6461), - [anon_sym_BSLASHGLStext] = ACTIONS(6461), - [anon_sym_BSLASHglsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6461), - [anon_sym_BSLASHglsplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSplural] = ACTIONS(6461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHglsname] = ACTIONS(6461), - [anon_sym_BSLASHGlsname] = ACTIONS(6461), - [anon_sym_BSLASHGLSname] = ACTIONS(6461), - [anon_sym_BSLASHglssymbol] = ACTIONS(6461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6461), - [anon_sym_BSLASHglsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6461), - [anon_sym_BSLASHglsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6461), - [anon_sym_BSLASHglsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6461), - [anon_sym_BSLASHglsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6461), - [anon_sym_BSLASHglsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6461), - [anon_sym_BSLASHnewacronym] = ACTIONS(6461), - [anon_sym_BSLASHacrshort] = ACTIONS(6461), - [anon_sym_BSLASHAcrshort] = ACTIONS(6461), - [anon_sym_BSLASHACRshort] = ACTIONS(6461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6461), - [anon_sym_BSLASHacrlong] = ACTIONS(6461), - [anon_sym_BSLASHAcrlong] = ACTIONS(6461), - [anon_sym_BSLASHACRlong] = ACTIONS(6461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6461), - [anon_sym_BSLASHacrfull] = ACTIONS(6461), - [anon_sym_BSLASHAcrfull] = ACTIONS(6461), - [anon_sym_BSLASHACRfull] = ACTIONS(6461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6461), - [anon_sym_BSLASHacs] = ACTIONS(6461), - [anon_sym_BSLASHAcs] = ACTIONS(6461), - [anon_sym_BSLASHacsp] = ACTIONS(6461), - [anon_sym_BSLASHAcsp] = ACTIONS(6461), - [anon_sym_BSLASHacl] = ACTIONS(6461), - [anon_sym_BSLASHAcl] = ACTIONS(6461), - [anon_sym_BSLASHaclp] = ACTIONS(6461), - [anon_sym_BSLASHAclp] = ACTIONS(6461), - [anon_sym_BSLASHacf] = ACTIONS(6461), - [anon_sym_BSLASHAcf] = ACTIONS(6461), - [anon_sym_BSLASHacfp] = ACTIONS(6461), - [anon_sym_BSLASHAcfp] = ACTIONS(6461), - [anon_sym_BSLASHac] = ACTIONS(6461), - [anon_sym_BSLASHAc] = ACTIONS(6461), - [anon_sym_BSLASHacp] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6461), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6461), - [anon_sym_BSLASHcolor] = ACTIONS(6461), - [anon_sym_BSLASHcolorbox] = ACTIONS(6461), - [anon_sym_BSLASHtextcolor] = ACTIONS(6461), - [anon_sym_BSLASHpagecolor] = ACTIONS(6461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6461), - [anon_sym_BSLASHtext] = ACTIONS(6461), - [anon_sym_BSLASHintertext] = ACTIONS(6461), - [anon_sym_shortintertext] = ACTIONS(6461), - }, - [1035] = { - [ts_builtin_sym_end] = ACTIONS(6467), - [sym_command_name] = ACTIONS(6465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6465), - [anon_sym_LBRACK] = ACTIONS(6467), - [anon_sym_RBRACK] = ACTIONS(6467), - [anon_sym_COMMA] = ACTIONS(6467), - [anon_sym_EQ] = ACTIONS(6467), - [anon_sym_LPAREN] = ACTIONS(6467), - [anon_sym_RPAREN] = ACTIONS(6467), - [anon_sym_BSLASHpart] = ACTIONS(6465), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddpart] = ACTIONS(6465), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6467), - [anon_sym_BSLASHchapter] = ACTIONS(6465), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddchap] = ACTIONS(6465), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsection] = ACTIONS(6465), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddsec] = ACTIONS(6465), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubsection] = ACTIONS(6465), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6465), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHparagraph] = ACTIONS(6465), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6465), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6467), - [anon_sym_BSLASHitem] = ACTIONS(6465), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6467), - [anon_sym_LBRACE] = ACTIONS(6467), - [anon_sym_RBRACE] = ACTIONS(6467), - [sym_word] = ACTIONS(6465), - [sym_placeholder] = ACTIONS(6467), - [anon_sym_PLUS] = ACTIONS(6467), - [anon_sym_DASH] = ACTIONS(6467), - [anon_sym_STAR] = ACTIONS(6467), - [anon_sym_SLASH] = ACTIONS(6467), - [anon_sym_LT] = ACTIONS(6465), - [anon_sym_GT] = ACTIONS(6465), - [anon_sym_BANG] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6465), - [anon_sym_COLON] = ACTIONS(6465), - [anon_sym_SQUOTE] = ACTIONS(6465), - [anon_sym__] = ACTIONS(6467), - [anon_sym_CARET] = ACTIONS(6467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6467), - [anon_sym_DOLLAR] = ACTIONS(6465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6467), - [anon_sym_BSLASHbegin] = ACTIONS(6465), - [anon_sym_BSLASHtitle] = ACTIONS(6465), - [anon_sym_BSLASHauthor] = ACTIONS(6465), - [anon_sym_BSLASHusepackage] = ACTIONS(6465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6465), - [anon_sym_BSLASHinclude] = ACTIONS(6465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6465), - [anon_sym_BSLASHinput] = ACTIONS(6465), - [anon_sym_BSLASHsubfile] = ACTIONS(6465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6465), - [anon_sym_BSLASHbibliography] = ACTIONS(6465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6465), - [anon_sym_BSLASHincludesvg] = ACTIONS(6465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6465), - [anon_sym_BSLASHimport] = ACTIONS(6465), - [anon_sym_BSLASHsubimport] = ACTIONS(6465), - [anon_sym_BSLASHinputfrom] = ACTIONS(6465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6465), - [anon_sym_BSLASHincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHcaption] = ACTIONS(6465), - [anon_sym_BSLASHcite] = ACTIONS(6465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCite] = ACTIONS(6465), - [anon_sym_BSLASHnocite] = ACTIONS(6465), - [anon_sym_BSLASHcitet] = ACTIONS(6465), - [anon_sym_BSLASHcitep] = ACTIONS(6465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteauthor] = ACTIONS(6465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitetitle] = ACTIONS(6465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteyear] = ACTIONS(6465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitedate] = ACTIONS(6465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteurl] = ACTIONS(6465), - [anon_sym_BSLASHfullcite] = ACTIONS(6465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6465), - [anon_sym_BSLASHcitealt] = ACTIONS(6465), - [anon_sym_BSLASHcitealp] = ACTIONS(6465), - [anon_sym_BSLASHcitetext] = ACTIONS(6465), - [anon_sym_BSLASHparencite] = ACTIONS(6465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHParencite] = ACTIONS(6465), - [anon_sym_BSLASHfootcite] = ACTIONS(6465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6465), - [anon_sym_BSLASHtextcite] = ACTIONS(6465), - [anon_sym_BSLASHTextcite] = ACTIONS(6465), - [anon_sym_BSLASHsmartcite] = ACTIONS(6465), - [anon_sym_BSLASHSmartcite] = ACTIONS(6465), - [anon_sym_BSLASHsupercite] = ACTIONS(6465), - [anon_sym_BSLASHautocite] = ACTIONS(6465), - [anon_sym_BSLASHAutocite] = ACTIONS(6465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHvolcite] = ACTIONS(6465), - [anon_sym_BSLASHVolcite] = ACTIONS(6465), - [anon_sym_BSLASHpvolcite] = ACTIONS(6465), - [anon_sym_BSLASHPvolcite] = ACTIONS(6465), - [anon_sym_BSLASHfvolcite] = ACTIONS(6465), - [anon_sym_BSLASHftvolcite] = ACTIONS(6465), - [anon_sym_BSLASHsvolcite] = ACTIONS(6465), - [anon_sym_BSLASHSvolcite] = ACTIONS(6465), - [anon_sym_BSLASHtvolcite] = ACTIONS(6465), - [anon_sym_BSLASHTvolcite] = ACTIONS(6465), - [anon_sym_BSLASHavolcite] = ACTIONS(6465), - [anon_sym_BSLASHAvolcite] = ACTIONS(6465), - [anon_sym_BSLASHnotecite] = ACTIONS(6465), - [anon_sym_BSLASHNotecite] = ACTIONS(6465), - [anon_sym_BSLASHpnotecite] = ACTIONS(6465), - [anon_sym_BSLASHPnotecite] = ACTIONS(6465), - [anon_sym_BSLASHfnotecite] = ACTIONS(6465), - [anon_sym_BSLASHlabel] = ACTIONS(6465), - [anon_sym_BSLASHref] = ACTIONS(6465), - [anon_sym_BSLASHeqref] = ACTIONS(6465), - [anon_sym_BSLASHvref] = ACTIONS(6465), - [anon_sym_BSLASHVref] = ACTIONS(6465), - [anon_sym_BSLASHautoref] = ACTIONS(6465), - [anon_sym_BSLASHpageref] = ACTIONS(6465), - [anon_sym_BSLASHcref] = ACTIONS(6465), - [anon_sym_BSLASHCref] = ACTIONS(6465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnameCref] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHlabelcref] = ACTIONS(6465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCrefrange] = ACTIONS(6465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnewlabel] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6467), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHdef] = ACTIONS(6465), - [anon_sym_BSLASHlet] = ACTIONS(6465), - [anon_sym_BSLASHleft] = ACTIONS(6465), - [anon_sym_BSLASHbig] = ACTIONS(6465), - [anon_sym_BSLASHBig] = ACTIONS(6465), - [anon_sym_BSLASHbigg] = ACTIONS(6465), - [anon_sym_BSLASHBigg] = ACTIONS(6465), - [anon_sym_BSLASHbigl] = ACTIONS(6465), - [anon_sym_BSLASHBigl] = ACTIONS(6465), - [anon_sym_BSLASHbiggl] = ACTIONS(6465), - [anon_sym_BSLASHBiggl] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6465), - [anon_sym_BSLASHgls] = ACTIONS(6465), - [anon_sym_BSLASHGls] = ACTIONS(6465), - [anon_sym_BSLASHGLS] = ACTIONS(6465), - [anon_sym_BSLASHglspl] = ACTIONS(6465), - [anon_sym_BSLASHGlspl] = ACTIONS(6465), - [anon_sym_BSLASHGLSpl] = ACTIONS(6465), - [anon_sym_BSLASHglsdisp] = ACTIONS(6465), - [anon_sym_BSLASHglslink] = ACTIONS(6465), - [anon_sym_BSLASHglstext] = ACTIONS(6465), - [anon_sym_BSLASHGlstext] = ACTIONS(6465), - [anon_sym_BSLASHGLStext] = ACTIONS(6465), - [anon_sym_BSLASHglsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6465), - [anon_sym_BSLASHglsplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSplural] = ACTIONS(6465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHglsname] = ACTIONS(6465), - [anon_sym_BSLASHGlsname] = ACTIONS(6465), - [anon_sym_BSLASHGLSname] = ACTIONS(6465), - [anon_sym_BSLASHglssymbol] = ACTIONS(6465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6465), - [anon_sym_BSLASHglsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6465), - [anon_sym_BSLASHglsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6465), - [anon_sym_BSLASHglsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6465), - [anon_sym_BSLASHglsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6465), - [anon_sym_BSLASHglsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6465), - [anon_sym_BSLASHnewacronym] = ACTIONS(6465), - [anon_sym_BSLASHacrshort] = ACTIONS(6465), - [anon_sym_BSLASHAcrshort] = ACTIONS(6465), - [anon_sym_BSLASHACRshort] = ACTIONS(6465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6465), - [anon_sym_BSLASHacrlong] = ACTIONS(6465), - [anon_sym_BSLASHAcrlong] = ACTIONS(6465), - [anon_sym_BSLASHACRlong] = ACTIONS(6465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6465), - [anon_sym_BSLASHacrfull] = ACTIONS(6465), - [anon_sym_BSLASHAcrfull] = ACTIONS(6465), - [anon_sym_BSLASHACRfull] = ACTIONS(6465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6465), - [anon_sym_BSLASHacs] = ACTIONS(6465), - [anon_sym_BSLASHAcs] = ACTIONS(6465), - [anon_sym_BSLASHacsp] = ACTIONS(6465), - [anon_sym_BSLASHAcsp] = ACTIONS(6465), - [anon_sym_BSLASHacl] = ACTIONS(6465), - [anon_sym_BSLASHAcl] = ACTIONS(6465), - [anon_sym_BSLASHaclp] = ACTIONS(6465), - [anon_sym_BSLASHAclp] = ACTIONS(6465), - [anon_sym_BSLASHacf] = ACTIONS(6465), - [anon_sym_BSLASHAcf] = ACTIONS(6465), - [anon_sym_BSLASHacfp] = ACTIONS(6465), - [anon_sym_BSLASHAcfp] = ACTIONS(6465), - [anon_sym_BSLASHac] = ACTIONS(6465), - [anon_sym_BSLASHAc] = ACTIONS(6465), - [anon_sym_BSLASHacp] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6465), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6465), - [anon_sym_BSLASHcolor] = ACTIONS(6465), - [anon_sym_BSLASHcolorbox] = ACTIONS(6465), - [anon_sym_BSLASHtextcolor] = ACTIONS(6465), - [anon_sym_BSLASHpagecolor] = ACTIONS(6465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6465), - [anon_sym_BSLASHtext] = ACTIONS(6465), - [anon_sym_BSLASHintertext] = ACTIONS(6465), - [anon_sym_shortintertext] = ACTIONS(6465), - }, - [1036] = { - [ts_builtin_sym_end] = ACTIONS(6051), - [sym_command_name] = ACTIONS(6049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6049), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_BSLASHpart] = ACTIONS(6049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddpart] = ACTIONS(6049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6051), - [anon_sym_BSLASHchapter] = ACTIONS(6049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddchap] = ACTIONS(6049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsection] = ACTIONS(6049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddsec] = ACTIONS(6049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubsection] = ACTIONS(6049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHparagraph] = ACTIONS(6049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6051), - [anon_sym_BSLASHitem] = ACTIONS(6049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6051), - [anon_sym_LBRACE] = ACTIONS(6051), - [anon_sym_RBRACE] = ACTIONS(6051), - [sym_word] = ACTIONS(6049), - [sym_placeholder] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6051), - [anon_sym_DASH] = ACTIONS(6051), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6049), - [anon_sym_GT] = ACTIONS(6049), - [anon_sym_BANG] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6049), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_SQUOTE] = ACTIONS(6049), - [anon_sym__] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), - [anon_sym_BSLASHbegin] = ACTIONS(6049), - [anon_sym_BSLASHtitle] = ACTIONS(6049), - [anon_sym_BSLASHauthor] = ACTIONS(6049), - [anon_sym_BSLASHusepackage] = ACTIONS(6049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6049), - [anon_sym_BSLASHinclude] = ACTIONS(6049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6049), - [anon_sym_BSLASHinput] = ACTIONS(6049), - [anon_sym_BSLASHsubfile] = ACTIONS(6049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6049), - [anon_sym_BSLASHbibliography] = ACTIONS(6049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6049), - [anon_sym_BSLASHincludesvg] = ACTIONS(6049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6049), - [anon_sym_BSLASHimport] = ACTIONS(6049), - [anon_sym_BSLASHsubimport] = ACTIONS(6049), - [anon_sym_BSLASHinputfrom] = ACTIONS(6049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6049), - [anon_sym_BSLASHincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHcaption] = ACTIONS(6049), - [anon_sym_BSLASHcite] = ACTIONS(6049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCite] = ACTIONS(6049), - [anon_sym_BSLASHnocite] = ACTIONS(6049), - [anon_sym_BSLASHcitet] = ACTIONS(6049), - [anon_sym_BSLASHcitep] = ACTIONS(6049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteauthor] = ACTIONS(6049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitetitle] = ACTIONS(6049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteyear] = ACTIONS(6049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitedate] = ACTIONS(6049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteurl] = ACTIONS(6049), - [anon_sym_BSLASHfullcite] = ACTIONS(6049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6049), - [anon_sym_BSLASHcitealt] = ACTIONS(6049), - [anon_sym_BSLASHcitealp] = ACTIONS(6049), - [anon_sym_BSLASHcitetext] = ACTIONS(6049), - [anon_sym_BSLASHparencite] = ACTIONS(6049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHParencite] = ACTIONS(6049), - [anon_sym_BSLASHfootcite] = ACTIONS(6049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6049), - [anon_sym_BSLASHtextcite] = ACTIONS(6049), - [anon_sym_BSLASHTextcite] = ACTIONS(6049), - [anon_sym_BSLASHsmartcite] = ACTIONS(6049), - [anon_sym_BSLASHSmartcite] = ACTIONS(6049), - [anon_sym_BSLASHsupercite] = ACTIONS(6049), - [anon_sym_BSLASHautocite] = ACTIONS(6049), - [anon_sym_BSLASHAutocite] = ACTIONS(6049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHvolcite] = ACTIONS(6049), - [anon_sym_BSLASHVolcite] = ACTIONS(6049), - [anon_sym_BSLASHpvolcite] = ACTIONS(6049), - [anon_sym_BSLASHPvolcite] = ACTIONS(6049), - [anon_sym_BSLASHfvolcite] = ACTIONS(6049), - [anon_sym_BSLASHftvolcite] = ACTIONS(6049), - [anon_sym_BSLASHsvolcite] = ACTIONS(6049), - [anon_sym_BSLASHSvolcite] = ACTIONS(6049), - [anon_sym_BSLASHtvolcite] = ACTIONS(6049), - [anon_sym_BSLASHTvolcite] = ACTIONS(6049), - [anon_sym_BSLASHavolcite] = ACTIONS(6049), - [anon_sym_BSLASHAvolcite] = ACTIONS(6049), - [anon_sym_BSLASHnotecite] = ACTIONS(6049), - [anon_sym_BSLASHNotecite] = ACTIONS(6049), - [anon_sym_BSLASHpnotecite] = ACTIONS(6049), - [anon_sym_BSLASHPnotecite] = ACTIONS(6049), - [anon_sym_BSLASHfnotecite] = ACTIONS(6049), - [anon_sym_BSLASHlabel] = ACTIONS(6049), - [anon_sym_BSLASHref] = ACTIONS(6049), - [anon_sym_BSLASHeqref] = ACTIONS(6049), - [anon_sym_BSLASHvref] = ACTIONS(6049), - [anon_sym_BSLASHVref] = ACTIONS(6049), - [anon_sym_BSLASHautoref] = ACTIONS(6049), - [anon_sym_BSLASHpageref] = ACTIONS(6049), - [anon_sym_BSLASHcref] = ACTIONS(6049), - [anon_sym_BSLASHCref] = ACTIONS(6049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnameCref] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHlabelcref] = ACTIONS(6049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCrefrange] = ACTIONS(6049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnewlabel] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHdef] = ACTIONS(6049), - [anon_sym_BSLASHlet] = ACTIONS(6049), - [anon_sym_BSLASHleft] = ACTIONS(6049), - [anon_sym_BSLASHbig] = ACTIONS(6049), - [anon_sym_BSLASHBig] = ACTIONS(6049), - [anon_sym_BSLASHbigg] = ACTIONS(6049), - [anon_sym_BSLASHBigg] = ACTIONS(6049), - [anon_sym_BSLASHbigl] = ACTIONS(6049), - [anon_sym_BSLASHBigl] = ACTIONS(6049), - [anon_sym_BSLASHbiggl] = ACTIONS(6049), - [anon_sym_BSLASHBiggl] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6049), - [anon_sym_BSLASHgls] = ACTIONS(6049), - [anon_sym_BSLASHGls] = ACTIONS(6049), - [anon_sym_BSLASHGLS] = ACTIONS(6049), - [anon_sym_BSLASHglspl] = ACTIONS(6049), - [anon_sym_BSLASHGlspl] = ACTIONS(6049), - [anon_sym_BSLASHGLSpl] = ACTIONS(6049), - [anon_sym_BSLASHglsdisp] = ACTIONS(6049), - [anon_sym_BSLASHglslink] = ACTIONS(6049), - [anon_sym_BSLASHglstext] = ACTIONS(6049), - [anon_sym_BSLASHGlstext] = ACTIONS(6049), - [anon_sym_BSLASHGLStext] = ACTIONS(6049), - [anon_sym_BSLASHglsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6049), - [anon_sym_BSLASHglsplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSplural] = ACTIONS(6049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHglsname] = ACTIONS(6049), - [anon_sym_BSLASHGlsname] = ACTIONS(6049), - [anon_sym_BSLASHGLSname] = ACTIONS(6049), - [anon_sym_BSLASHglssymbol] = ACTIONS(6049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6049), - [anon_sym_BSLASHglsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6049), - [anon_sym_BSLASHglsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6049), - [anon_sym_BSLASHglsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6049), - [anon_sym_BSLASHglsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6049), - [anon_sym_BSLASHglsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6049), - [anon_sym_BSLASHnewacronym] = ACTIONS(6049), - [anon_sym_BSLASHacrshort] = ACTIONS(6049), - [anon_sym_BSLASHAcrshort] = ACTIONS(6049), - [anon_sym_BSLASHACRshort] = ACTIONS(6049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6049), - [anon_sym_BSLASHacrlong] = ACTIONS(6049), - [anon_sym_BSLASHAcrlong] = ACTIONS(6049), - [anon_sym_BSLASHACRlong] = ACTIONS(6049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6049), - [anon_sym_BSLASHacrfull] = ACTIONS(6049), - [anon_sym_BSLASHAcrfull] = ACTIONS(6049), - [anon_sym_BSLASHACRfull] = ACTIONS(6049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6049), - [anon_sym_BSLASHacs] = ACTIONS(6049), - [anon_sym_BSLASHAcs] = ACTIONS(6049), - [anon_sym_BSLASHacsp] = ACTIONS(6049), - [anon_sym_BSLASHAcsp] = ACTIONS(6049), - [anon_sym_BSLASHacl] = ACTIONS(6049), - [anon_sym_BSLASHAcl] = ACTIONS(6049), - [anon_sym_BSLASHaclp] = ACTIONS(6049), - [anon_sym_BSLASHAclp] = ACTIONS(6049), - [anon_sym_BSLASHacf] = ACTIONS(6049), - [anon_sym_BSLASHAcf] = ACTIONS(6049), - [anon_sym_BSLASHacfp] = ACTIONS(6049), - [anon_sym_BSLASHAcfp] = ACTIONS(6049), - [anon_sym_BSLASHac] = ACTIONS(6049), - [anon_sym_BSLASHAc] = ACTIONS(6049), - [anon_sym_BSLASHacp] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6049), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6049), - [anon_sym_BSLASHcolor] = ACTIONS(6049), - [anon_sym_BSLASHcolorbox] = ACTIONS(6049), - [anon_sym_BSLASHtextcolor] = ACTIONS(6049), - [anon_sym_BSLASHpagecolor] = ACTIONS(6049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6049), - [anon_sym_BSLASHtext] = ACTIONS(6049), - [anon_sym_BSLASHintertext] = ACTIONS(6049), - [anon_sym_shortintertext] = ACTIONS(6049), - }, - [1037] = { - [ts_builtin_sym_end] = ACTIONS(6475), - [sym_command_name] = ACTIONS(6473), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6473), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_RBRACK] = ACTIONS(6475), - [anon_sym_COMMA] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6475), - [anon_sym_LPAREN] = ACTIONS(6475), - [anon_sym_RPAREN] = ACTIONS(6475), - [anon_sym_BSLASHpart] = ACTIONS(6473), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddpart] = ACTIONS(6473), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6475), - [anon_sym_BSLASHchapter] = ACTIONS(6473), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddchap] = ACTIONS(6473), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsection] = ACTIONS(6473), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddsec] = ACTIONS(6473), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubsection] = ACTIONS(6473), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6473), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHparagraph] = ACTIONS(6473), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6473), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6475), - [anon_sym_BSLASHitem] = ACTIONS(6473), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6475), - [anon_sym_LBRACE] = ACTIONS(6475), - [anon_sym_RBRACE] = ACTIONS(6475), - [sym_word] = ACTIONS(6473), - [sym_placeholder] = ACTIONS(6475), - [anon_sym_PLUS] = ACTIONS(6475), - [anon_sym_DASH] = ACTIONS(6475), - [anon_sym_STAR] = ACTIONS(6475), - [anon_sym_SLASH] = ACTIONS(6475), - [anon_sym_LT] = ACTIONS(6473), - [anon_sym_GT] = ACTIONS(6473), - [anon_sym_BANG] = ACTIONS(6473), - [anon_sym_PIPE] = ACTIONS(6473), - [anon_sym_COLON] = ACTIONS(6473), - [anon_sym_SQUOTE] = ACTIONS(6473), - [anon_sym__] = ACTIONS(6475), - [anon_sym_CARET] = ACTIONS(6475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6475), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6475), - [anon_sym_DOLLAR] = ACTIONS(6473), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6475), - [anon_sym_BSLASHbegin] = ACTIONS(6473), - [anon_sym_BSLASHtitle] = ACTIONS(6473), - [anon_sym_BSLASHauthor] = ACTIONS(6473), - [anon_sym_BSLASHusepackage] = ACTIONS(6473), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6473), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6473), - [anon_sym_BSLASHinclude] = ACTIONS(6473), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6473), - [anon_sym_BSLASHinput] = ACTIONS(6473), - [anon_sym_BSLASHsubfile] = ACTIONS(6473), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6473), - [anon_sym_BSLASHbibliography] = ACTIONS(6473), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6473), - [anon_sym_BSLASHincludesvg] = ACTIONS(6473), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6473), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6473), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6473), - [anon_sym_BSLASHimport] = ACTIONS(6473), - [anon_sym_BSLASHsubimport] = ACTIONS(6473), - [anon_sym_BSLASHinputfrom] = ACTIONS(6473), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6473), - [anon_sym_BSLASHincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHcaption] = ACTIONS(6473), - [anon_sym_BSLASHcite] = ACTIONS(6473), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCite] = ACTIONS(6473), - [anon_sym_BSLASHnocite] = ACTIONS(6473), - [anon_sym_BSLASHcitet] = ACTIONS(6473), - [anon_sym_BSLASHcitep] = ACTIONS(6473), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteauthor] = ACTIONS(6473), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6473), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitetitle] = ACTIONS(6473), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteyear] = ACTIONS(6473), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitedate] = ACTIONS(6473), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteurl] = ACTIONS(6473), - [anon_sym_BSLASHfullcite] = ACTIONS(6473), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6473), - [anon_sym_BSLASHcitealt] = ACTIONS(6473), - [anon_sym_BSLASHcitealp] = ACTIONS(6473), - [anon_sym_BSLASHcitetext] = ACTIONS(6473), - [anon_sym_BSLASHparencite] = ACTIONS(6473), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHParencite] = ACTIONS(6473), - [anon_sym_BSLASHfootcite] = ACTIONS(6473), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6473), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6473), - [anon_sym_BSLASHtextcite] = ACTIONS(6473), - [anon_sym_BSLASHTextcite] = ACTIONS(6473), - [anon_sym_BSLASHsmartcite] = ACTIONS(6473), - [anon_sym_BSLASHSmartcite] = ACTIONS(6473), - [anon_sym_BSLASHsupercite] = ACTIONS(6473), - [anon_sym_BSLASHautocite] = ACTIONS(6473), - [anon_sym_BSLASHAutocite] = ACTIONS(6473), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHvolcite] = ACTIONS(6473), - [anon_sym_BSLASHVolcite] = ACTIONS(6473), - [anon_sym_BSLASHpvolcite] = ACTIONS(6473), - [anon_sym_BSLASHPvolcite] = ACTIONS(6473), - [anon_sym_BSLASHfvolcite] = ACTIONS(6473), - [anon_sym_BSLASHftvolcite] = ACTIONS(6473), - [anon_sym_BSLASHsvolcite] = ACTIONS(6473), - [anon_sym_BSLASHSvolcite] = ACTIONS(6473), - [anon_sym_BSLASHtvolcite] = ACTIONS(6473), - [anon_sym_BSLASHTvolcite] = ACTIONS(6473), - [anon_sym_BSLASHavolcite] = ACTIONS(6473), - [anon_sym_BSLASHAvolcite] = ACTIONS(6473), - [anon_sym_BSLASHnotecite] = ACTIONS(6473), - [anon_sym_BSLASHNotecite] = ACTIONS(6473), - [anon_sym_BSLASHpnotecite] = ACTIONS(6473), - [anon_sym_BSLASHPnotecite] = ACTIONS(6473), - [anon_sym_BSLASHfnotecite] = ACTIONS(6473), - [anon_sym_BSLASHlabel] = ACTIONS(6473), - [anon_sym_BSLASHref] = ACTIONS(6473), - [anon_sym_BSLASHeqref] = ACTIONS(6473), - [anon_sym_BSLASHvref] = ACTIONS(6473), - [anon_sym_BSLASHVref] = ACTIONS(6473), - [anon_sym_BSLASHautoref] = ACTIONS(6473), - [anon_sym_BSLASHpageref] = ACTIONS(6473), - [anon_sym_BSLASHcref] = ACTIONS(6473), - [anon_sym_BSLASHCref] = ACTIONS(6473), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnameCref] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHlabelcref] = ACTIONS(6473), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCrefrange] = ACTIONS(6473), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnewlabel] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6473), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6473), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6475), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHdef] = ACTIONS(6473), - [anon_sym_BSLASHlet] = ACTIONS(6473), - [anon_sym_BSLASHleft] = ACTIONS(6473), - [anon_sym_BSLASHbig] = ACTIONS(6473), - [anon_sym_BSLASHBig] = ACTIONS(6473), - [anon_sym_BSLASHbigg] = ACTIONS(6473), - [anon_sym_BSLASHBigg] = ACTIONS(6473), - [anon_sym_BSLASHbigl] = ACTIONS(6473), - [anon_sym_BSLASHBigl] = ACTIONS(6473), - [anon_sym_BSLASHbiggl] = ACTIONS(6473), - [anon_sym_BSLASHBiggl] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6473), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6473), - [anon_sym_BSLASHgls] = ACTIONS(6473), - [anon_sym_BSLASHGls] = ACTIONS(6473), - [anon_sym_BSLASHGLS] = ACTIONS(6473), - [anon_sym_BSLASHglspl] = ACTIONS(6473), - [anon_sym_BSLASHGlspl] = ACTIONS(6473), - [anon_sym_BSLASHGLSpl] = ACTIONS(6473), - [anon_sym_BSLASHglsdisp] = ACTIONS(6473), - [anon_sym_BSLASHglslink] = ACTIONS(6473), - [anon_sym_BSLASHglstext] = ACTIONS(6473), - [anon_sym_BSLASHGlstext] = ACTIONS(6473), - [anon_sym_BSLASHGLStext] = ACTIONS(6473), - [anon_sym_BSLASHglsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6473), - [anon_sym_BSLASHglsplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSplural] = ACTIONS(6473), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHglsname] = ACTIONS(6473), - [anon_sym_BSLASHGlsname] = ACTIONS(6473), - [anon_sym_BSLASHGLSname] = ACTIONS(6473), - [anon_sym_BSLASHglssymbol] = ACTIONS(6473), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6473), - [anon_sym_BSLASHglsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6473), - [anon_sym_BSLASHglsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6473), - [anon_sym_BSLASHglsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6473), - [anon_sym_BSLASHglsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6473), - [anon_sym_BSLASHglsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6473), - [anon_sym_BSLASHnewacronym] = ACTIONS(6473), - [anon_sym_BSLASHacrshort] = ACTIONS(6473), - [anon_sym_BSLASHAcrshort] = ACTIONS(6473), - [anon_sym_BSLASHACRshort] = ACTIONS(6473), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6473), - [anon_sym_BSLASHacrlong] = ACTIONS(6473), - [anon_sym_BSLASHAcrlong] = ACTIONS(6473), - [anon_sym_BSLASHACRlong] = ACTIONS(6473), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6473), - [anon_sym_BSLASHacrfull] = ACTIONS(6473), - [anon_sym_BSLASHAcrfull] = ACTIONS(6473), - [anon_sym_BSLASHACRfull] = ACTIONS(6473), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6473), - [anon_sym_BSLASHacs] = ACTIONS(6473), - [anon_sym_BSLASHAcs] = ACTIONS(6473), - [anon_sym_BSLASHacsp] = ACTIONS(6473), - [anon_sym_BSLASHAcsp] = ACTIONS(6473), - [anon_sym_BSLASHacl] = ACTIONS(6473), - [anon_sym_BSLASHAcl] = ACTIONS(6473), - [anon_sym_BSLASHaclp] = ACTIONS(6473), - [anon_sym_BSLASHAclp] = ACTIONS(6473), - [anon_sym_BSLASHacf] = ACTIONS(6473), - [anon_sym_BSLASHAcf] = ACTIONS(6473), - [anon_sym_BSLASHacfp] = ACTIONS(6473), - [anon_sym_BSLASHAcfp] = ACTIONS(6473), - [anon_sym_BSLASHac] = ACTIONS(6473), - [anon_sym_BSLASHAc] = ACTIONS(6473), - [anon_sym_BSLASHacp] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6473), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6473), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6473), - [anon_sym_BSLASHcolor] = ACTIONS(6473), - [anon_sym_BSLASHcolorbox] = ACTIONS(6473), - [anon_sym_BSLASHtextcolor] = ACTIONS(6473), - [anon_sym_BSLASHpagecolor] = ACTIONS(6473), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6473), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6473), - [anon_sym_BSLASHtext] = ACTIONS(6473), - [anon_sym_BSLASHintertext] = ACTIONS(6473), - [anon_sym_shortintertext] = ACTIONS(6473), - }, - [1038] = { - [ts_builtin_sym_end] = ACTIONS(6327), - [sym_command_name] = ACTIONS(6325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6325), - [anon_sym_LBRACK] = ACTIONS(6327), - [anon_sym_RBRACK] = ACTIONS(6327), - [anon_sym_COMMA] = ACTIONS(6327), - [anon_sym_EQ] = ACTIONS(6327), - [anon_sym_LPAREN] = ACTIONS(6327), - [anon_sym_RPAREN] = ACTIONS(6327), - [anon_sym_BSLASHpart] = ACTIONS(6325), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddpart] = ACTIONS(6325), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6327), - [anon_sym_BSLASHchapter] = ACTIONS(6325), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddchap] = ACTIONS(6325), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsection] = ACTIONS(6325), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddsec] = ACTIONS(6325), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubsection] = ACTIONS(6325), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6325), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHparagraph] = ACTIONS(6325), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6325), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6327), - [anon_sym_BSLASHitem] = ACTIONS(6325), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6327), - [anon_sym_LBRACE] = ACTIONS(6327), - [anon_sym_RBRACE] = ACTIONS(6327), - [sym_word] = ACTIONS(6325), - [sym_placeholder] = ACTIONS(6327), - [anon_sym_PLUS] = ACTIONS(6327), - [anon_sym_DASH] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6327), - [anon_sym_SLASH] = ACTIONS(6327), - [anon_sym_LT] = ACTIONS(6325), - [anon_sym_GT] = ACTIONS(6325), - [anon_sym_BANG] = ACTIONS(6325), - [anon_sym_PIPE] = ACTIONS(6325), - [anon_sym_COLON] = ACTIONS(6325), - [anon_sym_SQUOTE] = ACTIONS(6325), - [anon_sym__] = ACTIONS(6327), - [anon_sym_CARET] = ACTIONS(6327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6327), - [anon_sym_DOLLAR] = ACTIONS(6325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6327), - [anon_sym_BSLASHbegin] = ACTIONS(6325), - [anon_sym_BSLASHtitle] = ACTIONS(6325), - [anon_sym_BSLASHauthor] = ACTIONS(6325), - [anon_sym_BSLASHusepackage] = ACTIONS(6325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6325), - [anon_sym_BSLASHinclude] = ACTIONS(6325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6325), - [anon_sym_BSLASHinput] = ACTIONS(6325), - [anon_sym_BSLASHsubfile] = ACTIONS(6325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6325), - [anon_sym_BSLASHbibliography] = ACTIONS(6325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6325), - [anon_sym_BSLASHincludesvg] = ACTIONS(6325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6325), - [anon_sym_BSLASHimport] = ACTIONS(6325), - [anon_sym_BSLASHsubimport] = ACTIONS(6325), - [anon_sym_BSLASHinputfrom] = ACTIONS(6325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6325), - [anon_sym_BSLASHincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHcaption] = ACTIONS(6325), - [anon_sym_BSLASHcite] = ACTIONS(6325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCite] = ACTIONS(6325), - [anon_sym_BSLASHnocite] = ACTIONS(6325), - [anon_sym_BSLASHcitet] = ACTIONS(6325), - [anon_sym_BSLASHcitep] = ACTIONS(6325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteauthor] = ACTIONS(6325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitetitle] = ACTIONS(6325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteyear] = ACTIONS(6325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitedate] = ACTIONS(6325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteurl] = ACTIONS(6325), - [anon_sym_BSLASHfullcite] = ACTIONS(6325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6325), - [anon_sym_BSLASHcitealt] = ACTIONS(6325), - [anon_sym_BSLASHcitealp] = ACTIONS(6325), - [anon_sym_BSLASHcitetext] = ACTIONS(6325), - [anon_sym_BSLASHparencite] = ACTIONS(6325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHParencite] = ACTIONS(6325), - [anon_sym_BSLASHfootcite] = ACTIONS(6325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6325), - [anon_sym_BSLASHtextcite] = ACTIONS(6325), - [anon_sym_BSLASHTextcite] = ACTIONS(6325), - [anon_sym_BSLASHsmartcite] = ACTIONS(6325), - [anon_sym_BSLASHSmartcite] = ACTIONS(6325), - [anon_sym_BSLASHsupercite] = ACTIONS(6325), - [anon_sym_BSLASHautocite] = ACTIONS(6325), - [anon_sym_BSLASHAutocite] = ACTIONS(6325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHvolcite] = ACTIONS(6325), - [anon_sym_BSLASHVolcite] = ACTIONS(6325), - [anon_sym_BSLASHpvolcite] = ACTIONS(6325), - [anon_sym_BSLASHPvolcite] = ACTIONS(6325), - [anon_sym_BSLASHfvolcite] = ACTIONS(6325), - [anon_sym_BSLASHftvolcite] = ACTIONS(6325), - [anon_sym_BSLASHsvolcite] = ACTIONS(6325), - [anon_sym_BSLASHSvolcite] = ACTIONS(6325), - [anon_sym_BSLASHtvolcite] = ACTIONS(6325), - [anon_sym_BSLASHTvolcite] = ACTIONS(6325), - [anon_sym_BSLASHavolcite] = ACTIONS(6325), - [anon_sym_BSLASHAvolcite] = ACTIONS(6325), - [anon_sym_BSLASHnotecite] = ACTIONS(6325), - [anon_sym_BSLASHNotecite] = ACTIONS(6325), - [anon_sym_BSLASHpnotecite] = ACTIONS(6325), - [anon_sym_BSLASHPnotecite] = ACTIONS(6325), - [anon_sym_BSLASHfnotecite] = ACTIONS(6325), - [anon_sym_BSLASHlabel] = ACTIONS(6325), - [anon_sym_BSLASHref] = ACTIONS(6325), - [anon_sym_BSLASHeqref] = ACTIONS(6325), - [anon_sym_BSLASHvref] = ACTIONS(6325), - [anon_sym_BSLASHVref] = ACTIONS(6325), - [anon_sym_BSLASHautoref] = ACTIONS(6325), - [anon_sym_BSLASHpageref] = ACTIONS(6325), - [anon_sym_BSLASHcref] = ACTIONS(6325), - [anon_sym_BSLASHCref] = ACTIONS(6325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnameCref] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHlabelcref] = ACTIONS(6325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCrefrange] = ACTIONS(6325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnewlabel] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6327), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHdef] = ACTIONS(6325), - [anon_sym_BSLASHlet] = ACTIONS(6325), - [anon_sym_BSLASHleft] = ACTIONS(6325), - [anon_sym_BSLASHbig] = ACTIONS(6325), - [anon_sym_BSLASHBig] = ACTIONS(6325), - [anon_sym_BSLASHbigg] = ACTIONS(6325), - [anon_sym_BSLASHBigg] = ACTIONS(6325), - [anon_sym_BSLASHbigl] = ACTIONS(6325), - [anon_sym_BSLASHBigl] = ACTIONS(6325), - [anon_sym_BSLASHbiggl] = ACTIONS(6325), - [anon_sym_BSLASHBiggl] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6325), - [anon_sym_BSLASHgls] = ACTIONS(6325), - [anon_sym_BSLASHGls] = ACTIONS(6325), - [anon_sym_BSLASHGLS] = ACTIONS(6325), - [anon_sym_BSLASHglspl] = ACTIONS(6325), - [anon_sym_BSLASHGlspl] = ACTIONS(6325), - [anon_sym_BSLASHGLSpl] = ACTIONS(6325), - [anon_sym_BSLASHglsdisp] = ACTIONS(6325), - [anon_sym_BSLASHglslink] = ACTIONS(6325), - [anon_sym_BSLASHglstext] = ACTIONS(6325), - [anon_sym_BSLASHGlstext] = ACTIONS(6325), - [anon_sym_BSLASHGLStext] = ACTIONS(6325), - [anon_sym_BSLASHglsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6325), - [anon_sym_BSLASHglsplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSplural] = ACTIONS(6325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHglsname] = ACTIONS(6325), - [anon_sym_BSLASHGlsname] = ACTIONS(6325), - [anon_sym_BSLASHGLSname] = ACTIONS(6325), - [anon_sym_BSLASHglssymbol] = ACTIONS(6325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6325), - [anon_sym_BSLASHglsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6325), - [anon_sym_BSLASHglsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6325), - [anon_sym_BSLASHglsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6325), - [anon_sym_BSLASHglsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6325), - [anon_sym_BSLASHglsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6325), - [anon_sym_BSLASHnewacronym] = ACTIONS(6325), - [anon_sym_BSLASHacrshort] = ACTIONS(6325), - [anon_sym_BSLASHAcrshort] = ACTIONS(6325), - [anon_sym_BSLASHACRshort] = ACTIONS(6325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6325), - [anon_sym_BSLASHacrlong] = ACTIONS(6325), - [anon_sym_BSLASHAcrlong] = ACTIONS(6325), - [anon_sym_BSLASHACRlong] = ACTIONS(6325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6325), - [anon_sym_BSLASHacrfull] = ACTIONS(6325), - [anon_sym_BSLASHAcrfull] = ACTIONS(6325), - [anon_sym_BSLASHACRfull] = ACTIONS(6325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6325), - [anon_sym_BSLASHacs] = ACTIONS(6325), - [anon_sym_BSLASHAcs] = ACTIONS(6325), - [anon_sym_BSLASHacsp] = ACTIONS(6325), - [anon_sym_BSLASHAcsp] = ACTIONS(6325), - [anon_sym_BSLASHacl] = ACTIONS(6325), - [anon_sym_BSLASHAcl] = ACTIONS(6325), - [anon_sym_BSLASHaclp] = ACTIONS(6325), - [anon_sym_BSLASHAclp] = ACTIONS(6325), - [anon_sym_BSLASHacf] = ACTIONS(6325), - [anon_sym_BSLASHAcf] = ACTIONS(6325), - [anon_sym_BSLASHacfp] = ACTIONS(6325), - [anon_sym_BSLASHAcfp] = ACTIONS(6325), - [anon_sym_BSLASHac] = ACTIONS(6325), - [anon_sym_BSLASHAc] = ACTIONS(6325), - [anon_sym_BSLASHacp] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6325), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6325), - [anon_sym_BSLASHcolor] = ACTIONS(6325), - [anon_sym_BSLASHcolorbox] = ACTIONS(6325), - [anon_sym_BSLASHtextcolor] = ACTIONS(6325), - [anon_sym_BSLASHpagecolor] = ACTIONS(6325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6325), - [anon_sym_BSLASHtext] = ACTIONS(6325), - [anon_sym_BSLASHintertext] = ACTIONS(6325), - [anon_sym_shortintertext] = ACTIONS(6325), - }, - [1039] = { - [ts_builtin_sym_end] = ACTIONS(6303), - [sym_command_name] = ACTIONS(6301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6301), - [anon_sym_LBRACK] = ACTIONS(6303), - [anon_sym_RBRACK] = ACTIONS(6303), - [anon_sym_COMMA] = ACTIONS(6303), - [anon_sym_EQ] = ACTIONS(6303), - [anon_sym_LPAREN] = ACTIONS(6303), - [anon_sym_RPAREN] = ACTIONS(6303), - [anon_sym_BSLASHpart] = ACTIONS(6301), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddpart] = ACTIONS(6301), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6303), - [anon_sym_BSLASHchapter] = ACTIONS(6301), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddchap] = ACTIONS(6301), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsection] = ACTIONS(6301), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddsec] = ACTIONS(6301), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubsection] = ACTIONS(6301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6301), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHparagraph] = ACTIONS(6301), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6301), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6303), - [anon_sym_BSLASHitem] = ACTIONS(6301), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6303), - [anon_sym_LBRACE] = ACTIONS(6303), - [anon_sym_RBRACE] = ACTIONS(6303), - [sym_word] = ACTIONS(6301), - [sym_placeholder] = ACTIONS(6303), - [anon_sym_PLUS] = ACTIONS(6303), - [anon_sym_DASH] = ACTIONS(6303), - [anon_sym_STAR] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6303), - [anon_sym_LT] = ACTIONS(6301), - [anon_sym_GT] = ACTIONS(6301), - [anon_sym_BANG] = ACTIONS(6301), - [anon_sym_PIPE] = ACTIONS(6301), - [anon_sym_COLON] = ACTIONS(6301), - [anon_sym_SQUOTE] = ACTIONS(6301), - [anon_sym__] = ACTIONS(6303), - [anon_sym_CARET] = ACTIONS(6303), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6303), - [anon_sym_DOLLAR] = ACTIONS(6301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6303), - [anon_sym_BSLASHbegin] = ACTIONS(6301), - [anon_sym_BSLASHtitle] = ACTIONS(6301), - [anon_sym_BSLASHauthor] = ACTIONS(6301), - [anon_sym_BSLASHusepackage] = ACTIONS(6301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6301), - [anon_sym_BSLASHinclude] = ACTIONS(6301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6301), - [anon_sym_BSLASHinput] = ACTIONS(6301), - [anon_sym_BSLASHsubfile] = ACTIONS(6301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6301), - [anon_sym_BSLASHbibliography] = ACTIONS(6301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6301), - [anon_sym_BSLASHincludesvg] = ACTIONS(6301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6301), - [anon_sym_BSLASHimport] = ACTIONS(6301), - [anon_sym_BSLASHsubimport] = ACTIONS(6301), - [anon_sym_BSLASHinputfrom] = ACTIONS(6301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6301), - [anon_sym_BSLASHincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHcaption] = ACTIONS(6301), - [anon_sym_BSLASHcite] = ACTIONS(6301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCite] = ACTIONS(6301), - [anon_sym_BSLASHnocite] = ACTIONS(6301), - [anon_sym_BSLASHcitet] = ACTIONS(6301), - [anon_sym_BSLASHcitep] = ACTIONS(6301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteauthor] = ACTIONS(6301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitetitle] = ACTIONS(6301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteyear] = ACTIONS(6301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitedate] = ACTIONS(6301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteurl] = ACTIONS(6301), - [anon_sym_BSLASHfullcite] = ACTIONS(6301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6301), - [anon_sym_BSLASHcitealt] = ACTIONS(6301), - [anon_sym_BSLASHcitealp] = ACTIONS(6301), - [anon_sym_BSLASHcitetext] = ACTIONS(6301), - [anon_sym_BSLASHparencite] = ACTIONS(6301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHParencite] = ACTIONS(6301), - [anon_sym_BSLASHfootcite] = ACTIONS(6301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6301), - [anon_sym_BSLASHtextcite] = ACTIONS(6301), - [anon_sym_BSLASHTextcite] = ACTIONS(6301), - [anon_sym_BSLASHsmartcite] = ACTIONS(6301), - [anon_sym_BSLASHSmartcite] = ACTIONS(6301), - [anon_sym_BSLASHsupercite] = ACTIONS(6301), - [anon_sym_BSLASHautocite] = ACTIONS(6301), - [anon_sym_BSLASHAutocite] = ACTIONS(6301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHvolcite] = ACTIONS(6301), - [anon_sym_BSLASHVolcite] = ACTIONS(6301), - [anon_sym_BSLASHpvolcite] = ACTIONS(6301), - [anon_sym_BSLASHPvolcite] = ACTIONS(6301), - [anon_sym_BSLASHfvolcite] = ACTIONS(6301), - [anon_sym_BSLASHftvolcite] = ACTIONS(6301), - [anon_sym_BSLASHsvolcite] = ACTIONS(6301), - [anon_sym_BSLASHSvolcite] = ACTIONS(6301), - [anon_sym_BSLASHtvolcite] = ACTIONS(6301), - [anon_sym_BSLASHTvolcite] = ACTIONS(6301), - [anon_sym_BSLASHavolcite] = ACTIONS(6301), - [anon_sym_BSLASHAvolcite] = ACTIONS(6301), - [anon_sym_BSLASHnotecite] = ACTIONS(6301), - [anon_sym_BSLASHNotecite] = ACTIONS(6301), - [anon_sym_BSLASHpnotecite] = ACTIONS(6301), - [anon_sym_BSLASHPnotecite] = ACTIONS(6301), - [anon_sym_BSLASHfnotecite] = ACTIONS(6301), - [anon_sym_BSLASHlabel] = ACTIONS(6301), - [anon_sym_BSLASHref] = ACTIONS(6301), - [anon_sym_BSLASHeqref] = ACTIONS(6301), - [anon_sym_BSLASHvref] = ACTIONS(6301), - [anon_sym_BSLASHVref] = ACTIONS(6301), - [anon_sym_BSLASHautoref] = ACTIONS(6301), - [anon_sym_BSLASHpageref] = ACTIONS(6301), - [anon_sym_BSLASHcref] = ACTIONS(6301), - [anon_sym_BSLASHCref] = ACTIONS(6301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnameCref] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHlabelcref] = ACTIONS(6301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCrefrange] = ACTIONS(6301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnewlabel] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6303), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHdef] = ACTIONS(6301), - [anon_sym_BSLASHlet] = ACTIONS(6301), - [anon_sym_BSLASHleft] = ACTIONS(6301), - [anon_sym_BSLASHbig] = ACTIONS(6301), - [anon_sym_BSLASHBig] = ACTIONS(6301), - [anon_sym_BSLASHbigg] = ACTIONS(6301), - [anon_sym_BSLASHBigg] = ACTIONS(6301), - [anon_sym_BSLASHbigl] = ACTIONS(6301), - [anon_sym_BSLASHBigl] = ACTIONS(6301), - [anon_sym_BSLASHbiggl] = ACTIONS(6301), - [anon_sym_BSLASHBiggl] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6301), - [anon_sym_BSLASHgls] = ACTIONS(6301), - [anon_sym_BSLASHGls] = ACTIONS(6301), - [anon_sym_BSLASHGLS] = ACTIONS(6301), - [anon_sym_BSLASHglspl] = ACTIONS(6301), - [anon_sym_BSLASHGlspl] = ACTIONS(6301), - [anon_sym_BSLASHGLSpl] = ACTIONS(6301), - [anon_sym_BSLASHglsdisp] = ACTIONS(6301), - [anon_sym_BSLASHglslink] = ACTIONS(6301), - [anon_sym_BSLASHglstext] = ACTIONS(6301), - [anon_sym_BSLASHGlstext] = ACTIONS(6301), - [anon_sym_BSLASHGLStext] = ACTIONS(6301), - [anon_sym_BSLASHglsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6301), - [anon_sym_BSLASHglsplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSplural] = ACTIONS(6301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHglsname] = ACTIONS(6301), - [anon_sym_BSLASHGlsname] = ACTIONS(6301), - [anon_sym_BSLASHGLSname] = ACTIONS(6301), - [anon_sym_BSLASHglssymbol] = ACTIONS(6301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6301), - [anon_sym_BSLASHglsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6301), - [anon_sym_BSLASHglsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6301), - [anon_sym_BSLASHglsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6301), - [anon_sym_BSLASHglsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6301), - [anon_sym_BSLASHglsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6301), - [anon_sym_BSLASHnewacronym] = ACTIONS(6301), - [anon_sym_BSLASHacrshort] = ACTIONS(6301), - [anon_sym_BSLASHAcrshort] = ACTIONS(6301), - [anon_sym_BSLASHACRshort] = ACTIONS(6301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6301), - [anon_sym_BSLASHacrlong] = ACTIONS(6301), - [anon_sym_BSLASHAcrlong] = ACTIONS(6301), - [anon_sym_BSLASHACRlong] = ACTIONS(6301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6301), - [anon_sym_BSLASHacrfull] = ACTIONS(6301), - [anon_sym_BSLASHAcrfull] = ACTIONS(6301), - [anon_sym_BSLASHACRfull] = ACTIONS(6301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6301), - [anon_sym_BSLASHacs] = ACTIONS(6301), - [anon_sym_BSLASHAcs] = ACTIONS(6301), - [anon_sym_BSLASHacsp] = ACTIONS(6301), - [anon_sym_BSLASHAcsp] = ACTIONS(6301), - [anon_sym_BSLASHacl] = ACTIONS(6301), - [anon_sym_BSLASHAcl] = ACTIONS(6301), - [anon_sym_BSLASHaclp] = ACTIONS(6301), - [anon_sym_BSLASHAclp] = ACTIONS(6301), - [anon_sym_BSLASHacf] = ACTIONS(6301), - [anon_sym_BSLASHAcf] = ACTIONS(6301), - [anon_sym_BSLASHacfp] = ACTIONS(6301), - [anon_sym_BSLASHAcfp] = ACTIONS(6301), - [anon_sym_BSLASHac] = ACTIONS(6301), - [anon_sym_BSLASHAc] = ACTIONS(6301), - [anon_sym_BSLASHacp] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6301), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6301), - [anon_sym_BSLASHcolor] = ACTIONS(6301), - [anon_sym_BSLASHcolorbox] = ACTIONS(6301), - [anon_sym_BSLASHtextcolor] = ACTIONS(6301), - [anon_sym_BSLASHpagecolor] = ACTIONS(6301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6301), - [anon_sym_BSLASHtext] = ACTIONS(6301), - [anon_sym_BSLASHintertext] = ACTIONS(6301), - [anon_sym_shortintertext] = ACTIONS(6301), - }, - [1040] = { - [ts_builtin_sym_end] = ACTIONS(6143), - [sym_command_name] = ACTIONS(6141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6141), - [anon_sym_LBRACK] = ACTIONS(6143), - [anon_sym_RBRACK] = ACTIONS(6143), - [anon_sym_COMMA] = ACTIONS(6143), - [anon_sym_EQ] = ACTIONS(6143), - [anon_sym_LPAREN] = ACTIONS(6143), - [anon_sym_RPAREN] = ACTIONS(6143), - [anon_sym_BSLASHpart] = ACTIONS(6141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddpart] = ACTIONS(6141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6143), - [anon_sym_BSLASHchapter] = ACTIONS(6141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddchap] = ACTIONS(6141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsection] = ACTIONS(6141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddsec] = ACTIONS(6141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubsection] = ACTIONS(6141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHparagraph] = ACTIONS(6141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6143), - [anon_sym_BSLASHitem] = ACTIONS(6141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6143), - [anon_sym_LBRACE] = ACTIONS(6143), - [anon_sym_RBRACE] = ACTIONS(6143), - [sym_word] = ACTIONS(6141), - [sym_placeholder] = ACTIONS(6143), - [anon_sym_PLUS] = ACTIONS(6143), - [anon_sym_DASH] = ACTIONS(6143), - [anon_sym_STAR] = ACTIONS(6143), - [anon_sym_SLASH] = ACTIONS(6143), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_GT] = ACTIONS(6141), - [anon_sym_BANG] = ACTIONS(6141), - [anon_sym_PIPE] = ACTIONS(6141), - [anon_sym_COLON] = ACTIONS(6141), - [anon_sym_SQUOTE] = ACTIONS(6141), - [anon_sym__] = ACTIONS(6143), - [anon_sym_CARET] = ACTIONS(6143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6143), - [anon_sym_DOLLAR] = ACTIONS(6141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6143), - [anon_sym_BSLASHbegin] = ACTIONS(6141), - [anon_sym_BSLASHtitle] = ACTIONS(6141), - [anon_sym_BSLASHauthor] = ACTIONS(6141), - [anon_sym_BSLASHusepackage] = ACTIONS(6141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6141), - [anon_sym_BSLASHinclude] = ACTIONS(6141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6141), - [anon_sym_BSLASHinput] = ACTIONS(6141), - [anon_sym_BSLASHsubfile] = ACTIONS(6141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6141), - [anon_sym_BSLASHbibliography] = ACTIONS(6141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6141), - [anon_sym_BSLASHincludesvg] = ACTIONS(6141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6141), - [anon_sym_BSLASHimport] = ACTIONS(6141), - [anon_sym_BSLASHsubimport] = ACTIONS(6141), - [anon_sym_BSLASHinputfrom] = ACTIONS(6141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6141), - [anon_sym_BSLASHincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHcaption] = ACTIONS(6141), - [anon_sym_BSLASHcite] = ACTIONS(6141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCite] = ACTIONS(6141), - [anon_sym_BSLASHnocite] = ACTIONS(6141), - [anon_sym_BSLASHcitet] = ACTIONS(6141), - [anon_sym_BSLASHcitep] = ACTIONS(6141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteauthor] = ACTIONS(6141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitetitle] = ACTIONS(6141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteyear] = ACTIONS(6141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitedate] = ACTIONS(6141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteurl] = ACTIONS(6141), - [anon_sym_BSLASHfullcite] = ACTIONS(6141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6141), - [anon_sym_BSLASHcitealt] = ACTIONS(6141), - [anon_sym_BSLASHcitealp] = ACTIONS(6141), - [anon_sym_BSLASHcitetext] = ACTIONS(6141), - [anon_sym_BSLASHparencite] = ACTIONS(6141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHParencite] = ACTIONS(6141), - [anon_sym_BSLASHfootcite] = ACTIONS(6141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6141), - [anon_sym_BSLASHtextcite] = ACTIONS(6141), - [anon_sym_BSLASHTextcite] = ACTIONS(6141), - [anon_sym_BSLASHsmartcite] = ACTIONS(6141), - [anon_sym_BSLASHSmartcite] = ACTIONS(6141), - [anon_sym_BSLASHsupercite] = ACTIONS(6141), - [anon_sym_BSLASHautocite] = ACTIONS(6141), - [anon_sym_BSLASHAutocite] = ACTIONS(6141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHvolcite] = ACTIONS(6141), - [anon_sym_BSLASHVolcite] = ACTIONS(6141), - [anon_sym_BSLASHpvolcite] = ACTIONS(6141), - [anon_sym_BSLASHPvolcite] = ACTIONS(6141), - [anon_sym_BSLASHfvolcite] = ACTIONS(6141), - [anon_sym_BSLASHftvolcite] = ACTIONS(6141), - [anon_sym_BSLASHsvolcite] = ACTIONS(6141), - [anon_sym_BSLASHSvolcite] = ACTIONS(6141), - [anon_sym_BSLASHtvolcite] = ACTIONS(6141), - [anon_sym_BSLASHTvolcite] = ACTIONS(6141), - [anon_sym_BSLASHavolcite] = ACTIONS(6141), - [anon_sym_BSLASHAvolcite] = ACTIONS(6141), - [anon_sym_BSLASHnotecite] = ACTIONS(6141), - [anon_sym_BSLASHNotecite] = ACTIONS(6141), - [anon_sym_BSLASHpnotecite] = ACTIONS(6141), - [anon_sym_BSLASHPnotecite] = ACTIONS(6141), - [anon_sym_BSLASHfnotecite] = ACTIONS(6141), - [anon_sym_BSLASHlabel] = ACTIONS(6141), - [anon_sym_BSLASHref] = ACTIONS(6141), - [anon_sym_BSLASHeqref] = ACTIONS(6141), - [anon_sym_BSLASHvref] = ACTIONS(6141), - [anon_sym_BSLASHVref] = ACTIONS(6141), - [anon_sym_BSLASHautoref] = ACTIONS(6141), - [anon_sym_BSLASHpageref] = ACTIONS(6141), - [anon_sym_BSLASHcref] = ACTIONS(6141), - [anon_sym_BSLASHCref] = ACTIONS(6141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnameCref] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHlabelcref] = ACTIONS(6141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCrefrange] = ACTIONS(6141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnewlabel] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6143), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHdef] = ACTIONS(6141), - [anon_sym_BSLASHlet] = ACTIONS(6141), - [anon_sym_BSLASHleft] = ACTIONS(6141), - [anon_sym_BSLASHbig] = ACTIONS(6141), - [anon_sym_BSLASHBig] = ACTIONS(6141), - [anon_sym_BSLASHbigg] = ACTIONS(6141), - [anon_sym_BSLASHBigg] = ACTIONS(6141), - [anon_sym_BSLASHbigl] = ACTIONS(6141), - [anon_sym_BSLASHBigl] = ACTIONS(6141), - [anon_sym_BSLASHbiggl] = ACTIONS(6141), - [anon_sym_BSLASHBiggl] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6141), - [anon_sym_BSLASHgls] = ACTIONS(6141), - [anon_sym_BSLASHGls] = ACTIONS(6141), - [anon_sym_BSLASHGLS] = ACTIONS(6141), - [anon_sym_BSLASHglspl] = ACTIONS(6141), - [anon_sym_BSLASHGlspl] = ACTIONS(6141), - [anon_sym_BSLASHGLSpl] = ACTIONS(6141), - [anon_sym_BSLASHglsdisp] = ACTIONS(6141), - [anon_sym_BSLASHglslink] = ACTIONS(6141), - [anon_sym_BSLASHglstext] = ACTIONS(6141), - [anon_sym_BSLASHGlstext] = ACTIONS(6141), - [anon_sym_BSLASHGLStext] = ACTIONS(6141), - [anon_sym_BSLASHglsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6141), - [anon_sym_BSLASHglsplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSplural] = ACTIONS(6141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHglsname] = ACTIONS(6141), - [anon_sym_BSLASHGlsname] = ACTIONS(6141), - [anon_sym_BSLASHGLSname] = ACTIONS(6141), - [anon_sym_BSLASHglssymbol] = ACTIONS(6141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6141), - [anon_sym_BSLASHglsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6141), - [anon_sym_BSLASHglsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6141), - [anon_sym_BSLASHglsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6141), - [anon_sym_BSLASHglsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6141), - [anon_sym_BSLASHglsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6141), - [anon_sym_BSLASHnewacronym] = ACTIONS(6141), - [anon_sym_BSLASHacrshort] = ACTIONS(6141), - [anon_sym_BSLASHAcrshort] = ACTIONS(6141), - [anon_sym_BSLASHACRshort] = ACTIONS(6141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6141), - [anon_sym_BSLASHacrlong] = ACTIONS(6141), - [anon_sym_BSLASHAcrlong] = ACTIONS(6141), - [anon_sym_BSLASHACRlong] = ACTIONS(6141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6141), - [anon_sym_BSLASHacrfull] = ACTIONS(6141), - [anon_sym_BSLASHAcrfull] = ACTIONS(6141), - [anon_sym_BSLASHACRfull] = ACTIONS(6141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6141), - [anon_sym_BSLASHacs] = ACTIONS(6141), - [anon_sym_BSLASHAcs] = ACTIONS(6141), - [anon_sym_BSLASHacsp] = ACTIONS(6141), - [anon_sym_BSLASHAcsp] = ACTIONS(6141), - [anon_sym_BSLASHacl] = ACTIONS(6141), - [anon_sym_BSLASHAcl] = ACTIONS(6141), - [anon_sym_BSLASHaclp] = ACTIONS(6141), - [anon_sym_BSLASHAclp] = ACTIONS(6141), - [anon_sym_BSLASHacf] = ACTIONS(6141), - [anon_sym_BSLASHAcf] = ACTIONS(6141), - [anon_sym_BSLASHacfp] = ACTIONS(6141), - [anon_sym_BSLASHAcfp] = ACTIONS(6141), - [anon_sym_BSLASHac] = ACTIONS(6141), - [anon_sym_BSLASHAc] = ACTIONS(6141), - [anon_sym_BSLASHacp] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6141), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6141), - [anon_sym_BSLASHcolor] = ACTIONS(6141), - [anon_sym_BSLASHcolorbox] = ACTIONS(6141), - [anon_sym_BSLASHtextcolor] = ACTIONS(6141), - [anon_sym_BSLASHpagecolor] = ACTIONS(6141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6141), - [anon_sym_BSLASHtext] = ACTIONS(6141), - [anon_sym_BSLASHintertext] = ACTIONS(6141), - [anon_sym_shortintertext] = ACTIONS(6141), - }, - [1041] = { - [ts_builtin_sym_end] = ACTIONS(6311), - [sym_command_name] = ACTIONS(6309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6309), - [anon_sym_LBRACK] = ACTIONS(6311), - [anon_sym_RBRACK] = ACTIONS(6311), - [anon_sym_COMMA] = ACTIONS(6311), - [anon_sym_EQ] = ACTIONS(6311), - [anon_sym_LPAREN] = ACTIONS(6311), - [anon_sym_RPAREN] = ACTIONS(6311), - [anon_sym_BSLASHpart] = ACTIONS(6309), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddpart] = ACTIONS(6309), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6311), - [anon_sym_BSLASHchapter] = ACTIONS(6309), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddchap] = ACTIONS(6309), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsection] = ACTIONS(6309), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddsec] = ACTIONS(6309), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubsection] = ACTIONS(6309), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6309), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHparagraph] = ACTIONS(6309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6309), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6311), - [anon_sym_BSLASHitem] = ACTIONS(6309), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(6311), - [anon_sym_RBRACE] = ACTIONS(6311), - [sym_word] = ACTIONS(6309), - [sym_placeholder] = ACTIONS(6311), - [anon_sym_PLUS] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [anon_sym_STAR] = ACTIONS(6311), - [anon_sym_SLASH] = ACTIONS(6311), - [anon_sym_LT] = ACTIONS(6309), - [anon_sym_GT] = ACTIONS(6309), - [anon_sym_BANG] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(6309), - [anon_sym_COLON] = ACTIONS(6309), - [anon_sym_SQUOTE] = ACTIONS(6309), - [anon_sym__] = ACTIONS(6311), - [anon_sym_CARET] = ACTIONS(6311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6311), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6311), - [anon_sym_DOLLAR] = ACTIONS(6309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6311), - [anon_sym_BSLASHbegin] = ACTIONS(6309), - [anon_sym_BSLASHtitle] = ACTIONS(6309), - [anon_sym_BSLASHauthor] = ACTIONS(6309), - [anon_sym_BSLASHusepackage] = ACTIONS(6309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6309), - [anon_sym_BSLASHinclude] = ACTIONS(6309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6309), - [anon_sym_BSLASHinput] = ACTIONS(6309), - [anon_sym_BSLASHsubfile] = ACTIONS(6309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6309), - [anon_sym_BSLASHbibliography] = ACTIONS(6309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6309), - [anon_sym_BSLASHincludesvg] = ACTIONS(6309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6309), - [anon_sym_BSLASHimport] = ACTIONS(6309), - [anon_sym_BSLASHsubimport] = ACTIONS(6309), - [anon_sym_BSLASHinputfrom] = ACTIONS(6309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6309), - [anon_sym_BSLASHincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHcaption] = ACTIONS(6309), - [anon_sym_BSLASHcite] = ACTIONS(6309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCite] = ACTIONS(6309), - [anon_sym_BSLASHnocite] = ACTIONS(6309), - [anon_sym_BSLASHcitet] = ACTIONS(6309), - [anon_sym_BSLASHcitep] = ACTIONS(6309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteauthor] = ACTIONS(6309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitetitle] = ACTIONS(6309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteyear] = ACTIONS(6309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitedate] = ACTIONS(6309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteurl] = ACTIONS(6309), - [anon_sym_BSLASHfullcite] = ACTIONS(6309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6309), - [anon_sym_BSLASHcitealt] = ACTIONS(6309), - [anon_sym_BSLASHcitealp] = ACTIONS(6309), - [anon_sym_BSLASHcitetext] = ACTIONS(6309), - [anon_sym_BSLASHparencite] = ACTIONS(6309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHParencite] = ACTIONS(6309), - [anon_sym_BSLASHfootcite] = ACTIONS(6309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6309), - [anon_sym_BSLASHtextcite] = ACTIONS(6309), - [anon_sym_BSLASHTextcite] = ACTIONS(6309), - [anon_sym_BSLASHsmartcite] = ACTIONS(6309), - [anon_sym_BSLASHSmartcite] = ACTIONS(6309), - [anon_sym_BSLASHsupercite] = ACTIONS(6309), - [anon_sym_BSLASHautocite] = ACTIONS(6309), - [anon_sym_BSLASHAutocite] = ACTIONS(6309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHvolcite] = ACTIONS(6309), - [anon_sym_BSLASHVolcite] = ACTIONS(6309), - [anon_sym_BSLASHpvolcite] = ACTIONS(6309), - [anon_sym_BSLASHPvolcite] = ACTIONS(6309), - [anon_sym_BSLASHfvolcite] = ACTIONS(6309), - [anon_sym_BSLASHftvolcite] = ACTIONS(6309), - [anon_sym_BSLASHsvolcite] = ACTIONS(6309), - [anon_sym_BSLASHSvolcite] = ACTIONS(6309), - [anon_sym_BSLASHtvolcite] = ACTIONS(6309), - [anon_sym_BSLASHTvolcite] = ACTIONS(6309), - [anon_sym_BSLASHavolcite] = ACTIONS(6309), - [anon_sym_BSLASHAvolcite] = ACTIONS(6309), - [anon_sym_BSLASHnotecite] = ACTIONS(6309), - [anon_sym_BSLASHNotecite] = ACTIONS(6309), - [anon_sym_BSLASHpnotecite] = ACTIONS(6309), - [anon_sym_BSLASHPnotecite] = ACTIONS(6309), - [anon_sym_BSLASHfnotecite] = ACTIONS(6309), - [anon_sym_BSLASHlabel] = ACTIONS(6309), - [anon_sym_BSLASHref] = ACTIONS(6309), - [anon_sym_BSLASHeqref] = ACTIONS(6309), - [anon_sym_BSLASHvref] = ACTIONS(6309), - [anon_sym_BSLASHVref] = ACTIONS(6309), - [anon_sym_BSLASHautoref] = ACTIONS(6309), - [anon_sym_BSLASHpageref] = ACTIONS(6309), - [anon_sym_BSLASHcref] = ACTIONS(6309), - [anon_sym_BSLASHCref] = ACTIONS(6309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnameCref] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHlabelcref] = ACTIONS(6309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCrefrange] = ACTIONS(6309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnewlabel] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6311), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHdef] = ACTIONS(6309), - [anon_sym_BSLASHlet] = ACTIONS(6309), - [anon_sym_BSLASHleft] = ACTIONS(6309), - [anon_sym_BSLASHbig] = ACTIONS(6309), - [anon_sym_BSLASHBig] = ACTIONS(6309), - [anon_sym_BSLASHbigg] = ACTIONS(6309), - [anon_sym_BSLASHBigg] = ACTIONS(6309), - [anon_sym_BSLASHbigl] = ACTIONS(6309), - [anon_sym_BSLASHBigl] = ACTIONS(6309), - [anon_sym_BSLASHbiggl] = ACTIONS(6309), - [anon_sym_BSLASHBiggl] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6309), - [anon_sym_BSLASHgls] = ACTIONS(6309), - [anon_sym_BSLASHGls] = ACTIONS(6309), - [anon_sym_BSLASHGLS] = ACTIONS(6309), - [anon_sym_BSLASHglspl] = ACTIONS(6309), - [anon_sym_BSLASHGlspl] = ACTIONS(6309), - [anon_sym_BSLASHGLSpl] = ACTIONS(6309), - [anon_sym_BSLASHglsdisp] = ACTIONS(6309), - [anon_sym_BSLASHglslink] = ACTIONS(6309), - [anon_sym_BSLASHglstext] = ACTIONS(6309), - [anon_sym_BSLASHGlstext] = ACTIONS(6309), - [anon_sym_BSLASHGLStext] = ACTIONS(6309), - [anon_sym_BSLASHglsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6309), - [anon_sym_BSLASHglsplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSplural] = ACTIONS(6309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHglsname] = ACTIONS(6309), - [anon_sym_BSLASHGlsname] = ACTIONS(6309), - [anon_sym_BSLASHGLSname] = ACTIONS(6309), - [anon_sym_BSLASHglssymbol] = ACTIONS(6309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6309), - [anon_sym_BSLASHglsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6309), - [anon_sym_BSLASHglsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6309), - [anon_sym_BSLASHglsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6309), - [anon_sym_BSLASHglsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6309), - [anon_sym_BSLASHglsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6309), - [anon_sym_BSLASHnewacronym] = ACTIONS(6309), - [anon_sym_BSLASHacrshort] = ACTIONS(6309), - [anon_sym_BSLASHAcrshort] = ACTIONS(6309), - [anon_sym_BSLASHACRshort] = ACTIONS(6309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6309), - [anon_sym_BSLASHacrlong] = ACTIONS(6309), - [anon_sym_BSLASHAcrlong] = ACTIONS(6309), - [anon_sym_BSLASHACRlong] = ACTIONS(6309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6309), - [anon_sym_BSLASHacrfull] = ACTIONS(6309), - [anon_sym_BSLASHAcrfull] = ACTIONS(6309), - [anon_sym_BSLASHACRfull] = ACTIONS(6309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6309), - [anon_sym_BSLASHacs] = ACTIONS(6309), - [anon_sym_BSLASHAcs] = ACTIONS(6309), - [anon_sym_BSLASHacsp] = ACTIONS(6309), - [anon_sym_BSLASHAcsp] = ACTIONS(6309), - [anon_sym_BSLASHacl] = ACTIONS(6309), - [anon_sym_BSLASHAcl] = ACTIONS(6309), - [anon_sym_BSLASHaclp] = ACTIONS(6309), - [anon_sym_BSLASHAclp] = ACTIONS(6309), - [anon_sym_BSLASHacf] = ACTIONS(6309), - [anon_sym_BSLASHAcf] = ACTIONS(6309), - [anon_sym_BSLASHacfp] = ACTIONS(6309), - [anon_sym_BSLASHAcfp] = ACTIONS(6309), - [anon_sym_BSLASHac] = ACTIONS(6309), - [anon_sym_BSLASHAc] = ACTIONS(6309), - [anon_sym_BSLASHacp] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6309), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6309), - [anon_sym_BSLASHcolor] = ACTIONS(6309), - [anon_sym_BSLASHcolorbox] = ACTIONS(6309), - [anon_sym_BSLASHtextcolor] = ACTIONS(6309), - [anon_sym_BSLASHpagecolor] = ACTIONS(6309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6309), - [anon_sym_BSLASHtext] = ACTIONS(6309), - [anon_sym_BSLASHintertext] = ACTIONS(6309), - [anon_sym_shortintertext] = ACTIONS(6309), - }, - [1042] = { - [ts_builtin_sym_end] = ACTIONS(6147), - [sym_command_name] = ACTIONS(6145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6145), - [anon_sym_LBRACK] = ACTIONS(6147), - [anon_sym_RBRACK] = ACTIONS(6147), - [anon_sym_COMMA] = ACTIONS(6147), - [anon_sym_EQ] = ACTIONS(6147), - [anon_sym_LPAREN] = ACTIONS(6147), - [anon_sym_RPAREN] = ACTIONS(6147), - [anon_sym_BSLASHpart] = ACTIONS(6145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddpart] = ACTIONS(6145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6147), - [anon_sym_BSLASHchapter] = ACTIONS(6145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddchap] = ACTIONS(6145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsection] = ACTIONS(6145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddsec] = ACTIONS(6145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubsection] = ACTIONS(6145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHparagraph] = ACTIONS(6145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6147), - [anon_sym_BSLASHitem] = ACTIONS(6145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6147), - [anon_sym_LBRACE] = ACTIONS(6147), - [anon_sym_RBRACE] = ACTIONS(6147), - [sym_word] = ACTIONS(6145), - [sym_placeholder] = ACTIONS(6147), - [anon_sym_PLUS] = ACTIONS(6147), - [anon_sym_DASH] = ACTIONS(6147), - [anon_sym_STAR] = ACTIONS(6147), - [anon_sym_SLASH] = ACTIONS(6147), - [anon_sym_LT] = ACTIONS(6145), - [anon_sym_GT] = ACTIONS(6145), - [anon_sym_BANG] = ACTIONS(6145), - [anon_sym_PIPE] = ACTIONS(6145), - [anon_sym_COLON] = ACTIONS(6145), - [anon_sym_SQUOTE] = ACTIONS(6145), - [anon_sym__] = ACTIONS(6147), - [anon_sym_CARET] = ACTIONS(6147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6147), - [anon_sym_DOLLAR] = ACTIONS(6145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6147), - [anon_sym_BSLASHbegin] = ACTIONS(6145), - [anon_sym_BSLASHtitle] = ACTIONS(6145), - [anon_sym_BSLASHauthor] = ACTIONS(6145), - [anon_sym_BSLASHusepackage] = ACTIONS(6145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6145), - [anon_sym_BSLASHinclude] = ACTIONS(6145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6145), - [anon_sym_BSLASHinput] = ACTIONS(6145), - [anon_sym_BSLASHsubfile] = ACTIONS(6145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6145), - [anon_sym_BSLASHbibliography] = ACTIONS(6145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6145), - [anon_sym_BSLASHincludesvg] = ACTIONS(6145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6145), - [anon_sym_BSLASHimport] = ACTIONS(6145), - [anon_sym_BSLASHsubimport] = ACTIONS(6145), - [anon_sym_BSLASHinputfrom] = ACTIONS(6145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6145), - [anon_sym_BSLASHincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHcaption] = ACTIONS(6145), - [anon_sym_BSLASHcite] = ACTIONS(6145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCite] = ACTIONS(6145), - [anon_sym_BSLASHnocite] = ACTIONS(6145), - [anon_sym_BSLASHcitet] = ACTIONS(6145), - [anon_sym_BSLASHcitep] = ACTIONS(6145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteauthor] = ACTIONS(6145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitetitle] = ACTIONS(6145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteyear] = ACTIONS(6145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitedate] = ACTIONS(6145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteurl] = ACTIONS(6145), - [anon_sym_BSLASHfullcite] = ACTIONS(6145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6145), - [anon_sym_BSLASHcitealt] = ACTIONS(6145), - [anon_sym_BSLASHcitealp] = ACTIONS(6145), - [anon_sym_BSLASHcitetext] = ACTIONS(6145), - [anon_sym_BSLASHparencite] = ACTIONS(6145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHParencite] = ACTIONS(6145), - [anon_sym_BSLASHfootcite] = ACTIONS(6145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6145), - [anon_sym_BSLASHtextcite] = ACTIONS(6145), - [anon_sym_BSLASHTextcite] = ACTIONS(6145), - [anon_sym_BSLASHsmartcite] = ACTIONS(6145), - [anon_sym_BSLASHSmartcite] = ACTIONS(6145), - [anon_sym_BSLASHsupercite] = ACTIONS(6145), - [anon_sym_BSLASHautocite] = ACTIONS(6145), - [anon_sym_BSLASHAutocite] = ACTIONS(6145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHvolcite] = ACTIONS(6145), - [anon_sym_BSLASHVolcite] = ACTIONS(6145), - [anon_sym_BSLASHpvolcite] = ACTIONS(6145), - [anon_sym_BSLASHPvolcite] = ACTIONS(6145), - [anon_sym_BSLASHfvolcite] = ACTIONS(6145), - [anon_sym_BSLASHftvolcite] = ACTIONS(6145), - [anon_sym_BSLASHsvolcite] = ACTIONS(6145), - [anon_sym_BSLASHSvolcite] = ACTIONS(6145), - [anon_sym_BSLASHtvolcite] = ACTIONS(6145), - [anon_sym_BSLASHTvolcite] = ACTIONS(6145), - [anon_sym_BSLASHavolcite] = ACTIONS(6145), - [anon_sym_BSLASHAvolcite] = ACTIONS(6145), - [anon_sym_BSLASHnotecite] = ACTIONS(6145), - [anon_sym_BSLASHNotecite] = ACTIONS(6145), - [anon_sym_BSLASHpnotecite] = ACTIONS(6145), - [anon_sym_BSLASHPnotecite] = ACTIONS(6145), - [anon_sym_BSLASHfnotecite] = ACTIONS(6145), - [anon_sym_BSLASHlabel] = ACTIONS(6145), - [anon_sym_BSLASHref] = ACTIONS(6145), - [anon_sym_BSLASHeqref] = ACTIONS(6145), - [anon_sym_BSLASHvref] = ACTIONS(6145), - [anon_sym_BSLASHVref] = ACTIONS(6145), - [anon_sym_BSLASHautoref] = ACTIONS(6145), - [anon_sym_BSLASHpageref] = ACTIONS(6145), - [anon_sym_BSLASHcref] = ACTIONS(6145), - [anon_sym_BSLASHCref] = ACTIONS(6145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnameCref] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHlabelcref] = ACTIONS(6145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCrefrange] = ACTIONS(6145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnewlabel] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6147), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHdef] = ACTIONS(6145), - [anon_sym_BSLASHlet] = ACTIONS(6145), - [anon_sym_BSLASHleft] = ACTIONS(6145), - [anon_sym_BSLASHbig] = ACTIONS(6145), - [anon_sym_BSLASHBig] = ACTIONS(6145), - [anon_sym_BSLASHbigg] = ACTIONS(6145), - [anon_sym_BSLASHBigg] = ACTIONS(6145), - [anon_sym_BSLASHbigl] = ACTIONS(6145), - [anon_sym_BSLASHBigl] = ACTIONS(6145), - [anon_sym_BSLASHbiggl] = ACTIONS(6145), - [anon_sym_BSLASHBiggl] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6145), - [anon_sym_BSLASHgls] = ACTIONS(6145), - [anon_sym_BSLASHGls] = ACTIONS(6145), - [anon_sym_BSLASHGLS] = ACTIONS(6145), - [anon_sym_BSLASHglspl] = ACTIONS(6145), - [anon_sym_BSLASHGlspl] = ACTIONS(6145), - [anon_sym_BSLASHGLSpl] = ACTIONS(6145), - [anon_sym_BSLASHglsdisp] = ACTIONS(6145), - [anon_sym_BSLASHglslink] = ACTIONS(6145), - [anon_sym_BSLASHglstext] = ACTIONS(6145), - [anon_sym_BSLASHGlstext] = ACTIONS(6145), - [anon_sym_BSLASHGLStext] = ACTIONS(6145), - [anon_sym_BSLASHglsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6145), - [anon_sym_BSLASHglsplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSplural] = ACTIONS(6145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHglsname] = ACTIONS(6145), - [anon_sym_BSLASHGlsname] = ACTIONS(6145), - [anon_sym_BSLASHGLSname] = ACTIONS(6145), - [anon_sym_BSLASHglssymbol] = ACTIONS(6145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6145), - [anon_sym_BSLASHglsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6145), - [anon_sym_BSLASHglsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6145), - [anon_sym_BSLASHglsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6145), - [anon_sym_BSLASHglsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6145), - [anon_sym_BSLASHglsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6145), - [anon_sym_BSLASHnewacronym] = ACTIONS(6145), - [anon_sym_BSLASHacrshort] = ACTIONS(6145), - [anon_sym_BSLASHAcrshort] = ACTIONS(6145), - [anon_sym_BSLASHACRshort] = ACTIONS(6145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6145), - [anon_sym_BSLASHacrlong] = ACTIONS(6145), - [anon_sym_BSLASHAcrlong] = ACTIONS(6145), - [anon_sym_BSLASHACRlong] = ACTIONS(6145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6145), - [anon_sym_BSLASHacrfull] = ACTIONS(6145), - [anon_sym_BSLASHAcrfull] = ACTIONS(6145), - [anon_sym_BSLASHACRfull] = ACTIONS(6145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6145), - [anon_sym_BSLASHacs] = ACTIONS(6145), - [anon_sym_BSLASHAcs] = ACTIONS(6145), - [anon_sym_BSLASHacsp] = ACTIONS(6145), - [anon_sym_BSLASHAcsp] = ACTIONS(6145), - [anon_sym_BSLASHacl] = ACTIONS(6145), - [anon_sym_BSLASHAcl] = ACTIONS(6145), - [anon_sym_BSLASHaclp] = ACTIONS(6145), - [anon_sym_BSLASHAclp] = ACTIONS(6145), - [anon_sym_BSLASHacf] = ACTIONS(6145), - [anon_sym_BSLASHAcf] = ACTIONS(6145), - [anon_sym_BSLASHacfp] = ACTIONS(6145), - [anon_sym_BSLASHAcfp] = ACTIONS(6145), - [anon_sym_BSLASHac] = ACTIONS(6145), - [anon_sym_BSLASHAc] = ACTIONS(6145), - [anon_sym_BSLASHacp] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6145), - [anon_sym_BSLASHcolor] = ACTIONS(6145), - [anon_sym_BSLASHcolorbox] = ACTIONS(6145), - [anon_sym_BSLASHtextcolor] = ACTIONS(6145), - [anon_sym_BSLASHpagecolor] = ACTIONS(6145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6145), - [anon_sym_BSLASHtext] = ACTIONS(6145), - [anon_sym_BSLASHintertext] = ACTIONS(6145), - [anon_sym_shortintertext] = ACTIONS(6145), - }, - [1043] = { - [ts_builtin_sym_end] = ACTIONS(6151), - [sym_command_name] = ACTIONS(6149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6149), - [anon_sym_LBRACK] = ACTIONS(6151), - [anon_sym_RBRACK] = ACTIONS(6151), - [anon_sym_COMMA] = ACTIONS(6151), - [anon_sym_EQ] = ACTIONS(6151), - [anon_sym_LPAREN] = ACTIONS(6151), - [anon_sym_RPAREN] = ACTIONS(6151), - [anon_sym_BSLASHpart] = ACTIONS(6149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddpart] = ACTIONS(6149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6151), - [anon_sym_BSLASHchapter] = ACTIONS(6149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddchap] = ACTIONS(6149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsection] = ACTIONS(6149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddsec] = ACTIONS(6149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubsection] = ACTIONS(6149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHparagraph] = ACTIONS(6149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6151), - [anon_sym_BSLASHitem] = ACTIONS(6149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6151), - [anon_sym_LBRACE] = ACTIONS(6151), - [anon_sym_RBRACE] = ACTIONS(6151), - [sym_word] = ACTIONS(6149), - [sym_placeholder] = ACTIONS(6151), - [anon_sym_PLUS] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6151), - [anon_sym_STAR] = ACTIONS(6151), - [anon_sym_SLASH] = ACTIONS(6151), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_BANG] = ACTIONS(6149), - [anon_sym_PIPE] = ACTIONS(6149), - [anon_sym_COLON] = ACTIONS(6149), - [anon_sym_SQUOTE] = ACTIONS(6149), - [anon_sym__] = ACTIONS(6151), - [anon_sym_CARET] = ACTIONS(6151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6151), - [anon_sym_DOLLAR] = ACTIONS(6149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6151), - [anon_sym_BSLASHbegin] = ACTIONS(6149), - [anon_sym_BSLASHtitle] = ACTIONS(6149), - [anon_sym_BSLASHauthor] = ACTIONS(6149), - [anon_sym_BSLASHusepackage] = ACTIONS(6149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6149), - [anon_sym_BSLASHinclude] = ACTIONS(6149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6149), - [anon_sym_BSLASHinput] = ACTIONS(6149), - [anon_sym_BSLASHsubfile] = ACTIONS(6149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6149), - [anon_sym_BSLASHbibliography] = ACTIONS(6149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6149), - [anon_sym_BSLASHincludesvg] = ACTIONS(6149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6149), - [anon_sym_BSLASHimport] = ACTIONS(6149), - [anon_sym_BSLASHsubimport] = ACTIONS(6149), - [anon_sym_BSLASHinputfrom] = ACTIONS(6149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6149), - [anon_sym_BSLASHincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHcaption] = ACTIONS(6149), - [anon_sym_BSLASHcite] = ACTIONS(6149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCite] = ACTIONS(6149), - [anon_sym_BSLASHnocite] = ACTIONS(6149), - [anon_sym_BSLASHcitet] = ACTIONS(6149), - [anon_sym_BSLASHcitep] = ACTIONS(6149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteauthor] = ACTIONS(6149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitetitle] = ACTIONS(6149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteyear] = ACTIONS(6149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitedate] = ACTIONS(6149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteurl] = ACTIONS(6149), - [anon_sym_BSLASHfullcite] = ACTIONS(6149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6149), - [anon_sym_BSLASHcitealt] = ACTIONS(6149), - [anon_sym_BSLASHcitealp] = ACTIONS(6149), - [anon_sym_BSLASHcitetext] = ACTIONS(6149), - [anon_sym_BSLASHparencite] = ACTIONS(6149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHParencite] = ACTIONS(6149), - [anon_sym_BSLASHfootcite] = ACTIONS(6149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6149), - [anon_sym_BSLASHtextcite] = ACTIONS(6149), - [anon_sym_BSLASHTextcite] = ACTIONS(6149), - [anon_sym_BSLASHsmartcite] = ACTIONS(6149), - [anon_sym_BSLASHSmartcite] = ACTIONS(6149), - [anon_sym_BSLASHsupercite] = ACTIONS(6149), - [anon_sym_BSLASHautocite] = ACTIONS(6149), - [anon_sym_BSLASHAutocite] = ACTIONS(6149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHvolcite] = ACTIONS(6149), - [anon_sym_BSLASHVolcite] = ACTIONS(6149), - [anon_sym_BSLASHpvolcite] = ACTIONS(6149), - [anon_sym_BSLASHPvolcite] = ACTIONS(6149), - [anon_sym_BSLASHfvolcite] = ACTIONS(6149), - [anon_sym_BSLASHftvolcite] = ACTIONS(6149), - [anon_sym_BSLASHsvolcite] = ACTIONS(6149), - [anon_sym_BSLASHSvolcite] = ACTIONS(6149), - [anon_sym_BSLASHtvolcite] = ACTIONS(6149), - [anon_sym_BSLASHTvolcite] = ACTIONS(6149), - [anon_sym_BSLASHavolcite] = ACTIONS(6149), - [anon_sym_BSLASHAvolcite] = ACTIONS(6149), - [anon_sym_BSLASHnotecite] = ACTIONS(6149), - [anon_sym_BSLASHNotecite] = ACTIONS(6149), - [anon_sym_BSLASHpnotecite] = ACTIONS(6149), - [anon_sym_BSLASHPnotecite] = ACTIONS(6149), - [anon_sym_BSLASHfnotecite] = ACTIONS(6149), - [anon_sym_BSLASHlabel] = ACTIONS(6149), - [anon_sym_BSLASHref] = ACTIONS(6149), - [anon_sym_BSLASHeqref] = ACTIONS(6149), - [anon_sym_BSLASHvref] = ACTIONS(6149), - [anon_sym_BSLASHVref] = ACTIONS(6149), - [anon_sym_BSLASHautoref] = ACTIONS(6149), - [anon_sym_BSLASHpageref] = ACTIONS(6149), - [anon_sym_BSLASHcref] = ACTIONS(6149), - [anon_sym_BSLASHCref] = ACTIONS(6149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnameCref] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHlabelcref] = ACTIONS(6149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCrefrange] = ACTIONS(6149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnewlabel] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6151), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHdef] = ACTIONS(6149), - [anon_sym_BSLASHlet] = ACTIONS(6149), - [anon_sym_BSLASHleft] = ACTIONS(6149), - [anon_sym_BSLASHbig] = ACTIONS(6149), - [anon_sym_BSLASHBig] = ACTIONS(6149), - [anon_sym_BSLASHbigg] = ACTIONS(6149), - [anon_sym_BSLASHBigg] = ACTIONS(6149), - [anon_sym_BSLASHbigl] = ACTIONS(6149), - [anon_sym_BSLASHBigl] = ACTIONS(6149), - [anon_sym_BSLASHbiggl] = ACTIONS(6149), - [anon_sym_BSLASHBiggl] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6149), - [anon_sym_BSLASHgls] = ACTIONS(6149), - [anon_sym_BSLASHGls] = ACTIONS(6149), - [anon_sym_BSLASHGLS] = ACTIONS(6149), - [anon_sym_BSLASHglspl] = ACTIONS(6149), - [anon_sym_BSLASHGlspl] = ACTIONS(6149), - [anon_sym_BSLASHGLSpl] = ACTIONS(6149), - [anon_sym_BSLASHglsdisp] = ACTIONS(6149), - [anon_sym_BSLASHglslink] = ACTIONS(6149), - [anon_sym_BSLASHglstext] = ACTIONS(6149), - [anon_sym_BSLASHGlstext] = ACTIONS(6149), - [anon_sym_BSLASHGLStext] = ACTIONS(6149), - [anon_sym_BSLASHglsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6149), - [anon_sym_BSLASHglsplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSplural] = ACTIONS(6149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHglsname] = ACTIONS(6149), - [anon_sym_BSLASHGlsname] = ACTIONS(6149), - [anon_sym_BSLASHGLSname] = ACTIONS(6149), - [anon_sym_BSLASHglssymbol] = ACTIONS(6149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6149), - [anon_sym_BSLASHglsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6149), - [anon_sym_BSLASHglsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6149), - [anon_sym_BSLASHglsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6149), - [anon_sym_BSLASHglsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6149), - [anon_sym_BSLASHglsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6149), - [anon_sym_BSLASHnewacronym] = ACTIONS(6149), - [anon_sym_BSLASHacrshort] = ACTIONS(6149), - [anon_sym_BSLASHAcrshort] = ACTIONS(6149), - [anon_sym_BSLASHACRshort] = ACTIONS(6149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6149), - [anon_sym_BSLASHacrlong] = ACTIONS(6149), - [anon_sym_BSLASHAcrlong] = ACTIONS(6149), - [anon_sym_BSLASHACRlong] = ACTIONS(6149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6149), - [anon_sym_BSLASHacrfull] = ACTIONS(6149), - [anon_sym_BSLASHAcrfull] = ACTIONS(6149), - [anon_sym_BSLASHACRfull] = ACTIONS(6149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6149), - [anon_sym_BSLASHacs] = ACTIONS(6149), - [anon_sym_BSLASHAcs] = ACTIONS(6149), - [anon_sym_BSLASHacsp] = ACTIONS(6149), - [anon_sym_BSLASHAcsp] = ACTIONS(6149), - [anon_sym_BSLASHacl] = ACTIONS(6149), - [anon_sym_BSLASHAcl] = ACTIONS(6149), - [anon_sym_BSLASHaclp] = ACTIONS(6149), - [anon_sym_BSLASHAclp] = ACTIONS(6149), - [anon_sym_BSLASHacf] = ACTIONS(6149), - [anon_sym_BSLASHAcf] = ACTIONS(6149), - [anon_sym_BSLASHacfp] = ACTIONS(6149), - [anon_sym_BSLASHAcfp] = ACTIONS(6149), - [anon_sym_BSLASHac] = ACTIONS(6149), - [anon_sym_BSLASHAc] = ACTIONS(6149), - [anon_sym_BSLASHacp] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6149), - [anon_sym_BSLASHcolor] = ACTIONS(6149), - [anon_sym_BSLASHcolorbox] = ACTIONS(6149), - [anon_sym_BSLASHtextcolor] = ACTIONS(6149), - [anon_sym_BSLASHpagecolor] = ACTIONS(6149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6149), - [anon_sym_BSLASHtext] = ACTIONS(6149), - [anon_sym_BSLASHintertext] = ACTIONS(6149), - [anon_sym_shortintertext] = ACTIONS(6149), - }, - [1044] = { - [ts_builtin_sym_end] = ACTIONS(6155), - [sym_command_name] = ACTIONS(6153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6153), - [anon_sym_LBRACK] = ACTIONS(6155), - [anon_sym_RBRACK] = ACTIONS(6155), - [anon_sym_COMMA] = ACTIONS(6155), - [anon_sym_EQ] = ACTIONS(6155), - [anon_sym_LPAREN] = ACTIONS(6155), - [anon_sym_RPAREN] = ACTIONS(6155), - [anon_sym_BSLASHpart] = ACTIONS(6153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddpart] = ACTIONS(6153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6155), - [anon_sym_BSLASHchapter] = ACTIONS(6153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddchap] = ACTIONS(6153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsection] = ACTIONS(6153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddsec] = ACTIONS(6153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubsection] = ACTIONS(6153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHparagraph] = ACTIONS(6153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6155), - [anon_sym_BSLASHitem] = ACTIONS(6153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6155), - [anon_sym_LBRACE] = ACTIONS(6155), - [anon_sym_RBRACE] = ACTIONS(6155), - [sym_word] = ACTIONS(6153), - [sym_placeholder] = ACTIONS(6155), - [anon_sym_PLUS] = ACTIONS(6155), - [anon_sym_DASH] = ACTIONS(6155), - [anon_sym_STAR] = ACTIONS(6155), - [anon_sym_SLASH] = ACTIONS(6155), - [anon_sym_LT] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6153), - [anon_sym_BANG] = ACTIONS(6153), - [anon_sym_PIPE] = ACTIONS(6153), - [anon_sym_COLON] = ACTIONS(6153), - [anon_sym_SQUOTE] = ACTIONS(6153), - [anon_sym__] = ACTIONS(6155), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6155), - [anon_sym_DOLLAR] = ACTIONS(6153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6155), - [anon_sym_BSLASHbegin] = ACTIONS(6153), - [anon_sym_BSLASHtitle] = ACTIONS(6153), - [anon_sym_BSLASHauthor] = ACTIONS(6153), - [anon_sym_BSLASHusepackage] = ACTIONS(6153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6153), - [anon_sym_BSLASHinclude] = ACTIONS(6153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6153), - [anon_sym_BSLASHinput] = ACTIONS(6153), - [anon_sym_BSLASHsubfile] = ACTIONS(6153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6153), - [anon_sym_BSLASHbibliography] = ACTIONS(6153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6153), - [anon_sym_BSLASHincludesvg] = ACTIONS(6153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6153), - [anon_sym_BSLASHimport] = ACTIONS(6153), - [anon_sym_BSLASHsubimport] = ACTIONS(6153), - [anon_sym_BSLASHinputfrom] = ACTIONS(6153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6153), - [anon_sym_BSLASHincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHcaption] = ACTIONS(6153), - [anon_sym_BSLASHcite] = ACTIONS(6153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCite] = ACTIONS(6153), - [anon_sym_BSLASHnocite] = ACTIONS(6153), - [anon_sym_BSLASHcitet] = ACTIONS(6153), - [anon_sym_BSLASHcitep] = ACTIONS(6153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteauthor] = ACTIONS(6153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitetitle] = ACTIONS(6153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteyear] = ACTIONS(6153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitedate] = ACTIONS(6153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteurl] = ACTIONS(6153), - [anon_sym_BSLASHfullcite] = ACTIONS(6153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6153), - [anon_sym_BSLASHcitealt] = ACTIONS(6153), - [anon_sym_BSLASHcitealp] = ACTIONS(6153), - [anon_sym_BSLASHcitetext] = ACTIONS(6153), - [anon_sym_BSLASHparencite] = ACTIONS(6153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHParencite] = ACTIONS(6153), - [anon_sym_BSLASHfootcite] = ACTIONS(6153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6153), - [anon_sym_BSLASHtextcite] = ACTIONS(6153), - [anon_sym_BSLASHTextcite] = ACTIONS(6153), - [anon_sym_BSLASHsmartcite] = ACTIONS(6153), - [anon_sym_BSLASHSmartcite] = ACTIONS(6153), - [anon_sym_BSLASHsupercite] = ACTIONS(6153), - [anon_sym_BSLASHautocite] = ACTIONS(6153), - [anon_sym_BSLASHAutocite] = ACTIONS(6153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHvolcite] = ACTIONS(6153), - [anon_sym_BSLASHVolcite] = ACTIONS(6153), - [anon_sym_BSLASHpvolcite] = ACTIONS(6153), - [anon_sym_BSLASHPvolcite] = ACTIONS(6153), - [anon_sym_BSLASHfvolcite] = ACTIONS(6153), - [anon_sym_BSLASHftvolcite] = ACTIONS(6153), - [anon_sym_BSLASHsvolcite] = ACTIONS(6153), - [anon_sym_BSLASHSvolcite] = ACTIONS(6153), - [anon_sym_BSLASHtvolcite] = ACTIONS(6153), - [anon_sym_BSLASHTvolcite] = ACTIONS(6153), - [anon_sym_BSLASHavolcite] = ACTIONS(6153), - [anon_sym_BSLASHAvolcite] = ACTIONS(6153), - [anon_sym_BSLASHnotecite] = ACTIONS(6153), - [anon_sym_BSLASHNotecite] = ACTIONS(6153), - [anon_sym_BSLASHpnotecite] = ACTIONS(6153), - [anon_sym_BSLASHPnotecite] = ACTIONS(6153), - [anon_sym_BSLASHfnotecite] = ACTIONS(6153), - [anon_sym_BSLASHlabel] = ACTIONS(6153), - [anon_sym_BSLASHref] = ACTIONS(6153), - [anon_sym_BSLASHeqref] = ACTIONS(6153), - [anon_sym_BSLASHvref] = ACTIONS(6153), - [anon_sym_BSLASHVref] = ACTIONS(6153), - [anon_sym_BSLASHautoref] = ACTIONS(6153), - [anon_sym_BSLASHpageref] = ACTIONS(6153), - [anon_sym_BSLASHcref] = ACTIONS(6153), - [anon_sym_BSLASHCref] = ACTIONS(6153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnameCref] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHlabelcref] = ACTIONS(6153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCrefrange] = ACTIONS(6153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnewlabel] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6155), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHdef] = ACTIONS(6153), - [anon_sym_BSLASHlet] = ACTIONS(6153), - [anon_sym_BSLASHleft] = ACTIONS(6153), - [anon_sym_BSLASHbig] = ACTIONS(6153), - [anon_sym_BSLASHBig] = ACTIONS(6153), - [anon_sym_BSLASHbigg] = ACTIONS(6153), - [anon_sym_BSLASHBigg] = ACTIONS(6153), - [anon_sym_BSLASHbigl] = ACTIONS(6153), - [anon_sym_BSLASHBigl] = ACTIONS(6153), - [anon_sym_BSLASHbiggl] = ACTIONS(6153), - [anon_sym_BSLASHBiggl] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6153), - [anon_sym_BSLASHgls] = ACTIONS(6153), - [anon_sym_BSLASHGls] = ACTIONS(6153), - [anon_sym_BSLASHGLS] = ACTIONS(6153), - [anon_sym_BSLASHglspl] = ACTIONS(6153), - [anon_sym_BSLASHGlspl] = ACTIONS(6153), - [anon_sym_BSLASHGLSpl] = ACTIONS(6153), - [anon_sym_BSLASHglsdisp] = ACTIONS(6153), - [anon_sym_BSLASHglslink] = ACTIONS(6153), - [anon_sym_BSLASHglstext] = ACTIONS(6153), - [anon_sym_BSLASHGlstext] = ACTIONS(6153), - [anon_sym_BSLASHGLStext] = ACTIONS(6153), - [anon_sym_BSLASHglsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6153), - [anon_sym_BSLASHglsplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSplural] = ACTIONS(6153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHglsname] = ACTIONS(6153), - [anon_sym_BSLASHGlsname] = ACTIONS(6153), - [anon_sym_BSLASHGLSname] = ACTIONS(6153), - [anon_sym_BSLASHglssymbol] = ACTIONS(6153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6153), - [anon_sym_BSLASHglsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6153), - [anon_sym_BSLASHglsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6153), - [anon_sym_BSLASHglsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6153), - [anon_sym_BSLASHglsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6153), - [anon_sym_BSLASHglsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6153), - [anon_sym_BSLASHnewacronym] = ACTIONS(6153), - [anon_sym_BSLASHacrshort] = ACTIONS(6153), - [anon_sym_BSLASHAcrshort] = ACTIONS(6153), - [anon_sym_BSLASHACRshort] = ACTIONS(6153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6153), - [anon_sym_BSLASHacrlong] = ACTIONS(6153), - [anon_sym_BSLASHAcrlong] = ACTIONS(6153), - [anon_sym_BSLASHACRlong] = ACTIONS(6153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6153), - [anon_sym_BSLASHacrfull] = ACTIONS(6153), - [anon_sym_BSLASHAcrfull] = ACTIONS(6153), - [anon_sym_BSLASHACRfull] = ACTIONS(6153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6153), - [anon_sym_BSLASHacs] = ACTIONS(6153), - [anon_sym_BSLASHAcs] = ACTIONS(6153), - [anon_sym_BSLASHacsp] = ACTIONS(6153), - [anon_sym_BSLASHAcsp] = ACTIONS(6153), - [anon_sym_BSLASHacl] = ACTIONS(6153), - [anon_sym_BSLASHAcl] = ACTIONS(6153), - [anon_sym_BSLASHaclp] = ACTIONS(6153), - [anon_sym_BSLASHAclp] = ACTIONS(6153), - [anon_sym_BSLASHacf] = ACTIONS(6153), - [anon_sym_BSLASHAcf] = ACTIONS(6153), - [anon_sym_BSLASHacfp] = ACTIONS(6153), - [anon_sym_BSLASHAcfp] = ACTIONS(6153), - [anon_sym_BSLASHac] = ACTIONS(6153), - [anon_sym_BSLASHAc] = ACTIONS(6153), - [anon_sym_BSLASHacp] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6153), - [anon_sym_BSLASHcolor] = ACTIONS(6153), - [anon_sym_BSLASHcolorbox] = ACTIONS(6153), - [anon_sym_BSLASHtextcolor] = ACTIONS(6153), - [anon_sym_BSLASHpagecolor] = ACTIONS(6153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6153), - [anon_sym_BSLASHtext] = ACTIONS(6153), - [anon_sym_BSLASHintertext] = ACTIONS(6153), - [anon_sym_shortintertext] = ACTIONS(6153), - }, - [1045] = { - [ts_builtin_sym_end] = ACTIONS(6191), - [sym_command_name] = ACTIONS(6189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6189), - [anon_sym_LBRACK] = ACTIONS(6191), - [anon_sym_RBRACK] = ACTIONS(6191), - [anon_sym_COMMA] = ACTIONS(6191), - [anon_sym_EQ] = ACTIONS(6191), - [anon_sym_LPAREN] = ACTIONS(6191), - [anon_sym_RPAREN] = ACTIONS(6191), - [anon_sym_BSLASHpart] = ACTIONS(6189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddpart] = ACTIONS(6189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6191), - [anon_sym_BSLASHchapter] = ACTIONS(6189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddchap] = ACTIONS(6189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsection] = ACTIONS(6189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddsec] = ACTIONS(6189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubsection] = ACTIONS(6189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHparagraph] = ACTIONS(6189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6191), - [anon_sym_BSLASHitem] = ACTIONS(6189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6191), - [anon_sym_LBRACE] = ACTIONS(6191), - [anon_sym_RBRACE] = ACTIONS(6191), - [sym_word] = ACTIONS(6189), - [sym_placeholder] = ACTIONS(6191), - [anon_sym_PLUS] = ACTIONS(6191), - [anon_sym_DASH] = ACTIONS(6191), - [anon_sym_STAR] = ACTIONS(6191), - [anon_sym_SLASH] = ACTIONS(6191), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_COLON] = ACTIONS(6189), - [anon_sym_SQUOTE] = ACTIONS(6189), - [anon_sym__] = ACTIONS(6191), - [anon_sym_CARET] = ACTIONS(6191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), - [anon_sym_DOLLAR] = ACTIONS(6189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), - [anon_sym_BSLASHbegin] = ACTIONS(6189), - [anon_sym_BSLASHtitle] = ACTIONS(6189), - [anon_sym_BSLASHauthor] = ACTIONS(6189), - [anon_sym_BSLASHusepackage] = ACTIONS(6189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), - [anon_sym_BSLASHinclude] = ACTIONS(6189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), - [anon_sym_BSLASHinput] = ACTIONS(6189), - [anon_sym_BSLASHsubfile] = ACTIONS(6189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), - [anon_sym_BSLASHbibliography] = ACTIONS(6189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), - [anon_sym_BSLASHincludesvg] = ACTIONS(6189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), - [anon_sym_BSLASHimport] = ACTIONS(6189), - [anon_sym_BSLASHsubimport] = ACTIONS(6189), - [anon_sym_BSLASHinputfrom] = ACTIONS(6189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), - [anon_sym_BSLASHincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHcaption] = ACTIONS(6189), - [anon_sym_BSLASHcite] = ACTIONS(6189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCite] = ACTIONS(6189), - [anon_sym_BSLASHnocite] = ACTIONS(6189), - [anon_sym_BSLASHcitet] = ACTIONS(6189), - [anon_sym_BSLASHcitep] = ACTIONS(6189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteauthor] = ACTIONS(6189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitetitle] = ACTIONS(6189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteyear] = ACTIONS(6189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitedate] = ACTIONS(6189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteurl] = ACTIONS(6189), - [anon_sym_BSLASHfullcite] = ACTIONS(6189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), - [anon_sym_BSLASHcitealt] = ACTIONS(6189), - [anon_sym_BSLASHcitealp] = ACTIONS(6189), - [anon_sym_BSLASHcitetext] = ACTIONS(6189), - [anon_sym_BSLASHparencite] = ACTIONS(6189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHParencite] = ACTIONS(6189), - [anon_sym_BSLASHfootcite] = ACTIONS(6189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), - [anon_sym_BSLASHtextcite] = ACTIONS(6189), - [anon_sym_BSLASHTextcite] = ACTIONS(6189), - [anon_sym_BSLASHsmartcite] = ACTIONS(6189), - [anon_sym_BSLASHSmartcite] = ACTIONS(6189), - [anon_sym_BSLASHsupercite] = ACTIONS(6189), - [anon_sym_BSLASHautocite] = ACTIONS(6189), - [anon_sym_BSLASHAutocite] = ACTIONS(6189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHvolcite] = ACTIONS(6189), - [anon_sym_BSLASHVolcite] = ACTIONS(6189), - [anon_sym_BSLASHpvolcite] = ACTIONS(6189), - [anon_sym_BSLASHPvolcite] = ACTIONS(6189), - [anon_sym_BSLASHfvolcite] = ACTIONS(6189), - [anon_sym_BSLASHftvolcite] = ACTIONS(6189), - [anon_sym_BSLASHsvolcite] = ACTIONS(6189), - [anon_sym_BSLASHSvolcite] = ACTIONS(6189), - [anon_sym_BSLASHtvolcite] = ACTIONS(6189), - [anon_sym_BSLASHTvolcite] = ACTIONS(6189), - [anon_sym_BSLASHavolcite] = ACTIONS(6189), - [anon_sym_BSLASHAvolcite] = ACTIONS(6189), - [anon_sym_BSLASHnotecite] = ACTIONS(6189), - [anon_sym_BSLASHNotecite] = ACTIONS(6189), - [anon_sym_BSLASHpnotecite] = ACTIONS(6189), - [anon_sym_BSLASHPnotecite] = ACTIONS(6189), - [anon_sym_BSLASHfnotecite] = ACTIONS(6189), - [anon_sym_BSLASHlabel] = ACTIONS(6189), - [anon_sym_BSLASHref] = ACTIONS(6189), - [anon_sym_BSLASHeqref] = ACTIONS(6189), - [anon_sym_BSLASHvref] = ACTIONS(6189), - [anon_sym_BSLASHVref] = ACTIONS(6189), - [anon_sym_BSLASHautoref] = ACTIONS(6189), - [anon_sym_BSLASHpageref] = ACTIONS(6189), - [anon_sym_BSLASHcref] = ACTIONS(6189), - [anon_sym_BSLASHCref] = ACTIONS(6189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnameCref] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHlabelcref] = ACTIONS(6189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCrefrange] = ACTIONS(6189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnewlabel] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHdef] = ACTIONS(6189), - [anon_sym_BSLASHlet] = ACTIONS(6189), - [anon_sym_BSLASHleft] = ACTIONS(6189), - [anon_sym_BSLASHbig] = ACTIONS(6189), - [anon_sym_BSLASHBig] = ACTIONS(6189), - [anon_sym_BSLASHbigg] = ACTIONS(6189), - [anon_sym_BSLASHBigg] = ACTIONS(6189), - [anon_sym_BSLASHbigl] = ACTIONS(6189), - [anon_sym_BSLASHBigl] = ACTIONS(6189), - [anon_sym_BSLASHbiggl] = ACTIONS(6189), - [anon_sym_BSLASHBiggl] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), - [anon_sym_BSLASHgls] = ACTIONS(6189), - [anon_sym_BSLASHGls] = ACTIONS(6189), - [anon_sym_BSLASHGLS] = ACTIONS(6189), - [anon_sym_BSLASHglspl] = ACTIONS(6189), - [anon_sym_BSLASHGlspl] = ACTIONS(6189), - [anon_sym_BSLASHGLSpl] = ACTIONS(6189), - [anon_sym_BSLASHglsdisp] = ACTIONS(6189), - [anon_sym_BSLASHglslink] = ACTIONS(6189), - [anon_sym_BSLASHglstext] = ACTIONS(6189), - [anon_sym_BSLASHGlstext] = ACTIONS(6189), - [anon_sym_BSLASHGLStext] = ACTIONS(6189), - [anon_sym_BSLASHglsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), - [anon_sym_BSLASHglsplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSplural] = ACTIONS(6189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHglsname] = ACTIONS(6189), - [anon_sym_BSLASHGlsname] = ACTIONS(6189), - [anon_sym_BSLASHGLSname] = ACTIONS(6189), - [anon_sym_BSLASHglssymbol] = ACTIONS(6189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), - [anon_sym_BSLASHglsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), - [anon_sym_BSLASHglsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), - [anon_sym_BSLASHglsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), - [anon_sym_BSLASHglsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), - [anon_sym_BSLASHglsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), - [anon_sym_BSLASHnewacronym] = ACTIONS(6189), - [anon_sym_BSLASHacrshort] = ACTIONS(6189), - [anon_sym_BSLASHAcrshort] = ACTIONS(6189), - [anon_sym_BSLASHACRshort] = ACTIONS(6189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), - [anon_sym_BSLASHacrlong] = ACTIONS(6189), - [anon_sym_BSLASHAcrlong] = ACTIONS(6189), - [anon_sym_BSLASHACRlong] = ACTIONS(6189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), - [anon_sym_BSLASHacrfull] = ACTIONS(6189), - [anon_sym_BSLASHAcrfull] = ACTIONS(6189), - [anon_sym_BSLASHACRfull] = ACTIONS(6189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), - [anon_sym_BSLASHacs] = ACTIONS(6189), - [anon_sym_BSLASHAcs] = ACTIONS(6189), - [anon_sym_BSLASHacsp] = ACTIONS(6189), - [anon_sym_BSLASHAcsp] = ACTIONS(6189), - [anon_sym_BSLASHacl] = ACTIONS(6189), - [anon_sym_BSLASHAcl] = ACTIONS(6189), - [anon_sym_BSLASHaclp] = ACTIONS(6189), - [anon_sym_BSLASHAclp] = ACTIONS(6189), - [anon_sym_BSLASHacf] = ACTIONS(6189), - [anon_sym_BSLASHAcf] = ACTIONS(6189), - [anon_sym_BSLASHacfp] = ACTIONS(6189), - [anon_sym_BSLASHAcfp] = ACTIONS(6189), - [anon_sym_BSLASHac] = ACTIONS(6189), - [anon_sym_BSLASHAc] = ACTIONS(6189), - [anon_sym_BSLASHacp] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), - [anon_sym_BSLASHcolor] = ACTIONS(6189), - [anon_sym_BSLASHcolorbox] = ACTIONS(6189), - [anon_sym_BSLASHtextcolor] = ACTIONS(6189), - [anon_sym_BSLASHpagecolor] = ACTIONS(6189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), - [anon_sym_BSLASHtext] = ACTIONS(6189), - [anon_sym_BSLASHintertext] = ACTIONS(6189), - [anon_sym_shortintertext] = ACTIONS(6189), - }, - [1046] = { - [ts_builtin_sym_end] = ACTIONS(6307), - [sym_command_name] = ACTIONS(6305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6305), - [anon_sym_LBRACK] = ACTIONS(6307), - [anon_sym_RBRACK] = ACTIONS(6307), - [anon_sym_COMMA] = ACTIONS(6307), - [anon_sym_EQ] = ACTIONS(6307), - [anon_sym_LPAREN] = ACTIONS(6307), - [anon_sym_RPAREN] = ACTIONS(6307), - [anon_sym_BSLASHpart] = ACTIONS(6305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddpart] = ACTIONS(6305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6307), - [anon_sym_BSLASHchapter] = ACTIONS(6305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddchap] = ACTIONS(6305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsection] = ACTIONS(6305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddsec] = ACTIONS(6305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubsection] = ACTIONS(6305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHparagraph] = ACTIONS(6305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6307), - [anon_sym_BSLASHitem] = ACTIONS(6305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6307), - [anon_sym_LBRACE] = ACTIONS(6307), - [anon_sym_RBRACE] = ACTIONS(6307), - [sym_word] = ACTIONS(6305), - [sym_placeholder] = ACTIONS(6307), - [anon_sym_PLUS] = ACTIONS(6307), - [anon_sym_DASH] = ACTIONS(6307), - [anon_sym_STAR] = ACTIONS(6307), - [anon_sym_SLASH] = ACTIONS(6307), - [anon_sym_LT] = ACTIONS(6305), - [anon_sym_GT] = ACTIONS(6305), - [anon_sym_BANG] = ACTIONS(6305), - [anon_sym_PIPE] = ACTIONS(6305), - [anon_sym_COLON] = ACTIONS(6305), - [anon_sym_SQUOTE] = ACTIONS(6305), - [anon_sym__] = ACTIONS(6307), - [anon_sym_CARET] = ACTIONS(6307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6307), - [anon_sym_DOLLAR] = ACTIONS(6305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6307), - [anon_sym_BSLASHbegin] = ACTIONS(6305), - [anon_sym_BSLASHtitle] = ACTIONS(6305), - [anon_sym_BSLASHauthor] = ACTIONS(6305), - [anon_sym_BSLASHusepackage] = ACTIONS(6305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6305), - [anon_sym_BSLASHinclude] = ACTIONS(6305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6305), - [anon_sym_BSLASHinput] = ACTIONS(6305), - [anon_sym_BSLASHsubfile] = ACTIONS(6305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6305), - [anon_sym_BSLASHbibliography] = ACTIONS(6305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6305), - [anon_sym_BSLASHincludesvg] = ACTIONS(6305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6305), - [anon_sym_BSLASHimport] = ACTIONS(6305), - [anon_sym_BSLASHsubimport] = ACTIONS(6305), - [anon_sym_BSLASHinputfrom] = ACTIONS(6305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6305), - [anon_sym_BSLASHincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHcaption] = ACTIONS(6305), - [anon_sym_BSLASHcite] = ACTIONS(6305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCite] = ACTIONS(6305), - [anon_sym_BSLASHnocite] = ACTIONS(6305), - [anon_sym_BSLASHcitet] = ACTIONS(6305), - [anon_sym_BSLASHcitep] = ACTIONS(6305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteauthor] = ACTIONS(6305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitetitle] = ACTIONS(6305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteyear] = ACTIONS(6305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitedate] = ACTIONS(6305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteurl] = ACTIONS(6305), - [anon_sym_BSLASHfullcite] = ACTIONS(6305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6305), - [anon_sym_BSLASHcitealt] = ACTIONS(6305), - [anon_sym_BSLASHcitealp] = ACTIONS(6305), - [anon_sym_BSLASHcitetext] = ACTIONS(6305), - [anon_sym_BSLASHparencite] = ACTIONS(6305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHParencite] = ACTIONS(6305), - [anon_sym_BSLASHfootcite] = ACTIONS(6305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6305), - [anon_sym_BSLASHtextcite] = ACTIONS(6305), - [anon_sym_BSLASHTextcite] = ACTIONS(6305), - [anon_sym_BSLASHsmartcite] = ACTIONS(6305), - [anon_sym_BSLASHSmartcite] = ACTIONS(6305), - [anon_sym_BSLASHsupercite] = ACTIONS(6305), - [anon_sym_BSLASHautocite] = ACTIONS(6305), - [anon_sym_BSLASHAutocite] = ACTIONS(6305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHvolcite] = ACTIONS(6305), - [anon_sym_BSLASHVolcite] = ACTIONS(6305), - [anon_sym_BSLASHpvolcite] = ACTIONS(6305), - [anon_sym_BSLASHPvolcite] = ACTIONS(6305), - [anon_sym_BSLASHfvolcite] = ACTIONS(6305), - [anon_sym_BSLASHftvolcite] = ACTIONS(6305), - [anon_sym_BSLASHsvolcite] = ACTIONS(6305), - [anon_sym_BSLASHSvolcite] = ACTIONS(6305), - [anon_sym_BSLASHtvolcite] = ACTIONS(6305), - [anon_sym_BSLASHTvolcite] = ACTIONS(6305), - [anon_sym_BSLASHavolcite] = ACTIONS(6305), - [anon_sym_BSLASHAvolcite] = ACTIONS(6305), - [anon_sym_BSLASHnotecite] = ACTIONS(6305), - [anon_sym_BSLASHNotecite] = ACTIONS(6305), - [anon_sym_BSLASHpnotecite] = ACTIONS(6305), - [anon_sym_BSLASHPnotecite] = ACTIONS(6305), - [anon_sym_BSLASHfnotecite] = ACTIONS(6305), - [anon_sym_BSLASHlabel] = ACTIONS(6305), - [anon_sym_BSLASHref] = ACTIONS(6305), - [anon_sym_BSLASHeqref] = ACTIONS(6305), - [anon_sym_BSLASHvref] = ACTIONS(6305), - [anon_sym_BSLASHVref] = ACTIONS(6305), - [anon_sym_BSLASHautoref] = ACTIONS(6305), - [anon_sym_BSLASHpageref] = ACTIONS(6305), - [anon_sym_BSLASHcref] = ACTIONS(6305), - [anon_sym_BSLASHCref] = ACTIONS(6305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnameCref] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHlabelcref] = ACTIONS(6305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCrefrange] = ACTIONS(6305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnewlabel] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6307), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHdef] = ACTIONS(6305), - [anon_sym_BSLASHlet] = ACTIONS(6305), - [anon_sym_BSLASHleft] = ACTIONS(6305), - [anon_sym_BSLASHbig] = ACTIONS(6305), - [anon_sym_BSLASHBig] = ACTIONS(6305), - [anon_sym_BSLASHbigg] = ACTIONS(6305), - [anon_sym_BSLASHBigg] = ACTIONS(6305), - [anon_sym_BSLASHbigl] = ACTIONS(6305), - [anon_sym_BSLASHBigl] = ACTIONS(6305), - [anon_sym_BSLASHbiggl] = ACTIONS(6305), - [anon_sym_BSLASHBiggl] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6305), - [anon_sym_BSLASHgls] = ACTIONS(6305), - [anon_sym_BSLASHGls] = ACTIONS(6305), - [anon_sym_BSLASHGLS] = ACTIONS(6305), - [anon_sym_BSLASHglspl] = ACTIONS(6305), - [anon_sym_BSLASHGlspl] = ACTIONS(6305), - [anon_sym_BSLASHGLSpl] = ACTIONS(6305), - [anon_sym_BSLASHglsdisp] = ACTIONS(6305), - [anon_sym_BSLASHglslink] = ACTIONS(6305), - [anon_sym_BSLASHglstext] = ACTIONS(6305), - [anon_sym_BSLASHGlstext] = ACTIONS(6305), - [anon_sym_BSLASHGLStext] = ACTIONS(6305), - [anon_sym_BSLASHglsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6305), - [anon_sym_BSLASHglsplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSplural] = ACTIONS(6305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHglsname] = ACTIONS(6305), - [anon_sym_BSLASHGlsname] = ACTIONS(6305), - [anon_sym_BSLASHGLSname] = ACTIONS(6305), - [anon_sym_BSLASHglssymbol] = ACTIONS(6305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6305), - [anon_sym_BSLASHglsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6305), - [anon_sym_BSLASHglsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6305), - [anon_sym_BSLASHglsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6305), - [anon_sym_BSLASHglsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6305), - [anon_sym_BSLASHglsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6305), - [anon_sym_BSLASHnewacronym] = ACTIONS(6305), - [anon_sym_BSLASHacrshort] = ACTIONS(6305), - [anon_sym_BSLASHAcrshort] = ACTIONS(6305), - [anon_sym_BSLASHACRshort] = ACTIONS(6305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6305), - [anon_sym_BSLASHacrlong] = ACTIONS(6305), - [anon_sym_BSLASHAcrlong] = ACTIONS(6305), - [anon_sym_BSLASHACRlong] = ACTIONS(6305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6305), - [anon_sym_BSLASHacrfull] = ACTIONS(6305), - [anon_sym_BSLASHAcrfull] = ACTIONS(6305), - [anon_sym_BSLASHACRfull] = ACTIONS(6305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6305), - [anon_sym_BSLASHacs] = ACTIONS(6305), - [anon_sym_BSLASHAcs] = ACTIONS(6305), - [anon_sym_BSLASHacsp] = ACTIONS(6305), - [anon_sym_BSLASHAcsp] = ACTIONS(6305), - [anon_sym_BSLASHacl] = ACTIONS(6305), - [anon_sym_BSLASHAcl] = ACTIONS(6305), - [anon_sym_BSLASHaclp] = ACTIONS(6305), - [anon_sym_BSLASHAclp] = ACTIONS(6305), - [anon_sym_BSLASHacf] = ACTIONS(6305), - [anon_sym_BSLASHAcf] = ACTIONS(6305), - [anon_sym_BSLASHacfp] = ACTIONS(6305), - [anon_sym_BSLASHAcfp] = ACTIONS(6305), - [anon_sym_BSLASHac] = ACTIONS(6305), - [anon_sym_BSLASHAc] = ACTIONS(6305), - [anon_sym_BSLASHacp] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6305), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6305), - [anon_sym_BSLASHcolor] = ACTIONS(6305), - [anon_sym_BSLASHcolorbox] = ACTIONS(6305), - [anon_sym_BSLASHtextcolor] = ACTIONS(6305), - [anon_sym_BSLASHpagecolor] = ACTIONS(6305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6305), - [anon_sym_BSLASHtext] = ACTIONS(6305), - [anon_sym_BSLASHintertext] = ACTIONS(6305), - [anon_sym_shortintertext] = ACTIONS(6305), - }, - [1047] = { - [ts_builtin_sym_end] = ACTIONS(6471), - [sym_command_name] = ACTIONS(6469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6471), - [anon_sym_RBRACK] = ACTIONS(6471), - [anon_sym_COMMA] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(6471), - [anon_sym_LPAREN] = ACTIONS(6471), - [anon_sym_RPAREN] = ACTIONS(6471), - [anon_sym_BSLASHpart] = ACTIONS(6469), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddpart] = ACTIONS(6469), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6471), - [anon_sym_BSLASHchapter] = ACTIONS(6469), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddchap] = ACTIONS(6469), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsection] = ACTIONS(6469), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddsec] = ACTIONS(6469), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubsection] = ACTIONS(6469), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6469), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHparagraph] = ACTIONS(6469), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6469), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6471), - [anon_sym_BSLASHitem] = ACTIONS(6469), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6471), - [anon_sym_RBRACE] = ACTIONS(6471), - [sym_word] = ACTIONS(6469), - [sym_placeholder] = ACTIONS(6471), - [anon_sym_PLUS] = ACTIONS(6471), - [anon_sym_DASH] = ACTIONS(6471), - [anon_sym_STAR] = ACTIONS(6471), - [anon_sym_SLASH] = ACTIONS(6471), - [anon_sym_LT] = ACTIONS(6469), - [anon_sym_GT] = ACTIONS(6469), - [anon_sym_BANG] = ACTIONS(6469), - [anon_sym_PIPE] = ACTIONS(6469), - [anon_sym_COLON] = ACTIONS(6469), - [anon_sym_SQUOTE] = ACTIONS(6469), - [anon_sym__] = ACTIONS(6471), - [anon_sym_CARET] = ACTIONS(6471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6471), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6471), - [anon_sym_DOLLAR] = ACTIONS(6469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6471), - [anon_sym_BSLASHbegin] = ACTIONS(6469), - [anon_sym_BSLASHtitle] = ACTIONS(6469), - [anon_sym_BSLASHauthor] = ACTIONS(6469), - [anon_sym_BSLASHusepackage] = ACTIONS(6469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6469), - [anon_sym_BSLASHinclude] = ACTIONS(6469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6469), - [anon_sym_BSLASHinput] = ACTIONS(6469), - [anon_sym_BSLASHsubfile] = ACTIONS(6469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6469), - [anon_sym_BSLASHbibliography] = ACTIONS(6469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6469), - [anon_sym_BSLASHincludesvg] = ACTIONS(6469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6469), - [anon_sym_BSLASHimport] = ACTIONS(6469), - [anon_sym_BSLASHsubimport] = ACTIONS(6469), - [anon_sym_BSLASHinputfrom] = ACTIONS(6469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6469), - [anon_sym_BSLASHincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHcaption] = ACTIONS(6469), - [anon_sym_BSLASHcite] = ACTIONS(6469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCite] = ACTIONS(6469), - [anon_sym_BSLASHnocite] = ACTIONS(6469), - [anon_sym_BSLASHcitet] = ACTIONS(6469), - [anon_sym_BSLASHcitep] = ACTIONS(6469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteauthor] = ACTIONS(6469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitetitle] = ACTIONS(6469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteyear] = ACTIONS(6469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitedate] = ACTIONS(6469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteurl] = ACTIONS(6469), - [anon_sym_BSLASHfullcite] = ACTIONS(6469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6469), - [anon_sym_BSLASHcitealt] = ACTIONS(6469), - [anon_sym_BSLASHcitealp] = ACTIONS(6469), - [anon_sym_BSLASHcitetext] = ACTIONS(6469), - [anon_sym_BSLASHparencite] = ACTIONS(6469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHParencite] = ACTIONS(6469), - [anon_sym_BSLASHfootcite] = ACTIONS(6469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6469), - [anon_sym_BSLASHtextcite] = ACTIONS(6469), - [anon_sym_BSLASHTextcite] = ACTIONS(6469), - [anon_sym_BSLASHsmartcite] = ACTIONS(6469), - [anon_sym_BSLASHSmartcite] = ACTIONS(6469), - [anon_sym_BSLASHsupercite] = ACTIONS(6469), - [anon_sym_BSLASHautocite] = ACTIONS(6469), - [anon_sym_BSLASHAutocite] = ACTIONS(6469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHvolcite] = ACTIONS(6469), - [anon_sym_BSLASHVolcite] = ACTIONS(6469), - [anon_sym_BSLASHpvolcite] = ACTIONS(6469), - [anon_sym_BSLASHPvolcite] = ACTIONS(6469), - [anon_sym_BSLASHfvolcite] = ACTIONS(6469), - [anon_sym_BSLASHftvolcite] = ACTIONS(6469), - [anon_sym_BSLASHsvolcite] = ACTIONS(6469), - [anon_sym_BSLASHSvolcite] = ACTIONS(6469), - [anon_sym_BSLASHtvolcite] = ACTIONS(6469), - [anon_sym_BSLASHTvolcite] = ACTIONS(6469), - [anon_sym_BSLASHavolcite] = ACTIONS(6469), - [anon_sym_BSLASHAvolcite] = ACTIONS(6469), - [anon_sym_BSLASHnotecite] = ACTIONS(6469), - [anon_sym_BSLASHNotecite] = ACTIONS(6469), - [anon_sym_BSLASHpnotecite] = ACTIONS(6469), - [anon_sym_BSLASHPnotecite] = ACTIONS(6469), - [anon_sym_BSLASHfnotecite] = ACTIONS(6469), - [anon_sym_BSLASHlabel] = ACTIONS(6469), - [anon_sym_BSLASHref] = ACTIONS(6469), - [anon_sym_BSLASHeqref] = ACTIONS(6469), - [anon_sym_BSLASHvref] = ACTIONS(6469), - [anon_sym_BSLASHVref] = ACTIONS(6469), - [anon_sym_BSLASHautoref] = ACTIONS(6469), - [anon_sym_BSLASHpageref] = ACTIONS(6469), - [anon_sym_BSLASHcref] = ACTIONS(6469), - [anon_sym_BSLASHCref] = ACTIONS(6469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnameCref] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHlabelcref] = ACTIONS(6469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCrefrange] = ACTIONS(6469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnewlabel] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6471), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHdef] = ACTIONS(6469), - [anon_sym_BSLASHlet] = ACTIONS(6469), - [anon_sym_BSLASHleft] = ACTIONS(6469), - [anon_sym_BSLASHbig] = ACTIONS(6469), - [anon_sym_BSLASHBig] = ACTIONS(6469), - [anon_sym_BSLASHbigg] = ACTIONS(6469), - [anon_sym_BSLASHBigg] = ACTIONS(6469), - [anon_sym_BSLASHbigl] = ACTIONS(6469), - [anon_sym_BSLASHBigl] = ACTIONS(6469), - [anon_sym_BSLASHbiggl] = ACTIONS(6469), - [anon_sym_BSLASHBiggl] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6469), - [anon_sym_BSLASHgls] = ACTIONS(6469), - [anon_sym_BSLASHGls] = ACTIONS(6469), - [anon_sym_BSLASHGLS] = ACTIONS(6469), - [anon_sym_BSLASHglspl] = ACTIONS(6469), - [anon_sym_BSLASHGlspl] = ACTIONS(6469), - [anon_sym_BSLASHGLSpl] = ACTIONS(6469), - [anon_sym_BSLASHglsdisp] = ACTIONS(6469), - [anon_sym_BSLASHglslink] = ACTIONS(6469), - [anon_sym_BSLASHglstext] = ACTIONS(6469), - [anon_sym_BSLASHGlstext] = ACTIONS(6469), - [anon_sym_BSLASHGLStext] = ACTIONS(6469), - [anon_sym_BSLASHglsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6469), - [anon_sym_BSLASHglsplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSplural] = ACTIONS(6469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHglsname] = ACTIONS(6469), - [anon_sym_BSLASHGlsname] = ACTIONS(6469), - [anon_sym_BSLASHGLSname] = ACTIONS(6469), - [anon_sym_BSLASHglssymbol] = ACTIONS(6469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6469), - [anon_sym_BSLASHglsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6469), - [anon_sym_BSLASHglsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6469), - [anon_sym_BSLASHglsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6469), - [anon_sym_BSLASHglsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6469), - [anon_sym_BSLASHglsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6469), - [anon_sym_BSLASHnewacronym] = ACTIONS(6469), - [anon_sym_BSLASHacrshort] = ACTIONS(6469), - [anon_sym_BSLASHAcrshort] = ACTIONS(6469), - [anon_sym_BSLASHACRshort] = ACTIONS(6469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6469), - [anon_sym_BSLASHacrlong] = ACTIONS(6469), - [anon_sym_BSLASHAcrlong] = ACTIONS(6469), - [anon_sym_BSLASHACRlong] = ACTIONS(6469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6469), - [anon_sym_BSLASHacrfull] = ACTIONS(6469), - [anon_sym_BSLASHAcrfull] = ACTIONS(6469), - [anon_sym_BSLASHACRfull] = ACTIONS(6469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6469), - [anon_sym_BSLASHacs] = ACTIONS(6469), - [anon_sym_BSLASHAcs] = ACTIONS(6469), - [anon_sym_BSLASHacsp] = ACTIONS(6469), - [anon_sym_BSLASHAcsp] = ACTIONS(6469), - [anon_sym_BSLASHacl] = ACTIONS(6469), - [anon_sym_BSLASHAcl] = ACTIONS(6469), - [anon_sym_BSLASHaclp] = ACTIONS(6469), - [anon_sym_BSLASHAclp] = ACTIONS(6469), - [anon_sym_BSLASHacf] = ACTIONS(6469), - [anon_sym_BSLASHAcf] = ACTIONS(6469), - [anon_sym_BSLASHacfp] = ACTIONS(6469), - [anon_sym_BSLASHAcfp] = ACTIONS(6469), - [anon_sym_BSLASHac] = ACTIONS(6469), - [anon_sym_BSLASHAc] = ACTIONS(6469), - [anon_sym_BSLASHacp] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6469), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6469), - [anon_sym_BSLASHcolor] = ACTIONS(6469), - [anon_sym_BSLASHcolorbox] = ACTIONS(6469), - [anon_sym_BSLASHtextcolor] = ACTIONS(6469), - [anon_sym_BSLASHpagecolor] = ACTIONS(6469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6469), - [anon_sym_BSLASHtext] = ACTIONS(6469), - [anon_sym_BSLASHintertext] = ACTIONS(6469), - [anon_sym_shortintertext] = ACTIONS(6469), - }, - [1048] = { - [ts_builtin_sym_end] = ACTIONS(6315), - [sym_command_name] = ACTIONS(6313), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6313), - [anon_sym_LBRACK] = ACTIONS(6315), - [anon_sym_RBRACK] = ACTIONS(6315), - [anon_sym_COMMA] = ACTIONS(6315), - [anon_sym_EQ] = ACTIONS(6315), - [anon_sym_LPAREN] = ACTIONS(6315), - [anon_sym_RPAREN] = ACTIONS(6315), - [anon_sym_BSLASHpart] = ACTIONS(6313), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddpart] = ACTIONS(6313), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6315), - [anon_sym_BSLASHchapter] = ACTIONS(6313), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddchap] = ACTIONS(6313), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsection] = ACTIONS(6313), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddsec] = ACTIONS(6313), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubsection] = ACTIONS(6313), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6313), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHparagraph] = ACTIONS(6313), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6315), - [anon_sym_BSLASHitem] = ACTIONS(6313), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6315), - [anon_sym_LBRACE] = ACTIONS(6315), - [anon_sym_RBRACE] = ACTIONS(6315), - [sym_word] = ACTIONS(6313), - [sym_placeholder] = ACTIONS(6315), - [anon_sym_PLUS] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6315), - [anon_sym_SLASH] = ACTIONS(6315), - [anon_sym_LT] = ACTIONS(6313), - [anon_sym_GT] = ACTIONS(6313), - [anon_sym_BANG] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(6313), - [anon_sym_COLON] = ACTIONS(6313), - [anon_sym_SQUOTE] = ACTIONS(6313), - [anon_sym__] = ACTIONS(6315), - [anon_sym_CARET] = ACTIONS(6315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6315), - [anon_sym_DOLLAR] = ACTIONS(6313), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6315), - [anon_sym_BSLASHbegin] = ACTIONS(6313), - [anon_sym_BSLASHtitle] = ACTIONS(6313), - [anon_sym_BSLASHauthor] = ACTIONS(6313), - [anon_sym_BSLASHusepackage] = ACTIONS(6313), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6313), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6313), - [anon_sym_BSLASHinclude] = ACTIONS(6313), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6313), - [anon_sym_BSLASHinput] = ACTIONS(6313), - [anon_sym_BSLASHsubfile] = ACTIONS(6313), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6313), - [anon_sym_BSLASHbibliography] = ACTIONS(6313), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6313), - [anon_sym_BSLASHincludesvg] = ACTIONS(6313), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6313), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6313), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6313), - [anon_sym_BSLASHimport] = ACTIONS(6313), - [anon_sym_BSLASHsubimport] = ACTIONS(6313), - [anon_sym_BSLASHinputfrom] = ACTIONS(6313), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6313), - [anon_sym_BSLASHincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHcaption] = ACTIONS(6313), - [anon_sym_BSLASHcite] = ACTIONS(6313), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCite] = ACTIONS(6313), - [anon_sym_BSLASHnocite] = ACTIONS(6313), - [anon_sym_BSLASHcitet] = ACTIONS(6313), - [anon_sym_BSLASHcitep] = ACTIONS(6313), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteauthor] = ACTIONS(6313), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6313), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitetitle] = ACTIONS(6313), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteyear] = ACTIONS(6313), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitedate] = ACTIONS(6313), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteurl] = ACTIONS(6313), - [anon_sym_BSLASHfullcite] = ACTIONS(6313), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6313), - [anon_sym_BSLASHcitealt] = ACTIONS(6313), - [anon_sym_BSLASHcitealp] = ACTIONS(6313), - [anon_sym_BSLASHcitetext] = ACTIONS(6313), - [anon_sym_BSLASHparencite] = ACTIONS(6313), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHParencite] = ACTIONS(6313), - [anon_sym_BSLASHfootcite] = ACTIONS(6313), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6313), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6313), - [anon_sym_BSLASHtextcite] = ACTIONS(6313), - [anon_sym_BSLASHTextcite] = ACTIONS(6313), - [anon_sym_BSLASHsmartcite] = ACTIONS(6313), - [anon_sym_BSLASHSmartcite] = ACTIONS(6313), - [anon_sym_BSLASHsupercite] = ACTIONS(6313), - [anon_sym_BSLASHautocite] = ACTIONS(6313), - [anon_sym_BSLASHAutocite] = ACTIONS(6313), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHvolcite] = ACTIONS(6313), - [anon_sym_BSLASHVolcite] = ACTIONS(6313), - [anon_sym_BSLASHpvolcite] = ACTIONS(6313), - [anon_sym_BSLASHPvolcite] = ACTIONS(6313), - [anon_sym_BSLASHfvolcite] = ACTIONS(6313), - [anon_sym_BSLASHftvolcite] = ACTIONS(6313), - [anon_sym_BSLASHsvolcite] = ACTIONS(6313), - [anon_sym_BSLASHSvolcite] = ACTIONS(6313), - [anon_sym_BSLASHtvolcite] = ACTIONS(6313), - [anon_sym_BSLASHTvolcite] = ACTIONS(6313), - [anon_sym_BSLASHavolcite] = ACTIONS(6313), - [anon_sym_BSLASHAvolcite] = ACTIONS(6313), - [anon_sym_BSLASHnotecite] = ACTIONS(6313), - [anon_sym_BSLASHNotecite] = ACTIONS(6313), - [anon_sym_BSLASHpnotecite] = ACTIONS(6313), - [anon_sym_BSLASHPnotecite] = ACTIONS(6313), - [anon_sym_BSLASHfnotecite] = ACTIONS(6313), - [anon_sym_BSLASHlabel] = ACTIONS(6313), - [anon_sym_BSLASHref] = ACTIONS(6313), - [anon_sym_BSLASHeqref] = ACTIONS(6313), - [anon_sym_BSLASHvref] = ACTIONS(6313), - [anon_sym_BSLASHVref] = ACTIONS(6313), - [anon_sym_BSLASHautoref] = ACTIONS(6313), - [anon_sym_BSLASHpageref] = ACTIONS(6313), - [anon_sym_BSLASHcref] = ACTIONS(6313), - [anon_sym_BSLASHCref] = ACTIONS(6313), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnameCref] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHlabelcref] = ACTIONS(6313), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCrefrange] = ACTIONS(6313), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnewlabel] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6313), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6313), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6315), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHdef] = ACTIONS(6313), - [anon_sym_BSLASHlet] = ACTIONS(6313), - [anon_sym_BSLASHleft] = ACTIONS(6313), - [anon_sym_BSLASHbig] = ACTIONS(6313), - [anon_sym_BSLASHBig] = ACTIONS(6313), - [anon_sym_BSLASHbigg] = ACTIONS(6313), - [anon_sym_BSLASHBigg] = ACTIONS(6313), - [anon_sym_BSLASHbigl] = ACTIONS(6313), - [anon_sym_BSLASHBigl] = ACTIONS(6313), - [anon_sym_BSLASHbiggl] = ACTIONS(6313), - [anon_sym_BSLASHBiggl] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6313), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6313), - [anon_sym_BSLASHgls] = ACTIONS(6313), - [anon_sym_BSLASHGls] = ACTIONS(6313), - [anon_sym_BSLASHGLS] = ACTIONS(6313), - [anon_sym_BSLASHglspl] = ACTIONS(6313), - [anon_sym_BSLASHGlspl] = ACTIONS(6313), - [anon_sym_BSLASHGLSpl] = ACTIONS(6313), - [anon_sym_BSLASHglsdisp] = ACTIONS(6313), - [anon_sym_BSLASHglslink] = ACTIONS(6313), - [anon_sym_BSLASHglstext] = ACTIONS(6313), - [anon_sym_BSLASHGlstext] = ACTIONS(6313), - [anon_sym_BSLASHGLStext] = ACTIONS(6313), - [anon_sym_BSLASHglsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6313), - [anon_sym_BSLASHglsplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSplural] = ACTIONS(6313), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHglsname] = ACTIONS(6313), - [anon_sym_BSLASHGlsname] = ACTIONS(6313), - [anon_sym_BSLASHGLSname] = ACTIONS(6313), - [anon_sym_BSLASHglssymbol] = ACTIONS(6313), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6313), - [anon_sym_BSLASHglsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6313), - [anon_sym_BSLASHglsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6313), - [anon_sym_BSLASHglsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6313), - [anon_sym_BSLASHglsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6313), - [anon_sym_BSLASHglsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6313), - [anon_sym_BSLASHnewacronym] = ACTIONS(6313), - [anon_sym_BSLASHacrshort] = ACTIONS(6313), - [anon_sym_BSLASHAcrshort] = ACTIONS(6313), - [anon_sym_BSLASHACRshort] = ACTIONS(6313), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6313), - [anon_sym_BSLASHacrlong] = ACTIONS(6313), - [anon_sym_BSLASHAcrlong] = ACTIONS(6313), - [anon_sym_BSLASHACRlong] = ACTIONS(6313), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6313), - [anon_sym_BSLASHacrfull] = ACTIONS(6313), - [anon_sym_BSLASHAcrfull] = ACTIONS(6313), - [anon_sym_BSLASHACRfull] = ACTIONS(6313), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6313), - [anon_sym_BSLASHacs] = ACTIONS(6313), - [anon_sym_BSLASHAcs] = ACTIONS(6313), - [anon_sym_BSLASHacsp] = ACTIONS(6313), - [anon_sym_BSLASHAcsp] = ACTIONS(6313), - [anon_sym_BSLASHacl] = ACTIONS(6313), - [anon_sym_BSLASHAcl] = ACTIONS(6313), - [anon_sym_BSLASHaclp] = ACTIONS(6313), - [anon_sym_BSLASHAclp] = ACTIONS(6313), - [anon_sym_BSLASHacf] = ACTIONS(6313), - [anon_sym_BSLASHAcf] = ACTIONS(6313), - [anon_sym_BSLASHacfp] = ACTIONS(6313), - [anon_sym_BSLASHAcfp] = ACTIONS(6313), - [anon_sym_BSLASHac] = ACTIONS(6313), - [anon_sym_BSLASHAc] = ACTIONS(6313), - [anon_sym_BSLASHacp] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6313), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6313), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6313), - [anon_sym_BSLASHcolor] = ACTIONS(6313), - [anon_sym_BSLASHcolorbox] = ACTIONS(6313), - [anon_sym_BSLASHtextcolor] = ACTIONS(6313), - [anon_sym_BSLASHpagecolor] = ACTIONS(6313), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6313), - [anon_sym_BSLASHtext] = ACTIONS(6313), - [anon_sym_BSLASHintertext] = ACTIONS(6313), - [anon_sym_shortintertext] = ACTIONS(6313), - }, - [1049] = { - [ts_builtin_sym_end] = ACTIONS(6443), - [sym_command_name] = ACTIONS(6441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6441), - [anon_sym_LBRACK] = ACTIONS(6443), - [anon_sym_RBRACK] = ACTIONS(6443), - [anon_sym_COMMA] = ACTIONS(6443), - [anon_sym_EQ] = ACTIONS(6443), - [anon_sym_LPAREN] = ACTIONS(6443), - [anon_sym_RPAREN] = ACTIONS(6443), - [anon_sym_BSLASHpart] = ACTIONS(6441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddpart] = ACTIONS(6441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6443), - [anon_sym_BSLASHchapter] = ACTIONS(6441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddchap] = ACTIONS(6441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsection] = ACTIONS(6441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddsec] = ACTIONS(6441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubsection] = ACTIONS(6441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHparagraph] = ACTIONS(6441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6443), - [anon_sym_BSLASHitem] = ACTIONS(6441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6443), - [anon_sym_LBRACE] = ACTIONS(6443), - [anon_sym_RBRACE] = ACTIONS(6443), - [sym_word] = ACTIONS(6441), - [sym_placeholder] = ACTIONS(6443), - [anon_sym_PLUS] = ACTIONS(6443), - [anon_sym_DASH] = ACTIONS(6443), - [anon_sym_STAR] = ACTIONS(6443), - [anon_sym_SLASH] = ACTIONS(6443), - [anon_sym_LT] = ACTIONS(6441), - [anon_sym_GT] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(6441), - [anon_sym_PIPE] = ACTIONS(6441), - [anon_sym_COLON] = ACTIONS(6441), - [anon_sym_SQUOTE] = ACTIONS(6441), - [anon_sym__] = ACTIONS(6443), - [anon_sym_CARET] = ACTIONS(6443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6443), - [anon_sym_DOLLAR] = ACTIONS(6441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6443), - [anon_sym_BSLASHbegin] = ACTIONS(6441), - [anon_sym_BSLASHtitle] = ACTIONS(6441), - [anon_sym_BSLASHauthor] = ACTIONS(6441), - [anon_sym_BSLASHusepackage] = ACTIONS(6441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6441), - [anon_sym_BSLASHinclude] = ACTIONS(6441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6441), - [anon_sym_BSLASHinput] = ACTIONS(6441), - [anon_sym_BSLASHsubfile] = ACTIONS(6441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6441), - [anon_sym_BSLASHbibliography] = ACTIONS(6441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6441), - [anon_sym_BSLASHincludesvg] = ACTIONS(6441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6441), - [anon_sym_BSLASHimport] = ACTIONS(6441), - [anon_sym_BSLASHsubimport] = ACTIONS(6441), - [anon_sym_BSLASHinputfrom] = ACTIONS(6441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6441), - [anon_sym_BSLASHincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHcaption] = ACTIONS(6441), - [anon_sym_BSLASHcite] = ACTIONS(6441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCite] = ACTIONS(6441), - [anon_sym_BSLASHnocite] = ACTIONS(6441), - [anon_sym_BSLASHcitet] = ACTIONS(6441), - [anon_sym_BSLASHcitep] = ACTIONS(6441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteauthor] = ACTIONS(6441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitetitle] = ACTIONS(6441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteyear] = ACTIONS(6441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitedate] = ACTIONS(6441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteurl] = ACTIONS(6441), - [anon_sym_BSLASHfullcite] = ACTIONS(6441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6441), - [anon_sym_BSLASHcitealt] = ACTIONS(6441), - [anon_sym_BSLASHcitealp] = ACTIONS(6441), - [anon_sym_BSLASHcitetext] = ACTIONS(6441), - [anon_sym_BSLASHparencite] = ACTIONS(6441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHParencite] = ACTIONS(6441), - [anon_sym_BSLASHfootcite] = ACTIONS(6441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6441), - [anon_sym_BSLASHtextcite] = ACTIONS(6441), - [anon_sym_BSLASHTextcite] = ACTIONS(6441), - [anon_sym_BSLASHsmartcite] = ACTIONS(6441), - [anon_sym_BSLASHSmartcite] = ACTIONS(6441), - [anon_sym_BSLASHsupercite] = ACTIONS(6441), - [anon_sym_BSLASHautocite] = ACTIONS(6441), - [anon_sym_BSLASHAutocite] = ACTIONS(6441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHvolcite] = ACTIONS(6441), - [anon_sym_BSLASHVolcite] = ACTIONS(6441), - [anon_sym_BSLASHpvolcite] = ACTIONS(6441), - [anon_sym_BSLASHPvolcite] = ACTIONS(6441), - [anon_sym_BSLASHfvolcite] = ACTIONS(6441), - [anon_sym_BSLASHftvolcite] = ACTIONS(6441), - [anon_sym_BSLASHsvolcite] = ACTIONS(6441), - [anon_sym_BSLASHSvolcite] = ACTIONS(6441), - [anon_sym_BSLASHtvolcite] = ACTIONS(6441), - [anon_sym_BSLASHTvolcite] = ACTIONS(6441), - [anon_sym_BSLASHavolcite] = ACTIONS(6441), - [anon_sym_BSLASHAvolcite] = ACTIONS(6441), - [anon_sym_BSLASHnotecite] = ACTIONS(6441), - [anon_sym_BSLASHNotecite] = ACTIONS(6441), - [anon_sym_BSLASHpnotecite] = ACTIONS(6441), - [anon_sym_BSLASHPnotecite] = ACTIONS(6441), - [anon_sym_BSLASHfnotecite] = ACTIONS(6441), - [anon_sym_BSLASHlabel] = ACTIONS(6441), - [anon_sym_BSLASHref] = ACTIONS(6441), - [anon_sym_BSLASHeqref] = ACTIONS(6441), - [anon_sym_BSLASHvref] = ACTIONS(6441), - [anon_sym_BSLASHVref] = ACTIONS(6441), - [anon_sym_BSLASHautoref] = ACTIONS(6441), - [anon_sym_BSLASHpageref] = ACTIONS(6441), - [anon_sym_BSLASHcref] = ACTIONS(6441), - [anon_sym_BSLASHCref] = ACTIONS(6441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnameCref] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHlabelcref] = ACTIONS(6441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCrefrange] = ACTIONS(6441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnewlabel] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6443), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHdef] = ACTIONS(6441), - [anon_sym_BSLASHlet] = ACTIONS(6441), - [anon_sym_BSLASHleft] = ACTIONS(6441), - [anon_sym_BSLASHbig] = ACTIONS(6441), - [anon_sym_BSLASHBig] = ACTIONS(6441), - [anon_sym_BSLASHbigg] = ACTIONS(6441), - [anon_sym_BSLASHBigg] = ACTIONS(6441), - [anon_sym_BSLASHbigl] = ACTIONS(6441), - [anon_sym_BSLASHBigl] = ACTIONS(6441), - [anon_sym_BSLASHbiggl] = ACTIONS(6441), - [anon_sym_BSLASHBiggl] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6441), - [anon_sym_BSLASHgls] = ACTIONS(6441), - [anon_sym_BSLASHGls] = ACTIONS(6441), - [anon_sym_BSLASHGLS] = ACTIONS(6441), - [anon_sym_BSLASHglspl] = ACTIONS(6441), - [anon_sym_BSLASHGlspl] = ACTIONS(6441), - [anon_sym_BSLASHGLSpl] = ACTIONS(6441), - [anon_sym_BSLASHglsdisp] = ACTIONS(6441), - [anon_sym_BSLASHglslink] = ACTIONS(6441), - [anon_sym_BSLASHglstext] = ACTIONS(6441), - [anon_sym_BSLASHGlstext] = ACTIONS(6441), - [anon_sym_BSLASHGLStext] = ACTIONS(6441), - [anon_sym_BSLASHglsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6441), - [anon_sym_BSLASHglsplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSplural] = ACTIONS(6441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHglsname] = ACTIONS(6441), - [anon_sym_BSLASHGlsname] = ACTIONS(6441), - [anon_sym_BSLASHGLSname] = ACTIONS(6441), - [anon_sym_BSLASHglssymbol] = ACTIONS(6441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6441), - [anon_sym_BSLASHglsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6441), - [anon_sym_BSLASHglsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6441), - [anon_sym_BSLASHglsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6441), - [anon_sym_BSLASHglsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6441), - [anon_sym_BSLASHglsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6441), - [anon_sym_BSLASHnewacronym] = ACTIONS(6441), - [anon_sym_BSLASHacrshort] = ACTIONS(6441), - [anon_sym_BSLASHAcrshort] = ACTIONS(6441), - [anon_sym_BSLASHACRshort] = ACTIONS(6441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6441), - [anon_sym_BSLASHacrlong] = ACTIONS(6441), - [anon_sym_BSLASHAcrlong] = ACTIONS(6441), - [anon_sym_BSLASHACRlong] = ACTIONS(6441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6441), - [anon_sym_BSLASHacrfull] = ACTIONS(6441), - [anon_sym_BSLASHAcrfull] = ACTIONS(6441), - [anon_sym_BSLASHACRfull] = ACTIONS(6441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6441), - [anon_sym_BSLASHacs] = ACTIONS(6441), - [anon_sym_BSLASHAcs] = ACTIONS(6441), - [anon_sym_BSLASHacsp] = ACTIONS(6441), - [anon_sym_BSLASHAcsp] = ACTIONS(6441), - [anon_sym_BSLASHacl] = ACTIONS(6441), - [anon_sym_BSLASHAcl] = ACTIONS(6441), - [anon_sym_BSLASHaclp] = ACTIONS(6441), - [anon_sym_BSLASHAclp] = ACTIONS(6441), - [anon_sym_BSLASHacf] = ACTIONS(6441), - [anon_sym_BSLASHAcf] = ACTIONS(6441), - [anon_sym_BSLASHacfp] = ACTIONS(6441), - [anon_sym_BSLASHAcfp] = ACTIONS(6441), - [anon_sym_BSLASHac] = ACTIONS(6441), - [anon_sym_BSLASHAc] = ACTIONS(6441), - [anon_sym_BSLASHacp] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6441), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6441), - [anon_sym_BSLASHcolor] = ACTIONS(6441), - [anon_sym_BSLASHcolorbox] = ACTIONS(6441), - [anon_sym_BSLASHtextcolor] = ACTIONS(6441), - [anon_sym_BSLASHpagecolor] = ACTIONS(6441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6441), - [anon_sym_BSLASHtext] = ACTIONS(6441), - [anon_sym_BSLASHintertext] = ACTIONS(6441), - [anon_sym_shortintertext] = ACTIONS(6441), - }, - [1050] = { - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(199), - [anon_sym_BSLASHpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddpart] = ACTIONS(199), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHchapter] = ACTIONS(199), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddchap] = ACTIONS(199), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHparagraph] = ACTIONS(199), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubparagraph] = ACTIONS(199), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHitem] = ACTIONS(199), - [anon_sym_BSLASHitem_STAR] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHend] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [1051] = { - [sym_command_name] = ACTIONS(6273), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6273), - [anon_sym_LBRACK] = ACTIONS(6275), - [anon_sym_RBRACK] = ACTIONS(6275), - [anon_sym_COMMA] = ACTIONS(6275), - [anon_sym_EQ] = ACTIONS(6275), - [anon_sym_LPAREN] = ACTIONS(6275), - [anon_sym_RPAREN] = ACTIONS(6275), - [anon_sym_BSLASHpart] = ACTIONS(6273), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddpart] = ACTIONS(6273), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6275), - [anon_sym_BSLASHchapter] = ACTIONS(6273), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddchap] = ACTIONS(6273), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsection] = ACTIONS(6273), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddsec] = ACTIONS(6273), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubsection] = ACTIONS(6273), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6273), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHparagraph] = ACTIONS(6273), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6273), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6275), - [anon_sym_BSLASHitem] = ACTIONS(6273), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6275), - [anon_sym_LBRACE] = ACTIONS(6275), - [sym_word] = ACTIONS(6273), - [sym_placeholder] = ACTIONS(6275), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_SQUOTE] = ACTIONS(6273), - [anon_sym__] = ACTIONS(6275), - [anon_sym_CARET] = ACTIONS(6275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6275), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6275), - [anon_sym_DOLLAR] = ACTIONS(6273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6275), - [anon_sym_BSLASHbegin] = ACTIONS(6273), - [anon_sym_BSLASHtitle] = ACTIONS(6273), - [anon_sym_BSLASHauthor] = ACTIONS(6273), - [anon_sym_BSLASHusepackage] = ACTIONS(6273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6273), - [anon_sym_BSLASHinclude] = ACTIONS(6273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6273), - [anon_sym_BSLASHinput] = ACTIONS(6273), - [anon_sym_BSLASHsubfile] = ACTIONS(6273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6273), - [anon_sym_BSLASHbibliography] = ACTIONS(6273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6273), - [anon_sym_BSLASHincludesvg] = ACTIONS(6273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6273), - [anon_sym_BSLASHimport] = ACTIONS(6273), - [anon_sym_BSLASHsubimport] = ACTIONS(6273), - [anon_sym_BSLASHinputfrom] = ACTIONS(6273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6273), - [anon_sym_BSLASHincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHcaption] = ACTIONS(6273), - [anon_sym_BSLASHcite] = ACTIONS(6273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCite] = ACTIONS(6273), - [anon_sym_BSLASHnocite] = ACTIONS(6273), - [anon_sym_BSLASHcitet] = ACTIONS(6273), - [anon_sym_BSLASHcitep] = ACTIONS(6273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteauthor] = ACTIONS(6273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitetitle] = ACTIONS(6273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteyear] = ACTIONS(6273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitedate] = ACTIONS(6273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteurl] = ACTIONS(6273), - [anon_sym_BSLASHfullcite] = ACTIONS(6273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6273), - [anon_sym_BSLASHcitealt] = ACTIONS(6273), - [anon_sym_BSLASHcitealp] = ACTIONS(6273), - [anon_sym_BSLASHcitetext] = ACTIONS(6273), - [anon_sym_BSLASHparencite] = ACTIONS(6273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHParencite] = ACTIONS(6273), - [anon_sym_BSLASHfootcite] = ACTIONS(6273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6273), - [anon_sym_BSLASHtextcite] = ACTIONS(6273), - [anon_sym_BSLASHTextcite] = ACTIONS(6273), - [anon_sym_BSLASHsmartcite] = ACTIONS(6273), - [anon_sym_BSLASHSmartcite] = ACTIONS(6273), - [anon_sym_BSLASHsupercite] = ACTIONS(6273), - [anon_sym_BSLASHautocite] = ACTIONS(6273), - [anon_sym_BSLASHAutocite] = ACTIONS(6273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHvolcite] = ACTIONS(6273), - [anon_sym_BSLASHVolcite] = ACTIONS(6273), - [anon_sym_BSLASHpvolcite] = ACTIONS(6273), - [anon_sym_BSLASHPvolcite] = ACTIONS(6273), - [anon_sym_BSLASHfvolcite] = ACTIONS(6273), - [anon_sym_BSLASHftvolcite] = ACTIONS(6273), - [anon_sym_BSLASHsvolcite] = ACTIONS(6273), - [anon_sym_BSLASHSvolcite] = ACTIONS(6273), - [anon_sym_BSLASHtvolcite] = ACTIONS(6273), - [anon_sym_BSLASHTvolcite] = ACTIONS(6273), - [anon_sym_BSLASHavolcite] = ACTIONS(6273), - [anon_sym_BSLASHAvolcite] = ACTIONS(6273), - [anon_sym_BSLASHnotecite] = ACTIONS(6273), - [anon_sym_BSLASHNotecite] = ACTIONS(6273), - [anon_sym_BSLASHpnotecite] = ACTIONS(6273), - [anon_sym_BSLASHPnotecite] = ACTIONS(6273), - [anon_sym_BSLASHfnotecite] = ACTIONS(6273), - [anon_sym_BSLASHlabel] = ACTIONS(6273), - [anon_sym_BSLASHref] = ACTIONS(6273), - [anon_sym_BSLASHeqref] = ACTIONS(6273), - [anon_sym_BSLASHvref] = ACTIONS(6273), - [anon_sym_BSLASHVref] = ACTIONS(6273), - [anon_sym_BSLASHautoref] = ACTIONS(6273), - [anon_sym_BSLASHpageref] = ACTIONS(6273), - [anon_sym_BSLASHcref] = ACTIONS(6273), - [anon_sym_BSLASHCref] = ACTIONS(6273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnameCref] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHlabelcref] = ACTIONS(6273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCrefrange] = ACTIONS(6273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnewlabel] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6275), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHdef] = ACTIONS(6273), - [anon_sym_BSLASHlet] = ACTIONS(6273), - [anon_sym_BSLASHleft] = ACTIONS(6273), - [anon_sym_BSLASHbig] = ACTIONS(6273), - [anon_sym_BSLASHBig] = ACTIONS(6273), - [anon_sym_BSLASHbigg] = ACTIONS(6273), - [anon_sym_BSLASHBigg] = ACTIONS(6273), - [anon_sym_BSLASHbigl] = ACTIONS(6273), - [anon_sym_BSLASHBigl] = ACTIONS(6273), - [anon_sym_BSLASHbiggl] = ACTIONS(6273), - [anon_sym_BSLASHBiggl] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6273), - [anon_sym_BSLASHgls] = ACTIONS(6273), - [anon_sym_BSLASHGls] = ACTIONS(6273), - [anon_sym_BSLASHGLS] = ACTIONS(6273), - [anon_sym_BSLASHglspl] = ACTIONS(6273), - [anon_sym_BSLASHGlspl] = ACTIONS(6273), - [anon_sym_BSLASHGLSpl] = ACTIONS(6273), - [anon_sym_BSLASHglsdisp] = ACTIONS(6273), - [anon_sym_BSLASHglslink] = ACTIONS(6273), - [anon_sym_BSLASHglstext] = ACTIONS(6273), - [anon_sym_BSLASHGlstext] = ACTIONS(6273), - [anon_sym_BSLASHGLStext] = ACTIONS(6273), - [anon_sym_BSLASHglsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6273), - [anon_sym_BSLASHglsplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSplural] = ACTIONS(6273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHglsname] = ACTIONS(6273), - [anon_sym_BSLASHGlsname] = ACTIONS(6273), - [anon_sym_BSLASHGLSname] = ACTIONS(6273), - [anon_sym_BSLASHglssymbol] = ACTIONS(6273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6273), - [anon_sym_BSLASHglsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6273), - [anon_sym_BSLASHglsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6273), - [anon_sym_BSLASHglsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6273), - [anon_sym_BSLASHglsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6273), - [anon_sym_BSLASHglsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6273), - [anon_sym_BSLASHnewacronym] = ACTIONS(6273), - [anon_sym_BSLASHacrshort] = ACTIONS(6273), - [anon_sym_BSLASHAcrshort] = ACTIONS(6273), - [anon_sym_BSLASHACRshort] = ACTIONS(6273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6273), - [anon_sym_BSLASHacrlong] = ACTIONS(6273), - [anon_sym_BSLASHAcrlong] = ACTIONS(6273), - [anon_sym_BSLASHACRlong] = ACTIONS(6273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6273), - [anon_sym_BSLASHacrfull] = ACTIONS(6273), - [anon_sym_BSLASHAcrfull] = ACTIONS(6273), - [anon_sym_BSLASHACRfull] = ACTIONS(6273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6273), - [anon_sym_BSLASHacs] = ACTIONS(6273), - [anon_sym_BSLASHAcs] = ACTIONS(6273), - [anon_sym_BSLASHacsp] = ACTIONS(6273), - [anon_sym_BSLASHAcsp] = ACTIONS(6273), - [anon_sym_BSLASHacl] = ACTIONS(6273), - [anon_sym_BSLASHAcl] = ACTIONS(6273), - [anon_sym_BSLASHaclp] = ACTIONS(6273), - [anon_sym_BSLASHAclp] = ACTIONS(6273), - [anon_sym_BSLASHacf] = ACTIONS(6273), - [anon_sym_BSLASHAcf] = ACTIONS(6273), - [anon_sym_BSLASHacfp] = ACTIONS(6273), - [anon_sym_BSLASHAcfp] = ACTIONS(6273), - [anon_sym_BSLASHac] = ACTIONS(6273), - [anon_sym_BSLASHAc] = ACTIONS(6273), - [anon_sym_BSLASHacp] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6273), - [anon_sym_BSLASHcolor] = ACTIONS(6273), - [anon_sym_BSLASHcolorbox] = ACTIONS(6273), - [anon_sym_BSLASHtextcolor] = ACTIONS(6273), - [anon_sym_BSLASHpagecolor] = ACTIONS(6273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6273), - [anon_sym_BSLASHtext] = ACTIONS(6273), - [anon_sym_BSLASHintertext] = ACTIONS(6273), - [anon_sym_shortintertext] = ACTIONS(6273), - }, - [1052] = { - [sym_command_name] = ACTIONS(6393), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6393), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_RBRACK] = ACTIONS(6395), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_LPAREN] = ACTIONS(6395), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_BSLASHpart] = ACTIONS(6393), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddpart] = ACTIONS(6393), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6395), - [anon_sym_BSLASHchapter] = ACTIONS(6393), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddchap] = ACTIONS(6393), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsection] = ACTIONS(6393), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddsec] = ACTIONS(6393), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubsection] = ACTIONS(6393), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6393), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHparagraph] = ACTIONS(6393), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6393), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6395), - [anon_sym_BSLASHitem] = ACTIONS(6393), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6395), - [anon_sym_LBRACE] = ACTIONS(6395), - [sym_word] = ACTIONS(6393), - [sym_placeholder] = ACTIONS(6395), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6395), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_LT] = ACTIONS(6393), - [anon_sym_GT] = ACTIONS(6393), - [anon_sym_BANG] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_SQUOTE] = ACTIONS(6393), - [anon_sym__] = ACTIONS(6395), - [anon_sym_CARET] = ACTIONS(6395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6395), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6395), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6395), - [anon_sym_DOLLAR] = ACTIONS(6393), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6395), - [anon_sym_BSLASHbegin] = ACTIONS(6393), - [anon_sym_BSLASHtitle] = ACTIONS(6393), - [anon_sym_BSLASHauthor] = ACTIONS(6393), - [anon_sym_BSLASHusepackage] = ACTIONS(6393), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6393), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6393), - [anon_sym_BSLASHinclude] = ACTIONS(6393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6393), - [anon_sym_BSLASHinput] = ACTIONS(6393), - [anon_sym_BSLASHsubfile] = ACTIONS(6393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6393), - [anon_sym_BSLASHbibliography] = ACTIONS(6393), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6393), - [anon_sym_BSLASHincludesvg] = ACTIONS(6393), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6393), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6393), - [anon_sym_BSLASHimport] = ACTIONS(6393), - [anon_sym_BSLASHsubimport] = ACTIONS(6393), - [anon_sym_BSLASHinputfrom] = ACTIONS(6393), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6393), - [anon_sym_BSLASHincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHcaption] = ACTIONS(6393), - [anon_sym_BSLASHcite] = ACTIONS(6393), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCite] = ACTIONS(6393), - [anon_sym_BSLASHnocite] = ACTIONS(6393), - [anon_sym_BSLASHcitet] = ACTIONS(6393), - [anon_sym_BSLASHcitep] = ACTIONS(6393), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteauthor] = ACTIONS(6393), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6393), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitetitle] = ACTIONS(6393), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteyear] = ACTIONS(6393), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitedate] = ACTIONS(6393), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteurl] = ACTIONS(6393), - [anon_sym_BSLASHfullcite] = ACTIONS(6393), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6393), - [anon_sym_BSLASHcitealt] = ACTIONS(6393), - [anon_sym_BSLASHcitealp] = ACTIONS(6393), - [anon_sym_BSLASHcitetext] = ACTIONS(6393), - [anon_sym_BSLASHparencite] = ACTIONS(6393), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHParencite] = ACTIONS(6393), - [anon_sym_BSLASHfootcite] = ACTIONS(6393), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6393), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6393), - [anon_sym_BSLASHtextcite] = ACTIONS(6393), - [anon_sym_BSLASHTextcite] = ACTIONS(6393), - [anon_sym_BSLASHsmartcite] = ACTIONS(6393), - [anon_sym_BSLASHSmartcite] = ACTIONS(6393), - [anon_sym_BSLASHsupercite] = ACTIONS(6393), - [anon_sym_BSLASHautocite] = ACTIONS(6393), - [anon_sym_BSLASHAutocite] = ACTIONS(6393), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHvolcite] = ACTIONS(6393), - [anon_sym_BSLASHVolcite] = ACTIONS(6393), - [anon_sym_BSLASHpvolcite] = ACTIONS(6393), - [anon_sym_BSLASHPvolcite] = ACTIONS(6393), - [anon_sym_BSLASHfvolcite] = ACTIONS(6393), - [anon_sym_BSLASHftvolcite] = ACTIONS(6393), - [anon_sym_BSLASHsvolcite] = ACTIONS(6393), - [anon_sym_BSLASHSvolcite] = ACTIONS(6393), - [anon_sym_BSLASHtvolcite] = ACTIONS(6393), - [anon_sym_BSLASHTvolcite] = ACTIONS(6393), - [anon_sym_BSLASHavolcite] = ACTIONS(6393), - [anon_sym_BSLASHAvolcite] = ACTIONS(6393), - [anon_sym_BSLASHnotecite] = ACTIONS(6393), - [anon_sym_BSLASHNotecite] = ACTIONS(6393), - [anon_sym_BSLASHpnotecite] = ACTIONS(6393), - [anon_sym_BSLASHPnotecite] = ACTIONS(6393), - [anon_sym_BSLASHfnotecite] = ACTIONS(6393), - [anon_sym_BSLASHlabel] = ACTIONS(6393), - [anon_sym_BSLASHref] = ACTIONS(6393), - [anon_sym_BSLASHeqref] = ACTIONS(6393), - [anon_sym_BSLASHvref] = ACTIONS(6393), - [anon_sym_BSLASHVref] = ACTIONS(6393), - [anon_sym_BSLASHautoref] = ACTIONS(6393), - [anon_sym_BSLASHpageref] = ACTIONS(6393), - [anon_sym_BSLASHcref] = ACTIONS(6393), - [anon_sym_BSLASHCref] = ACTIONS(6393), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnameCref] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHlabelcref] = ACTIONS(6393), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCrefrange] = ACTIONS(6393), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnewlabel] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6393), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6393), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6395), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHdef] = ACTIONS(6393), - [anon_sym_BSLASHlet] = ACTIONS(6393), - [anon_sym_BSLASHleft] = ACTIONS(6393), - [anon_sym_BSLASHbig] = ACTIONS(6393), - [anon_sym_BSLASHBig] = ACTIONS(6393), - [anon_sym_BSLASHbigg] = ACTIONS(6393), - [anon_sym_BSLASHBigg] = ACTIONS(6393), - [anon_sym_BSLASHbigl] = ACTIONS(6393), - [anon_sym_BSLASHBigl] = ACTIONS(6393), - [anon_sym_BSLASHbiggl] = ACTIONS(6393), - [anon_sym_BSLASHBiggl] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6393), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6393), - [anon_sym_BSLASHgls] = ACTIONS(6393), - [anon_sym_BSLASHGls] = ACTIONS(6393), - [anon_sym_BSLASHGLS] = ACTIONS(6393), - [anon_sym_BSLASHglspl] = ACTIONS(6393), - [anon_sym_BSLASHGlspl] = ACTIONS(6393), - [anon_sym_BSLASHGLSpl] = ACTIONS(6393), - [anon_sym_BSLASHglsdisp] = ACTIONS(6393), - [anon_sym_BSLASHglslink] = ACTIONS(6393), - [anon_sym_BSLASHglstext] = ACTIONS(6393), - [anon_sym_BSLASHGlstext] = ACTIONS(6393), - [anon_sym_BSLASHGLStext] = ACTIONS(6393), - [anon_sym_BSLASHglsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6393), - [anon_sym_BSLASHglsplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSplural] = ACTIONS(6393), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHglsname] = ACTIONS(6393), - [anon_sym_BSLASHGlsname] = ACTIONS(6393), - [anon_sym_BSLASHGLSname] = ACTIONS(6393), - [anon_sym_BSLASHglssymbol] = ACTIONS(6393), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6393), - [anon_sym_BSLASHglsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6393), - [anon_sym_BSLASHglsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6393), - [anon_sym_BSLASHglsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6393), - [anon_sym_BSLASHglsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6393), - [anon_sym_BSLASHglsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6393), - [anon_sym_BSLASHnewacronym] = ACTIONS(6393), - [anon_sym_BSLASHacrshort] = ACTIONS(6393), - [anon_sym_BSLASHAcrshort] = ACTIONS(6393), - [anon_sym_BSLASHACRshort] = ACTIONS(6393), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6393), - [anon_sym_BSLASHacrlong] = ACTIONS(6393), - [anon_sym_BSLASHAcrlong] = ACTIONS(6393), - [anon_sym_BSLASHACRlong] = ACTIONS(6393), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6393), - [anon_sym_BSLASHacrfull] = ACTIONS(6393), - [anon_sym_BSLASHAcrfull] = ACTIONS(6393), - [anon_sym_BSLASHACRfull] = ACTIONS(6393), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6393), - [anon_sym_BSLASHacs] = ACTIONS(6393), - [anon_sym_BSLASHAcs] = ACTIONS(6393), - [anon_sym_BSLASHacsp] = ACTIONS(6393), - [anon_sym_BSLASHAcsp] = ACTIONS(6393), - [anon_sym_BSLASHacl] = ACTIONS(6393), - [anon_sym_BSLASHAcl] = ACTIONS(6393), - [anon_sym_BSLASHaclp] = ACTIONS(6393), - [anon_sym_BSLASHAclp] = ACTIONS(6393), - [anon_sym_BSLASHacf] = ACTIONS(6393), - [anon_sym_BSLASHAcf] = ACTIONS(6393), - [anon_sym_BSLASHacfp] = ACTIONS(6393), - [anon_sym_BSLASHAcfp] = ACTIONS(6393), - [anon_sym_BSLASHac] = ACTIONS(6393), - [anon_sym_BSLASHAc] = ACTIONS(6393), - [anon_sym_BSLASHacp] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6393), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6393), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6393), - [anon_sym_BSLASHcolor] = ACTIONS(6393), - [anon_sym_BSLASHcolorbox] = ACTIONS(6393), - [anon_sym_BSLASHtextcolor] = ACTIONS(6393), - [anon_sym_BSLASHpagecolor] = ACTIONS(6393), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6393), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6393), - [anon_sym_BSLASHtext] = ACTIONS(6393), - [anon_sym_BSLASHintertext] = ACTIONS(6393), - [anon_sym_shortintertext] = ACTIONS(6393), - }, - [1053] = { - [sym_command_name] = ACTIONS(6381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(6383), - [anon_sym_RBRACK] = ACTIONS(6383), - [anon_sym_COMMA] = ACTIONS(6383), - [anon_sym_EQ] = ACTIONS(6383), - [anon_sym_LPAREN] = ACTIONS(6383), - [anon_sym_RPAREN] = ACTIONS(6383), - [anon_sym_BSLASHpart] = ACTIONS(6381), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddpart] = ACTIONS(6381), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6383), - [anon_sym_BSLASHchapter] = ACTIONS(6381), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddchap] = ACTIONS(6381), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsection] = ACTIONS(6381), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddsec] = ACTIONS(6381), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubsection] = ACTIONS(6381), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6381), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHparagraph] = ACTIONS(6381), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6381), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6383), - [anon_sym_BSLASHitem] = ACTIONS(6381), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6383), - [anon_sym_LBRACE] = ACTIONS(6383), - [sym_word] = ACTIONS(6381), - [sym_placeholder] = ACTIONS(6383), - [anon_sym_PLUS] = ACTIONS(6383), - [anon_sym_DASH] = ACTIONS(6383), - [anon_sym_STAR] = ACTIONS(6383), - [anon_sym_SLASH] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_COLON] = ACTIONS(6381), - [anon_sym_SQUOTE] = ACTIONS(6381), - [anon_sym__] = ACTIONS(6383), - [anon_sym_CARET] = ACTIONS(6383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6383), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6383), - [anon_sym_DOLLAR] = ACTIONS(6381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6383), - [anon_sym_BSLASHbegin] = ACTIONS(6381), - [anon_sym_BSLASHtitle] = ACTIONS(6381), - [anon_sym_BSLASHauthor] = ACTIONS(6381), - [anon_sym_BSLASHusepackage] = ACTIONS(6381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6381), - [anon_sym_BSLASHinclude] = ACTIONS(6381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6381), - [anon_sym_BSLASHinput] = ACTIONS(6381), - [anon_sym_BSLASHsubfile] = ACTIONS(6381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6381), - [anon_sym_BSLASHbibliography] = ACTIONS(6381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6381), - [anon_sym_BSLASHincludesvg] = ACTIONS(6381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6381), - [anon_sym_BSLASHimport] = ACTIONS(6381), - [anon_sym_BSLASHsubimport] = ACTIONS(6381), - [anon_sym_BSLASHinputfrom] = ACTIONS(6381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6381), - [anon_sym_BSLASHincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHcaption] = ACTIONS(6381), - [anon_sym_BSLASHcite] = ACTIONS(6381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCite] = ACTIONS(6381), - [anon_sym_BSLASHnocite] = ACTIONS(6381), - [anon_sym_BSLASHcitet] = ACTIONS(6381), - [anon_sym_BSLASHcitep] = ACTIONS(6381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteauthor] = ACTIONS(6381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitetitle] = ACTIONS(6381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteyear] = ACTIONS(6381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitedate] = ACTIONS(6381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteurl] = ACTIONS(6381), - [anon_sym_BSLASHfullcite] = ACTIONS(6381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6381), - [anon_sym_BSLASHcitealt] = ACTIONS(6381), - [anon_sym_BSLASHcitealp] = ACTIONS(6381), - [anon_sym_BSLASHcitetext] = ACTIONS(6381), - [anon_sym_BSLASHparencite] = ACTIONS(6381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHParencite] = ACTIONS(6381), - [anon_sym_BSLASHfootcite] = ACTIONS(6381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6381), - [anon_sym_BSLASHtextcite] = ACTIONS(6381), - [anon_sym_BSLASHTextcite] = ACTIONS(6381), - [anon_sym_BSLASHsmartcite] = ACTIONS(6381), - [anon_sym_BSLASHSmartcite] = ACTIONS(6381), - [anon_sym_BSLASHsupercite] = ACTIONS(6381), - [anon_sym_BSLASHautocite] = ACTIONS(6381), - [anon_sym_BSLASHAutocite] = ACTIONS(6381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHvolcite] = ACTIONS(6381), - [anon_sym_BSLASHVolcite] = ACTIONS(6381), - [anon_sym_BSLASHpvolcite] = ACTIONS(6381), - [anon_sym_BSLASHPvolcite] = ACTIONS(6381), - [anon_sym_BSLASHfvolcite] = ACTIONS(6381), - [anon_sym_BSLASHftvolcite] = ACTIONS(6381), - [anon_sym_BSLASHsvolcite] = ACTIONS(6381), - [anon_sym_BSLASHSvolcite] = ACTIONS(6381), - [anon_sym_BSLASHtvolcite] = ACTIONS(6381), - [anon_sym_BSLASHTvolcite] = ACTIONS(6381), - [anon_sym_BSLASHavolcite] = ACTIONS(6381), - [anon_sym_BSLASHAvolcite] = ACTIONS(6381), - [anon_sym_BSLASHnotecite] = ACTIONS(6381), - [anon_sym_BSLASHNotecite] = ACTIONS(6381), - [anon_sym_BSLASHpnotecite] = ACTIONS(6381), - [anon_sym_BSLASHPnotecite] = ACTIONS(6381), - [anon_sym_BSLASHfnotecite] = ACTIONS(6381), - [anon_sym_BSLASHlabel] = ACTIONS(6381), - [anon_sym_BSLASHref] = ACTIONS(6381), - [anon_sym_BSLASHeqref] = ACTIONS(6381), - [anon_sym_BSLASHvref] = ACTIONS(6381), - [anon_sym_BSLASHVref] = ACTIONS(6381), - [anon_sym_BSLASHautoref] = ACTIONS(6381), - [anon_sym_BSLASHpageref] = ACTIONS(6381), - [anon_sym_BSLASHcref] = ACTIONS(6381), - [anon_sym_BSLASHCref] = ACTIONS(6381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnameCref] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHlabelcref] = ACTIONS(6381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCrefrange] = ACTIONS(6381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnewlabel] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6383), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHdef] = ACTIONS(6381), - [anon_sym_BSLASHlet] = ACTIONS(6381), - [anon_sym_BSLASHleft] = ACTIONS(6381), - [anon_sym_BSLASHbig] = ACTIONS(6381), - [anon_sym_BSLASHBig] = ACTIONS(6381), - [anon_sym_BSLASHbigg] = ACTIONS(6381), - [anon_sym_BSLASHBigg] = ACTIONS(6381), - [anon_sym_BSLASHbigl] = ACTIONS(6381), - [anon_sym_BSLASHBigl] = ACTIONS(6381), - [anon_sym_BSLASHbiggl] = ACTIONS(6381), - [anon_sym_BSLASHBiggl] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6381), - [anon_sym_BSLASHgls] = ACTIONS(6381), - [anon_sym_BSLASHGls] = ACTIONS(6381), - [anon_sym_BSLASHGLS] = ACTIONS(6381), - [anon_sym_BSLASHglspl] = ACTIONS(6381), - [anon_sym_BSLASHGlspl] = ACTIONS(6381), - [anon_sym_BSLASHGLSpl] = ACTIONS(6381), - [anon_sym_BSLASHglsdisp] = ACTIONS(6381), - [anon_sym_BSLASHglslink] = ACTIONS(6381), - [anon_sym_BSLASHglstext] = ACTIONS(6381), - [anon_sym_BSLASHGlstext] = ACTIONS(6381), - [anon_sym_BSLASHGLStext] = ACTIONS(6381), - [anon_sym_BSLASHglsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6381), - [anon_sym_BSLASHglsplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSplural] = ACTIONS(6381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHglsname] = ACTIONS(6381), - [anon_sym_BSLASHGlsname] = ACTIONS(6381), - [anon_sym_BSLASHGLSname] = ACTIONS(6381), - [anon_sym_BSLASHglssymbol] = ACTIONS(6381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6381), - [anon_sym_BSLASHglsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6381), - [anon_sym_BSLASHglsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6381), - [anon_sym_BSLASHglsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6381), - [anon_sym_BSLASHglsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6381), - [anon_sym_BSLASHglsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6381), - [anon_sym_BSLASHnewacronym] = ACTIONS(6381), - [anon_sym_BSLASHacrshort] = ACTIONS(6381), - [anon_sym_BSLASHAcrshort] = ACTIONS(6381), - [anon_sym_BSLASHACRshort] = ACTIONS(6381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6381), - [anon_sym_BSLASHacrlong] = ACTIONS(6381), - [anon_sym_BSLASHAcrlong] = ACTIONS(6381), - [anon_sym_BSLASHACRlong] = ACTIONS(6381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6381), - [anon_sym_BSLASHacrfull] = ACTIONS(6381), - [anon_sym_BSLASHAcrfull] = ACTIONS(6381), - [anon_sym_BSLASHACRfull] = ACTIONS(6381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6381), - [anon_sym_BSLASHacs] = ACTIONS(6381), - [anon_sym_BSLASHAcs] = ACTIONS(6381), - [anon_sym_BSLASHacsp] = ACTIONS(6381), - [anon_sym_BSLASHAcsp] = ACTIONS(6381), - [anon_sym_BSLASHacl] = ACTIONS(6381), - [anon_sym_BSLASHAcl] = ACTIONS(6381), - [anon_sym_BSLASHaclp] = ACTIONS(6381), - [anon_sym_BSLASHAclp] = ACTIONS(6381), - [anon_sym_BSLASHacf] = ACTIONS(6381), - [anon_sym_BSLASHAcf] = ACTIONS(6381), - [anon_sym_BSLASHacfp] = ACTIONS(6381), - [anon_sym_BSLASHAcfp] = ACTIONS(6381), - [anon_sym_BSLASHac] = ACTIONS(6381), - [anon_sym_BSLASHAc] = ACTIONS(6381), - [anon_sym_BSLASHacp] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6381), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6381), - [anon_sym_BSLASHcolor] = ACTIONS(6381), - [anon_sym_BSLASHcolorbox] = ACTIONS(6381), - [anon_sym_BSLASHtextcolor] = ACTIONS(6381), - [anon_sym_BSLASHpagecolor] = ACTIONS(6381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6381), - [anon_sym_BSLASHtext] = ACTIONS(6381), - [anon_sym_BSLASHintertext] = ACTIONS(6381), - [anon_sym_shortintertext] = ACTIONS(6381), - }, - [1054] = { - [sym_command_name] = ACTIONS(6385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6387), - [anon_sym_RBRACK] = ACTIONS(6387), - [anon_sym_COMMA] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LPAREN] = ACTIONS(6387), - [anon_sym_RPAREN] = ACTIONS(6387), - [anon_sym_BSLASHpart] = ACTIONS(6385), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddpart] = ACTIONS(6385), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6387), - [anon_sym_BSLASHchapter] = ACTIONS(6385), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddchap] = ACTIONS(6385), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsection] = ACTIONS(6385), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddsec] = ACTIONS(6385), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubsection] = ACTIONS(6385), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6385), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHparagraph] = ACTIONS(6385), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6385), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6387), - [anon_sym_BSLASHitem] = ACTIONS(6385), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6387), - [sym_word] = ACTIONS(6385), - [sym_placeholder] = ACTIONS(6387), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6387), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_LT] = ACTIONS(6385), - [anon_sym_GT] = ACTIONS(6385), - [anon_sym_BANG] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_SQUOTE] = ACTIONS(6385), - [anon_sym__] = ACTIONS(6387), - [anon_sym_CARET] = ACTIONS(6387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6387), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6387), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6387), - [anon_sym_DOLLAR] = ACTIONS(6385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6387), - [anon_sym_BSLASHbegin] = ACTIONS(6385), - [anon_sym_BSLASHtitle] = ACTIONS(6385), - [anon_sym_BSLASHauthor] = ACTIONS(6385), - [anon_sym_BSLASHusepackage] = ACTIONS(6385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6385), - [anon_sym_BSLASHinclude] = ACTIONS(6385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6385), - [anon_sym_BSLASHinput] = ACTIONS(6385), - [anon_sym_BSLASHsubfile] = ACTIONS(6385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6385), - [anon_sym_BSLASHbibliography] = ACTIONS(6385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6385), - [anon_sym_BSLASHincludesvg] = ACTIONS(6385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6385), - [anon_sym_BSLASHimport] = ACTIONS(6385), - [anon_sym_BSLASHsubimport] = ACTIONS(6385), - [anon_sym_BSLASHinputfrom] = ACTIONS(6385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6385), - [anon_sym_BSLASHincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHcaption] = ACTIONS(6385), - [anon_sym_BSLASHcite] = ACTIONS(6385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCite] = ACTIONS(6385), - [anon_sym_BSLASHnocite] = ACTIONS(6385), - [anon_sym_BSLASHcitet] = ACTIONS(6385), - [anon_sym_BSLASHcitep] = ACTIONS(6385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteauthor] = ACTIONS(6385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitetitle] = ACTIONS(6385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteyear] = ACTIONS(6385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitedate] = ACTIONS(6385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteurl] = ACTIONS(6385), - [anon_sym_BSLASHfullcite] = ACTIONS(6385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6385), - [anon_sym_BSLASHcitealt] = ACTIONS(6385), - [anon_sym_BSLASHcitealp] = ACTIONS(6385), - [anon_sym_BSLASHcitetext] = ACTIONS(6385), - [anon_sym_BSLASHparencite] = ACTIONS(6385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHParencite] = ACTIONS(6385), - [anon_sym_BSLASHfootcite] = ACTIONS(6385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6385), - [anon_sym_BSLASHtextcite] = ACTIONS(6385), - [anon_sym_BSLASHTextcite] = ACTIONS(6385), - [anon_sym_BSLASHsmartcite] = ACTIONS(6385), - [anon_sym_BSLASHSmartcite] = ACTIONS(6385), - [anon_sym_BSLASHsupercite] = ACTIONS(6385), - [anon_sym_BSLASHautocite] = ACTIONS(6385), - [anon_sym_BSLASHAutocite] = ACTIONS(6385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHvolcite] = ACTIONS(6385), - [anon_sym_BSLASHVolcite] = ACTIONS(6385), - [anon_sym_BSLASHpvolcite] = ACTIONS(6385), - [anon_sym_BSLASHPvolcite] = ACTIONS(6385), - [anon_sym_BSLASHfvolcite] = ACTIONS(6385), - [anon_sym_BSLASHftvolcite] = ACTIONS(6385), - [anon_sym_BSLASHsvolcite] = ACTIONS(6385), - [anon_sym_BSLASHSvolcite] = ACTIONS(6385), - [anon_sym_BSLASHtvolcite] = ACTIONS(6385), - [anon_sym_BSLASHTvolcite] = ACTIONS(6385), - [anon_sym_BSLASHavolcite] = ACTIONS(6385), - [anon_sym_BSLASHAvolcite] = ACTIONS(6385), - [anon_sym_BSLASHnotecite] = ACTIONS(6385), - [anon_sym_BSLASHNotecite] = ACTIONS(6385), - [anon_sym_BSLASHpnotecite] = ACTIONS(6385), - [anon_sym_BSLASHPnotecite] = ACTIONS(6385), - [anon_sym_BSLASHfnotecite] = ACTIONS(6385), - [anon_sym_BSLASHlabel] = ACTIONS(6385), - [anon_sym_BSLASHref] = ACTIONS(6385), - [anon_sym_BSLASHeqref] = ACTIONS(6385), - [anon_sym_BSLASHvref] = ACTIONS(6385), - [anon_sym_BSLASHVref] = ACTIONS(6385), - [anon_sym_BSLASHautoref] = ACTIONS(6385), - [anon_sym_BSLASHpageref] = ACTIONS(6385), - [anon_sym_BSLASHcref] = ACTIONS(6385), - [anon_sym_BSLASHCref] = ACTIONS(6385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnameCref] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHlabelcref] = ACTIONS(6385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCrefrange] = ACTIONS(6385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnewlabel] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6387), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHdef] = ACTIONS(6385), - [anon_sym_BSLASHlet] = ACTIONS(6385), - [anon_sym_BSLASHleft] = ACTIONS(6385), - [anon_sym_BSLASHbig] = ACTIONS(6385), - [anon_sym_BSLASHBig] = ACTIONS(6385), - [anon_sym_BSLASHbigg] = ACTIONS(6385), - [anon_sym_BSLASHBigg] = ACTIONS(6385), - [anon_sym_BSLASHbigl] = ACTIONS(6385), - [anon_sym_BSLASHBigl] = ACTIONS(6385), - [anon_sym_BSLASHbiggl] = ACTIONS(6385), - [anon_sym_BSLASHBiggl] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6385), - [anon_sym_BSLASHgls] = ACTIONS(6385), - [anon_sym_BSLASHGls] = ACTIONS(6385), - [anon_sym_BSLASHGLS] = ACTIONS(6385), - [anon_sym_BSLASHglspl] = ACTIONS(6385), - [anon_sym_BSLASHGlspl] = ACTIONS(6385), - [anon_sym_BSLASHGLSpl] = ACTIONS(6385), - [anon_sym_BSLASHglsdisp] = ACTIONS(6385), - [anon_sym_BSLASHglslink] = ACTIONS(6385), - [anon_sym_BSLASHglstext] = ACTIONS(6385), - [anon_sym_BSLASHGlstext] = ACTIONS(6385), - [anon_sym_BSLASHGLStext] = ACTIONS(6385), - [anon_sym_BSLASHglsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6385), - [anon_sym_BSLASHglsplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSplural] = ACTIONS(6385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHglsname] = ACTIONS(6385), - [anon_sym_BSLASHGlsname] = ACTIONS(6385), - [anon_sym_BSLASHGLSname] = ACTIONS(6385), - [anon_sym_BSLASHglssymbol] = ACTIONS(6385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6385), - [anon_sym_BSLASHglsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6385), - [anon_sym_BSLASHglsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6385), - [anon_sym_BSLASHglsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6385), - [anon_sym_BSLASHglsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6385), - [anon_sym_BSLASHglsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6385), - [anon_sym_BSLASHnewacronym] = ACTIONS(6385), - [anon_sym_BSLASHacrshort] = ACTIONS(6385), - [anon_sym_BSLASHAcrshort] = ACTIONS(6385), - [anon_sym_BSLASHACRshort] = ACTIONS(6385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6385), - [anon_sym_BSLASHacrlong] = ACTIONS(6385), - [anon_sym_BSLASHAcrlong] = ACTIONS(6385), - [anon_sym_BSLASHACRlong] = ACTIONS(6385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6385), - [anon_sym_BSLASHacrfull] = ACTIONS(6385), - [anon_sym_BSLASHAcrfull] = ACTIONS(6385), - [anon_sym_BSLASHACRfull] = ACTIONS(6385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6385), - [anon_sym_BSLASHacs] = ACTIONS(6385), - [anon_sym_BSLASHAcs] = ACTIONS(6385), - [anon_sym_BSLASHacsp] = ACTIONS(6385), - [anon_sym_BSLASHAcsp] = ACTIONS(6385), - [anon_sym_BSLASHacl] = ACTIONS(6385), - [anon_sym_BSLASHAcl] = ACTIONS(6385), - [anon_sym_BSLASHaclp] = ACTIONS(6385), - [anon_sym_BSLASHAclp] = ACTIONS(6385), - [anon_sym_BSLASHacf] = ACTIONS(6385), - [anon_sym_BSLASHAcf] = ACTIONS(6385), - [anon_sym_BSLASHacfp] = ACTIONS(6385), - [anon_sym_BSLASHAcfp] = ACTIONS(6385), - [anon_sym_BSLASHac] = ACTIONS(6385), - [anon_sym_BSLASHAc] = ACTIONS(6385), - [anon_sym_BSLASHacp] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6385), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6385), - [anon_sym_BSLASHcolor] = ACTIONS(6385), - [anon_sym_BSLASHcolorbox] = ACTIONS(6385), - [anon_sym_BSLASHtextcolor] = ACTIONS(6385), - [anon_sym_BSLASHpagecolor] = ACTIONS(6385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6385), - [anon_sym_BSLASHtext] = ACTIONS(6385), - [anon_sym_BSLASHintertext] = ACTIONS(6385), - [anon_sym_shortintertext] = ACTIONS(6385), - }, - [1055] = { - [sym_command_name] = ACTIONS(6377), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6379), - [anon_sym_RBRACK] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_EQ] = ACTIONS(6379), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_BSLASHpart] = ACTIONS(6377), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddpart] = ACTIONS(6377), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6379), - [anon_sym_BSLASHchapter] = ACTIONS(6377), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddchap] = ACTIONS(6377), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsection] = ACTIONS(6377), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddsec] = ACTIONS(6377), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubsection] = ACTIONS(6377), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6377), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHparagraph] = ACTIONS(6377), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6377), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6379), - [anon_sym_BSLASHitem] = ACTIONS(6377), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6379), - [anon_sym_LBRACE] = ACTIONS(6379), - [sym_word] = ACTIONS(6377), - [sym_placeholder] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_SQUOTE] = ACTIONS(6377), - [anon_sym__] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6379), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6379), - [anon_sym_DOLLAR] = ACTIONS(6377), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6379), - [anon_sym_BSLASHbegin] = ACTIONS(6377), - [anon_sym_BSLASHtitle] = ACTIONS(6377), - [anon_sym_BSLASHauthor] = ACTIONS(6377), - [anon_sym_BSLASHusepackage] = ACTIONS(6377), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6377), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6377), - [anon_sym_BSLASHinclude] = ACTIONS(6377), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6377), - [anon_sym_BSLASHinput] = ACTIONS(6377), - [anon_sym_BSLASHsubfile] = ACTIONS(6377), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6377), - [anon_sym_BSLASHbibliography] = ACTIONS(6377), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6377), - [anon_sym_BSLASHincludesvg] = ACTIONS(6377), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6377), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6377), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6377), - [anon_sym_BSLASHimport] = ACTIONS(6377), - [anon_sym_BSLASHsubimport] = ACTIONS(6377), - [anon_sym_BSLASHinputfrom] = ACTIONS(6377), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6377), - [anon_sym_BSLASHincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHcaption] = ACTIONS(6377), - [anon_sym_BSLASHcite] = ACTIONS(6377), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCite] = ACTIONS(6377), - [anon_sym_BSLASHnocite] = ACTIONS(6377), - [anon_sym_BSLASHcitet] = ACTIONS(6377), - [anon_sym_BSLASHcitep] = ACTIONS(6377), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteauthor] = ACTIONS(6377), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6377), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitetitle] = ACTIONS(6377), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteyear] = ACTIONS(6377), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitedate] = ACTIONS(6377), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteurl] = ACTIONS(6377), - [anon_sym_BSLASHfullcite] = ACTIONS(6377), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6377), - [anon_sym_BSLASHcitealt] = ACTIONS(6377), - [anon_sym_BSLASHcitealp] = ACTIONS(6377), - [anon_sym_BSLASHcitetext] = ACTIONS(6377), - [anon_sym_BSLASHparencite] = ACTIONS(6377), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHParencite] = ACTIONS(6377), - [anon_sym_BSLASHfootcite] = ACTIONS(6377), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6377), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6377), - [anon_sym_BSLASHtextcite] = ACTIONS(6377), - [anon_sym_BSLASHTextcite] = ACTIONS(6377), - [anon_sym_BSLASHsmartcite] = ACTIONS(6377), - [anon_sym_BSLASHSmartcite] = ACTIONS(6377), - [anon_sym_BSLASHsupercite] = ACTIONS(6377), - [anon_sym_BSLASHautocite] = ACTIONS(6377), - [anon_sym_BSLASHAutocite] = ACTIONS(6377), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHvolcite] = ACTIONS(6377), - [anon_sym_BSLASHVolcite] = ACTIONS(6377), - [anon_sym_BSLASHpvolcite] = ACTIONS(6377), - [anon_sym_BSLASHPvolcite] = ACTIONS(6377), - [anon_sym_BSLASHfvolcite] = ACTIONS(6377), - [anon_sym_BSLASHftvolcite] = ACTIONS(6377), - [anon_sym_BSLASHsvolcite] = ACTIONS(6377), - [anon_sym_BSLASHSvolcite] = ACTIONS(6377), - [anon_sym_BSLASHtvolcite] = ACTIONS(6377), - [anon_sym_BSLASHTvolcite] = ACTIONS(6377), - [anon_sym_BSLASHavolcite] = ACTIONS(6377), - [anon_sym_BSLASHAvolcite] = ACTIONS(6377), - [anon_sym_BSLASHnotecite] = ACTIONS(6377), - [anon_sym_BSLASHNotecite] = ACTIONS(6377), - [anon_sym_BSLASHpnotecite] = ACTIONS(6377), - [anon_sym_BSLASHPnotecite] = ACTIONS(6377), - [anon_sym_BSLASHfnotecite] = ACTIONS(6377), - [anon_sym_BSLASHlabel] = ACTIONS(6377), - [anon_sym_BSLASHref] = ACTIONS(6377), - [anon_sym_BSLASHeqref] = ACTIONS(6377), - [anon_sym_BSLASHvref] = ACTIONS(6377), - [anon_sym_BSLASHVref] = ACTIONS(6377), - [anon_sym_BSLASHautoref] = ACTIONS(6377), - [anon_sym_BSLASHpageref] = ACTIONS(6377), - [anon_sym_BSLASHcref] = ACTIONS(6377), - [anon_sym_BSLASHCref] = ACTIONS(6377), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnameCref] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHlabelcref] = ACTIONS(6377), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCrefrange] = ACTIONS(6377), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnewlabel] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6377), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6377), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6379), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHdef] = ACTIONS(6377), - [anon_sym_BSLASHlet] = ACTIONS(6377), - [anon_sym_BSLASHleft] = ACTIONS(6377), - [anon_sym_BSLASHbig] = ACTIONS(6377), - [anon_sym_BSLASHBig] = ACTIONS(6377), - [anon_sym_BSLASHbigg] = ACTIONS(6377), - [anon_sym_BSLASHBigg] = ACTIONS(6377), - [anon_sym_BSLASHbigl] = ACTIONS(6377), - [anon_sym_BSLASHBigl] = ACTIONS(6377), - [anon_sym_BSLASHbiggl] = ACTIONS(6377), - [anon_sym_BSLASHBiggl] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6377), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6377), - [anon_sym_BSLASHgls] = ACTIONS(6377), - [anon_sym_BSLASHGls] = ACTIONS(6377), - [anon_sym_BSLASHGLS] = ACTIONS(6377), - [anon_sym_BSLASHglspl] = ACTIONS(6377), - [anon_sym_BSLASHGlspl] = ACTIONS(6377), - [anon_sym_BSLASHGLSpl] = ACTIONS(6377), - [anon_sym_BSLASHglsdisp] = ACTIONS(6377), - [anon_sym_BSLASHglslink] = ACTIONS(6377), - [anon_sym_BSLASHglstext] = ACTIONS(6377), - [anon_sym_BSLASHGlstext] = ACTIONS(6377), - [anon_sym_BSLASHGLStext] = ACTIONS(6377), - [anon_sym_BSLASHglsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6377), - [anon_sym_BSLASHglsplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSplural] = ACTIONS(6377), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHglsname] = ACTIONS(6377), - [anon_sym_BSLASHGlsname] = ACTIONS(6377), - [anon_sym_BSLASHGLSname] = ACTIONS(6377), - [anon_sym_BSLASHglssymbol] = ACTIONS(6377), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6377), - [anon_sym_BSLASHglsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6377), - [anon_sym_BSLASHglsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6377), - [anon_sym_BSLASHglsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6377), - [anon_sym_BSLASHglsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6377), - [anon_sym_BSLASHglsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6377), - [anon_sym_BSLASHnewacronym] = ACTIONS(6377), - [anon_sym_BSLASHacrshort] = ACTIONS(6377), - [anon_sym_BSLASHAcrshort] = ACTIONS(6377), - [anon_sym_BSLASHACRshort] = ACTIONS(6377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6377), - [anon_sym_BSLASHacrlong] = ACTIONS(6377), - [anon_sym_BSLASHAcrlong] = ACTIONS(6377), - [anon_sym_BSLASHACRlong] = ACTIONS(6377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6377), - [anon_sym_BSLASHacrfull] = ACTIONS(6377), - [anon_sym_BSLASHAcrfull] = ACTIONS(6377), - [anon_sym_BSLASHACRfull] = ACTIONS(6377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6377), - [anon_sym_BSLASHacs] = ACTIONS(6377), - [anon_sym_BSLASHAcs] = ACTIONS(6377), - [anon_sym_BSLASHacsp] = ACTIONS(6377), - [anon_sym_BSLASHAcsp] = ACTIONS(6377), - [anon_sym_BSLASHacl] = ACTIONS(6377), - [anon_sym_BSLASHAcl] = ACTIONS(6377), - [anon_sym_BSLASHaclp] = ACTIONS(6377), - [anon_sym_BSLASHAclp] = ACTIONS(6377), - [anon_sym_BSLASHacf] = ACTIONS(6377), - [anon_sym_BSLASHAcf] = ACTIONS(6377), - [anon_sym_BSLASHacfp] = ACTIONS(6377), - [anon_sym_BSLASHAcfp] = ACTIONS(6377), - [anon_sym_BSLASHac] = ACTIONS(6377), - [anon_sym_BSLASHAc] = ACTIONS(6377), - [anon_sym_BSLASHacp] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6377), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6377), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6377), - [anon_sym_BSLASHcolor] = ACTIONS(6377), - [anon_sym_BSLASHcolorbox] = ACTIONS(6377), - [anon_sym_BSLASHtextcolor] = ACTIONS(6377), - [anon_sym_BSLASHpagecolor] = ACTIONS(6377), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6377), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6377), - [anon_sym_BSLASHtext] = ACTIONS(6377), - [anon_sym_BSLASHintertext] = ACTIONS(6377), - [anon_sym_shortintertext] = ACTIONS(6377), - }, - [1056] = { - [sym_command_name] = ACTIONS(6373), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6375), - [anon_sym_RBRACK] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_EQ] = ACTIONS(6375), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_RPAREN] = ACTIONS(6375), - [anon_sym_BSLASHpart] = ACTIONS(6373), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddpart] = ACTIONS(6373), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6375), - [anon_sym_BSLASHchapter] = ACTIONS(6373), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddchap] = ACTIONS(6373), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsection] = ACTIONS(6373), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddsec] = ACTIONS(6373), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubsection] = ACTIONS(6373), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6373), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHparagraph] = ACTIONS(6373), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6373), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6375), - [anon_sym_BSLASHitem] = ACTIONS(6373), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6375), - [anon_sym_LBRACE] = ACTIONS(6375), - [sym_word] = ACTIONS(6373), - [sym_placeholder] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6373), - [anon_sym_GT] = ACTIONS(6373), - [anon_sym_BANG] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_SQUOTE] = ACTIONS(6373), - [anon_sym__] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6375), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6375), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6375), - [anon_sym_DOLLAR] = ACTIONS(6373), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6375), - [anon_sym_BSLASHbegin] = ACTIONS(6373), - [anon_sym_BSLASHtitle] = ACTIONS(6373), - [anon_sym_BSLASHauthor] = ACTIONS(6373), - [anon_sym_BSLASHusepackage] = ACTIONS(6373), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6373), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6373), - [anon_sym_BSLASHinclude] = ACTIONS(6373), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6373), - [anon_sym_BSLASHinput] = ACTIONS(6373), - [anon_sym_BSLASHsubfile] = ACTIONS(6373), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6373), - [anon_sym_BSLASHbibliography] = ACTIONS(6373), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6373), - [anon_sym_BSLASHincludesvg] = ACTIONS(6373), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6373), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6373), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6373), - [anon_sym_BSLASHimport] = ACTIONS(6373), - [anon_sym_BSLASHsubimport] = ACTIONS(6373), - [anon_sym_BSLASHinputfrom] = ACTIONS(6373), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6373), - [anon_sym_BSLASHincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHcaption] = ACTIONS(6373), - [anon_sym_BSLASHcite] = ACTIONS(6373), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCite] = ACTIONS(6373), - [anon_sym_BSLASHnocite] = ACTIONS(6373), - [anon_sym_BSLASHcitet] = ACTIONS(6373), - [anon_sym_BSLASHcitep] = ACTIONS(6373), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteauthor] = ACTIONS(6373), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6373), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitetitle] = ACTIONS(6373), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteyear] = ACTIONS(6373), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitedate] = ACTIONS(6373), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteurl] = ACTIONS(6373), - [anon_sym_BSLASHfullcite] = ACTIONS(6373), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6373), - [anon_sym_BSLASHcitealt] = ACTIONS(6373), - [anon_sym_BSLASHcitealp] = ACTIONS(6373), - [anon_sym_BSLASHcitetext] = ACTIONS(6373), - [anon_sym_BSLASHparencite] = ACTIONS(6373), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHParencite] = ACTIONS(6373), - [anon_sym_BSLASHfootcite] = ACTIONS(6373), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6373), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6373), - [anon_sym_BSLASHtextcite] = ACTIONS(6373), - [anon_sym_BSLASHTextcite] = ACTIONS(6373), - [anon_sym_BSLASHsmartcite] = ACTIONS(6373), - [anon_sym_BSLASHSmartcite] = ACTIONS(6373), - [anon_sym_BSLASHsupercite] = ACTIONS(6373), - [anon_sym_BSLASHautocite] = ACTIONS(6373), - [anon_sym_BSLASHAutocite] = ACTIONS(6373), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHvolcite] = ACTIONS(6373), - [anon_sym_BSLASHVolcite] = ACTIONS(6373), - [anon_sym_BSLASHpvolcite] = ACTIONS(6373), - [anon_sym_BSLASHPvolcite] = ACTIONS(6373), - [anon_sym_BSLASHfvolcite] = ACTIONS(6373), - [anon_sym_BSLASHftvolcite] = ACTIONS(6373), - [anon_sym_BSLASHsvolcite] = ACTIONS(6373), - [anon_sym_BSLASHSvolcite] = ACTIONS(6373), - [anon_sym_BSLASHtvolcite] = ACTIONS(6373), - [anon_sym_BSLASHTvolcite] = ACTIONS(6373), - [anon_sym_BSLASHavolcite] = ACTIONS(6373), - [anon_sym_BSLASHAvolcite] = ACTIONS(6373), - [anon_sym_BSLASHnotecite] = ACTIONS(6373), - [anon_sym_BSLASHNotecite] = ACTIONS(6373), - [anon_sym_BSLASHpnotecite] = ACTIONS(6373), - [anon_sym_BSLASHPnotecite] = ACTIONS(6373), - [anon_sym_BSLASHfnotecite] = ACTIONS(6373), - [anon_sym_BSLASHlabel] = ACTIONS(6373), - [anon_sym_BSLASHref] = ACTIONS(6373), - [anon_sym_BSLASHeqref] = ACTIONS(6373), - [anon_sym_BSLASHvref] = ACTIONS(6373), - [anon_sym_BSLASHVref] = ACTIONS(6373), - [anon_sym_BSLASHautoref] = ACTIONS(6373), - [anon_sym_BSLASHpageref] = ACTIONS(6373), - [anon_sym_BSLASHcref] = ACTIONS(6373), - [anon_sym_BSLASHCref] = ACTIONS(6373), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnameCref] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHlabelcref] = ACTIONS(6373), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCrefrange] = ACTIONS(6373), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnewlabel] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6373), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6373), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6375), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHdef] = ACTIONS(6373), - [anon_sym_BSLASHlet] = ACTIONS(6373), - [anon_sym_BSLASHleft] = ACTIONS(6373), - [anon_sym_BSLASHbig] = ACTIONS(6373), - [anon_sym_BSLASHBig] = ACTIONS(6373), - [anon_sym_BSLASHbigg] = ACTIONS(6373), - [anon_sym_BSLASHBigg] = ACTIONS(6373), - [anon_sym_BSLASHbigl] = ACTIONS(6373), - [anon_sym_BSLASHBigl] = ACTIONS(6373), - [anon_sym_BSLASHbiggl] = ACTIONS(6373), - [anon_sym_BSLASHBiggl] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6373), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6373), - [anon_sym_BSLASHgls] = ACTIONS(6373), - [anon_sym_BSLASHGls] = ACTIONS(6373), - [anon_sym_BSLASHGLS] = ACTIONS(6373), - [anon_sym_BSLASHglspl] = ACTIONS(6373), - [anon_sym_BSLASHGlspl] = ACTIONS(6373), - [anon_sym_BSLASHGLSpl] = ACTIONS(6373), - [anon_sym_BSLASHglsdisp] = ACTIONS(6373), - [anon_sym_BSLASHglslink] = ACTIONS(6373), - [anon_sym_BSLASHglstext] = ACTIONS(6373), - [anon_sym_BSLASHGlstext] = ACTIONS(6373), - [anon_sym_BSLASHGLStext] = ACTIONS(6373), - [anon_sym_BSLASHglsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6373), - [anon_sym_BSLASHglsplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSplural] = ACTIONS(6373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHglsname] = ACTIONS(6373), - [anon_sym_BSLASHGlsname] = ACTIONS(6373), - [anon_sym_BSLASHGLSname] = ACTIONS(6373), - [anon_sym_BSLASHglssymbol] = ACTIONS(6373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6373), - [anon_sym_BSLASHglsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6373), - [anon_sym_BSLASHglsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6373), - [anon_sym_BSLASHglsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6373), - [anon_sym_BSLASHglsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6373), - [anon_sym_BSLASHglsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6373), - [anon_sym_BSLASHnewacronym] = ACTIONS(6373), - [anon_sym_BSLASHacrshort] = ACTIONS(6373), - [anon_sym_BSLASHAcrshort] = ACTIONS(6373), - [anon_sym_BSLASHACRshort] = ACTIONS(6373), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6373), - [anon_sym_BSLASHacrlong] = ACTIONS(6373), - [anon_sym_BSLASHAcrlong] = ACTIONS(6373), - [anon_sym_BSLASHACRlong] = ACTIONS(6373), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6373), - [anon_sym_BSLASHacrfull] = ACTIONS(6373), - [anon_sym_BSLASHAcrfull] = ACTIONS(6373), - [anon_sym_BSLASHACRfull] = ACTIONS(6373), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6373), - [anon_sym_BSLASHacs] = ACTIONS(6373), - [anon_sym_BSLASHAcs] = ACTIONS(6373), - [anon_sym_BSLASHacsp] = ACTIONS(6373), - [anon_sym_BSLASHAcsp] = ACTIONS(6373), - [anon_sym_BSLASHacl] = ACTIONS(6373), - [anon_sym_BSLASHAcl] = ACTIONS(6373), - [anon_sym_BSLASHaclp] = ACTIONS(6373), - [anon_sym_BSLASHAclp] = ACTIONS(6373), - [anon_sym_BSLASHacf] = ACTIONS(6373), - [anon_sym_BSLASHAcf] = ACTIONS(6373), - [anon_sym_BSLASHacfp] = ACTIONS(6373), - [anon_sym_BSLASHAcfp] = ACTIONS(6373), - [anon_sym_BSLASHac] = ACTIONS(6373), - [anon_sym_BSLASHAc] = ACTIONS(6373), - [anon_sym_BSLASHacp] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6373), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6373), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6373), - [anon_sym_BSLASHcolor] = ACTIONS(6373), - [anon_sym_BSLASHcolorbox] = ACTIONS(6373), - [anon_sym_BSLASHtextcolor] = ACTIONS(6373), - [anon_sym_BSLASHpagecolor] = ACTIONS(6373), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6373), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6373), - [anon_sym_BSLASHtext] = ACTIONS(6373), - [anon_sym_BSLASHintertext] = ACTIONS(6373), - [anon_sym_shortintertext] = ACTIONS(6373), - }, - [1057] = { - [sym_command_name] = ACTIONS(6173), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6173), - [anon_sym_LBRACK] = ACTIONS(6175), - [anon_sym_RBRACK] = ACTIONS(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_EQ] = ACTIONS(6175), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_BSLASHpart] = ACTIONS(6173), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddpart] = ACTIONS(6173), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6175), - [anon_sym_BSLASHchapter] = ACTIONS(6173), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddchap] = ACTIONS(6173), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsection] = ACTIONS(6173), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddsec] = ACTIONS(6173), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubsection] = ACTIONS(6173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6173), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHparagraph] = ACTIONS(6173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6173), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6175), - [anon_sym_BSLASHitem] = ACTIONS(6173), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6175), - [anon_sym_LBRACE] = ACTIONS(6175), - [sym_word] = ACTIONS(6173), - [sym_placeholder] = ACTIONS(6175), - [anon_sym_PLUS] = ACTIONS(6175), - [anon_sym_DASH] = ACTIONS(6175), - [anon_sym_STAR] = ACTIONS(6175), - [anon_sym_SLASH] = ACTIONS(6175), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_BANG] = ACTIONS(6173), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_COLON] = ACTIONS(6173), - [anon_sym_SQUOTE] = ACTIONS(6173), - [anon_sym__] = ACTIONS(6175), - [anon_sym_CARET] = ACTIONS(6175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6175), - [anon_sym_DOLLAR] = ACTIONS(6173), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6175), - [anon_sym_BSLASHbegin] = ACTIONS(6173), - [anon_sym_BSLASHend] = ACTIONS(6173), - [anon_sym_BSLASHtitle] = ACTIONS(6173), - [anon_sym_BSLASHauthor] = ACTIONS(6173), - [anon_sym_BSLASHusepackage] = ACTIONS(6173), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6173), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6173), - [anon_sym_BSLASHinclude] = ACTIONS(6173), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6173), - [anon_sym_BSLASHinput] = ACTIONS(6173), - [anon_sym_BSLASHsubfile] = ACTIONS(6173), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6173), - [anon_sym_BSLASHbibliography] = ACTIONS(6173), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6173), - [anon_sym_BSLASHincludesvg] = ACTIONS(6173), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6173), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6173), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6173), - [anon_sym_BSLASHimport] = ACTIONS(6173), - [anon_sym_BSLASHsubimport] = ACTIONS(6173), - [anon_sym_BSLASHinputfrom] = ACTIONS(6173), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6173), - [anon_sym_BSLASHincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHcaption] = ACTIONS(6173), - [anon_sym_BSLASHcite] = ACTIONS(6173), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCite] = ACTIONS(6173), - [anon_sym_BSLASHnocite] = ACTIONS(6173), - [anon_sym_BSLASHcitet] = ACTIONS(6173), - [anon_sym_BSLASHcitep] = ACTIONS(6173), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteauthor] = ACTIONS(6173), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6173), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitetitle] = ACTIONS(6173), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteyear] = ACTIONS(6173), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitedate] = ACTIONS(6173), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteurl] = ACTIONS(6173), - [anon_sym_BSLASHfullcite] = ACTIONS(6173), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6173), - [anon_sym_BSLASHcitealt] = ACTIONS(6173), - [anon_sym_BSLASHcitealp] = ACTIONS(6173), - [anon_sym_BSLASHcitetext] = ACTIONS(6173), - [anon_sym_BSLASHparencite] = ACTIONS(6173), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHParencite] = ACTIONS(6173), - [anon_sym_BSLASHfootcite] = ACTIONS(6173), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6173), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6173), - [anon_sym_BSLASHtextcite] = ACTIONS(6173), - [anon_sym_BSLASHTextcite] = ACTIONS(6173), - [anon_sym_BSLASHsmartcite] = ACTIONS(6173), - [anon_sym_BSLASHSmartcite] = ACTIONS(6173), - [anon_sym_BSLASHsupercite] = ACTIONS(6173), - [anon_sym_BSLASHautocite] = ACTIONS(6173), - [anon_sym_BSLASHAutocite] = ACTIONS(6173), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHvolcite] = ACTIONS(6173), - [anon_sym_BSLASHVolcite] = ACTIONS(6173), - [anon_sym_BSLASHpvolcite] = ACTIONS(6173), - [anon_sym_BSLASHPvolcite] = ACTIONS(6173), - [anon_sym_BSLASHfvolcite] = ACTIONS(6173), - [anon_sym_BSLASHftvolcite] = ACTIONS(6173), - [anon_sym_BSLASHsvolcite] = ACTIONS(6173), - [anon_sym_BSLASHSvolcite] = ACTIONS(6173), - [anon_sym_BSLASHtvolcite] = ACTIONS(6173), - [anon_sym_BSLASHTvolcite] = ACTIONS(6173), - [anon_sym_BSLASHavolcite] = ACTIONS(6173), - [anon_sym_BSLASHAvolcite] = ACTIONS(6173), - [anon_sym_BSLASHnotecite] = ACTIONS(6173), - [anon_sym_BSLASHNotecite] = ACTIONS(6173), - [anon_sym_BSLASHpnotecite] = ACTIONS(6173), - [anon_sym_BSLASHPnotecite] = ACTIONS(6173), - [anon_sym_BSLASHfnotecite] = ACTIONS(6173), - [anon_sym_BSLASHlabel] = ACTIONS(6173), - [anon_sym_BSLASHref] = ACTIONS(6173), - [anon_sym_BSLASHeqref] = ACTIONS(6173), - [anon_sym_BSLASHvref] = ACTIONS(6173), - [anon_sym_BSLASHVref] = ACTIONS(6173), - [anon_sym_BSLASHautoref] = ACTIONS(6173), - [anon_sym_BSLASHpageref] = ACTIONS(6173), - [anon_sym_BSLASHcref] = ACTIONS(6173), - [anon_sym_BSLASHCref] = ACTIONS(6173), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnameCref] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHlabelcref] = ACTIONS(6173), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCrefrange] = ACTIONS(6173), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnewlabel] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6173), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6173), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6175), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHdef] = ACTIONS(6173), - [anon_sym_BSLASHlet] = ACTIONS(6173), - [anon_sym_BSLASHleft] = ACTIONS(6173), - [anon_sym_BSLASHbig] = ACTIONS(6173), - [anon_sym_BSLASHBig] = ACTIONS(6173), - [anon_sym_BSLASHbigg] = ACTIONS(6173), - [anon_sym_BSLASHBigg] = ACTIONS(6173), - [anon_sym_BSLASHbigl] = ACTIONS(6173), - [anon_sym_BSLASHBigl] = ACTIONS(6173), - [anon_sym_BSLASHbiggl] = ACTIONS(6173), - [anon_sym_BSLASHBiggl] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6173), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6173), - [anon_sym_BSLASHgls] = ACTIONS(6173), - [anon_sym_BSLASHGls] = ACTIONS(6173), - [anon_sym_BSLASHGLS] = ACTIONS(6173), - [anon_sym_BSLASHglspl] = ACTIONS(6173), - [anon_sym_BSLASHGlspl] = ACTIONS(6173), - [anon_sym_BSLASHGLSpl] = ACTIONS(6173), - [anon_sym_BSLASHglsdisp] = ACTIONS(6173), - [anon_sym_BSLASHglslink] = ACTIONS(6173), - [anon_sym_BSLASHglstext] = ACTIONS(6173), - [anon_sym_BSLASHGlstext] = ACTIONS(6173), - [anon_sym_BSLASHGLStext] = ACTIONS(6173), - [anon_sym_BSLASHglsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6173), - [anon_sym_BSLASHglsplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSplural] = ACTIONS(6173), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHglsname] = ACTIONS(6173), - [anon_sym_BSLASHGlsname] = ACTIONS(6173), - [anon_sym_BSLASHGLSname] = ACTIONS(6173), - [anon_sym_BSLASHglssymbol] = ACTIONS(6173), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6173), - [anon_sym_BSLASHglsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6173), - [anon_sym_BSLASHglsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6173), - [anon_sym_BSLASHglsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6173), - [anon_sym_BSLASHglsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6173), - [anon_sym_BSLASHglsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6173), - [anon_sym_BSLASHnewacronym] = ACTIONS(6173), - [anon_sym_BSLASHacrshort] = ACTIONS(6173), - [anon_sym_BSLASHAcrshort] = ACTIONS(6173), - [anon_sym_BSLASHACRshort] = ACTIONS(6173), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6173), - [anon_sym_BSLASHacrlong] = ACTIONS(6173), - [anon_sym_BSLASHAcrlong] = ACTIONS(6173), - [anon_sym_BSLASHACRlong] = ACTIONS(6173), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6173), - [anon_sym_BSLASHacrfull] = ACTIONS(6173), - [anon_sym_BSLASHAcrfull] = ACTIONS(6173), - [anon_sym_BSLASHACRfull] = ACTIONS(6173), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6173), - [anon_sym_BSLASHacs] = ACTIONS(6173), - [anon_sym_BSLASHAcs] = ACTIONS(6173), - [anon_sym_BSLASHacsp] = ACTIONS(6173), - [anon_sym_BSLASHAcsp] = ACTIONS(6173), - [anon_sym_BSLASHacl] = ACTIONS(6173), - [anon_sym_BSLASHAcl] = ACTIONS(6173), - [anon_sym_BSLASHaclp] = ACTIONS(6173), - [anon_sym_BSLASHAclp] = ACTIONS(6173), - [anon_sym_BSLASHacf] = ACTIONS(6173), - [anon_sym_BSLASHAcf] = ACTIONS(6173), - [anon_sym_BSLASHacfp] = ACTIONS(6173), - [anon_sym_BSLASHAcfp] = ACTIONS(6173), - [anon_sym_BSLASHac] = ACTIONS(6173), - [anon_sym_BSLASHAc] = ACTIONS(6173), - [anon_sym_BSLASHacp] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6173), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6173), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6173), - [anon_sym_BSLASHcolor] = ACTIONS(6173), - [anon_sym_BSLASHcolorbox] = ACTIONS(6173), - [anon_sym_BSLASHtextcolor] = ACTIONS(6173), - [anon_sym_BSLASHpagecolor] = ACTIONS(6173), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6173), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6173), - [anon_sym_BSLASHtext] = ACTIONS(6173), - [anon_sym_BSLASHintertext] = ACTIONS(6173), - [anon_sym_shortintertext] = ACTIONS(6173), - }, - [1058] = { - [sym_command_name] = ACTIONS(6177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6177), - [anon_sym_LBRACK] = ACTIONS(6179), - [anon_sym_RBRACK] = ACTIONS(6179), - [anon_sym_COMMA] = ACTIONS(6179), - [anon_sym_EQ] = ACTIONS(6179), - [anon_sym_LPAREN] = ACTIONS(6179), - [anon_sym_RPAREN] = ACTIONS(6179), - [anon_sym_BSLASHpart] = ACTIONS(6177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddpart] = ACTIONS(6177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6179), - [anon_sym_BSLASHchapter] = ACTIONS(6177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddchap] = ACTIONS(6177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsection] = ACTIONS(6177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddsec] = ACTIONS(6177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubsection] = ACTIONS(6177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHparagraph] = ACTIONS(6177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6179), - [anon_sym_BSLASHitem] = ACTIONS(6177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6179), - [anon_sym_LBRACE] = ACTIONS(6179), - [sym_word] = ACTIONS(6177), - [sym_placeholder] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6179), - [anon_sym_DASH] = ACTIONS(6179), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6177), - [anon_sym_GT] = ACTIONS(6177), - [anon_sym_BANG] = ACTIONS(6177), - [anon_sym_PIPE] = ACTIONS(6177), - [anon_sym_COLON] = ACTIONS(6177), - [anon_sym_SQUOTE] = ACTIONS(6177), - [anon_sym__] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), - [anon_sym_DOLLAR] = ACTIONS(6177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), - [anon_sym_BSLASHbegin] = ACTIONS(6177), - [anon_sym_BSLASHend] = ACTIONS(6177), - [anon_sym_BSLASHtitle] = ACTIONS(6177), - [anon_sym_BSLASHauthor] = ACTIONS(6177), - [anon_sym_BSLASHusepackage] = ACTIONS(6177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6177), - [anon_sym_BSLASHinclude] = ACTIONS(6177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6177), - [anon_sym_BSLASHinput] = ACTIONS(6177), - [anon_sym_BSLASHsubfile] = ACTIONS(6177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6177), - [anon_sym_BSLASHbibliography] = ACTIONS(6177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6177), - [anon_sym_BSLASHincludesvg] = ACTIONS(6177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6177), - [anon_sym_BSLASHimport] = ACTIONS(6177), - [anon_sym_BSLASHsubimport] = ACTIONS(6177), - [anon_sym_BSLASHinputfrom] = ACTIONS(6177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6177), - [anon_sym_BSLASHincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHcaption] = ACTIONS(6177), - [anon_sym_BSLASHcite] = ACTIONS(6177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCite] = ACTIONS(6177), - [anon_sym_BSLASHnocite] = ACTIONS(6177), - [anon_sym_BSLASHcitet] = ACTIONS(6177), - [anon_sym_BSLASHcitep] = ACTIONS(6177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteauthor] = ACTIONS(6177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitetitle] = ACTIONS(6177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteyear] = ACTIONS(6177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitedate] = ACTIONS(6177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteurl] = ACTIONS(6177), - [anon_sym_BSLASHfullcite] = ACTIONS(6177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6177), - [anon_sym_BSLASHcitealt] = ACTIONS(6177), - [anon_sym_BSLASHcitealp] = ACTIONS(6177), - [anon_sym_BSLASHcitetext] = ACTIONS(6177), - [anon_sym_BSLASHparencite] = ACTIONS(6177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHParencite] = ACTIONS(6177), - [anon_sym_BSLASHfootcite] = ACTIONS(6177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6177), - [anon_sym_BSLASHtextcite] = ACTIONS(6177), - [anon_sym_BSLASHTextcite] = ACTIONS(6177), - [anon_sym_BSLASHsmartcite] = ACTIONS(6177), - [anon_sym_BSLASHSmartcite] = ACTIONS(6177), - [anon_sym_BSLASHsupercite] = ACTIONS(6177), - [anon_sym_BSLASHautocite] = ACTIONS(6177), - [anon_sym_BSLASHAutocite] = ACTIONS(6177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHvolcite] = ACTIONS(6177), - [anon_sym_BSLASHVolcite] = ACTIONS(6177), - [anon_sym_BSLASHpvolcite] = ACTIONS(6177), - [anon_sym_BSLASHPvolcite] = ACTIONS(6177), - [anon_sym_BSLASHfvolcite] = ACTIONS(6177), - [anon_sym_BSLASHftvolcite] = ACTIONS(6177), - [anon_sym_BSLASHsvolcite] = ACTIONS(6177), - [anon_sym_BSLASHSvolcite] = ACTIONS(6177), - [anon_sym_BSLASHtvolcite] = ACTIONS(6177), - [anon_sym_BSLASHTvolcite] = ACTIONS(6177), - [anon_sym_BSLASHavolcite] = ACTIONS(6177), - [anon_sym_BSLASHAvolcite] = ACTIONS(6177), - [anon_sym_BSLASHnotecite] = ACTIONS(6177), - [anon_sym_BSLASHNotecite] = ACTIONS(6177), - [anon_sym_BSLASHpnotecite] = ACTIONS(6177), - [anon_sym_BSLASHPnotecite] = ACTIONS(6177), - [anon_sym_BSLASHfnotecite] = ACTIONS(6177), - [anon_sym_BSLASHlabel] = ACTIONS(6177), - [anon_sym_BSLASHref] = ACTIONS(6177), - [anon_sym_BSLASHeqref] = ACTIONS(6177), - [anon_sym_BSLASHvref] = ACTIONS(6177), - [anon_sym_BSLASHVref] = ACTIONS(6177), - [anon_sym_BSLASHautoref] = ACTIONS(6177), - [anon_sym_BSLASHpageref] = ACTIONS(6177), - [anon_sym_BSLASHcref] = ACTIONS(6177), - [anon_sym_BSLASHCref] = ACTIONS(6177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnameCref] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHlabelcref] = ACTIONS(6177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCrefrange] = ACTIONS(6177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnewlabel] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHdef] = ACTIONS(6177), - [anon_sym_BSLASHlet] = ACTIONS(6177), - [anon_sym_BSLASHleft] = ACTIONS(6177), - [anon_sym_BSLASHbig] = ACTIONS(6177), - [anon_sym_BSLASHBig] = ACTIONS(6177), - [anon_sym_BSLASHbigg] = ACTIONS(6177), - [anon_sym_BSLASHBigg] = ACTIONS(6177), - [anon_sym_BSLASHbigl] = ACTIONS(6177), - [anon_sym_BSLASHBigl] = ACTIONS(6177), - [anon_sym_BSLASHbiggl] = ACTIONS(6177), - [anon_sym_BSLASHBiggl] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6177), - [anon_sym_BSLASHgls] = ACTIONS(6177), - [anon_sym_BSLASHGls] = ACTIONS(6177), - [anon_sym_BSLASHGLS] = ACTIONS(6177), - [anon_sym_BSLASHglspl] = ACTIONS(6177), - [anon_sym_BSLASHGlspl] = ACTIONS(6177), - [anon_sym_BSLASHGLSpl] = ACTIONS(6177), - [anon_sym_BSLASHglsdisp] = ACTIONS(6177), - [anon_sym_BSLASHglslink] = ACTIONS(6177), - [anon_sym_BSLASHglstext] = ACTIONS(6177), - [anon_sym_BSLASHGlstext] = ACTIONS(6177), - [anon_sym_BSLASHGLStext] = ACTIONS(6177), - [anon_sym_BSLASHglsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6177), - [anon_sym_BSLASHglsplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSplural] = ACTIONS(6177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHglsname] = ACTIONS(6177), - [anon_sym_BSLASHGlsname] = ACTIONS(6177), - [anon_sym_BSLASHGLSname] = ACTIONS(6177), - [anon_sym_BSLASHglssymbol] = ACTIONS(6177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6177), - [anon_sym_BSLASHglsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6177), - [anon_sym_BSLASHglsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6177), - [anon_sym_BSLASHglsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6177), - [anon_sym_BSLASHglsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6177), - [anon_sym_BSLASHglsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6177), - [anon_sym_BSLASHnewacronym] = ACTIONS(6177), - [anon_sym_BSLASHacrshort] = ACTIONS(6177), - [anon_sym_BSLASHAcrshort] = ACTIONS(6177), - [anon_sym_BSLASHACRshort] = ACTIONS(6177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6177), - [anon_sym_BSLASHacrlong] = ACTIONS(6177), - [anon_sym_BSLASHAcrlong] = ACTIONS(6177), - [anon_sym_BSLASHACRlong] = ACTIONS(6177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6177), - [anon_sym_BSLASHacrfull] = ACTIONS(6177), - [anon_sym_BSLASHAcrfull] = ACTIONS(6177), - [anon_sym_BSLASHACRfull] = ACTIONS(6177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6177), - [anon_sym_BSLASHacs] = ACTIONS(6177), - [anon_sym_BSLASHAcs] = ACTIONS(6177), - [anon_sym_BSLASHacsp] = ACTIONS(6177), - [anon_sym_BSLASHAcsp] = ACTIONS(6177), - [anon_sym_BSLASHacl] = ACTIONS(6177), - [anon_sym_BSLASHAcl] = ACTIONS(6177), - [anon_sym_BSLASHaclp] = ACTIONS(6177), - [anon_sym_BSLASHAclp] = ACTIONS(6177), - [anon_sym_BSLASHacf] = ACTIONS(6177), - [anon_sym_BSLASHAcf] = ACTIONS(6177), - [anon_sym_BSLASHacfp] = ACTIONS(6177), - [anon_sym_BSLASHAcfp] = ACTIONS(6177), - [anon_sym_BSLASHac] = ACTIONS(6177), - [anon_sym_BSLASHAc] = ACTIONS(6177), - [anon_sym_BSLASHacp] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6177), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6177), - [anon_sym_BSLASHcolor] = ACTIONS(6177), - [anon_sym_BSLASHcolorbox] = ACTIONS(6177), - [anon_sym_BSLASHtextcolor] = ACTIONS(6177), - [anon_sym_BSLASHpagecolor] = ACTIONS(6177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6177), - [anon_sym_BSLASHtext] = ACTIONS(6177), - [anon_sym_BSLASHintertext] = ACTIONS(6177), - [anon_sym_shortintertext] = ACTIONS(6177), - }, - [1059] = { - [sym_command_name] = ACTIONS(6365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6367), - [anon_sym_RBRACK] = ACTIONS(6367), - [anon_sym_COMMA] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(6367), - [anon_sym_LPAREN] = ACTIONS(6367), - [anon_sym_RPAREN] = ACTIONS(6367), - [anon_sym_BSLASHpart] = ACTIONS(6365), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddpart] = ACTIONS(6365), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6367), - [anon_sym_BSLASHchapter] = ACTIONS(6365), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddchap] = ACTIONS(6365), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsection] = ACTIONS(6365), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddsec] = ACTIONS(6365), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubsection] = ACTIONS(6365), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6365), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHparagraph] = ACTIONS(6365), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6365), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6367), - [anon_sym_BSLASHitem] = ACTIONS(6365), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6367), - [anon_sym_LBRACE] = ACTIONS(6367), - [sym_word] = ACTIONS(6365), - [sym_placeholder] = ACTIONS(6367), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6367), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_LT] = ACTIONS(6365), - [anon_sym_GT] = ACTIONS(6365), - [anon_sym_BANG] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_SQUOTE] = ACTIONS(6365), - [anon_sym__] = ACTIONS(6367), - [anon_sym_CARET] = ACTIONS(6367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6367), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6367), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6367), - [anon_sym_DOLLAR] = ACTIONS(6365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6367), - [anon_sym_BSLASHbegin] = ACTIONS(6365), - [anon_sym_BSLASHtitle] = ACTIONS(6365), - [anon_sym_BSLASHauthor] = ACTIONS(6365), - [anon_sym_BSLASHusepackage] = ACTIONS(6365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6365), - [anon_sym_BSLASHinclude] = ACTIONS(6365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6365), - [anon_sym_BSLASHinput] = ACTIONS(6365), - [anon_sym_BSLASHsubfile] = ACTIONS(6365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6365), - [anon_sym_BSLASHbibliography] = ACTIONS(6365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6365), - [anon_sym_BSLASHincludesvg] = ACTIONS(6365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6365), - [anon_sym_BSLASHimport] = ACTIONS(6365), - [anon_sym_BSLASHsubimport] = ACTIONS(6365), - [anon_sym_BSLASHinputfrom] = ACTIONS(6365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6365), - [anon_sym_BSLASHincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHcaption] = ACTIONS(6365), - [anon_sym_BSLASHcite] = ACTIONS(6365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCite] = ACTIONS(6365), - [anon_sym_BSLASHnocite] = ACTIONS(6365), - [anon_sym_BSLASHcitet] = ACTIONS(6365), - [anon_sym_BSLASHcitep] = ACTIONS(6365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteauthor] = ACTIONS(6365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitetitle] = ACTIONS(6365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteyear] = ACTIONS(6365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitedate] = ACTIONS(6365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteurl] = ACTIONS(6365), - [anon_sym_BSLASHfullcite] = ACTIONS(6365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6365), - [anon_sym_BSLASHcitealt] = ACTIONS(6365), - [anon_sym_BSLASHcitealp] = ACTIONS(6365), - [anon_sym_BSLASHcitetext] = ACTIONS(6365), - [anon_sym_BSLASHparencite] = ACTIONS(6365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHParencite] = ACTIONS(6365), - [anon_sym_BSLASHfootcite] = ACTIONS(6365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6365), - [anon_sym_BSLASHtextcite] = ACTIONS(6365), - [anon_sym_BSLASHTextcite] = ACTIONS(6365), - [anon_sym_BSLASHsmartcite] = ACTIONS(6365), - [anon_sym_BSLASHSmartcite] = ACTIONS(6365), - [anon_sym_BSLASHsupercite] = ACTIONS(6365), - [anon_sym_BSLASHautocite] = ACTIONS(6365), - [anon_sym_BSLASHAutocite] = ACTIONS(6365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHvolcite] = ACTIONS(6365), - [anon_sym_BSLASHVolcite] = ACTIONS(6365), - [anon_sym_BSLASHpvolcite] = ACTIONS(6365), - [anon_sym_BSLASHPvolcite] = ACTIONS(6365), - [anon_sym_BSLASHfvolcite] = ACTIONS(6365), - [anon_sym_BSLASHftvolcite] = ACTIONS(6365), - [anon_sym_BSLASHsvolcite] = ACTIONS(6365), - [anon_sym_BSLASHSvolcite] = ACTIONS(6365), - [anon_sym_BSLASHtvolcite] = ACTIONS(6365), - [anon_sym_BSLASHTvolcite] = ACTIONS(6365), - [anon_sym_BSLASHavolcite] = ACTIONS(6365), - [anon_sym_BSLASHAvolcite] = ACTIONS(6365), - [anon_sym_BSLASHnotecite] = ACTIONS(6365), - [anon_sym_BSLASHNotecite] = ACTIONS(6365), - [anon_sym_BSLASHpnotecite] = ACTIONS(6365), - [anon_sym_BSLASHPnotecite] = ACTIONS(6365), - [anon_sym_BSLASHfnotecite] = ACTIONS(6365), - [anon_sym_BSLASHlabel] = ACTIONS(6365), - [anon_sym_BSLASHref] = ACTIONS(6365), - [anon_sym_BSLASHeqref] = ACTIONS(6365), - [anon_sym_BSLASHvref] = ACTIONS(6365), - [anon_sym_BSLASHVref] = ACTIONS(6365), - [anon_sym_BSLASHautoref] = ACTIONS(6365), - [anon_sym_BSLASHpageref] = ACTIONS(6365), - [anon_sym_BSLASHcref] = ACTIONS(6365), - [anon_sym_BSLASHCref] = ACTIONS(6365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnameCref] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHlabelcref] = ACTIONS(6365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCrefrange] = ACTIONS(6365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnewlabel] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6367), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHdef] = ACTIONS(6365), - [anon_sym_BSLASHlet] = ACTIONS(6365), - [anon_sym_BSLASHleft] = ACTIONS(6365), - [anon_sym_BSLASHbig] = ACTIONS(6365), - [anon_sym_BSLASHBig] = ACTIONS(6365), - [anon_sym_BSLASHbigg] = ACTIONS(6365), - [anon_sym_BSLASHBigg] = ACTIONS(6365), - [anon_sym_BSLASHbigl] = ACTIONS(6365), - [anon_sym_BSLASHBigl] = ACTIONS(6365), - [anon_sym_BSLASHbiggl] = ACTIONS(6365), - [anon_sym_BSLASHBiggl] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6365), - [anon_sym_BSLASHgls] = ACTIONS(6365), - [anon_sym_BSLASHGls] = ACTIONS(6365), - [anon_sym_BSLASHGLS] = ACTIONS(6365), - [anon_sym_BSLASHglspl] = ACTIONS(6365), - [anon_sym_BSLASHGlspl] = ACTIONS(6365), - [anon_sym_BSLASHGLSpl] = ACTIONS(6365), - [anon_sym_BSLASHglsdisp] = ACTIONS(6365), - [anon_sym_BSLASHglslink] = ACTIONS(6365), - [anon_sym_BSLASHglstext] = ACTIONS(6365), - [anon_sym_BSLASHGlstext] = ACTIONS(6365), - [anon_sym_BSLASHGLStext] = ACTIONS(6365), - [anon_sym_BSLASHglsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6365), - [anon_sym_BSLASHglsplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSplural] = ACTIONS(6365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHglsname] = ACTIONS(6365), - [anon_sym_BSLASHGlsname] = ACTIONS(6365), - [anon_sym_BSLASHGLSname] = ACTIONS(6365), - [anon_sym_BSLASHglssymbol] = ACTIONS(6365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6365), - [anon_sym_BSLASHglsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6365), - [anon_sym_BSLASHglsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6365), - [anon_sym_BSLASHglsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6365), - [anon_sym_BSLASHglsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6365), - [anon_sym_BSLASHglsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6365), - [anon_sym_BSLASHnewacronym] = ACTIONS(6365), - [anon_sym_BSLASHacrshort] = ACTIONS(6365), - [anon_sym_BSLASHAcrshort] = ACTIONS(6365), - [anon_sym_BSLASHACRshort] = ACTIONS(6365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6365), - [anon_sym_BSLASHacrlong] = ACTIONS(6365), - [anon_sym_BSLASHAcrlong] = ACTIONS(6365), - [anon_sym_BSLASHACRlong] = ACTIONS(6365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6365), - [anon_sym_BSLASHacrfull] = ACTIONS(6365), - [anon_sym_BSLASHAcrfull] = ACTIONS(6365), - [anon_sym_BSLASHACRfull] = ACTIONS(6365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6365), - [anon_sym_BSLASHacs] = ACTIONS(6365), - [anon_sym_BSLASHAcs] = ACTIONS(6365), - [anon_sym_BSLASHacsp] = ACTIONS(6365), - [anon_sym_BSLASHAcsp] = ACTIONS(6365), - [anon_sym_BSLASHacl] = ACTIONS(6365), - [anon_sym_BSLASHAcl] = ACTIONS(6365), - [anon_sym_BSLASHaclp] = ACTIONS(6365), - [anon_sym_BSLASHAclp] = ACTIONS(6365), - [anon_sym_BSLASHacf] = ACTIONS(6365), - [anon_sym_BSLASHAcf] = ACTIONS(6365), - [anon_sym_BSLASHacfp] = ACTIONS(6365), - [anon_sym_BSLASHAcfp] = ACTIONS(6365), - [anon_sym_BSLASHac] = ACTIONS(6365), - [anon_sym_BSLASHAc] = ACTIONS(6365), - [anon_sym_BSLASHacp] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6365), - [anon_sym_BSLASHcolor] = ACTIONS(6365), - [anon_sym_BSLASHcolorbox] = ACTIONS(6365), - [anon_sym_BSLASHtextcolor] = ACTIONS(6365), - [anon_sym_BSLASHpagecolor] = ACTIONS(6365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6365), - [anon_sym_BSLASHtext] = ACTIONS(6365), - [anon_sym_BSLASHintertext] = ACTIONS(6365), - [anon_sym_shortintertext] = ACTIONS(6365), - }, - [1060] = { - [sym_command_name] = ACTIONS(6333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6333), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_BSLASHpart] = ACTIONS(6333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddpart] = ACTIONS(6333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6335), - [anon_sym_BSLASHchapter] = ACTIONS(6333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddchap] = ACTIONS(6333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsection] = ACTIONS(6333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddsec] = ACTIONS(6333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubsection] = ACTIONS(6333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHparagraph] = ACTIONS(6333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6335), - [anon_sym_BSLASHitem] = ACTIONS(6333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6335), - [anon_sym_LBRACE] = ACTIONS(6335), - [sym_word] = ACTIONS(6333), - [sym_placeholder] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6335), - [anon_sym_DASH] = ACTIONS(6335), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6333), - [anon_sym_GT] = ACTIONS(6333), - [anon_sym_BANG] = ACTIONS(6333), - [anon_sym_PIPE] = ACTIONS(6333), - [anon_sym_COLON] = ACTIONS(6333), - [anon_sym_SQUOTE] = ACTIONS(6333), - [anon_sym__] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6335), - [anon_sym_DOLLAR] = ACTIONS(6333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6335), - [anon_sym_BSLASHbegin] = ACTIONS(6333), - [anon_sym_BSLASHend] = ACTIONS(6333), - [anon_sym_BSLASHtitle] = ACTIONS(6333), - [anon_sym_BSLASHauthor] = ACTIONS(6333), - [anon_sym_BSLASHusepackage] = ACTIONS(6333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6333), - [anon_sym_BSLASHinclude] = ACTIONS(6333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6333), - [anon_sym_BSLASHinput] = ACTIONS(6333), - [anon_sym_BSLASHsubfile] = ACTIONS(6333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6333), - [anon_sym_BSLASHbibliography] = ACTIONS(6333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6333), - [anon_sym_BSLASHincludesvg] = ACTIONS(6333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6333), - [anon_sym_BSLASHimport] = ACTIONS(6333), - [anon_sym_BSLASHsubimport] = ACTIONS(6333), - [anon_sym_BSLASHinputfrom] = ACTIONS(6333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6333), - [anon_sym_BSLASHincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHcaption] = ACTIONS(6333), - [anon_sym_BSLASHcite] = ACTIONS(6333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCite] = ACTIONS(6333), - [anon_sym_BSLASHnocite] = ACTIONS(6333), - [anon_sym_BSLASHcitet] = ACTIONS(6333), - [anon_sym_BSLASHcitep] = ACTIONS(6333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteauthor] = ACTIONS(6333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitetitle] = ACTIONS(6333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteyear] = ACTIONS(6333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitedate] = ACTIONS(6333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteurl] = ACTIONS(6333), - [anon_sym_BSLASHfullcite] = ACTIONS(6333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6333), - [anon_sym_BSLASHcitealt] = ACTIONS(6333), - [anon_sym_BSLASHcitealp] = ACTIONS(6333), - [anon_sym_BSLASHcitetext] = ACTIONS(6333), - [anon_sym_BSLASHparencite] = ACTIONS(6333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHParencite] = ACTIONS(6333), - [anon_sym_BSLASHfootcite] = ACTIONS(6333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6333), - [anon_sym_BSLASHtextcite] = ACTIONS(6333), - [anon_sym_BSLASHTextcite] = ACTIONS(6333), - [anon_sym_BSLASHsmartcite] = ACTIONS(6333), - [anon_sym_BSLASHSmartcite] = ACTIONS(6333), - [anon_sym_BSLASHsupercite] = ACTIONS(6333), - [anon_sym_BSLASHautocite] = ACTIONS(6333), - [anon_sym_BSLASHAutocite] = ACTIONS(6333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHvolcite] = ACTIONS(6333), - [anon_sym_BSLASHVolcite] = ACTIONS(6333), - [anon_sym_BSLASHpvolcite] = ACTIONS(6333), - [anon_sym_BSLASHPvolcite] = ACTIONS(6333), - [anon_sym_BSLASHfvolcite] = ACTIONS(6333), - [anon_sym_BSLASHftvolcite] = ACTIONS(6333), - [anon_sym_BSLASHsvolcite] = ACTIONS(6333), - [anon_sym_BSLASHSvolcite] = ACTIONS(6333), - [anon_sym_BSLASHtvolcite] = ACTIONS(6333), - [anon_sym_BSLASHTvolcite] = ACTIONS(6333), - [anon_sym_BSLASHavolcite] = ACTIONS(6333), - [anon_sym_BSLASHAvolcite] = ACTIONS(6333), - [anon_sym_BSLASHnotecite] = ACTIONS(6333), - [anon_sym_BSLASHNotecite] = ACTIONS(6333), - [anon_sym_BSLASHpnotecite] = ACTIONS(6333), - [anon_sym_BSLASHPnotecite] = ACTIONS(6333), - [anon_sym_BSLASHfnotecite] = ACTIONS(6333), - [anon_sym_BSLASHlabel] = ACTIONS(6333), - [anon_sym_BSLASHref] = ACTIONS(6333), - [anon_sym_BSLASHeqref] = ACTIONS(6333), - [anon_sym_BSLASHvref] = ACTIONS(6333), - [anon_sym_BSLASHVref] = ACTIONS(6333), - [anon_sym_BSLASHautoref] = ACTIONS(6333), - [anon_sym_BSLASHpageref] = ACTIONS(6333), - [anon_sym_BSLASHcref] = ACTIONS(6333), - [anon_sym_BSLASHCref] = ACTIONS(6333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnameCref] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHlabelcref] = ACTIONS(6333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCrefrange] = ACTIONS(6333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnewlabel] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6335), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHdef] = ACTIONS(6333), - [anon_sym_BSLASHlet] = ACTIONS(6333), - [anon_sym_BSLASHleft] = ACTIONS(6333), - [anon_sym_BSLASHbig] = ACTIONS(6333), - [anon_sym_BSLASHBig] = ACTIONS(6333), - [anon_sym_BSLASHbigg] = ACTIONS(6333), - [anon_sym_BSLASHBigg] = ACTIONS(6333), - [anon_sym_BSLASHbigl] = ACTIONS(6333), - [anon_sym_BSLASHBigl] = ACTIONS(6333), - [anon_sym_BSLASHbiggl] = ACTIONS(6333), - [anon_sym_BSLASHBiggl] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6333), - [anon_sym_BSLASHgls] = ACTIONS(6333), - [anon_sym_BSLASHGls] = ACTIONS(6333), - [anon_sym_BSLASHGLS] = ACTIONS(6333), - [anon_sym_BSLASHglspl] = ACTIONS(6333), - [anon_sym_BSLASHGlspl] = ACTIONS(6333), - [anon_sym_BSLASHGLSpl] = ACTIONS(6333), - [anon_sym_BSLASHglsdisp] = ACTIONS(6333), - [anon_sym_BSLASHglslink] = ACTIONS(6333), - [anon_sym_BSLASHglstext] = ACTIONS(6333), - [anon_sym_BSLASHGlstext] = ACTIONS(6333), - [anon_sym_BSLASHGLStext] = ACTIONS(6333), - [anon_sym_BSLASHglsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6333), - [anon_sym_BSLASHglsplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSplural] = ACTIONS(6333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHglsname] = ACTIONS(6333), - [anon_sym_BSLASHGlsname] = ACTIONS(6333), - [anon_sym_BSLASHGLSname] = ACTIONS(6333), - [anon_sym_BSLASHglssymbol] = ACTIONS(6333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6333), - [anon_sym_BSLASHglsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6333), - [anon_sym_BSLASHglsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6333), - [anon_sym_BSLASHglsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6333), - [anon_sym_BSLASHglsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6333), - [anon_sym_BSLASHglsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6333), - [anon_sym_BSLASHnewacronym] = ACTIONS(6333), - [anon_sym_BSLASHacrshort] = ACTIONS(6333), - [anon_sym_BSLASHAcrshort] = ACTIONS(6333), - [anon_sym_BSLASHACRshort] = ACTIONS(6333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6333), - [anon_sym_BSLASHacrlong] = ACTIONS(6333), - [anon_sym_BSLASHAcrlong] = ACTIONS(6333), - [anon_sym_BSLASHACRlong] = ACTIONS(6333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6333), - [anon_sym_BSLASHacrfull] = ACTIONS(6333), - [anon_sym_BSLASHAcrfull] = ACTIONS(6333), - [anon_sym_BSLASHACRfull] = ACTIONS(6333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6333), - [anon_sym_BSLASHacs] = ACTIONS(6333), - [anon_sym_BSLASHAcs] = ACTIONS(6333), - [anon_sym_BSLASHacsp] = ACTIONS(6333), - [anon_sym_BSLASHAcsp] = ACTIONS(6333), - [anon_sym_BSLASHacl] = ACTIONS(6333), - [anon_sym_BSLASHAcl] = ACTIONS(6333), - [anon_sym_BSLASHaclp] = ACTIONS(6333), - [anon_sym_BSLASHAclp] = ACTIONS(6333), - [anon_sym_BSLASHacf] = ACTIONS(6333), - [anon_sym_BSLASHAcf] = ACTIONS(6333), - [anon_sym_BSLASHacfp] = ACTIONS(6333), - [anon_sym_BSLASHAcfp] = ACTIONS(6333), - [anon_sym_BSLASHac] = ACTIONS(6333), - [anon_sym_BSLASHAc] = ACTIONS(6333), - [anon_sym_BSLASHacp] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6333), - [anon_sym_BSLASHcolor] = ACTIONS(6333), - [anon_sym_BSLASHcolorbox] = ACTIONS(6333), - [anon_sym_BSLASHtextcolor] = ACTIONS(6333), - [anon_sym_BSLASHpagecolor] = ACTIONS(6333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6333), - [anon_sym_BSLASHtext] = ACTIONS(6333), - [anon_sym_BSLASHintertext] = ACTIONS(6333), - [anon_sym_shortintertext] = ACTIONS(6333), - }, - [1061] = { - [sym_command_name] = ACTIONS(6137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6137), - [anon_sym_LBRACK] = ACTIONS(6139), - [anon_sym_RBRACK] = ACTIONS(6139), - [anon_sym_COMMA] = ACTIONS(6139), - [anon_sym_EQ] = ACTIONS(6139), - [anon_sym_LPAREN] = ACTIONS(6139), - [anon_sym_RPAREN] = ACTIONS(6139), - [anon_sym_BSLASHpart] = ACTIONS(6137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddpart] = ACTIONS(6137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6139), - [anon_sym_BSLASHchapter] = ACTIONS(6137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddchap] = ACTIONS(6137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsection] = ACTIONS(6137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddsec] = ACTIONS(6137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubsection] = ACTIONS(6137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHparagraph] = ACTIONS(6137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6139), - [anon_sym_BSLASHitem] = ACTIONS(6137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6139), - [anon_sym_LBRACE] = ACTIONS(6139), - [sym_word] = ACTIONS(6137), - [sym_placeholder] = ACTIONS(6139), - [anon_sym_PLUS] = ACTIONS(6139), - [anon_sym_DASH] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(6139), - [anon_sym_SLASH] = ACTIONS(6139), - [anon_sym_LT] = ACTIONS(6137), - [anon_sym_GT] = ACTIONS(6137), - [anon_sym_BANG] = ACTIONS(6137), - [anon_sym_PIPE] = ACTIONS(6137), - [anon_sym_COLON] = ACTIONS(6137), - [anon_sym_SQUOTE] = ACTIONS(6137), - [anon_sym__] = ACTIONS(6139), - [anon_sym_CARET] = ACTIONS(6139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6139), - [anon_sym_DOLLAR] = ACTIONS(6137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6139), - [anon_sym_BSLASHbegin] = ACTIONS(6137), - [anon_sym_BSLASHend] = ACTIONS(6137), - [anon_sym_BSLASHtitle] = ACTIONS(6137), - [anon_sym_BSLASHauthor] = ACTIONS(6137), - [anon_sym_BSLASHusepackage] = ACTIONS(6137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6137), - [anon_sym_BSLASHinclude] = ACTIONS(6137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6137), - [anon_sym_BSLASHinput] = ACTIONS(6137), - [anon_sym_BSLASHsubfile] = ACTIONS(6137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6137), - [anon_sym_BSLASHbibliography] = ACTIONS(6137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6137), - [anon_sym_BSLASHincludesvg] = ACTIONS(6137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6137), - [anon_sym_BSLASHimport] = ACTIONS(6137), - [anon_sym_BSLASHsubimport] = ACTIONS(6137), - [anon_sym_BSLASHinputfrom] = ACTIONS(6137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6137), - [anon_sym_BSLASHincludefrom] = ACTIONS(6137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6137), - [anon_sym_BSLASHcaption] = ACTIONS(6137), - [anon_sym_BSLASHcite] = ACTIONS(6137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCite] = ACTIONS(6137), - [anon_sym_BSLASHnocite] = ACTIONS(6137), - [anon_sym_BSLASHcitet] = ACTIONS(6137), - [anon_sym_BSLASHcitep] = ACTIONS(6137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteauthor] = ACTIONS(6137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitetitle] = ACTIONS(6137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteyear] = ACTIONS(6137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitedate] = ACTIONS(6137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteurl] = ACTIONS(6137), - [anon_sym_BSLASHfullcite] = ACTIONS(6137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6137), - [anon_sym_BSLASHcitealt] = ACTIONS(6137), - [anon_sym_BSLASHcitealp] = ACTIONS(6137), - [anon_sym_BSLASHcitetext] = ACTIONS(6137), - [anon_sym_BSLASHparencite] = ACTIONS(6137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHParencite] = ACTIONS(6137), - [anon_sym_BSLASHfootcite] = ACTIONS(6137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6137), - [anon_sym_BSLASHtextcite] = ACTIONS(6137), - [anon_sym_BSLASHTextcite] = ACTIONS(6137), - [anon_sym_BSLASHsmartcite] = ACTIONS(6137), - [anon_sym_BSLASHSmartcite] = ACTIONS(6137), - [anon_sym_BSLASHsupercite] = ACTIONS(6137), - [anon_sym_BSLASHautocite] = ACTIONS(6137), - [anon_sym_BSLASHAutocite] = ACTIONS(6137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHvolcite] = ACTIONS(6137), - [anon_sym_BSLASHVolcite] = ACTIONS(6137), - [anon_sym_BSLASHpvolcite] = ACTIONS(6137), - [anon_sym_BSLASHPvolcite] = ACTIONS(6137), - [anon_sym_BSLASHfvolcite] = ACTIONS(6137), - [anon_sym_BSLASHftvolcite] = ACTIONS(6137), - [anon_sym_BSLASHsvolcite] = ACTIONS(6137), - [anon_sym_BSLASHSvolcite] = ACTIONS(6137), - [anon_sym_BSLASHtvolcite] = ACTIONS(6137), - [anon_sym_BSLASHTvolcite] = ACTIONS(6137), - [anon_sym_BSLASHavolcite] = ACTIONS(6137), - [anon_sym_BSLASHAvolcite] = ACTIONS(6137), - [anon_sym_BSLASHnotecite] = ACTIONS(6137), - [anon_sym_BSLASHNotecite] = ACTIONS(6137), - [anon_sym_BSLASHpnotecite] = ACTIONS(6137), - [anon_sym_BSLASHPnotecite] = ACTIONS(6137), - [anon_sym_BSLASHfnotecite] = ACTIONS(6137), - [anon_sym_BSLASHlabel] = ACTIONS(6137), - [anon_sym_BSLASHref] = ACTIONS(6137), - [anon_sym_BSLASHeqref] = ACTIONS(6137), - [anon_sym_BSLASHvref] = ACTIONS(6137), - [anon_sym_BSLASHVref] = ACTIONS(6137), - [anon_sym_BSLASHautoref] = ACTIONS(6137), - [anon_sym_BSLASHpageref] = ACTIONS(6137), - [anon_sym_BSLASHcref] = ACTIONS(6137), - [anon_sym_BSLASHCref] = ACTIONS(6137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6139), - [anon_sym_BSLASHnamecref] = ACTIONS(6137), - [anon_sym_BSLASHnameCref] = ACTIONS(6137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6137), - [anon_sym_BSLASHlabelcref] = ACTIONS(6137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6137), - [anon_sym_BSLASHcrefrange] = ACTIONS(6137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCrefrange] = ACTIONS(6137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6139), - [anon_sym_BSLASHnewlabel] = ACTIONS(6137), - [anon_sym_BSLASHnewcommand] = ACTIONS(6137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6139), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHdef] = ACTIONS(6137), - [anon_sym_BSLASHlet] = ACTIONS(6137), - [anon_sym_BSLASHleft] = ACTIONS(6137), - [anon_sym_BSLASHbig] = ACTIONS(6137), - [anon_sym_BSLASHBig] = ACTIONS(6137), - [anon_sym_BSLASHbigg] = ACTIONS(6137), - [anon_sym_BSLASHBigg] = ACTIONS(6137), - [anon_sym_BSLASHbigl] = ACTIONS(6137), - [anon_sym_BSLASHBigl] = ACTIONS(6137), - [anon_sym_BSLASHbiggl] = ACTIONS(6137), - [anon_sym_BSLASHBiggl] = ACTIONS(6137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6137), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6137), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6137), - [anon_sym_BSLASHgls] = ACTIONS(6137), - [anon_sym_BSLASHGls] = ACTIONS(6137), - [anon_sym_BSLASHGLS] = ACTIONS(6137), - [anon_sym_BSLASHglspl] = ACTIONS(6137), - [anon_sym_BSLASHGlspl] = ACTIONS(6137), - [anon_sym_BSLASHGLSpl] = ACTIONS(6137), - [anon_sym_BSLASHglsdisp] = ACTIONS(6137), - [anon_sym_BSLASHglslink] = ACTIONS(6137), - [anon_sym_BSLASHglstext] = ACTIONS(6137), - [anon_sym_BSLASHGlstext] = ACTIONS(6137), - [anon_sym_BSLASHGLStext] = ACTIONS(6137), - [anon_sym_BSLASHglsfirst] = ACTIONS(6137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6137), - [anon_sym_BSLASHglsplural] = ACTIONS(6137), - [anon_sym_BSLASHGlsplural] = ACTIONS(6137), - [anon_sym_BSLASHGLSplural] = ACTIONS(6137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHglsname] = ACTIONS(6137), - [anon_sym_BSLASHGlsname] = ACTIONS(6137), - [anon_sym_BSLASHGLSname] = ACTIONS(6137), - [anon_sym_BSLASHglssymbol] = ACTIONS(6137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6137), - [anon_sym_BSLASHglsdesc] = ACTIONS(6137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6137), - [anon_sym_BSLASHglsuseri] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6137), - [anon_sym_BSLASHglsuserii] = ACTIONS(6137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6137), - [anon_sym_BSLASHglsuserv] = ACTIONS(6137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6137), - [anon_sym_BSLASHglsuservi] = ACTIONS(6137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6137), - [anon_sym_BSLASHnewacronym] = ACTIONS(6137), - [anon_sym_BSLASHacrshort] = ACTIONS(6137), - [anon_sym_BSLASHAcrshort] = ACTIONS(6137), - [anon_sym_BSLASHACRshort] = ACTIONS(6137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6137), - [anon_sym_BSLASHacrlong] = ACTIONS(6137), - [anon_sym_BSLASHAcrlong] = ACTIONS(6137), - [anon_sym_BSLASHACRlong] = ACTIONS(6137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6137), - [anon_sym_BSLASHacrfull] = ACTIONS(6137), - [anon_sym_BSLASHAcrfull] = ACTIONS(6137), - [anon_sym_BSLASHACRfull] = ACTIONS(6137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6137), - [anon_sym_BSLASHacs] = ACTIONS(6137), - [anon_sym_BSLASHAcs] = ACTIONS(6137), - [anon_sym_BSLASHacsp] = ACTIONS(6137), - [anon_sym_BSLASHAcsp] = ACTIONS(6137), - [anon_sym_BSLASHacl] = ACTIONS(6137), - [anon_sym_BSLASHAcl] = ACTIONS(6137), - [anon_sym_BSLASHaclp] = ACTIONS(6137), - [anon_sym_BSLASHAclp] = ACTIONS(6137), - [anon_sym_BSLASHacf] = ACTIONS(6137), - [anon_sym_BSLASHAcf] = ACTIONS(6137), - [anon_sym_BSLASHacfp] = ACTIONS(6137), - [anon_sym_BSLASHAcfp] = ACTIONS(6137), - [anon_sym_BSLASHac] = ACTIONS(6137), - [anon_sym_BSLASHAc] = ACTIONS(6137), - [anon_sym_BSLASHacp] = ACTIONS(6137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6137), - [anon_sym_BSLASHcolor] = ACTIONS(6137), - [anon_sym_BSLASHcolorbox] = ACTIONS(6137), - [anon_sym_BSLASHtextcolor] = ACTIONS(6137), - [anon_sym_BSLASHpagecolor] = ACTIONS(6137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6137), - [anon_sym_BSLASHtext] = ACTIONS(6137), - [anon_sym_BSLASHintertext] = ACTIONS(6137), - [anon_sym_shortintertext] = ACTIONS(6137), - }, - [1062] = { - [sym_command_name] = ACTIONS(6157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_EQ] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_BSLASHpart] = ACTIONS(6157), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddpart] = ACTIONS(6157), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6159), - [anon_sym_BSLASHchapter] = ACTIONS(6157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddchap] = ACTIONS(6157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsection] = ACTIONS(6157), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddsec] = ACTIONS(6157), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubsection] = ACTIONS(6157), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6157), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHparagraph] = ACTIONS(6157), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6157), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6159), - [anon_sym_BSLASHitem] = ACTIONS(6157), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6159), - [anon_sym_LBRACE] = ACTIONS(6159), - [sym_word] = ACTIONS(6157), - [sym_placeholder] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6157), - [anon_sym_GT] = ACTIONS(6157), - [anon_sym_BANG] = ACTIONS(6157), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_SQUOTE] = ACTIONS(6157), - [anon_sym__] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6159), - [anon_sym_DOLLAR] = ACTIONS(6157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6159), - [anon_sym_BSLASHbegin] = ACTIONS(6157), - [anon_sym_BSLASHend] = ACTIONS(6157), - [anon_sym_BSLASHtitle] = ACTIONS(6157), - [anon_sym_BSLASHauthor] = ACTIONS(6157), - [anon_sym_BSLASHusepackage] = ACTIONS(6157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6157), - [anon_sym_BSLASHinclude] = ACTIONS(6157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6157), - [anon_sym_BSLASHinput] = ACTIONS(6157), - [anon_sym_BSLASHsubfile] = ACTIONS(6157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6157), - [anon_sym_BSLASHbibliography] = ACTIONS(6157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6157), - [anon_sym_BSLASHincludesvg] = ACTIONS(6157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6157), - [anon_sym_BSLASHimport] = ACTIONS(6157), - [anon_sym_BSLASHsubimport] = ACTIONS(6157), - [anon_sym_BSLASHinputfrom] = ACTIONS(6157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6157), - [anon_sym_BSLASHincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHcaption] = ACTIONS(6157), - [anon_sym_BSLASHcite] = ACTIONS(6157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCite] = ACTIONS(6157), - [anon_sym_BSLASHnocite] = ACTIONS(6157), - [anon_sym_BSLASHcitet] = ACTIONS(6157), - [anon_sym_BSLASHcitep] = ACTIONS(6157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteauthor] = ACTIONS(6157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitetitle] = ACTIONS(6157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteyear] = ACTIONS(6157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitedate] = ACTIONS(6157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteurl] = ACTIONS(6157), - [anon_sym_BSLASHfullcite] = ACTIONS(6157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6157), - [anon_sym_BSLASHcitealt] = ACTIONS(6157), - [anon_sym_BSLASHcitealp] = ACTIONS(6157), - [anon_sym_BSLASHcitetext] = ACTIONS(6157), - [anon_sym_BSLASHparencite] = ACTIONS(6157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHParencite] = ACTIONS(6157), - [anon_sym_BSLASHfootcite] = ACTIONS(6157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6157), - [anon_sym_BSLASHtextcite] = ACTIONS(6157), - [anon_sym_BSLASHTextcite] = ACTIONS(6157), - [anon_sym_BSLASHsmartcite] = ACTIONS(6157), - [anon_sym_BSLASHSmartcite] = ACTIONS(6157), - [anon_sym_BSLASHsupercite] = ACTIONS(6157), - [anon_sym_BSLASHautocite] = ACTIONS(6157), - [anon_sym_BSLASHAutocite] = ACTIONS(6157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHvolcite] = ACTIONS(6157), - [anon_sym_BSLASHVolcite] = ACTIONS(6157), - [anon_sym_BSLASHpvolcite] = ACTIONS(6157), - [anon_sym_BSLASHPvolcite] = ACTIONS(6157), - [anon_sym_BSLASHfvolcite] = ACTIONS(6157), - [anon_sym_BSLASHftvolcite] = ACTIONS(6157), - [anon_sym_BSLASHsvolcite] = ACTIONS(6157), - [anon_sym_BSLASHSvolcite] = ACTIONS(6157), - [anon_sym_BSLASHtvolcite] = ACTIONS(6157), - [anon_sym_BSLASHTvolcite] = ACTIONS(6157), - [anon_sym_BSLASHavolcite] = ACTIONS(6157), - [anon_sym_BSLASHAvolcite] = ACTIONS(6157), - [anon_sym_BSLASHnotecite] = ACTIONS(6157), - [anon_sym_BSLASHNotecite] = ACTIONS(6157), - [anon_sym_BSLASHpnotecite] = ACTIONS(6157), - [anon_sym_BSLASHPnotecite] = ACTIONS(6157), - [anon_sym_BSLASHfnotecite] = ACTIONS(6157), - [anon_sym_BSLASHlabel] = ACTIONS(6157), - [anon_sym_BSLASHref] = ACTIONS(6157), - [anon_sym_BSLASHeqref] = ACTIONS(6157), - [anon_sym_BSLASHvref] = ACTIONS(6157), - [anon_sym_BSLASHVref] = ACTIONS(6157), - [anon_sym_BSLASHautoref] = ACTIONS(6157), - [anon_sym_BSLASHpageref] = ACTIONS(6157), - [anon_sym_BSLASHcref] = ACTIONS(6157), - [anon_sym_BSLASHCref] = ACTIONS(6157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnameCref] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHlabelcref] = ACTIONS(6157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCrefrange] = ACTIONS(6157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnewlabel] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6159), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHdef] = ACTIONS(6157), - [anon_sym_BSLASHlet] = ACTIONS(6157), - [anon_sym_BSLASHleft] = ACTIONS(6157), - [anon_sym_BSLASHbig] = ACTIONS(6157), - [anon_sym_BSLASHBig] = ACTIONS(6157), - [anon_sym_BSLASHbigg] = ACTIONS(6157), - [anon_sym_BSLASHBigg] = ACTIONS(6157), - [anon_sym_BSLASHbigl] = ACTIONS(6157), - [anon_sym_BSLASHBigl] = ACTIONS(6157), - [anon_sym_BSLASHbiggl] = ACTIONS(6157), - [anon_sym_BSLASHBiggl] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6157), - [anon_sym_BSLASHgls] = ACTIONS(6157), - [anon_sym_BSLASHGls] = ACTIONS(6157), - [anon_sym_BSLASHGLS] = ACTIONS(6157), - [anon_sym_BSLASHglspl] = ACTIONS(6157), - [anon_sym_BSLASHGlspl] = ACTIONS(6157), - [anon_sym_BSLASHGLSpl] = ACTIONS(6157), - [anon_sym_BSLASHglsdisp] = ACTIONS(6157), - [anon_sym_BSLASHglslink] = ACTIONS(6157), - [anon_sym_BSLASHglstext] = ACTIONS(6157), - [anon_sym_BSLASHGlstext] = ACTIONS(6157), - [anon_sym_BSLASHGLStext] = ACTIONS(6157), - [anon_sym_BSLASHglsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6157), - [anon_sym_BSLASHglsplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSplural] = ACTIONS(6157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHglsname] = ACTIONS(6157), - [anon_sym_BSLASHGlsname] = ACTIONS(6157), - [anon_sym_BSLASHGLSname] = ACTIONS(6157), - [anon_sym_BSLASHglssymbol] = ACTIONS(6157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6157), - [anon_sym_BSLASHglsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6157), - [anon_sym_BSLASHglsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6157), - [anon_sym_BSLASHglsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6157), - [anon_sym_BSLASHglsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6157), - [anon_sym_BSLASHglsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6157), - [anon_sym_BSLASHnewacronym] = ACTIONS(6157), - [anon_sym_BSLASHacrshort] = ACTIONS(6157), - [anon_sym_BSLASHAcrshort] = ACTIONS(6157), - [anon_sym_BSLASHACRshort] = ACTIONS(6157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6157), - [anon_sym_BSLASHacrlong] = ACTIONS(6157), - [anon_sym_BSLASHAcrlong] = ACTIONS(6157), - [anon_sym_BSLASHACRlong] = ACTIONS(6157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6157), - [anon_sym_BSLASHacrfull] = ACTIONS(6157), - [anon_sym_BSLASHAcrfull] = ACTIONS(6157), - [anon_sym_BSLASHACRfull] = ACTIONS(6157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6157), - [anon_sym_BSLASHacs] = ACTIONS(6157), - [anon_sym_BSLASHAcs] = ACTIONS(6157), - [anon_sym_BSLASHacsp] = ACTIONS(6157), - [anon_sym_BSLASHAcsp] = ACTIONS(6157), - [anon_sym_BSLASHacl] = ACTIONS(6157), - [anon_sym_BSLASHAcl] = ACTIONS(6157), - [anon_sym_BSLASHaclp] = ACTIONS(6157), - [anon_sym_BSLASHAclp] = ACTIONS(6157), - [anon_sym_BSLASHacf] = ACTIONS(6157), - [anon_sym_BSLASHAcf] = ACTIONS(6157), - [anon_sym_BSLASHacfp] = ACTIONS(6157), - [anon_sym_BSLASHAcfp] = ACTIONS(6157), - [anon_sym_BSLASHac] = ACTIONS(6157), - [anon_sym_BSLASHAc] = ACTIONS(6157), - [anon_sym_BSLASHacp] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6157), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6157), - [anon_sym_BSLASHcolor] = ACTIONS(6157), - [anon_sym_BSLASHcolorbox] = ACTIONS(6157), - [anon_sym_BSLASHtextcolor] = ACTIONS(6157), - [anon_sym_BSLASHpagecolor] = ACTIONS(6157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6157), - [anon_sym_BSLASHtext] = ACTIONS(6157), - [anon_sym_BSLASHintertext] = ACTIONS(6157), - [anon_sym_shortintertext] = ACTIONS(6157), - }, - [1063] = { - [sym_command_name] = ACTIONS(6361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6363), - [anon_sym_RBRACK] = ACTIONS(6363), - [anon_sym_COMMA] = ACTIONS(6363), - [anon_sym_EQ] = ACTIONS(6363), - [anon_sym_LPAREN] = ACTIONS(6363), - [anon_sym_RPAREN] = ACTIONS(6363), - [anon_sym_BSLASHpart] = ACTIONS(6361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddpart] = ACTIONS(6361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6363), - [anon_sym_BSLASHchapter] = ACTIONS(6361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddchap] = ACTIONS(6361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsection] = ACTIONS(6361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddsec] = ACTIONS(6361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubsection] = ACTIONS(6361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHparagraph] = ACTIONS(6361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6363), - [anon_sym_BSLASHitem] = ACTIONS(6361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6363), - [anon_sym_LBRACE] = ACTIONS(6363), - [sym_word] = ACTIONS(6361), - [sym_placeholder] = ACTIONS(6363), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_LT] = ACTIONS(6361), - [anon_sym_GT] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6361), - [anon_sym__] = ACTIONS(6363), - [anon_sym_CARET] = ACTIONS(6363), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6363), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6363), - [anon_sym_DOLLAR] = ACTIONS(6361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6363), - [anon_sym_BSLASHbegin] = ACTIONS(6361), - [anon_sym_BSLASHtitle] = ACTIONS(6361), - [anon_sym_BSLASHauthor] = ACTIONS(6361), - [anon_sym_BSLASHusepackage] = ACTIONS(6361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6361), - [anon_sym_BSLASHinclude] = ACTIONS(6361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6361), - [anon_sym_BSLASHinput] = ACTIONS(6361), - [anon_sym_BSLASHsubfile] = ACTIONS(6361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6361), - [anon_sym_BSLASHbibliography] = ACTIONS(6361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6361), - [anon_sym_BSLASHincludesvg] = ACTIONS(6361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6361), - [anon_sym_BSLASHimport] = ACTIONS(6361), - [anon_sym_BSLASHsubimport] = ACTIONS(6361), - [anon_sym_BSLASHinputfrom] = ACTIONS(6361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6361), - [anon_sym_BSLASHincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHcaption] = ACTIONS(6361), - [anon_sym_BSLASHcite] = ACTIONS(6361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCite] = ACTIONS(6361), - [anon_sym_BSLASHnocite] = ACTIONS(6361), - [anon_sym_BSLASHcitet] = ACTIONS(6361), - [anon_sym_BSLASHcitep] = ACTIONS(6361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteauthor] = ACTIONS(6361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitetitle] = ACTIONS(6361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteyear] = ACTIONS(6361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitedate] = ACTIONS(6361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteurl] = ACTIONS(6361), - [anon_sym_BSLASHfullcite] = ACTIONS(6361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6361), - [anon_sym_BSLASHcitealt] = ACTIONS(6361), - [anon_sym_BSLASHcitealp] = ACTIONS(6361), - [anon_sym_BSLASHcitetext] = ACTIONS(6361), - [anon_sym_BSLASHparencite] = ACTIONS(6361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHParencite] = ACTIONS(6361), - [anon_sym_BSLASHfootcite] = ACTIONS(6361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6361), - [anon_sym_BSLASHtextcite] = ACTIONS(6361), - [anon_sym_BSLASHTextcite] = ACTIONS(6361), - [anon_sym_BSLASHsmartcite] = ACTIONS(6361), - [anon_sym_BSLASHSmartcite] = ACTIONS(6361), - [anon_sym_BSLASHsupercite] = ACTIONS(6361), - [anon_sym_BSLASHautocite] = ACTIONS(6361), - [anon_sym_BSLASHAutocite] = ACTIONS(6361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHvolcite] = ACTIONS(6361), - [anon_sym_BSLASHVolcite] = ACTIONS(6361), - [anon_sym_BSLASHpvolcite] = ACTIONS(6361), - [anon_sym_BSLASHPvolcite] = ACTIONS(6361), - [anon_sym_BSLASHfvolcite] = ACTIONS(6361), - [anon_sym_BSLASHftvolcite] = ACTIONS(6361), - [anon_sym_BSLASHsvolcite] = ACTIONS(6361), - [anon_sym_BSLASHSvolcite] = ACTIONS(6361), - [anon_sym_BSLASHtvolcite] = ACTIONS(6361), - [anon_sym_BSLASHTvolcite] = ACTIONS(6361), - [anon_sym_BSLASHavolcite] = ACTIONS(6361), - [anon_sym_BSLASHAvolcite] = ACTIONS(6361), - [anon_sym_BSLASHnotecite] = ACTIONS(6361), - [anon_sym_BSLASHNotecite] = ACTIONS(6361), - [anon_sym_BSLASHpnotecite] = ACTIONS(6361), - [anon_sym_BSLASHPnotecite] = ACTIONS(6361), - [anon_sym_BSLASHfnotecite] = ACTIONS(6361), - [anon_sym_BSLASHlabel] = ACTIONS(6361), - [anon_sym_BSLASHref] = ACTIONS(6361), - [anon_sym_BSLASHeqref] = ACTIONS(6361), - [anon_sym_BSLASHvref] = ACTIONS(6361), - [anon_sym_BSLASHVref] = ACTIONS(6361), - [anon_sym_BSLASHautoref] = ACTIONS(6361), - [anon_sym_BSLASHpageref] = ACTIONS(6361), - [anon_sym_BSLASHcref] = ACTIONS(6361), - [anon_sym_BSLASHCref] = ACTIONS(6361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnameCref] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHlabelcref] = ACTIONS(6361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCrefrange] = ACTIONS(6361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnewlabel] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6363), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHdef] = ACTIONS(6361), - [anon_sym_BSLASHlet] = ACTIONS(6361), - [anon_sym_BSLASHleft] = ACTIONS(6361), - [anon_sym_BSLASHbig] = ACTIONS(6361), - [anon_sym_BSLASHBig] = ACTIONS(6361), - [anon_sym_BSLASHbigg] = ACTIONS(6361), - [anon_sym_BSLASHBigg] = ACTIONS(6361), - [anon_sym_BSLASHbigl] = ACTIONS(6361), - [anon_sym_BSLASHBigl] = ACTIONS(6361), - [anon_sym_BSLASHbiggl] = ACTIONS(6361), - [anon_sym_BSLASHBiggl] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6361), - [anon_sym_BSLASHgls] = ACTIONS(6361), - [anon_sym_BSLASHGls] = ACTIONS(6361), - [anon_sym_BSLASHGLS] = ACTIONS(6361), - [anon_sym_BSLASHglspl] = ACTIONS(6361), - [anon_sym_BSLASHGlspl] = ACTIONS(6361), - [anon_sym_BSLASHGLSpl] = ACTIONS(6361), - [anon_sym_BSLASHglsdisp] = ACTIONS(6361), - [anon_sym_BSLASHglslink] = ACTIONS(6361), - [anon_sym_BSLASHglstext] = ACTIONS(6361), - [anon_sym_BSLASHGlstext] = ACTIONS(6361), - [anon_sym_BSLASHGLStext] = ACTIONS(6361), - [anon_sym_BSLASHglsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6361), - [anon_sym_BSLASHglsplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSplural] = ACTIONS(6361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHglsname] = ACTIONS(6361), - [anon_sym_BSLASHGlsname] = ACTIONS(6361), - [anon_sym_BSLASHGLSname] = ACTIONS(6361), - [anon_sym_BSLASHglssymbol] = ACTIONS(6361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6361), - [anon_sym_BSLASHglsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6361), - [anon_sym_BSLASHglsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6361), - [anon_sym_BSLASHglsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6361), - [anon_sym_BSLASHglsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6361), - [anon_sym_BSLASHglsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6361), - [anon_sym_BSLASHnewacronym] = ACTIONS(6361), - [anon_sym_BSLASHacrshort] = ACTIONS(6361), - [anon_sym_BSLASHAcrshort] = ACTIONS(6361), - [anon_sym_BSLASHACRshort] = ACTIONS(6361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6361), - [anon_sym_BSLASHacrlong] = ACTIONS(6361), - [anon_sym_BSLASHAcrlong] = ACTIONS(6361), - [anon_sym_BSLASHACRlong] = ACTIONS(6361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6361), - [anon_sym_BSLASHacrfull] = ACTIONS(6361), - [anon_sym_BSLASHAcrfull] = ACTIONS(6361), - [anon_sym_BSLASHACRfull] = ACTIONS(6361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6361), - [anon_sym_BSLASHacs] = ACTIONS(6361), - [anon_sym_BSLASHAcs] = ACTIONS(6361), - [anon_sym_BSLASHacsp] = ACTIONS(6361), - [anon_sym_BSLASHAcsp] = ACTIONS(6361), - [anon_sym_BSLASHacl] = ACTIONS(6361), - [anon_sym_BSLASHAcl] = ACTIONS(6361), - [anon_sym_BSLASHaclp] = ACTIONS(6361), - [anon_sym_BSLASHAclp] = ACTIONS(6361), - [anon_sym_BSLASHacf] = ACTIONS(6361), - [anon_sym_BSLASHAcf] = ACTIONS(6361), - [anon_sym_BSLASHacfp] = ACTIONS(6361), - [anon_sym_BSLASHAcfp] = ACTIONS(6361), - [anon_sym_BSLASHac] = ACTIONS(6361), - [anon_sym_BSLASHAc] = ACTIONS(6361), - [anon_sym_BSLASHacp] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6361), - [anon_sym_BSLASHcolor] = ACTIONS(6361), - [anon_sym_BSLASHcolorbox] = ACTIONS(6361), - [anon_sym_BSLASHtextcolor] = ACTIONS(6361), - [anon_sym_BSLASHpagecolor] = ACTIONS(6361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6361), - [anon_sym_BSLASHtext] = ACTIONS(6361), - [anon_sym_BSLASHintertext] = ACTIONS(6361), - [anon_sym_shortintertext] = ACTIONS(6361), - }, - [1064] = { - [sym_command_name] = ACTIONS(6233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_RBRACK] = ACTIONS(6235), - [anon_sym_COMMA] = ACTIONS(6235), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_LPAREN] = ACTIONS(6235), - [anon_sym_RPAREN] = ACTIONS(6235), - [anon_sym_BSLASHpart] = ACTIONS(6233), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddpart] = ACTIONS(6233), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6235), - [anon_sym_BSLASHchapter] = ACTIONS(6233), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddchap] = ACTIONS(6233), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsection] = ACTIONS(6233), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddsec] = ACTIONS(6233), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubsection] = ACTIONS(6233), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6233), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHparagraph] = ACTIONS(6233), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6233), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6235), - [anon_sym_BSLASHitem] = ACTIONS(6233), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6235), - [anon_sym_LBRACE] = ACTIONS(6235), - [sym_word] = ACTIONS(6233), - [sym_placeholder] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6233), - [anon_sym_BANG] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(6233), - [anon_sym_SQUOTE] = ACTIONS(6233), - [anon_sym__] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6235), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6235), - [anon_sym_DOLLAR] = ACTIONS(6233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6235), - [anon_sym_BSLASHbegin] = ACTIONS(6233), - [anon_sym_BSLASHtitle] = ACTIONS(6233), - [anon_sym_BSLASHauthor] = ACTIONS(6233), - [anon_sym_BSLASHusepackage] = ACTIONS(6233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6233), - [anon_sym_BSLASHinclude] = ACTIONS(6233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6233), - [anon_sym_BSLASHinput] = ACTIONS(6233), - [anon_sym_BSLASHsubfile] = ACTIONS(6233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6233), - [anon_sym_BSLASHbibliography] = ACTIONS(6233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6233), - [anon_sym_BSLASHincludesvg] = ACTIONS(6233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6233), - [anon_sym_BSLASHimport] = ACTIONS(6233), - [anon_sym_BSLASHsubimport] = ACTIONS(6233), - [anon_sym_BSLASHinputfrom] = ACTIONS(6233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6233), - [anon_sym_BSLASHincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHcaption] = ACTIONS(6233), - [anon_sym_BSLASHcite] = ACTIONS(6233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCite] = ACTIONS(6233), - [anon_sym_BSLASHnocite] = ACTIONS(6233), - [anon_sym_BSLASHcitet] = ACTIONS(6233), - [anon_sym_BSLASHcitep] = ACTIONS(6233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteauthor] = ACTIONS(6233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitetitle] = ACTIONS(6233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteyear] = ACTIONS(6233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitedate] = ACTIONS(6233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteurl] = ACTIONS(6233), - [anon_sym_BSLASHfullcite] = ACTIONS(6233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6233), - [anon_sym_BSLASHcitealt] = ACTIONS(6233), - [anon_sym_BSLASHcitealp] = ACTIONS(6233), - [anon_sym_BSLASHcitetext] = ACTIONS(6233), - [anon_sym_BSLASHparencite] = ACTIONS(6233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHParencite] = ACTIONS(6233), - [anon_sym_BSLASHfootcite] = ACTIONS(6233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6233), - [anon_sym_BSLASHtextcite] = ACTIONS(6233), - [anon_sym_BSLASHTextcite] = ACTIONS(6233), - [anon_sym_BSLASHsmartcite] = ACTIONS(6233), - [anon_sym_BSLASHSmartcite] = ACTIONS(6233), - [anon_sym_BSLASHsupercite] = ACTIONS(6233), - [anon_sym_BSLASHautocite] = ACTIONS(6233), - [anon_sym_BSLASHAutocite] = ACTIONS(6233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHvolcite] = ACTIONS(6233), - [anon_sym_BSLASHVolcite] = ACTIONS(6233), - [anon_sym_BSLASHpvolcite] = ACTIONS(6233), - [anon_sym_BSLASHPvolcite] = ACTIONS(6233), - [anon_sym_BSLASHfvolcite] = ACTIONS(6233), - [anon_sym_BSLASHftvolcite] = ACTIONS(6233), - [anon_sym_BSLASHsvolcite] = ACTIONS(6233), - [anon_sym_BSLASHSvolcite] = ACTIONS(6233), - [anon_sym_BSLASHtvolcite] = ACTIONS(6233), - [anon_sym_BSLASHTvolcite] = ACTIONS(6233), - [anon_sym_BSLASHavolcite] = ACTIONS(6233), - [anon_sym_BSLASHAvolcite] = ACTIONS(6233), - [anon_sym_BSLASHnotecite] = ACTIONS(6233), - [anon_sym_BSLASHNotecite] = ACTIONS(6233), - [anon_sym_BSLASHpnotecite] = ACTIONS(6233), - [anon_sym_BSLASHPnotecite] = ACTIONS(6233), - [anon_sym_BSLASHfnotecite] = ACTIONS(6233), - [anon_sym_BSLASHlabel] = ACTIONS(6233), - [anon_sym_BSLASHref] = ACTIONS(6233), - [anon_sym_BSLASHeqref] = ACTIONS(6233), - [anon_sym_BSLASHvref] = ACTIONS(6233), - [anon_sym_BSLASHVref] = ACTIONS(6233), - [anon_sym_BSLASHautoref] = ACTIONS(6233), - [anon_sym_BSLASHpageref] = ACTIONS(6233), - [anon_sym_BSLASHcref] = ACTIONS(6233), - [anon_sym_BSLASHCref] = ACTIONS(6233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnameCref] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHlabelcref] = ACTIONS(6233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCrefrange] = ACTIONS(6233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnewlabel] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6235), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHdef] = ACTIONS(6233), - [anon_sym_BSLASHlet] = ACTIONS(6233), - [anon_sym_BSLASHleft] = ACTIONS(6233), - [anon_sym_BSLASHbig] = ACTIONS(6233), - [anon_sym_BSLASHBig] = ACTIONS(6233), - [anon_sym_BSLASHbigg] = ACTIONS(6233), - [anon_sym_BSLASHBigg] = ACTIONS(6233), - [anon_sym_BSLASHbigl] = ACTIONS(6233), - [anon_sym_BSLASHBigl] = ACTIONS(6233), - [anon_sym_BSLASHbiggl] = ACTIONS(6233), - [anon_sym_BSLASHBiggl] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6233), - [anon_sym_BSLASHgls] = ACTIONS(6233), - [anon_sym_BSLASHGls] = ACTIONS(6233), - [anon_sym_BSLASHGLS] = ACTIONS(6233), - [anon_sym_BSLASHglspl] = ACTIONS(6233), - [anon_sym_BSLASHGlspl] = ACTIONS(6233), - [anon_sym_BSLASHGLSpl] = ACTIONS(6233), - [anon_sym_BSLASHglsdisp] = ACTIONS(6233), - [anon_sym_BSLASHglslink] = ACTIONS(6233), - [anon_sym_BSLASHglstext] = ACTIONS(6233), - [anon_sym_BSLASHGlstext] = ACTIONS(6233), - [anon_sym_BSLASHGLStext] = ACTIONS(6233), - [anon_sym_BSLASHglsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6233), - [anon_sym_BSLASHglsplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSplural] = ACTIONS(6233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHglsname] = ACTIONS(6233), - [anon_sym_BSLASHGlsname] = ACTIONS(6233), - [anon_sym_BSLASHGLSname] = ACTIONS(6233), - [anon_sym_BSLASHglssymbol] = ACTIONS(6233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6233), - [anon_sym_BSLASHglsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6233), - [anon_sym_BSLASHglsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6233), - [anon_sym_BSLASHglsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6233), - [anon_sym_BSLASHglsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6233), - [anon_sym_BSLASHglsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6233), - [anon_sym_BSLASHnewacronym] = ACTIONS(6233), - [anon_sym_BSLASHacrshort] = ACTIONS(6233), - [anon_sym_BSLASHAcrshort] = ACTIONS(6233), - [anon_sym_BSLASHACRshort] = ACTIONS(6233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6233), - [anon_sym_BSLASHacrlong] = ACTIONS(6233), - [anon_sym_BSLASHAcrlong] = ACTIONS(6233), - [anon_sym_BSLASHACRlong] = ACTIONS(6233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6233), - [anon_sym_BSLASHacrfull] = ACTIONS(6233), - [anon_sym_BSLASHAcrfull] = ACTIONS(6233), - [anon_sym_BSLASHACRfull] = ACTIONS(6233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6233), - [anon_sym_BSLASHacs] = ACTIONS(6233), - [anon_sym_BSLASHAcs] = ACTIONS(6233), - [anon_sym_BSLASHacsp] = ACTIONS(6233), - [anon_sym_BSLASHAcsp] = ACTIONS(6233), - [anon_sym_BSLASHacl] = ACTIONS(6233), - [anon_sym_BSLASHAcl] = ACTIONS(6233), - [anon_sym_BSLASHaclp] = ACTIONS(6233), - [anon_sym_BSLASHAclp] = ACTIONS(6233), - [anon_sym_BSLASHacf] = ACTIONS(6233), - [anon_sym_BSLASHAcf] = ACTIONS(6233), - [anon_sym_BSLASHacfp] = ACTIONS(6233), - [anon_sym_BSLASHAcfp] = ACTIONS(6233), - [anon_sym_BSLASHac] = ACTIONS(6233), - [anon_sym_BSLASHAc] = ACTIONS(6233), - [anon_sym_BSLASHacp] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6233), - [anon_sym_BSLASHcolor] = ACTIONS(6233), - [anon_sym_BSLASHcolorbox] = ACTIONS(6233), - [anon_sym_BSLASHtextcolor] = ACTIONS(6233), - [anon_sym_BSLASHpagecolor] = ACTIONS(6233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6233), - [anon_sym_BSLASHtext] = ACTIONS(6233), - [anon_sym_BSLASHintertext] = ACTIONS(6233), - [anon_sym_shortintertext] = ACTIONS(6233), - }, - [1065] = { - [sym_command_name] = ACTIONS(6357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(6359), - [anon_sym_RBRACK] = ACTIONS(6359), - [anon_sym_COMMA] = ACTIONS(6359), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LPAREN] = ACTIONS(6359), - [anon_sym_RPAREN] = ACTIONS(6359), - [anon_sym_BSLASHpart] = ACTIONS(6357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddpart] = ACTIONS(6357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6359), - [anon_sym_BSLASHchapter] = ACTIONS(6357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddchap] = ACTIONS(6357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsection] = ACTIONS(6357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddsec] = ACTIONS(6357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubsection] = ACTIONS(6357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHparagraph] = ACTIONS(6357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6359), - [anon_sym_BSLASHitem] = ACTIONS(6357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6359), - [sym_word] = ACTIONS(6357), - [sym_placeholder] = ACTIONS(6359), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6359), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_LT] = ACTIONS(6357), - [anon_sym_GT] = ACTIONS(6357), - [anon_sym_BANG] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_SQUOTE] = ACTIONS(6357), - [anon_sym__] = ACTIONS(6359), - [anon_sym_CARET] = ACTIONS(6359), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6359), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6359), - [anon_sym_DOLLAR] = ACTIONS(6357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6359), - [anon_sym_BSLASHbegin] = ACTIONS(6357), - [anon_sym_BSLASHtitle] = ACTIONS(6357), - [anon_sym_BSLASHauthor] = ACTIONS(6357), - [anon_sym_BSLASHusepackage] = ACTIONS(6357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6357), - [anon_sym_BSLASHinclude] = ACTIONS(6357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6357), - [anon_sym_BSLASHinput] = ACTIONS(6357), - [anon_sym_BSLASHsubfile] = ACTIONS(6357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6357), - [anon_sym_BSLASHbibliography] = ACTIONS(6357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6357), - [anon_sym_BSLASHincludesvg] = ACTIONS(6357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6357), - [anon_sym_BSLASHimport] = ACTIONS(6357), - [anon_sym_BSLASHsubimport] = ACTIONS(6357), - [anon_sym_BSLASHinputfrom] = ACTIONS(6357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6357), - [anon_sym_BSLASHincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHcaption] = ACTIONS(6357), - [anon_sym_BSLASHcite] = ACTIONS(6357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCite] = ACTIONS(6357), - [anon_sym_BSLASHnocite] = ACTIONS(6357), - [anon_sym_BSLASHcitet] = ACTIONS(6357), - [anon_sym_BSLASHcitep] = ACTIONS(6357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteauthor] = ACTIONS(6357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitetitle] = ACTIONS(6357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteyear] = ACTIONS(6357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitedate] = ACTIONS(6357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteurl] = ACTIONS(6357), - [anon_sym_BSLASHfullcite] = ACTIONS(6357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6357), - [anon_sym_BSLASHcitealt] = ACTIONS(6357), - [anon_sym_BSLASHcitealp] = ACTIONS(6357), - [anon_sym_BSLASHcitetext] = ACTIONS(6357), - [anon_sym_BSLASHparencite] = ACTIONS(6357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHParencite] = ACTIONS(6357), - [anon_sym_BSLASHfootcite] = ACTIONS(6357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6357), - [anon_sym_BSLASHtextcite] = ACTIONS(6357), - [anon_sym_BSLASHTextcite] = ACTIONS(6357), - [anon_sym_BSLASHsmartcite] = ACTIONS(6357), - [anon_sym_BSLASHSmartcite] = ACTIONS(6357), - [anon_sym_BSLASHsupercite] = ACTIONS(6357), - [anon_sym_BSLASHautocite] = ACTIONS(6357), - [anon_sym_BSLASHAutocite] = ACTIONS(6357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHvolcite] = ACTIONS(6357), - [anon_sym_BSLASHVolcite] = ACTIONS(6357), - [anon_sym_BSLASHpvolcite] = ACTIONS(6357), - [anon_sym_BSLASHPvolcite] = ACTIONS(6357), - [anon_sym_BSLASHfvolcite] = ACTIONS(6357), - [anon_sym_BSLASHftvolcite] = ACTIONS(6357), - [anon_sym_BSLASHsvolcite] = ACTIONS(6357), - [anon_sym_BSLASHSvolcite] = ACTIONS(6357), - [anon_sym_BSLASHtvolcite] = ACTIONS(6357), - [anon_sym_BSLASHTvolcite] = ACTIONS(6357), - [anon_sym_BSLASHavolcite] = ACTIONS(6357), - [anon_sym_BSLASHAvolcite] = ACTIONS(6357), - [anon_sym_BSLASHnotecite] = ACTIONS(6357), - [anon_sym_BSLASHNotecite] = ACTIONS(6357), - [anon_sym_BSLASHpnotecite] = ACTIONS(6357), - [anon_sym_BSLASHPnotecite] = ACTIONS(6357), - [anon_sym_BSLASHfnotecite] = ACTIONS(6357), - [anon_sym_BSLASHlabel] = ACTIONS(6357), - [anon_sym_BSLASHref] = ACTIONS(6357), - [anon_sym_BSLASHeqref] = ACTIONS(6357), - [anon_sym_BSLASHvref] = ACTIONS(6357), - [anon_sym_BSLASHVref] = ACTIONS(6357), - [anon_sym_BSLASHautoref] = ACTIONS(6357), - [anon_sym_BSLASHpageref] = ACTIONS(6357), - [anon_sym_BSLASHcref] = ACTIONS(6357), - [anon_sym_BSLASHCref] = ACTIONS(6357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnameCref] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHlabelcref] = ACTIONS(6357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCrefrange] = ACTIONS(6357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnewlabel] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6359), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHdef] = ACTIONS(6357), - [anon_sym_BSLASHlet] = ACTIONS(6357), - [anon_sym_BSLASHleft] = ACTIONS(6357), - [anon_sym_BSLASHbig] = ACTIONS(6357), - [anon_sym_BSLASHBig] = ACTIONS(6357), - [anon_sym_BSLASHbigg] = ACTIONS(6357), - [anon_sym_BSLASHBigg] = ACTIONS(6357), - [anon_sym_BSLASHbigl] = ACTIONS(6357), - [anon_sym_BSLASHBigl] = ACTIONS(6357), - [anon_sym_BSLASHbiggl] = ACTIONS(6357), - [anon_sym_BSLASHBiggl] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6357), - [anon_sym_BSLASHgls] = ACTIONS(6357), - [anon_sym_BSLASHGls] = ACTIONS(6357), - [anon_sym_BSLASHGLS] = ACTIONS(6357), - [anon_sym_BSLASHglspl] = ACTIONS(6357), - [anon_sym_BSLASHGlspl] = ACTIONS(6357), - [anon_sym_BSLASHGLSpl] = ACTIONS(6357), - [anon_sym_BSLASHglsdisp] = ACTIONS(6357), - [anon_sym_BSLASHglslink] = ACTIONS(6357), - [anon_sym_BSLASHglstext] = ACTIONS(6357), - [anon_sym_BSLASHGlstext] = ACTIONS(6357), - [anon_sym_BSLASHGLStext] = ACTIONS(6357), - [anon_sym_BSLASHglsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6357), - [anon_sym_BSLASHglsplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSplural] = ACTIONS(6357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHglsname] = ACTIONS(6357), - [anon_sym_BSLASHGlsname] = ACTIONS(6357), - [anon_sym_BSLASHGLSname] = ACTIONS(6357), - [anon_sym_BSLASHglssymbol] = ACTIONS(6357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6357), - [anon_sym_BSLASHglsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6357), - [anon_sym_BSLASHglsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6357), - [anon_sym_BSLASHglsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6357), - [anon_sym_BSLASHglsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6357), - [anon_sym_BSLASHglsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6357), - [anon_sym_BSLASHnewacronym] = ACTIONS(6357), - [anon_sym_BSLASHacrshort] = ACTIONS(6357), - [anon_sym_BSLASHAcrshort] = ACTIONS(6357), - [anon_sym_BSLASHACRshort] = ACTIONS(6357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6357), - [anon_sym_BSLASHacrlong] = ACTIONS(6357), - [anon_sym_BSLASHAcrlong] = ACTIONS(6357), - [anon_sym_BSLASHACRlong] = ACTIONS(6357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6357), - [anon_sym_BSLASHacrfull] = ACTIONS(6357), - [anon_sym_BSLASHAcrfull] = ACTIONS(6357), - [anon_sym_BSLASHACRfull] = ACTIONS(6357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6357), - [anon_sym_BSLASHacs] = ACTIONS(6357), - [anon_sym_BSLASHAcs] = ACTIONS(6357), - [anon_sym_BSLASHacsp] = ACTIONS(6357), - [anon_sym_BSLASHAcsp] = ACTIONS(6357), - [anon_sym_BSLASHacl] = ACTIONS(6357), - [anon_sym_BSLASHAcl] = ACTIONS(6357), - [anon_sym_BSLASHaclp] = ACTIONS(6357), - [anon_sym_BSLASHAclp] = ACTIONS(6357), - [anon_sym_BSLASHacf] = ACTIONS(6357), - [anon_sym_BSLASHAcf] = ACTIONS(6357), - [anon_sym_BSLASHacfp] = ACTIONS(6357), - [anon_sym_BSLASHAcfp] = ACTIONS(6357), - [anon_sym_BSLASHac] = ACTIONS(6357), - [anon_sym_BSLASHAc] = ACTIONS(6357), - [anon_sym_BSLASHacp] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6357), - [anon_sym_BSLASHcolor] = ACTIONS(6357), - [anon_sym_BSLASHcolorbox] = ACTIONS(6357), - [anon_sym_BSLASHtextcolor] = ACTIONS(6357), - [anon_sym_BSLASHpagecolor] = ACTIONS(6357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6357), - [anon_sym_BSLASHtext] = ACTIONS(6357), - [anon_sym_BSLASHintertext] = ACTIONS(6357), - [anon_sym_shortintertext] = ACTIONS(6357), - }, - [1066] = { - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(195), - [anon_sym_BSLASHpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddpart] = ACTIONS(195), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(195), - [anon_sym_BSLASHsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddsec] = ACTIONS(195), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHparagraph] = ACTIONS(195), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubparagraph] = ACTIONS(195), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHitem] = ACTIONS(195), - [anon_sym_BSLASHitem_STAR] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHend] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [1067] = { - [sym_command_name] = ACTIONS(6369), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6371), - [anon_sym_RBRACK] = ACTIONS(6371), - [anon_sym_COMMA] = ACTIONS(6371), - [anon_sym_EQ] = ACTIONS(6371), - [anon_sym_LPAREN] = ACTIONS(6371), - [anon_sym_RPAREN] = ACTIONS(6371), - [anon_sym_BSLASHpart] = ACTIONS(6369), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddpart] = ACTIONS(6369), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6371), - [anon_sym_BSLASHchapter] = ACTIONS(6369), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddchap] = ACTIONS(6369), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsection] = ACTIONS(6369), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddsec] = ACTIONS(6369), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubsection] = ACTIONS(6369), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6369), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHparagraph] = ACTIONS(6369), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6369), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6371), - [anon_sym_BSLASHitem] = ACTIONS(6369), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6371), - [anon_sym_LBRACE] = ACTIONS(6371), - [sym_word] = ACTIONS(6369), - [sym_placeholder] = ACTIONS(6371), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6371), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_LT] = ACTIONS(6369), - [anon_sym_GT] = ACTIONS(6369), - [anon_sym_BANG] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_SQUOTE] = ACTIONS(6369), - [anon_sym__] = ACTIONS(6371), - [anon_sym_CARET] = ACTIONS(6371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6371), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6371), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6371), - [anon_sym_DOLLAR] = ACTIONS(6369), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6371), - [anon_sym_BSLASHbegin] = ACTIONS(6369), - [anon_sym_BSLASHtitle] = ACTIONS(6369), - [anon_sym_BSLASHauthor] = ACTIONS(6369), - [anon_sym_BSLASHusepackage] = ACTIONS(6369), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6369), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6369), - [anon_sym_BSLASHinclude] = ACTIONS(6369), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6369), - [anon_sym_BSLASHinput] = ACTIONS(6369), - [anon_sym_BSLASHsubfile] = ACTIONS(6369), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6369), - [anon_sym_BSLASHbibliography] = ACTIONS(6369), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6369), - [anon_sym_BSLASHincludesvg] = ACTIONS(6369), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6369), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6369), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6369), - [anon_sym_BSLASHimport] = ACTIONS(6369), - [anon_sym_BSLASHsubimport] = ACTIONS(6369), - [anon_sym_BSLASHinputfrom] = ACTIONS(6369), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6369), - [anon_sym_BSLASHincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHcaption] = ACTIONS(6369), - [anon_sym_BSLASHcite] = ACTIONS(6369), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCite] = ACTIONS(6369), - [anon_sym_BSLASHnocite] = ACTIONS(6369), - [anon_sym_BSLASHcitet] = ACTIONS(6369), - [anon_sym_BSLASHcitep] = ACTIONS(6369), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteauthor] = ACTIONS(6369), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6369), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitetitle] = ACTIONS(6369), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteyear] = ACTIONS(6369), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitedate] = ACTIONS(6369), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteurl] = ACTIONS(6369), - [anon_sym_BSLASHfullcite] = ACTIONS(6369), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6369), - [anon_sym_BSLASHcitealt] = ACTIONS(6369), - [anon_sym_BSLASHcitealp] = ACTIONS(6369), - [anon_sym_BSLASHcitetext] = ACTIONS(6369), - [anon_sym_BSLASHparencite] = ACTIONS(6369), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHParencite] = ACTIONS(6369), - [anon_sym_BSLASHfootcite] = ACTIONS(6369), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6369), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6369), - [anon_sym_BSLASHtextcite] = ACTIONS(6369), - [anon_sym_BSLASHTextcite] = ACTIONS(6369), - [anon_sym_BSLASHsmartcite] = ACTIONS(6369), - [anon_sym_BSLASHSmartcite] = ACTIONS(6369), - [anon_sym_BSLASHsupercite] = ACTIONS(6369), - [anon_sym_BSLASHautocite] = ACTIONS(6369), - [anon_sym_BSLASHAutocite] = ACTIONS(6369), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHvolcite] = ACTIONS(6369), - [anon_sym_BSLASHVolcite] = ACTIONS(6369), - [anon_sym_BSLASHpvolcite] = ACTIONS(6369), - [anon_sym_BSLASHPvolcite] = ACTIONS(6369), - [anon_sym_BSLASHfvolcite] = ACTIONS(6369), - [anon_sym_BSLASHftvolcite] = ACTIONS(6369), - [anon_sym_BSLASHsvolcite] = ACTIONS(6369), - [anon_sym_BSLASHSvolcite] = ACTIONS(6369), - [anon_sym_BSLASHtvolcite] = ACTIONS(6369), - [anon_sym_BSLASHTvolcite] = ACTIONS(6369), - [anon_sym_BSLASHavolcite] = ACTIONS(6369), - [anon_sym_BSLASHAvolcite] = ACTIONS(6369), - [anon_sym_BSLASHnotecite] = ACTIONS(6369), - [anon_sym_BSLASHNotecite] = ACTIONS(6369), - [anon_sym_BSLASHpnotecite] = ACTIONS(6369), - [anon_sym_BSLASHPnotecite] = ACTIONS(6369), - [anon_sym_BSLASHfnotecite] = ACTIONS(6369), - [anon_sym_BSLASHlabel] = ACTIONS(6369), - [anon_sym_BSLASHref] = ACTIONS(6369), - [anon_sym_BSLASHeqref] = ACTIONS(6369), - [anon_sym_BSLASHvref] = ACTIONS(6369), - [anon_sym_BSLASHVref] = ACTIONS(6369), - [anon_sym_BSLASHautoref] = ACTIONS(6369), - [anon_sym_BSLASHpageref] = ACTIONS(6369), - [anon_sym_BSLASHcref] = ACTIONS(6369), - [anon_sym_BSLASHCref] = ACTIONS(6369), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnameCref] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHlabelcref] = ACTIONS(6369), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCrefrange] = ACTIONS(6369), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnewlabel] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6369), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6369), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6371), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHdef] = ACTIONS(6369), - [anon_sym_BSLASHlet] = ACTIONS(6369), - [anon_sym_BSLASHleft] = ACTIONS(6369), - [anon_sym_BSLASHbig] = ACTIONS(6369), - [anon_sym_BSLASHBig] = ACTIONS(6369), - [anon_sym_BSLASHbigg] = ACTIONS(6369), - [anon_sym_BSLASHBigg] = ACTIONS(6369), - [anon_sym_BSLASHbigl] = ACTIONS(6369), - [anon_sym_BSLASHBigl] = ACTIONS(6369), - [anon_sym_BSLASHbiggl] = ACTIONS(6369), - [anon_sym_BSLASHBiggl] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6369), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6369), - [anon_sym_BSLASHgls] = ACTIONS(6369), - [anon_sym_BSLASHGls] = ACTIONS(6369), - [anon_sym_BSLASHGLS] = ACTIONS(6369), - [anon_sym_BSLASHglspl] = ACTIONS(6369), - [anon_sym_BSLASHGlspl] = ACTIONS(6369), - [anon_sym_BSLASHGLSpl] = ACTIONS(6369), - [anon_sym_BSLASHglsdisp] = ACTIONS(6369), - [anon_sym_BSLASHglslink] = ACTIONS(6369), - [anon_sym_BSLASHglstext] = ACTIONS(6369), - [anon_sym_BSLASHGlstext] = ACTIONS(6369), - [anon_sym_BSLASHGLStext] = ACTIONS(6369), - [anon_sym_BSLASHglsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6369), - [anon_sym_BSLASHglsplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSplural] = ACTIONS(6369), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHglsname] = ACTIONS(6369), - [anon_sym_BSLASHGlsname] = ACTIONS(6369), - [anon_sym_BSLASHGLSname] = ACTIONS(6369), - [anon_sym_BSLASHglssymbol] = ACTIONS(6369), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6369), - [anon_sym_BSLASHglsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6369), - [anon_sym_BSLASHglsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6369), - [anon_sym_BSLASHglsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6369), - [anon_sym_BSLASHglsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6369), - [anon_sym_BSLASHglsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6369), - [anon_sym_BSLASHnewacronym] = ACTIONS(6369), - [anon_sym_BSLASHacrshort] = ACTIONS(6369), - [anon_sym_BSLASHAcrshort] = ACTIONS(6369), - [anon_sym_BSLASHACRshort] = ACTIONS(6369), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6369), - [anon_sym_BSLASHacrlong] = ACTIONS(6369), - [anon_sym_BSLASHAcrlong] = ACTIONS(6369), - [anon_sym_BSLASHACRlong] = ACTIONS(6369), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6369), - [anon_sym_BSLASHacrfull] = ACTIONS(6369), - [anon_sym_BSLASHAcrfull] = ACTIONS(6369), - [anon_sym_BSLASHACRfull] = ACTIONS(6369), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6369), - [anon_sym_BSLASHacs] = ACTIONS(6369), - [anon_sym_BSLASHAcs] = ACTIONS(6369), - [anon_sym_BSLASHacsp] = ACTIONS(6369), - [anon_sym_BSLASHAcsp] = ACTIONS(6369), - [anon_sym_BSLASHacl] = ACTIONS(6369), - [anon_sym_BSLASHAcl] = ACTIONS(6369), - [anon_sym_BSLASHaclp] = ACTIONS(6369), - [anon_sym_BSLASHAclp] = ACTIONS(6369), - [anon_sym_BSLASHacf] = ACTIONS(6369), - [anon_sym_BSLASHAcf] = ACTIONS(6369), - [anon_sym_BSLASHacfp] = ACTIONS(6369), - [anon_sym_BSLASHAcfp] = ACTIONS(6369), - [anon_sym_BSLASHac] = ACTIONS(6369), - [anon_sym_BSLASHAc] = ACTIONS(6369), - [anon_sym_BSLASHacp] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6369), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6369), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6369), - [anon_sym_BSLASHcolor] = ACTIONS(6369), - [anon_sym_BSLASHcolorbox] = ACTIONS(6369), - [anon_sym_BSLASHtextcolor] = ACTIONS(6369), - [anon_sym_BSLASHpagecolor] = ACTIONS(6369), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6369), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6369), - [anon_sym_BSLASHtext] = ACTIONS(6369), - [anon_sym_BSLASHintertext] = ACTIONS(6369), - [anon_sym_shortintertext] = ACTIONS(6369), - }, - [1068] = { - [sym_command_name] = ACTIONS(6337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6337), - [anon_sym_LBRACK] = ACTIONS(6339), - [anon_sym_RBRACK] = ACTIONS(6339), - [anon_sym_COMMA] = ACTIONS(6339), - [anon_sym_EQ] = ACTIONS(6339), - [anon_sym_LPAREN] = ACTIONS(6339), - [anon_sym_RPAREN] = ACTIONS(6339), - [anon_sym_BSLASHpart] = ACTIONS(6337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddpart] = ACTIONS(6337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6339), - [anon_sym_BSLASHchapter] = ACTIONS(6337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddchap] = ACTIONS(6337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsection] = ACTIONS(6337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddsec] = ACTIONS(6337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubsection] = ACTIONS(6337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHparagraph] = ACTIONS(6337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6339), - [anon_sym_BSLASHitem] = ACTIONS(6337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6339), - [anon_sym_LBRACE] = ACTIONS(6339), - [sym_word] = ACTIONS(6337), - [sym_placeholder] = ACTIONS(6339), - [anon_sym_PLUS] = ACTIONS(6339), - [anon_sym_DASH] = ACTIONS(6339), - [anon_sym_STAR] = ACTIONS(6339), - [anon_sym_SLASH] = ACTIONS(6339), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_COLON] = ACTIONS(6337), - [anon_sym_SQUOTE] = ACTIONS(6337), - [anon_sym__] = ACTIONS(6339), - [anon_sym_CARET] = ACTIONS(6339), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6339), - [anon_sym_DOLLAR] = ACTIONS(6337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6339), - [anon_sym_BSLASHbegin] = ACTIONS(6337), - [anon_sym_BSLASHend] = ACTIONS(6337), - [anon_sym_BSLASHtitle] = ACTIONS(6337), - [anon_sym_BSLASHauthor] = ACTIONS(6337), - [anon_sym_BSLASHusepackage] = ACTIONS(6337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6337), - [anon_sym_BSLASHinclude] = ACTIONS(6337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6337), - [anon_sym_BSLASHinput] = ACTIONS(6337), - [anon_sym_BSLASHsubfile] = ACTIONS(6337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6337), - [anon_sym_BSLASHbibliography] = ACTIONS(6337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6337), - [anon_sym_BSLASHincludesvg] = ACTIONS(6337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6337), - [anon_sym_BSLASHimport] = ACTIONS(6337), - [anon_sym_BSLASHsubimport] = ACTIONS(6337), - [anon_sym_BSLASHinputfrom] = ACTIONS(6337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6337), - [anon_sym_BSLASHincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHcaption] = ACTIONS(6337), - [anon_sym_BSLASHcite] = ACTIONS(6337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCite] = ACTIONS(6337), - [anon_sym_BSLASHnocite] = ACTIONS(6337), - [anon_sym_BSLASHcitet] = ACTIONS(6337), - [anon_sym_BSLASHcitep] = ACTIONS(6337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteauthor] = ACTIONS(6337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitetitle] = ACTIONS(6337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteyear] = ACTIONS(6337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitedate] = ACTIONS(6337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteurl] = ACTIONS(6337), - [anon_sym_BSLASHfullcite] = ACTIONS(6337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6337), - [anon_sym_BSLASHcitealt] = ACTIONS(6337), - [anon_sym_BSLASHcitealp] = ACTIONS(6337), - [anon_sym_BSLASHcitetext] = ACTIONS(6337), - [anon_sym_BSLASHparencite] = ACTIONS(6337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHParencite] = ACTIONS(6337), - [anon_sym_BSLASHfootcite] = ACTIONS(6337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6337), - [anon_sym_BSLASHtextcite] = ACTIONS(6337), - [anon_sym_BSLASHTextcite] = ACTIONS(6337), - [anon_sym_BSLASHsmartcite] = ACTIONS(6337), - [anon_sym_BSLASHSmartcite] = ACTIONS(6337), - [anon_sym_BSLASHsupercite] = ACTIONS(6337), - [anon_sym_BSLASHautocite] = ACTIONS(6337), - [anon_sym_BSLASHAutocite] = ACTIONS(6337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHvolcite] = ACTIONS(6337), - [anon_sym_BSLASHVolcite] = ACTIONS(6337), - [anon_sym_BSLASHpvolcite] = ACTIONS(6337), - [anon_sym_BSLASHPvolcite] = ACTIONS(6337), - [anon_sym_BSLASHfvolcite] = ACTIONS(6337), - [anon_sym_BSLASHftvolcite] = ACTIONS(6337), - [anon_sym_BSLASHsvolcite] = ACTIONS(6337), - [anon_sym_BSLASHSvolcite] = ACTIONS(6337), - [anon_sym_BSLASHtvolcite] = ACTIONS(6337), - [anon_sym_BSLASHTvolcite] = ACTIONS(6337), - [anon_sym_BSLASHavolcite] = ACTIONS(6337), - [anon_sym_BSLASHAvolcite] = ACTIONS(6337), - [anon_sym_BSLASHnotecite] = ACTIONS(6337), - [anon_sym_BSLASHNotecite] = ACTIONS(6337), - [anon_sym_BSLASHpnotecite] = ACTIONS(6337), - [anon_sym_BSLASHPnotecite] = ACTIONS(6337), - [anon_sym_BSLASHfnotecite] = ACTIONS(6337), - [anon_sym_BSLASHlabel] = ACTIONS(6337), - [anon_sym_BSLASHref] = ACTIONS(6337), - [anon_sym_BSLASHeqref] = ACTIONS(6337), - [anon_sym_BSLASHvref] = ACTIONS(6337), - [anon_sym_BSLASHVref] = ACTIONS(6337), - [anon_sym_BSLASHautoref] = ACTIONS(6337), - [anon_sym_BSLASHpageref] = ACTIONS(6337), - [anon_sym_BSLASHcref] = ACTIONS(6337), - [anon_sym_BSLASHCref] = ACTIONS(6337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnameCref] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHlabelcref] = ACTIONS(6337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCrefrange] = ACTIONS(6337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnewlabel] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6339), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHdef] = ACTIONS(6337), - [anon_sym_BSLASHlet] = ACTIONS(6337), - [anon_sym_BSLASHleft] = ACTIONS(6337), - [anon_sym_BSLASHbig] = ACTIONS(6337), - [anon_sym_BSLASHBig] = ACTIONS(6337), - [anon_sym_BSLASHbigg] = ACTIONS(6337), - [anon_sym_BSLASHBigg] = ACTIONS(6337), - [anon_sym_BSLASHbigl] = ACTIONS(6337), - [anon_sym_BSLASHBigl] = ACTIONS(6337), - [anon_sym_BSLASHbiggl] = ACTIONS(6337), - [anon_sym_BSLASHBiggl] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6337), - [anon_sym_BSLASHgls] = ACTIONS(6337), - [anon_sym_BSLASHGls] = ACTIONS(6337), - [anon_sym_BSLASHGLS] = ACTIONS(6337), - [anon_sym_BSLASHglspl] = ACTIONS(6337), - [anon_sym_BSLASHGlspl] = ACTIONS(6337), - [anon_sym_BSLASHGLSpl] = ACTIONS(6337), - [anon_sym_BSLASHglsdisp] = ACTIONS(6337), - [anon_sym_BSLASHglslink] = ACTIONS(6337), - [anon_sym_BSLASHglstext] = ACTIONS(6337), - [anon_sym_BSLASHGlstext] = ACTIONS(6337), - [anon_sym_BSLASHGLStext] = ACTIONS(6337), - [anon_sym_BSLASHglsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6337), - [anon_sym_BSLASHglsplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSplural] = ACTIONS(6337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHglsname] = ACTIONS(6337), - [anon_sym_BSLASHGlsname] = ACTIONS(6337), - [anon_sym_BSLASHGLSname] = ACTIONS(6337), - [anon_sym_BSLASHglssymbol] = ACTIONS(6337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6337), - [anon_sym_BSLASHglsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6337), - [anon_sym_BSLASHglsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6337), - [anon_sym_BSLASHglsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6337), - [anon_sym_BSLASHglsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6337), - [anon_sym_BSLASHglsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6337), - [anon_sym_BSLASHnewacronym] = ACTIONS(6337), - [anon_sym_BSLASHacrshort] = ACTIONS(6337), - [anon_sym_BSLASHAcrshort] = ACTIONS(6337), - [anon_sym_BSLASHACRshort] = ACTIONS(6337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6337), - [anon_sym_BSLASHacrlong] = ACTIONS(6337), - [anon_sym_BSLASHAcrlong] = ACTIONS(6337), - [anon_sym_BSLASHACRlong] = ACTIONS(6337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6337), - [anon_sym_BSLASHacrfull] = ACTIONS(6337), - [anon_sym_BSLASHAcrfull] = ACTIONS(6337), - [anon_sym_BSLASHACRfull] = ACTIONS(6337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6337), - [anon_sym_BSLASHacs] = ACTIONS(6337), - [anon_sym_BSLASHAcs] = ACTIONS(6337), - [anon_sym_BSLASHacsp] = ACTIONS(6337), - [anon_sym_BSLASHAcsp] = ACTIONS(6337), - [anon_sym_BSLASHacl] = ACTIONS(6337), - [anon_sym_BSLASHAcl] = ACTIONS(6337), - [anon_sym_BSLASHaclp] = ACTIONS(6337), - [anon_sym_BSLASHAclp] = ACTIONS(6337), - [anon_sym_BSLASHacf] = ACTIONS(6337), - [anon_sym_BSLASHAcf] = ACTIONS(6337), - [anon_sym_BSLASHacfp] = ACTIONS(6337), - [anon_sym_BSLASHAcfp] = ACTIONS(6337), - [anon_sym_BSLASHac] = ACTIONS(6337), - [anon_sym_BSLASHAc] = ACTIONS(6337), - [anon_sym_BSLASHacp] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6337), - [anon_sym_BSLASHcolor] = ACTIONS(6337), - [anon_sym_BSLASHcolorbox] = ACTIONS(6337), - [anon_sym_BSLASHtextcolor] = ACTIONS(6337), - [anon_sym_BSLASHpagecolor] = ACTIONS(6337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6337), - [anon_sym_BSLASHtext] = ACTIONS(6337), - [anon_sym_BSLASHintertext] = ACTIONS(6337), - [anon_sym_shortintertext] = ACTIONS(6337), - }, - [1069] = { - [sym_command_name] = ACTIONS(6341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(6343), - [anon_sym_RBRACK] = ACTIONS(6343), - [anon_sym_COMMA] = ACTIONS(6343), - [anon_sym_EQ] = ACTIONS(6343), - [anon_sym_LPAREN] = ACTIONS(6343), - [anon_sym_RPAREN] = ACTIONS(6343), - [anon_sym_BSLASHpart] = ACTIONS(6341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddpart] = ACTIONS(6341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6343), - [anon_sym_BSLASHchapter] = ACTIONS(6341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddchap] = ACTIONS(6341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsection] = ACTIONS(6341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddsec] = ACTIONS(6341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubsection] = ACTIONS(6341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHparagraph] = ACTIONS(6341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6343), - [anon_sym_BSLASHitem] = ACTIONS(6341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6343), - [anon_sym_LBRACE] = ACTIONS(6343), - [sym_word] = ACTIONS(6341), - [sym_placeholder] = ACTIONS(6343), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_LT] = ACTIONS(6341), - [anon_sym_GT] = ACTIONS(6341), - [anon_sym_BANG] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_SQUOTE] = ACTIONS(6341), - [anon_sym__] = ACTIONS(6343), - [anon_sym_CARET] = ACTIONS(6343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6343), - [anon_sym_DOLLAR] = ACTIONS(6341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6343), - [anon_sym_BSLASHbegin] = ACTIONS(6341), - [anon_sym_BSLASHend] = ACTIONS(6341), - [anon_sym_BSLASHtitle] = ACTIONS(6341), - [anon_sym_BSLASHauthor] = ACTIONS(6341), - [anon_sym_BSLASHusepackage] = ACTIONS(6341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6341), - [anon_sym_BSLASHinclude] = ACTIONS(6341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6341), - [anon_sym_BSLASHinput] = ACTIONS(6341), - [anon_sym_BSLASHsubfile] = ACTIONS(6341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6341), - [anon_sym_BSLASHbibliography] = ACTIONS(6341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6341), - [anon_sym_BSLASHincludesvg] = ACTIONS(6341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6341), - [anon_sym_BSLASHimport] = ACTIONS(6341), - [anon_sym_BSLASHsubimport] = ACTIONS(6341), - [anon_sym_BSLASHinputfrom] = ACTIONS(6341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6341), - [anon_sym_BSLASHincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHcaption] = ACTIONS(6341), - [anon_sym_BSLASHcite] = ACTIONS(6341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCite] = ACTIONS(6341), - [anon_sym_BSLASHnocite] = ACTIONS(6341), - [anon_sym_BSLASHcitet] = ACTIONS(6341), - [anon_sym_BSLASHcitep] = ACTIONS(6341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteauthor] = ACTIONS(6341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitetitle] = ACTIONS(6341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteyear] = ACTIONS(6341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitedate] = ACTIONS(6341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteurl] = ACTIONS(6341), - [anon_sym_BSLASHfullcite] = ACTIONS(6341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6341), - [anon_sym_BSLASHcitealt] = ACTIONS(6341), - [anon_sym_BSLASHcitealp] = ACTIONS(6341), - [anon_sym_BSLASHcitetext] = ACTIONS(6341), - [anon_sym_BSLASHparencite] = ACTIONS(6341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHParencite] = ACTIONS(6341), - [anon_sym_BSLASHfootcite] = ACTIONS(6341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6341), - [anon_sym_BSLASHtextcite] = ACTIONS(6341), - [anon_sym_BSLASHTextcite] = ACTIONS(6341), - [anon_sym_BSLASHsmartcite] = ACTIONS(6341), - [anon_sym_BSLASHSmartcite] = ACTIONS(6341), - [anon_sym_BSLASHsupercite] = ACTIONS(6341), - [anon_sym_BSLASHautocite] = ACTIONS(6341), - [anon_sym_BSLASHAutocite] = ACTIONS(6341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHvolcite] = ACTIONS(6341), - [anon_sym_BSLASHVolcite] = ACTIONS(6341), - [anon_sym_BSLASHpvolcite] = ACTIONS(6341), - [anon_sym_BSLASHPvolcite] = ACTIONS(6341), - [anon_sym_BSLASHfvolcite] = ACTIONS(6341), - [anon_sym_BSLASHftvolcite] = ACTIONS(6341), - [anon_sym_BSLASHsvolcite] = ACTIONS(6341), - [anon_sym_BSLASHSvolcite] = ACTIONS(6341), - [anon_sym_BSLASHtvolcite] = ACTIONS(6341), - [anon_sym_BSLASHTvolcite] = ACTIONS(6341), - [anon_sym_BSLASHavolcite] = ACTIONS(6341), - [anon_sym_BSLASHAvolcite] = ACTIONS(6341), - [anon_sym_BSLASHnotecite] = ACTIONS(6341), - [anon_sym_BSLASHNotecite] = ACTIONS(6341), - [anon_sym_BSLASHpnotecite] = ACTIONS(6341), - [anon_sym_BSLASHPnotecite] = ACTIONS(6341), - [anon_sym_BSLASHfnotecite] = ACTIONS(6341), - [anon_sym_BSLASHlabel] = ACTIONS(6341), - [anon_sym_BSLASHref] = ACTIONS(6341), - [anon_sym_BSLASHeqref] = ACTIONS(6341), - [anon_sym_BSLASHvref] = ACTIONS(6341), - [anon_sym_BSLASHVref] = ACTIONS(6341), - [anon_sym_BSLASHautoref] = ACTIONS(6341), - [anon_sym_BSLASHpageref] = ACTIONS(6341), - [anon_sym_BSLASHcref] = ACTIONS(6341), - [anon_sym_BSLASHCref] = ACTIONS(6341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnameCref] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHlabelcref] = ACTIONS(6341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCrefrange] = ACTIONS(6341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnewlabel] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6343), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHdef] = ACTIONS(6341), - [anon_sym_BSLASHlet] = ACTIONS(6341), - [anon_sym_BSLASHleft] = ACTIONS(6341), - [anon_sym_BSLASHbig] = ACTIONS(6341), - [anon_sym_BSLASHBig] = ACTIONS(6341), - [anon_sym_BSLASHbigg] = ACTIONS(6341), - [anon_sym_BSLASHBigg] = ACTIONS(6341), - [anon_sym_BSLASHbigl] = ACTIONS(6341), - [anon_sym_BSLASHBigl] = ACTIONS(6341), - [anon_sym_BSLASHbiggl] = ACTIONS(6341), - [anon_sym_BSLASHBiggl] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6341), - [anon_sym_BSLASHgls] = ACTIONS(6341), - [anon_sym_BSLASHGls] = ACTIONS(6341), - [anon_sym_BSLASHGLS] = ACTIONS(6341), - [anon_sym_BSLASHglspl] = ACTIONS(6341), - [anon_sym_BSLASHGlspl] = ACTIONS(6341), - [anon_sym_BSLASHGLSpl] = ACTIONS(6341), - [anon_sym_BSLASHglsdisp] = ACTIONS(6341), - [anon_sym_BSLASHglslink] = ACTIONS(6341), - [anon_sym_BSLASHglstext] = ACTIONS(6341), - [anon_sym_BSLASHGlstext] = ACTIONS(6341), - [anon_sym_BSLASHGLStext] = ACTIONS(6341), - [anon_sym_BSLASHglsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6341), - [anon_sym_BSLASHglsplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSplural] = ACTIONS(6341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHglsname] = ACTIONS(6341), - [anon_sym_BSLASHGlsname] = ACTIONS(6341), - [anon_sym_BSLASHGLSname] = ACTIONS(6341), - [anon_sym_BSLASHglssymbol] = ACTIONS(6341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6341), - [anon_sym_BSLASHglsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6341), - [anon_sym_BSLASHglsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6341), - [anon_sym_BSLASHglsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6341), - [anon_sym_BSLASHglsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6341), - [anon_sym_BSLASHglsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6341), - [anon_sym_BSLASHnewacronym] = ACTIONS(6341), - [anon_sym_BSLASHacrshort] = ACTIONS(6341), - [anon_sym_BSLASHAcrshort] = ACTIONS(6341), - [anon_sym_BSLASHACRshort] = ACTIONS(6341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6341), - [anon_sym_BSLASHacrlong] = ACTIONS(6341), - [anon_sym_BSLASHAcrlong] = ACTIONS(6341), - [anon_sym_BSLASHACRlong] = ACTIONS(6341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6341), - [anon_sym_BSLASHacrfull] = ACTIONS(6341), - [anon_sym_BSLASHAcrfull] = ACTIONS(6341), - [anon_sym_BSLASHACRfull] = ACTIONS(6341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6341), - [anon_sym_BSLASHacs] = ACTIONS(6341), - [anon_sym_BSLASHAcs] = ACTIONS(6341), - [anon_sym_BSLASHacsp] = ACTIONS(6341), - [anon_sym_BSLASHAcsp] = ACTIONS(6341), - [anon_sym_BSLASHacl] = ACTIONS(6341), - [anon_sym_BSLASHAcl] = ACTIONS(6341), - [anon_sym_BSLASHaclp] = ACTIONS(6341), - [anon_sym_BSLASHAclp] = ACTIONS(6341), - [anon_sym_BSLASHacf] = ACTIONS(6341), - [anon_sym_BSLASHAcf] = ACTIONS(6341), - [anon_sym_BSLASHacfp] = ACTIONS(6341), - [anon_sym_BSLASHAcfp] = ACTIONS(6341), - [anon_sym_BSLASHac] = ACTIONS(6341), - [anon_sym_BSLASHAc] = ACTIONS(6341), - [anon_sym_BSLASHacp] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6341), - [anon_sym_BSLASHcolor] = ACTIONS(6341), - [anon_sym_BSLASHcolorbox] = ACTIONS(6341), - [anon_sym_BSLASHtextcolor] = ACTIONS(6341), - [anon_sym_BSLASHpagecolor] = ACTIONS(6341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6341), - [anon_sym_BSLASHtext] = ACTIONS(6341), - [anon_sym_BSLASHintertext] = ACTIONS(6341), - [anon_sym_shortintertext] = ACTIONS(6341), - }, - [1070] = { - [sym_command_name] = ACTIONS(6345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6345), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_EQ] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_BSLASHpart] = ACTIONS(6345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddpart] = ACTIONS(6345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6347), - [anon_sym_BSLASHchapter] = ACTIONS(6345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddchap] = ACTIONS(6345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsection] = ACTIONS(6345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddsec] = ACTIONS(6345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubsection] = ACTIONS(6345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHparagraph] = ACTIONS(6345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6347), - [anon_sym_BSLASHitem] = ACTIONS(6345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6347), - [anon_sym_LBRACE] = ACTIONS(6347), - [sym_word] = ACTIONS(6345), - [sym_placeholder] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6345), - [anon_sym_GT] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(6345), - [anon_sym_PIPE] = ACTIONS(6345), - [anon_sym_COLON] = ACTIONS(6345), - [anon_sym_SQUOTE] = ACTIONS(6345), - [anon_sym__] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6347), - [anon_sym_DOLLAR] = ACTIONS(6345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6347), - [anon_sym_BSLASHbegin] = ACTIONS(6345), - [anon_sym_BSLASHend] = ACTIONS(6345), - [anon_sym_BSLASHtitle] = ACTIONS(6345), - [anon_sym_BSLASHauthor] = ACTIONS(6345), - [anon_sym_BSLASHusepackage] = ACTIONS(6345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6345), - [anon_sym_BSLASHinclude] = ACTIONS(6345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6345), - [anon_sym_BSLASHinput] = ACTIONS(6345), - [anon_sym_BSLASHsubfile] = ACTIONS(6345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6345), - [anon_sym_BSLASHbibliography] = ACTIONS(6345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6345), - [anon_sym_BSLASHincludesvg] = ACTIONS(6345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6345), - [anon_sym_BSLASHimport] = ACTIONS(6345), - [anon_sym_BSLASHsubimport] = ACTIONS(6345), - [anon_sym_BSLASHinputfrom] = ACTIONS(6345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6345), - [anon_sym_BSLASHincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHcaption] = ACTIONS(6345), - [anon_sym_BSLASHcite] = ACTIONS(6345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCite] = ACTIONS(6345), - [anon_sym_BSLASHnocite] = ACTIONS(6345), - [anon_sym_BSLASHcitet] = ACTIONS(6345), - [anon_sym_BSLASHcitep] = ACTIONS(6345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteauthor] = ACTIONS(6345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitetitle] = ACTIONS(6345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteyear] = ACTIONS(6345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitedate] = ACTIONS(6345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteurl] = ACTIONS(6345), - [anon_sym_BSLASHfullcite] = ACTIONS(6345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6345), - [anon_sym_BSLASHcitealt] = ACTIONS(6345), - [anon_sym_BSLASHcitealp] = ACTIONS(6345), - [anon_sym_BSLASHcitetext] = ACTIONS(6345), - [anon_sym_BSLASHparencite] = ACTIONS(6345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHParencite] = ACTIONS(6345), - [anon_sym_BSLASHfootcite] = ACTIONS(6345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6345), - [anon_sym_BSLASHtextcite] = ACTIONS(6345), - [anon_sym_BSLASHTextcite] = ACTIONS(6345), - [anon_sym_BSLASHsmartcite] = ACTIONS(6345), - [anon_sym_BSLASHSmartcite] = ACTIONS(6345), - [anon_sym_BSLASHsupercite] = ACTIONS(6345), - [anon_sym_BSLASHautocite] = ACTIONS(6345), - [anon_sym_BSLASHAutocite] = ACTIONS(6345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHvolcite] = ACTIONS(6345), - [anon_sym_BSLASHVolcite] = ACTIONS(6345), - [anon_sym_BSLASHpvolcite] = ACTIONS(6345), - [anon_sym_BSLASHPvolcite] = ACTIONS(6345), - [anon_sym_BSLASHfvolcite] = ACTIONS(6345), - [anon_sym_BSLASHftvolcite] = ACTIONS(6345), - [anon_sym_BSLASHsvolcite] = ACTIONS(6345), - [anon_sym_BSLASHSvolcite] = ACTIONS(6345), - [anon_sym_BSLASHtvolcite] = ACTIONS(6345), - [anon_sym_BSLASHTvolcite] = ACTIONS(6345), - [anon_sym_BSLASHavolcite] = ACTIONS(6345), - [anon_sym_BSLASHAvolcite] = ACTIONS(6345), - [anon_sym_BSLASHnotecite] = ACTIONS(6345), - [anon_sym_BSLASHNotecite] = ACTIONS(6345), - [anon_sym_BSLASHpnotecite] = ACTIONS(6345), - [anon_sym_BSLASHPnotecite] = ACTIONS(6345), - [anon_sym_BSLASHfnotecite] = ACTIONS(6345), - [anon_sym_BSLASHlabel] = ACTIONS(6345), - [anon_sym_BSLASHref] = ACTIONS(6345), - [anon_sym_BSLASHeqref] = ACTIONS(6345), - [anon_sym_BSLASHvref] = ACTIONS(6345), - [anon_sym_BSLASHVref] = ACTIONS(6345), - [anon_sym_BSLASHautoref] = ACTIONS(6345), - [anon_sym_BSLASHpageref] = ACTIONS(6345), - [anon_sym_BSLASHcref] = ACTIONS(6345), - [anon_sym_BSLASHCref] = ACTIONS(6345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnameCref] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHlabelcref] = ACTIONS(6345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCrefrange] = ACTIONS(6345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnewlabel] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6347), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHdef] = ACTIONS(6345), - [anon_sym_BSLASHlet] = ACTIONS(6345), - [anon_sym_BSLASHleft] = ACTIONS(6345), - [anon_sym_BSLASHbig] = ACTIONS(6345), - [anon_sym_BSLASHBig] = ACTIONS(6345), - [anon_sym_BSLASHbigg] = ACTIONS(6345), - [anon_sym_BSLASHBigg] = ACTIONS(6345), - [anon_sym_BSLASHbigl] = ACTIONS(6345), - [anon_sym_BSLASHBigl] = ACTIONS(6345), - [anon_sym_BSLASHbiggl] = ACTIONS(6345), - [anon_sym_BSLASHBiggl] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6345), - [anon_sym_BSLASHgls] = ACTIONS(6345), - [anon_sym_BSLASHGls] = ACTIONS(6345), - [anon_sym_BSLASHGLS] = ACTIONS(6345), - [anon_sym_BSLASHglspl] = ACTIONS(6345), - [anon_sym_BSLASHGlspl] = ACTIONS(6345), - [anon_sym_BSLASHGLSpl] = ACTIONS(6345), - [anon_sym_BSLASHglsdisp] = ACTIONS(6345), - [anon_sym_BSLASHglslink] = ACTIONS(6345), - [anon_sym_BSLASHglstext] = ACTIONS(6345), - [anon_sym_BSLASHGlstext] = ACTIONS(6345), - [anon_sym_BSLASHGLStext] = ACTIONS(6345), - [anon_sym_BSLASHglsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6345), - [anon_sym_BSLASHglsplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSplural] = ACTIONS(6345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHglsname] = ACTIONS(6345), - [anon_sym_BSLASHGlsname] = ACTIONS(6345), - [anon_sym_BSLASHGLSname] = ACTIONS(6345), - [anon_sym_BSLASHglssymbol] = ACTIONS(6345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6345), - [anon_sym_BSLASHglsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6345), - [anon_sym_BSLASHglsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6345), - [anon_sym_BSLASHglsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6345), - [anon_sym_BSLASHglsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6345), - [anon_sym_BSLASHglsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6345), - [anon_sym_BSLASHnewacronym] = ACTIONS(6345), - [anon_sym_BSLASHacrshort] = ACTIONS(6345), - [anon_sym_BSLASHAcrshort] = ACTIONS(6345), - [anon_sym_BSLASHACRshort] = ACTIONS(6345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6345), - [anon_sym_BSLASHacrlong] = ACTIONS(6345), - [anon_sym_BSLASHAcrlong] = ACTIONS(6345), - [anon_sym_BSLASHACRlong] = ACTIONS(6345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6345), - [anon_sym_BSLASHacrfull] = ACTIONS(6345), - [anon_sym_BSLASHAcrfull] = ACTIONS(6345), - [anon_sym_BSLASHACRfull] = ACTIONS(6345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6345), - [anon_sym_BSLASHacs] = ACTIONS(6345), - [anon_sym_BSLASHAcs] = ACTIONS(6345), - [anon_sym_BSLASHacsp] = ACTIONS(6345), - [anon_sym_BSLASHAcsp] = ACTIONS(6345), - [anon_sym_BSLASHacl] = ACTIONS(6345), - [anon_sym_BSLASHAcl] = ACTIONS(6345), - [anon_sym_BSLASHaclp] = ACTIONS(6345), - [anon_sym_BSLASHAclp] = ACTIONS(6345), - [anon_sym_BSLASHacf] = ACTIONS(6345), - [anon_sym_BSLASHAcf] = ACTIONS(6345), - [anon_sym_BSLASHacfp] = ACTIONS(6345), - [anon_sym_BSLASHAcfp] = ACTIONS(6345), - [anon_sym_BSLASHac] = ACTIONS(6345), - [anon_sym_BSLASHAc] = ACTIONS(6345), - [anon_sym_BSLASHacp] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6345), - [anon_sym_BSLASHcolor] = ACTIONS(6345), - [anon_sym_BSLASHcolorbox] = ACTIONS(6345), - [anon_sym_BSLASHtextcolor] = ACTIONS(6345), - [anon_sym_BSLASHpagecolor] = ACTIONS(6345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6345), - [anon_sym_BSLASHtext] = ACTIONS(6345), - [anon_sym_BSLASHintertext] = ACTIONS(6345), - [anon_sym_shortintertext] = ACTIONS(6345), - }, - [1071] = { - [sym_command_name] = ACTIONS(6349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6349), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_EQ] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_BSLASHpart] = ACTIONS(6349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddpart] = ACTIONS(6349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6351), - [anon_sym_BSLASHchapter] = ACTIONS(6349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddchap] = ACTIONS(6349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsection] = ACTIONS(6349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddsec] = ACTIONS(6349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubsection] = ACTIONS(6349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHparagraph] = ACTIONS(6349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6351), - [anon_sym_BSLASHitem] = ACTIONS(6349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6351), - [anon_sym_LBRACE] = ACTIONS(6351), - [sym_word] = ACTIONS(6349), - [sym_placeholder] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6351), - [anon_sym_DASH] = ACTIONS(6351), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_SQUOTE] = ACTIONS(6349), - [anon_sym__] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6351), - [anon_sym_DOLLAR] = ACTIONS(6349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6351), - [anon_sym_BSLASHbegin] = ACTIONS(6349), - [anon_sym_BSLASHend] = ACTIONS(6349), - [anon_sym_BSLASHtitle] = ACTIONS(6349), - [anon_sym_BSLASHauthor] = ACTIONS(6349), - [anon_sym_BSLASHusepackage] = ACTIONS(6349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6349), - [anon_sym_BSLASHinclude] = ACTIONS(6349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6349), - [anon_sym_BSLASHinput] = ACTIONS(6349), - [anon_sym_BSLASHsubfile] = ACTIONS(6349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6349), - [anon_sym_BSLASHbibliography] = ACTIONS(6349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6349), - [anon_sym_BSLASHincludesvg] = ACTIONS(6349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6349), - [anon_sym_BSLASHimport] = ACTIONS(6349), - [anon_sym_BSLASHsubimport] = ACTIONS(6349), - [anon_sym_BSLASHinputfrom] = ACTIONS(6349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6349), - [anon_sym_BSLASHincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHcaption] = ACTIONS(6349), - [anon_sym_BSLASHcite] = ACTIONS(6349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCite] = ACTIONS(6349), - [anon_sym_BSLASHnocite] = ACTIONS(6349), - [anon_sym_BSLASHcitet] = ACTIONS(6349), - [anon_sym_BSLASHcitep] = ACTIONS(6349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteauthor] = ACTIONS(6349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitetitle] = ACTIONS(6349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteyear] = ACTIONS(6349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitedate] = ACTIONS(6349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteurl] = ACTIONS(6349), - [anon_sym_BSLASHfullcite] = ACTIONS(6349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6349), - [anon_sym_BSLASHcitealt] = ACTIONS(6349), - [anon_sym_BSLASHcitealp] = ACTIONS(6349), - [anon_sym_BSLASHcitetext] = ACTIONS(6349), - [anon_sym_BSLASHparencite] = ACTIONS(6349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHParencite] = ACTIONS(6349), - [anon_sym_BSLASHfootcite] = ACTIONS(6349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6349), - [anon_sym_BSLASHtextcite] = ACTIONS(6349), - [anon_sym_BSLASHTextcite] = ACTIONS(6349), - [anon_sym_BSLASHsmartcite] = ACTIONS(6349), - [anon_sym_BSLASHSmartcite] = ACTIONS(6349), - [anon_sym_BSLASHsupercite] = ACTIONS(6349), - [anon_sym_BSLASHautocite] = ACTIONS(6349), - [anon_sym_BSLASHAutocite] = ACTIONS(6349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHvolcite] = ACTIONS(6349), - [anon_sym_BSLASHVolcite] = ACTIONS(6349), - [anon_sym_BSLASHpvolcite] = ACTIONS(6349), - [anon_sym_BSLASHPvolcite] = ACTIONS(6349), - [anon_sym_BSLASHfvolcite] = ACTIONS(6349), - [anon_sym_BSLASHftvolcite] = ACTIONS(6349), - [anon_sym_BSLASHsvolcite] = ACTIONS(6349), - [anon_sym_BSLASHSvolcite] = ACTIONS(6349), - [anon_sym_BSLASHtvolcite] = ACTIONS(6349), - [anon_sym_BSLASHTvolcite] = ACTIONS(6349), - [anon_sym_BSLASHavolcite] = ACTIONS(6349), - [anon_sym_BSLASHAvolcite] = ACTIONS(6349), - [anon_sym_BSLASHnotecite] = ACTIONS(6349), - [anon_sym_BSLASHNotecite] = ACTIONS(6349), - [anon_sym_BSLASHpnotecite] = ACTIONS(6349), - [anon_sym_BSLASHPnotecite] = ACTIONS(6349), - [anon_sym_BSLASHfnotecite] = ACTIONS(6349), - [anon_sym_BSLASHlabel] = ACTIONS(6349), - [anon_sym_BSLASHref] = ACTIONS(6349), - [anon_sym_BSLASHeqref] = ACTIONS(6349), - [anon_sym_BSLASHvref] = ACTIONS(6349), - [anon_sym_BSLASHVref] = ACTIONS(6349), - [anon_sym_BSLASHautoref] = ACTIONS(6349), - [anon_sym_BSLASHpageref] = ACTIONS(6349), - [anon_sym_BSLASHcref] = ACTIONS(6349), - [anon_sym_BSLASHCref] = ACTIONS(6349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnameCref] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHlabelcref] = ACTIONS(6349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCrefrange] = ACTIONS(6349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnewlabel] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6351), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHdef] = ACTIONS(6349), - [anon_sym_BSLASHlet] = ACTIONS(6349), - [anon_sym_BSLASHleft] = ACTIONS(6349), - [anon_sym_BSLASHbig] = ACTIONS(6349), - [anon_sym_BSLASHBig] = ACTIONS(6349), - [anon_sym_BSLASHbigg] = ACTIONS(6349), - [anon_sym_BSLASHBigg] = ACTIONS(6349), - [anon_sym_BSLASHbigl] = ACTIONS(6349), - [anon_sym_BSLASHBigl] = ACTIONS(6349), - [anon_sym_BSLASHbiggl] = ACTIONS(6349), - [anon_sym_BSLASHBiggl] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6349), - [anon_sym_BSLASHgls] = ACTIONS(6349), - [anon_sym_BSLASHGls] = ACTIONS(6349), - [anon_sym_BSLASHGLS] = ACTIONS(6349), - [anon_sym_BSLASHglspl] = ACTIONS(6349), - [anon_sym_BSLASHGlspl] = ACTIONS(6349), - [anon_sym_BSLASHGLSpl] = ACTIONS(6349), - [anon_sym_BSLASHglsdisp] = ACTIONS(6349), - [anon_sym_BSLASHglslink] = ACTIONS(6349), - [anon_sym_BSLASHglstext] = ACTIONS(6349), - [anon_sym_BSLASHGlstext] = ACTIONS(6349), - [anon_sym_BSLASHGLStext] = ACTIONS(6349), - [anon_sym_BSLASHglsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6349), - [anon_sym_BSLASHglsplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSplural] = ACTIONS(6349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHglsname] = ACTIONS(6349), - [anon_sym_BSLASHGlsname] = ACTIONS(6349), - [anon_sym_BSLASHGLSname] = ACTIONS(6349), - [anon_sym_BSLASHglssymbol] = ACTIONS(6349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6349), - [anon_sym_BSLASHglsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6349), - [anon_sym_BSLASHglsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6349), - [anon_sym_BSLASHglsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6349), - [anon_sym_BSLASHglsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6349), - [anon_sym_BSLASHglsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6349), - [anon_sym_BSLASHnewacronym] = ACTIONS(6349), - [anon_sym_BSLASHacrshort] = ACTIONS(6349), - [anon_sym_BSLASHAcrshort] = ACTIONS(6349), - [anon_sym_BSLASHACRshort] = ACTIONS(6349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6349), - [anon_sym_BSLASHacrlong] = ACTIONS(6349), - [anon_sym_BSLASHAcrlong] = ACTIONS(6349), - [anon_sym_BSLASHACRlong] = ACTIONS(6349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6349), - [anon_sym_BSLASHacrfull] = ACTIONS(6349), - [anon_sym_BSLASHAcrfull] = ACTIONS(6349), - [anon_sym_BSLASHACRfull] = ACTIONS(6349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6349), - [anon_sym_BSLASHacs] = ACTIONS(6349), - [anon_sym_BSLASHAcs] = ACTIONS(6349), - [anon_sym_BSLASHacsp] = ACTIONS(6349), - [anon_sym_BSLASHAcsp] = ACTIONS(6349), - [anon_sym_BSLASHacl] = ACTIONS(6349), - [anon_sym_BSLASHAcl] = ACTIONS(6349), - [anon_sym_BSLASHaclp] = ACTIONS(6349), - [anon_sym_BSLASHAclp] = ACTIONS(6349), - [anon_sym_BSLASHacf] = ACTIONS(6349), - [anon_sym_BSLASHAcf] = ACTIONS(6349), - [anon_sym_BSLASHacfp] = ACTIONS(6349), - [anon_sym_BSLASHAcfp] = ACTIONS(6349), - [anon_sym_BSLASHac] = ACTIONS(6349), - [anon_sym_BSLASHAc] = ACTIONS(6349), - [anon_sym_BSLASHacp] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6349), - [anon_sym_BSLASHcolor] = ACTIONS(6349), - [anon_sym_BSLASHcolorbox] = ACTIONS(6349), - [anon_sym_BSLASHtextcolor] = ACTIONS(6349), - [anon_sym_BSLASHpagecolor] = ACTIONS(6349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6349), - [anon_sym_BSLASHtext] = ACTIONS(6349), - [anon_sym_BSLASHintertext] = ACTIONS(6349), - [anon_sym_shortintertext] = ACTIONS(6349), - }, - [1072] = { - [sym_command_name] = ACTIONS(6353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6353), - [anon_sym_LBRACK] = ACTIONS(6355), - [anon_sym_RBRACK] = ACTIONS(6355), - [anon_sym_COMMA] = ACTIONS(6355), - [anon_sym_EQ] = ACTIONS(6355), - [anon_sym_LPAREN] = ACTIONS(6355), - [anon_sym_RPAREN] = ACTIONS(6355), - [anon_sym_BSLASHpart] = ACTIONS(6353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddpart] = ACTIONS(6353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6355), - [anon_sym_BSLASHchapter] = ACTIONS(6353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddchap] = ACTIONS(6353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsection] = ACTIONS(6353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddsec] = ACTIONS(6353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubsection] = ACTIONS(6353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHparagraph] = ACTIONS(6353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6355), - [anon_sym_BSLASHitem] = ACTIONS(6353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6355), - [anon_sym_LBRACE] = ACTIONS(6355), - [sym_word] = ACTIONS(6353), - [sym_placeholder] = ACTIONS(6355), - [anon_sym_PLUS] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [anon_sym_STAR] = ACTIONS(6355), - [anon_sym_SLASH] = ACTIONS(6355), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_COLON] = ACTIONS(6353), - [anon_sym_SQUOTE] = ACTIONS(6353), - [anon_sym__] = ACTIONS(6355), - [anon_sym_CARET] = ACTIONS(6355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6355), - [anon_sym_DOLLAR] = ACTIONS(6353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6355), - [anon_sym_BSLASHbegin] = ACTIONS(6353), - [anon_sym_BSLASHend] = ACTIONS(6353), - [anon_sym_BSLASHtitle] = ACTIONS(6353), - [anon_sym_BSLASHauthor] = ACTIONS(6353), - [anon_sym_BSLASHusepackage] = ACTIONS(6353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6353), - [anon_sym_BSLASHinclude] = ACTIONS(6353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6353), - [anon_sym_BSLASHinput] = ACTIONS(6353), - [anon_sym_BSLASHsubfile] = ACTIONS(6353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6353), - [anon_sym_BSLASHbibliography] = ACTIONS(6353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6353), - [anon_sym_BSLASHincludesvg] = ACTIONS(6353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6353), - [anon_sym_BSLASHimport] = ACTIONS(6353), - [anon_sym_BSLASHsubimport] = ACTIONS(6353), - [anon_sym_BSLASHinputfrom] = ACTIONS(6353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6353), - [anon_sym_BSLASHincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHcaption] = ACTIONS(6353), - [anon_sym_BSLASHcite] = ACTIONS(6353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCite] = ACTIONS(6353), - [anon_sym_BSLASHnocite] = ACTIONS(6353), - [anon_sym_BSLASHcitet] = ACTIONS(6353), - [anon_sym_BSLASHcitep] = ACTIONS(6353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteauthor] = ACTIONS(6353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitetitle] = ACTIONS(6353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteyear] = ACTIONS(6353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitedate] = ACTIONS(6353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteurl] = ACTIONS(6353), - [anon_sym_BSLASHfullcite] = ACTIONS(6353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6353), - [anon_sym_BSLASHcitealt] = ACTIONS(6353), - [anon_sym_BSLASHcitealp] = ACTIONS(6353), - [anon_sym_BSLASHcitetext] = ACTIONS(6353), - [anon_sym_BSLASHparencite] = ACTIONS(6353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHParencite] = ACTIONS(6353), - [anon_sym_BSLASHfootcite] = ACTIONS(6353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6353), - [anon_sym_BSLASHtextcite] = ACTIONS(6353), - [anon_sym_BSLASHTextcite] = ACTIONS(6353), - [anon_sym_BSLASHsmartcite] = ACTIONS(6353), - [anon_sym_BSLASHSmartcite] = ACTIONS(6353), - [anon_sym_BSLASHsupercite] = ACTIONS(6353), - [anon_sym_BSLASHautocite] = ACTIONS(6353), - [anon_sym_BSLASHAutocite] = ACTIONS(6353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHvolcite] = ACTIONS(6353), - [anon_sym_BSLASHVolcite] = ACTIONS(6353), - [anon_sym_BSLASHpvolcite] = ACTIONS(6353), - [anon_sym_BSLASHPvolcite] = ACTIONS(6353), - [anon_sym_BSLASHfvolcite] = ACTIONS(6353), - [anon_sym_BSLASHftvolcite] = ACTIONS(6353), - [anon_sym_BSLASHsvolcite] = ACTIONS(6353), - [anon_sym_BSLASHSvolcite] = ACTIONS(6353), - [anon_sym_BSLASHtvolcite] = ACTIONS(6353), - [anon_sym_BSLASHTvolcite] = ACTIONS(6353), - [anon_sym_BSLASHavolcite] = ACTIONS(6353), - [anon_sym_BSLASHAvolcite] = ACTIONS(6353), - [anon_sym_BSLASHnotecite] = ACTIONS(6353), - [anon_sym_BSLASHNotecite] = ACTIONS(6353), - [anon_sym_BSLASHpnotecite] = ACTIONS(6353), - [anon_sym_BSLASHPnotecite] = ACTIONS(6353), - [anon_sym_BSLASHfnotecite] = ACTIONS(6353), - [anon_sym_BSLASHlabel] = ACTIONS(6353), - [anon_sym_BSLASHref] = ACTIONS(6353), - [anon_sym_BSLASHeqref] = ACTIONS(6353), - [anon_sym_BSLASHvref] = ACTIONS(6353), - [anon_sym_BSLASHVref] = ACTIONS(6353), - [anon_sym_BSLASHautoref] = ACTIONS(6353), - [anon_sym_BSLASHpageref] = ACTIONS(6353), - [anon_sym_BSLASHcref] = ACTIONS(6353), - [anon_sym_BSLASHCref] = ACTIONS(6353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnameCref] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHlabelcref] = ACTIONS(6353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCrefrange] = ACTIONS(6353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnewlabel] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6355), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHdef] = ACTIONS(6353), - [anon_sym_BSLASHlet] = ACTIONS(6353), - [anon_sym_BSLASHleft] = ACTIONS(6353), - [anon_sym_BSLASHbig] = ACTIONS(6353), - [anon_sym_BSLASHBig] = ACTIONS(6353), - [anon_sym_BSLASHbigg] = ACTIONS(6353), - [anon_sym_BSLASHBigg] = ACTIONS(6353), - [anon_sym_BSLASHbigl] = ACTIONS(6353), - [anon_sym_BSLASHBigl] = ACTIONS(6353), - [anon_sym_BSLASHbiggl] = ACTIONS(6353), - [anon_sym_BSLASHBiggl] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6353), - [anon_sym_BSLASHgls] = ACTIONS(6353), - [anon_sym_BSLASHGls] = ACTIONS(6353), - [anon_sym_BSLASHGLS] = ACTIONS(6353), - [anon_sym_BSLASHglspl] = ACTIONS(6353), - [anon_sym_BSLASHGlspl] = ACTIONS(6353), - [anon_sym_BSLASHGLSpl] = ACTIONS(6353), - [anon_sym_BSLASHglsdisp] = ACTIONS(6353), - [anon_sym_BSLASHglslink] = ACTIONS(6353), - [anon_sym_BSLASHglstext] = ACTIONS(6353), - [anon_sym_BSLASHGlstext] = ACTIONS(6353), - [anon_sym_BSLASHGLStext] = ACTIONS(6353), - [anon_sym_BSLASHglsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6353), - [anon_sym_BSLASHglsplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSplural] = ACTIONS(6353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHglsname] = ACTIONS(6353), - [anon_sym_BSLASHGlsname] = ACTIONS(6353), - [anon_sym_BSLASHGLSname] = ACTIONS(6353), - [anon_sym_BSLASHglssymbol] = ACTIONS(6353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6353), - [anon_sym_BSLASHglsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6353), - [anon_sym_BSLASHglsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6353), - [anon_sym_BSLASHglsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6353), - [anon_sym_BSLASHglsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6353), - [anon_sym_BSLASHglsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6353), - [anon_sym_BSLASHnewacronym] = ACTIONS(6353), - [anon_sym_BSLASHacrshort] = ACTIONS(6353), - [anon_sym_BSLASHAcrshort] = ACTIONS(6353), - [anon_sym_BSLASHACRshort] = ACTIONS(6353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6353), - [anon_sym_BSLASHacrlong] = ACTIONS(6353), - [anon_sym_BSLASHAcrlong] = ACTIONS(6353), - [anon_sym_BSLASHACRlong] = ACTIONS(6353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6353), - [anon_sym_BSLASHacrfull] = ACTIONS(6353), - [anon_sym_BSLASHAcrfull] = ACTIONS(6353), - [anon_sym_BSLASHACRfull] = ACTIONS(6353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6353), - [anon_sym_BSLASHacs] = ACTIONS(6353), - [anon_sym_BSLASHAcs] = ACTIONS(6353), - [anon_sym_BSLASHacsp] = ACTIONS(6353), - [anon_sym_BSLASHAcsp] = ACTIONS(6353), - [anon_sym_BSLASHacl] = ACTIONS(6353), - [anon_sym_BSLASHAcl] = ACTIONS(6353), - [anon_sym_BSLASHaclp] = ACTIONS(6353), - [anon_sym_BSLASHAclp] = ACTIONS(6353), - [anon_sym_BSLASHacf] = ACTIONS(6353), - [anon_sym_BSLASHAcf] = ACTIONS(6353), - [anon_sym_BSLASHacfp] = ACTIONS(6353), - [anon_sym_BSLASHAcfp] = ACTIONS(6353), - [anon_sym_BSLASHac] = ACTIONS(6353), - [anon_sym_BSLASHAc] = ACTIONS(6353), - [anon_sym_BSLASHacp] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6353), - [anon_sym_BSLASHcolor] = ACTIONS(6353), - [anon_sym_BSLASHcolorbox] = ACTIONS(6353), - [anon_sym_BSLASHtextcolor] = ACTIONS(6353), - [anon_sym_BSLASHpagecolor] = ACTIONS(6353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6353), - [anon_sym_BSLASHtext] = ACTIONS(6353), - [anon_sym_BSLASHintertext] = ACTIONS(6353), - [anon_sym_shortintertext] = ACTIONS(6353), - }, - [1073] = { - [sym_command_name] = ACTIONS(6357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(6359), - [anon_sym_RBRACK] = ACTIONS(6359), - [anon_sym_COMMA] = ACTIONS(6359), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LPAREN] = ACTIONS(6359), - [anon_sym_RPAREN] = ACTIONS(6359), - [anon_sym_BSLASHpart] = ACTIONS(6357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddpart] = ACTIONS(6357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6359), - [anon_sym_BSLASHchapter] = ACTIONS(6357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddchap] = ACTIONS(6357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsection] = ACTIONS(6357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddsec] = ACTIONS(6357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubsection] = ACTIONS(6357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHparagraph] = ACTIONS(6357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6359), - [anon_sym_BSLASHitem] = ACTIONS(6357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6359), - [sym_word] = ACTIONS(6357), - [sym_placeholder] = ACTIONS(6359), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6359), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_LT] = ACTIONS(6357), - [anon_sym_GT] = ACTIONS(6357), - [anon_sym_BANG] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_SQUOTE] = ACTIONS(6357), - [anon_sym__] = ACTIONS(6359), - [anon_sym_CARET] = ACTIONS(6359), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6359), - [anon_sym_DOLLAR] = ACTIONS(6357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6359), - [anon_sym_BSLASHbegin] = ACTIONS(6357), - [anon_sym_BSLASHend] = ACTIONS(6357), - [anon_sym_BSLASHtitle] = ACTIONS(6357), - [anon_sym_BSLASHauthor] = ACTIONS(6357), - [anon_sym_BSLASHusepackage] = ACTIONS(6357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6357), - [anon_sym_BSLASHinclude] = ACTIONS(6357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6357), - [anon_sym_BSLASHinput] = ACTIONS(6357), - [anon_sym_BSLASHsubfile] = ACTIONS(6357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6357), - [anon_sym_BSLASHbibliography] = ACTIONS(6357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6357), - [anon_sym_BSLASHincludesvg] = ACTIONS(6357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6357), - [anon_sym_BSLASHimport] = ACTIONS(6357), - [anon_sym_BSLASHsubimport] = ACTIONS(6357), - [anon_sym_BSLASHinputfrom] = ACTIONS(6357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6357), - [anon_sym_BSLASHincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHcaption] = ACTIONS(6357), - [anon_sym_BSLASHcite] = ACTIONS(6357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCite] = ACTIONS(6357), - [anon_sym_BSLASHnocite] = ACTIONS(6357), - [anon_sym_BSLASHcitet] = ACTIONS(6357), - [anon_sym_BSLASHcitep] = ACTIONS(6357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteauthor] = ACTIONS(6357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitetitle] = ACTIONS(6357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteyear] = ACTIONS(6357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitedate] = ACTIONS(6357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteurl] = ACTIONS(6357), - [anon_sym_BSLASHfullcite] = ACTIONS(6357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6357), - [anon_sym_BSLASHcitealt] = ACTIONS(6357), - [anon_sym_BSLASHcitealp] = ACTIONS(6357), - [anon_sym_BSLASHcitetext] = ACTIONS(6357), - [anon_sym_BSLASHparencite] = ACTIONS(6357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHParencite] = ACTIONS(6357), - [anon_sym_BSLASHfootcite] = ACTIONS(6357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6357), - [anon_sym_BSLASHtextcite] = ACTIONS(6357), - [anon_sym_BSLASHTextcite] = ACTIONS(6357), - [anon_sym_BSLASHsmartcite] = ACTIONS(6357), - [anon_sym_BSLASHSmartcite] = ACTIONS(6357), - [anon_sym_BSLASHsupercite] = ACTIONS(6357), - [anon_sym_BSLASHautocite] = ACTIONS(6357), - [anon_sym_BSLASHAutocite] = ACTIONS(6357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHvolcite] = ACTIONS(6357), - [anon_sym_BSLASHVolcite] = ACTIONS(6357), - [anon_sym_BSLASHpvolcite] = ACTIONS(6357), - [anon_sym_BSLASHPvolcite] = ACTIONS(6357), - [anon_sym_BSLASHfvolcite] = ACTIONS(6357), - [anon_sym_BSLASHftvolcite] = ACTIONS(6357), - [anon_sym_BSLASHsvolcite] = ACTIONS(6357), - [anon_sym_BSLASHSvolcite] = ACTIONS(6357), - [anon_sym_BSLASHtvolcite] = ACTIONS(6357), - [anon_sym_BSLASHTvolcite] = ACTIONS(6357), - [anon_sym_BSLASHavolcite] = ACTIONS(6357), - [anon_sym_BSLASHAvolcite] = ACTIONS(6357), - [anon_sym_BSLASHnotecite] = ACTIONS(6357), - [anon_sym_BSLASHNotecite] = ACTIONS(6357), - [anon_sym_BSLASHpnotecite] = ACTIONS(6357), - [anon_sym_BSLASHPnotecite] = ACTIONS(6357), - [anon_sym_BSLASHfnotecite] = ACTIONS(6357), - [anon_sym_BSLASHlabel] = ACTIONS(6357), - [anon_sym_BSLASHref] = ACTIONS(6357), - [anon_sym_BSLASHeqref] = ACTIONS(6357), - [anon_sym_BSLASHvref] = ACTIONS(6357), - [anon_sym_BSLASHVref] = ACTIONS(6357), - [anon_sym_BSLASHautoref] = ACTIONS(6357), - [anon_sym_BSLASHpageref] = ACTIONS(6357), - [anon_sym_BSLASHcref] = ACTIONS(6357), - [anon_sym_BSLASHCref] = ACTIONS(6357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnameCref] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHlabelcref] = ACTIONS(6357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCrefrange] = ACTIONS(6357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnewlabel] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6359), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHdef] = ACTIONS(6357), - [anon_sym_BSLASHlet] = ACTIONS(6357), - [anon_sym_BSLASHleft] = ACTIONS(6357), - [anon_sym_BSLASHbig] = ACTIONS(6357), - [anon_sym_BSLASHBig] = ACTIONS(6357), - [anon_sym_BSLASHbigg] = ACTIONS(6357), - [anon_sym_BSLASHBigg] = ACTIONS(6357), - [anon_sym_BSLASHbigl] = ACTIONS(6357), - [anon_sym_BSLASHBigl] = ACTIONS(6357), - [anon_sym_BSLASHbiggl] = ACTIONS(6357), - [anon_sym_BSLASHBiggl] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6357), - [anon_sym_BSLASHgls] = ACTIONS(6357), - [anon_sym_BSLASHGls] = ACTIONS(6357), - [anon_sym_BSLASHGLS] = ACTIONS(6357), - [anon_sym_BSLASHglspl] = ACTIONS(6357), - [anon_sym_BSLASHGlspl] = ACTIONS(6357), - [anon_sym_BSLASHGLSpl] = ACTIONS(6357), - [anon_sym_BSLASHglsdisp] = ACTIONS(6357), - [anon_sym_BSLASHglslink] = ACTIONS(6357), - [anon_sym_BSLASHglstext] = ACTIONS(6357), - [anon_sym_BSLASHGlstext] = ACTIONS(6357), - [anon_sym_BSLASHGLStext] = ACTIONS(6357), - [anon_sym_BSLASHglsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6357), - [anon_sym_BSLASHglsplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSplural] = ACTIONS(6357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHglsname] = ACTIONS(6357), - [anon_sym_BSLASHGlsname] = ACTIONS(6357), - [anon_sym_BSLASHGLSname] = ACTIONS(6357), - [anon_sym_BSLASHglssymbol] = ACTIONS(6357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6357), - [anon_sym_BSLASHglsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6357), - [anon_sym_BSLASHglsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6357), - [anon_sym_BSLASHglsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6357), - [anon_sym_BSLASHglsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6357), - [anon_sym_BSLASHglsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6357), - [anon_sym_BSLASHnewacronym] = ACTIONS(6357), - [anon_sym_BSLASHacrshort] = ACTIONS(6357), - [anon_sym_BSLASHAcrshort] = ACTIONS(6357), - [anon_sym_BSLASHACRshort] = ACTIONS(6357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6357), - [anon_sym_BSLASHacrlong] = ACTIONS(6357), - [anon_sym_BSLASHAcrlong] = ACTIONS(6357), - [anon_sym_BSLASHACRlong] = ACTIONS(6357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6357), - [anon_sym_BSLASHacrfull] = ACTIONS(6357), - [anon_sym_BSLASHAcrfull] = ACTIONS(6357), - [anon_sym_BSLASHACRfull] = ACTIONS(6357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6357), - [anon_sym_BSLASHacs] = ACTIONS(6357), - [anon_sym_BSLASHAcs] = ACTIONS(6357), - [anon_sym_BSLASHacsp] = ACTIONS(6357), - [anon_sym_BSLASHAcsp] = ACTIONS(6357), - [anon_sym_BSLASHacl] = ACTIONS(6357), - [anon_sym_BSLASHAcl] = ACTIONS(6357), - [anon_sym_BSLASHaclp] = ACTIONS(6357), - [anon_sym_BSLASHAclp] = ACTIONS(6357), - [anon_sym_BSLASHacf] = ACTIONS(6357), - [anon_sym_BSLASHAcf] = ACTIONS(6357), - [anon_sym_BSLASHacfp] = ACTIONS(6357), - [anon_sym_BSLASHAcfp] = ACTIONS(6357), - [anon_sym_BSLASHac] = ACTIONS(6357), - [anon_sym_BSLASHAc] = ACTIONS(6357), - [anon_sym_BSLASHacp] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6357), - [anon_sym_BSLASHcolor] = ACTIONS(6357), - [anon_sym_BSLASHcolorbox] = ACTIONS(6357), - [anon_sym_BSLASHtextcolor] = ACTIONS(6357), - [anon_sym_BSLASHpagecolor] = ACTIONS(6357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6357), - [anon_sym_BSLASHtext] = ACTIONS(6357), - [anon_sym_BSLASHintertext] = ACTIONS(6357), - [anon_sym_shortintertext] = ACTIONS(6357), - }, - [1074] = { - [sym_command_name] = ACTIONS(6361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6363), - [anon_sym_RBRACK] = ACTIONS(6363), - [anon_sym_COMMA] = ACTIONS(6363), - [anon_sym_EQ] = ACTIONS(6363), - [anon_sym_LPAREN] = ACTIONS(6363), - [anon_sym_RPAREN] = ACTIONS(6363), - [anon_sym_BSLASHpart] = ACTIONS(6361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddpart] = ACTIONS(6361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6363), - [anon_sym_BSLASHchapter] = ACTIONS(6361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddchap] = ACTIONS(6361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsection] = ACTIONS(6361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddsec] = ACTIONS(6361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubsection] = ACTIONS(6361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHparagraph] = ACTIONS(6361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6363), - [anon_sym_BSLASHitem] = ACTIONS(6361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6363), - [anon_sym_LBRACE] = ACTIONS(6363), - [sym_word] = ACTIONS(6361), - [sym_placeholder] = ACTIONS(6363), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_LT] = ACTIONS(6361), - [anon_sym_GT] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6361), - [anon_sym__] = ACTIONS(6363), - [anon_sym_CARET] = ACTIONS(6363), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6363), - [anon_sym_DOLLAR] = ACTIONS(6361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6363), - [anon_sym_BSLASHbegin] = ACTIONS(6361), - [anon_sym_BSLASHend] = ACTIONS(6361), - [anon_sym_BSLASHtitle] = ACTIONS(6361), - [anon_sym_BSLASHauthor] = ACTIONS(6361), - [anon_sym_BSLASHusepackage] = ACTIONS(6361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6361), - [anon_sym_BSLASHinclude] = ACTIONS(6361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6361), - [anon_sym_BSLASHinput] = ACTIONS(6361), - [anon_sym_BSLASHsubfile] = ACTIONS(6361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6361), - [anon_sym_BSLASHbibliography] = ACTIONS(6361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6361), - [anon_sym_BSLASHincludesvg] = ACTIONS(6361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6361), - [anon_sym_BSLASHimport] = ACTIONS(6361), - [anon_sym_BSLASHsubimport] = ACTIONS(6361), - [anon_sym_BSLASHinputfrom] = ACTIONS(6361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6361), - [anon_sym_BSLASHincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHcaption] = ACTIONS(6361), - [anon_sym_BSLASHcite] = ACTIONS(6361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCite] = ACTIONS(6361), - [anon_sym_BSLASHnocite] = ACTIONS(6361), - [anon_sym_BSLASHcitet] = ACTIONS(6361), - [anon_sym_BSLASHcitep] = ACTIONS(6361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteauthor] = ACTIONS(6361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitetitle] = ACTIONS(6361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteyear] = ACTIONS(6361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitedate] = ACTIONS(6361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteurl] = ACTIONS(6361), - [anon_sym_BSLASHfullcite] = ACTIONS(6361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6361), - [anon_sym_BSLASHcitealt] = ACTIONS(6361), - [anon_sym_BSLASHcitealp] = ACTIONS(6361), - [anon_sym_BSLASHcitetext] = ACTIONS(6361), - [anon_sym_BSLASHparencite] = ACTIONS(6361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHParencite] = ACTIONS(6361), - [anon_sym_BSLASHfootcite] = ACTIONS(6361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6361), - [anon_sym_BSLASHtextcite] = ACTIONS(6361), - [anon_sym_BSLASHTextcite] = ACTIONS(6361), - [anon_sym_BSLASHsmartcite] = ACTIONS(6361), - [anon_sym_BSLASHSmartcite] = ACTIONS(6361), - [anon_sym_BSLASHsupercite] = ACTIONS(6361), - [anon_sym_BSLASHautocite] = ACTIONS(6361), - [anon_sym_BSLASHAutocite] = ACTIONS(6361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHvolcite] = ACTIONS(6361), - [anon_sym_BSLASHVolcite] = ACTIONS(6361), - [anon_sym_BSLASHpvolcite] = ACTIONS(6361), - [anon_sym_BSLASHPvolcite] = ACTIONS(6361), - [anon_sym_BSLASHfvolcite] = ACTIONS(6361), - [anon_sym_BSLASHftvolcite] = ACTIONS(6361), - [anon_sym_BSLASHsvolcite] = ACTIONS(6361), - [anon_sym_BSLASHSvolcite] = ACTIONS(6361), - [anon_sym_BSLASHtvolcite] = ACTIONS(6361), - [anon_sym_BSLASHTvolcite] = ACTIONS(6361), - [anon_sym_BSLASHavolcite] = ACTIONS(6361), - [anon_sym_BSLASHAvolcite] = ACTIONS(6361), - [anon_sym_BSLASHnotecite] = ACTIONS(6361), - [anon_sym_BSLASHNotecite] = ACTIONS(6361), - [anon_sym_BSLASHpnotecite] = ACTIONS(6361), - [anon_sym_BSLASHPnotecite] = ACTIONS(6361), - [anon_sym_BSLASHfnotecite] = ACTIONS(6361), - [anon_sym_BSLASHlabel] = ACTIONS(6361), - [anon_sym_BSLASHref] = ACTIONS(6361), - [anon_sym_BSLASHeqref] = ACTIONS(6361), - [anon_sym_BSLASHvref] = ACTIONS(6361), - [anon_sym_BSLASHVref] = ACTIONS(6361), - [anon_sym_BSLASHautoref] = ACTIONS(6361), - [anon_sym_BSLASHpageref] = ACTIONS(6361), - [anon_sym_BSLASHcref] = ACTIONS(6361), - [anon_sym_BSLASHCref] = ACTIONS(6361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnameCref] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHlabelcref] = ACTIONS(6361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCrefrange] = ACTIONS(6361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnewlabel] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6363), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHdef] = ACTIONS(6361), - [anon_sym_BSLASHlet] = ACTIONS(6361), - [anon_sym_BSLASHleft] = ACTIONS(6361), - [anon_sym_BSLASHbig] = ACTIONS(6361), - [anon_sym_BSLASHBig] = ACTIONS(6361), - [anon_sym_BSLASHbigg] = ACTIONS(6361), - [anon_sym_BSLASHBigg] = ACTIONS(6361), - [anon_sym_BSLASHbigl] = ACTIONS(6361), - [anon_sym_BSLASHBigl] = ACTIONS(6361), - [anon_sym_BSLASHbiggl] = ACTIONS(6361), - [anon_sym_BSLASHBiggl] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6361), - [anon_sym_BSLASHgls] = ACTIONS(6361), - [anon_sym_BSLASHGls] = ACTIONS(6361), - [anon_sym_BSLASHGLS] = ACTIONS(6361), - [anon_sym_BSLASHglspl] = ACTIONS(6361), - [anon_sym_BSLASHGlspl] = ACTIONS(6361), - [anon_sym_BSLASHGLSpl] = ACTIONS(6361), - [anon_sym_BSLASHglsdisp] = ACTIONS(6361), - [anon_sym_BSLASHglslink] = ACTIONS(6361), - [anon_sym_BSLASHglstext] = ACTIONS(6361), - [anon_sym_BSLASHGlstext] = ACTIONS(6361), - [anon_sym_BSLASHGLStext] = ACTIONS(6361), - [anon_sym_BSLASHglsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6361), - [anon_sym_BSLASHglsplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSplural] = ACTIONS(6361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHglsname] = ACTIONS(6361), - [anon_sym_BSLASHGlsname] = ACTIONS(6361), - [anon_sym_BSLASHGLSname] = ACTIONS(6361), - [anon_sym_BSLASHglssymbol] = ACTIONS(6361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6361), - [anon_sym_BSLASHglsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6361), - [anon_sym_BSLASHglsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6361), - [anon_sym_BSLASHglsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6361), - [anon_sym_BSLASHglsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6361), - [anon_sym_BSLASHglsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6361), - [anon_sym_BSLASHnewacronym] = ACTIONS(6361), - [anon_sym_BSLASHacrshort] = ACTIONS(6361), - [anon_sym_BSLASHAcrshort] = ACTIONS(6361), - [anon_sym_BSLASHACRshort] = ACTIONS(6361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6361), - [anon_sym_BSLASHacrlong] = ACTIONS(6361), - [anon_sym_BSLASHAcrlong] = ACTIONS(6361), - [anon_sym_BSLASHACRlong] = ACTIONS(6361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6361), - [anon_sym_BSLASHacrfull] = ACTIONS(6361), - [anon_sym_BSLASHAcrfull] = ACTIONS(6361), - [anon_sym_BSLASHACRfull] = ACTIONS(6361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6361), - [anon_sym_BSLASHacs] = ACTIONS(6361), - [anon_sym_BSLASHAcs] = ACTIONS(6361), - [anon_sym_BSLASHacsp] = ACTIONS(6361), - [anon_sym_BSLASHAcsp] = ACTIONS(6361), - [anon_sym_BSLASHacl] = ACTIONS(6361), - [anon_sym_BSLASHAcl] = ACTIONS(6361), - [anon_sym_BSLASHaclp] = ACTIONS(6361), - [anon_sym_BSLASHAclp] = ACTIONS(6361), - [anon_sym_BSLASHacf] = ACTIONS(6361), - [anon_sym_BSLASHAcf] = ACTIONS(6361), - [anon_sym_BSLASHacfp] = ACTIONS(6361), - [anon_sym_BSLASHAcfp] = ACTIONS(6361), - [anon_sym_BSLASHac] = ACTIONS(6361), - [anon_sym_BSLASHAc] = ACTIONS(6361), - [anon_sym_BSLASHacp] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6361), - [anon_sym_BSLASHcolor] = ACTIONS(6361), - [anon_sym_BSLASHcolorbox] = ACTIONS(6361), - [anon_sym_BSLASHtextcolor] = ACTIONS(6361), - [anon_sym_BSLASHpagecolor] = ACTIONS(6361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6361), - [anon_sym_BSLASHtext] = ACTIONS(6361), - [anon_sym_BSLASHintertext] = ACTIONS(6361), - [anon_sym_shortintertext] = ACTIONS(6361), - }, - [1075] = { - [sym_command_name] = ACTIONS(6365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6367), - [anon_sym_RBRACK] = ACTIONS(6367), - [anon_sym_COMMA] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(6367), - [anon_sym_LPAREN] = ACTIONS(6367), - [anon_sym_RPAREN] = ACTIONS(6367), - [anon_sym_BSLASHpart] = ACTIONS(6365), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddpart] = ACTIONS(6365), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6367), - [anon_sym_BSLASHchapter] = ACTIONS(6365), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddchap] = ACTIONS(6365), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsection] = ACTIONS(6365), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddsec] = ACTIONS(6365), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubsection] = ACTIONS(6365), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6365), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHparagraph] = ACTIONS(6365), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6365), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6367), - [anon_sym_BSLASHitem] = ACTIONS(6365), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6367), - [anon_sym_LBRACE] = ACTIONS(6367), - [sym_word] = ACTIONS(6365), - [sym_placeholder] = ACTIONS(6367), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6367), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_LT] = ACTIONS(6365), - [anon_sym_GT] = ACTIONS(6365), - [anon_sym_BANG] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_SQUOTE] = ACTIONS(6365), - [anon_sym__] = ACTIONS(6367), - [anon_sym_CARET] = ACTIONS(6367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6367), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6367), - [anon_sym_DOLLAR] = ACTIONS(6365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6367), - [anon_sym_BSLASHbegin] = ACTIONS(6365), - [anon_sym_BSLASHend] = ACTIONS(6365), - [anon_sym_BSLASHtitle] = ACTIONS(6365), - [anon_sym_BSLASHauthor] = ACTIONS(6365), - [anon_sym_BSLASHusepackage] = ACTIONS(6365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6365), - [anon_sym_BSLASHinclude] = ACTIONS(6365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6365), - [anon_sym_BSLASHinput] = ACTIONS(6365), - [anon_sym_BSLASHsubfile] = ACTIONS(6365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6365), - [anon_sym_BSLASHbibliography] = ACTIONS(6365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6365), - [anon_sym_BSLASHincludesvg] = ACTIONS(6365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6365), - [anon_sym_BSLASHimport] = ACTIONS(6365), - [anon_sym_BSLASHsubimport] = ACTIONS(6365), - [anon_sym_BSLASHinputfrom] = ACTIONS(6365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6365), - [anon_sym_BSLASHincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHcaption] = ACTIONS(6365), - [anon_sym_BSLASHcite] = ACTIONS(6365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCite] = ACTIONS(6365), - [anon_sym_BSLASHnocite] = ACTIONS(6365), - [anon_sym_BSLASHcitet] = ACTIONS(6365), - [anon_sym_BSLASHcitep] = ACTIONS(6365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteauthor] = ACTIONS(6365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitetitle] = ACTIONS(6365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteyear] = ACTIONS(6365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitedate] = ACTIONS(6365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteurl] = ACTIONS(6365), - [anon_sym_BSLASHfullcite] = ACTIONS(6365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6365), - [anon_sym_BSLASHcitealt] = ACTIONS(6365), - [anon_sym_BSLASHcitealp] = ACTIONS(6365), - [anon_sym_BSLASHcitetext] = ACTIONS(6365), - [anon_sym_BSLASHparencite] = ACTIONS(6365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHParencite] = ACTIONS(6365), - [anon_sym_BSLASHfootcite] = ACTIONS(6365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6365), - [anon_sym_BSLASHtextcite] = ACTIONS(6365), - [anon_sym_BSLASHTextcite] = ACTIONS(6365), - [anon_sym_BSLASHsmartcite] = ACTIONS(6365), - [anon_sym_BSLASHSmartcite] = ACTIONS(6365), - [anon_sym_BSLASHsupercite] = ACTIONS(6365), - [anon_sym_BSLASHautocite] = ACTIONS(6365), - [anon_sym_BSLASHAutocite] = ACTIONS(6365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHvolcite] = ACTIONS(6365), - [anon_sym_BSLASHVolcite] = ACTIONS(6365), - [anon_sym_BSLASHpvolcite] = ACTIONS(6365), - [anon_sym_BSLASHPvolcite] = ACTIONS(6365), - [anon_sym_BSLASHfvolcite] = ACTIONS(6365), - [anon_sym_BSLASHftvolcite] = ACTIONS(6365), - [anon_sym_BSLASHsvolcite] = ACTIONS(6365), - [anon_sym_BSLASHSvolcite] = ACTIONS(6365), - [anon_sym_BSLASHtvolcite] = ACTIONS(6365), - [anon_sym_BSLASHTvolcite] = ACTIONS(6365), - [anon_sym_BSLASHavolcite] = ACTIONS(6365), - [anon_sym_BSLASHAvolcite] = ACTIONS(6365), - [anon_sym_BSLASHnotecite] = ACTIONS(6365), - [anon_sym_BSLASHNotecite] = ACTIONS(6365), - [anon_sym_BSLASHpnotecite] = ACTIONS(6365), - [anon_sym_BSLASHPnotecite] = ACTIONS(6365), - [anon_sym_BSLASHfnotecite] = ACTIONS(6365), - [anon_sym_BSLASHlabel] = ACTIONS(6365), - [anon_sym_BSLASHref] = ACTIONS(6365), - [anon_sym_BSLASHeqref] = ACTIONS(6365), - [anon_sym_BSLASHvref] = ACTIONS(6365), - [anon_sym_BSLASHVref] = ACTIONS(6365), - [anon_sym_BSLASHautoref] = ACTIONS(6365), - [anon_sym_BSLASHpageref] = ACTIONS(6365), - [anon_sym_BSLASHcref] = ACTIONS(6365), - [anon_sym_BSLASHCref] = ACTIONS(6365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnameCref] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHlabelcref] = ACTIONS(6365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCrefrange] = ACTIONS(6365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnewlabel] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6367), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHdef] = ACTIONS(6365), - [anon_sym_BSLASHlet] = ACTIONS(6365), - [anon_sym_BSLASHleft] = ACTIONS(6365), - [anon_sym_BSLASHbig] = ACTIONS(6365), - [anon_sym_BSLASHBig] = ACTIONS(6365), - [anon_sym_BSLASHbigg] = ACTIONS(6365), - [anon_sym_BSLASHBigg] = ACTIONS(6365), - [anon_sym_BSLASHbigl] = ACTIONS(6365), - [anon_sym_BSLASHBigl] = ACTIONS(6365), - [anon_sym_BSLASHbiggl] = ACTIONS(6365), - [anon_sym_BSLASHBiggl] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6365), - [anon_sym_BSLASHgls] = ACTIONS(6365), - [anon_sym_BSLASHGls] = ACTIONS(6365), - [anon_sym_BSLASHGLS] = ACTIONS(6365), - [anon_sym_BSLASHglspl] = ACTIONS(6365), - [anon_sym_BSLASHGlspl] = ACTIONS(6365), - [anon_sym_BSLASHGLSpl] = ACTIONS(6365), - [anon_sym_BSLASHglsdisp] = ACTIONS(6365), - [anon_sym_BSLASHglslink] = ACTIONS(6365), - [anon_sym_BSLASHglstext] = ACTIONS(6365), - [anon_sym_BSLASHGlstext] = ACTIONS(6365), - [anon_sym_BSLASHGLStext] = ACTIONS(6365), - [anon_sym_BSLASHglsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6365), - [anon_sym_BSLASHglsplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSplural] = ACTIONS(6365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHglsname] = ACTIONS(6365), - [anon_sym_BSLASHGlsname] = ACTIONS(6365), - [anon_sym_BSLASHGLSname] = ACTIONS(6365), - [anon_sym_BSLASHglssymbol] = ACTIONS(6365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6365), - [anon_sym_BSLASHglsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6365), - [anon_sym_BSLASHglsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6365), - [anon_sym_BSLASHglsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6365), - [anon_sym_BSLASHglsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6365), - [anon_sym_BSLASHglsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6365), - [anon_sym_BSLASHnewacronym] = ACTIONS(6365), - [anon_sym_BSLASHacrshort] = ACTIONS(6365), - [anon_sym_BSLASHAcrshort] = ACTIONS(6365), - [anon_sym_BSLASHACRshort] = ACTIONS(6365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6365), - [anon_sym_BSLASHacrlong] = ACTIONS(6365), - [anon_sym_BSLASHAcrlong] = ACTIONS(6365), - [anon_sym_BSLASHACRlong] = ACTIONS(6365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6365), - [anon_sym_BSLASHacrfull] = ACTIONS(6365), - [anon_sym_BSLASHAcrfull] = ACTIONS(6365), - [anon_sym_BSLASHACRfull] = ACTIONS(6365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6365), - [anon_sym_BSLASHacs] = ACTIONS(6365), - [anon_sym_BSLASHAcs] = ACTIONS(6365), - [anon_sym_BSLASHacsp] = ACTIONS(6365), - [anon_sym_BSLASHAcsp] = ACTIONS(6365), - [anon_sym_BSLASHacl] = ACTIONS(6365), - [anon_sym_BSLASHAcl] = ACTIONS(6365), - [anon_sym_BSLASHaclp] = ACTIONS(6365), - [anon_sym_BSLASHAclp] = ACTIONS(6365), - [anon_sym_BSLASHacf] = ACTIONS(6365), - [anon_sym_BSLASHAcf] = ACTIONS(6365), - [anon_sym_BSLASHacfp] = ACTIONS(6365), - [anon_sym_BSLASHAcfp] = ACTIONS(6365), - [anon_sym_BSLASHac] = ACTIONS(6365), - [anon_sym_BSLASHAc] = ACTIONS(6365), - [anon_sym_BSLASHacp] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6365), - [anon_sym_BSLASHcolor] = ACTIONS(6365), - [anon_sym_BSLASHcolorbox] = ACTIONS(6365), - [anon_sym_BSLASHtextcolor] = ACTIONS(6365), - [anon_sym_BSLASHpagecolor] = ACTIONS(6365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6365), - [anon_sym_BSLASHtext] = ACTIONS(6365), - [anon_sym_BSLASHintertext] = ACTIONS(6365), - [anon_sym_shortintertext] = ACTIONS(6365), - }, - [1076] = { - [sym_command_name] = ACTIONS(6369), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6371), - [anon_sym_RBRACK] = ACTIONS(6371), - [anon_sym_COMMA] = ACTIONS(6371), - [anon_sym_EQ] = ACTIONS(6371), - [anon_sym_LPAREN] = ACTIONS(6371), - [anon_sym_RPAREN] = ACTIONS(6371), - [anon_sym_BSLASHpart] = ACTIONS(6369), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddpart] = ACTIONS(6369), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6371), - [anon_sym_BSLASHchapter] = ACTIONS(6369), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddchap] = ACTIONS(6369), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsection] = ACTIONS(6369), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddsec] = ACTIONS(6369), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubsection] = ACTIONS(6369), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6369), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHparagraph] = ACTIONS(6369), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6369), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6371), - [anon_sym_BSLASHitem] = ACTIONS(6369), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6371), - [anon_sym_LBRACE] = ACTIONS(6371), - [sym_word] = ACTIONS(6369), - [sym_placeholder] = ACTIONS(6371), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6371), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_LT] = ACTIONS(6369), - [anon_sym_GT] = ACTIONS(6369), - [anon_sym_BANG] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_SQUOTE] = ACTIONS(6369), - [anon_sym__] = ACTIONS(6371), - [anon_sym_CARET] = ACTIONS(6371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6371), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6371), - [anon_sym_DOLLAR] = ACTIONS(6369), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6371), - [anon_sym_BSLASHbegin] = ACTIONS(6369), - [anon_sym_BSLASHend] = ACTIONS(6369), - [anon_sym_BSLASHtitle] = ACTIONS(6369), - [anon_sym_BSLASHauthor] = ACTIONS(6369), - [anon_sym_BSLASHusepackage] = ACTIONS(6369), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6369), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6369), - [anon_sym_BSLASHinclude] = ACTIONS(6369), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6369), - [anon_sym_BSLASHinput] = ACTIONS(6369), - [anon_sym_BSLASHsubfile] = ACTIONS(6369), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6369), - [anon_sym_BSLASHbibliography] = ACTIONS(6369), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6369), - [anon_sym_BSLASHincludesvg] = ACTIONS(6369), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6369), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6369), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6369), - [anon_sym_BSLASHimport] = ACTIONS(6369), - [anon_sym_BSLASHsubimport] = ACTIONS(6369), - [anon_sym_BSLASHinputfrom] = ACTIONS(6369), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6369), - [anon_sym_BSLASHincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHcaption] = ACTIONS(6369), - [anon_sym_BSLASHcite] = ACTIONS(6369), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCite] = ACTIONS(6369), - [anon_sym_BSLASHnocite] = ACTIONS(6369), - [anon_sym_BSLASHcitet] = ACTIONS(6369), - [anon_sym_BSLASHcitep] = ACTIONS(6369), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteauthor] = ACTIONS(6369), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6369), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitetitle] = ACTIONS(6369), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteyear] = ACTIONS(6369), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitedate] = ACTIONS(6369), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteurl] = ACTIONS(6369), - [anon_sym_BSLASHfullcite] = ACTIONS(6369), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6369), - [anon_sym_BSLASHcitealt] = ACTIONS(6369), - [anon_sym_BSLASHcitealp] = ACTIONS(6369), - [anon_sym_BSLASHcitetext] = ACTIONS(6369), - [anon_sym_BSLASHparencite] = ACTIONS(6369), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHParencite] = ACTIONS(6369), - [anon_sym_BSLASHfootcite] = ACTIONS(6369), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6369), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6369), - [anon_sym_BSLASHtextcite] = ACTIONS(6369), - [anon_sym_BSLASHTextcite] = ACTIONS(6369), - [anon_sym_BSLASHsmartcite] = ACTIONS(6369), - [anon_sym_BSLASHSmartcite] = ACTIONS(6369), - [anon_sym_BSLASHsupercite] = ACTIONS(6369), - [anon_sym_BSLASHautocite] = ACTIONS(6369), - [anon_sym_BSLASHAutocite] = ACTIONS(6369), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHvolcite] = ACTIONS(6369), - [anon_sym_BSLASHVolcite] = ACTIONS(6369), - [anon_sym_BSLASHpvolcite] = ACTIONS(6369), - [anon_sym_BSLASHPvolcite] = ACTIONS(6369), - [anon_sym_BSLASHfvolcite] = ACTIONS(6369), - [anon_sym_BSLASHftvolcite] = ACTIONS(6369), - [anon_sym_BSLASHsvolcite] = ACTIONS(6369), - [anon_sym_BSLASHSvolcite] = ACTIONS(6369), - [anon_sym_BSLASHtvolcite] = ACTIONS(6369), - [anon_sym_BSLASHTvolcite] = ACTIONS(6369), - [anon_sym_BSLASHavolcite] = ACTIONS(6369), - [anon_sym_BSLASHAvolcite] = ACTIONS(6369), - [anon_sym_BSLASHnotecite] = ACTIONS(6369), - [anon_sym_BSLASHNotecite] = ACTIONS(6369), - [anon_sym_BSLASHpnotecite] = ACTIONS(6369), - [anon_sym_BSLASHPnotecite] = ACTIONS(6369), - [anon_sym_BSLASHfnotecite] = ACTIONS(6369), - [anon_sym_BSLASHlabel] = ACTIONS(6369), - [anon_sym_BSLASHref] = ACTIONS(6369), - [anon_sym_BSLASHeqref] = ACTIONS(6369), - [anon_sym_BSLASHvref] = ACTIONS(6369), - [anon_sym_BSLASHVref] = ACTIONS(6369), - [anon_sym_BSLASHautoref] = ACTIONS(6369), - [anon_sym_BSLASHpageref] = ACTIONS(6369), - [anon_sym_BSLASHcref] = ACTIONS(6369), - [anon_sym_BSLASHCref] = ACTIONS(6369), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnameCref] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHlabelcref] = ACTIONS(6369), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCrefrange] = ACTIONS(6369), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnewlabel] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6369), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6369), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6371), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHdef] = ACTIONS(6369), - [anon_sym_BSLASHlet] = ACTIONS(6369), - [anon_sym_BSLASHleft] = ACTIONS(6369), - [anon_sym_BSLASHbig] = ACTIONS(6369), - [anon_sym_BSLASHBig] = ACTIONS(6369), - [anon_sym_BSLASHbigg] = ACTIONS(6369), - [anon_sym_BSLASHBigg] = ACTIONS(6369), - [anon_sym_BSLASHbigl] = ACTIONS(6369), - [anon_sym_BSLASHBigl] = ACTIONS(6369), - [anon_sym_BSLASHbiggl] = ACTIONS(6369), - [anon_sym_BSLASHBiggl] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6369), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6369), - [anon_sym_BSLASHgls] = ACTIONS(6369), - [anon_sym_BSLASHGls] = ACTIONS(6369), - [anon_sym_BSLASHGLS] = ACTIONS(6369), - [anon_sym_BSLASHglspl] = ACTIONS(6369), - [anon_sym_BSLASHGlspl] = ACTIONS(6369), - [anon_sym_BSLASHGLSpl] = ACTIONS(6369), - [anon_sym_BSLASHglsdisp] = ACTIONS(6369), - [anon_sym_BSLASHglslink] = ACTIONS(6369), - [anon_sym_BSLASHglstext] = ACTIONS(6369), - [anon_sym_BSLASHGlstext] = ACTIONS(6369), - [anon_sym_BSLASHGLStext] = ACTIONS(6369), - [anon_sym_BSLASHglsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6369), - [anon_sym_BSLASHglsplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSplural] = ACTIONS(6369), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHglsname] = ACTIONS(6369), - [anon_sym_BSLASHGlsname] = ACTIONS(6369), - [anon_sym_BSLASHGLSname] = ACTIONS(6369), - [anon_sym_BSLASHglssymbol] = ACTIONS(6369), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6369), - [anon_sym_BSLASHglsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6369), - [anon_sym_BSLASHglsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6369), - [anon_sym_BSLASHglsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6369), - [anon_sym_BSLASHglsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6369), - [anon_sym_BSLASHglsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6369), - [anon_sym_BSLASHnewacronym] = ACTIONS(6369), - [anon_sym_BSLASHacrshort] = ACTIONS(6369), - [anon_sym_BSLASHAcrshort] = ACTIONS(6369), - [anon_sym_BSLASHACRshort] = ACTIONS(6369), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6369), - [anon_sym_BSLASHacrlong] = ACTIONS(6369), - [anon_sym_BSLASHAcrlong] = ACTIONS(6369), - [anon_sym_BSLASHACRlong] = ACTIONS(6369), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6369), - [anon_sym_BSLASHacrfull] = ACTIONS(6369), - [anon_sym_BSLASHAcrfull] = ACTIONS(6369), - [anon_sym_BSLASHACRfull] = ACTIONS(6369), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6369), - [anon_sym_BSLASHacs] = ACTIONS(6369), - [anon_sym_BSLASHAcs] = ACTIONS(6369), - [anon_sym_BSLASHacsp] = ACTIONS(6369), - [anon_sym_BSLASHAcsp] = ACTIONS(6369), - [anon_sym_BSLASHacl] = ACTIONS(6369), - [anon_sym_BSLASHAcl] = ACTIONS(6369), - [anon_sym_BSLASHaclp] = ACTIONS(6369), - [anon_sym_BSLASHAclp] = ACTIONS(6369), - [anon_sym_BSLASHacf] = ACTIONS(6369), - [anon_sym_BSLASHAcf] = ACTIONS(6369), - [anon_sym_BSLASHacfp] = ACTIONS(6369), - [anon_sym_BSLASHAcfp] = ACTIONS(6369), - [anon_sym_BSLASHac] = ACTIONS(6369), - [anon_sym_BSLASHAc] = ACTIONS(6369), - [anon_sym_BSLASHacp] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6369), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6369), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6369), - [anon_sym_BSLASHcolor] = ACTIONS(6369), - [anon_sym_BSLASHcolorbox] = ACTIONS(6369), - [anon_sym_BSLASHtextcolor] = ACTIONS(6369), - [anon_sym_BSLASHpagecolor] = ACTIONS(6369), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6369), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6369), - [anon_sym_BSLASHtext] = ACTIONS(6369), - [anon_sym_BSLASHintertext] = ACTIONS(6369), - [anon_sym_shortintertext] = ACTIONS(6369), - }, - [1077] = { - [sym_command_name] = ACTIONS(6373), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6375), - [anon_sym_RBRACK] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_EQ] = ACTIONS(6375), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_RPAREN] = ACTIONS(6375), - [anon_sym_BSLASHpart] = ACTIONS(6373), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddpart] = ACTIONS(6373), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6375), - [anon_sym_BSLASHchapter] = ACTIONS(6373), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddchap] = ACTIONS(6373), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsection] = ACTIONS(6373), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddsec] = ACTIONS(6373), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubsection] = ACTIONS(6373), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6373), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHparagraph] = ACTIONS(6373), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6373), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6375), - [anon_sym_BSLASHitem] = ACTIONS(6373), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6375), - [anon_sym_LBRACE] = ACTIONS(6375), - [sym_word] = ACTIONS(6373), - [sym_placeholder] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6373), - [anon_sym_GT] = ACTIONS(6373), - [anon_sym_BANG] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_SQUOTE] = ACTIONS(6373), - [anon_sym__] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6375), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6375), - [anon_sym_DOLLAR] = ACTIONS(6373), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6375), - [anon_sym_BSLASHbegin] = ACTIONS(6373), - [anon_sym_BSLASHend] = ACTIONS(6373), - [anon_sym_BSLASHtitle] = ACTIONS(6373), - [anon_sym_BSLASHauthor] = ACTIONS(6373), - [anon_sym_BSLASHusepackage] = ACTIONS(6373), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6373), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6373), - [anon_sym_BSLASHinclude] = ACTIONS(6373), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6373), - [anon_sym_BSLASHinput] = ACTIONS(6373), - [anon_sym_BSLASHsubfile] = ACTIONS(6373), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6373), - [anon_sym_BSLASHbibliography] = ACTIONS(6373), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6373), - [anon_sym_BSLASHincludesvg] = ACTIONS(6373), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6373), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6373), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6373), - [anon_sym_BSLASHimport] = ACTIONS(6373), - [anon_sym_BSLASHsubimport] = ACTIONS(6373), - [anon_sym_BSLASHinputfrom] = ACTIONS(6373), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6373), - [anon_sym_BSLASHincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHcaption] = ACTIONS(6373), - [anon_sym_BSLASHcite] = ACTIONS(6373), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCite] = ACTIONS(6373), - [anon_sym_BSLASHnocite] = ACTIONS(6373), - [anon_sym_BSLASHcitet] = ACTIONS(6373), - [anon_sym_BSLASHcitep] = ACTIONS(6373), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteauthor] = ACTIONS(6373), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6373), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitetitle] = ACTIONS(6373), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteyear] = ACTIONS(6373), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitedate] = ACTIONS(6373), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteurl] = ACTIONS(6373), - [anon_sym_BSLASHfullcite] = ACTIONS(6373), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6373), - [anon_sym_BSLASHcitealt] = ACTIONS(6373), - [anon_sym_BSLASHcitealp] = ACTIONS(6373), - [anon_sym_BSLASHcitetext] = ACTIONS(6373), - [anon_sym_BSLASHparencite] = ACTIONS(6373), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHParencite] = ACTIONS(6373), - [anon_sym_BSLASHfootcite] = ACTIONS(6373), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6373), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6373), - [anon_sym_BSLASHtextcite] = ACTIONS(6373), - [anon_sym_BSLASHTextcite] = ACTIONS(6373), - [anon_sym_BSLASHsmartcite] = ACTIONS(6373), - [anon_sym_BSLASHSmartcite] = ACTIONS(6373), - [anon_sym_BSLASHsupercite] = ACTIONS(6373), - [anon_sym_BSLASHautocite] = ACTIONS(6373), - [anon_sym_BSLASHAutocite] = ACTIONS(6373), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHvolcite] = ACTIONS(6373), - [anon_sym_BSLASHVolcite] = ACTIONS(6373), - [anon_sym_BSLASHpvolcite] = ACTIONS(6373), - [anon_sym_BSLASHPvolcite] = ACTIONS(6373), - [anon_sym_BSLASHfvolcite] = ACTIONS(6373), - [anon_sym_BSLASHftvolcite] = ACTIONS(6373), - [anon_sym_BSLASHsvolcite] = ACTIONS(6373), - [anon_sym_BSLASHSvolcite] = ACTIONS(6373), - [anon_sym_BSLASHtvolcite] = ACTIONS(6373), - [anon_sym_BSLASHTvolcite] = ACTIONS(6373), - [anon_sym_BSLASHavolcite] = ACTIONS(6373), - [anon_sym_BSLASHAvolcite] = ACTIONS(6373), - [anon_sym_BSLASHnotecite] = ACTIONS(6373), - [anon_sym_BSLASHNotecite] = ACTIONS(6373), - [anon_sym_BSLASHpnotecite] = ACTIONS(6373), - [anon_sym_BSLASHPnotecite] = ACTIONS(6373), - [anon_sym_BSLASHfnotecite] = ACTIONS(6373), - [anon_sym_BSLASHlabel] = ACTIONS(6373), - [anon_sym_BSLASHref] = ACTIONS(6373), - [anon_sym_BSLASHeqref] = ACTIONS(6373), - [anon_sym_BSLASHvref] = ACTIONS(6373), - [anon_sym_BSLASHVref] = ACTIONS(6373), - [anon_sym_BSLASHautoref] = ACTIONS(6373), - [anon_sym_BSLASHpageref] = ACTIONS(6373), - [anon_sym_BSLASHcref] = ACTIONS(6373), - [anon_sym_BSLASHCref] = ACTIONS(6373), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnameCref] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHlabelcref] = ACTIONS(6373), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCrefrange] = ACTIONS(6373), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnewlabel] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6373), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6373), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6375), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHdef] = ACTIONS(6373), - [anon_sym_BSLASHlet] = ACTIONS(6373), - [anon_sym_BSLASHleft] = ACTIONS(6373), - [anon_sym_BSLASHbig] = ACTIONS(6373), - [anon_sym_BSLASHBig] = ACTIONS(6373), - [anon_sym_BSLASHbigg] = ACTIONS(6373), - [anon_sym_BSLASHBigg] = ACTIONS(6373), - [anon_sym_BSLASHbigl] = ACTIONS(6373), - [anon_sym_BSLASHBigl] = ACTIONS(6373), - [anon_sym_BSLASHbiggl] = ACTIONS(6373), - [anon_sym_BSLASHBiggl] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6373), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6373), - [anon_sym_BSLASHgls] = ACTIONS(6373), - [anon_sym_BSLASHGls] = ACTIONS(6373), - [anon_sym_BSLASHGLS] = ACTIONS(6373), - [anon_sym_BSLASHglspl] = ACTIONS(6373), - [anon_sym_BSLASHGlspl] = ACTIONS(6373), - [anon_sym_BSLASHGLSpl] = ACTIONS(6373), - [anon_sym_BSLASHglsdisp] = ACTIONS(6373), - [anon_sym_BSLASHglslink] = ACTIONS(6373), - [anon_sym_BSLASHglstext] = ACTIONS(6373), - [anon_sym_BSLASHGlstext] = ACTIONS(6373), - [anon_sym_BSLASHGLStext] = ACTIONS(6373), - [anon_sym_BSLASHglsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6373), - [anon_sym_BSLASHglsplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSplural] = ACTIONS(6373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHglsname] = ACTIONS(6373), - [anon_sym_BSLASHGlsname] = ACTIONS(6373), - [anon_sym_BSLASHGLSname] = ACTIONS(6373), - [anon_sym_BSLASHglssymbol] = ACTIONS(6373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6373), - [anon_sym_BSLASHglsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6373), - [anon_sym_BSLASHglsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6373), - [anon_sym_BSLASHglsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6373), - [anon_sym_BSLASHglsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6373), - [anon_sym_BSLASHglsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6373), - [anon_sym_BSLASHnewacronym] = ACTIONS(6373), - [anon_sym_BSLASHacrshort] = ACTIONS(6373), - [anon_sym_BSLASHAcrshort] = ACTIONS(6373), - [anon_sym_BSLASHACRshort] = ACTIONS(6373), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6373), - [anon_sym_BSLASHacrlong] = ACTIONS(6373), - [anon_sym_BSLASHAcrlong] = ACTIONS(6373), - [anon_sym_BSLASHACRlong] = ACTIONS(6373), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6373), - [anon_sym_BSLASHacrfull] = ACTIONS(6373), - [anon_sym_BSLASHAcrfull] = ACTIONS(6373), - [anon_sym_BSLASHACRfull] = ACTIONS(6373), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6373), - [anon_sym_BSLASHacs] = ACTIONS(6373), - [anon_sym_BSLASHAcs] = ACTIONS(6373), - [anon_sym_BSLASHacsp] = ACTIONS(6373), - [anon_sym_BSLASHAcsp] = ACTIONS(6373), - [anon_sym_BSLASHacl] = ACTIONS(6373), - [anon_sym_BSLASHAcl] = ACTIONS(6373), - [anon_sym_BSLASHaclp] = ACTIONS(6373), - [anon_sym_BSLASHAclp] = ACTIONS(6373), - [anon_sym_BSLASHacf] = ACTIONS(6373), - [anon_sym_BSLASHAcf] = ACTIONS(6373), - [anon_sym_BSLASHacfp] = ACTIONS(6373), - [anon_sym_BSLASHAcfp] = ACTIONS(6373), - [anon_sym_BSLASHac] = ACTIONS(6373), - [anon_sym_BSLASHAc] = ACTIONS(6373), - [anon_sym_BSLASHacp] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6373), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6373), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6373), - [anon_sym_BSLASHcolor] = ACTIONS(6373), - [anon_sym_BSLASHcolorbox] = ACTIONS(6373), - [anon_sym_BSLASHtextcolor] = ACTIONS(6373), - [anon_sym_BSLASHpagecolor] = ACTIONS(6373), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6373), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6373), - [anon_sym_BSLASHtext] = ACTIONS(6373), - [anon_sym_BSLASHintertext] = ACTIONS(6373), - [anon_sym_shortintertext] = ACTIONS(6373), - }, - [1078] = { - [sym_command_name] = ACTIONS(6377), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6379), - [anon_sym_RBRACK] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_EQ] = ACTIONS(6379), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_BSLASHpart] = ACTIONS(6377), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddpart] = ACTIONS(6377), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6379), - [anon_sym_BSLASHchapter] = ACTIONS(6377), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddchap] = ACTIONS(6377), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsection] = ACTIONS(6377), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddsec] = ACTIONS(6377), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubsection] = ACTIONS(6377), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6377), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHparagraph] = ACTIONS(6377), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6377), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6379), - [anon_sym_BSLASHitem] = ACTIONS(6377), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6379), - [anon_sym_LBRACE] = ACTIONS(6379), - [sym_word] = ACTIONS(6377), - [sym_placeholder] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_SQUOTE] = ACTIONS(6377), - [anon_sym__] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6379), - [anon_sym_DOLLAR] = ACTIONS(6377), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6379), - [anon_sym_BSLASHbegin] = ACTIONS(6377), - [anon_sym_BSLASHend] = ACTIONS(6377), - [anon_sym_BSLASHtitle] = ACTIONS(6377), - [anon_sym_BSLASHauthor] = ACTIONS(6377), - [anon_sym_BSLASHusepackage] = ACTIONS(6377), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6377), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6377), - [anon_sym_BSLASHinclude] = ACTIONS(6377), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6377), - [anon_sym_BSLASHinput] = ACTIONS(6377), - [anon_sym_BSLASHsubfile] = ACTIONS(6377), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6377), - [anon_sym_BSLASHbibliography] = ACTIONS(6377), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6377), - [anon_sym_BSLASHincludesvg] = ACTIONS(6377), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6377), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6377), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6377), - [anon_sym_BSLASHimport] = ACTIONS(6377), - [anon_sym_BSLASHsubimport] = ACTIONS(6377), - [anon_sym_BSLASHinputfrom] = ACTIONS(6377), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6377), - [anon_sym_BSLASHincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHcaption] = ACTIONS(6377), - [anon_sym_BSLASHcite] = ACTIONS(6377), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCite] = ACTIONS(6377), - [anon_sym_BSLASHnocite] = ACTIONS(6377), - [anon_sym_BSLASHcitet] = ACTIONS(6377), - [anon_sym_BSLASHcitep] = ACTIONS(6377), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteauthor] = ACTIONS(6377), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6377), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitetitle] = ACTIONS(6377), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteyear] = ACTIONS(6377), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitedate] = ACTIONS(6377), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteurl] = ACTIONS(6377), - [anon_sym_BSLASHfullcite] = ACTIONS(6377), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6377), - [anon_sym_BSLASHcitealt] = ACTIONS(6377), - [anon_sym_BSLASHcitealp] = ACTIONS(6377), - [anon_sym_BSLASHcitetext] = ACTIONS(6377), - [anon_sym_BSLASHparencite] = ACTIONS(6377), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHParencite] = ACTIONS(6377), - [anon_sym_BSLASHfootcite] = ACTIONS(6377), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6377), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6377), - [anon_sym_BSLASHtextcite] = ACTIONS(6377), - [anon_sym_BSLASHTextcite] = ACTIONS(6377), - [anon_sym_BSLASHsmartcite] = ACTIONS(6377), - [anon_sym_BSLASHSmartcite] = ACTIONS(6377), - [anon_sym_BSLASHsupercite] = ACTIONS(6377), - [anon_sym_BSLASHautocite] = ACTIONS(6377), - [anon_sym_BSLASHAutocite] = ACTIONS(6377), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHvolcite] = ACTIONS(6377), - [anon_sym_BSLASHVolcite] = ACTIONS(6377), - [anon_sym_BSLASHpvolcite] = ACTIONS(6377), - [anon_sym_BSLASHPvolcite] = ACTIONS(6377), - [anon_sym_BSLASHfvolcite] = ACTIONS(6377), - [anon_sym_BSLASHftvolcite] = ACTIONS(6377), - [anon_sym_BSLASHsvolcite] = ACTIONS(6377), - [anon_sym_BSLASHSvolcite] = ACTIONS(6377), - [anon_sym_BSLASHtvolcite] = ACTIONS(6377), - [anon_sym_BSLASHTvolcite] = ACTIONS(6377), - [anon_sym_BSLASHavolcite] = ACTIONS(6377), - [anon_sym_BSLASHAvolcite] = ACTIONS(6377), - [anon_sym_BSLASHnotecite] = ACTIONS(6377), - [anon_sym_BSLASHNotecite] = ACTIONS(6377), - [anon_sym_BSLASHpnotecite] = ACTIONS(6377), - [anon_sym_BSLASHPnotecite] = ACTIONS(6377), - [anon_sym_BSLASHfnotecite] = ACTIONS(6377), - [anon_sym_BSLASHlabel] = ACTIONS(6377), - [anon_sym_BSLASHref] = ACTIONS(6377), - [anon_sym_BSLASHeqref] = ACTIONS(6377), - [anon_sym_BSLASHvref] = ACTIONS(6377), - [anon_sym_BSLASHVref] = ACTIONS(6377), - [anon_sym_BSLASHautoref] = ACTIONS(6377), - [anon_sym_BSLASHpageref] = ACTIONS(6377), - [anon_sym_BSLASHcref] = ACTIONS(6377), - [anon_sym_BSLASHCref] = ACTIONS(6377), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnameCref] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHlabelcref] = ACTIONS(6377), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCrefrange] = ACTIONS(6377), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnewlabel] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6377), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6377), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6379), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHdef] = ACTIONS(6377), - [anon_sym_BSLASHlet] = ACTIONS(6377), - [anon_sym_BSLASHleft] = ACTIONS(6377), - [anon_sym_BSLASHbig] = ACTIONS(6377), - [anon_sym_BSLASHBig] = ACTIONS(6377), - [anon_sym_BSLASHbigg] = ACTIONS(6377), - [anon_sym_BSLASHBigg] = ACTIONS(6377), - [anon_sym_BSLASHbigl] = ACTIONS(6377), - [anon_sym_BSLASHBigl] = ACTIONS(6377), - [anon_sym_BSLASHbiggl] = ACTIONS(6377), - [anon_sym_BSLASHBiggl] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6377), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6377), - [anon_sym_BSLASHgls] = ACTIONS(6377), - [anon_sym_BSLASHGls] = ACTIONS(6377), - [anon_sym_BSLASHGLS] = ACTIONS(6377), - [anon_sym_BSLASHglspl] = ACTIONS(6377), - [anon_sym_BSLASHGlspl] = ACTIONS(6377), - [anon_sym_BSLASHGLSpl] = ACTIONS(6377), - [anon_sym_BSLASHglsdisp] = ACTIONS(6377), - [anon_sym_BSLASHglslink] = ACTIONS(6377), - [anon_sym_BSLASHglstext] = ACTIONS(6377), - [anon_sym_BSLASHGlstext] = ACTIONS(6377), - [anon_sym_BSLASHGLStext] = ACTIONS(6377), - [anon_sym_BSLASHglsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6377), - [anon_sym_BSLASHglsplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSplural] = ACTIONS(6377), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHglsname] = ACTIONS(6377), - [anon_sym_BSLASHGlsname] = ACTIONS(6377), - [anon_sym_BSLASHGLSname] = ACTIONS(6377), - [anon_sym_BSLASHglssymbol] = ACTIONS(6377), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6377), - [anon_sym_BSLASHglsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6377), - [anon_sym_BSLASHglsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6377), - [anon_sym_BSLASHglsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6377), - [anon_sym_BSLASHglsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6377), - [anon_sym_BSLASHglsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6377), - [anon_sym_BSLASHnewacronym] = ACTIONS(6377), - [anon_sym_BSLASHacrshort] = ACTIONS(6377), - [anon_sym_BSLASHAcrshort] = ACTIONS(6377), - [anon_sym_BSLASHACRshort] = ACTIONS(6377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6377), - [anon_sym_BSLASHacrlong] = ACTIONS(6377), - [anon_sym_BSLASHAcrlong] = ACTIONS(6377), - [anon_sym_BSLASHACRlong] = ACTIONS(6377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6377), - [anon_sym_BSLASHacrfull] = ACTIONS(6377), - [anon_sym_BSLASHAcrfull] = ACTIONS(6377), - [anon_sym_BSLASHACRfull] = ACTIONS(6377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6377), - [anon_sym_BSLASHacs] = ACTIONS(6377), - [anon_sym_BSLASHAcs] = ACTIONS(6377), - [anon_sym_BSLASHacsp] = ACTIONS(6377), - [anon_sym_BSLASHAcsp] = ACTIONS(6377), - [anon_sym_BSLASHacl] = ACTIONS(6377), - [anon_sym_BSLASHAcl] = ACTIONS(6377), - [anon_sym_BSLASHaclp] = ACTIONS(6377), - [anon_sym_BSLASHAclp] = ACTIONS(6377), - [anon_sym_BSLASHacf] = ACTIONS(6377), - [anon_sym_BSLASHAcf] = ACTIONS(6377), - [anon_sym_BSLASHacfp] = ACTIONS(6377), - [anon_sym_BSLASHAcfp] = ACTIONS(6377), - [anon_sym_BSLASHac] = ACTIONS(6377), - [anon_sym_BSLASHAc] = ACTIONS(6377), - [anon_sym_BSLASHacp] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6377), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6377), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6377), - [anon_sym_BSLASHcolor] = ACTIONS(6377), - [anon_sym_BSLASHcolorbox] = ACTIONS(6377), - [anon_sym_BSLASHtextcolor] = ACTIONS(6377), - [anon_sym_BSLASHpagecolor] = ACTIONS(6377), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6377), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6377), - [anon_sym_BSLASHtext] = ACTIONS(6377), - [anon_sym_BSLASHintertext] = ACTIONS(6377), - [anon_sym_shortintertext] = ACTIONS(6377), - }, - [1079] = { - [sym_command_name] = ACTIONS(6381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(6383), - [anon_sym_RBRACK] = ACTIONS(6383), - [anon_sym_COMMA] = ACTIONS(6383), - [anon_sym_EQ] = ACTIONS(6383), - [anon_sym_LPAREN] = ACTIONS(6383), - [anon_sym_RPAREN] = ACTIONS(6383), - [anon_sym_BSLASHpart] = ACTIONS(6381), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddpart] = ACTIONS(6381), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6383), - [anon_sym_BSLASHchapter] = ACTIONS(6381), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddchap] = ACTIONS(6381), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsection] = ACTIONS(6381), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddsec] = ACTIONS(6381), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubsection] = ACTIONS(6381), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6381), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHparagraph] = ACTIONS(6381), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6381), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6383), - [anon_sym_BSLASHitem] = ACTIONS(6381), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6383), - [anon_sym_LBRACE] = ACTIONS(6383), - [sym_word] = ACTIONS(6381), - [sym_placeholder] = ACTIONS(6383), - [anon_sym_PLUS] = ACTIONS(6383), - [anon_sym_DASH] = ACTIONS(6383), - [anon_sym_STAR] = ACTIONS(6383), - [anon_sym_SLASH] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_COLON] = ACTIONS(6381), - [anon_sym_SQUOTE] = ACTIONS(6381), - [anon_sym__] = ACTIONS(6383), - [anon_sym_CARET] = ACTIONS(6383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6383), - [anon_sym_DOLLAR] = ACTIONS(6381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6383), - [anon_sym_BSLASHbegin] = ACTIONS(6381), - [anon_sym_BSLASHend] = ACTIONS(6381), - [anon_sym_BSLASHtitle] = ACTIONS(6381), - [anon_sym_BSLASHauthor] = ACTIONS(6381), - [anon_sym_BSLASHusepackage] = ACTIONS(6381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6381), - [anon_sym_BSLASHinclude] = ACTIONS(6381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6381), - [anon_sym_BSLASHinput] = ACTIONS(6381), - [anon_sym_BSLASHsubfile] = ACTIONS(6381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6381), - [anon_sym_BSLASHbibliography] = ACTIONS(6381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6381), - [anon_sym_BSLASHincludesvg] = ACTIONS(6381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6381), - [anon_sym_BSLASHimport] = ACTIONS(6381), - [anon_sym_BSLASHsubimport] = ACTIONS(6381), - [anon_sym_BSLASHinputfrom] = ACTIONS(6381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6381), - [anon_sym_BSLASHincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHcaption] = ACTIONS(6381), - [anon_sym_BSLASHcite] = ACTIONS(6381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCite] = ACTIONS(6381), - [anon_sym_BSLASHnocite] = ACTIONS(6381), - [anon_sym_BSLASHcitet] = ACTIONS(6381), - [anon_sym_BSLASHcitep] = ACTIONS(6381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteauthor] = ACTIONS(6381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitetitle] = ACTIONS(6381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteyear] = ACTIONS(6381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitedate] = ACTIONS(6381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteurl] = ACTIONS(6381), - [anon_sym_BSLASHfullcite] = ACTIONS(6381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6381), - [anon_sym_BSLASHcitealt] = ACTIONS(6381), - [anon_sym_BSLASHcitealp] = ACTIONS(6381), - [anon_sym_BSLASHcitetext] = ACTIONS(6381), - [anon_sym_BSLASHparencite] = ACTIONS(6381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHParencite] = ACTIONS(6381), - [anon_sym_BSLASHfootcite] = ACTIONS(6381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6381), - [anon_sym_BSLASHtextcite] = ACTIONS(6381), - [anon_sym_BSLASHTextcite] = ACTIONS(6381), - [anon_sym_BSLASHsmartcite] = ACTIONS(6381), - [anon_sym_BSLASHSmartcite] = ACTIONS(6381), - [anon_sym_BSLASHsupercite] = ACTIONS(6381), - [anon_sym_BSLASHautocite] = ACTIONS(6381), - [anon_sym_BSLASHAutocite] = ACTIONS(6381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHvolcite] = ACTIONS(6381), - [anon_sym_BSLASHVolcite] = ACTIONS(6381), - [anon_sym_BSLASHpvolcite] = ACTIONS(6381), - [anon_sym_BSLASHPvolcite] = ACTIONS(6381), - [anon_sym_BSLASHfvolcite] = ACTIONS(6381), - [anon_sym_BSLASHftvolcite] = ACTIONS(6381), - [anon_sym_BSLASHsvolcite] = ACTIONS(6381), - [anon_sym_BSLASHSvolcite] = ACTIONS(6381), - [anon_sym_BSLASHtvolcite] = ACTIONS(6381), - [anon_sym_BSLASHTvolcite] = ACTIONS(6381), - [anon_sym_BSLASHavolcite] = ACTIONS(6381), - [anon_sym_BSLASHAvolcite] = ACTIONS(6381), - [anon_sym_BSLASHnotecite] = ACTIONS(6381), - [anon_sym_BSLASHNotecite] = ACTIONS(6381), - [anon_sym_BSLASHpnotecite] = ACTIONS(6381), - [anon_sym_BSLASHPnotecite] = ACTIONS(6381), - [anon_sym_BSLASHfnotecite] = ACTIONS(6381), - [anon_sym_BSLASHlabel] = ACTIONS(6381), - [anon_sym_BSLASHref] = ACTIONS(6381), - [anon_sym_BSLASHeqref] = ACTIONS(6381), - [anon_sym_BSLASHvref] = ACTIONS(6381), - [anon_sym_BSLASHVref] = ACTIONS(6381), - [anon_sym_BSLASHautoref] = ACTIONS(6381), - [anon_sym_BSLASHpageref] = ACTIONS(6381), - [anon_sym_BSLASHcref] = ACTIONS(6381), - [anon_sym_BSLASHCref] = ACTIONS(6381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnameCref] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHlabelcref] = ACTIONS(6381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCrefrange] = ACTIONS(6381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnewlabel] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6383), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHdef] = ACTIONS(6381), - [anon_sym_BSLASHlet] = ACTIONS(6381), - [anon_sym_BSLASHleft] = ACTIONS(6381), - [anon_sym_BSLASHbig] = ACTIONS(6381), - [anon_sym_BSLASHBig] = ACTIONS(6381), - [anon_sym_BSLASHbigg] = ACTIONS(6381), - [anon_sym_BSLASHBigg] = ACTIONS(6381), - [anon_sym_BSLASHbigl] = ACTIONS(6381), - [anon_sym_BSLASHBigl] = ACTIONS(6381), - [anon_sym_BSLASHbiggl] = ACTIONS(6381), - [anon_sym_BSLASHBiggl] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6381), - [anon_sym_BSLASHgls] = ACTIONS(6381), - [anon_sym_BSLASHGls] = ACTIONS(6381), - [anon_sym_BSLASHGLS] = ACTIONS(6381), - [anon_sym_BSLASHglspl] = ACTIONS(6381), - [anon_sym_BSLASHGlspl] = ACTIONS(6381), - [anon_sym_BSLASHGLSpl] = ACTIONS(6381), - [anon_sym_BSLASHglsdisp] = ACTIONS(6381), - [anon_sym_BSLASHglslink] = ACTIONS(6381), - [anon_sym_BSLASHglstext] = ACTIONS(6381), - [anon_sym_BSLASHGlstext] = ACTIONS(6381), - [anon_sym_BSLASHGLStext] = ACTIONS(6381), - [anon_sym_BSLASHglsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6381), - [anon_sym_BSLASHglsplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSplural] = ACTIONS(6381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHglsname] = ACTIONS(6381), - [anon_sym_BSLASHGlsname] = ACTIONS(6381), - [anon_sym_BSLASHGLSname] = ACTIONS(6381), - [anon_sym_BSLASHglssymbol] = ACTIONS(6381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6381), - [anon_sym_BSLASHglsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6381), - [anon_sym_BSLASHglsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6381), - [anon_sym_BSLASHglsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6381), - [anon_sym_BSLASHglsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6381), - [anon_sym_BSLASHglsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6381), - [anon_sym_BSLASHnewacronym] = ACTIONS(6381), - [anon_sym_BSLASHacrshort] = ACTIONS(6381), - [anon_sym_BSLASHAcrshort] = ACTIONS(6381), - [anon_sym_BSLASHACRshort] = ACTIONS(6381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6381), - [anon_sym_BSLASHacrlong] = ACTIONS(6381), - [anon_sym_BSLASHAcrlong] = ACTIONS(6381), - [anon_sym_BSLASHACRlong] = ACTIONS(6381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6381), - [anon_sym_BSLASHacrfull] = ACTIONS(6381), - [anon_sym_BSLASHAcrfull] = ACTIONS(6381), - [anon_sym_BSLASHACRfull] = ACTIONS(6381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6381), - [anon_sym_BSLASHacs] = ACTIONS(6381), - [anon_sym_BSLASHAcs] = ACTIONS(6381), - [anon_sym_BSLASHacsp] = ACTIONS(6381), - [anon_sym_BSLASHAcsp] = ACTIONS(6381), - [anon_sym_BSLASHacl] = ACTIONS(6381), - [anon_sym_BSLASHAcl] = ACTIONS(6381), - [anon_sym_BSLASHaclp] = ACTIONS(6381), - [anon_sym_BSLASHAclp] = ACTIONS(6381), - [anon_sym_BSLASHacf] = ACTIONS(6381), - [anon_sym_BSLASHAcf] = ACTIONS(6381), - [anon_sym_BSLASHacfp] = ACTIONS(6381), - [anon_sym_BSLASHAcfp] = ACTIONS(6381), - [anon_sym_BSLASHac] = ACTIONS(6381), - [anon_sym_BSLASHAc] = ACTIONS(6381), - [anon_sym_BSLASHacp] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6381), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6381), - [anon_sym_BSLASHcolor] = ACTIONS(6381), - [anon_sym_BSLASHcolorbox] = ACTIONS(6381), - [anon_sym_BSLASHtextcolor] = ACTIONS(6381), - [anon_sym_BSLASHpagecolor] = ACTIONS(6381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6381), - [anon_sym_BSLASHtext] = ACTIONS(6381), - [anon_sym_BSLASHintertext] = ACTIONS(6381), - [anon_sym_shortintertext] = ACTIONS(6381), - }, - [1080] = { - [sym_command_name] = ACTIONS(6385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6387), - [anon_sym_RBRACK] = ACTIONS(6387), - [anon_sym_COMMA] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LPAREN] = ACTIONS(6387), - [anon_sym_RPAREN] = ACTIONS(6387), - [anon_sym_BSLASHpart] = ACTIONS(6385), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddpart] = ACTIONS(6385), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6387), - [anon_sym_BSLASHchapter] = ACTIONS(6385), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddchap] = ACTIONS(6385), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsection] = ACTIONS(6385), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddsec] = ACTIONS(6385), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubsection] = ACTIONS(6385), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6385), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHparagraph] = ACTIONS(6385), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6385), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6387), - [anon_sym_BSLASHitem] = ACTIONS(6385), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6387), - [sym_word] = ACTIONS(6385), - [sym_placeholder] = ACTIONS(6387), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6387), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_LT] = ACTIONS(6385), - [anon_sym_GT] = ACTIONS(6385), - [anon_sym_BANG] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_SQUOTE] = ACTIONS(6385), - [anon_sym__] = ACTIONS(6387), - [anon_sym_CARET] = ACTIONS(6387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6387), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6387), - [anon_sym_DOLLAR] = ACTIONS(6385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6387), - [anon_sym_BSLASHbegin] = ACTIONS(6385), - [anon_sym_BSLASHend] = ACTIONS(6385), - [anon_sym_BSLASHtitle] = ACTIONS(6385), - [anon_sym_BSLASHauthor] = ACTIONS(6385), - [anon_sym_BSLASHusepackage] = ACTIONS(6385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6385), - [anon_sym_BSLASHinclude] = ACTIONS(6385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6385), - [anon_sym_BSLASHinput] = ACTIONS(6385), - [anon_sym_BSLASHsubfile] = ACTIONS(6385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6385), - [anon_sym_BSLASHbibliography] = ACTIONS(6385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6385), - [anon_sym_BSLASHincludesvg] = ACTIONS(6385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6385), - [anon_sym_BSLASHimport] = ACTIONS(6385), - [anon_sym_BSLASHsubimport] = ACTIONS(6385), - [anon_sym_BSLASHinputfrom] = ACTIONS(6385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6385), - [anon_sym_BSLASHincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHcaption] = ACTIONS(6385), - [anon_sym_BSLASHcite] = ACTIONS(6385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCite] = ACTIONS(6385), - [anon_sym_BSLASHnocite] = ACTIONS(6385), - [anon_sym_BSLASHcitet] = ACTIONS(6385), - [anon_sym_BSLASHcitep] = ACTIONS(6385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteauthor] = ACTIONS(6385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitetitle] = ACTIONS(6385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteyear] = ACTIONS(6385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitedate] = ACTIONS(6385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteurl] = ACTIONS(6385), - [anon_sym_BSLASHfullcite] = ACTIONS(6385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6385), - [anon_sym_BSLASHcitealt] = ACTIONS(6385), - [anon_sym_BSLASHcitealp] = ACTIONS(6385), - [anon_sym_BSLASHcitetext] = ACTIONS(6385), - [anon_sym_BSLASHparencite] = ACTIONS(6385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHParencite] = ACTIONS(6385), - [anon_sym_BSLASHfootcite] = ACTIONS(6385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6385), - [anon_sym_BSLASHtextcite] = ACTIONS(6385), - [anon_sym_BSLASHTextcite] = ACTIONS(6385), - [anon_sym_BSLASHsmartcite] = ACTIONS(6385), - [anon_sym_BSLASHSmartcite] = ACTIONS(6385), - [anon_sym_BSLASHsupercite] = ACTIONS(6385), - [anon_sym_BSLASHautocite] = ACTIONS(6385), - [anon_sym_BSLASHAutocite] = ACTIONS(6385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHvolcite] = ACTIONS(6385), - [anon_sym_BSLASHVolcite] = ACTIONS(6385), - [anon_sym_BSLASHpvolcite] = ACTIONS(6385), - [anon_sym_BSLASHPvolcite] = ACTIONS(6385), - [anon_sym_BSLASHfvolcite] = ACTIONS(6385), - [anon_sym_BSLASHftvolcite] = ACTIONS(6385), - [anon_sym_BSLASHsvolcite] = ACTIONS(6385), - [anon_sym_BSLASHSvolcite] = ACTIONS(6385), - [anon_sym_BSLASHtvolcite] = ACTIONS(6385), - [anon_sym_BSLASHTvolcite] = ACTIONS(6385), - [anon_sym_BSLASHavolcite] = ACTIONS(6385), - [anon_sym_BSLASHAvolcite] = ACTIONS(6385), - [anon_sym_BSLASHnotecite] = ACTIONS(6385), - [anon_sym_BSLASHNotecite] = ACTIONS(6385), - [anon_sym_BSLASHpnotecite] = ACTIONS(6385), - [anon_sym_BSLASHPnotecite] = ACTIONS(6385), - [anon_sym_BSLASHfnotecite] = ACTIONS(6385), - [anon_sym_BSLASHlabel] = ACTIONS(6385), - [anon_sym_BSLASHref] = ACTIONS(6385), - [anon_sym_BSLASHeqref] = ACTIONS(6385), - [anon_sym_BSLASHvref] = ACTIONS(6385), - [anon_sym_BSLASHVref] = ACTIONS(6385), - [anon_sym_BSLASHautoref] = ACTIONS(6385), - [anon_sym_BSLASHpageref] = ACTIONS(6385), - [anon_sym_BSLASHcref] = ACTIONS(6385), - [anon_sym_BSLASHCref] = ACTIONS(6385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnameCref] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHlabelcref] = ACTIONS(6385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCrefrange] = ACTIONS(6385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnewlabel] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6387), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHdef] = ACTIONS(6385), - [anon_sym_BSLASHlet] = ACTIONS(6385), - [anon_sym_BSLASHleft] = ACTIONS(6385), - [anon_sym_BSLASHbig] = ACTIONS(6385), - [anon_sym_BSLASHBig] = ACTIONS(6385), - [anon_sym_BSLASHbigg] = ACTIONS(6385), - [anon_sym_BSLASHBigg] = ACTIONS(6385), - [anon_sym_BSLASHbigl] = ACTIONS(6385), - [anon_sym_BSLASHBigl] = ACTIONS(6385), - [anon_sym_BSLASHbiggl] = ACTIONS(6385), - [anon_sym_BSLASHBiggl] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6385), - [anon_sym_BSLASHgls] = ACTIONS(6385), - [anon_sym_BSLASHGls] = ACTIONS(6385), - [anon_sym_BSLASHGLS] = ACTIONS(6385), - [anon_sym_BSLASHglspl] = ACTIONS(6385), - [anon_sym_BSLASHGlspl] = ACTIONS(6385), - [anon_sym_BSLASHGLSpl] = ACTIONS(6385), - [anon_sym_BSLASHglsdisp] = ACTIONS(6385), - [anon_sym_BSLASHglslink] = ACTIONS(6385), - [anon_sym_BSLASHglstext] = ACTIONS(6385), - [anon_sym_BSLASHGlstext] = ACTIONS(6385), - [anon_sym_BSLASHGLStext] = ACTIONS(6385), - [anon_sym_BSLASHglsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6385), - [anon_sym_BSLASHglsplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSplural] = ACTIONS(6385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHglsname] = ACTIONS(6385), - [anon_sym_BSLASHGlsname] = ACTIONS(6385), - [anon_sym_BSLASHGLSname] = ACTIONS(6385), - [anon_sym_BSLASHglssymbol] = ACTIONS(6385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6385), - [anon_sym_BSLASHglsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6385), - [anon_sym_BSLASHglsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6385), - [anon_sym_BSLASHglsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6385), - [anon_sym_BSLASHglsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6385), - [anon_sym_BSLASHglsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6385), - [anon_sym_BSLASHnewacronym] = ACTIONS(6385), - [anon_sym_BSLASHacrshort] = ACTIONS(6385), - [anon_sym_BSLASHAcrshort] = ACTIONS(6385), - [anon_sym_BSLASHACRshort] = ACTIONS(6385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6385), - [anon_sym_BSLASHacrlong] = ACTIONS(6385), - [anon_sym_BSLASHAcrlong] = ACTIONS(6385), - [anon_sym_BSLASHACRlong] = ACTIONS(6385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6385), - [anon_sym_BSLASHacrfull] = ACTIONS(6385), - [anon_sym_BSLASHAcrfull] = ACTIONS(6385), - [anon_sym_BSLASHACRfull] = ACTIONS(6385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6385), - [anon_sym_BSLASHacs] = ACTIONS(6385), - [anon_sym_BSLASHAcs] = ACTIONS(6385), - [anon_sym_BSLASHacsp] = ACTIONS(6385), - [anon_sym_BSLASHAcsp] = ACTIONS(6385), - [anon_sym_BSLASHacl] = ACTIONS(6385), - [anon_sym_BSLASHAcl] = ACTIONS(6385), - [anon_sym_BSLASHaclp] = ACTIONS(6385), - [anon_sym_BSLASHAclp] = ACTIONS(6385), - [anon_sym_BSLASHacf] = ACTIONS(6385), - [anon_sym_BSLASHAcf] = ACTIONS(6385), - [anon_sym_BSLASHacfp] = ACTIONS(6385), - [anon_sym_BSLASHAcfp] = ACTIONS(6385), - [anon_sym_BSLASHac] = ACTIONS(6385), - [anon_sym_BSLASHAc] = ACTIONS(6385), - [anon_sym_BSLASHacp] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6385), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6385), - [anon_sym_BSLASHcolor] = ACTIONS(6385), - [anon_sym_BSLASHcolorbox] = ACTIONS(6385), - [anon_sym_BSLASHtextcolor] = ACTIONS(6385), - [anon_sym_BSLASHpagecolor] = ACTIONS(6385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6385), - [anon_sym_BSLASHtext] = ACTIONS(6385), - [anon_sym_BSLASHintertext] = ACTIONS(6385), - [anon_sym_shortintertext] = ACTIONS(6385), - }, - [1081] = { - [sym_command_name] = ACTIONS(6389), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(6391), - [anon_sym_RBRACK] = ACTIONS(6391), - [anon_sym_COMMA] = ACTIONS(6391), - [anon_sym_EQ] = ACTIONS(6391), - [anon_sym_LPAREN] = ACTIONS(6391), - [anon_sym_RPAREN] = ACTIONS(6391), - [anon_sym_BSLASHpart] = ACTIONS(6389), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddpart] = ACTIONS(6389), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6391), - [anon_sym_BSLASHchapter] = ACTIONS(6389), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddchap] = ACTIONS(6389), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsection] = ACTIONS(6389), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddsec] = ACTIONS(6389), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubsection] = ACTIONS(6389), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6389), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHparagraph] = ACTIONS(6389), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6389), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6391), - [anon_sym_BSLASHitem] = ACTIONS(6389), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6391), - [anon_sym_LBRACE] = ACTIONS(6391), - [sym_word] = ACTIONS(6389), - [sym_placeholder] = ACTIONS(6391), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6391), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_LT] = ACTIONS(6389), - [anon_sym_GT] = ACTIONS(6389), - [anon_sym_BANG] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_SQUOTE] = ACTIONS(6389), - [anon_sym__] = ACTIONS(6391), - [anon_sym_CARET] = ACTIONS(6391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6391), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6391), - [anon_sym_DOLLAR] = ACTIONS(6389), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6391), - [anon_sym_BSLASHbegin] = ACTIONS(6389), - [anon_sym_BSLASHend] = ACTIONS(6389), - [anon_sym_BSLASHtitle] = ACTIONS(6389), - [anon_sym_BSLASHauthor] = ACTIONS(6389), - [anon_sym_BSLASHusepackage] = ACTIONS(6389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6389), - [anon_sym_BSLASHinclude] = ACTIONS(6389), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6389), - [anon_sym_BSLASHinput] = ACTIONS(6389), - [anon_sym_BSLASHsubfile] = ACTIONS(6389), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6389), - [anon_sym_BSLASHbibliography] = ACTIONS(6389), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6389), - [anon_sym_BSLASHincludesvg] = ACTIONS(6389), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6389), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6389), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6389), - [anon_sym_BSLASHimport] = ACTIONS(6389), - [anon_sym_BSLASHsubimport] = ACTIONS(6389), - [anon_sym_BSLASHinputfrom] = ACTIONS(6389), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6389), - [anon_sym_BSLASHincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHcaption] = ACTIONS(6389), - [anon_sym_BSLASHcite] = ACTIONS(6389), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCite] = ACTIONS(6389), - [anon_sym_BSLASHnocite] = ACTIONS(6389), - [anon_sym_BSLASHcitet] = ACTIONS(6389), - [anon_sym_BSLASHcitep] = ACTIONS(6389), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteauthor] = ACTIONS(6389), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6389), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitetitle] = ACTIONS(6389), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteyear] = ACTIONS(6389), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitedate] = ACTIONS(6389), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteurl] = ACTIONS(6389), - [anon_sym_BSLASHfullcite] = ACTIONS(6389), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6389), - [anon_sym_BSLASHcitealt] = ACTIONS(6389), - [anon_sym_BSLASHcitealp] = ACTIONS(6389), - [anon_sym_BSLASHcitetext] = ACTIONS(6389), - [anon_sym_BSLASHparencite] = ACTIONS(6389), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHParencite] = ACTIONS(6389), - [anon_sym_BSLASHfootcite] = ACTIONS(6389), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6389), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6389), - [anon_sym_BSLASHtextcite] = ACTIONS(6389), - [anon_sym_BSLASHTextcite] = ACTIONS(6389), - [anon_sym_BSLASHsmartcite] = ACTIONS(6389), - [anon_sym_BSLASHSmartcite] = ACTIONS(6389), - [anon_sym_BSLASHsupercite] = ACTIONS(6389), - [anon_sym_BSLASHautocite] = ACTIONS(6389), - [anon_sym_BSLASHAutocite] = ACTIONS(6389), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHvolcite] = ACTIONS(6389), - [anon_sym_BSLASHVolcite] = ACTIONS(6389), - [anon_sym_BSLASHpvolcite] = ACTIONS(6389), - [anon_sym_BSLASHPvolcite] = ACTIONS(6389), - [anon_sym_BSLASHfvolcite] = ACTIONS(6389), - [anon_sym_BSLASHftvolcite] = ACTIONS(6389), - [anon_sym_BSLASHsvolcite] = ACTIONS(6389), - [anon_sym_BSLASHSvolcite] = ACTIONS(6389), - [anon_sym_BSLASHtvolcite] = ACTIONS(6389), - [anon_sym_BSLASHTvolcite] = ACTIONS(6389), - [anon_sym_BSLASHavolcite] = ACTIONS(6389), - [anon_sym_BSLASHAvolcite] = ACTIONS(6389), - [anon_sym_BSLASHnotecite] = ACTIONS(6389), - [anon_sym_BSLASHNotecite] = ACTIONS(6389), - [anon_sym_BSLASHpnotecite] = ACTIONS(6389), - [anon_sym_BSLASHPnotecite] = ACTIONS(6389), - [anon_sym_BSLASHfnotecite] = ACTIONS(6389), - [anon_sym_BSLASHlabel] = ACTIONS(6389), - [anon_sym_BSLASHref] = ACTIONS(6389), - [anon_sym_BSLASHeqref] = ACTIONS(6389), - [anon_sym_BSLASHvref] = ACTIONS(6389), - [anon_sym_BSLASHVref] = ACTIONS(6389), - [anon_sym_BSLASHautoref] = ACTIONS(6389), - [anon_sym_BSLASHpageref] = ACTIONS(6389), - [anon_sym_BSLASHcref] = ACTIONS(6389), - [anon_sym_BSLASHCref] = ACTIONS(6389), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnameCref] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHlabelcref] = ACTIONS(6389), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCrefrange] = ACTIONS(6389), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnewlabel] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6389), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6389), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6391), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHdef] = ACTIONS(6389), - [anon_sym_BSLASHlet] = ACTIONS(6389), - [anon_sym_BSLASHleft] = ACTIONS(6389), - [anon_sym_BSLASHbig] = ACTIONS(6389), - [anon_sym_BSLASHBig] = ACTIONS(6389), - [anon_sym_BSLASHbigg] = ACTIONS(6389), - [anon_sym_BSLASHBigg] = ACTIONS(6389), - [anon_sym_BSLASHbigl] = ACTIONS(6389), - [anon_sym_BSLASHBigl] = ACTIONS(6389), - [anon_sym_BSLASHbiggl] = ACTIONS(6389), - [anon_sym_BSLASHBiggl] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6389), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6389), - [anon_sym_BSLASHgls] = ACTIONS(6389), - [anon_sym_BSLASHGls] = ACTIONS(6389), - [anon_sym_BSLASHGLS] = ACTIONS(6389), - [anon_sym_BSLASHglspl] = ACTIONS(6389), - [anon_sym_BSLASHGlspl] = ACTIONS(6389), - [anon_sym_BSLASHGLSpl] = ACTIONS(6389), - [anon_sym_BSLASHglsdisp] = ACTIONS(6389), - [anon_sym_BSLASHglslink] = ACTIONS(6389), - [anon_sym_BSLASHglstext] = ACTIONS(6389), - [anon_sym_BSLASHGlstext] = ACTIONS(6389), - [anon_sym_BSLASHGLStext] = ACTIONS(6389), - [anon_sym_BSLASHglsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6389), - [anon_sym_BSLASHglsplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSplural] = ACTIONS(6389), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHglsname] = ACTIONS(6389), - [anon_sym_BSLASHGlsname] = ACTIONS(6389), - [anon_sym_BSLASHGLSname] = ACTIONS(6389), - [anon_sym_BSLASHglssymbol] = ACTIONS(6389), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6389), - [anon_sym_BSLASHglsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6389), - [anon_sym_BSLASHglsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6389), - [anon_sym_BSLASHglsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6389), - [anon_sym_BSLASHglsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6389), - [anon_sym_BSLASHglsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6389), - [anon_sym_BSLASHnewacronym] = ACTIONS(6389), - [anon_sym_BSLASHacrshort] = ACTIONS(6389), - [anon_sym_BSLASHAcrshort] = ACTIONS(6389), - [anon_sym_BSLASHACRshort] = ACTIONS(6389), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6389), - [anon_sym_BSLASHacrlong] = ACTIONS(6389), - [anon_sym_BSLASHAcrlong] = ACTIONS(6389), - [anon_sym_BSLASHACRlong] = ACTIONS(6389), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6389), - [anon_sym_BSLASHacrfull] = ACTIONS(6389), - [anon_sym_BSLASHAcrfull] = ACTIONS(6389), - [anon_sym_BSLASHACRfull] = ACTIONS(6389), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6389), - [anon_sym_BSLASHacs] = ACTIONS(6389), - [anon_sym_BSLASHAcs] = ACTIONS(6389), - [anon_sym_BSLASHacsp] = ACTIONS(6389), - [anon_sym_BSLASHAcsp] = ACTIONS(6389), - [anon_sym_BSLASHacl] = ACTIONS(6389), - [anon_sym_BSLASHAcl] = ACTIONS(6389), - [anon_sym_BSLASHaclp] = ACTIONS(6389), - [anon_sym_BSLASHAclp] = ACTIONS(6389), - [anon_sym_BSLASHacf] = ACTIONS(6389), - [anon_sym_BSLASHAcf] = ACTIONS(6389), - [anon_sym_BSLASHacfp] = ACTIONS(6389), - [anon_sym_BSLASHAcfp] = ACTIONS(6389), - [anon_sym_BSLASHac] = ACTIONS(6389), - [anon_sym_BSLASHAc] = ACTIONS(6389), - [anon_sym_BSLASHacp] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6389), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6389), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6389), - [anon_sym_BSLASHcolor] = ACTIONS(6389), - [anon_sym_BSLASHcolorbox] = ACTIONS(6389), - [anon_sym_BSLASHtextcolor] = ACTIONS(6389), - [anon_sym_BSLASHpagecolor] = ACTIONS(6389), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6389), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6389), - [anon_sym_BSLASHtext] = ACTIONS(6389), - [anon_sym_BSLASHintertext] = ACTIONS(6389), - [anon_sym_shortintertext] = ACTIONS(6389), - }, - [1082] = { - [sym_command_name] = ACTIONS(6393), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6393), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_RBRACK] = ACTIONS(6395), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_LPAREN] = ACTIONS(6395), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_BSLASHpart] = ACTIONS(6393), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddpart] = ACTIONS(6393), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6395), - [anon_sym_BSLASHchapter] = ACTIONS(6393), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddchap] = ACTIONS(6393), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsection] = ACTIONS(6393), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddsec] = ACTIONS(6393), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubsection] = ACTIONS(6393), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6393), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHparagraph] = ACTIONS(6393), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6393), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6395), - [anon_sym_BSLASHitem] = ACTIONS(6393), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6395), - [anon_sym_LBRACE] = ACTIONS(6395), - [sym_word] = ACTIONS(6393), - [sym_placeholder] = ACTIONS(6395), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6395), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_LT] = ACTIONS(6393), - [anon_sym_GT] = ACTIONS(6393), - [anon_sym_BANG] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_SQUOTE] = ACTIONS(6393), - [anon_sym__] = ACTIONS(6395), - [anon_sym_CARET] = ACTIONS(6395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6395), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6395), - [anon_sym_DOLLAR] = ACTIONS(6393), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6395), - [anon_sym_BSLASHbegin] = ACTIONS(6393), - [anon_sym_BSLASHend] = ACTIONS(6393), - [anon_sym_BSLASHtitle] = ACTIONS(6393), - [anon_sym_BSLASHauthor] = ACTIONS(6393), - [anon_sym_BSLASHusepackage] = ACTIONS(6393), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6393), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6393), - [anon_sym_BSLASHinclude] = ACTIONS(6393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6393), - [anon_sym_BSLASHinput] = ACTIONS(6393), - [anon_sym_BSLASHsubfile] = ACTIONS(6393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6393), - [anon_sym_BSLASHbibliography] = ACTIONS(6393), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6393), - [anon_sym_BSLASHincludesvg] = ACTIONS(6393), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6393), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6393), - [anon_sym_BSLASHimport] = ACTIONS(6393), - [anon_sym_BSLASHsubimport] = ACTIONS(6393), - [anon_sym_BSLASHinputfrom] = ACTIONS(6393), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6393), - [anon_sym_BSLASHincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHcaption] = ACTIONS(6393), - [anon_sym_BSLASHcite] = ACTIONS(6393), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCite] = ACTIONS(6393), - [anon_sym_BSLASHnocite] = ACTIONS(6393), - [anon_sym_BSLASHcitet] = ACTIONS(6393), - [anon_sym_BSLASHcitep] = ACTIONS(6393), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteauthor] = ACTIONS(6393), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6393), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitetitle] = ACTIONS(6393), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteyear] = ACTIONS(6393), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitedate] = ACTIONS(6393), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteurl] = ACTIONS(6393), - [anon_sym_BSLASHfullcite] = ACTIONS(6393), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6393), - [anon_sym_BSLASHcitealt] = ACTIONS(6393), - [anon_sym_BSLASHcitealp] = ACTIONS(6393), - [anon_sym_BSLASHcitetext] = ACTIONS(6393), - [anon_sym_BSLASHparencite] = ACTIONS(6393), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHParencite] = ACTIONS(6393), - [anon_sym_BSLASHfootcite] = ACTIONS(6393), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6393), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6393), - [anon_sym_BSLASHtextcite] = ACTIONS(6393), - [anon_sym_BSLASHTextcite] = ACTIONS(6393), - [anon_sym_BSLASHsmartcite] = ACTIONS(6393), - [anon_sym_BSLASHSmartcite] = ACTIONS(6393), - [anon_sym_BSLASHsupercite] = ACTIONS(6393), - [anon_sym_BSLASHautocite] = ACTIONS(6393), - [anon_sym_BSLASHAutocite] = ACTIONS(6393), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHvolcite] = ACTIONS(6393), - [anon_sym_BSLASHVolcite] = ACTIONS(6393), - [anon_sym_BSLASHpvolcite] = ACTIONS(6393), - [anon_sym_BSLASHPvolcite] = ACTIONS(6393), - [anon_sym_BSLASHfvolcite] = ACTIONS(6393), - [anon_sym_BSLASHftvolcite] = ACTIONS(6393), - [anon_sym_BSLASHsvolcite] = ACTIONS(6393), - [anon_sym_BSLASHSvolcite] = ACTIONS(6393), - [anon_sym_BSLASHtvolcite] = ACTIONS(6393), - [anon_sym_BSLASHTvolcite] = ACTIONS(6393), - [anon_sym_BSLASHavolcite] = ACTIONS(6393), - [anon_sym_BSLASHAvolcite] = ACTIONS(6393), - [anon_sym_BSLASHnotecite] = ACTIONS(6393), - [anon_sym_BSLASHNotecite] = ACTIONS(6393), - [anon_sym_BSLASHpnotecite] = ACTIONS(6393), - [anon_sym_BSLASHPnotecite] = ACTIONS(6393), - [anon_sym_BSLASHfnotecite] = ACTIONS(6393), - [anon_sym_BSLASHlabel] = ACTIONS(6393), - [anon_sym_BSLASHref] = ACTIONS(6393), - [anon_sym_BSLASHeqref] = ACTIONS(6393), - [anon_sym_BSLASHvref] = ACTIONS(6393), - [anon_sym_BSLASHVref] = ACTIONS(6393), - [anon_sym_BSLASHautoref] = ACTIONS(6393), - [anon_sym_BSLASHpageref] = ACTIONS(6393), - [anon_sym_BSLASHcref] = ACTIONS(6393), - [anon_sym_BSLASHCref] = ACTIONS(6393), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnameCref] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHlabelcref] = ACTIONS(6393), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCrefrange] = ACTIONS(6393), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnewlabel] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6393), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6393), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6395), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHdef] = ACTIONS(6393), - [anon_sym_BSLASHlet] = ACTIONS(6393), - [anon_sym_BSLASHleft] = ACTIONS(6393), - [anon_sym_BSLASHbig] = ACTIONS(6393), - [anon_sym_BSLASHBig] = ACTIONS(6393), - [anon_sym_BSLASHbigg] = ACTIONS(6393), - [anon_sym_BSLASHBigg] = ACTIONS(6393), - [anon_sym_BSLASHbigl] = ACTIONS(6393), - [anon_sym_BSLASHBigl] = ACTIONS(6393), - [anon_sym_BSLASHbiggl] = ACTIONS(6393), - [anon_sym_BSLASHBiggl] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6393), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6393), - [anon_sym_BSLASHgls] = ACTIONS(6393), - [anon_sym_BSLASHGls] = ACTIONS(6393), - [anon_sym_BSLASHGLS] = ACTIONS(6393), - [anon_sym_BSLASHglspl] = ACTIONS(6393), - [anon_sym_BSLASHGlspl] = ACTIONS(6393), - [anon_sym_BSLASHGLSpl] = ACTIONS(6393), - [anon_sym_BSLASHglsdisp] = ACTIONS(6393), - [anon_sym_BSLASHglslink] = ACTIONS(6393), - [anon_sym_BSLASHglstext] = ACTIONS(6393), - [anon_sym_BSLASHGlstext] = ACTIONS(6393), - [anon_sym_BSLASHGLStext] = ACTIONS(6393), - [anon_sym_BSLASHglsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6393), - [anon_sym_BSLASHglsplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSplural] = ACTIONS(6393), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHglsname] = ACTIONS(6393), - [anon_sym_BSLASHGlsname] = ACTIONS(6393), - [anon_sym_BSLASHGLSname] = ACTIONS(6393), - [anon_sym_BSLASHglssymbol] = ACTIONS(6393), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6393), - [anon_sym_BSLASHglsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6393), - [anon_sym_BSLASHglsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6393), - [anon_sym_BSLASHglsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6393), - [anon_sym_BSLASHglsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6393), - [anon_sym_BSLASHglsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6393), - [anon_sym_BSLASHnewacronym] = ACTIONS(6393), - [anon_sym_BSLASHacrshort] = ACTIONS(6393), - [anon_sym_BSLASHAcrshort] = ACTIONS(6393), - [anon_sym_BSLASHACRshort] = ACTIONS(6393), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6393), - [anon_sym_BSLASHacrlong] = ACTIONS(6393), - [anon_sym_BSLASHAcrlong] = ACTIONS(6393), - [anon_sym_BSLASHACRlong] = ACTIONS(6393), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6393), - [anon_sym_BSLASHacrfull] = ACTIONS(6393), - [anon_sym_BSLASHAcrfull] = ACTIONS(6393), - [anon_sym_BSLASHACRfull] = ACTIONS(6393), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6393), - [anon_sym_BSLASHacs] = ACTIONS(6393), - [anon_sym_BSLASHAcs] = ACTIONS(6393), - [anon_sym_BSLASHacsp] = ACTIONS(6393), - [anon_sym_BSLASHAcsp] = ACTIONS(6393), - [anon_sym_BSLASHacl] = ACTIONS(6393), - [anon_sym_BSLASHAcl] = ACTIONS(6393), - [anon_sym_BSLASHaclp] = ACTIONS(6393), - [anon_sym_BSLASHAclp] = ACTIONS(6393), - [anon_sym_BSLASHacf] = ACTIONS(6393), - [anon_sym_BSLASHAcf] = ACTIONS(6393), - [anon_sym_BSLASHacfp] = ACTIONS(6393), - [anon_sym_BSLASHAcfp] = ACTIONS(6393), - [anon_sym_BSLASHac] = ACTIONS(6393), - [anon_sym_BSLASHAc] = ACTIONS(6393), - [anon_sym_BSLASHacp] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6393), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6393), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6393), - [anon_sym_BSLASHcolor] = ACTIONS(6393), - [anon_sym_BSLASHcolorbox] = ACTIONS(6393), - [anon_sym_BSLASHtextcolor] = ACTIONS(6393), - [anon_sym_BSLASHpagecolor] = ACTIONS(6393), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6393), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6393), - [anon_sym_BSLASHtext] = ACTIONS(6393), - [anon_sym_BSLASHintertext] = ACTIONS(6393), - [anon_sym_shortintertext] = ACTIONS(6393), - }, - [1083] = { - [sym_command_name] = ACTIONS(6397), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6397), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(6399), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_LPAREN] = ACTIONS(6399), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_BSLASHpart] = ACTIONS(6397), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddpart] = ACTIONS(6397), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6399), - [anon_sym_BSLASHchapter] = ACTIONS(6397), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddchap] = ACTIONS(6397), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsection] = ACTIONS(6397), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddsec] = ACTIONS(6397), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubsection] = ACTIONS(6397), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6397), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHparagraph] = ACTIONS(6397), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6397), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6399), - [anon_sym_BSLASHitem] = ACTIONS(6397), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6399), - [anon_sym_LBRACE] = ACTIONS(6399), - [sym_word] = ACTIONS(6397), - [sym_placeholder] = ACTIONS(6399), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_LT] = ACTIONS(6397), - [anon_sym_GT] = ACTIONS(6397), - [anon_sym_BANG] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_SQUOTE] = ACTIONS(6397), - [anon_sym__] = ACTIONS(6399), - [anon_sym_CARET] = ACTIONS(6399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6399), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6399), - [anon_sym_DOLLAR] = ACTIONS(6397), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6399), - [anon_sym_BSLASHbegin] = ACTIONS(6397), - [anon_sym_BSLASHend] = ACTIONS(6397), - [anon_sym_BSLASHtitle] = ACTIONS(6397), - [anon_sym_BSLASHauthor] = ACTIONS(6397), - [anon_sym_BSLASHusepackage] = ACTIONS(6397), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6397), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6397), - [anon_sym_BSLASHinclude] = ACTIONS(6397), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6397), - [anon_sym_BSLASHinput] = ACTIONS(6397), - [anon_sym_BSLASHsubfile] = ACTIONS(6397), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6397), - [anon_sym_BSLASHbibliography] = ACTIONS(6397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6397), - [anon_sym_BSLASHincludesvg] = ACTIONS(6397), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6397), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6397), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6397), - [anon_sym_BSLASHimport] = ACTIONS(6397), - [anon_sym_BSLASHsubimport] = ACTIONS(6397), - [anon_sym_BSLASHinputfrom] = ACTIONS(6397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6397), - [anon_sym_BSLASHincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHcaption] = ACTIONS(6397), - [anon_sym_BSLASHcite] = ACTIONS(6397), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCite] = ACTIONS(6397), - [anon_sym_BSLASHnocite] = ACTIONS(6397), - [anon_sym_BSLASHcitet] = ACTIONS(6397), - [anon_sym_BSLASHcitep] = ACTIONS(6397), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteauthor] = ACTIONS(6397), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6397), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitetitle] = ACTIONS(6397), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteyear] = ACTIONS(6397), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitedate] = ACTIONS(6397), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteurl] = ACTIONS(6397), - [anon_sym_BSLASHfullcite] = ACTIONS(6397), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6397), - [anon_sym_BSLASHcitealt] = ACTIONS(6397), - [anon_sym_BSLASHcitealp] = ACTIONS(6397), - [anon_sym_BSLASHcitetext] = ACTIONS(6397), - [anon_sym_BSLASHparencite] = ACTIONS(6397), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHParencite] = ACTIONS(6397), - [anon_sym_BSLASHfootcite] = ACTIONS(6397), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6397), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6397), - [anon_sym_BSLASHtextcite] = ACTIONS(6397), - [anon_sym_BSLASHTextcite] = ACTIONS(6397), - [anon_sym_BSLASHsmartcite] = ACTIONS(6397), - [anon_sym_BSLASHSmartcite] = ACTIONS(6397), - [anon_sym_BSLASHsupercite] = ACTIONS(6397), - [anon_sym_BSLASHautocite] = ACTIONS(6397), - [anon_sym_BSLASHAutocite] = ACTIONS(6397), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHvolcite] = ACTIONS(6397), - [anon_sym_BSLASHVolcite] = ACTIONS(6397), - [anon_sym_BSLASHpvolcite] = ACTIONS(6397), - [anon_sym_BSLASHPvolcite] = ACTIONS(6397), - [anon_sym_BSLASHfvolcite] = ACTIONS(6397), - [anon_sym_BSLASHftvolcite] = ACTIONS(6397), - [anon_sym_BSLASHsvolcite] = ACTIONS(6397), - [anon_sym_BSLASHSvolcite] = ACTIONS(6397), - [anon_sym_BSLASHtvolcite] = ACTIONS(6397), - [anon_sym_BSLASHTvolcite] = ACTIONS(6397), - [anon_sym_BSLASHavolcite] = ACTIONS(6397), - [anon_sym_BSLASHAvolcite] = ACTIONS(6397), - [anon_sym_BSLASHnotecite] = ACTIONS(6397), - [anon_sym_BSLASHNotecite] = ACTIONS(6397), - [anon_sym_BSLASHpnotecite] = ACTIONS(6397), - [anon_sym_BSLASHPnotecite] = ACTIONS(6397), - [anon_sym_BSLASHfnotecite] = ACTIONS(6397), - [anon_sym_BSLASHlabel] = ACTIONS(6397), - [anon_sym_BSLASHref] = ACTIONS(6397), - [anon_sym_BSLASHeqref] = ACTIONS(6397), - [anon_sym_BSLASHvref] = ACTIONS(6397), - [anon_sym_BSLASHVref] = ACTIONS(6397), - [anon_sym_BSLASHautoref] = ACTIONS(6397), - [anon_sym_BSLASHpageref] = ACTIONS(6397), - [anon_sym_BSLASHcref] = ACTIONS(6397), - [anon_sym_BSLASHCref] = ACTIONS(6397), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnameCref] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHlabelcref] = ACTIONS(6397), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCrefrange] = ACTIONS(6397), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnewlabel] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6397), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6397), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6399), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHdef] = ACTIONS(6397), - [anon_sym_BSLASHlet] = ACTIONS(6397), - [anon_sym_BSLASHleft] = ACTIONS(6397), - [anon_sym_BSLASHbig] = ACTIONS(6397), - [anon_sym_BSLASHBig] = ACTIONS(6397), - [anon_sym_BSLASHbigg] = ACTIONS(6397), - [anon_sym_BSLASHBigg] = ACTIONS(6397), - [anon_sym_BSLASHbigl] = ACTIONS(6397), - [anon_sym_BSLASHBigl] = ACTIONS(6397), - [anon_sym_BSLASHbiggl] = ACTIONS(6397), - [anon_sym_BSLASHBiggl] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6397), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6397), - [anon_sym_BSLASHgls] = ACTIONS(6397), - [anon_sym_BSLASHGls] = ACTIONS(6397), - [anon_sym_BSLASHGLS] = ACTIONS(6397), - [anon_sym_BSLASHglspl] = ACTIONS(6397), - [anon_sym_BSLASHGlspl] = ACTIONS(6397), - [anon_sym_BSLASHGLSpl] = ACTIONS(6397), - [anon_sym_BSLASHglsdisp] = ACTIONS(6397), - [anon_sym_BSLASHglslink] = ACTIONS(6397), - [anon_sym_BSLASHglstext] = ACTIONS(6397), - [anon_sym_BSLASHGlstext] = ACTIONS(6397), - [anon_sym_BSLASHGLStext] = ACTIONS(6397), - [anon_sym_BSLASHglsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6397), - [anon_sym_BSLASHglsplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSplural] = ACTIONS(6397), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHglsname] = ACTIONS(6397), - [anon_sym_BSLASHGlsname] = ACTIONS(6397), - [anon_sym_BSLASHGLSname] = ACTIONS(6397), - [anon_sym_BSLASHglssymbol] = ACTIONS(6397), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6397), - [anon_sym_BSLASHglsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6397), - [anon_sym_BSLASHglsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6397), - [anon_sym_BSLASHglsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6397), - [anon_sym_BSLASHglsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6397), - [anon_sym_BSLASHglsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6397), - [anon_sym_BSLASHnewacronym] = ACTIONS(6397), - [anon_sym_BSLASHacrshort] = ACTIONS(6397), - [anon_sym_BSLASHAcrshort] = ACTIONS(6397), - [anon_sym_BSLASHACRshort] = ACTIONS(6397), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6397), - [anon_sym_BSLASHacrlong] = ACTIONS(6397), - [anon_sym_BSLASHAcrlong] = ACTIONS(6397), - [anon_sym_BSLASHACRlong] = ACTIONS(6397), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6397), - [anon_sym_BSLASHacrfull] = ACTIONS(6397), - [anon_sym_BSLASHAcrfull] = ACTIONS(6397), - [anon_sym_BSLASHACRfull] = ACTIONS(6397), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6397), - [anon_sym_BSLASHacs] = ACTIONS(6397), - [anon_sym_BSLASHAcs] = ACTIONS(6397), - [anon_sym_BSLASHacsp] = ACTIONS(6397), - [anon_sym_BSLASHAcsp] = ACTIONS(6397), - [anon_sym_BSLASHacl] = ACTIONS(6397), - [anon_sym_BSLASHAcl] = ACTIONS(6397), - [anon_sym_BSLASHaclp] = ACTIONS(6397), - [anon_sym_BSLASHAclp] = ACTIONS(6397), - [anon_sym_BSLASHacf] = ACTIONS(6397), - [anon_sym_BSLASHAcf] = ACTIONS(6397), - [anon_sym_BSLASHacfp] = ACTIONS(6397), - [anon_sym_BSLASHAcfp] = ACTIONS(6397), - [anon_sym_BSLASHac] = ACTIONS(6397), - [anon_sym_BSLASHAc] = ACTIONS(6397), - [anon_sym_BSLASHacp] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6397), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6397), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6397), - [anon_sym_BSLASHcolor] = ACTIONS(6397), - [anon_sym_BSLASHcolorbox] = ACTIONS(6397), - [anon_sym_BSLASHtextcolor] = ACTIONS(6397), - [anon_sym_BSLASHpagecolor] = ACTIONS(6397), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6397), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6397), - [anon_sym_BSLASHtext] = ACTIONS(6397), - [anon_sym_BSLASHintertext] = ACTIONS(6397), - [anon_sym_shortintertext] = ACTIONS(6397), - }, - [1084] = { - [sym_command_name] = ACTIONS(6401), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6401), - [anon_sym_LBRACK] = ACTIONS(6403), - [anon_sym_RBRACK] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(6403), - [anon_sym_EQ] = ACTIONS(6403), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(6403), - [anon_sym_BSLASHpart] = ACTIONS(6401), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddpart] = ACTIONS(6401), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6403), - [anon_sym_BSLASHchapter] = ACTIONS(6401), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddchap] = ACTIONS(6401), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsection] = ACTIONS(6401), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddsec] = ACTIONS(6401), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubsection] = ACTIONS(6401), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6401), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHparagraph] = ACTIONS(6401), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6401), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6403), - [anon_sym_BSLASHitem] = ACTIONS(6401), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6403), - [anon_sym_LBRACE] = ACTIONS(6403), - [sym_word] = ACTIONS(6401), - [sym_placeholder] = ACTIONS(6403), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6403), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_LT] = ACTIONS(6401), - [anon_sym_GT] = ACTIONS(6401), - [anon_sym_BANG] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_SQUOTE] = ACTIONS(6401), - [anon_sym__] = ACTIONS(6403), - [anon_sym_CARET] = ACTIONS(6403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6403), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6403), - [anon_sym_DOLLAR] = ACTIONS(6401), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6403), - [anon_sym_BSLASHbegin] = ACTIONS(6401), - [anon_sym_BSLASHend] = ACTIONS(6401), - [anon_sym_BSLASHtitle] = ACTIONS(6401), - [anon_sym_BSLASHauthor] = ACTIONS(6401), - [anon_sym_BSLASHusepackage] = ACTIONS(6401), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6401), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6401), - [anon_sym_BSLASHinclude] = ACTIONS(6401), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6401), - [anon_sym_BSLASHinput] = ACTIONS(6401), - [anon_sym_BSLASHsubfile] = ACTIONS(6401), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6401), - [anon_sym_BSLASHbibliography] = ACTIONS(6401), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6401), - [anon_sym_BSLASHincludesvg] = ACTIONS(6401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6401), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6401), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6401), - [anon_sym_BSLASHimport] = ACTIONS(6401), - [anon_sym_BSLASHsubimport] = ACTIONS(6401), - [anon_sym_BSLASHinputfrom] = ACTIONS(6401), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6401), - [anon_sym_BSLASHincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHcaption] = ACTIONS(6401), - [anon_sym_BSLASHcite] = ACTIONS(6401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCite] = ACTIONS(6401), - [anon_sym_BSLASHnocite] = ACTIONS(6401), - [anon_sym_BSLASHcitet] = ACTIONS(6401), - [anon_sym_BSLASHcitep] = ACTIONS(6401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteauthor] = ACTIONS(6401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitetitle] = ACTIONS(6401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteyear] = ACTIONS(6401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitedate] = ACTIONS(6401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteurl] = ACTIONS(6401), - [anon_sym_BSLASHfullcite] = ACTIONS(6401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6401), - [anon_sym_BSLASHcitealt] = ACTIONS(6401), - [anon_sym_BSLASHcitealp] = ACTIONS(6401), - [anon_sym_BSLASHcitetext] = ACTIONS(6401), - [anon_sym_BSLASHparencite] = ACTIONS(6401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHParencite] = ACTIONS(6401), - [anon_sym_BSLASHfootcite] = ACTIONS(6401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6401), - [anon_sym_BSLASHtextcite] = ACTIONS(6401), - [anon_sym_BSLASHTextcite] = ACTIONS(6401), - [anon_sym_BSLASHsmartcite] = ACTIONS(6401), - [anon_sym_BSLASHSmartcite] = ACTIONS(6401), - [anon_sym_BSLASHsupercite] = ACTIONS(6401), - [anon_sym_BSLASHautocite] = ACTIONS(6401), - [anon_sym_BSLASHAutocite] = ACTIONS(6401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHvolcite] = ACTIONS(6401), - [anon_sym_BSLASHVolcite] = ACTIONS(6401), - [anon_sym_BSLASHpvolcite] = ACTIONS(6401), - [anon_sym_BSLASHPvolcite] = ACTIONS(6401), - [anon_sym_BSLASHfvolcite] = ACTIONS(6401), - [anon_sym_BSLASHftvolcite] = ACTIONS(6401), - [anon_sym_BSLASHsvolcite] = ACTIONS(6401), - [anon_sym_BSLASHSvolcite] = ACTIONS(6401), - [anon_sym_BSLASHtvolcite] = ACTIONS(6401), - [anon_sym_BSLASHTvolcite] = ACTIONS(6401), - [anon_sym_BSLASHavolcite] = ACTIONS(6401), - [anon_sym_BSLASHAvolcite] = ACTIONS(6401), - [anon_sym_BSLASHnotecite] = ACTIONS(6401), - [anon_sym_BSLASHNotecite] = ACTIONS(6401), - [anon_sym_BSLASHpnotecite] = ACTIONS(6401), - [anon_sym_BSLASHPnotecite] = ACTIONS(6401), - [anon_sym_BSLASHfnotecite] = ACTIONS(6401), - [anon_sym_BSLASHlabel] = ACTIONS(6401), - [anon_sym_BSLASHref] = ACTIONS(6401), - [anon_sym_BSLASHeqref] = ACTIONS(6401), - [anon_sym_BSLASHvref] = ACTIONS(6401), - [anon_sym_BSLASHVref] = ACTIONS(6401), - [anon_sym_BSLASHautoref] = ACTIONS(6401), - [anon_sym_BSLASHpageref] = ACTIONS(6401), - [anon_sym_BSLASHcref] = ACTIONS(6401), - [anon_sym_BSLASHCref] = ACTIONS(6401), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnameCref] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHlabelcref] = ACTIONS(6401), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCrefrange] = ACTIONS(6401), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnewlabel] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6401), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6401), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6403), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHdef] = ACTIONS(6401), - [anon_sym_BSLASHlet] = ACTIONS(6401), - [anon_sym_BSLASHleft] = ACTIONS(6401), - [anon_sym_BSLASHbig] = ACTIONS(6401), - [anon_sym_BSLASHBig] = ACTIONS(6401), - [anon_sym_BSLASHbigg] = ACTIONS(6401), - [anon_sym_BSLASHBigg] = ACTIONS(6401), - [anon_sym_BSLASHbigl] = ACTIONS(6401), - [anon_sym_BSLASHBigl] = ACTIONS(6401), - [anon_sym_BSLASHbiggl] = ACTIONS(6401), - [anon_sym_BSLASHBiggl] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6401), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6401), - [anon_sym_BSLASHgls] = ACTIONS(6401), - [anon_sym_BSLASHGls] = ACTIONS(6401), - [anon_sym_BSLASHGLS] = ACTIONS(6401), - [anon_sym_BSLASHglspl] = ACTIONS(6401), - [anon_sym_BSLASHGlspl] = ACTIONS(6401), - [anon_sym_BSLASHGLSpl] = ACTIONS(6401), - [anon_sym_BSLASHglsdisp] = ACTIONS(6401), - [anon_sym_BSLASHglslink] = ACTIONS(6401), - [anon_sym_BSLASHglstext] = ACTIONS(6401), - [anon_sym_BSLASHGlstext] = ACTIONS(6401), - [anon_sym_BSLASHGLStext] = ACTIONS(6401), - [anon_sym_BSLASHglsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6401), - [anon_sym_BSLASHglsplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSplural] = ACTIONS(6401), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHglsname] = ACTIONS(6401), - [anon_sym_BSLASHGlsname] = ACTIONS(6401), - [anon_sym_BSLASHGLSname] = ACTIONS(6401), - [anon_sym_BSLASHglssymbol] = ACTIONS(6401), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6401), - [anon_sym_BSLASHglsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6401), - [anon_sym_BSLASHglsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6401), - [anon_sym_BSLASHglsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6401), - [anon_sym_BSLASHglsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6401), - [anon_sym_BSLASHglsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6401), - [anon_sym_BSLASHnewacronym] = ACTIONS(6401), - [anon_sym_BSLASHacrshort] = ACTIONS(6401), - [anon_sym_BSLASHAcrshort] = ACTIONS(6401), - [anon_sym_BSLASHACRshort] = ACTIONS(6401), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6401), - [anon_sym_BSLASHacrlong] = ACTIONS(6401), - [anon_sym_BSLASHAcrlong] = ACTIONS(6401), - [anon_sym_BSLASHACRlong] = ACTIONS(6401), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6401), - [anon_sym_BSLASHacrfull] = ACTIONS(6401), - [anon_sym_BSLASHAcrfull] = ACTIONS(6401), - [anon_sym_BSLASHACRfull] = ACTIONS(6401), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6401), - [anon_sym_BSLASHacs] = ACTIONS(6401), - [anon_sym_BSLASHAcs] = ACTIONS(6401), - [anon_sym_BSLASHacsp] = ACTIONS(6401), - [anon_sym_BSLASHAcsp] = ACTIONS(6401), - [anon_sym_BSLASHacl] = ACTIONS(6401), - [anon_sym_BSLASHAcl] = ACTIONS(6401), - [anon_sym_BSLASHaclp] = ACTIONS(6401), - [anon_sym_BSLASHAclp] = ACTIONS(6401), - [anon_sym_BSLASHacf] = ACTIONS(6401), - [anon_sym_BSLASHAcf] = ACTIONS(6401), - [anon_sym_BSLASHacfp] = ACTIONS(6401), - [anon_sym_BSLASHAcfp] = ACTIONS(6401), - [anon_sym_BSLASHac] = ACTIONS(6401), - [anon_sym_BSLASHAc] = ACTIONS(6401), - [anon_sym_BSLASHacp] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6401), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6401), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6401), - [anon_sym_BSLASHcolor] = ACTIONS(6401), - [anon_sym_BSLASHcolorbox] = ACTIONS(6401), - [anon_sym_BSLASHtextcolor] = ACTIONS(6401), - [anon_sym_BSLASHpagecolor] = ACTIONS(6401), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6401), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6401), - [anon_sym_BSLASHtext] = ACTIONS(6401), - [anon_sym_BSLASHintertext] = ACTIONS(6401), - [anon_sym_shortintertext] = ACTIONS(6401), - }, - [1085] = { - [sym_command_name] = ACTIONS(6405), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6405), - [anon_sym_LBRACK] = ACTIONS(6407), - [anon_sym_RBRACK] = ACTIONS(6407), - [anon_sym_COMMA] = ACTIONS(6407), - [anon_sym_EQ] = ACTIONS(6407), - [anon_sym_LPAREN] = ACTIONS(6407), - [anon_sym_RPAREN] = ACTIONS(6407), - [anon_sym_BSLASHpart] = ACTIONS(6405), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddpart] = ACTIONS(6405), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6407), - [anon_sym_BSLASHchapter] = ACTIONS(6405), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddchap] = ACTIONS(6405), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsection] = ACTIONS(6405), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddsec] = ACTIONS(6405), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubsection] = ACTIONS(6405), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6405), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHparagraph] = ACTIONS(6405), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6405), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6407), - [anon_sym_BSLASHitem] = ACTIONS(6405), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6407), - [anon_sym_LBRACE] = ACTIONS(6407), - [sym_word] = ACTIONS(6405), - [sym_placeholder] = ACTIONS(6407), - [anon_sym_PLUS] = ACTIONS(6407), - [anon_sym_DASH] = ACTIONS(6407), - [anon_sym_STAR] = ACTIONS(6407), - [anon_sym_SLASH] = ACTIONS(6407), - [anon_sym_LT] = ACTIONS(6405), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(6405), - [anon_sym_PIPE] = ACTIONS(6405), - [anon_sym_COLON] = ACTIONS(6405), - [anon_sym_SQUOTE] = ACTIONS(6405), - [anon_sym__] = ACTIONS(6407), - [anon_sym_CARET] = ACTIONS(6407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6407), - [anon_sym_DOLLAR] = ACTIONS(6405), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6407), - [anon_sym_BSLASHbegin] = ACTIONS(6405), - [anon_sym_BSLASHend] = ACTIONS(6405), - [anon_sym_BSLASHtitle] = ACTIONS(6405), - [anon_sym_BSLASHauthor] = ACTIONS(6405), - [anon_sym_BSLASHusepackage] = ACTIONS(6405), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6405), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6405), - [anon_sym_BSLASHinclude] = ACTIONS(6405), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6405), - [anon_sym_BSLASHinput] = ACTIONS(6405), - [anon_sym_BSLASHsubfile] = ACTIONS(6405), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6405), - [anon_sym_BSLASHbibliography] = ACTIONS(6405), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6405), - [anon_sym_BSLASHincludesvg] = ACTIONS(6405), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6405), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6405), - [anon_sym_BSLASHimport] = ACTIONS(6405), - [anon_sym_BSLASHsubimport] = ACTIONS(6405), - [anon_sym_BSLASHinputfrom] = ACTIONS(6405), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6405), - [anon_sym_BSLASHincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHcaption] = ACTIONS(6405), - [anon_sym_BSLASHcite] = ACTIONS(6405), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCite] = ACTIONS(6405), - [anon_sym_BSLASHnocite] = ACTIONS(6405), - [anon_sym_BSLASHcitet] = ACTIONS(6405), - [anon_sym_BSLASHcitep] = ACTIONS(6405), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteauthor] = ACTIONS(6405), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6405), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitetitle] = ACTIONS(6405), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteyear] = ACTIONS(6405), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitedate] = ACTIONS(6405), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteurl] = ACTIONS(6405), - [anon_sym_BSLASHfullcite] = ACTIONS(6405), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6405), - [anon_sym_BSLASHcitealt] = ACTIONS(6405), - [anon_sym_BSLASHcitealp] = ACTIONS(6405), - [anon_sym_BSLASHcitetext] = ACTIONS(6405), - [anon_sym_BSLASHparencite] = ACTIONS(6405), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHParencite] = ACTIONS(6405), - [anon_sym_BSLASHfootcite] = ACTIONS(6405), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6405), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6405), - [anon_sym_BSLASHtextcite] = ACTIONS(6405), - [anon_sym_BSLASHTextcite] = ACTIONS(6405), - [anon_sym_BSLASHsmartcite] = ACTIONS(6405), - [anon_sym_BSLASHSmartcite] = ACTIONS(6405), - [anon_sym_BSLASHsupercite] = ACTIONS(6405), - [anon_sym_BSLASHautocite] = ACTIONS(6405), - [anon_sym_BSLASHAutocite] = ACTIONS(6405), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHvolcite] = ACTIONS(6405), - [anon_sym_BSLASHVolcite] = ACTIONS(6405), - [anon_sym_BSLASHpvolcite] = ACTIONS(6405), - [anon_sym_BSLASHPvolcite] = ACTIONS(6405), - [anon_sym_BSLASHfvolcite] = ACTIONS(6405), - [anon_sym_BSLASHftvolcite] = ACTIONS(6405), - [anon_sym_BSLASHsvolcite] = ACTIONS(6405), - [anon_sym_BSLASHSvolcite] = ACTIONS(6405), - [anon_sym_BSLASHtvolcite] = ACTIONS(6405), - [anon_sym_BSLASHTvolcite] = ACTIONS(6405), - [anon_sym_BSLASHavolcite] = ACTIONS(6405), - [anon_sym_BSLASHAvolcite] = ACTIONS(6405), - [anon_sym_BSLASHnotecite] = ACTIONS(6405), - [anon_sym_BSLASHNotecite] = ACTIONS(6405), - [anon_sym_BSLASHpnotecite] = ACTIONS(6405), - [anon_sym_BSLASHPnotecite] = ACTIONS(6405), - [anon_sym_BSLASHfnotecite] = ACTIONS(6405), - [anon_sym_BSLASHlabel] = ACTIONS(6405), - [anon_sym_BSLASHref] = ACTIONS(6405), - [anon_sym_BSLASHeqref] = ACTIONS(6405), - [anon_sym_BSLASHvref] = ACTIONS(6405), - [anon_sym_BSLASHVref] = ACTIONS(6405), - [anon_sym_BSLASHautoref] = ACTIONS(6405), - [anon_sym_BSLASHpageref] = ACTIONS(6405), - [anon_sym_BSLASHcref] = ACTIONS(6405), - [anon_sym_BSLASHCref] = ACTIONS(6405), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnameCref] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHlabelcref] = ACTIONS(6405), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCrefrange] = ACTIONS(6405), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnewlabel] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6405), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6405), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6407), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHdef] = ACTIONS(6405), - [anon_sym_BSLASHlet] = ACTIONS(6405), - [anon_sym_BSLASHleft] = ACTIONS(6405), - [anon_sym_BSLASHbig] = ACTIONS(6405), - [anon_sym_BSLASHBig] = ACTIONS(6405), - [anon_sym_BSLASHbigg] = ACTIONS(6405), - [anon_sym_BSLASHBigg] = ACTIONS(6405), - [anon_sym_BSLASHbigl] = ACTIONS(6405), - [anon_sym_BSLASHBigl] = ACTIONS(6405), - [anon_sym_BSLASHbiggl] = ACTIONS(6405), - [anon_sym_BSLASHBiggl] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6405), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6405), - [anon_sym_BSLASHgls] = ACTIONS(6405), - [anon_sym_BSLASHGls] = ACTIONS(6405), - [anon_sym_BSLASHGLS] = ACTIONS(6405), - [anon_sym_BSLASHglspl] = ACTIONS(6405), - [anon_sym_BSLASHGlspl] = ACTIONS(6405), - [anon_sym_BSLASHGLSpl] = ACTIONS(6405), - [anon_sym_BSLASHglsdisp] = ACTIONS(6405), - [anon_sym_BSLASHglslink] = ACTIONS(6405), - [anon_sym_BSLASHglstext] = ACTIONS(6405), - [anon_sym_BSLASHGlstext] = ACTIONS(6405), - [anon_sym_BSLASHGLStext] = ACTIONS(6405), - [anon_sym_BSLASHglsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6405), - [anon_sym_BSLASHglsplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSplural] = ACTIONS(6405), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHglsname] = ACTIONS(6405), - [anon_sym_BSLASHGlsname] = ACTIONS(6405), - [anon_sym_BSLASHGLSname] = ACTIONS(6405), - [anon_sym_BSLASHglssymbol] = ACTIONS(6405), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6405), - [anon_sym_BSLASHglsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6405), - [anon_sym_BSLASHglsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6405), - [anon_sym_BSLASHglsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6405), - [anon_sym_BSLASHglsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6405), - [anon_sym_BSLASHglsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6405), - [anon_sym_BSLASHnewacronym] = ACTIONS(6405), - [anon_sym_BSLASHacrshort] = ACTIONS(6405), - [anon_sym_BSLASHAcrshort] = ACTIONS(6405), - [anon_sym_BSLASHACRshort] = ACTIONS(6405), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6405), - [anon_sym_BSLASHacrlong] = ACTIONS(6405), - [anon_sym_BSLASHAcrlong] = ACTIONS(6405), - [anon_sym_BSLASHACRlong] = ACTIONS(6405), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6405), - [anon_sym_BSLASHacrfull] = ACTIONS(6405), - [anon_sym_BSLASHAcrfull] = ACTIONS(6405), - [anon_sym_BSLASHACRfull] = ACTIONS(6405), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6405), - [anon_sym_BSLASHacs] = ACTIONS(6405), - [anon_sym_BSLASHAcs] = ACTIONS(6405), - [anon_sym_BSLASHacsp] = ACTIONS(6405), - [anon_sym_BSLASHAcsp] = ACTIONS(6405), - [anon_sym_BSLASHacl] = ACTIONS(6405), - [anon_sym_BSLASHAcl] = ACTIONS(6405), - [anon_sym_BSLASHaclp] = ACTIONS(6405), - [anon_sym_BSLASHAclp] = ACTIONS(6405), - [anon_sym_BSLASHacf] = ACTIONS(6405), - [anon_sym_BSLASHAcf] = ACTIONS(6405), - [anon_sym_BSLASHacfp] = ACTIONS(6405), - [anon_sym_BSLASHAcfp] = ACTIONS(6405), - [anon_sym_BSLASHac] = ACTIONS(6405), - [anon_sym_BSLASHAc] = ACTIONS(6405), - [anon_sym_BSLASHacp] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6405), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6405), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6405), - [anon_sym_BSLASHcolor] = ACTIONS(6405), - [anon_sym_BSLASHcolorbox] = ACTIONS(6405), - [anon_sym_BSLASHtextcolor] = ACTIONS(6405), - [anon_sym_BSLASHpagecolor] = ACTIONS(6405), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6405), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6405), - [anon_sym_BSLASHtext] = ACTIONS(6405), - [anon_sym_BSLASHintertext] = ACTIONS(6405), - [anon_sym_shortintertext] = ACTIONS(6405), - }, - [1086] = { - [sym_command_name] = ACTIONS(6409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6409), - [anon_sym_LBRACK] = ACTIONS(6411), - [anon_sym_RBRACK] = ACTIONS(6411), - [anon_sym_COMMA] = ACTIONS(6411), - [anon_sym_EQ] = ACTIONS(6411), - [anon_sym_LPAREN] = ACTIONS(6411), - [anon_sym_RPAREN] = ACTIONS(6411), - [anon_sym_BSLASHpart] = ACTIONS(6409), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddpart] = ACTIONS(6409), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6411), - [anon_sym_BSLASHchapter] = ACTIONS(6409), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddchap] = ACTIONS(6409), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsection] = ACTIONS(6409), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddsec] = ACTIONS(6409), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubsection] = ACTIONS(6409), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6409), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHparagraph] = ACTIONS(6409), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6409), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6411), - [anon_sym_BSLASHitem] = ACTIONS(6409), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6411), - [anon_sym_LBRACE] = ACTIONS(6411), - [sym_word] = ACTIONS(6409), - [sym_placeholder] = ACTIONS(6411), - [anon_sym_PLUS] = ACTIONS(6411), - [anon_sym_DASH] = ACTIONS(6411), - [anon_sym_STAR] = ACTIONS(6411), - [anon_sym_SLASH] = ACTIONS(6411), - [anon_sym_LT] = ACTIONS(6409), - [anon_sym_GT] = ACTIONS(6409), - [anon_sym_BANG] = ACTIONS(6409), - [anon_sym_PIPE] = ACTIONS(6409), - [anon_sym_COLON] = ACTIONS(6409), - [anon_sym_SQUOTE] = ACTIONS(6409), - [anon_sym__] = ACTIONS(6411), - [anon_sym_CARET] = ACTIONS(6411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6411), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6411), - [anon_sym_DOLLAR] = ACTIONS(6409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6411), - [anon_sym_BSLASHbegin] = ACTIONS(6409), - [anon_sym_BSLASHend] = ACTIONS(6409), - [anon_sym_BSLASHtitle] = ACTIONS(6409), - [anon_sym_BSLASHauthor] = ACTIONS(6409), - [anon_sym_BSLASHusepackage] = ACTIONS(6409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6409), - [anon_sym_BSLASHinclude] = ACTIONS(6409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6409), - [anon_sym_BSLASHinput] = ACTIONS(6409), - [anon_sym_BSLASHsubfile] = ACTIONS(6409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6409), - [anon_sym_BSLASHbibliography] = ACTIONS(6409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6409), - [anon_sym_BSLASHincludesvg] = ACTIONS(6409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6409), - [anon_sym_BSLASHimport] = ACTIONS(6409), - [anon_sym_BSLASHsubimport] = ACTIONS(6409), - [anon_sym_BSLASHinputfrom] = ACTIONS(6409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6409), - [anon_sym_BSLASHincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHcaption] = ACTIONS(6409), - [anon_sym_BSLASHcite] = ACTIONS(6409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCite] = ACTIONS(6409), - [anon_sym_BSLASHnocite] = ACTIONS(6409), - [anon_sym_BSLASHcitet] = ACTIONS(6409), - [anon_sym_BSLASHcitep] = ACTIONS(6409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteauthor] = ACTIONS(6409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitetitle] = ACTIONS(6409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteyear] = ACTIONS(6409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitedate] = ACTIONS(6409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteurl] = ACTIONS(6409), - [anon_sym_BSLASHfullcite] = ACTIONS(6409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6409), - [anon_sym_BSLASHcitealt] = ACTIONS(6409), - [anon_sym_BSLASHcitealp] = ACTIONS(6409), - [anon_sym_BSLASHcitetext] = ACTIONS(6409), - [anon_sym_BSLASHparencite] = ACTIONS(6409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHParencite] = ACTIONS(6409), - [anon_sym_BSLASHfootcite] = ACTIONS(6409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6409), - [anon_sym_BSLASHtextcite] = ACTIONS(6409), - [anon_sym_BSLASHTextcite] = ACTIONS(6409), - [anon_sym_BSLASHsmartcite] = ACTIONS(6409), - [anon_sym_BSLASHSmartcite] = ACTIONS(6409), - [anon_sym_BSLASHsupercite] = ACTIONS(6409), - [anon_sym_BSLASHautocite] = ACTIONS(6409), - [anon_sym_BSLASHAutocite] = ACTIONS(6409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHvolcite] = ACTIONS(6409), - [anon_sym_BSLASHVolcite] = ACTIONS(6409), - [anon_sym_BSLASHpvolcite] = ACTIONS(6409), - [anon_sym_BSLASHPvolcite] = ACTIONS(6409), - [anon_sym_BSLASHfvolcite] = ACTIONS(6409), - [anon_sym_BSLASHftvolcite] = ACTIONS(6409), - [anon_sym_BSLASHsvolcite] = ACTIONS(6409), - [anon_sym_BSLASHSvolcite] = ACTIONS(6409), - [anon_sym_BSLASHtvolcite] = ACTIONS(6409), - [anon_sym_BSLASHTvolcite] = ACTIONS(6409), - [anon_sym_BSLASHavolcite] = ACTIONS(6409), - [anon_sym_BSLASHAvolcite] = ACTIONS(6409), - [anon_sym_BSLASHnotecite] = ACTIONS(6409), - [anon_sym_BSLASHNotecite] = ACTIONS(6409), - [anon_sym_BSLASHpnotecite] = ACTIONS(6409), - [anon_sym_BSLASHPnotecite] = ACTIONS(6409), - [anon_sym_BSLASHfnotecite] = ACTIONS(6409), - [anon_sym_BSLASHlabel] = ACTIONS(6409), - [anon_sym_BSLASHref] = ACTIONS(6409), - [anon_sym_BSLASHeqref] = ACTIONS(6409), - [anon_sym_BSLASHvref] = ACTIONS(6409), - [anon_sym_BSLASHVref] = ACTIONS(6409), - [anon_sym_BSLASHautoref] = ACTIONS(6409), - [anon_sym_BSLASHpageref] = ACTIONS(6409), - [anon_sym_BSLASHcref] = ACTIONS(6409), - [anon_sym_BSLASHCref] = ACTIONS(6409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnameCref] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHlabelcref] = ACTIONS(6409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCrefrange] = ACTIONS(6409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnewlabel] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6411), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHdef] = ACTIONS(6409), - [anon_sym_BSLASHlet] = ACTIONS(6409), - [anon_sym_BSLASHleft] = ACTIONS(6409), - [anon_sym_BSLASHbig] = ACTIONS(6409), - [anon_sym_BSLASHBig] = ACTIONS(6409), - [anon_sym_BSLASHbigg] = ACTIONS(6409), - [anon_sym_BSLASHBigg] = ACTIONS(6409), - [anon_sym_BSLASHbigl] = ACTIONS(6409), - [anon_sym_BSLASHBigl] = ACTIONS(6409), - [anon_sym_BSLASHbiggl] = ACTIONS(6409), - [anon_sym_BSLASHBiggl] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6409), - [anon_sym_BSLASHgls] = ACTIONS(6409), - [anon_sym_BSLASHGls] = ACTIONS(6409), - [anon_sym_BSLASHGLS] = ACTIONS(6409), - [anon_sym_BSLASHglspl] = ACTIONS(6409), - [anon_sym_BSLASHGlspl] = ACTIONS(6409), - [anon_sym_BSLASHGLSpl] = ACTIONS(6409), - [anon_sym_BSLASHglsdisp] = ACTIONS(6409), - [anon_sym_BSLASHglslink] = ACTIONS(6409), - [anon_sym_BSLASHglstext] = ACTIONS(6409), - [anon_sym_BSLASHGlstext] = ACTIONS(6409), - [anon_sym_BSLASHGLStext] = ACTIONS(6409), - [anon_sym_BSLASHglsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6409), - [anon_sym_BSLASHglsplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSplural] = ACTIONS(6409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHglsname] = ACTIONS(6409), - [anon_sym_BSLASHGlsname] = ACTIONS(6409), - [anon_sym_BSLASHGLSname] = ACTIONS(6409), - [anon_sym_BSLASHglssymbol] = ACTIONS(6409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6409), - [anon_sym_BSLASHglsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6409), - [anon_sym_BSLASHglsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6409), - [anon_sym_BSLASHglsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6409), - [anon_sym_BSLASHglsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6409), - [anon_sym_BSLASHglsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6409), - [anon_sym_BSLASHnewacronym] = ACTIONS(6409), - [anon_sym_BSLASHacrshort] = ACTIONS(6409), - [anon_sym_BSLASHAcrshort] = ACTIONS(6409), - [anon_sym_BSLASHACRshort] = ACTIONS(6409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6409), - [anon_sym_BSLASHacrlong] = ACTIONS(6409), - [anon_sym_BSLASHAcrlong] = ACTIONS(6409), - [anon_sym_BSLASHACRlong] = ACTIONS(6409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6409), - [anon_sym_BSLASHacrfull] = ACTIONS(6409), - [anon_sym_BSLASHAcrfull] = ACTIONS(6409), - [anon_sym_BSLASHACRfull] = ACTIONS(6409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6409), - [anon_sym_BSLASHacs] = ACTIONS(6409), - [anon_sym_BSLASHAcs] = ACTIONS(6409), - [anon_sym_BSLASHacsp] = ACTIONS(6409), - [anon_sym_BSLASHAcsp] = ACTIONS(6409), - [anon_sym_BSLASHacl] = ACTIONS(6409), - [anon_sym_BSLASHAcl] = ACTIONS(6409), - [anon_sym_BSLASHaclp] = ACTIONS(6409), - [anon_sym_BSLASHAclp] = ACTIONS(6409), - [anon_sym_BSLASHacf] = ACTIONS(6409), - [anon_sym_BSLASHAcf] = ACTIONS(6409), - [anon_sym_BSLASHacfp] = ACTIONS(6409), - [anon_sym_BSLASHAcfp] = ACTIONS(6409), - [anon_sym_BSLASHac] = ACTIONS(6409), - [anon_sym_BSLASHAc] = ACTIONS(6409), - [anon_sym_BSLASHacp] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6409), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6409), - [anon_sym_BSLASHcolor] = ACTIONS(6409), - [anon_sym_BSLASHcolorbox] = ACTIONS(6409), - [anon_sym_BSLASHtextcolor] = ACTIONS(6409), - [anon_sym_BSLASHpagecolor] = ACTIONS(6409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6409), - [anon_sym_BSLASHtext] = ACTIONS(6409), - [anon_sym_BSLASHintertext] = ACTIONS(6409), - [anon_sym_shortintertext] = ACTIONS(6409), - }, - [1087] = { - [sym_command_name] = ACTIONS(6413), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6413), - [anon_sym_LBRACK] = ACTIONS(6415), - [anon_sym_RBRACK] = ACTIONS(6415), - [anon_sym_COMMA] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(6415), - [anon_sym_LPAREN] = ACTIONS(6415), - [anon_sym_RPAREN] = ACTIONS(6415), - [anon_sym_BSLASHpart] = ACTIONS(6413), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddpart] = ACTIONS(6413), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6415), - [anon_sym_BSLASHchapter] = ACTIONS(6413), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddchap] = ACTIONS(6413), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsection] = ACTIONS(6413), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddsec] = ACTIONS(6413), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubsection] = ACTIONS(6413), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6413), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHparagraph] = ACTIONS(6413), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6413), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6415), - [anon_sym_BSLASHitem] = ACTIONS(6413), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6415), - [anon_sym_LBRACE] = ACTIONS(6415), - [sym_word] = ACTIONS(6413), - [sym_placeholder] = ACTIONS(6415), - [anon_sym_PLUS] = ACTIONS(6415), - [anon_sym_DASH] = ACTIONS(6415), - [anon_sym_STAR] = ACTIONS(6415), - [anon_sym_SLASH] = ACTIONS(6415), - [anon_sym_LT] = ACTIONS(6413), - [anon_sym_GT] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(6413), - [anon_sym_PIPE] = ACTIONS(6413), - [anon_sym_COLON] = ACTIONS(6413), - [anon_sym_SQUOTE] = ACTIONS(6413), - [anon_sym__] = ACTIONS(6415), - [anon_sym_CARET] = ACTIONS(6415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6415), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6415), - [anon_sym_DOLLAR] = ACTIONS(6413), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6415), - [anon_sym_BSLASHbegin] = ACTIONS(6413), - [anon_sym_BSLASHend] = ACTIONS(6413), - [anon_sym_BSLASHtitle] = ACTIONS(6413), - [anon_sym_BSLASHauthor] = ACTIONS(6413), - [anon_sym_BSLASHusepackage] = ACTIONS(6413), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6413), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6413), - [anon_sym_BSLASHinclude] = ACTIONS(6413), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6413), - [anon_sym_BSLASHinput] = ACTIONS(6413), - [anon_sym_BSLASHsubfile] = ACTIONS(6413), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6413), - [anon_sym_BSLASHbibliography] = ACTIONS(6413), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6413), - [anon_sym_BSLASHincludesvg] = ACTIONS(6413), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6413), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6413), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6413), - [anon_sym_BSLASHimport] = ACTIONS(6413), - [anon_sym_BSLASHsubimport] = ACTIONS(6413), - [anon_sym_BSLASHinputfrom] = ACTIONS(6413), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6413), - [anon_sym_BSLASHincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHcaption] = ACTIONS(6413), - [anon_sym_BSLASHcite] = ACTIONS(6413), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCite] = ACTIONS(6413), - [anon_sym_BSLASHnocite] = ACTIONS(6413), - [anon_sym_BSLASHcitet] = ACTIONS(6413), - [anon_sym_BSLASHcitep] = ACTIONS(6413), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteauthor] = ACTIONS(6413), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6413), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitetitle] = ACTIONS(6413), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteyear] = ACTIONS(6413), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitedate] = ACTIONS(6413), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteurl] = ACTIONS(6413), - [anon_sym_BSLASHfullcite] = ACTIONS(6413), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6413), - [anon_sym_BSLASHcitealt] = ACTIONS(6413), - [anon_sym_BSLASHcitealp] = ACTIONS(6413), - [anon_sym_BSLASHcitetext] = ACTIONS(6413), - [anon_sym_BSLASHparencite] = ACTIONS(6413), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHParencite] = ACTIONS(6413), - [anon_sym_BSLASHfootcite] = ACTIONS(6413), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6413), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6413), - [anon_sym_BSLASHtextcite] = ACTIONS(6413), - [anon_sym_BSLASHTextcite] = ACTIONS(6413), - [anon_sym_BSLASHsmartcite] = ACTIONS(6413), - [anon_sym_BSLASHSmartcite] = ACTIONS(6413), - [anon_sym_BSLASHsupercite] = ACTIONS(6413), - [anon_sym_BSLASHautocite] = ACTIONS(6413), - [anon_sym_BSLASHAutocite] = ACTIONS(6413), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHvolcite] = ACTIONS(6413), - [anon_sym_BSLASHVolcite] = ACTIONS(6413), - [anon_sym_BSLASHpvolcite] = ACTIONS(6413), - [anon_sym_BSLASHPvolcite] = ACTIONS(6413), - [anon_sym_BSLASHfvolcite] = ACTIONS(6413), - [anon_sym_BSLASHftvolcite] = ACTIONS(6413), - [anon_sym_BSLASHsvolcite] = ACTIONS(6413), - [anon_sym_BSLASHSvolcite] = ACTIONS(6413), - [anon_sym_BSLASHtvolcite] = ACTIONS(6413), - [anon_sym_BSLASHTvolcite] = ACTIONS(6413), - [anon_sym_BSLASHavolcite] = ACTIONS(6413), - [anon_sym_BSLASHAvolcite] = ACTIONS(6413), - [anon_sym_BSLASHnotecite] = ACTIONS(6413), - [anon_sym_BSLASHNotecite] = ACTIONS(6413), - [anon_sym_BSLASHpnotecite] = ACTIONS(6413), - [anon_sym_BSLASHPnotecite] = ACTIONS(6413), - [anon_sym_BSLASHfnotecite] = ACTIONS(6413), - [anon_sym_BSLASHlabel] = ACTIONS(6413), - [anon_sym_BSLASHref] = ACTIONS(6413), - [anon_sym_BSLASHeqref] = ACTIONS(6413), - [anon_sym_BSLASHvref] = ACTIONS(6413), - [anon_sym_BSLASHVref] = ACTIONS(6413), - [anon_sym_BSLASHautoref] = ACTIONS(6413), - [anon_sym_BSLASHpageref] = ACTIONS(6413), - [anon_sym_BSLASHcref] = ACTIONS(6413), - [anon_sym_BSLASHCref] = ACTIONS(6413), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnameCref] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHlabelcref] = ACTIONS(6413), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCrefrange] = ACTIONS(6413), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnewlabel] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6413), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6413), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6415), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHdef] = ACTIONS(6413), - [anon_sym_BSLASHlet] = ACTIONS(6413), - [anon_sym_BSLASHleft] = ACTIONS(6413), - [anon_sym_BSLASHbig] = ACTIONS(6413), - [anon_sym_BSLASHBig] = ACTIONS(6413), - [anon_sym_BSLASHbigg] = ACTIONS(6413), - [anon_sym_BSLASHBigg] = ACTIONS(6413), - [anon_sym_BSLASHbigl] = ACTIONS(6413), - [anon_sym_BSLASHBigl] = ACTIONS(6413), - [anon_sym_BSLASHbiggl] = ACTIONS(6413), - [anon_sym_BSLASHBiggl] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6413), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6413), - [anon_sym_BSLASHgls] = ACTIONS(6413), - [anon_sym_BSLASHGls] = ACTIONS(6413), - [anon_sym_BSLASHGLS] = ACTIONS(6413), - [anon_sym_BSLASHglspl] = ACTIONS(6413), - [anon_sym_BSLASHGlspl] = ACTIONS(6413), - [anon_sym_BSLASHGLSpl] = ACTIONS(6413), - [anon_sym_BSLASHglsdisp] = ACTIONS(6413), - [anon_sym_BSLASHglslink] = ACTIONS(6413), - [anon_sym_BSLASHglstext] = ACTIONS(6413), - [anon_sym_BSLASHGlstext] = ACTIONS(6413), - [anon_sym_BSLASHGLStext] = ACTIONS(6413), - [anon_sym_BSLASHglsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6413), - [anon_sym_BSLASHglsplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSplural] = ACTIONS(6413), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHglsname] = ACTIONS(6413), - [anon_sym_BSLASHGlsname] = ACTIONS(6413), - [anon_sym_BSLASHGLSname] = ACTIONS(6413), - [anon_sym_BSLASHglssymbol] = ACTIONS(6413), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6413), - [anon_sym_BSLASHglsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6413), - [anon_sym_BSLASHglsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6413), - [anon_sym_BSLASHglsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6413), - [anon_sym_BSLASHglsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6413), - [anon_sym_BSLASHglsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6413), - [anon_sym_BSLASHnewacronym] = ACTIONS(6413), - [anon_sym_BSLASHacrshort] = ACTIONS(6413), - [anon_sym_BSLASHAcrshort] = ACTIONS(6413), - [anon_sym_BSLASHACRshort] = ACTIONS(6413), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6413), - [anon_sym_BSLASHacrlong] = ACTIONS(6413), - [anon_sym_BSLASHAcrlong] = ACTIONS(6413), - [anon_sym_BSLASHACRlong] = ACTIONS(6413), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6413), - [anon_sym_BSLASHacrfull] = ACTIONS(6413), - [anon_sym_BSLASHAcrfull] = ACTIONS(6413), - [anon_sym_BSLASHACRfull] = ACTIONS(6413), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6413), - [anon_sym_BSLASHacs] = ACTIONS(6413), - [anon_sym_BSLASHAcs] = ACTIONS(6413), - [anon_sym_BSLASHacsp] = ACTIONS(6413), - [anon_sym_BSLASHAcsp] = ACTIONS(6413), - [anon_sym_BSLASHacl] = ACTIONS(6413), - [anon_sym_BSLASHAcl] = ACTIONS(6413), - [anon_sym_BSLASHaclp] = ACTIONS(6413), - [anon_sym_BSLASHAclp] = ACTIONS(6413), - [anon_sym_BSLASHacf] = ACTIONS(6413), - [anon_sym_BSLASHAcf] = ACTIONS(6413), - [anon_sym_BSLASHacfp] = ACTIONS(6413), - [anon_sym_BSLASHAcfp] = ACTIONS(6413), - [anon_sym_BSLASHac] = ACTIONS(6413), - [anon_sym_BSLASHAc] = ACTIONS(6413), - [anon_sym_BSLASHacp] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6413), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6413), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6413), - [anon_sym_BSLASHcolor] = ACTIONS(6413), - [anon_sym_BSLASHcolorbox] = ACTIONS(6413), - [anon_sym_BSLASHtextcolor] = ACTIONS(6413), - [anon_sym_BSLASHpagecolor] = ACTIONS(6413), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6413), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6413), - [anon_sym_BSLASHtext] = ACTIONS(6413), - [anon_sym_BSLASHintertext] = ACTIONS(6413), - [anon_sym_shortintertext] = ACTIONS(6413), - }, - [1088] = { - [sym_command_name] = ACTIONS(6201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6201), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_EQ] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_BSLASHpart] = ACTIONS(6201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddpart] = ACTIONS(6201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6203), - [anon_sym_BSLASHchapter] = ACTIONS(6201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddchap] = ACTIONS(6201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsection] = ACTIONS(6201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddsec] = ACTIONS(6201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubsection] = ACTIONS(6201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHparagraph] = ACTIONS(6201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6203), - [anon_sym_BSLASHitem] = ACTIONS(6201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6203), - [sym_word] = ACTIONS(6201), - [sym_placeholder] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_SQUOTE] = ACTIONS(6201), - [anon_sym__] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), - [anon_sym_DOLLAR] = ACTIONS(6201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), - [anon_sym_BSLASHbegin] = ACTIONS(6201), - [anon_sym_BSLASHend] = ACTIONS(6201), - [anon_sym_BSLASHtitle] = ACTIONS(6201), - [anon_sym_BSLASHauthor] = ACTIONS(6201), - [anon_sym_BSLASHusepackage] = ACTIONS(6201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), - [anon_sym_BSLASHinclude] = ACTIONS(6201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), - [anon_sym_BSLASHinput] = ACTIONS(6201), - [anon_sym_BSLASHsubfile] = ACTIONS(6201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), - [anon_sym_BSLASHbibliography] = ACTIONS(6201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), - [anon_sym_BSLASHincludesvg] = ACTIONS(6201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), - [anon_sym_BSLASHimport] = ACTIONS(6201), - [anon_sym_BSLASHsubimport] = ACTIONS(6201), - [anon_sym_BSLASHinputfrom] = ACTIONS(6201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), - [anon_sym_BSLASHincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHcaption] = ACTIONS(6201), - [anon_sym_BSLASHcite] = ACTIONS(6201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCite] = ACTIONS(6201), - [anon_sym_BSLASHnocite] = ACTIONS(6201), - [anon_sym_BSLASHcitet] = ACTIONS(6201), - [anon_sym_BSLASHcitep] = ACTIONS(6201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteauthor] = ACTIONS(6201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitetitle] = ACTIONS(6201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteyear] = ACTIONS(6201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitedate] = ACTIONS(6201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteurl] = ACTIONS(6201), - [anon_sym_BSLASHfullcite] = ACTIONS(6201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), - [anon_sym_BSLASHcitealt] = ACTIONS(6201), - [anon_sym_BSLASHcitealp] = ACTIONS(6201), - [anon_sym_BSLASHcitetext] = ACTIONS(6201), - [anon_sym_BSLASHparencite] = ACTIONS(6201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHParencite] = ACTIONS(6201), - [anon_sym_BSLASHfootcite] = ACTIONS(6201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), - [anon_sym_BSLASHtextcite] = ACTIONS(6201), - [anon_sym_BSLASHTextcite] = ACTIONS(6201), - [anon_sym_BSLASHsmartcite] = ACTIONS(6201), - [anon_sym_BSLASHSmartcite] = ACTIONS(6201), - [anon_sym_BSLASHsupercite] = ACTIONS(6201), - [anon_sym_BSLASHautocite] = ACTIONS(6201), - [anon_sym_BSLASHAutocite] = ACTIONS(6201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHvolcite] = ACTIONS(6201), - [anon_sym_BSLASHVolcite] = ACTIONS(6201), - [anon_sym_BSLASHpvolcite] = ACTIONS(6201), - [anon_sym_BSLASHPvolcite] = ACTIONS(6201), - [anon_sym_BSLASHfvolcite] = ACTIONS(6201), - [anon_sym_BSLASHftvolcite] = ACTIONS(6201), - [anon_sym_BSLASHsvolcite] = ACTIONS(6201), - [anon_sym_BSLASHSvolcite] = ACTIONS(6201), - [anon_sym_BSLASHtvolcite] = ACTIONS(6201), - [anon_sym_BSLASHTvolcite] = ACTIONS(6201), - [anon_sym_BSLASHavolcite] = ACTIONS(6201), - [anon_sym_BSLASHAvolcite] = ACTIONS(6201), - [anon_sym_BSLASHnotecite] = ACTIONS(6201), - [anon_sym_BSLASHNotecite] = ACTIONS(6201), - [anon_sym_BSLASHpnotecite] = ACTIONS(6201), - [anon_sym_BSLASHPnotecite] = ACTIONS(6201), - [anon_sym_BSLASHfnotecite] = ACTIONS(6201), - [anon_sym_BSLASHlabel] = ACTIONS(6201), - [anon_sym_BSLASHref] = ACTIONS(6201), - [anon_sym_BSLASHeqref] = ACTIONS(6201), - [anon_sym_BSLASHvref] = ACTIONS(6201), - [anon_sym_BSLASHVref] = ACTIONS(6201), - [anon_sym_BSLASHautoref] = ACTIONS(6201), - [anon_sym_BSLASHpageref] = ACTIONS(6201), - [anon_sym_BSLASHcref] = ACTIONS(6201), - [anon_sym_BSLASHCref] = ACTIONS(6201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnameCref] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHlabelcref] = ACTIONS(6201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCrefrange] = ACTIONS(6201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnewlabel] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHdef] = ACTIONS(6201), - [anon_sym_BSLASHlet] = ACTIONS(6201), - [anon_sym_BSLASHleft] = ACTIONS(6201), - [anon_sym_BSLASHbig] = ACTIONS(6201), - [anon_sym_BSLASHBig] = ACTIONS(6201), - [anon_sym_BSLASHbigg] = ACTIONS(6201), - [anon_sym_BSLASHBigg] = ACTIONS(6201), - [anon_sym_BSLASHbigl] = ACTIONS(6201), - [anon_sym_BSLASHBigl] = ACTIONS(6201), - [anon_sym_BSLASHbiggl] = ACTIONS(6201), - [anon_sym_BSLASHBiggl] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), - [anon_sym_BSLASHgls] = ACTIONS(6201), - [anon_sym_BSLASHGls] = ACTIONS(6201), - [anon_sym_BSLASHGLS] = ACTIONS(6201), - [anon_sym_BSLASHglspl] = ACTIONS(6201), - [anon_sym_BSLASHGlspl] = ACTIONS(6201), - [anon_sym_BSLASHGLSpl] = ACTIONS(6201), - [anon_sym_BSLASHglsdisp] = ACTIONS(6201), - [anon_sym_BSLASHglslink] = ACTIONS(6201), - [anon_sym_BSLASHglstext] = ACTIONS(6201), - [anon_sym_BSLASHGlstext] = ACTIONS(6201), - [anon_sym_BSLASHGLStext] = ACTIONS(6201), - [anon_sym_BSLASHglsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), - [anon_sym_BSLASHglsplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSplural] = ACTIONS(6201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHglsname] = ACTIONS(6201), - [anon_sym_BSLASHGlsname] = ACTIONS(6201), - [anon_sym_BSLASHGLSname] = ACTIONS(6201), - [anon_sym_BSLASHglssymbol] = ACTIONS(6201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), - [anon_sym_BSLASHglsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), - [anon_sym_BSLASHglsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), - [anon_sym_BSLASHglsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), - [anon_sym_BSLASHglsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), - [anon_sym_BSLASHglsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), - [anon_sym_BSLASHnewacronym] = ACTIONS(6201), - [anon_sym_BSLASHacrshort] = ACTIONS(6201), - [anon_sym_BSLASHAcrshort] = ACTIONS(6201), - [anon_sym_BSLASHACRshort] = ACTIONS(6201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), - [anon_sym_BSLASHacrlong] = ACTIONS(6201), - [anon_sym_BSLASHAcrlong] = ACTIONS(6201), - [anon_sym_BSLASHACRlong] = ACTIONS(6201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), - [anon_sym_BSLASHacrfull] = ACTIONS(6201), - [anon_sym_BSLASHAcrfull] = ACTIONS(6201), - [anon_sym_BSLASHACRfull] = ACTIONS(6201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), - [anon_sym_BSLASHacs] = ACTIONS(6201), - [anon_sym_BSLASHAcs] = ACTIONS(6201), - [anon_sym_BSLASHacsp] = ACTIONS(6201), - [anon_sym_BSLASHAcsp] = ACTIONS(6201), - [anon_sym_BSLASHacl] = ACTIONS(6201), - [anon_sym_BSLASHAcl] = ACTIONS(6201), - [anon_sym_BSLASHaclp] = ACTIONS(6201), - [anon_sym_BSLASHAclp] = ACTIONS(6201), - [anon_sym_BSLASHacf] = ACTIONS(6201), - [anon_sym_BSLASHAcf] = ACTIONS(6201), - [anon_sym_BSLASHacfp] = ACTIONS(6201), - [anon_sym_BSLASHAcfp] = ACTIONS(6201), - [anon_sym_BSLASHac] = ACTIONS(6201), - [anon_sym_BSLASHAc] = ACTIONS(6201), - [anon_sym_BSLASHacp] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), - [anon_sym_BSLASHcolor] = ACTIONS(6201), - [anon_sym_BSLASHcolorbox] = ACTIONS(6201), - [anon_sym_BSLASHtextcolor] = ACTIONS(6201), - [anon_sym_BSLASHpagecolor] = ACTIONS(6201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), - [anon_sym_BSLASHtext] = ACTIONS(6201), - [anon_sym_BSLASHintertext] = ACTIONS(6201), - [anon_sym_shortintertext] = ACTIONS(6201), - }, - [1089] = { - [sym_command_name] = ACTIONS(6397), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6397), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(6399), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_LPAREN] = ACTIONS(6399), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_BSLASHpart] = ACTIONS(6397), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddpart] = ACTIONS(6397), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6399), - [anon_sym_BSLASHchapter] = ACTIONS(6397), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddchap] = ACTIONS(6397), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsection] = ACTIONS(6397), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddsec] = ACTIONS(6397), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubsection] = ACTIONS(6397), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6397), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHparagraph] = ACTIONS(6397), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6397), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6399), - [anon_sym_BSLASHitem] = ACTIONS(6397), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6399), - [anon_sym_LBRACE] = ACTIONS(6399), - [sym_word] = ACTIONS(6397), - [sym_placeholder] = ACTIONS(6399), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_LT] = ACTIONS(6397), - [anon_sym_GT] = ACTIONS(6397), - [anon_sym_BANG] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_SQUOTE] = ACTIONS(6397), - [anon_sym__] = ACTIONS(6399), - [anon_sym_CARET] = ACTIONS(6399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6399), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6399), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6399), - [anon_sym_DOLLAR] = ACTIONS(6397), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6399), - [anon_sym_BSLASHbegin] = ACTIONS(6397), - [anon_sym_BSLASHtitle] = ACTIONS(6397), - [anon_sym_BSLASHauthor] = ACTIONS(6397), - [anon_sym_BSLASHusepackage] = ACTIONS(6397), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6397), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6397), - [anon_sym_BSLASHinclude] = ACTIONS(6397), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6397), - [anon_sym_BSLASHinput] = ACTIONS(6397), - [anon_sym_BSLASHsubfile] = ACTIONS(6397), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6397), - [anon_sym_BSLASHbibliography] = ACTIONS(6397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6397), - [anon_sym_BSLASHincludesvg] = ACTIONS(6397), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6397), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6397), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6397), - [anon_sym_BSLASHimport] = ACTIONS(6397), - [anon_sym_BSLASHsubimport] = ACTIONS(6397), - [anon_sym_BSLASHinputfrom] = ACTIONS(6397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6397), - [anon_sym_BSLASHincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHcaption] = ACTIONS(6397), - [anon_sym_BSLASHcite] = ACTIONS(6397), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCite] = ACTIONS(6397), - [anon_sym_BSLASHnocite] = ACTIONS(6397), - [anon_sym_BSLASHcitet] = ACTIONS(6397), - [anon_sym_BSLASHcitep] = ACTIONS(6397), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteauthor] = ACTIONS(6397), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6397), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitetitle] = ACTIONS(6397), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteyear] = ACTIONS(6397), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitedate] = ACTIONS(6397), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteurl] = ACTIONS(6397), - [anon_sym_BSLASHfullcite] = ACTIONS(6397), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6397), - [anon_sym_BSLASHcitealt] = ACTIONS(6397), - [anon_sym_BSLASHcitealp] = ACTIONS(6397), - [anon_sym_BSLASHcitetext] = ACTIONS(6397), - [anon_sym_BSLASHparencite] = ACTIONS(6397), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHParencite] = ACTIONS(6397), - [anon_sym_BSLASHfootcite] = ACTIONS(6397), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6397), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6397), - [anon_sym_BSLASHtextcite] = ACTIONS(6397), - [anon_sym_BSLASHTextcite] = ACTIONS(6397), - [anon_sym_BSLASHsmartcite] = ACTIONS(6397), - [anon_sym_BSLASHSmartcite] = ACTIONS(6397), - [anon_sym_BSLASHsupercite] = ACTIONS(6397), - [anon_sym_BSLASHautocite] = ACTIONS(6397), - [anon_sym_BSLASHAutocite] = ACTIONS(6397), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHvolcite] = ACTIONS(6397), - [anon_sym_BSLASHVolcite] = ACTIONS(6397), - [anon_sym_BSLASHpvolcite] = ACTIONS(6397), - [anon_sym_BSLASHPvolcite] = ACTIONS(6397), - [anon_sym_BSLASHfvolcite] = ACTIONS(6397), - [anon_sym_BSLASHftvolcite] = ACTIONS(6397), - [anon_sym_BSLASHsvolcite] = ACTIONS(6397), - [anon_sym_BSLASHSvolcite] = ACTIONS(6397), - [anon_sym_BSLASHtvolcite] = ACTIONS(6397), - [anon_sym_BSLASHTvolcite] = ACTIONS(6397), - [anon_sym_BSLASHavolcite] = ACTIONS(6397), - [anon_sym_BSLASHAvolcite] = ACTIONS(6397), - [anon_sym_BSLASHnotecite] = ACTIONS(6397), - [anon_sym_BSLASHNotecite] = ACTIONS(6397), - [anon_sym_BSLASHpnotecite] = ACTIONS(6397), - [anon_sym_BSLASHPnotecite] = ACTIONS(6397), - [anon_sym_BSLASHfnotecite] = ACTIONS(6397), - [anon_sym_BSLASHlabel] = ACTIONS(6397), - [anon_sym_BSLASHref] = ACTIONS(6397), - [anon_sym_BSLASHeqref] = ACTIONS(6397), - [anon_sym_BSLASHvref] = ACTIONS(6397), - [anon_sym_BSLASHVref] = ACTIONS(6397), - [anon_sym_BSLASHautoref] = ACTIONS(6397), - [anon_sym_BSLASHpageref] = ACTIONS(6397), - [anon_sym_BSLASHcref] = ACTIONS(6397), - [anon_sym_BSLASHCref] = ACTIONS(6397), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnameCref] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHlabelcref] = ACTIONS(6397), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCrefrange] = ACTIONS(6397), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnewlabel] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6397), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6397), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6399), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHdef] = ACTIONS(6397), - [anon_sym_BSLASHlet] = ACTIONS(6397), - [anon_sym_BSLASHleft] = ACTIONS(6397), - [anon_sym_BSLASHbig] = ACTIONS(6397), - [anon_sym_BSLASHBig] = ACTIONS(6397), - [anon_sym_BSLASHbigg] = ACTIONS(6397), - [anon_sym_BSLASHBigg] = ACTIONS(6397), - [anon_sym_BSLASHbigl] = ACTIONS(6397), - [anon_sym_BSLASHBigl] = ACTIONS(6397), - [anon_sym_BSLASHbiggl] = ACTIONS(6397), - [anon_sym_BSLASHBiggl] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6397), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6397), - [anon_sym_BSLASHgls] = ACTIONS(6397), - [anon_sym_BSLASHGls] = ACTIONS(6397), - [anon_sym_BSLASHGLS] = ACTIONS(6397), - [anon_sym_BSLASHglspl] = ACTIONS(6397), - [anon_sym_BSLASHGlspl] = ACTIONS(6397), - [anon_sym_BSLASHGLSpl] = ACTIONS(6397), - [anon_sym_BSLASHglsdisp] = ACTIONS(6397), - [anon_sym_BSLASHglslink] = ACTIONS(6397), - [anon_sym_BSLASHglstext] = ACTIONS(6397), - [anon_sym_BSLASHGlstext] = ACTIONS(6397), - [anon_sym_BSLASHGLStext] = ACTIONS(6397), - [anon_sym_BSLASHglsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6397), - [anon_sym_BSLASHglsplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSplural] = ACTIONS(6397), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHglsname] = ACTIONS(6397), - [anon_sym_BSLASHGlsname] = ACTIONS(6397), - [anon_sym_BSLASHGLSname] = ACTIONS(6397), - [anon_sym_BSLASHglssymbol] = ACTIONS(6397), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6397), - [anon_sym_BSLASHglsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6397), - [anon_sym_BSLASHglsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6397), - [anon_sym_BSLASHglsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6397), - [anon_sym_BSLASHglsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6397), - [anon_sym_BSLASHglsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6397), - [anon_sym_BSLASHnewacronym] = ACTIONS(6397), - [anon_sym_BSLASHacrshort] = ACTIONS(6397), - [anon_sym_BSLASHAcrshort] = ACTIONS(6397), - [anon_sym_BSLASHACRshort] = ACTIONS(6397), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6397), - [anon_sym_BSLASHacrlong] = ACTIONS(6397), - [anon_sym_BSLASHAcrlong] = ACTIONS(6397), - [anon_sym_BSLASHACRlong] = ACTIONS(6397), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6397), - [anon_sym_BSLASHacrfull] = ACTIONS(6397), - [anon_sym_BSLASHAcrfull] = ACTIONS(6397), - [anon_sym_BSLASHACRfull] = ACTIONS(6397), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6397), - [anon_sym_BSLASHacs] = ACTIONS(6397), - [anon_sym_BSLASHAcs] = ACTIONS(6397), - [anon_sym_BSLASHacsp] = ACTIONS(6397), - [anon_sym_BSLASHAcsp] = ACTIONS(6397), - [anon_sym_BSLASHacl] = ACTIONS(6397), - [anon_sym_BSLASHAcl] = ACTIONS(6397), - [anon_sym_BSLASHaclp] = ACTIONS(6397), - [anon_sym_BSLASHAclp] = ACTIONS(6397), - [anon_sym_BSLASHacf] = ACTIONS(6397), - [anon_sym_BSLASHAcf] = ACTIONS(6397), - [anon_sym_BSLASHacfp] = ACTIONS(6397), - [anon_sym_BSLASHAcfp] = ACTIONS(6397), - [anon_sym_BSLASHac] = ACTIONS(6397), - [anon_sym_BSLASHAc] = ACTIONS(6397), - [anon_sym_BSLASHacp] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6397), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6397), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6397), - [anon_sym_BSLASHcolor] = ACTIONS(6397), - [anon_sym_BSLASHcolorbox] = ACTIONS(6397), - [anon_sym_BSLASHtextcolor] = ACTIONS(6397), - [anon_sym_BSLASHpagecolor] = ACTIONS(6397), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6397), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6397), - [anon_sym_BSLASHtext] = ACTIONS(6397), - [anon_sym_BSLASHintertext] = ACTIONS(6397), - [anon_sym_shortintertext] = ACTIONS(6397), - }, - [1090] = { - [sym_command_name] = ACTIONS(6349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6349), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_EQ] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_BSLASHpart] = ACTIONS(6349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddpart] = ACTIONS(6349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6351), - [anon_sym_BSLASHchapter] = ACTIONS(6349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddchap] = ACTIONS(6349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsection] = ACTIONS(6349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddsec] = ACTIONS(6349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubsection] = ACTIONS(6349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHparagraph] = ACTIONS(6349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6351), - [anon_sym_BSLASHitem] = ACTIONS(6349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6351), - [anon_sym_LBRACE] = ACTIONS(6351), - [sym_word] = ACTIONS(6349), - [sym_placeholder] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6351), - [anon_sym_DASH] = ACTIONS(6351), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_SQUOTE] = ACTIONS(6349), - [anon_sym__] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6351), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6351), - [anon_sym_DOLLAR] = ACTIONS(6349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6351), - [anon_sym_BSLASHbegin] = ACTIONS(6349), - [anon_sym_BSLASHtitle] = ACTIONS(6349), - [anon_sym_BSLASHauthor] = ACTIONS(6349), - [anon_sym_BSLASHusepackage] = ACTIONS(6349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6349), - [anon_sym_BSLASHinclude] = ACTIONS(6349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6349), - [anon_sym_BSLASHinput] = ACTIONS(6349), - [anon_sym_BSLASHsubfile] = ACTIONS(6349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6349), - [anon_sym_BSLASHbibliography] = ACTIONS(6349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6349), - [anon_sym_BSLASHincludesvg] = ACTIONS(6349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6349), - [anon_sym_BSLASHimport] = ACTIONS(6349), - [anon_sym_BSLASHsubimport] = ACTIONS(6349), - [anon_sym_BSLASHinputfrom] = ACTIONS(6349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6349), - [anon_sym_BSLASHincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHcaption] = ACTIONS(6349), - [anon_sym_BSLASHcite] = ACTIONS(6349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCite] = ACTIONS(6349), - [anon_sym_BSLASHnocite] = ACTIONS(6349), - [anon_sym_BSLASHcitet] = ACTIONS(6349), - [anon_sym_BSLASHcitep] = ACTIONS(6349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteauthor] = ACTIONS(6349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitetitle] = ACTIONS(6349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteyear] = ACTIONS(6349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitedate] = ACTIONS(6349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteurl] = ACTIONS(6349), - [anon_sym_BSLASHfullcite] = ACTIONS(6349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6349), - [anon_sym_BSLASHcitealt] = ACTIONS(6349), - [anon_sym_BSLASHcitealp] = ACTIONS(6349), - [anon_sym_BSLASHcitetext] = ACTIONS(6349), - [anon_sym_BSLASHparencite] = ACTIONS(6349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHParencite] = ACTIONS(6349), - [anon_sym_BSLASHfootcite] = ACTIONS(6349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6349), - [anon_sym_BSLASHtextcite] = ACTIONS(6349), - [anon_sym_BSLASHTextcite] = ACTIONS(6349), - [anon_sym_BSLASHsmartcite] = ACTIONS(6349), - [anon_sym_BSLASHSmartcite] = ACTIONS(6349), - [anon_sym_BSLASHsupercite] = ACTIONS(6349), - [anon_sym_BSLASHautocite] = ACTIONS(6349), - [anon_sym_BSLASHAutocite] = ACTIONS(6349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHvolcite] = ACTIONS(6349), - [anon_sym_BSLASHVolcite] = ACTIONS(6349), - [anon_sym_BSLASHpvolcite] = ACTIONS(6349), - [anon_sym_BSLASHPvolcite] = ACTIONS(6349), - [anon_sym_BSLASHfvolcite] = ACTIONS(6349), - [anon_sym_BSLASHftvolcite] = ACTIONS(6349), - [anon_sym_BSLASHsvolcite] = ACTIONS(6349), - [anon_sym_BSLASHSvolcite] = ACTIONS(6349), - [anon_sym_BSLASHtvolcite] = ACTIONS(6349), - [anon_sym_BSLASHTvolcite] = ACTIONS(6349), - [anon_sym_BSLASHavolcite] = ACTIONS(6349), - [anon_sym_BSLASHAvolcite] = ACTIONS(6349), - [anon_sym_BSLASHnotecite] = ACTIONS(6349), - [anon_sym_BSLASHNotecite] = ACTIONS(6349), - [anon_sym_BSLASHpnotecite] = ACTIONS(6349), - [anon_sym_BSLASHPnotecite] = ACTIONS(6349), - [anon_sym_BSLASHfnotecite] = ACTIONS(6349), - [anon_sym_BSLASHlabel] = ACTIONS(6349), - [anon_sym_BSLASHref] = ACTIONS(6349), - [anon_sym_BSLASHeqref] = ACTIONS(6349), - [anon_sym_BSLASHvref] = ACTIONS(6349), - [anon_sym_BSLASHVref] = ACTIONS(6349), - [anon_sym_BSLASHautoref] = ACTIONS(6349), - [anon_sym_BSLASHpageref] = ACTIONS(6349), - [anon_sym_BSLASHcref] = ACTIONS(6349), - [anon_sym_BSLASHCref] = ACTIONS(6349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnameCref] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHlabelcref] = ACTIONS(6349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCrefrange] = ACTIONS(6349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnewlabel] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6351), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHdef] = ACTIONS(6349), - [anon_sym_BSLASHlet] = ACTIONS(6349), - [anon_sym_BSLASHleft] = ACTIONS(6349), - [anon_sym_BSLASHbig] = ACTIONS(6349), - [anon_sym_BSLASHBig] = ACTIONS(6349), - [anon_sym_BSLASHbigg] = ACTIONS(6349), - [anon_sym_BSLASHBigg] = ACTIONS(6349), - [anon_sym_BSLASHbigl] = ACTIONS(6349), - [anon_sym_BSLASHBigl] = ACTIONS(6349), - [anon_sym_BSLASHbiggl] = ACTIONS(6349), - [anon_sym_BSLASHBiggl] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6349), - [anon_sym_BSLASHgls] = ACTIONS(6349), - [anon_sym_BSLASHGls] = ACTIONS(6349), - [anon_sym_BSLASHGLS] = ACTIONS(6349), - [anon_sym_BSLASHglspl] = ACTIONS(6349), - [anon_sym_BSLASHGlspl] = ACTIONS(6349), - [anon_sym_BSLASHGLSpl] = ACTIONS(6349), - [anon_sym_BSLASHglsdisp] = ACTIONS(6349), - [anon_sym_BSLASHglslink] = ACTIONS(6349), - [anon_sym_BSLASHglstext] = ACTIONS(6349), - [anon_sym_BSLASHGlstext] = ACTIONS(6349), - [anon_sym_BSLASHGLStext] = ACTIONS(6349), - [anon_sym_BSLASHglsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6349), - [anon_sym_BSLASHglsplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSplural] = ACTIONS(6349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHglsname] = ACTIONS(6349), - [anon_sym_BSLASHGlsname] = ACTIONS(6349), - [anon_sym_BSLASHGLSname] = ACTIONS(6349), - [anon_sym_BSLASHglssymbol] = ACTIONS(6349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6349), - [anon_sym_BSLASHglsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6349), - [anon_sym_BSLASHglsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6349), - [anon_sym_BSLASHglsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6349), - [anon_sym_BSLASHglsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6349), - [anon_sym_BSLASHglsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6349), - [anon_sym_BSLASHnewacronym] = ACTIONS(6349), - [anon_sym_BSLASHacrshort] = ACTIONS(6349), - [anon_sym_BSLASHAcrshort] = ACTIONS(6349), - [anon_sym_BSLASHACRshort] = ACTIONS(6349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6349), - [anon_sym_BSLASHacrlong] = ACTIONS(6349), - [anon_sym_BSLASHAcrlong] = ACTIONS(6349), - [anon_sym_BSLASHACRlong] = ACTIONS(6349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6349), - [anon_sym_BSLASHacrfull] = ACTIONS(6349), - [anon_sym_BSLASHAcrfull] = ACTIONS(6349), - [anon_sym_BSLASHACRfull] = ACTIONS(6349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6349), - [anon_sym_BSLASHacs] = ACTIONS(6349), - [anon_sym_BSLASHAcs] = ACTIONS(6349), - [anon_sym_BSLASHacsp] = ACTIONS(6349), - [anon_sym_BSLASHAcsp] = ACTIONS(6349), - [anon_sym_BSLASHacl] = ACTIONS(6349), - [anon_sym_BSLASHAcl] = ACTIONS(6349), - [anon_sym_BSLASHaclp] = ACTIONS(6349), - [anon_sym_BSLASHAclp] = ACTIONS(6349), - [anon_sym_BSLASHacf] = ACTIONS(6349), - [anon_sym_BSLASHAcf] = ACTIONS(6349), - [anon_sym_BSLASHacfp] = ACTIONS(6349), - [anon_sym_BSLASHAcfp] = ACTIONS(6349), - [anon_sym_BSLASHac] = ACTIONS(6349), - [anon_sym_BSLASHAc] = ACTIONS(6349), - [anon_sym_BSLASHacp] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6349), - [anon_sym_BSLASHcolor] = ACTIONS(6349), - [anon_sym_BSLASHcolorbox] = ACTIONS(6349), - [anon_sym_BSLASHtextcolor] = ACTIONS(6349), - [anon_sym_BSLASHpagecolor] = ACTIONS(6349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6349), - [anon_sym_BSLASHtext] = ACTIONS(6349), - [anon_sym_BSLASHintertext] = ACTIONS(6349), - [anon_sym_shortintertext] = ACTIONS(6349), - }, - [1091] = { - [sym_command_name] = ACTIONS(6125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6127), - [anon_sym_RBRACK] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6127), - [anon_sym_EQ] = ACTIONS(6127), - [anon_sym_LPAREN] = ACTIONS(6127), - [anon_sym_RPAREN] = ACTIONS(6127), - [anon_sym_BSLASHpart] = ACTIONS(6125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddpart] = ACTIONS(6125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6127), - [anon_sym_BSLASHchapter] = ACTIONS(6125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddchap] = ACTIONS(6125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsection] = ACTIONS(6125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddsec] = ACTIONS(6125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubsection] = ACTIONS(6125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHparagraph] = ACTIONS(6125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6127), - [anon_sym_BSLASHitem] = ACTIONS(6125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6127), - [anon_sym_LBRACE] = ACTIONS(6127), - [sym_word] = ACTIONS(6125), - [sym_placeholder] = ACTIONS(6127), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_LT] = ACTIONS(6125), - [anon_sym_GT] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_SQUOTE] = ACTIONS(6125), - [anon_sym__] = ACTIONS(6127), - [anon_sym_CARET] = ACTIONS(6127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6127), - [anon_sym_DOLLAR] = ACTIONS(6125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6127), - [anon_sym_BSLASHbegin] = ACTIONS(6125), - [anon_sym_BSLASHend] = ACTIONS(6125), - [anon_sym_BSLASHtitle] = ACTIONS(6125), - [anon_sym_BSLASHauthor] = ACTIONS(6125), - [anon_sym_BSLASHusepackage] = ACTIONS(6125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6125), - [anon_sym_BSLASHinclude] = ACTIONS(6125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6125), - [anon_sym_BSLASHinput] = ACTIONS(6125), - [anon_sym_BSLASHsubfile] = ACTIONS(6125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6125), - [anon_sym_BSLASHbibliography] = ACTIONS(6125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6125), - [anon_sym_BSLASHincludesvg] = ACTIONS(6125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6125), - [anon_sym_BSLASHimport] = ACTIONS(6125), - [anon_sym_BSLASHsubimport] = ACTIONS(6125), - [anon_sym_BSLASHinputfrom] = ACTIONS(6125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6125), - [anon_sym_BSLASHincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHcaption] = ACTIONS(6125), - [anon_sym_BSLASHcite] = ACTIONS(6125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCite] = ACTIONS(6125), - [anon_sym_BSLASHnocite] = ACTIONS(6125), - [anon_sym_BSLASHcitet] = ACTIONS(6125), - [anon_sym_BSLASHcitep] = ACTIONS(6125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteauthor] = ACTIONS(6125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitetitle] = ACTIONS(6125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteyear] = ACTIONS(6125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitedate] = ACTIONS(6125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteurl] = ACTIONS(6125), - [anon_sym_BSLASHfullcite] = ACTIONS(6125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6125), - [anon_sym_BSLASHcitealt] = ACTIONS(6125), - [anon_sym_BSLASHcitealp] = ACTIONS(6125), - [anon_sym_BSLASHcitetext] = ACTIONS(6125), - [anon_sym_BSLASHparencite] = ACTIONS(6125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHParencite] = ACTIONS(6125), - [anon_sym_BSLASHfootcite] = ACTIONS(6125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6125), - [anon_sym_BSLASHtextcite] = ACTIONS(6125), - [anon_sym_BSLASHTextcite] = ACTIONS(6125), - [anon_sym_BSLASHsmartcite] = ACTIONS(6125), - [anon_sym_BSLASHSmartcite] = ACTIONS(6125), - [anon_sym_BSLASHsupercite] = ACTIONS(6125), - [anon_sym_BSLASHautocite] = ACTIONS(6125), - [anon_sym_BSLASHAutocite] = ACTIONS(6125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHvolcite] = ACTIONS(6125), - [anon_sym_BSLASHVolcite] = ACTIONS(6125), - [anon_sym_BSLASHpvolcite] = ACTIONS(6125), - [anon_sym_BSLASHPvolcite] = ACTIONS(6125), - [anon_sym_BSLASHfvolcite] = ACTIONS(6125), - [anon_sym_BSLASHftvolcite] = ACTIONS(6125), - [anon_sym_BSLASHsvolcite] = ACTIONS(6125), - [anon_sym_BSLASHSvolcite] = ACTIONS(6125), - [anon_sym_BSLASHtvolcite] = ACTIONS(6125), - [anon_sym_BSLASHTvolcite] = ACTIONS(6125), - [anon_sym_BSLASHavolcite] = ACTIONS(6125), - [anon_sym_BSLASHAvolcite] = ACTIONS(6125), - [anon_sym_BSLASHnotecite] = ACTIONS(6125), - [anon_sym_BSLASHNotecite] = ACTIONS(6125), - [anon_sym_BSLASHpnotecite] = ACTIONS(6125), - [anon_sym_BSLASHPnotecite] = ACTIONS(6125), - [anon_sym_BSLASHfnotecite] = ACTIONS(6125), - [anon_sym_BSLASHlabel] = ACTIONS(6125), - [anon_sym_BSLASHref] = ACTIONS(6125), - [anon_sym_BSLASHeqref] = ACTIONS(6125), - [anon_sym_BSLASHvref] = ACTIONS(6125), - [anon_sym_BSLASHVref] = ACTIONS(6125), - [anon_sym_BSLASHautoref] = ACTIONS(6125), - [anon_sym_BSLASHpageref] = ACTIONS(6125), - [anon_sym_BSLASHcref] = ACTIONS(6125), - [anon_sym_BSLASHCref] = ACTIONS(6125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnameCref] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHlabelcref] = ACTIONS(6125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCrefrange] = ACTIONS(6125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnewlabel] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6127), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHdef] = ACTIONS(6125), - [anon_sym_BSLASHlet] = ACTIONS(6125), - [anon_sym_BSLASHleft] = ACTIONS(6125), - [anon_sym_BSLASHbig] = ACTIONS(6125), - [anon_sym_BSLASHBig] = ACTIONS(6125), - [anon_sym_BSLASHbigg] = ACTIONS(6125), - [anon_sym_BSLASHBigg] = ACTIONS(6125), - [anon_sym_BSLASHbigl] = ACTIONS(6125), - [anon_sym_BSLASHBigl] = ACTIONS(6125), - [anon_sym_BSLASHbiggl] = ACTIONS(6125), - [anon_sym_BSLASHBiggl] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6125), - [anon_sym_BSLASHgls] = ACTIONS(6125), - [anon_sym_BSLASHGls] = ACTIONS(6125), - [anon_sym_BSLASHGLS] = ACTIONS(6125), - [anon_sym_BSLASHglspl] = ACTIONS(6125), - [anon_sym_BSLASHGlspl] = ACTIONS(6125), - [anon_sym_BSLASHGLSpl] = ACTIONS(6125), - [anon_sym_BSLASHglsdisp] = ACTIONS(6125), - [anon_sym_BSLASHglslink] = ACTIONS(6125), - [anon_sym_BSLASHglstext] = ACTIONS(6125), - [anon_sym_BSLASHGlstext] = ACTIONS(6125), - [anon_sym_BSLASHGLStext] = ACTIONS(6125), - [anon_sym_BSLASHglsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6125), - [anon_sym_BSLASHglsplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSplural] = ACTIONS(6125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHglsname] = ACTIONS(6125), - [anon_sym_BSLASHGlsname] = ACTIONS(6125), - [anon_sym_BSLASHGLSname] = ACTIONS(6125), - [anon_sym_BSLASHglssymbol] = ACTIONS(6125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6125), - [anon_sym_BSLASHglsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6125), - [anon_sym_BSLASHglsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6125), - [anon_sym_BSLASHglsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6125), - [anon_sym_BSLASHglsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6125), - [anon_sym_BSLASHglsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6125), - [anon_sym_BSLASHnewacronym] = ACTIONS(6125), - [anon_sym_BSLASHacrshort] = ACTIONS(6125), - [anon_sym_BSLASHAcrshort] = ACTIONS(6125), - [anon_sym_BSLASHACRshort] = ACTIONS(6125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6125), - [anon_sym_BSLASHacrlong] = ACTIONS(6125), - [anon_sym_BSLASHAcrlong] = ACTIONS(6125), - [anon_sym_BSLASHACRlong] = ACTIONS(6125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6125), - [anon_sym_BSLASHacrfull] = ACTIONS(6125), - [anon_sym_BSLASHAcrfull] = ACTIONS(6125), - [anon_sym_BSLASHACRfull] = ACTIONS(6125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6125), - [anon_sym_BSLASHacs] = ACTIONS(6125), - [anon_sym_BSLASHAcs] = ACTIONS(6125), - [anon_sym_BSLASHacsp] = ACTIONS(6125), - [anon_sym_BSLASHAcsp] = ACTIONS(6125), - [anon_sym_BSLASHacl] = ACTIONS(6125), - [anon_sym_BSLASHAcl] = ACTIONS(6125), - [anon_sym_BSLASHaclp] = ACTIONS(6125), - [anon_sym_BSLASHAclp] = ACTIONS(6125), - [anon_sym_BSLASHacf] = ACTIONS(6125), - [anon_sym_BSLASHAcf] = ACTIONS(6125), - [anon_sym_BSLASHacfp] = ACTIONS(6125), - [anon_sym_BSLASHAcfp] = ACTIONS(6125), - [anon_sym_BSLASHac] = ACTIONS(6125), - [anon_sym_BSLASHAc] = ACTIONS(6125), - [anon_sym_BSLASHacp] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6125), - [anon_sym_BSLASHcolor] = ACTIONS(6125), - [anon_sym_BSLASHcolorbox] = ACTIONS(6125), - [anon_sym_BSLASHtextcolor] = ACTIONS(6125), - [anon_sym_BSLASHpagecolor] = ACTIONS(6125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6125), - [anon_sym_BSLASHtext] = ACTIONS(6125), - [anon_sym_BSLASHintertext] = ACTIONS(6125), - [anon_sym_shortintertext] = ACTIONS(6125), - }, - [1092] = { - [sym_command_name] = ACTIONS(6329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6329), - [anon_sym_LBRACK] = ACTIONS(6331), - [anon_sym_RBRACK] = ACTIONS(6331), - [anon_sym_COMMA] = ACTIONS(6331), - [anon_sym_EQ] = ACTIONS(6331), - [anon_sym_LPAREN] = ACTIONS(6331), - [anon_sym_RPAREN] = ACTIONS(6331), - [anon_sym_BSLASHpart] = ACTIONS(6329), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddpart] = ACTIONS(6329), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6331), - [anon_sym_BSLASHchapter] = ACTIONS(6329), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddchap] = ACTIONS(6329), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsection] = ACTIONS(6329), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddsec] = ACTIONS(6329), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubsection] = ACTIONS(6329), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6329), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHparagraph] = ACTIONS(6329), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6329), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6331), - [anon_sym_BSLASHitem] = ACTIONS(6329), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6331), - [sym_word] = ACTIONS(6329), - [sym_placeholder] = ACTIONS(6331), - [anon_sym_PLUS] = ACTIONS(6331), - [anon_sym_DASH] = ACTIONS(6331), - [anon_sym_STAR] = ACTIONS(6331), - [anon_sym_SLASH] = ACTIONS(6331), - [anon_sym_LT] = ACTIONS(6329), - [anon_sym_GT] = ACTIONS(6329), - [anon_sym_BANG] = ACTIONS(6329), - [anon_sym_PIPE] = ACTIONS(6329), - [anon_sym_COLON] = ACTIONS(6329), - [anon_sym_SQUOTE] = ACTIONS(6329), - [anon_sym__] = ACTIONS(6331), - [anon_sym_CARET] = ACTIONS(6331), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6331), - [anon_sym_DOLLAR] = ACTIONS(6329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6331), - [anon_sym_BSLASHbegin] = ACTIONS(6329), - [anon_sym_BSLASHend] = ACTIONS(6329), - [anon_sym_BSLASHtitle] = ACTIONS(6329), - [anon_sym_BSLASHauthor] = ACTIONS(6329), - [anon_sym_BSLASHusepackage] = ACTIONS(6329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6329), - [anon_sym_BSLASHinclude] = ACTIONS(6329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6329), - [anon_sym_BSLASHinput] = ACTIONS(6329), - [anon_sym_BSLASHsubfile] = ACTIONS(6329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6329), - [anon_sym_BSLASHbibliography] = ACTIONS(6329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6329), - [anon_sym_BSLASHincludesvg] = ACTIONS(6329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6329), - [anon_sym_BSLASHimport] = ACTIONS(6329), - [anon_sym_BSLASHsubimport] = ACTIONS(6329), - [anon_sym_BSLASHinputfrom] = ACTIONS(6329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6329), - [anon_sym_BSLASHincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHcaption] = ACTIONS(6329), - [anon_sym_BSLASHcite] = ACTIONS(6329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCite] = ACTIONS(6329), - [anon_sym_BSLASHnocite] = ACTIONS(6329), - [anon_sym_BSLASHcitet] = ACTIONS(6329), - [anon_sym_BSLASHcitep] = ACTIONS(6329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteauthor] = ACTIONS(6329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitetitle] = ACTIONS(6329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteyear] = ACTIONS(6329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitedate] = ACTIONS(6329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteurl] = ACTIONS(6329), - [anon_sym_BSLASHfullcite] = ACTIONS(6329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6329), - [anon_sym_BSLASHcitealt] = ACTIONS(6329), - [anon_sym_BSLASHcitealp] = ACTIONS(6329), - [anon_sym_BSLASHcitetext] = ACTIONS(6329), - [anon_sym_BSLASHparencite] = ACTIONS(6329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHParencite] = ACTIONS(6329), - [anon_sym_BSLASHfootcite] = ACTIONS(6329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6329), - [anon_sym_BSLASHtextcite] = ACTIONS(6329), - [anon_sym_BSLASHTextcite] = ACTIONS(6329), - [anon_sym_BSLASHsmartcite] = ACTIONS(6329), - [anon_sym_BSLASHSmartcite] = ACTIONS(6329), - [anon_sym_BSLASHsupercite] = ACTIONS(6329), - [anon_sym_BSLASHautocite] = ACTIONS(6329), - [anon_sym_BSLASHAutocite] = ACTIONS(6329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHvolcite] = ACTIONS(6329), - [anon_sym_BSLASHVolcite] = ACTIONS(6329), - [anon_sym_BSLASHpvolcite] = ACTIONS(6329), - [anon_sym_BSLASHPvolcite] = ACTIONS(6329), - [anon_sym_BSLASHfvolcite] = ACTIONS(6329), - [anon_sym_BSLASHftvolcite] = ACTIONS(6329), - [anon_sym_BSLASHsvolcite] = ACTIONS(6329), - [anon_sym_BSLASHSvolcite] = ACTIONS(6329), - [anon_sym_BSLASHtvolcite] = ACTIONS(6329), - [anon_sym_BSLASHTvolcite] = ACTIONS(6329), - [anon_sym_BSLASHavolcite] = ACTIONS(6329), - [anon_sym_BSLASHAvolcite] = ACTIONS(6329), - [anon_sym_BSLASHnotecite] = ACTIONS(6329), - [anon_sym_BSLASHNotecite] = ACTIONS(6329), - [anon_sym_BSLASHpnotecite] = ACTIONS(6329), - [anon_sym_BSLASHPnotecite] = ACTIONS(6329), - [anon_sym_BSLASHfnotecite] = ACTIONS(6329), - [anon_sym_BSLASHlabel] = ACTIONS(6329), - [anon_sym_BSLASHref] = ACTIONS(6329), - [anon_sym_BSLASHeqref] = ACTIONS(6329), - [anon_sym_BSLASHvref] = ACTIONS(6329), - [anon_sym_BSLASHVref] = ACTIONS(6329), - [anon_sym_BSLASHautoref] = ACTIONS(6329), - [anon_sym_BSLASHpageref] = ACTIONS(6329), - [anon_sym_BSLASHcref] = ACTIONS(6329), - [anon_sym_BSLASHCref] = ACTIONS(6329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnameCref] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHlabelcref] = ACTIONS(6329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCrefrange] = ACTIONS(6329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnewlabel] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6331), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHdef] = ACTIONS(6329), - [anon_sym_BSLASHlet] = ACTIONS(6329), - [anon_sym_BSLASHleft] = ACTIONS(6329), - [anon_sym_BSLASHbig] = ACTIONS(6329), - [anon_sym_BSLASHBig] = ACTIONS(6329), - [anon_sym_BSLASHbigg] = ACTIONS(6329), - [anon_sym_BSLASHBigg] = ACTIONS(6329), - [anon_sym_BSLASHbigl] = ACTIONS(6329), - [anon_sym_BSLASHBigl] = ACTIONS(6329), - [anon_sym_BSLASHbiggl] = ACTIONS(6329), - [anon_sym_BSLASHBiggl] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6329), - [anon_sym_BSLASHgls] = ACTIONS(6329), - [anon_sym_BSLASHGls] = ACTIONS(6329), - [anon_sym_BSLASHGLS] = ACTIONS(6329), - [anon_sym_BSLASHglspl] = ACTIONS(6329), - [anon_sym_BSLASHGlspl] = ACTIONS(6329), - [anon_sym_BSLASHGLSpl] = ACTIONS(6329), - [anon_sym_BSLASHglsdisp] = ACTIONS(6329), - [anon_sym_BSLASHglslink] = ACTIONS(6329), - [anon_sym_BSLASHglstext] = ACTIONS(6329), - [anon_sym_BSLASHGlstext] = ACTIONS(6329), - [anon_sym_BSLASHGLStext] = ACTIONS(6329), - [anon_sym_BSLASHglsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6329), - [anon_sym_BSLASHglsplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSplural] = ACTIONS(6329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHglsname] = ACTIONS(6329), - [anon_sym_BSLASHGlsname] = ACTIONS(6329), - [anon_sym_BSLASHGLSname] = ACTIONS(6329), - [anon_sym_BSLASHglssymbol] = ACTIONS(6329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6329), - [anon_sym_BSLASHglsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6329), - [anon_sym_BSLASHglsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6329), - [anon_sym_BSLASHglsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6329), - [anon_sym_BSLASHglsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6329), - [anon_sym_BSLASHglsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6329), - [anon_sym_BSLASHnewacronym] = ACTIONS(6329), - [anon_sym_BSLASHacrshort] = ACTIONS(6329), - [anon_sym_BSLASHAcrshort] = ACTIONS(6329), - [anon_sym_BSLASHACRshort] = ACTIONS(6329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6329), - [anon_sym_BSLASHacrlong] = ACTIONS(6329), - [anon_sym_BSLASHAcrlong] = ACTIONS(6329), - [anon_sym_BSLASHACRlong] = ACTIONS(6329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6329), - [anon_sym_BSLASHacrfull] = ACTIONS(6329), - [anon_sym_BSLASHAcrfull] = ACTIONS(6329), - [anon_sym_BSLASHACRfull] = ACTIONS(6329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6329), - [anon_sym_BSLASHacs] = ACTIONS(6329), - [anon_sym_BSLASHAcs] = ACTIONS(6329), - [anon_sym_BSLASHacsp] = ACTIONS(6329), - [anon_sym_BSLASHAcsp] = ACTIONS(6329), - [anon_sym_BSLASHacl] = ACTIONS(6329), - [anon_sym_BSLASHAcl] = ACTIONS(6329), - [anon_sym_BSLASHaclp] = ACTIONS(6329), - [anon_sym_BSLASHAclp] = ACTIONS(6329), - [anon_sym_BSLASHacf] = ACTIONS(6329), - [anon_sym_BSLASHAcf] = ACTIONS(6329), - [anon_sym_BSLASHacfp] = ACTIONS(6329), - [anon_sym_BSLASHAcfp] = ACTIONS(6329), - [anon_sym_BSLASHac] = ACTIONS(6329), - [anon_sym_BSLASHAc] = ACTIONS(6329), - [anon_sym_BSLASHacp] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6329), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6329), - [anon_sym_BSLASHcolor] = ACTIONS(6329), - [anon_sym_BSLASHcolorbox] = ACTIONS(6329), - [anon_sym_BSLASHtextcolor] = ACTIONS(6329), - [anon_sym_BSLASHpagecolor] = ACTIONS(6329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6329), - [anon_sym_BSLASHtext] = ACTIONS(6329), - [anon_sym_BSLASHintertext] = ACTIONS(6329), - [anon_sym_shortintertext] = ACTIONS(6329), - }, - [1093] = { - [sym_command_name] = ACTIONS(6321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(6323), - [anon_sym_RBRACK] = ACTIONS(6323), - [anon_sym_COMMA] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(6323), - [anon_sym_LPAREN] = ACTIONS(6323), - [anon_sym_RPAREN] = ACTIONS(6323), - [anon_sym_BSLASHpart] = ACTIONS(6321), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddpart] = ACTIONS(6321), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6323), - [anon_sym_BSLASHchapter] = ACTIONS(6321), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddchap] = ACTIONS(6321), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsection] = ACTIONS(6321), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddsec] = ACTIONS(6321), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubsection] = ACTIONS(6321), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6321), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHparagraph] = ACTIONS(6321), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6321), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6323), - [anon_sym_BSLASHitem] = ACTIONS(6321), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6323), - [anon_sym_LBRACE] = ACTIONS(6323), - [sym_word] = ACTIONS(6321), - [sym_placeholder] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6323), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_LT] = ACTIONS(6321), - [anon_sym_GT] = ACTIONS(6321), - [anon_sym_BANG] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_SQUOTE] = ACTIONS(6321), - [anon_sym__] = ACTIONS(6323), - [anon_sym_CARET] = ACTIONS(6323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6323), - [anon_sym_DOLLAR] = ACTIONS(6321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6323), - [anon_sym_BSLASHbegin] = ACTIONS(6321), - [anon_sym_BSLASHend] = ACTIONS(6321), - [anon_sym_BSLASHtitle] = ACTIONS(6321), - [anon_sym_BSLASHauthor] = ACTIONS(6321), - [anon_sym_BSLASHusepackage] = ACTIONS(6321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6321), - [anon_sym_BSLASHinclude] = ACTIONS(6321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6321), - [anon_sym_BSLASHinput] = ACTIONS(6321), - [anon_sym_BSLASHsubfile] = ACTIONS(6321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6321), - [anon_sym_BSLASHbibliography] = ACTIONS(6321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6321), - [anon_sym_BSLASHincludesvg] = ACTIONS(6321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6321), - [anon_sym_BSLASHimport] = ACTIONS(6321), - [anon_sym_BSLASHsubimport] = ACTIONS(6321), - [anon_sym_BSLASHinputfrom] = ACTIONS(6321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6321), - [anon_sym_BSLASHincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHcaption] = ACTIONS(6321), - [anon_sym_BSLASHcite] = ACTIONS(6321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCite] = ACTIONS(6321), - [anon_sym_BSLASHnocite] = ACTIONS(6321), - [anon_sym_BSLASHcitet] = ACTIONS(6321), - [anon_sym_BSLASHcitep] = ACTIONS(6321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteauthor] = ACTIONS(6321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitetitle] = ACTIONS(6321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteyear] = ACTIONS(6321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitedate] = ACTIONS(6321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteurl] = ACTIONS(6321), - [anon_sym_BSLASHfullcite] = ACTIONS(6321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6321), - [anon_sym_BSLASHcitealt] = ACTIONS(6321), - [anon_sym_BSLASHcitealp] = ACTIONS(6321), - [anon_sym_BSLASHcitetext] = ACTIONS(6321), - [anon_sym_BSLASHparencite] = ACTIONS(6321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHParencite] = ACTIONS(6321), - [anon_sym_BSLASHfootcite] = ACTIONS(6321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6321), - [anon_sym_BSLASHtextcite] = ACTIONS(6321), - [anon_sym_BSLASHTextcite] = ACTIONS(6321), - [anon_sym_BSLASHsmartcite] = ACTIONS(6321), - [anon_sym_BSLASHSmartcite] = ACTIONS(6321), - [anon_sym_BSLASHsupercite] = ACTIONS(6321), - [anon_sym_BSLASHautocite] = ACTIONS(6321), - [anon_sym_BSLASHAutocite] = ACTIONS(6321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHvolcite] = ACTIONS(6321), - [anon_sym_BSLASHVolcite] = ACTIONS(6321), - [anon_sym_BSLASHpvolcite] = ACTIONS(6321), - [anon_sym_BSLASHPvolcite] = ACTIONS(6321), - [anon_sym_BSLASHfvolcite] = ACTIONS(6321), - [anon_sym_BSLASHftvolcite] = ACTIONS(6321), - [anon_sym_BSLASHsvolcite] = ACTIONS(6321), - [anon_sym_BSLASHSvolcite] = ACTIONS(6321), - [anon_sym_BSLASHtvolcite] = ACTIONS(6321), - [anon_sym_BSLASHTvolcite] = ACTIONS(6321), - [anon_sym_BSLASHavolcite] = ACTIONS(6321), - [anon_sym_BSLASHAvolcite] = ACTIONS(6321), - [anon_sym_BSLASHnotecite] = ACTIONS(6321), - [anon_sym_BSLASHNotecite] = ACTIONS(6321), - [anon_sym_BSLASHpnotecite] = ACTIONS(6321), - [anon_sym_BSLASHPnotecite] = ACTIONS(6321), - [anon_sym_BSLASHfnotecite] = ACTIONS(6321), - [anon_sym_BSLASHlabel] = ACTIONS(6321), - [anon_sym_BSLASHref] = ACTIONS(6321), - [anon_sym_BSLASHeqref] = ACTIONS(6321), - [anon_sym_BSLASHvref] = ACTIONS(6321), - [anon_sym_BSLASHVref] = ACTIONS(6321), - [anon_sym_BSLASHautoref] = ACTIONS(6321), - [anon_sym_BSLASHpageref] = ACTIONS(6321), - [anon_sym_BSLASHcref] = ACTIONS(6321), - [anon_sym_BSLASHCref] = ACTIONS(6321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnameCref] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHlabelcref] = ACTIONS(6321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCrefrange] = ACTIONS(6321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnewlabel] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6323), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHdef] = ACTIONS(6321), - [anon_sym_BSLASHlet] = ACTIONS(6321), - [anon_sym_BSLASHleft] = ACTIONS(6321), - [anon_sym_BSLASHbig] = ACTIONS(6321), - [anon_sym_BSLASHBig] = ACTIONS(6321), - [anon_sym_BSLASHbigg] = ACTIONS(6321), - [anon_sym_BSLASHBigg] = ACTIONS(6321), - [anon_sym_BSLASHbigl] = ACTIONS(6321), - [anon_sym_BSLASHBigl] = ACTIONS(6321), - [anon_sym_BSLASHbiggl] = ACTIONS(6321), - [anon_sym_BSLASHBiggl] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6321), - [anon_sym_BSLASHgls] = ACTIONS(6321), - [anon_sym_BSLASHGls] = ACTIONS(6321), - [anon_sym_BSLASHGLS] = ACTIONS(6321), - [anon_sym_BSLASHglspl] = ACTIONS(6321), - [anon_sym_BSLASHGlspl] = ACTIONS(6321), - [anon_sym_BSLASHGLSpl] = ACTIONS(6321), - [anon_sym_BSLASHglsdisp] = ACTIONS(6321), - [anon_sym_BSLASHglslink] = ACTIONS(6321), - [anon_sym_BSLASHglstext] = ACTIONS(6321), - [anon_sym_BSLASHGlstext] = ACTIONS(6321), - [anon_sym_BSLASHGLStext] = ACTIONS(6321), - [anon_sym_BSLASHglsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6321), - [anon_sym_BSLASHglsplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSplural] = ACTIONS(6321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHglsname] = ACTIONS(6321), - [anon_sym_BSLASHGlsname] = ACTIONS(6321), - [anon_sym_BSLASHGLSname] = ACTIONS(6321), - [anon_sym_BSLASHglssymbol] = ACTIONS(6321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6321), - [anon_sym_BSLASHglsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6321), - [anon_sym_BSLASHglsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6321), - [anon_sym_BSLASHglsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6321), - [anon_sym_BSLASHglsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6321), - [anon_sym_BSLASHglsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6321), - [anon_sym_BSLASHnewacronym] = ACTIONS(6321), - [anon_sym_BSLASHacrshort] = ACTIONS(6321), - [anon_sym_BSLASHAcrshort] = ACTIONS(6321), - [anon_sym_BSLASHACRshort] = ACTIONS(6321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6321), - [anon_sym_BSLASHacrlong] = ACTIONS(6321), - [anon_sym_BSLASHAcrlong] = ACTIONS(6321), - [anon_sym_BSLASHACRlong] = ACTIONS(6321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6321), - [anon_sym_BSLASHacrfull] = ACTIONS(6321), - [anon_sym_BSLASHAcrfull] = ACTIONS(6321), - [anon_sym_BSLASHACRfull] = ACTIONS(6321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6321), - [anon_sym_BSLASHacs] = ACTIONS(6321), - [anon_sym_BSLASHAcs] = ACTIONS(6321), - [anon_sym_BSLASHacsp] = ACTIONS(6321), - [anon_sym_BSLASHAcsp] = ACTIONS(6321), - [anon_sym_BSLASHacl] = ACTIONS(6321), - [anon_sym_BSLASHAcl] = ACTIONS(6321), - [anon_sym_BSLASHaclp] = ACTIONS(6321), - [anon_sym_BSLASHAclp] = ACTIONS(6321), - [anon_sym_BSLASHacf] = ACTIONS(6321), - [anon_sym_BSLASHAcf] = ACTIONS(6321), - [anon_sym_BSLASHacfp] = ACTIONS(6321), - [anon_sym_BSLASHAcfp] = ACTIONS(6321), - [anon_sym_BSLASHac] = ACTIONS(6321), - [anon_sym_BSLASHAc] = ACTIONS(6321), - [anon_sym_BSLASHacp] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6321), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6321), - [anon_sym_BSLASHcolor] = ACTIONS(6321), - [anon_sym_BSLASHcolorbox] = ACTIONS(6321), - [anon_sym_BSLASHtextcolor] = ACTIONS(6321), - [anon_sym_BSLASHpagecolor] = ACTIONS(6321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6321), - [anon_sym_BSLASHtext] = ACTIONS(6321), - [anon_sym_BSLASHintertext] = ACTIONS(6321), - [anon_sym_shortintertext] = ACTIONS(6321), - }, - [1094] = { - [sym_command_name] = ACTIONS(6293), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(6295), - [anon_sym_RBRACK] = ACTIONS(6295), - [anon_sym_COMMA] = ACTIONS(6295), - [anon_sym_EQ] = ACTIONS(6295), - [anon_sym_LPAREN] = ACTIONS(6295), - [anon_sym_RPAREN] = ACTIONS(6295), - [anon_sym_BSLASHpart] = ACTIONS(6293), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddpart] = ACTIONS(6293), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6295), - [anon_sym_BSLASHchapter] = ACTIONS(6293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddchap] = ACTIONS(6293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsection] = ACTIONS(6293), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddsec] = ACTIONS(6293), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubsection] = ACTIONS(6293), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6293), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHparagraph] = ACTIONS(6293), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6293), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6295), - [anon_sym_BSLASHitem] = ACTIONS(6293), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6295), - [anon_sym_LBRACE] = ACTIONS(6295), - [sym_word] = ACTIONS(6293), - [sym_placeholder] = ACTIONS(6295), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6295), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_LT] = ACTIONS(6293), - [anon_sym_GT] = ACTIONS(6293), - [anon_sym_BANG] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_SQUOTE] = ACTIONS(6293), - [anon_sym__] = ACTIONS(6295), - [anon_sym_CARET] = ACTIONS(6295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6295), - [anon_sym_DOLLAR] = ACTIONS(6293), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6295), - [anon_sym_BSLASHbegin] = ACTIONS(6293), - [anon_sym_BSLASHend] = ACTIONS(6293), - [anon_sym_BSLASHtitle] = ACTIONS(6293), - [anon_sym_BSLASHauthor] = ACTIONS(6293), - [anon_sym_BSLASHusepackage] = ACTIONS(6293), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6293), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6293), - [anon_sym_BSLASHinclude] = ACTIONS(6293), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6293), - [anon_sym_BSLASHinput] = ACTIONS(6293), - [anon_sym_BSLASHsubfile] = ACTIONS(6293), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6293), - [anon_sym_BSLASHbibliography] = ACTIONS(6293), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6293), - [anon_sym_BSLASHincludesvg] = ACTIONS(6293), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6293), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6293), - [anon_sym_BSLASHimport] = ACTIONS(6293), - [anon_sym_BSLASHsubimport] = ACTIONS(6293), - [anon_sym_BSLASHinputfrom] = ACTIONS(6293), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6293), - [anon_sym_BSLASHincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHcaption] = ACTIONS(6293), - [anon_sym_BSLASHcite] = ACTIONS(6293), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCite] = ACTIONS(6293), - [anon_sym_BSLASHnocite] = ACTIONS(6293), - [anon_sym_BSLASHcitet] = ACTIONS(6293), - [anon_sym_BSLASHcitep] = ACTIONS(6293), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteauthor] = ACTIONS(6293), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6293), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitetitle] = ACTIONS(6293), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteyear] = ACTIONS(6293), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitedate] = ACTIONS(6293), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteurl] = ACTIONS(6293), - [anon_sym_BSLASHfullcite] = ACTIONS(6293), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6293), - [anon_sym_BSLASHcitealt] = ACTIONS(6293), - [anon_sym_BSLASHcitealp] = ACTIONS(6293), - [anon_sym_BSLASHcitetext] = ACTIONS(6293), - [anon_sym_BSLASHparencite] = ACTIONS(6293), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHParencite] = ACTIONS(6293), - [anon_sym_BSLASHfootcite] = ACTIONS(6293), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6293), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6293), - [anon_sym_BSLASHtextcite] = ACTIONS(6293), - [anon_sym_BSLASHTextcite] = ACTIONS(6293), - [anon_sym_BSLASHsmartcite] = ACTIONS(6293), - [anon_sym_BSLASHSmartcite] = ACTIONS(6293), - [anon_sym_BSLASHsupercite] = ACTIONS(6293), - [anon_sym_BSLASHautocite] = ACTIONS(6293), - [anon_sym_BSLASHAutocite] = ACTIONS(6293), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHvolcite] = ACTIONS(6293), - [anon_sym_BSLASHVolcite] = ACTIONS(6293), - [anon_sym_BSLASHpvolcite] = ACTIONS(6293), - [anon_sym_BSLASHPvolcite] = ACTIONS(6293), - [anon_sym_BSLASHfvolcite] = ACTIONS(6293), - [anon_sym_BSLASHftvolcite] = ACTIONS(6293), - [anon_sym_BSLASHsvolcite] = ACTIONS(6293), - [anon_sym_BSLASHSvolcite] = ACTIONS(6293), - [anon_sym_BSLASHtvolcite] = ACTIONS(6293), - [anon_sym_BSLASHTvolcite] = ACTIONS(6293), - [anon_sym_BSLASHavolcite] = ACTIONS(6293), - [anon_sym_BSLASHAvolcite] = ACTIONS(6293), - [anon_sym_BSLASHnotecite] = ACTIONS(6293), - [anon_sym_BSLASHNotecite] = ACTIONS(6293), - [anon_sym_BSLASHpnotecite] = ACTIONS(6293), - [anon_sym_BSLASHPnotecite] = ACTIONS(6293), - [anon_sym_BSLASHfnotecite] = ACTIONS(6293), - [anon_sym_BSLASHlabel] = ACTIONS(6293), - [anon_sym_BSLASHref] = ACTIONS(6293), - [anon_sym_BSLASHeqref] = ACTIONS(6293), - [anon_sym_BSLASHvref] = ACTIONS(6293), - [anon_sym_BSLASHVref] = ACTIONS(6293), - [anon_sym_BSLASHautoref] = ACTIONS(6293), - [anon_sym_BSLASHpageref] = ACTIONS(6293), - [anon_sym_BSLASHcref] = ACTIONS(6293), - [anon_sym_BSLASHCref] = ACTIONS(6293), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnameCref] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHlabelcref] = ACTIONS(6293), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCrefrange] = ACTIONS(6293), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnewlabel] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6293), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6293), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6295), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHdef] = ACTIONS(6293), - [anon_sym_BSLASHlet] = ACTIONS(6293), - [anon_sym_BSLASHleft] = ACTIONS(6293), - [anon_sym_BSLASHbig] = ACTIONS(6293), - [anon_sym_BSLASHBig] = ACTIONS(6293), - [anon_sym_BSLASHbigg] = ACTIONS(6293), - [anon_sym_BSLASHBigg] = ACTIONS(6293), - [anon_sym_BSLASHbigl] = ACTIONS(6293), - [anon_sym_BSLASHBigl] = ACTIONS(6293), - [anon_sym_BSLASHbiggl] = ACTIONS(6293), - [anon_sym_BSLASHBiggl] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6293), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6293), - [anon_sym_BSLASHgls] = ACTIONS(6293), - [anon_sym_BSLASHGls] = ACTIONS(6293), - [anon_sym_BSLASHGLS] = ACTIONS(6293), - [anon_sym_BSLASHglspl] = ACTIONS(6293), - [anon_sym_BSLASHGlspl] = ACTIONS(6293), - [anon_sym_BSLASHGLSpl] = ACTIONS(6293), - [anon_sym_BSLASHglsdisp] = ACTIONS(6293), - [anon_sym_BSLASHglslink] = ACTIONS(6293), - [anon_sym_BSLASHglstext] = ACTIONS(6293), - [anon_sym_BSLASHGlstext] = ACTIONS(6293), - [anon_sym_BSLASHGLStext] = ACTIONS(6293), - [anon_sym_BSLASHglsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6293), - [anon_sym_BSLASHglsplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSplural] = ACTIONS(6293), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHglsname] = ACTIONS(6293), - [anon_sym_BSLASHGlsname] = ACTIONS(6293), - [anon_sym_BSLASHGLSname] = ACTIONS(6293), - [anon_sym_BSLASHglssymbol] = ACTIONS(6293), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6293), - [anon_sym_BSLASHglsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6293), - [anon_sym_BSLASHglsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6293), - [anon_sym_BSLASHglsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6293), - [anon_sym_BSLASHglsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6293), - [anon_sym_BSLASHglsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6293), - [anon_sym_BSLASHnewacronym] = ACTIONS(6293), - [anon_sym_BSLASHacrshort] = ACTIONS(6293), - [anon_sym_BSLASHAcrshort] = ACTIONS(6293), - [anon_sym_BSLASHACRshort] = ACTIONS(6293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6293), - [anon_sym_BSLASHacrlong] = ACTIONS(6293), - [anon_sym_BSLASHAcrlong] = ACTIONS(6293), - [anon_sym_BSLASHACRlong] = ACTIONS(6293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6293), - [anon_sym_BSLASHacrfull] = ACTIONS(6293), - [anon_sym_BSLASHAcrfull] = ACTIONS(6293), - [anon_sym_BSLASHACRfull] = ACTIONS(6293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6293), - [anon_sym_BSLASHacs] = ACTIONS(6293), - [anon_sym_BSLASHAcs] = ACTIONS(6293), - [anon_sym_BSLASHacsp] = ACTIONS(6293), - [anon_sym_BSLASHAcsp] = ACTIONS(6293), - [anon_sym_BSLASHacl] = ACTIONS(6293), - [anon_sym_BSLASHAcl] = ACTIONS(6293), - [anon_sym_BSLASHaclp] = ACTIONS(6293), - [anon_sym_BSLASHAclp] = ACTIONS(6293), - [anon_sym_BSLASHacf] = ACTIONS(6293), - [anon_sym_BSLASHAcf] = ACTIONS(6293), - [anon_sym_BSLASHacfp] = ACTIONS(6293), - [anon_sym_BSLASHAcfp] = ACTIONS(6293), - [anon_sym_BSLASHac] = ACTIONS(6293), - [anon_sym_BSLASHAc] = ACTIONS(6293), - [anon_sym_BSLASHacp] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6293), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6293), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6293), - [anon_sym_BSLASHcolor] = ACTIONS(6293), - [anon_sym_BSLASHcolorbox] = ACTIONS(6293), - [anon_sym_BSLASHtextcolor] = ACTIONS(6293), - [anon_sym_BSLASHpagecolor] = ACTIONS(6293), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6293), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6293), - [anon_sym_BSLASHtext] = ACTIONS(6293), - [anon_sym_BSLASHintertext] = ACTIONS(6293), - [anon_sym_shortintertext] = ACTIONS(6293), - }, - [1095] = { - [sym_command_name] = ACTIONS(6289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(6291), - [anon_sym_RBRACK] = ACTIONS(6291), - [anon_sym_COMMA] = ACTIONS(6291), - [anon_sym_EQ] = ACTIONS(6291), - [anon_sym_LPAREN] = ACTIONS(6291), - [anon_sym_RPAREN] = ACTIONS(6291), - [anon_sym_BSLASHpart] = ACTIONS(6289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddpart] = ACTIONS(6289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6291), - [anon_sym_BSLASHchapter] = ACTIONS(6289), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddchap] = ACTIONS(6289), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsection] = ACTIONS(6289), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddsec] = ACTIONS(6289), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubsection] = ACTIONS(6289), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6289), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHparagraph] = ACTIONS(6289), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6289), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6291), - [anon_sym_BSLASHitem] = ACTIONS(6289), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6291), - [anon_sym_LBRACE] = ACTIONS(6291), - [sym_word] = ACTIONS(6289), - [sym_placeholder] = ACTIONS(6291), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6291), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_LT] = ACTIONS(6289), - [anon_sym_GT] = ACTIONS(6289), - [anon_sym_BANG] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_SQUOTE] = ACTIONS(6289), - [anon_sym__] = ACTIONS(6291), - [anon_sym_CARET] = ACTIONS(6291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6291), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6291), - [anon_sym_DOLLAR] = ACTIONS(6289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6291), - [anon_sym_BSLASHbegin] = ACTIONS(6289), - [anon_sym_BSLASHend] = ACTIONS(6289), - [anon_sym_BSLASHtitle] = ACTIONS(6289), - [anon_sym_BSLASHauthor] = ACTIONS(6289), - [anon_sym_BSLASHusepackage] = ACTIONS(6289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), - [anon_sym_BSLASHinclude] = ACTIONS(6289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), - [anon_sym_BSLASHinput] = ACTIONS(6289), - [anon_sym_BSLASHsubfile] = ACTIONS(6289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), - [anon_sym_BSLASHbibliography] = ACTIONS(6289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), - [anon_sym_BSLASHincludesvg] = ACTIONS(6289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), - [anon_sym_BSLASHimport] = ACTIONS(6289), - [anon_sym_BSLASHsubimport] = ACTIONS(6289), - [anon_sym_BSLASHinputfrom] = ACTIONS(6289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), - [anon_sym_BSLASHincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHcaption] = ACTIONS(6289), - [anon_sym_BSLASHcite] = ACTIONS(6289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCite] = ACTIONS(6289), - [anon_sym_BSLASHnocite] = ACTIONS(6289), - [anon_sym_BSLASHcitet] = ACTIONS(6289), - [anon_sym_BSLASHcitep] = ACTIONS(6289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteauthor] = ACTIONS(6289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitetitle] = ACTIONS(6289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteyear] = ACTIONS(6289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitedate] = ACTIONS(6289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteurl] = ACTIONS(6289), - [anon_sym_BSLASHfullcite] = ACTIONS(6289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), - [anon_sym_BSLASHcitealt] = ACTIONS(6289), - [anon_sym_BSLASHcitealp] = ACTIONS(6289), - [anon_sym_BSLASHcitetext] = ACTIONS(6289), - [anon_sym_BSLASHparencite] = ACTIONS(6289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHParencite] = ACTIONS(6289), - [anon_sym_BSLASHfootcite] = ACTIONS(6289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), - [anon_sym_BSLASHtextcite] = ACTIONS(6289), - [anon_sym_BSLASHTextcite] = ACTIONS(6289), - [anon_sym_BSLASHsmartcite] = ACTIONS(6289), - [anon_sym_BSLASHSmartcite] = ACTIONS(6289), - [anon_sym_BSLASHsupercite] = ACTIONS(6289), - [anon_sym_BSLASHautocite] = ACTIONS(6289), - [anon_sym_BSLASHAutocite] = ACTIONS(6289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHvolcite] = ACTIONS(6289), - [anon_sym_BSLASHVolcite] = ACTIONS(6289), - [anon_sym_BSLASHpvolcite] = ACTIONS(6289), - [anon_sym_BSLASHPvolcite] = ACTIONS(6289), - [anon_sym_BSLASHfvolcite] = ACTIONS(6289), - [anon_sym_BSLASHftvolcite] = ACTIONS(6289), - [anon_sym_BSLASHsvolcite] = ACTIONS(6289), - [anon_sym_BSLASHSvolcite] = ACTIONS(6289), - [anon_sym_BSLASHtvolcite] = ACTIONS(6289), - [anon_sym_BSLASHTvolcite] = ACTIONS(6289), - [anon_sym_BSLASHavolcite] = ACTIONS(6289), - [anon_sym_BSLASHAvolcite] = ACTIONS(6289), - [anon_sym_BSLASHnotecite] = ACTIONS(6289), - [anon_sym_BSLASHNotecite] = ACTIONS(6289), - [anon_sym_BSLASHpnotecite] = ACTIONS(6289), - [anon_sym_BSLASHPnotecite] = ACTIONS(6289), - [anon_sym_BSLASHfnotecite] = ACTIONS(6289), - [anon_sym_BSLASHlabel] = ACTIONS(6289), - [anon_sym_BSLASHref] = ACTIONS(6289), - [anon_sym_BSLASHeqref] = ACTIONS(6289), - [anon_sym_BSLASHvref] = ACTIONS(6289), - [anon_sym_BSLASHVref] = ACTIONS(6289), - [anon_sym_BSLASHautoref] = ACTIONS(6289), - [anon_sym_BSLASHpageref] = ACTIONS(6289), - [anon_sym_BSLASHcref] = ACTIONS(6289), - [anon_sym_BSLASHCref] = ACTIONS(6289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnameCref] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHlabelcref] = ACTIONS(6289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCrefrange] = ACTIONS(6289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnewlabel] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHdef] = ACTIONS(6289), - [anon_sym_BSLASHlet] = ACTIONS(6289), - [anon_sym_BSLASHleft] = ACTIONS(6289), - [anon_sym_BSLASHbig] = ACTIONS(6289), - [anon_sym_BSLASHBig] = ACTIONS(6289), - [anon_sym_BSLASHbigg] = ACTIONS(6289), - [anon_sym_BSLASHBigg] = ACTIONS(6289), - [anon_sym_BSLASHbigl] = ACTIONS(6289), - [anon_sym_BSLASHBigl] = ACTIONS(6289), - [anon_sym_BSLASHbiggl] = ACTIONS(6289), - [anon_sym_BSLASHBiggl] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), - [anon_sym_BSLASHgls] = ACTIONS(6289), - [anon_sym_BSLASHGls] = ACTIONS(6289), - [anon_sym_BSLASHGLS] = ACTIONS(6289), - [anon_sym_BSLASHglspl] = ACTIONS(6289), - [anon_sym_BSLASHGlspl] = ACTIONS(6289), - [anon_sym_BSLASHGLSpl] = ACTIONS(6289), - [anon_sym_BSLASHglsdisp] = ACTIONS(6289), - [anon_sym_BSLASHglslink] = ACTIONS(6289), - [anon_sym_BSLASHglstext] = ACTIONS(6289), - [anon_sym_BSLASHGlstext] = ACTIONS(6289), - [anon_sym_BSLASHGLStext] = ACTIONS(6289), - [anon_sym_BSLASHglsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), - [anon_sym_BSLASHglsplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSplural] = ACTIONS(6289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHglsname] = ACTIONS(6289), - [anon_sym_BSLASHGlsname] = ACTIONS(6289), - [anon_sym_BSLASHGLSname] = ACTIONS(6289), - [anon_sym_BSLASHglssymbol] = ACTIONS(6289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), - [anon_sym_BSLASHglsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), - [anon_sym_BSLASHglsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), - [anon_sym_BSLASHglsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), - [anon_sym_BSLASHglsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), - [anon_sym_BSLASHglsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), - [anon_sym_BSLASHnewacronym] = ACTIONS(6289), - [anon_sym_BSLASHacrshort] = ACTIONS(6289), - [anon_sym_BSLASHAcrshort] = ACTIONS(6289), - [anon_sym_BSLASHACRshort] = ACTIONS(6289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), - [anon_sym_BSLASHacrlong] = ACTIONS(6289), - [anon_sym_BSLASHAcrlong] = ACTIONS(6289), - [anon_sym_BSLASHACRlong] = ACTIONS(6289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), - [anon_sym_BSLASHacrfull] = ACTIONS(6289), - [anon_sym_BSLASHAcrfull] = ACTIONS(6289), - [anon_sym_BSLASHACRfull] = ACTIONS(6289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), - [anon_sym_BSLASHacs] = ACTIONS(6289), - [anon_sym_BSLASHAcs] = ACTIONS(6289), - [anon_sym_BSLASHacsp] = ACTIONS(6289), - [anon_sym_BSLASHAcsp] = ACTIONS(6289), - [anon_sym_BSLASHacl] = ACTIONS(6289), - [anon_sym_BSLASHAcl] = ACTIONS(6289), - [anon_sym_BSLASHaclp] = ACTIONS(6289), - [anon_sym_BSLASHAclp] = ACTIONS(6289), - [anon_sym_BSLASHacf] = ACTIONS(6289), - [anon_sym_BSLASHAcf] = ACTIONS(6289), - [anon_sym_BSLASHacfp] = ACTIONS(6289), - [anon_sym_BSLASHAcfp] = ACTIONS(6289), - [anon_sym_BSLASHac] = ACTIONS(6289), - [anon_sym_BSLASHAc] = ACTIONS(6289), - [anon_sym_BSLASHacp] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), - [anon_sym_BSLASHcolor] = ACTIONS(6289), - [anon_sym_BSLASHcolorbox] = ACTIONS(6289), - [anon_sym_BSLASHtextcolor] = ACTIONS(6289), - [anon_sym_BSLASHpagecolor] = ACTIONS(6289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), - [anon_sym_BSLASHtext] = ACTIONS(6289), - [anon_sym_BSLASHintertext] = ACTIONS(6289), - [anon_sym_shortintertext] = ACTIONS(6289), - }, - [1096] = { - [sym_command_name] = ACTIONS(6273), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6273), - [anon_sym_LBRACK] = ACTIONS(6275), - [anon_sym_RBRACK] = ACTIONS(6275), - [anon_sym_COMMA] = ACTIONS(6275), - [anon_sym_EQ] = ACTIONS(6275), - [anon_sym_LPAREN] = ACTIONS(6275), - [anon_sym_RPAREN] = ACTIONS(6275), - [anon_sym_BSLASHpart] = ACTIONS(6273), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddpart] = ACTIONS(6273), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6275), - [anon_sym_BSLASHchapter] = ACTIONS(6273), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddchap] = ACTIONS(6273), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsection] = ACTIONS(6273), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddsec] = ACTIONS(6273), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubsection] = ACTIONS(6273), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6273), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHparagraph] = ACTIONS(6273), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6273), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6275), - [anon_sym_BSLASHitem] = ACTIONS(6273), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6275), - [anon_sym_LBRACE] = ACTIONS(6275), - [sym_word] = ACTIONS(6273), - [sym_placeholder] = ACTIONS(6275), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_SQUOTE] = ACTIONS(6273), - [anon_sym__] = ACTIONS(6275), - [anon_sym_CARET] = ACTIONS(6275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6275), - [anon_sym_DOLLAR] = ACTIONS(6273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6275), - [anon_sym_BSLASHbegin] = ACTIONS(6273), - [anon_sym_BSLASHend] = ACTIONS(6273), - [anon_sym_BSLASHtitle] = ACTIONS(6273), - [anon_sym_BSLASHauthor] = ACTIONS(6273), - [anon_sym_BSLASHusepackage] = ACTIONS(6273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6273), - [anon_sym_BSLASHinclude] = ACTIONS(6273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6273), - [anon_sym_BSLASHinput] = ACTIONS(6273), - [anon_sym_BSLASHsubfile] = ACTIONS(6273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6273), - [anon_sym_BSLASHbibliography] = ACTIONS(6273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6273), - [anon_sym_BSLASHincludesvg] = ACTIONS(6273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6273), - [anon_sym_BSLASHimport] = ACTIONS(6273), - [anon_sym_BSLASHsubimport] = ACTIONS(6273), - [anon_sym_BSLASHinputfrom] = ACTIONS(6273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6273), - [anon_sym_BSLASHincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHcaption] = ACTIONS(6273), - [anon_sym_BSLASHcite] = ACTIONS(6273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCite] = ACTIONS(6273), - [anon_sym_BSLASHnocite] = ACTIONS(6273), - [anon_sym_BSLASHcitet] = ACTIONS(6273), - [anon_sym_BSLASHcitep] = ACTIONS(6273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteauthor] = ACTIONS(6273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitetitle] = ACTIONS(6273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteyear] = ACTIONS(6273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitedate] = ACTIONS(6273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteurl] = ACTIONS(6273), - [anon_sym_BSLASHfullcite] = ACTIONS(6273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6273), - [anon_sym_BSLASHcitealt] = ACTIONS(6273), - [anon_sym_BSLASHcitealp] = ACTIONS(6273), - [anon_sym_BSLASHcitetext] = ACTIONS(6273), - [anon_sym_BSLASHparencite] = ACTIONS(6273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHParencite] = ACTIONS(6273), - [anon_sym_BSLASHfootcite] = ACTIONS(6273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6273), - [anon_sym_BSLASHtextcite] = ACTIONS(6273), - [anon_sym_BSLASHTextcite] = ACTIONS(6273), - [anon_sym_BSLASHsmartcite] = ACTIONS(6273), - [anon_sym_BSLASHSmartcite] = ACTIONS(6273), - [anon_sym_BSLASHsupercite] = ACTIONS(6273), - [anon_sym_BSLASHautocite] = ACTIONS(6273), - [anon_sym_BSLASHAutocite] = ACTIONS(6273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHvolcite] = ACTIONS(6273), - [anon_sym_BSLASHVolcite] = ACTIONS(6273), - [anon_sym_BSLASHpvolcite] = ACTIONS(6273), - [anon_sym_BSLASHPvolcite] = ACTIONS(6273), - [anon_sym_BSLASHfvolcite] = ACTIONS(6273), - [anon_sym_BSLASHftvolcite] = ACTIONS(6273), - [anon_sym_BSLASHsvolcite] = ACTIONS(6273), - [anon_sym_BSLASHSvolcite] = ACTIONS(6273), - [anon_sym_BSLASHtvolcite] = ACTIONS(6273), - [anon_sym_BSLASHTvolcite] = ACTIONS(6273), - [anon_sym_BSLASHavolcite] = ACTIONS(6273), - [anon_sym_BSLASHAvolcite] = ACTIONS(6273), - [anon_sym_BSLASHnotecite] = ACTIONS(6273), - [anon_sym_BSLASHNotecite] = ACTIONS(6273), - [anon_sym_BSLASHpnotecite] = ACTIONS(6273), - [anon_sym_BSLASHPnotecite] = ACTIONS(6273), - [anon_sym_BSLASHfnotecite] = ACTIONS(6273), - [anon_sym_BSLASHlabel] = ACTIONS(6273), - [anon_sym_BSLASHref] = ACTIONS(6273), - [anon_sym_BSLASHeqref] = ACTIONS(6273), - [anon_sym_BSLASHvref] = ACTIONS(6273), - [anon_sym_BSLASHVref] = ACTIONS(6273), - [anon_sym_BSLASHautoref] = ACTIONS(6273), - [anon_sym_BSLASHpageref] = ACTIONS(6273), - [anon_sym_BSLASHcref] = ACTIONS(6273), - [anon_sym_BSLASHCref] = ACTIONS(6273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnameCref] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHlabelcref] = ACTIONS(6273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCrefrange] = ACTIONS(6273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnewlabel] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6275), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHdef] = ACTIONS(6273), - [anon_sym_BSLASHlet] = ACTIONS(6273), - [anon_sym_BSLASHleft] = ACTIONS(6273), - [anon_sym_BSLASHbig] = ACTIONS(6273), - [anon_sym_BSLASHBig] = ACTIONS(6273), - [anon_sym_BSLASHbigg] = ACTIONS(6273), - [anon_sym_BSLASHBigg] = ACTIONS(6273), - [anon_sym_BSLASHbigl] = ACTIONS(6273), - [anon_sym_BSLASHBigl] = ACTIONS(6273), - [anon_sym_BSLASHbiggl] = ACTIONS(6273), - [anon_sym_BSLASHBiggl] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6273), - [anon_sym_BSLASHgls] = ACTIONS(6273), - [anon_sym_BSLASHGls] = ACTIONS(6273), - [anon_sym_BSLASHGLS] = ACTIONS(6273), - [anon_sym_BSLASHglspl] = ACTIONS(6273), - [anon_sym_BSLASHGlspl] = ACTIONS(6273), - [anon_sym_BSLASHGLSpl] = ACTIONS(6273), - [anon_sym_BSLASHglsdisp] = ACTIONS(6273), - [anon_sym_BSLASHglslink] = ACTIONS(6273), - [anon_sym_BSLASHglstext] = ACTIONS(6273), - [anon_sym_BSLASHGlstext] = ACTIONS(6273), - [anon_sym_BSLASHGLStext] = ACTIONS(6273), - [anon_sym_BSLASHglsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6273), - [anon_sym_BSLASHglsplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSplural] = ACTIONS(6273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHglsname] = ACTIONS(6273), - [anon_sym_BSLASHGlsname] = ACTIONS(6273), - [anon_sym_BSLASHGLSname] = ACTIONS(6273), - [anon_sym_BSLASHglssymbol] = ACTIONS(6273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6273), - [anon_sym_BSLASHglsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6273), - [anon_sym_BSLASHglsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6273), - [anon_sym_BSLASHglsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6273), - [anon_sym_BSLASHglsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6273), - [anon_sym_BSLASHglsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6273), - [anon_sym_BSLASHnewacronym] = ACTIONS(6273), - [anon_sym_BSLASHacrshort] = ACTIONS(6273), - [anon_sym_BSLASHAcrshort] = ACTIONS(6273), - [anon_sym_BSLASHACRshort] = ACTIONS(6273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6273), - [anon_sym_BSLASHacrlong] = ACTIONS(6273), - [anon_sym_BSLASHAcrlong] = ACTIONS(6273), - [anon_sym_BSLASHACRlong] = ACTIONS(6273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6273), - [anon_sym_BSLASHacrfull] = ACTIONS(6273), - [anon_sym_BSLASHAcrfull] = ACTIONS(6273), - [anon_sym_BSLASHACRfull] = ACTIONS(6273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6273), - [anon_sym_BSLASHacs] = ACTIONS(6273), - [anon_sym_BSLASHAcs] = ACTIONS(6273), - [anon_sym_BSLASHacsp] = ACTIONS(6273), - [anon_sym_BSLASHAcsp] = ACTIONS(6273), - [anon_sym_BSLASHacl] = ACTIONS(6273), - [anon_sym_BSLASHAcl] = ACTIONS(6273), - [anon_sym_BSLASHaclp] = ACTIONS(6273), - [anon_sym_BSLASHAclp] = ACTIONS(6273), - [anon_sym_BSLASHacf] = ACTIONS(6273), - [anon_sym_BSLASHAcf] = ACTIONS(6273), - [anon_sym_BSLASHacfp] = ACTIONS(6273), - [anon_sym_BSLASHAcfp] = ACTIONS(6273), - [anon_sym_BSLASHac] = ACTIONS(6273), - [anon_sym_BSLASHAc] = ACTIONS(6273), - [anon_sym_BSLASHacp] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6273), - [anon_sym_BSLASHcolor] = ACTIONS(6273), - [anon_sym_BSLASHcolorbox] = ACTIONS(6273), - [anon_sym_BSLASHtextcolor] = ACTIONS(6273), - [anon_sym_BSLASHpagecolor] = ACTIONS(6273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6273), - [anon_sym_BSLASHtext] = ACTIONS(6273), - [anon_sym_BSLASHintertext] = ACTIONS(6273), - [anon_sym_shortintertext] = ACTIONS(6273), - }, - [1097] = { - [sym_command_name] = ACTIONS(6353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6353), - [anon_sym_LBRACK] = ACTIONS(6355), - [anon_sym_RBRACK] = ACTIONS(6355), - [anon_sym_COMMA] = ACTIONS(6355), - [anon_sym_EQ] = ACTIONS(6355), - [anon_sym_LPAREN] = ACTIONS(6355), - [anon_sym_RPAREN] = ACTIONS(6355), - [anon_sym_BSLASHpart] = ACTIONS(6353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddpart] = ACTIONS(6353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6355), - [anon_sym_BSLASHchapter] = ACTIONS(6353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddchap] = ACTIONS(6353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsection] = ACTIONS(6353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddsec] = ACTIONS(6353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubsection] = ACTIONS(6353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHparagraph] = ACTIONS(6353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6355), - [anon_sym_BSLASHitem] = ACTIONS(6353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6355), - [anon_sym_LBRACE] = ACTIONS(6355), - [sym_word] = ACTIONS(6353), - [sym_placeholder] = ACTIONS(6355), - [anon_sym_PLUS] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [anon_sym_STAR] = ACTIONS(6355), - [anon_sym_SLASH] = ACTIONS(6355), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_COLON] = ACTIONS(6353), - [anon_sym_SQUOTE] = ACTIONS(6353), - [anon_sym__] = ACTIONS(6355), - [anon_sym_CARET] = ACTIONS(6355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6355), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6355), - [anon_sym_DOLLAR] = ACTIONS(6353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6355), - [anon_sym_BSLASHbegin] = ACTIONS(6353), - [anon_sym_BSLASHtitle] = ACTIONS(6353), - [anon_sym_BSLASHauthor] = ACTIONS(6353), - [anon_sym_BSLASHusepackage] = ACTIONS(6353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6353), - [anon_sym_BSLASHinclude] = ACTIONS(6353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6353), - [anon_sym_BSLASHinput] = ACTIONS(6353), - [anon_sym_BSLASHsubfile] = ACTIONS(6353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6353), - [anon_sym_BSLASHbibliography] = ACTIONS(6353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6353), - [anon_sym_BSLASHincludesvg] = ACTIONS(6353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6353), - [anon_sym_BSLASHimport] = ACTIONS(6353), - [anon_sym_BSLASHsubimport] = ACTIONS(6353), - [anon_sym_BSLASHinputfrom] = ACTIONS(6353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6353), - [anon_sym_BSLASHincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHcaption] = ACTIONS(6353), - [anon_sym_BSLASHcite] = ACTIONS(6353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCite] = ACTIONS(6353), - [anon_sym_BSLASHnocite] = ACTIONS(6353), - [anon_sym_BSLASHcitet] = ACTIONS(6353), - [anon_sym_BSLASHcitep] = ACTIONS(6353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteauthor] = ACTIONS(6353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitetitle] = ACTIONS(6353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteyear] = ACTIONS(6353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitedate] = ACTIONS(6353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteurl] = ACTIONS(6353), - [anon_sym_BSLASHfullcite] = ACTIONS(6353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6353), - [anon_sym_BSLASHcitealt] = ACTIONS(6353), - [anon_sym_BSLASHcitealp] = ACTIONS(6353), - [anon_sym_BSLASHcitetext] = ACTIONS(6353), - [anon_sym_BSLASHparencite] = ACTIONS(6353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHParencite] = ACTIONS(6353), - [anon_sym_BSLASHfootcite] = ACTIONS(6353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6353), - [anon_sym_BSLASHtextcite] = ACTIONS(6353), - [anon_sym_BSLASHTextcite] = ACTIONS(6353), - [anon_sym_BSLASHsmartcite] = ACTIONS(6353), - [anon_sym_BSLASHSmartcite] = ACTIONS(6353), - [anon_sym_BSLASHsupercite] = ACTIONS(6353), - [anon_sym_BSLASHautocite] = ACTIONS(6353), - [anon_sym_BSLASHAutocite] = ACTIONS(6353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHvolcite] = ACTIONS(6353), - [anon_sym_BSLASHVolcite] = ACTIONS(6353), - [anon_sym_BSLASHpvolcite] = ACTIONS(6353), - [anon_sym_BSLASHPvolcite] = ACTIONS(6353), - [anon_sym_BSLASHfvolcite] = ACTIONS(6353), - [anon_sym_BSLASHftvolcite] = ACTIONS(6353), - [anon_sym_BSLASHsvolcite] = ACTIONS(6353), - [anon_sym_BSLASHSvolcite] = ACTIONS(6353), - [anon_sym_BSLASHtvolcite] = ACTIONS(6353), - [anon_sym_BSLASHTvolcite] = ACTIONS(6353), - [anon_sym_BSLASHavolcite] = ACTIONS(6353), - [anon_sym_BSLASHAvolcite] = ACTIONS(6353), - [anon_sym_BSLASHnotecite] = ACTIONS(6353), - [anon_sym_BSLASHNotecite] = ACTIONS(6353), - [anon_sym_BSLASHpnotecite] = ACTIONS(6353), - [anon_sym_BSLASHPnotecite] = ACTIONS(6353), - [anon_sym_BSLASHfnotecite] = ACTIONS(6353), - [anon_sym_BSLASHlabel] = ACTIONS(6353), - [anon_sym_BSLASHref] = ACTIONS(6353), - [anon_sym_BSLASHeqref] = ACTIONS(6353), - [anon_sym_BSLASHvref] = ACTIONS(6353), - [anon_sym_BSLASHVref] = ACTIONS(6353), - [anon_sym_BSLASHautoref] = ACTIONS(6353), - [anon_sym_BSLASHpageref] = ACTIONS(6353), - [anon_sym_BSLASHcref] = ACTIONS(6353), - [anon_sym_BSLASHCref] = ACTIONS(6353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnameCref] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHlabelcref] = ACTIONS(6353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCrefrange] = ACTIONS(6353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnewlabel] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6355), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHdef] = ACTIONS(6353), - [anon_sym_BSLASHlet] = ACTIONS(6353), - [anon_sym_BSLASHleft] = ACTIONS(6353), - [anon_sym_BSLASHbig] = ACTIONS(6353), - [anon_sym_BSLASHBig] = ACTIONS(6353), - [anon_sym_BSLASHbigg] = ACTIONS(6353), - [anon_sym_BSLASHBigg] = ACTIONS(6353), - [anon_sym_BSLASHbigl] = ACTIONS(6353), - [anon_sym_BSLASHBigl] = ACTIONS(6353), - [anon_sym_BSLASHbiggl] = ACTIONS(6353), - [anon_sym_BSLASHBiggl] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6353), - [anon_sym_BSLASHgls] = ACTIONS(6353), - [anon_sym_BSLASHGls] = ACTIONS(6353), - [anon_sym_BSLASHGLS] = ACTIONS(6353), - [anon_sym_BSLASHglspl] = ACTIONS(6353), - [anon_sym_BSLASHGlspl] = ACTIONS(6353), - [anon_sym_BSLASHGLSpl] = ACTIONS(6353), - [anon_sym_BSLASHglsdisp] = ACTIONS(6353), - [anon_sym_BSLASHglslink] = ACTIONS(6353), - [anon_sym_BSLASHglstext] = ACTIONS(6353), - [anon_sym_BSLASHGlstext] = ACTIONS(6353), - [anon_sym_BSLASHGLStext] = ACTIONS(6353), - [anon_sym_BSLASHglsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6353), - [anon_sym_BSLASHglsplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSplural] = ACTIONS(6353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHglsname] = ACTIONS(6353), - [anon_sym_BSLASHGlsname] = ACTIONS(6353), - [anon_sym_BSLASHGLSname] = ACTIONS(6353), - [anon_sym_BSLASHglssymbol] = ACTIONS(6353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6353), - [anon_sym_BSLASHglsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6353), - [anon_sym_BSLASHglsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6353), - [anon_sym_BSLASHglsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6353), - [anon_sym_BSLASHglsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6353), - [anon_sym_BSLASHglsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6353), - [anon_sym_BSLASHnewacronym] = ACTIONS(6353), - [anon_sym_BSLASHacrshort] = ACTIONS(6353), - [anon_sym_BSLASHAcrshort] = ACTIONS(6353), - [anon_sym_BSLASHACRshort] = ACTIONS(6353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6353), - [anon_sym_BSLASHacrlong] = ACTIONS(6353), - [anon_sym_BSLASHAcrlong] = ACTIONS(6353), - [anon_sym_BSLASHACRlong] = ACTIONS(6353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6353), - [anon_sym_BSLASHacrfull] = ACTIONS(6353), - [anon_sym_BSLASHAcrfull] = ACTIONS(6353), - [anon_sym_BSLASHACRfull] = ACTIONS(6353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6353), - [anon_sym_BSLASHacs] = ACTIONS(6353), - [anon_sym_BSLASHAcs] = ACTIONS(6353), - [anon_sym_BSLASHacsp] = ACTIONS(6353), - [anon_sym_BSLASHAcsp] = ACTIONS(6353), - [anon_sym_BSLASHacl] = ACTIONS(6353), - [anon_sym_BSLASHAcl] = ACTIONS(6353), - [anon_sym_BSLASHaclp] = ACTIONS(6353), - [anon_sym_BSLASHAclp] = ACTIONS(6353), - [anon_sym_BSLASHacf] = ACTIONS(6353), - [anon_sym_BSLASHAcf] = ACTIONS(6353), - [anon_sym_BSLASHacfp] = ACTIONS(6353), - [anon_sym_BSLASHAcfp] = ACTIONS(6353), - [anon_sym_BSLASHac] = ACTIONS(6353), - [anon_sym_BSLASHAc] = ACTIONS(6353), - [anon_sym_BSLASHacp] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6353), - [anon_sym_BSLASHcolor] = ACTIONS(6353), - [anon_sym_BSLASHcolorbox] = ACTIONS(6353), - [anon_sym_BSLASHtextcolor] = ACTIONS(6353), - [anon_sym_BSLASHpagecolor] = ACTIONS(6353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6353), - [anon_sym_BSLASHtext] = ACTIONS(6353), - [anon_sym_BSLASHintertext] = ACTIONS(6353), - [anon_sym_shortintertext] = ACTIONS(6353), - }, - [1098] = { - [sym_command_name] = ACTIONS(6029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6029), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_EQ] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_BSLASHpart] = ACTIONS(6029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddpart] = ACTIONS(6029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6031), - [anon_sym_BSLASHchapter] = ACTIONS(6029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddchap] = ACTIONS(6029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsection] = ACTIONS(6029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddsec] = ACTIONS(6029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubsection] = ACTIONS(6029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHparagraph] = ACTIONS(6029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6031), - [anon_sym_BSLASHitem] = ACTIONS(6029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6031), - [anon_sym_LBRACE] = ACTIONS(6031), - [sym_word] = ACTIONS(6029), - [sym_placeholder] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6031), - [anon_sym_DASH] = ACTIONS(6031), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6029), - [anon_sym_GT] = ACTIONS(6029), - [anon_sym_BANG] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_COLON] = ACTIONS(6029), - [anon_sym_SQUOTE] = ACTIONS(6029), - [anon_sym__] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), - [anon_sym_BSLASHbegin] = ACTIONS(6029), - [anon_sym_BSLASHend] = ACTIONS(6029), - [anon_sym_BSLASHtitle] = ACTIONS(6029), - [anon_sym_BSLASHauthor] = ACTIONS(6029), - [anon_sym_BSLASHusepackage] = ACTIONS(6029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), - [anon_sym_BSLASHinclude] = ACTIONS(6029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), - [anon_sym_BSLASHinput] = ACTIONS(6029), - [anon_sym_BSLASHsubfile] = ACTIONS(6029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), - [anon_sym_BSLASHbibliography] = ACTIONS(6029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), - [anon_sym_BSLASHincludesvg] = ACTIONS(6029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), - [anon_sym_BSLASHimport] = ACTIONS(6029), - [anon_sym_BSLASHsubimport] = ACTIONS(6029), - [anon_sym_BSLASHinputfrom] = ACTIONS(6029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), - [anon_sym_BSLASHincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHcaption] = ACTIONS(6029), - [anon_sym_BSLASHcite] = ACTIONS(6029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCite] = ACTIONS(6029), - [anon_sym_BSLASHnocite] = ACTIONS(6029), - [anon_sym_BSLASHcitet] = ACTIONS(6029), - [anon_sym_BSLASHcitep] = ACTIONS(6029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteauthor] = ACTIONS(6029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitetitle] = ACTIONS(6029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteyear] = ACTIONS(6029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitedate] = ACTIONS(6029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteurl] = ACTIONS(6029), - [anon_sym_BSLASHfullcite] = ACTIONS(6029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), - [anon_sym_BSLASHcitealt] = ACTIONS(6029), - [anon_sym_BSLASHcitealp] = ACTIONS(6029), - [anon_sym_BSLASHcitetext] = ACTIONS(6029), - [anon_sym_BSLASHparencite] = ACTIONS(6029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHParencite] = ACTIONS(6029), - [anon_sym_BSLASHfootcite] = ACTIONS(6029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), - [anon_sym_BSLASHtextcite] = ACTIONS(6029), - [anon_sym_BSLASHTextcite] = ACTIONS(6029), - [anon_sym_BSLASHsmartcite] = ACTIONS(6029), - [anon_sym_BSLASHSmartcite] = ACTIONS(6029), - [anon_sym_BSLASHsupercite] = ACTIONS(6029), - [anon_sym_BSLASHautocite] = ACTIONS(6029), - [anon_sym_BSLASHAutocite] = ACTIONS(6029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHvolcite] = ACTIONS(6029), - [anon_sym_BSLASHVolcite] = ACTIONS(6029), - [anon_sym_BSLASHpvolcite] = ACTIONS(6029), - [anon_sym_BSLASHPvolcite] = ACTIONS(6029), - [anon_sym_BSLASHfvolcite] = ACTIONS(6029), - [anon_sym_BSLASHftvolcite] = ACTIONS(6029), - [anon_sym_BSLASHsvolcite] = ACTIONS(6029), - [anon_sym_BSLASHSvolcite] = ACTIONS(6029), - [anon_sym_BSLASHtvolcite] = ACTIONS(6029), - [anon_sym_BSLASHTvolcite] = ACTIONS(6029), - [anon_sym_BSLASHavolcite] = ACTIONS(6029), - [anon_sym_BSLASHAvolcite] = ACTIONS(6029), - [anon_sym_BSLASHnotecite] = ACTIONS(6029), - [anon_sym_BSLASHNotecite] = ACTIONS(6029), - [anon_sym_BSLASHpnotecite] = ACTIONS(6029), - [anon_sym_BSLASHPnotecite] = ACTIONS(6029), - [anon_sym_BSLASHfnotecite] = ACTIONS(6029), - [anon_sym_BSLASHlabel] = ACTIONS(6029), - [anon_sym_BSLASHref] = ACTIONS(6029), - [anon_sym_BSLASHeqref] = ACTIONS(6029), - [anon_sym_BSLASHvref] = ACTIONS(6029), - [anon_sym_BSLASHVref] = ACTIONS(6029), - [anon_sym_BSLASHautoref] = ACTIONS(6029), - [anon_sym_BSLASHpageref] = ACTIONS(6029), - [anon_sym_BSLASHcref] = ACTIONS(6029), - [anon_sym_BSLASHCref] = ACTIONS(6029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnameCref] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHlabelcref] = ACTIONS(6029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCrefrange] = ACTIONS(6029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnewlabel] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHdef] = ACTIONS(6029), - [anon_sym_BSLASHlet] = ACTIONS(6029), - [anon_sym_BSLASHleft] = ACTIONS(6029), - [anon_sym_BSLASHbig] = ACTIONS(6029), - [anon_sym_BSLASHBig] = ACTIONS(6029), - [anon_sym_BSLASHbigg] = ACTIONS(6029), - [anon_sym_BSLASHBigg] = ACTIONS(6029), - [anon_sym_BSLASHbigl] = ACTIONS(6029), - [anon_sym_BSLASHBigl] = ACTIONS(6029), - [anon_sym_BSLASHbiggl] = ACTIONS(6029), - [anon_sym_BSLASHBiggl] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), - [anon_sym_BSLASHgls] = ACTIONS(6029), - [anon_sym_BSLASHGls] = ACTIONS(6029), - [anon_sym_BSLASHGLS] = ACTIONS(6029), - [anon_sym_BSLASHglspl] = ACTIONS(6029), - [anon_sym_BSLASHGlspl] = ACTIONS(6029), - [anon_sym_BSLASHGLSpl] = ACTIONS(6029), - [anon_sym_BSLASHglsdisp] = ACTIONS(6029), - [anon_sym_BSLASHglslink] = ACTIONS(6029), - [anon_sym_BSLASHglstext] = ACTIONS(6029), - [anon_sym_BSLASHGlstext] = ACTIONS(6029), - [anon_sym_BSLASHGLStext] = ACTIONS(6029), - [anon_sym_BSLASHglsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), - [anon_sym_BSLASHglsplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSplural] = ACTIONS(6029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHglsname] = ACTIONS(6029), - [anon_sym_BSLASHGlsname] = ACTIONS(6029), - [anon_sym_BSLASHGLSname] = ACTIONS(6029), - [anon_sym_BSLASHglssymbol] = ACTIONS(6029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), - [anon_sym_BSLASHglsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), - [anon_sym_BSLASHglsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), - [anon_sym_BSLASHglsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), - [anon_sym_BSLASHglsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), - [anon_sym_BSLASHglsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), - [anon_sym_BSLASHnewacronym] = ACTIONS(6029), - [anon_sym_BSLASHacrshort] = ACTIONS(6029), - [anon_sym_BSLASHAcrshort] = ACTIONS(6029), - [anon_sym_BSLASHACRshort] = ACTIONS(6029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), - [anon_sym_BSLASHacrlong] = ACTIONS(6029), - [anon_sym_BSLASHAcrlong] = ACTIONS(6029), - [anon_sym_BSLASHACRlong] = ACTIONS(6029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), - [anon_sym_BSLASHacrfull] = ACTIONS(6029), - [anon_sym_BSLASHAcrfull] = ACTIONS(6029), - [anon_sym_BSLASHACRfull] = ACTIONS(6029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), - [anon_sym_BSLASHacs] = ACTIONS(6029), - [anon_sym_BSLASHAcs] = ACTIONS(6029), - [anon_sym_BSLASHacsp] = ACTIONS(6029), - [anon_sym_BSLASHAcsp] = ACTIONS(6029), - [anon_sym_BSLASHacl] = ACTIONS(6029), - [anon_sym_BSLASHAcl] = ACTIONS(6029), - [anon_sym_BSLASHaclp] = ACTIONS(6029), - [anon_sym_BSLASHAclp] = ACTIONS(6029), - [anon_sym_BSLASHacf] = ACTIONS(6029), - [anon_sym_BSLASHAcf] = ACTIONS(6029), - [anon_sym_BSLASHacfp] = ACTIONS(6029), - [anon_sym_BSLASHAcfp] = ACTIONS(6029), - [anon_sym_BSLASHac] = ACTIONS(6029), - [anon_sym_BSLASHAc] = ACTIONS(6029), - [anon_sym_BSLASHacp] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), - [anon_sym_BSLASHcolor] = ACTIONS(6029), - [anon_sym_BSLASHcolorbox] = ACTIONS(6029), - [anon_sym_BSLASHtextcolor] = ACTIONS(6029), - [anon_sym_BSLASHpagecolor] = ACTIONS(6029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), - [anon_sym_BSLASHtext] = ACTIONS(6029), - [anon_sym_BSLASHintertext] = ACTIONS(6029), - [anon_sym_shortintertext] = ACTIONS(6029), - }, - [1099] = { - [sym_command_name] = ACTIONS(6241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6241), - [anon_sym_LBRACK] = ACTIONS(6243), - [anon_sym_RBRACK] = ACTIONS(6243), - [anon_sym_COMMA] = ACTIONS(6243), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_LPAREN] = ACTIONS(6243), - [anon_sym_RPAREN] = ACTIONS(6243), - [anon_sym_BSLASHpart] = ACTIONS(6241), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddpart] = ACTIONS(6241), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6243), - [anon_sym_BSLASHchapter] = ACTIONS(6241), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddchap] = ACTIONS(6241), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsection] = ACTIONS(6241), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddsec] = ACTIONS(6241), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubsection] = ACTIONS(6241), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6241), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHparagraph] = ACTIONS(6241), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6241), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6243), - [anon_sym_BSLASHitem] = ACTIONS(6241), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6243), - [anon_sym_LBRACE] = ACTIONS(6243), - [sym_word] = ACTIONS(6241), - [sym_placeholder] = ACTIONS(6243), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6243), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(6241), - [anon_sym_GT] = ACTIONS(6241), - [anon_sym_BANG] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_SQUOTE] = ACTIONS(6241), - [anon_sym__] = ACTIONS(6243), - [anon_sym_CARET] = ACTIONS(6243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), - [anon_sym_DOLLAR] = ACTIONS(6241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), - [anon_sym_BSLASHbegin] = ACTIONS(6241), - [anon_sym_BSLASHend] = ACTIONS(6241), - [anon_sym_BSLASHtitle] = ACTIONS(6241), - [anon_sym_BSLASHauthor] = ACTIONS(6241), - [anon_sym_BSLASHusepackage] = ACTIONS(6241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), - [anon_sym_BSLASHinclude] = ACTIONS(6241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), - [anon_sym_BSLASHinput] = ACTIONS(6241), - [anon_sym_BSLASHsubfile] = ACTIONS(6241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), - [anon_sym_BSLASHbibliography] = ACTIONS(6241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), - [anon_sym_BSLASHincludesvg] = ACTIONS(6241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), - [anon_sym_BSLASHimport] = ACTIONS(6241), - [anon_sym_BSLASHsubimport] = ACTIONS(6241), - [anon_sym_BSLASHinputfrom] = ACTIONS(6241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), - [anon_sym_BSLASHincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHcaption] = ACTIONS(6241), - [anon_sym_BSLASHcite] = ACTIONS(6241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCite] = ACTIONS(6241), - [anon_sym_BSLASHnocite] = ACTIONS(6241), - [anon_sym_BSLASHcitet] = ACTIONS(6241), - [anon_sym_BSLASHcitep] = ACTIONS(6241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteauthor] = ACTIONS(6241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitetitle] = ACTIONS(6241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteyear] = ACTIONS(6241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitedate] = ACTIONS(6241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteurl] = ACTIONS(6241), - [anon_sym_BSLASHfullcite] = ACTIONS(6241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), - [anon_sym_BSLASHcitealt] = ACTIONS(6241), - [anon_sym_BSLASHcitealp] = ACTIONS(6241), - [anon_sym_BSLASHcitetext] = ACTIONS(6241), - [anon_sym_BSLASHparencite] = ACTIONS(6241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHParencite] = ACTIONS(6241), - [anon_sym_BSLASHfootcite] = ACTIONS(6241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), - [anon_sym_BSLASHtextcite] = ACTIONS(6241), - [anon_sym_BSLASHTextcite] = ACTIONS(6241), - [anon_sym_BSLASHsmartcite] = ACTIONS(6241), - [anon_sym_BSLASHSmartcite] = ACTIONS(6241), - [anon_sym_BSLASHsupercite] = ACTIONS(6241), - [anon_sym_BSLASHautocite] = ACTIONS(6241), - [anon_sym_BSLASHAutocite] = ACTIONS(6241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHvolcite] = ACTIONS(6241), - [anon_sym_BSLASHVolcite] = ACTIONS(6241), - [anon_sym_BSLASHpvolcite] = ACTIONS(6241), - [anon_sym_BSLASHPvolcite] = ACTIONS(6241), - [anon_sym_BSLASHfvolcite] = ACTIONS(6241), - [anon_sym_BSLASHftvolcite] = ACTIONS(6241), - [anon_sym_BSLASHsvolcite] = ACTIONS(6241), - [anon_sym_BSLASHSvolcite] = ACTIONS(6241), - [anon_sym_BSLASHtvolcite] = ACTIONS(6241), - [anon_sym_BSLASHTvolcite] = ACTIONS(6241), - [anon_sym_BSLASHavolcite] = ACTIONS(6241), - [anon_sym_BSLASHAvolcite] = ACTIONS(6241), - [anon_sym_BSLASHnotecite] = ACTIONS(6241), - [anon_sym_BSLASHNotecite] = ACTIONS(6241), - [anon_sym_BSLASHpnotecite] = ACTIONS(6241), - [anon_sym_BSLASHPnotecite] = ACTIONS(6241), - [anon_sym_BSLASHfnotecite] = ACTIONS(6241), - [anon_sym_BSLASHlabel] = ACTIONS(6241), - [anon_sym_BSLASHref] = ACTIONS(6241), - [anon_sym_BSLASHeqref] = ACTIONS(6241), - [anon_sym_BSLASHvref] = ACTIONS(6241), - [anon_sym_BSLASHVref] = ACTIONS(6241), - [anon_sym_BSLASHautoref] = ACTIONS(6241), - [anon_sym_BSLASHpageref] = ACTIONS(6241), - [anon_sym_BSLASHcref] = ACTIONS(6241), - [anon_sym_BSLASHCref] = ACTIONS(6241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnameCref] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHlabelcref] = ACTIONS(6241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCrefrange] = ACTIONS(6241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnewlabel] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHdef] = ACTIONS(6241), - [anon_sym_BSLASHlet] = ACTIONS(6241), - [anon_sym_BSLASHleft] = ACTIONS(6241), - [anon_sym_BSLASHbig] = ACTIONS(6241), - [anon_sym_BSLASHBig] = ACTIONS(6241), - [anon_sym_BSLASHbigg] = ACTIONS(6241), - [anon_sym_BSLASHBigg] = ACTIONS(6241), - [anon_sym_BSLASHbigl] = ACTIONS(6241), - [anon_sym_BSLASHBigl] = ACTIONS(6241), - [anon_sym_BSLASHbiggl] = ACTIONS(6241), - [anon_sym_BSLASHBiggl] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), - [anon_sym_BSLASHgls] = ACTIONS(6241), - [anon_sym_BSLASHGls] = ACTIONS(6241), - [anon_sym_BSLASHGLS] = ACTIONS(6241), - [anon_sym_BSLASHglspl] = ACTIONS(6241), - [anon_sym_BSLASHGlspl] = ACTIONS(6241), - [anon_sym_BSLASHGLSpl] = ACTIONS(6241), - [anon_sym_BSLASHglsdisp] = ACTIONS(6241), - [anon_sym_BSLASHglslink] = ACTIONS(6241), - [anon_sym_BSLASHglstext] = ACTIONS(6241), - [anon_sym_BSLASHGlstext] = ACTIONS(6241), - [anon_sym_BSLASHGLStext] = ACTIONS(6241), - [anon_sym_BSLASHglsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), - [anon_sym_BSLASHglsplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSplural] = ACTIONS(6241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHglsname] = ACTIONS(6241), - [anon_sym_BSLASHGlsname] = ACTIONS(6241), - [anon_sym_BSLASHGLSname] = ACTIONS(6241), - [anon_sym_BSLASHglssymbol] = ACTIONS(6241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), - [anon_sym_BSLASHglsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), - [anon_sym_BSLASHglsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), - [anon_sym_BSLASHglsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), - [anon_sym_BSLASHglsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), - [anon_sym_BSLASHglsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), - [anon_sym_BSLASHnewacronym] = ACTIONS(6241), - [anon_sym_BSLASHacrshort] = ACTIONS(6241), - [anon_sym_BSLASHAcrshort] = ACTIONS(6241), - [anon_sym_BSLASHACRshort] = ACTIONS(6241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), - [anon_sym_BSLASHacrlong] = ACTIONS(6241), - [anon_sym_BSLASHAcrlong] = ACTIONS(6241), - [anon_sym_BSLASHACRlong] = ACTIONS(6241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), - [anon_sym_BSLASHacrfull] = ACTIONS(6241), - [anon_sym_BSLASHAcrfull] = ACTIONS(6241), - [anon_sym_BSLASHACRfull] = ACTIONS(6241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), - [anon_sym_BSLASHacs] = ACTIONS(6241), - [anon_sym_BSLASHAcs] = ACTIONS(6241), - [anon_sym_BSLASHacsp] = ACTIONS(6241), - [anon_sym_BSLASHAcsp] = ACTIONS(6241), - [anon_sym_BSLASHacl] = ACTIONS(6241), - [anon_sym_BSLASHAcl] = ACTIONS(6241), - [anon_sym_BSLASHaclp] = ACTIONS(6241), - [anon_sym_BSLASHAclp] = ACTIONS(6241), - [anon_sym_BSLASHacf] = ACTIONS(6241), - [anon_sym_BSLASHAcf] = ACTIONS(6241), - [anon_sym_BSLASHacfp] = ACTIONS(6241), - [anon_sym_BSLASHAcfp] = ACTIONS(6241), - [anon_sym_BSLASHac] = ACTIONS(6241), - [anon_sym_BSLASHAc] = ACTIONS(6241), - [anon_sym_BSLASHacp] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), - [anon_sym_BSLASHcolor] = ACTIONS(6241), - [anon_sym_BSLASHcolorbox] = ACTIONS(6241), - [anon_sym_BSLASHtextcolor] = ACTIONS(6241), - [anon_sym_BSLASHpagecolor] = ACTIONS(6241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), - [anon_sym_BSLASHtext] = ACTIONS(6241), - [anon_sym_BSLASHintertext] = ACTIONS(6241), - [anon_sym_shortintertext] = ACTIONS(6241), - }, - [1100] = { - [sym_command_name] = ACTIONS(6237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6237), - [anon_sym_LBRACK] = ACTIONS(6239), - [anon_sym_RBRACK] = ACTIONS(6239), - [anon_sym_COMMA] = ACTIONS(6239), - [anon_sym_EQ] = ACTIONS(6239), - [anon_sym_LPAREN] = ACTIONS(6239), - [anon_sym_RPAREN] = ACTIONS(6239), - [anon_sym_BSLASHpart] = ACTIONS(6237), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddpart] = ACTIONS(6237), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6239), - [anon_sym_BSLASHchapter] = ACTIONS(6237), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddchap] = ACTIONS(6237), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsection] = ACTIONS(6237), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddsec] = ACTIONS(6237), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubsection] = ACTIONS(6237), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6237), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHparagraph] = ACTIONS(6237), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6237), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6239), - [anon_sym_BSLASHitem] = ACTIONS(6237), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6239), - [sym_word] = ACTIONS(6237), - [sym_placeholder] = ACTIONS(6239), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6239), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_BANG] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_SQUOTE] = ACTIONS(6237), - [anon_sym__] = ACTIONS(6239), - [anon_sym_CARET] = ACTIONS(6239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), - [anon_sym_DOLLAR] = ACTIONS(6237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), - [anon_sym_BSLASHbegin] = ACTIONS(6237), - [anon_sym_BSLASHend] = ACTIONS(6237), - [anon_sym_BSLASHtitle] = ACTIONS(6237), - [anon_sym_BSLASHauthor] = ACTIONS(6237), - [anon_sym_BSLASHusepackage] = ACTIONS(6237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6237), - [anon_sym_BSLASHinclude] = ACTIONS(6237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6237), - [anon_sym_BSLASHinput] = ACTIONS(6237), - [anon_sym_BSLASHsubfile] = ACTIONS(6237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6237), - [anon_sym_BSLASHbibliography] = ACTIONS(6237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6237), - [anon_sym_BSLASHincludesvg] = ACTIONS(6237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6237), - [anon_sym_BSLASHimport] = ACTIONS(6237), - [anon_sym_BSLASHsubimport] = ACTIONS(6237), - [anon_sym_BSLASHinputfrom] = ACTIONS(6237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6237), - [anon_sym_BSLASHincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHcaption] = ACTIONS(6237), - [anon_sym_BSLASHcite] = ACTIONS(6237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCite] = ACTIONS(6237), - [anon_sym_BSLASHnocite] = ACTIONS(6237), - [anon_sym_BSLASHcitet] = ACTIONS(6237), - [anon_sym_BSLASHcitep] = ACTIONS(6237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteauthor] = ACTIONS(6237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitetitle] = ACTIONS(6237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteyear] = ACTIONS(6237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitedate] = ACTIONS(6237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteurl] = ACTIONS(6237), - [anon_sym_BSLASHfullcite] = ACTIONS(6237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6237), - [anon_sym_BSLASHcitealt] = ACTIONS(6237), - [anon_sym_BSLASHcitealp] = ACTIONS(6237), - [anon_sym_BSLASHcitetext] = ACTIONS(6237), - [anon_sym_BSLASHparencite] = ACTIONS(6237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHParencite] = ACTIONS(6237), - [anon_sym_BSLASHfootcite] = ACTIONS(6237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6237), - [anon_sym_BSLASHtextcite] = ACTIONS(6237), - [anon_sym_BSLASHTextcite] = ACTIONS(6237), - [anon_sym_BSLASHsmartcite] = ACTIONS(6237), - [anon_sym_BSLASHSmartcite] = ACTIONS(6237), - [anon_sym_BSLASHsupercite] = ACTIONS(6237), - [anon_sym_BSLASHautocite] = ACTIONS(6237), - [anon_sym_BSLASHAutocite] = ACTIONS(6237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHvolcite] = ACTIONS(6237), - [anon_sym_BSLASHVolcite] = ACTIONS(6237), - [anon_sym_BSLASHpvolcite] = ACTIONS(6237), - [anon_sym_BSLASHPvolcite] = ACTIONS(6237), - [anon_sym_BSLASHfvolcite] = ACTIONS(6237), - [anon_sym_BSLASHftvolcite] = ACTIONS(6237), - [anon_sym_BSLASHsvolcite] = ACTIONS(6237), - [anon_sym_BSLASHSvolcite] = ACTIONS(6237), - [anon_sym_BSLASHtvolcite] = ACTIONS(6237), - [anon_sym_BSLASHTvolcite] = ACTIONS(6237), - [anon_sym_BSLASHavolcite] = ACTIONS(6237), - [anon_sym_BSLASHAvolcite] = ACTIONS(6237), - [anon_sym_BSLASHnotecite] = ACTIONS(6237), - [anon_sym_BSLASHNotecite] = ACTIONS(6237), - [anon_sym_BSLASHpnotecite] = ACTIONS(6237), - [anon_sym_BSLASHPnotecite] = ACTIONS(6237), - [anon_sym_BSLASHfnotecite] = ACTIONS(6237), - [anon_sym_BSLASHlabel] = ACTIONS(6237), - [anon_sym_BSLASHref] = ACTIONS(6237), - [anon_sym_BSLASHeqref] = ACTIONS(6237), - [anon_sym_BSLASHvref] = ACTIONS(6237), - [anon_sym_BSLASHVref] = ACTIONS(6237), - [anon_sym_BSLASHautoref] = ACTIONS(6237), - [anon_sym_BSLASHpageref] = ACTIONS(6237), - [anon_sym_BSLASHcref] = ACTIONS(6237), - [anon_sym_BSLASHCref] = ACTIONS(6237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnameCref] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHlabelcref] = ACTIONS(6237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCrefrange] = ACTIONS(6237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnewlabel] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHdef] = ACTIONS(6237), - [anon_sym_BSLASHlet] = ACTIONS(6237), - [anon_sym_BSLASHleft] = ACTIONS(6237), - [anon_sym_BSLASHbig] = ACTIONS(6237), - [anon_sym_BSLASHBig] = ACTIONS(6237), - [anon_sym_BSLASHbigg] = ACTIONS(6237), - [anon_sym_BSLASHBigg] = ACTIONS(6237), - [anon_sym_BSLASHbigl] = ACTIONS(6237), - [anon_sym_BSLASHBigl] = ACTIONS(6237), - [anon_sym_BSLASHbiggl] = ACTIONS(6237), - [anon_sym_BSLASHBiggl] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6237), - [anon_sym_BSLASHgls] = ACTIONS(6237), - [anon_sym_BSLASHGls] = ACTIONS(6237), - [anon_sym_BSLASHGLS] = ACTIONS(6237), - [anon_sym_BSLASHglspl] = ACTIONS(6237), - [anon_sym_BSLASHGlspl] = ACTIONS(6237), - [anon_sym_BSLASHGLSpl] = ACTIONS(6237), - [anon_sym_BSLASHglsdisp] = ACTIONS(6237), - [anon_sym_BSLASHglslink] = ACTIONS(6237), - [anon_sym_BSLASHglstext] = ACTIONS(6237), - [anon_sym_BSLASHGlstext] = ACTIONS(6237), - [anon_sym_BSLASHGLStext] = ACTIONS(6237), - [anon_sym_BSLASHglsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6237), - [anon_sym_BSLASHglsplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSplural] = ACTIONS(6237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHglsname] = ACTIONS(6237), - [anon_sym_BSLASHGlsname] = ACTIONS(6237), - [anon_sym_BSLASHGLSname] = ACTIONS(6237), - [anon_sym_BSLASHglssymbol] = ACTIONS(6237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6237), - [anon_sym_BSLASHglsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6237), - [anon_sym_BSLASHglsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6237), - [anon_sym_BSLASHglsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6237), - [anon_sym_BSLASHglsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6237), - [anon_sym_BSLASHglsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6237), - [anon_sym_BSLASHnewacronym] = ACTIONS(6237), - [anon_sym_BSLASHacrshort] = ACTIONS(6237), - [anon_sym_BSLASHAcrshort] = ACTIONS(6237), - [anon_sym_BSLASHACRshort] = ACTIONS(6237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6237), - [anon_sym_BSLASHacrlong] = ACTIONS(6237), - [anon_sym_BSLASHAcrlong] = ACTIONS(6237), - [anon_sym_BSLASHACRlong] = ACTIONS(6237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6237), - [anon_sym_BSLASHacrfull] = ACTIONS(6237), - [anon_sym_BSLASHAcrfull] = ACTIONS(6237), - [anon_sym_BSLASHACRfull] = ACTIONS(6237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6237), - [anon_sym_BSLASHacs] = ACTIONS(6237), - [anon_sym_BSLASHAcs] = ACTIONS(6237), - [anon_sym_BSLASHacsp] = ACTIONS(6237), - [anon_sym_BSLASHAcsp] = ACTIONS(6237), - [anon_sym_BSLASHacl] = ACTIONS(6237), - [anon_sym_BSLASHAcl] = ACTIONS(6237), - [anon_sym_BSLASHaclp] = ACTIONS(6237), - [anon_sym_BSLASHAclp] = ACTIONS(6237), - [anon_sym_BSLASHacf] = ACTIONS(6237), - [anon_sym_BSLASHAcf] = ACTIONS(6237), - [anon_sym_BSLASHacfp] = ACTIONS(6237), - [anon_sym_BSLASHAcfp] = ACTIONS(6237), - [anon_sym_BSLASHac] = ACTIONS(6237), - [anon_sym_BSLASHAc] = ACTIONS(6237), - [anon_sym_BSLASHacp] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6237), - [anon_sym_BSLASHcolor] = ACTIONS(6237), - [anon_sym_BSLASHcolorbox] = ACTIONS(6237), - [anon_sym_BSLASHtextcolor] = ACTIONS(6237), - [anon_sym_BSLASHpagecolor] = ACTIONS(6237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6237), - [anon_sym_BSLASHtext] = ACTIONS(6237), - [anon_sym_BSLASHintertext] = ACTIONS(6237), - [anon_sym_shortintertext] = ACTIONS(6237), - }, - [1101] = { - [sym_command_name] = ACTIONS(6221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6221), - [anon_sym_LBRACK] = ACTIONS(6223), - [anon_sym_RBRACK] = ACTIONS(6223), - [anon_sym_COMMA] = ACTIONS(6223), - [anon_sym_EQ] = ACTIONS(6223), - [anon_sym_LPAREN] = ACTIONS(6223), - [anon_sym_RPAREN] = ACTIONS(6223), - [anon_sym_BSLASHpart] = ACTIONS(6221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddpart] = ACTIONS(6221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6223), - [anon_sym_BSLASHchapter] = ACTIONS(6221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddchap] = ACTIONS(6221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsection] = ACTIONS(6221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddsec] = ACTIONS(6221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubsection] = ACTIONS(6221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHparagraph] = ACTIONS(6221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6223), - [anon_sym_BSLASHitem] = ACTIONS(6221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6223), - [anon_sym_LBRACE] = ACTIONS(6223), - [sym_word] = ACTIONS(6221), - [sym_placeholder] = ACTIONS(6223), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6223), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_LT] = ACTIONS(6221), - [anon_sym_GT] = ACTIONS(6221), - [anon_sym_BANG] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_SQUOTE] = ACTIONS(6221), - [anon_sym__] = ACTIONS(6223), - [anon_sym_CARET] = ACTIONS(6223), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6223), - [anon_sym_DOLLAR] = ACTIONS(6221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6223), - [anon_sym_BSLASHbegin] = ACTIONS(6221), - [anon_sym_BSLASHend] = ACTIONS(6221), - [anon_sym_BSLASHtitle] = ACTIONS(6221), - [anon_sym_BSLASHauthor] = ACTIONS(6221), - [anon_sym_BSLASHusepackage] = ACTIONS(6221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6221), - [anon_sym_BSLASHinclude] = ACTIONS(6221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6221), - [anon_sym_BSLASHinput] = ACTIONS(6221), - [anon_sym_BSLASHsubfile] = ACTIONS(6221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6221), - [anon_sym_BSLASHbibliography] = ACTIONS(6221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6221), - [anon_sym_BSLASHincludesvg] = ACTIONS(6221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6221), - [anon_sym_BSLASHimport] = ACTIONS(6221), - [anon_sym_BSLASHsubimport] = ACTIONS(6221), - [anon_sym_BSLASHinputfrom] = ACTIONS(6221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6221), - [anon_sym_BSLASHincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHcaption] = ACTIONS(6221), - [anon_sym_BSLASHcite] = ACTIONS(6221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCite] = ACTIONS(6221), - [anon_sym_BSLASHnocite] = ACTIONS(6221), - [anon_sym_BSLASHcitet] = ACTIONS(6221), - [anon_sym_BSLASHcitep] = ACTIONS(6221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteauthor] = ACTIONS(6221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitetitle] = ACTIONS(6221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteyear] = ACTIONS(6221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitedate] = ACTIONS(6221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteurl] = ACTIONS(6221), - [anon_sym_BSLASHfullcite] = ACTIONS(6221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6221), - [anon_sym_BSLASHcitealt] = ACTIONS(6221), - [anon_sym_BSLASHcitealp] = ACTIONS(6221), - [anon_sym_BSLASHcitetext] = ACTIONS(6221), - [anon_sym_BSLASHparencite] = ACTIONS(6221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHParencite] = ACTIONS(6221), - [anon_sym_BSLASHfootcite] = ACTIONS(6221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6221), - [anon_sym_BSLASHtextcite] = ACTIONS(6221), - [anon_sym_BSLASHTextcite] = ACTIONS(6221), - [anon_sym_BSLASHsmartcite] = ACTIONS(6221), - [anon_sym_BSLASHSmartcite] = ACTIONS(6221), - [anon_sym_BSLASHsupercite] = ACTIONS(6221), - [anon_sym_BSLASHautocite] = ACTIONS(6221), - [anon_sym_BSLASHAutocite] = ACTIONS(6221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHvolcite] = ACTIONS(6221), - [anon_sym_BSLASHVolcite] = ACTIONS(6221), - [anon_sym_BSLASHpvolcite] = ACTIONS(6221), - [anon_sym_BSLASHPvolcite] = ACTIONS(6221), - [anon_sym_BSLASHfvolcite] = ACTIONS(6221), - [anon_sym_BSLASHftvolcite] = ACTIONS(6221), - [anon_sym_BSLASHsvolcite] = ACTIONS(6221), - [anon_sym_BSLASHSvolcite] = ACTIONS(6221), - [anon_sym_BSLASHtvolcite] = ACTIONS(6221), - [anon_sym_BSLASHTvolcite] = ACTIONS(6221), - [anon_sym_BSLASHavolcite] = ACTIONS(6221), - [anon_sym_BSLASHAvolcite] = ACTIONS(6221), - [anon_sym_BSLASHnotecite] = ACTIONS(6221), - [anon_sym_BSLASHNotecite] = ACTIONS(6221), - [anon_sym_BSLASHpnotecite] = ACTIONS(6221), - [anon_sym_BSLASHPnotecite] = ACTIONS(6221), - [anon_sym_BSLASHfnotecite] = ACTIONS(6221), - [anon_sym_BSLASHlabel] = ACTIONS(6221), - [anon_sym_BSLASHref] = ACTIONS(6221), - [anon_sym_BSLASHeqref] = ACTIONS(6221), - [anon_sym_BSLASHvref] = ACTIONS(6221), - [anon_sym_BSLASHVref] = ACTIONS(6221), - [anon_sym_BSLASHautoref] = ACTIONS(6221), - [anon_sym_BSLASHpageref] = ACTIONS(6221), - [anon_sym_BSLASHcref] = ACTIONS(6221), - [anon_sym_BSLASHCref] = ACTIONS(6221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnameCref] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHlabelcref] = ACTIONS(6221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCrefrange] = ACTIONS(6221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnewlabel] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6223), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHdef] = ACTIONS(6221), - [anon_sym_BSLASHlet] = ACTIONS(6221), - [anon_sym_BSLASHleft] = ACTIONS(6221), - [anon_sym_BSLASHbig] = ACTIONS(6221), - [anon_sym_BSLASHBig] = ACTIONS(6221), - [anon_sym_BSLASHbigg] = ACTIONS(6221), - [anon_sym_BSLASHBigg] = ACTIONS(6221), - [anon_sym_BSLASHbigl] = ACTIONS(6221), - [anon_sym_BSLASHBigl] = ACTIONS(6221), - [anon_sym_BSLASHbiggl] = ACTIONS(6221), - [anon_sym_BSLASHBiggl] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6221), - [anon_sym_BSLASHgls] = ACTIONS(6221), - [anon_sym_BSLASHGls] = ACTIONS(6221), - [anon_sym_BSLASHGLS] = ACTIONS(6221), - [anon_sym_BSLASHglspl] = ACTIONS(6221), - [anon_sym_BSLASHGlspl] = ACTIONS(6221), - [anon_sym_BSLASHGLSpl] = ACTIONS(6221), - [anon_sym_BSLASHglsdisp] = ACTIONS(6221), - [anon_sym_BSLASHglslink] = ACTIONS(6221), - [anon_sym_BSLASHglstext] = ACTIONS(6221), - [anon_sym_BSLASHGlstext] = ACTIONS(6221), - [anon_sym_BSLASHGLStext] = ACTIONS(6221), - [anon_sym_BSLASHglsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6221), - [anon_sym_BSLASHglsplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSplural] = ACTIONS(6221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHglsname] = ACTIONS(6221), - [anon_sym_BSLASHGlsname] = ACTIONS(6221), - [anon_sym_BSLASHGLSname] = ACTIONS(6221), - [anon_sym_BSLASHglssymbol] = ACTIONS(6221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6221), - [anon_sym_BSLASHglsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6221), - [anon_sym_BSLASHglsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6221), - [anon_sym_BSLASHglsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6221), - [anon_sym_BSLASHglsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6221), - [anon_sym_BSLASHglsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6221), - [anon_sym_BSLASHnewacronym] = ACTIONS(6221), - [anon_sym_BSLASHacrshort] = ACTIONS(6221), - [anon_sym_BSLASHAcrshort] = ACTIONS(6221), - [anon_sym_BSLASHACRshort] = ACTIONS(6221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6221), - [anon_sym_BSLASHacrlong] = ACTIONS(6221), - [anon_sym_BSLASHAcrlong] = ACTIONS(6221), - [anon_sym_BSLASHACRlong] = ACTIONS(6221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6221), - [anon_sym_BSLASHacrfull] = ACTIONS(6221), - [anon_sym_BSLASHAcrfull] = ACTIONS(6221), - [anon_sym_BSLASHACRfull] = ACTIONS(6221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6221), - [anon_sym_BSLASHacs] = ACTIONS(6221), - [anon_sym_BSLASHAcs] = ACTIONS(6221), - [anon_sym_BSLASHacsp] = ACTIONS(6221), - [anon_sym_BSLASHAcsp] = ACTIONS(6221), - [anon_sym_BSLASHacl] = ACTIONS(6221), - [anon_sym_BSLASHAcl] = ACTIONS(6221), - [anon_sym_BSLASHaclp] = ACTIONS(6221), - [anon_sym_BSLASHAclp] = ACTIONS(6221), - [anon_sym_BSLASHacf] = ACTIONS(6221), - [anon_sym_BSLASHAcf] = ACTIONS(6221), - [anon_sym_BSLASHacfp] = ACTIONS(6221), - [anon_sym_BSLASHAcfp] = ACTIONS(6221), - [anon_sym_BSLASHac] = ACTIONS(6221), - [anon_sym_BSLASHAc] = ACTIONS(6221), - [anon_sym_BSLASHacp] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6221), - [anon_sym_BSLASHcolor] = ACTIONS(6221), - [anon_sym_BSLASHcolorbox] = ACTIONS(6221), - [anon_sym_BSLASHtextcolor] = ACTIONS(6221), - [anon_sym_BSLASHpagecolor] = ACTIONS(6221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6221), - [anon_sym_BSLASHtext] = ACTIONS(6221), - [anon_sym_BSLASHintertext] = ACTIONS(6221), - [anon_sym_shortintertext] = ACTIONS(6221), - }, - [1102] = { - [sym_command_name] = ACTIONS(6477), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6477), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_RBRACK] = ACTIONS(6479), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_LPAREN] = ACTIONS(6479), - [anon_sym_RPAREN] = ACTIONS(6479), - [anon_sym_BSLASHpart] = ACTIONS(6477), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddpart] = ACTIONS(6477), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6479), - [anon_sym_BSLASHchapter] = ACTIONS(6477), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddchap] = ACTIONS(6477), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsection] = ACTIONS(6477), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddsec] = ACTIONS(6477), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubsection] = ACTIONS(6477), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6477), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHparagraph] = ACTIONS(6477), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6477), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6479), - [anon_sym_BSLASHitem] = ACTIONS(6477), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6479), - [anon_sym_LBRACE] = ACTIONS(6479), - [sym_word] = ACTIONS(6477), - [sym_placeholder] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6477), - [anon_sym_GT] = ACTIONS(6477), - [anon_sym_BANG] = ACTIONS(6477), - [anon_sym_PIPE] = ACTIONS(6477), - [anon_sym_COLON] = ACTIONS(6477), - [anon_sym_SQUOTE] = ACTIONS(6477), - [anon_sym__] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6479), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6479), - [anon_sym_DOLLAR] = ACTIONS(6477), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6479), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6479), - [anon_sym_BSLASHbegin] = ACTIONS(6477), - [anon_sym_BSLASHtitle] = ACTIONS(6477), - [anon_sym_BSLASHauthor] = ACTIONS(6477), - [anon_sym_BSLASHusepackage] = ACTIONS(6477), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6477), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6477), - [anon_sym_BSLASHinclude] = ACTIONS(6477), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6477), - [anon_sym_BSLASHinput] = ACTIONS(6477), - [anon_sym_BSLASHsubfile] = ACTIONS(6477), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6477), - [anon_sym_BSLASHbibliography] = ACTIONS(6477), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6477), - [anon_sym_BSLASHincludesvg] = ACTIONS(6477), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6477), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6477), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6477), - [anon_sym_BSLASHimport] = ACTIONS(6477), - [anon_sym_BSLASHsubimport] = ACTIONS(6477), - [anon_sym_BSLASHinputfrom] = ACTIONS(6477), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6477), - [anon_sym_BSLASHincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHcaption] = ACTIONS(6477), - [anon_sym_BSLASHcite] = ACTIONS(6477), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCite] = ACTIONS(6477), - [anon_sym_BSLASHnocite] = ACTIONS(6477), - [anon_sym_BSLASHcitet] = ACTIONS(6477), - [anon_sym_BSLASHcitep] = ACTIONS(6477), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteauthor] = ACTIONS(6477), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6477), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitetitle] = ACTIONS(6477), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteyear] = ACTIONS(6477), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitedate] = ACTIONS(6477), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteurl] = ACTIONS(6477), - [anon_sym_BSLASHfullcite] = ACTIONS(6477), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6477), - [anon_sym_BSLASHcitealt] = ACTIONS(6477), - [anon_sym_BSLASHcitealp] = ACTIONS(6477), - [anon_sym_BSLASHcitetext] = ACTIONS(6477), - [anon_sym_BSLASHparencite] = ACTIONS(6477), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHParencite] = ACTIONS(6477), - [anon_sym_BSLASHfootcite] = ACTIONS(6477), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6477), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6477), - [anon_sym_BSLASHtextcite] = ACTIONS(6477), - [anon_sym_BSLASHTextcite] = ACTIONS(6477), - [anon_sym_BSLASHsmartcite] = ACTIONS(6477), - [anon_sym_BSLASHSmartcite] = ACTIONS(6477), - [anon_sym_BSLASHsupercite] = ACTIONS(6477), - [anon_sym_BSLASHautocite] = ACTIONS(6477), - [anon_sym_BSLASHAutocite] = ACTIONS(6477), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHvolcite] = ACTIONS(6477), - [anon_sym_BSLASHVolcite] = ACTIONS(6477), - [anon_sym_BSLASHpvolcite] = ACTIONS(6477), - [anon_sym_BSLASHPvolcite] = ACTIONS(6477), - [anon_sym_BSLASHfvolcite] = ACTIONS(6477), - [anon_sym_BSLASHftvolcite] = ACTIONS(6477), - [anon_sym_BSLASHsvolcite] = ACTIONS(6477), - [anon_sym_BSLASHSvolcite] = ACTIONS(6477), - [anon_sym_BSLASHtvolcite] = ACTIONS(6477), - [anon_sym_BSLASHTvolcite] = ACTIONS(6477), - [anon_sym_BSLASHavolcite] = ACTIONS(6477), - [anon_sym_BSLASHAvolcite] = ACTIONS(6477), - [anon_sym_BSLASHnotecite] = ACTIONS(6477), - [anon_sym_BSLASHNotecite] = ACTIONS(6477), - [anon_sym_BSLASHpnotecite] = ACTIONS(6477), - [anon_sym_BSLASHPnotecite] = ACTIONS(6477), - [anon_sym_BSLASHfnotecite] = ACTIONS(6477), - [anon_sym_BSLASHlabel] = ACTIONS(6477), - [anon_sym_BSLASHref] = ACTIONS(6477), - [anon_sym_BSLASHeqref] = ACTIONS(6477), - [anon_sym_BSLASHvref] = ACTIONS(6477), - [anon_sym_BSLASHVref] = ACTIONS(6477), - [anon_sym_BSLASHautoref] = ACTIONS(6477), - [anon_sym_BSLASHpageref] = ACTIONS(6477), - [anon_sym_BSLASHcref] = ACTIONS(6477), - [anon_sym_BSLASHCref] = ACTIONS(6477), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnameCref] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHlabelcref] = ACTIONS(6477), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCrefrange] = ACTIONS(6477), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnewlabel] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6477), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6477), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6479), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHdef] = ACTIONS(6477), - [anon_sym_BSLASHlet] = ACTIONS(6477), - [anon_sym_BSLASHleft] = ACTIONS(6477), - [anon_sym_BSLASHbig] = ACTIONS(6477), - [anon_sym_BSLASHBig] = ACTIONS(6477), - [anon_sym_BSLASHbigg] = ACTIONS(6477), - [anon_sym_BSLASHBigg] = ACTIONS(6477), - [anon_sym_BSLASHbigl] = ACTIONS(6477), - [anon_sym_BSLASHBigl] = ACTIONS(6477), - [anon_sym_BSLASHbiggl] = ACTIONS(6477), - [anon_sym_BSLASHBiggl] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6477), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6477), - [anon_sym_BSLASHgls] = ACTIONS(6477), - [anon_sym_BSLASHGls] = ACTIONS(6477), - [anon_sym_BSLASHGLS] = ACTIONS(6477), - [anon_sym_BSLASHglspl] = ACTIONS(6477), - [anon_sym_BSLASHGlspl] = ACTIONS(6477), - [anon_sym_BSLASHGLSpl] = ACTIONS(6477), - [anon_sym_BSLASHglsdisp] = ACTIONS(6477), - [anon_sym_BSLASHglslink] = ACTIONS(6477), - [anon_sym_BSLASHglstext] = ACTIONS(6477), - [anon_sym_BSLASHGlstext] = ACTIONS(6477), - [anon_sym_BSLASHGLStext] = ACTIONS(6477), - [anon_sym_BSLASHglsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6477), - [anon_sym_BSLASHglsplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSplural] = ACTIONS(6477), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHglsname] = ACTIONS(6477), - [anon_sym_BSLASHGlsname] = ACTIONS(6477), - [anon_sym_BSLASHGLSname] = ACTIONS(6477), - [anon_sym_BSLASHglssymbol] = ACTIONS(6477), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6477), - [anon_sym_BSLASHglsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6477), - [anon_sym_BSLASHglsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6477), - [anon_sym_BSLASHglsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6477), - [anon_sym_BSLASHglsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6477), - [anon_sym_BSLASHglsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6477), - [anon_sym_BSLASHnewacronym] = ACTIONS(6477), - [anon_sym_BSLASHacrshort] = ACTIONS(6477), - [anon_sym_BSLASHAcrshort] = ACTIONS(6477), - [anon_sym_BSLASHACRshort] = ACTIONS(6477), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6477), - [anon_sym_BSLASHacrlong] = ACTIONS(6477), - [anon_sym_BSLASHAcrlong] = ACTIONS(6477), - [anon_sym_BSLASHACRlong] = ACTIONS(6477), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6477), - [anon_sym_BSLASHacrfull] = ACTIONS(6477), - [anon_sym_BSLASHAcrfull] = ACTIONS(6477), - [anon_sym_BSLASHACRfull] = ACTIONS(6477), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6477), - [anon_sym_BSLASHacs] = ACTIONS(6477), - [anon_sym_BSLASHAcs] = ACTIONS(6477), - [anon_sym_BSLASHacsp] = ACTIONS(6477), - [anon_sym_BSLASHAcsp] = ACTIONS(6477), - [anon_sym_BSLASHacl] = ACTIONS(6477), - [anon_sym_BSLASHAcl] = ACTIONS(6477), - [anon_sym_BSLASHaclp] = ACTIONS(6477), - [anon_sym_BSLASHAclp] = ACTIONS(6477), - [anon_sym_BSLASHacf] = ACTIONS(6477), - [anon_sym_BSLASHAcf] = ACTIONS(6477), - [anon_sym_BSLASHacfp] = ACTIONS(6477), - [anon_sym_BSLASHAcfp] = ACTIONS(6477), - [anon_sym_BSLASHac] = ACTIONS(6477), - [anon_sym_BSLASHAc] = ACTIONS(6477), - [anon_sym_BSLASHacp] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6477), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6477), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6477), - [anon_sym_BSLASHcolor] = ACTIONS(6477), - [anon_sym_BSLASHcolorbox] = ACTIONS(6477), - [anon_sym_BSLASHtextcolor] = ACTIONS(6477), - [anon_sym_BSLASHpagecolor] = ACTIONS(6477), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6477), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6477), - [anon_sym_BSLASHtext] = ACTIONS(6477), - [anon_sym_BSLASHintertext] = ACTIONS(6477), - [anon_sym_shortintertext] = ACTIONS(6477), - }, - [1103] = { - [sym_command_name] = ACTIONS(6181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6181), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_EQ] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_BSLASHpart] = ACTIONS(6181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddpart] = ACTIONS(6181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6183), - [anon_sym_BSLASHchapter] = ACTIONS(6181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddchap] = ACTIONS(6181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsection] = ACTIONS(6181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddsec] = ACTIONS(6181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubsection] = ACTIONS(6181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHparagraph] = ACTIONS(6181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6183), - [anon_sym_BSLASHitem] = ACTIONS(6181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6183), - [anon_sym_LBRACE] = ACTIONS(6183), - [sym_word] = ACTIONS(6181), - [sym_placeholder] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6183), - [anon_sym_DASH] = ACTIONS(6183), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_COLON] = ACTIONS(6181), - [anon_sym_SQUOTE] = ACTIONS(6181), - [anon_sym__] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), - [anon_sym_BSLASHbegin] = ACTIONS(6181), - [anon_sym_BSLASHend] = ACTIONS(6181), - [anon_sym_BSLASHtitle] = ACTIONS(6181), - [anon_sym_BSLASHauthor] = ACTIONS(6181), - [anon_sym_BSLASHusepackage] = ACTIONS(6181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), - [anon_sym_BSLASHinclude] = ACTIONS(6181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), - [anon_sym_BSLASHinput] = ACTIONS(6181), - [anon_sym_BSLASHsubfile] = ACTIONS(6181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), - [anon_sym_BSLASHbibliography] = ACTIONS(6181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), - [anon_sym_BSLASHincludesvg] = ACTIONS(6181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), - [anon_sym_BSLASHimport] = ACTIONS(6181), - [anon_sym_BSLASHsubimport] = ACTIONS(6181), - [anon_sym_BSLASHinputfrom] = ACTIONS(6181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), - [anon_sym_BSLASHincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHcaption] = ACTIONS(6181), - [anon_sym_BSLASHcite] = ACTIONS(6181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCite] = ACTIONS(6181), - [anon_sym_BSLASHnocite] = ACTIONS(6181), - [anon_sym_BSLASHcitet] = ACTIONS(6181), - [anon_sym_BSLASHcitep] = ACTIONS(6181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteauthor] = ACTIONS(6181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitetitle] = ACTIONS(6181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteyear] = ACTIONS(6181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitedate] = ACTIONS(6181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteurl] = ACTIONS(6181), - [anon_sym_BSLASHfullcite] = ACTIONS(6181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), - [anon_sym_BSLASHcitealt] = ACTIONS(6181), - [anon_sym_BSLASHcitealp] = ACTIONS(6181), - [anon_sym_BSLASHcitetext] = ACTIONS(6181), - [anon_sym_BSLASHparencite] = ACTIONS(6181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHParencite] = ACTIONS(6181), - [anon_sym_BSLASHfootcite] = ACTIONS(6181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), - [anon_sym_BSLASHtextcite] = ACTIONS(6181), - [anon_sym_BSLASHTextcite] = ACTIONS(6181), - [anon_sym_BSLASHsmartcite] = ACTIONS(6181), - [anon_sym_BSLASHSmartcite] = ACTIONS(6181), - [anon_sym_BSLASHsupercite] = ACTIONS(6181), - [anon_sym_BSLASHautocite] = ACTIONS(6181), - [anon_sym_BSLASHAutocite] = ACTIONS(6181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHvolcite] = ACTIONS(6181), - [anon_sym_BSLASHVolcite] = ACTIONS(6181), - [anon_sym_BSLASHpvolcite] = ACTIONS(6181), - [anon_sym_BSLASHPvolcite] = ACTIONS(6181), - [anon_sym_BSLASHfvolcite] = ACTIONS(6181), - [anon_sym_BSLASHftvolcite] = ACTIONS(6181), - [anon_sym_BSLASHsvolcite] = ACTIONS(6181), - [anon_sym_BSLASHSvolcite] = ACTIONS(6181), - [anon_sym_BSLASHtvolcite] = ACTIONS(6181), - [anon_sym_BSLASHTvolcite] = ACTIONS(6181), - [anon_sym_BSLASHavolcite] = ACTIONS(6181), - [anon_sym_BSLASHAvolcite] = ACTIONS(6181), - [anon_sym_BSLASHnotecite] = ACTIONS(6181), - [anon_sym_BSLASHNotecite] = ACTIONS(6181), - [anon_sym_BSLASHpnotecite] = ACTIONS(6181), - [anon_sym_BSLASHPnotecite] = ACTIONS(6181), - [anon_sym_BSLASHfnotecite] = ACTIONS(6181), - [anon_sym_BSLASHlabel] = ACTIONS(6181), - [anon_sym_BSLASHref] = ACTIONS(6181), - [anon_sym_BSLASHeqref] = ACTIONS(6181), - [anon_sym_BSLASHvref] = ACTIONS(6181), - [anon_sym_BSLASHVref] = ACTIONS(6181), - [anon_sym_BSLASHautoref] = ACTIONS(6181), - [anon_sym_BSLASHpageref] = ACTIONS(6181), - [anon_sym_BSLASHcref] = ACTIONS(6181), - [anon_sym_BSLASHCref] = ACTIONS(6181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnameCref] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHlabelcref] = ACTIONS(6181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCrefrange] = ACTIONS(6181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnewlabel] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHdef] = ACTIONS(6181), - [anon_sym_BSLASHlet] = ACTIONS(6181), - [anon_sym_BSLASHleft] = ACTIONS(6181), - [anon_sym_BSLASHbig] = ACTIONS(6181), - [anon_sym_BSLASHBig] = ACTIONS(6181), - [anon_sym_BSLASHbigg] = ACTIONS(6181), - [anon_sym_BSLASHBigg] = ACTIONS(6181), - [anon_sym_BSLASHbigl] = ACTIONS(6181), - [anon_sym_BSLASHBigl] = ACTIONS(6181), - [anon_sym_BSLASHbiggl] = ACTIONS(6181), - [anon_sym_BSLASHBiggl] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), - [anon_sym_BSLASHgls] = ACTIONS(6181), - [anon_sym_BSLASHGls] = ACTIONS(6181), - [anon_sym_BSLASHGLS] = ACTIONS(6181), - [anon_sym_BSLASHglspl] = ACTIONS(6181), - [anon_sym_BSLASHGlspl] = ACTIONS(6181), - [anon_sym_BSLASHGLSpl] = ACTIONS(6181), - [anon_sym_BSLASHglsdisp] = ACTIONS(6181), - [anon_sym_BSLASHglslink] = ACTIONS(6181), - [anon_sym_BSLASHglstext] = ACTIONS(6181), - [anon_sym_BSLASHGlstext] = ACTIONS(6181), - [anon_sym_BSLASHGLStext] = ACTIONS(6181), - [anon_sym_BSLASHglsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), - [anon_sym_BSLASHglsplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSplural] = ACTIONS(6181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHglsname] = ACTIONS(6181), - [anon_sym_BSLASHGlsname] = ACTIONS(6181), - [anon_sym_BSLASHGLSname] = ACTIONS(6181), - [anon_sym_BSLASHglssymbol] = ACTIONS(6181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), - [anon_sym_BSLASHglsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), - [anon_sym_BSLASHglsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), - [anon_sym_BSLASHglsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), - [anon_sym_BSLASHglsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), - [anon_sym_BSLASHglsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), - [anon_sym_BSLASHnewacronym] = ACTIONS(6181), - [anon_sym_BSLASHacrshort] = ACTIONS(6181), - [anon_sym_BSLASHAcrshort] = ACTIONS(6181), - [anon_sym_BSLASHACRshort] = ACTIONS(6181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), - [anon_sym_BSLASHacrlong] = ACTIONS(6181), - [anon_sym_BSLASHAcrlong] = ACTIONS(6181), - [anon_sym_BSLASHACRlong] = ACTIONS(6181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), - [anon_sym_BSLASHacrfull] = ACTIONS(6181), - [anon_sym_BSLASHAcrfull] = ACTIONS(6181), - [anon_sym_BSLASHACRfull] = ACTIONS(6181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), - [anon_sym_BSLASHacs] = ACTIONS(6181), - [anon_sym_BSLASHAcs] = ACTIONS(6181), - [anon_sym_BSLASHacsp] = ACTIONS(6181), - [anon_sym_BSLASHAcsp] = ACTIONS(6181), - [anon_sym_BSLASHacl] = ACTIONS(6181), - [anon_sym_BSLASHAcl] = ACTIONS(6181), - [anon_sym_BSLASHaclp] = ACTIONS(6181), - [anon_sym_BSLASHAclp] = ACTIONS(6181), - [anon_sym_BSLASHacf] = ACTIONS(6181), - [anon_sym_BSLASHAcf] = ACTIONS(6181), - [anon_sym_BSLASHacfp] = ACTIONS(6181), - [anon_sym_BSLASHAcfp] = ACTIONS(6181), - [anon_sym_BSLASHac] = ACTIONS(6181), - [anon_sym_BSLASHAc] = ACTIONS(6181), - [anon_sym_BSLASHacp] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), - [anon_sym_BSLASHcolor] = ACTIONS(6181), - [anon_sym_BSLASHcolorbox] = ACTIONS(6181), - [anon_sym_BSLASHtextcolor] = ACTIONS(6181), - [anon_sym_BSLASHpagecolor] = ACTIONS(6181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), - [anon_sym_BSLASHtext] = ACTIONS(6181), - [anon_sym_BSLASHintertext] = ACTIONS(6181), - [anon_sym_shortintertext] = ACTIONS(6181), - }, - [1104] = { - [sym_command_name] = ACTIONS(6249), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_RBRACK] = ACTIONS(6251), - [anon_sym_COMMA] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(6251), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_BSLASHpart] = ACTIONS(6249), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddpart] = ACTIONS(6249), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6251), - [anon_sym_BSLASHchapter] = ACTIONS(6249), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddchap] = ACTIONS(6249), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsection] = ACTIONS(6249), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddsec] = ACTIONS(6249), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubsection] = ACTIONS(6249), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6249), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHparagraph] = ACTIONS(6249), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6249), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6251), - [anon_sym_BSLASHitem] = ACTIONS(6249), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6251), - [anon_sym_LBRACE] = ACTIONS(6251), - [sym_word] = ACTIONS(6249), - [sym_placeholder] = ACTIONS(6251), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6251), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_LT] = ACTIONS(6249), - [anon_sym_GT] = ACTIONS(6249), - [anon_sym_BANG] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_SQUOTE] = ACTIONS(6249), - [anon_sym__] = ACTIONS(6251), - [anon_sym_CARET] = ACTIONS(6251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), - [anon_sym_DOLLAR] = ACTIONS(6249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), - [anon_sym_BSLASHbegin] = ACTIONS(6249), - [anon_sym_BSLASHend] = ACTIONS(6249), - [anon_sym_BSLASHtitle] = ACTIONS(6249), - [anon_sym_BSLASHauthor] = ACTIONS(6249), - [anon_sym_BSLASHusepackage] = ACTIONS(6249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), - [anon_sym_BSLASHinclude] = ACTIONS(6249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), - [anon_sym_BSLASHinput] = ACTIONS(6249), - [anon_sym_BSLASHsubfile] = ACTIONS(6249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), - [anon_sym_BSLASHbibliography] = ACTIONS(6249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), - [anon_sym_BSLASHincludesvg] = ACTIONS(6249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), - [anon_sym_BSLASHimport] = ACTIONS(6249), - [anon_sym_BSLASHsubimport] = ACTIONS(6249), - [anon_sym_BSLASHinputfrom] = ACTIONS(6249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), - [anon_sym_BSLASHincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHcaption] = ACTIONS(6249), - [anon_sym_BSLASHcite] = ACTIONS(6249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCite] = ACTIONS(6249), - [anon_sym_BSLASHnocite] = ACTIONS(6249), - [anon_sym_BSLASHcitet] = ACTIONS(6249), - [anon_sym_BSLASHcitep] = ACTIONS(6249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteauthor] = ACTIONS(6249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitetitle] = ACTIONS(6249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteyear] = ACTIONS(6249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitedate] = ACTIONS(6249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteurl] = ACTIONS(6249), - [anon_sym_BSLASHfullcite] = ACTIONS(6249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), - [anon_sym_BSLASHcitealt] = ACTIONS(6249), - [anon_sym_BSLASHcitealp] = ACTIONS(6249), - [anon_sym_BSLASHcitetext] = ACTIONS(6249), - [anon_sym_BSLASHparencite] = ACTIONS(6249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHParencite] = ACTIONS(6249), - [anon_sym_BSLASHfootcite] = ACTIONS(6249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), - [anon_sym_BSLASHtextcite] = ACTIONS(6249), - [anon_sym_BSLASHTextcite] = ACTIONS(6249), - [anon_sym_BSLASHsmartcite] = ACTIONS(6249), - [anon_sym_BSLASHSmartcite] = ACTIONS(6249), - [anon_sym_BSLASHsupercite] = ACTIONS(6249), - [anon_sym_BSLASHautocite] = ACTIONS(6249), - [anon_sym_BSLASHAutocite] = ACTIONS(6249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHvolcite] = ACTIONS(6249), - [anon_sym_BSLASHVolcite] = ACTIONS(6249), - [anon_sym_BSLASHpvolcite] = ACTIONS(6249), - [anon_sym_BSLASHPvolcite] = ACTIONS(6249), - [anon_sym_BSLASHfvolcite] = ACTIONS(6249), - [anon_sym_BSLASHftvolcite] = ACTIONS(6249), - [anon_sym_BSLASHsvolcite] = ACTIONS(6249), - [anon_sym_BSLASHSvolcite] = ACTIONS(6249), - [anon_sym_BSLASHtvolcite] = ACTIONS(6249), - [anon_sym_BSLASHTvolcite] = ACTIONS(6249), - [anon_sym_BSLASHavolcite] = ACTIONS(6249), - [anon_sym_BSLASHAvolcite] = ACTIONS(6249), - [anon_sym_BSLASHnotecite] = ACTIONS(6249), - [anon_sym_BSLASHNotecite] = ACTIONS(6249), - [anon_sym_BSLASHpnotecite] = ACTIONS(6249), - [anon_sym_BSLASHPnotecite] = ACTIONS(6249), - [anon_sym_BSLASHfnotecite] = ACTIONS(6249), - [anon_sym_BSLASHlabel] = ACTIONS(6249), - [anon_sym_BSLASHref] = ACTIONS(6249), - [anon_sym_BSLASHeqref] = ACTIONS(6249), - [anon_sym_BSLASHvref] = ACTIONS(6249), - [anon_sym_BSLASHVref] = ACTIONS(6249), - [anon_sym_BSLASHautoref] = ACTIONS(6249), - [anon_sym_BSLASHpageref] = ACTIONS(6249), - [anon_sym_BSLASHcref] = ACTIONS(6249), - [anon_sym_BSLASHCref] = ACTIONS(6249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnameCref] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHlabelcref] = ACTIONS(6249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCrefrange] = ACTIONS(6249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnewlabel] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHdef] = ACTIONS(6249), - [anon_sym_BSLASHlet] = ACTIONS(6249), - [anon_sym_BSLASHleft] = ACTIONS(6249), - [anon_sym_BSLASHbig] = ACTIONS(6249), - [anon_sym_BSLASHBig] = ACTIONS(6249), - [anon_sym_BSLASHbigg] = ACTIONS(6249), - [anon_sym_BSLASHBigg] = ACTIONS(6249), - [anon_sym_BSLASHbigl] = ACTIONS(6249), - [anon_sym_BSLASHBigl] = ACTIONS(6249), - [anon_sym_BSLASHbiggl] = ACTIONS(6249), - [anon_sym_BSLASHBiggl] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), - [anon_sym_BSLASHgls] = ACTIONS(6249), - [anon_sym_BSLASHGls] = ACTIONS(6249), - [anon_sym_BSLASHGLS] = ACTIONS(6249), - [anon_sym_BSLASHglspl] = ACTIONS(6249), - [anon_sym_BSLASHGlspl] = ACTIONS(6249), - [anon_sym_BSLASHGLSpl] = ACTIONS(6249), - [anon_sym_BSLASHglsdisp] = ACTIONS(6249), - [anon_sym_BSLASHglslink] = ACTIONS(6249), - [anon_sym_BSLASHglstext] = ACTIONS(6249), - [anon_sym_BSLASHGlstext] = ACTIONS(6249), - [anon_sym_BSLASHGLStext] = ACTIONS(6249), - [anon_sym_BSLASHglsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), - [anon_sym_BSLASHglsplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSplural] = ACTIONS(6249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHglsname] = ACTIONS(6249), - [anon_sym_BSLASHGlsname] = ACTIONS(6249), - [anon_sym_BSLASHGLSname] = ACTIONS(6249), - [anon_sym_BSLASHglssymbol] = ACTIONS(6249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), - [anon_sym_BSLASHglsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), - [anon_sym_BSLASHglsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), - [anon_sym_BSLASHglsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), - [anon_sym_BSLASHglsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), - [anon_sym_BSLASHglsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), - [anon_sym_BSLASHnewacronym] = ACTIONS(6249), - [anon_sym_BSLASHacrshort] = ACTIONS(6249), - [anon_sym_BSLASHAcrshort] = ACTIONS(6249), - [anon_sym_BSLASHACRshort] = ACTIONS(6249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), - [anon_sym_BSLASHacrlong] = ACTIONS(6249), - [anon_sym_BSLASHAcrlong] = ACTIONS(6249), - [anon_sym_BSLASHACRlong] = ACTIONS(6249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), - [anon_sym_BSLASHacrfull] = ACTIONS(6249), - [anon_sym_BSLASHAcrfull] = ACTIONS(6249), - [anon_sym_BSLASHACRfull] = ACTIONS(6249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), - [anon_sym_BSLASHacs] = ACTIONS(6249), - [anon_sym_BSLASHAcs] = ACTIONS(6249), - [anon_sym_BSLASHacsp] = ACTIONS(6249), - [anon_sym_BSLASHAcsp] = ACTIONS(6249), - [anon_sym_BSLASHacl] = ACTIONS(6249), - [anon_sym_BSLASHAcl] = ACTIONS(6249), - [anon_sym_BSLASHaclp] = ACTIONS(6249), - [anon_sym_BSLASHAclp] = ACTIONS(6249), - [anon_sym_BSLASHacf] = ACTIONS(6249), - [anon_sym_BSLASHAcf] = ACTIONS(6249), - [anon_sym_BSLASHacfp] = ACTIONS(6249), - [anon_sym_BSLASHAcfp] = ACTIONS(6249), - [anon_sym_BSLASHac] = ACTIONS(6249), - [anon_sym_BSLASHAc] = ACTIONS(6249), - [anon_sym_BSLASHacp] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), - [anon_sym_BSLASHcolor] = ACTIONS(6249), - [anon_sym_BSLASHcolorbox] = ACTIONS(6249), - [anon_sym_BSLASHtextcolor] = ACTIONS(6249), - [anon_sym_BSLASHpagecolor] = ACTIONS(6249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), - [anon_sym_BSLASHtext] = ACTIONS(6249), - [anon_sym_BSLASHintertext] = ACTIONS(6249), - [anon_sym_shortintertext] = ACTIONS(6249), - }, - [1105] = { - [sym_command_name] = ACTIONS(6169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6169), - [anon_sym_LBRACK] = ACTIONS(6171), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_EQ] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_BSLASHpart] = ACTIONS(6169), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddpart] = ACTIONS(6169), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6171), - [anon_sym_BSLASHchapter] = ACTIONS(6169), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddchap] = ACTIONS(6169), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsection] = ACTIONS(6169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddsec] = ACTIONS(6169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubsection] = ACTIONS(6169), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHparagraph] = ACTIONS(6169), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6169), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6171), - [anon_sym_BSLASHitem] = ACTIONS(6169), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6171), - [anon_sym_LBRACE] = ACTIONS(6171), - [sym_word] = ACTIONS(6169), - [sym_placeholder] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6171), - [anon_sym_DASH] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_COLON] = ACTIONS(6169), - [anon_sym_SQUOTE] = ACTIONS(6169), - [anon_sym__] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6171), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6171), - [anon_sym_DOLLAR] = ACTIONS(6169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6171), - [anon_sym_BSLASHbegin] = ACTIONS(6169), - [anon_sym_BSLASHend] = ACTIONS(6169), - [anon_sym_BSLASHtitle] = ACTIONS(6169), - [anon_sym_BSLASHauthor] = ACTIONS(6169), - [anon_sym_BSLASHusepackage] = ACTIONS(6169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6169), - [anon_sym_BSLASHinclude] = ACTIONS(6169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6169), - [anon_sym_BSLASHinput] = ACTIONS(6169), - [anon_sym_BSLASHsubfile] = ACTIONS(6169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6169), - [anon_sym_BSLASHbibliography] = ACTIONS(6169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6169), - [anon_sym_BSLASHincludesvg] = ACTIONS(6169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6169), - [anon_sym_BSLASHimport] = ACTIONS(6169), - [anon_sym_BSLASHsubimport] = ACTIONS(6169), - [anon_sym_BSLASHinputfrom] = ACTIONS(6169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6169), - [anon_sym_BSLASHincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHcaption] = ACTIONS(6169), - [anon_sym_BSLASHcite] = ACTIONS(6169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCite] = ACTIONS(6169), - [anon_sym_BSLASHnocite] = ACTIONS(6169), - [anon_sym_BSLASHcitet] = ACTIONS(6169), - [anon_sym_BSLASHcitep] = ACTIONS(6169), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteauthor] = ACTIONS(6169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitetitle] = ACTIONS(6169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteyear] = ACTIONS(6169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitedate] = ACTIONS(6169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteurl] = ACTIONS(6169), - [anon_sym_BSLASHfullcite] = ACTIONS(6169), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6169), - [anon_sym_BSLASHcitealt] = ACTIONS(6169), - [anon_sym_BSLASHcitealp] = ACTIONS(6169), - [anon_sym_BSLASHcitetext] = ACTIONS(6169), - [anon_sym_BSLASHparencite] = ACTIONS(6169), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHParencite] = ACTIONS(6169), - [anon_sym_BSLASHfootcite] = ACTIONS(6169), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6169), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6169), - [anon_sym_BSLASHtextcite] = ACTIONS(6169), - [anon_sym_BSLASHTextcite] = ACTIONS(6169), - [anon_sym_BSLASHsmartcite] = ACTIONS(6169), - [anon_sym_BSLASHSmartcite] = ACTIONS(6169), - [anon_sym_BSLASHsupercite] = ACTIONS(6169), - [anon_sym_BSLASHautocite] = ACTIONS(6169), - [anon_sym_BSLASHAutocite] = ACTIONS(6169), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHvolcite] = ACTIONS(6169), - [anon_sym_BSLASHVolcite] = ACTIONS(6169), - [anon_sym_BSLASHpvolcite] = ACTIONS(6169), - [anon_sym_BSLASHPvolcite] = ACTIONS(6169), - [anon_sym_BSLASHfvolcite] = ACTIONS(6169), - [anon_sym_BSLASHftvolcite] = ACTIONS(6169), - [anon_sym_BSLASHsvolcite] = ACTIONS(6169), - [anon_sym_BSLASHSvolcite] = ACTIONS(6169), - [anon_sym_BSLASHtvolcite] = ACTIONS(6169), - [anon_sym_BSLASHTvolcite] = ACTIONS(6169), - [anon_sym_BSLASHavolcite] = ACTIONS(6169), - [anon_sym_BSLASHAvolcite] = ACTIONS(6169), - [anon_sym_BSLASHnotecite] = ACTIONS(6169), - [anon_sym_BSLASHNotecite] = ACTIONS(6169), - [anon_sym_BSLASHpnotecite] = ACTIONS(6169), - [anon_sym_BSLASHPnotecite] = ACTIONS(6169), - [anon_sym_BSLASHfnotecite] = ACTIONS(6169), - [anon_sym_BSLASHlabel] = ACTIONS(6169), - [anon_sym_BSLASHref] = ACTIONS(6169), - [anon_sym_BSLASHeqref] = ACTIONS(6169), - [anon_sym_BSLASHvref] = ACTIONS(6169), - [anon_sym_BSLASHVref] = ACTIONS(6169), - [anon_sym_BSLASHautoref] = ACTIONS(6169), - [anon_sym_BSLASHpageref] = ACTIONS(6169), - [anon_sym_BSLASHcref] = ACTIONS(6169), - [anon_sym_BSLASHCref] = ACTIONS(6169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnameCref] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHlabelcref] = ACTIONS(6169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCrefrange] = ACTIONS(6169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnewlabel] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6171), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHdef] = ACTIONS(6169), - [anon_sym_BSLASHlet] = ACTIONS(6169), - [anon_sym_BSLASHleft] = ACTIONS(6169), - [anon_sym_BSLASHbig] = ACTIONS(6169), - [anon_sym_BSLASHBig] = ACTIONS(6169), - [anon_sym_BSLASHbigg] = ACTIONS(6169), - [anon_sym_BSLASHBigg] = ACTIONS(6169), - [anon_sym_BSLASHbigl] = ACTIONS(6169), - [anon_sym_BSLASHBigl] = ACTIONS(6169), - [anon_sym_BSLASHbiggl] = ACTIONS(6169), - [anon_sym_BSLASHBiggl] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6169), - [anon_sym_BSLASHgls] = ACTIONS(6169), - [anon_sym_BSLASHGls] = ACTIONS(6169), - [anon_sym_BSLASHGLS] = ACTIONS(6169), - [anon_sym_BSLASHglspl] = ACTIONS(6169), - [anon_sym_BSLASHGlspl] = ACTIONS(6169), - [anon_sym_BSLASHGLSpl] = ACTIONS(6169), - [anon_sym_BSLASHglsdisp] = ACTIONS(6169), - [anon_sym_BSLASHglslink] = ACTIONS(6169), - [anon_sym_BSLASHglstext] = ACTIONS(6169), - [anon_sym_BSLASHGlstext] = ACTIONS(6169), - [anon_sym_BSLASHGLStext] = ACTIONS(6169), - [anon_sym_BSLASHglsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6169), - [anon_sym_BSLASHglsplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSplural] = ACTIONS(6169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHglsname] = ACTIONS(6169), - [anon_sym_BSLASHGlsname] = ACTIONS(6169), - [anon_sym_BSLASHGLSname] = ACTIONS(6169), - [anon_sym_BSLASHglssymbol] = ACTIONS(6169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6169), - [anon_sym_BSLASHglsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6169), - [anon_sym_BSLASHglsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6169), - [anon_sym_BSLASHglsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6169), - [anon_sym_BSLASHglsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6169), - [anon_sym_BSLASHglsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6169), - [anon_sym_BSLASHnewacronym] = ACTIONS(6169), - [anon_sym_BSLASHacrshort] = ACTIONS(6169), - [anon_sym_BSLASHAcrshort] = ACTIONS(6169), - [anon_sym_BSLASHACRshort] = ACTIONS(6169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6169), - [anon_sym_BSLASHacrlong] = ACTIONS(6169), - [anon_sym_BSLASHAcrlong] = ACTIONS(6169), - [anon_sym_BSLASHACRlong] = ACTIONS(6169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6169), - [anon_sym_BSLASHacrfull] = ACTIONS(6169), - [anon_sym_BSLASHAcrfull] = ACTIONS(6169), - [anon_sym_BSLASHACRfull] = ACTIONS(6169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6169), - [anon_sym_BSLASHacs] = ACTIONS(6169), - [anon_sym_BSLASHAcs] = ACTIONS(6169), - [anon_sym_BSLASHacsp] = ACTIONS(6169), - [anon_sym_BSLASHAcsp] = ACTIONS(6169), - [anon_sym_BSLASHacl] = ACTIONS(6169), - [anon_sym_BSLASHAcl] = ACTIONS(6169), - [anon_sym_BSLASHaclp] = ACTIONS(6169), - [anon_sym_BSLASHAclp] = ACTIONS(6169), - [anon_sym_BSLASHacf] = ACTIONS(6169), - [anon_sym_BSLASHAcf] = ACTIONS(6169), - [anon_sym_BSLASHacfp] = ACTIONS(6169), - [anon_sym_BSLASHAcfp] = ACTIONS(6169), - [anon_sym_BSLASHac] = ACTIONS(6169), - [anon_sym_BSLASHAc] = ACTIONS(6169), - [anon_sym_BSLASHacp] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6169), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6169), - [anon_sym_BSLASHcolor] = ACTIONS(6169), - [anon_sym_BSLASHcolorbox] = ACTIONS(6169), - [anon_sym_BSLASHtextcolor] = ACTIONS(6169), - [anon_sym_BSLASHpagecolor] = ACTIONS(6169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6169), - [anon_sym_BSLASHtext] = ACTIONS(6169), - [anon_sym_BSLASHintertext] = ACTIONS(6169), - [anon_sym_shortintertext] = ACTIONS(6169), - }, - [1106] = { - [sym_command_name] = ACTIONS(6117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6117), - [anon_sym_LBRACK] = ACTIONS(6119), - [anon_sym_RBRACK] = ACTIONS(6119), - [anon_sym_COMMA] = ACTIONS(6119), - [anon_sym_EQ] = ACTIONS(6119), - [anon_sym_LPAREN] = ACTIONS(6119), - [anon_sym_RPAREN] = ACTIONS(6119), - [anon_sym_BSLASHpart] = ACTIONS(6117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddpart] = ACTIONS(6117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6119), - [anon_sym_BSLASHchapter] = ACTIONS(6117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddchap] = ACTIONS(6117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsection] = ACTIONS(6117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddsec] = ACTIONS(6117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubsection] = ACTIONS(6117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHparagraph] = ACTIONS(6117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6119), - [anon_sym_BSLASHitem] = ACTIONS(6117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6119), - [anon_sym_LBRACE] = ACTIONS(6119), - [sym_word] = ACTIONS(6117), - [sym_placeholder] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6119), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_LT] = ACTIONS(6117), - [anon_sym_GT] = ACTIONS(6117), - [anon_sym_BANG] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_SQUOTE] = ACTIONS(6117), - [anon_sym__] = ACTIONS(6119), - [anon_sym_CARET] = ACTIONS(6119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6119), - [anon_sym_DOLLAR] = ACTIONS(6117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6119), - [anon_sym_BSLASHbegin] = ACTIONS(6117), - [anon_sym_BSLASHend] = ACTIONS(6117), - [anon_sym_BSLASHtitle] = ACTIONS(6117), - [anon_sym_BSLASHauthor] = ACTIONS(6117), - [anon_sym_BSLASHusepackage] = ACTIONS(6117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6117), - [anon_sym_BSLASHinclude] = ACTIONS(6117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6117), - [anon_sym_BSLASHinput] = ACTIONS(6117), - [anon_sym_BSLASHsubfile] = ACTIONS(6117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6117), - [anon_sym_BSLASHbibliography] = ACTIONS(6117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6117), - [anon_sym_BSLASHincludesvg] = ACTIONS(6117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6117), - [anon_sym_BSLASHimport] = ACTIONS(6117), - [anon_sym_BSLASHsubimport] = ACTIONS(6117), - [anon_sym_BSLASHinputfrom] = ACTIONS(6117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6117), - [anon_sym_BSLASHincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHcaption] = ACTIONS(6117), - [anon_sym_BSLASHcite] = ACTIONS(6117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCite] = ACTIONS(6117), - [anon_sym_BSLASHnocite] = ACTIONS(6117), - [anon_sym_BSLASHcitet] = ACTIONS(6117), - [anon_sym_BSLASHcitep] = ACTIONS(6117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteauthor] = ACTIONS(6117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitetitle] = ACTIONS(6117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteyear] = ACTIONS(6117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitedate] = ACTIONS(6117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteurl] = ACTIONS(6117), - [anon_sym_BSLASHfullcite] = ACTIONS(6117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6117), - [anon_sym_BSLASHcitealt] = ACTIONS(6117), - [anon_sym_BSLASHcitealp] = ACTIONS(6117), - [anon_sym_BSLASHcitetext] = ACTIONS(6117), - [anon_sym_BSLASHparencite] = ACTIONS(6117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHParencite] = ACTIONS(6117), - [anon_sym_BSLASHfootcite] = ACTIONS(6117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6117), - [anon_sym_BSLASHtextcite] = ACTIONS(6117), - [anon_sym_BSLASHTextcite] = ACTIONS(6117), - [anon_sym_BSLASHsmartcite] = ACTIONS(6117), - [anon_sym_BSLASHSmartcite] = ACTIONS(6117), - [anon_sym_BSLASHsupercite] = ACTIONS(6117), - [anon_sym_BSLASHautocite] = ACTIONS(6117), - [anon_sym_BSLASHAutocite] = ACTIONS(6117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHvolcite] = ACTIONS(6117), - [anon_sym_BSLASHVolcite] = ACTIONS(6117), - [anon_sym_BSLASHpvolcite] = ACTIONS(6117), - [anon_sym_BSLASHPvolcite] = ACTIONS(6117), - [anon_sym_BSLASHfvolcite] = ACTIONS(6117), - [anon_sym_BSLASHftvolcite] = ACTIONS(6117), - [anon_sym_BSLASHsvolcite] = ACTIONS(6117), - [anon_sym_BSLASHSvolcite] = ACTIONS(6117), - [anon_sym_BSLASHtvolcite] = ACTIONS(6117), - [anon_sym_BSLASHTvolcite] = ACTIONS(6117), - [anon_sym_BSLASHavolcite] = ACTIONS(6117), - [anon_sym_BSLASHAvolcite] = ACTIONS(6117), - [anon_sym_BSLASHnotecite] = ACTIONS(6117), - [anon_sym_BSLASHNotecite] = ACTIONS(6117), - [anon_sym_BSLASHpnotecite] = ACTIONS(6117), - [anon_sym_BSLASHPnotecite] = ACTIONS(6117), - [anon_sym_BSLASHfnotecite] = ACTIONS(6117), - [anon_sym_BSLASHlabel] = ACTIONS(6117), - [anon_sym_BSLASHref] = ACTIONS(6117), - [anon_sym_BSLASHeqref] = ACTIONS(6117), - [anon_sym_BSLASHvref] = ACTIONS(6117), - [anon_sym_BSLASHVref] = ACTIONS(6117), - [anon_sym_BSLASHautoref] = ACTIONS(6117), - [anon_sym_BSLASHpageref] = ACTIONS(6117), - [anon_sym_BSLASHcref] = ACTIONS(6117), - [anon_sym_BSLASHCref] = ACTIONS(6117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnameCref] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHlabelcref] = ACTIONS(6117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCrefrange] = ACTIONS(6117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnewlabel] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6119), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHdef] = ACTIONS(6117), - [anon_sym_BSLASHlet] = ACTIONS(6117), - [anon_sym_BSLASHleft] = ACTIONS(6117), - [anon_sym_BSLASHbig] = ACTIONS(6117), - [anon_sym_BSLASHBig] = ACTIONS(6117), - [anon_sym_BSLASHbigg] = ACTIONS(6117), - [anon_sym_BSLASHBigg] = ACTIONS(6117), - [anon_sym_BSLASHbigl] = ACTIONS(6117), - [anon_sym_BSLASHBigl] = ACTIONS(6117), - [anon_sym_BSLASHbiggl] = ACTIONS(6117), - [anon_sym_BSLASHBiggl] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6117), - [anon_sym_BSLASHgls] = ACTIONS(6117), - [anon_sym_BSLASHGls] = ACTIONS(6117), - [anon_sym_BSLASHGLS] = ACTIONS(6117), - [anon_sym_BSLASHglspl] = ACTIONS(6117), - [anon_sym_BSLASHGlspl] = ACTIONS(6117), - [anon_sym_BSLASHGLSpl] = ACTIONS(6117), - [anon_sym_BSLASHglsdisp] = ACTIONS(6117), - [anon_sym_BSLASHglslink] = ACTIONS(6117), - [anon_sym_BSLASHglstext] = ACTIONS(6117), - [anon_sym_BSLASHGlstext] = ACTIONS(6117), - [anon_sym_BSLASHGLStext] = ACTIONS(6117), - [anon_sym_BSLASHglsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6117), - [anon_sym_BSLASHglsplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSplural] = ACTIONS(6117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHglsname] = ACTIONS(6117), - [anon_sym_BSLASHGlsname] = ACTIONS(6117), - [anon_sym_BSLASHGLSname] = ACTIONS(6117), - [anon_sym_BSLASHglssymbol] = ACTIONS(6117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6117), - [anon_sym_BSLASHglsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6117), - [anon_sym_BSLASHglsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6117), - [anon_sym_BSLASHglsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6117), - [anon_sym_BSLASHglsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6117), - [anon_sym_BSLASHglsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6117), - [anon_sym_BSLASHnewacronym] = ACTIONS(6117), - [anon_sym_BSLASHacrshort] = ACTIONS(6117), - [anon_sym_BSLASHAcrshort] = ACTIONS(6117), - [anon_sym_BSLASHACRshort] = ACTIONS(6117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6117), - [anon_sym_BSLASHacrlong] = ACTIONS(6117), - [anon_sym_BSLASHAcrlong] = ACTIONS(6117), - [anon_sym_BSLASHACRlong] = ACTIONS(6117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6117), - [anon_sym_BSLASHacrfull] = ACTIONS(6117), - [anon_sym_BSLASHAcrfull] = ACTIONS(6117), - [anon_sym_BSLASHACRfull] = ACTIONS(6117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6117), - [anon_sym_BSLASHacs] = ACTIONS(6117), - [anon_sym_BSLASHAcs] = ACTIONS(6117), - [anon_sym_BSLASHacsp] = ACTIONS(6117), - [anon_sym_BSLASHAcsp] = ACTIONS(6117), - [anon_sym_BSLASHacl] = ACTIONS(6117), - [anon_sym_BSLASHAcl] = ACTIONS(6117), - [anon_sym_BSLASHaclp] = ACTIONS(6117), - [anon_sym_BSLASHAclp] = ACTIONS(6117), - [anon_sym_BSLASHacf] = ACTIONS(6117), - [anon_sym_BSLASHAcf] = ACTIONS(6117), - [anon_sym_BSLASHacfp] = ACTIONS(6117), - [anon_sym_BSLASHAcfp] = ACTIONS(6117), - [anon_sym_BSLASHac] = ACTIONS(6117), - [anon_sym_BSLASHAc] = ACTIONS(6117), - [anon_sym_BSLASHacp] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6117), - [anon_sym_BSLASHcolor] = ACTIONS(6117), - [anon_sym_BSLASHcolorbox] = ACTIONS(6117), - [anon_sym_BSLASHtextcolor] = ACTIONS(6117), - [anon_sym_BSLASHpagecolor] = ACTIONS(6117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6117), - [anon_sym_BSLASHtext] = ACTIONS(6117), - [anon_sym_BSLASHintertext] = ACTIONS(6117), - [anon_sym_shortintertext] = ACTIONS(6117), - }, - [1107] = { - [sym_command_name] = ACTIONS(6113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6115), - [anon_sym_RBRACK] = ACTIONS(6115), - [anon_sym_COMMA] = ACTIONS(6115), - [anon_sym_EQ] = ACTIONS(6115), - [anon_sym_LPAREN] = ACTIONS(6115), - [anon_sym_RPAREN] = ACTIONS(6115), - [anon_sym_BSLASHpart] = ACTIONS(6113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddpart] = ACTIONS(6113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6115), - [anon_sym_BSLASHchapter] = ACTIONS(6113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddchap] = ACTIONS(6113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsection] = ACTIONS(6113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddsec] = ACTIONS(6113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubsection] = ACTIONS(6113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHparagraph] = ACTIONS(6113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6115), - [anon_sym_BSLASHitem] = ACTIONS(6113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6115), - [anon_sym_LBRACE] = ACTIONS(6115), - [sym_word] = ACTIONS(6113), - [sym_placeholder] = ACTIONS(6115), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_LT] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6113), - [anon_sym_BANG] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_SQUOTE] = ACTIONS(6113), - [anon_sym__] = ACTIONS(6115), - [anon_sym_CARET] = ACTIONS(6115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6115), - [anon_sym_DOLLAR] = ACTIONS(6113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6115), - [anon_sym_BSLASHbegin] = ACTIONS(6113), - [anon_sym_BSLASHend] = ACTIONS(6113), - [anon_sym_BSLASHtitle] = ACTIONS(6113), - [anon_sym_BSLASHauthor] = ACTIONS(6113), - [anon_sym_BSLASHusepackage] = ACTIONS(6113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), - [anon_sym_BSLASHinclude] = ACTIONS(6113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), - [anon_sym_BSLASHinput] = ACTIONS(6113), - [anon_sym_BSLASHsubfile] = ACTIONS(6113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), - [anon_sym_BSLASHbibliography] = ACTIONS(6113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), - [anon_sym_BSLASHincludesvg] = ACTIONS(6113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), - [anon_sym_BSLASHimport] = ACTIONS(6113), - [anon_sym_BSLASHsubimport] = ACTIONS(6113), - [anon_sym_BSLASHinputfrom] = ACTIONS(6113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), - [anon_sym_BSLASHincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHcaption] = ACTIONS(6113), - [anon_sym_BSLASHcite] = ACTIONS(6113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCite] = ACTIONS(6113), - [anon_sym_BSLASHnocite] = ACTIONS(6113), - [anon_sym_BSLASHcitet] = ACTIONS(6113), - [anon_sym_BSLASHcitep] = ACTIONS(6113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteauthor] = ACTIONS(6113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitetitle] = ACTIONS(6113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteyear] = ACTIONS(6113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitedate] = ACTIONS(6113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteurl] = ACTIONS(6113), - [anon_sym_BSLASHfullcite] = ACTIONS(6113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), - [anon_sym_BSLASHcitealt] = ACTIONS(6113), - [anon_sym_BSLASHcitealp] = ACTIONS(6113), - [anon_sym_BSLASHcitetext] = ACTIONS(6113), - [anon_sym_BSLASHparencite] = ACTIONS(6113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHParencite] = ACTIONS(6113), - [anon_sym_BSLASHfootcite] = ACTIONS(6113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), - [anon_sym_BSLASHtextcite] = ACTIONS(6113), - [anon_sym_BSLASHTextcite] = ACTIONS(6113), - [anon_sym_BSLASHsmartcite] = ACTIONS(6113), - [anon_sym_BSLASHSmartcite] = ACTIONS(6113), - [anon_sym_BSLASHsupercite] = ACTIONS(6113), - [anon_sym_BSLASHautocite] = ACTIONS(6113), - [anon_sym_BSLASHAutocite] = ACTIONS(6113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHvolcite] = ACTIONS(6113), - [anon_sym_BSLASHVolcite] = ACTIONS(6113), - [anon_sym_BSLASHpvolcite] = ACTIONS(6113), - [anon_sym_BSLASHPvolcite] = ACTIONS(6113), - [anon_sym_BSLASHfvolcite] = ACTIONS(6113), - [anon_sym_BSLASHftvolcite] = ACTIONS(6113), - [anon_sym_BSLASHsvolcite] = ACTIONS(6113), - [anon_sym_BSLASHSvolcite] = ACTIONS(6113), - [anon_sym_BSLASHtvolcite] = ACTIONS(6113), - [anon_sym_BSLASHTvolcite] = ACTIONS(6113), - [anon_sym_BSLASHavolcite] = ACTIONS(6113), - [anon_sym_BSLASHAvolcite] = ACTIONS(6113), - [anon_sym_BSLASHnotecite] = ACTIONS(6113), - [anon_sym_BSLASHNotecite] = ACTIONS(6113), - [anon_sym_BSLASHpnotecite] = ACTIONS(6113), - [anon_sym_BSLASHPnotecite] = ACTIONS(6113), - [anon_sym_BSLASHfnotecite] = ACTIONS(6113), - [anon_sym_BSLASHlabel] = ACTIONS(6113), - [anon_sym_BSLASHref] = ACTIONS(6113), - [anon_sym_BSLASHeqref] = ACTIONS(6113), - [anon_sym_BSLASHvref] = ACTIONS(6113), - [anon_sym_BSLASHVref] = ACTIONS(6113), - [anon_sym_BSLASHautoref] = ACTIONS(6113), - [anon_sym_BSLASHpageref] = ACTIONS(6113), - [anon_sym_BSLASHcref] = ACTIONS(6113), - [anon_sym_BSLASHCref] = ACTIONS(6113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnameCref] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHlabelcref] = ACTIONS(6113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCrefrange] = ACTIONS(6113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnewlabel] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6115), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHdef] = ACTIONS(6113), - [anon_sym_BSLASHlet] = ACTIONS(6113), - [anon_sym_BSLASHleft] = ACTIONS(6113), - [anon_sym_BSLASHbig] = ACTIONS(6113), - [anon_sym_BSLASHBig] = ACTIONS(6113), - [anon_sym_BSLASHbigg] = ACTIONS(6113), - [anon_sym_BSLASHBigg] = ACTIONS(6113), - [anon_sym_BSLASHbigl] = ACTIONS(6113), - [anon_sym_BSLASHBigl] = ACTIONS(6113), - [anon_sym_BSLASHbiggl] = ACTIONS(6113), - [anon_sym_BSLASHBiggl] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), - [anon_sym_BSLASHgls] = ACTIONS(6113), - [anon_sym_BSLASHGls] = ACTIONS(6113), - [anon_sym_BSLASHGLS] = ACTIONS(6113), - [anon_sym_BSLASHglspl] = ACTIONS(6113), - [anon_sym_BSLASHGlspl] = ACTIONS(6113), - [anon_sym_BSLASHGLSpl] = ACTIONS(6113), - [anon_sym_BSLASHglsdisp] = ACTIONS(6113), - [anon_sym_BSLASHglslink] = ACTIONS(6113), - [anon_sym_BSLASHglstext] = ACTIONS(6113), - [anon_sym_BSLASHGlstext] = ACTIONS(6113), - [anon_sym_BSLASHGLStext] = ACTIONS(6113), - [anon_sym_BSLASHglsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), - [anon_sym_BSLASHglsplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSplural] = ACTIONS(6113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHglsname] = ACTIONS(6113), - [anon_sym_BSLASHGlsname] = ACTIONS(6113), - [anon_sym_BSLASHGLSname] = ACTIONS(6113), - [anon_sym_BSLASHglssymbol] = ACTIONS(6113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), - [anon_sym_BSLASHglsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), - [anon_sym_BSLASHglsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), - [anon_sym_BSLASHglsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), - [anon_sym_BSLASHglsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), - [anon_sym_BSLASHglsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), - [anon_sym_BSLASHnewacronym] = ACTIONS(6113), - [anon_sym_BSLASHacrshort] = ACTIONS(6113), - [anon_sym_BSLASHAcrshort] = ACTIONS(6113), - [anon_sym_BSLASHACRshort] = ACTIONS(6113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), - [anon_sym_BSLASHacrlong] = ACTIONS(6113), - [anon_sym_BSLASHAcrlong] = ACTIONS(6113), - [anon_sym_BSLASHACRlong] = ACTIONS(6113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), - [anon_sym_BSLASHacrfull] = ACTIONS(6113), - [anon_sym_BSLASHAcrfull] = ACTIONS(6113), - [anon_sym_BSLASHACRfull] = ACTIONS(6113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), - [anon_sym_BSLASHacs] = ACTIONS(6113), - [anon_sym_BSLASHAcs] = ACTIONS(6113), - [anon_sym_BSLASHacsp] = ACTIONS(6113), - [anon_sym_BSLASHAcsp] = ACTIONS(6113), - [anon_sym_BSLASHacl] = ACTIONS(6113), - [anon_sym_BSLASHAcl] = ACTIONS(6113), - [anon_sym_BSLASHaclp] = ACTIONS(6113), - [anon_sym_BSLASHAclp] = ACTIONS(6113), - [anon_sym_BSLASHacf] = ACTIONS(6113), - [anon_sym_BSLASHAcf] = ACTIONS(6113), - [anon_sym_BSLASHacfp] = ACTIONS(6113), - [anon_sym_BSLASHAcfp] = ACTIONS(6113), - [anon_sym_BSLASHac] = ACTIONS(6113), - [anon_sym_BSLASHAc] = ACTIONS(6113), - [anon_sym_BSLASHacp] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), - [anon_sym_BSLASHcolor] = ACTIONS(6113), - [anon_sym_BSLASHcolorbox] = ACTIONS(6113), - [anon_sym_BSLASHtextcolor] = ACTIONS(6113), - [anon_sym_BSLASHpagecolor] = ACTIONS(6113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), - [anon_sym_BSLASHtext] = ACTIONS(6113), - [anon_sym_BSLASHintertext] = ACTIONS(6113), - [anon_sym_shortintertext] = ACTIONS(6113), - }, - [1108] = { - [sym_command_name] = ACTIONS(6109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6109), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_RBRACK] = ACTIONS(6111), - [anon_sym_COMMA] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_LPAREN] = ACTIONS(6111), - [anon_sym_RPAREN] = ACTIONS(6111), - [anon_sym_BSLASHpart] = ACTIONS(6109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddpart] = ACTIONS(6109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6111), - [anon_sym_BSLASHchapter] = ACTIONS(6109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddchap] = ACTIONS(6109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsection] = ACTIONS(6109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddsec] = ACTIONS(6109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubsection] = ACTIONS(6109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHparagraph] = ACTIONS(6109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6111), - [anon_sym_BSLASHitem] = ACTIONS(6109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6111), - [anon_sym_LBRACE] = ACTIONS(6111), - [sym_word] = ACTIONS(6109), - [sym_placeholder] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6109), - [anon_sym_GT] = ACTIONS(6109), - [anon_sym_BANG] = ACTIONS(6109), - [anon_sym_PIPE] = ACTIONS(6109), - [anon_sym_COLON] = ACTIONS(6109), - [anon_sym_SQUOTE] = ACTIONS(6109), - [anon_sym__] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), - [anon_sym_DOLLAR] = ACTIONS(6109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), - [anon_sym_BSLASHbegin] = ACTIONS(6109), - [anon_sym_BSLASHend] = ACTIONS(6109), - [anon_sym_BSLASHtitle] = ACTIONS(6109), - [anon_sym_BSLASHauthor] = ACTIONS(6109), - [anon_sym_BSLASHusepackage] = ACTIONS(6109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), - [anon_sym_BSLASHinclude] = ACTIONS(6109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), - [anon_sym_BSLASHinput] = ACTIONS(6109), - [anon_sym_BSLASHsubfile] = ACTIONS(6109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), - [anon_sym_BSLASHbibliography] = ACTIONS(6109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), - [anon_sym_BSLASHincludesvg] = ACTIONS(6109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), - [anon_sym_BSLASHimport] = ACTIONS(6109), - [anon_sym_BSLASHsubimport] = ACTIONS(6109), - [anon_sym_BSLASHinputfrom] = ACTIONS(6109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), - [anon_sym_BSLASHincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHcaption] = ACTIONS(6109), - [anon_sym_BSLASHcite] = ACTIONS(6109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCite] = ACTIONS(6109), - [anon_sym_BSLASHnocite] = ACTIONS(6109), - [anon_sym_BSLASHcitet] = ACTIONS(6109), - [anon_sym_BSLASHcitep] = ACTIONS(6109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteauthor] = ACTIONS(6109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitetitle] = ACTIONS(6109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteyear] = ACTIONS(6109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitedate] = ACTIONS(6109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteurl] = ACTIONS(6109), - [anon_sym_BSLASHfullcite] = ACTIONS(6109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), - [anon_sym_BSLASHcitealt] = ACTIONS(6109), - [anon_sym_BSLASHcitealp] = ACTIONS(6109), - [anon_sym_BSLASHcitetext] = ACTIONS(6109), - [anon_sym_BSLASHparencite] = ACTIONS(6109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHParencite] = ACTIONS(6109), - [anon_sym_BSLASHfootcite] = ACTIONS(6109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), - [anon_sym_BSLASHtextcite] = ACTIONS(6109), - [anon_sym_BSLASHTextcite] = ACTIONS(6109), - [anon_sym_BSLASHsmartcite] = ACTIONS(6109), - [anon_sym_BSLASHSmartcite] = ACTIONS(6109), - [anon_sym_BSLASHsupercite] = ACTIONS(6109), - [anon_sym_BSLASHautocite] = ACTIONS(6109), - [anon_sym_BSLASHAutocite] = ACTIONS(6109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHvolcite] = ACTIONS(6109), - [anon_sym_BSLASHVolcite] = ACTIONS(6109), - [anon_sym_BSLASHpvolcite] = ACTIONS(6109), - [anon_sym_BSLASHPvolcite] = ACTIONS(6109), - [anon_sym_BSLASHfvolcite] = ACTIONS(6109), - [anon_sym_BSLASHftvolcite] = ACTIONS(6109), - [anon_sym_BSLASHsvolcite] = ACTIONS(6109), - [anon_sym_BSLASHSvolcite] = ACTIONS(6109), - [anon_sym_BSLASHtvolcite] = ACTIONS(6109), - [anon_sym_BSLASHTvolcite] = ACTIONS(6109), - [anon_sym_BSLASHavolcite] = ACTIONS(6109), - [anon_sym_BSLASHAvolcite] = ACTIONS(6109), - [anon_sym_BSLASHnotecite] = ACTIONS(6109), - [anon_sym_BSLASHNotecite] = ACTIONS(6109), - [anon_sym_BSLASHpnotecite] = ACTIONS(6109), - [anon_sym_BSLASHPnotecite] = ACTIONS(6109), - [anon_sym_BSLASHfnotecite] = ACTIONS(6109), - [anon_sym_BSLASHlabel] = ACTIONS(6109), - [anon_sym_BSLASHref] = ACTIONS(6109), - [anon_sym_BSLASHeqref] = ACTIONS(6109), - [anon_sym_BSLASHvref] = ACTIONS(6109), - [anon_sym_BSLASHVref] = ACTIONS(6109), - [anon_sym_BSLASHautoref] = ACTIONS(6109), - [anon_sym_BSLASHpageref] = ACTIONS(6109), - [anon_sym_BSLASHcref] = ACTIONS(6109), - [anon_sym_BSLASHCref] = ACTIONS(6109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnameCref] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHlabelcref] = ACTIONS(6109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCrefrange] = ACTIONS(6109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnewlabel] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHdef] = ACTIONS(6109), - [anon_sym_BSLASHlet] = ACTIONS(6109), - [anon_sym_BSLASHleft] = ACTIONS(6109), - [anon_sym_BSLASHbig] = ACTIONS(6109), - [anon_sym_BSLASHBig] = ACTIONS(6109), - [anon_sym_BSLASHbigg] = ACTIONS(6109), - [anon_sym_BSLASHBigg] = ACTIONS(6109), - [anon_sym_BSLASHbigl] = ACTIONS(6109), - [anon_sym_BSLASHBigl] = ACTIONS(6109), - [anon_sym_BSLASHbiggl] = ACTIONS(6109), - [anon_sym_BSLASHBiggl] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), - [anon_sym_BSLASHgls] = ACTIONS(6109), - [anon_sym_BSLASHGls] = ACTIONS(6109), - [anon_sym_BSLASHGLS] = ACTIONS(6109), - [anon_sym_BSLASHglspl] = ACTIONS(6109), - [anon_sym_BSLASHGlspl] = ACTIONS(6109), - [anon_sym_BSLASHGLSpl] = ACTIONS(6109), - [anon_sym_BSLASHglsdisp] = ACTIONS(6109), - [anon_sym_BSLASHglslink] = ACTIONS(6109), - [anon_sym_BSLASHglstext] = ACTIONS(6109), - [anon_sym_BSLASHGlstext] = ACTIONS(6109), - [anon_sym_BSLASHGLStext] = ACTIONS(6109), - [anon_sym_BSLASHglsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), - [anon_sym_BSLASHglsplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSplural] = ACTIONS(6109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHglsname] = ACTIONS(6109), - [anon_sym_BSLASHGlsname] = ACTIONS(6109), - [anon_sym_BSLASHGLSname] = ACTIONS(6109), - [anon_sym_BSLASHglssymbol] = ACTIONS(6109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), - [anon_sym_BSLASHglsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), - [anon_sym_BSLASHglsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), - [anon_sym_BSLASHglsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), - [anon_sym_BSLASHglsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), - [anon_sym_BSLASHglsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), - [anon_sym_BSLASHnewacronym] = ACTIONS(6109), - [anon_sym_BSLASHacrshort] = ACTIONS(6109), - [anon_sym_BSLASHAcrshort] = ACTIONS(6109), - [anon_sym_BSLASHACRshort] = ACTIONS(6109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), - [anon_sym_BSLASHacrlong] = ACTIONS(6109), - [anon_sym_BSLASHAcrlong] = ACTIONS(6109), - [anon_sym_BSLASHACRlong] = ACTIONS(6109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), - [anon_sym_BSLASHacrfull] = ACTIONS(6109), - [anon_sym_BSLASHAcrfull] = ACTIONS(6109), - [anon_sym_BSLASHACRfull] = ACTIONS(6109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), - [anon_sym_BSLASHacs] = ACTIONS(6109), - [anon_sym_BSLASHAcs] = ACTIONS(6109), - [anon_sym_BSLASHacsp] = ACTIONS(6109), - [anon_sym_BSLASHAcsp] = ACTIONS(6109), - [anon_sym_BSLASHacl] = ACTIONS(6109), - [anon_sym_BSLASHAcl] = ACTIONS(6109), - [anon_sym_BSLASHaclp] = ACTIONS(6109), - [anon_sym_BSLASHAclp] = ACTIONS(6109), - [anon_sym_BSLASHacf] = ACTIONS(6109), - [anon_sym_BSLASHAcf] = ACTIONS(6109), - [anon_sym_BSLASHacfp] = ACTIONS(6109), - [anon_sym_BSLASHAcfp] = ACTIONS(6109), - [anon_sym_BSLASHac] = ACTIONS(6109), - [anon_sym_BSLASHAc] = ACTIONS(6109), - [anon_sym_BSLASHacp] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), - [anon_sym_BSLASHcolor] = ACTIONS(6109), - [anon_sym_BSLASHcolorbox] = ACTIONS(6109), - [anon_sym_BSLASHtextcolor] = ACTIONS(6109), - [anon_sym_BSLASHpagecolor] = ACTIONS(6109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), - [anon_sym_BSLASHtext] = ACTIONS(6109), - [anon_sym_BSLASHintertext] = ACTIONS(6109), - [anon_sym_shortintertext] = ACTIONS(6109), - }, - [1109] = { - [sym_command_name] = ACTIONS(6057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6057), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_BSLASHpart] = ACTIONS(6057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddpart] = ACTIONS(6057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6059), - [anon_sym_BSLASHchapter] = ACTIONS(6057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddchap] = ACTIONS(6057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsection] = ACTIONS(6057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddsec] = ACTIONS(6057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubsection] = ACTIONS(6057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHparagraph] = ACTIONS(6057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6059), - [anon_sym_BSLASHitem] = ACTIONS(6057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6059), - [sym_word] = ACTIONS(6057), - [sym_placeholder] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_BANG] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_SQUOTE] = ACTIONS(6057), - [anon_sym__] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), - [anon_sym_BSLASHbegin] = ACTIONS(6057), - [anon_sym_BSLASHend] = ACTIONS(6057), - [anon_sym_BSLASHtitle] = ACTIONS(6057), - [anon_sym_BSLASHauthor] = ACTIONS(6057), - [anon_sym_BSLASHusepackage] = ACTIONS(6057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), - [anon_sym_BSLASHinclude] = ACTIONS(6057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), - [anon_sym_BSLASHinput] = ACTIONS(6057), - [anon_sym_BSLASHsubfile] = ACTIONS(6057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), - [anon_sym_BSLASHbibliography] = ACTIONS(6057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), - [anon_sym_BSLASHincludesvg] = ACTIONS(6057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), - [anon_sym_BSLASHimport] = ACTIONS(6057), - [anon_sym_BSLASHsubimport] = ACTIONS(6057), - [anon_sym_BSLASHinputfrom] = ACTIONS(6057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), - [anon_sym_BSLASHincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHcaption] = ACTIONS(6057), - [anon_sym_BSLASHcite] = ACTIONS(6057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCite] = ACTIONS(6057), - [anon_sym_BSLASHnocite] = ACTIONS(6057), - [anon_sym_BSLASHcitet] = ACTIONS(6057), - [anon_sym_BSLASHcitep] = ACTIONS(6057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteauthor] = ACTIONS(6057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitetitle] = ACTIONS(6057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteyear] = ACTIONS(6057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitedate] = ACTIONS(6057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteurl] = ACTIONS(6057), - [anon_sym_BSLASHfullcite] = ACTIONS(6057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), - [anon_sym_BSLASHcitealt] = ACTIONS(6057), - [anon_sym_BSLASHcitealp] = ACTIONS(6057), - [anon_sym_BSLASHcitetext] = ACTIONS(6057), - [anon_sym_BSLASHparencite] = ACTIONS(6057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHParencite] = ACTIONS(6057), - [anon_sym_BSLASHfootcite] = ACTIONS(6057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), - [anon_sym_BSLASHtextcite] = ACTIONS(6057), - [anon_sym_BSLASHTextcite] = ACTIONS(6057), - [anon_sym_BSLASHsmartcite] = ACTIONS(6057), - [anon_sym_BSLASHSmartcite] = ACTIONS(6057), - [anon_sym_BSLASHsupercite] = ACTIONS(6057), - [anon_sym_BSLASHautocite] = ACTIONS(6057), - [anon_sym_BSLASHAutocite] = ACTIONS(6057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHvolcite] = ACTIONS(6057), - [anon_sym_BSLASHVolcite] = ACTIONS(6057), - [anon_sym_BSLASHpvolcite] = ACTIONS(6057), - [anon_sym_BSLASHPvolcite] = ACTIONS(6057), - [anon_sym_BSLASHfvolcite] = ACTIONS(6057), - [anon_sym_BSLASHftvolcite] = ACTIONS(6057), - [anon_sym_BSLASHsvolcite] = ACTIONS(6057), - [anon_sym_BSLASHSvolcite] = ACTIONS(6057), - [anon_sym_BSLASHtvolcite] = ACTIONS(6057), - [anon_sym_BSLASHTvolcite] = ACTIONS(6057), - [anon_sym_BSLASHavolcite] = ACTIONS(6057), - [anon_sym_BSLASHAvolcite] = ACTIONS(6057), - [anon_sym_BSLASHnotecite] = ACTIONS(6057), - [anon_sym_BSLASHNotecite] = ACTIONS(6057), - [anon_sym_BSLASHpnotecite] = ACTIONS(6057), - [anon_sym_BSLASHPnotecite] = ACTIONS(6057), - [anon_sym_BSLASHfnotecite] = ACTIONS(6057), - [anon_sym_BSLASHlabel] = ACTIONS(6057), - [anon_sym_BSLASHref] = ACTIONS(6057), - [anon_sym_BSLASHeqref] = ACTIONS(6057), - [anon_sym_BSLASHvref] = ACTIONS(6057), - [anon_sym_BSLASHVref] = ACTIONS(6057), - [anon_sym_BSLASHautoref] = ACTIONS(6057), - [anon_sym_BSLASHpageref] = ACTIONS(6057), - [anon_sym_BSLASHcref] = ACTIONS(6057), - [anon_sym_BSLASHCref] = ACTIONS(6057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnameCref] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHlabelcref] = ACTIONS(6057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCrefrange] = ACTIONS(6057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnewlabel] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHdef] = ACTIONS(6057), - [anon_sym_BSLASHlet] = ACTIONS(6057), - [anon_sym_BSLASHleft] = ACTIONS(6057), - [anon_sym_BSLASHbig] = ACTIONS(6057), - [anon_sym_BSLASHBig] = ACTIONS(6057), - [anon_sym_BSLASHbigg] = ACTIONS(6057), - [anon_sym_BSLASHBigg] = ACTIONS(6057), - [anon_sym_BSLASHbigl] = ACTIONS(6057), - [anon_sym_BSLASHBigl] = ACTIONS(6057), - [anon_sym_BSLASHbiggl] = ACTIONS(6057), - [anon_sym_BSLASHBiggl] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), - [anon_sym_BSLASHgls] = ACTIONS(6057), - [anon_sym_BSLASHGls] = ACTIONS(6057), - [anon_sym_BSLASHGLS] = ACTIONS(6057), - [anon_sym_BSLASHglspl] = ACTIONS(6057), - [anon_sym_BSLASHGlspl] = ACTIONS(6057), - [anon_sym_BSLASHGLSpl] = ACTIONS(6057), - [anon_sym_BSLASHglsdisp] = ACTIONS(6057), - [anon_sym_BSLASHglslink] = ACTIONS(6057), - [anon_sym_BSLASHglstext] = ACTIONS(6057), - [anon_sym_BSLASHGlstext] = ACTIONS(6057), - [anon_sym_BSLASHGLStext] = ACTIONS(6057), - [anon_sym_BSLASHglsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), - [anon_sym_BSLASHglsplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSplural] = ACTIONS(6057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHglsname] = ACTIONS(6057), - [anon_sym_BSLASHGlsname] = ACTIONS(6057), - [anon_sym_BSLASHGLSname] = ACTIONS(6057), - [anon_sym_BSLASHglssymbol] = ACTIONS(6057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), - [anon_sym_BSLASHglsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), - [anon_sym_BSLASHglsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), - [anon_sym_BSLASHglsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), - [anon_sym_BSLASHglsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), - [anon_sym_BSLASHglsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), - [anon_sym_BSLASHnewacronym] = ACTIONS(6057), - [anon_sym_BSLASHacrshort] = ACTIONS(6057), - [anon_sym_BSLASHAcrshort] = ACTIONS(6057), - [anon_sym_BSLASHACRshort] = ACTIONS(6057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), - [anon_sym_BSLASHacrlong] = ACTIONS(6057), - [anon_sym_BSLASHAcrlong] = ACTIONS(6057), - [anon_sym_BSLASHACRlong] = ACTIONS(6057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), - [anon_sym_BSLASHacrfull] = ACTIONS(6057), - [anon_sym_BSLASHAcrfull] = ACTIONS(6057), - [anon_sym_BSLASHACRfull] = ACTIONS(6057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), - [anon_sym_BSLASHacs] = ACTIONS(6057), - [anon_sym_BSLASHAcs] = ACTIONS(6057), - [anon_sym_BSLASHacsp] = ACTIONS(6057), - [anon_sym_BSLASHAcsp] = ACTIONS(6057), - [anon_sym_BSLASHacl] = ACTIONS(6057), - [anon_sym_BSLASHAcl] = ACTIONS(6057), - [anon_sym_BSLASHaclp] = ACTIONS(6057), - [anon_sym_BSLASHAclp] = ACTIONS(6057), - [anon_sym_BSLASHacf] = ACTIONS(6057), - [anon_sym_BSLASHAcf] = ACTIONS(6057), - [anon_sym_BSLASHacfp] = ACTIONS(6057), - [anon_sym_BSLASHAcfp] = ACTIONS(6057), - [anon_sym_BSLASHac] = ACTIONS(6057), - [anon_sym_BSLASHAc] = ACTIONS(6057), - [anon_sym_BSLASHacp] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), - [anon_sym_BSLASHcolor] = ACTIONS(6057), - [anon_sym_BSLASHcolorbox] = ACTIONS(6057), - [anon_sym_BSLASHtextcolor] = ACTIONS(6057), - [anon_sym_BSLASHpagecolor] = ACTIONS(6057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), - [anon_sym_BSLASHtext] = ACTIONS(6057), - [anon_sym_BSLASHintertext] = ACTIONS(6057), - [anon_sym_shortintertext] = ACTIONS(6057), - }, - [1110] = { - [sym_command_name] = ACTIONS(6053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6053), - [anon_sym_LBRACK] = ACTIONS(6055), - [anon_sym_RBRACK] = ACTIONS(6055), - [anon_sym_COMMA] = ACTIONS(6055), - [anon_sym_EQ] = ACTIONS(6055), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_BSLASHpart] = ACTIONS(6053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddpart] = ACTIONS(6053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6055), - [anon_sym_BSLASHchapter] = ACTIONS(6053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddchap] = ACTIONS(6053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsection] = ACTIONS(6053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddsec] = ACTIONS(6053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubsection] = ACTIONS(6053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHparagraph] = ACTIONS(6053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6055), - [anon_sym_BSLASHitem] = ACTIONS(6053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6055), - [anon_sym_LBRACE] = ACTIONS(6055), - [sym_word] = ACTIONS(6053), - [sym_placeholder] = ACTIONS(6055), - [anon_sym_PLUS] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(6055), - [anon_sym_STAR] = ACTIONS(6055), - [anon_sym_SLASH] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_COLON] = ACTIONS(6053), - [anon_sym_SQUOTE] = ACTIONS(6053), - [anon_sym__] = ACTIONS(6055), - [anon_sym_CARET] = ACTIONS(6055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), - [anon_sym_BSLASHbegin] = ACTIONS(6053), - [anon_sym_BSLASHend] = ACTIONS(6053), - [anon_sym_BSLASHtitle] = ACTIONS(6053), - [anon_sym_BSLASHauthor] = ACTIONS(6053), - [anon_sym_BSLASHusepackage] = ACTIONS(6053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), - [anon_sym_BSLASHinclude] = ACTIONS(6053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), - [anon_sym_BSLASHinput] = ACTIONS(6053), - [anon_sym_BSLASHsubfile] = ACTIONS(6053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), - [anon_sym_BSLASHbibliography] = ACTIONS(6053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), - [anon_sym_BSLASHincludesvg] = ACTIONS(6053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), - [anon_sym_BSLASHimport] = ACTIONS(6053), - [anon_sym_BSLASHsubimport] = ACTIONS(6053), - [anon_sym_BSLASHinputfrom] = ACTIONS(6053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), - [anon_sym_BSLASHincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHcaption] = ACTIONS(6053), - [anon_sym_BSLASHcite] = ACTIONS(6053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCite] = ACTIONS(6053), - [anon_sym_BSLASHnocite] = ACTIONS(6053), - [anon_sym_BSLASHcitet] = ACTIONS(6053), - [anon_sym_BSLASHcitep] = ACTIONS(6053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteauthor] = ACTIONS(6053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitetitle] = ACTIONS(6053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteyear] = ACTIONS(6053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitedate] = ACTIONS(6053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteurl] = ACTIONS(6053), - [anon_sym_BSLASHfullcite] = ACTIONS(6053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), - [anon_sym_BSLASHcitealt] = ACTIONS(6053), - [anon_sym_BSLASHcitealp] = ACTIONS(6053), - [anon_sym_BSLASHcitetext] = ACTIONS(6053), - [anon_sym_BSLASHparencite] = ACTIONS(6053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHParencite] = ACTIONS(6053), - [anon_sym_BSLASHfootcite] = ACTIONS(6053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), - [anon_sym_BSLASHtextcite] = ACTIONS(6053), - [anon_sym_BSLASHTextcite] = ACTIONS(6053), - [anon_sym_BSLASHsmartcite] = ACTIONS(6053), - [anon_sym_BSLASHSmartcite] = ACTIONS(6053), - [anon_sym_BSLASHsupercite] = ACTIONS(6053), - [anon_sym_BSLASHautocite] = ACTIONS(6053), - [anon_sym_BSLASHAutocite] = ACTIONS(6053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHvolcite] = ACTIONS(6053), - [anon_sym_BSLASHVolcite] = ACTIONS(6053), - [anon_sym_BSLASHpvolcite] = ACTIONS(6053), - [anon_sym_BSLASHPvolcite] = ACTIONS(6053), - [anon_sym_BSLASHfvolcite] = ACTIONS(6053), - [anon_sym_BSLASHftvolcite] = ACTIONS(6053), - [anon_sym_BSLASHsvolcite] = ACTIONS(6053), - [anon_sym_BSLASHSvolcite] = ACTIONS(6053), - [anon_sym_BSLASHtvolcite] = ACTIONS(6053), - [anon_sym_BSLASHTvolcite] = ACTIONS(6053), - [anon_sym_BSLASHavolcite] = ACTIONS(6053), - [anon_sym_BSLASHAvolcite] = ACTIONS(6053), - [anon_sym_BSLASHnotecite] = ACTIONS(6053), - [anon_sym_BSLASHNotecite] = ACTIONS(6053), - [anon_sym_BSLASHpnotecite] = ACTIONS(6053), - [anon_sym_BSLASHPnotecite] = ACTIONS(6053), - [anon_sym_BSLASHfnotecite] = ACTIONS(6053), - [anon_sym_BSLASHlabel] = ACTIONS(6053), - [anon_sym_BSLASHref] = ACTIONS(6053), - [anon_sym_BSLASHeqref] = ACTIONS(6053), - [anon_sym_BSLASHvref] = ACTIONS(6053), - [anon_sym_BSLASHVref] = ACTIONS(6053), - [anon_sym_BSLASHautoref] = ACTIONS(6053), - [anon_sym_BSLASHpageref] = ACTIONS(6053), - [anon_sym_BSLASHcref] = ACTIONS(6053), - [anon_sym_BSLASHCref] = ACTIONS(6053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnameCref] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHlabelcref] = ACTIONS(6053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCrefrange] = ACTIONS(6053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnewlabel] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHdef] = ACTIONS(6053), - [anon_sym_BSLASHlet] = ACTIONS(6053), - [anon_sym_BSLASHleft] = ACTIONS(6053), - [anon_sym_BSLASHbig] = ACTIONS(6053), - [anon_sym_BSLASHBig] = ACTIONS(6053), - [anon_sym_BSLASHbigg] = ACTIONS(6053), - [anon_sym_BSLASHBigg] = ACTIONS(6053), - [anon_sym_BSLASHbigl] = ACTIONS(6053), - [anon_sym_BSLASHBigl] = ACTIONS(6053), - [anon_sym_BSLASHbiggl] = ACTIONS(6053), - [anon_sym_BSLASHBiggl] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), - [anon_sym_BSLASHgls] = ACTIONS(6053), - [anon_sym_BSLASHGls] = ACTIONS(6053), - [anon_sym_BSLASHGLS] = ACTIONS(6053), - [anon_sym_BSLASHglspl] = ACTIONS(6053), - [anon_sym_BSLASHGlspl] = ACTIONS(6053), - [anon_sym_BSLASHGLSpl] = ACTIONS(6053), - [anon_sym_BSLASHglsdisp] = ACTIONS(6053), - [anon_sym_BSLASHglslink] = ACTIONS(6053), - [anon_sym_BSLASHglstext] = ACTIONS(6053), - [anon_sym_BSLASHGlstext] = ACTIONS(6053), - [anon_sym_BSLASHGLStext] = ACTIONS(6053), - [anon_sym_BSLASHglsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), - [anon_sym_BSLASHglsplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSplural] = ACTIONS(6053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHglsname] = ACTIONS(6053), - [anon_sym_BSLASHGlsname] = ACTIONS(6053), - [anon_sym_BSLASHGLSname] = ACTIONS(6053), - [anon_sym_BSLASHglssymbol] = ACTIONS(6053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), - [anon_sym_BSLASHglsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), - [anon_sym_BSLASHglsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), - [anon_sym_BSLASHglsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), - [anon_sym_BSLASHglsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), - [anon_sym_BSLASHglsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), - [anon_sym_BSLASHnewacronym] = ACTIONS(6053), - [anon_sym_BSLASHacrshort] = ACTIONS(6053), - [anon_sym_BSLASHAcrshort] = ACTIONS(6053), - [anon_sym_BSLASHACRshort] = ACTIONS(6053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), - [anon_sym_BSLASHacrlong] = ACTIONS(6053), - [anon_sym_BSLASHAcrlong] = ACTIONS(6053), - [anon_sym_BSLASHACRlong] = ACTIONS(6053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), - [anon_sym_BSLASHacrfull] = ACTIONS(6053), - [anon_sym_BSLASHAcrfull] = ACTIONS(6053), - [anon_sym_BSLASHACRfull] = ACTIONS(6053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), - [anon_sym_BSLASHacs] = ACTIONS(6053), - [anon_sym_BSLASHAcs] = ACTIONS(6053), - [anon_sym_BSLASHacsp] = ACTIONS(6053), - [anon_sym_BSLASHAcsp] = ACTIONS(6053), - [anon_sym_BSLASHacl] = ACTIONS(6053), - [anon_sym_BSLASHAcl] = ACTIONS(6053), - [anon_sym_BSLASHaclp] = ACTIONS(6053), - [anon_sym_BSLASHAclp] = ACTIONS(6053), - [anon_sym_BSLASHacf] = ACTIONS(6053), - [anon_sym_BSLASHAcf] = ACTIONS(6053), - [anon_sym_BSLASHacfp] = ACTIONS(6053), - [anon_sym_BSLASHAcfp] = ACTIONS(6053), - [anon_sym_BSLASHac] = ACTIONS(6053), - [anon_sym_BSLASHAc] = ACTIONS(6053), - [anon_sym_BSLASHacp] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), - [anon_sym_BSLASHcolor] = ACTIONS(6053), - [anon_sym_BSLASHcolorbox] = ACTIONS(6053), - [anon_sym_BSLASHtextcolor] = ACTIONS(6053), - [anon_sym_BSLASHpagecolor] = ACTIONS(6053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), - [anon_sym_BSLASHtext] = ACTIONS(6053), - [anon_sym_BSLASHintertext] = ACTIONS(6053), - [anon_sym_shortintertext] = ACTIONS(6053), - }, - [1111] = { - [sym_command_name] = ACTIONS(6049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6049), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_BSLASHpart] = ACTIONS(6049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddpart] = ACTIONS(6049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6051), - [anon_sym_BSLASHchapter] = ACTIONS(6049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddchap] = ACTIONS(6049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsection] = ACTIONS(6049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddsec] = ACTIONS(6049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubsection] = ACTIONS(6049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHparagraph] = ACTIONS(6049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6051), - [anon_sym_BSLASHitem] = ACTIONS(6049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6051), - [anon_sym_LBRACE] = ACTIONS(6051), - [sym_word] = ACTIONS(6049), - [sym_placeholder] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6051), - [anon_sym_DASH] = ACTIONS(6051), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6049), - [anon_sym_GT] = ACTIONS(6049), - [anon_sym_BANG] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6049), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_SQUOTE] = ACTIONS(6049), - [anon_sym__] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), - [anon_sym_BSLASHbegin] = ACTIONS(6049), - [anon_sym_BSLASHend] = ACTIONS(6049), - [anon_sym_BSLASHtitle] = ACTIONS(6049), - [anon_sym_BSLASHauthor] = ACTIONS(6049), - [anon_sym_BSLASHusepackage] = ACTIONS(6049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6049), - [anon_sym_BSLASHinclude] = ACTIONS(6049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6049), - [anon_sym_BSLASHinput] = ACTIONS(6049), - [anon_sym_BSLASHsubfile] = ACTIONS(6049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6049), - [anon_sym_BSLASHbibliography] = ACTIONS(6049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6049), - [anon_sym_BSLASHincludesvg] = ACTIONS(6049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6049), - [anon_sym_BSLASHimport] = ACTIONS(6049), - [anon_sym_BSLASHsubimport] = ACTIONS(6049), - [anon_sym_BSLASHinputfrom] = ACTIONS(6049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6049), - [anon_sym_BSLASHincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHcaption] = ACTIONS(6049), - [anon_sym_BSLASHcite] = ACTIONS(6049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCite] = ACTIONS(6049), - [anon_sym_BSLASHnocite] = ACTIONS(6049), - [anon_sym_BSLASHcitet] = ACTIONS(6049), - [anon_sym_BSLASHcitep] = ACTIONS(6049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteauthor] = ACTIONS(6049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitetitle] = ACTIONS(6049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteyear] = ACTIONS(6049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitedate] = ACTIONS(6049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteurl] = ACTIONS(6049), - [anon_sym_BSLASHfullcite] = ACTIONS(6049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6049), - [anon_sym_BSLASHcitealt] = ACTIONS(6049), - [anon_sym_BSLASHcitealp] = ACTIONS(6049), - [anon_sym_BSLASHcitetext] = ACTIONS(6049), - [anon_sym_BSLASHparencite] = ACTIONS(6049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHParencite] = ACTIONS(6049), - [anon_sym_BSLASHfootcite] = ACTIONS(6049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6049), - [anon_sym_BSLASHtextcite] = ACTIONS(6049), - [anon_sym_BSLASHTextcite] = ACTIONS(6049), - [anon_sym_BSLASHsmartcite] = ACTIONS(6049), - [anon_sym_BSLASHSmartcite] = ACTIONS(6049), - [anon_sym_BSLASHsupercite] = ACTIONS(6049), - [anon_sym_BSLASHautocite] = ACTIONS(6049), - [anon_sym_BSLASHAutocite] = ACTIONS(6049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHvolcite] = ACTIONS(6049), - [anon_sym_BSLASHVolcite] = ACTIONS(6049), - [anon_sym_BSLASHpvolcite] = ACTIONS(6049), - [anon_sym_BSLASHPvolcite] = ACTIONS(6049), - [anon_sym_BSLASHfvolcite] = ACTIONS(6049), - [anon_sym_BSLASHftvolcite] = ACTIONS(6049), - [anon_sym_BSLASHsvolcite] = ACTIONS(6049), - [anon_sym_BSLASHSvolcite] = ACTIONS(6049), - [anon_sym_BSLASHtvolcite] = ACTIONS(6049), - [anon_sym_BSLASHTvolcite] = ACTIONS(6049), - [anon_sym_BSLASHavolcite] = ACTIONS(6049), - [anon_sym_BSLASHAvolcite] = ACTIONS(6049), - [anon_sym_BSLASHnotecite] = ACTIONS(6049), - [anon_sym_BSLASHNotecite] = ACTIONS(6049), - [anon_sym_BSLASHpnotecite] = ACTIONS(6049), - [anon_sym_BSLASHPnotecite] = ACTIONS(6049), - [anon_sym_BSLASHfnotecite] = ACTIONS(6049), - [anon_sym_BSLASHlabel] = ACTIONS(6049), - [anon_sym_BSLASHref] = ACTIONS(6049), - [anon_sym_BSLASHeqref] = ACTIONS(6049), - [anon_sym_BSLASHvref] = ACTIONS(6049), - [anon_sym_BSLASHVref] = ACTIONS(6049), - [anon_sym_BSLASHautoref] = ACTIONS(6049), - [anon_sym_BSLASHpageref] = ACTIONS(6049), - [anon_sym_BSLASHcref] = ACTIONS(6049), - [anon_sym_BSLASHCref] = ACTIONS(6049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnameCref] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHlabelcref] = ACTIONS(6049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCrefrange] = ACTIONS(6049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnewlabel] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHdef] = ACTIONS(6049), - [anon_sym_BSLASHlet] = ACTIONS(6049), - [anon_sym_BSLASHleft] = ACTIONS(6049), - [anon_sym_BSLASHbig] = ACTIONS(6049), - [anon_sym_BSLASHBig] = ACTIONS(6049), - [anon_sym_BSLASHbigg] = ACTIONS(6049), - [anon_sym_BSLASHBigg] = ACTIONS(6049), - [anon_sym_BSLASHbigl] = ACTIONS(6049), - [anon_sym_BSLASHBigl] = ACTIONS(6049), - [anon_sym_BSLASHbiggl] = ACTIONS(6049), - [anon_sym_BSLASHBiggl] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6049), - [anon_sym_BSLASHgls] = ACTIONS(6049), - [anon_sym_BSLASHGls] = ACTIONS(6049), - [anon_sym_BSLASHGLS] = ACTIONS(6049), - [anon_sym_BSLASHglspl] = ACTIONS(6049), - [anon_sym_BSLASHGlspl] = ACTIONS(6049), - [anon_sym_BSLASHGLSpl] = ACTIONS(6049), - [anon_sym_BSLASHglsdisp] = ACTIONS(6049), - [anon_sym_BSLASHglslink] = ACTIONS(6049), - [anon_sym_BSLASHglstext] = ACTIONS(6049), - [anon_sym_BSLASHGlstext] = ACTIONS(6049), - [anon_sym_BSLASHGLStext] = ACTIONS(6049), - [anon_sym_BSLASHglsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6049), - [anon_sym_BSLASHglsplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSplural] = ACTIONS(6049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHglsname] = ACTIONS(6049), - [anon_sym_BSLASHGlsname] = ACTIONS(6049), - [anon_sym_BSLASHGLSname] = ACTIONS(6049), - [anon_sym_BSLASHglssymbol] = ACTIONS(6049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6049), - [anon_sym_BSLASHglsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6049), - [anon_sym_BSLASHglsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6049), - [anon_sym_BSLASHglsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6049), - [anon_sym_BSLASHglsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6049), - [anon_sym_BSLASHglsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6049), - [anon_sym_BSLASHnewacronym] = ACTIONS(6049), - [anon_sym_BSLASHacrshort] = ACTIONS(6049), - [anon_sym_BSLASHAcrshort] = ACTIONS(6049), - [anon_sym_BSLASHACRshort] = ACTIONS(6049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6049), - [anon_sym_BSLASHacrlong] = ACTIONS(6049), - [anon_sym_BSLASHAcrlong] = ACTIONS(6049), - [anon_sym_BSLASHACRlong] = ACTIONS(6049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6049), - [anon_sym_BSLASHacrfull] = ACTIONS(6049), - [anon_sym_BSLASHAcrfull] = ACTIONS(6049), - [anon_sym_BSLASHACRfull] = ACTIONS(6049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6049), - [anon_sym_BSLASHacs] = ACTIONS(6049), - [anon_sym_BSLASHAcs] = ACTIONS(6049), - [anon_sym_BSLASHacsp] = ACTIONS(6049), - [anon_sym_BSLASHAcsp] = ACTIONS(6049), - [anon_sym_BSLASHacl] = ACTIONS(6049), - [anon_sym_BSLASHAcl] = ACTIONS(6049), - [anon_sym_BSLASHaclp] = ACTIONS(6049), - [anon_sym_BSLASHAclp] = ACTIONS(6049), - [anon_sym_BSLASHacf] = ACTIONS(6049), - [anon_sym_BSLASHAcf] = ACTIONS(6049), - [anon_sym_BSLASHacfp] = ACTIONS(6049), - [anon_sym_BSLASHAcfp] = ACTIONS(6049), - [anon_sym_BSLASHac] = ACTIONS(6049), - [anon_sym_BSLASHAc] = ACTIONS(6049), - [anon_sym_BSLASHacp] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6049), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6049), - [anon_sym_BSLASHcolor] = ACTIONS(6049), - [anon_sym_BSLASHcolorbox] = ACTIONS(6049), - [anon_sym_BSLASHtextcolor] = ACTIONS(6049), - [anon_sym_BSLASHpagecolor] = ACTIONS(6049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6049), - [anon_sym_BSLASHtext] = ACTIONS(6049), - [anon_sym_BSLASHintertext] = ACTIONS(6049), - [anon_sym_shortintertext] = ACTIONS(6049), - }, - [1112] = { - [sym_command_name] = ACTIONS(6045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6045), - [anon_sym_LBRACK] = ACTIONS(6047), - [anon_sym_RBRACK] = ACTIONS(6047), - [anon_sym_COMMA] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(6047), - [anon_sym_LPAREN] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_BSLASHpart] = ACTIONS(6045), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddpart] = ACTIONS(6045), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6047), - [anon_sym_BSLASHchapter] = ACTIONS(6045), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddchap] = ACTIONS(6045), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsection] = ACTIONS(6045), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddsec] = ACTIONS(6045), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubsection] = ACTIONS(6045), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6045), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHparagraph] = ACTIONS(6045), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6045), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6047), - [anon_sym_BSLASHitem] = ACTIONS(6045), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6047), - [anon_sym_LBRACE] = ACTIONS(6047), - [sym_word] = ACTIONS(6045), - [sym_placeholder] = ACTIONS(6047), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6047), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_BANG] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_SQUOTE] = ACTIONS(6045), - [anon_sym__] = ACTIONS(6047), - [anon_sym_CARET] = ACTIONS(6047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6047), - [anon_sym_BSLASHbegin] = ACTIONS(6045), - [anon_sym_BSLASHend] = ACTIONS(6045), - [anon_sym_BSLASHtitle] = ACTIONS(6045), - [anon_sym_BSLASHauthor] = ACTIONS(6045), - [anon_sym_BSLASHusepackage] = ACTIONS(6045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6045), - [anon_sym_BSLASHinclude] = ACTIONS(6045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6045), - [anon_sym_BSLASHinput] = ACTIONS(6045), - [anon_sym_BSLASHsubfile] = ACTIONS(6045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6045), - [anon_sym_BSLASHbibliography] = ACTIONS(6045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6045), - [anon_sym_BSLASHincludesvg] = ACTIONS(6045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6045), - [anon_sym_BSLASHimport] = ACTIONS(6045), - [anon_sym_BSLASHsubimport] = ACTIONS(6045), - [anon_sym_BSLASHinputfrom] = ACTIONS(6045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6045), - [anon_sym_BSLASHincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHcaption] = ACTIONS(6045), - [anon_sym_BSLASHcite] = ACTIONS(6045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCite] = ACTIONS(6045), - [anon_sym_BSLASHnocite] = ACTIONS(6045), - [anon_sym_BSLASHcitet] = ACTIONS(6045), - [anon_sym_BSLASHcitep] = ACTIONS(6045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteauthor] = ACTIONS(6045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitetitle] = ACTIONS(6045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteyear] = ACTIONS(6045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitedate] = ACTIONS(6045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteurl] = ACTIONS(6045), - [anon_sym_BSLASHfullcite] = ACTIONS(6045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6045), - [anon_sym_BSLASHcitealt] = ACTIONS(6045), - [anon_sym_BSLASHcitealp] = ACTIONS(6045), - [anon_sym_BSLASHcitetext] = ACTIONS(6045), - [anon_sym_BSLASHparencite] = ACTIONS(6045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHParencite] = ACTIONS(6045), - [anon_sym_BSLASHfootcite] = ACTIONS(6045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6045), - [anon_sym_BSLASHtextcite] = ACTIONS(6045), - [anon_sym_BSLASHTextcite] = ACTIONS(6045), - [anon_sym_BSLASHsmartcite] = ACTIONS(6045), - [anon_sym_BSLASHSmartcite] = ACTIONS(6045), - [anon_sym_BSLASHsupercite] = ACTIONS(6045), - [anon_sym_BSLASHautocite] = ACTIONS(6045), - [anon_sym_BSLASHAutocite] = ACTIONS(6045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHvolcite] = ACTIONS(6045), - [anon_sym_BSLASHVolcite] = ACTIONS(6045), - [anon_sym_BSLASHpvolcite] = ACTIONS(6045), - [anon_sym_BSLASHPvolcite] = ACTIONS(6045), - [anon_sym_BSLASHfvolcite] = ACTIONS(6045), - [anon_sym_BSLASHftvolcite] = ACTIONS(6045), - [anon_sym_BSLASHsvolcite] = ACTIONS(6045), - [anon_sym_BSLASHSvolcite] = ACTIONS(6045), - [anon_sym_BSLASHtvolcite] = ACTIONS(6045), - [anon_sym_BSLASHTvolcite] = ACTIONS(6045), - [anon_sym_BSLASHavolcite] = ACTIONS(6045), - [anon_sym_BSLASHAvolcite] = ACTIONS(6045), - [anon_sym_BSLASHnotecite] = ACTIONS(6045), - [anon_sym_BSLASHNotecite] = ACTIONS(6045), - [anon_sym_BSLASHpnotecite] = ACTIONS(6045), - [anon_sym_BSLASHPnotecite] = ACTIONS(6045), - [anon_sym_BSLASHfnotecite] = ACTIONS(6045), - [anon_sym_BSLASHlabel] = ACTIONS(6045), - [anon_sym_BSLASHref] = ACTIONS(6045), - [anon_sym_BSLASHeqref] = ACTIONS(6045), - [anon_sym_BSLASHvref] = ACTIONS(6045), - [anon_sym_BSLASHVref] = ACTIONS(6045), - [anon_sym_BSLASHautoref] = ACTIONS(6045), - [anon_sym_BSLASHpageref] = ACTIONS(6045), - [anon_sym_BSLASHcref] = ACTIONS(6045), - [anon_sym_BSLASHCref] = ACTIONS(6045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnameCref] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHlabelcref] = ACTIONS(6045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCrefrange] = ACTIONS(6045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnewlabel] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6047), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHdef] = ACTIONS(6045), - [anon_sym_BSLASHlet] = ACTIONS(6045), - [anon_sym_BSLASHleft] = ACTIONS(6045), - [anon_sym_BSLASHbig] = ACTIONS(6045), - [anon_sym_BSLASHBig] = ACTIONS(6045), - [anon_sym_BSLASHbigg] = ACTIONS(6045), - [anon_sym_BSLASHBigg] = ACTIONS(6045), - [anon_sym_BSLASHbigl] = ACTIONS(6045), - [anon_sym_BSLASHBigl] = ACTIONS(6045), - [anon_sym_BSLASHbiggl] = ACTIONS(6045), - [anon_sym_BSLASHBiggl] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6045), - [anon_sym_BSLASHgls] = ACTIONS(6045), - [anon_sym_BSLASHGls] = ACTIONS(6045), - [anon_sym_BSLASHGLS] = ACTIONS(6045), - [anon_sym_BSLASHglspl] = ACTIONS(6045), - [anon_sym_BSLASHGlspl] = ACTIONS(6045), - [anon_sym_BSLASHGLSpl] = ACTIONS(6045), - [anon_sym_BSLASHglsdisp] = ACTIONS(6045), - [anon_sym_BSLASHglslink] = ACTIONS(6045), - [anon_sym_BSLASHglstext] = ACTIONS(6045), - [anon_sym_BSLASHGlstext] = ACTIONS(6045), - [anon_sym_BSLASHGLStext] = ACTIONS(6045), - [anon_sym_BSLASHglsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6045), - [anon_sym_BSLASHglsplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSplural] = ACTIONS(6045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHglsname] = ACTIONS(6045), - [anon_sym_BSLASHGlsname] = ACTIONS(6045), - [anon_sym_BSLASHGLSname] = ACTIONS(6045), - [anon_sym_BSLASHglssymbol] = ACTIONS(6045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6045), - [anon_sym_BSLASHglsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6045), - [anon_sym_BSLASHglsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6045), - [anon_sym_BSLASHglsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6045), - [anon_sym_BSLASHglsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6045), - [anon_sym_BSLASHglsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6045), - [anon_sym_BSLASHnewacronym] = ACTIONS(6045), - [anon_sym_BSLASHacrshort] = ACTIONS(6045), - [anon_sym_BSLASHAcrshort] = ACTIONS(6045), - [anon_sym_BSLASHACRshort] = ACTIONS(6045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6045), - [anon_sym_BSLASHacrlong] = ACTIONS(6045), - [anon_sym_BSLASHAcrlong] = ACTIONS(6045), - [anon_sym_BSLASHACRlong] = ACTIONS(6045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6045), - [anon_sym_BSLASHacrfull] = ACTIONS(6045), - [anon_sym_BSLASHAcrfull] = ACTIONS(6045), - [anon_sym_BSLASHACRfull] = ACTIONS(6045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6045), - [anon_sym_BSLASHacs] = ACTIONS(6045), - [anon_sym_BSLASHAcs] = ACTIONS(6045), - [anon_sym_BSLASHacsp] = ACTIONS(6045), - [anon_sym_BSLASHAcsp] = ACTIONS(6045), - [anon_sym_BSLASHacl] = ACTIONS(6045), - [anon_sym_BSLASHAcl] = ACTIONS(6045), - [anon_sym_BSLASHaclp] = ACTIONS(6045), - [anon_sym_BSLASHAclp] = ACTIONS(6045), - [anon_sym_BSLASHacf] = ACTIONS(6045), - [anon_sym_BSLASHAcf] = ACTIONS(6045), - [anon_sym_BSLASHacfp] = ACTIONS(6045), - [anon_sym_BSLASHAcfp] = ACTIONS(6045), - [anon_sym_BSLASHac] = ACTIONS(6045), - [anon_sym_BSLASHAc] = ACTIONS(6045), - [anon_sym_BSLASHacp] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6045), - [anon_sym_BSLASHcolor] = ACTIONS(6045), - [anon_sym_BSLASHcolorbox] = ACTIONS(6045), - [anon_sym_BSLASHtextcolor] = ACTIONS(6045), - [anon_sym_BSLASHpagecolor] = ACTIONS(6045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6045), - [anon_sym_BSLASHtext] = ACTIONS(6045), - [anon_sym_BSLASHintertext] = ACTIONS(6045), - [anon_sym_shortintertext] = ACTIONS(6045), - }, - [1113] = { - [sym_command_name] = ACTIONS(6025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6025), - [anon_sym_LBRACK] = ACTIONS(6027), - [anon_sym_RBRACK] = ACTIONS(6027), - [anon_sym_COMMA] = ACTIONS(6027), - [anon_sym_EQ] = ACTIONS(6027), - [anon_sym_LPAREN] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_BSLASHpart] = ACTIONS(6025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddpart] = ACTIONS(6025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6027), - [anon_sym_BSLASHchapter] = ACTIONS(6025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddchap] = ACTIONS(6025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsection] = ACTIONS(6025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddsec] = ACTIONS(6025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubsection] = ACTIONS(6025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHparagraph] = ACTIONS(6025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6027), - [anon_sym_BSLASHitem] = ACTIONS(6025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6027), - [anon_sym_LBRACE] = ACTIONS(6027), - [sym_word] = ACTIONS(6025), - [sym_placeholder] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6025), - [anon_sym_GT] = ACTIONS(6025), - [anon_sym_BANG] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_SQUOTE] = ACTIONS(6025), - [anon_sym__] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), - [anon_sym_BSLASHbegin] = ACTIONS(6025), - [anon_sym_BSLASHend] = ACTIONS(6025), - [anon_sym_BSLASHtitle] = ACTIONS(6025), - [anon_sym_BSLASHauthor] = ACTIONS(6025), - [anon_sym_BSLASHusepackage] = ACTIONS(6025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), - [anon_sym_BSLASHinclude] = ACTIONS(6025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), - [anon_sym_BSLASHinput] = ACTIONS(6025), - [anon_sym_BSLASHsubfile] = ACTIONS(6025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), - [anon_sym_BSLASHbibliography] = ACTIONS(6025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), - [anon_sym_BSLASHincludesvg] = ACTIONS(6025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), - [anon_sym_BSLASHimport] = ACTIONS(6025), - [anon_sym_BSLASHsubimport] = ACTIONS(6025), - [anon_sym_BSLASHinputfrom] = ACTIONS(6025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), - [anon_sym_BSLASHincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHcaption] = ACTIONS(6025), - [anon_sym_BSLASHcite] = ACTIONS(6025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCite] = ACTIONS(6025), - [anon_sym_BSLASHnocite] = ACTIONS(6025), - [anon_sym_BSLASHcitet] = ACTIONS(6025), - [anon_sym_BSLASHcitep] = ACTIONS(6025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteauthor] = ACTIONS(6025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitetitle] = ACTIONS(6025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteyear] = ACTIONS(6025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitedate] = ACTIONS(6025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteurl] = ACTIONS(6025), - [anon_sym_BSLASHfullcite] = ACTIONS(6025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), - [anon_sym_BSLASHcitealt] = ACTIONS(6025), - [anon_sym_BSLASHcitealp] = ACTIONS(6025), - [anon_sym_BSLASHcitetext] = ACTIONS(6025), - [anon_sym_BSLASHparencite] = ACTIONS(6025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHParencite] = ACTIONS(6025), - [anon_sym_BSLASHfootcite] = ACTIONS(6025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), - [anon_sym_BSLASHtextcite] = ACTIONS(6025), - [anon_sym_BSLASHTextcite] = ACTIONS(6025), - [anon_sym_BSLASHsmartcite] = ACTIONS(6025), - [anon_sym_BSLASHSmartcite] = ACTIONS(6025), - [anon_sym_BSLASHsupercite] = ACTIONS(6025), - [anon_sym_BSLASHautocite] = ACTIONS(6025), - [anon_sym_BSLASHAutocite] = ACTIONS(6025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHvolcite] = ACTIONS(6025), - [anon_sym_BSLASHVolcite] = ACTIONS(6025), - [anon_sym_BSLASHpvolcite] = ACTIONS(6025), - [anon_sym_BSLASHPvolcite] = ACTIONS(6025), - [anon_sym_BSLASHfvolcite] = ACTIONS(6025), - [anon_sym_BSLASHftvolcite] = ACTIONS(6025), - [anon_sym_BSLASHsvolcite] = ACTIONS(6025), - [anon_sym_BSLASHSvolcite] = ACTIONS(6025), - [anon_sym_BSLASHtvolcite] = ACTIONS(6025), - [anon_sym_BSLASHTvolcite] = ACTIONS(6025), - [anon_sym_BSLASHavolcite] = ACTIONS(6025), - [anon_sym_BSLASHAvolcite] = ACTIONS(6025), - [anon_sym_BSLASHnotecite] = ACTIONS(6025), - [anon_sym_BSLASHNotecite] = ACTIONS(6025), - [anon_sym_BSLASHpnotecite] = ACTIONS(6025), - [anon_sym_BSLASHPnotecite] = ACTIONS(6025), - [anon_sym_BSLASHfnotecite] = ACTIONS(6025), - [anon_sym_BSLASHlabel] = ACTIONS(6025), - [anon_sym_BSLASHref] = ACTIONS(6025), - [anon_sym_BSLASHeqref] = ACTIONS(6025), - [anon_sym_BSLASHvref] = ACTIONS(6025), - [anon_sym_BSLASHVref] = ACTIONS(6025), - [anon_sym_BSLASHautoref] = ACTIONS(6025), - [anon_sym_BSLASHpageref] = ACTIONS(6025), - [anon_sym_BSLASHcref] = ACTIONS(6025), - [anon_sym_BSLASHCref] = ACTIONS(6025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnameCref] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHlabelcref] = ACTIONS(6025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCrefrange] = ACTIONS(6025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnewlabel] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHdef] = ACTIONS(6025), - [anon_sym_BSLASHlet] = ACTIONS(6025), - [anon_sym_BSLASHleft] = ACTIONS(6025), - [anon_sym_BSLASHbig] = ACTIONS(6025), - [anon_sym_BSLASHBig] = ACTIONS(6025), - [anon_sym_BSLASHbigg] = ACTIONS(6025), - [anon_sym_BSLASHBigg] = ACTIONS(6025), - [anon_sym_BSLASHbigl] = ACTIONS(6025), - [anon_sym_BSLASHBigl] = ACTIONS(6025), - [anon_sym_BSLASHbiggl] = ACTIONS(6025), - [anon_sym_BSLASHBiggl] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), - [anon_sym_BSLASHgls] = ACTIONS(6025), - [anon_sym_BSLASHGls] = ACTIONS(6025), - [anon_sym_BSLASHGLS] = ACTIONS(6025), - [anon_sym_BSLASHglspl] = ACTIONS(6025), - [anon_sym_BSLASHGlspl] = ACTIONS(6025), - [anon_sym_BSLASHGLSpl] = ACTIONS(6025), - [anon_sym_BSLASHglsdisp] = ACTIONS(6025), - [anon_sym_BSLASHglslink] = ACTIONS(6025), - [anon_sym_BSLASHglstext] = ACTIONS(6025), - [anon_sym_BSLASHGlstext] = ACTIONS(6025), - [anon_sym_BSLASHGLStext] = ACTIONS(6025), - [anon_sym_BSLASHglsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), - [anon_sym_BSLASHglsplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSplural] = ACTIONS(6025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHglsname] = ACTIONS(6025), - [anon_sym_BSLASHGlsname] = ACTIONS(6025), - [anon_sym_BSLASHGLSname] = ACTIONS(6025), - [anon_sym_BSLASHglssymbol] = ACTIONS(6025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), - [anon_sym_BSLASHglsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), - [anon_sym_BSLASHglsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), - [anon_sym_BSLASHglsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), - [anon_sym_BSLASHglsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), - [anon_sym_BSLASHglsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), - [anon_sym_BSLASHnewacronym] = ACTIONS(6025), - [anon_sym_BSLASHacrshort] = ACTIONS(6025), - [anon_sym_BSLASHAcrshort] = ACTIONS(6025), - [anon_sym_BSLASHACRshort] = ACTIONS(6025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), - [anon_sym_BSLASHacrlong] = ACTIONS(6025), - [anon_sym_BSLASHAcrlong] = ACTIONS(6025), - [anon_sym_BSLASHACRlong] = ACTIONS(6025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), - [anon_sym_BSLASHacrfull] = ACTIONS(6025), - [anon_sym_BSLASHAcrfull] = ACTIONS(6025), - [anon_sym_BSLASHACRfull] = ACTIONS(6025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), - [anon_sym_BSLASHacs] = ACTIONS(6025), - [anon_sym_BSLASHAcs] = ACTIONS(6025), - [anon_sym_BSLASHacsp] = ACTIONS(6025), - [anon_sym_BSLASHAcsp] = ACTIONS(6025), - [anon_sym_BSLASHacl] = ACTIONS(6025), - [anon_sym_BSLASHAcl] = ACTIONS(6025), - [anon_sym_BSLASHaclp] = ACTIONS(6025), - [anon_sym_BSLASHAclp] = ACTIONS(6025), - [anon_sym_BSLASHacf] = ACTIONS(6025), - [anon_sym_BSLASHAcf] = ACTIONS(6025), - [anon_sym_BSLASHacfp] = ACTIONS(6025), - [anon_sym_BSLASHAcfp] = ACTIONS(6025), - [anon_sym_BSLASHac] = ACTIONS(6025), - [anon_sym_BSLASHAc] = ACTIONS(6025), - [anon_sym_BSLASHacp] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), - [anon_sym_BSLASHcolor] = ACTIONS(6025), - [anon_sym_BSLASHcolorbox] = ACTIONS(6025), - [anon_sym_BSLASHtextcolor] = ACTIONS(6025), - [anon_sym_BSLASHpagecolor] = ACTIONS(6025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), - [anon_sym_BSLASHtext] = ACTIONS(6025), - [anon_sym_BSLASHintertext] = ACTIONS(6025), - [anon_sym_shortintertext] = ACTIONS(6025), - }, - [1114] = { - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddpart] = ACTIONS(189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddsec] = ACTIONS(189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHparagraph] = ACTIONS(189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHend] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [1115] = { - [sym_command_name] = ACTIONS(6405), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6405), - [anon_sym_LBRACK] = ACTIONS(6407), - [anon_sym_RBRACK] = ACTIONS(6407), - [anon_sym_COMMA] = ACTIONS(6407), - [anon_sym_EQ] = ACTIONS(6407), - [anon_sym_LPAREN] = ACTIONS(6407), - [anon_sym_RPAREN] = ACTIONS(6407), - [anon_sym_BSLASHpart] = ACTIONS(6405), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddpart] = ACTIONS(6405), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6407), - [anon_sym_BSLASHchapter] = ACTIONS(6405), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddchap] = ACTIONS(6405), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsection] = ACTIONS(6405), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddsec] = ACTIONS(6405), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubsection] = ACTIONS(6405), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6405), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHparagraph] = ACTIONS(6405), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6405), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6407), - [anon_sym_BSLASHitem] = ACTIONS(6405), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6407), - [anon_sym_LBRACE] = ACTIONS(6407), - [sym_word] = ACTIONS(6405), - [sym_placeholder] = ACTIONS(6407), - [anon_sym_PLUS] = ACTIONS(6407), - [anon_sym_DASH] = ACTIONS(6407), - [anon_sym_STAR] = ACTIONS(6407), - [anon_sym_SLASH] = ACTIONS(6407), - [anon_sym_LT] = ACTIONS(6405), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(6405), - [anon_sym_PIPE] = ACTIONS(6405), - [anon_sym_COLON] = ACTIONS(6405), - [anon_sym_SQUOTE] = ACTIONS(6405), - [anon_sym__] = ACTIONS(6407), - [anon_sym_CARET] = ACTIONS(6407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6407), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6407), - [anon_sym_DOLLAR] = ACTIONS(6405), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6407), - [anon_sym_BSLASHbegin] = ACTIONS(6405), - [anon_sym_BSLASHtitle] = ACTIONS(6405), - [anon_sym_BSLASHauthor] = ACTIONS(6405), - [anon_sym_BSLASHusepackage] = ACTIONS(6405), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6405), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6405), - [anon_sym_BSLASHinclude] = ACTIONS(6405), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6405), - [anon_sym_BSLASHinput] = ACTIONS(6405), - [anon_sym_BSLASHsubfile] = ACTIONS(6405), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6405), - [anon_sym_BSLASHbibliography] = ACTIONS(6405), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6405), - [anon_sym_BSLASHincludesvg] = ACTIONS(6405), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6405), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6405), - [anon_sym_BSLASHimport] = ACTIONS(6405), - [anon_sym_BSLASHsubimport] = ACTIONS(6405), - [anon_sym_BSLASHinputfrom] = ACTIONS(6405), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6405), - [anon_sym_BSLASHincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHcaption] = ACTIONS(6405), - [anon_sym_BSLASHcite] = ACTIONS(6405), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCite] = ACTIONS(6405), - [anon_sym_BSLASHnocite] = ACTIONS(6405), - [anon_sym_BSLASHcitet] = ACTIONS(6405), - [anon_sym_BSLASHcitep] = ACTIONS(6405), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteauthor] = ACTIONS(6405), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6405), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitetitle] = ACTIONS(6405), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteyear] = ACTIONS(6405), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitedate] = ACTIONS(6405), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteurl] = ACTIONS(6405), - [anon_sym_BSLASHfullcite] = ACTIONS(6405), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6405), - [anon_sym_BSLASHcitealt] = ACTIONS(6405), - [anon_sym_BSLASHcitealp] = ACTIONS(6405), - [anon_sym_BSLASHcitetext] = ACTIONS(6405), - [anon_sym_BSLASHparencite] = ACTIONS(6405), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHParencite] = ACTIONS(6405), - [anon_sym_BSLASHfootcite] = ACTIONS(6405), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6405), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6405), - [anon_sym_BSLASHtextcite] = ACTIONS(6405), - [anon_sym_BSLASHTextcite] = ACTIONS(6405), - [anon_sym_BSLASHsmartcite] = ACTIONS(6405), - [anon_sym_BSLASHSmartcite] = ACTIONS(6405), - [anon_sym_BSLASHsupercite] = ACTIONS(6405), - [anon_sym_BSLASHautocite] = ACTIONS(6405), - [anon_sym_BSLASHAutocite] = ACTIONS(6405), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHvolcite] = ACTIONS(6405), - [anon_sym_BSLASHVolcite] = ACTIONS(6405), - [anon_sym_BSLASHpvolcite] = ACTIONS(6405), - [anon_sym_BSLASHPvolcite] = ACTIONS(6405), - [anon_sym_BSLASHfvolcite] = ACTIONS(6405), - [anon_sym_BSLASHftvolcite] = ACTIONS(6405), - [anon_sym_BSLASHsvolcite] = ACTIONS(6405), - [anon_sym_BSLASHSvolcite] = ACTIONS(6405), - [anon_sym_BSLASHtvolcite] = ACTIONS(6405), - [anon_sym_BSLASHTvolcite] = ACTIONS(6405), - [anon_sym_BSLASHavolcite] = ACTIONS(6405), - [anon_sym_BSLASHAvolcite] = ACTIONS(6405), - [anon_sym_BSLASHnotecite] = ACTIONS(6405), - [anon_sym_BSLASHNotecite] = ACTIONS(6405), - [anon_sym_BSLASHpnotecite] = ACTIONS(6405), - [anon_sym_BSLASHPnotecite] = ACTIONS(6405), - [anon_sym_BSLASHfnotecite] = ACTIONS(6405), - [anon_sym_BSLASHlabel] = ACTIONS(6405), - [anon_sym_BSLASHref] = ACTIONS(6405), - [anon_sym_BSLASHeqref] = ACTIONS(6405), - [anon_sym_BSLASHvref] = ACTIONS(6405), - [anon_sym_BSLASHVref] = ACTIONS(6405), - [anon_sym_BSLASHautoref] = ACTIONS(6405), - [anon_sym_BSLASHpageref] = ACTIONS(6405), - [anon_sym_BSLASHcref] = ACTIONS(6405), - [anon_sym_BSLASHCref] = ACTIONS(6405), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnameCref] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHlabelcref] = ACTIONS(6405), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCrefrange] = ACTIONS(6405), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnewlabel] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6405), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6405), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6407), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHdef] = ACTIONS(6405), - [anon_sym_BSLASHlet] = ACTIONS(6405), - [anon_sym_BSLASHleft] = ACTIONS(6405), - [anon_sym_BSLASHbig] = ACTIONS(6405), - [anon_sym_BSLASHBig] = ACTIONS(6405), - [anon_sym_BSLASHbigg] = ACTIONS(6405), - [anon_sym_BSLASHBigg] = ACTIONS(6405), - [anon_sym_BSLASHbigl] = ACTIONS(6405), - [anon_sym_BSLASHBigl] = ACTIONS(6405), - [anon_sym_BSLASHbiggl] = ACTIONS(6405), - [anon_sym_BSLASHBiggl] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6405), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6405), - [anon_sym_BSLASHgls] = ACTIONS(6405), - [anon_sym_BSLASHGls] = ACTIONS(6405), - [anon_sym_BSLASHGLS] = ACTIONS(6405), - [anon_sym_BSLASHglspl] = ACTIONS(6405), - [anon_sym_BSLASHGlspl] = ACTIONS(6405), - [anon_sym_BSLASHGLSpl] = ACTIONS(6405), - [anon_sym_BSLASHglsdisp] = ACTIONS(6405), - [anon_sym_BSLASHglslink] = ACTIONS(6405), - [anon_sym_BSLASHglstext] = ACTIONS(6405), - [anon_sym_BSLASHGlstext] = ACTIONS(6405), - [anon_sym_BSLASHGLStext] = ACTIONS(6405), - [anon_sym_BSLASHglsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6405), - [anon_sym_BSLASHglsplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSplural] = ACTIONS(6405), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHglsname] = ACTIONS(6405), - [anon_sym_BSLASHGlsname] = ACTIONS(6405), - [anon_sym_BSLASHGLSname] = ACTIONS(6405), - [anon_sym_BSLASHglssymbol] = ACTIONS(6405), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6405), - [anon_sym_BSLASHglsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6405), - [anon_sym_BSLASHglsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6405), - [anon_sym_BSLASHglsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6405), - [anon_sym_BSLASHglsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6405), - [anon_sym_BSLASHglsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6405), - [anon_sym_BSLASHnewacronym] = ACTIONS(6405), - [anon_sym_BSLASHacrshort] = ACTIONS(6405), - [anon_sym_BSLASHAcrshort] = ACTIONS(6405), - [anon_sym_BSLASHACRshort] = ACTIONS(6405), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6405), - [anon_sym_BSLASHacrlong] = ACTIONS(6405), - [anon_sym_BSLASHAcrlong] = ACTIONS(6405), - [anon_sym_BSLASHACRlong] = ACTIONS(6405), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6405), - [anon_sym_BSLASHacrfull] = ACTIONS(6405), - [anon_sym_BSLASHAcrfull] = ACTIONS(6405), - [anon_sym_BSLASHACRfull] = ACTIONS(6405), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6405), - [anon_sym_BSLASHacs] = ACTIONS(6405), - [anon_sym_BSLASHAcs] = ACTIONS(6405), - [anon_sym_BSLASHacsp] = ACTIONS(6405), - [anon_sym_BSLASHAcsp] = ACTIONS(6405), - [anon_sym_BSLASHacl] = ACTIONS(6405), - [anon_sym_BSLASHAcl] = ACTIONS(6405), - [anon_sym_BSLASHaclp] = ACTIONS(6405), - [anon_sym_BSLASHAclp] = ACTIONS(6405), - [anon_sym_BSLASHacf] = ACTIONS(6405), - [anon_sym_BSLASHAcf] = ACTIONS(6405), - [anon_sym_BSLASHacfp] = ACTIONS(6405), - [anon_sym_BSLASHAcfp] = ACTIONS(6405), - [anon_sym_BSLASHac] = ACTIONS(6405), - [anon_sym_BSLASHAc] = ACTIONS(6405), - [anon_sym_BSLASHacp] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6405), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6405), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6405), - [anon_sym_BSLASHcolor] = ACTIONS(6405), - [anon_sym_BSLASHcolorbox] = ACTIONS(6405), - [anon_sym_BSLASHtextcolor] = ACTIONS(6405), - [anon_sym_BSLASHpagecolor] = ACTIONS(6405), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6405), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6405), - [anon_sym_BSLASHtext] = ACTIONS(6405), - [anon_sym_BSLASHintertext] = ACTIONS(6405), - [anon_sym_shortintertext] = ACTIONS(6405), - }, - [1116] = { - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddpart] = ACTIONS(205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHchapter] = ACTIONS(205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddchap] = ACTIONS(205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(207), - [anon_sym_BSLASHsection] = ACTIONS(205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddsec] = ACTIONS(205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHitem] = ACTIONS(205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHend] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [1117] = { - [sym_command_name] = ACTIONS(6409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6409), - [anon_sym_LBRACK] = ACTIONS(6411), - [anon_sym_RBRACK] = ACTIONS(6411), - [anon_sym_COMMA] = ACTIONS(6411), - [anon_sym_EQ] = ACTIONS(6411), - [anon_sym_LPAREN] = ACTIONS(6411), - [anon_sym_RPAREN] = ACTIONS(6411), - [anon_sym_BSLASHpart] = ACTIONS(6409), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddpart] = ACTIONS(6409), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6411), - [anon_sym_BSLASHchapter] = ACTIONS(6409), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddchap] = ACTIONS(6409), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsection] = ACTIONS(6409), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddsec] = ACTIONS(6409), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubsection] = ACTIONS(6409), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6409), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHparagraph] = ACTIONS(6409), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6409), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6411), - [anon_sym_BSLASHitem] = ACTIONS(6409), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6411), - [anon_sym_LBRACE] = ACTIONS(6411), - [sym_word] = ACTIONS(6409), - [sym_placeholder] = ACTIONS(6411), - [anon_sym_PLUS] = ACTIONS(6411), - [anon_sym_DASH] = ACTIONS(6411), - [anon_sym_STAR] = ACTIONS(6411), - [anon_sym_SLASH] = ACTIONS(6411), - [anon_sym_LT] = ACTIONS(6409), - [anon_sym_GT] = ACTIONS(6409), - [anon_sym_BANG] = ACTIONS(6409), - [anon_sym_PIPE] = ACTIONS(6409), - [anon_sym_COLON] = ACTIONS(6409), - [anon_sym_SQUOTE] = ACTIONS(6409), - [anon_sym__] = ACTIONS(6411), - [anon_sym_CARET] = ACTIONS(6411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6411), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6411), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6411), - [anon_sym_DOLLAR] = ACTIONS(6409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6411), - [anon_sym_BSLASHbegin] = ACTIONS(6409), - [anon_sym_BSLASHtitle] = ACTIONS(6409), - [anon_sym_BSLASHauthor] = ACTIONS(6409), - [anon_sym_BSLASHusepackage] = ACTIONS(6409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6409), - [anon_sym_BSLASHinclude] = ACTIONS(6409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6409), - [anon_sym_BSLASHinput] = ACTIONS(6409), - [anon_sym_BSLASHsubfile] = ACTIONS(6409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6409), - [anon_sym_BSLASHbibliography] = ACTIONS(6409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6409), - [anon_sym_BSLASHincludesvg] = ACTIONS(6409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6409), - [anon_sym_BSLASHimport] = ACTIONS(6409), - [anon_sym_BSLASHsubimport] = ACTIONS(6409), - [anon_sym_BSLASHinputfrom] = ACTIONS(6409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6409), - [anon_sym_BSLASHincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHcaption] = ACTIONS(6409), - [anon_sym_BSLASHcite] = ACTIONS(6409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCite] = ACTIONS(6409), - [anon_sym_BSLASHnocite] = ACTIONS(6409), - [anon_sym_BSLASHcitet] = ACTIONS(6409), - [anon_sym_BSLASHcitep] = ACTIONS(6409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteauthor] = ACTIONS(6409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitetitle] = ACTIONS(6409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteyear] = ACTIONS(6409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitedate] = ACTIONS(6409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteurl] = ACTIONS(6409), - [anon_sym_BSLASHfullcite] = ACTIONS(6409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6409), - [anon_sym_BSLASHcitealt] = ACTIONS(6409), - [anon_sym_BSLASHcitealp] = ACTIONS(6409), - [anon_sym_BSLASHcitetext] = ACTIONS(6409), - [anon_sym_BSLASHparencite] = ACTIONS(6409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHParencite] = ACTIONS(6409), - [anon_sym_BSLASHfootcite] = ACTIONS(6409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6409), - [anon_sym_BSLASHtextcite] = ACTIONS(6409), - [anon_sym_BSLASHTextcite] = ACTIONS(6409), - [anon_sym_BSLASHsmartcite] = ACTIONS(6409), - [anon_sym_BSLASHSmartcite] = ACTIONS(6409), - [anon_sym_BSLASHsupercite] = ACTIONS(6409), - [anon_sym_BSLASHautocite] = ACTIONS(6409), - [anon_sym_BSLASHAutocite] = ACTIONS(6409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHvolcite] = ACTIONS(6409), - [anon_sym_BSLASHVolcite] = ACTIONS(6409), - [anon_sym_BSLASHpvolcite] = ACTIONS(6409), - [anon_sym_BSLASHPvolcite] = ACTIONS(6409), - [anon_sym_BSLASHfvolcite] = ACTIONS(6409), - [anon_sym_BSLASHftvolcite] = ACTIONS(6409), - [anon_sym_BSLASHsvolcite] = ACTIONS(6409), - [anon_sym_BSLASHSvolcite] = ACTIONS(6409), - [anon_sym_BSLASHtvolcite] = ACTIONS(6409), - [anon_sym_BSLASHTvolcite] = ACTIONS(6409), - [anon_sym_BSLASHavolcite] = ACTIONS(6409), - [anon_sym_BSLASHAvolcite] = ACTIONS(6409), - [anon_sym_BSLASHnotecite] = ACTIONS(6409), - [anon_sym_BSLASHNotecite] = ACTIONS(6409), - [anon_sym_BSLASHpnotecite] = ACTIONS(6409), - [anon_sym_BSLASHPnotecite] = ACTIONS(6409), - [anon_sym_BSLASHfnotecite] = ACTIONS(6409), - [anon_sym_BSLASHlabel] = ACTIONS(6409), - [anon_sym_BSLASHref] = ACTIONS(6409), - [anon_sym_BSLASHeqref] = ACTIONS(6409), - [anon_sym_BSLASHvref] = ACTIONS(6409), - [anon_sym_BSLASHVref] = ACTIONS(6409), - [anon_sym_BSLASHautoref] = ACTIONS(6409), - [anon_sym_BSLASHpageref] = ACTIONS(6409), - [anon_sym_BSLASHcref] = ACTIONS(6409), - [anon_sym_BSLASHCref] = ACTIONS(6409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnameCref] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHlabelcref] = ACTIONS(6409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCrefrange] = ACTIONS(6409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnewlabel] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6411), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHdef] = ACTIONS(6409), - [anon_sym_BSLASHlet] = ACTIONS(6409), - [anon_sym_BSLASHleft] = ACTIONS(6409), - [anon_sym_BSLASHbig] = ACTIONS(6409), - [anon_sym_BSLASHBig] = ACTIONS(6409), - [anon_sym_BSLASHbigg] = ACTIONS(6409), - [anon_sym_BSLASHBigg] = ACTIONS(6409), - [anon_sym_BSLASHbigl] = ACTIONS(6409), - [anon_sym_BSLASHBigl] = ACTIONS(6409), - [anon_sym_BSLASHbiggl] = ACTIONS(6409), - [anon_sym_BSLASHBiggl] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6409), - [anon_sym_BSLASHgls] = ACTIONS(6409), - [anon_sym_BSLASHGls] = ACTIONS(6409), - [anon_sym_BSLASHGLS] = ACTIONS(6409), - [anon_sym_BSLASHglspl] = ACTIONS(6409), - [anon_sym_BSLASHGlspl] = ACTIONS(6409), - [anon_sym_BSLASHGLSpl] = ACTIONS(6409), - [anon_sym_BSLASHglsdisp] = ACTIONS(6409), - [anon_sym_BSLASHglslink] = ACTIONS(6409), - [anon_sym_BSLASHglstext] = ACTIONS(6409), - [anon_sym_BSLASHGlstext] = ACTIONS(6409), - [anon_sym_BSLASHGLStext] = ACTIONS(6409), - [anon_sym_BSLASHglsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6409), - [anon_sym_BSLASHglsplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSplural] = ACTIONS(6409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHglsname] = ACTIONS(6409), - [anon_sym_BSLASHGlsname] = ACTIONS(6409), - [anon_sym_BSLASHGLSname] = ACTIONS(6409), - [anon_sym_BSLASHglssymbol] = ACTIONS(6409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6409), - [anon_sym_BSLASHglsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6409), - [anon_sym_BSLASHglsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6409), - [anon_sym_BSLASHglsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6409), - [anon_sym_BSLASHglsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6409), - [anon_sym_BSLASHglsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6409), - [anon_sym_BSLASHnewacronym] = ACTIONS(6409), - [anon_sym_BSLASHacrshort] = ACTIONS(6409), - [anon_sym_BSLASHAcrshort] = ACTIONS(6409), - [anon_sym_BSLASHACRshort] = ACTIONS(6409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6409), - [anon_sym_BSLASHacrlong] = ACTIONS(6409), - [anon_sym_BSLASHAcrlong] = ACTIONS(6409), - [anon_sym_BSLASHACRlong] = ACTIONS(6409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6409), - [anon_sym_BSLASHacrfull] = ACTIONS(6409), - [anon_sym_BSLASHAcrfull] = ACTIONS(6409), - [anon_sym_BSLASHACRfull] = ACTIONS(6409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6409), - [anon_sym_BSLASHacs] = ACTIONS(6409), - [anon_sym_BSLASHAcs] = ACTIONS(6409), - [anon_sym_BSLASHacsp] = ACTIONS(6409), - [anon_sym_BSLASHAcsp] = ACTIONS(6409), - [anon_sym_BSLASHacl] = ACTIONS(6409), - [anon_sym_BSLASHAcl] = ACTIONS(6409), - [anon_sym_BSLASHaclp] = ACTIONS(6409), - [anon_sym_BSLASHAclp] = ACTIONS(6409), - [anon_sym_BSLASHacf] = ACTIONS(6409), - [anon_sym_BSLASHAcf] = ACTIONS(6409), - [anon_sym_BSLASHacfp] = ACTIONS(6409), - [anon_sym_BSLASHAcfp] = ACTIONS(6409), - [anon_sym_BSLASHac] = ACTIONS(6409), - [anon_sym_BSLASHAc] = ACTIONS(6409), - [anon_sym_BSLASHacp] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6409), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6409), - [anon_sym_BSLASHcolor] = ACTIONS(6409), - [anon_sym_BSLASHcolorbox] = ACTIONS(6409), - [anon_sym_BSLASHtextcolor] = ACTIONS(6409), - [anon_sym_BSLASHpagecolor] = ACTIONS(6409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6409), - [anon_sym_BSLASHtext] = ACTIONS(6409), - [anon_sym_BSLASHintertext] = ACTIONS(6409), - [anon_sym_shortintertext] = ACTIONS(6409), - }, - [1118] = { - [sym_command_name] = ACTIONS(6041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6041), - [anon_sym_LBRACK] = ACTIONS(6043), - [anon_sym_RBRACK] = ACTIONS(6043), - [anon_sym_COMMA] = ACTIONS(6043), - [anon_sym_EQ] = ACTIONS(6043), - [anon_sym_LPAREN] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_BSLASHpart] = ACTIONS(6041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddpart] = ACTIONS(6041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6043), - [anon_sym_BSLASHchapter] = ACTIONS(6041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddchap] = ACTIONS(6041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsection] = ACTIONS(6041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddsec] = ACTIONS(6041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubsection] = ACTIONS(6041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHparagraph] = ACTIONS(6041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6043), - [anon_sym_BSLASHitem] = ACTIONS(6041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6043), - [anon_sym_LBRACE] = ACTIONS(6043), - [sym_word] = ACTIONS(6041), - [sym_placeholder] = ACTIONS(6043), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6043), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6041), - [anon_sym_GT] = ACTIONS(6041), - [anon_sym_BANG] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_SQUOTE] = ACTIONS(6041), - [anon_sym__] = ACTIONS(6043), - [anon_sym_CARET] = ACTIONS(6043), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6043), - [anon_sym_BSLASHbegin] = ACTIONS(6041), - [anon_sym_BSLASHend] = ACTIONS(6041), - [anon_sym_BSLASHtitle] = ACTIONS(6041), - [anon_sym_BSLASHauthor] = ACTIONS(6041), - [anon_sym_BSLASHusepackage] = ACTIONS(6041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6041), - [anon_sym_BSLASHinclude] = ACTIONS(6041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6041), - [anon_sym_BSLASHinput] = ACTIONS(6041), - [anon_sym_BSLASHsubfile] = ACTIONS(6041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6041), - [anon_sym_BSLASHbibliography] = ACTIONS(6041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6041), - [anon_sym_BSLASHincludesvg] = ACTIONS(6041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6041), - [anon_sym_BSLASHimport] = ACTIONS(6041), - [anon_sym_BSLASHsubimport] = ACTIONS(6041), - [anon_sym_BSLASHinputfrom] = ACTIONS(6041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6041), - [anon_sym_BSLASHincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHcaption] = ACTIONS(6041), - [anon_sym_BSLASHcite] = ACTIONS(6041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCite] = ACTIONS(6041), - [anon_sym_BSLASHnocite] = ACTIONS(6041), - [anon_sym_BSLASHcitet] = ACTIONS(6041), - [anon_sym_BSLASHcitep] = ACTIONS(6041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteauthor] = ACTIONS(6041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitetitle] = ACTIONS(6041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteyear] = ACTIONS(6041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitedate] = ACTIONS(6041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteurl] = ACTIONS(6041), - [anon_sym_BSLASHfullcite] = ACTIONS(6041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6041), - [anon_sym_BSLASHcitealt] = ACTIONS(6041), - [anon_sym_BSLASHcitealp] = ACTIONS(6041), - [anon_sym_BSLASHcitetext] = ACTIONS(6041), - [anon_sym_BSLASHparencite] = ACTIONS(6041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHParencite] = ACTIONS(6041), - [anon_sym_BSLASHfootcite] = ACTIONS(6041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6041), - [anon_sym_BSLASHtextcite] = ACTIONS(6041), - [anon_sym_BSLASHTextcite] = ACTIONS(6041), - [anon_sym_BSLASHsmartcite] = ACTIONS(6041), - [anon_sym_BSLASHSmartcite] = ACTIONS(6041), - [anon_sym_BSLASHsupercite] = ACTIONS(6041), - [anon_sym_BSLASHautocite] = ACTIONS(6041), - [anon_sym_BSLASHAutocite] = ACTIONS(6041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHvolcite] = ACTIONS(6041), - [anon_sym_BSLASHVolcite] = ACTIONS(6041), - [anon_sym_BSLASHpvolcite] = ACTIONS(6041), - [anon_sym_BSLASHPvolcite] = ACTIONS(6041), - [anon_sym_BSLASHfvolcite] = ACTIONS(6041), - [anon_sym_BSLASHftvolcite] = ACTIONS(6041), - [anon_sym_BSLASHsvolcite] = ACTIONS(6041), - [anon_sym_BSLASHSvolcite] = ACTIONS(6041), - [anon_sym_BSLASHtvolcite] = ACTIONS(6041), - [anon_sym_BSLASHTvolcite] = ACTIONS(6041), - [anon_sym_BSLASHavolcite] = ACTIONS(6041), - [anon_sym_BSLASHAvolcite] = ACTIONS(6041), - [anon_sym_BSLASHnotecite] = ACTIONS(6041), - [anon_sym_BSLASHNotecite] = ACTIONS(6041), - [anon_sym_BSLASHpnotecite] = ACTIONS(6041), - [anon_sym_BSLASHPnotecite] = ACTIONS(6041), - [anon_sym_BSLASHfnotecite] = ACTIONS(6041), - [anon_sym_BSLASHlabel] = ACTIONS(6041), - [anon_sym_BSLASHref] = ACTIONS(6041), - [anon_sym_BSLASHeqref] = ACTIONS(6041), - [anon_sym_BSLASHvref] = ACTIONS(6041), - [anon_sym_BSLASHVref] = ACTIONS(6041), - [anon_sym_BSLASHautoref] = ACTIONS(6041), - [anon_sym_BSLASHpageref] = ACTIONS(6041), - [anon_sym_BSLASHcref] = ACTIONS(6041), - [anon_sym_BSLASHCref] = ACTIONS(6041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnameCref] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHlabelcref] = ACTIONS(6041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCrefrange] = ACTIONS(6041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnewlabel] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6043), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHdef] = ACTIONS(6041), - [anon_sym_BSLASHlet] = ACTIONS(6041), - [anon_sym_BSLASHleft] = ACTIONS(6041), - [anon_sym_BSLASHbig] = ACTIONS(6041), - [anon_sym_BSLASHBig] = ACTIONS(6041), - [anon_sym_BSLASHbigg] = ACTIONS(6041), - [anon_sym_BSLASHBigg] = ACTIONS(6041), - [anon_sym_BSLASHbigl] = ACTIONS(6041), - [anon_sym_BSLASHBigl] = ACTIONS(6041), - [anon_sym_BSLASHbiggl] = ACTIONS(6041), - [anon_sym_BSLASHBiggl] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6041), - [anon_sym_BSLASHgls] = ACTIONS(6041), - [anon_sym_BSLASHGls] = ACTIONS(6041), - [anon_sym_BSLASHGLS] = ACTIONS(6041), - [anon_sym_BSLASHglspl] = ACTIONS(6041), - [anon_sym_BSLASHGlspl] = ACTIONS(6041), - [anon_sym_BSLASHGLSpl] = ACTIONS(6041), - [anon_sym_BSLASHglsdisp] = ACTIONS(6041), - [anon_sym_BSLASHglslink] = ACTIONS(6041), - [anon_sym_BSLASHglstext] = ACTIONS(6041), - [anon_sym_BSLASHGlstext] = ACTIONS(6041), - [anon_sym_BSLASHGLStext] = ACTIONS(6041), - [anon_sym_BSLASHglsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6041), - [anon_sym_BSLASHglsplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSplural] = ACTIONS(6041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHglsname] = ACTIONS(6041), - [anon_sym_BSLASHGlsname] = ACTIONS(6041), - [anon_sym_BSLASHGLSname] = ACTIONS(6041), - [anon_sym_BSLASHglssymbol] = ACTIONS(6041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6041), - [anon_sym_BSLASHglsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6041), - [anon_sym_BSLASHglsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6041), - [anon_sym_BSLASHglsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6041), - [anon_sym_BSLASHglsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6041), - [anon_sym_BSLASHglsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6041), - [anon_sym_BSLASHnewacronym] = ACTIONS(6041), - [anon_sym_BSLASHacrshort] = ACTIONS(6041), - [anon_sym_BSLASHAcrshort] = ACTIONS(6041), - [anon_sym_BSLASHACRshort] = ACTIONS(6041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6041), - [anon_sym_BSLASHacrlong] = ACTIONS(6041), - [anon_sym_BSLASHAcrlong] = ACTIONS(6041), - [anon_sym_BSLASHACRlong] = ACTIONS(6041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6041), - [anon_sym_BSLASHacrfull] = ACTIONS(6041), - [anon_sym_BSLASHAcrfull] = ACTIONS(6041), - [anon_sym_BSLASHACRfull] = ACTIONS(6041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6041), - [anon_sym_BSLASHacs] = ACTIONS(6041), - [anon_sym_BSLASHAcs] = ACTIONS(6041), - [anon_sym_BSLASHacsp] = ACTIONS(6041), - [anon_sym_BSLASHAcsp] = ACTIONS(6041), - [anon_sym_BSLASHacl] = ACTIONS(6041), - [anon_sym_BSLASHAcl] = ACTIONS(6041), - [anon_sym_BSLASHaclp] = ACTIONS(6041), - [anon_sym_BSLASHAclp] = ACTIONS(6041), - [anon_sym_BSLASHacf] = ACTIONS(6041), - [anon_sym_BSLASHAcf] = ACTIONS(6041), - [anon_sym_BSLASHacfp] = ACTIONS(6041), - [anon_sym_BSLASHAcfp] = ACTIONS(6041), - [anon_sym_BSLASHac] = ACTIONS(6041), - [anon_sym_BSLASHAc] = ACTIONS(6041), - [anon_sym_BSLASHacp] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6041), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6041), - [anon_sym_BSLASHcolor] = ACTIONS(6041), - [anon_sym_BSLASHcolorbox] = ACTIONS(6041), - [anon_sym_BSLASHtextcolor] = ACTIONS(6041), - [anon_sym_BSLASHpagecolor] = ACTIONS(6041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6041), - [anon_sym_BSLASHtext] = ACTIONS(6041), - [anon_sym_BSLASHintertext] = ACTIONS(6041), - [anon_sym_shortintertext] = ACTIONS(6041), - }, - [1119] = { - [sym_command_name] = ACTIONS(6193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6193), - [anon_sym_LBRACK] = ACTIONS(6195), - [anon_sym_RBRACK] = ACTIONS(6195), - [anon_sym_COMMA] = ACTIONS(6195), - [anon_sym_EQ] = ACTIONS(6195), - [anon_sym_LPAREN] = ACTIONS(6195), - [anon_sym_RPAREN] = ACTIONS(6195), - [anon_sym_BSLASHpart] = ACTIONS(6193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddpart] = ACTIONS(6193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6195), - [anon_sym_BSLASHchapter] = ACTIONS(6193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddchap] = ACTIONS(6193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsection] = ACTIONS(6193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddsec] = ACTIONS(6193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubsection] = ACTIONS(6193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHparagraph] = ACTIONS(6193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6195), - [anon_sym_BSLASHitem] = ACTIONS(6193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6195), - [anon_sym_LBRACE] = ACTIONS(6195), - [sym_word] = ACTIONS(6193), - [sym_placeholder] = ACTIONS(6195), - [anon_sym_PLUS] = ACTIONS(6195), - [anon_sym_DASH] = ACTIONS(6195), - [anon_sym_STAR] = ACTIONS(6195), - [anon_sym_SLASH] = ACTIONS(6195), - [anon_sym_LT] = ACTIONS(6193), - [anon_sym_GT] = ACTIONS(6193), - [anon_sym_BANG] = ACTIONS(6193), - [anon_sym_PIPE] = ACTIONS(6193), - [anon_sym_COLON] = ACTIONS(6193), - [anon_sym_SQUOTE] = ACTIONS(6193), - [anon_sym__] = ACTIONS(6195), - [anon_sym_CARET] = ACTIONS(6195), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), - [anon_sym_DOLLAR] = ACTIONS(6193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), - [anon_sym_BSLASHbegin] = ACTIONS(6193), - [anon_sym_BSLASHend] = ACTIONS(6193), - [anon_sym_BSLASHtitle] = ACTIONS(6193), - [anon_sym_BSLASHauthor] = ACTIONS(6193), - [anon_sym_BSLASHusepackage] = ACTIONS(6193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), - [anon_sym_BSLASHinclude] = ACTIONS(6193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), - [anon_sym_BSLASHinput] = ACTIONS(6193), - [anon_sym_BSLASHsubfile] = ACTIONS(6193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), - [anon_sym_BSLASHbibliography] = ACTIONS(6193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), - [anon_sym_BSLASHincludesvg] = ACTIONS(6193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), - [anon_sym_BSLASHimport] = ACTIONS(6193), - [anon_sym_BSLASHsubimport] = ACTIONS(6193), - [anon_sym_BSLASHinputfrom] = ACTIONS(6193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), - [anon_sym_BSLASHincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHcaption] = ACTIONS(6193), - [anon_sym_BSLASHcite] = ACTIONS(6193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCite] = ACTIONS(6193), - [anon_sym_BSLASHnocite] = ACTIONS(6193), - [anon_sym_BSLASHcitet] = ACTIONS(6193), - [anon_sym_BSLASHcitep] = ACTIONS(6193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteauthor] = ACTIONS(6193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitetitle] = ACTIONS(6193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteyear] = ACTIONS(6193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitedate] = ACTIONS(6193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteurl] = ACTIONS(6193), - [anon_sym_BSLASHfullcite] = ACTIONS(6193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), - [anon_sym_BSLASHcitealt] = ACTIONS(6193), - [anon_sym_BSLASHcitealp] = ACTIONS(6193), - [anon_sym_BSLASHcitetext] = ACTIONS(6193), - [anon_sym_BSLASHparencite] = ACTIONS(6193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHParencite] = ACTIONS(6193), - [anon_sym_BSLASHfootcite] = ACTIONS(6193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), - [anon_sym_BSLASHtextcite] = ACTIONS(6193), - [anon_sym_BSLASHTextcite] = ACTIONS(6193), - [anon_sym_BSLASHsmartcite] = ACTIONS(6193), - [anon_sym_BSLASHSmartcite] = ACTIONS(6193), - [anon_sym_BSLASHsupercite] = ACTIONS(6193), - [anon_sym_BSLASHautocite] = ACTIONS(6193), - [anon_sym_BSLASHAutocite] = ACTIONS(6193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHvolcite] = ACTIONS(6193), - [anon_sym_BSLASHVolcite] = ACTIONS(6193), - [anon_sym_BSLASHpvolcite] = ACTIONS(6193), - [anon_sym_BSLASHPvolcite] = ACTIONS(6193), - [anon_sym_BSLASHfvolcite] = ACTIONS(6193), - [anon_sym_BSLASHftvolcite] = ACTIONS(6193), - [anon_sym_BSLASHsvolcite] = ACTIONS(6193), - [anon_sym_BSLASHSvolcite] = ACTIONS(6193), - [anon_sym_BSLASHtvolcite] = ACTIONS(6193), - [anon_sym_BSLASHTvolcite] = ACTIONS(6193), - [anon_sym_BSLASHavolcite] = ACTIONS(6193), - [anon_sym_BSLASHAvolcite] = ACTIONS(6193), - [anon_sym_BSLASHnotecite] = ACTIONS(6193), - [anon_sym_BSLASHNotecite] = ACTIONS(6193), - [anon_sym_BSLASHpnotecite] = ACTIONS(6193), - [anon_sym_BSLASHPnotecite] = ACTIONS(6193), - [anon_sym_BSLASHfnotecite] = ACTIONS(6193), - [anon_sym_BSLASHlabel] = ACTIONS(6193), - [anon_sym_BSLASHref] = ACTIONS(6193), - [anon_sym_BSLASHeqref] = ACTIONS(6193), - [anon_sym_BSLASHvref] = ACTIONS(6193), - [anon_sym_BSLASHVref] = ACTIONS(6193), - [anon_sym_BSLASHautoref] = ACTIONS(6193), - [anon_sym_BSLASHpageref] = ACTIONS(6193), - [anon_sym_BSLASHcref] = ACTIONS(6193), - [anon_sym_BSLASHCref] = ACTIONS(6193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnameCref] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHlabelcref] = ACTIONS(6193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCrefrange] = ACTIONS(6193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnewlabel] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHdef] = ACTIONS(6193), - [anon_sym_BSLASHlet] = ACTIONS(6193), - [anon_sym_BSLASHleft] = ACTIONS(6193), - [anon_sym_BSLASHbig] = ACTIONS(6193), - [anon_sym_BSLASHBig] = ACTIONS(6193), - [anon_sym_BSLASHbigg] = ACTIONS(6193), - [anon_sym_BSLASHBigg] = ACTIONS(6193), - [anon_sym_BSLASHbigl] = ACTIONS(6193), - [anon_sym_BSLASHBigl] = ACTIONS(6193), - [anon_sym_BSLASHbiggl] = ACTIONS(6193), - [anon_sym_BSLASHBiggl] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), - [anon_sym_BSLASHgls] = ACTIONS(6193), - [anon_sym_BSLASHGls] = ACTIONS(6193), - [anon_sym_BSLASHGLS] = ACTIONS(6193), - [anon_sym_BSLASHglspl] = ACTIONS(6193), - [anon_sym_BSLASHGlspl] = ACTIONS(6193), - [anon_sym_BSLASHGLSpl] = ACTIONS(6193), - [anon_sym_BSLASHglsdisp] = ACTIONS(6193), - [anon_sym_BSLASHglslink] = ACTIONS(6193), - [anon_sym_BSLASHglstext] = ACTIONS(6193), - [anon_sym_BSLASHGlstext] = ACTIONS(6193), - [anon_sym_BSLASHGLStext] = ACTIONS(6193), - [anon_sym_BSLASHglsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), - [anon_sym_BSLASHglsplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSplural] = ACTIONS(6193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHglsname] = ACTIONS(6193), - [anon_sym_BSLASHGlsname] = ACTIONS(6193), - [anon_sym_BSLASHGLSname] = ACTIONS(6193), - [anon_sym_BSLASHglssymbol] = ACTIONS(6193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), - [anon_sym_BSLASHglsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), - [anon_sym_BSLASHglsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), - [anon_sym_BSLASHglsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), - [anon_sym_BSLASHglsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), - [anon_sym_BSLASHglsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), - [anon_sym_BSLASHnewacronym] = ACTIONS(6193), - [anon_sym_BSLASHacrshort] = ACTIONS(6193), - [anon_sym_BSLASHAcrshort] = ACTIONS(6193), - [anon_sym_BSLASHACRshort] = ACTIONS(6193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), - [anon_sym_BSLASHacrlong] = ACTIONS(6193), - [anon_sym_BSLASHAcrlong] = ACTIONS(6193), - [anon_sym_BSLASHACRlong] = ACTIONS(6193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), - [anon_sym_BSLASHacrfull] = ACTIONS(6193), - [anon_sym_BSLASHAcrfull] = ACTIONS(6193), - [anon_sym_BSLASHACRfull] = ACTIONS(6193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), - [anon_sym_BSLASHacs] = ACTIONS(6193), - [anon_sym_BSLASHAcs] = ACTIONS(6193), - [anon_sym_BSLASHacsp] = ACTIONS(6193), - [anon_sym_BSLASHAcsp] = ACTIONS(6193), - [anon_sym_BSLASHacl] = ACTIONS(6193), - [anon_sym_BSLASHAcl] = ACTIONS(6193), - [anon_sym_BSLASHaclp] = ACTIONS(6193), - [anon_sym_BSLASHAclp] = ACTIONS(6193), - [anon_sym_BSLASHacf] = ACTIONS(6193), - [anon_sym_BSLASHAcf] = ACTIONS(6193), - [anon_sym_BSLASHacfp] = ACTIONS(6193), - [anon_sym_BSLASHAcfp] = ACTIONS(6193), - [anon_sym_BSLASHac] = ACTIONS(6193), - [anon_sym_BSLASHAc] = ACTIONS(6193), - [anon_sym_BSLASHacp] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), - [anon_sym_BSLASHcolor] = ACTIONS(6193), - [anon_sym_BSLASHcolorbox] = ACTIONS(6193), - [anon_sym_BSLASHtextcolor] = ACTIONS(6193), - [anon_sym_BSLASHpagecolor] = ACTIONS(6193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), - [anon_sym_BSLASHtext] = ACTIONS(6193), - [anon_sym_BSLASHintertext] = ACTIONS(6193), - [anon_sym_shortintertext] = ACTIONS(6193), - }, - [1120] = { - [sym_command_name] = ACTIONS(6197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6197), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_RBRACK] = ACTIONS(6199), - [anon_sym_COMMA] = ACTIONS(6199), - [anon_sym_EQ] = ACTIONS(6199), - [anon_sym_LPAREN] = ACTIONS(6199), - [anon_sym_RPAREN] = ACTIONS(6199), - [anon_sym_BSLASHpart] = ACTIONS(6197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddpart] = ACTIONS(6197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6199), - [anon_sym_BSLASHchapter] = ACTIONS(6197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddchap] = ACTIONS(6197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsection] = ACTIONS(6197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddsec] = ACTIONS(6197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubsection] = ACTIONS(6197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHparagraph] = ACTIONS(6197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6199), - [anon_sym_BSLASHitem] = ACTIONS(6197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6199), - [anon_sym_LBRACE] = ACTIONS(6199), - [sym_word] = ACTIONS(6197), - [sym_placeholder] = ACTIONS(6199), - [anon_sym_PLUS] = ACTIONS(6199), - [anon_sym_DASH] = ACTIONS(6199), - [anon_sym_STAR] = ACTIONS(6199), - [anon_sym_SLASH] = ACTIONS(6199), - [anon_sym_LT] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6197), - [anon_sym_BANG] = ACTIONS(6197), - [anon_sym_PIPE] = ACTIONS(6197), - [anon_sym_COLON] = ACTIONS(6197), - [anon_sym_SQUOTE] = ACTIONS(6197), - [anon_sym__] = ACTIONS(6199), - [anon_sym_CARET] = ACTIONS(6199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), - [anon_sym_DOLLAR] = ACTIONS(6197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), - [anon_sym_BSLASHbegin] = ACTIONS(6197), - [anon_sym_BSLASHend] = ACTIONS(6197), - [anon_sym_BSLASHtitle] = ACTIONS(6197), - [anon_sym_BSLASHauthor] = ACTIONS(6197), - [anon_sym_BSLASHusepackage] = ACTIONS(6197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), - [anon_sym_BSLASHinclude] = ACTIONS(6197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), - [anon_sym_BSLASHinput] = ACTIONS(6197), - [anon_sym_BSLASHsubfile] = ACTIONS(6197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), - [anon_sym_BSLASHbibliography] = ACTIONS(6197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), - [anon_sym_BSLASHincludesvg] = ACTIONS(6197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), - [anon_sym_BSLASHimport] = ACTIONS(6197), - [anon_sym_BSLASHsubimport] = ACTIONS(6197), - [anon_sym_BSLASHinputfrom] = ACTIONS(6197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), - [anon_sym_BSLASHincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHcaption] = ACTIONS(6197), - [anon_sym_BSLASHcite] = ACTIONS(6197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCite] = ACTIONS(6197), - [anon_sym_BSLASHnocite] = ACTIONS(6197), - [anon_sym_BSLASHcitet] = ACTIONS(6197), - [anon_sym_BSLASHcitep] = ACTIONS(6197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteauthor] = ACTIONS(6197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitetitle] = ACTIONS(6197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteyear] = ACTIONS(6197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitedate] = ACTIONS(6197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteurl] = ACTIONS(6197), - [anon_sym_BSLASHfullcite] = ACTIONS(6197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), - [anon_sym_BSLASHcitealt] = ACTIONS(6197), - [anon_sym_BSLASHcitealp] = ACTIONS(6197), - [anon_sym_BSLASHcitetext] = ACTIONS(6197), - [anon_sym_BSLASHparencite] = ACTIONS(6197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHParencite] = ACTIONS(6197), - [anon_sym_BSLASHfootcite] = ACTIONS(6197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), - [anon_sym_BSLASHtextcite] = ACTIONS(6197), - [anon_sym_BSLASHTextcite] = ACTIONS(6197), - [anon_sym_BSLASHsmartcite] = ACTIONS(6197), - [anon_sym_BSLASHSmartcite] = ACTIONS(6197), - [anon_sym_BSLASHsupercite] = ACTIONS(6197), - [anon_sym_BSLASHautocite] = ACTIONS(6197), - [anon_sym_BSLASHAutocite] = ACTIONS(6197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHvolcite] = ACTIONS(6197), - [anon_sym_BSLASHVolcite] = ACTIONS(6197), - [anon_sym_BSLASHpvolcite] = ACTIONS(6197), - [anon_sym_BSLASHPvolcite] = ACTIONS(6197), - [anon_sym_BSLASHfvolcite] = ACTIONS(6197), - [anon_sym_BSLASHftvolcite] = ACTIONS(6197), - [anon_sym_BSLASHsvolcite] = ACTIONS(6197), - [anon_sym_BSLASHSvolcite] = ACTIONS(6197), - [anon_sym_BSLASHtvolcite] = ACTIONS(6197), - [anon_sym_BSLASHTvolcite] = ACTIONS(6197), - [anon_sym_BSLASHavolcite] = ACTIONS(6197), - [anon_sym_BSLASHAvolcite] = ACTIONS(6197), - [anon_sym_BSLASHnotecite] = ACTIONS(6197), - [anon_sym_BSLASHNotecite] = ACTIONS(6197), - [anon_sym_BSLASHpnotecite] = ACTIONS(6197), - [anon_sym_BSLASHPnotecite] = ACTIONS(6197), - [anon_sym_BSLASHfnotecite] = ACTIONS(6197), - [anon_sym_BSLASHlabel] = ACTIONS(6197), - [anon_sym_BSLASHref] = ACTIONS(6197), - [anon_sym_BSLASHeqref] = ACTIONS(6197), - [anon_sym_BSLASHvref] = ACTIONS(6197), - [anon_sym_BSLASHVref] = ACTIONS(6197), - [anon_sym_BSLASHautoref] = ACTIONS(6197), - [anon_sym_BSLASHpageref] = ACTIONS(6197), - [anon_sym_BSLASHcref] = ACTIONS(6197), - [anon_sym_BSLASHCref] = ACTIONS(6197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnameCref] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHlabelcref] = ACTIONS(6197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCrefrange] = ACTIONS(6197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnewlabel] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHdef] = ACTIONS(6197), - [anon_sym_BSLASHlet] = ACTIONS(6197), - [anon_sym_BSLASHleft] = ACTIONS(6197), - [anon_sym_BSLASHbig] = ACTIONS(6197), - [anon_sym_BSLASHBig] = ACTIONS(6197), - [anon_sym_BSLASHbigg] = ACTIONS(6197), - [anon_sym_BSLASHBigg] = ACTIONS(6197), - [anon_sym_BSLASHbigl] = ACTIONS(6197), - [anon_sym_BSLASHBigl] = ACTIONS(6197), - [anon_sym_BSLASHbiggl] = ACTIONS(6197), - [anon_sym_BSLASHBiggl] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), - [anon_sym_BSLASHgls] = ACTIONS(6197), - [anon_sym_BSLASHGls] = ACTIONS(6197), - [anon_sym_BSLASHGLS] = ACTIONS(6197), - [anon_sym_BSLASHglspl] = ACTIONS(6197), - [anon_sym_BSLASHGlspl] = ACTIONS(6197), - [anon_sym_BSLASHGLSpl] = ACTIONS(6197), - [anon_sym_BSLASHglsdisp] = ACTIONS(6197), - [anon_sym_BSLASHglslink] = ACTIONS(6197), - [anon_sym_BSLASHglstext] = ACTIONS(6197), - [anon_sym_BSLASHGlstext] = ACTIONS(6197), - [anon_sym_BSLASHGLStext] = ACTIONS(6197), - [anon_sym_BSLASHglsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), - [anon_sym_BSLASHglsplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSplural] = ACTIONS(6197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHglsname] = ACTIONS(6197), - [anon_sym_BSLASHGlsname] = ACTIONS(6197), - [anon_sym_BSLASHGLSname] = ACTIONS(6197), - [anon_sym_BSLASHglssymbol] = ACTIONS(6197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), - [anon_sym_BSLASHglsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), - [anon_sym_BSLASHglsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), - [anon_sym_BSLASHglsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), - [anon_sym_BSLASHglsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), - [anon_sym_BSLASHglsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), - [anon_sym_BSLASHnewacronym] = ACTIONS(6197), - [anon_sym_BSLASHacrshort] = ACTIONS(6197), - [anon_sym_BSLASHAcrshort] = ACTIONS(6197), - [anon_sym_BSLASHACRshort] = ACTIONS(6197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), - [anon_sym_BSLASHacrlong] = ACTIONS(6197), - [anon_sym_BSLASHAcrlong] = ACTIONS(6197), - [anon_sym_BSLASHACRlong] = ACTIONS(6197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), - [anon_sym_BSLASHacrfull] = ACTIONS(6197), - [anon_sym_BSLASHAcrfull] = ACTIONS(6197), - [anon_sym_BSLASHACRfull] = ACTIONS(6197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), - [anon_sym_BSLASHacs] = ACTIONS(6197), - [anon_sym_BSLASHAcs] = ACTIONS(6197), - [anon_sym_BSLASHacsp] = ACTIONS(6197), - [anon_sym_BSLASHAcsp] = ACTIONS(6197), - [anon_sym_BSLASHacl] = ACTIONS(6197), - [anon_sym_BSLASHAcl] = ACTIONS(6197), - [anon_sym_BSLASHaclp] = ACTIONS(6197), - [anon_sym_BSLASHAclp] = ACTIONS(6197), - [anon_sym_BSLASHacf] = ACTIONS(6197), - [anon_sym_BSLASHAcf] = ACTIONS(6197), - [anon_sym_BSLASHacfp] = ACTIONS(6197), - [anon_sym_BSLASHAcfp] = ACTIONS(6197), - [anon_sym_BSLASHac] = ACTIONS(6197), - [anon_sym_BSLASHAc] = ACTIONS(6197), - [anon_sym_BSLASHacp] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), - [anon_sym_BSLASHcolor] = ACTIONS(6197), - [anon_sym_BSLASHcolorbox] = ACTIONS(6197), - [anon_sym_BSLASHtextcolor] = ACTIONS(6197), - [anon_sym_BSLASHpagecolor] = ACTIONS(6197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), - [anon_sym_BSLASHtext] = ACTIONS(6197), - [anon_sym_BSLASHintertext] = ACTIONS(6197), - [anon_sym_shortintertext] = ACTIONS(6197), - }, - [1121] = { - [sym_command_name] = ACTIONS(6205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6205), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_RBRACK] = ACTIONS(6207), - [anon_sym_COMMA] = ACTIONS(6207), - [anon_sym_EQ] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_RPAREN] = ACTIONS(6207), - [anon_sym_BSLASHpart] = ACTIONS(6205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddpart] = ACTIONS(6205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6207), - [anon_sym_BSLASHchapter] = ACTIONS(6205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddchap] = ACTIONS(6205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsection] = ACTIONS(6205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddsec] = ACTIONS(6205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubsection] = ACTIONS(6205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHparagraph] = ACTIONS(6205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6207), - [anon_sym_BSLASHitem] = ACTIONS(6205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6207), - [anon_sym_LBRACE] = ACTIONS(6207), - [sym_word] = ACTIONS(6205), - [sym_placeholder] = ACTIONS(6207), - [anon_sym_PLUS] = ACTIONS(6207), - [anon_sym_DASH] = ACTIONS(6207), - [anon_sym_STAR] = ACTIONS(6207), - [anon_sym_SLASH] = ACTIONS(6207), - [anon_sym_LT] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6205), - [anon_sym_BANG] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_COLON] = ACTIONS(6205), - [anon_sym_SQUOTE] = ACTIONS(6205), - [anon_sym__] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), - [anon_sym_DOLLAR] = ACTIONS(6205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), - [anon_sym_BSLASHbegin] = ACTIONS(6205), - [anon_sym_BSLASHend] = ACTIONS(6205), - [anon_sym_BSLASHtitle] = ACTIONS(6205), - [anon_sym_BSLASHauthor] = ACTIONS(6205), - [anon_sym_BSLASHusepackage] = ACTIONS(6205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), - [anon_sym_BSLASHinclude] = ACTIONS(6205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), - [anon_sym_BSLASHinput] = ACTIONS(6205), - [anon_sym_BSLASHsubfile] = ACTIONS(6205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), - [anon_sym_BSLASHbibliography] = ACTIONS(6205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), - [anon_sym_BSLASHincludesvg] = ACTIONS(6205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), - [anon_sym_BSLASHimport] = ACTIONS(6205), - [anon_sym_BSLASHsubimport] = ACTIONS(6205), - [anon_sym_BSLASHinputfrom] = ACTIONS(6205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), - [anon_sym_BSLASHincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHcaption] = ACTIONS(6205), - [anon_sym_BSLASHcite] = ACTIONS(6205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCite] = ACTIONS(6205), - [anon_sym_BSLASHnocite] = ACTIONS(6205), - [anon_sym_BSLASHcitet] = ACTIONS(6205), - [anon_sym_BSLASHcitep] = ACTIONS(6205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteauthor] = ACTIONS(6205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitetitle] = ACTIONS(6205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteyear] = ACTIONS(6205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitedate] = ACTIONS(6205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteurl] = ACTIONS(6205), - [anon_sym_BSLASHfullcite] = ACTIONS(6205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), - [anon_sym_BSLASHcitealt] = ACTIONS(6205), - [anon_sym_BSLASHcitealp] = ACTIONS(6205), - [anon_sym_BSLASHcitetext] = ACTIONS(6205), - [anon_sym_BSLASHparencite] = ACTIONS(6205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHParencite] = ACTIONS(6205), - [anon_sym_BSLASHfootcite] = ACTIONS(6205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), - [anon_sym_BSLASHtextcite] = ACTIONS(6205), - [anon_sym_BSLASHTextcite] = ACTIONS(6205), - [anon_sym_BSLASHsmartcite] = ACTIONS(6205), - [anon_sym_BSLASHSmartcite] = ACTIONS(6205), - [anon_sym_BSLASHsupercite] = ACTIONS(6205), - [anon_sym_BSLASHautocite] = ACTIONS(6205), - [anon_sym_BSLASHAutocite] = ACTIONS(6205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHvolcite] = ACTIONS(6205), - [anon_sym_BSLASHVolcite] = ACTIONS(6205), - [anon_sym_BSLASHpvolcite] = ACTIONS(6205), - [anon_sym_BSLASHPvolcite] = ACTIONS(6205), - [anon_sym_BSLASHfvolcite] = ACTIONS(6205), - [anon_sym_BSLASHftvolcite] = ACTIONS(6205), - [anon_sym_BSLASHsvolcite] = ACTIONS(6205), - [anon_sym_BSLASHSvolcite] = ACTIONS(6205), - [anon_sym_BSLASHtvolcite] = ACTIONS(6205), - [anon_sym_BSLASHTvolcite] = ACTIONS(6205), - [anon_sym_BSLASHavolcite] = ACTIONS(6205), - [anon_sym_BSLASHAvolcite] = ACTIONS(6205), - [anon_sym_BSLASHnotecite] = ACTIONS(6205), - [anon_sym_BSLASHNotecite] = ACTIONS(6205), - [anon_sym_BSLASHpnotecite] = ACTIONS(6205), - [anon_sym_BSLASHPnotecite] = ACTIONS(6205), - [anon_sym_BSLASHfnotecite] = ACTIONS(6205), - [anon_sym_BSLASHlabel] = ACTIONS(6205), - [anon_sym_BSLASHref] = ACTIONS(6205), - [anon_sym_BSLASHeqref] = ACTIONS(6205), - [anon_sym_BSLASHvref] = ACTIONS(6205), - [anon_sym_BSLASHVref] = ACTIONS(6205), - [anon_sym_BSLASHautoref] = ACTIONS(6205), - [anon_sym_BSLASHpageref] = ACTIONS(6205), - [anon_sym_BSLASHcref] = ACTIONS(6205), - [anon_sym_BSLASHCref] = ACTIONS(6205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnameCref] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHlabelcref] = ACTIONS(6205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCrefrange] = ACTIONS(6205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnewlabel] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHdef] = ACTIONS(6205), - [anon_sym_BSLASHlet] = ACTIONS(6205), - [anon_sym_BSLASHleft] = ACTIONS(6205), - [anon_sym_BSLASHbig] = ACTIONS(6205), - [anon_sym_BSLASHBig] = ACTIONS(6205), - [anon_sym_BSLASHbigg] = ACTIONS(6205), - [anon_sym_BSLASHBigg] = ACTIONS(6205), - [anon_sym_BSLASHbigl] = ACTIONS(6205), - [anon_sym_BSLASHBigl] = ACTIONS(6205), - [anon_sym_BSLASHbiggl] = ACTIONS(6205), - [anon_sym_BSLASHBiggl] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), - [anon_sym_BSLASHgls] = ACTIONS(6205), - [anon_sym_BSLASHGls] = ACTIONS(6205), - [anon_sym_BSLASHGLS] = ACTIONS(6205), - [anon_sym_BSLASHglspl] = ACTIONS(6205), - [anon_sym_BSLASHGlspl] = ACTIONS(6205), - [anon_sym_BSLASHGLSpl] = ACTIONS(6205), - [anon_sym_BSLASHglsdisp] = ACTIONS(6205), - [anon_sym_BSLASHglslink] = ACTIONS(6205), - [anon_sym_BSLASHglstext] = ACTIONS(6205), - [anon_sym_BSLASHGlstext] = ACTIONS(6205), - [anon_sym_BSLASHGLStext] = ACTIONS(6205), - [anon_sym_BSLASHglsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), - [anon_sym_BSLASHglsplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSplural] = ACTIONS(6205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHglsname] = ACTIONS(6205), - [anon_sym_BSLASHGlsname] = ACTIONS(6205), - [anon_sym_BSLASHGLSname] = ACTIONS(6205), - [anon_sym_BSLASHglssymbol] = ACTIONS(6205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), - [anon_sym_BSLASHglsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), - [anon_sym_BSLASHglsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), - [anon_sym_BSLASHglsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), - [anon_sym_BSLASHglsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), - [anon_sym_BSLASHglsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), - [anon_sym_BSLASHnewacronym] = ACTIONS(6205), - [anon_sym_BSLASHacrshort] = ACTIONS(6205), - [anon_sym_BSLASHAcrshort] = ACTIONS(6205), - [anon_sym_BSLASHACRshort] = ACTIONS(6205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), - [anon_sym_BSLASHacrlong] = ACTIONS(6205), - [anon_sym_BSLASHAcrlong] = ACTIONS(6205), - [anon_sym_BSLASHACRlong] = ACTIONS(6205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), - [anon_sym_BSLASHacrfull] = ACTIONS(6205), - [anon_sym_BSLASHAcrfull] = ACTIONS(6205), - [anon_sym_BSLASHACRfull] = ACTIONS(6205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), - [anon_sym_BSLASHacs] = ACTIONS(6205), - [anon_sym_BSLASHAcs] = ACTIONS(6205), - [anon_sym_BSLASHacsp] = ACTIONS(6205), - [anon_sym_BSLASHAcsp] = ACTIONS(6205), - [anon_sym_BSLASHacl] = ACTIONS(6205), - [anon_sym_BSLASHAcl] = ACTIONS(6205), - [anon_sym_BSLASHaclp] = ACTIONS(6205), - [anon_sym_BSLASHAclp] = ACTIONS(6205), - [anon_sym_BSLASHacf] = ACTIONS(6205), - [anon_sym_BSLASHAcf] = ACTIONS(6205), - [anon_sym_BSLASHacfp] = ACTIONS(6205), - [anon_sym_BSLASHAcfp] = ACTIONS(6205), - [anon_sym_BSLASHac] = ACTIONS(6205), - [anon_sym_BSLASHAc] = ACTIONS(6205), - [anon_sym_BSLASHacp] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), - [anon_sym_BSLASHcolor] = ACTIONS(6205), - [anon_sym_BSLASHcolorbox] = ACTIONS(6205), - [anon_sym_BSLASHtextcolor] = ACTIONS(6205), - [anon_sym_BSLASHpagecolor] = ACTIONS(6205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), - [anon_sym_BSLASHtext] = ACTIONS(6205), - [anon_sym_BSLASHintertext] = ACTIONS(6205), - [anon_sym_shortintertext] = ACTIONS(6205), - }, - [1122] = { - [sym_command_name] = ACTIONS(6209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6209), - [anon_sym_LBRACK] = ACTIONS(6211), - [anon_sym_RBRACK] = ACTIONS(6211), - [anon_sym_COMMA] = ACTIONS(6211), - [anon_sym_EQ] = ACTIONS(6211), - [anon_sym_LPAREN] = ACTIONS(6211), - [anon_sym_RPAREN] = ACTIONS(6211), - [anon_sym_BSLASHpart] = ACTIONS(6209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddpart] = ACTIONS(6209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6211), - [anon_sym_BSLASHchapter] = ACTIONS(6209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddchap] = ACTIONS(6209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsection] = ACTIONS(6209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddsec] = ACTIONS(6209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubsection] = ACTIONS(6209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHparagraph] = ACTIONS(6209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6211), - [anon_sym_BSLASHitem] = ACTIONS(6209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6211), - [anon_sym_LBRACE] = ACTIONS(6211), - [sym_word] = ACTIONS(6209), - [sym_placeholder] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6211), - [anon_sym_DASH] = ACTIONS(6211), - [anon_sym_STAR] = ACTIONS(6211), - [anon_sym_SLASH] = ACTIONS(6211), - [anon_sym_LT] = ACTIONS(6209), - [anon_sym_GT] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6209), - [anon_sym_COLON] = ACTIONS(6209), - [anon_sym_SQUOTE] = ACTIONS(6209), - [anon_sym__] = ACTIONS(6211), - [anon_sym_CARET] = ACTIONS(6211), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6211), - [anon_sym_DOLLAR] = ACTIONS(6209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6211), - [anon_sym_BSLASHbegin] = ACTIONS(6209), - [anon_sym_BSLASHend] = ACTIONS(6209), - [anon_sym_BSLASHtitle] = ACTIONS(6209), - [anon_sym_BSLASHauthor] = ACTIONS(6209), - [anon_sym_BSLASHusepackage] = ACTIONS(6209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), - [anon_sym_BSLASHinclude] = ACTIONS(6209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), - [anon_sym_BSLASHinput] = ACTIONS(6209), - [anon_sym_BSLASHsubfile] = ACTIONS(6209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), - [anon_sym_BSLASHbibliography] = ACTIONS(6209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), - [anon_sym_BSLASHincludesvg] = ACTIONS(6209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), - [anon_sym_BSLASHimport] = ACTIONS(6209), - [anon_sym_BSLASHsubimport] = ACTIONS(6209), - [anon_sym_BSLASHinputfrom] = ACTIONS(6209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), - [anon_sym_BSLASHincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHcaption] = ACTIONS(6209), - [anon_sym_BSLASHcite] = ACTIONS(6209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCite] = ACTIONS(6209), - [anon_sym_BSLASHnocite] = ACTIONS(6209), - [anon_sym_BSLASHcitet] = ACTIONS(6209), - [anon_sym_BSLASHcitep] = ACTIONS(6209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteauthor] = ACTIONS(6209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitetitle] = ACTIONS(6209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteyear] = ACTIONS(6209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitedate] = ACTIONS(6209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteurl] = ACTIONS(6209), - [anon_sym_BSLASHfullcite] = ACTIONS(6209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), - [anon_sym_BSLASHcitealt] = ACTIONS(6209), - [anon_sym_BSLASHcitealp] = ACTIONS(6209), - [anon_sym_BSLASHcitetext] = ACTIONS(6209), - [anon_sym_BSLASHparencite] = ACTIONS(6209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHParencite] = ACTIONS(6209), - [anon_sym_BSLASHfootcite] = ACTIONS(6209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), - [anon_sym_BSLASHtextcite] = ACTIONS(6209), - [anon_sym_BSLASHTextcite] = ACTIONS(6209), - [anon_sym_BSLASHsmartcite] = ACTIONS(6209), - [anon_sym_BSLASHSmartcite] = ACTIONS(6209), - [anon_sym_BSLASHsupercite] = ACTIONS(6209), - [anon_sym_BSLASHautocite] = ACTIONS(6209), - [anon_sym_BSLASHAutocite] = ACTIONS(6209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHvolcite] = ACTIONS(6209), - [anon_sym_BSLASHVolcite] = ACTIONS(6209), - [anon_sym_BSLASHpvolcite] = ACTIONS(6209), - [anon_sym_BSLASHPvolcite] = ACTIONS(6209), - [anon_sym_BSLASHfvolcite] = ACTIONS(6209), - [anon_sym_BSLASHftvolcite] = ACTIONS(6209), - [anon_sym_BSLASHsvolcite] = ACTIONS(6209), - [anon_sym_BSLASHSvolcite] = ACTIONS(6209), - [anon_sym_BSLASHtvolcite] = ACTIONS(6209), - [anon_sym_BSLASHTvolcite] = ACTIONS(6209), - [anon_sym_BSLASHavolcite] = ACTIONS(6209), - [anon_sym_BSLASHAvolcite] = ACTIONS(6209), - [anon_sym_BSLASHnotecite] = ACTIONS(6209), - [anon_sym_BSLASHNotecite] = ACTIONS(6209), - [anon_sym_BSLASHpnotecite] = ACTIONS(6209), - [anon_sym_BSLASHPnotecite] = ACTIONS(6209), - [anon_sym_BSLASHfnotecite] = ACTIONS(6209), - [anon_sym_BSLASHlabel] = ACTIONS(6209), - [anon_sym_BSLASHref] = ACTIONS(6209), - [anon_sym_BSLASHeqref] = ACTIONS(6209), - [anon_sym_BSLASHvref] = ACTIONS(6209), - [anon_sym_BSLASHVref] = ACTIONS(6209), - [anon_sym_BSLASHautoref] = ACTIONS(6209), - [anon_sym_BSLASHpageref] = ACTIONS(6209), - [anon_sym_BSLASHcref] = ACTIONS(6209), - [anon_sym_BSLASHCref] = ACTIONS(6209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnameCref] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHlabelcref] = ACTIONS(6209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCrefrange] = ACTIONS(6209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnewlabel] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6211), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHdef] = ACTIONS(6209), - [anon_sym_BSLASHlet] = ACTIONS(6209), - [anon_sym_BSLASHleft] = ACTIONS(6209), - [anon_sym_BSLASHbig] = ACTIONS(6209), - [anon_sym_BSLASHBig] = ACTIONS(6209), - [anon_sym_BSLASHbigg] = ACTIONS(6209), - [anon_sym_BSLASHBigg] = ACTIONS(6209), - [anon_sym_BSLASHbigl] = ACTIONS(6209), - [anon_sym_BSLASHBigl] = ACTIONS(6209), - [anon_sym_BSLASHbiggl] = ACTIONS(6209), - [anon_sym_BSLASHBiggl] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), - [anon_sym_BSLASHgls] = ACTIONS(6209), - [anon_sym_BSLASHGls] = ACTIONS(6209), - [anon_sym_BSLASHGLS] = ACTIONS(6209), - [anon_sym_BSLASHglspl] = ACTIONS(6209), - [anon_sym_BSLASHGlspl] = ACTIONS(6209), - [anon_sym_BSLASHGLSpl] = ACTIONS(6209), - [anon_sym_BSLASHglsdisp] = ACTIONS(6209), - [anon_sym_BSLASHglslink] = ACTIONS(6209), - [anon_sym_BSLASHglstext] = ACTIONS(6209), - [anon_sym_BSLASHGlstext] = ACTIONS(6209), - [anon_sym_BSLASHGLStext] = ACTIONS(6209), - [anon_sym_BSLASHglsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), - [anon_sym_BSLASHglsplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSplural] = ACTIONS(6209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHglsname] = ACTIONS(6209), - [anon_sym_BSLASHGlsname] = ACTIONS(6209), - [anon_sym_BSLASHGLSname] = ACTIONS(6209), - [anon_sym_BSLASHglssymbol] = ACTIONS(6209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), - [anon_sym_BSLASHglsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), - [anon_sym_BSLASHglsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), - [anon_sym_BSLASHglsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), - [anon_sym_BSLASHglsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), - [anon_sym_BSLASHglsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), - [anon_sym_BSLASHnewacronym] = ACTIONS(6209), - [anon_sym_BSLASHacrshort] = ACTIONS(6209), - [anon_sym_BSLASHAcrshort] = ACTIONS(6209), - [anon_sym_BSLASHACRshort] = ACTIONS(6209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), - [anon_sym_BSLASHacrlong] = ACTIONS(6209), - [anon_sym_BSLASHAcrlong] = ACTIONS(6209), - [anon_sym_BSLASHACRlong] = ACTIONS(6209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), - [anon_sym_BSLASHacrfull] = ACTIONS(6209), - [anon_sym_BSLASHAcrfull] = ACTIONS(6209), - [anon_sym_BSLASHACRfull] = ACTIONS(6209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), - [anon_sym_BSLASHacs] = ACTIONS(6209), - [anon_sym_BSLASHAcs] = ACTIONS(6209), - [anon_sym_BSLASHacsp] = ACTIONS(6209), - [anon_sym_BSLASHAcsp] = ACTIONS(6209), - [anon_sym_BSLASHacl] = ACTIONS(6209), - [anon_sym_BSLASHAcl] = ACTIONS(6209), - [anon_sym_BSLASHaclp] = ACTIONS(6209), - [anon_sym_BSLASHAclp] = ACTIONS(6209), - [anon_sym_BSLASHacf] = ACTIONS(6209), - [anon_sym_BSLASHAcf] = ACTIONS(6209), - [anon_sym_BSLASHacfp] = ACTIONS(6209), - [anon_sym_BSLASHAcfp] = ACTIONS(6209), - [anon_sym_BSLASHac] = ACTIONS(6209), - [anon_sym_BSLASHAc] = ACTIONS(6209), - [anon_sym_BSLASHacp] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), - [anon_sym_BSLASHcolor] = ACTIONS(6209), - [anon_sym_BSLASHcolorbox] = ACTIONS(6209), - [anon_sym_BSLASHtextcolor] = ACTIONS(6209), - [anon_sym_BSLASHpagecolor] = ACTIONS(6209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), - [anon_sym_BSLASHtext] = ACTIONS(6209), - [anon_sym_BSLASHintertext] = ACTIONS(6209), - [anon_sym_shortintertext] = ACTIONS(6209), - }, - [1123] = { - [sym_command_name] = ACTIONS(6213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(6215), - [anon_sym_RBRACK] = ACTIONS(6215), - [anon_sym_COMMA] = ACTIONS(6215), - [anon_sym_EQ] = ACTIONS(6215), - [anon_sym_LPAREN] = ACTIONS(6215), - [anon_sym_RPAREN] = ACTIONS(6215), - [anon_sym_BSLASHpart] = ACTIONS(6213), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddpart] = ACTIONS(6213), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6215), - [anon_sym_BSLASHchapter] = ACTIONS(6213), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddchap] = ACTIONS(6213), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsection] = ACTIONS(6213), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddsec] = ACTIONS(6213), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubsection] = ACTIONS(6213), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6213), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHparagraph] = ACTIONS(6213), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6213), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6215), - [anon_sym_BSLASHitem] = ACTIONS(6213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6215), - [anon_sym_LBRACE] = ACTIONS(6215), - [sym_word] = ACTIONS(6213), - [sym_placeholder] = ACTIONS(6215), - [anon_sym_PLUS] = ACTIONS(6215), - [anon_sym_DASH] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6215), - [anon_sym_SLASH] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6213), - [anon_sym_GT] = ACTIONS(6213), - [anon_sym_BANG] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6213), - [anon_sym_COLON] = ACTIONS(6213), - [anon_sym_SQUOTE] = ACTIONS(6213), - [anon_sym__] = ACTIONS(6215), - [anon_sym_CARET] = ACTIONS(6215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6215), - [anon_sym_DOLLAR] = ACTIONS(6213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6215), - [anon_sym_BSLASHbegin] = ACTIONS(6213), - [anon_sym_BSLASHend] = ACTIONS(6213), - [anon_sym_BSLASHtitle] = ACTIONS(6213), - [anon_sym_BSLASHauthor] = ACTIONS(6213), - [anon_sym_BSLASHusepackage] = ACTIONS(6213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6213), - [anon_sym_BSLASHinclude] = ACTIONS(6213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6213), - [anon_sym_BSLASHinput] = ACTIONS(6213), - [anon_sym_BSLASHsubfile] = ACTIONS(6213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6213), - [anon_sym_BSLASHbibliography] = ACTIONS(6213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6213), - [anon_sym_BSLASHincludesvg] = ACTIONS(6213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6213), - [anon_sym_BSLASHimport] = ACTIONS(6213), - [anon_sym_BSLASHsubimport] = ACTIONS(6213), - [anon_sym_BSLASHinputfrom] = ACTIONS(6213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6213), - [anon_sym_BSLASHincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHcaption] = ACTIONS(6213), - [anon_sym_BSLASHcite] = ACTIONS(6213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCite] = ACTIONS(6213), - [anon_sym_BSLASHnocite] = ACTIONS(6213), - [anon_sym_BSLASHcitet] = ACTIONS(6213), - [anon_sym_BSLASHcitep] = ACTIONS(6213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteauthor] = ACTIONS(6213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitetitle] = ACTIONS(6213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteyear] = ACTIONS(6213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitedate] = ACTIONS(6213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteurl] = ACTIONS(6213), - [anon_sym_BSLASHfullcite] = ACTIONS(6213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6213), - [anon_sym_BSLASHcitealt] = ACTIONS(6213), - [anon_sym_BSLASHcitealp] = ACTIONS(6213), - [anon_sym_BSLASHcitetext] = ACTIONS(6213), - [anon_sym_BSLASHparencite] = ACTIONS(6213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHParencite] = ACTIONS(6213), - [anon_sym_BSLASHfootcite] = ACTIONS(6213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6213), - [anon_sym_BSLASHtextcite] = ACTIONS(6213), - [anon_sym_BSLASHTextcite] = ACTIONS(6213), - [anon_sym_BSLASHsmartcite] = ACTIONS(6213), - [anon_sym_BSLASHSmartcite] = ACTIONS(6213), - [anon_sym_BSLASHsupercite] = ACTIONS(6213), - [anon_sym_BSLASHautocite] = ACTIONS(6213), - [anon_sym_BSLASHAutocite] = ACTIONS(6213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHvolcite] = ACTIONS(6213), - [anon_sym_BSLASHVolcite] = ACTIONS(6213), - [anon_sym_BSLASHpvolcite] = ACTIONS(6213), - [anon_sym_BSLASHPvolcite] = ACTIONS(6213), - [anon_sym_BSLASHfvolcite] = ACTIONS(6213), - [anon_sym_BSLASHftvolcite] = ACTIONS(6213), - [anon_sym_BSLASHsvolcite] = ACTIONS(6213), - [anon_sym_BSLASHSvolcite] = ACTIONS(6213), - [anon_sym_BSLASHtvolcite] = ACTIONS(6213), - [anon_sym_BSLASHTvolcite] = ACTIONS(6213), - [anon_sym_BSLASHavolcite] = ACTIONS(6213), - [anon_sym_BSLASHAvolcite] = ACTIONS(6213), - [anon_sym_BSLASHnotecite] = ACTIONS(6213), - [anon_sym_BSLASHNotecite] = ACTIONS(6213), - [anon_sym_BSLASHpnotecite] = ACTIONS(6213), - [anon_sym_BSLASHPnotecite] = ACTIONS(6213), - [anon_sym_BSLASHfnotecite] = ACTIONS(6213), - [anon_sym_BSLASHlabel] = ACTIONS(6213), - [anon_sym_BSLASHref] = ACTIONS(6213), - [anon_sym_BSLASHeqref] = ACTIONS(6213), - [anon_sym_BSLASHvref] = ACTIONS(6213), - [anon_sym_BSLASHVref] = ACTIONS(6213), - [anon_sym_BSLASHautoref] = ACTIONS(6213), - [anon_sym_BSLASHpageref] = ACTIONS(6213), - [anon_sym_BSLASHcref] = ACTIONS(6213), - [anon_sym_BSLASHCref] = ACTIONS(6213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnameCref] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHlabelcref] = ACTIONS(6213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCrefrange] = ACTIONS(6213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnewlabel] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6215), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHdef] = ACTIONS(6213), - [anon_sym_BSLASHlet] = ACTIONS(6213), - [anon_sym_BSLASHleft] = ACTIONS(6213), - [anon_sym_BSLASHbig] = ACTIONS(6213), - [anon_sym_BSLASHBig] = ACTIONS(6213), - [anon_sym_BSLASHbigg] = ACTIONS(6213), - [anon_sym_BSLASHBigg] = ACTIONS(6213), - [anon_sym_BSLASHbigl] = ACTIONS(6213), - [anon_sym_BSLASHBigl] = ACTIONS(6213), - [anon_sym_BSLASHbiggl] = ACTIONS(6213), - [anon_sym_BSLASHBiggl] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6213), - [anon_sym_BSLASHgls] = ACTIONS(6213), - [anon_sym_BSLASHGls] = ACTIONS(6213), - [anon_sym_BSLASHGLS] = ACTIONS(6213), - [anon_sym_BSLASHglspl] = ACTIONS(6213), - [anon_sym_BSLASHGlspl] = ACTIONS(6213), - [anon_sym_BSLASHGLSpl] = ACTIONS(6213), - [anon_sym_BSLASHglsdisp] = ACTIONS(6213), - [anon_sym_BSLASHglslink] = ACTIONS(6213), - [anon_sym_BSLASHglstext] = ACTIONS(6213), - [anon_sym_BSLASHGlstext] = ACTIONS(6213), - [anon_sym_BSLASHGLStext] = ACTIONS(6213), - [anon_sym_BSLASHglsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6213), - [anon_sym_BSLASHglsplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSplural] = ACTIONS(6213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHglsname] = ACTIONS(6213), - [anon_sym_BSLASHGlsname] = ACTIONS(6213), - [anon_sym_BSLASHGLSname] = ACTIONS(6213), - [anon_sym_BSLASHglssymbol] = ACTIONS(6213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6213), - [anon_sym_BSLASHglsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6213), - [anon_sym_BSLASHglsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6213), - [anon_sym_BSLASHglsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6213), - [anon_sym_BSLASHglsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6213), - [anon_sym_BSLASHglsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6213), - [anon_sym_BSLASHnewacronym] = ACTIONS(6213), - [anon_sym_BSLASHacrshort] = ACTIONS(6213), - [anon_sym_BSLASHAcrshort] = ACTIONS(6213), - [anon_sym_BSLASHACRshort] = ACTIONS(6213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6213), - [anon_sym_BSLASHacrlong] = ACTIONS(6213), - [anon_sym_BSLASHAcrlong] = ACTIONS(6213), - [anon_sym_BSLASHACRlong] = ACTIONS(6213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6213), - [anon_sym_BSLASHacrfull] = ACTIONS(6213), - [anon_sym_BSLASHAcrfull] = ACTIONS(6213), - [anon_sym_BSLASHACRfull] = ACTIONS(6213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6213), - [anon_sym_BSLASHacs] = ACTIONS(6213), - [anon_sym_BSLASHAcs] = ACTIONS(6213), - [anon_sym_BSLASHacsp] = ACTIONS(6213), - [anon_sym_BSLASHAcsp] = ACTIONS(6213), - [anon_sym_BSLASHacl] = ACTIONS(6213), - [anon_sym_BSLASHAcl] = ACTIONS(6213), - [anon_sym_BSLASHaclp] = ACTIONS(6213), - [anon_sym_BSLASHAclp] = ACTIONS(6213), - [anon_sym_BSLASHacf] = ACTIONS(6213), - [anon_sym_BSLASHAcf] = ACTIONS(6213), - [anon_sym_BSLASHacfp] = ACTIONS(6213), - [anon_sym_BSLASHAcfp] = ACTIONS(6213), - [anon_sym_BSLASHac] = ACTIONS(6213), - [anon_sym_BSLASHAc] = ACTIONS(6213), - [anon_sym_BSLASHacp] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6213), - [anon_sym_BSLASHcolor] = ACTIONS(6213), - [anon_sym_BSLASHcolorbox] = ACTIONS(6213), - [anon_sym_BSLASHtextcolor] = ACTIONS(6213), - [anon_sym_BSLASHpagecolor] = ACTIONS(6213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6213), - [anon_sym_BSLASHtext] = ACTIONS(6213), - [anon_sym_BSLASHintertext] = ACTIONS(6213), - [anon_sym_shortintertext] = ACTIONS(6213), - }, - [1124] = { - [sym_command_name] = ACTIONS(6217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6217), - [anon_sym_LBRACK] = ACTIONS(6219), - [anon_sym_RBRACK] = ACTIONS(6219), - [anon_sym_COMMA] = ACTIONS(6219), - [anon_sym_EQ] = ACTIONS(6219), - [anon_sym_LPAREN] = ACTIONS(6219), - [anon_sym_RPAREN] = ACTIONS(6219), - [anon_sym_BSLASHpart] = ACTIONS(6217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddpart] = ACTIONS(6217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6219), - [anon_sym_BSLASHchapter] = ACTIONS(6217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddchap] = ACTIONS(6217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsection] = ACTIONS(6217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddsec] = ACTIONS(6217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubsection] = ACTIONS(6217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHparagraph] = ACTIONS(6217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6219), - [anon_sym_BSLASHitem] = ACTIONS(6217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6219), - [anon_sym_LBRACE] = ACTIONS(6219), - [sym_word] = ACTIONS(6217), - [sym_placeholder] = ACTIONS(6219), - [anon_sym_PLUS] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_STAR] = ACTIONS(6219), - [anon_sym_SLASH] = ACTIONS(6219), - [anon_sym_LT] = ACTIONS(6217), - [anon_sym_GT] = ACTIONS(6217), - [anon_sym_BANG] = ACTIONS(6217), - [anon_sym_PIPE] = ACTIONS(6217), - [anon_sym_COLON] = ACTIONS(6217), - [anon_sym_SQUOTE] = ACTIONS(6217), - [anon_sym__] = ACTIONS(6219), - [anon_sym_CARET] = ACTIONS(6219), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6219), - [anon_sym_DOLLAR] = ACTIONS(6217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6219), - [anon_sym_BSLASHbegin] = ACTIONS(6217), - [anon_sym_BSLASHend] = ACTIONS(6217), - [anon_sym_BSLASHtitle] = ACTIONS(6217), - [anon_sym_BSLASHauthor] = ACTIONS(6217), - [anon_sym_BSLASHusepackage] = ACTIONS(6217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6217), - [anon_sym_BSLASHinclude] = ACTIONS(6217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6217), - [anon_sym_BSLASHinput] = ACTIONS(6217), - [anon_sym_BSLASHsubfile] = ACTIONS(6217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6217), - [anon_sym_BSLASHbibliography] = ACTIONS(6217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6217), - [anon_sym_BSLASHincludesvg] = ACTIONS(6217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6217), - [anon_sym_BSLASHimport] = ACTIONS(6217), - [anon_sym_BSLASHsubimport] = ACTIONS(6217), - [anon_sym_BSLASHinputfrom] = ACTIONS(6217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6217), - [anon_sym_BSLASHincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHcaption] = ACTIONS(6217), - [anon_sym_BSLASHcite] = ACTIONS(6217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCite] = ACTIONS(6217), - [anon_sym_BSLASHnocite] = ACTIONS(6217), - [anon_sym_BSLASHcitet] = ACTIONS(6217), - [anon_sym_BSLASHcitep] = ACTIONS(6217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteauthor] = ACTIONS(6217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitetitle] = ACTIONS(6217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteyear] = ACTIONS(6217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitedate] = ACTIONS(6217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteurl] = ACTIONS(6217), - [anon_sym_BSLASHfullcite] = ACTIONS(6217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6217), - [anon_sym_BSLASHcitealt] = ACTIONS(6217), - [anon_sym_BSLASHcitealp] = ACTIONS(6217), - [anon_sym_BSLASHcitetext] = ACTIONS(6217), - [anon_sym_BSLASHparencite] = ACTIONS(6217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHParencite] = ACTIONS(6217), - [anon_sym_BSLASHfootcite] = ACTIONS(6217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6217), - [anon_sym_BSLASHtextcite] = ACTIONS(6217), - [anon_sym_BSLASHTextcite] = ACTIONS(6217), - [anon_sym_BSLASHsmartcite] = ACTIONS(6217), - [anon_sym_BSLASHSmartcite] = ACTIONS(6217), - [anon_sym_BSLASHsupercite] = ACTIONS(6217), - [anon_sym_BSLASHautocite] = ACTIONS(6217), - [anon_sym_BSLASHAutocite] = ACTIONS(6217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHvolcite] = ACTIONS(6217), - [anon_sym_BSLASHVolcite] = ACTIONS(6217), - [anon_sym_BSLASHpvolcite] = ACTIONS(6217), - [anon_sym_BSLASHPvolcite] = ACTIONS(6217), - [anon_sym_BSLASHfvolcite] = ACTIONS(6217), - [anon_sym_BSLASHftvolcite] = ACTIONS(6217), - [anon_sym_BSLASHsvolcite] = ACTIONS(6217), - [anon_sym_BSLASHSvolcite] = ACTIONS(6217), - [anon_sym_BSLASHtvolcite] = ACTIONS(6217), - [anon_sym_BSLASHTvolcite] = ACTIONS(6217), - [anon_sym_BSLASHavolcite] = ACTIONS(6217), - [anon_sym_BSLASHAvolcite] = ACTIONS(6217), - [anon_sym_BSLASHnotecite] = ACTIONS(6217), - [anon_sym_BSLASHNotecite] = ACTIONS(6217), - [anon_sym_BSLASHpnotecite] = ACTIONS(6217), - [anon_sym_BSLASHPnotecite] = ACTIONS(6217), - [anon_sym_BSLASHfnotecite] = ACTIONS(6217), - [anon_sym_BSLASHlabel] = ACTIONS(6217), - [anon_sym_BSLASHref] = ACTIONS(6217), - [anon_sym_BSLASHeqref] = ACTIONS(6217), - [anon_sym_BSLASHvref] = ACTIONS(6217), - [anon_sym_BSLASHVref] = ACTIONS(6217), - [anon_sym_BSLASHautoref] = ACTIONS(6217), - [anon_sym_BSLASHpageref] = ACTIONS(6217), - [anon_sym_BSLASHcref] = ACTIONS(6217), - [anon_sym_BSLASHCref] = ACTIONS(6217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnameCref] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHlabelcref] = ACTIONS(6217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCrefrange] = ACTIONS(6217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnewlabel] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6219), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHdef] = ACTIONS(6217), - [anon_sym_BSLASHlet] = ACTIONS(6217), - [anon_sym_BSLASHleft] = ACTIONS(6217), - [anon_sym_BSLASHbig] = ACTIONS(6217), - [anon_sym_BSLASHBig] = ACTIONS(6217), - [anon_sym_BSLASHbigg] = ACTIONS(6217), - [anon_sym_BSLASHBigg] = ACTIONS(6217), - [anon_sym_BSLASHbigl] = ACTIONS(6217), - [anon_sym_BSLASHBigl] = ACTIONS(6217), - [anon_sym_BSLASHbiggl] = ACTIONS(6217), - [anon_sym_BSLASHBiggl] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6217), - [anon_sym_BSLASHgls] = ACTIONS(6217), - [anon_sym_BSLASHGls] = ACTIONS(6217), - [anon_sym_BSLASHGLS] = ACTIONS(6217), - [anon_sym_BSLASHglspl] = ACTIONS(6217), - [anon_sym_BSLASHGlspl] = ACTIONS(6217), - [anon_sym_BSLASHGLSpl] = ACTIONS(6217), - [anon_sym_BSLASHglsdisp] = ACTIONS(6217), - [anon_sym_BSLASHglslink] = ACTIONS(6217), - [anon_sym_BSLASHglstext] = ACTIONS(6217), - [anon_sym_BSLASHGlstext] = ACTIONS(6217), - [anon_sym_BSLASHGLStext] = ACTIONS(6217), - [anon_sym_BSLASHglsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6217), - [anon_sym_BSLASHglsplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSplural] = ACTIONS(6217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHglsname] = ACTIONS(6217), - [anon_sym_BSLASHGlsname] = ACTIONS(6217), - [anon_sym_BSLASHGLSname] = ACTIONS(6217), - [anon_sym_BSLASHglssymbol] = ACTIONS(6217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6217), - [anon_sym_BSLASHglsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6217), - [anon_sym_BSLASHglsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6217), - [anon_sym_BSLASHglsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6217), - [anon_sym_BSLASHglsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6217), - [anon_sym_BSLASHglsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6217), - [anon_sym_BSLASHnewacronym] = ACTIONS(6217), - [anon_sym_BSLASHacrshort] = ACTIONS(6217), - [anon_sym_BSLASHAcrshort] = ACTIONS(6217), - [anon_sym_BSLASHACRshort] = ACTIONS(6217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6217), - [anon_sym_BSLASHacrlong] = ACTIONS(6217), - [anon_sym_BSLASHAcrlong] = ACTIONS(6217), - [anon_sym_BSLASHACRlong] = ACTIONS(6217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6217), - [anon_sym_BSLASHacrfull] = ACTIONS(6217), - [anon_sym_BSLASHAcrfull] = ACTIONS(6217), - [anon_sym_BSLASHACRfull] = ACTIONS(6217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6217), - [anon_sym_BSLASHacs] = ACTIONS(6217), - [anon_sym_BSLASHAcs] = ACTIONS(6217), - [anon_sym_BSLASHacsp] = ACTIONS(6217), - [anon_sym_BSLASHAcsp] = ACTIONS(6217), - [anon_sym_BSLASHacl] = ACTIONS(6217), - [anon_sym_BSLASHAcl] = ACTIONS(6217), - [anon_sym_BSLASHaclp] = ACTIONS(6217), - [anon_sym_BSLASHAclp] = ACTIONS(6217), - [anon_sym_BSLASHacf] = ACTIONS(6217), - [anon_sym_BSLASHAcf] = ACTIONS(6217), - [anon_sym_BSLASHacfp] = ACTIONS(6217), - [anon_sym_BSLASHAcfp] = ACTIONS(6217), - [anon_sym_BSLASHac] = ACTIONS(6217), - [anon_sym_BSLASHAc] = ACTIONS(6217), - [anon_sym_BSLASHacp] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6217), - [anon_sym_BSLASHcolor] = ACTIONS(6217), - [anon_sym_BSLASHcolorbox] = ACTIONS(6217), - [anon_sym_BSLASHtextcolor] = ACTIONS(6217), - [anon_sym_BSLASHpagecolor] = ACTIONS(6217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6217), - [anon_sym_BSLASHtext] = ACTIONS(6217), - [anon_sym_BSLASHintertext] = ACTIONS(6217), - [anon_sym_shortintertext] = ACTIONS(6217), - }, - [1125] = { - [sym_command_name] = ACTIONS(6225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6225), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_RBRACK] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_EQ] = ACTIONS(6227), - [anon_sym_LPAREN] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [anon_sym_BSLASHpart] = ACTIONS(6225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddpart] = ACTIONS(6225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6227), - [anon_sym_BSLASHchapter] = ACTIONS(6225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddchap] = ACTIONS(6225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsection] = ACTIONS(6225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddsec] = ACTIONS(6225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubsection] = ACTIONS(6225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHparagraph] = ACTIONS(6225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6227), - [anon_sym_BSLASHitem] = ACTIONS(6225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6227), - [anon_sym_LBRACE] = ACTIONS(6227), - [sym_word] = ACTIONS(6225), - [sym_placeholder] = ACTIONS(6227), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(6225), - [anon_sym_GT] = ACTIONS(6225), - [anon_sym_BANG] = ACTIONS(6225), - [anon_sym_PIPE] = ACTIONS(6225), - [anon_sym_COLON] = ACTIONS(6225), - [anon_sym_SQUOTE] = ACTIONS(6225), - [anon_sym__] = ACTIONS(6227), - [anon_sym_CARET] = ACTIONS(6227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6227), - [anon_sym_DOLLAR] = ACTIONS(6225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6227), - [anon_sym_BSLASHbegin] = ACTIONS(6225), - [anon_sym_BSLASHend] = ACTIONS(6225), - [anon_sym_BSLASHtitle] = ACTIONS(6225), - [anon_sym_BSLASHauthor] = ACTIONS(6225), - [anon_sym_BSLASHusepackage] = ACTIONS(6225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6225), - [anon_sym_BSLASHinclude] = ACTIONS(6225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6225), - [anon_sym_BSLASHinput] = ACTIONS(6225), - [anon_sym_BSLASHsubfile] = ACTIONS(6225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6225), - [anon_sym_BSLASHbibliography] = ACTIONS(6225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6225), - [anon_sym_BSLASHincludesvg] = ACTIONS(6225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6225), - [anon_sym_BSLASHimport] = ACTIONS(6225), - [anon_sym_BSLASHsubimport] = ACTIONS(6225), - [anon_sym_BSLASHinputfrom] = ACTIONS(6225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6225), - [anon_sym_BSLASHincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHcaption] = ACTIONS(6225), - [anon_sym_BSLASHcite] = ACTIONS(6225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCite] = ACTIONS(6225), - [anon_sym_BSLASHnocite] = ACTIONS(6225), - [anon_sym_BSLASHcitet] = ACTIONS(6225), - [anon_sym_BSLASHcitep] = ACTIONS(6225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteauthor] = ACTIONS(6225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitetitle] = ACTIONS(6225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteyear] = ACTIONS(6225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitedate] = ACTIONS(6225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteurl] = ACTIONS(6225), - [anon_sym_BSLASHfullcite] = ACTIONS(6225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6225), - [anon_sym_BSLASHcitealt] = ACTIONS(6225), - [anon_sym_BSLASHcitealp] = ACTIONS(6225), - [anon_sym_BSLASHcitetext] = ACTIONS(6225), - [anon_sym_BSLASHparencite] = ACTIONS(6225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHParencite] = ACTIONS(6225), - [anon_sym_BSLASHfootcite] = ACTIONS(6225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6225), - [anon_sym_BSLASHtextcite] = ACTIONS(6225), - [anon_sym_BSLASHTextcite] = ACTIONS(6225), - [anon_sym_BSLASHsmartcite] = ACTIONS(6225), - [anon_sym_BSLASHSmartcite] = ACTIONS(6225), - [anon_sym_BSLASHsupercite] = ACTIONS(6225), - [anon_sym_BSLASHautocite] = ACTIONS(6225), - [anon_sym_BSLASHAutocite] = ACTIONS(6225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHvolcite] = ACTIONS(6225), - [anon_sym_BSLASHVolcite] = ACTIONS(6225), - [anon_sym_BSLASHpvolcite] = ACTIONS(6225), - [anon_sym_BSLASHPvolcite] = ACTIONS(6225), - [anon_sym_BSLASHfvolcite] = ACTIONS(6225), - [anon_sym_BSLASHftvolcite] = ACTIONS(6225), - [anon_sym_BSLASHsvolcite] = ACTIONS(6225), - [anon_sym_BSLASHSvolcite] = ACTIONS(6225), - [anon_sym_BSLASHtvolcite] = ACTIONS(6225), - [anon_sym_BSLASHTvolcite] = ACTIONS(6225), - [anon_sym_BSLASHavolcite] = ACTIONS(6225), - [anon_sym_BSLASHAvolcite] = ACTIONS(6225), - [anon_sym_BSLASHnotecite] = ACTIONS(6225), - [anon_sym_BSLASHNotecite] = ACTIONS(6225), - [anon_sym_BSLASHpnotecite] = ACTIONS(6225), - [anon_sym_BSLASHPnotecite] = ACTIONS(6225), - [anon_sym_BSLASHfnotecite] = ACTIONS(6225), - [anon_sym_BSLASHlabel] = ACTIONS(6225), - [anon_sym_BSLASHref] = ACTIONS(6225), - [anon_sym_BSLASHeqref] = ACTIONS(6225), - [anon_sym_BSLASHvref] = ACTIONS(6225), - [anon_sym_BSLASHVref] = ACTIONS(6225), - [anon_sym_BSLASHautoref] = ACTIONS(6225), - [anon_sym_BSLASHpageref] = ACTIONS(6225), - [anon_sym_BSLASHcref] = ACTIONS(6225), - [anon_sym_BSLASHCref] = ACTIONS(6225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnameCref] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHlabelcref] = ACTIONS(6225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCrefrange] = ACTIONS(6225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnewlabel] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6227), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHdef] = ACTIONS(6225), - [anon_sym_BSLASHlet] = ACTIONS(6225), - [anon_sym_BSLASHleft] = ACTIONS(6225), - [anon_sym_BSLASHbig] = ACTIONS(6225), - [anon_sym_BSLASHBig] = ACTIONS(6225), - [anon_sym_BSLASHbigg] = ACTIONS(6225), - [anon_sym_BSLASHBigg] = ACTIONS(6225), - [anon_sym_BSLASHbigl] = ACTIONS(6225), - [anon_sym_BSLASHBigl] = ACTIONS(6225), - [anon_sym_BSLASHbiggl] = ACTIONS(6225), - [anon_sym_BSLASHBiggl] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6225), - [anon_sym_BSLASHgls] = ACTIONS(6225), - [anon_sym_BSLASHGls] = ACTIONS(6225), - [anon_sym_BSLASHGLS] = ACTIONS(6225), - [anon_sym_BSLASHglspl] = ACTIONS(6225), - [anon_sym_BSLASHGlspl] = ACTIONS(6225), - [anon_sym_BSLASHGLSpl] = ACTIONS(6225), - [anon_sym_BSLASHglsdisp] = ACTIONS(6225), - [anon_sym_BSLASHglslink] = ACTIONS(6225), - [anon_sym_BSLASHglstext] = ACTIONS(6225), - [anon_sym_BSLASHGlstext] = ACTIONS(6225), - [anon_sym_BSLASHGLStext] = ACTIONS(6225), - [anon_sym_BSLASHglsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6225), - [anon_sym_BSLASHglsplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSplural] = ACTIONS(6225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHglsname] = ACTIONS(6225), - [anon_sym_BSLASHGlsname] = ACTIONS(6225), - [anon_sym_BSLASHGLSname] = ACTIONS(6225), - [anon_sym_BSLASHglssymbol] = ACTIONS(6225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6225), - [anon_sym_BSLASHglsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6225), - [anon_sym_BSLASHglsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6225), - [anon_sym_BSLASHglsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6225), - [anon_sym_BSLASHglsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6225), - [anon_sym_BSLASHglsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6225), - [anon_sym_BSLASHnewacronym] = ACTIONS(6225), - [anon_sym_BSLASHacrshort] = ACTIONS(6225), - [anon_sym_BSLASHAcrshort] = ACTIONS(6225), - [anon_sym_BSLASHACRshort] = ACTIONS(6225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6225), - [anon_sym_BSLASHacrlong] = ACTIONS(6225), - [anon_sym_BSLASHAcrlong] = ACTIONS(6225), - [anon_sym_BSLASHACRlong] = ACTIONS(6225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6225), - [anon_sym_BSLASHacrfull] = ACTIONS(6225), - [anon_sym_BSLASHAcrfull] = ACTIONS(6225), - [anon_sym_BSLASHACRfull] = ACTIONS(6225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6225), - [anon_sym_BSLASHacs] = ACTIONS(6225), - [anon_sym_BSLASHAcs] = ACTIONS(6225), - [anon_sym_BSLASHacsp] = ACTIONS(6225), - [anon_sym_BSLASHAcsp] = ACTIONS(6225), - [anon_sym_BSLASHacl] = ACTIONS(6225), - [anon_sym_BSLASHAcl] = ACTIONS(6225), - [anon_sym_BSLASHaclp] = ACTIONS(6225), - [anon_sym_BSLASHAclp] = ACTIONS(6225), - [anon_sym_BSLASHacf] = ACTIONS(6225), - [anon_sym_BSLASHAcf] = ACTIONS(6225), - [anon_sym_BSLASHacfp] = ACTIONS(6225), - [anon_sym_BSLASHAcfp] = ACTIONS(6225), - [anon_sym_BSLASHac] = ACTIONS(6225), - [anon_sym_BSLASHAc] = ACTIONS(6225), - [anon_sym_BSLASHacp] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6225), - [anon_sym_BSLASHcolor] = ACTIONS(6225), - [anon_sym_BSLASHcolorbox] = ACTIONS(6225), - [anon_sym_BSLASHtextcolor] = ACTIONS(6225), - [anon_sym_BSLASHpagecolor] = ACTIONS(6225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6225), - [anon_sym_BSLASHtext] = ACTIONS(6225), - [anon_sym_BSLASHintertext] = ACTIONS(6225), - [anon_sym_shortintertext] = ACTIONS(6225), - }, - [1126] = { - [sym_command_name] = ACTIONS(6229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6229), - [anon_sym_LBRACK] = ACTIONS(6231), - [anon_sym_RBRACK] = ACTIONS(6231), - [anon_sym_COMMA] = ACTIONS(6231), - [anon_sym_EQ] = ACTIONS(6231), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_RPAREN] = ACTIONS(6231), - [anon_sym_BSLASHpart] = ACTIONS(6229), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddpart] = ACTIONS(6229), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6231), - [anon_sym_BSLASHchapter] = ACTIONS(6229), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddchap] = ACTIONS(6229), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsection] = ACTIONS(6229), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddsec] = ACTIONS(6229), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubsection] = ACTIONS(6229), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6229), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHparagraph] = ACTIONS(6229), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6229), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6231), - [anon_sym_BSLASHitem] = ACTIONS(6229), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6231), - [anon_sym_LBRACE] = ACTIONS(6231), - [sym_word] = ACTIONS(6229), - [sym_placeholder] = ACTIONS(6231), - [anon_sym_PLUS] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_SLASH] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(6229), - [anon_sym_GT] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [anon_sym_PIPE] = ACTIONS(6229), - [anon_sym_COLON] = ACTIONS(6229), - [anon_sym_SQUOTE] = ACTIONS(6229), - [anon_sym__] = ACTIONS(6231), - [anon_sym_CARET] = ACTIONS(6231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6231), - [anon_sym_DOLLAR] = ACTIONS(6229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6231), - [anon_sym_BSLASHbegin] = ACTIONS(6229), - [anon_sym_BSLASHend] = ACTIONS(6229), - [anon_sym_BSLASHtitle] = ACTIONS(6229), - [anon_sym_BSLASHauthor] = ACTIONS(6229), - [anon_sym_BSLASHusepackage] = ACTIONS(6229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6229), - [anon_sym_BSLASHinclude] = ACTIONS(6229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6229), - [anon_sym_BSLASHinput] = ACTIONS(6229), - [anon_sym_BSLASHsubfile] = ACTIONS(6229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6229), - [anon_sym_BSLASHbibliography] = ACTIONS(6229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6229), - [anon_sym_BSLASHincludesvg] = ACTIONS(6229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6229), - [anon_sym_BSLASHimport] = ACTIONS(6229), - [anon_sym_BSLASHsubimport] = ACTIONS(6229), - [anon_sym_BSLASHinputfrom] = ACTIONS(6229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6229), - [anon_sym_BSLASHincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHcaption] = ACTIONS(6229), - [anon_sym_BSLASHcite] = ACTIONS(6229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCite] = ACTIONS(6229), - [anon_sym_BSLASHnocite] = ACTIONS(6229), - [anon_sym_BSLASHcitet] = ACTIONS(6229), - [anon_sym_BSLASHcitep] = ACTIONS(6229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteauthor] = ACTIONS(6229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitetitle] = ACTIONS(6229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteyear] = ACTIONS(6229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitedate] = ACTIONS(6229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteurl] = ACTIONS(6229), - [anon_sym_BSLASHfullcite] = ACTIONS(6229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6229), - [anon_sym_BSLASHcitealt] = ACTIONS(6229), - [anon_sym_BSLASHcitealp] = ACTIONS(6229), - [anon_sym_BSLASHcitetext] = ACTIONS(6229), - [anon_sym_BSLASHparencite] = ACTIONS(6229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHParencite] = ACTIONS(6229), - [anon_sym_BSLASHfootcite] = ACTIONS(6229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6229), - [anon_sym_BSLASHtextcite] = ACTIONS(6229), - [anon_sym_BSLASHTextcite] = ACTIONS(6229), - [anon_sym_BSLASHsmartcite] = ACTIONS(6229), - [anon_sym_BSLASHSmartcite] = ACTIONS(6229), - [anon_sym_BSLASHsupercite] = ACTIONS(6229), - [anon_sym_BSLASHautocite] = ACTIONS(6229), - [anon_sym_BSLASHAutocite] = ACTIONS(6229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHvolcite] = ACTIONS(6229), - [anon_sym_BSLASHVolcite] = ACTIONS(6229), - [anon_sym_BSLASHpvolcite] = ACTIONS(6229), - [anon_sym_BSLASHPvolcite] = ACTIONS(6229), - [anon_sym_BSLASHfvolcite] = ACTIONS(6229), - [anon_sym_BSLASHftvolcite] = ACTIONS(6229), - [anon_sym_BSLASHsvolcite] = ACTIONS(6229), - [anon_sym_BSLASHSvolcite] = ACTIONS(6229), - [anon_sym_BSLASHtvolcite] = ACTIONS(6229), - [anon_sym_BSLASHTvolcite] = ACTIONS(6229), - [anon_sym_BSLASHavolcite] = ACTIONS(6229), - [anon_sym_BSLASHAvolcite] = ACTIONS(6229), - [anon_sym_BSLASHnotecite] = ACTIONS(6229), - [anon_sym_BSLASHNotecite] = ACTIONS(6229), - [anon_sym_BSLASHpnotecite] = ACTIONS(6229), - [anon_sym_BSLASHPnotecite] = ACTIONS(6229), - [anon_sym_BSLASHfnotecite] = ACTIONS(6229), - [anon_sym_BSLASHlabel] = ACTIONS(6229), - [anon_sym_BSLASHref] = ACTIONS(6229), - [anon_sym_BSLASHeqref] = ACTIONS(6229), - [anon_sym_BSLASHvref] = ACTIONS(6229), - [anon_sym_BSLASHVref] = ACTIONS(6229), - [anon_sym_BSLASHautoref] = ACTIONS(6229), - [anon_sym_BSLASHpageref] = ACTIONS(6229), - [anon_sym_BSLASHcref] = ACTIONS(6229), - [anon_sym_BSLASHCref] = ACTIONS(6229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnameCref] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHlabelcref] = ACTIONS(6229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCrefrange] = ACTIONS(6229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnewlabel] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6231), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHdef] = ACTIONS(6229), - [anon_sym_BSLASHlet] = ACTIONS(6229), - [anon_sym_BSLASHleft] = ACTIONS(6229), - [anon_sym_BSLASHbig] = ACTIONS(6229), - [anon_sym_BSLASHBig] = ACTIONS(6229), - [anon_sym_BSLASHbigg] = ACTIONS(6229), - [anon_sym_BSLASHBigg] = ACTIONS(6229), - [anon_sym_BSLASHbigl] = ACTIONS(6229), - [anon_sym_BSLASHBigl] = ACTIONS(6229), - [anon_sym_BSLASHbiggl] = ACTIONS(6229), - [anon_sym_BSLASHBiggl] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6229), - [anon_sym_BSLASHgls] = ACTIONS(6229), - [anon_sym_BSLASHGls] = ACTIONS(6229), - [anon_sym_BSLASHGLS] = ACTIONS(6229), - [anon_sym_BSLASHglspl] = ACTIONS(6229), - [anon_sym_BSLASHGlspl] = ACTIONS(6229), - [anon_sym_BSLASHGLSpl] = ACTIONS(6229), - [anon_sym_BSLASHglsdisp] = ACTIONS(6229), - [anon_sym_BSLASHglslink] = ACTIONS(6229), - [anon_sym_BSLASHglstext] = ACTIONS(6229), - [anon_sym_BSLASHGlstext] = ACTIONS(6229), - [anon_sym_BSLASHGLStext] = ACTIONS(6229), - [anon_sym_BSLASHglsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6229), - [anon_sym_BSLASHglsplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSplural] = ACTIONS(6229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHglsname] = ACTIONS(6229), - [anon_sym_BSLASHGlsname] = ACTIONS(6229), - [anon_sym_BSLASHGLSname] = ACTIONS(6229), - [anon_sym_BSLASHglssymbol] = ACTIONS(6229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6229), - [anon_sym_BSLASHglsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6229), - [anon_sym_BSLASHglsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6229), - [anon_sym_BSLASHglsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6229), - [anon_sym_BSLASHglsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6229), - [anon_sym_BSLASHglsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6229), - [anon_sym_BSLASHnewacronym] = ACTIONS(6229), - [anon_sym_BSLASHacrshort] = ACTIONS(6229), - [anon_sym_BSLASHAcrshort] = ACTIONS(6229), - [anon_sym_BSLASHACRshort] = ACTIONS(6229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6229), - [anon_sym_BSLASHacrlong] = ACTIONS(6229), - [anon_sym_BSLASHAcrlong] = ACTIONS(6229), - [anon_sym_BSLASHACRlong] = ACTIONS(6229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6229), - [anon_sym_BSLASHacrfull] = ACTIONS(6229), - [anon_sym_BSLASHAcrfull] = ACTIONS(6229), - [anon_sym_BSLASHACRfull] = ACTIONS(6229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6229), - [anon_sym_BSLASHacs] = ACTIONS(6229), - [anon_sym_BSLASHAcs] = ACTIONS(6229), - [anon_sym_BSLASHacsp] = ACTIONS(6229), - [anon_sym_BSLASHAcsp] = ACTIONS(6229), - [anon_sym_BSLASHacl] = ACTIONS(6229), - [anon_sym_BSLASHAcl] = ACTIONS(6229), - [anon_sym_BSLASHaclp] = ACTIONS(6229), - [anon_sym_BSLASHAclp] = ACTIONS(6229), - [anon_sym_BSLASHacf] = ACTIONS(6229), - [anon_sym_BSLASHAcf] = ACTIONS(6229), - [anon_sym_BSLASHacfp] = ACTIONS(6229), - [anon_sym_BSLASHAcfp] = ACTIONS(6229), - [anon_sym_BSLASHac] = ACTIONS(6229), - [anon_sym_BSLASHAc] = ACTIONS(6229), - [anon_sym_BSLASHacp] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6229), - [anon_sym_BSLASHcolor] = ACTIONS(6229), - [anon_sym_BSLASHcolorbox] = ACTIONS(6229), - [anon_sym_BSLASHtextcolor] = ACTIONS(6229), - [anon_sym_BSLASHpagecolor] = ACTIONS(6229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6229), - [anon_sym_BSLASHtext] = ACTIONS(6229), - [anon_sym_BSLASHintertext] = ACTIONS(6229), - [anon_sym_shortintertext] = ACTIONS(6229), - }, - [1127] = { - [sym_command_name] = ACTIONS(6233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_RBRACK] = ACTIONS(6235), - [anon_sym_COMMA] = ACTIONS(6235), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_LPAREN] = ACTIONS(6235), - [anon_sym_RPAREN] = ACTIONS(6235), - [anon_sym_BSLASHpart] = ACTIONS(6233), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddpart] = ACTIONS(6233), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6235), - [anon_sym_BSLASHchapter] = ACTIONS(6233), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddchap] = ACTIONS(6233), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsection] = ACTIONS(6233), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddsec] = ACTIONS(6233), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubsection] = ACTIONS(6233), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6233), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHparagraph] = ACTIONS(6233), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6233), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6235), - [anon_sym_BSLASHitem] = ACTIONS(6233), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6235), - [anon_sym_LBRACE] = ACTIONS(6235), - [sym_word] = ACTIONS(6233), - [sym_placeholder] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6233), - [anon_sym_BANG] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(6233), - [anon_sym_SQUOTE] = ACTIONS(6233), - [anon_sym__] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6235), - [anon_sym_DOLLAR] = ACTIONS(6233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6235), - [anon_sym_BSLASHbegin] = ACTIONS(6233), - [anon_sym_BSLASHend] = ACTIONS(6233), - [anon_sym_BSLASHtitle] = ACTIONS(6233), - [anon_sym_BSLASHauthor] = ACTIONS(6233), - [anon_sym_BSLASHusepackage] = ACTIONS(6233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6233), - [anon_sym_BSLASHinclude] = ACTIONS(6233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6233), - [anon_sym_BSLASHinput] = ACTIONS(6233), - [anon_sym_BSLASHsubfile] = ACTIONS(6233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6233), - [anon_sym_BSLASHbibliography] = ACTIONS(6233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6233), - [anon_sym_BSLASHincludesvg] = ACTIONS(6233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6233), - [anon_sym_BSLASHimport] = ACTIONS(6233), - [anon_sym_BSLASHsubimport] = ACTIONS(6233), - [anon_sym_BSLASHinputfrom] = ACTIONS(6233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6233), - [anon_sym_BSLASHincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHcaption] = ACTIONS(6233), - [anon_sym_BSLASHcite] = ACTIONS(6233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCite] = ACTIONS(6233), - [anon_sym_BSLASHnocite] = ACTIONS(6233), - [anon_sym_BSLASHcitet] = ACTIONS(6233), - [anon_sym_BSLASHcitep] = ACTIONS(6233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteauthor] = ACTIONS(6233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitetitle] = ACTIONS(6233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteyear] = ACTIONS(6233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitedate] = ACTIONS(6233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteurl] = ACTIONS(6233), - [anon_sym_BSLASHfullcite] = ACTIONS(6233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6233), - [anon_sym_BSLASHcitealt] = ACTIONS(6233), - [anon_sym_BSLASHcitealp] = ACTIONS(6233), - [anon_sym_BSLASHcitetext] = ACTIONS(6233), - [anon_sym_BSLASHparencite] = ACTIONS(6233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHParencite] = ACTIONS(6233), - [anon_sym_BSLASHfootcite] = ACTIONS(6233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6233), - [anon_sym_BSLASHtextcite] = ACTIONS(6233), - [anon_sym_BSLASHTextcite] = ACTIONS(6233), - [anon_sym_BSLASHsmartcite] = ACTIONS(6233), - [anon_sym_BSLASHSmartcite] = ACTIONS(6233), - [anon_sym_BSLASHsupercite] = ACTIONS(6233), - [anon_sym_BSLASHautocite] = ACTIONS(6233), - [anon_sym_BSLASHAutocite] = ACTIONS(6233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHvolcite] = ACTIONS(6233), - [anon_sym_BSLASHVolcite] = ACTIONS(6233), - [anon_sym_BSLASHpvolcite] = ACTIONS(6233), - [anon_sym_BSLASHPvolcite] = ACTIONS(6233), - [anon_sym_BSLASHfvolcite] = ACTIONS(6233), - [anon_sym_BSLASHftvolcite] = ACTIONS(6233), - [anon_sym_BSLASHsvolcite] = ACTIONS(6233), - [anon_sym_BSLASHSvolcite] = ACTIONS(6233), - [anon_sym_BSLASHtvolcite] = ACTIONS(6233), - [anon_sym_BSLASHTvolcite] = ACTIONS(6233), - [anon_sym_BSLASHavolcite] = ACTIONS(6233), - [anon_sym_BSLASHAvolcite] = ACTIONS(6233), - [anon_sym_BSLASHnotecite] = ACTIONS(6233), - [anon_sym_BSLASHNotecite] = ACTIONS(6233), - [anon_sym_BSLASHpnotecite] = ACTIONS(6233), - [anon_sym_BSLASHPnotecite] = ACTIONS(6233), - [anon_sym_BSLASHfnotecite] = ACTIONS(6233), - [anon_sym_BSLASHlabel] = ACTIONS(6233), - [anon_sym_BSLASHref] = ACTIONS(6233), - [anon_sym_BSLASHeqref] = ACTIONS(6233), - [anon_sym_BSLASHvref] = ACTIONS(6233), - [anon_sym_BSLASHVref] = ACTIONS(6233), - [anon_sym_BSLASHautoref] = ACTIONS(6233), - [anon_sym_BSLASHpageref] = ACTIONS(6233), - [anon_sym_BSLASHcref] = ACTIONS(6233), - [anon_sym_BSLASHCref] = ACTIONS(6233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnameCref] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHlabelcref] = ACTIONS(6233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCrefrange] = ACTIONS(6233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnewlabel] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6235), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHdef] = ACTIONS(6233), - [anon_sym_BSLASHlet] = ACTIONS(6233), - [anon_sym_BSLASHleft] = ACTIONS(6233), - [anon_sym_BSLASHbig] = ACTIONS(6233), - [anon_sym_BSLASHBig] = ACTIONS(6233), - [anon_sym_BSLASHbigg] = ACTIONS(6233), - [anon_sym_BSLASHBigg] = ACTIONS(6233), - [anon_sym_BSLASHbigl] = ACTIONS(6233), - [anon_sym_BSLASHBigl] = ACTIONS(6233), - [anon_sym_BSLASHbiggl] = ACTIONS(6233), - [anon_sym_BSLASHBiggl] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6233), - [anon_sym_BSLASHgls] = ACTIONS(6233), - [anon_sym_BSLASHGls] = ACTIONS(6233), - [anon_sym_BSLASHGLS] = ACTIONS(6233), - [anon_sym_BSLASHglspl] = ACTIONS(6233), - [anon_sym_BSLASHGlspl] = ACTIONS(6233), - [anon_sym_BSLASHGLSpl] = ACTIONS(6233), - [anon_sym_BSLASHglsdisp] = ACTIONS(6233), - [anon_sym_BSLASHglslink] = ACTIONS(6233), - [anon_sym_BSLASHglstext] = ACTIONS(6233), - [anon_sym_BSLASHGlstext] = ACTIONS(6233), - [anon_sym_BSLASHGLStext] = ACTIONS(6233), - [anon_sym_BSLASHglsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6233), - [anon_sym_BSLASHglsplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSplural] = ACTIONS(6233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHglsname] = ACTIONS(6233), - [anon_sym_BSLASHGlsname] = ACTIONS(6233), - [anon_sym_BSLASHGLSname] = ACTIONS(6233), - [anon_sym_BSLASHglssymbol] = ACTIONS(6233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6233), - [anon_sym_BSLASHglsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6233), - [anon_sym_BSLASHglsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6233), - [anon_sym_BSLASHglsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6233), - [anon_sym_BSLASHglsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6233), - [anon_sym_BSLASHglsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6233), - [anon_sym_BSLASHnewacronym] = ACTIONS(6233), - [anon_sym_BSLASHacrshort] = ACTIONS(6233), - [anon_sym_BSLASHAcrshort] = ACTIONS(6233), - [anon_sym_BSLASHACRshort] = ACTIONS(6233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6233), - [anon_sym_BSLASHacrlong] = ACTIONS(6233), - [anon_sym_BSLASHAcrlong] = ACTIONS(6233), - [anon_sym_BSLASHACRlong] = ACTIONS(6233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6233), - [anon_sym_BSLASHacrfull] = ACTIONS(6233), - [anon_sym_BSLASHAcrfull] = ACTIONS(6233), - [anon_sym_BSLASHACRfull] = ACTIONS(6233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6233), - [anon_sym_BSLASHacs] = ACTIONS(6233), - [anon_sym_BSLASHAcs] = ACTIONS(6233), - [anon_sym_BSLASHacsp] = ACTIONS(6233), - [anon_sym_BSLASHAcsp] = ACTIONS(6233), - [anon_sym_BSLASHacl] = ACTIONS(6233), - [anon_sym_BSLASHAcl] = ACTIONS(6233), - [anon_sym_BSLASHaclp] = ACTIONS(6233), - [anon_sym_BSLASHAclp] = ACTIONS(6233), - [anon_sym_BSLASHacf] = ACTIONS(6233), - [anon_sym_BSLASHAcf] = ACTIONS(6233), - [anon_sym_BSLASHacfp] = ACTIONS(6233), - [anon_sym_BSLASHAcfp] = ACTIONS(6233), - [anon_sym_BSLASHac] = ACTIONS(6233), - [anon_sym_BSLASHAc] = ACTIONS(6233), - [anon_sym_BSLASHacp] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6233), - [anon_sym_BSLASHcolor] = ACTIONS(6233), - [anon_sym_BSLASHcolorbox] = ACTIONS(6233), - [anon_sym_BSLASHtextcolor] = ACTIONS(6233), - [anon_sym_BSLASHpagecolor] = ACTIONS(6233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6233), - [anon_sym_BSLASHtext] = ACTIONS(6233), - [anon_sym_BSLASHintertext] = ACTIONS(6233), - [anon_sym_shortintertext] = ACTIONS(6233), - }, - [1128] = { - [sym_command_name] = ACTIONS(6121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6121), - [anon_sym_LBRACK] = ACTIONS(6123), - [anon_sym_RBRACK] = ACTIONS(6123), - [anon_sym_COMMA] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(6123), - [anon_sym_LPAREN] = ACTIONS(6123), - [anon_sym_RPAREN] = ACTIONS(6123), - [anon_sym_BSLASHpart] = ACTIONS(6121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddpart] = ACTIONS(6121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6123), - [anon_sym_BSLASHchapter] = ACTIONS(6121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddchap] = ACTIONS(6121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsection] = ACTIONS(6121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddsec] = ACTIONS(6121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubsection] = ACTIONS(6121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHparagraph] = ACTIONS(6121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6123), - [anon_sym_BSLASHitem] = ACTIONS(6121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6123), - [anon_sym_LBRACE] = ACTIONS(6123), - [sym_word] = ACTIONS(6121), - [sym_placeholder] = ACTIONS(6123), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6123), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_LT] = ACTIONS(6121), - [anon_sym_GT] = ACTIONS(6121), - [anon_sym_BANG] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_SQUOTE] = ACTIONS(6121), - [anon_sym__] = ACTIONS(6123), - [anon_sym_CARET] = ACTIONS(6123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6123), - [anon_sym_DOLLAR] = ACTIONS(6121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6123), - [anon_sym_BSLASHbegin] = ACTIONS(6121), - [anon_sym_BSLASHend] = ACTIONS(6121), - [anon_sym_BSLASHtitle] = ACTIONS(6121), - [anon_sym_BSLASHauthor] = ACTIONS(6121), - [anon_sym_BSLASHusepackage] = ACTIONS(6121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6121), - [anon_sym_BSLASHinclude] = ACTIONS(6121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6121), - [anon_sym_BSLASHinput] = ACTIONS(6121), - [anon_sym_BSLASHsubfile] = ACTIONS(6121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6121), - [anon_sym_BSLASHbibliography] = ACTIONS(6121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6121), - [anon_sym_BSLASHincludesvg] = ACTIONS(6121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6121), - [anon_sym_BSLASHimport] = ACTIONS(6121), - [anon_sym_BSLASHsubimport] = ACTIONS(6121), - [anon_sym_BSLASHinputfrom] = ACTIONS(6121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6121), - [anon_sym_BSLASHincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHcaption] = ACTIONS(6121), - [anon_sym_BSLASHcite] = ACTIONS(6121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCite] = ACTIONS(6121), - [anon_sym_BSLASHnocite] = ACTIONS(6121), - [anon_sym_BSLASHcitet] = ACTIONS(6121), - [anon_sym_BSLASHcitep] = ACTIONS(6121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteauthor] = ACTIONS(6121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitetitle] = ACTIONS(6121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteyear] = ACTIONS(6121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitedate] = ACTIONS(6121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteurl] = ACTIONS(6121), - [anon_sym_BSLASHfullcite] = ACTIONS(6121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6121), - [anon_sym_BSLASHcitealt] = ACTIONS(6121), - [anon_sym_BSLASHcitealp] = ACTIONS(6121), - [anon_sym_BSLASHcitetext] = ACTIONS(6121), - [anon_sym_BSLASHparencite] = ACTIONS(6121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHParencite] = ACTIONS(6121), - [anon_sym_BSLASHfootcite] = ACTIONS(6121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6121), - [anon_sym_BSLASHtextcite] = ACTIONS(6121), - [anon_sym_BSLASHTextcite] = ACTIONS(6121), - [anon_sym_BSLASHsmartcite] = ACTIONS(6121), - [anon_sym_BSLASHSmartcite] = ACTIONS(6121), - [anon_sym_BSLASHsupercite] = ACTIONS(6121), - [anon_sym_BSLASHautocite] = ACTIONS(6121), - [anon_sym_BSLASHAutocite] = ACTIONS(6121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHvolcite] = ACTIONS(6121), - [anon_sym_BSLASHVolcite] = ACTIONS(6121), - [anon_sym_BSLASHpvolcite] = ACTIONS(6121), - [anon_sym_BSLASHPvolcite] = ACTIONS(6121), - [anon_sym_BSLASHfvolcite] = ACTIONS(6121), - [anon_sym_BSLASHftvolcite] = ACTIONS(6121), - [anon_sym_BSLASHsvolcite] = ACTIONS(6121), - [anon_sym_BSLASHSvolcite] = ACTIONS(6121), - [anon_sym_BSLASHtvolcite] = ACTIONS(6121), - [anon_sym_BSLASHTvolcite] = ACTIONS(6121), - [anon_sym_BSLASHavolcite] = ACTIONS(6121), - [anon_sym_BSLASHAvolcite] = ACTIONS(6121), - [anon_sym_BSLASHnotecite] = ACTIONS(6121), - [anon_sym_BSLASHNotecite] = ACTIONS(6121), - [anon_sym_BSLASHpnotecite] = ACTIONS(6121), - [anon_sym_BSLASHPnotecite] = ACTIONS(6121), - [anon_sym_BSLASHfnotecite] = ACTIONS(6121), - [anon_sym_BSLASHlabel] = ACTIONS(6121), - [anon_sym_BSLASHref] = ACTIONS(6121), - [anon_sym_BSLASHeqref] = ACTIONS(6121), - [anon_sym_BSLASHvref] = ACTIONS(6121), - [anon_sym_BSLASHVref] = ACTIONS(6121), - [anon_sym_BSLASHautoref] = ACTIONS(6121), - [anon_sym_BSLASHpageref] = ACTIONS(6121), - [anon_sym_BSLASHcref] = ACTIONS(6121), - [anon_sym_BSLASHCref] = ACTIONS(6121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnameCref] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHlabelcref] = ACTIONS(6121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCrefrange] = ACTIONS(6121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnewlabel] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6123), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHdef] = ACTIONS(6121), - [anon_sym_BSLASHlet] = ACTIONS(6121), - [anon_sym_BSLASHleft] = ACTIONS(6121), - [anon_sym_BSLASHbig] = ACTIONS(6121), - [anon_sym_BSLASHBig] = ACTIONS(6121), - [anon_sym_BSLASHbigg] = ACTIONS(6121), - [anon_sym_BSLASHBigg] = ACTIONS(6121), - [anon_sym_BSLASHbigl] = ACTIONS(6121), - [anon_sym_BSLASHBigl] = ACTIONS(6121), - [anon_sym_BSLASHbiggl] = ACTIONS(6121), - [anon_sym_BSLASHBiggl] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6121), - [anon_sym_BSLASHgls] = ACTIONS(6121), - [anon_sym_BSLASHGls] = ACTIONS(6121), - [anon_sym_BSLASHGLS] = ACTIONS(6121), - [anon_sym_BSLASHglspl] = ACTIONS(6121), - [anon_sym_BSLASHGlspl] = ACTIONS(6121), - [anon_sym_BSLASHGLSpl] = ACTIONS(6121), - [anon_sym_BSLASHglsdisp] = ACTIONS(6121), - [anon_sym_BSLASHglslink] = ACTIONS(6121), - [anon_sym_BSLASHglstext] = ACTIONS(6121), - [anon_sym_BSLASHGlstext] = ACTIONS(6121), - [anon_sym_BSLASHGLStext] = ACTIONS(6121), - [anon_sym_BSLASHglsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6121), - [anon_sym_BSLASHglsplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSplural] = ACTIONS(6121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHglsname] = ACTIONS(6121), - [anon_sym_BSLASHGlsname] = ACTIONS(6121), - [anon_sym_BSLASHGLSname] = ACTIONS(6121), - [anon_sym_BSLASHglssymbol] = ACTIONS(6121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6121), - [anon_sym_BSLASHglsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6121), - [anon_sym_BSLASHglsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6121), - [anon_sym_BSLASHglsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6121), - [anon_sym_BSLASHglsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6121), - [anon_sym_BSLASHglsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6121), - [anon_sym_BSLASHnewacronym] = ACTIONS(6121), - [anon_sym_BSLASHacrshort] = ACTIONS(6121), - [anon_sym_BSLASHAcrshort] = ACTIONS(6121), - [anon_sym_BSLASHACRshort] = ACTIONS(6121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6121), - [anon_sym_BSLASHacrlong] = ACTIONS(6121), - [anon_sym_BSLASHAcrlong] = ACTIONS(6121), - [anon_sym_BSLASHACRlong] = ACTIONS(6121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6121), - [anon_sym_BSLASHacrfull] = ACTIONS(6121), - [anon_sym_BSLASHAcrfull] = ACTIONS(6121), - [anon_sym_BSLASHACRfull] = ACTIONS(6121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6121), - [anon_sym_BSLASHacs] = ACTIONS(6121), - [anon_sym_BSLASHAcs] = ACTIONS(6121), - [anon_sym_BSLASHacsp] = ACTIONS(6121), - [anon_sym_BSLASHAcsp] = ACTIONS(6121), - [anon_sym_BSLASHacl] = ACTIONS(6121), - [anon_sym_BSLASHAcl] = ACTIONS(6121), - [anon_sym_BSLASHaclp] = ACTIONS(6121), - [anon_sym_BSLASHAclp] = ACTIONS(6121), - [anon_sym_BSLASHacf] = ACTIONS(6121), - [anon_sym_BSLASHAcf] = ACTIONS(6121), - [anon_sym_BSLASHacfp] = ACTIONS(6121), - [anon_sym_BSLASHAcfp] = ACTIONS(6121), - [anon_sym_BSLASHac] = ACTIONS(6121), - [anon_sym_BSLASHAc] = ACTIONS(6121), - [anon_sym_BSLASHacp] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6121), - [anon_sym_BSLASHcolor] = ACTIONS(6121), - [anon_sym_BSLASHcolorbox] = ACTIONS(6121), - [anon_sym_BSLASHtextcolor] = ACTIONS(6121), - [anon_sym_BSLASHpagecolor] = ACTIONS(6121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6121), - [anon_sym_BSLASHtext] = ACTIONS(6121), - [anon_sym_BSLASHintertext] = ACTIONS(6121), - [anon_sym_shortintertext] = ACTIONS(6121), - }, - [1129] = { - [sym_command_name] = ACTIONS(6189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6189), - [anon_sym_LBRACK] = ACTIONS(6191), - [anon_sym_RBRACK] = ACTIONS(6191), - [anon_sym_COMMA] = ACTIONS(6191), - [anon_sym_EQ] = ACTIONS(6191), - [anon_sym_LPAREN] = ACTIONS(6191), - [anon_sym_RPAREN] = ACTIONS(6191), - [anon_sym_BSLASHpart] = ACTIONS(6189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddpart] = ACTIONS(6189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6191), - [anon_sym_BSLASHchapter] = ACTIONS(6189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddchap] = ACTIONS(6189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsection] = ACTIONS(6189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddsec] = ACTIONS(6189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubsection] = ACTIONS(6189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHparagraph] = ACTIONS(6189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6191), - [anon_sym_BSLASHitem] = ACTIONS(6189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6191), - [anon_sym_LBRACE] = ACTIONS(6191), - [sym_word] = ACTIONS(6189), - [sym_placeholder] = ACTIONS(6191), - [anon_sym_PLUS] = ACTIONS(6191), - [anon_sym_DASH] = ACTIONS(6191), - [anon_sym_STAR] = ACTIONS(6191), - [anon_sym_SLASH] = ACTIONS(6191), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_COLON] = ACTIONS(6189), - [anon_sym_SQUOTE] = ACTIONS(6189), - [anon_sym__] = ACTIONS(6191), - [anon_sym_CARET] = ACTIONS(6191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), - [anon_sym_DOLLAR] = ACTIONS(6189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6191), - [anon_sym_BSLASHbegin] = ACTIONS(6189), - [anon_sym_BSLASHtitle] = ACTIONS(6189), - [anon_sym_BSLASHauthor] = ACTIONS(6189), - [anon_sym_BSLASHusepackage] = ACTIONS(6189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), - [anon_sym_BSLASHinclude] = ACTIONS(6189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), - [anon_sym_BSLASHinput] = ACTIONS(6189), - [anon_sym_BSLASHsubfile] = ACTIONS(6189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), - [anon_sym_BSLASHbibliography] = ACTIONS(6189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), - [anon_sym_BSLASHincludesvg] = ACTIONS(6189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), - [anon_sym_BSLASHimport] = ACTIONS(6189), - [anon_sym_BSLASHsubimport] = ACTIONS(6189), - [anon_sym_BSLASHinputfrom] = ACTIONS(6189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), - [anon_sym_BSLASHincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHcaption] = ACTIONS(6189), - [anon_sym_BSLASHcite] = ACTIONS(6189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCite] = ACTIONS(6189), - [anon_sym_BSLASHnocite] = ACTIONS(6189), - [anon_sym_BSLASHcitet] = ACTIONS(6189), - [anon_sym_BSLASHcitep] = ACTIONS(6189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteauthor] = ACTIONS(6189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitetitle] = ACTIONS(6189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteyear] = ACTIONS(6189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitedate] = ACTIONS(6189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteurl] = ACTIONS(6189), - [anon_sym_BSLASHfullcite] = ACTIONS(6189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), - [anon_sym_BSLASHcitealt] = ACTIONS(6189), - [anon_sym_BSLASHcitealp] = ACTIONS(6189), - [anon_sym_BSLASHcitetext] = ACTIONS(6189), - [anon_sym_BSLASHparencite] = ACTIONS(6189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHParencite] = ACTIONS(6189), - [anon_sym_BSLASHfootcite] = ACTIONS(6189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), - [anon_sym_BSLASHtextcite] = ACTIONS(6189), - [anon_sym_BSLASHTextcite] = ACTIONS(6189), - [anon_sym_BSLASHsmartcite] = ACTIONS(6189), - [anon_sym_BSLASHSmartcite] = ACTIONS(6189), - [anon_sym_BSLASHsupercite] = ACTIONS(6189), - [anon_sym_BSLASHautocite] = ACTIONS(6189), - [anon_sym_BSLASHAutocite] = ACTIONS(6189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHvolcite] = ACTIONS(6189), - [anon_sym_BSLASHVolcite] = ACTIONS(6189), - [anon_sym_BSLASHpvolcite] = ACTIONS(6189), - [anon_sym_BSLASHPvolcite] = ACTIONS(6189), - [anon_sym_BSLASHfvolcite] = ACTIONS(6189), - [anon_sym_BSLASHftvolcite] = ACTIONS(6189), - [anon_sym_BSLASHsvolcite] = ACTIONS(6189), - [anon_sym_BSLASHSvolcite] = ACTIONS(6189), - [anon_sym_BSLASHtvolcite] = ACTIONS(6189), - [anon_sym_BSLASHTvolcite] = ACTIONS(6189), - [anon_sym_BSLASHavolcite] = ACTIONS(6189), - [anon_sym_BSLASHAvolcite] = ACTIONS(6189), - [anon_sym_BSLASHnotecite] = ACTIONS(6189), - [anon_sym_BSLASHNotecite] = ACTIONS(6189), - [anon_sym_BSLASHpnotecite] = ACTIONS(6189), - [anon_sym_BSLASHPnotecite] = ACTIONS(6189), - [anon_sym_BSLASHfnotecite] = ACTIONS(6189), - [anon_sym_BSLASHlabel] = ACTIONS(6189), - [anon_sym_BSLASHref] = ACTIONS(6189), - [anon_sym_BSLASHeqref] = ACTIONS(6189), - [anon_sym_BSLASHvref] = ACTIONS(6189), - [anon_sym_BSLASHVref] = ACTIONS(6189), - [anon_sym_BSLASHautoref] = ACTIONS(6189), - [anon_sym_BSLASHpageref] = ACTIONS(6189), - [anon_sym_BSLASHcref] = ACTIONS(6189), - [anon_sym_BSLASHCref] = ACTIONS(6189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnameCref] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHlabelcref] = ACTIONS(6189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCrefrange] = ACTIONS(6189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnewlabel] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHdef] = ACTIONS(6189), - [anon_sym_BSLASHlet] = ACTIONS(6189), - [anon_sym_BSLASHleft] = ACTIONS(6189), - [anon_sym_BSLASHbig] = ACTIONS(6189), - [anon_sym_BSLASHBig] = ACTIONS(6189), - [anon_sym_BSLASHbigg] = ACTIONS(6189), - [anon_sym_BSLASHBigg] = ACTIONS(6189), - [anon_sym_BSLASHbigl] = ACTIONS(6189), - [anon_sym_BSLASHBigl] = ACTIONS(6189), - [anon_sym_BSLASHbiggl] = ACTIONS(6189), - [anon_sym_BSLASHBiggl] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), - [anon_sym_BSLASHgls] = ACTIONS(6189), - [anon_sym_BSLASHGls] = ACTIONS(6189), - [anon_sym_BSLASHGLS] = ACTIONS(6189), - [anon_sym_BSLASHglspl] = ACTIONS(6189), - [anon_sym_BSLASHGlspl] = ACTIONS(6189), - [anon_sym_BSLASHGLSpl] = ACTIONS(6189), - [anon_sym_BSLASHglsdisp] = ACTIONS(6189), - [anon_sym_BSLASHglslink] = ACTIONS(6189), - [anon_sym_BSLASHglstext] = ACTIONS(6189), - [anon_sym_BSLASHGlstext] = ACTIONS(6189), - [anon_sym_BSLASHGLStext] = ACTIONS(6189), - [anon_sym_BSLASHglsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), - [anon_sym_BSLASHglsplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSplural] = ACTIONS(6189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHglsname] = ACTIONS(6189), - [anon_sym_BSLASHGlsname] = ACTIONS(6189), - [anon_sym_BSLASHGLSname] = ACTIONS(6189), - [anon_sym_BSLASHglssymbol] = ACTIONS(6189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), - [anon_sym_BSLASHglsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), - [anon_sym_BSLASHglsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), - [anon_sym_BSLASHglsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), - [anon_sym_BSLASHglsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), - [anon_sym_BSLASHglsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), - [anon_sym_BSLASHnewacronym] = ACTIONS(6189), - [anon_sym_BSLASHacrshort] = ACTIONS(6189), - [anon_sym_BSLASHAcrshort] = ACTIONS(6189), - [anon_sym_BSLASHACRshort] = ACTIONS(6189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), - [anon_sym_BSLASHacrlong] = ACTIONS(6189), - [anon_sym_BSLASHAcrlong] = ACTIONS(6189), - [anon_sym_BSLASHACRlong] = ACTIONS(6189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), - [anon_sym_BSLASHacrfull] = ACTIONS(6189), - [anon_sym_BSLASHAcrfull] = ACTIONS(6189), - [anon_sym_BSLASHACRfull] = ACTIONS(6189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), - [anon_sym_BSLASHacs] = ACTIONS(6189), - [anon_sym_BSLASHAcs] = ACTIONS(6189), - [anon_sym_BSLASHacsp] = ACTIONS(6189), - [anon_sym_BSLASHAcsp] = ACTIONS(6189), - [anon_sym_BSLASHacl] = ACTIONS(6189), - [anon_sym_BSLASHAcl] = ACTIONS(6189), - [anon_sym_BSLASHaclp] = ACTIONS(6189), - [anon_sym_BSLASHAclp] = ACTIONS(6189), - [anon_sym_BSLASHacf] = ACTIONS(6189), - [anon_sym_BSLASHAcf] = ACTIONS(6189), - [anon_sym_BSLASHacfp] = ACTIONS(6189), - [anon_sym_BSLASHAcfp] = ACTIONS(6189), - [anon_sym_BSLASHac] = ACTIONS(6189), - [anon_sym_BSLASHAc] = ACTIONS(6189), - [anon_sym_BSLASHacp] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), - [anon_sym_BSLASHcolor] = ACTIONS(6189), - [anon_sym_BSLASHcolorbox] = ACTIONS(6189), - [anon_sym_BSLASHtextcolor] = ACTIONS(6189), - [anon_sym_BSLASHpagecolor] = ACTIONS(6189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), - [anon_sym_BSLASHtext] = ACTIONS(6189), - [anon_sym_BSLASHintertext] = ACTIONS(6189), - [anon_sym_shortintertext] = ACTIONS(6189), - }, - [1130] = { - [sym_command_name] = ACTIONS(6153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6153), - [anon_sym_LBRACK] = ACTIONS(6155), - [anon_sym_RBRACK] = ACTIONS(6155), - [anon_sym_COMMA] = ACTIONS(6155), - [anon_sym_EQ] = ACTIONS(6155), - [anon_sym_LPAREN] = ACTIONS(6155), - [anon_sym_RPAREN] = ACTIONS(6155), - [anon_sym_BSLASHpart] = ACTIONS(6153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddpart] = ACTIONS(6153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6155), - [anon_sym_BSLASHchapter] = ACTIONS(6153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddchap] = ACTIONS(6153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsection] = ACTIONS(6153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddsec] = ACTIONS(6153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubsection] = ACTIONS(6153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHparagraph] = ACTIONS(6153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6155), - [anon_sym_BSLASHitem] = ACTIONS(6153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6155), - [anon_sym_LBRACE] = ACTIONS(6155), - [sym_word] = ACTIONS(6153), - [sym_placeholder] = ACTIONS(6155), - [anon_sym_PLUS] = ACTIONS(6155), - [anon_sym_DASH] = ACTIONS(6155), - [anon_sym_STAR] = ACTIONS(6155), - [anon_sym_SLASH] = ACTIONS(6155), - [anon_sym_LT] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6153), - [anon_sym_BANG] = ACTIONS(6153), - [anon_sym_PIPE] = ACTIONS(6153), - [anon_sym_COLON] = ACTIONS(6153), - [anon_sym_SQUOTE] = ACTIONS(6153), - [anon_sym__] = ACTIONS(6155), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6155), - [anon_sym_DOLLAR] = ACTIONS(6153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6155), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6155), - [anon_sym_BSLASHbegin] = ACTIONS(6153), - [anon_sym_BSLASHtitle] = ACTIONS(6153), - [anon_sym_BSLASHauthor] = ACTIONS(6153), - [anon_sym_BSLASHusepackage] = ACTIONS(6153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6153), - [anon_sym_BSLASHinclude] = ACTIONS(6153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6153), - [anon_sym_BSLASHinput] = ACTIONS(6153), - [anon_sym_BSLASHsubfile] = ACTIONS(6153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6153), - [anon_sym_BSLASHbibliography] = ACTIONS(6153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6153), - [anon_sym_BSLASHincludesvg] = ACTIONS(6153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6153), - [anon_sym_BSLASHimport] = ACTIONS(6153), - [anon_sym_BSLASHsubimport] = ACTIONS(6153), - [anon_sym_BSLASHinputfrom] = ACTIONS(6153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6153), - [anon_sym_BSLASHincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHcaption] = ACTIONS(6153), - [anon_sym_BSLASHcite] = ACTIONS(6153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCite] = ACTIONS(6153), - [anon_sym_BSLASHnocite] = ACTIONS(6153), - [anon_sym_BSLASHcitet] = ACTIONS(6153), - [anon_sym_BSLASHcitep] = ACTIONS(6153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteauthor] = ACTIONS(6153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitetitle] = ACTIONS(6153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteyear] = ACTIONS(6153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitedate] = ACTIONS(6153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteurl] = ACTIONS(6153), - [anon_sym_BSLASHfullcite] = ACTIONS(6153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6153), - [anon_sym_BSLASHcitealt] = ACTIONS(6153), - [anon_sym_BSLASHcitealp] = ACTIONS(6153), - [anon_sym_BSLASHcitetext] = ACTIONS(6153), - [anon_sym_BSLASHparencite] = ACTIONS(6153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHParencite] = ACTIONS(6153), - [anon_sym_BSLASHfootcite] = ACTIONS(6153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6153), - [anon_sym_BSLASHtextcite] = ACTIONS(6153), - [anon_sym_BSLASHTextcite] = ACTIONS(6153), - [anon_sym_BSLASHsmartcite] = ACTIONS(6153), - [anon_sym_BSLASHSmartcite] = ACTIONS(6153), - [anon_sym_BSLASHsupercite] = ACTIONS(6153), - [anon_sym_BSLASHautocite] = ACTIONS(6153), - [anon_sym_BSLASHAutocite] = ACTIONS(6153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHvolcite] = ACTIONS(6153), - [anon_sym_BSLASHVolcite] = ACTIONS(6153), - [anon_sym_BSLASHpvolcite] = ACTIONS(6153), - [anon_sym_BSLASHPvolcite] = ACTIONS(6153), - [anon_sym_BSLASHfvolcite] = ACTIONS(6153), - [anon_sym_BSLASHftvolcite] = ACTIONS(6153), - [anon_sym_BSLASHsvolcite] = ACTIONS(6153), - [anon_sym_BSLASHSvolcite] = ACTIONS(6153), - [anon_sym_BSLASHtvolcite] = ACTIONS(6153), - [anon_sym_BSLASHTvolcite] = ACTIONS(6153), - [anon_sym_BSLASHavolcite] = ACTIONS(6153), - [anon_sym_BSLASHAvolcite] = ACTIONS(6153), - [anon_sym_BSLASHnotecite] = ACTIONS(6153), - [anon_sym_BSLASHNotecite] = ACTIONS(6153), - [anon_sym_BSLASHpnotecite] = ACTIONS(6153), - [anon_sym_BSLASHPnotecite] = ACTIONS(6153), - [anon_sym_BSLASHfnotecite] = ACTIONS(6153), - [anon_sym_BSLASHlabel] = ACTIONS(6153), - [anon_sym_BSLASHref] = ACTIONS(6153), - [anon_sym_BSLASHeqref] = ACTIONS(6153), - [anon_sym_BSLASHvref] = ACTIONS(6153), - [anon_sym_BSLASHVref] = ACTIONS(6153), - [anon_sym_BSLASHautoref] = ACTIONS(6153), - [anon_sym_BSLASHpageref] = ACTIONS(6153), - [anon_sym_BSLASHcref] = ACTIONS(6153), - [anon_sym_BSLASHCref] = ACTIONS(6153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnameCref] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHlabelcref] = ACTIONS(6153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCrefrange] = ACTIONS(6153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnewlabel] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6155), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHdef] = ACTIONS(6153), - [anon_sym_BSLASHlet] = ACTIONS(6153), - [anon_sym_BSLASHleft] = ACTIONS(6153), - [anon_sym_BSLASHbig] = ACTIONS(6153), - [anon_sym_BSLASHBig] = ACTIONS(6153), - [anon_sym_BSLASHbigg] = ACTIONS(6153), - [anon_sym_BSLASHBigg] = ACTIONS(6153), - [anon_sym_BSLASHbigl] = ACTIONS(6153), - [anon_sym_BSLASHBigl] = ACTIONS(6153), - [anon_sym_BSLASHbiggl] = ACTIONS(6153), - [anon_sym_BSLASHBiggl] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6153), - [anon_sym_BSLASHgls] = ACTIONS(6153), - [anon_sym_BSLASHGls] = ACTIONS(6153), - [anon_sym_BSLASHGLS] = ACTIONS(6153), - [anon_sym_BSLASHglspl] = ACTIONS(6153), - [anon_sym_BSLASHGlspl] = ACTIONS(6153), - [anon_sym_BSLASHGLSpl] = ACTIONS(6153), - [anon_sym_BSLASHglsdisp] = ACTIONS(6153), - [anon_sym_BSLASHglslink] = ACTIONS(6153), - [anon_sym_BSLASHglstext] = ACTIONS(6153), - [anon_sym_BSLASHGlstext] = ACTIONS(6153), - [anon_sym_BSLASHGLStext] = ACTIONS(6153), - [anon_sym_BSLASHglsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6153), - [anon_sym_BSLASHglsplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSplural] = ACTIONS(6153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHglsname] = ACTIONS(6153), - [anon_sym_BSLASHGlsname] = ACTIONS(6153), - [anon_sym_BSLASHGLSname] = ACTIONS(6153), - [anon_sym_BSLASHglssymbol] = ACTIONS(6153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6153), - [anon_sym_BSLASHglsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6153), - [anon_sym_BSLASHglsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6153), - [anon_sym_BSLASHglsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6153), - [anon_sym_BSLASHglsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6153), - [anon_sym_BSLASHglsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6153), - [anon_sym_BSLASHnewacronym] = ACTIONS(6153), - [anon_sym_BSLASHacrshort] = ACTIONS(6153), - [anon_sym_BSLASHAcrshort] = ACTIONS(6153), - [anon_sym_BSLASHACRshort] = ACTIONS(6153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6153), - [anon_sym_BSLASHacrlong] = ACTIONS(6153), - [anon_sym_BSLASHAcrlong] = ACTIONS(6153), - [anon_sym_BSLASHACRlong] = ACTIONS(6153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6153), - [anon_sym_BSLASHacrfull] = ACTIONS(6153), - [anon_sym_BSLASHAcrfull] = ACTIONS(6153), - [anon_sym_BSLASHACRfull] = ACTIONS(6153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6153), - [anon_sym_BSLASHacs] = ACTIONS(6153), - [anon_sym_BSLASHAcs] = ACTIONS(6153), - [anon_sym_BSLASHacsp] = ACTIONS(6153), - [anon_sym_BSLASHAcsp] = ACTIONS(6153), - [anon_sym_BSLASHacl] = ACTIONS(6153), - [anon_sym_BSLASHAcl] = ACTIONS(6153), - [anon_sym_BSLASHaclp] = ACTIONS(6153), - [anon_sym_BSLASHAclp] = ACTIONS(6153), - [anon_sym_BSLASHacf] = ACTIONS(6153), - [anon_sym_BSLASHAcf] = ACTIONS(6153), - [anon_sym_BSLASHacfp] = ACTIONS(6153), - [anon_sym_BSLASHAcfp] = ACTIONS(6153), - [anon_sym_BSLASHac] = ACTIONS(6153), - [anon_sym_BSLASHAc] = ACTIONS(6153), - [anon_sym_BSLASHacp] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6153), - [anon_sym_BSLASHcolor] = ACTIONS(6153), - [anon_sym_BSLASHcolorbox] = ACTIONS(6153), - [anon_sym_BSLASHtextcolor] = ACTIONS(6153), - [anon_sym_BSLASHpagecolor] = ACTIONS(6153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6153), - [anon_sym_BSLASHtext] = ACTIONS(6153), - [anon_sym_BSLASHintertext] = ACTIONS(6153), - [anon_sym_shortintertext] = ACTIONS(6153), - }, - [1131] = { - [sym_command_name] = ACTIONS(6149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6149), - [anon_sym_LBRACK] = ACTIONS(6151), - [anon_sym_RBRACK] = ACTIONS(6151), - [anon_sym_COMMA] = ACTIONS(6151), - [anon_sym_EQ] = ACTIONS(6151), - [anon_sym_LPAREN] = ACTIONS(6151), - [anon_sym_RPAREN] = ACTIONS(6151), - [anon_sym_BSLASHpart] = ACTIONS(6149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddpart] = ACTIONS(6149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6151), - [anon_sym_BSLASHchapter] = ACTIONS(6149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddchap] = ACTIONS(6149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsection] = ACTIONS(6149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddsec] = ACTIONS(6149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubsection] = ACTIONS(6149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHparagraph] = ACTIONS(6149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6151), - [anon_sym_BSLASHitem] = ACTIONS(6149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6151), - [anon_sym_LBRACE] = ACTIONS(6151), - [sym_word] = ACTIONS(6149), - [sym_placeholder] = ACTIONS(6151), - [anon_sym_PLUS] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6151), - [anon_sym_STAR] = ACTIONS(6151), - [anon_sym_SLASH] = ACTIONS(6151), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_BANG] = ACTIONS(6149), - [anon_sym_PIPE] = ACTIONS(6149), - [anon_sym_COLON] = ACTIONS(6149), - [anon_sym_SQUOTE] = ACTIONS(6149), - [anon_sym__] = ACTIONS(6151), - [anon_sym_CARET] = ACTIONS(6151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6151), - [anon_sym_DOLLAR] = ACTIONS(6149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6151), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6151), - [anon_sym_BSLASHbegin] = ACTIONS(6149), - [anon_sym_BSLASHtitle] = ACTIONS(6149), - [anon_sym_BSLASHauthor] = ACTIONS(6149), - [anon_sym_BSLASHusepackage] = ACTIONS(6149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6149), - [anon_sym_BSLASHinclude] = ACTIONS(6149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6149), - [anon_sym_BSLASHinput] = ACTIONS(6149), - [anon_sym_BSLASHsubfile] = ACTIONS(6149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6149), - [anon_sym_BSLASHbibliography] = ACTIONS(6149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6149), - [anon_sym_BSLASHincludesvg] = ACTIONS(6149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6149), - [anon_sym_BSLASHimport] = ACTIONS(6149), - [anon_sym_BSLASHsubimport] = ACTIONS(6149), - [anon_sym_BSLASHinputfrom] = ACTIONS(6149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6149), - [anon_sym_BSLASHincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHcaption] = ACTIONS(6149), - [anon_sym_BSLASHcite] = ACTIONS(6149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCite] = ACTIONS(6149), - [anon_sym_BSLASHnocite] = ACTIONS(6149), - [anon_sym_BSLASHcitet] = ACTIONS(6149), - [anon_sym_BSLASHcitep] = ACTIONS(6149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteauthor] = ACTIONS(6149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitetitle] = ACTIONS(6149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteyear] = ACTIONS(6149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitedate] = ACTIONS(6149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteurl] = ACTIONS(6149), - [anon_sym_BSLASHfullcite] = ACTIONS(6149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6149), - [anon_sym_BSLASHcitealt] = ACTIONS(6149), - [anon_sym_BSLASHcitealp] = ACTIONS(6149), - [anon_sym_BSLASHcitetext] = ACTIONS(6149), - [anon_sym_BSLASHparencite] = ACTIONS(6149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHParencite] = ACTIONS(6149), - [anon_sym_BSLASHfootcite] = ACTIONS(6149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6149), - [anon_sym_BSLASHtextcite] = ACTIONS(6149), - [anon_sym_BSLASHTextcite] = ACTIONS(6149), - [anon_sym_BSLASHsmartcite] = ACTIONS(6149), - [anon_sym_BSLASHSmartcite] = ACTIONS(6149), - [anon_sym_BSLASHsupercite] = ACTIONS(6149), - [anon_sym_BSLASHautocite] = ACTIONS(6149), - [anon_sym_BSLASHAutocite] = ACTIONS(6149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHvolcite] = ACTIONS(6149), - [anon_sym_BSLASHVolcite] = ACTIONS(6149), - [anon_sym_BSLASHpvolcite] = ACTIONS(6149), - [anon_sym_BSLASHPvolcite] = ACTIONS(6149), - [anon_sym_BSLASHfvolcite] = ACTIONS(6149), - [anon_sym_BSLASHftvolcite] = ACTIONS(6149), - [anon_sym_BSLASHsvolcite] = ACTIONS(6149), - [anon_sym_BSLASHSvolcite] = ACTIONS(6149), - [anon_sym_BSLASHtvolcite] = ACTIONS(6149), - [anon_sym_BSLASHTvolcite] = ACTIONS(6149), - [anon_sym_BSLASHavolcite] = ACTIONS(6149), - [anon_sym_BSLASHAvolcite] = ACTIONS(6149), - [anon_sym_BSLASHnotecite] = ACTIONS(6149), - [anon_sym_BSLASHNotecite] = ACTIONS(6149), - [anon_sym_BSLASHpnotecite] = ACTIONS(6149), - [anon_sym_BSLASHPnotecite] = ACTIONS(6149), - [anon_sym_BSLASHfnotecite] = ACTIONS(6149), - [anon_sym_BSLASHlabel] = ACTIONS(6149), - [anon_sym_BSLASHref] = ACTIONS(6149), - [anon_sym_BSLASHeqref] = ACTIONS(6149), - [anon_sym_BSLASHvref] = ACTIONS(6149), - [anon_sym_BSLASHVref] = ACTIONS(6149), - [anon_sym_BSLASHautoref] = ACTIONS(6149), - [anon_sym_BSLASHpageref] = ACTIONS(6149), - [anon_sym_BSLASHcref] = ACTIONS(6149), - [anon_sym_BSLASHCref] = ACTIONS(6149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnameCref] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHlabelcref] = ACTIONS(6149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCrefrange] = ACTIONS(6149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnewlabel] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6151), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHdef] = ACTIONS(6149), - [anon_sym_BSLASHlet] = ACTIONS(6149), - [anon_sym_BSLASHleft] = ACTIONS(6149), - [anon_sym_BSLASHbig] = ACTIONS(6149), - [anon_sym_BSLASHBig] = ACTIONS(6149), - [anon_sym_BSLASHbigg] = ACTIONS(6149), - [anon_sym_BSLASHBigg] = ACTIONS(6149), - [anon_sym_BSLASHbigl] = ACTIONS(6149), - [anon_sym_BSLASHBigl] = ACTIONS(6149), - [anon_sym_BSLASHbiggl] = ACTIONS(6149), - [anon_sym_BSLASHBiggl] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6149), - [anon_sym_BSLASHgls] = ACTIONS(6149), - [anon_sym_BSLASHGls] = ACTIONS(6149), - [anon_sym_BSLASHGLS] = ACTIONS(6149), - [anon_sym_BSLASHglspl] = ACTIONS(6149), - [anon_sym_BSLASHGlspl] = ACTIONS(6149), - [anon_sym_BSLASHGLSpl] = ACTIONS(6149), - [anon_sym_BSLASHglsdisp] = ACTIONS(6149), - [anon_sym_BSLASHglslink] = ACTIONS(6149), - [anon_sym_BSLASHglstext] = ACTIONS(6149), - [anon_sym_BSLASHGlstext] = ACTIONS(6149), - [anon_sym_BSLASHGLStext] = ACTIONS(6149), - [anon_sym_BSLASHglsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6149), - [anon_sym_BSLASHglsplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSplural] = ACTIONS(6149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHglsname] = ACTIONS(6149), - [anon_sym_BSLASHGlsname] = ACTIONS(6149), - [anon_sym_BSLASHGLSname] = ACTIONS(6149), - [anon_sym_BSLASHglssymbol] = ACTIONS(6149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6149), - [anon_sym_BSLASHglsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6149), - [anon_sym_BSLASHglsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6149), - [anon_sym_BSLASHglsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6149), - [anon_sym_BSLASHglsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6149), - [anon_sym_BSLASHglsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6149), - [anon_sym_BSLASHnewacronym] = ACTIONS(6149), - [anon_sym_BSLASHacrshort] = ACTIONS(6149), - [anon_sym_BSLASHAcrshort] = ACTIONS(6149), - [anon_sym_BSLASHACRshort] = ACTIONS(6149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6149), - [anon_sym_BSLASHacrlong] = ACTIONS(6149), - [anon_sym_BSLASHAcrlong] = ACTIONS(6149), - [anon_sym_BSLASHACRlong] = ACTIONS(6149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6149), - [anon_sym_BSLASHacrfull] = ACTIONS(6149), - [anon_sym_BSLASHAcrfull] = ACTIONS(6149), - [anon_sym_BSLASHACRfull] = ACTIONS(6149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6149), - [anon_sym_BSLASHacs] = ACTIONS(6149), - [anon_sym_BSLASHAcs] = ACTIONS(6149), - [anon_sym_BSLASHacsp] = ACTIONS(6149), - [anon_sym_BSLASHAcsp] = ACTIONS(6149), - [anon_sym_BSLASHacl] = ACTIONS(6149), - [anon_sym_BSLASHAcl] = ACTIONS(6149), - [anon_sym_BSLASHaclp] = ACTIONS(6149), - [anon_sym_BSLASHAclp] = ACTIONS(6149), - [anon_sym_BSLASHacf] = ACTIONS(6149), - [anon_sym_BSLASHAcf] = ACTIONS(6149), - [anon_sym_BSLASHacfp] = ACTIONS(6149), - [anon_sym_BSLASHAcfp] = ACTIONS(6149), - [anon_sym_BSLASHac] = ACTIONS(6149), - [anon_sym_BSLASHAc] = ACTIONS(6149), - [anon_sym_BSLASHacp] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6149), - [anon_sym_BSLASHcolor] = ACTIONS(6149), - [anon_sym_BSLASHcolorbox] = ACTIONS(6149), - [anon_sym_BSLASHtextcolor] = ACTIONS(6149), - [anon_sym_BSLASHpagecolor] = ACTIONS(6149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6149), - [anon_sym_BSLASHtext] = ACTIONS(6149), - [anon_sym_BSLASHintertext] = ACTIONS(6149), - [anon_sym_shortintertext] = ACTIONS(6149), - }, - [1132] = { - [sym_command_name] = ACTIONS(6145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6145), - [anon_sym_LBRACK] = ACTIONS(6147), - [anon_sym_RBRACK] = ACTIONS(6147), - [anon_sym_COMMA] = ACTIONS(6147), - [anon_sym_EQ] = ACTIONS(6147), - [anon_sym_LPAREN] = ACTIONS(6147), - [anon_sym_RPAREN] = ACTIONS(6147), - [anon_sym_BSLASHpart] = ACTIONS(6145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddpart] = ACTIONS(6145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6147), - [anon_sym_BSLASHchapter] = ACTIONS(6145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddchap] = ACTIONS(6145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsection] = ACTIONS(6145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddsec] = ACTIONS(6145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubsection] = ACTIONS(6145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHparagraph] = ACTIONS(6145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6147), - [anon_sym_BSLASHitem] = ACTIONS(6145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6147), - [anon_sym_LBRACE] = ACTIONS(6147), - [sym_word] = ACTIONS(6145), - [sym_placeholder] = ACTIONS(6147), - [anon_sym_PLUS] = ACTIONS(6147), - [anon_sym_DASH] = ACTIONS(6147), - [anon_sym_STAR] = ACTIONS(6147), - [anon_sym_SLASH] = ACTIONS(6147), - [anon_sym_LT] = ACTIONS(6145), - [anon_sym_GT] = ACTIONS(6145), - [anon_sym_BANG] = ACTIONS(6145), - [anon_sym_PIPE] = ACTIONS(6145), - [anon_sym_COLON] = ACTIONS(6145), - [anon_sym_SQUOTE] = ACTIONS(6145), - [anon_sym__] = ACTIONS(6147), - [anon_sym_CARET] = ACTIONS(6147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6147), - [anon_sym_DOLLAR] = ACTIONS(6145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6147), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6147), - [anon_sym_BSLASHbegin] = ACTIONS(6145), - [anon_sym_BSLASHtitle] = ACTIONS(6145), - [anon_sym_BSLASHauthor] = ACTIONS(6145), - [anon_sym_BSLASHusepackage] = ACTIONS(6145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6145), - [anon_sym_BSLASHinclude] = ACTIONS(6145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6145), - [anon_sym_BSLASHinput] = ACTIONS(6145), - [anon_sym_BSLASHsubfile] = ACTIONS(6145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6145), - [anon_sym_BSLASHbibliography] = ACTIONS(6145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6145), - [anon_sym_BSLASHincludesvg] = ACTIONS(6145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6145), - [anon_sym_BSLASHimport] = ACTIONS(6145), - [anon_sym_BSLASHsubimport] = ACTIONS(6145), - [anon_sym_BSLASHinputfrom] = ACTIONS(6145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6145), - [anon_sym_BSLASHincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHcaption] = ACTIONS(6145), - [anon_sym_BSLASHcite] = ACTIONS(6145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCite] = ACTIONS(6145), - [anon_sym_BSLASHnocite] = ACTIONS(6145), - [anon_sym_BSLASHcitet] = ACTIONS(6145), - [anon_sym_BSLASHcitep] = ACTIONS(6145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteauthor] = ACTIONS(6145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitetitle] = ACTIONS(6145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteyear] = ACTIONS(6145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitedate] = ACTIONS(6145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteurl] = ACTIONS(6145), - [anon_sym_BSLASHfullcite] = ACTIONS(6145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6145), - [anon_sym_BSLASHcitealt] = ACTIONS(6145), - [anon_sym_BSLASHcitealp] = ACTIONS(6145), - [anon_sym_BSLASHcitetext] = ACTIONS(6145), - [anon_sym_BSLASHparencite] = ACTIONS(6145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHParencite] = ACTIONS(6145), - [anon_sym_BSLASHfootcite] = ACTIONS(6145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6145), - [anon_sym_BSLASHtextcite] = ACTIONS(6145), - [anon_sym_BSLASHTextcite] = ACTIONS(6145), - [anon_sym_BSLASHsmartcite] = ACTIONS(6145), - [anon_sym_BSLASHSmartcite] = ACTIONS(6145), - [anon_sym_BSLASHsupercite] = ACTIONS(6145), - [anon_sym_BSLASHautocite] = ACTIONS(6145), - [anon_sym_BSLASHAutocite] = ACTIONS(6145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHvolcite] = ACTIONS(6145), - [anon_sym_BSLASHVolcite] = ACTIONS(6145), - [anon_sym_BSLASHpvolcite] = ACTIONS(6145), - [anon_sym_BSLASHPvolcite] = ACTIONS(6145), - [anon_sym_BSLASHfvolcite] = ACTIONS(6145), - [anon_sym_BSLASHftvolcite] = ACTIONS(6145), - [anon_sym_BSLASHsvolcite] = ACTIONS(6145), - [anon_sym_BSLASHSvolcite] = ACTIONS(6145), - [anon_sym_BSLASHtvolcite] = ACTIONS(6145), - [anon_sym_BSLASHTvolcite] = ACTIONS(6145), - [anon_sym_BSLASHavolcite] = ACTIONS(6145), - [anon_sym_BSLASHAvolcite] = ACTIONS(6145), - [anon_sym_BSLASHnotecite] = ACTIONS(6145), - [anon_sym_BSLASHNotecite] = ACTIONS(6145), - [anon_sym_BSLASHpnotecite] = ACTIONS(6145), - [anon_sym_BSLASHPnotecite] = ACTIONS(6145), - [anon_sym_BSLASHfnotecite] = ACTIONS(6145), - [anon_sym_BSLASHlabel] = ACTIONS(6145), - [anon_sym_BSLASHref] = ACTIONS(6145), - [anon_sym_BSLASHeqref] = ACTIONS(6145), - [anon_sym_BSLASHvref] = ACTIONS(6145), - [anon_sym_BSLASHVref] = ACTIONS(6145), - [anon_sym_BSLASHautoref] = ACTIONS(6145), - [anon_sym_BSLASHpageref] = ACTIONS(6145), - [anon_sym_BSLASHcref] = ACTIONS(6145), - [anon_sym_BSLASHCref] = ACTIONS(6145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnameCref] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHlabelcref] = ACTIONS(6145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCrefrange] = ACTIONS(6145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnewlabel] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6147), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHdef] = ACTIONS(6145), - [anon_sym_BSLASHlet] = ACTIONS(6145), - [anon_sym_BSLASHleft] = ACTIONS(6145), - [anon_sym_BSLASHbig] = ACTIONS(6145), - [anon_sym_BSLASHBig] = ACTIONS(6145), - [anon_sym_BSLASHbigg] = ACTIONS(6145), - [anon_sym_BSLASHBigg] = ACTIONS(6145), - [anon_sym_BSLASHbigl] = ACTIONS(6145), - [anon_sym_BSLASHBigl] = ACTIONS(6145), - [anon_sym_BSLASHbiggl] = ACTIONS(6145), - [anon_sym_BSLASHBiggl] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6145), - [anon_sym_BSLASHgls] = ACTIONS(6145), - [anon_sym_BSLASHGls] = ACTIONS(6145), - [anon_sym_BSLASHGLS] = ACTIONS(6145), - [anon_sym_BSLASHglspl] = ACTIONS(6145), - [anon_sym_BSLASHGlspl] = ACTIONS(6145), - [anon_sym_BSLASHGLSpl] = ACTIONS(6145), - [anon_sym_BSLASHglsdisp] = ACTIONS(6145), - [anon_sym_BSLASHglslink] = ACTIONS(6145), - [anon_sym_BSLASHglstext] = ACTIONS(6145), - [anon_sym_BSLASHGlstext] = ACTIONS(6145), - [anon_sym_BSLASHGLStext] = ACTIONS(6145), - [anon_sym_BSLASHglsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6145), - [anon_sym_BSLASHglsplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSplural] = ACTIONS(6145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHglsname] = ACTIONS(6145), - [anon_sym_BSLASHGlsname] = ACTIONS(6145), - [anon_sym_BSLASHGLSname] = ACTIONS(6145), - [anon_sym_BSLASHglssymbol] = ACTIONS(6145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6145), - [anon_sym_BSLASHglsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6145), - [anon_sym_BSLASHglsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6145), - [anon_sym_BSLASHglsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6145), - [anon_sym_BSLASHglsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6145), - [anon_sym_BSLASHglsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6145), - [anon_sym_BSLASHnewacronym] = ACTIONS(6145), - [anon_sym_BSLASHacrshort] = ACTIONS(6145), - [anon_sym_BSLASHAcrshort] = ACTIONS(6145), - [anon_sym_BSLASHACRshort] = ACTIONS(6145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6145), - [anon_sym_BSLASHacrlong] = ACTIONS(6145), - [anon_sym_BSLASHAcrlong] = ACTIONS(6145), - [anon_sym_BSLASHACRlong] = ACTIONS(6145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6145), - [anon_sym_BSLASHacrfull] = ACTIONS(6145), - [anon_sym_BSLASHAcrfull] = ACTIONS(6145), - [anon_sym_BSLASHACRfull] = ACTIONS(6145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6145), - [anon_sym_BSLASHacs] = ACTIONS(6145), - [anon_sym_BSLASHAcs] = ACTIONS(6145), - [anon_sym_BSLASHacsp] = ACTIONS(6145), - [anon_sym_BSLASHAcsp] = ACTIONS(6145), - [anon_sym_BSLASHacl] = ACTIONS(6145), - [anon_sym_BSLASHAcl] = ACTIONS(6145), - [anon_sym_BSLASHaclp] = ACTIONS(6145), - [anon_sym_BSLASHAclp] = ACTIONS(6145), - [anon_sym_BSLASHacf] = ACTIONS(6145), - [anon_sym_BSLASHAcf] = ACTIONS(6145), - [anon_sym_BSLASHacfp] = ACTIONS(6145), - [anon_sym_BSLASHAcfp] = ACTIONS(6145), - [anon_sym_BSLASHac] = ACTIONS(6145), - [anon_sym_BSLASHAc] = ACTIONS(6145), - [anon_sym_BSLASHacp] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6145), - [anon_sym_BSLASHcolor] = ACTIONS(6145), - [anon_sym_BSLASHcolorbox] = ACTIONS(6145), - [anon_sym_BSLASHtextcolor] = ACTIONS(6145), - [anon_sym_BSLASHpagecolor] = ACTIONS(6145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6145), - [anon_sym_BSLASHtext] = ACTIONS(6145), - [anon_sym_BSLASHintertext] = ACTIONS(6145), - [anon_sym_shortintertext] = ACTIONS(6145), - }, - [1133] = { - [sym_command_name] = ACTIONS(6297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6297), - [anon_sym_LBRACK] = ACTIONS(6299), - [anon_sym_RBRACK] = ACTIONS(6299), - [anon_sym_COMMA] = ACTIONS(6299), - [anon_sym_EQ] = ACTIONS(6299), - [anon_sym_LPAREN] = ACTIONS(6299), - [anon_sym_RPAREN] = ACTIONS(6299), - [anon_sym_BSLASHpart] = ACTIONS(6297), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddpart] = ACTIONS(6297), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6299), - [anon_sym_BSLASHchapter] = ACTIONS(6297), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddchap] = ACTIONS(6297), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsection] = ACTIONS(6297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddsec] = ACTIONS(6297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubsection] = ACTIONS(6297), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6297), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHparagraph] = ACTIONS(6297), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6297), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6299), - [anon_sym_BSLASHitem] = ACTIONS(6297), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6299), - [anon_sym_LBRACE] = ACTIONS(6299), - [sym_word] = ACTIONS(6297), - [sym_placeholder] = ACTIONS(6299), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_LT] = ACTIONS(6297), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(6297), - [anon_sym_PIPE] = ACTIONS(6297), - [anon_sym_COLON] = ACTIONS(6297), - [anon_sym_SQUOTE] = ACTIONS(6297), - [anon_sym__] = ACTIONS(6299), - [anon_sym_CARET] = ACTIONS(6299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6299), - [anon_sym_DOLLAR] = ACTIONS(6297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6299), - [anon_sym_BSLASHbegin] = ACTIONS(6297), - [anon_sym_BSLASHend] = ACTIONS(6297), - [anon_sym_BSLASHtitle] = ACTIONS(6297), - [anon_sym_BSLASHauthor] = ACTIONS(6297), - [anon_sym_BSLASHusepackage] = ACTIONS(6297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6297), - [anon_sym_BSLASHinclude] = ACTIONS(6297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6297), - [anon_sym_BSLASHinput] = ACTIONS(6297), - [anon_sym_BSLASHsubfile] = ACTIONS(6297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6297), - [anon_sym_BSLASHbibliography] = ACTIONS(6297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6297), - [anon_sym_BSLASHincludesvg] = ACTIONS(6297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6297), - [anon_sym_BSLASHimport] = ACTIONS(6297), - [anon_sym_BSLASHsubimport] = ACTIONS(6297), - [anon_sym_BSLASHinputfrom] = ACTIONS(6297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6297), - [anon_sym_BSLASHincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHcaption] = ACTIONS(6297), - [anon_sym_BSLASHcite] = ACTIONS(6297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCite] = ACTIONS(6297), - [anon_sym_BSLASHnocite] = ACTIONS(6297), - [anon_sym_BSLASHcitet] = ACTIONS(6297), - [anon_sym_BSLASHcitep] = ACTIONS(6297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteauthor] = ACTIONS(6297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitetitle] = ACTIONS(6297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteyear] = ACTIONS(6297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitedate] = ACTIONS(6297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteurl] = ACTIONS(6297), - [anon_sym_BSLASHfullcite] = ACTIONS(6297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6297), - [anon_sym_BSLASHcitealt] = ACTIONS(6297), - [anon_sym_BSLASHcitealp] = ACTIONS(6297), - [anon_sym_BSLASHcitetext] = ACTIONS(6297), - [anon_sym_BSLASHparencite] = ACTIONS(6297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHParencite] = ACTIONS(6297), - [anon_sym_BSLASHfootcite] = ACTIONS(6297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6297), - [anon_sym_BSLASHtextcite] = ACTIONS(6297), - [anon_sym_BSLASHTextcite] = ACTIONS(6297), - [anon_sym_BSLASHsmartcite] = ACTIONS(6297), - [anon_sym_BSLASHSmartcite] = ACTIONS(6297), - [anon_sym_BSLASHsupercite] = ACTIONS(6297), - [anon_sym_BSLASHautocite] = ACTIONS(6297), - [anon_sym_BSLASHAutocite] = ACTIONS(6297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHvolcite] = ACTIONS(6297), - [anon_sym_BSLASHVolcite] = ACTIONS(6297), - [anon_sym_BSLASHpvolcite] = ACTIONS(6297), - [anon_sym_BSLASHPvolcite] = ACTIONS(6297), - [anon_sym_BSLASHfvolcite] = ACTIONS(6297), - [anon_sym_BSLASHftvolcite] = ACTIONS(6297), - [anon_sym_BSLASHsvolcite] = ACTIONS(6297), - [anon_sym_BSLASHSvolcite] = ACTIONS(6297), - [anon_sym_BSLASHtvolcite] = ACTIONS(6297), - [anon_sym_BSLASHTvolcite] = ACTIONS(6297), - [anon_sym_BSLASHavolcite] = ACTIONS(6297), - [anon_sym_BSLASHAvolcite] = ACTIONS(6297), - [anon_sym_BSLASHnotecite] = ACTIONS(6297), - [anon_sym_BSLASHNotecite] = ACTIONS(6297), - [anon_sym_BSLASHpnotecite] = ACTIONS(6297), - [anon_sym_BSLASHPnotecite] = ACTIONS(6297), - [anon_sym_BSLASHfnotecite] = ACTIONS(6297), - [anon_sym_BSLASHlabel] = ACTIONS(6297), - [anon_sym_BSLASHref] = ACTIONS(6297), - [anon_sym_BSLASHeqref] = ACTIONS(6297), - [anon_sym_BSLASHvref] = ACTIONS(6297), - [anon_sym_BSLASHVref] = ACTIONS(6297), - [anon_sym_BSLASHautoref] = ACTIONS(6297), - [anon_sym_BSLASHpageref] = ACTIONS(6297), - [anon_sym_BSLASHcref] = ACTIONS(6297), - [anon_sym_BSLASHCref] = ACTIONS(6297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnameCref] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHlabelcref] = ACTIONS(6297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCrefrange] = ACTIONS(6297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnewlabel] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6299), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHdef] = ACTIONS(6297), - [anon_sym_BSLASHlet] = ACTIONS(6297), - [anon_sym_BSLASHleft] = ACTIONS(6297), - [anon_sym_BSLASHbig] = ACTIONS(6297), - [anon_sym_BSLASHBig] = ACTIONS(6297), - [anon_sym_BSLASHbigg] = ACTIONS(6297), - [anon_sym_BSLASHBigg] = ACTIONS(6297), - [anon_sym_BSLASHbigl] = ACTIONS(6297), - [anon_sym_BSLASHBigl] = ACTIONS(6297), - [anon_sym_BSLASHbiggl] = ACTIONS(6297), - [anon_sym_BSLASHBiggl] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6297), - [anon_sym_BSLASHgls] = ACTIONS(6297), - [anon_sym_BSLASHGls] = ACTIONS(6297), - [anon_sym_BSLASHGLS] = ACTIONS(6297), - [anon_sym_BSLASHglspl] = ACTIONS(6297), - [anon_sym_BSLASHGlspl] = ACTIONS(6297), - [anon_sym_BSLASHGLSpl] = ACTIONS(6297), - [anon_sym_BSLASHglsdisp] = ACTIONS(6297), - [anon_sym_BSLASHglslink] = ACTIONS(6297), - [anon_sym_BSLASHglstext] = ACTIONS(6297), - [anon_sym_BSLASHGlstext] = ACTIONS(6297), - [anon_sym_BSLASHGLStext] = ACTIONS(6297), - [anon_sym_BSLASHglsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6297), - [anon_sym_BSLASHglsplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSplural] = ACTIONS(6297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHglsname] = ACTIONS(6297), - [anon_sym_BSLASHGlsname] = ACTIONS(6297), - [anon_sym_BSLASHGLSname] = ACTIONS(6297), - [anon_sym_BSLASHglssymbol] = ACTIONS(6297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6297), - [anon_sym_BSLASHglsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6297), - [anon_sym_BSLASHglsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6297), - [anon_sym_BSLASHglsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6297), - [anon_sym_BSLASHglsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6297), - [anon_sym_BSLASHglsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6297), - [anon_sym_BSLASHnewacronym] = ACTIONS(6297), - [anon_sym_BSLASHacrshort] = ACTIONS(6297), - [anon_sym_BSLASHAcrshort] = ACTIONS(6297), - [anon_sym_BSLASHACRshort] = ACTIONS(6297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6297), - [anon_sym_BSLASHacrlong] = ACTIONS(6297), - [anon_sym_BSLASHAcrlong] = ACTIONS(6297), - [anon_sym_BSLASHACRlong] = ACTIONS(6297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6297), - [anon_sym_BSLASHacrfull] = ACTIONS(6297), - [anon_sym_BSLASHAcrfull] = ACTIONS(6297), - [anon_sym_BSLASHACRfull] = ACTIONS(6297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6297), - [anon_sym_BSLASHacs] = ACTIONS(6297), - [anon_sym_BSLASHAcs] = ACTIONS(6297), - [anon_sym_BSLASHacsp] = ACTIONS(6297), - [anon_sym_BSLASHAcsp] = ACTIONS(6297), - [anon_sym_BSLASHacl] = ACTIONS(6297), - [anon_sym_BSLASHAcl] = ACTIONS(6297), - [anon_sym_BSLASHaclp] = ACTIONS(6297), - [anon_sym_BSLASHAclp] = ACTIONS(6297), - [anon_sym_BSLASHacf] = ACTIONS(6297), - [anon_sym_BSLASHAcf] = ACTIONS(6297), - [anon_sym_BSLASHacfp] = ACTIONS(6297), - [anon_sym_BSLASHAcfp] = ACTIONS(6297), - [anon_sym_BSLASHac] = ACTIONS(6297), - [anon_sym_BSLASHAc] = ACTIONS(6297), - [anon_sym_BSLASHacp] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6297), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6297), - [anon_sym_BSLASHcolor] = ACTIONS(6297), - [anon_sym_BSLASHcolorbox] = ACTIONS(6297), - [anon_sym_BSLASHtextcolor] = ACTIONS(6297), - [anon_sym_BSLASHpagecolor] = ACTIONS(6297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6297), - [anon_sym_BSLASHtext] = ACTIONS(6297), - [anon_sym_BSLASHintertext] = ACTIONS(6297), - [anon_sym_shortintertext] = ACTIONS(6297), - }, - [1134] = { - [sym_command_name] = ACTIONS(6141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6141), - [anon_sym_LBRACK] = ACTIONS(6143), - [anon_sym_RBRACK] = ACTIONS(6143), - [anon_sym_COMMA] = ACTIONS(6143), - [anon_sym_EQ] = ACTIONS(6143), - [anon_sym_LPAREN] = ACTIONS(6143), - [anon_sym_RPAREN] = ACTIONS(6143), - [anon_sym_BSLASHpart] = ACTIONS(6141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddpart] = ACTIONS(6141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6143), - [anon_sym_BSLASHchapter] = ACTIONS(6141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddchap] = ACTIONS(6141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsection] = ACTIONS(6141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddsec] = ACTIONS(6141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubsection] = ACTIONS(6141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHparagraph] = ACTIONS(6141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6143), - [anon_sym_BSLASHitem] = ACTIONS(6141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6143), - [anon_sym_LBRACE] = ACTIONS(6143), - [sym_word] = ACTIONS(6141), - [sym_placeholder] = ACTIONS(6143), - [anon_sym_PLUS] = ACTIONS(6143), - [anon_sym_DASH] = ACTIONS(6143), - [anon_sym_STAR] = ACTIONS(6143), - [anon_sym_SLASH] = ACTIONS(6143), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_GT] = ACTIONS(6141), - [anon_sym_BANG] = ACTIONS(6141), - [anon_sym_PIPE] = ACTIONS(6141), - [anon_sym_COLON] = ACTIONS(6141), - [anon_sym_SQUOTE] = ACTIONS(6141), - [anon_sym__] = ACTIONS(6143), - [anon_sym_CARET] = ACTIONS(6143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6143), - [anon_sym_DOLLAR] = ACTIONS(6141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6143), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6143), - [anon_sym_BSLASHbegin] = ACTIONS(6141), - [anon_sym_BSLASHtitle] = ACTIONS(6141), - [anon_sym_BSLASHauthor] = ACTIONS(6141), - [anon_sym_BSLASHusepackage] = ACTIONS(6141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6141), - [anon_sym_BSLASHinclude] = ACTIONS(6141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6141), - [anon_sym_BSLASHinput] = ACTIONS(6141), - [anon_sym_BSLASHsubfile] = ACTIONS(6141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6141), - [anon_sym_BSLASHbibliography] = ACTIONS(6141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6141), - [anon_sym_BSLASHincludesvg] = ACTIONS(6141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6141), - [anon_sym_BSLASHimport] = ACTIONS(6141), - [anon_sym_BSLASHsubimport] = ACTIONS(6141), - [anon_sym_BSLASHinputfrom] = ACTIONS(6141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6141), - [anon_sym_BSLASHincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHcaption] = ACTIONS(6141), - [anon_sym_BSLASHcite] = ACTIONS(6141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCite] = ACTIONS(6141), - [anon_sym_BSLASHnocite] = ACTIONS(6141), - [anon_sym_BSLASHcitet] = ACTIONS(6141), - [anon_sym_BSLASHcitep] = ACTIONS(6141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteauthor] = ACTIONS(6141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitetitle] = ACTIONS(6141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteyear] = ACTIONS(6141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitedate] = ACTIONS(6141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteurl] = ACTIONS(6141), - [anon_sym_BSLASHfullcite] = ACTIONS(6141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6141), - [anon_sym_BSLASHcitealt] = ACTIONS(6141), - [anon_sym_BSLASHcitealp] = ACTIONS(6141), - [anon_sym_BSLASHcitetext] = ACTIONS(6141), - [anon_sym_BSLASHparencite] = ACTIONS(6141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHParencite] = ACTIONS(6141), - [anon_sym_BSLASHfootcite] = ACTIONS(6141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6141), - [anon_sym_BSLASHtextcite] = ACTIONS(6141), - [anon_sym_BSLASHTextcite] = ACTIONS(6141), - [anon_sym_BSLASHsmartcite] = ACTIONS(6141), - [anon_sym_BSLASHSmartcite] = ACTIONS(6141), - [anon_sym_BSLASHsupercite] = ACTIONS(6141), - [anon_sym_BSLASHautocite] = ACTIONS(6141), - [anon_sym_BSLASHAutocite] = ACTIONS(6141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHvolcite] = ACTIONS(6141), - [anon_sym_BSLASHVolcite] = ACTIONS(6141), - [anon_sym_BSLASHpvolcite] = ACTIONS(6141), - [anon_sym_BSLASHPvolcite] = ACTIONS(6141), - [anon_sym_BSLASHfvolcite] = ACTIONS(6141), - [anon_sym_BSLASHftvolcite] = ACTIONS(6141), - [anon_sym_BSLASHsvolcite] = ACTIONS(6141), - [anon_sym_BSLASHSvolcite] = ACTIONS(6141), - [anon_sym_BSLASHtvolcite] = ACTIONS(6141), - [anon_sym_BSLASHTvolcite] = ACTIONS(6141), - [anon_sym_BSLASHavolcite] = ACTIONS(6141), - [anon_sym_BSLASHAvolcite] = ACTIONS(6141), - [anon_sym_BSLASHnotecite] = ACTIONS(6141), - [anon_sym_BSLASHNotecite] = ACTIONS(6141), - [anon_sym_BSLASHpnotecite] = ACTIONS(6141), - [anon_sym_BSLASHPnotecite] = ACTIONS(6141), - [anon_sym_BSLASHfnotecite] = ACTIONS(6141), - [anon_sym_BSLASHlabel] = ACTIONS(6141), - [anon_sym_BSLASHref] = ACTIONS(6141), - [anon_sym_BSLASHeqref] = ACTIONS(6141), - [anon_sym_BSLASHvref] = ACTIONS(6141), - [anon_sym_BSLASHVref] = ACTIONS(6141), - [anon_sym_BSLASHautoref] = ACTIONS(6141), - [anon_sym_BSLASHpageref] = ACTIONS(6141), - [anon_sym_BSLASHcref] = ACTIONS(6141), - [anon_sym_BSLASHCref] = ACTIONS(6141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnameCref] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHlabelcref] = ACTIONS(6141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCrefrange] = ACTIONS(6141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnewlabel] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6143), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHdef] = ACTIONS(6141), - [anon_sym_BSLASHlet] = ACTIONS(6141), - [anon_sym_BSLASHleft] = ACTIONS(6141), - [anon_sym_BSLASHbig] = ACTIONS(6141), - [anon_sym_BSLASHBig] = ACTIONS(6141), - [anon_sym_BSLASHbigg] = ACTIONS(6141), - [anon_sym_BSLASHBigg] = ACTIONS(6141), - [anon_sym_BSLASHbigl] = ACTIONS(6141), - [anon_sym_BSLASHBigl] = ACTIONS(6141), - [anon_sym_BSLASHbiggl] = ACTIONS(6141), - [anon_sym_BSLASHBiggl] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6141), - [anon_sym_BSLASHgls] = ACTIONS(6141), - [anon_sym_BSLASHGls] = ACTIONS(6141), - [anon_sym_BSLASHGLS] = ACTIONS(6141), - [anon_sym_BSLASHglspl] = ACTIONS(6141), - [anon_sym_BSLASHGlspl] = ACTIONS(6141), - [anon_sym_BSLASHGLSpl] = ACTIONS(6141), - [anon_sym_BSLASHglsdisp] = ACTIONS(6141), - [anon_sym_BSLASHglslink] = ACTIONS(6141), - [anon_sym_BSLASHglstext] = ACTIONS(6141), - [anon_sym_BSLASHGlstext] = ACTIONS(6141), - [anon_sym_BSLASHGLStext] = ACTIONS(6141), - [anon_sym_BSLASHglsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6141), - [anon_sym_BSLASHglsplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSplural] = ACTIONS(6141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHglsname] = ACTIONS(6141), - [anon_sym_BSLASHGlsname] = ACTIONS(6141), - [anon_sym_BSLASHGLSname] = ACTIONS(6141), - [anon_sym_BSLASHglssymbol] = ACTIONS(6141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6141), - [anon_sym_BSLASHglsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6141), - [anon_sym_BSLASHglsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6141), - [anon_sym_BSLASHglsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6141), - [anon_sym_BSLASHglsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6141), - [anon_sym_BSLASHglsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6141), - [anon_sym_BSLASHnewacronym] = ACTIONS(6141), - [anon_sym_BSLASHacrshort] = ACTIONS(6141), - [anon_sym_BSLASHAcrshort] = ACTIONS(6141), - [anon_sym_BSLASHACRshort] = ACTIONS(6141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6141), - [anon_sym_BSLASHacrlong] = ACTIONS(6141), - [anon_sym_BSLASHAcrlong] = ACTIONS(6141), - [anon_sym_BSLASHACRlong] = ACTIONS(6141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6141), - [anon_sym_BSLASHacrfull] = ACTIONS(6141), - [anon_sym_BSLASHAcrfull] = ACTIONS(6141), - [anon_sym_BSLASHACRfull] = ACTIONS(6141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6141), - [anon_sym_BSLASHacs] = ACTIONS(6141), - [anon_sym_BSLASHAcs] = ACTIONS(6141), - [anon_sym_BSLASHacsp] = ACTIONS(6141), - [anon_sym_BSLASHAcsp] = ACTIONS(6141), - [anon_sym_BSLASHacl] = ACTIONS(6141), - [anon_sym_BSLASHAcl] = ACTIONS(6141), - [anon_sym_BSLASHaclp] = ACTIONS(6141), - [anon_sym_BSLASHAclp] = ACTIONS(6141), - [anon_sym_BSLASHacf] = ACTIONS(6141), - [anon_sym_BSLASHAcf] = ACTIONS(6141), - [anon_sym_BSLASHacfp] = ACTIONS(6141), - [anon_sym_BSLASHAcfp] = ACTIONS(6141), - [anon_sym_BSLASHac] = ACTIONS(6141), - [anon_sym_BSLASHAc] = ACTIONS(6141), - [anon_sym_BSLASHacp] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6141), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6141), - [anon_sym_BSLASHcolor] = ACTIONS(6141), - [anon_sym_BSLASHcolorbox] = ACTIONS(6141), - [anon_sym_BSLASHtextcolor] = ACTIONS(6141), - [anon_sym_BSLASHpagecolor] = ACTIONS(6141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6141), - [anon_sym_BSLASHtext] = ACTIONS(6141), - [anon_sym_BSLASHintertext] = ACTIONS(6141), - [anon_sym_shortintertext] = ACTIONS(6141), - }, - [1135] = { - [sym_command_name] = ACTIONS(6301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6301), - [anon_sym_LBRACK] = ACTIONS(6303), - [anon_sym_RBRACK] = ACTIONS(6303), - [anon_sym_COMMA] = ACTIONS(6303), - [anon_sym_EQ] = ACTIONS(6303), - [anon_sym_LPAREN] = ACTIONS(6303), - [anon_sym_RPAREN] = ACTIONS(6303), - [anon_sym_BSLASHpart] = ACTIONS(6301), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddpart] = ACTIONS(6301), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6303), - [anon_sym_BSLASHchapter] = ACTIONS(6301), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddchap] = ACTIONS(6301), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsection] = ACTIONS(6301), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddsec] = ACTIONS(6301), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubsection] = ACTIONS(6301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6301), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHparagraph] = ACTIONS(6301), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6301), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6303), - [anon_sym_BSLASHitem] = ACTIONS(6301), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6303), - [anon_sym_LBRACE] = ACTIONS(6303), - [sym_word] = ACTIONS(6301), - [sym_placeholder] = ACTIONS(6303), - [anon_sym_PLUS] = ACTIONS(6303), - [anon_sym_DASH] = ACTIONS(6303), - [anon_sym_STAR] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6303), - [anon_sym_LT] = ACTIONS(6301), - [anon_sym_GT] = ACTIONS(6301), - [anon_sym_BANG] = ACTIONS(6301), - [anon_sym_PIPE] = ACTIONS(6301), - [anon_sym_COLON] = ACTIONS(6301), - [anon_sym_SQUOTE] = ACTIONS(6301), - [anon_sym__] = ACTIONS(6303), - [anon_sym_CARET] = ACTIONS(6303), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6303), - [anon_sym_DOLLAR] = ACTIONS(6301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6303), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6303), - [anon_sym_BSLASHbegin] = ACTIONS(6301), - [anon_sym_BSLASHtitle] = ACTIONS(6301), - [anon_sym_BSLASHauthor] = ACTIONS(6301), - [anon_sym_BSLASHusepackage] = ACTIONS(6301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6301), - [anon_sym_BSLASHinclude] = ACTIONS(6301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6301), - [anon_sym_BSLASHinput] = ACTIONS(6301), - [anon_sym_BSLASHsubfile] = ACTIONS(6301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6301), - [anon_sym_BSLASHbibliography] = ACTIONS(6301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6301), - [anon_sym_BSLASHincludesvg] = ACTIONS(6301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6301), - [anon_sym_BSLASHimport] = ACTIONS(6301), - [anon_sym_BSLASHsubimport] = ACTIONS(6301), - [anon_sym_BSLASHinputfrom] = ACTIONS(6301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6301), - [anon_sym_BSLASHincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHcaption] = ACTIONS(6301), - [anon_sym_BSLASHcite] = ACTIONS(6301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCite] = ACTIONS(6301), - [anon_sym_BSLASHnocite] = ACTIONS(6301), - [anon_sym_BSLASHcitet] = ACTIONS(6301), - [anon_sym_BSLASHcitep] = ACTIONS(6301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteauthor] = ACTIONS(6301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitetitle] = ACTIONS(6301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteyear] = ACTIONS(6301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitedate] = ACTIONS(6301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteurl] = ACTIONS(6301), - [anon_sym_BSLASHfullcite] = ACTIONS(6301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6301), - [anon_sym_BSLASHcitealt] = ACTIONS(6301), - [anon_sym_BSLASHcitealp] = ACTIONS(6301), - [anon_sym_BSLASHcitetext] = ACTIONS(6301), - [anon_sym_BSLASHparencite] = ACTIONS(6301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHParencite] = ACTIONS(6301), - [anon_sym_BSLASHfootcite] = ACTIONS(6301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6301), - [anon_sym_BSLASHtextcite] = ACTIONS(6301), - [anon_sym_BSLASHTextcite] = ACTIONS(6301), - [anon_sym_BSLASHsmartcite] = ACTIONS(6301), - [anon_sym_BSLASHSmartcite] = ACTIONS(6301), - [anon_sym_BSLASHsupercite] = ACTIONS(6301), - [anon_sym_BSLASHautocite] = ACTIONS(6301), - [anon_sym_BSLASHAutocite] = ACTIONS(6301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHvolcite] = ACTIONS(6301), - [anon_sym_BSLASHVolcite] = ACTIONS(6301), - [anon_sym_BSLASHpvolcite] = ACTIONS(6301), - [anon_sym_BSLASHPvolcite] = ACTIONS(6301), - [anon_sym_BSLASHfvolcite] = ACTIONS(6301), - [anon_sym_BSLASHftvolcite] = ACTIONS(6301), - [anon_sym_BSLASHsvolcite] = ACTIONS(6301), - [anon_sym_BSLASHSvolcite] = ACTIONS(6301), - [anon_sym_BSLASHtvolcite] = ACTIONS(6301), - [anon_sym_BSLASHTvolcite] = ACTIONS(6301), - [anon_sym_BSLASHavolcite] = ACTIONS(6301), - [anon_sym_BSLASHAvolcite] = ACTIONS(6301), - [anon_sym_BSLASHnotecite] = ACTIONS(6301), - [anon_sym_BSLASHNotecite] = ACTIONS(6301), - [anon_sym_BSLASHpnotecite] = ACTIONS(6301), - [anon_sym_BSLASHPnotecite] = ACTIONS(6301), - [anon_sym_BSLASHfnotecite] = ACTIONS(6301), - [anon_sym_BSLASHlabel] = ACTIONS(6301), - [anon_sym_BSLASHref] = ACTIONS(6301), - [anon_sym_BSLASHeqref] = ACTIONS(6301), - [anon_sym_BSLASHvref] = ACTIONS(6301), - [anon_sym_BSLASHVref] = ACTIONS(6301), - [anon_sym_BSLASHautoref] = ACTIONS(6301), - [anon_sym_BSLASHpageref] = ACTIONS(6301), - [anon_sym_BSLASHcref] = ACTIONS(6301), - [anon_sym_BSLASHCref] = ACTIONS(6301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnameCref] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHlabelcref] = ACTIONS(6301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCrefrange] = ACTIONS(6301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnewlabel] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6303), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHdef] = ACTIONS(6301), - [anon_sym_BSLASHlet] = ACTIONS(6301), - [anon_sym_BSLASHleft] = ACTIONS(6301), - [anon_sym_BSLASHbig] = ACTIONS(6301), - [anon_sym_BSLASHBig] = ACTIONS(6301), - [anon_sym_BSLASHbigg] = ACTIONS(6301), - [anon_sym_BSLASHBigg] = ACTIONS(6301), - [anon_sym_BSLASHbigl] = ACTIONS(6301), - [anon_sym_BSLASHBigl] = ACTIONS(6301), - [anon_sym_BSLASHbiggl] = ACTIONS(6301), - [anon_sym_BSLASHBiggl] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6301), - [anon_sym_BSLASHgls] = ACTIONS(6301), - [anon_sym_BSLASHGls] = ACTIONS(6301), - [anon_sym_BSLASHGLS] = ACTIONS(6301), - [anon_sym_BSLASHglspl] = ACTIONS(6301), - [anon_sym_BSLASHGlspl] = ACTIONS(6301), - [anon_sym_BSLASHGLSpl] = ACTIONS(6301), - [anon_sym_BSLASHglsdisp] = ACTIONS(6301), - [anon_sym_BSLASHglslink] = ACTIONS(6301), - [anon_sym_BSLASHglstext] = ACTIONS(6301), - [anon_sym_BSLASHGlstext] = ACTIONS(6301), - [anon_sym_BSLASHGLStext] = ACTIONS(6301), - [anon_sym_BSLASHglsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6301), - [anon_sym_BSLASHglsplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSplural] = ACTIONS(6301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHglsname] = ACTIONS(6301), - [anon_sym_BSLASHGlsname] = ACTIONS(6301), - [anon_sym_BSLASHGLSname] = ACTIONS(6301), - [anon_sym_BSLASHglssymbol] = ACTIONS(6301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6301), - [anon_sym_BSLASHglsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6301), - [anon_sym_BSLASHglsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6301), - [anon_sym_BSLASHglsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6301), - [anon_sym_BSLASHglsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6301), - [anon_sym_BSLASHglsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6301), - [anon_sym_BSLASHnewacronym] = ACTIONS(6301), - [anon_sym_BSLASHacrshort] = ACTIONS(6301), - [anon_sym_BSLASHAcrshort] = ACTIONS(6301), - [anon_sym_BSLASHACRshort] = ACTIONS(6301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6301), - [anon_sym_BSLASHacrlong] = ACTIONS(6301), - [anon_sym_BSLASHAcrlong] = ACTIONS(6301), - [anon_sym_BSLASHACRlong] = ACTIONS(6301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6301), - [anon_sym_BSLASHacrfull] = ACTIONS(6301), - [anon_sym_BSLASHAcrfull] = ACTIONS(6301), - [anon_sym_BSLASHACRfull] = ACTIONS(6301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6301), - [anon_sym_BSLASHacs] = ACTIONS(6301), - [anon_sym_BSLASHAcs] = ACTIONS(6301), - [anon_sym_BSLASHacsp] = ACTIONS(6301), - [anon_sym_BSLASHAcsp] = ACTIONS(6301), - [anon_sym_BSLASHacl] = ACTIONS(6301), - [anon_sym_BSLASHAcl] = ACTIONS(6301), - [anon_sym_BSLASHaclp] = ACTIONS(6301), - [anon_sym_BSLASHAclp] = ACTIONS(6301), - [anon_sym_BSLASHacf] = ACTIONS(6301), - [anon_sym_BSLASHAcf] = ACTIONS(6301), - [anon_sym_BSLASHacfp] = ACTIONS(6301), - [anon_sym_BSLASHAcfp] = ACTIONS(6301), - [anon_sym_BSLASHac] = ACTIONS(6301), - [anon_sym_BSLASHAc] = ACTIONS(6301), - [anon_sym_BSLASHacp] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6301), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6301), - [anon_sym_BSLASHcolor] = ACTIONS(6301), - [anon_sym_BSLASHcolorbox] = ACTIONS(6301), - [anon_sym_BSLASHtextcolor] = ACTIONS(6301), - [anon_sym_BSLASHpagecolor] = ACTIONS(6301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6301), - [anon_sym_BSLASHtext] = ACTIONS(6301), - [anon_sym_BSLASHintertext] = ACTIONS(6301), - [anon_sym_shortintertext] = ACTIONS(6301), - }, - [1136] = { - [sym_command_name] = ACTIONS(6417), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6417), - [anon_sym_LBRACK] = ACTIONS(6419), - [anon_sym_RBRACK] = ACTIONS(6419), - [anon_sym_COMMA] = ACTIONS(6419), - [anon_sym_EQ] = ACTIONS(6419), - [anon_sym_LPAREN] = ACTIONS(6419), - [anon_sym_RPAREN] = ACTIONS(6419), - [anon_sym_BSLASHpart] = ACTIONS(6417), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddpart] = ACTIONS(6417), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6419), - [anon_sym_BSLASHchapter] = ACTIONS(6417), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddchap] = ACTIONS(6417), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsection] = ACTIONS(6417), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddsec] = ACTIONS(6417), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubsection] = ACTIONS(6417), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6417), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHparagraph] = ACTIONS(6417), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6417), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6419), - [anon_sym_BSLASHitem] = ACTIONS(6417), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6419), - [anon_sym_LBRACE] = ACTIONS(6419), - [sym_word] = ACTIONS(6417), - [sym_placeholder] = ACTIONS(6419), - [anon_sym_PLUS] = ACTIONS(6419), - [anon_sym_DASH] = ACTIONS(6419), - [anon_sym_STAR] = ACTIONS(6419), - [anon_sym_SLASH] = ACTIONS(6419), - [anon_sym_LT] = ACTIONS(6417), - [anon_sym_GT] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(6417), - [anon_sym_PIPE] = ACTIONS(6417), - [anon_sym_COLON] = ACTIONS(6417), - [anon_sym_SQUOTE] = ACTIONS(6417), - [anon_sym__] = ACTIONS(6419), - [anon_sym_CARET] = ACTIONS(6419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6419), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6419), - [anon_sym_DOLLAR] = ACTIONS(6417), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6419), - [anon_sym_BSLASHbegin] = ACTIONS(6417), - [anon_sym_BSLASHend] = ACTIONS(6417), - [anon_sym_BSLASHtitle] = ACTIONS(6417), - [anon_sym_BSLASHauthor] = ACTIONS(6417), - [anon_sym_BSLASHusepackage] = ACTIONS(6417), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6417), - [anon_sym_BSLASHinclude] = ACTIONS(6417), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6417), - [anon_sym_BSLASHinput] = ACTIONS(6417), - [anon_sym_BSLASHsubfile] = ACTIONS(6417), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6417), - [anon_sym_BSLASHbibliography] = ACTIONS(6417), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6417), - [anon_sym_BSLASHincludesvg] = ACTIONS(6417), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6417), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6417), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6417), - [anon_sym_BSLASHimport] = ACTIONS(6417), - [anon_sym_BSLASHsubimport] = ACTIONS(6417), - [anon_sym_BSLASHinputfrom] = ACTIONS(6417), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6417), - [anon_sym_BSLASHincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHcaption] = ACTIONS(6417), - [anon_sym_BSLASHcite] = ACTIONS(6417), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCite] = ACTIONS(6417), - [anon_sym_BSLASHnocite] = ACTIONS(6417), - [anon_sym_BSLASHcitet] = ACTIONS(6417), - [anon_sym_BSLASHcitep] = ACTIONS(6417), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteauthor] = ACTIONS(6417), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6417), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitetitle] = ACTIONS(6417), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteyear] = ACTIONS(6417), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitedate] = ACTIONS(6417), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteurl] = ACTIONS(6417), - [anon_sym_BSLASHfullcite] = ACTIONS(6417), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6417), - [anon_sym_BSLASHcitealt] = ACTIONS(6417), - [anon_sym_BSLASHcitealp] = ACTIONS(6417), - [anon_sym_BSLASHcitetext] = ACTIONS(6417), - [anon_sym_BSLASHparencite] = ACTIONS(6417), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHParencite] = ACTIONS(6417), - [anon_sym_BSLASHfootcite] = ACTIONS(6417), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6417), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6417), - [anon_sym_BSLASHtextcite] = ACTIONS(6417), - [anon_sym_BSLASHTextcite] = ACTIONS(6417), - [anon_sym_BSLASHsmartcite] = ACTIONS(6417), - [anon_sym_BSLASHSmartcite] = ACTIONS(6417), - [anon_sym_BSLASHsupercite] = ACTIONS(6417), - [anon_sym_BSLASHautocite] = ACTIONS(6417), - [anon_sym_BSLASHAutocite] = ACTIONS(6417), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHvolcite] = ACTIONS(6417), - [anon_sym_BSLASHVolcite] = ACTIONS(6417), - [anon_sym_BSLASHpvolcite] = ACTIONS(6417), - [anon_sym_BSLASHPvolcite] = ACTIONS(6417), - [anon_sym_BSLASHfvolcite] = ACTIONS(6417), - [anon_sym_BSLASHftvolcite] = ACTIONS(6417), - [anon_sym_BSLASHsvolcite] = ACTIONS(6417), - [anon_sym_BSLASHSvolcite] = ACTIONS(6417), - [anon_sym_BSLASHtvolcite] = ACTIONS(6417), - [anon_sym_BSLASHTvolcite] = ACTIONS(6417), - [anon_sym_BSLASHavolcite] = ACTIONS(6417), - [anon_sym_BSLASHAvolcite] = ACTIONS(6417), - [anon_sym_BSLASHnotecite] = ACTIONS(6417), - [anon_sym_BSLASHNotecite] = ACTIONS(6417), - [anon_sym_BSLASHpnotecite] = ACTIONS(6417), - [anon_sym_BSLASHPnotecite] = ACTIONS(6417), - [anon_sym_BSLASHfnotecite] = ACTIONS(6417), - [anon_sym_BSLASHlabel] = ACTIONS(6417), - [anon_sym_BSLASHref] = ACTIONS(6417), - [anon_sym_BSLASHeqref] = ACTIONS(6417), - [anon_sym_BSLASHvref] = ACTIONS(6417), - [anon_sym_BSLASHVref] = ACTIONS(6417), - [anon_sym_BSLASHautoref] = ACTIONS(6417), - [anon_sym_BSLASHpageref] = ACTIONS(6417), - [anon_sym_BSLASHcref] = ACTIONS(6417), - [anon_sym_BSLASHCref] = ACTIONS(6417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnameCref] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHlabelcref] = ACTIONS(6417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCrefrange] = ACTIONS(6417), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnewlabel] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6419), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHdef] = ACTIONS(6417), - [anon_sym_BSLASHlet] = ACTIONS(6417), - [anon_sym_BSLASHleft] = ACTIONS(6417), - [anon_sym_BSLASHbig] = ACTIONS(6417), - [anon_sym_BSLASHBig] = ACTIONS(6417), - [anon_sym_BSLASHbigg] = ACTIONS(6417), - [anon_sym_BSLASHBigg] = ACTIONS(6417), - [anon_sym_BSLASHbigl] = ACTIONS(6417), - [anon_sym_BSLASHBigl] = ACTIONS(6417), - [anon_sym_BSLASHbiggl] = ACTIONS(6417), - [anon_sym_BSLASHBiggl] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6417), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6417), - [anon_sym_BSLASHgls] = ACTIONS(6417), - [anon_sym_BSLASHGls] = ACTIONS(6417), - [anon_sym_BSLASHGLS] = ACTIONS(6417), - [anon_sym_BSLASHglspl] = ACTIONS(6417), - [anon_sym_BSLASHGlspl] = ACTIONS(6417), - [anon_sym_BSLASHGLSpl] = ACTIONS(6417), - [anon_sym_BSLASHglsdisp] = ACTIONS(6417), - [anon_sym_BSLASHglslink] = ACTIONS(6417), - [anon_sym_BSLASHglstext] = ACTIONS(6417), - [anon_sym_BSLASHGlstext] = ACTIONS(6417), - [anon_sym_BSLASHGLStext] = ACTIONS(6417), - [anon_sym_BSLASHglsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6417), - [anon_sym_BSLASHglsplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSplural] = ACTIONS(6417), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHglsname] = ACTIONS(6417), - [anon_sym_BSLASHGlsname] = ACTIONS(6417), - [anon_sym_BSLASHGLSname] = ACTIONS(6417), - [anon_sym_BSLASHglssymbol] = ACTIONS(6417), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6417), - [anon_sym_BSLASHglsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6417), - [anon_sym_BSLASHglsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6417), - [anon_sym_BSLASHglsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6417), - [anon_sym_BSLASHglsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6417), - [anon_sym_BSLASHglsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6417), - [anon_sym_BSLASHnewacronym] = ACTIONS(6417), - [anon_sym_BSLASHacrshort] = ACTIONS(6417), - [anon_sym_BSLASHAcrshort] = ACTIONS(6417), - [anon_sym_BSLASHACRshort] = ACTIONS(6417), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6417), - [anon_sym_BSLASHacrlong] = ACTIONS(6417), - [anon_sym_BSLASHAcrlong] = ACTIONS(6417), - [anon_sym_BSLASHACRlong] = ACTIONS(6417), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6417), - [anon_sym_BSLASHacrfull] = ACTIONS(6417), - [anon_sym_BSLASHAcrfull] = ACTIONS(6417), - [anon_sym_BSLASHACRfull] = ACTIONS(6417), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6417), - [anon_sym_BSLASHacs] = ACTIONS(6417), - [anon_sym_BSLASHAcs] = ACTIONS(6417), - [anon_sym_BSLASHacsp] = ACTIONS(6417), - [anon_sym_BSLASHAcsp] = ACTIONS(6417), - [anon_sym_BSLASHacl] = ACTIONS(6417), - [anon_sym_BSLASHAcl] = ACTIONS(6417), - [anon_sym_BSLASHaclp] = ACTIONS(6417), - [anon_sym_BSLASHAclp] = ACTIONS(6417), - [anon_sym_BSLASHacf] = ACTIONS(6417), - [anon_sym_BSLASHAcf] = ACTIONS(6417), - [anon_sym_BSLASHacfp] = ACTIONS(6417), - [anon_sym_BSLASHAcfp] = ACTIONS(6417), - [anon_sym_BSLASHac] = ACTIONS(6417), - [anon_sym_BSLASHAc] = ACTIONS(6417), - [anon_sym_BSLASHacp] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6417), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6417), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6417), - [anon_sym_BSLASHcolor] = ACTIONS(6417), - [anon_sym_BSLASHcolorbox] = ACTIONS(6417), - [anon_sym_BSLASHtextcolor] = ACTIONS(6417), - [anon_sym_BSLASHpagecolor] = ACTIONS(6417), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6417), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6417), - [anon_sym_BSLASHtext] = ACTIONS(6417), - [anon_sym_BSLASHintertext] = ACTIONS(6417), - [anon_sym_shortintertext] = ACTIONS(6417), - }, - [1137] = { - [sym_command_name] = ACTIONS(6421), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6421), - [anon_sym_LBRACK] = ACTIONS(6423), - [anon_sym_RBRACK] = ACTIONS(6423), - [anon_sym_COMMA] = ACTIONS(6423), - [anon_sym_EQ] = ACTIONS(6423), - [anon_sym_LPAREN] = ACTIONS(6423), - [anon_sym_RPAREN] = ACTIONS(6423), - [anon_sym_BSLASHpart] = ACTIONS(6421), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddpart] = ACTIONS(6421), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6423), - [anon_sym_BSLASHchapter] = ACTIONS(6421), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddchap] = ACTIONS(6421), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsection] = ACTIONS(6421), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddsec] = ACTIONS(6421), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubsection] = ACTIONS(6421), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6421), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHparagraph] = ACTIONS(6421), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6421), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6423), - [anon_sym_BSLASHitem] = ACTIONS(6421), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6423), - [anon_sym_LBRACE] = ACTIONS(6423), - [sym_word] = ACTIONS(6421), - [sym_placeholder] = ACTIONS(6423), - [anon_sym_PLUS] = ACTIONS(6423), - [anon_sym_DASH] = ACTIONS(6423), - [anon_sym_STAR] = ACTIONS(6423), - [anon_sym_SLASH] = ACTIONS(6423), - [anon_sym_LT] = ACTIONS(6421), - [anon_sym_GT] = ACTIONS(6421), - [anon_sym_BANG] = ACTIONS(6421), - [anon_sym_PIPE] = ACTIONS(6421), - [anon_sym_COLON] = ACTIONS(6421), - [anon_sym_SQUOTE] = ACTIONS(6421), - [anon_sym__] = ACTIONS(6423), - [anon_sym_CARET] = ACTIONS(6423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6423), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6423), - [anon_sym_DOLLAR] = ACTIONS(6421), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6423), - [anon_sym_BSLASHbegin] = ACTIONS(6421), - [anon_sym_BSLASHend] = ACTIONS(6421), - [anon_sym_BSLASHtitle] = ACTIONS(6421), - [anon_sym_BSLASHauthor] = ACTIONS(6421), - [anon_sym_BSLASHusepackage] = ACTIONS(6421), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6421), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6421), - [anon_sym_BSLASHinclude] = ACTIONS(6421), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6421), - [anon_sym_BSLASHinput] = ACTIONS(6421), - [anon_sym_BSLASHsubfile] = ACTIONS(6421), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6421), - [anon_sym_BSLASHbibliography] = ACTIONS(6421), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6421), - [anon_sym_BSLASHincludesvg] = ACTIONS(6421), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6421), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6421), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6421), - [anon_sym_BSLASHimport] = ACTIONS(6421), - [anon_sym_BSLASHsubimport] = ACTIONS(6421), - [anon_sym_BSLASHinputfrom] = ACTIONS(6421), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6421), - [anon_sym_BSLASHincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHcaption] = ACTIONS(6421), - [anon_sym_BSLASHcite] = ACTIONS(6421), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCite] = ACTIONS(6421), - [anon_sym_BSLASHnocite] = ACTIONS(6421), - [anon_sym_BSLASHcitet] = ACTIONS(6421), - [anon_sym_BSLASHcitep] = ACTIONS(6421), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteauthor] = ACTIONS(6421), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6421), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitetitle] = ACTIONS(6421), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteyear] = ACTIONS(6421), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitedate] = ACTIONS(6421), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteurl] = ACTIONS(6421), - [anon_sym_BSLASHfullcite] = ACTIONS(6421), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6421), - [anon_sym_BSLASHcitealt] = ACTIONS(6421), - [anon_sym_BSLASHcitealp] = ACTIONS(6421), - [anon_sym_BSLASHcitetext] = ACTIONS(6421), - [anon_sym_BSLASHparencite] = ACTIONS(6421), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHParencite] = ACTIONS(6421), - [anon_sym_BSLASHfootcite] = ACTIONS(6421), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6421), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6421), - [anon_sym_BSLASHtextcite] = ACTIONS(6421), - [anon_sym_BSLASHTextcite] = ACTIONS(6421), - [anon_sym_BSLASHsmartcite] = ACTIONS(6421), - [anon_sym_BSLASHSmartcite] = ACTIONS(6421), - [anon_sym_BSLASHsupercite] = ACTIONS(6421), - [anon_sym_BSLASHautocite] = ACTIONS(6421), - [anon_sym_BSLASHAutocite] = ACTIONS(6421), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHvolcite] = ACTIONS(6421), - [anon_sym_BSLASHVolcite] = ACTIONS(6421), - [anon_sym_BSLASHpvolcite] = ACTIONS(6421), - [anon_sym_BSLASHPvolcite] = ACTIONS(6421), - [anon_sym_BSLASHfvolcite] = ACTIONS(6421), - [anon_sym_BSLASHftvolcite] = ACTIONS(6421), - [anon_sym_BSLASHsvolcite] = ACTIONS(6421), - [anon_sym_BSLASHSvolcite] = ACTIONS(6421), - [anon_sym_BSLASHtvolcite] = ACTIONS(6421), - [anon_sym_BSLASHTvolcite] = ACTIONS(6421), - [anon_sym_BSLASHavolcite] = ACTIONS(6421), - [anon_sym_BSLASHAvolcite] = ACTIONS(6421), - [anon_sym_BSLASHnotecite] = ACTIONS(6421), - [anon_sym_BSLASHNotecite] = ACTIONS(6421), - [anon_sym_BSLASHpnotecite] = ACTIONS(6421), - [anon_sym_BSLASHPnotecite] = ACTIONS(6421), - [anon_sym_BSLASHfnotecite] = ACTIONS(6421), - [anon_sym_BSLASHlabel] = ACTIONS(6421), - [anon_sym_BSLASHref] = ACTIONS(6421), - [anon_sym_BSLASHeqref] = ACTIONS(6421), - [anon_sym_BSLASHvref] = ACTIONS(6421), - [anon_sym_BSLASHVref] = ACTIONS(6421), - [anon_sym_BSLASHautoref] = ACTIONS(6421), - [anon_sym_BSLASHpageref] = ACTIONS(6421), - [anon_sym_BSLASHcref] = ACTIONS(6421), - [anon_sym_BSLASHCref] = ACTIONS(6421), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnameCref] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHlabelcref] = ACTIONS(6421), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCrefrange] = ACTIONS(6421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnewlabel] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6421), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6421), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6423), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHdef] = ACTIONS(6421), - [anon_sym_BSLASHlet] = ACTIONS(6421), - [anon_sym_BSLASHleft] = ACTIONS(6421), - [anon_sym_BSLASHbig] = ACTIONS(6421), - [anon_sym_BSLASHBig] = ACTIONS(6421), - [anon_sym_BSLASHbigg] = ACTIONS(6421), - [anon_sym_BSLASHBigg] = ACTIONS(6421), - [anon_sym_BSLASHbigl] = ACTIONS(6421), - [anon_sym_BSLASHBigl] = ACTIONS(6421), - [anon_sym_BSLASHbiggl] = ACTIONS(6421), - [anon_sym_BSLASHBiggl] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6421), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6421), - [anon_sym_BSLASHgls] = ACTIONS(6421), - [anon_sym_BSLASHGls] = ACTIONS(6421), - [anon_sym_BSLASHGLS] = ACTIONS(6421), - [anon_sym_BSLASHglspl] = ACTIONS(6421), - [anon_sym_BSLASHGlspl] = ACTIONS(6421), - [anon_sym_BSLASHGLSpl] = ACTIONS(6421), - [anon_sym_BSLASHglsdisp] = ACTIONS(6421), - [anon_sym_BSLASHglslink] = ACTIONS(6421), - [anon_sym_BSLASHglstext] = ACTIONS(6421), - [anon_sym_BSLASHGlstext] = ACTIONS(6421), - [anon_sym_BSLASHGLStext] = ACTIONS(6421), - [anon_sym_BSLASHglsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6421), - [anon_sym_BSLASHglsplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSplural] = ACTIONS(6421), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHglsname] = ACTIONS(6421), - [anon_sym_BSLASHGlsname] = ACTIONS(6421), - [anon_sym_BSLASHGLSname] = ACTIONS(6421), - [anon_sym_BSLASHglssymbol] = ACTIONS(6421), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6421), - [anon_sym_BSLASHglsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6421), - [anon_sym_BSLASHglsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6421), - [anon_sym_BSLASHglsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6421), - [anon_sym_BSLASHglsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6421), - [anon_sym_BSLASHglsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6421), - [anon_sym_BSLASHnewacronym] = ACTIONS(6421), - [anon_sym_BSLASHacrshort] = ACTIONS(6421), - [anon_sym_BSLASHAcrshort] = ACTIONS(6421), - [anon_sym_BSLASHACRshort] = ACTIONS(6421), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6421), - [anon_sym_BSLASHacrlong] = ACTIONS(6421), - [anon_sym_BSLASHAcrlong] = ACTIONS(6421), - [anon_sym_BSLASHACRlong] = ACTIONS(6421), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6421), - [anon_sym_BSLASHacrfull] = ACTIONS(6421), - [anon_sym_BSLASHAcrfull] = ACTIONS(6421), - [anon_sym_BSLASHACRfull] = ACTIONS(6421), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6421), - [anon_sym_BSLASHacs] = ACTIONS(6421), - [anon_sym_BSLASHAcs] = ACTIONS(6421), - [anon_sym_BSLASHacsp] = ACTIONS(6421), - [anon_sym_BSLASHAcsp] = ACTIONS(6421), - [anon_sym_BSLASHacl] = ACTIONS(6421), - [anon_sym_BSLASHAcl] = ACTIONS(6421), - [anon_sym_BSLASHaclp] = ACTIONS(6421), - [anon_sym_BSLASHAclp] = ACTIONS(6421), - [anon_sym_BSLASHacf] = ACTIONS(6421), - [anon_sym_BSLASHAcf] = ACTIONS(6421), - [anon_sym_BSLASHacfp] = ACTIONS(6421), - [anon_sym_BSLASHAcfp] = ACTIONS(6421), - [anon_sym_BSLASHac] = ACTIONS(6421), - [anon_sym_BSLASHAc] = ACTIONS(6421), - [anon_sym_BSLASHacp] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6421), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6421), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6421), - [anon_sym_BSLASHcolor] = ACTIONS(6421), - [anon_sym_BSLASHcolorbox] = ACTIONS(6421), - [anon_sym_BSLASHtextcolor] = ACTIONS(6421), - [anon_sym_BSLASHpagecolor] = ACTIONS(6421), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6421), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6421), - [anon_sym_BSLASHtext] = ACTIONS(6421), - [anon_sym_BSLASHintertext] = ACTIONS(6421), - [anon_sym_shortintertext] = ACTIONS(6421), - }, - [1138] = { - [sym_command_name] = ACTIONS(6425), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6425), - [anon_sym_LBRACK] = ACTIONS(6427), - [anon_sym_RBRACK] = ACTIONS(6427), - [anon_sym_COMMA] = ACTIONS(6427), - [anon_sym_EQ] = ACTIONS(6427), - [anon_sym_LPAREN] = ACTIONS(6427), - [anon_sym_RPAREN] = ACTIONS(6427), - [anon_sym_BSLASHpart] = ACTIONS(6425), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddpart] = ACTIONS(6425), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6427), - [anon_sym_BSLASHchapter] = ACTIONS(6425), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddchap] = ACTIONS(6425), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsection] = ACTIONS(6425), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddsec] = ACTIONS(6425), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubsection] = ACTIONS(6425), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6425), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHparagraph] = ACTIONS(6425), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6425), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6427), - [anon_sym_BSLASHitem] = ACTIONS(6425), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6427), - [anon_sym_LBRACE] = ACTIONS(6427), - [sym_word] = ACTIONS(6425), - [sym_placeholder] = ACTIONS(6427), - [anon_sym_PLUS] = ACTIONS(6427), - [anon_sym_DASH] = ACTIONS(6427), - [anon_sym_STAR] = ACTIONS(6427), - [anon_sym_SLASH] = ACTIONS(6427), - [anon_sym_LT] = ACTIONS(6425), - [anon_sym_GT] = ACTIONS(6425), - [anon_sym_BANG] = ACTIONS(6425), - [anon_sym_PIPE] = ACTIONS(6425), - [anon_sym_COLON] = ACTIONS(6425), - [anon_sym_SQUOTE] = ACTIONS(6425), - [anon_sym__] = ACTIONS(6427), - [anon_sym_CARET] = ACTIONS(6427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6427), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6427), - [anon_sym_DOLLAR] = ACTIONS(6425), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6427), - [anon_sym_BSLASHbegin] = ACTIONS(6425), - [anon_sym_BSLASHend] = ACTIONS(6425), - [anon_sym_BSLASHtitle] = ACTIONS(6425), - [anon_sym_BSLASHauthor] = ACTIONS(6425), - [anon_sym_BSLASHusepackage] = ACTIONS(6425), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6425), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6425), - [anon_sym_BSLASHinclude] = ACTIONS(6425), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6425), - [anon_sym_BSLASHinput] = ACTIONS(6425), - [anon_sym_BSLASHsubfile] = ACTIONS(6425), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6425), - [anon_sym_BSLASHbibliography] = ACTIONS(6425), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6425), - [anon_sym_BSLASHincludesvg] = ACTIONS(6425), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6425), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6425), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6425), - [anon_sym_BSLASHimport] = ACTIONS(6425), - [anon_sym_BSLASHsubimport] = ACTIONS(6425), - [anon_sym_BSLASHinputfrom] = ACTIONS(6425), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6425), - [anon_sym_BSLASHincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHcaption] = ACTIONS(6425), - [anon_sym_BSLASHcite] = ACTIONS(6425), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCite] = ACTIONS(6425), - [anon_sym_BSLASHnocite] = ACTIONS(6425), - [anon_sym_BSLASHcitet] = ACTIONS(6425), - [anon_sym_BSLASHcitep] = ACTIONS(6425), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteauthor] = ACTIONS(6425), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6425), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitetitle] = ACTIONS(6425), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteyear] = ACTIONS(6425), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitedate] = ACTIONS(6425), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteurl] = ACTIONS(6425), - [anon_sym_BSLASHfullcite] = ACTIONS(6425), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6425), - [anon_sym_BSLASHcitealt] = ACTIONS(6425), - [anon_sym_BSLASHcitealp] = ACTIONS(6425), - [anon_sym_BSLASHcitetext] = ACTIONS(6425), - [anon_sym_BSLASHparencite] = ACTIONS(6425), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHParencite] = ACTIONS(6425), - [anon_sym_BSLASHfootcite] = ACTIONS(6425), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6425), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6425), - [anon_sym_BSLASHtextcite] = ACTIONS(6425), - [anon_sym_BSLASHTextcite] = ACTIONS(6425), - [anon_sym_BSLASHsmartcite] = ACTIONS(6425), - [anon_sym_BSLASHSmartcite] = ACTIONS(6425), - [anon_sym_BSLASHsupercite] = ACTIONS(6425), - [anon_sym_BSLASHautocite] = ACTIONS(6425), - [anon_sym_BSLASHAutocite] = ACTIONS(6425), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHvolcite] = ACTIONS(6425), - [anon_sym_BSLASHVolcite] = ACTIONS(6425), - [anon_sym_BSLASHpvolcite] = ACTIONS(6425), - [anon_sym_BSLASHPvolcite] = ACTIONS(6425), - [anon_sym_BSLASHfvolcite] = ACTIONS(6425), - [anon_sym_BSLASHftvolcite] = ACTIONS(6425), - [anon_sym_BSLASHsvolcite] = ACTIONS(6425), - [anon_sym_BSLASHSvolcite] = ACTIONS(6425), - [anon_sym_BSLASHtvolcite] = ACTIONS(6425), - [anon_sym_BSLASHTvolcite] = ACTIONS(6425), - [anon_sym_BSLASHavolcite] = ACTIONS(6425), - [anon_sym_BSLASHAvolcite] = ACTIONS(6425), - [anon_sym_BSLASHnotecite] = ACTIONS(6425), - [anon_sym_BSLASHNotecite] = ACTIONS(6425), - [anon_sym_BSLASHpnotecite] = ACTIONS(6425), - [anon_sym_BSLASHPnotecite] = ACTIONS(6425), - [anon_sym_BSLASHfnotecite] = ACTIONS(6425), - [anon_sym_BSLASHlabel] = ACTIONS(6425), - [anon_sym_BSLASHref] = ACTIONS(6425), - [anon_sym_BSLASHeqref] = ACTIONS(6425), - [anon_sym_BSLASHvref] = ACTIONS(6425), - [anon_sym_BSLASHVref] = ACTIONS(6425), - [anon_sym_BSLASHautoref] = ACTIONS(6425), - [anon_sym_BSLASHpageref] = ACTIONS(6425), - [anon_sym_BSLASHcref] = ACTIONS(6425), - [anon_sym_BSLASHCref] = ACTIONS(6425), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnameCref] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHlabelcref] = ACTIONS(6425), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCrefrange] = ACTIONS(6425), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnewlabel] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6425), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6425), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6427), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHdef] = ACTIONS(6425), - [anon_sym_BSLASHlet] = ACTIONS(6425), - [anon_sym_BSLASHleft] = ACTIONS(6425), - [anon_sym_BSLASHbig] = ACTIONS(6425), - [anon_sym_BSLASHBig] = ACTIONS(6425), - [anon_sym_BSLASHbigg] = ACTIONS(6425), - [anon_sym_BSLASHBigg] = ACTIONS(6425), - [anon_sym_BSLASHbigl] = ACTIONS(6425), - [anon_sym_BSLASHBigl] = ACTIONS(6425), - [anon_sym_BSLASHbiggl] = ACTIONS(6425), - [anon_sym_BSLASHBiggl] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6425), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6425), - [anon_sym_BSLASHgls] = ACTIONS(6425), - [anon_sym_BSLASHGls] = ACTIONS(6425), - [anon_sym_BSLASHGLS] = ACTIONS(6425), - [anon_sym_BSLASHglspl] = ACTIONS(6425), - [anon_sym_BSLASHGlspl] = ACTIONS(6425), - [anon_sym_BSLASHGLSpl] = ACTIONS(6425), - [anon_sym_BSLASHglsdisp] = ACTIONS(6425), - [anon_sym_BSLASHglslink] = ACTIONS(6425), - [anon_sym_BSLASHglstext] = ACTIONS(6425), - [anon_sym_BSLASHGlstext] = ACTIONS(6425), - [anon_sym_BSLASHGLStext] = ACTIONS(6425), - [anon_sym_BSLASHglsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6425), - [anon_sym_BSLASHglsplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSplural] = ACTIONS(6425), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHglsname] = ACTIONS(6425), - [anon_sym_BSLASHGlsname] = ACTIONS(6425), - [anon_sym_BSLASHGLSname] = ACTIONS(6425), - [anon_sym_BSLASHglssymbol] = ACTIONS(6425), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6425), - [anon_sym_BSLASHglsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6425), - [anon_sym_BSLASHglsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6425), - [anon_sym_BSLASHglsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6425), - [anon_sym_BSLASHglsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6425), - [anon_sym_BSLASHglsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6425), - [anon_sym_BSLASHnewacronym] = ACTIONS(6425), - [anon_sym_BSLASHacrshort] = ACTIONS(6425), - [anon_sym_BSLASHAcrshort] = ACTIONS(6425), - [anon_sym_BSLASHACRshort] = ACTIONS(6425), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6425), - [anon_sym_BSLASHacrlong] = ACTIONS(6425), - [anon_sym_BSLASHAcrlong] = ACTIONS(6425), - [anon_sym_BSLASHACRlong] = ACTIONS(6425), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6425), - [anon_sym_BSLASHacrfull] = ACTIONS(6425), - [anon_sym_BSLASHAcrfull] = ACTIONS(6425), - [anon_sym_BSLASHACRfull] = ACTIONS(6425), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6425), - [anon_sym_BSLASHacs] = ACTIONS(6425), - [anon_sym_BSLASHAcs] = ACTIONS(6425), - [anon_sym_BSLASHacsp] = ACTIONS(6425), - [anon_sym_BSLASHAcsp] = ACTIONS(6425), - [anon_sym_BSLASHacl] = ACTIONS(6425), - [anon_sym_BSLASHAcl] = ACTIONS(6425), - [anon_sym_BSLASHaclp] = ACTIONS(6425), - [anon_sym_BSLASHAclp] = ACTIONS(6425), - [anon_sym_BSLASHacf] = ACTIONS(6425), - [anon_sym_BSLASHAcf] = ACTIONS(6425), - [anon_sym_BSLASHacfp] = ACTIONS(6425), - [anon_sym_BSLASHAcfp] = ACTIONS(6425), - [anon_sym_BSLASHac] = ACTIONS(6425), - [anon_sym_BSLASHAc] = ACTIONS(6425), - [anon_sym_BSLASHacp] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6425), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6425), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6425), - [anon_sym_BSLASHcolor] = ACTIONS(6425), - [anon_sym_BSLASHcolorbox] = ACTIONS(6425), - [anon_sym_BSLASHtextcolor] = ACTIONS(6425), - [anon_sym_BSLASHpagecolor] = ACTIONS(6425), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6425), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6425), - [anon_sym_BSLASHtext] = ACTIONS(6425), - [anon_sym_BSLASHintertext] = ACTIONS(6425), - [anon_sym_shortintertext] = ACTIONS(6425), - }, - [1139] = { - [sym_command_name] = ACTIONS(6429), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6429), - [anon_sym_LBRACK] = ACTIONS(6431), - [anon_sym_RBRACK] = ACTIONS(6431), - [anon_sym_COMMA] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(6431), - [anon_sym_LPAREN] = ACTIONS(6431), - [anon_sym_RPAREN] = ACTIONS(6431), - [anon_sym_BSLASHpart] = ACTIONS(6429), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddpart] = ACTIONS(6429), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6431), - [anon_sym_BSLASHchapter] = ACTIONS(6429), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddchap] = ACTIONS(6429), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsection] = ACTIONS(6429), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddsec] = ACTIONS(6429), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubsection] = ACTIONS(6429), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6429), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHparagraph] = ACTIONS(6429), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6429), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6431), - [anon_sym_BSLASHitem] = ACTIONS(6429), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6431), - [anon_sym_LBRACE] = ACTIONS(6431), - [sym_word] = ACTIONS(6429), - [sym_placeholder] = ACTIONS(6431), - [anon_sym_PLUS] = ACTIONS(6431), - [anon_sym_DASH] = ACTIONS(6431), - [anon_sym_STAR] = ACTIONS(6431), - [anon_sym_SLASH] = ACTIONS(6431), - [anon_sym_LT] = ACTIONS(6429), - [anon_sym_GT] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(6429), - [anon_sym_PIPE] = ACTIONS(6429), - [anon_sym_COLON] = ACTIONS(6429), - [anon_sym_SQUOTE] = ACTIONS(6429), - [anon_sym__] = ACTIONS(6431), - [anon_sym_CARET] = ACTIONS(6431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6431), - [anon_sym_DOLLAR] = ACTIONS(6429), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6431), - [anon_sym_BSLASHbegin] = ACTIONS(6429), - [anon_sym_BSLASHend] = ACTIONS(6429), - [anon_sym_BSLASHtitle] = ACTIONS(6429), - [anon_sym_BSLASHauthor] = ACTIONS(6429), - [anon_sym_BSLASHusepackage] = ACTIONS(6429), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6429), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6429), - [anon_sym_BSLASHinclude] = ACTIONS(6429), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6429), - [anon_sym_BSLASHinput] = ACTIONS(6429), - [anon_sym_BSLASHsubfile] = ACTIONS(6429), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6429), - [anon_sym_BSLASHbibliography] = ACTIONS(6429), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6429), - [anon_sym_BSLASHincludesvg] = ACTIONS(6429), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6429), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6429), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6429), - [anon_sym_BSLASHimport] = ACTIONS(6429), - [anon_sym_BSLASHsubimport] = ACTIONS(6429), - [anon_sym_BSLASHinputfrom] = ACTIONS(6429), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6429), - [anon_sym_BSLASHincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHcaption] = ACTIONS(6429), - [anon_sym_BSLASHcite] = ACTIONS(6429), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCite] = ACTIONS(6429), - [anon_sym_BSLASHnocite] = ACTIONS(6429), - [anon_sym_BSLASHcitet] = ACTIONS(6429), - [anon_sym_BSLASHcitep] = ACTIONS(6429), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteauthor] = ACTIONS(6429), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6429), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitetitle] = ACTIONS(6429), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteyear] = ACTIONS(6429), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitedate] = ACTIONS(6429), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteurl] = ACTIONS(6429), - [anon_sym_BSLASHfullcite] = ACTIONS(6429), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6429), - [anon_sym_BSLASHcitealt] = ACTIONS(6429), - [anon_sym_BSLASHcitealp] = ACTIONS(6429), - [anon_sym_BSLASHcitetext] = ACTIONS(6429), - [anon_sym_BSLASHparencite] = ACTIONS(6429), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHParencite] = ACTIONS(6429), - [anon_sym_BSLASHfootcite] = ACTIONS(6429), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6429), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6429), - [anon_sym_BSLASHtextcite] = ACTIONS(6429), - [anon_sym_BSLASHTextcite] = ACTIONS(6429), - [anon_sym_BSLASHsmartcite] = ACTIONS(6429), - [anon_sym_BSLASHSmartcite] = ACTIONS(6429), - [anon_sym_BSLASHsupercite] = ACTIONS(6429), - [anon_sym_BSLASHautocite] = ACTIONS(6429), - [anon_sym_BSLASHAutocite] = ACTIONS(6429), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHvolcite] = ACTIONS(6429), - [anon_sym_BSLASHVolcite] = ACTIONS(6429), - [anon_sym_BSLASHpvolcite] = ACTIONS(6429), - [anon_sym_BSLASHPvolcite] = ACTIONS(6429), - [anon_sym_BSLASHfvolcite] = ACTIONS(6429), - [anon_sym_BSLASHftvolcite] = ACTIONS(6429), - [anon_sym_BSLASHsvolcite] = ACTIONS(6429), - [anon_sym_BSLASHSvolcite] = ACTIONS(6429), - [anon_sym_BSLASHtvolcite] = ACTIONS(6429), - [anon_sym_BSLASHTvolcite] = ACTIONS(6429), - [anon_sym_BSLASHavolcite] = ACTIONS(6429), - [anon_sym_BSLASHAvolcite] = ACTIONS(6429), - [anon_sym_BSLASHnotecite] = ACTIONS(6429), - [anon_sym_BSLASHNotecite] = ACTIONS(6429), - [anon_sym_BSLASHpnotecite] = ACTIONS(6429), - [anon_sym_BSLASHPnotecite] = ACTIONS(6429), - [anon_sym_BSLASHfnotecite] = ACTIONS(6429), - [anon_sym_BSLASHlabel] = ACTIONS(6429), - [anon_sym_BSLASHref] = ACTIONS(6429), - [anon_sym_BSLASHeqref] = ACTIONS(6429), - [anon_sym_BSLASHvref] = ACTIONS(6429), - [anon_sym_BSLASHVref] = ACTIONS(6429), - [anon_sym_BSLASHautoref] = ACTIONS(6429), - [anon_sym_BSLASHpageref] = ACTIONS(6429), - [anon_sym_BSLASHcref] = ACTIONS(6429), - [anon_sym_BSLASHCref] = ACTIONS(6429), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnameCref] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHlabelcref] = ACTIONS(6429), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCrefrange] = ACTIONS(6429), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnewlabel] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6429), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6429), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6431), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHdef] = ACTIONS(6429), - [anon_sym_BSLASHlet] = ACTIONS(6429), - [anon_sym_BSLASHleft] = ACTIONS(6429), - [anon_sym_BSLASHbig] = ACTIONS(6429), - [anon_sym_BSLASHBig] = ACTIONS(6429), - [anon_sym_BSLASHbigg] = ACTIONS(6429), - [anon_sym_BSLASHBigg] = ACTIONS(6429), - [anon_sym_BSLASHbigl] = ACTIONS(6429), - [anon_sym_BSLASHBigl] = ACTIONS(6429), - [anon_sym_BSLASHbiggl] = ACTIONS(6429), - [anon_sym_BSLASHBiggl] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6429), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6429), - [anon_sym_BSLASHgls] = ACTIONS(6429), - [anon_sym_BSLASHGls] = ACTIONS(6429), - [anon_sym_BSLASHGLS] = ACTIONS(6429), - [anon_sym_BSLASHglspl] = ACTIONS(6429), - [anon_sym_BSLASHGlspl] = ACTIONS(6429), - [anon_sym_BSLASHGLSpl] = ACTIONS(6429), - [anon_sym_BSLASHglsdisp] = ACTIONS(6429), - [anon_sym_BSLASHglslink] = ACTIONS(6429), - [anon_sym_BSLASHglstext] = ACTIONS(6429), - [anon_sym_BSLASHGlstext] = ACTIONS(6429), - [anon_sym_BSLASHGLStext] = ACTIONS(6429), - [anon_sym_BSLASHglsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6429), - [anon_sym_BSLASHglsplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSplural] = ACTIONS(6429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHglsname] = ACTIONS(6429), - [anon_sym_BSLASHGlsname] = ACTIONS(6429), - [anon_sym_BSLASHGLSname] = ACTIONS(6429), - [anon_sym_BSLASHglssymbol] = ACTIONS(6429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6429), - [anon_sym_BSLASHglsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6429), - [anon_sym_BSLASHglsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6429), - [anon_sym_BSLASHglsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6429), - [anon_sym_BSLASHglsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6429), - [anon_sym_BSLASHglsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6429), - [anon_sym_BSLASHnewacronym] = ACTIONS(6429), - [anon_sym_BSLASHacrshort] = ACTIONS(6429), - [anon_sym_BSLASHAcrshort] = ACTIONS(6429), - [anon_sym_BSLASHACRshort] = ACTIONS(6429), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6429), - [anon_sym_BSLASHacrlong] = ACTIONS(6429), - [anon_sym_BSLASHAcrlong] = ACTIONS(6429), - [anon_sym_BSLASHACRlong] = ACTIONS(6429), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6429), - [anon_sym_BSLASHacrfull] = ACTIONS(6429), - [anon_sym_BSLASHAcrfull] = ACTIONS(6429), - [anon_sym_BSLASHACRfull] = ACTIONS(6429), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6429), - [anon_sym_BSLASHacs] = ACTIONS(6429), - [anon_sym_BSLASHAcs] = ACTIONS(6429), - [anon_sym_BSLASHacsp] = ACTIONS(6429), - [anon_sym_BSLASHAcsp] = ACTIONS(6429), - [anon_sym_BSLASHacl] = ACTIONS(6429), - [anon_sym_BSLASHAcl] = ACTIONS(6429), - [anon_sym_BSLASHaclp] = ACTIONS(6429), - [anon_sym_BSLASHAclp] = ACTIONS(6429), - [anon_sym_BSLASHacf] = ACTIONS(6429), - [anon_sym_BSLASHAcf] = ACTIONS(6429), - [anon_sym_BSLASHacfp] = ACTIONS(6429), - [anon_sym_BSLASHAcfp] = ACTIONS(6429), - [anon_sym_BSLASHac] = ACTIONS(6429), - [anon_sym_BSLASHAc] = ACTIONS(6429), - [anon_sym_BSLASHacp] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6429), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6429), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6429), - [anon_sym_BSLASHcolor] = ACTIONS(6429), - [anon_sym_BSLASHcolorbox] = ACTIONS(6429), - [anon_sym_BSLASHtextcolor] = ACTIONS(6429), - [anon_sym_BSLASHpagecolor] = ACTIONS(6429), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6429), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6429), - [anon_sym_BSLASHtext] = ACTIONS(6429), - [anon_sym_BSLASHintertext] = ACTIONS(6429), - [anon_sym_shortintertext] = ACTIONS(6429), - }, - [1140] = { - [sym_command_name] = ACTIONS(6433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6433), - [anon_sym_LBRACK] = ACTIONS(6435), - [anon_sym_RBRACK] = ACTIONS(6435), - [anon_sym_COMMA] = ACTIONS(6435), - [anon_sym_EQ] = ACTIONS(6435), - [anon_sym_LPAREN] = ACTIONS(6435), - [anon_sym_RPAREN] = ACTIONS(6435), - [anon_sym_BSLASHpart] = ACTIONS(6433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddpart] = ACTIONS(6433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6435), - [anon_sym_BSLASHchapter] = ACTIONS(6433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddchap] = ACTIONS(6433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsection] = ACTIONS(6433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddsec] = ACTIONS(6433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubsection] = ACTIONS(6433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHparagraph] = ACTIONS(6433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6435), - [anon_sym_BSLASHitem] = ACTIONS(6433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6435), - [anon_sym_LBRACE] = ACTIONS(6435), - [sym_word] = ACTIONS(6433), - [sym_placeholder] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6435), - [anon_sym_DASH] = ACTIONS(6435), - [anon_sym_STAR] = ACTIONS(6435), - [anon_sym_SLASH] = ACTIONS(6435), - [anon_sym_LT] = ACTIONS(6433), - [anon_sym_GT] = ACTIONS(6433), - [anon_sym_BANG] = ACTIONS(6433), - [anon_sym_PIPE] = ACTIONS(6433), - [anon_sym_COLON] = ACTIONS(6433), - [anon_sym_SQUOTE] = ACTIONS(6433), - [anon_sym__] = ACTIONS(6435), - [anon_sym_CARET] = ACTIONS(6435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6435), - [anon_sym_DOLLAR] = ACTIONS(6433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6435), - [anon_sym_BSLASHbegin] = ACTIONS(6433), - [anon_sym_BSLASHend] = ACTIONS(6433), - [anon_sym_BSLASHtitle] = ACTIONS(6433), - [anon_sym_BSLASHauthor] = ACTIONS(6433), - [anon_sym_BSLASHusepackage] = ACTIONS(6433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6433), - [anon_sym_BSLASHinclude] = ACTIONS(6433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6433), - [anon_sym_BSLASHinput] = ACTIONS(6433), - [anon_sym_BSLASHsubfile] = ACTIONS(6433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6433), - [anon_sym_BSLASHbibliography] = ACTIONS(6433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6433), - [anon_sym_BSLASHincludesvg] = ACTIONS(6433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6433), - [anon_sym_BSLASHimport] = ACTIONS(6433), - [anon_sym_BSLASHsubimport] = ACTIONS(6433), - [anon_sym_BSLASHinputfrom] = ACTIONS(6433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6433), - [anon_sym_BSLASHincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHcaption] = ACTIONS(6433), - [anon_sym_BSLASHcite] = ACTIONS(6433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCite] = ACTIONS(6433), - [anon_sym_BSLASHnocite] = ACTIONS(6433), - [anon_sym_BSLASHcitet] = ACTIONS(6433), - [anon_sym_BSLASHcitep] = ACTIONS(6433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteauthor] = ACTIONS(6433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitetitle] = ACTIONS(6433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteyear] = ACTIONS(6433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitedate] = ACTIONS(6433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteurl] = ACTIONS(6433), - [anon_sym_BSLASHfullcite] = ACTIONS(6433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6433), - [anon_sym_BSLASHcitealt] = ACTIONS(6433), - [anon_sym_BSLASHcitealp] = ACTIONS(6433), - [anon_sym_BSLASHcitetext] = ACTIONS(6433), - [anon_sym_BSLASHparencite] = ACTIONS(6433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHParencite] = ACTIONS(6433), - [anon_sym_BSLASHfootcite] = ACTIONS(6433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6433), - [anon_sym_BSLASHtextcite] = ACTIONS(6433), - [anon_sym_BSLASHTextcite] = ACTIONS(6433), - [anon_sym_BSLASHsmartcite] = ACTIONS(6433), - [anon_sym_BSLASHSmartcite] = ACTIONS(6433), - [anon_sym_BSLASHsupercite] = ACTIONS(6433), - [anon_sym_BSLASHautocite] = ACTIONS(6433), - [anon_sym_BSLASHAutocite] = ACTIONS(6433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHvolcite] = ACTIONS(6433), - [anon_sym_BSLASHVolcite] = ACTIONS(6433), - [anon_sym_BSLASHpvolcite] = ACTIONS(6433), - [anon_sym_BSLASHPvolcite] = ACTIONS(6433), - [anon_sym_BSLASHfvolcite] = ACTIONS(6433), - [anon_sym_BSLASHftvolcite] = ACTIONS(6433), - [anon_sym_BSLASHsvolcite] = ACTIONS(6433), - [anon_sym_BSLASHSvolcite] = ACTIONS(6433), - [anon_sym_BSLASHtvolcite] = ACTIONS(6433), - [anon_sym_BSLASHTvolcite] = ACTIONS(6433), - [anon_sym_BSLASHavolcite] = ACTIONS(6433), - [anon_sym_BSLASHAvolcite] = ACTIONS(6433), - [anon_sym_BSLASHnotecite] = ACTIONS(6433), - [anon_sym_BSLASHNotecite] = ACTIONS(6433), - [anon_sym_BSLASHpnotecite] = ACTIONS(6433), - [anon_sym_BSLASHPnotecite] = ACTIONS(6433), - [anon_sym_BSLASHfnotecite] = ACTIONS(6433), - [anon_sym_BSLASHlabel] = ACTIONS(6433), - [anon_sym_BSLASHref] = ACTIONS(6433), - [anon_sym_BSLASHeqref] = ACTIONS(6433), - [anon_sym_BSLASHvref] = ACTIONS(6433), - [anon_sym_BSLASHVref] = ACTIONS(6433), - [anon_sym_BSLASHautoref] = ACTIONS(6433), - [anon_sym_BSLASHpageref] = ACTIONS(6433), - [anon_sym_BSLASHcref] = ACTIONS(6433), - [anon_sym_BSLASHCref] = ACTIONS(6433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnameCref] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHlabelcref] = ACTIONS(6433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCrefrange] = ACTIONS(6433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnewlabel] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6435), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHdef] = ACTIONS(6433), - [anon_sym_BSLASHlet] = ACTIONS(6433), - [anon_sym_BSLASHleft] = ACTIONS(6433), - [anon_sym_BSLASHbig] = ACTIONS(6433), - [anon_sym_BSLASHBig] = ACTIONS(6433), - [anon_sym_BSLASHbigg] = ACTIONS(6433), - [anon_sym_BSLASHBigg] = ACTIONS(6433), - [anon_sym_BSLASHbigl] = ACTIONS(6433), - [anon_sym_BSLASHBigl] = ACTIONS(6433), - [anon_sym_BSLASHbiggl] = ACTIONS(6433), - [anon_sym_BSLASHBiggl] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6433), - [anon_sym_BSLASHgls] = ACTIONS(6433), - [anon_sym_BSLASHGls] = ACTIONS(6433), - [anon_sym_BSLASHGLS] = ACTIONS(6433), - [anon_sym_BSLASHglspl] = ACTIONS(6433), - [anon_sym_BSLASHGlspl] = ACTIONS(6433), - [anon_sym_BSLASHGLSpl] = ACTIONS(6433), - [anon_sym_BSLASHglsdisp] = ACTIONS(6433), - [anon_sym_BSLASHglslink] = ACTIONS(6433), - [anon_sym_BSLASHglstext] = ACTIONS(6433), - [anon_sym_BSLASHGlstext] = ACTIONS(6433), - [anon_sym_BSLASHGLStext] = ACTIONS(6433), - [anon_sym_BSLASHglsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6433), - [anon_sym_BSLASHglsplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSplural] = ACTIONS(6433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHglsname] = ACTIONS(6433), - [anon_sym_BSLASHGlsname] = ACTIONS(6433), - [anon_sym_BSLASHGLSname] = ACTIONS(6433), - [anon_sym_BSLASHglssymbol] = ACTIONS(6433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6433), - [anon_sym_BSLASHglsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6433), - [anon_sym_BSLASHglsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6433), - [anon_sym_BSLASHglsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6433), - [anon_sym_BSLASHglsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6433), - [anon_sym_BSLASHglsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6433), - [anon_sym_BSLASHnewacronym] = ACTIONS(6433), - [anon_sym_BSLASHacrshort] = ACTIONS(6433), - [anon_sym_BSLASHAcrshort] = ACTIONS(6433), - [anon_sym_BSLASHACRshort] = ACTIONS(6433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6433), - [anon_sym_BSLASHacrlong] = ACTIONS(6433), - [anon_sym_BSLASHAcrlong] = ACTIONS(6433), - [anon_sym_BSLASHACRlong] = ACTIONS(6433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6433), - [anon_sym_BSLASHacrfull] = ACTIONS(6433), - [anon_sym_BSLASHAcrfull] = ACTIONS(6433), - [anon_sym_BSLASHACRfull] = ACTIONS(6433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6433), - [anon_sym_BSLASHacs] = ACTIONS(6433), - [anon_sym_BSLASHAcs] = ACTIONS(6433), - [anon_sym_BSLASHacsp] = ACTIONS(6433), - [anon_sym_BSLASHAcsp] = ACTIONS(6433), - [anon_sym_BSLASHacl] = ACTIONS(6433), - [anon_sym_BSLASHAcl] = ACTIONS(6433), - [anon_sym_BSLASHaclp] = ACTIONS(6433), - [anon_sym_BSLASHAclp] = ACTIONS(6433), - [anon_sym_BSLASHacf] = ACTIONS(6433), - [anon_sym_BSLASHAcf] = ACTIONS(6433), - [anon_sym_BSLASHacfp] = ACTIONS(6433), - [anon_sym_BSLASHAcfp] = ACTIONS(6433), - [anon_sym_BSLASHac] = ACTIONS(6433), - [anon_sym_BSLASHAc] = ACTIONS(6433), - [anon_sym_BSLASHacp] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6433), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6433), - [anon_sym_BSLASHcolor] = ACTIONS(6433), - [anon_sym_BSLASHcolorbox] = ACTIONS(6433), - [anon_sym_BSLASHtextcolor] = ACTIONS(6433), - [anon_sym_BSLASHpagecolor] = ACTIONS(6433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6433), - [anon_sym_BSLASHtext] = ACTIONS(6433), - [anon_sym_BSLASHintertext] = ACTIONS(6433), - [anon_sym_shortintertext] = ACTIONS(6433), - }, - [1141] = { - [sym_command_name] = ACTIONS(6437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6437), - [anon_sym_LBRACK] = ACTIONS(6439), - [anon_sym_RBRACK] = ACTIONS(6439), - [anon_sym_COMMA] = ACTIONS(6439), - [anon_sym_EQ] = ACTIONS(6439), - [anon_sym_LPAREN] = ACTIONS(6439), - [anon_sym_RPAREN] = ACTIONS(6439), - [anon_sym_BSLASHpart] = ACTIONS(6437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddpart] = ACTIONS(6437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6439), - [anon_sym_BSLASHchapter] = ACTIONS(6437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddchap] = ACTIONS(6437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsection] = ACTIONS(6437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddsec] = ACTIONS(6437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubsection] = ACTIONS(6437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHparagraph] = ACTIONS(6437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6439), - [anon_sym_BSLASHitem] = ACTIONS(6437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6439), - [anon_sym_LBRACE] = ACTIONS(6439), - [sym_word] = ACTIONS(6437), - [sym_placeholder] = ACTIONS(6439), - [anon_sym_PLUS] = ACTIONS(6439), - [anon_sym_DASH] = ACTIONS(6439), - [anon_sym_STAR] = ACTIONS(6439), - [anon_sym_SLASH] = ACTIONS(6439), - [anon_sym_LT] = ACTIONS(6437), - [anon_sym_GT] = ACTIONS(6437), - [anon_sym_BANG] = ACTIONS(6437), - [anon_sym_PIPE] = ACTIONS(6437), - [anon_sym_COLON] = ACTIONS(6437), - [anon_sym_SQUOTE] = ACTIONS(6437), - [anon_sym__] = ACTIONS(6439), - [anon_sym_CARET] = ACTIONS(6439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6439), - [anon_sym_DOLLAR] = ACTIONS(6437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6439), - [anon_sym_BSLASHbegin] = ACTIONS(6437), - [anon_sym_BSLASHend] = ACTIONS(6437), - [anon_sym_BSLASHtitle] = ACTIONS(6437), - [anon_sym_BSLASHauthor] = ACTIONS(6437), - [anon_sym_BSLASHusepackage] = ACTIONS(6437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6437), - [anon_sym_BSLASHinclude] = ACTIONS(6437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6437), - [anon_sym_BSLASHinput] = ACTIONS(6437), - [anon_sym_BSLASHsubfile] = ACTIONS(6437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6437), - [anon_sym_BSLASHbibliography] = ACTIONS(6437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6437), - [anon_sym_BSLASHincludesvg] = ACTIONS(6437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6437), - [anon_sym_BSLASHimport] = ACTIONS(6437), - [anon_sym_BSLASHsubimport] = ACTIONS(6437), - [anon_sym_BSLASHinputfrom] = ACTIONS(6437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6437), - [anon_sym_BSLASHincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHcaption] = ACTIONS(6437), - [anon_sym_BSLASHcite] = ACTIONS(6437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCite] = ACTIONS(6437), - [anon_sym_BSLASHnocite] = ACTIONS(6437), - [anon_sym_BSLASHcitet] = ACTIONS(6437), - [anon_sym_BSLASHcitep] = ACTIONS(6437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteauthor] = ACTIONS(6437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitetitle] = ACTIONS(6437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteyear] = ACTIONS(6437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitedate] = ACTIONS(6437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteurl] = ACTIONS(6437), - [anon_sym_BSLASHfullcite] = ACTIONS(6437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6437), - [anon_sym_BSLASHcitealt] = ACTIONS(6437), - [anon_sym_BSLASHcitealp] = ACTIONS(6437), - [anon_sym_BSLASHcitetext] = ACTIONS(6437), - [anon_sym_BSLASHparencite] = ACTIONS(6437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHParencite] = ACTIONS(6437), - [anon_sym_BSLASHfootcite] = ACTIONS(6437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6437), - [anon_sym_BSLASHtextcite] = ACTIONS(6437), - [anon_sym_BSLASHTextcite] = ACTIONS(6437), - [anon_sym_BSLASHsmartcite] = ACTIONS(6437), - [anon_sym_BSLASHSmartcite] = ACTIONS(6437), - [anon_sym_BSLASHsupercite] = ACTIONS(6437), - [anon_sym_BSLASHautocite] = ACTIONS(6437), - [anon_sym_BSLASHAutocite] = ACTIONS(6437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHvolcite] = ACTIONS(6437), - [anon_sym_BSLASHVolcite] = ACTIONS(6437), - [anon_sym_BSLASHpvolcite] = ACTIONS(6437), - [anon_sym_BSLASHPvolcite] = ACTIONS(6437), - [anon_sym_BSLASHfvolcite] = ACTIONS(6437), - [anon_sym_BSLASHftvolcite] = ACTIONS(6437), - [anon_sym_BSLASHsvolcite] = ACTIONS(6437), - [anon_sym_BSLASHSvolcite] = ACTIONS(6437), - [anon_sym_BSLASHtvolcite] = ACTIONS(6437), - [anon_sym_BSLASHTvolcite] = ACTIONS(6437), - [anon_sym_BSLASHavolcite] = ACTIONS(6437), - [anon_sym_BSLASHAvolcite] = ACTIONS(6437), - [anon_sym_BSLASHnotecite] = ACTIONS(6437), - [anon_sym_BSLASHNotecite] = ACTIONS(6437), - [anon_sym_BSLASHpnotecite] = ACTIONS(6437), - [anon_sym_BSLASHPnotecite] = ACTIONS(6437), - [anon_sym_BSLASHfnotecite] = ACTIONS(6437), - [anon_sym_BSLASHlabel] = ACTIONS(6437), - [anon_sym_BSLASHref] = ACTIONS(6437), - [anon_sym_BSLASHeqref] = ACTIONS(6437), - [anon_sym_BSLASHvref] = ACTIONS(6437), - [anon_sym_BSLASHVref] = ACTIONS(6437), - [anon_sym_BSLASHautoref] = ACTIONS(6437), - [anon_sym_BSLASHpageref] = ACTIONS(6437), - [anon_sym_BSLASHcref] = ACTIONS(6437), - [anon_sym_BSLASHCref] = ACTIONS(6437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnameCref] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHlabelcref] = ACTIONS(6437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCrefrange] = ACTIONS(6437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnewlabel] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6439), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHdef] = ACTIONS(6437), - [anon_sym_BSLASHlet] = ACTIONS(6437), - [anon_sym_BSLASHleft] = ACTIONS(6437), - [anon_sym_BSLASHbig] = ACTIONS(6437), - [anon_sym_BSLASHBig] = ACTIONS(6437), - [anon_sym_BSLASHbigg] = ACTIONS(6437), - [anon_sym_BSLASHBigg] = ACTIONS(6437), - [anon_sym_BSLASHbigl] = ACTIONS(6437), - [anon_sym_BSLASHBigl] = ACTIONS(6437), - [anon_sym_BSLASHbiggl] = ACTIONS(6437), - [anon_sym_BSLASHBiggl] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6437), - [anon_sym_BSLASHgls] = ACTIONS(6437), - [anon_sym_BSLASHGls] = ACTIONS(6437), - [anon_sym_BSLASHGLS] = ACTIONS(6437), - [anon_sym_BSLASHglspl] = ACTIONS(6437), - [anon_sym_BSLASHGlspl] = ACTIONS(6437), - [anon_sym_BSLASHGLSpl] = ACTIONS(6437), - [anon_sym_BSLASHglsdisp] = ACTIONS(6437), - [anon_sym_BSLASHglslink] = ACTIONS(6437), - [anon_sym_BSLASHglstext] = ACTIONS(6437), - [anon_sym_BSLASHGlstext] = ACTIONS(6437), - [anon_sym_BSLASHGLStext] = ACTIONS(6437), - [anon_sym_BSLASHglsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6437), - [anon_sym_BSLASHglsplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSplural] = ACTIONS(6437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHglsname] = ACTIONS(6437), - [anon_sym_BSLASHGlsname] = ACTIONS(6437), - [anon_sym_BSLASHGLSname] = ACTIONS(6437), - [anon_sym_BSLASHglssymbol] = ACTIONS(6437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6437), - [anon_sym_BSLASHglsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6437), - [anon_sym_BSLASHglsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6437), - [anon_sym_BSLASHglsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6437), - [anon_sym_BSLASHglsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6437), - [anon_sym_BSLASHglsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6437), - [anon_sym_BSLASHnewacronym] = ACTIONS(6437), - [anon_sym_BSLASHacrshort] = ACTIONS(6437), - [anon_sym_BSLASHAcrshort] = ACTIONS(6437), - [anon_sym_BSLASHACRshort] = ACTIONS(6437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6437), - [anon_sym_BSLASHacrlong] = ACTIONS(6437), - [anon_sym_BSLASHAcrlong] = ACTIONS(6437), - [anon_sym_BSLASHACRlong] = ACTIONS(6437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6437), - [anon_sym_BSLASHacrfull] = ACTIONS(6437), - [anon_sym_BSLASHAcrfull] = ACTIONS(6437), - [anon_sym_BSLASHACRfull] = ACTIONS(6437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6437), - [anon_sym_BSLASHacs] = ACTIONS(6437), - [anon_sym_BSLASHAcs] = ACTIONS(6437), - [anon_sym_BSLASHacsp] = ACTIONS(6437), - [anon_sym_BSLASHAcsp] = ACTIONS(6437), - [anon_sym_BSLASHacl] = ACTIONS(6437), - [anon_sym_BSLASHAcl] = ACTIONS(6437), - [anon_sym_BSLASHaclp] = ACTIONS(6437), - [anon_sym_BSLASHAclp] = ACTIONS(6437), - [anon_sym_BSLASHacf] = ACTIONS(6437), - [anon_sym_BSLASHAcf] = ACTIONS(6437), - [anon_sym_BSLASHacfp] = ACTIONS(6437), - [anon_sym_BSLASHAcfp] = ACTIONS(6437), - [anon_sym_BSLASHac] = ACTIONS(6437), - [anon_sym_BSLASHAc] = ACTIONS(6437), - [anon_sym_BSLASHacp] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6437), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6437), - [anon_sym_BSLASHcolor] = ACTIONS(6437), - [anon_sym_BSLASHcolorbox] = ACTIONS(6437), - [anon_sym_BSLASHtextcolor] = ACTIONS(6437), - [anon_sym_BSLASHpagecolor] = ACTIONS(6437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6437), - [anon_sym_BSLASHtext] = ACTIONS(6437), - [anon_sym_BSLASHintertext] = ACTIONS(6437), - [anon_sym_shortintertext] = ACTIONS(6437), - }, - [1142] = { - [sym_command_name] = ACTIONS(6441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6441), - [anon_sym_LBRACK] = ACTIONS(6443), - [anon_sym_RBRACK] = ACTIONS(6443), - [anon_sym_COMMA] = ACTIONS(6443), - [anon_sym_EQ] = ACTIONS(6443), - [anon_sym_LPAREN] = ACTIONS(6443), - [anon_sym_RPAREN] = ACTIONS(6443), - [anon_sym_BSLASHpart] = ACTIONS(6441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddpart] = ACTIONS(6441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6443), - [anon_sym_BSLASHchapter] = ACTIONS(6441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddchap] = ACTIONS(6441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsection] = ACTIONS(6441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddsec] = ACTIONS(6441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubsection] = ACTIONS(6441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHparagraph] = ACTIONS(6441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6443), - [anon_sym_BSLASHitem] = ACTIONS(6441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6443), - [anon_sym_LBRACE] = ACTIONS(6443), - [sym_word] = ACTIONS(6441), - [sym_placeholder] = ACTIONS(6443), - [anon_sym_PLUS] = ACTIONS(6443), - [anon_sym_DASH] = ACTIONS(6443), - [anon_sym_STAR] = ACTIONS(6443), - [anon_sym_SLASH] = ACTIONS(6443), - [anon_sym_LT] = ACTIONS(6441), - [anon_sym_GT] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(6441), - [anon_sym_PIPE] = ACTIONS(6441), - [anon_sym_COLON] = ACTIONS(6441), - [anon_sym_SQUOTE] = ACTIONS(6441), - [anon_sym__] = ACTIONS(6443), - [anon_sym_CARET] = ACTIONS(6443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6443), - [anon_sym_DOLLAR] = ACTIONS(6441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6443), - [anon_sym_BSLASHbegin] = ACTIONS(6441), - [anon_sym_BSLASHend] = ACTIONS(6441), - [anon_sym_BSLASHtitle] = ACTIONS(6441), - [anon_sym_BSLASHauthor] = ACTIONS(6441), - [anon_sym_BSLASHusepackage] = ACTIONS(6441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6441), - [anon_sym_BSLASHinclude] = ACTIONS(6441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6441), - [anon_sym_BSLASHinput] = ACTIONS(6441), - [anon_sym_BSLASHsubfile] = ACTIONS(6441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6441), - [anon_sym_BSLASHbibliography] = ACTIONS(6441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6441), - [anon_sym_BSLASHincludesvg] = ACTIONS(6441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6441), - [anon_sym_BSLASHimport] = ACTIONS(6441), - [anon_sym_BSLASHsubimport] = ACTIONS(6441), - [anon_sym_BSLASHinputfrom] = ACTIONS(6441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6441), - [anon_sym_BSLASHincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHcaption] = ACTIONS(6441), - [anon_sym_BSLASHcite] = ACTIONS(6441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCite] = ACTIONS(6441), - [anon_sym_BSLASHnocite] = ACTIONS(6441), - [anon_sym_BSLASHcitet] = ACTIONS(6441), - [anon_sym_BSLASHcitep] = ACTIONS(6441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteauthor] = ACTIONS(6441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitetitle] = ACTIONS(6441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteyear] = ACTIONS(6441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitedate] = ACTIONS(6441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteurl] = ACTIONS(6441), - [anon_sym_BSLASHfullcite] = ACTIONS(6441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6441), - [anon_sym_BSLASHcitealt] = ACTIONS(6441), - [anon_sym_BSLASHcitealp] = ACTIONS(6441), - [anon_sym_BSLASHcitetext] = ACTIONS(6441), - [anon_sym_BSLASHparencite] = ACTIONS(6441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHParencite] = ACTIONS(6441), - [anon_sym_BSLASHfootcite] = ACTIONS(6441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6441), - [anon_sym_BSLASHtextcite] = ACTIONS(6441), - [anon_sym_BSLASHTextcite] = ACTIONS(6441), - [anon_sym_BSLASHsmartcite] = ACTIONS(6441), - [anon_sym_BSLASHSmartcite] = ACTIONS(6441), - [anon_sym_BSLASHsupercite] = ACTIONS(6441), - [anon_sym_BSLASHautocite] = ACTIONS(6441), - [anon_sym_BSLASHAutocite] = ACTIONS(6441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHvolcite] = ACTIONS(6441), - [anon_sym_BSLASHVolcite] = ACTIONS(6441), - [anon_sym_BSLASHpvolcite] = ACTIONS(6441), - [anon_sym_BSLASHPvolcite] = ACTIONS(6441), - [anon_sym_BSLASHfvolcite] = ACTIONS(6441), - [anon_sym_BSLASHftvolcite] = ACTIONS(6441), - [anon_sym_BSLASHsvolcite] = ACTIONS(6441), - [anon_sym_BSLASHSvolcite] = ACTIONS(6441), - [anon_sym_BSLASHtvolcite] = ACTIONS(6441), - [anon_sym_BSLASHTvolcite] = ACTIONS(6441), - [anon_sym_BSLASHavolcite] = ACTIONS(6441), - [anon_sym_BSLASHAvolcite] = ACTIONS(6441), - [anon_sym_BSLASHnotecite] = ACTIONS(6441), - [anon_sym_BSLASHNotecite] = ACTIONS(6441), - [anon_sym_BSLASHpnotecite] = ACTIONS(6441), - [anon_sym_BSLASHPnotecite] = ACTIONS(6441), - [anon_sym_BSLASHfnotecite] = ACTIONS(6441), - [anon_sym_BSLASHlabel] = ACTIONS(6441), - [anon_sym_BSLASHref] = ACTIONS(6441), - [anon_sym_BSLASHeqref] = ACTIONS(6441), - [anon_sym_BSLASHvref] = ACTIONS(6441), - [anon_sym_BSLASHVref] = ACTIONS(6441), - [anon_sym_BSLASHautoref] = ACTIONS(6441), - [anon_sym_BSLASHpageref] = ACTIONS(6441), - [anon_sym_BSLASHcref] = ACTIONS(6441), - [anon_sym_BSLASHCref] = ACTIONS(6441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnameCref] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHlabelcref] = ACTIONS(6441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCrefrange] = ACTIONS(6441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnewlabel] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6443), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHdef] = ACTIONS(6441), - [anon_sym_BSLASHlet] = ACTIONS(6441), - [anon_sym_BSLASHleft] = ACTIONS(6441), - [anon_sym_BSLASHbig] = ACTIONS(6441), - [anon_sym_BSLASHBig] = ACTIONS(6441), - [anon_sym_BSLASHbigg] = ACTIONS(6441), - [anon_sym_BSLASHBigg] = ACTIONS(6441), - [anon_sym_BSLASHbigl] = ACTIONS(6441), - [anon_sym_BSLASHBigl] = ACTIONS(6441), - [anon_sym_BSLASHbiggl] = ACTIONS(6441), - [anon_sym_BSLASHBiggl] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6441), - [anon_sym_BSLASHgls] = ACTIONS(6441), - [anon_sym_BSLASHGls] = ACTIONS(6441), - [anon_sym_BSLASHGLS] = ACTIONS(6441), - [anon_sym_BSLASHglspl] = ACTIONS(6441), - [anon_sym_BSLASHGlspl] = ACTIONS(6441), - [anon_sym_BSLASHGLSpl] = ACTIONS(6441), - [anon_sym_BSLASHglsdisp] = ACTIONS(6441), - [anon_sym_BSLASHglslink] = ACTIONS(6441), - [anon_sym_BSLASHglstext] = ACTIONS(6441), - [anon_sym_BSLASHGlstext] = ACTIONS(6441), - [anon_sym_BSLASHGLStext] = ACTIONS(6441), - [anon_sym_BSLASHglsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6441), - [anon_sym_BSLASHglsplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSplural] = ACTIONS(6441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHglsname] = ACTIONS(6441), - [anon_sym_BSLASHGlsname] = ACTIONS(6441), - [anon_sym_BSLASHGLSname] = ACTIONS(6441), - [anon_sym_BSLASHglssymbol] = ACTIONS(6441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6441), - [anon_sym_BSLASHglsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6441), - [anon_sym_BSLASHglsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6441), - [anon_sym_BSLASHglsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6441), - [anon_sym_BSLASHglsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6441), - [anon_sym_BSLASHglsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6441), - [anon_sym_BSLASHnewacronym] = ACTIONS(6441), - [anon_sym_BSLASHacrshort] = ACTIONS(6441), - [anon_sym_BSLASHAcrshort] = ACTIONS(6441), - [anon_sym_BSLASHACRshort] = ACTIONS(6441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6441), - [anon_sym_BSLASHacrlong] = ACTIONS(6441), - [anon_sym_BSLASHAcrlong] = ACTIONS(6441), - [anon_sym_BSLASHACRlong] = ACTIONS(6441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6441), - [anon_sym_BSLASHacrfull] = ACTIONS(6441), - [anon_sym_BSLASHAcrfull] = ACTIONS(6441), - [anon_sym_BSLASHACRfull] = ACTIONS(6441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6441), - [anon_sym_BSLASHacs] = ACTIONS(6441), - [anon_sym_BSLASHAcs] = ACTIONS(6441), - [anon_sym_BSLASHacsp] = ACTIONS(6441), - [anon_sym_BSLASHAcsp] = ACTIONS(6441), - [anon_sym_BSLASHacl] = ACTIONS(6441), - [anon_sym_BSLASHAcl] = ACTIONS(6441), - [anon_sym_BSLASHaclp] = ACTIONS(6441), - [anon_sym_BSLASHAclp] = ACTIONS(6441), - [anon_sym_BSLASHacf] = ACTIONS(6441), - [anon_sym_BSLASHAcf] = ACTIONS(6441), - [anon_sym_BSLASHacfp] = ACTIONS(6441), - [anon_sym_BSLASHAcfp] = ACTIONS(6441), - [anon_sym_BSLASHac] = ACTIONS(6441), - [anon_sym_BSLASHAc] = ACTIONS(6441), - [anon_sym_BSLASHacp] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6441), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6441), - [anon_sym_BSLASHcolor] = ACTIONS(6441), - [anon_sym_BSLASHcolorbox] = ACTIONS(6441), - [anon_sym_BSLASHtextcolor] = ACTIONS(6441), - [anon_sym_BSLASHpagecolor] = ACTIONS(6441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6441), - [anon_sym_BSLASHtext] = ACTIONS(6441), - [anon_sym_BSLASHintertext] = ACTIONS(6441), - [anon_sym_shortintertext] = ACTIONS(6441), - }, - [1143] = { - [sym_command_name] = ACTIONS(6445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6445), - [anon_sym_LBRACK] = ACTIONS(6447), - [anon_sym_RBRACK] = ACTIONS(6447), - [anon_sym_COMMA] = ACTIONS(6447), - [anon_sym_EQ] = ACTIONS(6447), - [anon_sym_LPAREN] = ACTIONS(6447), - [anon_sym_RPAREN] = ACTIONS(6447), - [anon_sym_BSLASHpart] = ACTIONS(6445), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddpart] = ACTIONS(6445), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6447), - [anon_sym_BSLASHchapter] = ACTIONS(6445), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddchap] = ACTIONS(6445), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsection] = ACTIONS(6445), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddsec] = ACTIONS(6445), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubsection] = ACTIONS(6445), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6445), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHparagraph] = ACTIONS(6445), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6445), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6447), - [anon_sym_BSLASHitem] = ACTIONS(6445), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6447), - [anon_sym_LBRACE] = ACTIONS(6447), - [sym_word] = ACTIONS(6445), - [sym_placeholder] = ACTIONS(6447), - [anon_sym_PLUS] = ACTIONS(6447), - [anon_sym_DASH] = ACTIONS(6447), - [anon_sym_STAR] = ACTIONS(6447), - [anon_sym_SLASH] = ACTIONS(6447), - [anon_sym_LT] = ACTIONS(6445), - [anon_sym_GT] = ACTIONS(6445), - [anon_sym_BANG] = ACTIONS(6445), - [anon_sym_PIPE] = ACTIONS(6445), - [anon_sym_COLON] = ACTIONS(6445), - [anon_sym_SQUOTE] = ACTIONS(6445), - [anon_sym__] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6447), - [anon_sym_DOLLAR] = ACTIONS(6445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6447), - [anon_sym_BSLASHbegin] = ACTIONS(6445), - [anon_sym_BSLASHend] = ACTIONS(6445), - [anon_sym_BSLASHtitle] = ACTIONS(6445), - [anon_sym_BSLASHauthor] = ACTIONS(6445), - [anon_sym_BSLASHusepackage] = ACTIONS(6445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6445), - [anon_sym_BSLASHinclude] = ACTIONS(6445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6445), - [anon_sym_BSLASHinput] = ACTIONS(6445), - [anon_sym_BSLASHsubfile] = ACTIONS(6445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6445), - [anon_sym_BSLASHbibliography] = ACTIONS(6445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6445), - [anon_sym_BSLASHincludesvg] = ACTIONS(6445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6445), - [anon_sym_BSLASHimport] = ACTIONS(6445), - [anon_sym_BSLASHsubimport] = ACTIONS(6445), - [anon_sym_BSLASHinputfrom] = ACTIONS(6445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6445), - [anon_sym_BSLASHincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHcaption] = ACTIONS(6445), - [anon_sym_BSLASHcite] = ACTIONS(6445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCite] = ACTIONS(6445), - [anon_sym_BSLASHnocite] = ACTIONS(6445), - [anon_sym_BSLASHcitet] = ACTIONS(6445), - [anon_sym_BSLASHcitep] = ACTIONS(6445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteauthor] = ACTIONS(6445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitetitle] = ACTIONS(6445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteyear] = ACTIONS(6445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitedate] = ACTIONS(6445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteurl] = ACTIONS(6445), - [anon_sym_BSLASHfullcite] = ACTIONS(6445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6445), - [anon_sym_BSLASHcitealt] = ACTIONS(6445), - [anon_sym_BSLASHcitealp] = ACTIONS(6445), - [anon_sym_BSLASHcitetext] = ACTIONS(6445), - [anon_sym_BSLASHparencite] = ACTIONS(6445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHParencite] = ACTIONS(6445), - [anon_sym_BSLASHfootcite] = ACTIONS(6445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6445), - [anon_sym_BSLASHtextcite] = ACTIONS(6445), - [anon_sym_BSLASHTextcite] = ACTIONS(6445), - [anon_sym_BSLASHsmartcite] = ACTIONS(6445), - [anon_sym_BSLASHSmartcite] = ACTIONS(6445), - [anon_sym_BSLASHsupercite] = ACTIONS(6445), - [anon_sym_BSLASHautocite] = ACTIONS(6445), - [anon_sym_BSLASHAutocite] = ACTIONS(6445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHvolcite] = ACTIONS(6445), - [anon_sym_BSLASHVolcite] = ACTIONS(6445), - [anon_sym_BSLASHpvolcite] = ACTIONS(6445), - [anon_sym_BSLASHPvolcite] = ACTIONS(6445), - [anon_sym_BSLASHfvolcite] = ACTIONS(6445), - [anon_sym_BSLASHftvolcite] = ACTIONS(6445), - [anon_sym_BSLASHsvolcite] = ACTIONS(6445), - [anon_sym_BSLASHSvolcite] = ACTIONS(6445), - [anon_sym_BSLASHtvolcite] = ACTIONS(6445), - [anon_sym_BSLASHTvolcite] = ACTIONS(6445), - [anon_sym_BSLASHavolcite] = ACTIONS(6445), - [anon_sym_BSLASHAvolcite] = ACTIONS(6445), - [anon_sym_BSLASHnotecite] = ACTIONS(6445), - [anon_sym_BSLASHNotecite] = ACTIONS(6445), - [anon_sym_BSLASHpnotecite] = ACTIONS(6445), - [anon_sym_BSLASHPnotecite] = ACTIONS(6445), - [anon_sym_BSLASHfnotecite] = ACTIONS(6445), - [anon_sym_BSLASHlabel] = ACTIONS(6445), - [anon_sym_BSLASHref] = ACTIONS(6445), - [anon_sym_BSLASHeqref] = ACTIONS(6445), - [anon_sym_BSLASHvref] = ACTIONS(6445), - [anon_sym_BSLASHVref] = ACTIONS(6445), - [anon_sym_BSLASHautoref] = ACTIONS(6445), - [anon_sym_BSLASHpageref] = ACTIONS(6445), - [anon_sym_BSLASHcref] = ACTIONS(6445), - [anon_sym_BSLASHCref] = ACTIONS(6445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnameCref] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHlabelcref] = ACTIONS(6445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCrefrange] = ACTIONS(6445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnewlabel] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6447), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHdef] = ACTIONS(6445), - [anon_sym_BSLASHlet] = ACTIONS(6445), - [anon_sym_BSLASHleft] = ACTIONS(6445), - [anon_sym_BSLASHbig] = ACTIONS(6445), - [anon_sym_BSLASHBig] = ACTIONS(6445), - [anon_sym_BSLASHbigg] = ACTIONS(6445), - [anon_sym_BSLASHBigg] = ACTIONS(6445), - [anon_sym_BSLASHbigl] = ACTIONS(6445), - [anon_sym_BSLASHBigl] = ACTIONS(6445), - [anon_sym_BSLASHbiggl] = ACTIONS(6445), - [anon_sym_BSLASHBiggl] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6445), - [anon_sym_BSLASHgls] = ACTIONS(6445), - [anon_sym_BSLASHGls] = ACTIONS(6445), - [anon_sym_BSLASHGLS] = ACTIONS(6445), - [anon_sym_BSLASHglspl] = ACTIONS(6445), - [anon_sym_BSLASHGlspl] = ACTIONS(6445), - [anon_sym_BSLASHGLSpl] = ACTIONS(6445), - [anon_sym_BSLASHglsdisp] = ACTIONS(6445), - [anon_sym_BSLASHglslink] = ACTIONS(6445), - [anon_sym_BSLASHglstext] = ACTIONS(6445), - [anon_sym_BSLASHGlstext] = ACTIONS(6445), - [anon_sym_BSLASHGLStext] = ACTIONS(6445), - [anon_sym_BSLASHglsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6445), - [anon_sym_BSLASHglsplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSplural] = ACTIONS(6445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHglsname] = ACTIONS(6445), - [anon_sym_BSLASHGlsname] = ACTIONS(6445), - [anon_sym_BSLASHGLSname] = ACTIONS(6445), - [anon_sym_BSLASHglssymbol] = ACTIONS(6445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6445), - [anon_sym_BSLASHglsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6445), - [anon_sym_BSLASHglsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6445), - [anon_sym_BSLASHglsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6445), - [anon_sym_BSLASHglsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6445), - [anon_sym_BSLASHglsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6445), - [anon_sym_BSLASHnewacronym] = ACTIONS(6445), - [anon_sym_BSLASHacrshort] = ACTIONS(6445), - [anon_sym_BSLASHAcrshort] = ACTIONS(6445), - [anon_sym_BSLASHACRshort] = ACTIONS(6445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6445), - [anon_sym_BSLASHacrlong] = ACTIONS(6445), - [anon_sym_BSLASHAcrlong] = ACTIONS(6445), - [anon_sym_BSLASHACRlong] = ACTIONS(6445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6445), - [anon_sym_BSLASHacrfull] = ACTIONS(6445), - [anon_sym_BSLASHAcrfull] = ACTIONS(6445), - [anon_sym_BSLASHACRfull] = ACTIONS(6445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6445), - [anon_sym_BSLASHacs] = ACTIONS(6445), - [anon_sym_BSLASHAcs] = ACTIONS(6445), - [anon_sym_BSLASHacsp] = ACTIONS(6445), - [anon_sym_BSLASHAcsp] = ACTIONS(6445), - [anon_sym_BSLASHacl] = ACTIONS(6445), - [anon_sym_BSLASHAcl] = ACTIONS(6445), - [anon_sym_BSLASHaclp] = ACTIONS(6445), - [anon_sym_BSLASHAclp] = ACTIONS(6445), - [anon_sym_BSLASHacf] = ACTIONS(6445), - [anon_sym_BSLASHAcf] = ACTIONS(6445), - [anon_sym_BSLASHacfp] = ACTIONS(6445), - [anon_sym_BSLASHAcfp] = ACTIONS(6445), - [anon_sym_BSLASHac] = ACTIONS(6445), - [anon_sym_BSLASHAc] = ACTIONS(6445), - [anon_sym_BSLASHacp] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6445), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6445), - [anon_sym_BSLASHcolor] = ACTIONS(6445), - [anon_sym_BSLASHcolorbox] = ACTIONS(6445), - [anon_sym_BSLASHtextcolor] = ACTIONS(6445), - [anon_sym_BSLASHpagecolor] = ACTIONS(6445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6445), - [anon_sym_BSLASHtext] = ACTIONS(6445), - [anon_sym_BSLASHintertext] = ACTIONS(6445), - [anon_sym_shortintertext] = ACTIONS(6445), - }, - [1144] = { - [sym_command_name] = ACTIONS(6237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6237), - [anon_sym_LBRACK] = ACTIONS(6239), - [anon_sym_RBRACK] = ACTIONS(6239), - [anon_sym_COMMA] = ACTIONS(6239), - [anon_sym_EQ] = ACTIONS(6239), - [anon_sym_LPAREN] = ACTIONS(6239), - [anon_sym_RPAREN] = ACTIONS(6239), - [anon_sym_BSLASHpart] = ACTIONS(6237), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddpart] = ACTIONS(6237), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6239), - [anon_sym_BSLASHchapter] = ACTIONS(6237), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddchap] = ACTIONS(6237), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsection] = ACTIONS(6237), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddsec] = ACTIONS(6237), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubsection] = ACTIONS(6237), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6237), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHparagraph] = ACTIONS(6237), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6237), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6239), - [anon_sym_BSLASHitem] = ACTIONS(6237), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6239), - [sym_word] = ACTIONS(6237), - [sym_placeholder] = ACTIONS(6239), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6239), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_BANG] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_SQUOTE] = ACTIONS(6237), - [anon_sym__] = ACTIONS(6239), - [anon_sym_CARET] = ACTIONS(6239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6239), - [anon_sym_DOLLAR] = ACTIONS(6237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), - [anon_sym_BSLASHbegin] = ACTIONS(6237), - [anon_sym_BSLASHtitle] = ACTIONS(6237), - [anon_sym_BSLASHauthor] = ACTIONS(6237), - [anon_sym_BSLASHusepackage] = ACTIONS(6237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6237), - [anon_sym_BSLASHinclude] = ACTIONS(6237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6237), - [anon_sym_BSLASHinput] = ACTIONS(6237), - [anon_sym_BSLASHsubfile] = ACTIONS(6237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6237), - [anon_sym_BSLASHbibliography] = ACTIONS(6237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6237), - [anon_sym_BSLASHincludesvg] = ACTIONS(6237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6237), - [anon_sym_BSLASHimport] = ACTIONS(6237), - [anon_sym_BSLASHsubimport] = ACTIONS(6237), - [anon_sym_BSLASHinputfrom] = ACTIONS(6237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6237), - [anon_sym_BSLASHincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHcaption] = ACTIONS(6237), - [anon_sym_BSLASHcite] = ACTIONS(6237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCite] = ACTIONS(6237), - [anon_sym_BSLASHnocite] = ACTIONS(6237), - [anon_sym_BSLASHcitet] = ACTIONS(6237), - [anon_sym_BSLASHcitep] = ACTIONS(6237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteauthor] = ACTIONS(6237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitetitle] = ACTIONS(6237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteyear] = ACTIONS(6237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitedate] = ACTIONS(6237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteurl] = ACTIONS(6237), - [anon_sym_BSLASHfullcite] = ACTIONS(6237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6237), - [anon_sym_BSLASHcitealt] = ACTIONS(6237), - [anon_sym_BSLASHcitealp] = ACTIONS(6237), - [anon_sym_BSLASHcitetext] = ACTIONS(6237), - [anon_sym_BSLASHparencite] = ACTIONS(6237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHParencite] = ACTIONS(6237), - [anon_sym_BSLASHfootcite] = ACTIONS(6237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6237), - [anon_sym_BSLASHtextcite] = ACTIONS(6237), - [anon_sym_BSLASHTextcite] = ACTIONS(6237), - [anon_sym_BSLASHsmartcite] = ACTIONS(6237), - [anon_sym_BSLASHSmartcite] = ACTIONS(6237), - [anon_sym_BSLASHsupercite] = ACTIONS(6237), - [anon_sym_BSLASHautocite] = ACTIONS(6237), - [anon_sym_BSLASHAutocite] = ACTIONS(6237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHvolcite] = ACTIONS(6237), - [anon_sym_BSLASHVolcite] = ACTIONS(6237), - [anon_sym_BSLASHpvolcite] = ACTIONS(6237), - [anon_sym_BSLASHPvolcite] = ACTIONS(6237), - [anon_sym_BSLASHfvolcite] = ACTIONS(6237), - [anon_sym_BSLASHftvolcite] = ACTIONS(6237), - [anon_sym_BSLASHsvolcite] = ACTIONS(6237), - [anon_sym_BSLASHSvolcite] = ACTIONS(6237), - [anon_sym_BSLASHtvolcite] = ACTIONS(6237), - [anon_sym_BSLASHTvolcite] = ACTIONS(6237), - [anon_sym_BSLASHavolcite] = ACTIONS(6237), - [anon_sym_BSLASHAvolcite] = ACTIONS(6237), - [anon_sym_BSLASHnotecite] = ACTIONS(6237), - [anon_sym_BSLASHNotecite] = ACTIONS(6237), - [anon_sym_BSLASHpnotecite] = ACTIONS(6237), - [anon_sym_BSLASHPnotecite] = ACTIONS(6237), - [anon_sym_BSLASHfnotecite] = ACTIONS(6237), - [anon_sym_BSLASHlabel] = ACTIONS(6237), - [anon_sym_BSLASHref] = ACTIONS(6237), - [anon_sym_BSLASHeqref] = ACTIONS(6237), - [anon_sym_BSLASHvref] = ACTIONS(6237), - [anon_sym_BSLASHVref] = ACTIONS(6237), - [anon_sym_BSLASHautoref] = ACTIONS(6237), - [anon_sym_BSLASHpageref] = ACTIONS(6237), - [anon_sym_BSLASHcref] = ACTIONS(6237), - [anon_sym_BSLASHCref] = ACTIONS(6237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnameCref] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHlabelcref] = ACTIONS(6237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCrefrange] = ACTIONS(6237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnewlabel] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHdef] = ACTIONS(6237), - [anon_sym_BSLASHlet] = ACTIONS(6237), - [anon_sym_BSLASHleft] = ACTIONS(6237), - [anon_sym_BSLASHbig] = ACTIONS(6237), - [anon_sym_BSLASHBig] = ACTIONS(6237), - [anon_sym_BSLASHbigg] = ACTIONS(6237), - [anon_sym_BSLASHBigg] = ACTIONS(6237), - [anon_sym_BSLASHbigl] = ACTIONS(6237), - [anon_sym_BSLASHBigl] = ACTIONS(6237), - [anon_sym_BSLASHbiggl] = ACTIONS(6237), - [anon_sym_BSLASHBiggl] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6237), - [anon_sym_BSLASHgls] = ACTIONS(6237), - [anon_sym_BSLASHGls] = ACTIONS(6237), - [anon_sym_BSLASHGLS] = ACTIONS(6237), - [anon_sym_BSLASHglspl] = ACTIONS(6237), - [anon_sym_BSLASHGlspl] = ACTIONS(6237), - [anon_sym_BSLASHGLSpl] = ACTIONS(6237), - [anon_sym_BSLASHglsdisp] = ACTIONS(6237), - [anon_sym_BSLASHglslink] = ACTIONS(6237), - [anon_sym_BSLASHglstext] = ACTIONS(6237), - [anon_sym_BSLASHGlstext] = ACTIONS(6237), - [anon_sym_BSLASHGLStext] = ACTIONS(6237), - [anon_sym_BSLASHglsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6237), - [anon_sym_BSLASHglsplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSplural] = ACTIONS(6237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHglsname] = ACTIONS(6237), - [anon_sym_BSLASHGlsname] = ACTIONS(6237), - [anon_sym_BSLASHGLSname] = ACTIONS(6237), - [anon_sym_BSLASHglssymbol] = ACTIONS(6237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6237), - [anon_sym_BSLASHglsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6237), - [anon_sym_BSLASHglsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6237), - [anon_sym_BSLASHglsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6237), - [anon_sym_BSLASHglsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6237), - [anon_sym_BSLASHglsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6237), - [anon_sym_BSLASHnewacronym] = ACTIONS(6237), - [anon_sym_BSLASHacrshort] = ACTIONS(6237), - [anon_sym_BSLASHAcrshort] = ACTIONS(6237), - [anon_sym_BSLASHACRshort] = ACTIONS(6237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6237), - [anon_sym_BSLASHacrlong] = ACTIONS(6237), - [anon_sym_BSLASHAcrlong] = ACTIONS(6237), - [anon_sym_BSLASHACRlong] = ACTIONS(6237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6237), - [anon_sym_BSLASHacrfull] = ACTIONS(6237), - [anon_sym_BSLASHAcrfull] = ACTIONS(6237), - [anon_sym_BSLASHACRfull] = ACTIONS(6237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6237), - [anon_sym_BSLASHacs] = ACTIONS(6237), - [anon_sym_BSLASHAcs] = ACTIONS(6237), - [anon_sym_BSLASHacsp] = ACTIONS(6237), - [anon_sym_BSLASHAcsp] = ACTIONS(6237), - [anon_sym_BSLASHacl] = ACTIONS(6237), - [anon_sym_BSLASHAcl] = ACTIONS(6237), - [anon_sym_BSLASHaclp] = ACTIONS(6237), - [anon_sym_BSLASHAclp] = ACTIONS(6237), - [anon_sym_BSLASHacf] = ACTIONS(6237), - [anon_sym_BSLASHAcf] = ACTIONS(6237), - [anon_sym_BSLASHacfp] = ACTIONS(6237), - [anon_sym_BSLASHAcfp] = ACTIONS(6237), - [anon_sym_BSLASHac] = ACTIONS(6237), - [anon_sym_BSLASHAc] = ACTIONS(6237), - [anon_sym_BSLASHacp] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6237), - [anon_sym_BSLASHcolor] = ACTIONS(6237), - [anon_sym_BSLASHcolorbox] = ACTIONS(6237), - [anon_sym_BSLASHtextcolor] = ACTIONS(6237), - [anon_sym_BSLASHpagecolor] = ACTIONS(6237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6237), - [anon_sym_BSLASHtext] = ACTIONS(6237), - [anon_sym_BSLASHintertext] = ACTIONS(6237), - [anon_sym_shortintertext] = ACTIONS(6237), - }, - [1145] = { - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(187), - [anon_sym_BSLASHpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddpart] = ACTIONS(187), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHchapter] = ACTIONS(187), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddchap] = ACTIONS(187), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(185), - [anon_sym_BSLASHsection] = ACTIONS(187), - [anon_sym_BSLASHsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddsec] = ACTIONS(187), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHparagraph] = ACTIONS(187), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph] = ACTIONS(187), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHitem] = ACTIONS(187), - [anon_sym_BSLASHitem_STAR] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHend] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [1146] = { - [sym_command_name] = ACTIONS(6185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_RBRACK] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_EQ] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_BSLASHpart] = ACTIONS(6185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddpart] = ACTIONS(6185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6187), - [anon_sym_BSLASHchapter] = ACTIONS(6185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddchap] = ACTIONS(6185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsection] = ACTIONS(6185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddsec] = ACTIONS(6185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubsection] = ACTIONS(6185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHparagraph] = ACTIONS(6185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6187), - [anon_sym_BSLASHitem] = ACTIONS(6185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6187), - [anon_sym_LBRACE] = ACTIONS(6187), - [sym_word] = ACTIONS(6185), - [sym_placeholder] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6187), - [anon_sym_DASH] = ACTIONS(6187), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_SQUOTE] = ACTIONS(6185), - [anon_sym__] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), - [anon_sym_DOLLAR] = ACTIONS(6185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6187), - [anon_sym_BSLASHbegin] = ACTIONS(6185), - [anon_sym_BSLASHtitle] = ACTIONS(6185), - [anon_sym_BSLASHauthor] = ACTIONS(6185), - [anon_sym_BSLASHusepackage] = ACTIONS(6185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), - [anon_sym_BSLASHinclude] = ACTIONS(6185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), - [anon_sym_BSLASHinput] = ACTIONS(6185), - [anon_sym_BSLASHsubfile] = ACTIONS(6185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), - [anon_sym_BSLASHbibliography] = ACTIONS(6185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), - [anon_sym_BSLASHincludesvg] = ACTIONS(6185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), - [anon_sym_BSLASHimport] = ACTIONS(6185), - [anon_sym_BSLASHsubimport] = ACTIONS(6185), - [anon_sym_BSLASHinputfrom] = ACTIONS(6185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), - [anon_sym_BSLASHincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHcaption] = ACTIONS(6185), - [anon_sym_BSLASHcite] = ACTIONS(6185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCite] = ACTIONS(6185), - [anon_sym_BSLASHnocite] = ACTIONS(6185), - [anon_sym_BSLASHcitet] = ACTIONS(6185), - [anon_sym_BSLASHcitep] = ACTIONS(6185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteauthor] = ACTIONS(6185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitetitle] = ACTIONS(6185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteyear] = ACTIONS(6185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitedate] = ACTIONS(6185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteurl] = ACTIONS(6185), - [anon_sym_BSLASHfullcite] = ACTIONS(6185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), - [anon_sym_BSLASHcitealt] = ACTIONS(6185), - [anon_sym_BSLASHcitealp] = ACTIONS(6185), - [anon_sym_BSLASHcitetext] = ACTIONS(6185), - [anon_sym_BSLASHparencite] = ACTIONS(6185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHParencite] = ACTIONS(6185), - [anon_sym_BSLASHfootcite] = ACTIONS(6185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), - [anon_sym_BSLASHtextcite] = ACTIONS(6185), - [anon_sym_BSLASHTextcite] = ACTIONS(6185), - [anon_sym_BSLASHsmartcite] = ACTIONS(6185), - [anon_sym_BSLASHSmartcite] = ACTIONS(6185), - [anon_sym_BSLASHsupercite] = ACTIONS(6185), - [anon_sym_BSLASHautocite] = ACTIONS(6185), - [anon_sym_BSLASHAutocite] = ACTIONS(6185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHvolcite] = ACTIONS(6185), - [anon_sym_BSLASHVolcite] = ACTIONS(6185), - [anon_sym_BSLASHpvolcite] = ACTIONS(6185), - [anon_sym_BSLASHPvolcite] = ACTIONS(6185), - [anon_sym_BSLASHfvolcite] = ACTIONS(6185), - [anon_sym_BSLASHftvolcite] = ACTIONS(6185), - [anon_sym_BSLASHsvolcite] = ACTIONS(6185), - [anon_sym_BSLASHSvolcite] = ACTIONS(6185), - [anon_sym_BSLASHtvolcite] = ACTIONS(6185), - [anon_sym_BSLASHTvolcite] = ACTIONS(6185), - [anon_sym_BSLASHavolcite] = ACTIONS(6185), - [anon_sym_BSLASHAvolcite] = ACTIONS(6185), - [anon_sym_BSLASHnotecite] = ACTIONS(6185), - [anon_sym_BSLASHNotecite] = ACTIONS(6185), - [anon_sym_BSLASHpnotecite] = ACTIONS(6185), - [anon_sym_BSLASHPnotecite] = ACTIONS(6185), - [anon_sym_BSLASHfnotecite] = ACTIONS(6185), - [anon_sym_BSLASHlabel] = ACTIONS(6185), - [anon_sym_BSLASHref] = ACTIONS(6185), - [anon_sym_BSLASHeqref] = ACTIONS(6185), - [anon_sym_BSLASHvref] = ACTIONS(6185), - [anon_sym_BSLASHVref] = ACTIONS(6185), - [anon_sym_BSLASHautoref] = ACTIONS(6185), - [anon_sym_BSLASHpageref] = ACTIONS(6185), - [anon_sym_BSLASHcref] = ACTIONS(6185), - [anon_sym_BSLASHCref] = ACTIONS(6185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnameCref] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHlabelcref] = ACTIONS(6185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCrefrange] = ACTIONS(6185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnewlabel] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHdef] = ACTIONS(6185), - [anon_sym_BSLASHlet] = ACTIONS(6185), - [anon_sym_BSLASHleft] = ACTIONS(6185), - [anon_sym_BSLASHbig] = ACTIONS(6185), - [anon_sym_BSLASHBig] = ACTIONS(6185), - [anon_sym_BSLASHbigg] = ACTIONS(6185), - [anon_sym_BSLASHBigg] = ACTIONS(6185), - [anon_sym_BSLASHbigl] = ACTIONS(6185), - [anon_sym_BSLASHBigl] = ACTIONS(6185), - [anon_sym_BSLASHbiggl] = ACTIONS(6185), - [anon_sym_BSLASHBiggl] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), - [anon_sym_BSLASHgls] = ACTIONS(6185), - [anon_sym_BSLASHGls] = ACTIONS(6185), - [anon_sym_BSLASHGLS] = ACTIONS(6185), - [anon_sym_BSLASHglspl] = ACTIONS(6185), - [anon_sym_BSLASHGlspl] = ACTIONS(6185), - [anon_sym_BSLASHGLSpl] = ACTIONS(6185), - [anon_sym_BSLASHglsdisp] = ACTIONS(6185), - [anon_sym_BSLASHglslink] = ACTIONS(6185), - [anon_sym_BSLASHglstext] = ACTIONS(6185), - [anon_sym_BSLASHGlstext] = ACTIONS(6185), - [anon_sym_BSLASHGLStext] = ACTIONS(6185), - [anon_sym_BSLASHglsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), - [anon_sym_BSLASHglsplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSplural] = ACTIONS(6185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHglsname] = ACTIONS(6185), - [anon_sym_BSLASHGlsname] = ACTIONS(6185), - [anon_sym_BSLASHGLSname] = ACTIONS(6185), - [anon_sym_BSLASHglssymbol] = ACTIONS(6185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), - [anon_sym_BSLASHglsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), - [anon_sym_BSLASHglsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), - [anon_sym_BSLASHglsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), - [anon_sym_BSLASHglsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), - [anon_sym_BSLASHglsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), - [anon_sym_BSLASHnewacronym] = ACTIONS(6185), - [anon_sym_BSLASHacrshort] = ACTIONS(6185), - [anon_sym_BSLASHAcrshort] = ACTIONS(6185), - [anon_sym_BSLASHACRshort] = ACTIONS(6185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), - [anon_sym_BSLASHacrlong] = ACTIONS(6185), - [anon_sym_BSLASHAcrlong] = ACTIONS(6185), - [anon_sym_BSLASHACRlong] = ACTIONS(6185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), - [anon_sym_BSLASHacrfull] = ACTIONS(6185), - [anon_sym_BSLASHAcrfull] = ACTIONS(6185), - [anon_sym_BSLASHACRfull] = ACTIONS(6185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), - [anon_sym_BSLASHacs] = ACTIONS(6185), - [anon_sym_BSLASHAcs] = ACTIONS(6185), - [anon_sym_BSLASHacsp] = ACTIONS(6185), - [anon_sym_BSLASHAcsp] = ACTIONS(6185), - [anon_sym_BSLASHacl] = ACTIONS(6185), - [anon_sym_BSLASHAcl] = ACTIONS(6185), - [anon_sym_BSLASHaclp] = ACTIONS(6185), - [anon_sym_BSLASHAclp] = ACTIONS(6185), - [anon_sym_BSLASHacf] = ACTIONS(6185), - [anon_sym_BSLASHAcf] = ACTIONS(6185), - [anon_sym_BSLASHacfp] = ACTIONS(6185), - [anon_sym_BSLASHAcfp] = ACTIONS(6185), - [anon_sym_BSLASHac] = ACTIONS(6185), - [anon_sym_BSLASHAc] = ACTIONS(6185), - [anon_sym_BSLASHacp] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), - [anon_sym_BSLASHcolor] = ACTIONS(6185), - [anon_sym_BSLASHcolorbox] = ACTIONS(6185), - [anon_sym_BSLASHtextcolor] = ACTIONS(6185), - [anon_sym_BSLASHpagecolor] = ACTIONS(6185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), - [anon_sym_BSLASHtext] = ACTIONS(6185), - [anon_sym_BSLASHintertext] = ACTIONS(6185), - [anon_sym_shortintertext] = ACTIONS(6185), - }, - [1147] = { - [sym_command_name] = ACTIONS(6037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6037), - [anon_sym_LBRACK] = ACTIONS(6039), - [anon_sym_RBRACK] = ACTIONS(6039), - [anon_sym_COMMA] = ACTIONS(6039), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_LPAREN] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_BSLASHpart] = ACTIONS(6037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddpart] = ACTIONS(6037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6039), - [anon_sym_BSLASHchapter] = ACTIONS(6037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddchap] = ACTIONS(6037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsection] = ACTIONS(6037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddsec] = ACTIONS(6037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubsection] = ACTIONS(6037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHparagraph] = ACTIONS(6037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6039), - [anon_sym_BSLASHitem] = ACTIONS(6037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6039), - [anon_sym_LBRACE] = ACTIONS(6039), - [sym_word] = ACTIONS(6037), - [sym_placeholder] = ACTIONS(6039), - [anon_sym_PLUS] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [anon_sym_STAR] = ACTIONS(6039), - [anon_sym_SLASH] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6037), - [anon_sym_GT] = ACTIONS(6037), - [anon_sym_BANG] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_COLON] = ACTIONS(6037), - [anon_sym_SQUOTE] = ACTIONS(6037), - [anon_sym__] = ACTIONS(6039), - [anon_sym_CARET] = ACTIONS(6039), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6039), - [anon_sym_BSLASHbegin] = ACTIONS(6037), - [anon_sym_BSLASHend] = ACTIONS(6037), - [anon_sym_BSLASHtitle] = ACTIONS(6037), - [anon_sym_BSLASHauthor] = ACTIONS(6037), - [anon_sym_BSLASHusepackage] = ACTIONS(6037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6037), - [anon_sym_BSLASHinclude] = ACTIONS(6037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6037), - [anon_sym_BSLASHinput] = ACTIONS(6037), - [anon_sym_BSLASHsubfile] = ACTIONS(6037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6037), - [anon_sym_BSLASHbibliography] = ACTIONS(6037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6037), - [anon_sym_BSLASHincludesvg] = ACTIONS(6037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6037), - [anon_sym_BSLASHimport] = ACTIONS(6037), - [anon_sym_BSLASHsubimport] = ACTIONS(6037), - [anon_sym_BSLASHinputfrom] = ACTIONS(6037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6037), - [anon_sym_BSLASHincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHcaption] = ACTIONS(6037), - [anon_sym_BSLASHcite] = ACTIONS(6037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCite] = ACTIONS(6037), - [anon_sym_BSLASHnocite] = ACTIONS(6037), - [anon_sym_BSLASHcitet] = ACTIONS(6037), - [anon_sym_BSLASHcitep] = ACTIONS(6037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteauthor] = ACTIONS(6037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitetitle] = ACTIONS(6037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteyear] = ACTIONS(6037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitedate] = ACTIONS(6037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteurl] = ACTIONS(6037), - [anon_sym_BSLASHfullcite] = ACTIONS(6037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6037), - [anon_sym_BSLASHcitealt] = ACTIONS(6037), - [anon_sym_BSLASHcitealp] = ACTIONS(6037), - [anon_sym_BSLASHcitetext] = ACTIONS(6037), - [anon_sym_BSLASHparencite] = ACTIONS(6037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHParencite] = ACTIONS(6037), - [anon_sym_BSLASHfootcite] = ACTIONS(6037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6037), - [anon_sym_BSLASHtextcite] = ACTIONS(6037), - [anon_sym_BSLASHTextcite] = ACTIONS(6037), - [anon_sym_BSLASHsmartcite] = ACTIONS(6037), - [anon_sym_BSLASHSmartcite] = ACTIONS(6037), - [anon_sym_BSLASHsupercite] = ACTIONS(6037), - [anon_sym_BSLASHautocite] = ACTIONS(6037), - [anon_sym_BSLASHAutocite] = ACTIONS(6037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHvolcite] = ACTIONS(6037), - [anon_sym_BSLASHVolcite] = ACTIONS(6037), - [anon_sym_BSLASHpvolcite] = ACTIONS(6037), - [anon_sym_BSLASHPvolcite] = ACTIONS(6037), - [anon_sym_BSLASHfvolcite] = ACTIONS(6037), - [anon_sym_BSLASHftvolcite] = ACTIONS(6037), - [anon_sym_BSLASHsvolcite] = ACTIONS(6037), - [anon_sym_BSLASHSvolcite] = ACTIONS(6037), - [anon_sym_BSLASHtvolcite] = ACTIONS(6037), - [anon_sym_BSLASHTvolcite] = ACTIONS(6037), - [anon_sym_BSLASHavolcite] = ACTIONS(6037), - [anon_sym_BSLASHAvolcite] = ACTIONS(6037), - [anon_sym_BSLASHnotecite] = ACTIONS(6037), - [anon_sym_BSLASHNotecite] = ACTIONS(6037), - [anon_sym_BSLASHpnotecite] = ACTIONS(6037), - [anon_sym_BSLASHPnotecite] = ACTIONS(6037), - [anon_sym_BSLASHfnotecite] = ACTIONS(6037), - [anon_sym_BSLASHlabel] = ACTIONS(6037), - [anon_sym_BSLASHref] = ACTIONS(6037), - [anon_sym_BSLASHeqref] = ACTIONS(6037), - [anon_sym_BSLASHvref] = ACTIONS(6037), - [anon_sym_BSLASHVref] = ACTIONS(6037), - [anon_sym_BSLASHautoref] = ACTIONS(6037), - [anon_sym_BSLASHpageref] = ACTIONS(6037), - [anon_sym_BSLASHcref] = ACTIONS(6037), - [anon_sym_BSLASHCref] = ACTIONS(6037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnameCref] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHlabelcref] = ACTIONS(6037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCrefrange] = ACTIONS(6037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnewlabel] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6039), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHdef] = ACTIONS(6037), - [anon_sym_BSLASHlet] = ACTIONS(6037), - [anon_sym_BSLASHleft] = ACTIONS(6037), - [anon_sym_BSLASHbig] = ACTIONS(6037), - [anon_sym_BSLASHBig] = ACTIONS(6037), - [anon_sym_BSLASHbigg] = ACTIONS(6037), - [anon_sym_BSLASHBigg] = ACTIONS(6037), - [anon_sym_BSLASHbigl] = ACTIONS(6037), - [anon_sym_BSLASHBigl] = ACTIONS(6037), - [anon_sym_BSLASHbiggl] = ACTIONS(6037), - [anon_sym_BSLASHBiggl] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6037), - [anon_sym_BSLASHgls] = ACTIONS(6037), - [anon_sym_BSLASHGls] = ACTIONS(6037), - [anon_sym_BSLASHGLS] = ACTIONS(6037), - [anon_sym_BSLASHglspl] = ACTIONS(6037), - [anon_sym_BSLASHGlspl] = ACTIONS(6037), - [anon_sym_BSLASHGLSpl] = ACTIONS(6037), - [anon_sym_BSLASHglsdisp] = ACTIONS(6037), - [anon_sym_BSLASHglslink] = ACTIONS(6037), - [anon_sym_BSLASHglstext] = ACTIONS(6037), - [anon_sym_BSLASHGlstext] = ACTIONS(6037), - [anon_sym_BSLASHGLStext] = ACTIONS(6037), - [anon_sym_BSLASHglsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6037), - [anon_sym_BSLASHglsplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSplural] = ACTIONS(6037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHglsname] = ACTIONS(6037), - [anon_sym_BSLASHGlsname] = ACTIONS(6037), - [anon_sym_BSLASHGLSname] = ACTIONS(6037), - [anon_sym_BSLASHglssymbol] = ACTIONS(6037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6037), - [anon_sym_BSLASHglsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6037), - [anon_sym_BSLASHglsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6037), - [anon_sym_BSLASHglsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6037), - [anon_sym_BSLASHglsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6037), - [anon_sym_BSLASHglsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6037), - [anon_sym_BSLASHnewacronym] = ACTIONS(6037), - [anon_sym_BSLASHacrshort] = ACTIONS(6037), - [anon_sym_BSLASHAcrshort] = ACTIONS(6037), - [anon_sym_BSLASHACRshort] = ACTIONS(6037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6037), - [anon_sym_BSLASHacrlong] = ACTIONS(6037), - [anon_sym_BSLASHAcrlong] = ACTIONS(6037), - [anon_sym_BSLASHACRlong] = ACTIONS(6037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6037), - [anon_sym_BSLASHacrfull] = ACTIONS(6037), - [anon_sym_BSLASHAcrfull] = ACTIONS(6037), - [anon_sym_BSLASHACRfull] = ACTIONS(6037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6037), - [anon_sym_BSLASHacs] = ACTIONS(6037), - [anon_sym_BSLASHAcs] = ACTIONS(6037), - [anon_sym_BSLASHacsp] = ACTIONS(6037), - [anon_sym_BSLASHAcsp] = ACTIONS(6037), - [anon_sym_BSLASHacl] = ACTIONS(6037), - [anon_sym_BSLASHAcl] = ACTIONS(6037), - [anon_sym_BSLASHaclp] = ACTIONS(6037), - [anon_sym_BSLASHAclp] = ACTIONS(6037), - [anon_sym_BSLASHacf] = ACTIONS(6037), - [anon_sym_BSLASHAcf] = ACTIONS(6037), - [anon_sym_BSLASHacfp] = ACTIONS(6037), - [anon_sym_BSLASHAcfp] = ACTIONS(6037), - [anon_sym_BSLASHac] = ACTIONS(6037), - [anon_sym_BSLASHAc] = ACTIONS(6037), - [anon_sym_BSLASHacp] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6037), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6037), - [anon_sym_BSLASHcolor] = ACTIONS(6037), - [anon_sym_BSLASHcolorbox] = ACTIONS(6037), - [anon_sym_BSLASHtextcolor] = ACTIONS(6037), - [anon_sym_BSLASHpagecolor] = ACTIONS(6037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6037), - [anon_sym_BSLASHtext] = ACTIONS(6037), - [anon_sym_BSLASHintertext] = ACTIONS(6037), - [anon_sym_shortintertext] = ACTIONS(6037), - }, - [1148] = { - [sym_command_name] = ACTIONS(6449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6449), - [anon_sym_LBRACK] = ACTIONS(6451), - [anon_sym_RBRACK] = ACTIONS(6451), - [anon_sym_COMMA] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(6451), - [anon_sym_LPAREN] = ACTIONS(6451), - [anon_sym_RPAREN] = ACTIONS(6451), - [anon_sym_BSLASHpart] = ACTIONS(6449), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddpart] = ACTIONS(6449), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6451), - [anon_sym_BSLASHchapter] = ACTIONS(6449), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddchap] = ACTIONS(6449), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsection] = ACTIONS(6449), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddsec] = ACTIONS(6449), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubsection] = ACTIONS(6449), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6449), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHparagraph] = ACTIONS(6449), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6449), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6451), - [anon_sym_BSLASHitem] = ACTIONS(6449), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6451), - [anon_sym_LBRACE] = ACTIONS(6451), - [sym_word] = ACTIONS(6449), - [sym_placeholder] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6451), - [anon_sym_DASH] = ACTIONS(6451), - [anon_sym_STAR] = ACTIONS(6451), - [anon_sym_SLASH] = ACTIONS(6451), - [anon_sym_LT] = ACTIONS(6449), - [anon_sym_GT] = ACTIONS(6449), - [anon_sym_BANG] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6449), - [anon_sym_COLON] = ACTIONS(6449), - [anon_sym_SQUOTE] = ACTIONS(6449), - [anon_sym__] = ACTIONS(6451), - [anon_sym_CARET] = ACTIONS(6451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6451), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6451), - [anon_sym_DOLLAR] = ACTIONS(6449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6451), - [anon_sym_BSLASHbegin] = ACTIONS(6449), - [anon_sym_BSLASHend] = ACTIONS(6449), - [anon_sym_BSLASHtitle] = ACTIONS(6449), - [anon_sym_BSLASHauthor] = ACTIONS(6449), - [anon_sym_BSLASHusepackage] = ACTIONS(6449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6449), - [anon_sym_BSLASHinclude] = ACTIONS(6449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6449), - [anon_sym_BSLASHinput] = ACTIONS(6449), - [anon_sym_BSLASHsubfile] = ACTIONS(6449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6449), - [anon_sym_BSLASHbibliography] = ACTIONS(6449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6449), - [anon_sym_BSLASHincludesvg] = ACTIONS(6449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6449), - [anon_sym_BSLASHimport] = ACTIONS(6449), - [anon_sym_BSLASHsubimport] = ACTIONS(6449), - [anon_sym_BSLASHinputfrom] = ACTIONS(6449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6449), - [anon_sym_BSLASHincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHcaption] = ACTIONS(6449), - [anon_sym_BSLASHcite] = ACTIONS(6449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCite] = ACTIONS(6449), - [anon_sym_BSLASHnocite] = ACTIONS(6449), - [anon_sym_BSLASHcitet] = ACTIONS(6449), - [anon_sym_BSLASHcitep] = ACTIONS(6449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteauthor] = ACTIONS(6449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitetitle] = ACTIONS(6449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteyear] = ACTIONS(6449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitedate] = ACTIONS(6449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteurl] = ACTIONS(6449), - [anon_sym_BSLASHfullcite] = ACTIONS(6449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6449), - [anon_sym_BSLASHcitealt] = ACTIONS(6449), - [anon_sym_BSLASHcitealp] = ACTIONS(6449), - [anon_sym_BSLASHcitetext] = ACTIONS(6449), - [anon_sym_BSLASHparencite] = ACTIONS(6449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHParencite] = ACTIONS(6449), - [anon_sym_BSLASHfootcite] = ACTIONS(6449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6449), - [anon_sym_BSLASHtextcite] = ACTIONS(6449), - [anon_sym_BSLASHTextcite] = ACTIONS(6449), - [anon_sym_BSLASHsmartcite] = ACTIONS(6449), - [anon_sym_BSLASHSmartcite] = ACTIONS(6449), - [anon_sym_BSLASHsupercite] = ACTIONS(6449), - [anon_sym_BSLASHautocite] = ACTIONS(6449), - [anon_sym_BSLASHAutocite] = ACTIONS(6449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHvolcite] = ACTIONS(6449), - [anon_sym_BSLASHVolcite] = ACTIONS(6449), - [anon_sym_BSLASHpvolcite] = ACTIONS(6449), - [anon_sym_BSLASHPvolcite] = ACTIONS(6449), - [anon_sym_BSLASHfvolcite] = ACTIONS(6449), - [anon_sym_BSLASHftvolcite] = ACTIONS(6449), - [anon_sym_BSLASHsvolcite] = ACTIONS(6449), - [anon_sym_BSLASHSvolcite] = ACTIONS(6449), - [anon_sym_BSLASHtvolcite] = ACTIONS(6449), - [anon_sym_BSLASHTvolcite] = ACTIONS(6449), - [anon_sym_BSLASHavolcite] = ACTIONS(6449), - [anon_sym_BSLASHAvolcite] = ACTIONS(6449), - [anon_sym_BSLASHnotecite] = ACTIONS(6449), - [anon_sym_BSLASHNotecite] = ACTIONS(6449), - [anon_sym_BSLASHpnotecite] = ACTIONS(6449), - [anon_sym_BSLASHPnotecite] = ACTIONS(6449), - [anon_sym_BSLASHfnotecite] = ACTIONS(6449), - [anon_sym_BSLASHlabel] = ACTIONS(6449), - [anon_sym_BSLASHref] = ACTIONS(6449), - [anon_sym_BSLASHeqref] = ACTIONS(6449), - [anon_sym_BSLASHvref] = ACTIONS(6449), - [anon_sym_BSLASHVref] = ACTIONS(6449), - [anon_sym_BSLASHautoref] = ACTIONS(6449), - [anon_sym_BSLASHpageref] = ACTIONS(6449), - [anon_sym_BSLASHcref] = ACTIONS(6449), - [anon_sym_BSLASHCref] = ACTIONS(6449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnameCref] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHlabelcref] = ACTIONS(6449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCrefrange] = ACTIONS(6449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnewlabel] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6451), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHdef] = ACTIONS(6449), - [anon_sym_BSLASHlet] = ACTIONS(6449), - [anon_sym_BSLASHleft] = ACTIONS(6449), - [anon_sym_BSLASHbig] = ACTIONS(6449), - [anon_sym_BSLASHBig] = ACTIONS(6449), - [anon_sym_BSLASHbigg] = ACTIONS(6449), - [anon_sym_BSLASHBigg] = ACTIONS(6449), - [anon_sym_BSLASHbigl] = ACTIONS(6449), - [anon_sym_BSLASHBigl] = ACTIONS(6449), - [anon_sym_BSLASHbiggl] = ACTIONS(6449), - [anon_sym_BSLASHBiggl] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6449), - [anon_sym_BSLASHgls] = ACTIONS(6449), - [anon_sym_BSLASHGls] = ACTIONS(6449), - [anon_sym_BSLASHGLS] = ACTIONS(6449), - [anon_sym_BSLASHglspl] = ACTIONS(6449), - [anon_sym_BSLASHGlspl] = ACTIONS(6449), - [anon_sym_BSLASHGLSpl] = ACTIONS(6449), - [anon_sym_BSLASHglsdisp] = ACTIONS(6449), - [anon_sym_BSLASHglslink] = ACTIONS(6449), - [anon_sym_BSLASHglstext] = ACTIONS(6449), - [anon_sym_BSLASHGlstext] = ACTIONS(6449), - [anon_sym_BSLASHGLStext] = ACTIONS(6449), - [anon_sym_BSLASHglsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6449), - [anon_sym_BSLASHglsplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSplural] = ACTIONS(6449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHglsname] = ACTIONS(6449), - [anon_sym_BSLASHGlsname] = ACTIONS(6449), - [anon_sym_BSLASHGLSname] = ACTIONS(6449), - [anon_sym_BSLASHglssymbol] = ACTIONS(6449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6449), - [anon_sym_BSLASHglsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6449), - [anon_sym_BSLASHglsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6449), - [anon_sym_BSLASHglsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6449), - [anon_sym_BSLASHglsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6449), - [anon_sym_BSLASHglsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6449), - [anon_sym_BSLASHnewacronym] = ACTIONS(6449), - [anon_sym_BSLASHacrshort] = ACTIONS(6449), - [anon_sym_BSLASHAcrshort] = ACTIONS(6449), - [anon_sym_BSLASHACRshort] = ACTIONS(6449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6449), - [anon_sym_BSLASHacrlong] = ACTIONS(6449), - [anon_sym_BSLASHAcrlong] = ACTIONS(6449), - [anon_sym_BSLASHACRlong] = ACTIONS(6449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6449), - [anon_sym_BSLASHacrfull] = ACTIONS(6449), - [anon_sym_BSLASHAcrfull] = ACTIONS(6449), - [anon_sym_BSLASHACRfull] = ACTIONS(6449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6449), - [anon_sym_BSLASHacs] = ACTIONS(6449), - [anon_sym_BSLASHAcs] = ACTIONS(6449), - [anon_sym_BSLASHacsp] = ACTIONS(6449), - [anon_sym_BSLASHAcsp] = ACTIONS(6449), - [anon_sym_BSLASHacl] = ACTIONS(6449), - [anon_sym_BSLASHAcl] = ACTIONS(6449), - [anon_sym_BSLASHaclp] = ACTIONS(6449), - [anon_sym_BSLASHAclp] = ACTIONS(6449), - [anon_sym_BSLASHacf] = ACTIONS(6449), - [anon_sym_BSLASHAcf] = ACTIONS(6449), - [anon_sym_BSLASHacfp] = ACTIONS(6449), - [anon_sym_BSLASHAcfp] = ACTIONS(6449), - [anon_sym_BSLASHac] = ACTIONS(6449), - [anon_sym_BSLASHAc] = ACTIONS(6449), - [anon_sym_BSLASHacp] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6449), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6449), - [anon_sym_BSLASHcolor] = ACTIONS(6449), - [anon_sym_BSLASHcolorbox] = ACTIONS(6449), - [anon_sym_BSLASHtextcolor] = ACTIONS(6449), - [anon_sym_BSLASHpagecolor] = ACTIONS(6449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6449), - [anon_sym_BSLASHtext] = ACTIONS(6449), - [anon_sym_BSLASHintertext] = ACTIONS(6449), - [anon_sym_shortintertext] = ACTIONS(6449), - }, - [1149] = { - [sym_command_name] = ACTIONS(6453), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6453), - [anon_sym_LBRACK] = ACTIONS(6455), - [anon_sym_RBRACK] = ACTIONS(6455), - [anon_sym_COMMA] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(6455), - [anon_sym_LPAREN] = ACTIONS(6455), - [anon_sym_RPAREN] = ACTIONS(6455), - [anon_sym_BSLASHpart] = ACTIONS(6453), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddpart] = ACTIONS(6453), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6455), - [anon_sym_BSLASHchapter] = ACTIONS(6453), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddchap] = ACTIONS(6453), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsection] = ACTIONS(6453), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddsec] = ACTIONS(6453), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubsection] = ACTIONS(6453), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6453), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHparagraph] = ACTIONS(6453), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6453), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6455), - [anon_sym_BSLASHitem] = ACTIONS(6453), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6455), - [anon_sym_LBRACE] = ACTIONS(6455), - [sym_word] = ACTIONS(6453), - [sym_placeholder] = ACTIONS(6455), - [anon_sym_PLUS] = ACTIONS(6455), - [anon_sym_DASH] = ACTIONS(6455), - [anon_sym_STAR] = ACTIONS(6455), - [anon_sym_SLASH] = ACTIONS(6455), - [anon_sym_LT] = ACTIONS(6453), - [anon_sym_GT] = ACTIONS(6453), - [anon_sym_BANG] = ACTIONS(6453), - [anon_sym_PIPE] = ACTIONS(6453), - [anon_sym_COLON] = ACTIONS(6453), - [anon_sym_SQUOTE] = ACTIONS(6453), - [anon_sym__] = ACTIONS(6455), - [anon_sym_CARET] = ACTIONS(6455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6455), - [anon_sym_DOLLAR] = ACTIONS(6453), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6455), - [anon_sym_BSLASHbegin] = ACTIONS(6453), - [anon_sym_BSLASHend] = ACTIONS(6453), - [anon_sym_BSLASHtitle] = ACTIONS(6453), - [anon_sym_BSLASHauthor] = ACTIONS(6453), - [anon_sym_BSLASHusepackage] = ACTIONS(6453), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6453), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6453), - [anon_sym_BSLASHinclude] = ACTIONS(6453), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6453), - [anon_sym_BSLASHinput] = ACTIONS(6453), - [anon_sym_BSLASHsubfile] = ACTIONS(6453), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6453), - [anon_sym_BSLASHbibliography] = ACTIONS(6453), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6453), - [anon_sym_BSLASHincludesvg] = ACTIONS(6453), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6453), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6453), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6453), - [anon_sym_BSLASHimport] = ACTIONS(6453), - [anon_sym_BSLASHsubimport] = ACTIONS(6453), - [anon_sym_BSLASHinputfrom] = ACTIONS(6453), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6453), - [anon_sym_BSLASHincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHcaption] = ACTIONS(6453), - [anon_sym_BSLASHcite] = ACTIONS(6453), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCite] = ACTIONS(6453), - [anon_sym_BSLASHnocite] = ACTIONS(6453), - [anon_sym_BSLASHcitet] = ACTIONS(6453), - [anon_sym_BSLASHcitep] = ACTIONS(6453), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteauthor] = ACTIONS(6453), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6453), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitetitle] = ACTIONS(6453), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteyear] = ACTIONS(6453), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitedate] = ACTIONS(6453), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteurl] = ACTIONS(6453), - [anon_sym_BSLASHfullcite] = ACTIONS(6453), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6453), - [anon_sym_BSLASHcitealt] = ACTIONS(6453), - [anon_sym_BSLASHcitealp] = ACTIONS(6453), - [anon_sym_BSLASHcitetext] = ACTIONS(6453), - [anon_sym_BSLASHparencite] = ACTIONS(6453), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHParencite] = ACTIONS(6453), - [anon_sym_BSLASHfootcite] = ACTIONS(6453), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6453), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6453), - [anon_sym_BSLASHtextcite] = ACTIONS(6453), - [anon_sym_BSLASHTextcite] = ACTIONS(6453), - [anon_sym_BSLASHsmartcite] = ACTIONS(6453), - [anon_sym_BSLASHSmartcite] = ACTIONS(6453), - [anon_sym_BSLASHsupercite] = ACTIONS(6453), - [anon_sym_BSLASHautocite] = ACTIONS(6453), - [anon_sym_BSLASHAutocite] = ACTIONS(6453), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHvolcite] = ACTIONS(6453), - [anon_sym_BSLASHVolcite] = ACTIONS(6453), - [anon_sym_BSLASHpvolcite] = ACTIONS(6453), - [anon_sym_BSLASHPvolcite] = ACTIONS(6453), - [anon_sym_BSLASHfvolcite] = ACTIONS(6453), - [anon_sym_BSLASHftvolcite] = ACTIONS(6453), - [anon_sym_BSLASHsvolcite] = ACTIONS(6453), - [anon_sym_BSLASHSvolcite] = ACTIONS(6453), - [anon_sym_BSLASHtvolcite] = ACTIONS(6453), - [anon_sym_BSLASHTvolcite] = ACTIONS(6453), - [anon_sym_BSLASHavolcite] = ACTIONS(6453), - [anon_sym_BSLASHAvolcite] = ACTIONS(6453), - [anon_sym_BSLASHnotecite] = ACTIONS(6453), - [anon_sym_BSLASHNotecite] = ACTIONS(6453), - [anon_sym_BSLASHpnotecite] = ACTIONS(6453), - [anon_sym_BSLASHPnotecite] = ACTIONS(6453), - [anon_sym_BSLASHfnotecite] = ACTIONS(6453), - [anon_sym_BSLASHlabel] = ACTIONS(6453), - [anon_sym_BSLASHref] = ACTIONS(6453), - [anon_sym_BSLASHeqref] = ACTIONS(6453), - [anon_sym_BSLASHvref] = ACTIONS(6453), - [anon_sym_BSLASHVref] = ACTIONS(6453), - [anon_sym_BSLASHautoref] = ACTIONS(6453), - [anon_sym_BSLASHpageref] = ACTIONS(6453), - [anon_sym_BSLASHcref] = ACTIONS(6453), - [anon_sym_BSLASHCref] = ACTIONS(6453), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnameCref] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHlabelcref] = ACTIONS(6453), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCrefrange] = ACTIONS(6453), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnewlabel] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6453), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6453), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6455), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHdef] = ACTIONS(6453), - [anon_sym_BSLASHlet] = ACTIONS(6453), - [anon_sym_BSLASHleft] = ACTIONS(6453), - [anon_sym_BSLASHbig] = ACTIONS(6453), - [anon_sym_BSLASHBig] = ACTIONS(6453), - [anon_sym_BSLASHbigg] = ACTIONS(6453), - [anon_sym_BSLASHBigg] = ACTIONS(6453), - [anon_sym_BSLASHbigl] = ACTIONS(6453), - [anon_sym_BSLASHBigl] = ACTIONS(6453), - [anon_sym_BSLASHbiggl] = ACTIONS(6453), - [anon_sym_BSLASHBiggl] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6453), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6453), - [anon_sym_BSLASHgls] = ACTIONS(6453), - [anon_sym_BSLASHGls] = ACTIONS(6453), - [anon_sym_BSLASHGLS] = ACTIONS(6453), - [anon_sym_BSLASHglspl] = ACTIONS(6453), - [anon_sym_BSLASHGlspl] = ACTIONS(6453), - [anon_sym_BSLASHGLSpl] = ACTIONS(6453), - [anon_sym_BSLASHglsdisp] = ACTIONS(6453), - [anon_sym_BSLASHglslink] = ACTIONS(6453), - [anon_sym_BSLASHglstext] = ACTIONS(6453), - [anon_sym_BSLASHGlstext] = ACTIONS(6453), - [anon_sym_BSLASHGLStext] = ACTIONS(6453), - [anon_sym_BSLASHglsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6453), - [anon_sym_BSLASHglsplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSplural] = ACTIONS(6453), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHglsname] = ACTIONS(6453), - [anon_sym_BSLASHGlsname] = ACTIONS(6453), - [anon_sym_BSLASHGLSname] = ACTIONS(6453), - [anon_sym_BSLASHglssymbol] = ACTIONS(6453), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6453), - [anon_sym_BSLASHglsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6453), - [anon_sym_BSLASHglsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6453), - [anon_sym_BSLASHglsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6453), - [anon_sym_BSLASHglsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6453), - [anon_sym_BSLASHglsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6453), - [anon_sym_BSLASHnewacronym] = ACTIONS(6453), - [anon_sym_BSLASHacrshort] = ACTIONS(6453), - [anon_sym_BSLASHAcrshort] = ACTIONS(6453), - [anon_sym_BSLASHACRshort] = ACTIONS(6453), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6453), - [anon_sym_BSLASHacrlong] = ACTIONS(6453), - [anon_sym_BSLASHAcrlong] = ACTIONS(6453), - [anon_sym_BSLASHACRlong] = ACTIONS(6453), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6453), - [anon_sym_BSLASHacrfull] = ACTIONS(6453), - [anon_sym_BSLASHAcrfull] = ACTIONS(6453), - [anon_sym_BSLASHACRfull] = ACTIONS(6453), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6453), - [anon_sym_BSLASHacs] = ACTIONS(6453), - [anon_sym_BSLASHAcs] = ACTIONS(6453), - [anon_sym_BSLASHacsp] = ACTIONS(6453), - [anon_sym_BSLASHAcsp] = ACTIONS(6453), - [anon_sym_BSLASHacl] = ACTIONS(6453), - [anon_sym_BSLASHAcl] = ACTIONS(6453), - [anon_sym_BSLASHaclp] = ACTIONS(6453), - [anon_sym_BSLASHAclp] = ACTIONS(6453), - [anon_sym_BSLASHacf] = ACTIONS(6453), - [anon_sym_BSLASHAcf] = ACTIONS(6453), - [anon_sym_BSLASHacfp] = ACTIONS(6453), - [anon_sym_BSLASHAcfp] = ACTIONS(6453), - [anon_sym_BSLASHac] = ACTIONS(6453), - [anon_sym_BSLASHAc] = ACTIONS(6453), - [anon_sym_BSLASHacp] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6453), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6453), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6453), - [anon_sym_BSLASHcolor] = ACTIONS(6453), - [anon_sym_BSLASHcolorbox] = ACTIONS(6453), - [anon_sym_BSLASHtextcolor] = ACTIONS(6453), - [anon_sym_BSLASHpagecolor] = ACTIONS(6453), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6453), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6453), - [anon_sym_BSLASHtext] = ACTIONS(6453), - [anon_sym_BSLASHintertext] = ACTIONS(6453), - [anon_sym_shortintertext] = ACTIONS(6453), - }, - [1150] = { - [sym_command_name] = ACTIONS(6457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6457), - [anon_sym_LBRACK] = ACTIONS(6459), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(6459), - [anon_sym_LPAREN] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_BSLASHpart] = ACTIONS(6457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddpart] = ACTIONS(6457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6459), - [anon_sym_BSLASHchapter] = ACTIONS(6457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddchap] = ACTIONS(6457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsection] = ACTIONS(6457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddsec] = ACTIONS(6457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubsection] = ACTIONS(6457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHparagraph] = ACTIONS(6457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6459), - [anon_sym_BSLASHitem] = ACTIONS(6457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6459), - [anon_sym_LBRACE] = ACTIONS(6459), - [sym_word] = ACTIONS(6457), - [sym_placeholder] = ACTIONS(6459), - [anon_sym_PLUS] = ACTIONS(6459), - [anon_sym_DASH] = ACTIONS(6459), - [anon_sym_STAR] = ACTIONS(6459), - [anon_sym_SLASH] = ACTIONS(6459), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_BANG] = ACTIONS(6457), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_SQUOTE] = ACTIONS(6457), - [anon_sym__] = ACTIONS(6459), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6459), - [anon_sym_DOLLAR] = ACTIONS(6457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6459), - [anon_sym_BSLASHbegin] = ACTIONS(6457), - [anon_sym_BSLASHend] = ACTIONS(6457), - [anon_sym_BSLASHtitle] = ACTIONS(6457), - [anon_sym_BSLASHauthor] = ACTIONS(6457), - [anon_sym_BSLASHusepackage] = ACTIONS(6457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6457), - [anon_sym_BSLASHinclude] = ACTIONS(6457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6457), - [anon_sym_BSLASHinput] = ACTIONS(6457), - [anon_sym_BSLASHsubfile] = ACTIONS(6457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6457), - [anon_sym_BSLASHbibliography] = ACTIONS(6457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6457), - [anon_sym_BSLASHincludesvg] = ACTIONS(6457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6457), - [anon_sym_BSLASHimport] = ACTIONS(6457), - [anon_sym_BSLASHsubimport] = ACTIONS(6457), - [anon_sym_BSLASHinputfrom] = ACTIONS(6457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6457), - [anon_sym_BSLASHincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHcaption] = ACTIONS(6457), - [anon_sym_BSLASHcite] = ACTIONS(6457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCite] = ACTIONS(6457), - [anon_sym_BSLASHnocite] = ACTIONS(6457), - [anon_sym_BSLASHcitet] = ACTIONS(6457), - [anon_sym_BSLASHcitep] = ACTIONS(6457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteauthor] = ACTIONS(6457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitetitle] = ACTIONS(6457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteyear] = ACTIONS(6457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitedate] = ACTIONS(6457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteurl] = ACTIONS(6457), - [anon_sym_BSLASHfullcite] = ACTIONS(6457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6457), - [anon_sym_BSLASHcitealt] = ACTIONS(6457), - [anon_sym_BSLASHcitealp] = ACTIONS(6457), - [anon_sym_BSLASHcitetext] = ACTIONS(6457), - [anon_sym_BSLASHparencite] = ACTIONS(6457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHParencite] = ACTIONS(6457), - [anon_sym_BSLASHfootcite] = ACTIONS(6457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6457), - [anon_sym_BSLASHtextcite] = ACTIONS(6457), - [anon_sym_BSLASHTextcite] = ACTIONS(6457), - [anon_sym_BSLASHsmartcite] = ACTIONS(6457), - [anon_sym_BSLASHSmartcite] = ACTIONS(6457), - [anon_sym_BSLASHsupercite] = ACTIONS(6457), - [anon_sym_BSLASHautocite] = ACTIONS(6457), - [anon_sym_BSLASHAutocite] = ACTIONS(6457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHvolcite] = ACTIONS(6457), - [anon_sym_BSLASHVolcite] = ACTIONS(6457), - [anon_sym_BSLASHpvolcite] = ACTIONS(6457), - [anon_sym_BSLASHPvolcite] = ACTIONS(6457), - [anon_sym_BSLASHfvolcite] = ACTIONS(6457), - [anon_sym_BSLASHftvolcite] = ACTIONS(6457), - [anon_sym_BSLASHsvolcite] = ACTIONS(6457), - [anon_sym_BSLASHSvolcite] = ACTIONS(6457), - [anon_sym_BSLASHtvolcite] = ACTIONS(6457), - [anon_sym_BSLASHTvolcite] = ACTIONS(6457), - [anon_sym_BSLASHavolcite] = ACTIONS(6457), - [anon_sym_BSLASHAvolcite] = ACTIONS(6457), - [anon_sym_BSLASHnotecite] = ACTIONS(6457), - [anon_sym_BSLASHNotecite] = ACTIONS(6457), - [anon_sym_BSLASHpnotecite] = ACTIONS(6457), - [anon_sym_BSLASHPnotecite] = ACTIONS(6457), - [anon_sym_BSLASHfnotecite] = ACTIONS(6457), - [anon_sym_BSLASHlabel] = ACTIONS(6457), - [anon_sym_BSLASHref] = ACTIONS(6457), - [anon_sym_BSLASHeqref] = ACTIONS(6457), - [anon_sym_BSLASHvref] = ACTIONS(6457), - [anon_sym_BSLASHVref] = ACTIONS(6457), - [anon_sym_BSLASHautoref] = ACTIONS(6457), - [anon_sym_BSLASHpageref] = ACTIONS(6457), - [anon_sym_BSLASHcref] = ACTIONS(6457), - [anon_sym_BSLASHCref] = ACTIONS(6457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnameCref] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHlabelcref] = ACTIONS(6457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCrefrange] = ACTIONS(6457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnewlabel] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6459), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHdef] = ACTIONS(6457), - [anon_sym_BSLASHlet] = ACTIONS(6457), - [anon_sym_BSLASHleft] = ACTIONS(6457), - [anon_sym_BSLASHbig] = ACTIONS(6457), - [anon_sym_BSLASHBig] = ACTIONS(6457), - [anon_sym_BSLASHbigg] = ACTIONS(6457), - [anon_sym_BSLASHBigg] = ACTIONS(6457), - [anon_sym_BSLASHbigl] = ACTIONS(6457), - [anon_sym_BSLASHBigl] = ACTIONS(6457), - [anon_sym_BSLASHbiggl] = ACTIONS(6457), - [anon_sym_BSLASHBiggl] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6457), - [anon_sym_BSLASHgls] = ACTIONS(6457), - [anon_sym_BSLASHGls] = ACTIONS(6457), - [anon_sym_BSLASHGLS] = ACTIONS(6457), - [anon_sym_BSLASHglspl] = ACTIONS(6457), - [anon_sym_BSLASHGlspl] = ACTIONS(6457), - [anon_sym_BSLASHGLSpl] = ACTIONS(6457), - [anon_sym_BSLASHglsdisp] = ACTIONS(6457), - [anon_sym_BSLASHglslink] = ACTIONS(6457), - [anon_sym_BSLASHglstext] = ACTIONS(6457), - [anon_sym_BSLASHGlstext] = ACTIONS(6457), - [anon_sym_BSLASHGLStext] = ACTIONS(6457), - [anon_sym_BSLASHglsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6457), - [anon_sym_BSLASHglsplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSplural] = ACTIONS(6457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHglsname] = ACTIONS(6457), - [anon_sym_BSLASHGlsname] = ACTIONS(6457), - [anon_sym_BSLASHGLSname] = ACTIONS(6457), - [anon_sym_BSLASHglssymbol] = ACTIONS(6457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6457), - [anon_sym_BSLASHglsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6457), - [anon_sym_BSLASHglsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6457), - [anon_sym_BSLASHglsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6457), - [anon_sym_BSLASHglsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6457), - [anon_sym_BSLASHglsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6457), - [anon_sym_BSLASHnewacronym] = ACTIONS(6457), - [anon_sym_BSLASHacrshort] = ACTIONS(6457), - [anon_sym_BSLASHAcrshort] = ACTIONS(6457), - [anon_sym_BSLASHACRshort] = ACTIONS(6457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6457), - [anon_sym_BSLASHacrlong] = ACTIONS(6457), - [anon_sym_BSLASHAcrlong] = ACTIONS(6457), - [anon_sym_BSLASHACRlong] = ACTIONS(6457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6457), - [anon_sym_BSLASHacrfull] = ACTIONS(6457), - [anon_sym_BSLASHAcrfull] = ACTIONS(6457), - [anon_sym_BSLASHACRfull] = ACTIONS(6457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6457), - [anon_sym_BSLASHacs] = ACTIONS(6457), - [anon_sym_BSLASHAcs] = ACTIONS(6457), - [anon_sym_BSLASHacsp] = ACTIONS(6457), - [anon_sym_BSLASHAcsp] = ACTIONS(6457), - [anon_sym_BSLASHacl] = ACTIONS(6457), - [anon_sym_BSLASHAcl] = ACTIONS(6457), - [anon_sym_BSLASHaclp] = ACTIONS(6457), - [anon_sym_BSLASHAclp] = ACTIONS(6457), - [anon_sym_BSLASHacf] = ACTIONS(6457), - [anon_sym_BSLASHAcf] = ACTIONS(6457), - [anon_sym_BSLASHacfp] = ACTIONS(6457), - [anon_sym_BSLASHAcfp] = ACTIONS(6457), - [anon_sym_BSLASHac] = ACTIONS(6457), - [anon_sym_BSLASHAc] = ACTIONS(6457), - [anon_sym_BSLASHacp] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6457), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6457), - [anon_sym_BSLASHcolor] = ACTIONS(6457), - [anon_sym_BSLASHcolorbox] = ACTIONS(6457), - [anon_sym_BSLASHtextcolor] = ACTIONS(6457), - [anon_sym_BSLASHpagecolor] = ACTIONS(6457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6457), - [anon_sym_BSLASHtext] = ACTIONS(6457), - [anon_sym_BSLASHintertext] = ACTIONS(6457), - [anon_sym_shortintertext] = ACTIONS(6457), - }, - [1151] = { - [sym_command_name] = ACTIONS(6461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6461), - [anon_sym_LBRACK] = ACTIONS(6463), - [anon_sym_RBRACK] = ACTIONS(6463), - [anon_sym_COMMA] = ACTIONS(6463), - [anon_sym_EQ] = ACTIONS(6463), - [anon_sym_LPAREN] = ACTIONS(6463), - [anon_sym_RPAREN] = ACTIONS(6463), - [anon_sym_BSLASHpart] = ACTIONS(6461), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddpart] = ACTIONS(6461), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6463), - [anon_sym_BSLASHchapter] = ACTIONS(6461), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddchap] = ACTIONS(6461), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsection] = ACTIONS(6461), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddsec] = ACTIONS(6461), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubsection] = ACTIONS(6461), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6461), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHparagraph] = ACTIONS(6461), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6461), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6463), - [anon_sym_BSLASHitem] = ACTIONS(6461), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6463), - [anon_sym_LBRACE] = ACTIONS(6463), - [sym_word] = ACTIONS(6461), - [sym_placeholder] = ACTIONS(6463), - [anon_sym_PLUS] = ACTIONS(6463), - [anon_sym_DASH] = ACTIONS(6463), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6463), - [anon_sym_LT] = ACTIONS(6461), - [anon_sym_GT] = ACTIONS(6461), - [anon_sym_BANG] = ACTIONS(6461), - [anon_sym_PIPE] = ACTIONS(6461), - [anon_sym_COLON] = ACTIONS(6461), - [anon_sym_SQUOTE] = ACTIONS(6461), - [anon_sym__] = ACTIONS(6463), - [anon_sym_CARET] = ACTIONS(6463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6463), - [anon_sym_DOLLAR] = ACTIONS(6461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6463), - [anon_sym_BSLASHbegin] = ACTIONS(6461), - [anon_sym_BSLASHend] = ACTIONS(6461), - [anon_sym_BSLASHtitle] = ACTIONS(6461), - [anon_sym_BSLASHauthor] = ACTIONS(6461), - [anon_sym_BSLASHusepackage] = ACTIONS(6461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6461), - [anon_sym_BSLASHinclude] = ACTIONS(6461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6461), - [anon_sym_BSLASHinput] = ACTIONS(6461), - [anon_sym_BSLASHsubfile] = ACTIONS(6461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6461), - [anon_sym_BSLASHbibliography] = ACTIONS(6461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6461), - [anon_sym_BSLASHincludesvg] = ACTIONS(6461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6461), - [anon_sym_BSLASHimport] = ACTIONS(6461), - [anon_sym_BSLASHsubimport] = ACTIONS(6461), - [anon_sym_BSLASHinputfrom] = ACTIONS(6461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6461), - [anon_sym_BSLASHincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHcaption] = ACTIONS(6461), - [anon_sym_BSLASHcite] = ACTIONS(6461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCite] = ACTIONS(6461), - [anon_sym_BSLASHnocite] = ACTIONS(6461), - [anon_sym_BSLASHcitet] = ACTIONS(6461), - [anon_sym_BSLASHcitep] = ACTIONS(6461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteauthor] = ACTIONS(6461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitetitle] = ACTIONS(6461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteyear] = ACTIONS(6461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitedate] = ACTIONS(6461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteurl] = ACTIONS(6461), - [anon_sym_BSLASHfullcite] = ACTIONS(6461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6461), - [anon_sym_BSLASHcitealt] = ACTIONS(6461), - [anon_sym_BSLASHcitealp] = ACTIONS(6461), - [anon_sym_BSLASHcitetext] = ACTIONS(6461), - [anon_sym_BSLASHparencite] = ACTIONS(6461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHParencite] = ACTIONS(6461), - [anon_sym_BSLASHfootcite] = ACTIONS(6461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6461), - [anon_sym_BSLASHtextcite] = ACTIONS(6461), - [anon_sym_BSLASHTextcite] = ACTIONS(6461), - [anon_sym_BSLASHsmartcite] = ACTIONS(6461), - [anon_sym_BSLASHSmartcite] = ACTIONS(6461), - [anon_sym_BSLASHsupercite] = ACTIONS(6461), - [anon_sym_BSLASHautocite] = ACTIONS(6461), - [anon_sym_BSLASHAutocite] = ACTIONS(6461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHvolcite] = ACTIONS(6461), - [anon_sym_BSLASHVolcite] = ACTIONS(6461), - [anon_sym_BSLASHpvolcite] = ACTIONS(6461), - [anon_sym_BSLASHPvolcite] = ACTIONS(6461), - [anon_sym_BSLASHfvolcite] = ACTIONS(6461), - [anon_sym_BSLASHftvolcite] = ACTIONS(6461), - [anon_sym_BSLASHsvolcite] = ACTIONS(6461), - [anon_sym_BSLASHSvolcite] = ACTIONS(6461), - [anon_sym_BSLASHtvolcite] = ACTIONS(6461), - [anon_sym_BSLASHTvolcite] = ACTIONS(6461), - [anon_sym_BSLASHavolcite] = ACTIONS(6461), - [anon_sym_BSLASHAvolcite] = ACTIONS(6461), - [anon_sym_BSLASHnotecite] = ACTIONS(6461), - [anon_sym_BSLASHNotecite] = ACTIONS(6461), - [anon_sym_BSLASHpnotecite] = ACTIONS(6461), - [anon_sym_BSLASHPnotecite] = ACTIONS(6461), - [anon_sym_BSLASHfnotecite] = ACTIONS(6461), - [anon_sym_BSLASHlabel] = ACTIONS(6461), - [anon_sym_BSLASHref] = ACTIONS(6461), - [anon_sym_BSLASHeqref] = ACTIONS(6461), - [anon_sym_BSLASHvref] = ACTIONS(6461), - [anon_sym_BSLASHVref] = ACTIONS(6461), - [anon_sym_BSLASHautoref] = ACTIONS(6461), - [anon_sym_BSLASHpageref] = ACTIONS(6461), - [anon_sym_BSLASHcref] = ACTIONS(6461), - [anon_sym_BSLASHCref] = ACTIONS(6461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnameCref] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHlabelcref] = ACTIONS(6461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCrefrange] = ACTIONS(6461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnewlabel] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6463), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHdef] = ACTIONS(6461), - [anon_sym_BSLASHlet] = ACTIONS(6461), - [anon_sym_BSLASHleft] = ACTIONS(6461), - [anon_sym_BSLASHbig] = ACTIONS(6461), - [anon_sym_BSLASHBig] = ACTIONS(6461), - [anon_sym_BSLASHbigg] = ACTIONS(6461), - [anon_sym_BSLASHBigg] = ACTIONS(6461), - [anon_sym_BSLASHbigl] = ACTIONS(6461), - [anon_sym_BSLASHBigl] = ACTIONS(6461), - [anon_sym_BSLASHbiggl] = ACTIONS(6461), - [anon_sym_BSLASHBiggl] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6461), - [anon_sym_BSLASHgls] = ACTIONS(6461), - [anon_sym_BSLASHGls] = ACTIONS(6461), - [anon_sym_BSLASHGLS] = ACTIONS(6461), - [anon_sym_BSLASHglspl] = ACTIONS(6461), - [anon_sym_BSLASHGlspl] = ACTIONS(6461), - [anon_sym_BSLASHGLSpl] = ACTIONS(6461), - [anon_sym_BSLASHglsdisp] = ACTIONS(6461), - [anon_sym_BSLASHglslink] = ACTIONS(6461), - [anon_sym_BSLASHglstext] = ACTIONS(6461), - [anon_sym_BSLASHGlstext] = ACTIONS(6461), - [anon_sym_BSLASHGLStext] = ACTIONS(6461), - [anon_sym_BSLASHglsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6461), - [anon_sym_BSLASHglsplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSplural] = ACTIONS(6461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHglsname] = ACTIONS(6461), - [anon_sym_BSLASHGlsname] = ACTIONS(6461), - [anon_sym_BSLASHGLSname] = ACTIONS(6461), - [anon_sym_BSLASHglssymbol] = ACTIONS(6461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6461), - [anon_sym_BSLASHglsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6461), - [anon_sym_BSLASHglsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6461), - [anon_sym_BSLASHglsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6461), - [anon_sym_BSLASHglsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6461), - [anon_sym_BSLASHglsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6461), - [anon_sym_BSLASHnewacronym] = ACTIONS(6461), - [anon_sym_BSLASHacrshort] = ACTIONS(6461), - [anon_sym_BSLASHAcrshort] = ACTIONS(6461), - [anon_sym_BSLASHACRshort] = ACTIONS(6461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6461), - [anon_sym_BSLASHacrlong] = ACTIONS(6461), - [anon_sym_BSLASHAcrlong] = ACTIONS(6461), - [anon_sym_BSLASHACRlong] = ACTIONS(6461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6461), - [anon_sym_BSLASHacrfull] = ACTIONS(6461), - [anon_sym_BSLASHAcrfull] = ACTIONS(6461), - [anon_sym_BSLASHACRfull] = ACTIONS(6461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6461), - [anon_sym_BSLASHacs] = ACTIONS(6461), - [anon_sym_BSLASHAcs] = ACTIONS(6461), - [anon_sym_BSLASHacsp] = ACTIONS(6461), - [anon_sym_BSLASHAcsp] = ACTIONS(6461), - [anon_sym_BSLASHacl] = ACTIONS(6461), - [anon_sym_BSLASHAcl] = ACTIONS(6461), - [anon_sym_BSLASHaclp] = ACTIONS(6461), - [anon_sym_BSLASHAclp] = ACTIONS(6461), - [anon_sym_BSLASHacf] = ACTIONS(6461), - [anon_sym_BSLASHAcf] = ACTIONS(6461), - [anon_sym_BSLASHacfp] = ACTIONS(6461), - [anon_sym_BSLASHAcfp] = ACTIONS(6461), - [anon_sym_BSLASHac] = ACTIONS(6461), - [anon_sym_BSLASHAc] = ACTIONS(6461), - [anon_sym_BSLASHacp] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6461), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6461), - [anon_sym_BSLASHcolor] = ACTIONS(6461), - [anon_sym_BSLASHcolorbox] = ACTIONS(6461), - [anon_sym_BSLASHtextcolor] = ACTIONS(6461), - [anon_sym_BSLASHpagecolor] = ACTIONS(6461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6461), - [anon_sym_BSLASHtext] = ACTIONS(6461), - [anon_sym_BSLASHintertext] = ACTIONS(6461), - [anon_sym_shortintertext] = ACTIONS(6461), - }, - [1152] = { - [sym_command_name] = ACTIONS(6465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6465), - [anon_sym_LBRACK] = ACTIONS(6467), - [anon_sym_RBRACK] = ACTIONS(6467), - [anon_sym_COMMA] = ACTIONS(6467), - [anon_sym_EQ] = ACTIONS(6467), - [anon_sym_LPAREN] = ACTIONS(6467), - [anon_sym_RPAREN] = ACTIONS(6467), - [anon_sym_BSLASHpart] = ACTIONS(6465), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddpart] = ACTIONS(6465), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6467), - [anon_sym_BSLASHchapter] = ACTIONS(6465), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddchap] = ACTIONS(6465), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsection] = ACTIONS(6465), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddsec] = ACTIONS(6465), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubsection] = ACTIONS(6465), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6465), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHparagraph] = ACTIONS(6465), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6465), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6467), - [anon_sym_BSLASHitem] = ACTIONS(6465), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6467), - [anon_sym_LBRACE] = ACTIONS(6467), - [sym_word] = ACTIONS(6465), - [sym_placeholder] = ACTIONS(6467), - [anon_sym_PLUS] = ACTIONS(6467), - [anon_sym_DASH] = ACTIONS(6467), - [anon_sym_STAR] = ACTIONS(6467), - [anon_sym_SLASH] = ACTIONS(6467), - [anon_sym_LT] = ACTIONS(6465), - [anon_sym_GT] = ACTIONS(6465), - [anon_sym_BANG] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6465), - [anon_sym_COLON] = ACTIONS(6465), - [anon_sym_SQUOTE] = ACTIONS(6465), - [anon_sym__] = ACTIONS(6467), - [anon_sym_CARET] = ACTIONS(6467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6467), - [anon_sym_DOLLAR] = ACTIONS(6465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6467), - [anon_sym_BSLASHbegin] = ACTIONS(6465), - [anon_sym_BSLASHend] = ACTIONS(6465), - [anon_sym_BSLASHtitle] = ACTIONS(6465), - [anon_sym_BSLASHauthor] = ACTIONS(6465), - [anon_sym_BSLASHusepackage] = ACTIONS(6465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6465), - [anon_sym_BSLASHinclude] = ACTIONS(6465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6465), - [anon_sym_BSLASHinput] = ACTIONS(6465), - [anon_sym_BSLASHsubfile] = ACTIONS(6465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6465), - [anon_sym_BSLASHbibliography] = ACTIONS(6465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6465), - [anon_sym_BSLASHincludesvg] = ACTIONS(6465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6465), - [anon_sym_BSLASHimport] = ACTIONS(6465), - [anon_sym_BSLASHsubimport] = ACTIONS(6465), - [anon_sym_BSLASHinputfrom] = ACTIONS(6465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6465), - [anon_sym_BSLASHincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHcaption] = ACTIONS(6465), - [anon_sym_BSLASHcite] = ACTIONS(6465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCite] = ACTIONS(6465), - [anon_sym_BSLASHnocite] = ACTIONS(6465), - [anon_sym_BSLASHcitet] = ACTIONS(6465), - [anon_sym_BSLASHcitep] = ACTIONS(6465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteauthor] = ACTIONS(6465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitetitle] = ACTIONS(6465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteyear] = ACTIONS(6465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitedate] = ACTIONS(6465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteurl] = ACTIONS(6465), - [anon_sym_BSLASHfullcite] = ACTIONS(6465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6465), - [anon_sym_BSLASHcitealt] = ACTIONS(6465), - [anon_sym_BSLASHcitealp] = ACTIONS(6465), - [anon_sym_BSLASHcitetext] = ACTIONS(6465), - [anon_sym_BSLASHparencite] = ACTIONS(6465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHParencite] = ACTIONS(6465), - [anon_sym_BSLASHfootcite] = ACTIONS(6465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6465), - [anon_sym_BSLASHtextcite] = ACTIONS(6465), - [anon_sym_BSLASHTextcite] = ACTIONS(6465), - [anon_sym_BSLASHsmartcite] = ACTIONS(6465), - [anon_sym_BSLASHSmartcite] = ACTIONS(6465), - [anon_sym_BSLASHsupercite] = ACTIONS(6465), - [anon_sym_BSLASHautocite] = ACTIONS(6465), - [anon_sym_BSLASHAutocite] = ACTIONS(6465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHvolcite] = ACTIONS(6465), - [anon_sym_BSLASHVolcite] = ACTIONS(6465), - [anon_sym_BSLASHpvolcite] = ACTIONS(6465), - [anon_sym_BSLASHPvolcite] = ACTIONS(6465), - [anon_sym_BSLASHfvolcite] = ACTIONS(6465), - [anon_sym_BSLASHftvolcite] = ACTIONS(6465), - [anon_sym_BSLASHsvolcite] = ACTIONS(6465), - [anon_sym_BSLASHSvolcite] = ACTIONS(6465), - [anon_sym_BSLASHtvolcite] = ACTIONS(6465), - [anon_sym_BSLASHTvolcite] = ACTIONS(6465), - [anon_sym_BSLASHavolcite] = ACTIONS(6465), - [anon_sym_BSLASHAvolcite] = ACTIONS(6465), - [anon_sym_BSLASHnotecite] = ACTIONS(6465), - [anon_sym_BSLASHNotecite] = ACTIONS(6465), - [anon_sym_BSLASHpnotecite] = ACTIONS(6465), - [anon_sym_BSLASHPnotecite] = ACTIONS(6465), - [anon_sym_BSLASHfnotecite] = ACTIONS(6465), - [anon_sym_BSLASHlabel] = ACTIONS(6465), - [anon_sym_BSLASHref] = ACTIONS(6465), - [anon_sym_BSLASHeqref] = ACTIONS(6465), - [anon_sym_BSLASHvref] = ACTIONS(6465), - [anon_sym_BSLASHVref] = ACTIONS(6465), - [anon_sym_BSLASHautoref] = ACTIONS(6465), - [anon_sym_BSLASHpageref] = ACTIONS(6465), - [anon_sym_BSLASHcref] = ACTIONS(6465), - [anon_sym_BSLASHCref] = ACTIONS(6465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnameCref] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHlabelcref] = ACTIONS(6465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCrefrange] = ACTIONS(6465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnewlabel] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6467), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHdef] = ACTIONS(6465), - [anon_sym_BSLASHlet] = ACTIONS(6465), - [anon_sym_BSLASHleft] = ACTIONS(6465), - [anon_sym_BSLASHbig] = ACTIONS(6465), - [anon_sym_BSLASHBig] = ACTIONS(6465), - [anon_sym_BSLASHbigg] = ACTIONS(6465), - [anon_sym_BSLASHBigg] = ACTIONS(6465), - [anon_sym_BSLASHbigl] = ACTIONS(6465), - [anon_sym_BSLASHBigl] = ACTIONS(6465), - [anon_sym_BSLASHbiggl] = ACTIONS(6465), - [anon_sym_BSLASHBiggl] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6465), - [anon_sym_BSLASHgls] = ACTIONS(6465), - [anon_sym_BSLASHGls] = ACTIONS(6465), - [anon_sym_BSLASHGLS] = ACTIONS(6465), - [anon_sym_BSLASHglspl] = ACTIONS(6465), - [anon_sym_BSLASHGlspl] = ACTIONS(6465), - [anon_sym_BSLASHGLSpl] = ACTIONS(6465), - [anon_sym_BSLASHglsdisp] = ACTIONS(6465), - [anon_sym_BSLASHglslink] = ACTIONS(6465), - [anon_sym_BSLASHglstext] = ACTIONS(6465), - [anon_sym_BSLASHGlstext] = ACTIONS(6465), - [anon_sym_BSLASHGLStext] = ACTIONS(6465), - [anon_sym_BSLASHglsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6465), - [anon_sym_BSLASHglsplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSplural] = ACTIONS(6465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHglsname] = ACTIONS(6465), - [anon_sym_BSLASHGlsname] = ACTIONS(6465), - [anon_sym_BSLASHGLSname] = ACTIONS(6465), - [anon_sym_BSLASHglssymbol] = ACTIONS(6465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6465), - [anon_sym_BSLASHglsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6465), - [anon_sym_BSLASHglsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6465), - [anon_sym_BSLASHglsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6465), - [anon_sym_BSLASHglsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6465), - [anon_sym_BSLASHglsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6465), - [anon_sym_BSLASHnewacronym] = ACTIONS(6465), - [anon_sym_BSLASHacrshort] = ACTIONS(6465), - [anon_sym_BSLASHAcrshort] = ACTIONS(6465), - [anon_sym_BSLASHACRshort] = ACTIONS(6465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6465), - [anon_sym_BSLASHacrlong] = ACTIONS(6465), - [anon_sym_BSLASHAcrlong] = ACTIONS(6465), - [anon_sym_BSLASHACRlong] = ACTIONS(6465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6465), - [anon_sym_BSLASHacrfull] = ACTIONS(6465), - [anon_sym_BSLASHAcrfull] = ACTIONS(6465), - [anon_sym_BSLASHACRfull] = ACTIONS(6465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6465), - [anon_sym_BSLASHacs] = ACTIONS(6465), - [anon_sym_BSLASHAcs] = ACTIONS(6465), - [anon_sym_BSLASHacsp] = ACTIONS(6465), - [anon_sym_BSLASHAcsp] = ACTIONS(6465), - [anon_sym_BSLASHacl] = ACTIONS(6465), - [anon_sym_BSLASHAcl] = ACTIONS(6465), - [anon_sym_BSLASHaclp] = ACTIONS(6465), - [anon_sym_BSLASHAclp] = ACTIONS(6465), - [anon_sym_BSLASHacf] = ACTIONS(6465), - [anon_sym_BSLASHAcf] = ACTIONS(6465), - [anon_sym_BSLASHacfp] = ACTIONS(6465), - [anon_sym_BSLASHAcfp] = ACTIONS(6465), - [anon_sym_BSLASHac] = ACTIONS(6465), - [anon_sym_BSLASHAc] = ACTIONS(6465), - [anon_sym_BSLASHacp] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6465), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6465), - [anon_sym_BSLASHcolor] = ACTIONS(6465), - [anon_sym_BSLASHcolorbox] = ACTIONS(6465), - [anon_sym_BSLASHtextcolor] = ACTIONS(6465), - [anon_sym_BSLASHpagecolor] = ACTIONS(6465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6465), - [anon_sym_BSLASHtext] = ACTIONS(6465), - [anon_sym_BSLASHintertext] = ACTIONS(6465), - [anon_sym_shortintertext] = ACTIONS(6465), - }, - [1153] = { - [sym_command_name] = ACTIONS(6161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_EQ] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_BSLASHpart] = ACTIONS(6161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddpart] = ACTIONS(6161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6163), - [anon_sym_BSLASHchapter] = ACTIONS(6161), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddchap] = ACTIONS(6161), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsection] = ACTIONS(6161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddsec] = ACTIONS(6161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubsection] = ACTIONS(6161), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6161), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHparagraph] = ACTIONS(6161), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6161), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6163), - [anon_sym_BSLASHitem] = ACTIONS(6161), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6163), - [anon_sym_LBRACE] = ACTIONS(6163), - [sym_word] = ACTIONS(6161), - [sym_placeholder] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6163), - [anon_sym_DASH] = ACTIONS(6163), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_COLON] = ACTIONS(6161), - [anon_sym_SQUOTE] = ACTIONS(6161), - [anon_sym__] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6163), - [anon_sym_DOLLAR] = ACTIONS(6161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6163), - [anon_sym_BSLASHbegin] = ACTIONS(6161), - [anon_sym_BSLASHend] = ACTIONS(6161), - [anon_sym_BSLASHtitle] = ACTIONS(6161), - [anon_sym_BSLASHauthor] = ACTIONS(6161), - [anon_sym_BSLASHusepackage] = ACTIONS(6161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6161), - [anon_sym_BSLASHinclude] = ACTIONS(6161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6161), - [anon_sym_BSLASHinput] = ACTIONS(6161), - [anon_sym_BSLASHsubfile] = ACTIONS(6161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6161), - [anon_sym_BSLASHbibliography] = ACTIONS(6161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6161), - [anon_sym_BSLASHincludesvg] = ACTIONS(6161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6161), - [anon_sym_BSLASHimport] = ACTIONS(6161), - [anon_sym_BSLASHsubimport] = ACTIONS(6161), - [anon_sym_BSLASHinputfrom] = ACTIONS(6161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6161), - [anon_sym_BSLASHincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHcaption] = ACTIONS(6161), - [anon_sym_BSLASHcite] = ACTIONS(6161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCite] = ACTIONS(6161), - [anon_sym_BSLASHnocite] = ACTIONS(6161), - [anon_sym_BSLASHcitet] = ACTIONS(6161), - [anon_sym_BSLASHcitep] = ACTIONS(6161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteauthor] = ACTIONS(6161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitetitle] = ACTIONS(6161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteyear] = ACTIONS(6161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitedate] = ACTIONS(6161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteurl] = ACTIONS(6161), - [anon_sym_BSLASHfullcite] = ACTIONS(6161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6161), - [anon_sym_BSLASHcitealt] = ACTIONS(6161), - [anon_sym_BSLASHcitealp] = ACTIONS(6161), - [anon_sym_BSLASHcitetext] = ACTIONS(6161), - [anon_sym_BSLASHparencite] = ACTIONS(6161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHParencite] = ACTIONS(6161), - [anon_sym_BSLASHfootcite] = ACTIONS(6161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6161), - [anon_sym_BSLASHtextcite] = ACTIONS(6161), - [anon_sym_BSLASHTextcite] = ACTIONS(6161), - [anon_sym_BSLASHsmartcite] = ACTIONS(6161), - [anon_sym_BSLASHSmartcite] = ACTIONS(6161), - [anon_sym_BSLASHsupercite] = ACTIONS(6161), - [anon_sym_BSLASHautocite] = ACTIONS(6161), - [anon_sym_BSLASHAutocite] = ACTIONS(6161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHvolcite] = ACTIONS(6161), - [anon_sym_BSLASHVolcite] = ACTIONS(6161), - [anon_sym_BSLASHpvolcite] = ACTIONS(6161), - [anon_sym_BSLASHPvolcite] = ACTIONS(6161), - [anon_sym_BSLASHfvolcite] = ACTIONS(6161), - [anon_sym_BSLASHftvolcite] = ACTIONS(6161), - [anon_sym_BSLASHsvolcite] = ACTIONS(6161), - [anon_sym_BSLASHSvolcite] = ACTIONS(6161), - [anon_sym_BSLASHtvolcite] = ACTIONS(6161), - [anon_sym_BSLASHTvolcite] = ACTIONS(6161), - [anon_sym_BSLASHavolcite] = ACTIONS(6161), - [anon_sym_BSLASHAvolcite] = ACTIONS(6161), - [anon_sym_BSLASHnotecite] = ACTIONS(6161), - [anon_sym_BSLASHNotecite] = ACTIONS(6161), - [anon_sym_BSLASHpnotecite] = ACTIONS(6161), - [anon_sym_BSLASHPnotecite] = ACTIONS(6161), - [anon_sym_BSLASHfnotecite] = ACTIONS(6161), - [anon_sym_BSLASHlabel] = ACTIONS(6161), - [anon_sym_BSLASHref] = ACTIONS(6161), - [anon_sym_BSLASHeqref] = ACTIONS(6161), - [anon_sym_BSLASHvref] = ACTIONS(6161), - [anon_sym_BSLASHVref] = ACTIONS(6161), - [anon_sym_BSLASHautoref] = ACTIONS(6161), - [anon_sym_BSLASHpageref] = ACTIONS(6161), - [anon_sym_BSLASHcref] = ACTIONS(6161), - [anon_sym_BSLASHCref] = ACTIONS(6161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnameCref] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHlabelcref] = ACTIONS(6161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCrefrange] = ACTIONS(6161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnewlabel] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6163), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHdef] = ACTIONS(6161), - [anon_sym_BSLASHlet] = ACTIONS(6161), - [anon_sym_BSLASHleft] = ACTIONS(6161), - [anon_sym_BSLASHbig] = ACTIONS(6161), - [anon_sym_BSLASHBig] = ACTIONS(6161), - [anon_sym_BSLASHbigg] = ACTIONS(6161), - [anon_sym_BSLASHBigg] = ACTIONS(6161), - [anon_sym_BSLASHbigl] = ACTIONS(6161), - [anon_sym_BSLASHBigl] = ACTIONS(6161), - [anon_sym_BSLASHbiggl] = ACTIONS(6161), - [anon_sym_BSLASHBiggl] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6161), - [anon_sym_BSLASHgls] = ACTIONS(6161), - [anon_sym_BSLASHGls] = ACTIONS(6161), - [anon_sym_BSLASHGLS] = ACTIONS(6161), - [anon_sym_BSLASHglspl] = ACTIONS(6161), - [anon_sym_BSLASHGlspl] = ACTIONS(6161), - [anon_sym_BSLASHGLSpl] = ACTIONS(6161), - [anon_sym_BSLASHglsdisp] = ACTIONS(6161), - [anon_sym_BSLASHglslink] = ACTIONS(6161), - [anon_sym_BSLASHglstext] = ACTIONS(6161), - [anon_sym_BSLASHGlstext] = ACTIONS(6161), - [anon_sym_BSLASHGLStext] = ACTIONS(6161), - [anon_sym_BSLASHglsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6161), - [anon_sym_BSLASHglsplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSplural] = ACTIONS(6161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHglsname] = ACTIONS(6161), - [anon_sym_BSLASHGlsname] = ACTIONS(6161), - [anon_sym_BSLASHGLSname] = ACTIONS(6161), - [anon_sym_BSLASHglssymbol] = ACTIONS(6161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6161), - [anon_sym_BSLASHglsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6161), - [anon_sym_BSLASHglsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6161), - [anon_sym_BSLASHglsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6161), - [anon_sym_BSLASHglsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6161), - [anon_sym_BSLASHglsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6161), - [anon_sym_BSLASHnewacronym] = ACTIONS(6161), - [anon_sym_BSLASHacrshort] = ACTIONS(6161), - [anon_sym_BSLASHAcrshort] = ACTIONS(6161), - [anon_sym_BSLASHACRshort] = ACTIONS(6161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6161), - [anon_sym_BSLASHacrlong] = ACTIONS(6161), - [anon_sym_BSLASHAcrlong] = ACTIONS(6161), - [anon_sym_BSLASHACRlong] = ACTIONS(6161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6161), - [anon_sym_BSLASHacrfull] = ACTIONS(6161), - [anon_sym_BSLASHAcrfull] = ACTIONS(6161), - [anon_sym_BSLASHACRfull] = ACTIONS(6161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6161), - [anon_sym_BSLASHacs] = ACTIONS(6161), - [anon_sym_BSLASHAcs] = ACTIONS(6161), - [anon_sym_BSLASHacsp] = ACTIONS(6161), - [anon_sym_BSLASHAcsp] = ACTIONS(6161), - [anon_sym_BSLASHacl] = ACTIONS(6161), - [anon_sym_BSLASHAcl] = ACTIONS(6161), - [anon_sym_BSLASHaclp] = ACTIONS(6161), - [anon_sym_BSLASHAclp] = ACTIONS(6161), - [anon_sym_BSLASHacf] = ACTIONS(6161), - [anon_sym_BSLASHAcf] = ACTIONS(6161), - [anon_sym_BSLASHacfp] = ACTIONS(6161), - [anon_sym_BSLASHAcfp] = ACTIONS(6161), - [anon_sym_BSLASHac] = ACTIONS(6161), - [anon_sym_BSLASHAc] = ACTIONS(6161), - [anon_sym_BSLASHacp] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6161), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6161), - [anon_sym_BSLASHcolor] = ACTIONS(6161), - [anon_sym_BSLASHcolorbox] = ACTIONS(6161), - [anon_sym_BSLASHtextcolor] = ACTIONS(6161), - [anon_sym_BSLASHpagecolor] = ACTIONS(6161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6161), - [anon_sym_BSLASHtext] = ACTIONS(6161), - [anon_sym_BSLASHintertext] = ACTIONS(6161), - [anon_sym_shortintertext] = ACTIONS(6161), - }, - [1154] = { - [sym_command_name] = ACTIONS(6469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6471), - [anon_sym_RBRACK] = ACTIONS(6471), - [anon_sym_COMMA] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(6471), - [anon_sym_LPAREN] = ACTIONS(6471), - [anon_sym_RPAREN] = ACTIONS(6471), - [anon_sym_BSLASHpart] = ACTIONS(6469), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddpart] = ACTIONS(6469), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6471), - [anon_sym_BSLASHchapter] = ACTIONS(6469), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddchap] = ACTIONS(6469), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsection] = ACTIONS(6469), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddsec] = ACTIONS(6469), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubsection] = ACTIONS(6469), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6469), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHparagraph] = ACTIONS(6469), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6469), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6471), - [anon_sym_BSLASHitem] = ACTIONS(6469), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6471), - [sym_word] = ACTIONS(6469), - [sym_placeholder] = ACTIONS(6471), - [anon_sym_PLUS] = ACTIONS(6471), - [anon_sym_DASH] = ACTIONS(6471), - [anon_sym_STAR] = ACTIONS(6471), - [anon_sym_SLASH] = ACTIONS(6471), - [anon_sym_LT] = ACTIONS(6469), - [anon_sym_GT] = ACTIONS(6469), - [anon_sym_BANG] = ACTIONS(6469), - [anon_sym_PIPE] = ACTIONS(6469), - [anon_sym_COLON] = ACTIONS(6469), - [anon_sym_SQUOTE] = ACTIONS(6469), - [anon_sym__] = ACTIONS(6471), - [anon_sym_CARET] = ACTIONS(6471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6471), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6471), - [anon_sym_DOLLAR] = ACTIONS(6469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6471), - [anon_sym_BSLASHbegin] = ACTIONS(6469), - [anon_sym_BSLASHend] = ACTIONS(6469), - [anon_sym_BSLASHtitle] = ACTIONS(6469), - [anon_sym_BSLASHauthor] = ACTIONS(6469), - [anon_sym_BSLASHusepackage] = ACTIONS(6469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6469), - [anon_sym_BSLASHinclude] = ACTIONS(6469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6469), - [anon_sym_BSLASHinput] = ACTIONS(6469), - [anon_sym_BSLASHsubfile] = ACTIONS(6469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6469), - [anon_sym_BSLASHbibliography] = ACTIONS(6469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6469), - [anon_sym_BSLASHincludesvg] = ACTIONS(6469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6469), - [anon_sym_BSLASHimport] = ACTIONS(6469), - [anon_sym_BSLASHsubimport] = ACTIONS(6469), - [anon_sym_BSLASHinputfrom] = ACTIONS(6469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6469), - [anon_sym_BSLASHincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHcaption] = ACTIONS(6469), - [anon_sym_BSLASHcite] = ACTIONS(6469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCite] = ACTIONS(6469), - [anon_sym_BSLASHnocite] = ACTIONS(6469), - [anon_sym_BSLASHcitet] = ACTIONS(6469), - [anon_sym_BSLASHcitep] = ACTIONS(6469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteauthor] = ACTIONS(6469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitetitle] = ACTIONS(6469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteyear] = ACTIONS(6469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitedate] = ACTIONS(6469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteurl] = ACTIONS(6469), - [anon_sym_BSLASHfullcite] = ACTIONS(6469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6469), - [anon_sym_BSLASHcitealt] = ACTIONS(6469), - [anon_sym_BSLASHcitealp] = ACTIONS(6469), - [anon_sym_BSLASHcitetext] = ACTIONS(6469), - [anon_sym_BSLASHparencite] = ACTIONS(6469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHParencite] = ACTIONS(6469), - [anon_sym_BSLASHfootcite] = ACTIONS(6469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6469), - [anon_sym_BSLASHtextcite] = ACTIONS(6469), - [anon_sym_BSLASHTextcite] = ACTIONS(6469), - [anon_sym_BSLASHsmartcite] = ACTIONS(6469), - [anon_sym_BSLASHSmartcite] = ACTIONS(6469), - [anon_sym_BSLASHsupercite] = ACTIONS(6469), - [anon_sym_BSLASHautocite] = ACTIONS(6469), - [anon_sym_BSLASHAutocite] = ACTIONS(6469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHvolcite] = ACTIONS(6469), - [anon_sym_BSLASHVolcite] = ACTIONS(6469), - [anon_sym_BSLASHpvolcite] = ACTIONS(6469), - [anon_sym_BSLASHPvolcite] = ACTIONS(6469), - [anon_sym_BSLASHfvolcite] = ACTIONS(6469), - [anon_sym_BSLASHftvolcite] = ACTIONS(6469), - [anon_sym_BSLASHsvolcite] = ACTIONS(6469), - [anon_sym_BSLASHSvolcite] = ACTIONS(6469), - [anon_sym_BSLASHtvolcite] = ACTIONS(6469), - [anon_sym_BSLASHTvolcite] = ACTIONS(6469), - [anon_sym_BSLASHavolcite] = ACTIONS(6469), - [anon_sym_BSLASHAvolcite] = ACTIONS(6469), - [anon_sym_BSLASHnotecite] = ACTIONS(6469), - [anon_sym_BSLASHNotecite] = ACTIONS(6469), - [anon_sym_BSLASHpnotecite] = ACTIONS(6469), - [anon_sym_BSLASHPnotecite] = ACTIONS(6469), - [anon_sym_BSLASHfnotecite] = ACTIONS(6469), - [anon_sym_BSLASHlabel] = ACTIONS(6469), - [anon_sym_BSLASHref] = ACTIONS(6469), - [anon_sym_BSLASHeqref] = ACTIONS(6469), - [anon_sym_BSLASHvref] = ACTIONS(6469), - [anon_sym_BSLASHVref] = ACTIONS(6469), - [anon_sym_BSLASHautoref] = ACTIONS(6469), - [anon_sym_BSLASHpageref] = ACTIONS(6469), - [anon_sym_BSLASHcref] = ACTIONS(6469), - [anon_sym_BSLASHCref] = ACTIONS(6469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnameCref] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHlabelcref] = ACTIONS(6469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCrefrange] = ACTIONS(6469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnewlabel] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6471), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHdef] = ACTIONS(6469), - [anon_sym_BSLASHlet] = ACTIONS(6469), - [anon_sym_BSLASHleft] = ACTIONS(6469), - [anon_sym_BSLASHbig] = ACTIONS(6469), - [anon_sym_BSLASHBig] = ACTIONS(6469), - [anon_sym_BSLASHbigg] = ACTIONS(6469), - [anon_sym_BSLASHBigg] = ACTIONS(6469), - [anon_sym_BSLASHbigl] = ACTIONS(6469), - [anon_sym_BSLASHBigl] = ACTIONS(6469), - [anon_sym_BSLASHbiggl] = ACTIONS(6469), - [anon_sym_BSLASHBiggl] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6469), - [anon_sym_BSLASHgls] = ACTIONS(6469), - [anon_sym_BSLASHGls] = ACTIONS(6469), - [anon_sym_BSLASHGLS] = ACTIONS(6469), - [anon_sym_BSLASHglspl] = ACTIONS(6469), - [anon_sym_BSLASHGlspl] = ACTIONS(6469), - [anon_sym_BSLASHGLSpl] = ACTIONS(6469), - [anon_sym_BSLASHglsdisp] = ACTIONS(6469), - [anon_sym_BSLASHglslink] = ACTIONS(6469), - [anon_sym_BSLASHglstext] = ACTIONS(6469), - [anon_sym_BSLASHGlstext] = ACTIONS(6469), - [anon_sym_BSLASHGLStext] = ACTIONS(6469), - [anon_sym_BSLASHglsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6469), - [anon_sym_BSLASHglsplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSplural] = ACTIONS(6469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHglsname] = ACTIONS(6469), - [anon_sym_BSLASHGlsname] = ACTIONS(6469), - [anon_sym_BSLASHGLSname] = ACTIONS(6469), - [anon_sym_BSLASHglssymbol] = ACTIONS(6469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6469), - [anon_sym_BSLASHglsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6469), - [anon_sym_BSLASHglsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6469), - [anon_sym_BSLASHglsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6469), - [anon_sym_BSLASHglsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6469), - [anon_sym_BSLASHglsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6469), - [anon_sym_BSLASHnewacronym] = ACTIONS(6469), - [anon_sym_BSLASHacrshort] = ACTIONS(6469), - [anon_sym_BSLASHAcrshort] = ACTIONS(6469), - [anon_sym_BSLASHACRshort] = ACTIONS(6469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6469), - [anon_sym_BSLASHacrlong] = ACTIONS(6469), - [anon_sym_BSLASHAcrlong] = ACTIONS(6469), - [anon_sym_BSLASHACRlong] = ACTIONS(6469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6469), - [anon_sym_BSLASHacrfull] = ACTIONS(6469), - [anon_sym_BSLASHAcrfull] = ACTIONS(6469), - [anon_sym_BSLASHACRfull] = ACTIONS(6469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6469), - [anon_sym_BSLASHacs] = ACTIONS(6469), - [anon_sym_BSLASHAcs] = ACTIONS(6469), - [anon_sym_BSLASHacsp] = ACTIONS(6469), - [anon_sym_BSLASHAcsp] = ACTIONS(6469), - [anon_sym_BSLASHacl] = ACTIONS(6469), - [anon_sym_BSLASHAcl] = ACTIONS(6469), - [anon_sym_BSLASHaclp] = ACTIONS(6469), - [anon_sym_BSLASHAclp] = ACTIONS(6469), - [anon_sym_BSLASHacf] = ACTIONS(6469), - [anon_sym_BSLASHAcf] = ACTIONS(6469), - [anon_sym_BSLASHacfp] = ACTIONS(6469), - [anon_sym_BSLASHAcfp] = ACTIONS(6469), - [anon_sym_BSLASHac] = ACTIONS(6469), - [anon_sym_BSLASHAc] = ACTIONS(6469), - [anon_sym_BSLASHacp] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6469), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6469), - [anon_sym_BSLASHcolor] = ACTIONS(6469), - [anon_sym_BSLASHcolorbox] = ACTIONS(6469), - [anon_sym_BSLASHtextcolor] = ACTIONS(6469), - [anon_sym_BSLASHpagecolor] = ACTIONS(6469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6469), - [anon_sym_BSLASHtext] = ACTIONS(6469), - [anon_sym_BSLASHintertext] = ACTIONS(6469), - [anon_sym_shortintertext] = ACTIONS(6469), - }, - [1155] = { - [sym_command_name] = ACTIONS(6305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6305), - [anon_sym_LBRACK] = ACTIONS(6307), - [anon_sym_RBRACK] = ACTIONS(6307), - [anon_sym_COMMA] = ACTIONS(6307), - [anon_sym_EQ] = ACTIONS(6307), - [anon_sym_LPAREN] = ACTIONS(6307), - [anon_sym_RPAREN] = ACTIONS(6307), - [anon_sym_BSLASHpart] = ACTIONS(6305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddpart] = ACTIONS(6305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6307), - [anon_sym_BSLASHchapter] = ACTIONS(6305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddchap] = ACTIONS(6305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsection] = ACTIONS(6305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddsec] = ACTIONS(6305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubsection] = ACTIONS(6305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHparagraph] = ACTIONS(6305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6307), - [anon_sym_BSLASHitem] = ACTIONS(6305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6307), - [anon_sym_LBRACE] = ACTIONS(6307), - [sym_word] = ACTIONS(6305), - [sym_placeholder] = ACTIONS(6307), - [anon_sym_PLUS] = ACTIONS(6307), - [anon_sym_DASH] = ACTIONS(6307), - [anon_sym_STAR] = ACTIONS(6307), - [anon_sym_SLASH] = ACTIONS(6307), - [anon_sym_LT] = ACTIONS(6305), - [anon_sym_GT] = ACTIONS(6305), - [anon_sym_BANG] = ACTIONS(6305), - [anon_sym_PIPE] = ACTIONS(6305), - [anon_sym_COLON] = ACTIONS(6305), - [anon_sym_SQUOTE] = ACTIONS(6305), - [anon_sym__] = ACTIONS(6307), - [anon_sym_CARET] = ACTIONS(6307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6307), - [anon_sym_DOLLAR] = ACTIONS(6305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6307), - [anon_sym_BSLASHbegin] = ACTIONS(6305), - [anon_sym_BSLASHend] = ACTIONS(6305), - [anon_sym_BSLASHtitle] = ACTIONS(6305), - [anon_sym_BSLASHauthor] = ACTIONS(6305), - [anon_sym_BSLASHusepackage] = ACTIONS(6305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6305), - [anon_sym_BSLASHinclude] = ACTIONS(6305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6305), - [anon_sym_BSLASHinput] = ACTIONS(6305), - [anon_sym_BSLASHsubfile] = ACTIONS(6305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6305), - [anon_sym_BSLASHbibliography] = ACTIONS(6305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6305), - [anon_sym_BSLASHincludesvg] = ACTIONS(6305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6305), - [anon_sym_BSLASHimport] = ACTIONS(6305), - [anon_sym_BSLASHsubimport] = ACTIONS(6305), - [anon_sym_BSLASHinputfrom] = ACTIONS(6305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6305), - [anon_sym_BSLASHincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHcaption] = ACTIONS(6305), - [anon_sym_BSLASHcite] = ACTIONS(6305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCite] = ACTIONS(6305), - [anon_sym_BSLASHnocite] = ACTIONS(6305), - [anon_sym_BSLASHcitet] = ACTIONS(6305), - [anon_sym_BSLASHcitep] = ACTIONS(6305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteauthor] = ACTIONS(6305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitetitle] = ACTIONS(6305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteyear] = ACTIONS(6305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitedate] = ACTIONS(6305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteurl] = ACTIONS(6305), - [anon_sym_BSLASHfullcite] = ACTIONS(6305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6305), - [anon_sym_BSLASHcitealt] = ACTIONS(6305), - [anon_sym_BSLASHcitealp] = ACTIONS(6305), - [anon_sym_BSLASHcitetext] = ACTIONS(6305), - [anon_sym_BSLASHparencite] = ACTIONS(6305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHParencite] = ACTIONS(6305), - [anon_sym_BSLASHfootcite] = ACTIONS(6305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6305), - [anon_sym_BSLASHtextcite] = ACTIONS(6305), - [anon_sym_BSLASHTextcite] = ACTIONS(6305), - [anon_sym_BSLASHsmartcite] = ACTIONS(6305), - [anon_sym_BSLASHSmartcite] = ACTIONS(6305), - [anon_sym_BSLASHsupercite] = ACTIONS(6305), - [anon_sym_BSLASHautocite] = ACTIONS(6305), - [anon_sym_BSLASHAutocite] = ACTIONS(6305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHvolcite] = ACTIONS(6305), - [anon_sym_BSLASHVolcite] = ACTIONS(6305), - [anon_sym_BSLASHpvolcite] = ACTIONS(6305), - [anon_sym_BSLASHPvolcite] = ACTIONS(6305), - [anon_sym_BSLASHfvolcite] = ACTIONS(6305), - [anon_sym_BSLASHftvolcite] = ACTIONS(6305), - [anon_sym_BSLASHsvolcite] = ACTIONS(6305), - [anon_sym_BSLASHSvolcite] = ACTIONS(6305), - [anon_sym_BSLASHtvolcite] = ACTIONS(6305), - [anon_sym_BSLASHTvolcite] = ACTIONS(6305), - [anon_sym_BSLASHavolcite] = ACTIONS(6305), - [anon_sym_BSLASHAvolcite] = ACTIONS(6305), - [anon_sym_BSLASHnotecite] = ACTIONS(6305), - [anon_sym_BSLASHNotecite] = ACTIONS(6305), - [anon_sym_BSLASHpnotecite] = ACTIONS(6305), - [anon_sym_BSLASHPnotecite] = ACTIONS(6305), - [anon_sym_BSLASHfnotecite] = ACTIONS(6305), - [anon_sym_BSLASHlabel] = ACTIONS(6305), - [anon_sym_BSLASHref] = ACTIONS(6305), - [anon_sym_BSLASHeqref] = ACTIONS(6305), - [anon_sym_BSLASHvref] = ACTIONS(6305), - [anon_sym_BSLASHVref] = ACTIONS(6305), - [anon_sym_BSLASHautoref] = ACTIONS(6305), - [anon_sym_BSLASHpageref] = ACTIONS(6305), - [anon_sym_BSLASHcref] = ACTIONS(6305), - [anon_sym_BSLASHCref] = ACTIONS(6305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnameCref] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHlabelcref] = ACTIONS(6305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCrefrange] = ACTIONS(6305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnewlabel] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6307), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHdef] = ACTIONS(6305), - [anon_sym_BSLASHlet] = ACTIONS(6305), - [anon_sym_BSLASHleft] = ACTIONS(6305), - [anon_sym_BSLASHbig] = ACTIONS(6305), - [anon_sym_BSLASHBig] = ACTIONS(6305), - [anon_sym_BSLASHbigg] = ACTIONS(6305), - [anon_sym_BSLASHBigg] = ACTIONS(6305), - [anon_sym_BSLASHbigl] = ACTIONS(6305), - [anon_sym_BSLASHBigl] = ACTIONS(6305), - [anon_sym_BSLASHbiggl] = ACTIONS(6305), - [anon_sym_BSLASHBiggl] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6305), - [anon_sym_BSLASHgls] = ACTIONS(6305), - [anon_sym_BSLASHGls] = ACTIONS(6305), - [anon_sym_BSLASHGLS] = ACTIONS(6305), - [anon_sym_BSLASHglspl] = ACTIONS(6305), - [anon_sym_BSLASHGlspl] = ACTIONS(6305), - [anon_sym_BSLASHGLSpl] = ACTIONS(6305), - [anon_sym_BSLASHglsdisp] = ACTIONS(6305), - [anon_sym_BSLASHglslink] = ACTIONS(6305), - [anon_sym_BSLASHglstext] = ACTIONS(6305), - [anon_sym_BSLASHGlstext] = ACTIONS(6305), - [anon_sym_BSLASHGLStext] = ACTIONS(6305), - [anon_sym_BSLASHglsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6305), - [anon_sym_BSLASHglsplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSplural] = ACTIONS(6305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHglsname] = ACTIONS(6305), - [anon_sym_BSLASHGlsname] = ACTIONS(6305), - [anon_sym_BSLASHGLSname] = ACTIONS(6305), - [anon_sym_BSLASHglssymbol] = ACTIONS(6305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6305), - [anon_sym_BSLASHglsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6305), - [anon_sym_BSLASHglsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6305), - [anon_sym_BSLASHglsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6305), - [anon_sym_BSLASHglsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6305), - [anon_sym_BSLASHglsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6305), - [anon_sym_BSLASHnewacronym] = ACTIONS(6305), - [anon_sym_BSLASHacrshort] = ACTIONS(6305), - [anon_sym_BSLASHAcrshort] = ACTIONS(6305), - [anon_sym_BSLASHACRshort] = ACTIONS(6305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6305), - [anon_sym_BSLASHacrlong] = ACTIONS(6305), - [anon_sym_BSLASHAcrlong] = ACTIONS(6305), - [anon_sym_BSLASHACRlong] = ACTIONS(6305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6305), - [anon_sym_BSLASHacrfull] = ACTIONS(6305), - [anon_sym_BSLASHAcrfull] = ACTIONS(6305), - [anon_sym_BSLASHACRfull] = ACTIONS(6305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6305), - [anon_sym_BSLASHacs] = ACTIONS(6305), - [anon_sym_BSLASHAcs] = ACTIONS(6305), - [anon_sym_BSLASHacsp] = ACTIONS(6305), - [anon_sym_BSLASHAcsp] = ACTIONS(6305), - [anon_sym_BSLASHacl] = ACTIONS(6305), - [anon_sym_BSLASHAcl] = ACTIONS(6305), - [anon_sym_BSLASHaclp] = ACTIONS(6305), - [anon_sym_BSLASHAclp] = ACTIONS(6305), - [anon_sym_BSLASHacf] = ACTIONS(6305), - [anon_sym_BSLASHAcf] = ACTIONS(6305), - [anon_sym_BSLASHacfp] = ACTIONS(6305), - [anon_sym_BSLASHAcfp] = ACTIONS(6305), - [anon_sym_BSLASHac] = ACTIONS(6305), - [anon_sym_BSLASHAc] = ACTIONS(6305), - [anon_sym_BSLASHacp] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6305), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6305), - [anon_sym_BSLASHcolor] = ACTIONS(6305), - [anon_sym_BSLASHcolorbox] = ACTIONS(6305), - [anon_sym_BSLASHtextcolor] = ACTIONS(6305), - [anon_sym_BSLASHpagecolor] = ACTIONS(6305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6305), - [anon_sym_BSLASHtext] = ACTIONS(6305), - [anon_sym_BSLASHintertext] = ACTIONS(6305), - [anon_sym_shortintertext] = ACTIONS(6305), - }, - [1156] = { - [sym_command_name] = ACTIONS(6309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6309), - [anon_sym_LBRACK] = ACTIONS(6311), - [anon_sym_RBRACK] = ACTIONS(6311), - [anon_sym_COMMA] = ACTIONS(6311), - [anon_sym_EQ] = ACTIONS(6311), - [anon_sym_LPAREN] = ACTIONS(6311), - [anon_sym_RPAREN] = ACTIONS(6311), - [anon_sym_BSLASHpart] = ACTIONS(6309), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddpart] = ACTIONS(6309), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6311), - [anon_sym_BSLASHchapter] = ACTIONS(6309), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddchap] = ACTIONS(6309), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsection] = ACTIONS(6309), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddsec] = ACTIONS(6309), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubsection] = ACTIONS(6309), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6309), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHparagraph] = ACTIONS(6309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6309), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6311), - [anon_sym_BSLASHitem] = ACTIONS(6309), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(6311), - [sym_word] = ACTIONS(6309), - [sym_placeholder] = ACTIONS(6311), - [anon_sym_PLUS] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [anon_sym_STAR] = ACTIONS(6311), - [anon_sym_SLASH] = ACTIONS(6311), - [anon_sym_LT] = ACTIONS(6309), - [anon_sym_GT] = ACTIONS(6309), - [anon_sym_BANG] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(6309), - [anon_sym_COLON] = ACTIONS(6309), - [anon_sym_SQUOTE] = ACTIONS(6309), - [anon_sym__] = ACTIONS(6311), - [anon_sym_CARET] = ACTIONS(6311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6311), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6311), - [anon_sym_DOLLAR] = ACTIONS(6309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6311), - [anon_sym_BSLASHbegin] = ACTIONS(6309), - [anon_sym_BSLASHend] = ACTIONS(6309), - [anon_sym_BSLASHtitle] = ACTIONS(6309), - [anon_sym_BSLASHauthor] = ACTIONS(6309), - [anon_sym_BSLASHusepackage] = ACTIONS(6309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6309), - [anon_sym_BSLASHinclude] = ACTIONS(6309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6309), - [anon_sym_BSLASHinput] = ACTIONS(6309), - [anon_sym_BSLASHsubfile] = ACTIONS(6309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6309), - [anon_sym_BSLASHbibliography] = ACTIONS(6309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6309), - [anon_sym_BSLASHincludesvg] = ACTIONS(6309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6309), - [anon_sym_BSLASHimport] = ACTIONS(6309), - [anon_sym_BSLASHsubimport] = ACTIONS(6309), - [anon_sym_BSLASHinputfrom] = ACTIONS(6309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6309), - [anon_sym_BSLASHincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHcaption] = ACTIONS(6309), - [anon_sym_BSLASHcite] = ACTIONS(6309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCite] = ACTIONS(6309), - [anon_sym_BSLASHnocite] = ACTIONS(6309), - [anon_sym_BSLASHcitet] = ACTIONS(6309), - [anon_sym_BSLASHcitep] = ACTIONS(6309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteauthor] = ACTIONS(6309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitetitle] = ACTIONS(6309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteyear] = ACTIONS(6309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitedate] = ACTIONS(6309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteurl] = ACTIONS(6309), - [anon_sym_BSLASHfullcite] = ACTIONS(6309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6309), - [anon_sym_BSLASHcitealt] = ACTIONS(6309), - [anon_sym_BSLASHcitealp] = ACTIONS(6309), - [anon_sym_BSLASHcitetext] = ACTIONS(6309), - [anon_sym_BSLASHparencite] = ACTIONS(6309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHParencite] = ACTIONS(6309), - [anon_sym_BSLASHfootcite] = ACTIONS(6309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6309), - [anon_sym_BSLASHtextcite] = ACTIONS(6309), - [anon_sym_BSLASHTextcite] = ACTIONS(6309), - [anon_sym_BSLASHsmartcite] = ACTIONS(6309), - [anon_sym_BSLASHSmartcite] = ACTIONS(6309), - [anon_sym_BSLASHsupercite] = ACTIONS(6309), - [anon_sym_BSLASHautocite] = ACTIONS(6309), - [anon_sym_BSLASHAutocite] = ACTIONS(6309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHvolcite] = ACTIONS(6309), - [anon_sym_BSLASHVolcite] = ACTIONS(6309), - [anon_sym_BSLASHpvolcite] = ACTIONS(6309), - [anon_sym_BSLASHPvolcite] = ACTIONS(6309), - [anon_sym_BSLASHfvolcite] = ACTIONS(6309), - [anon_sym_BSLASHftvolcite] = ACTIONS(6309), - [anon_sym_BSLASHsvolcite] = ACTIONS(6309), - [anon_sym_BSLASHSvolcite] = ACTIONS(6309), - [anon_sym_BSLASHtvolcite] = ACTIONS(6309), - [anon_sym_BSLASHTvolcite] = ACTIONS(6309), - [anon_sym_BSLASHavolcite] = ACTIONS(6309), - [anon_sym_BSLASHAvolcite] = ACTIONS(6309), - [anon_sym_BSLASHnotecite] = ACTIONS(6309), - [anon_sym_BSLASHNotecite] = ACTIONS(6309), - [anon_sym_BSLASHpnotecite] = ACTIONS(6309), - [anon_sym_BSLASHPnotecite] = ACTIONS(6309), - [anon_sym_BSLASHfnotecite] = ACTIONS(6309), - [anon_sym_BSLASHlabel] = ACTIONS(6309), - [anon_sym_BSLASHref] = ACTIONS(6309), - [anon_sym_BSLASHeqref] = ACTIONS(6309), - [anon_sym_BSLASHvref] = ACTIONS(6309), - [anon_sym_BSLASHVref] = ACTIONS(6309), - [anon_sym_BSLASHautoref] = ACTIONS(6309), - [anon_sym_BSLASHpageref] = ACTIONS(6309), - [anon_sym_BSLASHcref] = ACTIONS(6309), - [anon_sym_BSLASHCref] = ACTIONS(6309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnameCref] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHlabelcref] = ACTIONS(6309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCrefrange] = ACTIONS(6309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnewlabel] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6311), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHdef] = ACTIONS(6309), - [anon_sym_BSLASHlet] = ACTIONS(6309), - [anon_sym_BSLASHleft] = ACTIONS(6309), - [anon_sym_BSLASHbig] = ACTIONS(6309), - [anon_sym_BSLASHBig] = ACTIONS(6309), - [anon_sym_BSLASHbigg] = ACTIONS(6309), - [anon_sym_BSLASHBigg] = ACTIONS(6309), - [anon_sym_BSLASHbigl] = ACTIONS(6309), - [anon_sym_BSLASHBigl] = ACTIONS(6309), - [anon_sym_BSLASHbiggl] = ACTIONS(6309), - [anon_sym_BSLASHBiggl] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6309), - [anon_sym_BSLASHgls] = ACTIONS(6309), - [anon_sym_BSLASHGls] = ACTIONS(6309), - [anon_sym_BSLASHGLS] = ACTIONS(6309), - [anon_sym_BSLASHglspl] = ACTIONS(6309), - [anon_sym_BSLASHGlspl] = ACTIONS(6309), - [anon_sym_BSLASHGLSpl] = ACTIONS(6309), - [anon_sym_BSLASHglsdisp] = ACTIONS(6309), - [anon_sym_BSLASHglslink] = ACTIONS(6309), - [anon_sym_BSLASHglstext] = ACTIONS(6309), - [anon_sym_BSLASHGlstext] = ACTIONS(6309), - [anon_sym_BSLASHGLStext] = ACTIONS(6309), - [anon_sym_BSLASHglsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6309), - [anon_sym_BSLASHglsplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSplural] = ACTIONS(6309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHglsname] = ACTIONS(6309), - [anon_sym_BSLASHGlsname] = ACTIONS(6309), - [anon_sym_BSLASHGLSname] = ACTIONS(6309), - [anon_sym_BSLASHglssymbol] = ACTIONS(6309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6309), - [anon_sym_BSLASHglsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6309), - [anon_sym_BSLASHglsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6309), - [anon_sym_BSLASHglsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6309), - [anon_sym_BSLASHglsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6309), - [anon_sym_BSLASHglsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6309), - [anon_sym_BSLASHnewacronym] = ACTIONS(6309), - [anon_sym_BSLASHacrshort] = ACTIONS(6309), - [anon_sym_BSLASHAcrshort] = ACTIONS(6309), - [anon_sym_BSLASHACRshort] = ACTIONS(6309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6309), - [anon_sym_BSLASHacrlong] = ACTIONS(6309), - [anon_sym_BSLASHAcrlong] = ACTIONS(6309), - [anon_sym_BSLASHACRlong] = ACTIONS(6309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6309), - [anon_sym_BSLASHacrfull] = ACTIONS(6309), - [anon_sym_BSLASHAcrfull] = ACTIONS(6309), - [anon_sym_BSLASHACRfull] = ACTIONS(6309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6309), - [anon_sym_BSLASHacs] = ACTIONS(6309), - [anon_sym_BSLASHAcs] = ACTIONS(6309), - [anon_sym_BSLASHacsp] = ACTIONS(6309), - [anon_sym_BSLASHAcsp] = ACTIONS(6309), - [anon_sym_BSLASHacl] = ACTIONS(6309), - [anon_sym_BSLASHAcl] = ACTIONS(6309), - [anon_sym_BSLASHaclp] = ACTIONS(6309), - [anon_sym_BSLASHAclp] = ACTIONS(6309), - [anon_sym_BSLASHacf] = ACTIONS(6309), - [anon_sym_BSLASHAcf] = ACTIONS(6309), - [anon_sym_BSLASHacfp] = ACTIONS(6309), - [anon_sym_BSLASHAcfp] = ACTIONS(6309), - [anon_sym_BSLASHac] = ACTIONS(6309), - [anon_sym_BSLASHAc] = ACTIONS(6309), - [anon_sym_BSLASHacp] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6309), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6309), - [anon_sym_BSLASHcolor] = ACTIONS(6309), - [anon_sym_BSLASHcolorbox] = ACTIONS(6309), - [anon_sym_BSLASHtextcolor] = ACTIONS(6309), - [anon_sym_BSLASHpagecolor] = ACTIONS(6309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6309), - [anon_sym_BSLASHtext] = ACTIONS(6309), - [anon_sym_BSLASHintertext] = ACTIONS(6309), - [anon_sym_shortintertext] = ACTIONS(6309), - }, - [1157] = { - [sym_command_name] = ACTIONS(6313), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6313), - [anon_sym_LBRACK] = ACTIONS(6315), - [anon_sym_RBRACK] = ACTIONS(6315), - [anon_sym_COMMA] = ACTIONS(6315), - [anon_sym_EQ] = ACTIONS(6315), - [anon_sym_LPAREN] = ACTIONS(6315), - [anon_sym_RPAREN] = ACTIONS(6315), - [anon_sym_BSLASHpart] = ACTIONS(6313), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddpart] = ACTIONS(6313), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6315), - [anon_sym_BSLASHchapter] = ACTIONS(6313), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddchap] = ACTIONS(6313), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsection] = ACTIONS(6313), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddsec] = ACTIONS(6313), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubsection] = ACTIONS(6313), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6313), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHparagraph] = ACTIONS(6313), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6315), - [anon_sym_BSLASHitem] = ACTIONS(6313), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6315), - [anon_sym_LBRACE] = ACTIONS(6315), - [sym_word] = ACTIONS(6313), - [sym_placeholder] = ACTIONS(6315), - [anon_sym_PLUS] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6315), - [anon_sym_SLASH] = ACTIONS(6315), - [anon_sym_LT] = ACTIONS(6313), - [anon_sym_GT] = ACTIONS(6313), - [anon_sym_BANG] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(6313), - [anon_sym_COLON] = ACTIONS(6313), - [anon_sym_SQUOTE] = ACTIONS(6313), - [anon_sym__] = ACTIONS(6315), - [anon_sym_CARET] = ACTIONS(6315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6315), - [anon_sym_DOLLAR] = ACTIONS(6313), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6315), - [anon_sym_BSLASHbegin] = ACTIONS(6313), - [anon_sym_BSLASHend] = ACTIONS(6313), - [anon_sym_BSLASHtitle] = ACTIONS(6313), - [anon_sym_BSLASHauthor] = ACTIONS(6313), - [anon_sym_BSLASHusepackage] = ACTIONS(6313), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6313), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6313), - [anon_sym_BSLASHinclude] = ACTIONS(6313), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6313), - [anon_sym_BSLASHinput] = ACTIONS(6313), - [anon_sym_BSLASHsubfile] = ACTIONS(6313), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6313), - [anon_sym_BSLASHbibliography] = ACTIONS(6313), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6313), - [anon_sym_BSLASHincludesvg] = ACTIONS(6313), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6313), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6313), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6313), - [anon_sym_BSLASHimport] = ACTIONS(6313), - [anon_sym_BSLASHsubimport] = ACTIONS(6313), - [anon_sym_BSLASHinputfrom] = ACTIONS(6313), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6313), - [anon_sym_BSLASHincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHcaption] = ACTIONS(6313), - [anon_sym_BSLASHcite] = ACTIONS(6313), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCite] = ACTIONS(6313), - [anon_sym_BSLASHnocite] = ACTIONS(6313), - [anon_sym_BSLASHcitet] = ACTIONS(6313), - [anon_sym_BSLASHcitep] = ACTIONS(6313), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteauthor] = ACTIONS(6313), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6313), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitetitle] = ACTIONS(6313), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteyear] = ACTIONS(6313), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitedate] = ACTIONS(6313), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteurl] = ACTIONS(6313), - [anon_sym_BSLASHfullcite] = ACTIONS(6313), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6313), - [anon_sym_BSLASHcitealt] = ACTIONS(6313), - [anon_sym_BSLASHcitealp] = ACTIONS(6313), - [anon_sym_BSLASHcitetext] = ACTIONS(6313), - [anon_sym_BSLASHparencite] = ACTIONS(6313), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHParencite] = ACTIONS(6313), - [anon_sym_BSLASHfootcite] = ACTIONS(6313), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6313), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6313), - [anon_sym_BSLASHtextcite] = ACTIONS(6313), - [anon_sym_BSLASHTextcite] = ACTIONS(6313), - [anon_sym_BSLASHsmartcite] = ACTIONS(6313), - [anon_sym_BSLASHSmartcite] = ACTIONS(6313), - [anon_sym_BSLASHsupercite] = ACTIONS(6313), - [anon_sym_BSLASHautocite] = ACTIONS(6313), - [anon_sym_BSLASHAutocite] = ACTIONS(6313), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHvolcite] = ACTIONS(6313), - [anon_sym_BSLASHVolcite] = ACTIONS(6313), - [anon_sym_BSLASHpvolcite] = ACTIONS(6313), - [anon_sym_BSLASHPvolcite] = ACTIONS(6313), - [anon_sym_BSLASHfvolcite] = ACTIONS(6313), - [anon_sym_BSLASHftvolcite] = ACTIONS(6313), - [anon_sym_BSLASHsvolcite] = ACTIONS(6313), - [anon_sym_BSLASHSvolcite] = ACTIONS(6313), - [anon_sym_BSLASHtvolcite] = ACTIONS(6313), - [anon_sym_BSLASHTvolcite] = ACTIONS(6313), - [anon_sym_BSLASHavolcite] = ACTIONS(6313), - [anon_sym_BSLASHAvolcite] = ACTIONS(6313), - [anon_sym_BSLASHnotecite] = ACTIONS(6313), - [anon_sym_BSLASHNotecite] = ACTIONS(6313), - [anon_sym_BSLASHpnotecite] = ACTIONS(6313), - [anon_sym_BSLASHPnotecite] = ACTIONS(6313), - [anon_sym_BSLASHfnotecite] = ACTIONS(6313), - [anon_sym_BSLASHlabel] = ACTIONS(6313), - [anon_sym_BSLASHref] = ACTIONS(6313), - [anon_sym_BSLASHeqref] = ACTIONS(6313), - [anon_sym_BSLASHvref] = ACTIONS(6313), - [anon_sym_BSLASHVref] = ACTIONS(6313), - [anon_sym_BSLASHautoref] = ACTIONS(6313), - [anon_sym_BSLASHpageref] = ACTIONS(6313), - [anon_sym_BSLASHcref] = ACTIONS(6313), - [anon_sym_BSLASHCref] = ACTIONS(6313), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnameCref] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHlabelcref] = ACTIONS(6313), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCrefrange] = ACTIONS(6313), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnewlabel] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6313), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6313), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6315), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHdef] = ACTIONS(6313), - [anon_sym_BSLASHlet] = ACTIONS(6313), - [anon_sym_BSLASHleft] = ACTIONS(6313), - [anon_sym_BSLASHbig] = ACTIONS(6313), - [anon_sym_BSLASHBig] = ACTIONS(6313), - [anon_sym_BSLASHbigg] = ACTIONS(6313), - [anon_sym_BSLASHBigg] = ACTIONS(6313), - [anon_sym_BSLASHbigl] = ACTIONS(6313), - [anon_sym_BSLASHBigl] = ACTIONS(6313), - [anon_sym_BSLASHbiggl] = ACTIONS(6313), - [anon_sym_BSLASHBiggl] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6313), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6313), - [anon_sym_BSLASHgls] = ACTIONS(6313), - [anon_sym_BSLASHGls] = ACTIONS(6313), - [anon_sym_BSLASHGLS] = ACTIONS(6313), - [anon_sym_BSLASHglspl] = ACTIONS(6313), - [anon_sym_BSLASHGlspl] = ACTIONS(6313), - [anon_sym_BSLASHGLSpl] = ACTIONS(6313), - [anon_sym_BSLASHglsdisp] = ACTIONS(6313), - [anon_sym_BSLASHglslink] = ACTIONS(6313), - [anon_sym_BSLASHglstext] = ACTIONS(6313), - [anon_sym_BSLASHGlstext] = ACTIONS(6313), - [anon_sym_BSLASHGLStext] = ACTIONS(6313), - [anon_sym_BSLASHglsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6313), - [anon_sym_BSLASHglsplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSplural] = ACTIONS(6313), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHglsname] = ACTIONS(6313), - [anon_sym_BSLASHGlsname] = ACTIONS(6313), - [anon_sym_BSLASHGLSname] = ACTIONS(6313), - [anon_sym_BSLASHglssymbol] = ACTIONS(6313), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6313), - [anon_sym_BSLASHglsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6313), - [anon_sym_BSLASHglsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6313), - [anon_sym_BSLASHglsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6313), - [anon_sym_BSLASHglsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6313), - [anon_sym_BSLASHglsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6313), - [anon_sym_BSLASHnewacronym] = ACTIONS(6313), - [anon_sym_BSLASHacrshort] = ACTIONS(6313), - [anon_sym_BSLASHAcrshort] = ACTIONS(6313), - [anon_sym_BSLASHACRshort] = ACTIONS(6313), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6313), - [anon_sym_BSLASHacrlong] = ACTIONS(6313), - [anon_sym_BSLASHAcrlong] = ACTIONS(6313), - [anon_sym_BSLASHACRlong] = ACTIONS(6313), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6313), - [anon_sym_BSLASHacrfull] = ACTIONS(6313), - [anon_sym_BSLASHAcrfull] = ACTIONS(6313), - [anon_sym_BSLASHACRfull] = ACTIONS(6313), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6313), - [anon_sym_BSLASHacs] = ACTIONS(6313), - [anon_sym_BSLASHAcs] = ACTIONS(6313), - [anon_sym_BSLASHacsp] = ACTIONS(6313), - [anon_sym_BSLASHAcsp] = ACTIONS(6313), - [anon_sym_BSLASHacl] = ACTIONS(6313), - [anon_sym_BSLASHAcl] = ACTIONS(6313), - [anon_sym_BSLASHaclp] = ACTIONS(6313), - [anon_sym_BSLASHAclp] = ACTIONS(6313), - [anon_sym_BSLASHacf] = ACTIONS(6313), - [anon_sym_BSLASHAcf] = ACTIONS(6313), - [anon_sym_BSLASHacfp] = ACTIONS(6313), - [anon_sym_BSLASHAcfp] = ACTIONS(6313), - [anon_sym_BSLASHac] = ACTIONS(6313), - [anon_sym_BSLASHAc] = ACTIONS(6313), - [anon_sym_BSLASHacp] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6313), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6313), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6313), - [anon_sym_BSLASHcolor] = ACTIONS(6313), - [anon_sym_BSLASHcolorbox] = ACTIONS(6313), - [anon_sym_BSLASHtextcolor] = ACTIONS(6313), - [anon_sym_BSLASHpagecolor] = ACTIONS(6313), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6313), - [anon_sym_BSLASHtext] = ACTIONS(6313), - [anon_sym_BSLASHintertext] = ACTIONS(6313), - [anon_sym_shortintertext] = ACTIONS(6313), - }, - [1158] = { - [sym_command_name] = ACTIONS(6317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(6319), - [anon_sym_RBRACK] = ACTIONS(6319), - [anon_sym_COMMA] = ACTIONS(6319), - [anon_sym_EQ] = ACTIONS(6319), - [anon_sym_LPAREN] = ACTIONS(6319), - [anon_sym_RPAREN] = ACTIONS(6319), - [anon_sym_BSLASHpart] = ACTIONS(6317), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddpart] = ACTIONS(6317), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6319), - [anon_sym_BSLASHchapter] = ACTIONS(6317), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddchap] = ACTIONS(6317), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsection] = ACTIONS(6317), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddsec] = ACTIONS(6317), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubsection] = ACTIONS(6317), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6317), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHparagraph] = ACTIONS(6317), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6317), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6319), - [anon_sym_BSLASHitem] = ACTIONS(6317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6319), - [anon_sym_LBRACE] = ACTIONS(6319), - [sym_word] = ACTIONS(6317), - [sym_placeholder] = ACTIONS(6319), - [anon_sym_PLUS] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(6319), - [anon_sym_SLASH] = ACTIONS(6319), - [anon_sym_LT] = ACTIONS(6317), - [anon_sym_GT] = ACTIONS(6317), - [anon_sym_BANG] = ACTIONS(6317), - [anon_sym_PIPE] = ACTIONS(6317), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_SQUOTE] = ACTIONS(6317), - [anon_sym__] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6319), - [anon_sym_DOLLAR] = ACTIONS(6317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6319), - [anon_sym_BSLASHbegin] = ACTIONS(6317), - [anon_sym_BSLASHend] = ACTIONS(6317), - [anon_sym_BSLASHtitle] = ACTIONS(6317), - [anon_sym_BSLASHauthor] = ACTIONS(6317), - [anon_sym_BSLASHusepackage] = ACTIONS(6317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6317), - [anon_sym_BSLASHinclude] = ACTIONS(6317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6317), - [anon_sym_BSLASHinput] = ACTIONS(6317), - [anon_sym_BSLASHsubfile] = ACTIONS(6317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6317), - [anon_sym_BSLASHbibliography] = ACTIONS(6317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6317), - [anon_sym_BSLASHincludesvg] = ACTIONS(6317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6317), - [anon_sym_BSLASHimport] = ACTIONS(6317), - [anon_sym_BSLASHsubimport] = ACTIONS(6317), - [anon_sym_BSLASHinputfrom] = ACTIONS(6317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6317), - [anon_sym_BSLASHincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHcaption] = ACTIONS(6317), - [anon_sym_BSLASHcite] = ACTIONS(6317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCite] = ACTIONS(6317), - [anon_sym_BSLASHnocite] = ACTIONS(6317), - [anon_sym_BSLASHcitet] = ACTIONS(6317), - [anon_sym_BSLASHcitep] = ACTIONS(6317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteauthor] = ACTIONS(6317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitetitle] = ACTIONS(6317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteyear] = ACTIONS(6317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitedate] = ACTIONS(6317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteurl] = ACTIONS(6317), - [anon_sym_BSLASHfullcite] = ACTIONS(6317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6317), - [anon_sym_BSLASHcitealt] = ACTIONS(6317), - [anon_sym_BSLASHcitealp] = ACTIONS(6317), - [anon_sym_BSLASHcitetext] = ACTIONS(6317), - [anon_sym_BSLASHparencite] = ACTIONS(6317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHParencite] = ACTIONS(6317), - [anon_sym_BSLASHfootcite] = ACTIONS(6317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6317), - [anon_sym_BSLASHtextcite] = ACTIONS(6317), - [anon_sym_BSLASHTextcite] = ACTIONS(6317), - [anon_sym_BSLASHsmartcite] = ACTIONS(6317), - [anon_sym_BSLASHSmartcite] = ACTIONS(6317), - [anon_sym_BSLASHsupercite] = ACTIONS(6317), - [anon_sym_BSLASHautocite] = ACTIONS(6317), - [anon_sym_BSLASHAutocite] = ACTIONS(6317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHvolcite] = ACTIONS(6317), - [anon_sym_BSLASHVolcite] = ACTIONS(6317), - [anon_sym_BSLASHpvolcite] = ACTIONS(6317), - [anon_sym_BSLASHPvolcite] = ACTIONS(6317), - [anon_sym_BSLASHfvolcite] = ACTIONS(6317), - [anon_sym_BSLASHftvolcite] = ACTIONS(6317), - [anon_sym_BSLASHsvolcite] = ACTIONS(6317), - [anon_sym_BSLASHSvolcite] = ACTIONS(6317), - [anon_sym_BSLASHtvolcite] = ACTIONS(6317), - [anon_sym_BSLASHTvolcite] = ACTIONS(6317), - [anon_sym_BSLASHavolcite] = ACTIONS(6317), - [anon_sym_BSLASHAvolcite] = ACTIONS(6317), - [anon_sym_BSLASHnotecite] = ACTIONS(6317), - [anon_sym_BSLASHNotecite] = ACTIONS(6317), - [anon_sym_BSLASHpnotecite] = ACTIONS(6317), - [anon_sym_BSLASHPnotecite] = ACTIONS(6317), - [anon_sym_BSLASHfnotecite] = ACTIONS(6317), - [anon_sym_BSLASHlabel] = ACTIONS(6317), - [anon_sym_BSLASHref] = ACTIONS(6317), - [anon_sym_BSLASHeqref] = ACTIONS(6317), - [anon_sym_BSLASHvref] = ACTIONS(6317), - [anon_sym_BSLASHVref] = ACTIONS(6317), - [anon_sym_BSLASHautoref] = ACTIONS(6317), - [anon_sym_BSLASHpageref] = ACTIONS(6317), - [anon_sym_BSLASHcref] = ACTIONS(6317), - [anon_sym_BSLASHCref] = ACTIONS(6317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnameCref] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHlabelcref] = ACTIONS(6317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCrefrange] = ACTIONS(6317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnewlabel] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6319), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHdef] = ACTIONS(6317), - [anon_sym_BSLASHlet] = ACTIONS(6317), - [anon_sym_BSLASHleft] = ACTIONS(6317), - [anon_sym_BSLASHbig] = ACTIONS(6317), - [anon_sym_BSLASHBig] = ACTIONS(6317), - [anon_sym_BSLASHbigg] = ACTIONS(6317), - [anon_sym_BSLASHBigg] = ACTIONS(6317), - [anon_sym_BSLASHbigl] = ACTIONS(6317), - [anon_sym_BSLASHBigl] = ACTIONS(6317), - [anon_sym_BSLASHbiggl] = ACTIONS(6317), - [anon_sym_BSLASHBiggl] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6317), - [anon_sym_BSLASHgls] = ACTIONS(6317), - [anon_sym_BSLASHGls] = ACTIONS(6317), - [anon_sym_BSLASHGLS] = ACTIONS(6317), - [anon_sym_BSLASHglspl] = ACTIONS(6317), - [anon_sym_BSLASHGlspl] = ACTIONS(6317), - [anon_sym_BSLASHGLSpl] = ACTIONS(6317), - [anon_sym_BSLASHglsdisp] = ACTIONS(6317), - [anon_sym_BSLASHglslink] = ACTIONS(6317), - [anon_sym_BSLASHglstext] = ACTIONS(6317), - [anon_sym_BSLASHGlstext] = ACTIONS(6317), - [anon_sym_BSLASHGLStext] = ACTIONS(6317), - [anon_sym_BSLASHglsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6317), - [anon_sym_BSLASHglsplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSplural] = ACTIONS(6317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHglsname] = ACTIONS(6317), - [anon_sym_BSLASHGlsname] = ACTIONS(6317), - [anon_sym_BSLASHGLSname] = ACTIONS(6317), - [anon_sym_BSLASHglssymbol] = ACTIONS(6317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6317), - [anon_sym_BSLASHglsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6317), - [anon_sym_BSLASHglsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6317), - [anon_sym_BSLASHglsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6317), - [anon_sym_BSLASHglsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6317), - [anon_sym_BSLASHglsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6317), - [anon_sym_BSLASHnewacronym] = ACTIONS(6317), - [anon_sym_BSLASHacrshort] = ACTIONS(6317), - [anon_sym_BSLASHAcrshort] = ACTIONS(6317), - [anon_sym_BSLASHACRshort] = ACTIONS(6317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6317), - [anon_sym_BSLASHacrlong] = ACTIONS(6317), - [anon_sym_BSLASHAcrlong] = ACTIONS(6317), - [anon_sym_BSLASHACRlong] = ACTIONS(6317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6317), - [anon_sym_BSLASHacrfull] = ACTIONS(6317), - [anon_sym_BSLASHAcrfull] = ACTIONS(6317), - [anon_sym_BSLASHACRfull] = ACTIONS(6317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6317), - [anon_sym_BSLASHacs] = ACTIONS(6317), - [anon_sym_BSLASHAcs] = ACTIONS(6317), - [anon_sym_BSLASHacsp] = ACTIONS(6317), - [anon_sym_BSLASHAcsp] = ACTIONS(6317), - [anon_sym_BSLASHacl] = ACTIONS(6317), - [anon_sym_BSLASHAcl] = ACTIONS(6317), - [anon_sym_BSLASHaclp] = ACTIONS(6317), - [anon_sym_BSLASHAclp] = ACTIONS(6317), - [anon_sym_BSLASHacf] = ACTIONS(6317), - [anon_sym_BSLASHAcf] = ACTIONS(6317), - [anon_sym_BSLASHacfp] = ACTIONS(6317), - [anon_sym_BSLASHAcfp] = ACTIONS(6317), - [anon_sym_BSLASHac] = ACTIONS(6317), - [anon_sym_BSLASHAc] = ACTIONS(6317), - [anon_sym_BSLASHacp] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6317), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6317), - [anon_sym_BSLASHcolor] = ACTIONS(6317), - [anon_sym_BSLASHcolorbox] = ACTIONS(6317), - [anon_sym_BSLASHtextcolor] = ACTIONS(6317), - [anon_sym_BSLASHpagecolor] = ACTIONS(6317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6317), - [anon_sym_BSLASHtext] = ACTIONS(6317), - [anon_sym_BSLASHintertext] = ACTIONS(6317), - [anon_sym_shortintertext] = ACTIONS(6317), - }, - [1159] = { - [sym_command_name] = ACTIONS(6325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6325), - [anon_sym_LBRACK] = ACTIONS(6327), - [anon_sym_RBRACK] = ACTIONS(6327), - [anon_sym_COMMA] = ACTIONS(6327), - [anon_sym_EQ] = ACTIONS(6327), - [anon_sym_LPAREN] = ACTIONS(6327), - [anon_sym_RPAREN] = ACTIONS(6327), - [anon_sym_BSLASHpart] = ACTIONS(6325), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddpart] = ACTIONS(6325), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6327), - [anon_sym_BSLASHchapter] = ACTIONS(6325), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddchap] = ACTIONS(6325), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsection] = ACTIONS(6325), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddsec] = ACTIONS(6325), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubsection] = ACTIONS(6325), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6325), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHparagraph] = ACTIONS(6325), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6325), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6327), - [anon_sym_BSLASHitem] = ACTIONS(6325), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6327), - [anon_sym_LBRACE] = ACTIONS(6327), - [sym_word] = ACTIONS(6325), - [sym_placeholder] = ACTIONS(6327), - [anon_sym_PLUS] = ACTIONS(6327), - [anon_sym_DASH] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6327), - [anon_sym_SLASH] = ACTIONS(6327), - [anon_sym_LT] = ACTIONS(6325), - [anon_sym_GT] = ACTIONS(6325), - [anon_sym_BANG] = ACTIONS(6325), - [anon_sym_PIPE] = ACTIONS(6325), - [anon_sym_COLON] = ACTIONS(6325), - [anon_sym_SQUOTE] = ACTIONS(6325), - [anon_sym__] = ACTIONS(6327), - [anon_sym_CARET] = ACTIONS(6327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6327), - [anon_sym_DOLLAR] = ACTIONS(6325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6327), - [anon_sym_BSLASHbegin] = ACTIONS(6325), - [anon_sym_BSLASHend] = ACTIONS(6325), - [anon_sym_BSLASHtitle] = ACTIONS(6325), - [anon_sym_BSLASHauthor] = ACTIONS(6325), - [anon_sym_BSLASHusepackage] = ACTIONS(6325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6325), - [anon_sym_BSLASHinclude] = ACTIONS(6325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6325), - [anon_sym_BSLASHinput] = ACTIONS(6325), - [anon_sym_BSLASHsubfile] = ACTIONS(6325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6325), - [anon_sym_BSLASHbibliography] = ACTIONS(6325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6325), - [anon_sym_BSLASHincludesvg] = ACTIONS(6325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6325), - [anon_sym_BSLASHimport] = ACTIONS(6325), - [anon_sym_BSLASHsubimport] = ACTIONS(6325), - [anon_sym_BSLASHinputfrom] = ACTIONS(6325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6325), - [anon_sym_BSLASHincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHcaption] = ACTIONS(6325), - [anon_sym_BSLASHcite] = ACTIONS(6325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCite] = ACTIONS(6325), - [anon_sym_BSLASHnocite] = ACTIONS(6325), - [anon_sym_BSLASHcitet] = ACTIONS(6325), - [anon_sym_BSLASHcitep] = ACTIONS(6325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteauthor] = ACTIONS(6325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitetitle] = ACTIONS(6325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteyear] = ACTIONS(6325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitedate] = ACTIONS(6325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteurl] = ACTIONS(6325), - [anon_sym_BSLASHfullcite] = ACTIONS(6325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6325), - [anon_sym_BSLASHcitealt] = ACTIONS(6325), - [anon_sym_BSLASHcitealp] = ACTIONS(6325), - [anon_sym_BSLASHcitetext] = ACTIONS(6325), - [anon_sym_BSLASHparencite] = ACTIONS(6325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHParencite] = ACTIONS(6325), - [anon_sym_BSLASHfootcite] = ACTIONS(6325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6325), - [anon_sym_BSLASHtextcite] = ACTIONS(6325), - [anon_sym_BSLASHTextcite] = ACTIONS(6325), - [anon_sym_BSLASHsmartcite] = ACTIONS(6325), - [anon_sym_BSLASHSmartcite] = ACTIONS(6325), - [anon_sym_BSLASHsupercite] = ACTIONS(6325), - [anon_sym_BSLASHautocite] = ACTIONS(6325), - [anon_sym_BSLASHAutocite] = ACTIONS(6325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHvolcite] = ACTIONS(6325), - [anon_sym_BSLASHVolcite] = ACTIONS(6325), - [anon_sym_BSLASHpvolcite] = ACTIONS(6325), - [anon_sym_BSLASHPvolcite] = ACTIONS(6325), - [anon_sym_BSLASHfvolcite] = ACTIONS(6325), - [anon_sym_BSLASHftvolcite] = ACTIONS(6325), - [anon_sym_BSLASHsvolcite] = ACTIONS(6325), - [anon_sym_BSLASHSvolcite] = ACTIONS(6325), - [anon_sym_BSLASHtvolcite] = ACTIONS(6325), - [anon_sym_BSLASHTvolcite] = ACTIONS(6325), - [anon_sym_BSLASHavolcite] = ACTIONS(6325), - [anon_sym_BSLASHAvolcite] = ACTIONS(6325), - [anon_sym_BSLASHnotecite] = ACTIONS(6325), - [anon_sym_BSLASHNotecite] = ACTIONS(6325), - [anon_sym_BSLASHpnotecite] = ACTIONS(6325), - [anon_sym_BSLASHPnotecite] = ACTIONS(6325), - [anon_sym_BSLASHfnotecite] = ACTIONS(6325), - [anon_sym_BSLASHlabel] = ACTIONS(6325), - [anon_sym_BSLASHref] = ACTIONS(6325), - [anon_sym_BSLASHeqref] = ACTIONS(6325), - [anon_sym_BSLASHvref] = ACTIONS(6325), - [anon_sym_BSLASHVref] = ACTIONS(6325), - [anon_sym_BSLASHautoref] = ACTIONS(6325), - [anon_sym_BSLASHpageref] = ACTIONS(6325), - [anon_sym_BSLASHcref] = ACTIONS(6325), - [anon_sym_BSLASHCref] = ACTIONS(6325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnameCref] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHlabelcref] = ACTIONS(6325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCrefrange] = ACTIONS(6325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnewlabel] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6327), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHdef] = ACTIONS(6325), - [anon_sym_BSLASHlet] = ACTIONS(6325), - [anon_sym_BSLASHleft] = ACTIONS(6325), - [anon_sym_BSLASHbig] = ACTIONS(6325), - [anon_sym_BSLASHBig] = ACTIONS(6325), - [anon_sym_BSLASHbigg] = ACTIONS(6325), - [anon_sym_BSLASHBigg] = ACTIONS(6325), - [anon_sym_BSLASHbigl] = ACTIONS(6325), - [anon_sym_BSLASHBigl] = ACTIONS(6325), - [anon_sym_BSLASHbiggl] = ACTIONS(6325), - [anon_sym_BSLASHBiggl] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6325), - [anon_sym_BSLASHgls] = ACTIONS(6325), - [anon_sym_BSLASHGls] = ACTIONS(6325), - [anon_sym_BSLASHGLS] = ACTIONS(6325), - [anon_sym_BSLASHglspl] = ACTIONS(6325), - [anon_sym_BSLASHGlspl] = ACTIONS(6325), - [anon_sym_BSLASHGLSpl] = ACTIONS(6325), - [anon_sym_BSLASHglsdisp] = ACTIONS(6325), - [anon_sym_BSLASHglslink] = ACTIONS(6325), - [anon_sym_BSLASHglstext] = ACTIONS(6325), - [anon_sym_BSLASHGlstext] = ACTIONS(6325), - [anon_sym_BSLASHGLStext] = ACTIONS(6325), - [anon_sym_BSLASHglsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6325), - [anon_sym_BSLASHglsplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSplural] = ACTIONS(6325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHglsname] = ACTIONS(6325), - [anon_sym_BSLASHGlsname] = ACTIONS(6325), - [anon_sym_BSLASHGLSname] = ACTIONS(6325), - [anon_sym_BSLASHglssymbol] = ACTIONS(6325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6325), - [anon_sym_BSLASHglsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6325), - [anon_sym_BSLASHglsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6325), - [anon_sym_BSLASHglsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6325), - [anon_sym_BSLASHglsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6325), - [anon_sym_BSLASHglsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6325), - [anon_sym_BSLASHnewacronym] = ACTIONS(6325), - [anon_sym_BSLASHacrshort] = ACTIONS(6325), - [anon_sym_BSLASHAcrshort] = ACTIONS(6325), - [anon_sym_BSLASHACRshort] = ACTIONS(6325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6325), - [anon_sym_BSLASHacrlong] = ACTIONS(6325), - [anon_sym_BSLASHAcrlong] = ACTIONS(6325), - [anon_sym_BSLASHACRlong] = ACTIONS(6325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6325), - [anon_sym_BSLASHacrfull] = ACTIONS(6325), - [anon_sym_BSLASHAcrfull] = ACTIONS(6325), - [anon_sym_BSLASHACRfull] = ACTIONS(6325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6325), - [anon_sym_BSLASHacs] = ACTIONS(6325), - [anon_sym_BSLASHAcs] = ACTIONS(6325), - [anon_sym_BSLASHacsp] = ACTIONS(6325), - [anon_sym_BSLASHAcsp] = ACTIONS(6325), - [anon_sym_BSLASHacl] = ACTIONS(6325), - [anon_sym_BSLASHAcl] = ACTIONS(6325), - [anon_sym_BSLASHaclp] = ACTIONS(6325), - [anon_sym_BSLASHAclp] = ACTIONS(6325), - [anon_sym_BSLASHacf] = ACTIONS(6325), - [anon_sym_BSLASHAcf] = ACTIONS(6325), - [anon_sym_BSLASHacfp] = ACTIONS(6325), - [anon_sym_BSLASHAcfp] = ACTIONS(6325), - [anon_sym_BSLASHac] = ACTIONS(6325), - [anon_sym_BSLASHAc] = ACTIONS(6325), - [anon_sym_BSLASHacp] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6325), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6325), - [anon_sym_BSLASHcolor] = ACTIONS(6325), - [anon_sym_BSLASHcolorbox] = ACTIONS(6325), - [anon_sym_BSLASHtextcolor] = ACTIONS(6325), - [anon_sym_BSLASHpagecolor] = ACTIONS(6325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6325), - [anon_sym_BSLASHtext] = ACTIONS(6325), - [anon_sym_BSLASHintertext] = ACTIONS(6325), - [anon_sym_shortintertext] = ACTIONS(6325), - }, - [1160] = { - [sym_command_name] = ACTIONS(6473), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6473), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_RBRACK] = ACTIONS(6475), - [anon_sym_COMMA] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6475), - [anon_sym_LPAREN] = ACTIONS(6475), - [anon_sym_RPAREN] = ACTIONS(6475), - [anon_sym_BSLASHpart] = ACTIONS(6473), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddpart] = ACTIONS(6473), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6475), - [anon_sym_BSLASHchapter] = ACTIONS(6473), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddchap] = ACTIONS(6473), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsection] = ACTIONS(6473), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddsec] = ACTIONS(6473), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubsection] = ACTIONS(6473), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6473), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHparagraph] = ACTIONS(6473), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6473), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6475), - [anon_sym_BSLASHitem] = ACTIONS(6473), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6475), - [anon_sym_LBRACE] = ACTIONS(6475), - [sym_word] = ACTIONS(6473), - [sym_placeholder] = ACTIONS(6475), - [anon_sym_PLUS] = ACTIONS(6475), - [anon_sym_DASH] = ACTIONS(6475), - [anon_sym_STAR] = ACTIONS(6475), - [anon_sym_SLASH] = ACTIONS(6475), - [anon_sym_LT] = ACTIONS(6473), - [anon_sym_GT] = ACTIONS(6473), - [anon_sym_BANG] = ACTIONS(6473), - [anon_sym_PIPE] = ACTIONS(6473), - [anon_sym_COLON] = ACTIONS(6473), - [anon_sym_SQUOTE] = ACTIONS(6473), - [anon_sym__] = ACTIONS(6475), - [anon_sym_CARET] = ACTIONS(6475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6475), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6475), - [anon_sym_DOLLAR] = ACTIONS(6473), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6475), - [anon_sym_BSLASHbegin] = ACTIONS(6473), - [anon_sym_BSLASHend] = ACTIONS(6473), - [anon_sym_BSLASHtitle] = ACTIONS(6473), - [anon_sym_BSLASHauthor] = ACTIONS(6473), - [anon_sym_BSLASHusepackage] = ACTIONS(6473), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6473), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6473), - [anon_sym_BSLASHinclude] = ACTIONS(6473), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6473), - [anon_sym_BSLASHinput] = ACTIONS(6473), - [anon_sym_BSLASHsubfile] = ACTIONS(6473), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6473), - [anon_sym_BSLASHbibliography] = ACTIONS(6473), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6473), - [anon_sym_BSLASHincludesvg] = ACTIONS(6473), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6473), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6473), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6473), - [anon_sym_BSLASHimport] = ACTIONS(6473), - [anon_sym_BSLASHsubimport] = ACTIONS(6473), - [anon_sym_BSLASHinputfrom] = ACTIONS(6473), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6473), - [anon_sym_BSLASHincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHcaption] = ACTIONS(6473), - [anon_sym_BSLASHcite] = ACTIONS(6473), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCite] = ACTIONS(6473), - [anon_sym_BSLASHnocite] = ACTIONS(6473), - [anon_sym_BSLASHcitet] = ACTIONS(6473), - [anon_sym_BSLASHcitep] = ACTIONS(6473), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteauthor] = ACTIONS(6473), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6473), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitetitle] = ACTIONS(6473), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteyear] = ACTIONS(6473), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitedate] = ACTIONS(6473), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteurl] = ACTIONS(6473), - [anon_sym_BSLASHfullcite] = ACTIONS(6473), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6473), - [anon_sym_BSLASHcitealt] = ACTIONS(6473), - [anon_sym_BSLASHcitealp] = ACTIONS(6473), - [anon_sym_BSLASHcitetext] = ACTIONS(6473), - [anon_sym_BSLASHparencite] = ACTIONS(6473), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHParencite] = ACTIONS(6473), - [anon_sym_BSLASHfootcite] = ACTIONS(6473), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6473), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6473), - [anon_sym_BSLASHtextcite] = ACTIONS(6473), - [anon_sym_BSLASHTextcite] = ACTIONS(6473), - [anon_sym_BSLASHsmartcite] = ACTIONS(6473), - [anon_sym_BSLASHSmartcite] = ACTIONS(6473), - [anon_sym_BSLASHsupercite] = ACTIONS(6473), - [anon_sym_BSLASHautocite] = ACTIONS(6473), - [anon_sym_BSLASHAutocite] = ACTIONS(6473), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHvolcite] = ACTIONS(6473), - [anon_sym_BSLASHVolcite] = ACTIONS(6473), - [anon_sym_BSLASHpvolcite] = ACTIONS(6473), - [anon_sym_BSLASHPvolcite] = ACTIONS(6473), - [anon_sym_BSLASHfvolcite] = ACTIONS(6473), - [anon_sym_BSLASHftvolcite] = ACTIONS(6473), - [anon_sym_BSLASHsvolcite] = ACTIONS(6473), - [anon_sym_BSLASHSvolcite] = ACTIONS(6473), - [anon_sym_BSLASHtvolcite] = ACTIONS(6473), - [anon_sym_BSLASHTvolcite] = ACTIONS(6473), - [anon_sym_BSLASHavolcite] = ACTIONS(6473), - [anon_sym_BSLASHAvolcite] = ACTIONS(6473), - [anon_sym_BSLASHnotecite] = ACTIONS(6473), - [anon_sym_BSLASHNotecite] = ACTIONS(6473), - [anon_sym_BSLASHpnotecite] = ACTIONS(6473), - [anon_sym_BSLASHPnotecite] = ACTIONS(6473), - [anon_sym_BSLASHfnotecite] = ACTIONS(6473), - [anon_sym_BSLASHlabel] = ACTIONS(6473), - [anon_sym_BSLASHref] = ACTIONS(6473), - [anon_sym_BSLASHeqref] = ACTIONS(6473), - [anon_sym_BSLASHvref] = ACTIONS(6473), - [anon_sym_BSLASHVref] = ACTIONS(6473), - [anon_sym_BSLASHautoref] = ACTIONS(6473), - [anon_sym_BSLASHpageref] = ACTIONS(6473), - [anon_sym_BSLASHcref] = ACTIONS(6473), - [anon_sym_BSLASHCref] = ACTIONS(6473), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnameCref] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHlabelcref] = ACTIONS(6473), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCrefrange] = ACTIONS(6473), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnewlabel] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6473), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6473), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6475), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHdef] = ACTIONS(6473), - [anon_sym_BSLASHlet] = ACTIONS(6473), - [anon_sym_BSLASHleft] = ACTIONS(6473), - [anon_sym_BSLASHbig] = ACTIONS(6473), - [anon_sym_BSLASHBig] = ACTIONS(6473), - [anon_sym_BSLASHbigg] = ACTIONS(6473), - [anon_sym_BSLASHBigg] = ACTIONS(6473), - [anon_sym_BSLASHbigl] = ACTIONS(6473), - [anon_sym_BSLASHBigl] = ACTIONS(6473), - [anon_sym_BSLASHbiggl] = ACTIONS(6473), - [anon_sym_BSLASHBiggl] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6473), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6473), - [anon_sym_BSLASHgls] = ACTIONS(6473), - [anon_sym_BSLASHGls] = ACTIONS(6473), - [anon_sym_BSLASHGLS] = ACTIONS(6473), - [anon_sym_BSLASHglspl] = ACTIONS(6473), - [anon_sym_BSLASHGlspl] = ACTIONS(6473), - [anon_sym_BSLASHGLSpl] = ACTIONS(6473), - [anon_sym_BSLASHglsdisp] = ACTIONS(6473), - [anon_sym_BSLASHglslink] = ACTIONS(6473), - [anon_sym_BSLASHglstext] = ACTIONS(6473), - [anon_sym_BSLASHGlstext] = ACTIONS(6473), - [anon_sym_BSLASHGLStext] = ACTIONS(6473), - [anon_sym_BSLASHglsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6473), - [anon_sym_BSLASHglsplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSplural] = ACTIONS(6473), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHglsname] = ACTIONS(6473), - [anon_sym_BSLASHGlsname] = ACTIONS(6473), - [anon_sym_BSLASHGLSname] = ACTIONS(6473), - [anon_sym_BSLASHglssymbol] = ACTIONS(6473), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6473), - [anon_sym_BSLASHglsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6473), - [anon_sym_BSLASHglsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6473), - [anon_sym_BSLASHglsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6473), - [anon_sym_BSLASHglsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6473), - [anon_sym_BSLASHglsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6473), - [anon_sym_BSLASHnewacronym] = ACTIONS(6473), - [anon_sym_BSLASHacrshort] = ACTIONS(6473), - [anon_sym_BSLASHAcrshort] = ACTIONS(6473), - [anon_sym_BSLASHACRshort] = ACTIONS(6473), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6473), - [anon_sym_BSLASHacrlong] = ACTIONS(6473), - [anon_sym_BSLASHAcrlong] = ACTIONS(6473), - [anon_sym_BSLASHACRlong] = ACTIONS(6473), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6473), - [anon_sym_BSLASHacrfull] = ACTIONS(6473), - [anon_sym_BSLASHAcrfull] = ACTIONS(6473), - [anon_sym_BSLASHACRfull] = ACTIONS(6473), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6473), - [anon_sym_BSLASHacs] = ACTIONS(6473), - [anon_sym_BSLASHAcs] = ACTIONS(6473), - [anon_sym_BSLASHacsp] = ACTIONS(6473), - [anon_sym_BSLASHAcsp] = ACTIONS(6473), - [anon_sym_BSLASHacl] = ACTIONS(6473), - [anon_sym_BSLASHAcl] = ACTIONS(6473), - [anon_sym_BSLASHaclp] = ACTIONS(6473), - [anon_sym_BSLASHAclp] = ACTIONS(6473), - [anon_sym_BSLASHacf] = ACTIONS(6473), - [anon_sym_BSLASHAcf] = ACTIONS(6473), - [anon_sym_BSLASHacfp] = ACTIONS(6473), - [anon_sym_BSLASHAcfp] = ACTIONS(6473), - [anon_sym_BSLASHac] = ACTIONS(6473), - [anon_sym_BSLASHAc] = ACTIONS(6473), - [anon_sym_BSLASHacp] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6473), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6473), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6473), - [anon_sym_BSLASHcolor] = ACTIONS(6473), - [anon_sym_BSLASHcolorbox] = ACTIONS(6473), - [anon_sym_BSLASHtextcolor] = ACTIONS(6473), - [anon_sym_BSLASHpagecolor] = ACTIONS(6473), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6473), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6473), - [anon_sym_BSLASHtext] = ACTIONS(6473), - [anon_sym_BSLASHintertext] = ACTIONS(6473), - [anon_sym_shortintertext] = ACTIONS(6473), - }, - [1161] = { - [sym_command_name] = ACTIONS(6477), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6477), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_RBRACK] = ACTIONS(6479), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_LPAREN] = ACTIONS(6479), - [anon_sym_RPAREN] = ACTIONS(6479), - [anon_sym_BSLASHpart] = ACTIONS(6477), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddpart] = ACTIONS(6477), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6479), - [anon_sym_BSLASHchapter] = ACTIONS(6477), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddchap] = ACTIONS(6477), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsection] = ACTIONS(6477), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddsec] = ACTIONS(6477), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubsection] = ACTIONS(6477), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6477), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHparagraph] = ACTIONS(6477), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6477), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6479), - [anon_sym_BSLASHitem] = ACTIONS(6477), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6479), - [anon_sym_LBRACE] = ACTIONS(6479), - [sym_word] = ACTIONS(6477), - [sym_placeholder] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6477), - [anon_sym_GT] = ACTIONS(6477), - [anon_sym_BANG] = ACTIONS(6477), - [anon_sym_PIPE] = ACTIONS(6477), - [anon_sym_COLON] = ACTIONS(6477), - [anon_sym_SQUOTE] = ACTIONS(6477), - [anon_sym__] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6479), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6479), - [anon_sym_DOLLAR] = ACTIONS(6477), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6479), - [anon_sym_BSLASHbegin] = ACTIONS(6477), - [anon_sym_BSLASHend] = ACTIONS(6477), - [anon_sym_BSLASHtitle] = ACTIONS(6477), - [anon_sym_BSLASHauthor] = ACTIONS(6477), - [anon_sym_BSLASHusepackage] = ACTIONS(6477), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6477), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6477), - [anon_sym_BSLASHinclude] = ACTIONS(6477), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6477), - [anon_sym_BSLASHinput] = ACTIONS(6477), - [anon_sym_BSLASHsubfile] = ACTIONS(6477), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6477), - [anon_sym_BSLASHbibliography] = ACTIONS(6477), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6477), - [anon_sym_BSLASHincludesvg] = ACTIONS(6477), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6477), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6477), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6477), - [anon_sym_BSLASHimport] = ACTIONS(6477), - [anon_sym_BSLASHsubimport] = ACTIONS(6477), - [anon_sym_BSLASHinputfrom] = ACTIONS(6477), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6477), - [anon_sym_BSLASHincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHcaption] = ACTIONS(6477), - [anon_sym_BSLASHcite] = ACTIONS(6477), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCite] = ACTIONS(6477), - [anon_sym_BSLASHnocite] = ACTIONS(6477), - [anon_sym_BSLASHcitet] = ACTIONS(6477), - [anon_sym_BSLASHcitep] = ACTIONS(6477), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteauthor] = ACTIONS(6477), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6477), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitetitle] = ACTIONS(6477), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteyear] = ACTIONS(6477), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitedate] = ACTIONS(6477), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteurl] = ACTIONS(6477), - [anon_sym_BSLASHfullcite] = ACTIONS(6477), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6477), - [anon_sym_BSLASHcitealt] = ACTIONS(6477), - [anon_sym_BSLASHcitealp] = ACTIONS(6477), - [anon_sym_BSLASHcitetext] = ACTIONS(6477), - [anon_sym_BSLASHparencite] = ACTIONS(6477), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHParencite] = ACTIONS(6477), - [anon_sym_BSLASHfootcite] = ACTIONS(6477), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6477), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6477), - [anon_sym_BSLASHtextcite] = ACTIONS(6477), - [anon_sym_BSLASHTextcite] = ACTIONS(6477), - [anon_sym_BSLASHsmartcite] = ACTIONS(6477), - [anon_sym_BSLASHSmartcite] = ACTIONS(6477), - [anon_sym_BSLASHsupercite] = ACTIONS(6477), - [anon_sym_BSLASHautocite] = ACTIONS(6477), - [anon_sym_BSLASHAutocite] = ACTIONS(6477), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHvolcite] = ACTIONS(6477), - [anon_sym_BSLASHVolcite] = ACTIONS(6477), - [anon_sym_BSLASHpvolcite] = ACTIONS(6477), - [anon_sym_BSLASHPvolcite] = ACTIONS(6477), - [anon_sym_BSLASHfvolcite] = ACTIONS(6477), - [anon_sym_BSLASHftvolcite] = ACTIONS(6477), - [anon_sym_BSLASHsvolcite] = ACTIONS(6477), - [anon_sym_BSLASHSvolcite] = ACTIONS(6477), - [anon_sym_BSLASHtvolcite] = ACTIONS(6477), - [anon_sym_BSLASHTvolcite] = ACTIONS(6477), - [anon_sym_BSLASHavolcite] = ACTIONS(6477), - [anon_sym_BSLASHAvolcite] = ACTIONS(6477), - [anon_sym_BSLASHnotecite] = ACTIONS(6477), - [anon_sym_BSLASHNotecite] = ACTIONS(6477), - [anon_sym_BSLASHpnotecite] = ACTIONS(6477), - [anon_sym_BSLASHPnotecite] = ACTIONS(6477), - [anon_sym_BSLASHfnotecite] = ACTIONS(6477), - [anon_sym_BSLASHlabel] = ACTIONS(6477), - [anon_sym_BSLASHref] = ACTIONS(6477), - [anon_sym_BSLASHeqref] = ACTIONS(6477), - [anon_sym_BSLASHvref] = ACTIONS(6477), - [anon_sym_BSLASHVref] = ACTIONS(6477), - [anon_sym_BSLASHautoref] = ACTIONS(6477), - [anon_sym_BSLASHpageref] = ACTIONS(6477), - [anon_sym_BSLASHcref] = ACTIONS(6477), - [anon_sym_BSLASHCref] = ACTIONS(6477), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnameCref] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHlabelcref] = ACTIONS(6477), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCrefrange] = ACTIONS(6477), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnewlabel] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6477), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6477), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6479), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHdef] = ACTIONS(6477), - [anon_sym_BSLASHlet] = ACTIONS(6477), - [anon_sym_BSLASHleft] = ACTIONS(6477), - [anon_sym_BSLASHbig] = ACTIONS(6477), - [anon_sym_BSLASHBig] = ACTIONS(6477), - [anon_sym_BSLASHbigg] = ACTIONS(6477), - [anon_sym_BSLASHBigg] = ACTIONS(6477), - [anon_sym_BSLASHbigl] = ACTIONS(6477), - [anon_sym_BSLASHBigl] = ACTIONS(6477), - [anon_sym_BSLASHbiggl] = ACTIONS(6477), - [anon_sym_BSLASHBiggl] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6477), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6477), - [anon_sym_BSLASHgls] = ACTIONS(6477), - [anon_sym_BSLASHGls] = ACTIONS(6477), - [anon_sym_BSLASHGLS] = ACTIONS(6477), - [anon_sym_BSLASHglspl] = ACTIONS(6477), - [anon_sym_BSLASHGlspl] = ACTIONS(6477), - [anon_sym_BSLASHGLSpl] = ACTIONS(6477), - [anon_sym_BSLASHglsdisp] = ACTIONS(6477), - [anon_sym_BSLASHglslink] = ACTIONS(6477), - [anon_sym_BSLASHglstext] = ACTIONS(6477), - [anon_sym_BSLASHGlstext] = ACTIONS(6477), - [anon_sym_BSLASHGLStext] = ACTIONS(6477), - [anon_sym_BSLASHglsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6477), - [anon_sym_BSLASHglsplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSplural] = ACTIONS(6477), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHglsname] = ACTIONS(6477), - [anon_sym_BSLASHGlsname] = ACTIONS(6477), - [anon_sym_BSLASHGLSname] = ACTIONS(6477), - [anon_sym_BSLASHglssymbol] = ACTIONS(6477), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6477), - [anon_sym_BSLASHglsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6477), - [anon_sym_BSLASHglsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6477), - [anon_sym_BSLASHglsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6477), - [anon_sym_BSLASHglsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6477), - [anon_sym_BSLASHglsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6477), - [anon_sym_BSLASHnewacronym] = ACTIONS(6477), - [anon_sym_BSLASHacrshort] = ACTIONS(6477), - [anon_sym_BSLASHAcrshort] = ACTIONS(6477), - [anon_sym_BSLASHACRshort] = ACTIONS(6477), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6477), - [anon_sym_BSLASHacrlong] = ACTIONS(6477), - [anon_sym_BSLASHAcrlong] = ACTIONS(6477), - [anon_sym_BSLASHACRlong] = ACTIONS(6477), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6477), - [anon_sym_BSLASHacrfull] = ACTIONS(6477), - [anon_sym_BSLASHAcrfull] = ACTIONS(6477), - [anon_sym_BSLASHACRfull] = ACTIONS(6477), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6477), - [anon_sym_BSLASHacs] = ACTIONS(6477), - [anon_sym_BSLASHAcs] = ACTIONS(6477), - [anon_sym_BSLASHacsp] = ACTIONS(6477), - [anon_sym_BSLASHAcsp] = ACTIONS(6477), - [anon_sym_BSLASHacl] = ACTIONS(6477), - [anon_sym_BSLASHAcl] = ACTIONS(6477), - [anon_sym_BSLASHaclp] = ACTIONS(6477), - [anon_sym_BSLASHAclp] = ACTIONS(6477), - [anon_sym_BSLASHacf] = ACTIONS(6477), - [anon_sym_BSLASHAcf] = ACTIONS(6477), - [anon_sym_BSLASHacfp] = ACTIONS(6477), - [anon_sym_BSLASHAcfp] = ACTIONS(6477), - [anon_sym_BSLASHac] = ACTIONS(6477), - [anon_sym_BSLASHAc] = ACTIONS(6477), - [anon_sym_BSLASHacp] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6477), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6477), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6477), - [anon_sym_BSLASHcolor] = ACTIONS(6477), - [anon_sym_BSLASHcolorbox] = ACTIONS(6477), - [anon_sym_BSLASHtextcolor] = ACTIONS(6477), - [anon_sym_BSLASHpagecolor] = ACTIONS(6477), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6477), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6477), - [anon_sym_BSLASHtext] = ACTIONS(6477), - [anon_sym_BSLASHintertext] = ACTIONS(6477), - [anon_sym_shortintertext] = ACTIONS(6477), - }, - [1162] = { - [sym_command_name] = ACTIONS(6481), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(6483), - [anon_sym_COMMA] = ACTIONS(6483), - [anon_sym_EQ] = ACTIONS(6483), - [anon_sym_LPAREN] = ACTIONS(6483), - [anon_sym_RPAREN] = ACTIONS(6483), - [anon_sym_BSLASHpart] = ACTIONS(6481), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddpart] = ACTIONS(6481), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6483), - [anon_sym_BSLASHchapter] = ACTIONS(6481), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddchap] = ACTIONS(6481), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsection] = ACTIONS(6481), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddsec] = ACTIONS(6481), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubsection] = ACTIONS(6481), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6481), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHparagraph] = ACTIONS(6481), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6481), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6483), - [anon_sym_BSLASHitem] = ACTIONS(6481), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6483), - [anon_sym_LBRACE] = ACTIONS(6483), - [sym_word] = ACTIONS(6481), - [sym_placeholder] = ACTIONS(6483), - [anon_sym_PLUS] = ACTIONS(6483), - [anon_sym_DASH] = ACTIONS(6483), - [anon_sym_STAR] = ACTIONS(6483), - [anon_sym_SLASH] = ACTIONS(6483), - [anon_sym_LT] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6481), - [anon_sym_BANG] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6481), - [anon_sym_COLON] = ACTIONS(6481), - [anon_sym_SQUOTE] = ACTIONS(6481), - [anon_sym__] = ACTIONS(6483), - [anon_sym_CARET] = ACTIONS(6483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6483), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6483), - [anon_sym_DOLLAR] = ACTIONS(6481), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6483), - [anon_sym_BSLASHbegin] = ACTIONS(6481), - [anon_sym_BSLASHend] = ACTIONS(6481), - [anon_sym_BSLASHtitle] = ACTIONS(6481), - [anon_sym_BSLASHauthor] = ACTIONS(6481), - [anon_sym_BSLASHusepackage] = ACTIONS(6481), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6481), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6481), - [anon_sym_BSLASHinclude] = ACTIONS(6481), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6481), - [anon_sym_BSLASHinput] = ACTIONS(6481), - [anon_sym_BSLASHsubfile] = ACTIONS(6481), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6481), - [anon_sym_BSLASHbibliography] = ACTIONS(6481), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6481), - [anon_sym_BSLASHincludesvg] = ACTIONS(6481), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6481), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6481), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6481), - [anon_sym_BSLASHimport] = ACTIONS(6481), - [anon_sym_BSLASHsubimport] = ACTIONS(6481), - [anon_sym_BSLASHinputfrom] = ACTIONS(6481), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6481), - [anon_sym_BSLASHincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHcaption] = ACTIONS(6481), - [anon_sym_BSLASHcite] = ACTIONS(6481), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCite] = ACTIONS(6481), - [anon_sym_BSLASHnocite] = ACTIONS(6481), - [anon_sym_BSLASHcitet] = ACTIONS(6481), - [anon_sym_BSLASHcitep] = ACTIONS(6481), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteauthor] = ACTIONS(6481), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6481), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitetitle] = ACTIONS(6481), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteyear] = ACTIONS(6481), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitedate] = ACTIONS(6481), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteurl] = ACTIONS(6481), - [anon_sym_BSLASHfullcite] = ACTIONS(6481), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6481), - [anon_sym_BSLASHcitealt] = ACTIONS(6481), - [anon_sym_BSLASHcitealp] = ACTIONS(6481), - [anon_sym_BSLASHcitetext] = ACTIONS(6481), - [anon_sym_BSLASHparencite] = ACTIONS(6481), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHParencite] = ACTIONS(6481), - [anon_sym_BSLASHfootcite] = ACTIONS(6481), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6481), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6481), - [anon_sym_BSLASHtextcite] = ACTIONS(6481), - [anon_sym_BSLASHTextcite] = ACTIONS(6481), - [anon_sym_BSLASHsmartcite] = ACTIONS(6481), - [anon_sym_BSLASHSmartcite] = ACTIONS(6481), - [anon_sym_BSLASHsupercite] = ACTIONS(6481), - [anon_sym_BSLASHautocite] = ACTIONS(6481), - [anon_sym_BSLASHAutocite] = ACTIONS(6481), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHvolcite] = ACTIONS(6481), - [anon_sym_BSLASHVolcite] = ACTIONS(6481), - [anon_sym_BSLASHpvolcite] = ACTIONS(6481), - [anon_sym_BSLASHPvolcite] = ACTIONS(6481), - [anon_sym_BSLASHfvolcite] = ACTIONS(6481), - [anon_sym_BSLASHftvolcite] = ACTIONS(6481), - [anon_sym_BSLASHsvolcite] = ACTIONS(6481), - [anon_sym_BSLASHSvolcite] = ACTIONS(6481), - [anon_sym_BSLASHtvolcite] = ACTIONS(6481), - [anon_sym_BSLASHTvolcite] = ACTIONS(6481), - [anon_sym_BSLASHavolcite] = ACTIONS(6481), - [anon_sym_BSLASHAvolcite] = ACTIONS(6481), - [anon_sym_BSLASHnotecite] = ACTIONS(6481), - [anon_sym_BSLASHNotecite] = ACTIONS(6481), - [anon_sym_BSLASHpnotecite] = ACTIONS(6481), - [anon_sym_BSLASHPnotecite] = ACTIONS(6481), - [anon_sym_BSLASHfnotecite] = ACTIONS(6481), - [anon_sym_BSLASHlabel] = ACTIONS(6481), - [anon_sym_BSLASHref] = ACTIONS(6481), - [anon_sym_BSLASHeqref] = ACTIONS(6481), - [anon_sym_BSLASHvref] = ACTIONS(6481), - [anon_sym_BSLASHVref] = ACTIONS(6481), - [anon_sym_BSLASHautoref] = ACTIONS(6481), - [anon_sym_BSLASHpageref] = ACTIONS(6481), - [anon_sym_BSLASHcref] = ACTIONS(6481), - [anon_sym_BSLASHCref] = ACTIONS(6481), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnameCref] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHlabelcref] = ACTIONS(6481), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCrefrange] = ACTIONS(6481), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnewlabel] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6481), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6481), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6483), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHdef] = ACTIONS(6481), - [anon_sym_BSLASHlet] = ACTIONS(6481), - [anon_sym_BSLASHleft] = ACTIONS(6481), - [anon_sym_BSLASHbig] = ACTIONS(6481), - [anon_sym_BSLASHBig] = ACTIONS(6481), - [anon_sym_BSLASHbigg] = ACTIONS(6481), - [anon_sym_BSLASHBigg] = ACTIONS(6481), - [anon_sym_BSLASHbigl] = ACTIONS(6481), - [anon_sym_BSLASHBigl] = ACTIONS(6481), - [anon_sym_BSLASHbiggl] = ACTIONS(6481), - [anon_sym_BSLASHBiggl] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6481), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6481), - [anon_sym_BSLASHgls] = ACTIONS(6481), - [anon_sym_BSLASHGls] = ACTIONS(6481), - [anon_sym_BSLASHGLS] = ACTIONS(6481), - [anon_sym_BSLASHglspl] = ACTIONS(6481), - [anon_sym_BSLASHGlspl] = ACTIONS(6481), - [anon_sym_BSLASHGLSpl] = ACTIONS(6481), - [anon_sym_BSLASHglsdisp] = ACTIONS(6481), - [anon_sym_BSLASHglslink] = ACTIONS(6481), - [anon_sym_BSLASHglstext] = ACTIONS(6481), - [anon_sym_BSLASHGlstext] = ACTIONS(6481), - [anon_sym_BSLASHGLStext] = ACTIONS(6481), - [anon_sym_BSLASHglsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6481), - [anon_sym_BSLASHglsplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSplural] = ACTIONS(6481), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHglsname] = ACTIONS(6481), - [anon_sym_BSLASHGlsname] = ACTIONS(6481), - [anon_sym_BSLASHGLSname] = ACTIONS(6481), - [anon_sym_BSLASHglssymbol] = ACTIONS(6481), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6481), - [anon_sym_BSLASHglsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6481), - [anon_sym_BSLASHglsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6481), - [anon_sym_BSLASHglsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6481), - [anon_sym_BSLASHglsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6481), - [anon_sym_BSLASHglsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6481), - [anon_sym_BSLASHnewacronym] = ACTIONS(6481), - [anon_sym_BSLASHacrshort] = ACTIONS(6481), - [anon_sym_BSLASHAcrshort] = ACTIONS(6481), - [anon_sym_BSLASHACRshort] = ACTIONS(6481), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6481), - [anon_sym_BSLASHacrlong] = ACTIONS(6481), - [anon_sym_BSLASHAcrlong] = ACTIONS(6481), - [anon_sym_BSLASHACRlong] = ACTIONS(6481), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6481), - [anon_sym_BSLASHacrfull] = ACTIONS(6481), - [anon_sym_BSLASHAcrfull] = ACTIONS(6481), - [anon_sym_BSLASHACRfull] = ACTIONS(6481), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6481), - [anon_sym_BSLASHacs] = ACTIONS(6481), - [anon_sym_BSLASHAcs] = ACTIONS(6481), - [anon_sym_BSLASHacsp] = ACTIONS(6481), - [anon_sym_BSLASHAcsp] = ACTIONS(6481), - [anon_sym_BSLASHacl] = ACTIONS(6481), - [anon_sym_BSLASHAcl] = ACTIONS(6481), - [anon_sym_BSLASHaclp] = ACTIONS(6481), - [anon_sym_BSLASHAclp] = ACTIONS(6481), - [anon_sym_BSLASHacf] = ACTIONS(6481), - [anon_sym_BSLASHAcf] = ACTIONS(6481), - [anon_sym_BSLASHacfp] = ACTIONS(6481), - [anon_sym_BSLASHAcfp] = ACTIONS(6481), - [anon_sym_BSLASHac] = ACTIONS(6481), - [anon_sym_BSLASHAc] = ACTIONS(6481), - [anon_sym_BSLASHacp] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6481), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6481), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6481), - [anon_sym_BSLASHcolor] = ACTIONS(6481), - [anon_sym_BSLASHcolorbox] = ACTIONS(6481), - [anon_sym_BSLASHtextcolor] = ACTIONS(6481), - [anon_sym_BSLASHpagecolor] = ACTIONS(6481), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6481), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6481), - [anon_sym_BSLASHtext] = ACTIONS(6481), - [anon_sym_BSLASHintertext] = ACTIONS(6481), - [anon_sym_shortintertext] = ACTIONS(6481), - }, - [1163] = { - [sym_command_name] = ACTIONS(6485), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6485), - [anon_sym_LBRACK] = ACTIONS(6487), - [anon_sym_RBRACK] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(6487), - [anon_sym_EQ] = ACTIONS(6487), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(6487), - [anon_sym_BSLASHpart] = ACTIONS(6485), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddpart] = ACTIONS(6485), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6487), - [anon_sym_BSLASHchapter] = ACTIONS(6485), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddchap] = ACTIONS(6485), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsection] = ACTIONS(6485), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddsec] = ACTIONS(6485), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubsection] = ACTIONS(6485), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6485), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHparagraph] = ACTIONS(6485), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6485), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6487), - [anon_sym_BSLASHitem] = ACTIONS(6485), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6487), - [anon_sym_LBRACE] = ACTIONS(6487), - [sym_word] = ACTIONS(6485), - [sym_placeholder] = ACTIONS(6487), - [anon_sym_PLUS] = ACTIONS(6487), - [anon_sym_DASH] = ACTIONS(6487), - [anon_sym_STAR] = ACTIONS(6487), - [anon_sym_SLASH] = ACTIONS(6487), - [anon_sym_LT] = ACTIONS(6485), - [anon_sym_GT] = ACTIONS(6485), - [anon_sym_BANG] = ACTIONS(6485), - [anon_sym_PIPE] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6485), - [anon_sym_SQUOTE] = ACTIONS(6485), - [anon_sym__] = ACTIONS(6487), - [anon_sym_CARET] = ACTIONS(6487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6487), - [anon_sym_DOLLAR] = ACTIONS(6485), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6487), - [anon_sym_BSLASHbegin] = ACTIONS(6485), - [anon_sym_BSLASHend] = ACTIONS(6485), - [anon_sym_BSLASHtitle] = ACTIONS(6485), - [anon_sym_BSLASHauthor] = ACTIONS(6485), - [anon_sym_BSLASHusepackage] = ACTIONS(6485), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6485), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6485), - [anon_sym_BSLASHinclude] = ACTIONS(6485), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6485), - [anon_sym_BSLASHinput] = ACTIONS(6485), - [anon_sym_BSLASHsubfile] = ACTIONS(6485), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6485), - [anon_sym_BSLASHbibliography] = ACTIONS(6485), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6485), - [anon_sym_BSLASHincludesvg] = ACTIONS(6485), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6485), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6485), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6485), - [anon_sym_BSLASHimport] = ACTIONS(6485), - [anon_sym_BSLASHsubimport] = ACTIONS(6485), - [anon_sym_BSLASHinputfrom] = ACTIONS(6485), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6485), - [anon_sym_BSLASHincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHcaption] = ACTIONS(6485), - [anon_sym_BSLASHcite] = ACTIONS(6485), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCite] = ACTIONS(6485), - [anon_sym_BSLASHnocite] = ACTIONS(6485), - [anon_sym_BSLASHcitet] = ACTIONS(6485), - [anon_sym_BSLASHcitep] = ACTIONS(6485), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteauthor] = ACTIONS(6485), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6485), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitetitle] = ACTIONS(6485), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteyear] = ACTIONS(6485), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitedate] = ACTIONS(6485), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteurl] = ACTIONS(6485), - [anon_sym_BSLASHfullcite] = ACTIONS(6485), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6485), - [anon_sym_BSLASHcitealt] = ACTIONS(6485), - [anon_sym_BSLASHcitealp] = ACTIONS(6485), - [anon_sym_BSLASHcitetext] = ACTIONS(6485), - [anon_sym_BSLASHparencite] = ACTIONS(6485), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHParencite] = ACTIONS(6485), - [anon_sym_BSLASHfootcite] = ACTIONS(6485), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6485), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6485), - [anon_sym_BSLASHtextcite] = ACTIONS(6485), - [anon_sym_BSLASHTextcite] = ACTIONS(6485), - [anon_sym_BSLASHsmartcite] = ACTIONS(6485), - [anon_sym_BSLASHSmartcite] = ACTIONS(6485), - [anon_sym_BSLASHsupercite] = ACTIONS(6485), - [anon_sym_BSLASHautocite] = ACTIONS(6485), - [anon_sym_BSLASHAutocite] = ACTIONS(6485), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHvolcite] = ACTIONS(6485), - [anon_sym_BSLASHVolcite] = ACTIONS(6485), - [anon_sym_BSLASHpvolcite] = ACTIONS(6485), - [anon_sym_BSLASHPvolcite] = ACTIONS(6485), - [anon_sym_BSLASHfvolcite] = ACTIONS(6485), - [anon_sym_BSLASHftvolcite] = ACTIONS(6485), - [anon_sym_BSLASHsvolcite] = ACTIONS(6485), - [anon_sym_BSLASHSvolcite] = ACTIONS(6485), - [anon_sym_BSLASHtvolcite] = ACTIONS(6485), - [anon_sym_BSLASHTvolcite] = ACTIONS(6485), - [anon_sym_BSLASHavolcite] = ACTIONS(6485), - [anon_sym_BSLASHAvolcite] = ACTIONS(6485), - [anon_sym_BSLASHnotecite] = ACTIONS(6485), - [anon_sym_BSLASHNotecite] = ACTIONS(6485), - [anon_sym_BSLASHpnotecite] = ACTIONS(6485), - [anon_sym_BSLASHPnotecite] = ACTIONS(6485), - [anon_sym_BSLASHfnotecite] = ACTIONS(6485), - [anon_sym_BSLASHlabel] = ACTIONS(6485), - [anon_sym_BSLASHref] = ACTIONS(6485), - [anon_sym_BSLASHeqref] = ACTIONS(6485), - [anon_sym_BSLASHvref] = ACTIONS(6485), - [anon_sym_BSLASHVref] = ACTIONS(6485), - [anon_sym_BSLASHautoref] = ACTIONS(6485), - [anon_sym_BSLASHpageref] = ACTIONS(6485), - [anon_sym_BSLASHcref] = ACTIONS(6485), - [anon_sym_BSLASHCref] = ACTIONS(6485), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnameCref] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHlabelcref] = ACTIONS(6485), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCrefrange] = ACTIONS(6485), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnewlabel] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6485), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6485), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6487), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHdef] = ACTIONS(6485), - [anon_sym_BSLASHlet] = ACTIONS(6485), - [anon_sym_BSLASHleft] = ACTIONS(6485), - [anon_sym_BSLASHbig] = ACTIONS(6485), - [anon_sym_BSLASHBig] = ACTIONS(6485), - [anon_sym_BSLASHbigg] = ACTIONS(6485), - [anon_sym_BSLASHBigg] = ACTIONS(6485), - [anon_sym_BSLASHbigl] = ACTIONS(6485), - [anon_sym_BSLASHBigl] = ACTIONS(6485), - [anon_sym_BSLASHbiggl] = ACTIONS(6485), - [anon_sym_BSLASHBiggl] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6485), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6485), - [anon_sym_BSLASHgls] = ACTIONS(6485), - [anon_sym_BSLASHGls] = ACTIONS(6485), - [anon_sym_BSLASHGLS] = ACTIONS(6485), - [anon_sym_BSLASHglspl] = ACTIONS(6485), - [anon_sym_BSLASHGlspl] = ACTIONS(6485), - [anon_sym_BSLASHGLSpl] = ACTIONS(6485), - [anon_sym_BSLASHglsdisp] = ACTIONS(6485), - [anon_sym_BSLASHglslink] = ACTIONS(6485), - [anon_sym_BSLASHglstext] = ACTIONS(6485), - [anon_sym_BSLASHGlstext] = ACTIONS(6485), - [anon_sym_BSLASHGLStext] = ACTIONS(6485), - [anon_sym_BSLASHglsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6485), - [anon_sym_BSLASHglsplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSplural] = ACTIONS(6485), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHglsname] = ACTIONS(6485), - [anon_sym_BSLASHGlsname] = ACTIONS(6485), - [anon_sym_BSLASHGLSname] = ACTIONS(6485), - [anon_sym_BSLASHglssymbol] = ACTIONS(6485), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6485), - [anon_sym_BSLASHglsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6485), - [anon_sym_BSLASHglsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6485), - [anon_sym_BSLASHglsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6485), - [anon_sym_BSLASHglsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6485), - [anon_sym_BSLASHglsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6485), - [anon_sym_BSLASHnewacronym] = ACTIONS(6485), - [anon_sym_BSLASHacrshort] = ACTIONS(6485), - [anon_sym_BSLASHAcrshort] = ACTIONS(6485), - [anon_sym_BSLASHACRshort] = ACTIONS(6485), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6485), - [anon_sym_BSLASHacrlong] = ACTIONS(6485), - [anon_sym_BSLASHAcrlong] = ACTIONS(6485), - [anon_sym_BSLASHACRlong] = ACTIONS(6485), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6485), - [anon_sym_BSLASHacrfull] = ACTIONS(6485), - [anon_sym_BSLASHAcrfull] = ACTIONS(6485), - [anon_sym_BSLASHACRfull] = ACTIONS(6485), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6485), - [anon_sym_BSLASHacs] = ACTIONS(6485), - [anon_sym_BSLASHAcs] = ACTIONS(6485), - [anon_sym_BSLASHacsp] = ACTIONS(6485), - [anon_sym_BSLASHAcsp] = ACTIONS(6485), - [anon_sym_BSLASHacl] = ACTIONS(6485), - [anon_sym_BSLASHAcl] = ACTIONS(6485), - [anon_sym_BSLASHaclp] = ACTIONS(6485), - [anon_sym_BSLASHAclp] = ACTIONS(6485), - [anon_sym_BSLASHacf] = ACTIONS(6485), - [anon_sym_BSLASHAcf] = ACTIONS(6485), - [anon_sym_BSLASHacfp] = ACTIONS(6485), - [anon_sym_BSLASHAcfp] = ACTIONS(6485), - [anon_sym_BSLASHac] = ACTIONS(6485), - [anon_sym_BSLASHAc] = ACTIONS(6485), - [anon_sym_BSLASHacp] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6485), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6485), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6485), - [anon_sym_BSLASHcolor] = ACTIONS(6485), - [anon_sym_BSLASHcolorbox] = ACTIONS(6485), - [anon_sym_BSLASHtextcolor] = ACTIONS(6485), - [anon_sym_BSLASHpagecolor] = ACTIONS(6485), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6485), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6485), - [anon_sym_BSLASHtext] = ACTIONS(6485), - [anon_sym_BSLASHintertext] = ACTIONS(6485), - [anon_sym_shortintertext] = ACTIONS(6485), - }, - [1164] = { - [sym_command_name] = ACTIONS(6345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6345), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_EQ] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_BSLASHpart] = ACTIONS(6345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddpart] = ACTIONS(6345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6347), - [anon_sym_BSLASHchapter] = ACTIONS(6345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddchap] = ACTIONS(6345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsection] = ACTIONS(6345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddsec] = ACTIONS(6345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubsection] = ACTIONS(6345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHparagraph] = ACTIONS(6345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6347), - [anon_sym_BSLASHitem] = ACTIONS(6345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6347), - [anon_sym_LBRACE] = ACTIONS(6347), - [sym_word] = ACTIONS(6345), - [sym_placeholder] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6345), - [anon_sym_GT] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(6345), - [anon_sym_PIPE] = ACTIONS(6345), - [anon_sym_COLON] = ACTIONS(6345), - [anon_sym_SQUOTE] = ACTIONS(6345), - [anon_sym__] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6347), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6347), - [anon_sym_DOLLAR] = ACTIONS(6345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6347), - [anon_sym_BSLASHbegin] = ACTIONS(6345), - [anon_sym_BSLASHtitle] = ACTIONS(6345), - [anon_sym_BSLASHauthor] = ACTIONS(6345), - [anon_sym_BSLASHusepackage] = ACTIONS(6345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6345), - [anon_sym_BSLASHinclude] = ACTIONS(6345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6345), - [anon_sym_BSLASHinput] = ACTIONS(6345), - [anon_sym_BSLASHsubfile] = ACTIONS(6345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6345), - [anon_sym_BSLASHbibliography] = ACTIONS(6345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6345), - [anon_sym_BSLASHincludesvg] = ACTIONS(6345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6345), - [anon_sym_BSLASHimport] = ACTIONS(6345), - [anon_sym_BSLASHsubimport] = ACTIONS(6345), - [anon_sym_BSLASHinputfrom] = ACTIONS(6345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6345), - [anon_sym_BSLASHincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHcaption] = ACTIONS(6345), - [anon_sym_BSLASHcite] = ACTIONS(6345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCite] = ACTIONS(6345), - [anon_sym_BSLASHnocite] = ACTIONS(6345), - [anon_sym_BSLASHcitet] = ACTIONS(6345), - [anon_sym_BSLASHcitep] = ACTIONS(6345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteauthor] = ACTIONS(6345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitetitle] = ACTIONS(6345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteyear] = ACTIONS(6345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitedate] = ACTIONS(6345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteurl] = ACTIONS(6345), - [anon_sym_BSLASHfullcite] = ACTIONS(6345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6345), - [anon_sym_BSLASHcitealt] = ACTIONS(6345), - [anon_sym_BSLASHcitealp] = ACTIONS(6345), - [anon_sym_BSLASHcitetext] = ACTIONS(6345), - [anon_sym_BSLASHparencite] = ACTIONS(6345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHParencite] = ACTIONS(6345), - [anon_sym_BSLASHfootcite] = ACTIONS(6345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6345), - [anon_sym_BSLASHtextcite] = ACTIONS(6345), - [anon_sym_BSLASHTextcite] = ACTIONS(6345), - [anon_sym_BSLASHsmartcite] = ACTIONS(6345), - [anon_sym_BSLASHSmartcite] = ACTIONS(6345), - [anon_sym_BSLASHsupercite] = ACTIONS(6345), - [anon_sym_BSLASHautocite] = ACTIONS(6345), - [anon_sym_BSLASHAutocite] = ACTIONS(6345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHvolcite] = ACTIONS(6345), - [anon_sym_BSLASHVolcite] = ACTIONS(6345), - [anon_sym_BSLASHpvolcite] = ACTIONS(6345), - [anon_sym_BSLASHPvolcite] = ACTIONS(6345), - [anon_sym_BSLASHfvolcite] = ACTIONS(6345), - [anon_sym_BSLASHftvolcite] = ACTIONS(6345), - [anon_sym_BSLASHsvolcite] = ACTIONS(6345), - [anon_sym_BSLASHSvolcite] = ACTIONS(6345), - [anon_sym_BSLASHtvolcite] = ACTIONS(6345), - [anon_sym_BSLASHTvolcite] = ACTIONS(6345), - [anon_sym_BSLASHavolcite] = ACTIONS(6345), - [anon_sym_BSLASHAvolcite] = ACTIONS(6345), - [anon_sym_BSLASHnotecite] = ACTIONS(6345), - [anon_sym_BSLASHNotecite] = ACTIONS(6345), - [anon_sym_BSLASHpnotecite] = ACTIONS(6345), - [anon_sym_BSLASHPnotecite] = ACTIONS(6345), - [anon_sym_BSLASHfnotecite] = ACTIONS(6345), - [anon_sym_BSLASHlabel] = ACTIONS(6345), - [anon_sym_BSLASHref] = ACTIONS(6345), - [anon_sym_BSLASHeqref] = ACTIONS(6345), - [anon_sym_BSLASHvref] = ACTIONS(6345), - [anon_sym_BSLASHVref] = ACTIONS(6345), - [anon_sym_BSLASHautoref] = ACTIONS(6345), - [anon_sym_BSLASHpageref] = ACTIONS(6345), - [anon_sym_BSLASHcref] = ACTIONS(6345), - [anon_sym_BSLASHCref] = ACTIONS(6345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnameCref] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHlabelcref] = ACTIONS(6345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCrefrange] = ACTIONS(6345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnewlabel] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6347), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHdef] = ACTIONS(6345), - [anon_sym_BSLASHlet] = ACTIONS(6345), - [anon_sym_BSLASHleft] = ACTIONS(6345), - [anon_sym_BSLASHbig] = ACTIONS(6345), - [anon_sym_BSLASHBig] = ACTIONS(6345), - [anon_sym_BSLASHbigg] = ACTIONS(6345), - [anon_sym_BSLASHBigg] = ACTIONS(6345), - [anon_sym_BSLASHbigl] = ACTIONS(6345), - [anon_sym_BSLASHBigl] = ACTIONS(6345), - [anon_sym_BSLASHbiggl] = ACTIONS(6345), - [anon_sym_BSLASHBiggl] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6345), - [anon_sym_BSLASHgls] = ACTIONS(6345), - [anon_sym_BSLASHGls] = ACTIONS(6345), - [anon_sym_BSLASHGLS] = ACTIONS(6345), - [anon_sym_BSLASHglspl] = ACTIONS(6345), - [anon_sym_BSLASHGlspl] = ACTIONS(6345), - [anon_sym_BSLASHGLSpl] = ACTIONS(6345), - [anon_sym_BSLASHglsdisp] = ACTIONS(6345), - [anon_sym_BSLASHglslink] = ACTIONS(6345), - [anon_sym_BSLASHglstext] = ACTIONS(6345), - [anon_sym_BSLASHGlstext] = ACTIONS(6345), - [anon_sym_BSLASHGLStext] = ACTIONS(6345), - [anon_sym_BSLASHglsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6345), - [anon_sym_BSLASHglsplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSplural] = ACTIONS(6345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHglsname] = ACTIONS(6345), - [anon_sym_BSLASHGlsname] = ACTIONS(6345), - [anon_sym_BSLASHGLSname] = ACTIONS(6345), - [anon_sym_BSLASHglssymbol] = ACTIONS(6345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6345), - [anon_sym_BSLASHglsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6345), - [anon_sym_BSLASHglsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6345), - [anon_sym_BSLASHglsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6345), - [anon_sym_BSLASHglsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6345), - [anon_sym_BSLASHglsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6345), - [anon_sym_BSLASHnewacronym] = ACTIONS(6345), - [anon_sym_BSLASHacrshort] = ACTIONS(6345), - [anon_sym_BSLASHAcrshort] = ACTIONS(6345), - [anon_sym_BSLASHACRshort] = ACTIONS(6345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6345), - [anon_sym_BSLASHacrlong] = ACTIONS(6345), - [anon_sym_BSLASHAcrlong] = ACTIONS(6345), - [anon_sym_BSLASHACRlong] = ACTIONS(6345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6345), - [anon_sym_BSLASHacrfull] = ACTIONS(6345), - [anon_sym_BSLASHAcrfull] = ACTIONS(6345), - [anon_sym_BSLASHACRfull] = ACTIONS(6345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6345), - [anon_sym_BSLASHacs] = ACTIONS(6345), - [anon_sym_BSLASHAcs] = ACTIONS(6345), - [anon_sym_BSLASHacsp] = ACTIONS(6345), - [anon_sym_BSLASHAcsp] = ACTIONS(6345), - [anon_sym_BSLASHacl] = ACTIONS(6345), - [anon_sym_BSLASHAcl] = ACTIONS(6345), - [anon_sym_BSLASHaclp] = ACTIONS(6345), - [anon_sym_BSLASHAclp] = ACTIONS(6345), - [anon_sym_BSLASHacf] = ACTIONS(6345), - [anon_sym_BSLASHAcf] = ACTIONS(6345), - [anon_sym_BSLASHacfp] = ACTIONS(6345), - [anon_sym_BSLASHAcfp] = ACTIONS(6345), - [anon_sym_BSLASHac] = ACTIONS(6345), - [anon_sym_BSLASHAc] = ACTIONS(6345), - [anon_sym_BSLASHacp] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6345), - [anon_sym_BSLASHcolor] = ACTIONS(6345), - [anon_sym_BSLASHcolorbox] = ACTIONS(6345), - [anon_sym_BSLASHtextcolor] = ACTIONS(6345), - [anon_sym_BSLASHpagecolor] = ACTIONS(6345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6345), - [anon_sym_BSLASHtext] = ACTIONS(6345), - [anon_sym_BSLASHintertext] = ACTIONS(6345), - [anon_sym_shortintertext] = ACTIONS(6345), - }, - [1165] = { - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddpart] = ACTIONS(145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHchapter] = ACTIONS(145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddchap] = ACTIONS(145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), - [anon_sym_BSLASHsection] = ACTIONS(145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddsec] = ACTIONS(145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHparagraph] = ACTIONS(145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHitem] = ACTIONS(145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHend] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [1166] = { - [sym_command_name] = ACTIONS(6165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6165), - [anon_sym_LBRACK] = ACTIONS(6167), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_EQ] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_BSLASHpart] = ACTIONS(6165), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddpart] = ACTIONS(6165), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6167), - [anon_sym_BSLASHchapter] = ACTIONS(6165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddchap] = ACTIONS(6165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsection] = ACTIONS(6165), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddsec] = ACTIONS(6165), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubsection] = ACTIONS(6165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6165), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHparagraph] = ACTIONS(6165), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6165), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6167), - [anon_sym_BSLASHitem] = ACTIONS(6165), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6167), - [anon_sym_LBRACE] = ACTIONS(6167), - [sym_word] = ACTIONS(6165), - [sym_placeholder] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6167), - [anon_sym_DASH] = ACTIONS(6167), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_COLON] = ACTIONS(6165), - [anon_sym_SQUOTE] = ACTIONS(6165), - [anon_sym__] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6167), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6167), - [anon_sym_BSLASHbegin] = ACTIONS(6165), - [anon_sym_BSLASHtitle] = ACTIONS(6165), - [anon_sym_BSLASHauthor] = ACTIONS(6165), - [anon_sym_BSLASHusepackage] = ACTIONS(6165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6165), - [anon_sym_BSLASHinclude] = ACTIONS(6165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6165), - [anon_sym_BSLASHinput] = ACTIONS(6165), - [anon_sym_BSLASHsubfile] = ACTIONS(6165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6165), - [anon_sym_BSLASHbibliography] = ACTIONS(6165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6165), - [anon_sym_BSLASHincludesvg] = ACTIONS(6165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6165), - [anon_sym_BSLASHimport] = ACTIONS(6165), - [anon_sym_BSLASHsubimport] = ACTIONS(6165), - [anon_sym_BSLASHinputfrom] = ACTIONS(6165), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6165), - [anon_sym_BSLASHincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHcaption] = ACTIONS(6165), - [anon_sym_BSLASHcite] = ACTIONS(6165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCite] = ACTIONS(6165), - [anon_sym_BSLASHnocite] = ACTIONS(6165), - [anon_sym_BSLASHcitet] = ACTIONS(6165), - [anon_sym_BSLASHcitep] = ACTIONS(6165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteauthor] = ACTIONS(6165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitetitle] = ACTIONS(6165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteyear] = ACTIONS(6165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitedate] = ACTIONS(6165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteurl] = ACTIONS(6165), - [anon_sym_BSLASHfullcite] = ACTIONS(6165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6165), - [anon_sym_BSLASHcitealt] = ACTIONS(6165), - [anon_sym_BSLASHcitealp] = ACTIONS(6165), - [anon_sym_BSLASHcitetext] = ACTIONS(6165), - [anon_sym_BSLASHparencite] = ACTIONS(6165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHParencite] = ACTIONS(6165), - [anon_sym_BSLASHfootcite] = ACTIONS(6165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6165), - [anon_sym_BSLASHtextcite] = ACTIONS(6165), - [anon_sym_BSLASHTextcite] = ACTIONS(6165), - [anon_sym_BSLASHsmartcite] = ACTIONS(6165), - [anon_sym_BSLASHSmartcite] = ACTIONS(6165), - [anon_sym_BSLASHsupercite] = ACTIONS(6165), - [anon_sym_BSLASHautocite] = ACTIONS(6165), - [anon_sym_BSLASHAutocite] = ACTIONS(6165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHvolcite] = ACTIONS(6165), - [anon_sym_BSLASHVolcite] = ACTIONS(6165), - [anon_sym_BSLASHpvolcite] = ACTIONS(6165), - [anon_sym_BSLASHPvolcite] = ACTIONS(6165), - [anon_sym_BSLASHfvolcite] = ACTIONS(6165), - [anon_sym_BSLASHftvolcite] = ACTIONS(6165), - [anon_sym_BSLASHsvolcite] = ACTIONS(6165), - [anon_sym_BSLASHSvolcite] = ACTIONS(6165), - [anon_sym_BSLASHtvolcite] = ACTIONS(6165), - [anon_sym_BSLASHTvolcite] = ACTIONS(6165), - [anon_sym_BSLASHavolcite] = ACTIONS(6165), - [anon_sym_BSLASHAvolcite] = ACTIONS(6165), - [anon_sym_BSLASHnotecite] = ACTIONS(6165), - [anon_sym_BSLASHNotecite] = ACTIONS(6165), - [anon_sym_BSLASHpnotecite] = ACTIONS(6165), - [anon_sym_BSLASHPnotecite] = ACTIONS(6165), - [anon_sym_BSLASHfnotecite] = ACTIONS(6165), - [anon_sym_BSLASHlabel] = ACTIONS(6165), - [anon_sym_BSLASHref] = ACTIONS(6165), - [anon_sym_BSLASHeqref] = ACTIONS(6165), - [anon_sym_BSLASHvref] = ACTIONS(6165), - [anon_sym_BSLASHVref] = ACTIONS(6165), - [anon_sym_BSLASHautoref] = ACTIONS(6165), - [anon_sym_BSLASHpageref] = ACTIONS(6165), - [anon_sym_BSLASHcref] = ACTIONS(6165), - [anon_sym_BSLASHCref] = ACTIONS(6165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnameCref] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHlabelcref] = ACTIONS(6165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCrefrange] = ACTIONS(6165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnewlabel] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6167), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHdef] = ACTIONS(6165), - [anon_sym_BSLASHlet] = ACTIONS(6165), - [anon_sym_BSLASHleft] = ACTIONS(6165), - [anon_sym_BSLASHbig] = ACTIONS(6165), - [anon_sym_BSLASHBig] = ACTIONS(6165), - [anon_sym_BSLASHbigg] = ACTIONS(6165), - [anon_sym_BSLASHBigg] = ACTIONS(6165), - [anon_sym_BSLASHbigl] = ACTIONS(6165), - [anon_sym_BSLASHBigl] = ACTIONS(6165), - [anon_sym_BSLASHbiggl] = ACTIONS(6165), - [anon_sym_BSLASHBiggl] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6165), - [anon_sym_BSLASHgls] = ACTIONS(6165), - [anon_sym_BSLASHGls] = ACTIONS(6165), - [anon_sym_BSLASHGLS] = ACTIONS(6165), - [anon_sym_BSLASHglspl] = ACTIONS(6165), - [anon_sym_BSLASHGlspl] = ACTIONS(6165), - [anon_sym_BSLASHGLSpl] = ACTIONS(6165), - [anon_sym_BSLASHglsdisp] = ACTIONS(6165), - [anon_sym_BSLASHglslink] = ACTIONS(6165), - [anon_sym_BSLASHglstext] = ACTIONS(6165), - [anon_sym_BSLASHGlstext] = ACTIONS(6165), - [anon_sym_BSLASHGLStext] = ACTIONS(6165), - [anon_sym_BSLASHglsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6165), - [anon_sym_BSLASHglsplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSplural] = ACTIONS(6165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHglsname] = ACTIONS(6165), - [anon_sym_BSLASHGlsname] = ACTIONS(6165), - [anon_sym_BSLASHGLSname] = ACTIONS(6165), - [anon_sym_BSLASHglssymbol] = ACTIONS(6165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6165), - [anon_sym_BSLASHglsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6165), - [anon_sym_BSLASHglsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6165), - [anon_sym_BSLASHglsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6165), - [anon_sym_BSLASHglsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6165), - [anon_sym_BSLASHglsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6165), - [anon_sym_BSLASHnewacronym] = ACTIONS(6165), - [anon_sym_BSLASHacrshort] = ACTIONS(6165), - [anon_sym_BSLASHAcrshort] = ACTIONS(6165), - [anon_sym_BSLASHACRshort] = ACTIONS(6165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6165), - [anon_sym_BSLASHacrlong] = ACTIONS(6165), - [anon_sym_BSLASHAcrlong] = ACTIONS(6165), - [anon_sym_BSLASHACRlong] = ACTIONS(6165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6165), - [anon_sym_BSLASHacrfull] = ACTIONS(6165), - [anon_sym_BSLASHAcrfull] = ACTIONS(6165), - [anon_sym_BSLASHACRfull] = ACTIONS(6165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6165), - [anon_sym_BSLASHacs] = ACTIONS(6165), - [anon_sym_BSLASHAcs] = ACTIONS(6165), - [anon_sym_BSLASHacsp] = ACTIONS(6165), - [anon_sym_BSLASHAcsp] = ACTIONS(6165), - [anon_sym_BSLASHacl] = ACTIONS(6165), - [anon_sym_BSLASHAcl] = ACTIONS(6165), - [anon_sym_BSLASHaclp] = ACTIONS(6165), - [anon_sym_BSLASHAclp] = ACTIONS(6165), - [anon_sym_BSLASHacf] = ACTIONS(6165), - [anon_sym_BSLASHAcf] = ACTIONS(6165), - [anon_sym_BSLASHacfp] = ACTIONS(6165), - [anon_sym_BSLASHAcfp] = ACTIONS(6165), - [anon_sym_BSLASHac] = ACTIONS(6165), - [anon_sym_BSLASHAc] = ACTIONS(6165), - [anon_sym_BSLASHacp] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6165), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6165), - [anon_sym_BSLASHcolor] = ACTIONS(6165), - [anon_sym_BSLASHcolorbox] = ACTIONS(6165), - [anon_sym_BSLASHtextcolor] = ACTIONS(6165), - [anon_sym_BSLASHpagecolor] = ACTIONS(6165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6165), - [anon_sym_BSLASHtext] = ACTIONS(6165), - [anon_sym_BSLASHintertext] = ACTIONS(6165), - [anon_sym_shortintertext] = ACTIONS(6165), - }, - [1167] = { - [sym_command_name] = ACTIONS(6489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6489), - [anon_sym_LBRACK] = ACTIONS(6491), - [anon_sym_RBRACK] = ACTIONS(6491), - [anon_sym_COMMA] = ACTIONS(6491), - [anon_sym_EQ] = ACTIONS(6491), - [anon_sym_LPAREN] = ACTIONS(6491), - [anon_sym_RPAREN] = ACTIONS(6491), - [anon_sym_BSLASHpart] = ACTIONS(6489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddpart] = ACTIONS(6489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6491), - [anon_sym_BSLASHchapter] = ACTIONS(6489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddchap] = ACTIONS(6489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsection] = ACTIONS(6489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddsec] = ACTIONS(6489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubsection] = ACTIONS(6489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHparagraph] = ACTIONS(6489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6491), - [anon_sym_BSLASHitem] = ACTIONS(6489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6491), - [anon_sym_LBRACE] = ACTIONS(6491), - [sym_word] = ACTIONS(6489), - [sym_placeholder] = ACTIONS(6491), - [anon_sym_PLUS] = ACTIONS(6491), - [anon_sym_DASH] = ACTIONS(6491), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_LT] = ACTIONS(6489), - [anon_sym_GT] = ACTIONS(6489), - [anon_sym_BANG] = ACTIONS(6489), - [anon_sym_PIPE] = ACTIONS(6489), - [anon_sym_COLON] = ACTIONS(6489), - [anon_sym_SQUOTE] = ACTIONS(6489), - [anon_sym__] = ACTIONS(6491), - [anon_sym_CARET] = ACTIONS(6491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6491), - [anon_sym_DOLLAR] = ACTIONS(6489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6491), - [anon_sym_BSLASHbegin] = ACTIONS(6489), - [anon_sym_BSLASHend] = ACTIONS(6489), - [anon_sym_BSLASHtitle] = ACTIONS(6489), - [anon_sym_BSLASHauthor] = ACTIONS(6489), - [anon_sym_BSLASHusepackage] = ACTIONS(6489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6489), - [anon_sym_BSLASHinclude] = ACTIONS(6489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6489), - [anon_sym_BSLASHinput] = ACTIONS(6489), - [anon_sym_BSLASHsubfile] = ACTIONS(6489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6489), - [anon_sym_BSLASHbibliography] = ACTIONS(6489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6489), - [anon_sym_BSLASHincludesvg] = ACTIONS(6489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6489), - [anon_sym_BSLASHimport] = ACTIONS(6489), - [anon_sym_BSLASHsubimport] = ACTIONS(6489), - [anon_sym_BSLASHinputfrom] = ACTIONS(6489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6489), - [anon_sym_BSLASHincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHcaption] = ACTIONS(6489), - [anon_sym_BSLASHcite] = ACTIONS(6489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCite] = ACTIONS(6489), - [anon_sym_BSLASHnocite] = ACTIONS(6489), - [anon_sym_BSLASHcitet] = ACTIONS(6489), - [anon_sym_BSLASHcitep] = ACTIONS(6489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteauthor] = ACTIONS(6489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitetitle] = ACTIONS(6489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteyear] = ACTIONS(6489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitedate] = ACTIONS(6489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteurl] = ACTIONS(6489), - [anon_sym_BSLASHfullcite] = ACTIONS(6489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6489), - [anon_sym_BSLASHcitealt] = ACTIONS(6489), - [anon_sym_BSLASHcitealp] = ACTIONS(6489), - [anon_sym_BSLASHcitetext] = ACTIONS(6489), - [anon_sym_BSLASHparencite] = ACTIONS(6489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHParencite] = ACTIONS(6489), - [anon_sym_BSLASHfootcite] = ACTIONS(6489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6489), - [anon_sym_BSLASHtextcite] = ACTIONS(6489), - [anon_sym_BSLASHTextcite] = ACTIONS(6489), - [anon_sym_BSLASHsmartcite] = ACTIONS(6489), - [anon_sym_BSLASHSmartcite] = ACTIONS(6489), - [anon_sym_BSLASHsupercite] = ACTIONS(6489), - [anon_sym_BSLASHautocite] = ACTIONS(6489), - [anon_sym_BSLASHAutocite] = ACTIONS(6489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHvolcite] = ACTIONS(6489), - [anon_sym_BSLASHVolcite] = ACTIONS(6489), - [anon_sym_BSLASHpvolcite] = ACTIONS(6489), - [anon_sym_BSLASHPvolcite] = ACTIONS(6489), - [anon_sym_BSLASHfvolcite] = ACTIONS(6489), - [anon_sym_BSLASHftvolcite] = ACTIONS(6489), - [anon_sym_BSLASHsvolcite] = ACTIONS(6489), - [anon_sym_BSLASHSvolcite] = ACTIONS(6489), - [anon_sym_BSLASHtvolcite] = ACTIONS(6489), - [anon_sym_BSLASHTvolcite] = ACTIONS(6489), - [anon_sym_BSLASHavolcite] = ACTIONS(6489), - [anon_sym_BSLASHAvolcite] = ACTIONS(6489), - [anon_sym_BSLASHnotecite] = ACTIONS(6489), - [anon_sym_BSLASHNotecite] = ACTIONS(6489), - [anon_sym_BSLASHpnotecite] = ACTIONS(6489), - [anon_sym_BSLASHPnotecite] = ACTIONS(6489), - [anon_sym_BSLASHfnotecite] = ACTIONS(6489), - [anon_sym_BSLASHlabel] = ACTIONS(6489), - [anon_sym_BSLASHref] = ACTIONS(6489), - [anon_sym_BSLASHeqref] = ACTIONS(6489), - [anon_sym_BSLASHvref] = ACTIONS(6489), - [anon_sym_BSLASHVref] = ACTIONS(6489), - [anon_sym_BSLASHautoref] = ACTIONS(6489), - [anon_sym_BSLASHpageref] = ACTIONS(6489), - [anon_sym_BSLASHcref] = ACTIONS(6489), - [anon_sym_BSLASHCref] = ACTIONS(6489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnameCref] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHlabelcref] = ACTIONS(6489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCrefrange] = ACTIONS(6489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnewlabel] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6491), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHdef] = ACTIONS(6489), - [anon_sym_BSLASHlet] = ACTIONS(6489), - [anon_sym_BSLASHleft] = ACTIONS(6489), - [anon_sym_BSLASHbig] = ACTIONS(6489), - [anon_sym_BSLASHBig] = ACTIONS(6489), - [anon_sym_BSLASHbigg] = ACTIONS(6489), - [anon_sym_BSLASHBigg] = ACTIONS(6489), - [anon_sym_BSLASHbigl] = ACTIONS(6489), - [anon_sym_BSLASHBigl] = ACTIONS(6489), - [anon_sym_BSLASHbiggl] = ACTIONS(6489), - [anon_sym_BSLASHBiggl] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6489), - [anon_sym_BSLASHgls] = ACTIONS(6489), - [anon_sym_BSLASHGls] = ACTIONS(6489), - [anon_sym_BSLASHGLS] = ACTIONS(6489), - [anon_sym_BSLASHglspl] = ACTIONS(6489), - [anon_sym_BSLASHGlspl] = ACTIONS(6489), - [anon_sym_BSLASHGLSpl] = ACTIONS(6489), - [anon_sym_BSLASHglsdisp] = ACTIONS(6489), - [anon_sym_BSLASHglslink] = ACTIONS(6489), - [anon_sym_BSLASHglstext] = ACTIONS(6489), - [anon_sym_BSLASHGlstext] = ACTIONS(6489), - [anon_sym_BSLASHGLStext] = ACTIONS(6489), - [anon_sym_BSLASHglsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6489), - [anon_sym_BSLASHglsplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSplural] = ACTIONS(6489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHglsname] = ACTIONS(6489), - [anon_sym_BSLASHGlsname] = ACTIONS(6489), - [anon_sym_BSLASHGLSname] = ACTIONS(6489), - [anon_sym_BSLASHglssymbol] = ACTIONS(6489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6489), - [anon_sym_BSLASHglsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6489), - [anon_sym_BSLASHglsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6489), - [anon_sym_BSLASHglsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6489), - [anon_sym_BSLASHglsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6489), - [anon_sym_BSLASHglsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6489), - [anon_sym_BSLASHnewacronym] = ACTIONS(6489), - [anon_sym_BSLASHacrshort] = ACTIONS(6489), - [anon_sym_BSLASHAcrshort] = ACTIONS(6489), - [anon_sym_BSLASHACRshort] = ACTIONS(6489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6489), - [anon_sym_BSLASHacrlong] = ACTIONS(6489), - [anon_sym_BSLASHAcrlong] = ACTIONS(6489), - [anon_sym_BSLASHACRlong] = ACTIONS(6489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6489), - [anon_sym_BSLASHacrfull] = ACTIONS(6489), - [anon_sym_BSLASHAcrfull] = ACTIONS(6489), - [anon_sym_BSLASHACRfull] = ACTIONS(6489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6489), - [anon_sym_BSLASHacs] = ACTIONS(6489), - [anon_sym_BSLASHAcs] = ACTIONS(6489), - [anon_sym_BSLASHacsp] = ACTIONS(6489), - [anon_sym_BSLASHAcsp] = ACTIONS(6489), - [anon_sym_BSLASHacl] = ACTIONS(6489), - [anon_sym_BSLASHAcl] = ACTIONS(6489), - [anon_sym_BSLASHaclp] = ACTIONS(6489), - [anon_sym_BSLASHAclp] = ACTIONS(6489), - [anon_sym_BSLASHacf] = ACTIONS(6489), - [anon_sym_BSLASHAcf] = ACTIONS(6489), - [anon_sym_BSLASHacfp] = ACTIONS(6489), - [anon_sym_BSLASHAcfp] = ACTIONS(6489), - [anon_sym_BSLASHac] = ACTIONS(6489), - [anon_sym_BSLASHAc] = ACTIONS(6489), - [anon_sym_BSLASHacp] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6489), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6489), - [anon_sym_BSLASHcolor] = ACTIONS(6489), - [anon_sym_BSLASHcolorbox] = ACTIONS(6489), - [anon_sym_BSLASHtextcolor] = ACTIONS(6489), - [anon_sym_BSLASHpagecolor] = ACTIONS(6489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6489), - [anon_sym_BSLASHtext] = ACTIONS(6489), - [anon_sym_BSLASHintertext] = ACTIONS(6489), - [anon_sym_shortintertext] = ACTIONS(6489), - }, - [1168] = { - [sym_command_name] = ACTIONS(6245), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6247), - [anon_sym_RBRACK] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(6247), - [anon_sym_EQ] = ACTIONS(6247), - [anon_sym_LPAREN] = ACTIONS(6247), - [anon_sym_RPAREN] = ACTIONS(6247), - [anon_sym_BSLASHpart] = ACTIONS(6245), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddpart] = ACTIONS(6245), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6247), - [anon_sym_BSLASHchapter] = ACTIONS(6245), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddchap] = ACTIONS(6245), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsection] = ACTIONS(6245), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddsec] = ACTIONS(6245), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubsection] = ACTIONS(6245), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6245), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHparagraph] = ACTIONS(6245), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6245), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6247), - [anon_sym_BSLASHitem] = ACTIONS(6245), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6247), - [sym_word] = ACTIONS(6245), - [sym_placeholder] = ACTIONS(6247), - [anon_sym_PLUS] = ACTIONS(6247), - [anon_sym_DASH] = ACTIONS(6247), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_LT] = ACTIONS(6245), - [anon_sym_GT] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6245), - [anon_sym_PIPE] = ACTIONS(6245), - [anon_sym_COLON] = ACTIONS(6245), - [anon_sym_SQUOTE] = ACTIONS(6245), - [anon_sym__] = ACTIONS(6247), - [anon_sym_CARET] = ACTIONS(6247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), - [anon_sym_DOLLAR] = ACTIONS(6245), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), - [anon_sym_BSLASHbegin] = ACTIONS(6245), - [anon_sym_BSLASHend] = ACTIONS(6245), - [anon_sym_BSLASHtitle] = ACTIONS(6245), - [anon_sym_BSLASHauthor] = ACTIONS(6245), - [anon_sym_BSLASHusepackage] = ACTIONS(6245), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), - [anon_sym_BSLASHinclude] = ACTIONS(6245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), - [anon_sym_BSLASHinput] = ACTIONS(6245), - [anon_sym_BSLASHsubfile] = ACTIONS(6245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), - [anon_sym_BSLASHbibliography] = ACTIONS(6245), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), - [anon_sym_BSLASHincludesvg] = ACTIONS(6245), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), - [anon_sym_BSLASHimport] = ACTIONS(6245), - [anon_sym_BSLASHsubimport] = ACTIONS(6245), - [anon_sym_BSLASHinputfrom] = ACTIONS(6245), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), - [anon_sym_BSLASHincludefrom] = ACTIONS(6245), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), - [anon_sym_BSLASHcaption] = ACTIONS(6245), - [anon_sym_BSLASHcite] = ACTIONS(6245), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCite] = ACTIONS(6245), - [anon_sym_BSLASHnocite] = ACTIONS(6245), - [anon_sym_BSLASHcitet] = ACTIONS(6245), - [anon_sym_BSLASHcitep] = ACTIONS(6245), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteauthor] = ACTIONS(6245), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitetitle] = ACTIONS(6245), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteyear] = ACTIONS(6245), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitedate] = ACTIONS(6245), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteurl] = ACTIONS(6245), - [anon_sym_BSLASHfullcite] = ACTIONS(6245), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), - [anon_sym_BSLASHcitealt] = ACTIONS(6245), - [anon_sym_BSLASHcitealp] = ACTIONS(6245), - [anon_sym_BSLASHcitetext] = ACTIONS(6245), - [anon_sym_BSLASHparencite] = ACTIONS(6245), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHParencite] = ACTIONS(6245), - [anon_sym_BSLASHfootcite] = ACTIONS(6245), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), - [anon_sym_BSLASHtextcite] = ACTIONS(6245), - [anon_sym_BSLASHTextcite] = ACTIONS(6245), - [anon_sym_BSLASHsmartcite] = ACTIONS(6245), - [anon_sym_BSLASHSmartcite] = ACTIONS(6245), - [anon_sym_BSLASHsupercite] = ACTIONS(6245), - [anon_sym_BSLASHautocite] = ACTIONS(6245), - [anon_sym_BSLASHAutocite] = ACTIONS(6245), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHvolcite] = ACTIONS(6245), - [anon_sym_BSLASHVolcite] = ACTIONS(6245), - [anon_sym_BSLASHpvolcite] = ACTIONS(6245), - [anon_sym_BSLASHPvolcite] = ACTIONS(6245), - [anon_sym_BSLASHfvolcite] = ACTIONS(6245), - [anon_sym_BSLASHftvolcite] = ACTIONS(6245), - [anon_sym_BSLASHsvolcite] = ACTIONS(6245), - [anon_sym_BSLASHSvolcite] = ACTIONS(6245), - [anon_sym_BSLASHtvolcite] = ACTIONS(6245), - [anon_sym_BSLASHTvolcite] = ACTIONS(6245), - [anon_sym_BSLASHavolcite] = ACTIONS(6245), - [anon_sym_BSLASHAvolcite] = ACTIONS(6245), - [anon_sym_BSLASHnotecite] = ACTIONS(6245), - [anon_sym_BSLASHNotecite] = ACTIONS(6245), - [anon_sym_BSLASHpnotecite] = ACTIONS(6245), - [anon_sym_BSLASHPnotecite] = ACTIONS(6245), - [anon_sym_BSLASHfnotecite] = ACTIONS(6245), - [anon_sym_BSLASHlabel] = ACTIONS(6245), - [anon_sym_BSLASHref] = ACTIONS(6245), - [anon_sym_BSLASHeqref] = ACTIONS(6245), - [anon_sym_BSLASHvref] = ACTIONS(6245), - [anon_sym_BSLASHVref] = ACTIONS(6245), - [anon_sym_BSLASHautoref] = ACTIONS(6245), - [anon_sym_BSLASHpageref] = ACTIONS(6245), - [anon_sym_BSLASHcref] = ACTIONS(6245), - [anon_sym_BSLASHCref] = ACTIONS(6245), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), - [anon_sym_BSLASHnamecref] = ACTIONS(6245), - [anon_sym_BSLASHnameCref] = ACTIONS(6245), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), - [anon_sym_BSLASHlabelcref] = ACTIONS(6245), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), - [anon_sym_BSLASHcrefrange] = ACTIONS(6245), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCrefrange] = ACTIONS(6245), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), - [anon_sym_BSLASHnewlabel] = ACTIONS(6245), - [anon_sym_BSLASHnewcommand] = ACTIONS(6245), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHdef] = ACTIONS(6245), - [anon_sym_BSLASHlet] = ACTIONS(6245), - [anon_sym_BSLASHleft] = ACTIONS(6245), - [anon_sym_BSLASHbig] = ACTIONS(6245), - [anon_sym_BSLASHBig] = ACTIONS(6245), - [anon_sym_BSLASHbigg] = ACTIONS(6245), - [anon_sym_BSLASHBigg] = ACTIONS(6245), - [anon_sym_BSLASHbigl] = ACTIONS(6245), - [anon_sym_BSLASHBigl] = ACTIONS(6245), - [anon_sym_BSLASHbiggl] = ACTIONS(6245), - [anon_sym_BSLASHBiggl] = ACTIONS(6245), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6245), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), - [anon_sym_BSLASHgls] = ACTIONS(6245), - [anon_sym_BSLASHGls] = ACTIONS(6245), - [anon_sym_BSLASHGLS] = ACTIONS(6245), - [anon_sym_BSLASHglspl] = ACTIONS(6245), - [anon_sym_BSLASHGlspl] = ACTIONS(6245), - [anon_sym_BSLASHGLSpl] = ACTIONS(6245), - [anon_sym_BSLASHglsdisp] = ACTIONS(6245), - [anon_sym_BSLASHglslink] = ACTIONS(6245), - [anon_sym_BSLASHglstext] = ACTIONS(6245), - [anon_sym_BSLASHGlstext] = ACTIONS(6245), - [anon_sym_BSLASHGLStext] = ACTIONS(6245), - [anon_sym_BSLASHglsfirst] = ACTIONS(6245), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), - [anon_sym_BSLASHglsplural] = ACTIONS(6245), - [anon_sym_BSLASHGlsplural] = ACTIONS(6245), - [anon_sym_BSLASHGLSplural] = ACTIONS(6245), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHglsname] = ACTIONS(6245), - [anon_sym_BSLASHGlsname] = ACTIONS(6245), - [anon_sym_BSLASHGLSname] = ACTIONS(6245), - [anon_sym_BSLASHglssymbol] = ACTIONS(6245), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), - [anon_sym_BSLASHglsdesc] = ACTIONS(6245), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), - [anon_sym_BSLASHglsuseri] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), - [anon_sym_BSLASHglsuserii] = ACTIONS(6245), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), - [anon_sym_BSLASHglsuserv] = ACTIONS(6245), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), - [anon_sym_BSLASHglsuservi] = ACTIONS(6245), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), - [anon_sym_BSLASHnewacronym] = ACTIONS(6245), - [anon_sym_BSLASHacrshort] = ACTIONS(6245), - [anon_sym_BSLASHAcrshort] = ACTIONS(6245), - [anon_sym_BSLASHACRshort] = ACTIONS(6245), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), - [anon_sym_BSLASHacrlong] = ACTIONS(6245), - [anon_sym_BSLASHAcrlong] = ACTIONS(6245), - [anon_sym_BSLASHACRlong] = ACTIONS(6245), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), - [anon_sym_BSLASHacrfull] = ACTIONS(6245), - [anon_sym_BSLASHAcrfull] = ACTIONS(6245), - [anon_sym_BSLASHACRfull] = ACTIONS(6245), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), - [anon_sym_BSLASHacs] = ACTIONS(6245), - [anon_sym_BSLASHAcs] = ACTIONS(6245), - [anon_sym_BSLASHacsp] = ACTIONS(6245), - [anon_sym_BSLASHAcsp] = ACTIONS(6245), - [anon_sym_BSLASHacl] = ACTIONS(6245), - [anon_sym_BSLASHAcl] = ACTIONS(6245), - [anon_sym_BSLASHaclp] = ACTIONS(6245), - [anon_sym_BSLASHAclp] = ACTIONS(6245), - [anon_sym_BSLASHacf] = ACTIONS(6245), - [anon_sym_BSLASHAcf] = ACTIONS(6245), - [anon_sym_BSLASHacfp] = ACTIONS(6245), - [anon_sym_BSLASHAcfp] = ACTIONS(6245), - [anon_sym_BSLASHac] = ACTIONS(6245), - [anon_sym_BSLASHAc] = ACTIONS(6245), - [anon_sym_BSLASHacp] = ACTIONS(6245), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), - [anon_sym_BSLASHcolor] = ACTIONS(6245), - [anon_sym_BSLASHcolorbox] = ACTIONS(6245), - [anon_sym_BSLASHtextcolor] = ACTIONS(6245), - [anon_sym_BSLASHpagecolor] = ACTIONS(6245), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), - [anon_sym_BSLASHtext] = ACTIONS(6245), - [anon_sym_BSLASHintertext] = ACTIONS(6245), - [anon_sym_shortintertext] = ACTIONS(6245), - }, - [1169] = { - [sym_command_name] = ACTIONS(6493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6495), - [anon_sym_RBRACK] = ACTIONS(6495), - [anon_sym_COMMA] = ACTIONS(6495), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_LPAREN] = ACTIONS(6495), - [anon_sym_RPAREN] = ACTIONS(6495), - [anon_sym_BSLASHpart] = ACTIONS(6493), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddpart] = ACTIONS(6493), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6495), - [anon_sym_BSLASHchapter] = ACTIONS(6493), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddchap] = ACTIONS(6493), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsection] = ACTIONS(6493), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddsec] = ACTIONS(6493), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubsection] = ACTIONS(6493), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6493), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHparagraph] = ACTIONS(6493), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6493), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6495), - [anon_sym_BSLASHitem] = ACTIONS(6493), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6495), - [anon_sym_LBRACE] = ACTIONS(6495), - [sym_word] = ACTIONS(6493), - [sym_placeholder] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6495), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6493), - [anon_sym_GT] = ACTIONS(6493), - [anon_sym_BANG] = ACTIONS(6493), - [anon_sym_PIPE] = ACTIONS(6493), - [anon_sym_COLON] = ACTIONS(6493), - [anon_sym_SQUOTE] = ACTIONS(6493), - [anon_sym__] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6495), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6495), - [anon_sym_DOLLAR] = ACTIONS(6493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6495), - [anon_sym_BSLASHbegin] = ACTIONS(6493), - [anon_sym_BSLASHend] = ACTIONS(6493), - [anon_sym_BSLASHtitle] = ACTIONS(6493), - [anon_sym_BSLASHauthor] = ACTIONS(6493), - [anon_sym_BSLASHusepackage] = ACTIONS(6493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6493), - [anon_sym_BSLASHinclude] = ACTIONS(6493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6493), - [anon_sym_BSLASHinput] = ACTIONS(6493), - [anon_sym_BSLASHsubfile] = ACTIONS(6493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6493), - [anon_sym_BSLASHbibliography] = ACTIONS(6493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6493), - [anon_sym_BSLASHincludesvg] = ACTIONS(6493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6493), - [anon_sym_BSLASHimport] = ACTIONS(6493), - [anon_sym_BSLASHsubimport] = ACTIONS(6493), - [anon_sym_BSLASHinputfrom] = ACTIONS(6493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6493), - [anon_sym_BSLASHincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHcaption] = ACTIONS(6493), - [anon_sym_BSLASHcite] = ACTIONS(6493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCite] = ACTIONS(6493), - [anon_sym_BSLASHnocite] = ACTIONS(6493), - [anon_sym_BSLASHcitet] = ACTIONS(6493), - [anon_sym_BSLASHcitep] = ACTIONS(6493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteauthor] = ACTIONS(6493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitetitle] = ACTIONS(6493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteyear] = ACTIONS(6493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitedate] = ACTIONS(6493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteurl] = ACTIONS(6493), - [anon_sym_BSLASHfullcite] = ACTIONS(6493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6493), - [anon_sym_BSLASHcitealt] = ACTIONS(6493), - [anon_sym_BSLASHcitealp] = ACTIONS(6493), - [anon_sym_BSLASHcitetext] = ACTIONS(6493), - [anon_sym_BSLASHparencite] = ACTIONS(6493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHParencite] = ACTIONS(6493), - [anon_sym_BSLASHfootcite] = ACTIONS(6493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6493), - [anon_sym_BSLASHtextcite] = ACTIONS(6493), - [anon_sym_BSLASHTextcite] = ACTIONS(6493), - [anon_sym_BSLASHsmartcite] = ACTIONS(6493), - [anon_sym_BSLASHSmartcite] = ACTIONS(6493), - [anon_sym_BSLASHsupercite] = ACTIONS(6493), - [anon_sym_BSLASHautocite] = ACTIONS(6493), - [anon_sym_BSLASHAutocite] = ACTIONS(6493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHvolcite] = ACTIONS(6493), - [anon_sym_BSLASHVolcite] = ACTIONS(6493), - [anon_sym_BSLASHpvolcite] = ACTIONS(6493), - [anon_sym_BSLASHPvolcite] = ACTIONS(6493), - [anon_sym_BSLASHfvolcite] = ACTIONS(6493), - [anon_sym_BSLASHftvolcite] = ACTIONS(6493), - [anon_sym_BSLASHsvolcite] = ACTIONS(6493), - [anon_sym_BSLASHSvolcite] = ACTIONS(6493), - [anon_sym_BSLASHtvolcite] = ACTIONS(6493), - [anon_sym_BSLASHTvolcite] = ACTIONS(6493), - [anon_sym_BSLASHavolcite] = ACTIONS(6493), - [anon_sym_BSLASHAvolcite] = ACTIONS(6493), - [anon_sym_BSLASHnotecite] = ACTIONS(6493), - [anon_sym_BSLASHNotecite] = ACTIONS(6493), - [anon_sym_BSLASHpnotecite] = ACTIONS(6493), - [anon_sym_BSLASHPnotecite] = ACTIONS(6493), - [anon_sym_BSLASHfnotecite] = ACTIONS(6493), - [anon_sym_BSLASHlabel] = ACTIONS(6493), - [anon_sym_BSLASHref] = ACTIONS(6493), - [anon_sym_BSLASHeqref] = ACTIONS(6493), - [anon_sym_BSLASHvref] = ACTIONS(6493), - [anon_sym_BSLASHVref] = ACTIONS(6493), - [anon_sym_BSLASHautoref] = ACTIONS(6493), - [anon_sym_BSLASHpageref] = ACTIONS(6493), - [anon_sym_BSLASHcref] = ACTIONS(6493), - [anon_sym_BSLASHCref] = ACTIONS(6493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnameCref] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHlabelcref] = ACTIONS(6493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCrefrange] = ACTIONS(6493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnewlabel] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6495), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHdef] = ACTIONS(6493), - [anon_sym_BSLASHlet] = ACTIONS(6493), - [anon_sym_BSLASHleft] = ACTIONS(6493), - [anon_sym_BSLASHbig] = ACTIONS(6493), - [anon_sym_BSLASHBig] = ACTIONS(6493), - [anon_sym_BSLASHbigg] = ACTIONS(6493), - [anon_sym_BSLASHBigg] = ACTIONS(6493), - [anon_sym_BSLASHbigl] = ACTIONS(6493), - [anon_sym_BSLASHBigl] = ACTIONS(6493), - [anon_sym_BSLASHbiggl] = ACTIONS(6493), - [anon_sym_BSLASHBiggl] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6493), - [anon_sym_BSLASHgls] = ACTIONS(6493), - [anon_sym_BSLASHGls] = ACTIONS(6493), - [anon_sym_BSLASHGLS] = ACTIONS(6493), - [anon_sym_BSLASHglspl] = ACTIONS(6493), - [anon_sym_BSLASHGlspl] = ACTIONS(6493), - [anon_sym_BSLASHGLSpl] = ACTIONS(6493), - [anon_sym_BSLASHglsdisp] = ACTIONS(6493), - [anon_sym_BSLASHglslink] = ACTIONS(6493), - [anon_sym_BSLASHglstext] = ACTIONS(6493), - [anon_sym_BSLASHGlstext] = ACTIONS(6493), - [anon_sym_BSLASHGLStext] = ACTIONS(6493), - [anon_sym_BSLASHglsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6493), - [anon_sym_BSLASHglsplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSplural] = ACTIONS(6493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHglsname] = ACTIONS(6493), - [anon_sym_BSLASHGlsname] = ACTIONS(6493), - [anon_sym_BSLASHGLSname] = ACTIONS(6493), - [anon_sym_BSLASHglssymbol] = ACTIONS(6493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6493), - [anon_sym_BSLASHglsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6493), - [anon_sym_BSLASHglsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6493), - [anon_sym_BSLASHglsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6493), - [anon_sym_BSLASHglsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6493), - [anon_sym_BSLASHglsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6493), - [anon_sym_BSLASHnewacronym] = ACTIONS(6493), - [anon_sym_BSLASHacrshort] = ACTIONS(6493), - [anon_sym_BSLASHAcrshort] = ACTIONS(6493), - [anon_sym_BSLASHACRshort] = ACTIONS(6493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6493), - [anon_sym_BSLASHacrlong] = ACTIONS(6493), - [anon_sym_BSLASHAcrlong] = ACTIONS(6493), - [anon_sym_BSLASHACRlong] = ACTIONS(6493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6493), - [anon_sym_BSLASHacrfull] = ACTIONS(6493), - [anon_sym_BSLASHAcrfull] = ACTIONS(6493), - [anon_sym_BSLASHACRfull] = ACTIONS(6493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6493), - [anon_sym_BSLASHacs] = ACTIONS(6493), - [anon_sym_BSLASHAcs] = ACTIONS(6493), - [anon_sym_BSLASHacsp] = ACTIONS(6493), - [anon_sym_BSLASHAcsp] = ACTIONS(6493), - [anon_sym_BSLASHacl] = ACTIONS(6493), - [anon_sym_BSLASHAcl] = ACTIONS(6493), - [anon_sym_BSLASHaclp] = ACTIONS(6493), - [anon_sym_BSLASHAclp] = ACTIONS(6493), - [anon_sym_BSLASHacf] = ACTIONS(6493), - [anon_sym_BSLASHAcf] = ACTIONS(6493), - [anon_sym_BSLASHacfp] = ACTIONS(6493), - [anon_sym_BSLASHAcfp] = ACTIONS(6493), - [anon_sym_BSLASHac] = ACTIONS(6493), - [anon_sym_BSLASHAc] = ACTIONS(6493), - [anon_sym_BSLASHacp] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6493), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6493), - [anon_sym_BSLASHcolor] = ACTIONS(6493), - [anon_sym_BSLASHcolorbox] = ACTIONS(6493), - [anon_sym_BSLASHtextcolor] = ACTIONS(6493), - [anon_sym_BSLASHpagecolor] = ACTIONS(6493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6493), - [anon_sym_BSLASHtext] = ACTIONS(6493), - [anon_sym_BSLASHintertext] = ACTIONS(6493), - [anon_sym_shortintertext] = ACTIONS(6493), - }, - [1170] = { - [sym_command_name] = ACTIONS(6497), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(6499), - [anon_sym_RBRACK] = ACTIONS(6499), - [anon_sym_COMMA] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(6499), - [anon_sym_LPAREN] = ACTIONS(6499), - [anon_sym_RPAREN] = ACTIONS(6499), - [anon_sym_BSLASHpart] = ACTIONS(6497), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddpart] = ACTIONS(6497), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6499), - [anon_sym_BSLASHchapter] = ACTIONS(6497), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddchap] = ACTIONS(6497), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsection] = ACTIONS(6497), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddsec] = ACTIONS(6497), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubsection] = ACTIONS(6497), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6497), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHparagraph] = ACTIONS(6497), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6497), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6499), - [anon_sym_BSLASHitem] = ACTIONS(6497), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6499), - [anon_sym_LBRACE] = ACTIONS(6499), - [sym_word] = ACTIONS(6497), - [sym_placeholder] = ACTIONS(6499), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_STAR] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6499), - [anon_sym_LT] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6497), - [anon_sym_BANG] = ACTIONS(6497), - [anon_sym_PIPE] = ACTIONS(6497), - [anon_sym_COLON] = ACTIONS(6497), - [anon_sym_SQUOTE] = ACTIONS(6497), - [anon_sym__] = ACTIONS(6499), - [anon_sym_CARET] = ACTIONS(6499), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6499), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6499), - [anon_sym_DOLLAR] = ACTIONS(6497), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6499), - [anon_sym_BSLASHbegin] = ACTIONS(6497), - [anon_sym_BSLASHend] = ACTIONS(6497), - [anon_sym_BSLASHtitle] = ACTIONS(6497), - [anon_sym_BSLASHauthor] = ACTIONS(6497), - [anon_sym_BSLASHusepackage] = ACTIONS(6497), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6497), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6497), - [anon_sym_BSLASHinclude] = ACTIONS(6497), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6497), - [anon_sym_BSLASHinput] = ACTIONS(6497), - [anon_sym_BSLASHsubfile] = ACTIONS(6497), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6497), - [anon_sym_BSLASHbibliography] = ACTIONS(6497), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6497), - [anon_sym_BSLASHincludesvg] = ACTIONS(6497), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6497), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6497), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6497), - [anon_sym_BSLASHimport] = ACTIONS(6497), - [anon_sym_BSLASHsubimport] = ACTIONS(6497), - [anon_sym_BSLASHinputfrom] = ACTIONS(6497), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6497), - [anon_sym_BSLASHincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHcaption] = ACTIONS(6497), - [anon_sym_BSLASHcite] = ACTIONS(6497), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCite] = ACTIONS(6497), - [anon_sym_BSLASHnocite] = ACTIONS(6497), - [anon_sym_BSLASHcitet] = ACTIONS(6497), - [anon_sym_BSLASHcitep] = ACTIONS(6497), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteauthor] = ACTIONS(6497), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6497), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitetitle] = ACTIONS(6497), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteyear] = ACTIONS(6497), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitedate] = ACTIONS(6497), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteurl] = ACTIONS(6497), - [anon_sym_BSLASHfullcite] = ACTIONS(6497), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6497), - [anon_sym_BSLASHcitealt] = ACTIONS(6497), - [anon_sym_BSLASHcitealp] = ACTIONS(6497), - [anon_sym_BSLASHcitetext] = ACTIONS(6497), - [anon_sym_BSLASHparencite] = ACTIONS(6497), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHParencite] = ACTIONS(6497), - [anon_sym_BSLASHfootcite] = ACTIONS(6497), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6497), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6497), - [anon_sym_BSLASHtextcite] = ACTIONS(6497), - [anon_sym_BSLASHTextcite] = ACTIONS(6497), - [anon_sym_BSLASHsmartcite] = ACTIONS(6497), - [anon_sym_BSLASHSmartcite] = ACTIONS(6497), - [anon_sym_BSLASHsupercite] = ACTIONS(6497), - [anon_sym_BSLASHautocite] = ACTIONS(6497), - [anon_sym_BSLASHAutocite] = ACTIONS(6497), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHvolcite] = ACTIONS(6497), - [anon_sym_BSLASHVolcite] = ACTIONS(6497), - [anon_sym_BSLASHpvolcite] = ACTIONS(6497), - [anon_sym_BSLASHPvolcite] = ACTIONS(6497), - [anon_sym_BSLASHfvolcite] = ACTIONS(6497), - [anon_sym_BSLASHftvolcite] = ACTIONS(6497), - [anon_sym_BSLASHsvolcite] = ACTIONS(6497), - [anon_sym_BSLASHSvolcite] = ACTIONS(6497), - [anon_sym_BSLASHtvolcite] = ACTIONS(6497), - [anon_sym_BSLASHTvolcite] = ACTIONS(6497), - [anon_sym_BSLASHavolcite] = ACTIONS(6497), - [anon_sym_BSLASHAvolcite] = ACTIONS(6497), - [anon_sym_BSLASHnotecite] = ACTIONS(6497), - [anon_sym_BSLASHNotecite] = ACTIONS(6497), - [anon_sym_BSLASHpnotecite] = ACTIONS(6497), - [anon_sym_BSLASHPnotecite] = ACTIONS(6497), - [anon_sym_BSLASHfnotecite] = ACTIONS(6497), - [anon_sym_BSLASHlabel] = ACTIONS(6497), - [anon_sym_BSLASHref] = ACTIONS(6497), - [anon_sym_BSLASHeqref] = ACTIONS(6497), - [anon_sym_BSLASHvref] = ACTIONS(6497), - [anon_sym_BSLASHVref] = ACTIONS(6497), - [anon_sym_BSLASHautoref] = ACTIONS(6497), - [anon_sym_BSLASHpageref] = ACTIONS(6497), - [anon_sym_BSLASHcref] = ACTIONS(6497), - [anon_sym_BSLASHCref] = ACTIONS(6497), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnameCref] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHlabelcref] = ACTIONS(6497), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCrefrange] = ACTIONS(6497), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnewlabel] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6497), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6497), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6499), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHdef] = ACTIONS(6497), - [anon_sym_BSLASHlet] = ACTIONS(6497), - [anon_sym_BSLASHleft] = ACTIONS(6497), - [anon_sym_BSLASHbig] = ACTIONS(6497), - [anon_sym_BSLASHBig] = ACTIONS(6497), - [anon_sym_BSLASHbigg] = ACTIONS(6497), - [anon_sym_BSLASHBigg] = ACTIONS(6497), - [anon_sym_BSLASHbigl] = ACTIONS(6497), - [anon_sym_BSLASHBigl] = ACTIONS(6497), - [anon_sym_BSLASHbiggl] = ACTIONS(6497), - [anon_sym_BSLASHBiggl] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6497), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6497), - [anon_sym_BSLASHgls] = ACTIONS(6497), - [anon_sym_BSLASHGls] = ACTIONS(6497), - [anon_sym_BSLASHGLS] = ACTIONS(6497), - [anon_sym_BSLASHglspl] = ACTIONS(6497), - [anon_sym_BSLASHGlspl] = ACTIONS(6497), - [anon_sym_BSLASHGLSpl] = ACTIONS(6497), - [anon_sym_BSLASHglsdisp] = ACTIONS(6497), - [anon_sym_BSLASHglslink] = ACTIONS(6497), - [anon_sym_BSLASHglstext] = ACTIONS(6497), - [anon_sym_BSLASHGlstext] = ACTIONS(6497), - [anon_sym_BSLASHGLStext] = ACTIONS(6497), - [anon_sym_BSLASHglsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6497), - [anon_sym_BSLASHglsplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSplural] = ACTIONS(6497), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHglsname] = ACTIONS(6497), - [anon_sym_BSLASHGlsname] = ACTIONS(6497), - [anon_sym_BSLASHGLSname] = ACTIONS(6497), - [anon_sym_BSLASHglssymbol] = ACTIONS(6497), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6497), - [anon_sym_BSLASHglsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6497), - [anon_sym_BSLASHglsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6497), - [anon_sym_BSLASHglsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6497), - [anon_sym_BSLASHglsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6497), - [anon_sym_BSLASHglsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6497), - [anon_sym_BSLASHnewacronym] = ACTIONS(6497), - [anon_sym_BSLASHacrshort] = ACTIONS(6497), - [anon_sym_BSLASHAcrshort] = ACTIONS(6497), - [anon_sym_BSLASHACRshort] = ACTIONS(6497), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6497), - [anon_sym_BSLASHacrlong] = ACTIONS(6497), - [anon_sym_BSLASHAcrlong] = ACTIONS(6497), - [anon_sym_BSLASHACRlong] = ACTIONS(6497), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6497), - [anon_sym_BSLASHacrfull] = ACTIONS(6497), - [anon_sym_BSLASHAcrfull] = ACTIONS(6497), - [anon_sym_BSLASHACRfull] = ACTIONS(6497), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6497), - [anon_sym_BSLASHacs] = ACTIONS(6497), - [anon_sym_BSLASHAcs] = ACTIONS(6497), - [anon_sym_BSLASHacsp] = ACTIONS(6497), - [anon_sym_BSLASHAcsp] = ACTIONS(6497), - [anon_sym_BSLASHacl] = ACTIONS(6497), - [anon_sym_BSLASHAcl] = ACTIONS(6497), - [anon_sym_BSLASHaclp] = ACTIONS(6497), - [anon_sym_BSLASHAclp] = ACTIONS(6497), - [anon_sym_BSLASHacf] = ACTIONS(6497), - [anon_sym_BSLASHAcf] = ACTIONS(6497), - [anon_sym_BSLASHacfp] = ACTIONS(6497), - [anon_sym_BSLASHAcfp] = ACTIONS(6497), - [anon_sym_BSLASHac] = ACTIONS(6497), - [anon_sym_BSLASHAc] = ACTIONS(6497), - [anon_sym_BSLASHacp] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6497), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6497), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6497), - [anon_sym_BSLASHcolor] = ACTIONS(6497), - [anon_sym_BSLASHcolorbox] = ACTIONS(6497), - [anon_sym_BSLASHtextcolor] = ACTIONS(6497), - [anon_sym_BSLASHpagecolor] = ACTIONS(6497), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6497), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6497), - [anon_sym_BSLASHtext] = ACTIONS(6497), - [anon_sym_BSLASHintertext] = ACTIONS(6497), - [anon_sym_shortintertext] = ACTIONS(6497), - }, - [1171] = { - [sym_command_name] = ACTIONS(6501), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6501), - [anon_sym_LBRACK] = ACTIONS(6503), - [anon_sym_RBRACK] = ACTIONS(6503), - [anon_sym_COMMA] = ACTIONS(6503), - [anon_sym_EQ] = ACTIONS(6503), - [anon_sym_LPAREN] = ACTIONS(6503), - [anon_sym_RPAREN] = ACTIONS(6503), - [anon_sym_BSLASHpart] = ACTIONS(6501), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddpart] = ACTIONS(6501), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6503), - [anon_sym_BSLASHchapter] = ACTIONS(6501), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddchap] = ACTIONS(6501), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsection] = ACTIONS(6501), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddsec] = ACTIONS(6501), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubsection] = ACTIONS(6501), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6501), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHparagraph] = ACTIONS(6501), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6501), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6503), - [anon_sym_BSLASHitem] = ACTIONS(6501), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6503), - [anon_sym_LBRACE] = ACTIONS(6503), - [sym_word] = ACTIONS(6501), - [sym_placeholder] = ACTIONS(6503), - [anon_sym_PLUS] = ACTIONS(6503), - [anon_sym_DASH] = ACTIONS(6503), - [anon_sym_STAR] = ACTIONS(6503), - [anon_sym_SLASH] = ACTIONS(6503), - [anon_sym_LT] = ACTIONS(6501), - [anon_sym_GT] = ACTIONS(6501), - [anon_sym_BANG] = ACTIONS(6501), - [anon_sym_PIPE] = ACTIONS(6501), - [anon_sym_COLON] = ACTIONS(6501), - [anon_sym_SQUOTE] = ACTIONS(6501), - [anon_sym__] = ACTIONS(6503), - [anon_sym_CARET] = ACTIONS(6503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6503), - [anon_sym_DOLLAR] = ACTIONS(6501), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6503), - [anon_sym_BSLASHbegin] = ACTIONS(6501), - [anon_sym_BSLASHend] = ACTIONS(6501), - [anon_sym_BSLASHtitle] = ACTIONS(6501), - [anon_sym_BSLASHauthor] = ACTIONS(6501), - [anon_sym_BSLASHusepackage] = ACTIONS(6501), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6501), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6501), - [anon_sym_BSLASHinclude] = ACTIONS(6501), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6501), - [anon_sym_BSLASHinput] = ACTIONS(6501), - [anon_sym_BSLASHsubfile] = ACTIONS(6501), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6501), - [anon_sym_BSLASHbibliography] = ACTIONS(6501), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6501), - [anon_sym_BSLASHincludesvg] = ACTIONS(6501), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6501), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6501), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6501), - [anon_sym_BSLASHimport] = ACTIONS(6501), - [anon_sym_BSLASHsubimport] = ACTIONS(6501), - [anon_sym_BSLASHinputfrom] = ACTIONS(6501), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6501), - [anon_sym_BSLASHincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHcaption] = ACTIONS(6501), - [anon_sym_BSLASHcite] = ACTIONS(6501), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCite] = ACTIONS(6501), - [anon_sym_BSLASHnocite] = ACTIONS(6501), - [anon_sym_BSLASHcitet] = ACTIONS(6501), - [anon_sym_BSLASHcitep] = ACTIONS(6501), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteauthor] = ACTIONS(6501), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6501), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitetitle] = ACTIONS(6501), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteyear] = ACTIONS(6501), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitedate] = ACTIONS(6501), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteurl] = ACTIONS(6501), - [anon_sym_BSLASHfullcite] = ACTIONS(6501), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6501), - [anon_sym_BSLASHcitealt] = ACTIONS(6501), - [anon_sym_BSLASHcitealp] = ACTIONS(6501), - [anon_sym_BSLASHcitetext] = ACTIONS(6501), - [anon_sym_BSLASHparencite] = ACTIONS(6501), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHParencite] = ACTIONS(6501), - [anon_sym_BSLASHfootcite] = ACTIONS(6501), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6501), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6501), - [anon_sym_BSLASHtextcite] = ACTIONS(6501), - [anon_sym_BSLASHTextcite] = ACTIONS(6501), - [anon_sym_BSLASHsmartcite] = ACTIONS(6501), - [anon_sym_BSLASHSmartcite] = ACTIONS(6501), - [anon_sym_BSLASHsupercite] = ACTIONS(6501), - [anon_sym_BSLASHautocite] = ACTIONS(6501), - [anon_sym_BSLASHAutocite] = ACTIONS(6501), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHvolcite] = ACTIONS(6501), - [anon_sym_BSLASHVolcite] = ACTIONS(6501), - [anon_sym_BSLASHpvolcite] = ACTIONS(6501), - [anon_sym_BSLASHPvolcite] = ACTIONS(6501), - [anon_sym_BSLASHfvolcite] = ACTIONS(6501), - [anon_sym_BSLASHftvolcite] = ACTIONS(6501), - [anon_sym_BSLASHsvolcite] = ACTIONS(6501), - [anon_sym_BSLASHSvolcite] = ACTIONS(6501), - [anon_sym_BSLASHtvolcite] = ACTIONS(6501), - [anon_sym_BSLASHTvolcite] = ACTIONS(6501), - [anon_sym_BSLASHavolcite] = ACTIONS(6501), - [anon_sym_BSLASHAvolcite] = ACTIONS(6501), - [anon_sym_BSLASHnotecite] = ACTIONS(6501), - [anon_sym_BSLASHNotecite] = ACTIONS(6501), - [anon_sym_BSLASHpnotecite] = ACTIONS(6501), - [anon_sym_BSLASHPnotecite] = ACTIONS(6501), - [anon_sym_BSLASHfnotecite] = ACTIONS(6501), - [anon_sym_BSLASHlabel] = ACTIONS(6501), - [anon_sym_BSLASHref] = ACTIONS(6501), - [anon_sym_BSLASHeqref] = ACTIONS(6501), - [anon_sym_BSLASHvref] = ACTIONS(6501), - [anon_sym_BSLASHVref] = ACTIONS(6501), - [anon_sym_BSLASHautoref] = ACTIONS(6501), - [anon_sym_BSLASHpageref] = ACTIONS(6501), - [anon_sym_BSLASHcref] = ACTIONS(6501), - [anon_sym_BSLASHCref] = ACTIONS(6501), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnameCref] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHlabelcref] = ACTIONS(6501), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCrefrange] = ACTIONS(6501), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnewlabel] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6501), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6501), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6503), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHdef] = ACTIONS(6501), - [anon_sym_BSLASHlet] = ACTIONS(6501), - [anon_sym_BSLASHleft] = ACTIONS(6501), - [anon_sym_BSLASHbig] = ACTIONS(6501), - [anon_sym_BSLASHBig] = ACTIONS(6501), - [anon_sym_BSLASHbigg] = ACTIONS(6501), - [anon_sym_BSLASHBigg] = ACTIONS(6501), - [anon_sym_BSLASHbigl] = ACTIONS(6501), - [anon_sym_BSLASHBigl] = ACTIONS(6501), - [anon_sym_BSLASHbiggl] = ACTIONS(6501), - [anon_sym_BSLASHBiggl] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6501), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6501), - [anon_sym_BSLASHgls] = ACTIONS(6501), - [anon_sym_BSLASHGls] = ACTIONS(6501), - [anon_sym_BSLASHGLS] = ACTIONS(6501), - [anon_sym_BSLASHglspl] = ACTIONS(6501), - [anon_sym_BSLASHGlspl] = ACTIONS(6501), - [anon_sym_BSLASHGLSpl] = ACTIONS(6501), - [anon_sym_BSLASHglsdisp] = ACTIONS(6501), - [anon_sym_BSLASHglslink] = ACTIONS(6501), - [anon_sym_BSLASHglstext] = ACTIONS(6501), - [anon_sym_BSLASHGlstext] = ACTIONS(6501), - [anon_sym_BSLASHGLStext] = ACTIONS(6501), - [anon_sym_BSLASHglsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6501), - [anon_sym_BSLASHglsplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSplural] = ACTIONS(6501), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHglsname] = ACTIONS(6501), - [anon_sym_BSLASHGlsname] = ACTIONS(6501), - [anon_sym_BSLASHGLSname] = ACTIONS(6501), - [anon_sym_BSLASHglssymbol] = ACTIONS(6501), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6501), - [anon_sym_BSLASHglsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6501), - [anon_sym_BSLASHglsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6501), - [anon_sym_BSLASHglsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6501), - [anon_sym_BSLASHglsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6501), - [anon_sym_BSLASHglsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6501), - [anon_sym_BSLASHnewacronym] = ACTIONS(6501), - [anon_sym_BSLASHacrshort] = ACTIONS(6501), - [anon_sym_BSLASHAcrshort] = ACTIONS(6501), - [anon_sym_BSLASHACRshort] = ACTIONS(6501), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6501), - [anon_sym_BSLASHacrlong] = ACTIONS(6501), - [anon_sym_BSLASHAcrlong] = ACTIONS(6501), - [anon_sym_BSLASHACRlong] = ACTIONS(6501), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6501), - [anon_sym_BSLASHacrfull] = ACTIONS(6501), - [anon_sym_BSLASHAcrfull] = ACTIONS(6501), - [anon_sym_BSLASHACRfull] = ACTIONS(6501), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6501), - [anon_sym_BSLASHacs] = ACTIONS(6501), - [anon_sym_BSLASHAcs] = ACTIONS(6501), - [anon_sym_BSLASHacsp] = ACTIONS(6501), - [anon_sym_BSLASHAcsp] = ACTIONS(6501), - [anon_sym_BSLASHacl] = ACTIONS(6501), - [anon_sym_BSLASHAcl] = ACTIONS(6501), - [anon_sym_BSLASHaclp] = ACTIONS(6501), - [anon_sym_BSLASHAclp] = ACTIONS(6501), - [anon_sym_BSLASHacf] = ACTIONS(6501), - [anon_sym_BSLASHAcf] = ACTIONS(6501), - [anon_sym_BSLASHacfp] = ACTIONS(6501), - [anon_sym_BSLASHAcfp] = ACTIONS(6501), - [anon_sym_BSLASHac] = ACTIONS(6501), - [anon_sym_BSLASHAc] = ACTIONS(6501), - [anon_sym_BSLASHacp] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6501), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6501), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6501), - [anon_sym_BSLASHcolor] = ACTIONS(6501), - [anon_sym_BSLASHcolorbox] = ACTIONS(6501), - [anon_sym_BSLASHtextcolor] = ACTIONS(6501), - [anon_sym_BSLASHpagecolor] = ACTIONS(6501), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6501), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6501), - [anon_sym_BSLASHtext] = ACTIONS(6501), - [anon_sym_BSLASHintertext] = ACTIONS(6501), - [anon_sym_shortintertext] = ACTIONS(6501), - }, - [1172] = { - [sym_command_name] = ACTIONS(6505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(6507), - [anon_sym_RBRACK] = ACTIONS(6507), - [anon_sym_COMMA] = ACTIONS(6507), - [anon_sym_EQ] = ACTIONS(6507), - [anon_sym_LPAREN] = ACTIONS(6507), - [anon_sym_RPAREN] = ACTIONS(6507), - [anon_sym_BSLASHpart] = ACTIONS(6505), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddpart] = ACTIONS(6505), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6507), - [anon_sym_BSLASHchapter] = ACTIONS(6505), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddchap] = ACTIONS(6505), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsection] = ACTIONS(6505), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddsec] = ACTIONS(6505), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubsection] = ACTIONS(6505), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6505), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHparagraph] = ACTIONS(6505), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6505), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6507), - [anon_sym_BSLASHitem] = ACTIONS(6505), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [sym_word] = ACTIONS(6505), - [sym_placeholder] = ACTIONS(6507), - [anon_sym_PLUS] = ACTIONS(6507), - [anon_sym_DASH] = ACTIONS(6507), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_SLASH] = ACTIONS(6507), - [anon_sym_LT] = ACTIONS(6505), - [anon_sym_GT] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6505), - [anon_sym_PIPE] = ACTIONS(6505), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6505), - [anon_sym__] = ACTIONS(6507), - [anon_sym_CARET] = ACTIONS(6507), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6507), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6507), - [anon_sym_DOLLAR] = ACTIONS(6505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6507), - [anon_sym_BSLASHbegin] = ACTIONS(6505), - [anon_sym_BSLASHend] = ACTIONS(6505), - [anon_sym_BSLASHtitle] = ACTIONS(6505), - [anon_sym_BSLASHauthor] = ACTIONS(6505), - [anon_sym_BSLASHusepackage] = ACTIONS(6505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6505), - [anon_sym_BSLASHinclude] = ACTIONS(6505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6505), - [anon_sym_BSLASHinput] = ACTIONS(6505), - [anon_sym_BSLASHsubfile] = ACTIONS(6505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6505), - [anon_sym_BSLASHbibliography] = ACTIONS(6505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6505), - [anon_sym_BSLASHincludesvg] = ACTIONS(6505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6505), - [anon_sym_BSLASHimport] = ACTIONS(6505), - [anon_sym_BSLASHsubimport] = ACTIONS(6505), - [anon_sym_BSLASHinputfrom] = ACTIONS(6505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6505), - [anon_sym_BSLASHincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHcaption] = ACTIONS(6505), - [anon_sym_BSLASHcite] = ACTIONS(6505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCite] = ACTIONS(6505), - [anon_sym_BSLASHnocite] = ACTIONS(6505), - [anon_sym_BSLASHcitet] = ACTIONS(6505), - [anon_sym_BSLASHcitep] = ACTIONS(6505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteauthor] = ACTIONS(6505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitetitle] = ACTIONS(6505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteyear] = ACTIONS(6505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitedate] = ACTIONS(6505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteurl] = ACTIONS(6505), - [anon_sym_BSLASHfullcite] = ACTIONS(6505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6505), - [anon_sym_BSLASHcitealt] = ACTIONS(6505), - [anon_sym_BSLASHcitealp] = ACTIONS(6505), - [anon_sym_BSLASHcitetext] = ACTIONS(6505), - [anon_sym_BSLASHparencite] = ACTIONS(6505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHParencite] = ACTIONS(6505), - [anon_sym_BSLASHfootcite] = ACTIONS(6505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6505), - [anon_sym_BSLASHtextcite] = ACTIONS(6505), - [anon_sym_BSLASHTextcite] = ACTIONS(6505), - [anon_sym_BSLASHsmartcite] = ACTIONS(6505), - [anon_sym_BSLASHSmartcite] = ACTIONS(6505), - [anon_sym_BSLASHsupercite] = ACTIONS(6505), - [anon_sym_BSLASHautocite] = ACTIONS(6505), - [anon_sym_BSLASHAutocite] = ACTIONS(6505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHvolcite] = ACTIONS(6505), - [anon_sym_BSLASHVolcite] = ACTIONS(6505), - [anon_sym_BSLASHpvolcite] = ACTIONS(6505), - [anon_sym_BSLASHPvolcite] = ACTIONS(6505), - [anon_sym_BSLASHfvolcite] = ACTIONS(6505), - [anon_sym_BSLASHftvolcite] = ACTIONS(6505), - [anon_sym_BSLASHsvolcite] = ACTIONS(6505), - [anon_sym_BSLASHSvolcite] = ACTIONS(6505), - [anon_sym_BSLASHtvolcite] = ACTIONS(6505), - [anon_sym_BSLASHTvolcite] = ACTIONS(6505), - [anon_sym_BSLASHavolcite] = ACTIONS(6505), - [anon_sym_BSLASHAvolcite] = ACTIONS(6505), - [anon_sym_BSLASHnotecite] = ACTIONS(6505), - [anon_sym_BSLASHNotecite] = ACTIONS(6505), - [anon_sym_BSLASHpnotecite] = ACTIONS(6505), - [anon_sym_BSLASHPnotecite] = ACTIONS(6505), - [anon_sym_BSLASHfnotecite] = ACTIONS(6505), - [anon_sym_BSLASHlabel] = ACTIONS(6505), - [anon_sym_BSLASHref] = ACTIONS(6505), - [anon_sym_BSLASHeqref] = ACTIONS(6505), - [anon_sym_BSLASHvref] = ACTIONS(6505), - [anon_sym_BSLASHVref] = ACTIONS(6505), - [anon_sym_BSLASHautoref] = ACTIONS(6505), - [anon_sym_BSLASHpageref] = ACTIONS(6505), - [anon_sym_BSLASHcref] = ACTIONS(6505), - [anon_sym_BSLASHCref] = ACTIONS(6505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnameCref] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHlabelcref] = ACTIONS(6505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCrefrange] = ACTIONS(6505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnewlabel] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6507), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHdef] = ACTIONS(6505), - [anon_sym_BSLASHlet] = ACTIONS(6505), - [anon_sym_BSLASHleft] = ACTIONS(6505), - [anon_sym_BSLASHbig] = ACTIONS(6505), - [anon_sym_BSLASHBig] = ACTIONS(6505), - [anon_sym_BSLASHbigg] = ACTIONS(6505), - [anon_sym_BSLASHBigg] = ACTIONS(6505), - [anon_sym_BSLASHbigl] = ACTIONS(6505), - [anon_sym_BSLASHBigl] = ACTIONS(6505), - [anon_sym_BSLASHbiggl] = ACTIONS(6505), - [anon_sym_BSLASHBiggl] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6505), - [anon_sym_BSLASHgls] = ACTIONS(6505), - [anon_sym_BSLASHGls] = ACTIONS(6505), - [anon_sym_BSLASHGLS] = ACTIONS(6505), - [anon_sym_BSLASHglspl] = ACTIONS(6505), - [anon_sym_BSLASHGlspl] = ACTIONS(6505), - [anon_sym_BSLASHGLSpl] = ACTIONS(6505), - [anon_sym_BSLASHglsdisp] = ACTIONS(6505), - [anon_sym_BSLASHglslink] = ACTIONS(6505), - [anon_sym_BSLASHglstext] = ACTIONS(6505), - [anon_sym_BSLASHGlstext] = ACTIONS(6505), - [anon_sym_BSLASHGLStext] = ACTIONS(6505), - [anon_sym_BSLASHglsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6505), - [anon_sym_BSLASHglsplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSplural] = ACTIONS(6505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHglsname] = ACTIONS(6505), - [anon_sym_BSLASHGlsname] = ACTIONS(6505), - [anon_sym_BSLASHGLSname] = ACTIONS(6505), - [anon_sym_BSLASHglssymbol] = ACTIONS(6505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6505), - [anon_sym_BSLASHglsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6505), - [anon_sym_BSLASHglsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6505), - [anon_sym_BSLASHglsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6505), - [anon_sym_BSLASHglsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6505), - [anon_sym_BSLASHglsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6505), - [anon_sym_BSLASHnewacronym] = ACTIONS(6505), - [anon_sym_BSLASHacrshort] = ACTIONS(6505), - [anon_sym_BSLASHAcrshort] = ACTIONS(6505), - [anon_sym_BSLASHACRshort] = ACTIONS(6505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6505), - [anon_sym_BSLASHacrlong] = ACTIONS(6505), - [anon_sym_BSLASHAcrlong] = ACTIONS(6505), - [anon_sym_BSLASHACRlong] = ACTIONS(6505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6505), - [anon_sym_BSLASHacrfull] = ACTIONS(6505), - [anon_sym_BSLASHAcrfull] = ACTIONS(6505), - [anon_sym_BSLASHACRfull] = ACTIONS(6505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6505), - [anon_sym_BSLASHacs] = ACTIONS(6505), - [anon_sym_BSLASHAcs] = ACTIONS(6505), - [anon_sym_BSLASHacsp] = ACTIONS(6505), - [anon_sym_BSLASHAcsp] = ACTIONS(6505), - [anon_sym_BSLASHacl] = ACTIONS(6505), - [anon_sym_BSLASHAcl] = ACTIONS(6505), - [anon_sym_BSLASHaclp] = ACTIONS(6505), - [anon_sym_BSLASHAclp] = ACTIONS(6505), - [anon_sym_BSLASHacf] = ACTIONS(6505), - [anon_sym_BSLASHAcf] = ACTIONS(6505), - [anon_sym_BSLASHacfp] = ACTIONS(6505), - [anon_sym_BSLASHAcfp] = ACTIONS(6505), - [anon_sym_BSLASHac] = ACTIONS(6505), - [anon_sym_BSLASHAc] = ACTIONS(6505), - [anon_sym_BSLASHacp] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6505), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6505), - [anon_sym_BSLASHcolor] = ACTIONS(6505), - [anon_sym_BSLASHcolorbox] = ACTIONS(6505), - [anon_sym_BSLASHtextcolor] = ACTIONS(6505), - [anon_sym_BSLASHpagecolor] = ACTIONS(6505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6505), - [anon_sym_BSLASHtext] = ACTIONS(6505), - [anon_sym_BSLASHintertext] = ACTIONS(6505), - [anon_sym_shortintertext] = ACTIONS(6505), - }, - [1173] = { - [sym_command_name] = ACTIONS(6509), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6509), - [anon_sym_LBRACK] = ACTIONS(6511), - [anon_sym_RBRACK] = ACTIONS(6511), - [anon_sym_COMMA] = ACTIONS(6511), - [anon_sym_EQ] = ACTIONS(6511), - [anon_sym_LPAREN] = ACTIONS(6511), - [anon_sym_RPAREN] = ACTIONS(6511), - [anon_sym_BSLASHpart] = ACTIONS(6509), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddpart] = ACTIONS(6509), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6511), - [anon_sym_BSLASHchapter] = ACTIONS(6509), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddchap] = ACTIONS(6509), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsection] = ACTIONS(6509), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddsec] = ACTIONS(6509), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubsection] = ACTIONS(6509), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6509), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHparagraph] = ACTIONS(6509), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6509), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6511), - [anon_sym_BSLASHitem] = ACTIONS(6509), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6511), - [anon_sym_LBRACE] = ACTIONS(6511), - [sym_word] = ACTIONS(6509), - [sym_placeholder] = ACTIONS(6511), - [anon_sym_PLUS] = ACTIONS(6511), - [anon_sym_DASH] = ACTIONS(6511), - [anon_sym_STAR] = ACTIONS(6511), - [anon_sym_SLASH] = ACTIONS(6511), - [anon_sym_LT] = ACTIONS(6509), - [anon_sym_GT] = ACTIONS(6509), - [anon_sym_BANG] = ACTIONS(6509), - [anon_sym_PIPE] = ACTIONS(6509), - [anon_sym_COLON] = ACTIONS(6509), - [anon_sym_SQUOTE] = ACTIONS(6509), - [anon_sym__] = ACTIONS(6511), - [anon_sym_CARET] = ACTIONS(6511), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6511), - [anon_sym_DOLLAR] = ACTIONS(6509), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6511), - [anon_sym_BSLASHbegin] = ACTIONS(6509), - [anon_sym_BSLASHend] = ACTIONS(6509), - [anon_sym_BSLASHtitle] = ACTIONS(6509), - [anon_sym_BSLASHauthor] = ACTIONS(6509), - [anon_sym_BSLASHusepackage] = ACTIONS(6509), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6509), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6509), - [anon_sym_BSLASHinclude] = ACTIONS(6509), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6509), - [anon_sym_BSLASHinput] = ACTIONS(6509), - [anon_sym_BSLASHsubfile] = ACTIONS(6509), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6509), - [anon_sym_BSLASHbibliography] = ACTIONS(6509), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6509), - [anon_sym_BSLASHincludesvg] = ACTIONS(6509), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6509), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6509), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6509), - [anon_sym_BSLASHimport] = ACTIONS(6509), - [anon_sym_BSLASHsubimport] = ACTIONS(6509), - [anon_sym_BSLASHinputfrom] = ACTIONS(6509), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6509), - [anon_sym_BSLASHincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHcaption] = ACTIONS(6509), - [anon_sym_BSLASHcite] = ACTIONS(6509), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCite] = ACTIONS(6509), - [anon_sym_BSLASHnocite] = ACTIONS(6509), - [anon_sym_BSLASHcitet] = ACTIONS(6509), - [anon_sym_BSLASHcitep] = ACTIONS(6509), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteauthor] = ACTIONS(6509), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6509), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitetitle] = ACTIONS(6509), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteyear] = ACTIONS(6509), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitedate] = ACTIONS(6509), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteurl] = ACTIONS(6509), - [anon_sym_BSLASHfullcite] = ACTIONS(6509), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6509), - [anon_sym_BSLASHcitealt] = ACTIONS(6509), - [anon_sym_BSLASHcitealp] = ACTIONS(6509), - [anon_sym_BSLASHcitetext] = ACTIONS(6509), - [anon_sym_BSLASHparencite] = ACTIONS(6509), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHParencite] = ACTIONS(6509), - [anon_sym_BSLASHfootcite] = ACTIONS(6509), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6509), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6509), - [anon_sym_BSLASHtextcite] = ACTIONS(6509), - [anon_sym_BSLASHTextcite] = ACTIONS(6509), - [anon_sym_BSLASHsmartcite] = ACTIONS(6509), - [anon_sym_BSLASHSmartcite] = ACTIONS(6509), - [anon_sym_BSLASHsupercite] = ACTIONS(6509), - [anon_sym_BSLASHautocite] = ACTIONS(6509), - [anon_sym_BSLASHAutocite] = ACTIONS(6509), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHvolcite] = ACTIONS(6509), - [anon_sym_BSLASHVolcite] = ACTIONS(6509), - [anon_sym_BSLASHpvolcite] = ACTIONS(6509), - [anon_sym_BSLASHPvolcite] = ACTIONS(6509), - [anon_sym_BSLASHfvolcite] = ACTIONS(6509), - [anon_sym_BSLASHftvolcite] = ACTIONS(6509), - [anon_sym_BSLASHsvolcite] = ACTIONS(6509), - [anon_sym_BSLASHSvolcite] = ACTIONS(6509), - [anon_sym_BSLASHtvolcite] = ACTIONS(6509), - [anon_sym_BSLASHTvolcite] = ACTIONS(6509), - [anon_sym_BSLASHavolcite] = ACTIONS(6509), - [anon_sym_BSLASHAvolcite] = ACTIONS(6509), - [anon_sym_BSLASHnotecite] = ACTIONS(6509), - [anon_sym_BSLASHNotecite] = ACTIONS(6509), - [anon_sym_BSLASHpnotecite] = ACTIONS(6509), - [anon_sym_BSLASHPnotecite] = ACTIONS(6509), - [anon_sym_BSLASHfnotecite] = ACTIONS(6509), - [anon_sym_BSLASHlabel] = ACTIONS(6509), - [anon_sym_BSLASHref] = ACTIONS(6509), - [anon_sym_BSLASHeqref] = ACTIONS(6509), - [anon_sym_BSLASHvref] = ACTIONS(6509), - [anon_sym_BSLASHVref] = ACTIONS(6509), - [anon_sym_BSLASHautoref] = ACTIONS(6509), - [anon_sym_BSLASHpageref] = ACTIONS(6509), - [anon_sym_BSLASHcref] = ACTIONS(6509), - [anon_sym_BSLASHCref] = ACTIONS(6509), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnameCref] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHlabelcref] = ACTIONS(6509), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCrefrange] = ACTIONS(6509), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnewlabel] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6509), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6509), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6511), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHdef] = ACTIONS(6509), - [anon_sym_BSLASHlet] = ACTIONS(6509), - [anon_sym_BSLASHleft] = ACTIONS(6509), - [anon_sym_BSLASHbig] = ACTIONS(6509), - [anon_sym_BSLASHBig] = ACTIONS(6509), - [anon_sym_BSLASHbigg] = ACTIONS(6509), - [anon_sym_BSLASHBigg] = ACTIONS(6509), - [anon_sym_BSLASHbigl] = ACTIONS(6509), - [anon_sym_BSLASHBigl] = ACTIONS(6509), - [anon_sym_BSLASHbiggl] = ACTIONS(6509), - [anon_sym_BSLASHBiggl] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6509), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6509), - [anon_sym_BSLASHgls] = ACTIONS(6509), - [anon_sym_BSLASHGls] = ACTIONS(6509), - [anon_sym_BSLASHGLS] = ACTIONS(6509), - [anon_sym_BSLASHglspl] = ACTIONS(6509), - [anon_sym_BSLASHGlspl] = ACTIONS(6509), - [anon_sym_BSLASHGLSpl] = ACTIONS(6509), - [anon_sym_BSLASHglsdisp] = ACTIONS(6509), - [anon_sym_BSLASHglslink] = ACTIONS(6509), - [anon_sym_BSLASHglstext] = ACTIONS(6509), - [anon_sym_BSLASHGlstext] = ACTIONS(6509), - [anon_sym_BSLASHGLStext] = ACTIONS(6509), - [anon_sym_BSLASHglsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6509), - [anon_sym_BSLASHglsplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSplural] = ACTIONS(6509), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHglsname] = ACTIONS(6509), - [anon_sym_BSLASHGlsname] = ACTIONS(6509), - [anon_sym_BSLASHGLSname] = ACTIONS(6509), - [anon_sym_BSLASHglssymbol] = ACTIONS(6509), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6509), - [anon_sym_BSLASHglsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6509), - [anon_sym_BSLASHglsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6509), - [anon_sym_BSLASHglsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6509), - [anon_sym_BSLASHglsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6509), - [anon_sym_BSLASHglsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6509), - [anon_sym_BSLASHnewacronym] = ACTIONS(6509), - [anon_sym_BSLASHacrshort] = ACTIONS(6509), - [anon_sym_BSLASHAcrshort] = ACTIONS(6509), - [anon_sym_BSLASHACRshort] = ACTIONS(6509), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6509), - [anon_sym_BSLASHacrlong] = ACTIONS(6509), - [anon_sym_BSLASHAcrlong] = ACTIONS(6509), - [anon_sym_BSLASHACRlong] = ACTIONS(6509), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6509), - [anon_sym_BSLASHacrfull] = ACTIONS(6509), - [anon_sym_BSLASHAcrfull] = ACTIONS(6509), - [anon_sym_BSLASHACRfull] = ACTIONS(6509), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6509), - [anon_sym_BSLASHacs] = ACTIONS(6509), - [anon_sym_BSLASHAcs] = ACTIONS(6509), - [anon_sym_BSLASHacsp] = ACTIONS(6509), - [anon_sym_BSLASHAcsp] = ACTIONS(6509), - [anon_sym_BSLASHacl] = ACTIONS(6509), - [anon_sym_BSLASHAcl] = ACTIONS(6509), - [anon_sym_BSLASHaclp] = ACTIONS(6509), - [anon_sym_BSLASHAclp] = ACTIONS(6509), - [anon_sym_BSLASHacf] = ACTIONS(6509), - [anon_sym_BSLASHAcf] = ACTIONS(6509), - [anon_sym_BSLASHacfp] = ACTIONS(6509), - [anon_sym_BSLASHAcfp] = ACTIONS(6509), - [anon_sym_BSLASHac] = ACTIONS(6509), - [anon_sym_BSLASHAc] = ACTIONS(6509), - [anon_sym_BSLASHacp] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6509), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6509), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6509), - [anon_sym_BSLASHcolor] = ACTIONS(6509), - [anon_sym_BSLASHcolorbox] = ACTIONS(6509), - [anon_sym_BSLASHtextcolor] = ACTIONS(6509), - [anon_sym_BSLASHpagecolor] = ACTIONS(6509), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6509), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6509), - [anon_sym_BSLASHtext] = ACTIONS(6509), - [anon_sym_BSLASHintertext] = ACTIONS(6509), - [anon_sym_shortintertext] = ACTIONS(6509), - }, - [1174] = { - [sym_command_name] = ACTIONS(6513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6513), - [anon_sym_LBRACK] = ACTIONS(6515), - [anon_sym_RBRACK] = ACTIONS(6515), - [anon_sym_COMMA] = ACTIONS(6515), - [anon_sym_EQ] = ACTIONS(6515), - [anon_sym_LPAREN] = ACTIONS(6515), - [anon_sym_RPAREN] = ACTIONS(6515), - [anon_sym_BSLASHpart] = ACTIONS(6513), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddpart] = ACTIONS(6513), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6515), - [anon_sym_BSLASHchapter] = ACTIONS(6513), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddchap] = ACTIONS(6513), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsection] = ACTIONS(6513), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddsec] = ACTIONS(6513), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubsection] = ACTIONS(6513), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6513), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHparagraph] = ACTIONS(6513), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6513), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6515), - [anon_sym_BSLASHitem] = ACTIONS(6513), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(6515), - [sym_word] = ACTIONS(6513), - [sym_placeholder] = ACTIONS(6515), - [anon_sym_PLUS] = ACTIONS(6515), - [anon_sym_DASH] = ACTIONS(6515), - [anon_sym_STAR] = ACTIONS(6515), - [anon_sym_SLASH] = ACTIONS(6515), - [anon_sym_LT] = ACTIONS(6513), - [anon_sym_GT] = ACTIONS(6513), - [anon_sym_BANG] = ACTIONS(6513), - [anon_sym_PIPE] = ACTIONS(6513), - [anon_sym_COLON] = ACTIONS(6513), - [anon_sym_SQUOTE] = ACTIONS(6513), - [anon_sym__] = ACTIONS(6515), - [anon_sym_CARET] = ACTIONS(6515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6515), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6515), - [anon_sym_DOLLAR] = ACTIONS(6513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6515), - [anon_sym_BSLASHbegin] = ACTIONS(6513), - [anon_sym_BSLASHend] = ACTIONS(6513), - [anon_sym_BSLASHtitle] = ACTIONS(6513), - [anon_sym_BSLASHauthor] = ACTIONS(6513), - [anon_sym_BSLASHusepackage] = ACTIONS(6513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6513), - [anon_sym_BSLASHinclude] = ACTIONS(6513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6513), - [anon_sym_BSLASHinput] = ACTIONS(6513), - [anon_sym_BSLASHsubfile] = ACTIONS(6513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6513), - [anon_sym_BSLASHbibliography] = ACTIONS(6513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6513), - [anon_sym_BSLASHincludesvg] = ACTIONS(6513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6513), - [anon_sym_BSLASHimport] = ACTIONS(6513), - [anon_sym_BSLASHsubimport] = ACTIONS(6513), - [anon_sym_BSLASHinputfrom] = ACTIONS(6513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6513), - [anon_sym_BSLASHincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHcaption] = ACTIONS(6513), - [anon_sym_BSLASHcite] = ACTIONS(6513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCite] = ACTIONS(6513), - [anon_sym_BSLASHnocite] = ACTIONS(6513), - [anon_sym_BSLASHcitet] = ACTIONS(6513), - [anon_sym_BSLASHcitep] = ACTIONS(6513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteauthor] = ACTIONS(6513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitetitle] = ACTIONS(6513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteyear] = ACTIONS(6513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitedate] = ACTIONS(6513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteurl] = ACTIONS(6513), - [anon_sym_BSLASHfullcite] = ACTIONS(6513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6513), - [anon_sym_BSLASHcitealt] = ACTIONS(6513), - [anon_sym_BSLASHcitealp] = ACTIONS(6513), - [anon_sym_BSLASHcitetext] = ACTIONS(6513), - [anon_sym_BSLASHparencite] = ACTIONS(6513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHParencite] = ACTIONS(6513), - [anon_sym_BSLASHfootcite] = ACTIONS(6513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6513), - [anon_sym_BSLASHtextcite] = ACTIONS(6513), - [anon_sym_BSLASHTextcite] = ACTIONS(6513), - [anon_sym_BSLASHsmartcite] = ACTIONS(6513), - [anon_sym_BSLASHSmartcite] = ACTIONS(6513), - [anon_sym_BSLASHsupercite] = ACTIONS(6513), - [anon_sym_BSLASHautocite] = ACTIONS(6513), - [anon_sym_BSLASHAutocite] = ACTIONS(6513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHvolcite] = ACTIONS(6513), - [anon_sym_BSLASHVolcite] = ACTIONS(6513), - [anon_sym_BSLASHpvolcite] = ACTIONS(6513), - [anon_sym_BSLASHPvolcite] = ACTIONS(6513), - [anon_sym_BSLASHfvolcite] = ACTIONS(6513), - [anon_sym_BSLASHftvolcite] = ACTIONS(6513), - [anon_sym_BSLASHsvolcite] = ACTIONS(6513), - [anon_sym_BSLASHSvolcite] = ACTIONS(6513), - [anon_sym_BSLASHtvolcite] = ACTIONS(6513), - [anon_sym_BSLASHTvolcite] = ACTIONS(6513), - [anon_sym_BSLASHavolcite] = ACTIONS(6513), - [anon_sym_BSLASHAvolcite] = ACTIONS(6513), - [anon_sym_BSLASHnotecite] = ACTIONS(6513), - [anon_sym_BSLASHNotecite] = ACTIONS(6513), - [anon_sym_BSLASHpnotecite] = ACTIONS(6513), - [anon_sym_BSLASHPnotecite] = ACTIONS(6513), - [anon_sym_BSLASHfnotecite] = ACTIONS(6513), - [anon_sym_BSLASHlabel] = ACTIONS(6513), - [anon_sym_BSLASHref] = ACTIONS(6513), - [anon_sym_BSLASHeqref] = ACTIONS(6513), - [anon_sym_BSLASHvref] = ACTIONS(6513), - [anon_sym_BSLASHVref] = ACTIONS(6513), - [anon_sym_BSLASHautoref] = ACTIONS(6513), - [anon_sym_BSLASHpageref] = ACTIONS(6513), - [anon_sym_BSLASHcref] = ACTIONS(6513), - [anon_sym_BSLASHCref] = ACTIONS(6513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnameCref] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHlabelcref] = ACTIONS(6513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCrefrange] = ACTIONS(6513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnewlabel] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6515), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHdef] = ACTIONS(6513), - [anon_sym_BSLASHlet] = ACTIONS(6513), - [anon_sym_BSLASHleft] = ACTIONS(6513), - [anon_sym_BSLASHbig] = ACTIONS(6513), - [anon_sym_BSLASHBig] = ACTIONS(6513), - [anon_sym_BSLASHbigg] = ACTIONS(6513), - [anon_sym_BSLASHBigg] = ACTIONS(6513), - [anon_sym_BSLASHbigl] = ACTIONS(6513), - [anon_sym_BSLASHBigl] = ACTIONS(6513), - [anon_sym_BSLASHbiggl] = ACTIONS(6513), - [anon_sym_BSLASHBiggl] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6513), - [anon_sym_BSLASHgls] = ACTIONS(6513), - [anon_sym_BSLASHGls] = ACTIONS(6513), - [anon_sym_BSLASHGLS] = ACTIONS(6513), - [anon_sym_BSLASHglspl] = ACTIONS(6513), - [anon_sym_BSLASHGlspl] = ACTIONS(6513), - [anon_sym_BSLASHGLSpl] = ACTIONS(6513), - [anon_sym_BSLASHglsdisp] = ACTIONS(6513), - [anon_sym_BSLASHglslink] = ACTIONS(6513), - [anon_sym_BSLASHglstext] = ACTIONS(6513), - [anon_sym_BSLASHGlstext] = ACTIONS(6513), - [anon_sym_BSLASHGLStext] = ACTIONS(6513), - [anon_sym_BSLASHglsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6513), - [anon_sym_BSLASHglsplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSplural] = ACTIONS(6513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHglsname] = ACTIONS(6513), - [anon_sym_BSLASHGlsname] = ACTIONS(6513), - [anon_sym_BSLASHGLSname] = ACTIONS(6513), - [anon_sym_BSLASHglssymbol] = ACTIONS(6513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6513), - [anon_sym_BSLASHglsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6513), - [anon_sym_BSLASHglsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6513), - [anon_sym_BSLASHglsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6513), - [anon_sym_BSLASHglsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6513), - [anon_sym_BSLASHglsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6513), - [anon_sym_BSLASHnewacronym] = ACTIONS(6513), - [anon_sym_BSLASHacrshort] = ACTIONS(6513), - [anon_sym_BSLASHAcrshort] = ACTIONS(6513), - [anon_sym_BSLASHACRshort] = ACTIONS(6513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6513), - [anon_sym_BSLASHacrlong] = ACTIONS(6513), - [anon_sym_BSLASHAcrlong] = ACTIONS(6513), - [anon_sym_BSLASHACRlong] = ACTIONS(6513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6513), - [anon_sym_BSLASHacrfull] = ACTIONS(6513), - [anon_sym_BSLASHAcrfull] = ACTIONS(6513), - [anon_sym_BSLASHACRfull] = ACTIONS(6513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6513), - [anon_sym_BSLASHacs] = ACTIONS(6513), - [anon_sym_BSLASHAcs] = ACTIONS(6513), - [anon_sym_BSLASHacsp] = ACTIONS(6513), - [anon_sym_BSLASHAcsp] = ACTIONS(6513), - [anon_sym_BSLASHacl] = ACTIONS(6513), - [anon_sym_BSLASHAcl] = ACTIONS(6513), - [anon_sym_BSLASHaclp] = ACTIONS(6513), - [anon_sym_BSLASHAclp] = ACTIONS(6513), - [anon_sym_BSLASHacf] = ACTIONS(6513), - [anon_sym_BSLASHAcf] = ACTIONS(6513), - [anon_sym_BSLASHacfp] = ACTIONS(6513), - [anon_sym_BSLASHAcfp] = ACTIONS(6513), - [anon_sym_BSLASHac] = ACTIONS(6513), - [anon_sym_BSLASHAc] = ACTIONS(6513), - [anon_sym_BSLASHacp] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6513), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6513), - [anon_sym_BSLASHcolor] = ACTIONS(6513), - [anon_sym_BSLASHcolorbox] = ACTIONS(6513), - [anon_sym_BSLASHtextcolor] = ACTIONS(6513), - [anon_sym_BSLASHpagecolor] = ACTIONS(6513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6513), - [anon_sym_BSLASHtext] = ACTIONS(6513), - [anon_sym_BSLASHintertext] = ACTIONS(6513), - [anon_sym_shortintertext] = ACTIONS(6513), - }, - [1175] = { - [sym_command_name] = ACTIONS(6517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6517), - [anon_sym_LBRACK] = ACTIONS(6519), - [anon_sym_RBRACK] = ACTIONS(6519), - [anon_sym_COMMA] = ACTIONS(6519), - [anon_sym_EQ] = ACTIONS(6519), - [anon_sym_LPAREN] = ACTIONS(6519), - [anon_sym_RPAREN] = ACTIONS(6519), - [anon_sym_BSLASHpart] = ACTIONS(6517), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddpart] = ACTIONS(6517), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6519), - [anon_sym_BSLASHchapter] = ACTIONS(6517), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddchap] = ACTIONS(6517), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsection] = ACTIONS(6517), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddsec] = ACTIONS(6517), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubsection] = ACTIONS(6517), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6517), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHparagraph] = ACTIONS(6517), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6517), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6519), - [anon_sym_BSLASHitem] = ACTIONS(6517), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6519), - [anon_sym_LBRACE] = ACTIONS(6519), - [sym_word] = ACTIONS(6517), - [sym_placeholder] = ACTIONS(6519), - [anon_sym_PLUS] = ACTIONS(6519), - [anon_sym_DASH] = ACTIONS(6519), - [anon_sym_STAR] = ACTIONS(6519), - [anon_sym_SLASH] = ACTIONS(6519), - [anon_sym_LT] = ACTIONS(6517), - [anon_sym_GT] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(6517), - [anon_sym_PIPE] = ACTIONS(6517), - [anon_sym_COLON] = ACTIONS(6517), - [anon_sym_SQUOTE] = ACTIONS(6517), - [anon_sym__] = ACTIONS(6519), - [anon_sym_CARET] = ACTIONS(6519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6519), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6519), - [anon_sym_DOLLAR] = ACTIONS(6517), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6519), - [anon_sym_BSLASHbegin] = ACTIONS(6517), - [anon_sym_BSLASHend] = ACTIONS(6517), - [anon_sym_BSLASHtitle] = ACTIONS(6517), - [anon_sym_BSLASHauthor] = ACTIONS(6517), - [anon_sym_BSLASHusepackage] = ACTIONS(6517), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6517), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6517), - [anon_sym_BSLASHinclude] = ACTIONS(6517), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6517), - [anon_sym_BSLASHinput] = ACTIONS(6517), - [anon_sym_BSLASHsubfile] = ACTIONS(6517), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6517), - [anon_sym_BSLASHbibliography] = ACTIONS(6517), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6517), - [anon_sym_BSLASHincludesvg] = ACTIONS(6517), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6517), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6517), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6517), - [anon_sym_BSLASHimport] = ACTIONS(6517), - [anon_sym_BSLASHsubimport] = ACTIONS(6517), - [anon_sym_BSLASHinputfrom] = ACTIONS(6517), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6517), - [anon_sym_BSLASHincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHcaption] = ACTIONS(6517), - [anon_sym_BSLASHcite] = ACTIONS(6517), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCite] = ACTIONS(6517), - [anon_sym_BSLASHnocite] = ACTIONS(6517), - [anon_sym_BSLASHcitet] = ACTIONS(6517), - [anon_sym_BSLASHcitep] = ACTIONS(6517), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteauthor] = ACTIONS(6517), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6517), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitetitle] = ACTIONS(6517), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteyear] = ACTIONS(6517), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitedate] = ACTIONS(6517), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteurl] = ACTIONS(6517), - [anon_sym_BSLASHfullcite] = ACTIONS(6517), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6517), - [anon_sym_BSLASHcitealt] = ACTIONS(6517), - [anon_sym_BSLASHcitealp] = ACTIONS(6517), - [anon_sym_BSLASHcitetext] = ACTIONS(6517), - [anon_sym_BSLASHparencite] = ACTIONS(6517), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHParencite] = ACTIONS(6517), - [anon_sym_BSLASHfootcite] = ACTIONS(6517), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6517), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6517), - [anon_sym_BSLASHtextcite] = ACTIONS(6517), - [anon_sym_BSLASHTextcite] = ACTIONS(6517), - [anon_sym_BSLASHsmartcite] = ACTIONS(6517), - [anon_sym_BSLASHSmartcite] = ACTIONS(6517), - [anon_sym_BSLASHsupercite] = ACTIONS(6517), - [anon_sym_BSLASHautocite] = ACTIONS(6517), - [anon_sym_BSLASHAutocite] = ACTIONS(6517), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHvolcite] = ACTIONS(6517), - [anon_sym_BSLASHVolcite] = ACTIONS(6517), - [anon_sym_BSLASHpvolcite] = ACTIONS(6517), - [anon_sym_BSLASHPvolcite] = ACTIONS(6517), - [anon_sym_BSLASHfvolcite] = ACTIONS(6517), - [anon_sym_BSLASHftvolcite] = ACTIONS(6517), - [anon_sym_BSLASHsvolcite] = ACTIONS(6517), - [anon_sym_BSLASHSvolcite] = ACTIONS(6517), - [anon_sym_BSLASHtvolcite] = ACTIONS(6517), - [anon_sym_BSLASHTvolcite] = ACTIONS(6517), - [anon_sym_BSLASHavolcite] = ACTIONS(6517), - [anon_sym_BSLASHAvolcite] = ACTIONS(6517), - [anon_sym_BSLASHnotecite] = ACTIONS(6517), - [anon_sym_BSLASHNotecite] = ACTIONS(6517), - [anon_sym_BSLASHpnotecite] = ACTIONS(6517), - [anon_sym_BSLASHPnotecite] = ACTIONS(6517), - [anon_sym_BSLASHfnotecite] = ACTIONS(6517), - [anon_sym_BSLASHlabel] = ACTIONS(6517), - [anon_sym_BSLASHref] = ACTIONS(6517), - [anon_sym_BSLASHeqref] = ACTIONS(6517), - [anon_sym_BSLASHvref] = ACTIONS(6517), - [anon_sym_BSLASHVref] = ACTIONS(6517), - [anon_sym_BSLASHautoref] = ACTIONS(6517), - [anon_sym_BSLASHpageref] = ACTIONS(6517), - [anon_sym_BSLASHcref] = ACTIONS(6517), - [anon_sym_BSLASHCref] = ACTIONS(6517), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnameCref] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHlabelcref] = ACTIONS(6517), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCrefrange] = ACTIONS(6517), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnewlabel] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6517), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6517), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6519), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHdef] = ACTIONS(6517), - [anon_sym_BSLASHlet] = ACTIONS(6517), - [anon_sym_BSLASHleft] = ACTIONS(6517), - [anon_sym_BSLASHbig] = ACTIONS(6517), - [anon_sym_BSLASHBig] = ACTIONS(6517), - [anon_sym_BSLASHbigg] = ACTIONS(6517), - [anon_sym_BSLASHBigg] = ACTIONS(6517), - [anon_sym_BSLASHbigl] = ACTIONS(6517), - [anon_sym_BSLASHBigl] = ACTIONS(6517), - [anon_sym_BSLASHbiggl] = ACTIONS(6517), - [anon_sym_BSLASHBiggl] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6517), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6517), - [anon_sym_BSLASHgls] = ACTIONS(6517), - [anon_sym_BSLASHGls] = ACTIONS(6517), - [anon_sym_BSLASHGLS] = ACTIONS(6517), - [anon_sym_BSLASHglspl] = ACTIONS(6517), - [anon_sym_BSLASHGlspl] = ACTIONS(6517), - [anon_sym_BSLASHGLSpl] = ACTIONS(6517), - [anon_sym_BSLASHglsdisp] = ACTIONS(6517), - [anon_sym_BSLASHglslink] = ACTIONS(6517), - [anon_sym_BSLASHglstext] = ACTIONS(6517), - [anon_sym_BSLASHGlstext] = ACTIONS(6517), - [anon_sym_BSLASHGLStext] = ACTIONS(6517), - [anon_sym_BSLASHglsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6517), - [anon_sym_BSLASHglsplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSplural] = ACTIONS(6517), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHglsname] = ACTIONS(6517), - [anon_sym_BSLASHGlsname] = ACTIONS(6517), - [anon_sym_BSLASHGLSname] = ACTIONS(6517), - [anon_sym_BSLASHglssymbol] = ACTIONS(6517), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6517), - [anon_sym_BSLASHglsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6517), - [anon_sym_BSLASHglsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6517), - [anon_sym_BSLASHglsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6517), - [anon_sym_BSLASHglsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6517), - [anon_sym_BSLASHglsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6517), - [anon_sym_BSLASHnewacronym] = ACTIONS(6517), - [anon_sym_BSLASHacrshort] = ACTIONS(6517), - [anon_sym_BSLASHAcrshort] = ACTIONS(6517), - [anon_sym_BSLASHACRshort] = ACTIONS(6517), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6517), - [anon_sym_BSLASHacrlong] = ACTIONS(6517), - [anon_sym_BSLASHAcrlong] = ACTIONS(6517), - [anon_sym_BSLASHACRlong] = ACTIONS(6517), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6517), - [anon_sym_BSLASHacrfull] = ACTIONS(6517), - [anon_sym_BSLASHAcrfull] = ACTIONS(6517), - [anon_sym_BSLASHACRfull] = ACTIONS(6517), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6517), - [anon_sym_BSLASHacs] = ACTIONS(6517), - [anon_sym_BSLASHAcs] = ACTIONS(6517), - [anon_sym_BSLASHacsp] = ACTIONS(6517), - [anon_sym_BSLASHAcsp] = ACTIONS(6517), - [anon_sym_BSLASHacl] = ACTIONS(6517), - [anon_sym_BSLASHAcl] = ACTIONS(6517), - [anon_sym_BSLASHaclp] = ACTIONS(6517), - [anon_sym_BSLASHAclp] = ACTIONS(6517), - [anon_sym_BSLASHacf] = ACTIONS(6517), - [anon_sym_BSLASHAcf] = ACTIONS(6517), - [anon_sym_BSLASHacfp] = ACTIONS(6517), - [anon_sym_BSLASHAcfp] = ACTIONS(6517), - [anon_sym_BSLASHac] = ACTIONS(6517), - [anon_sym_BSLASHAc] = ACTIONS(6517), - [anon_sym_BSLASHacp] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6517), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6517), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6517), - [anon_sym_BSLASHcolor] = ACTIONS(6517), - [anon_sym_BSLASHcolorbox] = ACTIONS(6517), - [anon_sym_BSLASHtextcolor] = ACTIONS(6517), - [anon_sym_BSLASHpagecolor] = ACTIONS(6517), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6517), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6517), - [anon_sym_BSLASHtext] = ACTIONS(6517), - [anon_sym_BSLASHintertext] = ACTIONS(6517), - [anon_sym_shortintertext] = ACTIONS(6517), - }, - [1176] = { - [sym_command_name] = ACTIONS(6521), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6521), - [anon_sym_LBRACK] = ACTIONS(6523), - [anon_sym_RBRACK] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_EQ] = ACTIONS(6523), - [anon_sym_LPAREN] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_BSLASHpart] = ACTIONS(6521), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddpart] = ACTIONS(6521), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6523), - [anon_sym_BSLASHchapter] = ACTIONS(6521), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddchap] = ACTIONS(6521), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsection] = ACTIONS(6521), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddsec] = ACTIONS(6521), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubsection] = ACTIONS(6521), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6521), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHparagraph] = ACTIONS(6521), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6521), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6523), - [anon_sym_BSLASHitem] = ACTIONS(6521), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6523), - [anon_sym_LBRACE] = ACTIONS(6523), - [sym_word] = ACTIONS(6521), - [sym_placeholder] = ACTIONS(6523), - [anon_sym_PLUS] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6523), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_BANG] = ACTIONS(6521), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6521), - [anon_sym_SQUOTE] = ACTIONS(6521), - [anon_sym__] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6523), - [anon_sym_DOLLAR] = ACTIONS(6521), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6523), - [anon_sym_BSLASHbegin] = ACTIONS(6521), - [anon_sym_BSLASHend] = ACTIONS(6521), - [anon_sym_BSLASHtitle] = ACTIONS(6521), - [anon_sym_BSLASHauthor] = ACTIONS(6521), - [anon_sym_BSLASHusepackage] = ACTIONS(6521), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6521), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6521), - [anon_sym_BSLASHinclude] = ACTIONS(6521), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6521), - [anon_sym_BSLASHinput] = ACTIONS(6521), - [anon_sym_BSLASHsubfile] = ACTIONS(6521), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6521), - [anon_sym_BSLASHbibliography] = ACTIONS(6521), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6521), - [anon_sym_BSLASHincludesvg] = ACTIONS(6521), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6521), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6521), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6521), - [anon_sym_BSLASHimport] = ACTIONS(6521), - [anon_sym_BSLASHsubimport] = ACTIONS(6521), - [anon_sym_BSLASHinputfrom] = ACTIONS(6521), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6521), - [anon_sym_BSLASHincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHcaption] = ACTIONS(6521), - [anon_sym_BSLASHcite] = ACTIONS(6521), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCite] = ACTIONS(6521), - [anon_sym_BSLASHnocite] = ACTIONS(6521), - [anon_sym_BSLASHcitet] = ACTIONS(6521), - [anon_sym_BSLASHcitep] = ACTIONS(6521), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteauthor] = ACTIONS(6521), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6521), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitetitle] = ACTIONS(6521), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteyear] = ACTIONS(6521), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitedate] = ACTIONS(6521), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteurl] = ACTIONS(6521), - [anon_sym_BSLASHfullcite] = ACTIONS(6521), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6521), - [anon_sym_BSLASHcitealt] = ACTIONS(6521), - [anon_sym_BSLASHcitealp] = ACTIONS(6521), - [anon_sym_BSLASHcitetext] = ACTIONS(6521), - [anon_sym_BSLASHparencite] = ACTIONS(6521), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHParencite] = ACTIONS(6521), - [anon_sym_BSLASHfootcite] = ACTIONS(6521), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6521), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6521), - [anon_sym_BSLASHtextcite] = ACTIONS(6521), - [anon_sym_BSLASHTextcite] = ACTIONS(6521), - [anon_sym_BSLASHsmartcite] = ACTIONS(6521), - [anon_sym_BSLASHSmartcite] = ACTIONS(6521), - [anon_sym_BSLASHsupercite] = ACTIONS(6521), - [anon_sym_BSLASHautocite] = ACTIONS(6521), - [anon_sym_BSLASHAutocite] = ACTIONS(6521), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHvolcite] = ACTIONS(6521), - [anon_sym_BSLASHVolcite] = ACTIONS(6521), - [anon_sym_BSLASHpvolcite] = ACTIONS(6521), - [anon_sym_BSLASHPvolcite] = ACTIONS(6521), - [anon_sym_BSLASHfvolcite] = ACTIONS(6521), - [anon_sym_BSLASHftvolcite] = ACTIONS(6521), - [anon_sym_BSLASHsvolcite] = ACTIONS(6521), - [anon_sym_BSLASHSvolcite] = ACTIONS(6521), - [anon_sym_BSLASHtvolcite] = ACTIONS(6521), - [anon_sym_BSLASHTvolcite] = ACTIONS(6521), - [anon_sym_BSLASHavolcite] = ACTIONS(6521), - [anon_sym_BSLASHAvolcite] = ACTIONS(6521), - [anon_sym_BSLASHnotecite] = ACTIONS(6521), - [anon_sym_BSLASHNotecite] = ACTIONS(6521), - [anon_sym_BSLASHpnotecite] = ACTIONS(6521), - [anon_sym_BSLASHPnotecite] = ACTIONS(6521), - [anon_sym_BSLASHfnotecite] = ACTIONS(6521), - [anon_sym_BSLASHlabel] = ACTIONS(6521), - [anon_sym_BSLASHref] = ACTIONS(6521), - [anon_sym_BSLASHeqref] = ACTIONS(6521), - [anon_sym_BSLASHvref] = ACTIONS(6521), - [anon_sym_BSLASHVref] = ACTIONS(6521), - [anon_sym_BSLASHautoref] = ACTIONS(6521), - [anon_sym_BSLASHpageref] = ACTIONS(6521), - [anon_sym_BSLASHcref] = ACTIONS(6521), - [anon_sym_BSLASHCref] = ACTIONS(6521), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnameCref] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHlabelcref] = ACTIONS(6521), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCrefrange] = ACTIONS(6521), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnewlabel] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6521), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6521), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6523), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHdef] = ACTIONS(6521), - [anon_sym_BSLASHlet] = ACTIONS(6521), - [anon_sym_BSLASHleft] = ACTIONS(6521), - [anon_sym_BSLASHbig] = ACTIONS(6521), - [anon_sym_BSLASHBig] = ACTIONS(6521), - [anon_sym_BSLASHbigg] = ACTIONS(6521), - [anon_sym_BSLASHBigg] = ACTIONS(6521), - [anon_sym_BSLASHbigl] = ACTIONS(6521), - [anon_sym_BSLASHBigl] = ACTIONS(6521), - [anon_sym_BSLASHbiggl] = ACTIONS(6521), - [anon_sym_BSLASHBiggl] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6521), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6521), - [anon_sym_BSLASHgls] = ACTIONS(6521), - [anon_sym_BSLASHGls] = ACTIONS(6521), - [anon_sym_BSLASHGLS] = ACTIONS(6521), - [anon_sym_BSLASHglspl] = ACTIONS(6521), - [anon_sym_BSLASHGlspl] = ACTIONS(6521), - [anon_sym_BSLASHGLSpl] = ACTIONS(6521), - [anon_sym_BSLASHglsdisp] = ACTIONS(6521), - [anon_sym_BSLASHglslink] = ACTIONS(6521), - [anon_sym_BSLASHglstext] = ACTIONS(6521), - [anon_sym_BSLASHGlstext] = ACTIONS(6521), - [anon_sym_BSLASHGLStext] = ACTIONS(6521), - [anon_sym_BSLASHglsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6521), - [anon_sym_BSLASHglsplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSplural] = ACTIONS(6521), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHglsname] = ACTIONS(6521), - [anon_sym_BSLASHGlsname] = ACTIONS(6521), - [anon_sym_BSLASHGLSname] = ACTIONS(6521), - [anon_sym_BSLASHglssymbol] = ACTIONS(6521), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6521), - [anon_sym_BSLASHglsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6521), - [anon_sym_BSLASHglsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6521), - [anon_sym_BSLASHglsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6521), - [anon_sym_BSLASHglsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6521), - [anon_sym_BSLASHglsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6521), - [anon_sym_BSLASHnewacronym] = ACTIONS(6521), - [anon_sym_BSLASHacrshort] = ACTIONS(6521), - [anon_sym_BSLASHAcrshort] = ACTIONS(6521), - [anon_sym_BSLASHACRshort] = ACTIONS(6521), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6521), - [anon_sym_BSLASHacrlong] = ACTIONS(6521), - [anon_sym_BSLASHAcrlong] = ACTIONS(6521), - [anon_sym_BSLASHACRlong] = ACTIONS(6521), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6521), - [anon_sym_BSLASHacrfull] = ACTIONS(6521), - [anon_sym_BSLASHAcrfull] = ACTIONS(6521), - [anon_sym_BSLASHACRfull] = ACTIONS(6521), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6521), - [anon_sym_BSLASHacs] = ACTIONS(6521), - [anon_sym_BSLASHAcs] = ACTIONS(6521), - [anon_sym_BSLASHacsp] = ACTIONS(6521), - [anon_sym_BSLASHAcsp] = ACTIONS(6521), - [anon_sym_BSLASHacl] = ACTIONS(6521), - [anon_sym_BSLASHAcl] = ACTIONS(6521), - [anon_sym_BSLASHaclp] = ACTIONS(6521), - [anon_sym_BSLASHAclp] = ACTIONS(6521), - [anon_sym_BSLASHacf] = ACTIONS(6521), - [anon_sym_BSLASHAcf] = ACTIONS(6521), - [anon_sym_BSLASHacfp] = ACTIONS(6521), - [anon_sym_BSLASHAcfp] = ACTIONS(6521), - [anon_sym_BSLASHac] = ACTIONS(6521), - [anon_sym_BSLASHAc] = ACTIONS(6521), - [anon_sym_BSLASHacp] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6521), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6521), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6521), - [anon_sym_BSLASHcolor] = ACTIONS(6521), - [anon_sym_BSLASHcolorbox] = ACTIONS(6521), - [anon_sym_BSLASHtextcolor] = ACTIONS(6521), - [anon_sym_BSLASHpagecolor] = ACTIONS(6521), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6521), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6521), - [anon_sym_BSLASHtext] = ACTIONS(6521), - [anon_sym_BSLASHintertext] = ACTIONS(6521), - [anon_sym_shortintertext] = ACTIONS(6521), - }, - [1177] = { - [sym_command_name] = ACTIONS(6525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6527), - [anon_sym_LPAREN] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_BSLASHpart] = ACTIONS(6525), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddpart] = ACTIONS(6525), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6527), - [anon_sym_BSLASHchapter] = ACTIONS(6525), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddchap] = ACTIONS(6525), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsection] = ACTIONS(6525), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddsec] = ACTIONS(6525), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubsection] = ACTIONS(6525), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6525), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHparagraph] = ACTIONS(6525), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6525), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6527), - [anon_sym_BSLASHitem] = ACTIONS(6525), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6527), - [anon_sym_LBRACE] = ACTIONS(6527), - [sym_word] = ACTIONS(6525), - [sym_placeholder] = ACTIONS(6527), - [anon_sym_PLUS] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6527), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6527), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_BANG] = ACTIONS(6525), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_SQUOTE] = ACTIONS(6525), - [anon_sym__] = ACTIONS(6527), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6527), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6527), - [anon_sym_DOLLAR] = ACTIONS(6525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6527), - [anon_sym_BSLASHbegin] = ACTIONS(6525), - [anon_sym_BSLASHend] = ACTIONS(6525), - [anon_sym_BSLASHtitle] = ACTIONS(6525), - [anon_sym_BSLASHauthor] = ACTIONS(6525), - [anon_sym_BSLASHusepackage] = ACTIONS(6525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6525), - [anon_sym_BSLASHinclude] = ACTIONS(6525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6525), - [anon_sym_BSLASHinput] = ACTIONS(6525), - [anon_sym_BSLASHsubfile] = ACTIONS(6525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6525), - [anon_sym_BSLASHbibliography] = ACTIONS(6525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6525), - [anon_sym_BSLASHincludesvg] = ACTIONS(6525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6525), - [anon_sym_BSLASHimport] = ACTIONS(6525), - [anon_sym_BSLASHsubimport] = ACTIONS(6525), - [anon_sym_BSLASHinputfrom] = ACTIONS(6525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6525), - [anon_sym_BSLASHincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHcaption] = ACTIONS(6525), - [anon_sym_BSLASHcite] = ACTIONS(6525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCite] = ACTIONS(6525), - [anon_sym_BSLASHnocite] = ACTIONS(6525), - [anon_sym_BSLASHcitet] = ACTIONS(6525), - [anon_sym_BSLASHcitep] = ACTIONS(6525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteauthor] = ACTIONS(6525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitetitle] = ACTIONS(6525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteyear] = ACTIONS(6525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitedate] = ACTIONS(6525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteurl] = ACTIONS(6525), - [anon_sym_BSLASHfullcite] = ACTIONS(6525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6525), - [anon_sym_BSLASHcitealt] = ACTIONS(6525), - [anon_sym_BSLASHcitealp] = ACTIONS(6525), - [anon_sym_BSLASHcitetext] = ACTIONS(6525), - [anon_sym_BSLASHparencite] = ACTIONS(6525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHParencite] = ACTIONS(6525), - [anon_sym_BSLASHfootcite] = ACTIONS(6525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6525), - [anon_sym_BSLASHtextcite] = ACTIONS(6525), - [anon_sym_BSLASHTextcite] = ACTIONS(6525), - [anon_sym_BSLASHsmartcite] = ACTIONS(6525), - [anon_sym_BSLASHSmartcite] = ACTIONS(6525), - [anon_sym_BSLASHsupercite] = ACTIONS(6525), - [anon_sym_BSLASHautocite] = ACTIONS(6525), - [anon_sym_BSLASHAutocite] = ACTIONS(6525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHvolcite] = ACTIONS(6525), - [anon_sym_BSLASHVolcite] = ACTIONS(6525), - [anon_sym_BSLASHpvolcite] = ACTIONS(6525), - [anon_sym_BSLASHPvolcite] = ACTIONS(6525), - [anon_sym_BSLASHfvolcite] = ACTIONS(6525), - [anon_sym_BSLASHftvolcite] = ACTIONS(6525), - [anon_sym_BSLASHsvolcite] = ACTIONS(6525), - [anon_sym_BSLASHSvolcite] = ACTIONS(6525), - [anon_sym_BSLASHtvolcite] = ACTIONS(6525), - [anon_sym_BSLASHTvolcite] = ACTIONS(6525), - [anon_sym_BSLASHavolcite] = ACTIONS(6525), - [anon_sym_BSLASHAvolcite] = ACTIONS(6525), - [anon_sym_BSLASHnotecite] = ACTIONS(6525), - [anon_sym_BSLASHNotecite] = ACTIONS(6525), - [anon_sym_BSLASHpnotecite] = ACTIONS(6525), - [anon_sym_BSLASHPnotecite] = ACTIONS(6525), - [anon_sym_BSLASHfnotecite] = ACTIONS(6525), - [anon_sym_BSLASHlabel] = ACTIONS(6525), - [anon_sym_BSLASHref] = ACTIONS(6525), - [anon_sym_BSLASHeqref] = ACTIONS(6525), - [anon_sym_BSLASHvref] = ACTIONS(6525), - [anon_sym_BSLASHVref] = ACTIONS(6525), - [anon_sym_BSLASHautoref] = ACTIONS(6525), - [anon_sym_BSLASHpageref] = ACTIONS(6525), - [anon_sym_BSLASHcref] = ACTIONS(6525), - [anon_sym_BSLASHCref] = ACTIONS(6525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnameCref] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHlabelcref] = ACTIONS(6525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCrefrange] = ACTIONS(6525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnewlabel] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6527), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHdef] = ACTIONS(6525), - [anon_sym_BSLASHlet] = ACTIONS(6525), - [anon_sym_BSLASHleft] = ACTIONS(6525), - [anon_sym_BSLASHbig] = ACTIONS(6525), - [anon_sym_BSLASHBig] = ACTIONS(6525), - [anon_sym_BSLASHbigg] = ACTIONS(6525), - [anon_sym_BSLASHBigg] = ACTIONS(6525), - [anon_sym_BSLASHbigl] = ACTIONS(6525), - [anon_sym_BSLASHBigl] = ACTIONS(6525), - [anon_sym_BSLASHbiggl] = ACTIONS(6525), - [anon_sym_BSLASHBiggl] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6525), - [anon_sym_BSLASHgls] = ACTIONS(6525), - [anon_sym_BSLASHGls] = ACTIONS(6525), - [anon_sym_BSLASHGLS] = ACTIONS(6525), - [anon_sym_BSLASHglspl] = ACTIONS(6525), - [anon_sym_BSLASHGlspl] = ACTIONS(6525), - [anon_sym_BSLASHGLSpl] = ACTIONS(6525), - [anon_sym_BSLASHglsdisp] = ACTIONS(6525), - [anon_sym_BSLASHglslink] = ACTIONS(6525), - [anon_sym_BSLASHglstext] = ACTIONS(6525), - [anon_sym_BSLASHGlstext] = ACTIONS(6525), - [anon_sym_BSLASHGLStext] = ACTIONS(6525), - [anon_sym_BSLASHglsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6525), - [anon_sym_BSLASHglsplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSplural] = ACTIONS(6525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHglsname] = ACTIONS(6525), - [anon_sym_BSLASHGlsname] = ACTIONS(6525), - [anon_sym_BSLASHGLSname] = ACTIONS(6525), - [anon_sym_BSLASHglssymbol] = ACTIONS(6525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6525), - [anon_sym_BSLASHglsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6525), - [anon_sym_BSLASHglsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6525), - [anon_sym_BSLASHglsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6525), - [anon_sym_BSLASHglsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6525), - [anon_sym_BSLASHglsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6525), - [anon_sym_BSLASHnewacronym] = ACTIONS(6525), - [anon_sym_BSLASHacrshort] = ACTIONS(6525), - [anon_sym_BSLASHAcrshort] = ACTIONS(6525), - [anon_sym_BSLASHACRshort] = ACTIONS(6525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6525), - [anon_sym_BSLASHacrlong] = ACTIONS(6525), - [anon_sym_BSLASHAcrlong] = ACTIONS(6525), - [anon_sym_BSLASHACRlong] = ACTIONS(6525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6525), - [anon_sym_BSLASHacrfull] = ACTIONS(6525), - [anon_sym_BSLASHAcrfull] = ACTIONS(6525), - [anon_sym_BSLASHACRfull] = ACTIONS(6525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6525), - [anon_sym_BSLASHacs] = ACTIONS(6525), - [anon_sym_BSLASHAcs] = ACTIONS(6525), - [anon_sym_BSLASHacsp] = ACTIONS(6525), - [anon_sym_BSLASHAcsp] = ACTIONS(6525), - [anon_sym_BSLASHacl] = ACTIONS(6525), - [anon_sym_BSLASHAcl] = ACTIONS(6525), - [anon_sym_BSLASHaclp] = ACTIONS(6525), - [anon_sym_BSLASHAclp] = ACTIONS(6525), - [anon_sym_BSLASHacf] = ACTIONS(6525), - [anon_sym_BSLASHAcf] = ACTIONS(6525), - [anon_sym_BSLASHacfp] = ACTIONS(6525), - [anon_sym_BSLASHAcfp] = ACTIONS(6525), - [anon_sym_BSLASHac] = ACTIONS(6525), - [anon_sym_BSLASHAc] = ACTIONS(6525), - [anon_sym_BSLASHacp] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6525), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6525), - [anon_sym_BSLASHcolor] = ACTIONS(6525), - [anon_sym_BSLASHcolorbox] = ACTIONS(6525), - [anon_sym_BSLASHtextcolor] = ACTIONS(6525), - [anon_sym_BSLASHpagecolor] = ACTIONS(6525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6525), - [anon_sym_BSLASHtext] = ACTIONS(6525), - [anon_sym_BSLASHintertext] = ACTIONS(6525), - [anon_sym_shortintertext] = ACTIONS(6525), - }, - [1178] = { - [sym_command_name] = ACTIONS(6529), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6529), - [anon_sym_LBRACK] = ACTIONS(6531), - [anon_sym_RBRACK] = ACTIONS(6531), - [anon_sym_COMMA] = ACTIONS(6531), - [anon_sym_EQ] = ACTIONS(6531), - [anon_sym_LPAREN] = ACTIONS(6531), - [anon_sym_RPAREN] = ACTIONS(6531), - [anon_sym_BSLASHpart] = ACTIONS(6529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddpart] = ACTIONS(6529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6531), - [anon_sym_BSLASHchapter] = ACTIONS(6529), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddchap] = ACTIONS(6529), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsection] = ACTIONS(6529), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddsec] = ACTIONS(6529), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubsection] = ACTIONS(6529), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6529), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHparagraph] = ACTIONS(6529), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6529), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6531), - [anon_sym_BSLASHitem] = ACTIONS(6529), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6531), - [anon_sym_LBRACE] = ACTIONS(6531), - [sym_word] = ACTIONS(6529), - [sym_placeholder] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6531), - [anon_sym_DASH] = ACTIONS(6531), - [anon_sym_STAR] = ACTIONS(6531), - [anon_sym_SLASH] = ACTIONS(6531), - [anon_sym_LT] = ACTIONS(6529), - [anon_sym_GT] = ACTIONS(6529), - [anon_sym_BANG] = ACTIONS(6529), - [anon_sym_PIPE] = ACTIONS(6529), - [anon_sym_COLON] = ACTIONS(6529), - [anon_sym_SQUOTE] = ACTIONS(6529), - [anon_sym__] = ACTIONS(6531), - [anon_sym_CARET] = ACTIONS(6531), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6531), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6531), - [anon_sym_DOLLAR] = ACTIONS(6529), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6531), - [anon_sym_BSLASHbegin] = ACTIONS(6529), - [anon_sym_BSLASHend] = ACTIONS(6529), - [anon_sym_BSLASHtitle] = ACTIONS(6529), - [anon_sym_BSLASHauthor] = ACTIONS(6529), - [anon_sym_BSLASHusepackage] = ACTIONS(6529), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6529), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6529), - [anon_sym_BSLASHinclude] = ACTIONS(6529), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6529), - [anon_sym_BSLASHinput] = ACTIONS(6529), - [anon_sym_BSLASHsubfile] = ACTIONS(6529), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6529), - [anon_sym_BSLASHbibliography] = ACTIONS(6529), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6529), - [anon_sym_BSLASHincludesvg] = ACTIONS(6529), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6529), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6529), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6529), - [anon_sym_BSLASHimport] = ACTIONS(6529), - [anon_sym_BSLASHsubimport] = ACTIONS(6529), - [anon_sym_BSLASHinputfrom] = ACTIONS(6529), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6529), - [anon_sym_BSLASHincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHcaption] = ACTIONS(6529), - [anon_sym_BSLASHcite] = ACTIONS(6529), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCite] = ACTIONS(6529), - [anon_sym_BSLASHnocite] = ACTIONS(6529), - [anon_sym_BSLASHcitet] = ACTIONS(6529), - [anon_sym_BSLASHcitep] = ACTIONS(6529), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteauthor] = ACTIONS(6529), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6529), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitetitle] = ACTIONS(6529), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteyear] = ACTIONS(6529), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitedate] = ACTIONS(6529), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteurl] = ACTIONS(6529), - [anon_sym_BSLASHfullcite] = ACTIONS(6529), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6529), - [anon_sym_BSLASHcitealt] = ACTIONS(6529), - [anon_sym_BSLASHcitealp] = ACTIONS(6529), - [anon_sym_BSLASHcitetext] = ACTIONS(6529), - [anon_sym_BSLASHparencite] = ACTIONS(6529), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHParencite] = ACTIONS(6529), - [anon_sym_BSLASHfootcite] = ACTIONS(6529), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6529), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6529), - [anon_sym_BSLASHtextcite] = ACTIONS(6529), - [anon_sym_BSLASHTextcite] = ACTIONS(6529), - [anon_sym_BSLASHsmartcite] = ACTIONS(6529), - [anon_sym_BSLASHSmartcite] = ACTIONS(6529), - [anon_sym_BSLASHsupercite] = ACTIONS(6529), - [anon_sym_BSLASHautocite] = ACTIONS(6529), - [anon_sym_BSLASHAutocite] = ACTIONS(6529), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHvolcite] = ACTIONS(6529), - [anon_sym_BSLASHVolcite] = ACTIONS(6529), - [anon_sym_BSLASHpvolcite] = ACTIONS(6529), - [anon_sym_BSLASHPvolcite] = ACTIONS(6529), - [anon_sym_BSLASHfvolcite] = ACTIONS(6529), - [anon_sym_BSLASHftvolcite] = ACTIONS(6529), - [anon_sym_BSLASHsvolcite] = ACTIONS(6529), - [anon_sym_BSLASHSvolcite] = ACTIONS(6529), - [anon_sym_BSLASHtvolcite] = ACTIONS(6529), - [anon_sym_BSLASHTvolcite] = ACTIONS(6529), - [anon_sym_BSLASHavolcite] = ACTIONS(6529), - [anon_sym_BSLASHAvolcite] = ACTIONS(6529), - [anon_sym_BSLASHnotecite] = ACTIONS(6529), - [anon_sym_BSLASHNotecite] = ACTIONS(6529), - [anon_sym_BSLASHpnotecite] = ACTIONS(6529), - [anon_sym_BSLASHPnotecite] = ACTIONS(6529), - [anon_sym_BSLASHfnotecite] = ACTIONS(6529), - [anon_sym_BSLASHlabel] = ACTIONS(6529), - [anon_sym_BSLASHref] = ACTIONS(6529), - [anon_sym_BSLASHeqref] = ACTIONS(6529), - [anon_sym_BSLASHvref] = ACTIONS(6529), - [anon_sym_BSLASHVref] = ACTIONS(6529), - [anon_sym_BSLASHautoref] = ACTIONS(6529), - [anon_sym_BSLASHpageref] = ACTIONS(6529), - [anon_sym_BSLASHcref] = ACTIONS(6529), - [anon_sym_BSLASHCref] = ACTIONS(6529), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnameCref] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHlabelcref] = ACTIONS(6529), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCrefrange] = ACTIONS(6529), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnewlabel] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6529), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6529), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6531), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHdef] = ACTIONS(6529), - [anon_sym_BSLASHlet] = ACTIONS(6529), - [anon_sym_BSLASHleft] = ACTIONS(6529), - [anon_sym_BSLASHbig] = ACTIONS(6529), - [anon_sym_BSLASHBig] = ACTIONS(6529), - [anon_sym_BSLASHbigg] = ACTIONS(6529), - [anon_sym_BSLASHBigg] = ACTIONS(6529), - [anon_sym_BSLASHbigl] = ACTIONS(6529), - [anon_sym_BSLASHBigl] = ACTIONS(6529), - [anon_sym_BSLASHbiggl] = ACTIONS(6529), - [anon_sym_BSLASHBiggl] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6529), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6529), - [anon_sym_BSLASHgls] = ACTIONS(6529), - [anon_sym_BSLASHGls] = ACTIONS(6529), - [anon_sym_BSLASHGLS] = ACTIONS(6529), - [anon_sym_BSLASHglspl] = ACTIONS(6529), - [anon_sym_BSLASHGlspl] = ACTIONS(6529), - [anon_sym_BSLASHGLSpl] = ACTIONS(6529), - [anon_sym_BSLASHglsdisp] = ACTIONS(6529), - [anon_sym_BSLASHglslink] = ACTIONS(6529), - [anon_sym_BSLASHglstext] = ACTIONS(6529), - [anon_sym_BSLASHGlstext] = ACTIONS(6529), - [anon_sym_BSLASHGLStext] = ACTIONS(6529), - [anon_sym_BSLASHglsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6529), - [anon_sym_BSLASHglsplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSplural] = ACTIONS(6529), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHglsname] = ACTIONS(6529), - [anon_sym_BSLASHGlsname] = ACTIONS(6529), - [anon_sym_BSLASHGLSname] = ACTIONS(6529), - [anon_sym_BSLASHglssymbol] = ACTIONS(6529), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6529), - [anon_sym_BSLASHglsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6529), - [anon_sym_BSLASHglsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6529), - [anon_sym_BSLASHglsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6529), - [anon_sym_BSLASHglsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6529), - [anon_sym_BSLASHglsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6529), - [anon_sym_BSLASHnewacronym] = ACTIONS(6529), - [anon_sym_BSLASHacrshort] = ACTIONS(6529), - [anon_sym_BSLASHAcrshort] = ACTIONS(6529), - [anon_sym_BSLASHACRshort] = ACTIONS(6529), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6529), - [anon_sym_BSLASHacrlong] = ACTIONS(6529), - [anon_sym_BSLASHAcrlong] = ACTIONS(6529), - [anon_sym_BSLASHACRlong] = ACTIONS(6529), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6529), - [anon_sym_BSLASHacrfull] = ACTIONS(6529), - [anon_sym_BSLASHAcrfull] = ACTIONS(6529), - [anon_sym_BSLASHACRfull] = ACTIONS(6529), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6529), - [anon_sym_BSLASHacs] = ACTIONS(6529), - [anon_sym_BSLASHAcs] = ACTIONS(6529), - [anon_sym_BSLASHacsp] = ACTIONS(6529), - [anon_sym_BSLASHAcsp] = ACTIONS(6529), - [anon_sym_BSLASHacl] = ACTIONS(6529), - [anon_sym_BSLASHAcl] = ACTIONS(6529), - [anon_sym_BSLASHaclp] = ACTIONS(6529), - [anon_sym_BSLASHAclp] = ACTIONS(6529), - [anon_sym_BSLASHacf] = ACTIONS(6529), - [anon_sym_BSLASHAcf] = ACTIONS(6529), - [anon_sym_BSLASHacfp] = ACTIONS(6529), - [anon_sym_BSLASHAcfp] = ACTIONS(6529), - [anon_sym_BSLASHac] = ACTIONS(6529), - [anon_sym_BSLASHAc] = ACTIONS(6529), - [anon_sym_BSLASHacp] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6529), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6529), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6529), - [anon_sym_BSLASHcolor] = ACTIONS(6529), - [anon_sym_BSLASHcolorbox] = ACTIONS(6529), - [anon_sym_BSLASHtextcolor] = ACTIONS(6529), - [anon_sym_BSLASHpagecolor] = ACTIONS(6529), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6529), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6529), - [anon_sym_BSLASHtext] = ACTIONS(6529), - [anon_sym_BSLASHintertext] = ACTIONS(6529), - [anon_sym_shortintertext] = ACTIONS(6529), - }, - [1179] = { - [sym_command_name] = ACTIONS(6725), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6725), - [anon_sym_LBRACK] = ACTIONS(6727), - [anon_sym_RBRACK] = ACTIONS(6727), - [anon_sym_COMMA] = ACTIONS(6727), - [anon_sym_EQ] = ACTIONS(6727), - [anon_sym_LPAREN] = ACTIONS(6727), - [anon_sym_RPAREN] = ACTIONS(6727), - [anon_sym_BSLASHpart] = ACTIONS(6725), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6727), - [anon_sym_BSLASHaddpart] = ACTIONS(6725), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6727), - [anon_sym_BSLASHchapter] = ACTIONS(6725), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6727), - [anon_sym_BSLASHaddchap] = ACTIONS(6725), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6727), - [anon_sym_BSLASHsection] = ACTIONS(6725), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6727), - [anon_sym_BSLASHaddsec] = ACTIONS(6725), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6727), - [anon_sym_BSLASHsubsection] = ACTIONS(6725), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6727), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6725), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6727), - [anon_sym_BSLASHparagraph] = ACTIONS(6725), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6727), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6725), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6727), - [anon_sym_BSLASHitem] = ACTIONS(6725), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6727), - [anon_sym_LBRACE] = ACTIONS(6727), - [sym_word] = ACTIONS(6725), - [sym_placeholder] = ACTIONS(6727), - [anon_sym_PLUS] = ACTIONS(6727), - [anon_sym_DASH] = ACTIONS(6727), - [anon_sym_STAR] = ACTIONS(6727), - [anon_sym_SLASH] = ACTIONS(6727), - [anon_sym_LT] = ACTIONS(6725), - [anon_sym_GT] = ACTIONS(6725), - [anon_sym_BANG] = ACTIONS(6725), - [anon_sym_PIPE] = ACTIONS(6725), - [anon_sym_COLON] = ACTIONS(6725), - [anon_sym_SQUOTE] = ACTIONS(6725), - [anon_sym__] = ACTIONS(6727), - [anon_sym_CARET] = ACTIONS(6727), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6727), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6727), - [anon_sym_DOLLAR] = ACTIONS(6725), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6727), - [anon_sym_BSLASHbegin] = ACTIONS(6725), - [anon_sym_BSLASHend] = ACTIONS(6725), - [anon_sym_BSLASHtitle] = ACTIONS(6725), - [anon_sym_BSLASHauthor] = ACTIONS(6725), - [anon_sym_BSLASHusepackage] = ACTIONS(6725), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6725), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6725), - [anon_sym_BSLASHinclude] = ACTIONS(6725), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6725), - [anon_sym_BSLASHinput] = ACTIONS(6725), - [anon_sym_BSLASHsubfile] = ACTIONS(6725), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6725), - [anon_sym_BSLASHbibliography] = ACTIONS(6725), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6725), - [anon_sym_BSLASHincludesvg] = ACTIONS(6725), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6725), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6725), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6725), - [anon_sym_BSLASHimport] = ACTIONS(6725), - [anon_sym_BSLASHsubimport] = ACTIONS(6725), - [anon_sym_BSLASHinputfrom] = ACTIONS(6725), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6725), - [anon_sym_BSLASHincludefrom] = ACTIONS(6725), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6725), - [anon_sym_BSLASHcaption] = ACTIONS(6725), - [anon_sym_BSLASHcite] = ACTIONS(6725), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6727), - [anon_sym_BSLASHCite] = ACTIONS(6725), - [anon_sym_BSLASHnocite] = ACTIONS(6725), - [anon_sym_BSLASHcitet] = ACTIONS(6725), - [anon_sym_BSLASHcitep] = ACTIONS(6725), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6727), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6727), - [anon_sym_BSLASHciteauthor] = ACTIONS(6725), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6727), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6725), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6727), - [anon_sym_BSLASHcitetitle] = ACTIONS(6725), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6727), - [anon_sym_BSLASHciteyear] = ACTIONS(6725), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6727), - [anon_sym_BSLASHcitedate] = ACTIONS(6725), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6727), - [anon_sym_BSLASHciteurl] = ACTIONS(6725), - [anon_sym_BSLASHfullcite] = ACTIONS(6725), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6725), - [anon_sym_BSLASHcitealt] = ACTIONS(6725), - [anon_sym_BSLASHcitealp] = ACTIONS(6725), - [anon_sym_BSLASHcitetext] = ACTIONS(6725), - [anon_sym_BSLASHparencite] = ACTIONS(6725), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6727), - [anon_sym_BSLASHParencite] = ACTIONS(6725), - [anon_sym_BSLASHfootcite] = ACTIONS(6725), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6725), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6725), - [anon_sym_BSLASHtextcite] = ACTIONS(6725), - [anon_sym_BSLASHTextcite] = ACTIONS(6725), - [anon_sym_BSLASHsmartcite] = ACTIONS(6725), - [anon_sym_BSLASHSmartcite] = ACTIONS(6725), - [anon_sym_BSLASHsupercite] = ACTIONS(6725), - [anon_sym_BSLASHautocite] = ACTIONS(6725), - [anon_sym_BSLASHAutocite] = ACTIONS(6725), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6727), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6727), - [anon_sym_BSLASHvolcite] = ACTIONS(6725), - [anon_sym_BSLASHVolcite] = ACTIONS(6725), - [anon_sym_BSLASHpvolcite] = ACTIONS(6725), - [anon_sym_BSLASHPvolcite] = ACTIONS(6725), - [anon_sym_BSLASHfvolcite] = ACTIONS(6725), - [anon_sym_BSLASHftvolcite] = ACTIONS(6725), - [anon_sym_BSLASHsvolcite] = ACTIONS(6725), - [anon_sym_BSLASHSvolcite] = ACTIONS(6725), - [anon_sym_BSLASHtvolcite] = ACTIONS(6725), - [anon_sym_BSLASHTvolcite] = ACTIONS(6725), - [anon_sym_BSLASHavolcite] = ACTIONS(6725), - [anon_sym_BSLASHAvolcite] = ACTIONS(6725), - [anon_sym_BSLASHnotecite] = ACTIONS(6725), - [anon_sym_BSLASHNotecite] = ACTIONS(6725), - [anon_sym_BSLASHpnotecite] = ACTIONS(6725), - [anon_sym_BSLASHPnotecite] = ACTIONS(6725), - [anon_sym_BSLASHfnotecite] = ACTIONS(6725), - [anon_sym_BSLASHlabel] = ACTIONS(6725), - [anon_sym_BSLASHref] = ACTIONS(6725), - [anon_sym_BSLASHeqref] = ACTIONS(6725), - [anon_sym_BSLASHvref] = ACTIONS(6725), - [anon_sym_BSLASHVref] = ACTIONS(6725), - [anon_sym_BSLASHautoref] = ACTIONS(6725), - [anon_sym_BSLASHpageref] = ACTIONS(6725), - [anon_sym_BSLASHcref] = ACTIONS(6725), - [anon_sym_BSLASHCref] = ACTIONS(6725), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6727), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6727), - [anon_sym_BSLASHnamecref] = ACTIONS(6725), - [anon_sym_BSLASHnameCref] = ACTIONS(6725), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6725), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6725), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6725), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6725), - [anon_sym_BSLASHlabelcref] = ACTIONS(6725), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6725), - [anon_sym_BSLASHcrefrange] = ACTIONS(6725), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6727), - [anon_sym_BSLASHCrefrange] = ACTIONS(6725), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6727), - [anon_sym_BSLASHnewlabel] = ACTIONS(6725), - [anon_sym_BSLASHnewcommand] = ACTIONS(6725), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6727), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6725), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6727), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6725), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6727), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6725), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6727), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHdef] = ACTIONS(6725), - [anon_sym_BSLASHlet] = ACTIONS(6725), - [anon_sym_BSLASHleft] = ACTIONS(6725), - [anon_sym_BSLASHbig] = ACTIONS(6725), - [anon_sym_BSLASHBig] = ACTIONS(6725), - [anon_sym_BSLASHbigg] = ACTIONS(6725), - [anon_sym_BSLASHBigg] = ACTIONS(6725), - [anon_sym_BSLASHbigl] = ACTIONS(6725), - [anon_sym_BSLASHBigl] = ACTIONS(6725), - [anon_sym_BSLASHbiggl] = ACTIONS(6725), - [anon_sym_BSLASHBiggl] = ACTIONS(6725), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6725), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6725), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6725), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6725), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6725), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6725), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6725), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6725), - [anon_sym_BSLASHgls] = ACTIONS(6725), - [anon_sym_BSLASHGls] = ACTIONS(6725), - [anon_sym_BSLASHGLS] = ACTIONS(6725), - [anon_sym_BSLASHglspl] = ACTIONS(6725), - [anon_sym_BSLASHGlspl] = ACTIONS(6725), - [anon_sym_BSLASHGLSpl] = ACTIONS(6725), - [anon_sym_BSLASHglsdisp] = ACTIONS(6725), - [anon_sym_BSLASHglslink] = ACTIONS(6725), - [anon_sym_BSLASHglstext] = ACTIONS(6725), - [anon_sym_BSLASHGlstext] = ACTIONS(6725), - [anon_sym_BSLASHGLStext] = ACTIONS(6725), - [anon_sym_BSLASHglsfirst] = ACTIONS(6725), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6725), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6725), - [anon_sym_BSLASHglsplural] = ACTIONS(6725), - [anon_sym_BSLASHGlsplural] = ACTIONS(6725), - [anon_sym_BSLASHGLSplural] = ACTIONS(6725), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6725), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6725), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6725), - [anon_sym_BSLASHglsname] = ACTIONS(6725), - [anon_sym_BSLASHGlsname] = ACTIONS(6725), - [anon_sym_BSLASHGLSname] = ACTIONS(6725), - [anon_sym_BSLASHglssymbol] = ACTIONS(6725), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6725), - [anon_sym_BSLASHglsdesc] = ACTIONS(6725), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6725), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6725), - [anon_sym_BSLASHglsuseri] = ACTIONS(6725), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6725), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6725), - [anon_sym_BSLASHglsuserii] = ACTIONS(6725), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6725), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6725), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6725), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6725), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6725), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6725), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6725), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6725), - [anon_sym_BSLASHglsuserv] = ACTIONS(6725), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6725), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6725), - [anon_sym_BSLASHglsuservi] = ACTIONS(6725), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6725), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6725), - [anon_sym_BSLASHnewacronym] = ACTIONS(6725), - [anon_sym_BSLASHacrshort] = ACTIONS(6725), - [anon_sym_BSLASHAcrshort] = ACTIONS(6725), - [anon_sym_BSLASHACRshort] = ACTIONS(6725), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6725), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6725), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6725), - [anon_sym_BSLASHacrlong] = ACTIONS(6725), - [anon_sym_BSLASHAcrlong] = ACTIONS(6725), - [anon_sym_BSLASHACRlong] = ACTIONS(6725), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6725), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6725), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6725), - [anon_sym_BSLASHacrfull] = ACTIONS(6725), - [anon_sym_BSLASHAcrfull] = ACTIONS(6725), - [anon_sym_BSLASHACRfull] = ACTIONS(6725), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6725), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6725), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6725), - [anon_sym_BSLASHacs] = ACTIONS(6725), - [anon_sym_BSLASHAcs] = ACTIONS(6725), - [anon_sym_BSLASHacsp] = ACTIONS(6725), - [anon_sym_BSLASHAcsp] = ACTIONS(6725), - [anon_sym_BSLASHacl] = ACTIONS(6725), - [anon_sym_BSLASHAcl] = ACTIONS(6725), - [anon_sym_BSLASHaclp] = ACTIONS(6725), - [anon_sym_BSLASHAclp] = ACTIONS(6725), - [anon_sym_BSLASHacf] = ACTIONS(6725), - [anon_sym_BSLASHAcf] = ACTIONS(6725), - [anon_sym_BSLASHacfp] = ACTIONS(6725), - [anon_sym_BSLASHAcfp] = ACTIONS(6725), - [anon_sym_BSLASHac] = ACTIONS(6725), - [anon_sym_BSLASHAc] = ACTIONS(6725), - [anon_sym_BSLASHacp] = ACTIONS(6725), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6725), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6725), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6725), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6725), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6725), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6725), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6725), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6725), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6725), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6725), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6725), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6727), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6725), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6727), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6725), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6725), - [anon_sym_BSLASHcolor] = ACTIONS(6725), - [anon_sym_BSLASHcolorbox] = ACTIONS(6725), - [anon_sym_BSLASHtextcolor] = ACTIONS(6725), - [anon_sym_BSLASHpagecolor] = ACTIONS(6725), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6725), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6725), - [anon_sym_BSLASHtext] = ACTIONS(6725), - [anon_sym_BSLASHintertext] = ACTIONS(6725), - [anon_sym_shortintertext] = ACTIONS(6725), - }, - [1180] = { - [sym_command_name] = ACTIONS(6341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(6343), - [anon_sym_RBRACK] = ACTIONS(6343), - [anon_sym_COMMA] = ACTIONS(6343), - [anon_sym_EQ] = ACTIONS(6343), - [anon_sym_LPAREN] = ACTIONS(6343), - [anon_sym_RPAREN] = ACTIONS(6343), - [anon_sym_BSLASHpart] = ACTIONS(6341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddpart] = ACTIONS(6341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6343), - [anon_sym_BSLASHchapter] = ACTIONS(6341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddchap] = ACTIONS(6341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsection] = ACTIONS(6341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddsec] = ACTIONS(6341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubsection] = ACTIONS(6341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHparagraph] = ACTIONS(6341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6343), - [anon_sym_BSLASHitem] = ACTIONS(6341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6343), - [anon_sym_LBRACE] = ACTIONS(6343), - [sym_word] = ACTIONS(6341), - [sym_placeholder] = ACTIONS(6343), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_LT] = ACTIONS(6341), - [anon_sym_GT] = ACTIONS(6341), - [anon_sym_BANG] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_SQUOTE] = ACTIONS(6341), - [anon_sym__] = ACTIONS(6343), - [anon_sym_CARET] = ACTIONS(6343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6343), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6343), - [anon_sym_DOLLAR] = ACTIONS(6341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6343), - [anon_sym_BSLASHbegin] = ACTIONS(6341), - [anon_sym_BSLASHtitle] = ACTIONS(6341), - [anon_sym_BSLASHauthor] = ACTIONS(6341), - [anon_sym_BSLASHusepackage] = ACTIONS(6341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6341), - [anon_sym_BSLASHinclude] = ACTIONS(6341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6341), - [anon_sym_BSLASHinput] = ACTIONS(6341), - [anon_sym_BSLASHsubfile] = ACTIONS(6341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6341), - [anon_sym_BSLASHbibliography] = ACTIONS(6341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6341), - [anon_sym_BSLASHincludesvg] = ACTIONS(6341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6341), - [anon_sym_BSLASHimport] = ACTIONS(6341), - [anon_sym_BSLASHsubimport] = ACTIONS(6341), - [anon_sym_BSLASHinputfrom] = ACTIONS(6341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6341), - [anon_sym_BSLASHincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHcaption] = ACTIONS(6341), - [anon_sym_BSLASHcite] = ACTIONS(6341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCite] = ACTIONS(6341), - [anon_sym_BSLASHnocite] = ACTIONS(6341), - [anon_sym_BSLASHcitet] = ACTIONS(6341), - [anon_sym_BSLASHcitep] = ACTIONS(6341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteauthor] = ACTIONS(6341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitetitle] = ACTIONS(6341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteyear] = ACTIONS(6341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitedate] = ACTIONS(6341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteurl] = ACTIONS(6341), - [anon_sym_BSLASHfullcite] = ACTIONS(6341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6341), - [anon_sym_BSLASHcitealt] = ACTIONS(6341), - [anon_sym_BSLASHcitealp] = ACTIONS(6341), - [anon_sym_BSLASHcitetext] = ACTIONS(6341), - [anon_sym_BSLASHparencite] = ACTIONS(6341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHParencite] = ACTIONS(6341), - [anon_sym_BSLASHfootcite] = ACTIONS(6341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6341), - [anon_sym_BSLASHtextcite] = ACTIONS(6341), - [anon_sym_BSLASHTextcite] = ACTIONS(6341), - [anon_sym_BSLASHsmartcite] = ACTIONS(6341), - [anon_sym_BSLASHSmartcite] = ACTIONS(6341), - [anon_sym_BSLASHsupercite] = ACTIONS(6341), - [anon_sym_BSLASHautocite] = ACTIONS(6341), - [anon_sym_BSLASHAutocite] = ACTIONS(6341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHvolcite] = ACTIONS(6341), - [anon_sym_BSLASHVolcite] = ACTIONS(6341), - [anon_sym_BSLASHpvolcite] = ACTIONS(6341), - [anon_sym_BSLASHPvolcite] = ACTIONS(6341), - [anon_sym_BSLASHfvolcite] = ACTIONS(6341), - [anon_sym_BSLASHftvolcite] = ACTIONS(6341), - [anon_sym_BSLASHsvolcite] = ACTIONS(6341), - [anon_sym_BSLASHSvolcite] = ACTIONS(6341), - [anon_sym_BSLASHtvolcite] = ACTIONS(6341), - [anon_sym_BSLASHTvolcite] = ACTIONS(6341), - [anon_sym_BSLASHavolcite] = ACTIONS(6341), - [anon_sym_BSLASHAvolcite] = ACTIONS(6341), - [anon_sym_BSLASHnotecite] = ACTIONS(6341), - [anon_sym_BSLASHNotecite] = ACTIONS(6341), - [anon_sym_BSLASHpnotecite] = ACTIONS(6341), - [anon_sym_BSLASHPnotecite] = ACTIONS(6341), - [anon_sym_BSLASHfnotecite] = ACTIONS(6341), - [anon_sym_BSLASHlabel] = ACTIONS(6341), - [anon_sym_BSLASHref] = ACTIONS(6341), - [anon_sym_BSLASHeqref] = ACTIONS(6341), - [anon_sym_BSLASHvref] = ACTIONS(6341), - [anon_sym_BSLASHVref] = ACTIONS(6341), - [anon_sym_BSLASHautoref] = ACTIONS(6341), - [anon_sym_BSLASHpageref] = ACTIONS(6341), - [anon_sym_BSLASHcref] = ACTIONS(6341), - [anon_sym_BSLASHCref] = ACTIONS(6341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnameCref] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHlabelcref] = ACTIONS(6341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCrefrange] = ACTIONS(6341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnewlabel] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6343), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHdef] = ACTIONS(6341), - [anon_sym_BSLASHlet] = ACTIONS(6341), - [anon_sym_BSLASHleft] = ACTIONS(6341), - [anon_sym_BSLASHbig] = ACTIONS(6341), - [anon_sym_BSLASHBig] = ACTIONS(6341), - [anon_sym_BSLASHbigg] = ACTIONS(6341), - [anon_sym_BSLASHBigg] = ACTIONS(6341), - [anon_sym_BSLASHbigl] = ACTIONS(6341), - [anon_sym_BSLASHBigl] = ACTIONS(6341), - [anon_sym_BSLASHbiggl] = ACTIONS(6341), - [anon_sym_BSLASHBiggl] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6341), - [anon_sym_BSLASHgls] = ACTIONS(6341), - [anon_sym_BSLASHGls] = ACTIONS(6341), - [anon_sym_BSLASHGLS] = ACTIONS(6341), - [anon_sym_BSLASHglspl] = ACTIONS(6341), - [anon_sym_BSLASHGlspl] = ACTIONS(6341), - [anon_sym_BSLASHGLSpl] = ACTIONS(6341), - [anon_sym_BSLASHglsdisp] = ACTIONS(6341), - [anon_sym_BSLASHglslink] = ACTIONS(6341), - [anon_sym_BSLASHglstext] = ACTIONS(6341), - [anon_sym_BSLASHGlstext] = ACTIONS(6341), - [anon_sym_BSLASHGLStext] = ACTIONS(6341), - [anon_sym_BSLASHglsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6341), - [anon_sym_BSLASHglsplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSplural] = ACTIONS(6341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHglsname] = ACTIONS(6341), - [anon_sym_BSLASHGlsname] = ACTIONS(6341), - [anon_sym_BSLASHGLSname] = ACTIONS(6341), - [anon_sym_BSLASHglssymbol] = ACTIONS(6341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6341), - [anon_sym_BSLASHglsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6341), - [anon_sym_BSLASHglsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6341), - [anon_sym_BSLASHglsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6341), - [anon_sym_BSLASHglsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6341), - [anon_sym_BSLASHglsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6341), - [anon_sym_BSLASHnewacronym] = ACTIONS(6341), - [anon_sym_BSLASHacrshort] = ACTIONS(6341), - [anon_sym_BSLASHAcrshort] = ACTIONS(6341), - [anon_sym_BSLASHACRshort] = ACTIONS(6341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6341), - [anon_sym_BSLASHacrlong] = ACTIONS(6341), - [anon_sym_BSLASHAcrlong] = ACTIONS(6341), - [anon_sym_BSLASHACRlong] = ACTIONS(6341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6341), - [anon_sym_BSLASHacrfull] = ACTIONS(6341), - [anon_sym_BSLASHAcrfull] = ACTIONS(6341), - [anon_sym_BSLASHACRfull] = ACTIONS(6341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6341), - [anon_sym_BSLASHacs] = ACTIONS(6341), - [anon_sym_BSLASHAcs] = ACTIONS(6341), - [anon_sym_BSLASHacsp] = ACTIONS(6341), - [anon_sym_BSLASHAcsp] = ACTIONS(6341), - [anon_sym_BSLASHacl] = ACTIONS(6341), - [anon_sym_BSLASHAcl] = ACTIONS(6341), - [anon_sym_BSLASHaclp] = ACTIONS(6341), - [anon_sym_BSLASHAclp] = ACTIONS(6341), - [anon_sym_BSLASHacf] = ACTIONS(6341), - [anon_sym_BSLASHAcf] = ACTIONS(6341), - [anon_sym_BSLASHacfp] = ACTIONS(6341), - [anon_sym_BSLASHAcfp] = ACTIONS(6341), - [anon_sym_BSLASHac] = ACTIONS(6341), - [anon_sym_BSLASHAc] = ACTIONS(6341), - [anon_sym_BSLASHacp] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6341), - [anon_sym_BSLASHcolor] = ACTIONS(6341), - [anon_sym_BSLASHcolorbox] = ACTIONS(6341), - [anon_sym_BSLASHtextcolor] = ACTIONS(6341), - [anon_sym_BSLASHpagecolor] = ACTIONS(6341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6341), - [anon_sym_BSLASHtext] = ACTIONS(6341), - [anon_sym_BSLASHintertext] = ACTIONS(6341), - [anon_sym_shortintertext] = ACTIONS(6341), - }, - [1181] = { - [sym_command_name] = ACTIONS(6337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6337), - [anon_sym_LBRACK] = ACTIONS(6339), - [anon_sym_RBRACK] = ACTIONS(6339), - [anon_sym_COMMA] = ACTIONS(6339), - [anon_sym_EQ] = ACTIONS(6339), - [anon_sym_LPAREN] = ACTIONS(6339), - [anon_sym_RPAREN] = ACTIONS(6339), - [anon_sym_BSLASHpart] = ACTIONS(6337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddpart] = ACTIONS(6337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6339), - [anon_sym_BSLASHchapter] = ACTIONS(6337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddchap] = ACTIONS(6337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsection] = ACTIONS(6337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddsec] = ACTIONS(6337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubsection] = ACTIONS(6337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHparagraph] = ACTIONS(6337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6339), - [anon_sym_BSLASHitem] = ACTIONS(6337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6339), - [anon_sym_LBRACE] = ACTIONS(6339), - [sym_word] = ACTIONS(6337), - [sym_placeholder] = ACTIONS(6339), - [anon_sym_PLUS] = ACTIONS(6339), - [anon_sym_DASH] = ACTIONS(6339), - [anon_sym_STAR] = ACTIONS(6339), - [anon_sym_SLASH] = ACTIONS(6339), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_COLON] = ACTIONS(6337), - [anon_sym_SQUOTE] = ACTIONS(6337), - [anon_sym__] = ACTIONS(6339), - [anon_sym_CARET] = ACTIONS(6339), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6339), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6339), - [anon_sym_DOLLAR] = ACTIONS(6337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6339), - [anon_sym_BSLASHbegin] = ACTIONS(6337), - [anon_sym_BSLASHtitle] = ACTIONS(6337), - [anon_sym_BSLASHauthor] = ACTIONS(6337), - [anon_sym_BSLASHusepackage] = ACTIONS(6337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6337), - [anon_sym_BSLASHinclude] = ACTIONS(6337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6337), - [anon_sym_BSLASHinput] = ACTIONS(6337), - [anon_sym_BSLASHsubfile] = ACTIONS(6337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6337), - [anon_sym_BSLASHbibliography] = ACTIONS(6337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6337), - [anon_sym_BSLASHincludesvg] = ACTIONS(6337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6337), - [anon_sym_BSLASHimport] = ACTIONS(6337), - [anon_sym_BSLASHsubimport] = ACTIONS(6337), - [anon_sym_BSLASHinputfrom] = ACTIONS(6337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6337), - [anon_sym_BSLASHincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHcaption] = ACTIONS(6337), - [anon_sym_BSLASHcite] = ACTIONS(6337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCite] = ACTIONS(6337), - [anon_sym_BSLASHnocite] = ACTIONS(6337), - [anon_sym_BSLASHcitet] = ACTIONS(6337), - [anon_sym_BSLASHcitep] = ACTIONS(6337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteauthor] = ACTIONS(6337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitetitle] = ACTIONS(6337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteyear] = ACTIONS(6337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitedate] = ACTIONS(6337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteurl] = ACTIONS(6337), - [anon_sym_BSLASHfullcite] = ACTIONS(6337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6337), - [anon_sym_BSLASHcitealt] = ACTIONS(6337), - [anon_sym_BSLASHcitealp] = ACTIONS(6337), - [anon_sym_BSLASHcitetext] = ACTIONS(6337), - [anon_sym_BSLASHparencite] = ACTIONS(6337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHParencite] = ACTIONS(6337), - [anon_sym_BSLASHfootcite] = ACTIONS(6337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6337), - [anon_sym_BSLASHtextcite] = ACTIONS(6337), - [anon_sym_BSLASHTextcite] = ACTIONS(6337), - [anon_sym_BSLASHsmartcite] = ACTIONS(6337), - [anon_sym_BSLASHSmartcite] = ACTIONS(6337), - [anon_sym_BSLASHsupercite] = ACTIONS(6337), - [anon_sym_BSLASHautocite] = ACTIONS(6337), - [anon_sym_BSLASHAutocite] = ACTIONS(6337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHvolcite] = ACTIONS(6337), - [anon_sym_BSLASHVolcite] = ACTIONS(6337), - [anon_sym_BSLASHpvolcite] = ACTIONS(6337), - [anon_sym_BSLASHPvolcite] = ACTIONS(6337), - [anon_sym_BSLASHfvolcite] = ACTIONS(6337), - [anon_sym_BSLASHftvolcite] = ACTIONS(6337), - [anon_sym_BSLASHsvolcite] = ACTIONS(6337), - [anon_sym_BSLASHSvolcite] = ACTIONS(6337), - [anon_sym_BSLASHtvolcite] = ACTIONS(6337), - [anon_sym_BSLASHTvolcite] = ACTIONS(6337), - [anon_sym_BSLASHavolcite] = ACTIONS(6337), - [anon_sym_BSLASHAvolcite] = ACTIONS(6337), - [anon_sym_BSLASHnotecite] = ACTIONS(6337), - [anon_sym_BSLASHNotecite] = ACTIONS(6337), - [anon_sym_BSLASHpnotecite] = ACTIONS(6337), - [anon_sym_BSLASHPnotecite] = ACTIONS(6337), - [anon_sym_BSLASHfnotecite] = ACTIONS(6337), - [anon_sym_BSLASHlabel] = ACTIONS(6337), - [anon_sym_BSLASHref] = ACTIONS(6337), - [anon_sym_BSLASHeqref] = ACTIONS(6337), - [anon_sym_BSLASHvref] = ACTIONS(6337), - [anon_sym_BSLASHVref] = ACTIONS(6337), - [anon_sym_BSLASHautoref] = ACTIONS(6337), - [anon_sym_BSLASHpageref] = ACTIONS(6337), - [anon_sym_BSLASHcref] = ACTIONS(6337), - [anon_sym_BSLASHCref] = ACTIONS(6337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnameCref] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHlabelcref] = ACTIONS(6337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCrefrange] = ACTIONS(6337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnewlabel] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6339), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHdef] = ACTIONS(6337), - [anon_sym_BSLASHlet] = ACTIONS(6337), - [anon_sym_BSLASHleft] = ACTIONS(6337), - [anon_sym_BSLASHbig] = ACTIONS(6337), - [anon_sym_BSLASHBig] = ACTIONS(6337), - [anon_sym_BSLASHbigg] = ACTIONS(6337), - [anon_sym_BSLASHBigg] = ACTIONS(6337), - [anon_sym_BSLASHbigl] = ACTIONS(6337), - [anon_sym_BSLASHBigl] = ACTIONS(6337), - [anon_sym_BSLASHbiggl] = ACTIONS(6337), - [anon_sym_BSLASHBiggl] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6337), - [anon_sym_BSLASHgls] = ACTIONS(6337), - [anon_sym_BSLASHGls] = ACTIONS(6337), - [anon_sym_BSLASHGLS] = ACTIONS(6337), - [anon_sym_BSLASHglspl] = ACTIONS(6337), - [anon_sym_BSLASHGlspl] = ACTIONS(6337), - [anon_sym_BSLASHGLSpl] = ACTIONS(6337), - [anon_sym_BSLASHglsdisp] = ACTIONS(6337), - [anon_sym_BSLASHglslink] = ACTIONS(6337), - [anon_sym_BSLASHglstext] = ACTIONS(6337), - [anon_sym_BSLASHGlstext] = ACTIONS(6337), - [anon_sym_BSLASHGLStext] = ACTIONS(6337), - [anon_sym_BSLASHglsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6337), - [anon_sym_BSLASHglsplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSplural] = ACTIONS(6337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHglsname] = ACTIONS(6337), - [anon_sym_BSLASHGlsname] = ACTIONS(6337), - [anon_sym_BSLASHGLSname] = ACTIONS(6337), - [anon_sym_BSLASHglssymbol] = ACTIONS(6337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6337), - [anon_sym_BSLASHglsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6337), - [anon_sym_BSLASHglsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6337), - [anon_sym_BSLASHglsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6337), - [anon_sym_BSLASHglsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6337), - [anon_sym_BSLASHglsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6337), - [anon_sym_BSLASHnewacronym] = ACTIONS(6337), - [anon_sym_BSLASHacrshort] = ACTIONS(6337), - [anon_sym_BSLASHAcrshort] = ACTIONS(6337), - [anon_sym_BSLASHACRshort] = ACTIONS(6337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6337), - [anon_sym_BSLASHacrlong] = ACTIONS(6337), - [anon_sym_BSLASHAcrlong] = ACTIONS(6337), - [anon_sym_BSLASHACRlong] = ACTIONS(6337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6337), - [anon_sym_BSLASHacrfull] = ACTIONS(6337), - [anon_sym_BSLASHAcrfull] = ACTIONS(6337), - [anon_sym_BSLASHACRfull] = ACTIONS(6337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6337), - [anon_sym_BSLASHacs] = ACTIONS(6337), - [anon_sym_BSLASHAcs] = ACTIONS(6337), - [anon_sym_BSLASHacsp] = ACTIONS(6337), - [anon_sym_BSLASHAcsp] = ACTIONS(6337), - [anon_sym_BSLASHacl] = ACTIONS(6337), - [anon_sym_BSLASHAcl] = ACTIONS(6337), - [anon_sym_BSLASHaclp] = ACTIONS(6337), - [anon_sym_BSLASHAclp] = ACTIONS(6337), - [anon_sym_BSLASHacf] = ACTIONS(6337), - [anon_sym_BSLASHAcf] = ACTIONS(6337), - [anon_sym_BSLASHacfp] = ACTIONS(6337), - [anon_sym_BSLASHAcfp] = ACTIONS(6337), - [anon_sym_BSLASHac] = ACTIONS(6337), - [anon_sym_BSLASHAc] = ACTIONS(6337), - [anon_sym_BSLASHacp] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6337), - [anon_sym_BSLASHcolor] = ACTIONS(6337), - [anon_sym_BSLASHcolorbox] = ACTIONS(6337), - [anon_sym_BSLASHtextcolor] = ACTIONS(6337), - [anon_sym_BSLASHpagecolor] = ACTIONS(6337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6337), - [anon_sym_BSLASHtext] = ACTIONS(6337), - [anon_sym_BSLASHintertext] = ACTIONS(6337), - [anon_sym_shortintertext] = ACTIONS(6337), - }, - [1182] = { - [sym_command_name] = ACTIONS(6253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6253), - [anon_sym_LBRACK] = ACTIONS(6255), - [anon_sym_RBRACK] = ACTIONS(6255), - [anon_sym_COMMA] = ACTIONS(6255), - [anon_sym_EQ] = ACTIONS(6255), - [anon_sym_LPAREN] = ACTIONS(6255), - [anon_sym_RPAREN] = ACTIONS(6255), - [anon_sym_BSLASHpart] = ACTIONS(6253), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddpart] = ACTIONS(6253), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6255), - [anon_sym_BSLASHchapter] = ACTIONS(6253), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddchap] = ACTIONS(6253), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsection] = ACTIONS(6253), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddsec] = ACTIONS(6253), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubsection] = ACTIONS(6253), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6253), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHparagraph] = ACTIONS(6253), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6253), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6255), - [anon_sym_BSLASHitem] = ACTIONS(6253), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6255), - [anon_sym_LBRACE] = ACTIONS(6255), - [sym_word] = ACTIONS(6253), - [sym_placeholder] = ACTIONS(6255), - [anon_sym_PLUS] = ACTIONS(6255), - [anon_sym_DASH] = ACTIONS(6255), - [anon_sym_STAR] = ACTIONS(6255), - [anon_sym_SLASH] = ACTIONS(6255), - [anon_sym_LT] = ACTIONS(6253), - [anon_sym_GT] = ACTIONS(6253), - [anon_sym_BANG] = ACTIONS(6253), - [anon_sym_PIPE] = ACTIONS(6253), - [anon_sym_COLON] = ACTIONS(6253), - [anon_sym_SQUOTE] = ACTIONS(6253), - [anon_sym__] = ACTIONS(6255), - [anon_sym_CARET] = ACTIONS(6255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6255), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6255), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6255), - [anon_sym_BSLASHbegin] = ACTIONS(6253), - [anon_sym_BSLASHend] = ACTIONS(6253), - [anon_sym_BSLASHtitle] = ACTIONS(6253), - [anon_sym_BSLASHauthor] = ACTIONS(6253), - [anon_sym_BSLASHusepackage] = ACTIONS(6253), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), - [anon_sym_BSLASHinclude] = ACTIONS(6253), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), - [anon_sym_BSLASHinput] = ACTIONS(6253), - [anon_sym_BSLASHsubfile] = ACTIONS(6253), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), - [anon_sym_BSLASHbibliography] = ACTIONS(6253), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), - [anon_sym_BSLASHincludesvg] = ACTIONS(6253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), - [anon_sym_BSLASHimport] = ACTIONS(6253), - [anon_sym_BSLASHsubimport] = ACTIONS(6253), - [anon_sym_BSLASHinputfrom] = ACTIONS(6253), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), - [anon_sym_BSLASHincludefrom] = ACTIONS(6253), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), - [anon_sym_BSLASHcaption] = ACTIONS(6253), - [anon_sym_BSLASHcite] = ACTIONS(6253), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCite] = ACTIONS(6253), - [anon_sym_BSLASHnocite] = ACTIONS(6253), - [anon_sym_BSLASHcitet] = ACTIONS(6253), - [anon_sym_BSLASHcitep] = ACTIONS(6253), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteauthor] = ACTIONS(6253), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitetitle] = ACTIONS(6253), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteyear] = ACTIONS(6253), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitedate] = ACTIONS(6253), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteurl] = ACTIONS(6253), - [anon_sym_BSLASHfullcite] = ACTIONS(6253), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), - [anon_sym_BSLASHcitealt] = ACTIONS(6253), - [anon_sym_BSLASHcitealp] = ACTIONS(6253), - [anon_sym_BSLASHcitetext] = ACTIONS(6253), - [anon_sym_BSLASHparencite] = ACTIONS(6253), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHParencite] = ACTIONS(6253), - [anon_sym_BSLASHfootcite] = ACTIONS(6253), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), - [anon_sym_BSLASHtextcite] = ACTIONS(6253), - [anon_sym_BSLASHTextcite] = ACTIONS(6253), - [anon_sym_BSLASHsmartcite] = ACTIONS(6253), - [anon_sym_BSLASHSmartcite] = ACTIONS(6253), - [anon_sym_BSLASHsupercite] = ACTIONS(6253), - [anon_sym_BSLASHautocite] = ACTIONS(6253), - [anon_sym_BSLASHAutocite] = ACTIONS(6253), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHvolcite] = ACTIONS(6253), - [anon_sym_BSLASHVolcite] = ACTIONS(6253), - [anon_sym_BSLASHpvolcite] = ACTIONS(6253), - [anon_sym_BSLASHPvolcite] = ACTIONS(6253), - [anon_sym_BSLASHfvolcite] = ACTIONS(6253), - [anon_sym_BSLASHftvolcite] = ACTIONS(6253), - [anon_sym_BSLASHsvolcite] = ACTIONS(6253), - [anon_sym_BSLASHSvolcite] = ACTIONS(6253), - [anon_sym_BSLASHtvolcite] = ACTIONS(6253), - [anon_sym_BSLASHTvolcite] = ACTIONS(6253), - [anon_sym_BSLASHavolcite] = ACTIONS(6253), - [anon_sym_BSLASHAvolcite] = ACTIONS(6253), - [anon_sym_BSLASHnotecite] = ACTIONS(6253), - [anon_sym_BSLASHNotecite] = ACTIONS(6253), - [anon_sym_BSLASHpnotecite] = ACTIONS(6253), - [anon_sym_BSLASHPnotecite] = ACTIONS(6253), - [anon_sym_BSLASHfnotecite] = ACTIONS(6253), - [anon_sym_BSLASHlabel] = ACTIONS(6253), - [anon_sym_BSLASHref] = ACTIONS(6253), - [anon_sym_BSLASHeqref] = ACTIONS(6253), - [anon_sym_BSLASHvref] = ACTIONS(6253), - [anon_sym_BSLASHVref] = ACTIONS(6253), - [anon_sym_BSLASHautoref] = ACTIONS(6253), - [anon_sym_BSLASHpageref] = ACTIONS(6253), - [anon_sym_BSLASHcref] = ACTIONS(6253), - [anon_sym_BSLASHCref] = ACTIONS(6253), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6255), - [anon_sym_BSLASHnamecref] = ACTIONS(6253), - [anon_sym_BSLASHnameCref] = ACTIONS(6253), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), - [anon_sym_BSLASHlabelcref] = ACTIONS(6253), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), - [anon_sym_BSLASHcrefrange] = ACTIONS(6253), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCrefrange] = ACTIONS(6253), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6255), - [anon_sym_BSLASHnewlabel] = ACTIONS(6253), - [anon_sym_BSLASHnewcommand] = ACTIONS(6253), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6255), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHdef] = ACTIONS(6253), - [anon_sym_BSLASHlet] = ACTIONS(6253), - [anon_sym_BSLASHleft] = ACTIONS(6253), - [anon_sym_BSLASHbig] = ACTIONS(6253), - [anon_sym_BSLASHBig] = ACTIONS(6253), - [anon_sym_BSLASHbigg] = ACTIONS(6253), - [anon_sym_BSLASHBigg] = ACTIONS(6253), - [anon_sym_BSLASHbigl] = ACTIONS(6253), - [anon_sym_BSLASHBigl] = ACTIONS(6253), - [anon_sym_BSLASHbiggl] = ACTIONS(6253), - [anon_sym_BSLASHBiggl] = ACTIONS(6253), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6253), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), - [anon_sym_BSLASHgls] = ACTIONS(6253), - [anon_sym_BSLASHGls] = ACTIONS(6253), - [anon_sym_BSLASHGLS] = ACTIONS(6253), - [anon_sym_BSLASHglspl] = ACTIONS(6253), - [anon_sym_BSLASHGlspl] = ACTIONS(6253), - [anon_sym_BSLASHGLSpl] = ACTIONS(6253), - [anon_sym_BSLASHglsdisp] = ACTIONS(6253), - [anon_sym_BSLASHglslink] = ACTIONS(6253), - [anon_sym_BSLASHglstext] = ACTIONS(6253), - [anon_sym_BSLASHGlstext] = ACTIONS(6253), - [anon_sym_BSLASHGLStext] = ACTIONS(6253), - [anon_sym_BSLASHglsfirst] = ACTIONS(6253), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), - [anon_sym_BSLASHglsplural] = ACTIONS(6253), - [anon_sym_BSLASHGlsplural] = ACTIONS(6253), - [anon_sym_BSLASHGLSplural] = ACTIONS(6253), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHglsname] = ACTIONS(6253), - [anon_sym_BSLASHGlsname] = ACTIONS(6253), - [anon_sym_BSLASHGLSname] = ACTIONS(6253), - [anon_sym_BSLASHglssymbol] = ACTIONS(6253), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), - [anon_sym_BSLASHglsdesc] = ACTIONS(6253), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), - [anon_sym_BSLASHglsuseri] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), - [anon_sym_BSLASHglsuserii] = ACTIONS(6253), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), - [anon_sym_BSLASHglsuserv] = ACTIONS(6253), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), - [anon_sym_BSLASHglsuservi] = ACTIONS(6253), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), - [anon_sym_BSLASHnewacronym] = ACTIONS(6253), - [anon_sym_BSLASHacrshort] = ACTIONS(6253), - [anon_sym_BSLASHAcrshort] = ACTIONS(6253), - [anon_sym_BSLASHACRshort] = ACTIONS(6253), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), - [anon_sym_BSLASHacrlong] = ACTIONS(6253), - [anon_sym_BSLASHAcrlong] = ACTIONS(6253), - [anon_sym_BSLASHACRlong] = ACTIONS(6253), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), - [anon_sym_BSLASHacrfull] = ACTIONS(6253), - [anon_sym_BSLASHAcrfull] = ACTIONS(6253), - [anon_sym_BSLASHACRfull] = ACTIONS(6253), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), - [anon_sym_BSLASHacs] = ACTIONS(6253), - [anon_sym_BSLASHAcs] = ACTIONS(6253), - [anon_sym_BSLASHacsp] = ACTIONS(6253), - [anon_sym_BSLASHAcsp] = ACTIONS(6253), - [anon_sym_BSLASHacl] = ACTIONS(6253), - [anon_sym_BSLASHAcl] = ACTIONS(6253), - [anon_sym_BSLASHaclp] = ACTIONS(6253), - [anon_sym_BSLASHAclp] = ACTIONS(6253), - [anon_sym_BSLASHacf] = ACTIONS(6253), - [anon_sym_BSLASHAcf] = ACTIONS(6253), - [anon_sym_BSLASHacfp] = ACTIONS(6253), - [anon_sym_BSLASHAcfp] = ACTIONS(6253), - [anon_sym_BSLASHac] = ACTIONS(6253), - [anon_sym_BSLASHAc] = ACTIONS(6253), - [anon_sym_BSLASHacp] = ACTIONS(6253), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), - [anon_sym_BSLASHcolor] = ACTIONS(6253), - [anon_sym_BSLASHcolorbox] = ACTIONS(6253), - [anon_sym_BSLASHtextcolor] = ACTIONS(6253), - [anon_sym_BSLASHpagecolor] = ACTIONS(6253), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), - [anon_sym_BSLASHtext] = ACTIONS(6253), - [anon_sym_BSLASHintertext] = ACTIONS(6253), - [anon_sym_shortintertext] = ACTIONS(6253), - }, - [1183] = { - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(195), - [anon_sym_BSLASHpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddpart] = ACTIONS(195), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(195), - [anon_sym_BSLASHsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddsec] = ACTIONS(195), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHparagraph] = ACTIONS(195), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubparagraph] = ACTIONS(195), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHitem] = ACTIONS(195), - [anon_sym_BSLASHitem_STAR] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_BSLASH_RBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [1184] = { - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(199), - [anon_sym_BSLASHpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddpart] = ACTIONS(199), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHchapter] = ACTIONS(199), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddchap] = ACTIONS(199), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHparagraph] = ACTIONS(199), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubparagraph] = ACTIONS(199), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHitem] = ACTIONS(199), - [anon_sym_BSLASHitem_STAR] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_BSLASH_RBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [1185] = { - [sym_command_name] = ACTIONS(6157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_EQ] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_BSLASHpart] = ACTIONS(6157), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddpart] = ACTIONS(6157), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6159), - [anon_sym_BSLASHchapter] = ACTIONS(6157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddchap] = ACTIONS(6157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsection] = ACTIONS(6157), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddsec] = ACTIONS(6157), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubsection] = ACTIONS(6157), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6157), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHparagraph] = ACTIONS(6157), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6157), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6159), - [anon_sym_BSLASHitem] = ACTIONS(6157), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6159), - [anon_sym_LBRACE] = ACTIONS(6159), - [sym_word] = ACTIONS(6157), - [sym_placeholder] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6157), - [anon_sym_GT] = ACTIONS(6157), - [anon_sym_BANG] = ACTIONS(6157), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_SQUOTE] = ACTIONS(6157), - [anon_sym__] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6159), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6159), - [anon_sym_DOLLAR] = ACTIONS(6157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6159), - [anon_sym_BSLASHbegin] = ACTIONS(6157), - [anon_sym_BSLASHtitle] = ACTIONS(6157), - [anon_sym_BSLASHauthor] = ACTIONS(6157), - [anon_sym_BSLASHusepackage] = ACTIONS(6157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6157), - [anon_sym_BSLASHinclude] = ACTIONS(6157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6157), - [anon_sym_BSLASHinput] = ACTIONS(6157), - [anon_sym_BSLASHsubfile] = ACTIONS(6157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6157), - [anon_sym_BSLASHbibliography] = ACTIONS(6157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6157), - [anon_sym_BSLASHincludesvg] = ACTIONS(6157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6157), - [anon_sym_BSLASHimport] = ACTIONS(6157), - [anon_sym_BSLASHsubimport] = ACTIONS(6157), - [anon_sym_BSLASHinputfrom] = ACTIONS(6157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6157), - [anon_sym_BSLASHincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHcaption] = ACTIONS(6157), - [anon_sym_BSLASHcite] = ACTIONS(6157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCite] = ACTIONS(6157), - [anon_sym_BSLASHnocite] = ACTIONS(6157), - [anon_sym_BSLASHcitet] = ACTIONS(6157), - [anon_sym_BSLASHcitep] = ACTIONS(6157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteauthor] = ACTIONS(6157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitetitle] = ACTIONS(6157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteyear] = ACTIONS(6157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitedate] = ACTIONS(6157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteurl] = ACTIONS(6157), - [anon_sym_BSLASHfullcite] = ACTIONS(6157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6157), - [anon_sym_BSLASHcitealt] = ACTIONS(6157), - [anon_sym_BSLASHcitealp] = ACTIONS(6157), - [anon_sym_BSLASHcitetext] = ACTIONS(6157), - [anon_sym_BSLASHparencite] = ACTIONS(6157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHParencite] = ACTIONS(6157), - [anon_sym_BSLASHfootcite] = ACTIONS(6157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6157), - [anon_sym_BSLASHtextcite] = ACTIONS(6157), - [anon_sym_BSLASHTextcite] = ACTIONS(6157), - [anon_sym_BSLASHsmartcite] = ACTIONS(6157), - [anon_sym_BSLASHSmartcite] = ACTIONS(6157), - [anon_sym_BSLASHsupercite] = ACTIONS(6157), - [anon_sym_BSLASHautocite] = ACTIONS(6157), - [anon_sym_BSLASHAutocite] = ACTIONS(6157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHvolcite] = ACTIONS(6157), - [anon_sym_BSLASHVolcite] = ACTIONS(6157), - [anon_sym_BSLASHpvolcite] = ACTIONS(6157), - [anon_sym_BSLASHPvolcite] = ACTIONS(6157), - [anon_sym_BSLASHfvolcite] = ACTIONS(6157), - [anon_sym_BSLASHftvolcite] = ACTIONS(6157), - [anon_sym_BSLASHsvolcite] = ACTIONS(6157), - [anon_sym_BSLASHSvolcite] = ACTIONS(6157), - [anon_sym_BSLASHtvolcite] = ACTIONS(6157), - [anon_sym_BSLASHTvolcite] = ACTIONS(6157), - [anon_sym_BSLASHavolcite] = ACTIONS(6157), - [anon_sym_BSLASHAvolcite] = ACTIONS(6157), - [anon_sym_BSLASHnotecite] = ACTIONS(6157), - [anon_sym_BSLASHNotecite] = ACTIONS(6157), - [anon_sym_BSLASHpnotecite] = ACTIONS(6157), - [anon_sym_BSLASHPnotecite] = ACTIONS(6157), - [anon_sym_BSLASHfnotecite] = ACTIONS(6157), - [anon_sym_BSLASHlabel] = ACTIONS(6157), - [anon_sym_BSLASHref] = ACTIONS(6157), - [anon_sym_BSLASHeqref] = ACTIONS(6157), - [anon_sym_BSLASHvref] = ACTIONS(6157), - [anon_sym_BSLASHVref] = ACTIONS(6157), - [anon_sym_BSLASHautoref] = ACTIONS(6157), - [anon_sym_BSLASHpageref] = ACTIONS(6157), - [anon_sym_BSLASHcref] = ACTIONS(6157), - [anon_sym_BSLASHCref] = ACTIONS(6157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnameCref] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHlabelcref] = ACTIONS(6157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCrefrange] = ACTIONS(6157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnewlabel] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6159), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHdef] = ACTIONS(6157), - [anon_sym_BSLASHlet] = ACTIONS(6157), - [anon_sym_BSLASHleft] = ACTIONS(6157), - [anon_sym_BSLASHbig] = ACTIONS(6157), - [anon_sym_BSLASHBig] = ACTIONS(6157), - [anon_sym_BSLASHbigg] = ACTIONS(6157), - [anon_sym_BSLASHBigg] = ACTIONS(6157), - [anon_sym_BSLASHbigl] = ACTIONS(6157), - [anon_sym_BSLASHBigl] = ACTIONS(6157), - [anon_sym_BSLASHbiggl] = ACTIONS(6157), - [anon_sym_BSLASHBiggl] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6157), - [anon_sym_BSLASHgls] = ACTIONS(6157), - [anon_sym_BSLASHGls] = ACTIONS(6157), - [anon_sym_BSLASHGLS] = ACTIONS(6157), - [anon_sym_BSLASHglspl] = ACTIONS(6157), - [anon_sym_BSLASHGlspl] = ACTIONS(6157), - [anon_sym_BSLASHGLSpl] = ACTIONS(6157), - [anon_sym_BSLASHglsdisp] = ACTIONS(6157), - [anon_sym_BSLASHglslink] = ACTIONS(6157), - [anon_sym_BSLASHglstext] = ACTIONS(6157), - [anon_sym_BSLASHGlstext] = ACTIONS(6157), - [anon_sym_BSLASHGLStext] = ACTIONS(6157), - [anon_sym_BSLASHglsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6157), - [anon_sym_BSLASHglsplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSplural] = ACTIONS(6157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHglsname] = ACTIONS(6157), - [anon_sym_BSLASHGlsname] = ACTIONS(6157), - [anon_sym_BSLASHGLSname] = ACTIONS(6157), - [anon_sym_BSLASHglssymbol] = ACTIONS(6157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6157), - [anon_sym_BSLASHglsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6157), - [anon_sym_BSLASHglsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6157), - [anon_sym_BSLASHglsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6157), - [anon_sym_BSLASHglsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6157), - [anon_sym_BSLASHglsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6157), - [anon_sym_BSLASHnewacronym] = ACTIONS(6157), - [anon_sym_BSLASHacrshort] = ACTIONS(6157), - [anon_sym_BSLASHAcrshort] = ACTIONS(6157), - [anon_sym_BSLASHACRshort] = ACTIONS(6157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6157), - [anon_sym_BSLASHacrlong] = ACTIONS(6157), - [anon_sym_BSLASHAcrlong] = ACTIONS(6157), - [anon_sym_BSLASHACRlong] = ACTIONS(6157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6157), - [anon_sym_BSLASHacrfull] = ACTIONS(6157), - [anon_sym_BSLASHAcrfull] = ACTIONS(6157), - [anon_sym_BSLASHACRfull] = ACTIONS(6157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6157), - [anon_sym_BSLASHacs] = ACTIONS(6157), - [anon_sym_BSLASHAcs] = ACTIONS(6157), - [anon_sym_BSLASHacsp] = ACTIONS(6157), - [anon_sym_BSLASHAcsp] = ACTIONS(6157), - [anon_sym_BSLASHacl] = ACTIONS(6157), - [anon_sym_BSLASHAcl] = ACTIONS(6157), - [anon_sym_BSLASHaclp] = ACTIONS(6157), - [anon_sym_BSLASHAclp] = ACTIONS(6157), - [anon_sym_BSLASHacf] = ACTIONS(6157), - [anon_sym_BSLASHAcf] = ACTIONS(6157), - [anon_sym_BSLASHacfp] = ACTIONS(6157), - [anon_sym_BSLASHAcfp] = ACTIONS(6157), - [anon_sym_BSLASHac] = ACTIONS(6157), - [anon_sym_BSLASHAc] = ACTIONS(6157), - [anon_sym_BSLASHacp] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6157), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6157), - [anon_sym_BSLASHcolor] = ACTIONS(6157), - [anon_sym_BSLASHcolorbox] = ACTIONS(6157), - [anon_sym_BSLASHtextcolor] = ACTIONS(6157), - [anon_sym_BSLASHpagecolor] = ACTIONS(6157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6157), - [anon_sym_BSLASHtext] = ACTIONS(6157), - [anon_sym_BSLASHintertext] = ACTIONS(6157), - [anon_sym_shortintertext] = ACTIONS(6157), - }, - [1186] = { - [sym_command_name] = ACTIONS(6137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6137), - [anon_sym_LBRACK] = ACTIONS(6139), - [anon_sym_RBRACK] = ACTIONS(6139), - [anon_sym_COMMA] = ACTIONS(6139), - [anon_sym_EQ] = ACTIONS(6139), - [anon_sym_LPAREN] = ACTIONS(6139), - [anon_sym_RPAREN] = ACTIONS(6139), - [anon_sym_BSLASHpart] = ACTIONS(6137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddpart] = ACTIONS(6137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6139), - [anon_sym_BSLASHchapter] = ACTIONS(6137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddchap] = ACTIONS(6137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsection] = ACTIONS(6137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddsec] = ACTIONS(6137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubsection] = ACTIONS(6137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHparagraph] = ACTIONS(6137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6139), - [anon_sym_BSLASHitem] = ACTIONS(6137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6139), - [anon_sym_LBRACE] = ACTIONS(6139), - [sym_word] = ACTIONS(6137), - [sym_placeholder] = ACTIONS(6139), - [anon_sym_PLUS] = ACTIONS(6139), - [anon_sym_DASH] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(6139), - [anon_sym_SLASH] = ACTIONS(6139), - [anon_sym_LT] = ACTIONS(6137), - [anon_sym_GT] = ACTIONS(6137), - [anon_sym_BANG] = ACTIONS(6137), - [anon_sym_PIPE] = ACTIONS(6137), - [anon_sym_COLON] = ACTIONS(6137), - [anon_sym_SQUOTE] = ACTIONS(6137), - [anon_sym__] = ACTIONS(6139), - [anon_sym_CARET] = ACTIONS(6139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6139), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6139), - [anon_sym_DOLLAR] = ACTIONS(6137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6139), - [anon_sym_BSLASHbegin] = ACTIONS(6137), - [anon_sym_BSLASHtitle] = ACTIONS(6137), - [anon_sym_BSLASHauthor] = ACTIONS(6137), - [anon_sym_BSLASHusepackage] = ACTIONS(6137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6137), - [anon_sym_BSLASHinclude] = ACTIONS(6137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6137), - [anon_sym_BSLASHinput] = ACTIONS(6137), - [anon_sym_BSLASHsubfile] = ACTIONS(6137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6137), - [anon_sym_BSLASHbibliography] = ACTIONS(6137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6137), - [anon_sym_BSLASHincludesvg] = ACTIONS(6137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6137), - [anon_sym_BSLASHimport] = ACTIONS(6137), - [anon_sym_BSLASHsubimport] = ACTIONS(6137), - [anon_sym_BSLASHinputfrom] = ACTIONS(6137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6137), - [anon_sym_BSLASHincludefrom] = ACTIONS(6137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6137), - [anon_sym_BSLASHcaption] = ACTIONS(6137), - [anon_sym_BSLASHcite] = ACTIONS(6137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCite] = ACTIONS(6137), - [anon_sym_BSLASHnocite] = ACTIONS(6137), - [anon_sym_BSLASHcitet] = ACTIONS(6137), - [anon_sym_BSLASHcitep] = ACTIONS(6137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteauthor] = ACTIONS(6137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitetitle] = ACTIONS(6137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteyear] = ACTIONS(6137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitedate] = ACTIONS(6137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteurl] = ACTIONS(6137), - [anon_sym_BSLASHfullcite] = ACTIONS(6137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6137), - [anon_sym_BSLASHcitealt] = ACTIONS(6137), - [anon_sym_BSLASHcitealp] = ACTIONS(6137), - [anon_sym_BSLASHcitetext] = ACTIONS(6137), - [anon_sym_BSLASHparencite] = ACTIONS(6137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHParencite] = ACTIONS(6137), - [anon_sym_BSLASHfootcite] = ACTIONS(6137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6137), - [anon_sym_BSLASHtextcite] = ACTIONS(6137), - [anon_sym_BSLASHTextcite] = ACTIONS(6137), - [anon_sym_BSLASHsmartcite] = ACTIONS(6137), - [anon_sym_BSLASHSmartcite] = ACTIONS(6137), - [anon_sym_BSLASHsupercite] = ACTIONS(6137), - [anon_sym_BSLASHautocite] = ACTIONS(6137), - [anon_sym_BSLASHAutocite] = ACTIONS(6137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHvolcite] = ACTIONS(6137), - [anon_sym_BSLASHVolcite] = ACTIONS(6137), - [anon_sym_BSLASHpvolcite] = ACTIONS(6137), - [anon_sym_BSLASHPvolcite] = ACTIONS(6137), - [anon_sym_BSLASHfvolcite] = ACTIONS(6137), - [anon_sym_BSLASHftvolcite] = ACTIONS(6137), - [anon_sym_BSLASHsvolcite] = ACTIONS(6137), - [anon_sym_BSLASHSvolcite] = ACTIONS(6137), - [anon_sym_BSLASHtvolcite] = ACTIONS(6137), - [anon_sym_BSLASHTvolcite] = ACTIONS(6137), - [anon_sym_BSLASHavolcite] = ACTIONS(6137), - [anon_sym_BSLASHAvolcite] = ACTIONS(6137), - [anon_sym_BSLASHnotecite] = ACTIONS(6137), - [anon_sym_BSLASHNotecite] = ACTIONS(6137), - [anon_sym_BSLASHpnotecite] = ACTIONS(6137), - [anon_sym_BSLASHPnotecite] = ACTIONS(6137), - [anon_sym_BSLASHfnotecite] = ACTIONS(6137), - [anon_sym_BSLASHlabel] = ACTIONS(6137), - [anon_sym_BSLASHref] = ACTIONS(6137), - [anon_sym_BSLASHeqref] = ACTIONS(6137), - [anon_sym_BSLASHvref] = ACTIONS(6137), - [anon_sym_BSLASHVref] = ACTIONS(6137), - [anon_sym_BSLASHautoref] = ACTIONS(6137), - [anon_sym_BSLASHpageref] = ACTIONS(6137), - [anon_sym_BSLASHcref] = ACTIONS(6137), - [anon_sym_BSLASHCref] = ACTIONS(6137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6139), - [anon_sym_BSLASHnamecref] = ACTIONS(6137), - [anon_sym_BSLASHnameCref] = ACTIONS(6137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6137), - [anon_sym_BSLASHlabelcref] = ACTIONS(6137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6137), - [anon_sym_BSLASHcrefrange] = ACTIONS(6137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCrefrange] = ACTIONS(6137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6139), - [anon_sym_BSLASHnewlabel] = ACTIONS(6137), - [anon_sym_BSLASHnewcommand] = ACTIONS(6137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6139), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHdef] = ACTIONS(6137), - [anon_sym_BSLASHlet] = ACTIONS(6137), - [anon_sym_BSLASHleft] = ACTIONS(6137), - [anon_sym_BSLASHbig] = ACTIONS(6137), - [anon_sym_BSLASHBig] = ACTIONS(6137), - [anon_sym_BSLASHbigg] = ACTIONS(6137), - [anon_sym_BSLASHBigg] = ACTIONS(6137), - [anon_sym_BSLASHbigl] = ACTIONS(6137), - [anon_sym_BSLASHBigl] = ACTIONS(6137), - [anon_sym_BSLASHbiggl] = ACTIONS(6137), - [anon_sym_BSLASHBiggl] = ACTIONS(6137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6137), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6137), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6137), - [anon_sym_BSLASHgls] = ACTIONS(6137), - [anon_sym_BSLASHGls] = ACTIONS(6137), - [anon_sym_BSLASHGLS] = ACTIONS(6137), - [anon_sym_BSLASHglspl] = ACTIONS(6137), - [anon_sym_BSLASHGlspl] = ACTIONS(6137), - [anon_sym_BSLASHGLSpl] = ACTIONS(6137), - [anon_sym_BSLASHglsdisp] = ACTIONS(6137), - [anon_sym_BSLASHglslink] = ACTIONS(6137), - [anon_sym_BSLASHglstext] = ACTIONS(6137), - [anon_sym_BSLASHGlstext] = ACTIONS(6137), - [anon_sym_BSLASHGLStext] = ACTIONS(6137), - [anon_sym_BSLASHglsfirst] = ACTIONS(6137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6137), - [anon_sym_BSLASHglsplural] = ACTIONS(6137), - [anon_sym_BSLASHGlsplural] = ACTIONS(6137), - [anon_sym_BSLASHGLSplural] = ACTIONS(6137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHglsname] = ACTIONS(6137), - [anon_sym_BSLASHGlsname] = ACTIONS(6137), - [anon_sym_BSLASHGLSname] = ACTIONS(6137), - [anon_sym_BSLASHglssymbol] = ACTIONS(6137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6137), - [anon_sym_BSLASHglsdesc] = ACTIONS(6137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6137), - [anon_sym_BSLASHglsuseri] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6137), - [anon_sym_BSLASHglsuserii] = ACTIONS(6137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6137), - [anon_sym_BSLASHglsuserv] = ACTIONS(6137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6137), - [anon_sym_BSLASHglsuservi] = ACTIONS(6137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6137), - [anon_sym_BSLASHnewacronym] = ACTIONS(6137), - [anon_sym_BSLASHacrshort] = ACTIONS(6137), - [anon_sym_BSLASHAcrshort] = ACTIONS(6137), - [anon_sym_BSLASHACRshort] = ACTIONS(6137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6137), - [anon_sym_BSLASHacrlong] = ACTIONS(6137), - [anon_sym_BSLASHAcrlong] = ACTIONS(6137), - [anon_sym_BSLASHACRlong] = ACTIONS(6137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6137), - [anon_sym_BSLASHacrfull] = ACTIONS(6137), - [anon_sym_BSLASHAcrfull] = ACTIONS(6137), - [anon_sym_BSLASHACRfull] = ACTIONS(6137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6137), - [anon_sym_BSLASHacs] = ACTIONS(6137), - [anon_sym_BSLASHAcs] = ACTIONS(6137), - [anon_sym_BSLASHacsp] = ACTIONS(6137), - [anon_sym_BSLASHAcsp] = ACTIONS(6137), - [anon_sym_BSLASHacl] = ACTIONS(6137), - [anon_sym_BSLASHAcl] = ACTIONS(6137), - [anon_sym_BSLASHaclp] = ACTIONS(6137), - [anon_sym_BSLASHAclp] = ACTIONS(6137), - [anon_sym_BSLASHacf] = ACTIONS(6137), - [anon_sym_BSLASHAcf] = ACTIONS(6137), - [anon_sym_BSLASHacfp] = ACTIONS(6137), - [anon_sym_BSLASHAcfp] = ACTIONS(6137), - [anon_sym_BSLASHac] = ACTIONS(6137), - [anon_sym_BSLASHAc] = ACTIONS(6137), - [anon_sym_BSLASHacp] = ACTIONS(6137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6137), - [anon_sym_BSLASHcolor] = ACTIONS(6137), - [anon_sym_BSLASHcolorbox] = ACTIONS(6137), - [anon_sym_BSLASHtextcolor] = ACTIONS(6137), - [anon_sym_BSLASHpagecolor] = ACTIONS(6137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6137), - [anon_sym_BSLASHtext] = ACTIONS(6137), - [anon_sym_BSLASHintertext] = ACTIONS(6137), - [anon_sym_shortintertext] = ACTIONS(6137), - }, - [1187] = { - [sym_command_name] = ACTIONS(6729), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6729), - [anon_sym_LBRACK] = ACTIONS(6731), - [anon_sym_RBRACK] = ACTIONS(6731), - [anon_sym_COMMA] = ACTIONS(6731), - [anon_sym_EQ] = ACTIONS(6731), - [anon_sym_LPAREN] = ACTIONS(6731), - [anon_sym_RPAREN] = ACTIONS(6731), - [anon_sym_BSLASHpart] = ACTIONS(6729), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6731), - [anon_sym_BSLASHaddpart] = ACTIONS(6729), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6731), - [anon_sym_BSLASHchapter] = ACTIONS(6729), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6731), - [anon_sym_BSLASHaddchap] = ACTIONS(6729), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6731), - [anon_sym_BSLASHsection] = ACTIONS(6729), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6731), - [anon_sym_BSLASHaddsec] = ACTIONS(6729), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6731), - [anon_sym_BSLASHsubsection] = ACTIONS(6729), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6731), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6729), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6731), - [anon_sym_BSLASHparagraph] = ACTIONS(6729), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6731), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6729), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6731), - [anon_sym_BSLASHitem] = ACTIONS(6729), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6731), - [anon_sym_LBRACE] = ACTIONS(6731), - [sym_word] = ACTIONS(6729), - [sym_placeholder] = ACTIONS(6731), - [anon_sym_PLUS] = ACTIONS(6731), - [anon_sym_DASH] = ACTIONS(6731), - [anon_sym_STAR] = ACTIONS(6731), - [anon_sym_SLASH] = ACTIONS(6731), - [anon_sym_LT] = ACTIONS(6729), - [anon_sym_GT] = ACTIONS(6729), - [anon_sym_BANG] = ACTIONS(6729), - [anon_sym_PIPE] = ACTIONS(6729), - [anon_sym_COLON] = ACTIONS(6729), - [anon_sym_SQUOTE] = ACTIONS(6729), - [anon_sym__] = ACTIONS(6731), - [anon_sym_CARET] = ACTIONS(6731), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6731), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6731), - [anon_sym_DOLLAR] = ACTIONS(6729), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6731), - [anon_sym_BSLASHbegin] = ACTIONS(6729), - [anon_sym_BSLASHend] = ACTIONS(6729), - [anon_sym_BSLASHtitle] = ACTIONS(6729), - [anon_sym_BSLASHauthor] = ACTIONS(6729), - [anon_sym_BSLASHusepackage] = ACTIONS(6729), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6729), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6729), - [anon_sym_BSLASHinclude] = ACTIONS(6729), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6729), - [anon_sym_BSLASHinput] = ACTIONS(6729), - [anon_sym_BSLASHsubfile] = ACTIONS(6729), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6729), - [anon_sym_BSLASHbibliography] = ACTIONS(6729), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6729), - [anon_sym_BSLASHincludesvg] = ACTIONS(6729), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6729), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6729), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6729), - [anon_sym_BSLASHimport] = ACTIONS(6729), - [anon_sym_BSLASHsubimport] = ACTIONS(6729), - [anon_sym_BSLASHinputfrom] = ACTIONS(6729), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6729), - [anon_sym_BSLASHincludefrom] = ACTIONS(6729), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6729), - [anon_sym_BSLASHcaption] = ACTIONS(6729), - [anon_sym_BSLASHcite] = ACTIONS(6729), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6731), - [anon_sym_BSLASHCite] = ACTIONS(6729), - [anon_sym_BSLASHnocite] = ACTIONS(6729), - [anon_sym_BSLASHcitet] = ACTIONS(6729), - [anon_sym_BSLASHcitep] = ACTIONS(6729), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6731), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6731), - [anon_sym_BSLASHciteauthor] = ACTIONS(6729), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6731), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6729), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6731), - [anon_sym_BSLASHcitetitle] = ACTIONS(6729), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6731), - [anon_sym_BSLASHciteyear] = ACTIONS(6729), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6731), - [anon_sym_BSLASHcitedate] = ACTIONS(6729), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6731), - [anon_sym_BSLASHciteurl] = ACTIONS(6729), - [anon_sym_BSLASHfullcite] = ACTIONS(6729), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6729), - [anon_sym_BSLASHcitealt] = ACTIONS(6729), - [anon_sym_BSLASHcitealp] = ACTIONS(6729), - [anon_sym_BSLASHcitetext] = ACTIONS(6729), - [anon_sym_BSLASHparencite] = ACTIONS(6729), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6731), - [anon_sym_BSLASHParencite] = ACTIONS(6729), - [anon_sym_BSLASHfootcite] = ACTIONS(6729), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6729), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6729), - [anon_sym_BSLASHtextcite] = ACTIONS(6729), - [anon_sym_BSLASHTextcite] = ACTIONS(6729), - [anon_sym_BSLASHsmartcite] = ACTIONS(6729), - [anon_sym_BSLASHSmartcite] = ACTIONS(6729), - [anon_sym_BSLASHsupercite] = ACTIONS(6729), - [anon_sym_BSLASHautocite] = ACTIONS(6729), - [anon_sym_BSLASHAutocite] = ACTIONS(6729), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6731), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6731), - [anon_sym_BSLASHvolcite] = ACTIONS(6729), - [anon_sym_BSLASHVolcite] = ACTIONS(6729), - [anon_sym_BSLASHpvolcite] = ACTIONS(6729), - [anon_sym_BSLASHPvolcite] = ACTIONS(6729), - [anon_sym_BSLASHfvolcite] = ACTIONS(6729), - [anon_sym_BSLASHftvolcite] = ACTIONS(6729), - [anon_sym_BSLASHsvolcite] = ACTIONS(6729), - [anon_sym_BSLASHSvolcite] = ACTIONS(6729), - [anon_sym_BSLASHtvolcite] = ACTIONS(6729), - [anon_sym_BSLASHTvolcite] = ACTIONS(6729), - [anon_sym_BSLASHavolcite] = ACTIONS(6729), - [anon_sym_BSLASHAvolcite] = ACTIONS(6729), - [anon_sym_BSLASHnotecite] = ACTIONS(6729), - [anon_sym_BSLASHNotecite] = ACTIONS(6729), - [anon_sym_BSLASHpnotecite] = ACTIONS(6729), - [anon_sym_BSLASHPnotecite] = ACTIONS(6729), - [anon_sym_BSLASHfnotecite] = ACTIONS(6729), - [anon_sym_BSLASHlabel] = ACTIONS(6729), - [anon_sym_BSLASHref] = ACTIONS(6729), - [anon_sym_BSLASHeqref] = ACTIONS(6729), - [anon_sym_BSLASHvref] = ACTIONS(6729), - [anon_sym_BSLASHVref] = ACTIONS(6729), - [anon_sym_BSLASHautoref] = ACTIONS(6729), - [anon_sym_BSLASHpageref] = ACTIONS(6729), - [anon_sym_BSLASHcref] = ACTIONS(6729), - [anon_sym_BSLASHCref] = ACTIONS(6729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6731), - [anon_sym_BSLASHnamecref] = ACTIONS(6729), - [anon_sym_BSLASHnameCref] = ACTIONS(6729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6729), - [anon_sym_BSLASHlabelcref] = ACTIONS(6729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6729), - [anon_sym_BSLASHcrefrange] = ACTIONS(6729), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6731), - [anon_sym_BSLASHCrefrange] = ACTIONS(6729), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6731), - [anon_sym_BSLASHnewlabel] = ACTIONS(6729), - [anon_sym_BSLASHnewcommand] = ACTIONS(6729), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6731), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6729), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6731), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6729), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6731), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6729), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6731), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHdef] = ACTIONS(6729), - [anon_sym_BSLASHlet] = ACTIONS(6729), - [anon_sym_BSLASHleft] = ACTIONS(6729), - [anon_sym_BSLASHbig] = ACTIONS(6729), - [anon_sym_BSLASHBig] = ACTIONS(6729), - [anon_sym_BSLASHbigg] = ACTIONS(6729), - [anon_sym_BSLASHBigg] = ACTIONS(6729), - [anon_sym_BSLASHbigl] = ACTIONS(6729), - [anon_sym_BSLASHBigl] = ACTIONS(6729), - [anon_sym_BSLASHbiggl] = ACTIONS(6729), - [anon_sym_BSLASHBiggl] = ACTIONS(6729), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6729), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6729), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6729), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6729), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6729), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6729), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6729), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6729), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6729), - [anon_sym_BSLASHgls] = ACTIONS(6729), - [anon_sym_BSLASHGls] = ACTIONS(6729), - [anon_sym_BSLASHGLS] = ACTIONS(6729), - [anon_sym_BSLASHglspl] = ACTIONS(6729), - [anon_sym_BSLASHGlspl] = ACTIONS(6729), - [anon_sym_BSLASHGLSpl] = ACTIONS(6729), - [anon_sym_BSLASHglsdisp] = ACTIONS(6729), - [anon_sym_BSLASHglslink] = ACTIONS(6729), - [anon_sym_BSLASHglstext] = ACTIONS(6729), - [anon_sym_BSLASHGlstext] = ACTIONS(6729), - [anon_sym_BSLASHGLStext] = ACTIONS(6729), - [anon_sym_BSLASHglsfirst] = ACTIONS(6729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6729), - [anon_sym_BSLASHglsplural] = ACTIONS(6729), - [anon_sym_BSLASHGlsplural] = ACTIONS(6729), - [anon_sym_BSLASHGLSplural] = ACTIONS(6729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6729), - [anon_sym_BSLASHglsname] = ACTIONS(6729), - [anon_sym_BSLASHGlsname] = ACTIONS(6729), - [anon_sym_BSLASHGLSname] = ACTIONS(6729), - [anon_sym_BSLASHglssymbol] = ACTIONS(6729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6729), - [anon_sym_BSLASHglsdesc] = ACTIONS(6729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6729), - [anon_sym_BSLASHglsuseri] = ACTIONS(6729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6729), - [anon_sym_BSLASHglsuserii] = ACTIONS(6729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6729), - [anon_sym_BSLASHglsuserv] = ACTIONS(6729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6729), - [anon_sym_BSLASHglsuservi] = ACTIONS(6729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6729), - [anon_sym_BSLASHnewacronym] = ACTIONS(6729), - [anon_sym_BSLASHacrshort] = ACTIONS(6729), - [anon_sym_BSLASHAcrshort] = ACTIONS(6729), - [anon_sym_BSLASHACRshort] = ACTIONS(6729), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6729), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6729), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6729), - [anon_sym_BSLASHacrlong] = ACTIONS(6729), - [anon_sym_BSLASHAcrlong] = ACTIONS(6729), - [anon_sym_BSLASHACRlong] = ACTIONS(6729), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6729), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6729), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6729), - [anon_sym_BSLASHacrfull] = ACTIONS(6729), - [anon_sym_BSLASHAcrfull] = ACTIONS(6729), - [anon_sym_BSLASHACRfull] = ACTIONS(6729), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6729), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6729), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6729), - [anon_sym_BSLASHacs] = ACTIONS(6729), - [anon_sym_BSLASHAcs] = ACTIONS(6729), - [anon_sym_BSLASHacsp] = ACTIONS(6729), - [anon_sym_BSLASHAcsp] = ACTIONS(6729), - [anon_sym_BSLASHacl] = ACTIONS(6729), - [anon_sym_BSLASHAcl] = ACTIONS(6729), - [anon_sym_BSLASHaclp] = ACTIONS(6729), - [anon_sym_BSLASHAclp] = ACTIONS(6729), - [anon_sym_BSLASHacf] = ACTIONS(6729), - [anon_sym_BSLASHAcf] = ACTIONS(6729), - [anon_sym_BSLASHacfp] = ACTIONS(6729), - [anon_sym_BSLASHAcfp] = ACTIONS(6729), - [anon_sym_BSLASHac] = ACTIONS(6729), - [anon_sym_BSLASHAc] = ACTIONS(6729), - [anon_sym_BSLASHacp] = ACTIONS(6729), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6729), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6729), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6729), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6729), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6729), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6729), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6729), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6729), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6729), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6729), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6729), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6731), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6729), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6731), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6729), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6729), - [anon_sym_BSLASHcolor] = ACTIONS(6729), - [anon_sym_BSLASHcolorbox] = ACTIONS(6729), - [anon_sym_BSLASHtextcolor] = ACTIONS(6729), - [anon_sym_BSLASHpagecolor] = ACTIONS(6729), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6729), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6729), - [anon_sym_BSLASHtext] = ACTIONS(6729), - [anon_sym_BSLASHintertext] = ACTIONS(6729), - [anon_sym_shortintertext] = ACTIONS(6729), - }, - [1188] = { - [sym_command_name] = ACTIONS(6257), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6257), - [anon_sym_LBRACK] = ACTIONS(6259), - [anon_sym_RBRACK] = ACTIONS(6259), - [anon_sym_COMMA] = ACTIONS(6259), - [anon_sym_EQ] = ACTIONS(6259), - [anon_sym_LPAREN] = ACTIONS(6259), - [anon_sym_RPAREN] = ACTIONS(6259), - [anon_sym_BSLASHpart] = ACTIONS(6257), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddpart] = ACTIONS(6257), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6259), - [anon_sym_BSLASHchapter] = ACTIONS(6257), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddchap] = ACTIONS(6257), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsection] = ACTIONS(6257), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddsec] = ACTIONS(6257), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubsection] = ACTIONS(6257), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6257), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHparagraph] = ACTIONS(6257), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6257), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6259), - [anon_sym_BSLASHitem] = ACTIONS(6257), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6259), - [anon_sym_LBRACE] = ACTIONS(6259), - [sym_word] = ACTIONS(6257), - [sym_placeholder] = ACTIONS(6259), - [anon_sym_PLUS] = ACTIONS(6259), - [anon_sym_DASH] = ACTIONS(6259), - [anon_sym_STAR] = ACTIONS(6259), - [anon_sym_SLASH] = ACTIONS(6259), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_GT] = ACTIONS(6257), - [anon_sym_BANG] = ACTIONS(6257), - [anon_sym_PIPE] = ACTIONS(6257), - [anon_sym_COLON] = ACTIONS(6257), - [anon_sym_SQUOTE] = ACTIONS(6257), - [anon_sym__] = ACTIONS(6259), - [anon_sym_CARET] = ACTIONS(6259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6259), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6259), - [anon_sym_DOLLAR] = ACTIONS(6257), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6259), - [anon_sym_BSLASHbegin] = ACTIONS(6257), - [anon_sym_BSLASHend] = ACTIONS(6257), - [anon_sym_BSLASHtitle] = ACTIONS(6257), - [anon_sym_BSLASHauthor] = ACTIONS(6257), - [anon_sym_BSLASHusepackage] = ACTIONS(6257), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6257), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6257), - [anon_sym_BSLASHinclude] = ACTIONS(6257), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6257), - [anon_sym_BSLASHinput] = ACTIONS(6257), - [anon_sym_BSLASHsubfile] = ACTIONS(6257), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6257), - [anon_sym_BSLASHbibliography] = ACTIONS(6257), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6257), - [anon_sym_BSLASHincludesvg] = ACTIONS(6257), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6257), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6257), - [anon_sym_BSLASHimport] = ACTIONS(6257), - [anon_sym_BSLASHsubimport] = ACTIONS(6257), - [anon_sym_BSLASHinputfrom] = ACTIONS(6257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6257), - [anon_sym_BSLASHincludefrom] = ACTIONS(6257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6257), - [anon_sym_BSLASHcaption] = ACTIONS(6257), - [anon_sym_BSLASHcite] = ACTIONS(6257), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCite] = ACTIONS(6257), - [anon_sym_BSLASHnocite] = ACTIONS(6257), - [anon_sym_BSLASHcitet] = ACTIONS(6257), - [anon_sym_BSLASHcitep] = ACTIONS(6257), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteauthor] = ACTIONS(6257), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6257), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitetitle] = ACTIONS(6257), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteyear] = ACTIONS(6257), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitedate] = ACTIONS(6257), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteurl] = ACTIONS(6257), - [anon_sym_BSLASHfullcite] = ACTIONS(6257), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6257), - [anon_sym_BSLASHcitealt] = ACTIONS(6257), - [anon_sym_BSLASHcitealp] = ACTIONS(6257), - [anon_sym_BSLASHcitetext] = ACTIONS(6257), - [anon_sym_BSLASHparencite] = ACTIONS(6257), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHParencite] = ACTIONS(6257), - [anon_sym_BSLASHfootcite] = ACTIONS(6257), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6257), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6257), - [anon_sym_BSLASHtextcite] = ACTIONS(6257), - [anon_sym_BSLASHTextcite] = ACTIONS(6257), - [anon_sym_BSLASHsmartcite] = ACTIONS(6257), - [anon_sym_BSLASHSmartcite] = ACTIONS(6257), - [anon_sym_BSLASHsupercite] = ACTIONS(6257), - [anon_sym_BSLASHautocite] = ACTIONS(6257), - [anon_sym_BSLASHAutocite] = ACTIONS(6257), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHvolcite] = ACTIONS(6257), - [anon_sym_BSLASHVolcite] = ACTIONS(6257), - [anon_sym_BSLASHpvolcite] = ACTIONS(6257), - [anon_sym_BSLASHPvolcite] = ACTIONS(6257), - [anon_sym_BSLASHfvolcite] = ACTIONS(6257), - [anon_sym_BSLASHftvolcite] = ACTIONS(6257), - [anon_sym_BSLASHsvolcite] = ACTIONS(6257), - [anon_sym_BSLASHSvolcite] = ACTIONS(6257), - [anon_sym_BSLASHtvolcite] = ACTIONS(6257), - [anon_sym_BSLASHTvolcite] = ACTIONS(6257), - [anon_sym_BSLASHavolcite] = ACTIONS(6257), - [anon_sym_BSLASHAvolcite] = ACTIONS(6257), - [anon_sym_BSLASHnotecite] = ACTIONS(6257), - [anon_sym_BSLASHNotecite] = ACTIONS(6257), - [anon_sym_BSLASHpnotecite] = ACTIONS(6257), - [anon_sym_BSLASHPnotecite] = ACTIONS(6257), - [anon_sym_BSLASHfnotecite] = ACTIONS(6257), - [anon_sym_BSLASHlabel] = ACTIONS(6257), - [anon_sym_BSLASHref] = ACTIONS(6257), - [anon_sym_BSLASHeqref] = ACTIONS(6257), - [anon_sym_BSLASHvref] = ACTIONS(6257), - [anon_sym_BSLASHVref] = ACTIONS(6257), - [anon_sym_BSLASHautoref] = ACTIONS(6257), - [anon_sym_BSLASHpageref] = ACTIONS(6257), - [anon_sym_BSLASHcref] = ACTIONS(6257), - [anon_sym_BSLASHCref] = ACTIONS(6257), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6259), - [anon_sym_BSLASHnamecref] = ACTIONS(6257), - [anon_sym_BSLASHnameCref] = ACTIONS(6257), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6257), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6257), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6257), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6257), - [anon_sym_BSLASHlabelcref] = ACTIONS(6257), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6257), - [anon_sym_BSLASHcrefrange] = ACTIONS(6257), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCrefrange] = ACTIONS(6257), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6259), - [anon_sym_BSLASHnewlabel] = ACTIONS(6257), - [anon_sym_BSLASHnewcommand] = ACTIONS(6257), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6257), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6257), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6259), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHdef] = ACTIONS(6257), - [anon_sym_BSLASHlet] = ACTIONS(6257), - [anon_sym_BSLASHleft] = ACTIONS(6257), - [anon_sym_BSLASHbig] = ACTIONS(6257), - [anon_sym_BSLASHBig] = ACTIONS(6257), - [anon_sym_BSLASHbigg] = ACTIONS(6257), - [anon_sym_BSLASHBigg] = ACTIONS(6257), - [anon_sym_BSLASHbigl] = ACTIONS(6257), - [anon_sym_BSLASHBigl] = ACTIONS(6257), - [anon_sym_BSLASHbiggl] = ACTIONS(6257), - [anon_sym_BSLASHBiggl] = ACTIONS(6257), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6257), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6257), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6257), - [anon_sym_BSLASHgls] = ACTIONS(6257), - [anon_sym_BSLASHGls] = ACTIONS(6257), - [anon_sym_BSLASHGLS] = ACTIONS(6257), - [anon_sym_BSLASHglspl] = ACTIONS(6257), - [anon_sym_BSLASHGlspl] = ACTIONS(6257), - [anon_sym_BSLASHGLSpl] = ACTIONS(6257), - [anon_sym_BSLASHglsdisp] = ACTIONS(6257), - [anon_sym_BSLASHglslink] = ACTIONS(6257), - [anon_sym_BSLASHglstext] = ACTIONS(6257), - [anon_sym_BSLASHGlstext] = ACTIONS(6257), - [anon_sym_BSLASHGLStext] = ACTIONS(6257), - [anon_sym_BSLASHglsfirst] = ACTIONS(6257), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6257), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6257), - [anon_sym_BSLASHglsplural] = ACTIONS(6257), - [anon_sym_BSLASHGlsplural] = ACTIONS(6257), - [anon_sym_BSLASHGLSplural] = ACTIONS(6257), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHglsname] = ACTIONS(6257), - [anon_sym_BSLASHGlsname] = ACTIONS(6257), - [anon_sym_BSLASHGLSname] = ACTIONS(6257), - [anon_sym_BSLASHglssymbol] = ACTIONS(6257), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6257), - [anon_sym_BSLASHglsdesc] = ACTIONS(6257), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6257), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6257), - [anon_sym_BSLASHglsuseri] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6257), - [anon_sym_BSLASHglsuserii] = ACTIONS(6257), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6257), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6257), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6257), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6257), - [anon_sym_BSLASHglsuserv] = ACTIONS(6257), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6257), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6257), - [anon_sym_BSLASHglsuservi] = ACTIONS(6257), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6257), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6257), - [anon_sym_BSLASHnewacronym] = ACTIONS(6257), - [anon_sym_BSLASHacrshort] = ACTIONS(6257), - [anon_sym_BSLASHAcrshort] = ACTIONS(6257), - [anon_sym_BSLASHACRshort] = ACTIONS(6257), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6257), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6257), - [anon_sym_BSLASHacrlong] = ACTIONS(6257), - [anon_sym_BSLASHAcrlong] = ACTIONS(6257), - [anon_sym_BSLASHACRlong] = ACTIONS(6257), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6257), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6257), - [anon_sym_BSLASHacrfull] = ACTIONS(6257), - [anon_sym_BSLASHAcrfull] = ACTIONS(6257), - [anon_sym_BSLASHACRfull] = ACTIONS(6257), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6257), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6257), - [anon_sym_BSLASHacs] = ACTIONS(6257), - [anon_sym_BSLASHAcs] = ACTIONS(6257), - [anon_sym_BSLASHacsp] = ACTIONS(6257), - [anon_sym_BSLASHAcsp] = ACTIONS(6257), - [anon_sym_BSLASHacl] = ACTIONS(6257), - [anon_sym_BSLASHAcl] = ACTIONS(6257), - [anon_sym_BSLASHaclp] = ACTIONS(6257), - [anon_sym_BSLASHAclp] = ACTIONS(6257), - [anon_sym_BSLASHacf] = ACTIONS(6257), - [anon_sym_BSLASHAcf] = ACTIONS(6257), - [anon_sym_BSLASHacfp] = ACTIONS(6257), - [anon_sym_BSLASHAcfp] = ACTIONS(6257), - [anon_sym_BSLASHac] = ACTIONS(6257), - [anon_sym_BSLASHAc] = ACTIONS(6257), - [anon_sym_BSLASHacp] = ACTIONS(6257), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6257), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6257), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6257), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6257), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6257), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6257), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6257), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6257), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6257), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6257), - [anon_sym_BSLASHcolor] = ACTIONS(6257), - [anon_sym_BSLASHcolorbox] = ACTIONS(6257), - [anon_sym_BSLASHtextcolor] = ACTIONS(6257), - [anon_sym_BSLASHpagecolor] = ACTIONS(6257), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6257), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6257), - [anon_sym_BSLASHtext] = ACTIONS(6257), - [anon_sym_BSLASHintertext] = ACTIONS(6257), - [anon_sym_shortintertext] = ACTIONS(6257), - }, - [1189] = { - [sym_command_name] = ACTIONS(6121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6121), - [anon_sym_LBRACK] = ACTIONS(6123), - [anon_sym_RBRACK] = ACTIONS(6123), - [anon_sym_COMMA] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(6123), - [anon_sym_LPAREN] = ACTIONS(6123), - [anon_sym_RPAREN] = ACTIONS(6123), - [anon_sym_BSLASHpart] = ACTIONS(6121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddpart] = ACTIONS(6121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6123), - [anon_sym_BSLASHchapter] = ACTIONS(6121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddchap] = ACTIONS(6121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsection] = ACTIONS(6121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddsec] = ACTIONS(6121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubsection] = ACTIONS(6121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHparagraph] = ACTIONS(6121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6123), - [anon_sym_BSLASHitem] = ACTIONS(6121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6123), - [anon_sym_LBRACE] = ACTIONS(6123), - [sym_word] = ACTIONS(6121), - [sym_placeholder] = ACTIONS(6123), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6123), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_LT] = ACTIONS(6121), - [anon_sym_GT] = ACTIONS(6121), - [anon_sym_BANG] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_SQUOTE] = ACTIONS(6121), - [anon_sym__] = ACTIONS(6123), - [anon_sym_CARET] = ACTIONS(6123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6123), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6123), - [anon_sym_DOLLAR] = ACTIONS(6121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6123), - [anon_sym_BSLASHbegin] = ACTIONS(6121), - [anon_sym_BSLASHtitle] = ACTIONS(6121), - [anon_sym_BSLASHauthor] = ACTIONS(6121), - [anon_sym_BSLASHusepackage] = ACTIONS(6121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6121), - [anon_sym_BSLASHinclude] = ACTIONS(6121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6121), - [anon_sym_BSLASHinput] = ACTIONS(6121), - [anon_sym_BSLASHsubfile] = ACTIONS(6121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6121), - [anon_sym_BSLASHbibliography] = ACTIONS(6121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6121), - [anon_sym_BSLASHincludesvg] = ACTIONS(6121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6121), - [anon_sym_BSLASHimport] = ACTIONS(6121), - [anon_sym_BSLASHsubimport] = ACTIONS(6121), - [anon_sym_BSLASHinputfrom] = ACTIONS(6121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6121), - [anon_sym_BSLASHincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHcaption] = ACTIONS(6121), - [anon_sym_BSLASHcite] = ACTIONS(6121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCite] = ACTIONS(6121), - [anon_sym_BSLASHnocite] = ACTIONS(6121), - [anon_sym_BSLASHcitet] = ACTIONS(6121), - [anon_sym_BSLASHcitep] = ACTIONS(6121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteauthor] = ACTIONS(6121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitetitle] = ACTIONS(6121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteyear] = ACTIONS(6121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitedate] = ACTIONS(6121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteurl] = ACTIONS(6121), - [anon_sym_BSLASHfullcite] = ACTIONS(6121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6121), - [anon_sym_BSLASHcitealt] = ACTIONS(6121), - [anon_sym_BSLASHcitealp] = ACTIONS(6121), - [anon_sym_BSLASHcitetext] = ACTIONS(6121), - [anon_sym_BSLASHparencite] = ACTIONS(6121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHParencite] = ACTIONS(6121), - [anon_sym_BSLASHfootcite] = ACTIONS(6121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6121), - [anon_sym_BSLASHtextcite] = ACTIONS(6121), - [anon_sym_BSLASHTextcite] = ACTIONS(6121), - [anon_sym_BSLASHsmartcite] = ACTIONS(6121), - [anon_sym_BSLASHSmartcite] = ACTIONS(6121), - [anon_sym_BSLASHsupercite] = ACTIONS(6121), - [anon_sym_BSLASHautocite] = ACTIONS(6121), - [anon_sym_BSLASHAutocite] = ACTIONS(6121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHvolcite] = ACTIONS(6121), - [anon_sym_BSLASHVolcite] = ACTIONS(6121), - [anon_sym_BSLASHpvolcite] = ACTIONS(6121), - [anon_sym_BSLASHPvolcite] = ACTIONS(6121), - [anon_sym_BSLASHfvolcite] = ACTIONS(6121), - [anon_sym_BSLASHftvolcite] = ACTIONS(6121), - [anon_sym_BSLASHsvolcite] = ACTIONS(6121), - [anon_sym_BSLASHSvolcite] = ACTIONS(6121), - [anon_sym_BSLASHtvolcite] = ACTIONS(6121), - [anon_sym_BSLASHTvolcite] = ACTIONS(6121), - [anon_sym_BSLASHavolcite] = ACTIONS(6121), - [anon_sym_BSLASHAvolcite] = ACTIONS(6121), - [anon_sym_BSLASHnotecite] = ACTIONS(6121), - [anon_sym_BSLASHNotecite] = ACTIONS(6121), - [anon_sym_BSLASHpnotecite] = ACTIONS(6121), - [anon_sym_BSLASHPnotecite] = ACTIONS(6121), - [anon_sym_BSLASHfnotecite] = ACTIONS(6121), - [anon_sym_BSLASHlabel] = ACTIONS(6121), - [anon_sym_BSLASHref] = ACTIONS(6121), - [anon_sym_BSLASHeqref] = ACTIONS(6121), - [anon_sym_BSLASHvref] = ACTIONS(6121), - [anon_sym_BSLASHVref] = ACTIONS(6121), - [anon_sym_BSLASHautoref] = ACTIONS(6121), - [anon_sym_BSLASHpageref] = ACTIONS(6121), - [anon_sym_BSLASHcref] = ACTIONS(6121), - [anon_sym_BSLASHCref] = ACTIONS(6121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnameCref] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHlabelcref] = ACTIONS(6121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCrefrange] = ACTIONS(6121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnewlabel] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6123), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHdef] = ACTIONS(6121), - [anon_sym_BSLASHlet] = ACTIONS(6121), - [anon_sym_BSLASHleft] = ACTIONS(6121), - [anon_sym_BSLASHbig] = ACTIONS(6121), - [anon_sym_BSLASHBig] = ACTIONS(6121), - [anon_sym_BSLASHbigg] = ACTIONS(6121), - [anon_sym_BSLASHBigg] = ACTIONS(6121), - [anon_sym_BSLASHbigl] = ACTIONS(6121), - [anon_sym_BSLASHBigl] = ACTIONS(6121), - [anon_sym_BSLASHbiggl] = ACTIONS(6121), - [anon_sym_BSLASHBiggl] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6121), - [anon_sym_BSLASHgls] = ACTIONS(6121), - [anon_sym_BSLASHGls] = ACTIONS(6121), - [anon_sym_BSLASHGLS] = ACTIONS(6121), - [anon_sym_BSLASHglspl] = ACTIONS(6121), - [anon_sym_BSLASHGlspl] = ACTIONS(6121), - [anon_sym_BSLASHGLSpl] = ACTIONS(6121), - [anon_sym_BSLASHglsdisp] = ACTIONS(6121), - [anon_sym_BSLASHglslink] = ACTIONS(6121), - [anon_sym_BSLASHglstext] = ACTIONS(6121), - [anon_sym_BSLASHGlstext] = ACTIONS(6121), - [anon_sym_BSLASHGLStext] = ACTIONS(6121), - [anon_sym_BSLASHglsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6121), - [anon_sym_BSLASHglsplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSplural] = ACTIONS(6121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHglsname] = ACTIONS(6121), - [anon_sym_BSLASHGlsname] = ACTIONS(6121), - [anon_sym_BSLASHGLSname] = ACTIONS(6121), - [anon_sym_BSLASHglssymbol] = ACTIONS(6121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6121), - [anon_sym_BSLASHglsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6121), - [anon_sym_BSLASHglsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6121), - [anon_sym_BSLASHglsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6121), - [anon_sym_BSLASHglsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6121), - [anon_sym_BSLASHglsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6121), - [anon_sym_BSLASHnewacronym] = ACTIONS(6121), - [anon_sym_BSLASHacrshort] = ACTIONS(6121), - [anon_sym_BSLASHAcrshort] = ACTIONS(6121), - [anon_sym_BSLASHACRshort] = ACTIONS(6121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6121), - [anon_sym_BSLASHacrlong] = ACTIONS(6121), - [anon_sym_BSLASHAcrlong] = ACTIONS(6121), - [anon_sym_BSLASHACRlong] = ACTIONS(6121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6121), - [anon_sym_BSLASHacrfull] = ACTIONS(6121), - [anon_sym_BSLASHAcrfull] = ACTIONS(6121), - [anon_sym_BSLASHACRfull] = ACTIONS(6121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6121), - [anon_sym_BSLASHacs] = ACTIONS(6121), - [anon_sym_BSLASHAcs] = ACTIONS(6121), - [anon_sym_BSLASHacsp] = ACTIONS(6121), - [anon_sym_BSLASHAcsp] = ACTIONS(6121), - [anon_sym_BSLASHacl] = ACTIONS(6121), - [anon_sym_BSLASHAcl] = ACTIONS(6121), - [anon_sym_BSLASHaclp] = ACTIONS(6121), - [anon_sym_BSLASHAclp] = ACTIONS(6121), - [anon_sym_BSLASHacf] = ACTIONS(6121), - [anon_sym_BSLASHAcf] = ACTIONS(6121), - [anon_sym_BSLASHacfp] = ACTIONS(6121), - [anon_sym_BSLASHAcfp] = ACTIONS(6121), - [anon_sym_BSLASHac] = ACTIONS(6121), - [anon_sym_BSLASHAc] = ACTIONS(6121), - [anon_sym_BSLASHacp] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6121), - [anon_sym_BSLASHcolor] = ACTIONS(6121), - [anon_sym_BSLASHcolorbox] = ACTIONS(6121), - [anon_sym_BSLASHtextcolor] = ACTIONS(6121), - [anon_sym_BSLASHpagecolor] = ACTIONS(6121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6121), - [anon_sym_BSLASHtext] = ACTIONS(6121), - [anon_sym_BSLASHintertext] = ACTIONS(6121), - [anon_sym_shortintertext] = ACTIONS(6121), - }, - [1190] = { - [sym_command_name] = ACTIONS(6297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6297), - [anon_sym_LBRACK] = ACTIONS(6299), - [anon_sym_RBRACK] = ACTIONS(6299), - [anon_sym_COMMA] = ACTIONS(6299), - [anon_sym_EQ] = ACTIONS(6299), - [anon_sym_LPAREN] = ACTIONS(6299), - [anon_sym_RPAREN] = ACTIONS(6299), - [anon_sym_BSLASHpart] = ACTIONS(6297), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddpart] = ACTIONS(6297), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6299), - [anon_sym_BSLASHchapter] = ACTIONS(6297), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddchap] = ACTIONS(6297), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsection] = ACTIONS(6297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddsec] = ACTIONS(6297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubsection] = ACTIONS(6297), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6297), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHparagraph] = ACTIONS(6297), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6297), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6299), - [anon_sym_BSLASHitem] = ACTIONS(6297), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6299), - [anon_sym_LBRACE] = ACTIONS(6299), - [sym_word] = ACTIONS(6297), - [sym_placeholder] = ACTIONS(6299), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_LT] = ACTIONS(6297), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(6297), - [anon_sym_PIPE] = ACTIONS(6297), - [anon_sym_COLON] = ACTIONS(6297), - [anon_sym_SQUOTE] = ACTIONS(6297), - [anon_sym__] = ACTIONS(6299), - [anon_sym_CARET] = ACTIONS(6299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6299), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6299), - [anon_sym_DOLLAR] = ACTIONS(6297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6299), - [anon_sym_BSLASHbegin] = ACTIONS(6297), - [anon_sym_BSLASHtitle] = ACTIONS(6297), - [anon_sym_BSLASHauthor] = ACTIONS(6297), - [anon_sym_BSLASHusepackage] = ACTIONS(6297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6297), - [anon_sym_BSLASHinclude] = ACTIONS(6297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6297), - [anon_sym_BSLASHinput] = ACTIONS(6297), - [anon_sym_BSLASHsubfile] = ACTIONS(6297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6297), - [anon_sym_BSLASHbibliography] = ACTIONS(6297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6297), - [anon_sym_BSLASHincludesvg] = ACTIONS(6297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6297), - [anon_sym_BSLASHimport] = ACTIONS(6297), - [anon_sym_BSLASHsubimport] = ACTIONS(6297), - [anon_sym_BSLASHinputfrom] = ACTIONS(6297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6297), - [anon_sym_BSLASHincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHcaption] = ACTIONS(6297), - [anon_sym_BSLASHcite] = ACTIONS(6297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCite] = ACTIONS(6297), - [anon_sym_BSLASHnocite] = ACTIONS(6297), - [anon_sym_BSLASHcitet] = ACTIONS(6297), - [anon_sym_BSLASHcitep] = ACTIONS(6297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteauthor] = ACTIONS(6297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitetitle] = ACTIONS(6297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteyear] = ACTIONS(6297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitedate] = ACTIONS(6297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteurl] = ACTIONS(6297), - [anon_sym_BSLASHfullcite] = ACTIONS(6297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6297), - [anon_sym_BSLASHcitealt] = ACTIONS(6297), - [anon_sym_BSLASHcitealp] = ACTIONS(6297), - [anon_sym_BSLASHcitetext] = ACTIONS(6297), - [anon_sym_BSLASHparencite] = ACTIONS(6297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHParencite] = ACTIONS(6297), - [anon_sym_BSLASHfootcite] = ACTIONS(6297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6297), - [anon_sym_BSLASHtextcite] = ACTIONS(6297), - [anon_sym_BSLASHTextcite] = ACTIONS(6297), - [anon_sym_BSLASHsmartcite] = ACTIONS(6297), - [anon_sym_BSLASHSmartcite] = ACTIONS(6297), - [anon_sym_BSLASHsupercite] = ACTIONS(6297), - [anon_sym_BSLASHautocite] = ACTIONS(6297), - [anon_sym_BSLASHAutocite] = ACTIONS(6297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHvolcite] = ACTIONS(6297), - [anon_sym_BSLASHVolcite] = ACTIONS(6297), - [anon_sym_BSLASHpvolcite] = ACTIONS(6297), - [anon_sym_BSLASHPvolcite] = ACTIONS(6297), - [anon_sym_BSLASHfvolcite] = ACTIONS(6297), - [anon_sym_BSLASHftvolcite] = ACTIONS(6297), - [anon_sym_BSLASHsvolcite] = ACTIONS(6297), - [anon_sym_BSLASHSvolcite] = ACTIONS(6297), - [anon_sym_BSLASHtvolcite] = ACTIONS(6297), - [anon_sym_BSLASHTvolcite] = ACTIONS(6297), - [anon_sym_BSLASHavolcite] = ACTIONS(6297), - [anon_sym_BSLASHAvolcite] = ACTIONS(6297), - [anon_sym_BSLASHnotecite] = ACTIONS(6297), - [anon_sym_BSLASHNotecite] = ACTIONS(6297), - [anon_sym_BSLASHpnotecite] = ACTIONS(6297), - [anon_sym_BSLASHPnotecite] = ACTIONS(6297), - [anon_sym_BSLASHfnotecite] = ACTIONS(6297), - [anon_sym_BSLASHlabel] = ACTIONS(6297), - [anon_sym_BSLASHref] = ACTIONS(6297), - [anon_sym_BSLASHeqref] = ACTIONS(6297), - [anon_sym_BSLASHvref] = ACTIONS(6297), - [anon_sym_BSLASHVref] = ACTIONS(6297), - [anon_sym_BSLASHautoref] = ACTIONS(6297), - [anon_sym_BSLASHpageref] = ACTIONS(6297), - [anon_sym_BSLASHcref] = ACTIONS(6297), - [anon_sym_BSLASHCref] = ACTIONS(6297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnameCref] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHlabelcref] = ACTIONS(6297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCrefrange] = ACTIONS(6297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnewlabel] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6299), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHdef] = ACTIONS(6297), - [anon_sym_BSLASHlet] = ACTIONS(6297), - [anon_sym_BSLASHleft] = ACTIONS(6297), - [anon_sym_BSLASHbig] = ACTIONS(6297), - [anon_sym_BSLASHBig] = ACTIONS(6297), - [anon_sym_BSLASHbigg] = ACTIONS(6297), - [anon_sym_BSLASHBigg] = ACTIONS(6297), - [anon_sym_BSLASHbigl] = ACTIONS(6297), - [anon_sym_BSLASHBigl] = ACTIONS(6297), - [anon_sym_BSLASHbiggl] = ACTIONS(6297), - [anon_sym_BSLASHBiggl] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6297), - [anon_sym_BSLASHgls] = ACTIONS(6297), - [anon_sym_BSLASHGls] = ACTIONS(6297), - [anon_sym_BSLASHGLS] = ACTIONS(6297), - [anon_sym_BSLASHglspl] = ACTIONS(6297), - [anon_sym_BSLASHGlspl] = ACTIONS(6297), - [anon_sym_BSLASHGLSpl] = ACTIONS(6297), - [anon_sym_BSLASHglsdisp] = ACTIONS(6297), - [anon_sym_BSLASHglslink] = ACTIONS(6297), - [anon_sym_BSLASHglstext] = ACTIONS(6297), - [anon_sym_BSLASHGlstext] = ACTIONS(6297), - [anon_sym_BSLASHGLStext] = ACTIONS(6297), - [anon_sym_BSLASHglsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6297), - [anon_sym_BSLASHglsplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSplural] = ACTIONS(6297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHglsname] = ACTIONS(6297), - [anon_sym_BSLASHGlsname] = ACTIONS(6297), - [anon_sym_BSLASHGLSname] = ACTIONS(6297), - [anon_sym_BSLASHglssymbol] = ACTIONS(6297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6297), - [anon_sym_BSLASHglsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6297), - [anon_sym_BSLASHglsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6297), - [anon_sym_BSLASHglsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6297), - [anon_sym_BSLASHglsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6297), - [anon_sym_BSLASHglsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6297), - [anon_sym_BSLASHnewacronym] = ACTIONS(6297), - [anon_sym_BSLASHacrshort] = ACTIONS(6297), - [anon_sym_BSLASHAcrshort] = ACTIONS(6297), - [anon_sym_BSLASHACRshort] = ACTIONS(6297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6297), - [anon_sym_BSLASHacrlong] = ACTIONS(6297), - [anon_sym_BSLASHAcrlong] = ACTIONS(6297), - [anon_sym_BSLASHACRlong] = ACTIONS(6297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6297), - [anon_sym_BSLASHacrfull] = ACTIONS(6297), - [anon_sym_BSLASHAcrfull] = ACTIONS(6297), - [anon_sym_BSLASHACRfull] = ACTIONS(6297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6297), - [anon_sym_BSLASHacs] = ACTIONS(6297), - [anon_sym_BSLASHAcs] = ACTIONS(6297), - [anon_sym_BSLASHacsp] = ACTIONS(6297), - [anon_sym_BSLASHAcsp] = ACTIONS(6297), - [anon_sym_BSLASHacl] = ACTIONS(6297), - [anon_sym_BSLASHAcl] = ACTIONS(6297), - [anon_sym_BSLASHaclp] = ACTIONS(6297), - [anon_sym_BSLASHAclp] = ACTIONS(6297), - [anon_sym_BSLASHacf] = ACTIONS(6297), - [anon_sym_BSLASHAcf] = ACTIONS(6297), - [anon_sym_BSLASHacfp] = ACTIONS(6297), - [anon_sym_BSLASHAcfp] = ACTIONS(6297), - [anon_sym_BSLASHac] = ACTIONS(6297), - [anon_sym_BSLASHAc] = ACTIONS(6297), - [anon_sym_BSLASHacp] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6297), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6297), - [anon_sym_BSLASHcolor] = ACTIONS(6297), - [anon_sym_BSLASHcolorbox] = ACTIONS(6297), - [anon_sym_BSLASHtextcolor] = ACTIONS(6297), - [anon_sym_BSLASHpagecolor] = ACTIONS(6297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6297), - [anon_sym_BSLASHtext] = ACTIONS(6297), - [anon_sym_BSLASHintertext] = ACTIONS(6297), - [anon_sym_shortintertext] = ACTIONS(6297), - }, - [1191] = { - [sym_command_name] = ACTIONS(6333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6333), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_BSLASHpart] = ACTIONS(6333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddpart] = ACTIONS(6333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6335), - [anon_sym_BSLASHchapter] = ACTIONS(6333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddchap] = ACTIONS(6333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsection] = ACTIONS(6333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddsec] = ACTIONS(6333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubsection] = ACTIONS(6333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHparagraph] = ACTIONS(6333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6335), - [anon_sym_BSLASHitem] = ACTIONS(6333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6335), - [anon_sym_LBRACE] = ACTIONS(6335), - [sym_word] = ACTIONS(6333), - [sym_placeholder] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6335), - [anon_sym_DASH] = ACTIONS(6335), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6333), - [anon_sym_GT] = ACTIONS(6333), - [anon_sym_BANG] = ACTIONS(6333), - [anon_sym_PIPE] = ACTIONS(6333), - [anon_sym_COLON] = ACTIONS(6333), - [anon_sym_SQUOTE] = ACTIONS(6333), - [anon_sym__] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6335), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6335), - [anon_sym_DOLLAR] = ACTIONS(6333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6335), - [anon_sym_BSLASHbegin] = ACTIONS(6333), - [anon_sym_BSLASHtitle] = ACTIONS(6333), - [anon_sym_BSLASHauthor] = ACTIONS(6333), - [anon_sym_BSLASHusepackage] = ACTIONS(6333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6333), - [anon_sym_BSLASHinclude] = ACTIONS(6333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6333), - [anon_sym_BSLASHinput] = ACTIONS(6333), - [anon_sym_BSLASHsubfile] = ACTIONS(6333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6333), - [anon_sym_BSLASHbibliography] = ACTIONS(6333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6333), - [anon_sym_BSLASHincludesvg] = ACTIONS(6333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6333), - [anon_sym_BSLASHimport] = ACTIONS(6333), - [anon_sym_BSLASHsubimport] = ACTIONS(6333), - [anon_sym_BSLASHinputfrom] = ACTIONS(6333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6333), - [anon_sym_BSLASHincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHcaption] = ACTIONS(6333), - [anon_sym_BSLASHcite] = ACTIONS(6333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCite] = ACTIONS(6333), - [anon_sym_BSLASHnocite] = ACTIONS(6333), - [anon_sym_BSLASHcitet] = ACTIONS(6333), - [anon_sym_BSLASHcitep] = ACTIONS(6333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteauthor] = ACTIONS(6333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitetitle] = ACTIONS(6333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteyear] = ACTIONS(6333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitedate] = ACTIONS(6333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteurl] = ACTIONS(6333), - [anon_sym_BSLASHfullcite] = ACTIONS(6333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6333), - [anon_sym_BSLASHcitealt] = ACTIONS(6333), - [anon_sym_BSLASHcitealp] = ACTIONS(6333), - [anon_sym_BSLASHcitetext] = ACTIONS(6333), - [anon_sym_BSLASHparencite] = ACTIONS(6333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHParencite] = ACTIONS(6333), - [anon_sym_BSLASHfootcite] = ACTIONS(6333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6333), - [anon_sym_BSLASHtextcite] = ACTIONS(6333), - [anon_sym_BSLASHTextcite] = ACTIONS(6333), - [anon_sym_BSLASHsmartcite] = ACTIONS(6333), - [anon_sym_BSLASHSmartcite] = ACTIONS(6333), - [anon_sym_BSLASHsupercite] = ACTIONS(6333), - [anon_sym_BSLASHautocite] = ACTIONS(6333), - [anon_sym_BSLASHAutocite] = ACTIONS(6333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHvolcite] = ACTIONS(6333), - [anon_sym_BSLASHVolcite] = ACTIONS(6333), - [anon_sym_BSLASHpvolcite] = ACTIONS(6333), - [anon_sym_BSLASHPvolcite] = ACTIONS(6333), - [anon_sym_BSLASHfvolcite] = ACTIONS(6333), - [anon_sym_BSLASHftvolcite] = ACTIONS(6333), - [anon_sym_BSLASHsvolcite] = ACTIONS(6333), - [anon_sym_BSLASHSvolcite] = ACTIONS(6333), - [anon_sym_BSLASHtvolcite] = ACTIONS(6333), - [anon_sym_BSLASHTvolcite] = ACTIONS(6333), - [anon_sym_BSLASHavolcite] = ACTIONS(6333), - [anon_sym_BSLASHAvolcite] = ACTIONS(6333), - [anon_sym_BSLASHnotecite] = ACTIONS(6333), - [anon_sym_BSLASHNotecite] = ACTIONS(6333), - [anon_sym_BSLASHpnotecite] = ACTIONS(6333), - [anon_sym_BSLASHPnotecite] = ACTIONS(6333), - [anon_sym_BSLASHfnotecite] = ACTIONS(6333), - [anon_sym_BSLASHlabel] = ACTIONS(6333), - [anon_sym_BSLASHref] = ACTIONS(6333), - [anon_sym_BSLASHeqref] = ACTIONS(6333), - [anon_sym_BSLASHvref] = ACTIONS(6333), - [anon_sym_BSLASHVref] = ACTIONS(6333), - [anon_sym_BSLASHautoref] = ACTIONS(6333), - [anon_sym_BSLASHpageref] = ACTIONS(6333), - [anon_sym_BSLASHcref] = ACTIONS(6333), - [anon_sym_BSLASHCref] = ACTIONS(6333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnameCref] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHlabelcref] = ACTIONS(6333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCrefrange] = ACTIONS(6333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnewlabel] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6335), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHdef] = ACTIONS(6333), - [anon_sym_BSLASHlet] = ACTIONS(6333), - [anon_sym_BSLASHleft] = ACTIONS(6333), - [anon_sym_BSLASHbig] = ACTIONS(6333), - [anon_sym_BSLASHBig] = ACTIONS(6333), - [anon_sym_BSLASHbigg] = ACTIONS(6333), - [anon_sym_BSLASHBigg] = ACTIONS(6333), - [anon_sym_BSLASHbigl] = ACTIONS(6333), - [anon_sym_BSLASHBigl] = ACTIONS(6333), - [anon_sym_BSLASHbiggl] = ACTIONS(6333), - [anon_sym_BSLASHBiggl] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6333), - [anon_sym_BSLASHgls] = ACTIONS(6333), - [anon_sym_BSLASHGls] = ACTIONS(6333), - [anon_sym_BSLASHGLS] = ACTIONS(6333), - [anon_sym_BSLASHglspl] = ACTIONS(6333), - [anon_sym_BSLASHGlspl] = ACTIONS(6333), - [anon_sym_BSLASHGLSpl] = ACTIONS(6333), - [anon_sym_BSLASHglsdisp] = ACTIONS(6333), - [anon_sym_BSLASHglslink] = ACTIONS(6333), - [anon_sym_BSLASHglstext] = ACTIONS(6333), - [anon_sym_BSLASHGlstext] = ACTIONS(6333), - [anon_sym_BSLASHGLStext] = ACTIONS(6333), - [anon_sym_BSLASHglsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6333), - [anon_sym_BSLASHglsplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSplural] = ACTIONS(6333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHglsname] = ACTIONS(6333), - [anon_sym_BSLASHGlsname] = ACTIONS(6333), - [anon_sym_BSLASHGLSname] = ACTIONS(6333), - [anon_sym_BSLASHglssymbol] = ACTIONS(6333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6333), - [anon_sym_BSLASHglsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6333), - [anon_sym_BSLASHglsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6333), - [anon_sym_BSLASHglsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6333), - [anon_sym_BSLASHglsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6333), - [anon_sym_BSLASHglsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6333), - [anon_sym_BSLASHnewacronym] = ACTIONS(6333), - [anon_sym_BSLASHacrshort] = ACTIONS(6333), - [anon_sym_BSLASHAcrshort] = ACTIONS(6333), - [anon_sym_BSLASHACRshort] = ACTIONS(6333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6333), - [anon_sym_BSLASHacrlong] = ACTIONS(6333), - [anon_sym_BSLASHAcrlong] = ACTIONS(6333), - [anon_sym_BSLASHACRlong] = ACTIONS(6333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6333), - [anon_sym_BSLASHacrfull] = ACTIONS(6333), - [anon_sym_BSLASHAcrfull] = ACTIONS(6333), - [anon_sym_BSLASHACRfull] = ACTIONS(6333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6333), - [anon_sym_BSLASHacs] = ACTIONS(6333), - [anon_sym_BSLASHAcs] = ACTIONS(6333), - [anon_sym_BSLASHacsp] = ACTIONS(6333), - [anon_sym_BSLASHAcsp] = ACTIONS(6333), - [anon_sym_BSLASHacl] = ACTIONS(6333), - [anon_sym_BSLASHAcl] = ACTIONS(6333), - [anon_sym_BSLASHaclp] = ACTIONS(6333), - [anon_sym_BSLASHAclp] = ACTIONS(6333), - [anon_sym_BSLASHacf] = ACTIONS(6333), - [anon_sym_BSLASHAcf] = ACTIONS(6333), - [anon_sym_BSLASHacfp] = ACTIONS(6333), - [anon_sym_BSLASHAcfp] = ACTIONS(6333), - [anon_sym_BSLASHac] = ACTIONS(6333), - [anon_sym_BSLASHAc] = ACTIONS(6333), - [anon_sym_BSLASHacp] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6333), - [anon_sym_BSLASHcolor] = ACTIONS(6333), - [anon_sym_BSLASHcolorbox] = ACTIONS(6333), - [anon_sym_BSLASHtextcolor] = ACTIONS(6333), - [anon_sym_BSLASHpagecolor] = ACTIONS(6333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6333), - [anon_sym_BSLASHtext] = ACTIONS(6333), - [anon_sym_BSLASHintertext] = ACTIONS(6333), - [anon_sym_shortintertext] = ACTIONS(6333), - }, - [1192] = { - [sym_command_name] = ACTIONS(6261), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(6263), - [anon_sym_RBRACK] = ACTIONS(6263), - [anon_sym_COMMA] = ACTIONS(6263), - [anon_sym_EQ] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6263), - [anon_sym_RPAREN] = ACTIONS(6263), - [anon_sym_BSLASHpart] = ACTIONS(6261), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddpart] = ACTIONS(6261), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6263), - [anon_sym_BSLASHchapter] = ACTIONS(6261), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddchap] = ACTIONS(6261), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsection] = ACTIONS(6261), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddsec] = ACTIONS(6261), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubsection] = ACTIONS(6261), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6261), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHparagraph] = ACTIONS(6261), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6261), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6263), - [anon_sym_BSLASHitem] = ACTIONS(6261), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6263), - [anon_sym_LBRACE] = ACTIONS(6263), - [sym_word] = ACTIONS(6261), - [sym_placeholder] = ACTIONS(6263), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_STAR] = ACTIONS(6263), - [anon_sym_SLASH] = ACTIONS(6263), - [anon_sym_LT] = ACTIONS(6261), - [anon_sym_GT] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_PIPE] = ACTIONS(6261), - [anon_sym_COLON] = ACTIONS(6261), - [anon_sym_SQUOTE] = ACTIONS(6261), - [anon_sym__] = ACTIONS(6263), - [anon_sym_CARET] = ACTIONS(6263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6263), - [anon_sym_DOLLAR] = ACTIONS(6261), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6263), - [anon_sym_BSLASHbegin] = ACTIONS(6261), - [anon_sym_BSLASHend] = ACTIONS(6261), - [anon_sym_BSLASHtitle] = ACTIONS(6261), - [anon_sym_BSLASHauthor] = ACTIONS(6261), - [anon_sym_BSLASHusepackage] = ACTIONS(6261), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6261), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6261), - [anon_sym_BSLASHinclude] = ACTIONS(6261), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6261), - [anon_sym_BSLASHinput] = ACTIONS(6261), - [anon_sym_BSLASHsubfile] = ACTIONS(6261), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6261), - [anon_sym_BSLASHbibliography] = ACTIONS(6261), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6261), - [anon_sym_BSLASHincludesvg] = ACTIONS(6261), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6261), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6261), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6261), - [anon_sym_BSLASHimport] = ACTIONS(6261), - [anon_sym_BSLASHsubimport] = ACTIONS(6261), - [anon_sym_BSLASHinputfrom] = ACTIONS(6261), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6261), - [anon_sym_BSLASHincludefrom] = ACTIONS(6261), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6261), - [anon_sym_BSLASHcaption] = ACTIONS(6261), - [anon_sym_BSLASHcite] = ACTIONS(6261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCite] = ACTIONS(6261), - [anon_sym_BSLASHnocite] = ACTIONS(6261), - [anon_sym_BSLASHcitet] = ACTIONS(6261), - [anon_sym_BSLASHcitep] = ACTIONS(6261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteauthor] = ACTIONS(6261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitetitle] = ACTIONS(6261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteyear] = ACTIONS(6261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitedate] = ACTIONS(6261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteurl] = ACTIONS(6261), - [anon_sym_BSLASHfullcite] = ACTIONS(6261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6261), - [anon_sym_BSLASHcitealt] = ACTIONS(6261), - [anon_sym_BSLASHcitealp] = ACTIONS(6261), - [anon_sym_BSLASHcitetext] = ACTIONS(6261), - [anon_sym_BSLASHparencite] = ACTIONS(6261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHParencite] = ACTIONS(6261), - [anon_sym_BSLASHfootcite] = ACTIONS(6261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6261), - [anon_sym_BSLASHtextcite] = ACTIONS(6261), - [anon_sym_BSLASHTextcite] = ACTIONS(6261), - [anon_sym_BSLASHsmartcite] = ACTIONS(6261), - [anon_sym_BSLASHSmartcite] = ACTIONS(6261), - [anon_sym_BSLASHsupercite] = ACTIONS(6261), - [anon_sym_BSLASHautocite] = ACTIONS(6261), - [anon_sym_BSLASHAutocite] = ACTIONS(6261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHvolcite] = ACTIONS(6261), - [anon_sym_BSLASHVolcite] = ACTIONS(6261), - [anon_sym_BSLASHpvolcite] = ACTIONS(6261), - [anon_sym_BSLASHPvolcite] = ACTIONS(6261), - [anon_sym_BSLASHfvolcite] = ACTIONS(6261), - [anon_sym_BSLASHftvolcite] = ACTIONS(6261), - [anon_sym_BSLASHsvolcite] = ACTIONS(6261), - [anon_sym_BSLASHSvolcite] = ACTIONS(6261), - [anon_sym_BSLASHtvolcite] = ACTIONS(6261), - [anon_sym_BSLASHTvolcite] = ACTIONS(6261), - [anon_sym_BSLASHavolcite] = ACTIONS(6261), - [anon_sym_BSLASHAvolcite] = ACTIONS(6261), - [anon_sym_BSLASHnotecite] = ACTIONS(6261), - [anon_sym_BSLASHNotecite] = ACTIONS(6261), - [anon_sym_BSLASHpnotecite] = ACTIONS(6261), - [anon_sym_BSLASHPnotecite] = ACTIONS(6261), - [anon_sym_BSLASHfnotecite] = ACTIONS(6261), - [anon_sym_BSLASHlabel] = ACTIONS(6261), - [anon_sym_BSLASHref] = ACTIONS(6261), - [anon_sym_BSLASHeqref] = ACTIONS(6261), - [anon_sym_BSLASHvref] = ACTIONS(6261), - [anon_sym_BSLASHVref] = ACTIONS(6261), - [anon_sym_BSLASHautoref] = ACTIONS(6261), - [anon_sym_BSLASHpageref] = ACTIONS(6261), - [anon_sym_BSLASHcref] = ACTIONS(6261), - [anon_sym_BSLASHCref] = ACTIONS(6261), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6263), - [anon_sym_BSLASHnamecref] = ACTIONS(6261), - [anon_sym_BSLASHnameCref] = ACTIONS(6261), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6261), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6261), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6261), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6261), - [anon_sym_BSLASHlabelcref] = ACTIONS(6261), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6261), - [anon_sym_BSLASHcrefrange] = ACTIONS(6261), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCrefrange] = ACTIONS(6261), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6263), - [anon_sym_BSLASHnewlabel] = ACTIONS(6261), - [anon_sym_BSLASHnewcommand] = ACTIONS(6261), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6261), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6261), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6263), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHdef] = ACTIONS(6261), - [anon_sym_BSLASHlet] = ACTIONS(6261), - [anon_sym_BSLASHleft] = ACTIONS(6261), - [anon_sym_BSLASHbig] = ACTIONS(6261), - [anon_sym_BSLASHBig] = ACTIONS(6261), - [anon_sym_BSLASHbigg] = ACTIONS(6261), - [anon_sym_BSLASHBigg] = ACTIONS(6261), - [anon_sym_BSLASHbigl] = ACTIONS(6261), - [anon_sym_BSLASHBigl] = ACTIONS(6261), - [anon_sym_BSLASHbiggl] = ACTIONS(6261), - [anon_sym_BSLASHBiggl] = ACTIONS(6261), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6261), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6261), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6261), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6261), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6261), - [anon_sym_BSLASHgls] = ACTIONS(6261), - [anon_sym_BSLASHGls] = ACTIONS(6261), - [anon_sym_BSLASHGLS] = ACTIONS(6261), - [anon_sym_BSLASHglspl] = ACTIONS(6261), - [anon_sym_BSLASHGlspl] = ACTIONS(6261), - [anon_sym_BSLASHGLSpl] = ACTIONS(6261), - [anon_sym_BSLASHglsdisp] = ACTIONS(6261), - [anon_sym_BSLASHglslink] = ACTIONS(6261), - [anon_sym_BSLASHglstext] = ACTIONS(6261), - [anon_sym_BSLASHGlstext] = ACTIONS(6261), - [anon_sym_BSLASHGLStext] = ACTIONS(6261), - [anon_sym_BSLASHglsfirst] = ACTIONS(6261), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6261), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6261), - [anon_sym_BSLASHglsplural] = ACTIONS(6261), - [anon_sym_BSLASHGlsplural] = ACTIONS(6261), - [anon_sym_BSLASHGLSplural] = ACTIONS(6261), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHglsname] = ACTIONS(6261), - [anon_sym_BSLASHGlsname] = ACTIONS(6261), - [anon_sym_BSLASHGLSname] = ACTIONS(6261), - [anon_sym_BSLASHglssymbol] = ACTIONS(6261), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6261), - [anon_sym_BSLASHglsdesc] = ACTIONS(6261), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6261), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6261), - [anon_sym_BSLASHglsuseri] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6261), - [anon_sym_BSLASHglsuserii] = ACTIONS(6261), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6261), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6261), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6261), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6261), - [anon_sym_BSLASHglsuserv] = ACTIONS(6261), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6261), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6261), - [anon_sym_BSLASHglsuservi] = ACTIONS(6261), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6261), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6261), - [anon_sym_BSLASHnewacronym] = ACTIONS(6261), - [anon_sym_BSLASHacrshort] = ACTIONS(6261), - [anon_sym_BSLASHAcrshort] = ACTIONS(6261), - [anon_sym_BSLASHACRshort] = ACTIONS(6261), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6261), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6261), - [anon_sym_BSLASHacrlong] = ACTIONS(6261), - [anon_sym_BSLASHAcrlong] = ACTIONS(6261), - [anon_sym_BSLASHACRlong] = ACTIONS(6261), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6261), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6261), - [anon_sym_BSLASHacrfull] = ACTIONS(6261), - [anon_sym_BSLASHAcrfull] = ACTIONS(6261), - [anon_sym_BSLASHACRfull] = ACTIONS(6261), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6261), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6261), - [anon_sym_BSLASHacs] = ACTIONS(6261), - [anon_sym_BSLASHAcs] = ACTIONS(6261), - [anon_sym_BSLASHacsp] = ACTIONS(6261), - [anon_sym_BSLASHAcsp] = ACTIONS(6261), - [anon_sym_BSLASHacl] = ACTIONS(6261), - [anon_sym_BSLASHAcl] = ACTIONS(6261), - [anon_sym_BSLASHaclp] = ACTIONS(6261), - [anon_sym_BSLASHAclp] = ACTIONS(6261), - [anon_sym_BSLASHacf] = ACTIONS(6261), - [anon_sym_BSLASHAcf] = ACTIONS(6261), - [anon_sym_BSLASHacfp] = ACTIONS(6261), - [anon_sym_BSLASHAcfp] = ACTIONS(6261), - [anon_sym_BSLASHac] = ACTIONS(6261), - [anon_sym_BSLASHAc] = ACTIONS(6261), - [anon_sym_BSLASHacp] = ACTIONS(6261), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6261), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6261), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6261), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6261), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6261), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6261), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6261), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6261), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6261), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6261), - [anon_sym_BSLASHcolor] = ACTIONS(6261), - [anon_sym_BSLASHcolorbox] = ACTIONS(6261), - [anon_sym_BSLASHtextcolor] = ACTIONS(6261), - [anon_sym_BSLASHpagecolor] = ACTIONS(6261), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6261), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6261), - [anon_sym_BSLASHtext] = ACTIONS(6261), - [anon_sym_BSLASHintertext] = ACTIONS(6261), - [anon_sym_shortintertext] = ACTIONS(6261), - }, - [1193] = { - [sym_command_name] = ACTIONS(6265), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6265), - [anon_sym_LBRACK] = ACTIONS(6267), - [anon_sym_RBRACK] = ACTIONS(6267), - [anon_sym_COMMA] = ACTIONS(6267), - [anon_sym_EQ] = ACTIONS(6267), - [anon_sym_LPAREN] = ACTIONS(6267), - [anon_sym_RPAREN] = ACTIONS(6267), - [anon_sym_BSLASHpart] = ACTIONS(6265), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddpart] = ACTIONS(6265), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6267), - [anon_sym_BSLASHchapter] = ACTIONS(6265), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddchap] = ACTIONS(6265), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsection] = ACTIONS(6265), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddsec] = ACTIONS(6265), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubsection] = ACTIONS(6265), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6265), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHparagraph] = ACTIONS(6265), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6265), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6267), - [anon_sym_BSLASHitem] = ACTIONS(6265), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6267), - [anon_sym_LBRACE] = ACTIONS(6267), - [sym_word] = ACTIONS(6265), - [sym_placeholder] = ACTIONS(6267), - [anon_sym_PLUS] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(6267), - [anon_sym_STAR] = ACTIONS(6267), - [anon_sym_SLASH] = ACTIONS(6267), - [anon_sym_LT] = ACTIONS(6265), - [anon_sym_GT] = ACTIONS(6265), - [anon_sym_BANG] = ACTIONS(6265), - [anon_sym_PIPE] = ACTIONS(6265), - [anon_sym_COLON] = ACTIONS(6265), - [anon_sym_SQUOTE] = ACTIONS(6265), - [anon_sym__] = ACTIONS(6267), - [anon_sym_CARET] = ACTIONS(6267), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6267), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6267), - [anon_sym_DOLLAR] = ACTIONS(6265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6267), - [anon_sym_BSLASHbegin] = ACTIONS(6265), - [anon_sym_BSLASHend] = ACTIONS(6265), - [anon_sym_BSLASHtitle] = ACTIONS(6265), - [anon_sym_BSLASHauthor] = ACTIONS(6265), - [anon_sym_BSLASHusepackage] = ACTIONS(6265), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6265), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6265), - [anon_sym_BSLASHinclude] = ACTIONS(6265), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6265), - [anon_sym_BSLASHinput] = ACTIONS(6265), - [anon_sym_BSLASHsubfile] = ACTIONS(6265), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6265), - [anon_sym_BSLASHbibliography] = ACTIONS(6265), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6265), - [anon_sym_BSLASHincludesvg] = ACTIONS(6265), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6265), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6265), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6265), - [anon_sym_BSLASHimport] = ACTIONS(6265), - [anon_sym_BSLASHsubimport] = ACTIONS(6265), - [anon_sym_BSLASHinputfrom] = ACTIONS(6265), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6265), - [anon_sym_BSLASHincludefrom] = ACTIONS(6265), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6265), - [anon_sym_BSLASHcaption] = ACTIONS(6265), - [anon_sym_BSLASHcite] = ACTIONS(6265), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCite] = ACTIONS(6265), - [anon_sym_BSLASHnocite] = ACTIONS(6265), - [anon_sym_BSLASHcitet] = ACTIONS(6265), - [anon_sym_BSLASHcitep] = ACTIONS(6265), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteauthor] = ACTIONS(6265), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6265), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitetitle] = ACTIONS(6265), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteyear] = ACTIONS(6265), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitedate] = ACTIONS(6265), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteurl] = ACTIONS(6265), - [anon_sym_BSLASHfullcite] = ACTIONS(6265), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6265), - [anon_sym_BSLASHcitealt] = ACTIONS(6265), - [anon_sym_BSLASHcitealp] = ACTIONS(6265), - [anon_sym_BSLASHcitetext] = ACTIONS(6265), - [anon_sym_BSLASHparencite] = ACTIONS(6265), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHParencite] = ACTIONS(6265), - [anon_sym_BSLASHfootcite] = ACTIONS(6265), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6265), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6265), - [anon_sym_BSLASHtextcite] = ACTIONS(6265), - [anon_sym_BSLASHTextcite] = ACTIONS(6265), - [anon_sym_BSLASHsmartcite] = ACTIONS(6265), - [anon_sym_BSLASHSmartcite] = ACTIONS(6265), - [anon_sym_BSLASHsupercite] = ACTIONS(6265), - [anon_sym_BSLASHautocite] = ACTIONS(6265), - [anon_sym_BSLASHAutocite] = ACTIONS(6265), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHvolcite] = ACTIONS(6265), - [anon_sym_BSLASHVolcite] = ACTIONS(6265), - [anon_sym_BSLASHpvolcite] = ACTIONS(6265), - [anon_sym_BSLASHPvolcite] = ACTIONS(6265), - [anon_sym_BSLASHfvolcite] = ACTIONS(6265), - [anon_sym_BSLASHftvolcite] = ACTIONS(6265), - [anon_sym_BSLASHsvolcite] = ACTIONS(6265), - [anon_sym_BSLASHSvolcite] = ACTIONS(6265), - [anon_sym_BSLASHtvolcite] = ACTIONS(6265), - [anon_sym_BSLASHTvolcite] = ACTIONS(6265), - [anon_sym_BSLASHavolcite] = ACTIONS(6265), - [anon_sym_BSLASHAvolcite] = ACTIONS(6265), - [anon_sym_BSLASHnotecite] = ACTIONS(6265), - [anon_sym_BSLASHNotecite] = ACTIONS(6265), - [anon_sym_BSLASHpnotecite] = ACTIONS(6265), - [anon_sym_BSLASHPnotecite] = ACTIONS(6265), - [anon_sym_BSLASHfnotecite] = ACTIONS(6265), - [anon_sym_BSLASHlabel] = ACTIONS(6265), - [anon_sym_BSLASHref] = ACTIONS(6265), - [anon_sym_BSLASHeqref] = ACTIONS(6265), - [anon_sym_BSLASHvref] = ACTIONS(6265), - [anon_sym_BSLASHVref] = ACTIONS(6265), - [anon_sym_BSLASHautoref] = ACTIONS(6265), - [anon_sym_BSLASHpageref] = ACTIONS(6265), - [anon_sym_BSLASHcref] = ACTIONS(6265), - [anon_sym_BSLASHCref] = ACTIONS(6265), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6267), - [anon_sym_BSLASHnamecref] = ACTIONS(6265), - [anon_sym_BSLASHnameCref] = ACTIONS(6265), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6265), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6265), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6265), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6265), - [anon_sym_BSLASHlabelcref] = ACTIONS(6265), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6265), - [anon_sym_BSLASHcrefrange] = ACTIONS(6265), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCrefrange] = ACTIONS(6265), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6267), - [anon_sym_BSLASHnewlabel] = ACTIONS(6265), - [anon_sym_BSLASHnewcommand] = ACTIONS(6265), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6265), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6265), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6267), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHdef] = ACTIONS(6265), - [anon_sym_BSLASHlet] = ACTIONS(6265), - [anon_sym_BSLASHleft] = ACTIONS(6265), - [anon_sym_BSLASHbig] = ACTIONS(6265), - [anon_sym_BSLASHBig] = ACTIONS(6265), - [anon_sym_BSLASHbigg] = ACTIONS(6265), - [anon_sym_BSLASHBigg] = ACTIONS(6265), - [anon_sym_BSLASHbigl] = ACTIONS(6265), - [anon_sym_BSLASHBigl] = ACTIONS(6265), - [anon_sym_BSLASHbiggl] = ACTIONS(6265), - [anon_sym_BSLASHBiggl] = ACTIONS(6265), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6265), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6265), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6265), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6265), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6265), - [anon_sym_BSLASHgls] = ACTIONS(6265), - [anon_sym_BSLASHGls] = ACTIONS(6265), - [anon_sym_BSLASHGLS] = ACTIONS(6265), - [anon_sym_BSLASHglspl] = ACTIONS(6265), - [anon_sym_BSLASHGlspl] = ACTIONS(6265), - [anon_sym_BSLASHGLSpl] = ACTIONS(6265), - [anon_sym_BSLASHglsdisp] = ACTIONS(6265), - [anon_sym_BSLASHglslink] = ACTIONS(6265), - [anon_sym_BSLASHglstext] = ACTIONS(6265), - [anon_sym_BSLASHGlstext] = ACTIONS(6265), - [anon_sym_BSLASHGLStext] = ACTIONS(6265), - [anon_sym_BSLASHglsfirst] = ACTIONS(6265), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6265), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6265), - [anon_sym_BSLASHglsplural] = ACTIONS(6265), - [anon_sym_BSLASHGlsplural] = ACTIONS(6265), - [anon_sym_BSLASHGLSplural] = ACTIONS(6265), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHglsname] = ACTIONS(6265), - [anon_sym_BSLASHGlsname] = ACTIONS(6265), - [anon_sym_BSLASHGLSname] = ACTIONS(6265), - [anon_sym_BSLASHglssymbol] = ACTIONS(6265), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6265), - [anon_sym_BSLASHglsdesc] = ACTIONS(6265), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6265), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6265), - [anon_sym_BSLASHglsuseri] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6265), - [anon_sym_BSLASHglsuserii] = ACTIONS(6265), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6265), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6265), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6265), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6265), - [anon_sym_BSLASHglsuserv] = ACTIONS(6265), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6265), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6265), - [anon_sym_BSLASHglsuservi] = ACTIONS(6265), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6265), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6265), - [anon_sym_BSLASHnewacronym] = ACTIONS(6265), - [anon_sym_BSLASHacrshort] = ACTIONS(6265), - [anon_sym_BSLASHAcrshort] = ACTIONS(6265), - [anon_sym_BSLASHACRshort] = ACTIONS(6265), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6265), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6265), - [anon_sym_BSLASHacrlong] = ACTIONS(6265), - [anon_sym_BSLASHAcrlong] = ACTIONS(6265), - [anon_sym_BSLASHACRlong] = ACTIONS(6265), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6265), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6265), - [anon_sym_BSLASHacrfull] = ACTIONS(6265), - [anon_sym_BSLASHAcrfull] = ACTIONS(6265), - [anon_sym_BSLASHACRfull] = ACTIONS(6265), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6265), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6265), - [anon_sym_BSLASHacs] = ACTIONS(6265), - [anon_sym_BSLASHAcs] = ACTIONS(6265), - [anon_sym_BSLASHacsp] = ACTIONS(6265), - [anon_sym_BSLASHAcsp] = ACTIONS(6265), - [anon_sym_BSLASHacl] = ACTIONS(6265), - [anon_sym_BSLASHAcl] = ACTIONS(6265), - [anon_sym_BSLASHaclp] = ACTIONS(6265), - [anon_sym_BSLASHAclp] = ACTIONS(6265), - [anon_sym_BSLASHacf] = ACTIONS(6265), - [anon_sym_BSLASHAcf] = ACTIONS(6265), - [anon_sym_BSLASHacfp] = ACTIONS(6265), - [anon_sym_BSLASHAcfp] = ACTIONS(6265), - [anon_sym_BSLASHac] = ACTIONS(6265), - [anon_sym_BSLASHAc] = ACTIONS(6265), - [anon_sym_BSLASHacp] = ACTIONS(6265), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6265), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6265), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6265), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6265), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6265), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6265), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6265), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6265), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6265), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6265), - [anon_sym_BSLASHcolor] = ACTIONS(6265), - [anon_sym_BSLASHcolorbox] = ACTIONS(6265), - [anon_sym_BSLASHtextcolor] = ACTIONS(6265), - [anon_sym_BSLASHpagecolor] = ACTIONS(6265), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6265), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6265), - [anon_sym_BSLASHtext] = ACTIONS(6265), - [anon_sym_BSLASHintertext] = ACTIONS(6265), - [anon_sym_shortintertext] = ACTIONS(6265), - }, - [1194] = { - [sym_command_name] = ACTIONS(6269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6269), - [anon_sym_LBRACK] = ACTIONS(6271), - [anon_sym_RBRACK] = ACTIONS(6271), - [anon_sym_COMMA] = ACTIONS(6271), - [anon_sym_EQ] = ACTIONS(6271), - [anon_sym_LPAREN] = ACTIONS(6271), - [anon_sym_RPAREN] = ACTIONS(6271), - [anon_sym_BSLASHpart] = ACTIONS(6269), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddpart] = ACTIONS(6269), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6271), - [anon_sym_BSLASHchapter] = ACTIONS(6269), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddchap] = ACTIONS(6269), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsection] = ACTIONS(6269), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddsec] = ACTIONS(6269), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubsection] = ACTIONS(6269), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6269), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHparagraph] = ACTIONS(6269), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6269), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6271), - [anon_sym_BSLASHitem] = ACTIONS(6269), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6271), - [anon_sym_LBRACE] = ACTIONS(6271), - [sym_word] = ACTIONS(6269), - [sym_placeholder] = ACTIONS(6271), - [anon_sym_PLUS] = ACTIONS(6271), - [anon_sym_DASH] = ACTIONS(6271), - [anon_sym_STAR] = ACTIONS(6271), - [anon_sym_SLASH] = ACTIONS(6271), - [anon_sym_LT] = ACTIONS(6269), - [anon_sym_GT] = ACTIONS(6269), - [anon_sym_BANG] = ACTIONS(6269), - [anon_sym_PIPE] = ACTIONS(6269), - [anon_sym_COLON] = ACTIONS(6269), - [anon_sym_SQUOTE] = ACTIONS(6269), - [anon_sym__] = ACTIONS(6271), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6271), - [anon_sym_DOLLAR] = ACTIONS(6269), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6271), - [anon_sym_BSLASHbegin] = ACTIONS(6269), - [anon_sym_BSLASHend] = ACTIONS(6269), - [anon_sym_BSLASHtitle] = ACTIONS(6269), - [anon_sym_BSLASHauthor] = ACTIONS(6269), - [anon_sym_BSLASHusepackage] = ACTIONS(6269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6269), - [anon_sym_BSLASHinclude] = ACTIONS(6269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6269), - [anon_sym_BSLASHinput] = ACTIONS(6269), - [anon_sym_BSLASHsubfile] = ACTIONS(6269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6269), - [anon_sym_BSLASHbibliography] = ACTIONS(6269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6269), - [anon_sym_BSLASHincludesvg] = ACTIONS(6269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6269), - [anon_sym_BSLASHimport] = ACTIONS(6269), - [anon_sym_BSLASHsubimport] = ACTIONS(6269), - [anon_sym_BSLASHinputfrom] = ACTIONS(6269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6269), - [anon_sym_BSLASHincludefrom] = ACTIONS(6269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6269), - [anon_sym_BSLASHcaption] = ACTIONS(6269), - [anon_sym_BSLASHcite] = ACTIONS(6269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCite] = ACTIONS(6269), - [anon_sym_BSLASHnocite] = ACTIONS(6269), - [anon_sym_BSLASHcitet] = ACTIONS(6269), - [anon_sym_BSLASHcitep] = ACTIONS(6269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteauthor] = ACTIONS(6269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitetitle] = ACTIONS(6269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteyear] = ACTIONS(6269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitedate] = ACTIONS(6269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteurl] = ACTIONS(6269), - [anon_sym_BSLASHfullcite] = ACTIONS(6269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6269), - [anon_sym_BSLASHcitealt] = ACTIONS(6269), - [anon_sym_BSLASHcitealp] = ACTIONS(6269), - [anon_sym_BSLASHcitetext] = ACTIONS(6269), - [anon_sym_BSLASHparencite] = ACTIONS(6269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHParencite] = ACTIONS(6269), - [anon_sym_BSLASHfootcite] = ACTIONS(6269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6269), - [anon_sym_BSLASHtextcite] = ACTIONS(6269), - [anon_sym_BSLASHTextcite] = ACTIONS(6269), - [anon_sym_BSLASHsmartcite] = ACTIONS(6269), - [anon_sym_BSLASHSmartcite] = ACTIONS(6269), - [anon_sym_BSLASHsupercite] = ACTIONS(6269), - [anon_sym_BSLASHautocite] = ACTIONS(6269), - [anon_sym_BSLASHAutocite] = ACTIONS(6269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHvolcite] = ACTIONS(6269), - [anon_sym_BSLASHVolcite] = ACTIONS(6269), - [anon_sym_BSLASHpvolcite] = ACTIONS(6269), - [anon_sym_BSLASHPvolcite] = ACTIONS(6269), - [anon_sym_BSLASHfvolcite] = ACTIONS(6269), - [anon_sym_BSLASHftvolcite] = ACTIONS(6269), - [anon_sym_BSLASHsvolcite] = ACTIONS(6269), - [anon_sym_BSLASHSvolcite] = ACTIONS(6269), - [anon_sym_BSLASHtvolcite] = ACTIONS(6269), - [anon_sym_BSLASHTvolcite] = ACTIONS(6269), - [anon_sym_BSLASHavolcite] = ACTIONS(6269), - [anon_sym_BSLASHAvolcite] = ACTIONS(6269), - [anon_sym_BSLASHnotecite] = ACTIONS(6269), - [anon_sym_BSLASHNotecite] = ACTIONS(6269), - [anon_sym_BSLASHpnotecite] = ACTIONS(6269), - [anon_sym_BSLASHPnotecite] = ACTIONS(6269), - [anon_sym_BSLASHfnotecite] = ACTIONS(6269), - [anon_sym_BSLASHlabel] = ACTIONS(6269), - [anon_sym_BSLASHref] = ACTIONS(6269), - [anon_sym_BSLASHeqref] = ACTIONS(6269), - [anon_sym_BSLASHvref] = ACTIONS(6269), - [anon_sym_BSLASHVref] = ACTIONS(6269), - [anon_sym_BSLASHautoref] = ACTIONS(6269), - [anon_sym_BSLASHpageref] = ACTIONS(6269), - [anon_sym_BSLASHcref] = ACTIONS(6269), - [anon_sym_BSLASHCref] = ACTIONS(6269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6271), - [anon_sym_BSLASHnamecref] = ACTIONS(6269), - [anon_sym_BSLASHnameCref] = ACTIONS(6269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6269), - [anon_sym_BSLASHlabelcref] = ACTIONS(6269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6269), - [anon_sym_BSLASHcrefrange] = ACTIONS(6269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCrefrange] = ACTIONS(6269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6271), - [anon_sym_BSLASHnewlabel] = ACTIONS(6269), - [anon_sym_BSLASHnewcommand] = ACTIONS(6269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6271), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHdef] = ACTIONS(6269), - [anon_sym_BSLASHlet] = ACTIONS(6269), - [anon_sym_BSLASHleft] = ACTIONS(6269), - [anon_sym_BSLASHbig] = ACTIONS(6269), - [anon_sym_BSLASHBig] = ACTIONS(6269), - [anon_sym_BSLASHbigg] = ACTIONS(6269), - [anon_sym_BSLASHBigg] = ACTIONS(6269), - [anon_sym_BSLASHbigl] = ACTIONS(6269), - [anon_sym_BSLASHBigl] = ACTIONS(6269), - [anon_sym_BSLASHbiggl] = ACTIONS(6269), - [anon_sym_BSLASHBiggl] = ACTIONS(6269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6269), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6269), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6269), - [anon_sym_BSLASHgls] = ACTIONS(6269), - [anon_sym_BSLASHGls] = ACTIONS(6269), - [anon_sym_BSLASHGLS] = ACTIONS(6269), - [anon_sym_BSLASHglspl] = ACTIONS(6269), - [anon_sym_BSLASHGlspl] = ACTIONS(6269), - [anon_sym_BSLASHGLSpl] = ACTIONS(6269), - [anon_sym_BSLASHglsdisp] = ACTIONS(6269), - [anon_sym_BSLASHglslink] = ACTIONS(6269), - [anon_sym_BSLASHglstext] = ACTIONS(6269), - [anon_sym_BSLASHGlstext] = ACTIONS(6269), - [anon_sym_BSLASHGLStext] = ACTIONS(6269), - [anon_sym_BSLASHglsfirst] = ACTIONS(6269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6269), - [anon_sym_BSLASHglsplural] = ACTIONS(6269), - [anon_sym_BSLASHGlsplural] = ACTIONS(6269), - [anon_sym_BSLASHGLSplural] = ACTIONS(6269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHglsname] = ACTIONS(6269), - [anon_sym_BSLASHGlsname] = ACTIONS(6269), - [anon_sym_BSLASHGLSname] = ACTIONS(6269), - [anon_sym_BSLASHglssymbol] = ACTIONS(6269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6269), - [anon_sym_BSLASHglsdesc] = ACTIONS(6269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6269), - [anon_sym_BSLASHglsuseri] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6269), - [anon_sym_BSLASHglsuserii] = ACTIONS(6269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6269), - [anon_sym_BSLASHglsuserv] = ACTIONS(6269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6269), - [anon_sym_BSLASHglsuservi] = ACTIONS(6269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6269), - [anon_sym_BSLASHnewacronym] = ACTIONS(6269), - [anon_sym_BSLASHacrshort] = ACTIONS(6269), - [anon_sym_BSLASHAcrshort] = ACTIONS(6269), - [anon_sym_BSLASHACRshort] = ACTIONS(6269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6269), - [anon_sym_BSLASHacrlong] = ACTIONS(6269), - [anon_sym_BSLASHAcrlong] = ACTIONS(6269), - [anon_sym_BSLASHACRlong] = ACTIONS(6269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6269), - [anon_sym_BSLASHacrfull] = ACTIONS(6269), - [anon_sym_BSLASHAcrfull] = ACTIONS(6269), - [anon_sym_BSLASHACRfull] = ACTIONS(6269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6269), - [anon_sym_BSLASHacs] = ACTIONS(6269), - [anon_sym_BSLASHAcs] = ACTIONS(6269), - [anon_sym_BSLASHacsp] = ACTIONS(6269), - [anon_sym_BSLASHAcsp] = ACTIONS(6269), - [anon_sym_BSLASHacl] = ACTIONS(6269), - [anon_sym_BSLASHAcl] = ACTIONS(6269), - [anon_sym_BSLASHaclp] = ACTIONS(6269), - [anon_sym_BSLASHAclp] = ACTIONS(6269), - [anon_sym_BSLASHacf] = ACTIONS(6269), - [anon_sym_BSLASHAcf] = ACTIONS(6269), - [anon_sym_BSLASHacfp] = ACTIONS(6269), - [anon_sym_BSLASHAcfp] = ACTIONS(6269), - [anon_sym_BSLASHac] = ACTIONS(6269), - [anon_sym_BSLASHAc] = ACTIONS(6269), - [anon_sym_BSLASHacp] = ACTIONS(6269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6269), - [anon_sym_BSLASHcolor] = ACTIONS(6269), - [anon_sym_BSLASHcolorbox] = ACTIONS(6269), - [anon_sym_BSLASHtextcolor] = ACTIONS(6269), - [anon_sym_BSLASHpagecolor] = ACTIONS(6269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6269), - [anon_sym_BSLASHtext] = ACTIONS(6269), - [anon_sym_BSLASHintertext] = ACTIONS(6269), - [anon_sym_shortintertext] = ACTIONS(6269), - }, - [1195] = { - [sym_command_name] = ACTIONS(6277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6277), - [anon_sym_LBRACK] = ACTIONS(6279), - [anon_sym_RBRACK] = ACTIONS(6279), - [anon_sym_COMMA] = ACTIONS(6279), - [anon_sym_EQ] = ACTIONS(6279), - [anon_sym_LPAREN] = ACTIONS(6279), - [anon_sym_RPAREN] = ACTIONS(6279), - [anon_sym_BSLASHpart] = ACTIONS(6277), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddpart] = ACTIONS(6277), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6279), - [anon_sym_BSLASHchapter] = ACTIONS(6277), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddchap] = ACTIONS(6277), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsection] = ACTIONS(6277), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddsec] = ACTIONS(6277), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubsection] = ACTIONS(6277), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6277), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHparagraph] = ACTIONS(6277), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6277), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6279), - [anon_sym_BSLASHitem] = ACTIONS(6277), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6279), - [anon_sym_LBRACE] = ACTIONS(6279), - [sym_word] = ACTIONS(6277), - [sym_placeholder] = ACTIONS(6279), - [anon_sym_PLUS] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6279), - [anon_sym_STAR] = ACTIONS(6279), - [anon_sym_SLASH] = ACTIONS(6279), - [anon_sym_LT] = ACTIONS(6277), - [anon_sym_GT] = ACTIONS(6277), - [anon_sym_BANG] = ACTIONS(6277), - [anon_sym_PIPE] = ACTIONS(6277), - [anon_sym_COLON] = ACTIONS(6277), - [anon_sym_SQUOTE] = ACTIONS(6277), - [anon_sym__] = ACTIONS(6279), - [anon_sym_CARET] = ACTIONS(6279), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6279), - [anon_sym_DOLLAR] = ACTIONS(6277), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6279), - [anon_sym_BSLASHbegin] = ACTIONS(6277), - [anon_sym_BSLASHend] = ACTIONS(6277), - [anon_sym_BSLASHtitle] = ACTIONS(6277), - [anon_sym_BSLASHauthor] = ACTIONS(6277), - [anon_sym_BSLASHusepackage] = ACTIONS(6277), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6277), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6277), - [anon_sym_BSLASHinclude] = ACTIONS(6277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6277), - [anon_sym_BSLASHinput] = ACTIONS(6277), - [anon_sym_BSLASHsubfile] = ACTIONS(6277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6277), - [anon_sym_BSLASHbibliography] = ACTIONS(6277), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6277), - [anon_sym_BSLASHincludesvg] = ACTIONS(6277), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6277), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6277), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6277), - [anon_sym_BSLASHimport] = ACTIONS(6277), - [anon_sym_BSLASHsubimport] = ACTIONS(6277), - [anon_sym_BSLASHinputfrom] = ACTIONS(6277), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6277), - [anon_sym_BSLASHincludefrom] = ACTIONS(6277), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6277), - [anon_sym_BSLASHcaption] = ACTIONS(6277), - [anon_sym_BSLASHcite] = ACTIONS(6277), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCite] = ACTIONS(6277), - [anon_sym_BSLASHnocite] = ACTIONS(6277), - [anon_sym_BSLASHcitet] = ACTIONS(6277), - [anon_sym_BSLASHcitep] = ACTIONS(6277), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteauthor] = ACTIONS(6277), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6277), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitetitle] = ACTIONS(6277), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteyear] = ACTIONS(6277), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitedate] = ACTIONS(6277), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteurl] = ACTIONS(6277), - [anon_sym_BSLASHfullcite] = ACTIONS(6277), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6277), - [anon_sym_BSLASHcitealt] = ACTIONS(6277), - [anon_sym_BSLASHcitealp] = ACTIONS(6277), - [anon_sym_BSLASHcitetext] = ACTIONS(6277), - [anon_sym_BSLASHparencite] = ACTIONS(6277), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHParencite] = ACTIONS(6277), - [anon_sym_BSLASHfootcite] = ACTIONS(6277), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6277), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6277), - [anon_sym_BSLASHtextcite] = ACTIONS(6277), - [anon_sym_BSLASHTextcite] = ACTIONS(6277), - [anon_sym_BSLASHsmartcite] = ACTIONS(6277), - [anon_sym_BSLASHSmartcite] = ACTIONS(6277), - [anon_sym_BSLASHsupercite] = ACTIONS(6277), - [anon_sym_BSLASHautocite] = ACTIONS(6277), - [anon_sym_BSLASHAutocite] = ACTIONS(6277), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHvolcite] = ACTIONS(6277), - [anon_sym_BSLASHVolcite] = ACTIONS(6277), - [anon_sym_BSLASHpvolcite] = ACTIONS(6277), - [anon_sym_BSLASHPvolcite] = ACTIONS(6277), - [anon_sym_BSLASHfvolcite] = ACTIONS(6277), - [anon_sym_BSLASHftvolcite] = ACTIONS(6277), - [anon_sym_BSLASHsvolcite] = ACTIONS(6277), - [anon_sym_BSLASHSvolcite] = ACTIONS(6277), - [anon_sym_BSLASHtvolcite] = ACTIONS(6277), - [anon_sym_BSLASHTvolcite] = ACTIONS(6277), - [anon_sym_BSLASHavolcite] = ACTIONS(6277), - [anon_sym_BSLASHAvolcite] = ACTIONS(6277), - [anon_sym_BSLASHnotecite] = ACTIONS(6277), - [anon_sym_BSLASHNotecite] = ACTIONS(6277), - [anon_sym_BSLASHpnotecite] = ACTIONS(6277), - [anon_sym_BSLASHPnotecite] = ACTIONS(6277), - [anon_sym_BSLASHfnotecite] = ACTIONS(6277), - [anon_sym_BSLASHlabel] = ACTIONS(6277), - [anon_sym_BSLASHref] = ACTIONS(6277), - [anon_sym_BSLASHeqref] = ACTIONS(6277), - [anon_sym_BSLASHvref] = ACTIONS(6277), - [anon_sym_BSLASHVref] = ACTIONS(6277), - [anon_sym_BSLASHautoref] = ACTIONS(6277), - [anon_sym_BSLASHpageref] = ACTIONS(6277), - [anon_sym_BSLASHcref] = ACTIONS(6277), - [anon_sym_BSLASHCref] = ACTIONS(6277), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6279), - [anon_sym_BSLASHnamecref] = ACTIONS(6277), - [anon_sym_BSLASHnameCref] = ACTIONS(6277), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6277), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6277), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6277), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6277), - [anon_sym_BSLASHlabelcref] = ACTIONS(6277), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6277), - [anon_sym_BSLASHcrefrange] = ACTIONS(6277), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCrefrange] = ACTIONS(6277), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6279), - [anon_sym_BSLASHnewlabel] = ACTIONS(6277), - [anon_sym_BSLASHnewcommand] = ACTIONS(6277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHdef] = ACTIONS(6277), - [anon_sym_BSLASHlet] = ACTIONS(6277), - [anon_sym_BSLASHleft] = ACTIONS(6277), - [anon_sym_BSLASHbig] = ACTIONS(6277), - [anon_sym_BSLASHBig] = ACTIONS(6277), - [anon_sym_BSLASHbigg] = ACTIONS(6277), - [anon_sym_BSLASHBigg] = ACTIONS(6277), - [anon_sym_BSLASHbigl] = ACTIONS(6277), - [anon_sym_BSLASHBigl] = ACTIONS(6277), - [anon_sym_BSLASHbiggl] = ACTIONS(6277), - [anon_sym_BSLASHBiggl] = ACTIONS(6277), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6277), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6277), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6277), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6277), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6277), - [anon_sym_BSLASHgls] = ACTIONS(6277), - [anon_sym_BSLASHGls] = ACTIONS(6277), - [anon_sym_BSLASHGLS] = ACTIONS(6277), - [anon_sym_BSLASHglspl] = ACTIONS(6277), - [anon_sym_BSLASHGlspl] = ACTIONS(6277), - [anon_sym_BSLASHGLSpl] = ACTIONS(6277), - [anon_sym_BSLASHglsdisp] = ACTIONS(6277), - [anon_sym_BSLASHglslink] = ACTIONS(6277), - [anon_sym_BSLASHglstext] = ACTIONS(6277), - [anon_sym_BSLASHGlstext] = ACTIONS(6277), - [anon_sym_BSLASHGLStext] = ACTIONS(6277), - [anon_sym_BSLASHglsfirst] = ACTIONS(6277), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6277), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6277), - [anon_sym_BSLASHglsplural] = ACTIONS(6277), - [anon_sym_BSLASHGlsplural] = ACTIONS(6277), - [anon_sym_BSLASHGLSplural] = ACTIONS(6277), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHglsname] = ACTIONS(6277), - [anon_sym_BSLASHGlsname] = ACTIONS(6277), - [anon_sym_BSLASHGLSname] = ACTIONS(6277), - [anon_sym_BSLASHglssymbol] = ACTIONS(6277), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6277), - [anon_sym_BSLASHglsdesc] = ACTIONS(6277), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6277), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6277), - [anon_sym_BSLASHglsuseri] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6277), - [anon_sym_BSLASHglsuserii] = ACTIONS(6277), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6277), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6277), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6277), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6277), - [anon_sym_BSLASHglsuserv] = ACTIONS(6277), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6277), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6277), - [anon_sym_BSLASHglsuservi] = ACTIONS(6277), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6277), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6277), - [anon_sym_BSLASHnewacronym] = ACTIONS(6277), - [anon_sym_BSLASHacrshort] = ACTIONS(6277), - [anon_sym_BSLASHAcrshort] = ACTIONS(6277), - [anon_sym_BSLASHACRshort] = ACTIONS(6277), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6277), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6277), - [anon_sym_BSLASHacrlong] = ACTIONS(6277), - [anon_sym_BSLASHAcrlong] = ACTIONS(6277), - [anon_sym_BSLASHACRlong] = ACTIONS(6277), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6277), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6277), - [anon_sym_BSLASHacrfull] = ACTIONS(6277), - [anon_sym_BSLASHAcrfull] = ACTIONS(6277), - [anon_sym_BSLASHACRfull] = ACTIONS(6277), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6277), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6277), - [anon_sym_BSLASHacs] = ACTIONS(6277), - [anon_sym_BSLASHAcs] = ACTIONS(6277), - [anon_sym_BSLASHacsp] = ACTIONS(6277), - [anon_sym_BSLASHAcsp] = ACTIONS(6277), - [anon_sym_BSLASHacl] = ACTIONS(6277), - [anon_sym_BSLASHAcl] = ACTIONS(6277), - [anon_sym_BSLASHaclp] = ACTIONS(6277), - [anon_sym_BSLASHAclp] = ACTIONS(6277), - [anon_sym_BSLASHacf] = ACTIONS(6277), - [anon_sym_BSLASHAcf] = ACTIONS(6277), - [anon_sym_BSLASHacfp] = ACTIONS(6277), - [anon_sym_BSLASHAcfp] = ACTIONS(6277), - [anon_sym_BSLASHac] = ACTIONS(6277), - [anon_sym_BSLASHAc] = ACTIONS(6277), - [anon_sym_BSLASHacp] = ACTIONS(6277), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6277), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6277), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6277), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6277), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6277), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6277), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6277), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6279), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6277), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6279), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6277), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6277), - [anon_sym_BSLASHcolor] = ACTIONS(6277), - [anon_sym_BSLASHcolorbox] = ACTIONS(6277), - [anon_sym_BSLASHtextcolor] = ACTIONS(6277), - [anon_sym_BSLASHpagecolor] = ACTIONS(6277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6277), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6277), - [anon_sym_BSLASHtext] = ACTIONS(6277), - [anon_sym_BSLASHintertext] = ACTIONS(6277), - [anon_sym_shortintertext] = ACTIONS(6277), - }, - [1196] = { - [sym_command_name] = ACTIONS(6281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6281), - [anon_sym_LBRACK] = ACTIONS(6283), - [anon_sym_RBRACK] = ACTIONS(6283), - [anon_sym_COMMA] = ACTIONS(6283), - [anon_sym_EQ] = ACTIONS(6283), - [anon_sym_LPAREN] = ACTIONS(6283), - [anon_sym_RPAREN] = ACTIONS(6283), - [anon_sym_BSLASHpart] = ACTIONS(6281), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddpart] = ACTIONS(6281), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6283), - [anon_sym_BSLASHchapter] = ACTIONS(6281), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddchap] = ACTIONS(6281), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsection] = ACTIONS(6281), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddsec] = ACTIONS(6281), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubsection] = ACTIONS(6281), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6281), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHparagraph] = ACTIONS(6281), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6281), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6283), - [anon_sym_BSLASHitem] = ACTIONS(6281), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6283), - [anon_sym_LBRACE] = ACTIONS(6283), - [sym_word] = ACTIONS(6281), - [sym_placeholder] = ACTIONS(6283), - [anon_sym_PLUS] = ACTIONS(6283), - [anon_sym_DASH] = ACTIONS(6283), - [anon_sym_STAR] = ACTIONS(6283), - [anon_sym_SLASH] = ACTIONS(6283), - [anon_sym_LT] = ACTIONS(6281), - [anon_sym_GT] = ACTIONS(6281), - [anon_sym_BANG] = ACTIONS(6281), - [anon_sym_PIPE] = ACTIONS(6281), - [anon_sym_COLON] = ACTIONS(6281), - [anon_sym_SQUOTE] = ACTIONS(6281), - [anon_sym__] = ACTIONS(6283), - [anon_sym_CARET] = ACTIONS(6283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6283), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6283), - [anon_sym_DOLLAR] = ACTIONS(6281), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6283), - [anon_sym_BSLASHbegin] = ACTIONS(6281), - [anon_sym_BSLASHend] = ACTIONS(6281), - [anon_sym_BSLASHtitle] = ACTIONS(6281), - [anon_sym_BSLASHauthor] = ACTIONS(6281), - [anon_sym_BSLASHusepackage] = ACTIONS(6281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6281), - [anon_sym_BSLASHinclude] = ACTIONS(6281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6281), - [anon_sym_BSLASHinput] = ACTIONS(6281), - [anon_sym_BSLASHsubfile] = ACTIONS(6281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6281), - [anon_sym_BSLASHbibliography] = ACTIONS(6281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6281), - [anon_sym_BSLASHincludesvg] = ACTIONS(6281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6281), - [anon_sym_BSLASHimport] = ACTIONS(6281), - [anon_sym_BSLASHsubimport] = ACTIONS(6281), - [anon_sym_BSLASHinputfrom] = ACTIONS(6281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6281), - [anon_sym_BSLASHincludefrom] = ACTIONS(6281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6281), - [anon_sym_BSLASHcaption] = ACTIONS(6281), - [anon_sym_BSLASHcite] = ACTIONS(6281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCite] = ACTIONS(6281), - [anon_sym_BSLASHnocite] = ACTIONS(6281), - [anon_sym_BSLASHcitet] = ACTIONS(6281), - [anon_sym_BSLASHcitep] = ACTIONS(6281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteauthor] = ACTIONS(6281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitetitle] = ACTIONS(6281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteyear] = ACTIONS(6281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitedate] = ACTIONS(6281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteurl] = ACTIONS(6281), - [anon_sym_BSLASHfullcite] = ACTIONS(6281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6281), - [anon_sym_BSLASHcitealt] = ACTIONS(6281), - [anon_sym_BSLASHcitealp] = ACTIONS(6281), - [anon_sym_BSLASHcitetext] = ACTIONS(6281), - [anon_sym_BSLASHparencite] = ACTIONS(6281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHParencite] = ACTIONS(6281), - [anon_sym_BSLASHfootcite] = ACTIONS(6281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6281), - [anon_sym_BSLASHtextcite] = ACTIONS(6281), - [anon_sym_BSLASHTextcite] = ACTIONS(6281), - [anon_sym_BSLASHsmartcite] = ACTIONS(6281), - [anon_sym_BSLASHSmartcite] = ACTIONS(6281), - [anon_sym_BSLASHsupercite] = ACTIONS(6281), - [anon_sym_BSLASHautocite] = ACTIONS(6281), - [anon_sym_BSLASHAutocite] = ACTIONS(6281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHvolcite] = ACTIONS(6281), - [anon_sym_BSLASHVolcite] = ACTIONS(6281), - [anon_sym_BSLASHpvolcite] = ACTIONS(6281), - [anon_sym_BSLASHPvolcite] = ACTIONS(6281), - [anon_sym_BSLASHfvolcite] = ACTIONS(6281), - [anon_sym_BSLASHftvolcite] = ACTIONS(6281), - [anon_sym_BSLASHsvolcite] = ACTIONS(6281), - [anon_sym_BSLASHSvolcite] = ACTIONS(6281), - [anon_sym_BSLASHtvolcite] = ACTIONS(6281), - [anon_sym_BSLASHTvolcite] = ACTIONS(6281), - [anon_sym_BSLASHavolcite] = ACTIONS(6281), - [anon_sym_BSLASHAvolcite] = ACTIONS(6281), - [anon_sym_BSLASHnotecite] = ACTIONS(6281), - [anon_sym_BSLASHNotecite] = ACTIONS(6281), - [anon_sym_BSLASHpnotecite] = ACTIONS(6281), - [anon_sym_BSLASHPnotecite] = ACTIONS(6281), - [anon_sym_BSLASHfnotecite] = ACTIONS(6281), - [anon_sym_BSLASHlabel] = ACTIONS(6281), - [anon_sym_BSLASHref] = ACTIONS(6281), - [anon_sym_BSLASHeqref] = ACTIONS(6281), - [anon_sym_BSLASHvref] = ACTIONS(6281), - [anon_sym_BSLASHVref] = ACTIONS(6281), - [anon_sym_BSLASHautoref] = ACTIONS(6281), - [anon_sym_BSLASHpageref] = ACTIONS(6281), - [anon_sym_BSLASHcref] = ACTIONS(6281), - [anon_sym_BSLASHCref] = ACTIONS(6281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6283), - [anon_sym_BSLASHnamecref] = ACTIONS(6281), - [anon_sym_BSLASHnameCref] = ACTIONS(6281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6281), - [anon_sym_BSLASHlabelcref] = ACTIONS(6281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6281), - [anon_sym_BSLASHcrefrange] = ACTIONS(6281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCrefrange] = ACTIONS(6281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6283), - [anon_sym_BSLASHnewlabel] = ACTIONS(6281), - [anon_sym_BSLASHnewcommand] = ACTIONS(6281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6283), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHdef] = ACTIONS(6281), - [anon_sym_BSLASHlet] = ACTIONS(6281), - [anon_sym_BSLASHleft] = ACTIONS(6281), - [anon_sym_BSLASHbig] = ACTIONS(6281), - [anon_sym_BSLASHBig] = ACTIONS(6281), - [anon_sym_BSLASHbigg] = ACTIONS(6281), - [anon_sym_BSLASHBigg] = ACTIONS(6281), - [anon_sym_BSLASHbigl] = ACTIONS(6281), - [anon_sym_BSLASHBigl] = ACTIONS(6281), - [anon_sym_BSLASHbiggl] = ACTIONS(6281), - [anon_sym_BSLASHBiggl] = ACTIONS(6281), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6281), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6281), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6281), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6281), - [anon_sym_BSLASHgls] = ACTIONS(6281), - [anon_sym_BSLASHGls] = ACTIONS(6281), - [anon_sym_BSLASHGLS] = ACTIONS(6281), - [anon_sym_BSLASHglspl] = ACTIONS(6281), - [anon_sym_BSLASHGlspl] = ACTIONS(6281), - [anon_sym_BSLASHGLSpl] = ACTIONS(6281), - [anon_sym_BSLASHglsdisp] = ACTIONS(6281), - [anon_sym_BSLASHglslink] = ACTIONS(6281), - [anon_sym_BSLASHglstext] = ACTIONS(6281), - [anon_sym_BSLASHGlstext] = ACTIONS(6281), - [anon_sym_BSLASHGLStext] = ACTIONS(6281), - [anon_sym_BSLASHglsfirst] = ACTIONS(6281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6281), - [anon_sym_BSLASHglsplural] = ACTIONS(6281), - [anon_sym_BSLASHGlsplural] = ACTIONS(6281), - [anon_sym_BSLASHGLSplural] = ACTIONS(6281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHglsname] = ACTIONS(6281), - [anon_sym_BSLASHGlsname] = ACTIONS(6281), - [anon_sym_BSLASHGLSname] = ACTIONS(6281), - [anon_sym_BSLASHglssymbol] = ACTIONS(6281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6281), - [anon_sym_BSLASHglsdesc] = ACTIONS(6281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6281), - [anon_sym_BSLASHglsuseri] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6281), - [anon_sym_BSLASHglsuserii] = ACTIONS(6281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6281), - [anon_sym_BSLASHglsuserv] = ACTIONS(6281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6281), - [anon_sym_BSLASHglsuservi] = ACTIONS(6281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6281), - [anon_sym_BSLASHnewacronym] = ACTIONS(6281), - [anon_sym_BSLASHacrshort] = ACTIONS(6281), - [anon_sym_BSLASHAcrshort] = ACTIONS(6281), - [anon_sym_BSLASHACRshort] = ACTIONS(6281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6281), - [anon_sym_BSLASHacrlong] = ACTIONS(6281), - [anon_sym_BSLASHAcrlong] = ACTIONS(6281), - [anon_sym_BSLASHACRlong] = ACTIONS(6281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6281), - [anon_sym_BSLASHacrfull] = ACTIONS(6281), - [anon_sym_BSLASHAcrfull] = ACTIONS(6281), - [anon_sym_BSLASHACRfull] = ACTIONS(6281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6281), - [anon_sym_BSLASHacs] = ACTIONS(6281), - [anon_sym_BSLASHAcs] = ACTIONS(6281), - [anon_sym_BSLASHacsp] = ACTIONS(6281), - [anon_sym_BSLASHAcsp] = ACTIONS(6281), - [anon_sym_BSLASHacl] = ACTIONS(6281), - [anon_sym_BSLASHAcl] = ACTIONS(6281), - [anon_sym_BSLASHaclp] = ACTIONS(6281), - [anon_sym_BSLASHAclp] = ACTIONS(6281), - [anon_sym_BSLASHacf] = ACTIONS(6281), - [anon_sym_BSLASHAcf] = ACTIONS(6281), - [anon_sym_BSLASHacfp] = ACTIONS(6281), - [anon_sym_BSLASHAcfp] = ACTIONS(6281), - [anon_sym_BSLASHac] = ACTIONS(6281), - [anon_sym_BSLASHAc] = ACTIONS(6281), - [anon_sym_BSLASHacp] = ACTIONS(6281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6281), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6283), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6281), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6283), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6281), - [anon_sym_BSLASHcolor] = ACTIONS(6281), - [anon_sym_BSLASHcolorbox] = ACTIONS(6281), - [anon_sym_BSLASHtextcolor] = ACTIONS(6281), - [anon_sym_BSLASHpagecolor] = ACTIONS(6281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6281), - [anon_sym_BSLASHtext] = ACTIONS(6281), - [anon_sym_BSLASHintertext] = ACTIONS(6281), - [anon_sym_shortintertext] = ACTIONS(6281), - }, - [1197] = { - [sym_command_name] = ACTIONS(6285), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6285), - [anon_sym_LBRACK] = ACTIONS(6287), - [anon_sym_RBRACK] = ACTIONS(6287), - [anon_sym_COMMA] = ACTIONS(6287), - [anon_sym_EQ] = ACTIONS(6287), - [anon_sym_LPAREN] = ACTIONS(6287), - [anon_sym_RPAREN] = ACTIONS(6287), - [anon_sym_BSLASHpart] = ACTIONS(6285), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddpart] = ACTIONS(6285), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6287), - [anon_sym_BSLASHchapter] = ACTIONS(6285), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddchap] = ACTIONS(6285), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsection] = ACTIONS(6285), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddsec] = ACTIONS(6285), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubsection] = ACTIONS(6285), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6285), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHparagraph] = ACTIONS(6285), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6285), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6287), - [anon_sym_BSLASHitem] = ACTIONS(6285), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6287), - [anon_sym_LBRACE] = ACTIONS(6287), - [sym_word] = ACTIONS(6285), - [sym_placeholder] = ACTIONS(6287), - [anon_sym_PLUS] = ACTIONS(6287), - [anon_sym_DASH] = ACTIONS(6287), - [anon_sym_STAR] = ACTIONS(6287), - [anon_sym_SLASH] = ACTIONS(6287), - [anon_sym_LT] = ACTIONS(6285), - [anon_sym_GT] = ACTIONS(6285), - [anon_sym_BANG] = ACTIONS(6285), - [anon_sym_PIPE] = ACTIONS(6285), - [anon_sym_COLON] = ACTIONS(6285), - [anon_sym_SQUOTE] = ACTIONS(6285), - [anon_sym__] = ACTIONS(6287), - [anon_sym_CARET] = ACTIONS(6287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6287), - [anon_sym_DOLLAR] = ACTIONS(6285), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6287), - [anon_sym_BSLASHbegin] = ACTIONS(6285), - [anon_sym_BSLASHend] = ACTIONS(6285), - [anon_sym_BSLASHtitle] = ACTIONS(6285), - [anon_sym_BSLASHauthor] = ACTIONS(6285), - [anon_sym_BSLASHusepackage] = ACTIONS(6285), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6285), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6285), - [anon_sym_BSLASHinclude] = ACTIONS(6285), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6285), - [anon_sym_BSLASHinput] = ACTIONS(6285), - [anon_sym_BSLASHsubfile] = ACTIONS(6285), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6285), - [anon_sym_BSLASHbibliography] = ACTIONS(6285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6285), - [anon_sym_BSLASHincludesvg] = ACTIONS(6285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6285), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6285), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6285), - [anon_sym_BSLASHimport] = ACTIONS(6285), - [anon_sym_BSLASHsubimport] = ACTIONS(6285), - [anon_sym_BSLASHinputfrom] = ACTIONS(6285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6285), - [anon_sym_BSLASHincludefrom] = ACTIONS(6285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6285), - [anon_sym_BSLASHcaption] = ACTIONS(6285), - [anon_sym_BSLASHcite] = ACTIONS(6285), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCite] = ACTIONS(6285), - [anon_sym_BSLASHnocite] = ACTIONS(6285), - [anon_sym_BSLASHcitet] = ACTIONS(6285), - [anon_sym_BSLASHcitep] = ACTIONS(6285), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteauthor] = ACTIONS(6285), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6285), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitetitle] = ACTIONS(6285), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteyear] = ACTIONS(6285), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitedate] = ACTIONS(6285), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteurl] = ACTIONS(6285), - [anon_sym_BSLASHfullcite] = ACTIONS(6285), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6285), - [anon_sym_BSLASHcitealt] = ACTIONS(6285), - [anon_sym_BSLASHcitealp] = ACTIONS(6285), - [anon_sym_BSLASHcitetext] = ACTIONS(6285), - [anon_sym_BSLASHparencite] = ACTIONS(6285), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHParencite] = ACTIONS(6285), - [anon_sym_BSLASHfootcite] = ACTIONS(6285), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6285), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6285), - [anon_sym_BSLASHtextcite] = ACTIONS(6285), - [anon_sym_BSLASHTextcite] = ACTIONS(6285), - [anon_sym_BSLASHsmartcite] = ACTIONS(6285), - [anon_sym_BSLASHSmartcite] = ACTIONS(6285), - [anon_sym_BSLASHsupercite] = ACTIONS(6285), - [anon_sym_BSLASHautocite] = ACTIONS(6285), - [anon_sym_BSLASHAutocite] = ACTIONS(6285), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHvolcite] = ACTIONS(6285), - [anon_sym_BSLASHVolcite] = ACTIONS(6285), - [anon_sym_BSLASHpvolcite] = ACTIONS(6285), - [anon_sym_BSLASHPvolcite] = ACTIONS(6285), - [anon_sym_BSLASHfvolcite] = ACTIONS(6285), - [anon_sym_BSLASHftvolcite] = ACTIONS(6285), - [anon_sym_BSLASHsvolcite] = ACTIONS(6285), - [anon_sym_BSLASHSvolcite] = ACTIONS(6285), - [anon_sym_BSLASHtvolcite] = ACTIONS(6285), - [anon_sym_BSLASHTvolcite] = ACTIONS(6285), - [anon_sym_BSLASHavolcite] = ACTIONS(6285), - [anon_sym_BSLASHAvolcite] = ACTIONS(6285), - [anon_sym_BSLASHnotecite] = ACTIONS(6285), - [anon_sym_BSLASHNotecite] = ACTIONS(6285), - [anon_sym_BSLASHpnotecite] = ACTIONS(6285), - [anon_sym_BSLASHPnotecite] = ACTIONS(6285), - [anon_sym_BSLASHfnotecite] = ACTIONS(6285), - [anon_sym_BSLASHlabel] = ACTIONS(6285), - [anon_sym_BSLASHref] = ACTIONS(6285), - [anon_sym_BSLASHeqref] = ACTIONS(6285), - [anon_sym_BSLASHvref] = ACTIONS(6285), - [anon_sym_BSLASHVref] = ACTIONS(6285), - [anon_sym_BSLASHautoref] = ACTIONS(6285), - [anon_sym_BSLASHpageref] = ACTIONS(6285), - [anon_sym_BSLASHcref] = ACTIONS(6285), - [anon_sym_BSLASHCref] = ACTIONS(6285), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6287), - [anon_sym_BSLASHnamecref] = ACTIONS(6285), - [anon_sym_BSLASHnameCref] = ACTIONS(6285), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6285), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6285), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6285), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6285), - [anon_sym_BSLASHlabelcref] = ACTIONS(6285), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6285), - [anon_sym_BSLASHcrefrange] = ACTIONS(6285), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCrefrange] = ACTIONS(6285), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6287), - [anon_sym_BSLASHnewlabel] = ACTIONS(6285), - [anon_sym_BSLASHnewcommand] = ACTIONS(6285), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6285), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6285), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6287), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHdef] = ACTIONS(6285), - [anon_sym_BSLASHlet] = ACTIONS(6285), - [anon_sym_BSLASHleft] = ACTIONS(6285), - [anon_sym_BSLASHbig] = ACTIONS(6285), - [anon_sym_BSLASHBig] = ACTIONS(6285), - [anon_sym_BSLASHbigg] = ACTIONS(6285), - [anon_sym_BSLASHBigg] = ACTIONS(6285), - [anon_sym_BSLASHbigl] = ACTIONS(6285), - [anon_sym_BSLASHBigl] = ACTIONS(6285), - [anon_sym_BSLASHbiggl] = ACTIONS(6285), - [anon_sym_BSLASHBiggl] = ACTIONS(6285), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6285), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6285), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6285), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6285), - [anon_sym_BSLASHgls] = ACTIONS(6285), - [anon_sym_BSLASHGls] = ACTIONS(6285), - [anon_sym_BSLASHGLS] = ACTIONS(6285), - [anon_sym_BSLASHglspl] = ACTIONS(6285), - [anon_sym_BSLASHGlspl] = ACTIONS(6285), - [anon_sym_BSLASHGLSpl] = ACTIONS(6285), - [anon_sym_BSLASHglsdisp] = ACTIONS(6285), - [anon_sym_BSLASHglslink] = ACTIONS(6285), - [anon_sym_BSLASHglstext] = ACTIONS(6285), - [anon_sym_BSLASHGlstext] = ACTIONS(6285), - [anon_sym_BSLASHGLStext] = ACTIONS(6285), - [anon_sym_BSLASHglsfirst] = ACTIONS(6285), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6285), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6285), - [anon_sym_BSLASHglsplural] = ACTIONS(6285), - [anon_sym_BSLASHGlsplural] = ACTIONS(6285), - [anon_sym_BSLASHGLSplural] = ACTIONS(6285), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHglsname] = ACTIONS(6285), - [anon_sym_BSLASHGlsname] = ACTIONS(6285), - [anon_sym_BSLASHGLSname] = ACTIONS(6285), - [anon_sym_BSLASHglssymbol] = ACTIONS(6285), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6285), - [anon_sym_BSLASHglsdesc] = ACTIONS(6285), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6285), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6285), - [anon_sym_BSLASHglsuseri] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6285), - [anon_sym_BSLASHglsuserii] = ACTIONS(6285), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6285), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6285), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6285), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6285), - [anon_sym_BSLASHglsuserv] = ACTIONS(6285), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6285), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6285), - [anon_sym_BSLASHglsuservi] = ACTIONS(6285), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6285), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6285), - [anon_sym_BSLASHnewacronym] = ACTIONS(6285), - [anon_sym_BSLASHacrshort] = ACTIONS(6285), - [anon_sym_BSLASHAcrshort] = ACTIONS(6285), - [anon_sym_BSLASHACRshort] = ACTIONS(6285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6285), - [anon_sym_BSLASHacrlong] = ACTIONS(6285), - [anon_sym_BSLASHAcrlong] = ACTIONS(6285), - [anon_sym_BSLASHACRlong] = ACTIONS(6285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6285), - [anon_sym_BSLASHacrfull] = ACTIONS(6285), - [anon_sym_BSLASHAcrfull] = ACTIONS(6285), - [anon_sym_BSLASHACRfull] = ACTIONS(6285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6285), - [anon_sym_BSLASHacs] = ACTIONS(6285), - [anon_sym_BSLASHAcs] = ACTIONS(6285), - [anon_sym_BSLASHacsp] = ACTIONS(6285), - [anon_sym_BSLASHAcsp] = ACTIONS(6285), - [anon_sym_BSLASHacl] = ACTIONS(6285), - [anon_sym_BSLASHAcl] = ACTIONS(6285), - [anon_sym_BSLASHaclp] = ACTIONS(6285), - [anon_sym_BSLASHAclp] = ACTIONS(6285), - [anon_sym_BSLASHacf] = ACTIONS(6285), - [anon_sym_BSLASHAcf] = ACTIONS(6285), - [anon_sym_BSLASHacfp] = ACTIONS(6285), - [anon_sym_BSLASHAcfp] = ACTIONS(6285), - [anon_sym_BSLASHac] = ACTIONS(6285), - [anon_sym_BSLASHAc] = ACTIONS(6285), - [anon_sym_BSLASHacp] = ACTIONS(6285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6285), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6287), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6285), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6287), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6285), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6285), - [anon_sym_BSLASHcolor] = ACTIONS(6285), - [anon_sym_BSLASHcolorbox] = ACTIONS(6285), - [anon_sym_BSLASHtextcolor] = ACTIONS(6285), - [anon_sym_BSLASHpagecolor] = ACTIONS(6285), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6285), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6285), - [anon_sym_BSLASHtext] = ACTIONS(6285), - [anon_sym_BSLASHintertext] = ACTIONS(6285), - [anon_sym_shortintertext] = ACTIONS(6285), - }, - [1198] = { - [sym_command_name] = ACTIONS(6033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6033), - [anon_sym_LBRACK] = ACTIONS(6035), - [anon_sym_RBRACK] = ACTIONS(6035), - [anon_sym_COMMA] = ACTIONS(6035), - [anon_sym_EQ] = ACTIONS(6035), - [anon_sym_LPAREN] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_BSLASHpart] = ACTIONS(6033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddpart] = ACTIONS(6033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6035), - [anon_sym_BSLASHchapter] = ACTIONS(6033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddchap] = ACTIONS(6033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsection] = ACTIONS(6033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddsec] = ACTIONS(6033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubsection] = ACTIONS(6033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHparagraph] = ACTIONS(6033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6035), - [anon_sym_BSLASHitem] = ACTIONS(6033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6035), - [anon_sym_LBRACE] = ACTIONS(6035), - [sym_word] = ACTIONS(6033), - [sym_placeholder] = ACTIONS(6035), - [anon_sym_PLUS] = ACTIONS(6035), - [anon_sym_DASH] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6035), - [anon_sym_SLASH] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_COLON] = ACTIONS(6033), - [anon_sym_SQUOTE] = ACTIONS(6033), - [anon_sym__] = ACTIONS(6035), - [anon_sym_CARET] = ACTIONS(6035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6035), - [anon_sym_BSLASHbegin] = ACTIONS(6033), - [anon_sym_BSLASHend] = ACTIONS(6033), - [anon_sym_BSLASHtitle] = ACTIONS(6033), - [anon_sym_BSLASHauthor] = ACTIONS(6033), - [anon_sym_BSLASHusepackage] = ACTIONS(6033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), - [anon_sym_BSLASHinclude] = ACTIONS(6033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), - [anon_sym_BSLASHinput] = ACTIONS(6033), - [anon_sym_BSLASHsubfile] = ACTIONS(6033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), - [anon_sym_BSLASHbibliography] = ACTIONS(6033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), - [anon_sym_BSLASHincludesvg] = ACTIONS(6033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), - [anon_sym_BSLASHimport] = ACTIONS(6033), - [anon_sym_BSLASHsubimport] = ACTIONS(6033), - [anon_sym_BSLASHinputfrom] = ACTIONS(6033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), - [anon_sym_BSLASHincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHcaption] = ACTIONS(6033), - [anon_sym_BSLASHcite] = ACTIONS(6033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCite] = ACTIONS(6033), - [anon_sym_BSLASHnocite] = ACTIONS(6033), - [anon_sym_BSLASHcitet] = ACTIONS(6033), - [anon_sym_BSLASHcitep] = ACTIONS(6033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteauthor] = ACTIONS(6033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitetitle] = ACTIONS(6033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteyear] = ACTIONS(6033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitedate] = ACTIONS(6033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteurl] = ACTIONS(6033), - [anon_sym_BSLASHfullcite] = ACTIONS(6033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), - [anon_sym_BSLASHcitealt] = ACTIONS(6033), - [anon_sym_BSLASHcitealp] = ACTIONS(6033), - [anon_sym_BSLASHcitetext] = ACTIONS(6033), - [anon_sym_BSLASHparencite] = ACTIONS(6033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHParencite] = ACTIONS(6033), - [anon_sym_BSLASHfootcite] = ACTIONS(6033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), - [anon_sym_BSLASHtextcite] = ACTIONS(6033), - [anon_sym_BSLASHTextcite] = ACTIONS(6033), - [anon_sym_BSLASHsmartcite] = ACTIONS(6033), - [anon_sym_BSLASHSmartcite] = ACTIONS(6033), - [anon_sym_BSLASHsupercite] = ACTIONS(6033), - [anon_sym_BSLASHautocite] = ACTIONS(6033), - [anon_sym_BSLASHAutocite] = ACTIONS(6033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHvolcite] = ACTIONS(6033), - [anon_sym_BSLASHVolcite] = ACTIONS(6033), - [anon_sym_BSLASHpvolcite] = ACTIONS(6033), - [anon_sym_BSLASHPvolcite] = ACTIONS(6033), - [anon_sym_BSLASHfvolcite] = ACTIONS(6033), - [anon_sym_BSLASHftvolcite] = ACTIONS(6033), - [anon_sym_BSLASHsvolcite] = ACTIONS(6033), - [anon_sym_BSLASHSvolcite] = ACTIONS(6033), - [anon_sym_BSLASHtvolcite] = ACTIONS(6033), - [anon_sym_BSLASHTvolcite] = ACTIONS(6033), - [anon_sym_BSLASHavolcite] = ACTIONS(6033), - [anon_sym_BSLASHAvolcite] = ACTIONS(6033), - [anon_sym_BSLASHnotecite] = ACTIONS(6033), - [anon_sym_BSLASHNotecite] = ACTIONS(6033), - [anon_sym_BSLASHpnotecite] = ACTIONS(6033), - [anon_sym_BSLASHPnotecite] = ACTIONS(6033), - [anon_sym_BSLASHfnotecite] = ACTIONS(6033), - [anon_sym_BSLASHlabel] = ACTIONS(6033), - [anon_sym_BSLASHref] = ACTIONS(6033), - [anon_sym_BSLASHeqref] = ACTIONS(6033), - [anon_sym_BSLASHvref] = ACTIONS(6033), - [anon_sym_BSLASHVref] = ACTIONS(6033), - [anon_sym_BSLASHautoref] = ACTIONS(6033), - [anon_sym_BSLASHpageref] = ACTIONS(6033), - [anon_sym_BSLASHcref] = ACTIONS(6033), - [anon_sym_BSLASHCref] = ACTIONS(6033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnameCref] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHlabelcref] = ACTIONS(6033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCrefrange] = ACTIONS(6033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnewlabel] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6035), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHdef] = ACTIONS(6033), - [anon_sym_BSLASHlet] = ACTIONS(6033), - [anon_sym_BSLASHleft] = ACTIONS(6033), - [anon_sym_BSLASHbig] = ACTIONS(6033), - [anon_sym_BSLASHBig] = ACTIONS(6033), - [anon_sym_BSLASHbigg] = ACTIONS(6033), - [anon_sym_BSLASHBigg] = ACTIONS(6033), - [anon_sym_BSLASHbigl] = ACTIONS(6033), - [anon_sym_BSLASHBigl] = ACTIONS(6033), - [anon_sym_BSLASHbiggl] = ACTIONS(6033), - [anon_sym_BSLASHBiggl] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), - [anon_sym_BSLASHgls] = ACTIONS(6033), - [anon_sym_BSLASHGls] = ACTIONS(6033), - [anon_sym_BSLASHGLS] = ACTIONS(6033), - [anon_sym_BSLASHglspl] = ACTIONS(6033), - [anon_sym_BSLASHGlspl] = ACTIONS(6033), - [anon_sym_BSLASHGLSpl] = ACTIONS(6033), - [anon_sym_BSLASHglsdisp] = ACTIONS(6033), - [anon_sym_BSLASHglslink] = ACTIONS(6033), - [anon_sym_BSLASHglstext] = ACTIONS(6033), - [anon_sym_BSLASHGlstext] = ACTIONS(6033), - [anon_sym_BSLASHGLStext] = ACTIONS(6033), - [anon_sym_BSLASHglsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), - [anon_sym_BSLASHglsplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSplural] = ACTIONS(6033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHglsname] = ACTIONS(6033), - [anon_sym_BSLASHGlsname] = ACTIONS(6033), - [anon_sym_BSLASHGLSname] = ACTIONS(6033), - [anon_sym_BSLASHglssymbol] = ACTIONS(6033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), - [anon_sym_BSLASHglsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), - [anon_sym_BSLASHglsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), - [anon_sym_BSLASHglsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), - [anon_sym_BSLASHglsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), - [anon_sym_BSLASHglsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), - [anon_sym_BSLASHnewacronym] = ACTIONS(6033), - [anon_sym_BSLASHacrshort] = ACTIONS(6033), - [anon_sym_BSLASHAcrshort] = ACTIONS(6033), - [anon_sym_BSLASHACRshort] = ACTIONS(6033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), - [anon_sym_BSLASHacrlong] = ACTIONS(6033), - [anon_sym_BSLASHAcrlong] = ACTIONS(6033), - [anon_sym_BSLASHACRlong] = ACTIONS(6033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), - [anon_sym_BSLASHacrfull] = ACTIONS(6033), - [anon_sym_BSLASHAcrfull] = ACTIONS(6033), - [anon_sym_BSLASHACRfull] = ACTIONS(6033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), - [anon_sym_BSLASHacs] = ACTIONS(6033), - [anon_sym_BSLASHAcs] = ACTIONS(6033), - [anon_sym_BSLASHacsp] = ACTIONS(6033), - [anon_sym_BSLASHAcsp] = ACTIONS(6033), - [anon_sym_BSLASHacl] = ACTIONS(6033), - [anon_sym_BSLASHAcl] = ACTIONS(6033), - [anon_sym_BSLASHaclp] = ACTIONS(6033), - [anon_sym_BSLASHAclp] = ACTIONS(6033), - [anon_sym_BSLASHacf] = ACTIONS(6033), - [anon_sym_BSLASHAcf] = ACTIONS(6033), - [anon_sym_BSLASHacfp] = ACTIONS(6033), - [anon_sym_BSLASHAcfp] = ACTIONS(6033), - [anon_sym_BSLASHac] = ACTIONS(6033), - [anon_sym_BSLASHAc] = ACTIONS(6033), - [anon_sym_BSLASHacp] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), - [anon_sym_BSLASHcolor] = ACTIONS(6033), - [anon_sym_BSLASHcolorbox] = ACTIONS(6033), - [anon_sym_BSLASHtextcolor] = ACTIONS(6033), - [anon_sym_BSLASHpagecolor] = ACTIONS(6033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), - [anon_sym_BSLASHtext] = ACTIONS(6033), - [anon_sym_BSLASHintertext] = ACTIONS(6033), - [anon_sym_shortintertext] = ACTIONS(6033), - }, - [1199] = { - [sym_command_name] = ACTIONS(6413), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6413), - [anon_sym_LBRACK] = ACTIONS(6415), - [anon_sym_RBRACK] = ACTIONS(6415), - [anon_sym_COMMA] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(6415), - [anon_sym_LPAREN] = ACTIONS(6415), - [anon_sym_RPAREN] = ACTIONS(6415), - [anon_sym_BSLASHpart] = ACTIONS(6413), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddpart] = ACTIONS(6413), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6415), - [anon_sym_BSLASHchapter] = ACTIONS(6413), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddchap] = ACTIONS(6413), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsection] = ACTIONS(6413), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddsec] = ACTIONS(6413), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubsection] = ACTIONS(6413), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6413), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHparagraph] = ACTIONS(6413), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6413), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6415), - [anon_sym_BSLASHitem] = ACTIONS(6413), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6415), - [anon_sym_LBRACE] = ACTIONS(6415), - [sym_word] = ACTIONS(6413), - [sym_placeholder] = ACTIONS(6415), - [anon_sym_PLUS] = ACTIONS(6415), - [anon_sym_DASH] = ACTIONS(6415), - [anon_sym_STAR] = ACTIONS(6415), - [anon_sym_SLASH] = ACTIONS(6415), - [anon_sym_LT] = ACTIONS(6413), - [anon_sym_GT] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(6413), - [anon_sym_PIPE] = ACTIONS(6413), - [anon_sym_COLON] = ACTIONS(6413), - [anon_sym_SQUOTE] = ACTIONS(6413), - [anon_sym__] = ACTIONS(6415), - [anon_sym_CARET] = ACTIONS(6415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6415), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6415), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6415), - [anon_sym_DOLLAR] = ACTIONS(6413), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6415), - [anon_sym_BSLASHbegin] = ACTIONS(6413), - [anon_sym_BSLASHtitle] = ACTIONS(6413), - [anon_sym_BSLASHauthor] = ACTIONS(6413), - [anon_sym_BSLASHusepackage] = ACTIONS(6413), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6413), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6413), - [anon_sym_BSLASHinclude] = ACTIONS(6413), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6413), - [anon_sym_BSLASHinput] = ACTIONS(6413), - [anon_sym_BSLASHsubfile] = ACTIONS(6413), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6413), - [anon_sym_BSLASHbibliography] = ACTIONS(6413), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6413), - [anon_sym_BSLASHincludesvg] = ACTIONS(6413), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6413), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6413), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6413), - [anon_sym_BSLASHimport] = ACTIONS(6413), - [anon_sym_BSLASHsubimport] = ACTIONS(6413), - [anon_sym_BSLASHinputfrom] = ACTIONS(6413), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6413), - [anon_sym_BSLASHincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHcaption] = ACTIONS(6413), - [anon_sym_BSLASHcite] = ACTIONS(6413), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCite] = ACTIONS(6413), - [anon_sym_BSLASHnocite] = ACTIONS(6413), - [anon_sym_BSLASHcitet] = ACTIONS(6413), - [anon_sym_BSLASHcitep] = ACTIONS(6413), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteauthor] = ACTIONS(6413), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6413), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitetitle] = ACTIONS(6413), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteyear] = ACTIONS(6413), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitedate] = ACTIONS(6413), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteurl] = ACTIONS(6413), - [anon_sym_BSLASHfullcite] = ACTIONS(6413), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6413), - [anon_sym_BSLASHcitealt] = ACTIONS(6413), - [anon_sym_BSLASHcitealp] = ACTIONS(6413), - [anon_sym_BSLASHcitetext] = ACTIONS(6413), - [anon_sym_BSLASHparencite] = ACTIONS(6413), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHParencite] = ACTIONS(6413), - [anon_sym_BSLASHfootcite] = ACTIONS(6413), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6413), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6413), - [anon_sym_BSLASHtextcite] = ACTIONS(6413), - [anon_sym_BSLASHTextcite] = ACTIONS(6413), - [anon_sym_BSLASHsmartcite] = ACTIONS(6413), - [anon_sym_BSLASHSmartcite] = ACTIONS(6413), - [anon_sym_BSLASHsupercite] = ACTIONS(6413), - [anon_sym_BSLASHautocite] = ACTIONS(6413), - [anon_sym_BSLASHAutocite] = ACTIONS(6413), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHvolcite] = ACTIONS(6413), - [anon_sym_BSLASHVolcite] = ACTIONS(6413), - [anon_sym_BSLASHpvolcite] = ACTIONS(6413), - [anon_sym_BSLASHPvolcite] = ACTIONS(6413), - [anon_sym_BSLASHfvolcite] = ACTIONS(6413), - [anon_sym_BSLASHftvolcite] = ACTIONS(6413), - [anon_sym_BSLASHsvolcite] = ACTIONS(6413), - [anon_sym_BSLASHSvolcite] = ACTIONS(6413), - [anon_sym_BSLASHtvolcite] = ACTIONS(6413), - [anon_sym_BSLASHTvolcite] = ACTIONS(6413), - [anon_sym_BSLASHavolcite] = ACTIONS(6413), - [anon_sym_BSLASHAvolcite] = ACTIONS(6413), - [anon_sym_BSLASHnotecite] = ACTIONS(6413), - [anon_sym_BSLASHNotecite] = ACTIONS(6413), - [anon_sym_BSLASHpnotecite] = ACTIONS(6413), - [anon_sym_BSLASHPnotecite] = ACTIONS(6413), - [anon_sym_BSLASHfnotecite] = ACTIONS(6413), - [anon_sym_BSLASHlabel] = ACTIONS(6413), - [anon_sym_BSLASHref] = ACTIONS(6413), - [anon_sym_BSLASHeqref] = ACTIONS(6413), - [anon_sym_BSLASHvref] = ACTIONS(6413), - [anon_sym_BSLASHVref] = ACTIONS(6413), - [anon_sym_BSLASHautoref] = ACTIONS(6413), - [anon_sym_BSLASHpageref] = ACTIONS(6413), - [anon_sym_BSLASHcref] = ACTIONS(6413), - [anon_sym_BSLASHCref] = ACTIONS(6413), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnameCref] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHlabelcref] = ACTIONS(6413), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCrefrange] = ACTIONS(6413), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnewlabel] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6413), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6413), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6415), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHdef] = ACTIONS(6413), - [anon_sym_BSLASHlet] = ACTIONS(6413), - [anon_sym_BSLASHleft] = ACTIONS(6413), - [anon_sym_BSLASHbig] = ACTIONS(6413), - [anon_sym_BSLASHBig] = ACTIONS(6413), - [anon_sym_BSLASHbigg] = ACTIONS(6413), - [anon_sym_BSLASHBigg] = ACTIONS(6413), - [anon_sym_BSLASHbigl] = ACTIONS(6413), - [anon_sym_BSLASHBigl] = ACTIONS(6413), - [anon_sym_BSLASHbiggl] = ACTIONS(6413), - [anon_sym_BSLASHBiggl] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6413), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6413), - [anon_sym_BSLASHgls] = ACTIONS(6413), - [anon_sym_BSLASHGls] = ACTIONS(6413), - [anon_sym_BSLASHGLS] = ACTIONS(6413), - [anon_sym_BSLASHglspl] = ACTIONS(6413), - [anon_sym_BSLASHGlspl] = ACTIONS(6413), - [anon_sym_BSLASHGLSpl] = ACTIONS(6413), - [anon_sym_BSLASHglsdisp] = ACTIONS(6413), - [anon_sym_BSLASHglslink] = ACTIONS(6413), - [anon_sym_BSLASHglstext] = ACTIONS(6413), - [anon_sym_BSLASHGlstext] = ACTIONS(6413), - [anon_sym_BSLASHGLStext] = ACTIONS(6413), - [anon_sym_BSLASHglsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6413), - [anon_sym_BSLASHglsplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSplural] = ACTIONS(6413), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHglsname] = ACTIONS(6413), - [anon_sym_BSLASHGlsname] = ACTIONS(6413), - [anon_sym_BSLASHGLSname] = ACTIONS(6413), - [anon_sym_BSLASHglssymbol] = ACTIONS(6413), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6413), - [anon_sym_BSLASHglsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6413), - [anon_sym_BSLASHglsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6413), - [anon_sym_BSLASHglsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6413), - [anon_sym_BSLASHglsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6413), - [anon_sym_BSLASHglsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6413), - [anon_sym_BSLASHnewacronym] = ACTIONS(6413), - [anon_sym_BSLASHacrshort] = ACTIONS(6413), - [anon_sym_BSLASHAcrshort] = ACTIONS(6413), - [anon_sym_BSLASHACRshort] = ACTIONS(6413), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6413), - [anon_sym_BSLASHacrlong] = ACTIONS(6413), - [anon_sym_BSLASHAcrlong] = ACTIONS(6413), - [anon_sym_BSLASHACRlong] = ACTIONS(6413), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6413), - [anon_sym_BSLASHacrfull] = ACTIONS(6413), - [anon_sym_BSLASHAcrfull] = ACTIONS(6413), - [anon_sym_BSLASHACRfull] = ACTIONS(6413), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6413), - [anon_sym_BSLASHacs] = ACTIONS(6413), - [anon_sym_BSLASHAcs] = ACTIONS(6413), - [anon_sym_BSLASHacsp] = ACTIONS(6413), - [anon_sym_BSLASHAcsp] = ACTIONS(6413), - [anon_sym_BSLASHacl] = ACTIONS(6413), - [anon_sym_BSLASHAcl] = ACTIONS(6413), - [anon_sym_BSLASHaclp] = ACTIONS(6413), - [anon_sym_BSLASHAclp] = ACTIONS(6413), - [anon_sym_BSLASHacf] = ACTIONS(6413), - [anon_sym_BSLASHAcf] = ACTIONS(6413), - [anon_sym_BSLASHacfp] = ACTIONS(6413), - [anon_sym_BSLASHAcfp] = ACTIONS(6413), - [anon_sym_BSLASHac] = ACTIONS(6413), - [anon_sym_BSLASHAc] = ACTIONS(6413), - [anon_sym_BSLASHacp] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6413), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6413), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6413), - [anon_sym_BSLASHcolor] = ACTIONS(6413), - [anon_sym_BSLASHcolorbox] = ACTIONS(6413), - [anon_sym_BSLASHtextcolor] = ACTIONS(6413), - [anon_sym_BSLASHpagecolor] = ACTIONS(6413), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6413), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6413), - [anon_sym_BSLASHtext] = ACTIONS(6413), - [anon_sym_BSLASHintertext] = ACTIONS(6413), - [anon_sym_shortintertext] = ACTIONS(6413), - }, - [1200] = { - [sym_command_name] = ACTIONS(6177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6177), - [anon_sym_LBRACK] = ACTIONS(6179), - [anon_sym_RBRACK] = ACTIONS(6179), - [anon_sym_COMMA] = ACTIONS(6179), - [anon_sym_EQ] = ACTIONS(6179), - [anon_sym_LPAREN] = ACTIONS(6179), - [anon_sym_RPAREN] = ACTIONS(6179), - [anon_sym_BSLASHpart] = ACTIONS(6177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddpart] = ACTIONS(6177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6179), - [anon_sym_BSLASHchapter] = ACTIONS(6177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddchap] = ACTIONS(6177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsection] = ACTIONS(6177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddsec] = ACTIONS(6177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubsection] = ACTIONS(6177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHparagraph] = ACTIONS(6177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6179), - [anon_sym_BSLASHitem] = ACTIONS(6177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6179), - [anon_sym_LBRACE] = ACTIONS(6179), - [sym_word] = ACTIONS(6177), - [sym_placeholder] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6179), - [anon_sym_DASH] = ACTIONS(6179), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6177), - [anon_sym_GT] = ACTIONS(6177), - [anon_sym_BANG] = ACTIONS(6177), - [anon_sym_PIPE] = ACTIONS(6177), - [anon_sym_COLON] = ACTIONS(6177), - [anon_sym_SQUOTE] = ACTIONS(6177), - [anon_sym__] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6179), - [anon_sym_DOLLAR] = ACTIONS(6177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), - [anon_sym_BSLASHbegin] = ACTIONS(6177), - [anon_sym_BSLASHtitle] = ACTIONS(6177), - [anon_sym_BSLASHauthor] = ACTIONS(6177), - [anon_sym_BSLASHusepackage] = ACTIONS(6177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6177), - [anon_sym_BSLASHinclude] = ACTIONS(6177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6177), - [anon_sym_BSLASHinput] = ACTIONS(6177), - [anon_sym_BSLASHsubfile] = ACTIONS(6177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6177), - [anon_sym_BSLASHbibliography] = ACTIONS(6177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6177), - [anon_sym_BSLASHincludesvg] = ACTIONS(6177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6177), - [anon_sym_BSLASHimport] = ACTIONS(6177), - [anon_sym_BSLASHsubimport] = ACTIONS(6177), - [anon_sym_BSLASHinputfrom] = ACTIONS(6177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6177), - [anon_sym_BSLASHincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHcaption] = ACTIONS(6177), - [anon_sym_BSLASHcite] = ACTIONS(6177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCite] = ACTIONS(6177), - [anon_sym_BSLASHnocite] = ACTIONS(6177), - [anon_sym_BSLASHcitet] = ACTIONS(6177), - [anon_sym_BSLASHcitep] = ACTIONS(6177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteauthor] = ACTIONS(6177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitetitle] = ACTIONS(6177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteyear] = ACTIONS(6177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitedate] = ACTIONS(6177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteurl] = ACTIONS(6177), - [anon_sym_BSLASHfullcite] = ACTIONS(6177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6177), - [anon_sym_BSLASHcitealt] = ACTIONS(6177), - [anon_sym_BSLASHcitealp] = ACTIONS(6177), - [anon_sym_BSLASHcitetext] = ACTIONS(6177), - [anon_sym_BSLASHparencite] = ACTIONS(6177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHParencite] = ACTIONS(6177), - [anon_sym_BSLASHfootcite] = ACTIONS(6177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6177), - [anon_sym_BSLASHtextcite] = ACTIONS(6177), - [anon_sym_BSLASHTextcite] = ACTIONS(6177), - [anon_sym_BSLASHsmartcite] = ACTIONS(6177), - [anon_sym_BSLASHSmartcite] = ACTIONS(6177), - [anon_sym_BSLASHsupercite] = ACTIONS(6177), - [anon_sym_BSLASHautocite] = ACTIONS(6177), - [anon_sym_BSLASHAutocite] = ACTIONS(6177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHvolcite] = ACTIONS(6177), - [anon_sym_BSLASHVolcite] = ACTIONS(6177), - [anon_sym_BSLASHpvolcite] = ACTIONS(6177), - [anon_sym_BSLASHPvolcite] = ACTIONS(6177), - [anon_sym_BSLASHfvolcite] = ACTIONS(6177), - [anon_sym_BSLASHftvolcite] = ACTIONS(6177), - [anon_sym_BSLASHsvolcite] = ACTIONS(6177), - [anon_sym_BSLASHSvolcite] = ACTIONS(6177), - [anon_sym_BSLASHtvolcite] = ACTIONS(6177), - [anon_sym_BSLASHTvolcite] = ACTIONS(6177), - [anon_sym_BSLASHavolcite] = ACTIONS(6177), - [anon_sym_BSLASHAvolcite] = ACTIONS(6177), - [anon_sym_BSLASHnotecite] = ACTIONS(6177), - [anon_sym_BSLASHNotecite] = ACTIONS(6177), - [anon_sym_BSLASHpnotecite] = ACTIONS(6177), - [anon_sym_BSLASHPnotecite] = ACTIONS(6177), - [anon_sym_BSLASHfnotecite] = ACTIONS(6177), - [anon_sym_BSLASHlabel] = ACTIONS(6177), - [anon_sym_BSLASHref] = ACTIONS(6177), - [anon_sym_BSLASHeqref] = ACTIONS(6177), - [anon_sym_BSLASHvref] = ACTIONS(6177), - [anon_sym_BSLASHVref] = ACTIONS(6177), - [anon_sym_BSLASHautoref] = ACTIONS(6177), - [anon_sym_BSLASHpageref] = ACTIONS(6177), - [anon_sym_BSLASHcref] = ACTIONS(6177), - [anon_sym_BSLASHCref] = ACTIONS(6177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnameCref] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHlabelcref] = ACTIONS(6177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCrefrange] = ACTIONS(6177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnewlabel] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHdef] = ACTIONS(6177), - [anon_sym_BSLASHlet] = ACTIONS(6177), - [anon_sym_BSLASHleft] = ACTIONS(6177), - [anon_sym_BSLASHbig] = ACTIONS(6177), - [anon_sym_BSLASHBig] = ACTIONS(6177), - [anon_sym_BSLASHbigg] = ACTIONS(6177), - [anon_sym_BSLASHBigg] = ACTIONS(6177), - [anon_sym_BSLASHbigl] = ACTIONS(6177), - [anon_sym_BSLASHBigl] = ACTIONS(6177), - [anon_sym_BSLASHbiggl] = ACTIONS(6177), - [anon_sym_BSLASHBiggl] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6177), - [anon_sym_BSLASHgls] = ACTIONS(6177), - [anon_sym_BSLASHGls] = ACTIONS(6177), - [anon_sym_BSLASHGLS] = ACTIONS(6177), - [anon_sym_BSLASHglspl] = ACTIONS(6177), - [anon_sym_BSLASHGlspl] = ACTIONS(6177), - [anon_sym_BSLASHGLSpl] = ACTIONS(6177), - [anon_sym_BSLASHglsdisp] = ACTIONS(6177), - [anon_sym_BSLASHglslink] = ACTIONS(6177), - [anon_sym_BSLASHglstext] = ACTIONS(6177), - [anon_sym_BSLASHGlstext] = ACTIONS(6177), - [anon_sym_BSLASHGLStext] = ACTIONS(6177), - [anon_sym_BSLASHglsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6177), - [anon_sym_BSLASHglsplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSplural] = ACTIONS(6177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHglsname] = ACTIONS(6177), - [anon_sym_BSLASHGlsname] = ACTIONS(6177), - [anon_sym_BSLASHGLSname] = ACTIONS(6177), - [anon_sym_BSLASHglssymbol] = ACTIONS(6177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6177), - [anon_sym_BSLASHglsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6177), - [anon_sym_BSLASHglsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6177), - [anon_sym_BSLASHglsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6177), - [anon_sym_BSLASHglsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6177), - [anon_sym_BSLASHglsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6177), - [anon_sym_BSLASHnewacronym] = ACTIONS(6177), - [anon_sym_BSLASHacrshort] = ACTIONS(6177), - [anon_sym_BSLASHAcrshort] = ACTIONS(6177), - [anon_sym_BSLASHACRshort] = ACTIONS(6177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6177), - [anon_sym_BSLASHacrlong] = ACTIONS(6177), - [anon_sym_BSLASHAcrlong] = ACTIONS(6177), - [anon_sym_BSLASHACRlong] = ACTIONS(6177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6177), - [anon_sym_BSLASHacrfull] = ACTIONS(6177), - [anon_sym_BSLASHAcrfull] = ACTIONS(6177), - [anon_sym_BSLASHACRfull] = ACTIONS(6177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6177), - [anon_sym_BSLASHacs] = ACTIONS(6177), - [anon_sym_BSLASHAcs] = ACTIONS(6177), - [anon_sym_BSLASHacsp] = ACTIONS(6177), - [anon_sym_BSLASHAcsp] = ACTIONS(6177), - [anon_sym_BSLASHacl] = ACTIONS(6177), - [anon_sym_BSLASHAcl] = ACTIONS(6177), - [anon_sym_BSLASHaclp] = ACTIONS(6177), - [anon_sym_BSLASHAclp] = ACTIONS(6177), - [anon_sym_BSLASHacf] = ACTIONS(6177), - [anon_sym_BSLASHAcf] = ACTIONS(6177), - [anon_sym_BSLASHacfp] = ACTIONS(6177), - [anon_sym_BSLASHAcfp] = ACTIONS(6177), - [anon_sym_BSLASHac] = ACTIONS(6177), - [anon_sym_BSLASHAc] = ACTIONS(6177), - [anon_sym_BSLASHacp] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6177), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6177), - [anon_sym_BSLASHcolor] = ACTIONS(6177), - [anon_sym_BSLASHcolorbox] = ACTIONS(6177), - [anon_sym_BSLASHtextcolor] = ACTIONS(6177), - [anon_sym_BSLASHpagecolor] = ACTIONS(6177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6177), - [anon_sym_BSLASHtext] = ACTIONS(6177), - [anon_sym_BSLASHintertext] = ACTIONS(6177), - [anon_sym_shortintertext] = ACTIONS(6177), - }, - [1201] = { - [sym_command_name] = ACTIONS(6173), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6173), - [anon_sym_LBRACK] = ACTIONS(6175), - [anon_sym_RBRACK] = ACTIONS(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_EQ] = ACTIONS(6175), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_BSLASHpart] = ACTIONS(6173), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddpart] = ACTIONS(6173), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6175), - [anon_sym_BSLASHchapter] = ACTIONS(6173), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddchap] = ACTIONS(6173), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsection] = ACTIONS(6173), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddsec] = ACTIONS(6173), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubsection] = ACTIONS(6173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6173), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHparagraph] = ACTIONS(6173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6173), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6175), - [anon_sym_BSLASHitem] = ACTIONS(6173), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6175), - [anon_sym_LBRACE] = ACTIONS(6175), - [sym_word] = ACTIONS(6173), - [sym_placeholder] = ACTIONS(6175), - [anon_sym_PLUS] = ACTIONS(6175), - [anon_sym_DASH] = ACTIONS(6175), - [anon_sym_STAR] = ACTIONS(6175), - [anon_sym_SLASH] = ACTIONS(6175), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_BANG] = ACTIONS(6173), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_COLON] = ACTIONS(6173), - [anon_sym_SQUOTE] = ACTIONS(6173), - [anon_sym__] = ACTIONS(6175), - [anon_sym_CARET] = ACTIONS(6175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6175), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6175), - [anon_sym_DOLLAR] = ACTIONS(6173), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6175), - [anon_sym_BSLASHbegin] = ACTIONS(6173), - [anon_sym_BSLASHtitle] = ACTIONS(6173), - [anon_sym_BSLASHauthor] = ACTIONS(6173), - [anon_sym_BSLASHusepackage] = ACTIONS(6173), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6173), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6173), - [anon_sym_BSLASHinclude] = ACTIONS(6173), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6173), - [anon_sym_BSLASHinput] = ACTIONS(6173), - [anon_sym_BSLASHsubfile] = ACTIONS(6173), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6173), - [anon_sym_BSLASHbibliography] = ACTIONS(6173), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6173), - [anon_sym_BSLASHincludesvg] = ACTIONS(6173), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6173), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6173), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6173), - [anon_sym_BSLASHimport] = ACTIONS(6173), - [anon_sym_BSLASHsubimport] = ACTIONS(6173), - [anon_sym_BSLASHinputfrom] = ACTIONS(6173), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6173), - [anon_sym_BSLASHincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHcaption] = ACTIONS(6173), - [anon_sym_BSLASHcite] = ACTIONS(6173), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCite] = ACTIONS(6173), - [anon_sym_BSLASHnocite] = ACTIONS(6173), - [anon_sym_BSLASHcitet] = ACTIONS(6173), - [anon_sym_BSLASHcitep] = ACTIONS(6173), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteauthor] = ACTIONS(6173), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6173), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitetitle] = ACTIONS(6173), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteyear] = ACTIONS(6173), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitedate] = ACTIONS(6173), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteurl] = ACTIONS(6173), - [anon_sym_BSLASHfullcite] = ACTIONS(6173), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6173), - [anon_sym_BSLASHcitealt] = ACTIONS(6173), - [anon_sym_BSLASHcitealp] = ACTIONS(6173), - [anon_sym_BSLASHcitetext] = ACTIONS(6173), - [anon_sym_BSLASHparencite] = ACTIONS(6173), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHParencite] = ACTIONS(6173), - [anon_sym_BSLASHfootcite] = ACTIONS(6173), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6173), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6173), - [anon_sym_BSLASHtextcite] = ACTIONS(6173), - [anon_sym_BSLASHTextcite] = ACTIONS(6173), - [anon_sym_BSLASHsmartcite] = ACTIONS(6173), - [anon_sym_BSLASHSmartcite] = ACTIONS(6173), - [anon_sym_BSLASHsupercite] = ACTIONS(6173), - [anon_sym_BSLASHautocite] = ACTIONS(6173), - [anon_sym_BSLASHAutocite] = ACTIONS(6173), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHvolcite] = ACTIONS(6173), - [anon_sym_BSLASHVolcite] = ACTIONS(6173), - [anon_sym_BSLASHpvolcite] = ACTIONS(6173), - [anon_sym_BSLASHPvolcite] = ACTIONS(6173), - [anon_sym_BSLASHfvolcite] = ACTIONS(6173), - [anon_sym_BSLASHftvolcite] = ACTIONS(6173), - [anon_sym_BSLASHsvolcite] = ACTIONS(6173), - [anon_sym_BSLASHSvolcite] = ACTIONS(6173), - [anon_sym_BSLASHtvolcite] = ACTIONS(6173), - [anon_sym_BSLASHTvolcite] = ACTIONS(6173), - [anon_sym_BSLASHavolcite] = ACTIONS(6173), - [anon_sym_BSLASHAvolcite] = ACTIONS(6173), - [anon_sym_BSLASHnotecite] = ACTIONS(6173), - [anon_sym_BSLASHNotecite] = ACTIONS(6173), - [anon_sym_BSLASHpnotecite] = ACTIONS(6173), - [anon_sym_BSLASHPnotecite] = ACTIONS(6173), - [anon_sym_BSLASHfnotecite] = ACTIONS(6173), - [anon_sym_BSLASHlabel] = ACTIONS(6173), - [anon_sym_BSLASHref] = ACTIONS(6173), - [anon_sym_BSLASHeqref] = ACTIONS(6173), - [anon_sym_BSLASHvref] = ACTIONS(6173), - [anon_sym_BSLASHVref] = ACTIONS(6173), - [anon_sym_BSLASHautoref] = ACTIONS(6173), - [anon_sym_BSLASHpageref] = ACTIONS(6173), - [anon_sym_BSLASHcref] = ACTIONS(6173), - [anon_sym_BSLASHCref] = ACTIONS(6173), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnameCref] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHlabelcref] = ACTIONS(6173), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCrefrange] = ACTIONS(6173), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnewlabel] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6173), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6173), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6175), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHdef] = ACTIONS(6173), - [anon_sym_BSLASHlet] = ACTIONS(6173), - [anon_sym_BSLASHleft] = ACTIONS(6173), - [anon_sym_BSLASHbig] = ACTIONS(6173), - [anon_sym_BSLASHBig] = ACTIONS(6173), - [anon_sym_BSLASHbigg] = ACTIONS(6173), - [anon_sym_BSLASHBigg] = ACTIONS(6173), - [anon_sym_BSLASHbigl] = ACTIONS(6173), - [anon_sym_BSLASHBigl] = ACTIONS(6173), - [anon_sym_BSLASHbiggl] = ACTIONS(6173), - [anon_sym_BSLASHBiggl] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6173), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6173), - [anon_sym_BSLASHgls] = ACTIONS(6173), - [anon_sym_BSLASHGls] = ACTIONS(6173), - [anon_sym_BSLASHGLS] = ACTIONS(6173), - [anon_sym_BSLASHglspl] = ACTIONS(6173), - [anon_sym_BSLASHGlspl] = ACTIONS(6173), - [anon_sym_BSLASHGLSpl] = ACTIONS(6173), - [anon_sym_BSLASHglsdisp] = ACTIONS(6173), - [anon_sym_BSLASHglslink] = ACTIONS(6173), - [anon_sym_BSLASHglstext] = ACTIONS(6173), - [anon_sym_BSLASHGlstext] = ACTIONS(6173), - [anon_sym_BSLASHGLStext] = ACTIONS(6173), - [anon_sym_BSLASHglsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6173), - [anon_sym_BSLASHglsplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSplural] = ACTIONS(6173), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHglsname] = ACTIONS(6173), - [anon_sym_BSLASHGlsname] = ACTIONS(6173), - [anon_sym_BSLASHGLSname] = ACTIONS(6173), - [anon_sym_BSLASHglssymbol] = ACTIONS(6173), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6173), - [anon_sym_BSLASHglsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6173), - [anon_sym_BSLASHglsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6173), - [anon_sym_BSLASHglsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6173), - [anon_sym_BSLASHglsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6173), - [anon_sym_BSLASHglsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6173), - [anon_sym_BSLASHnewacronym] = ACTIONS(6173), - [anon_sym_BSLASHacrshort] = ACTIONS(6173), - [anon_sym_BSLASHAcrshort] = ACTIONS(6173), - [anon_sym_BSLASHACRshort] = ACTIONS(6173), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6173), - [anon_sym_BSLASHacrlong] = ACTIONS(6173), - [anon_sym_BSLASHAcrlong] = ACTIONS(6173), - [anon_sym_BSLASHACRlong] = ACTIONS(6173), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6173), - [anon_sym_BSLASHacrfull] = ACTIONS(6173), - [anon_sym_BSLASHAcrfull] = ACTIONS(6173), - [anon_sym_BSLASHACRfull] = ACTIONS(6173), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6173), - [anon_sym_BSLASHacs] = ACTIONS(6173), - [anon_sym_BSLASHAcs] = ACTIONS(6173), - [anon_sym_BSLASHacsp] = ACTIONS(6173), - [anon_sym_BSLASHAcsp] = ACTIONS(6173), - [anon_sym_BSLASHacl] = ACTIONS(6173), - [anon_sym_BSLASHAcl] = ACTIONS(6173), - [anon_sym_BSLASHaclp] = ACTIONS(6173), - [anon_sym_BSLASHAclp] = ACTIONS(6173), - [anon_sym_BSLASHacf] = ACTIONS(6173), - [anon_sym_BSLASHAcf] = ACTIONS(6173), - [anon_sym_BSLASHacfp] = ACTIONS(6173), - [anon_sym_BSLASHAcfp] = ACTIONS(6173), - [anon_sym_BSLASHac] = ACTIONS(6173), - [anon_sym_BSLASHAc] = ACTIONS(6173), - [anon_sym_BSLASHacp] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6173), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6173), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6173), - [anon_sym_BSLASHcolor] = ACTIONS(6173), - [anon_sym_BSLASHcolorbox] = ACTIONS(6173), - [anon_sym_BSLASHtextcolor] = ACTIONS(6173), - [anon_sym_BSLASHpagecolor] = ACTIONS(6173), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6173), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6173), - [anon_sym_BSLASHtext] = ACTIONS(6173), - [anon_sym_BSLASHintertext] = ACTIONS(6173), - [anon_sym_shortintertext] = ACTIONS(6173), - }, - [1202] = { - [sym_command_name] = ACTIONS(6417), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6417), - [anon_sym_LBRACK] = ACTIONS(6419), - [anon_sym_RBRACK] = ACTIONS(6419), - [anon_sym_COMMA] = ACTIONS(6419), - [anon_sym_EQ] = ACTIONS(6419), - [anon_sym_LPAREN] = ACTIONS(6419), - [anon_sym_RPAREN] = ACTIONS(6419), - [anon_sym_BSLASHpart] = ACTIONS(6417), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddpart] = ACTIONS(6417), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6419), - [anon_sym_BSLASHchapter] = ACTIONS(6417), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddchap] = ACTIONS(6417), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsection] = ACTIONS(6417), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddsec] = ACTIONS(6417), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubsection] = ACTIONS(6417), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6417), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHparagraph] = ACTIONS(6417), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6417), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6419), - [anon_sym_BSLASHitem] = ACTIONS(6417), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6419), - [anon_sym_LBRACE] = ACTIONS(6419), - [sym_word] = ACTIONS(6417), - [sym_placeholder] = ACTIONS(6419), - [anon_sym_PLUS] = ACTIONS(6419), - [anon_sym_DASH] = ACTIONS(6419), - [anon_sym_STAR] = ACTIONS(6419), - [anon_sym_SLASH] = ACTIONS(6419), - [anon_sym_LT] = ACTIONS(6417), - [anon_sym_GT] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(6417), - [anon_sym_PIPE] = ACTIONS(6417), - [anon_sym_COLON] = ACTIONS(6417), - [anon_sym_SQUOTE] = ACTIONS(6417), - [anon_sym__] = ACTIONS(6419), - [anon_sym_CARET] = ACTIONS(6419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6419), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6419), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6419), - [anon_sym_DOLLAR] = ACTIONS(6417), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6419), - [anon_sym_BSLASHbegin] = ACTIONS(6417), - [anon_sym_BSLASHtitle] = ACTIONS(6417), - [anon_sym_BSLASHauthor] = ACTIONS(6417), - [anon_sym_BSLASHusepackage] = ACTIONS(6417), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6417), - [anon_sym_BSLASHinclude] = ACTIONS(6417), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6417), - [anon_sym_BSLASHinput] = ACTIONS(6417), - [anon_sym_BSLASHsubfile] = ACTIONS(6417), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6417), - [anon_sym_BSLASHbibliography] = ACTIONS(6417), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6417), - [anon_sym_BSLASHincludesvg] = ACTIONS(6417), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6417), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6417), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6417), - [anon_sym_BSLASHimport] = ACTIONS(6417), - [anon_sym_BSLASHsubimport] = ACTIONS(6417), - [anon_sym_BSLASHinputfrom] = ACTIONS(6417), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6417), - [anon_sym_BSLASHincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHcaption] = ACTIONS(6417), - [anon_sym_BSLASHcite] = ACTIONS(6417), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCite] = ACTIONS(6417), - [anon_sym_BSLASHnocite] = ACTIONS(6417), - [anon_sym_BSLASHcitet] = ACTIONS(6417), - [anon_sym_BSLASHcitep] = ACTIONS(6417), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteauthor] = ACTIONS(6417), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6417), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitetitle] = ACTIONS(6417), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteyear] = ACTIONS(6417), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitedate] = ACTIONS(6417), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteurl] = ACTIONS(6417), - [anon_sym_BSLASHfullcite] = ACTIONS(6417), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6417), - [anon_sym_BSLASHcitealt] = ACTIONS(6417), - [anon_sym_BSLASHcitealp] = ACTIONS(6417), - [anon_sym_BSLASHcitetext] = ACTIONS(6417), - [anon_sym_BSLASHparencite] = ACTIONS(6417), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHParencite] = ACTIONS(6417), - [anon_sym_BSLASHfootcite] = ACTIONS(6417), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6417), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6417), - [anon_sym_BSLASHtextcite] = ACTIONS(6417), - [anon_sym_BSLASHTextcite] = ACTIONS(6417), - [anon_sym_BSLASHsmartcite] = ACTIONS(6417), - [anon_sym_BSLASHSmartcite] = ACTIONS(6417), - [anon_sym_BSLASHsupercite] = ACTIONS(6417), - [anon_sym_BSLASHautocite] = ACTIONS(6417), - [anon_sym_BSLASHAutocite] = ACTIONS(6417), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHvolcite] = ACTIONS(6417), - [anon_sym_BSLASHVolcite] = ACTIONS(6417), - [anon_sym_BSLASHpvolcite] = ACTIONS(6417), - [anon_sym_BSLASHPvolcite] = ACTIONS(6417), - [anon_sym_BSLASHfvolcite] = ACTIONS(6417), - [anon_sym_BSLASHftvolcite] = ACTIONS(6417), - [anon_sym_BSLASHsvolcite] = ACTIONS(6417), - [anon_sym_BSLASHSvolcite] = ACTIONS(6417), - [anon_sym_BSLASHtvolcite] = ACTIONS(6417), - [anon_sym_BSLASHTvolcite] = ACTIONS(6417), - [anon_sym_BSLASHavolcite] = ACTIONS(6417), - [anon_sym_BSLASHAvolcite] = ACTIONS(6417), - [anon_sym_BSLASHnotecite] = ACTIONS(6417), - [anon_sym_BSLASHNotecite] = ACTIONS(6417), - [anon_sym_BSLASHpnotecite] = ACTIONS(6417), - [anon_sym_BSLASHPnotecite] = ACTIONS(6417), - [anon_sym_BSLASHfnotecite] = ACTIONS(6417), - [anon_sym_BSLASHlabel] = ACTIONS(6417), - [anon_sym_BSLASHref] = ACTIONS(6417), - [anon_sym_BSLASHeqref] = ACTIONS(6417), - [anon_sym_BSLASHvref] = ACTIONS(6417), - [anon_sym_BSLASHVref] = ACTIONS(6417), - [anon_sym_BSLASHautoref] = ACTIONS(6417), - [anon_sym_BSLASHpageref] = ACTIONS(6417), - [anon_sym_BSLASHcref] = ACTIONS(6417), - [anon_sym_BSLASHCref] = ACTIONS(6417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnameCref] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHlabelcref] = ACTIONS(6417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCrefrange] = ACTIONS(6417), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnewlabel] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6419), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHdef] = ACTIONS(6417), - [anon_sym_BSLASHlet] = ACTIONS(6417), - [anon_sym_BSLASHleft] = ACTIONS(6417), - [anon_sym_BSLASHbig] = ACTIONS(6417), - [anon_sym_BSLASHBig] = ACTIONS(6417), - [anon_sym_BSLASHbigg] = ACTIONS(6417), - [anon_sym_BSLASHBigg] = ACTIONS(6417), - [anon_sym_BSLASHbigl] = ACTIONS(6417), - [anon_sym_BSLASHBigl] = ACTIONS(6417), - [anon_sym_BSLASHbiggl] = ACTIONS(6417), - [anon_sym_BSLASHBiggl] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6417), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6417), - [anon_sym_BSLASHgls] = ACTIONS(6417), - [anon_sym_BSLASHGls] = ACTIONS(6417), - [anon_sym_BSLASHGLS] = ACTIONS(6417), - [anon_sym_BSLASHglspl] = ACTIONS(6417), - [anon_sym_BSLASHGlspl] = ACTIONS(6417), - [anon_sym_BSLASHGLSpl] = ACTIONS(6417), - [anon_sym_BSLASHglsdisp] = ACTIONS(6417), - [anon_sym_BSLASHglslink] = ACTIONS(6417), - [anon_sym_BSLASHglstext] = ACTIONS(6417), - [anon_sym_BSLASHGlstext] = ACTIONS(6417), - [anon_sym_BSLASHGLStext] = ACTIONS(6417), - [anon_sym_BSLASHglsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6417), - [anon_sym_BSLASHglsplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSplural] = ACTIONS(6417), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHglsname] = ACTIONS(6417), - [anon_sym_BSLASHGlsname] = ACTIONS(6417), - [anon_sym_BSLASHGLSname] = ACTIONS(6417), - [anon_sym_BSLASHglssymbol] = ACTIONS(6417), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6417), - [anon_sym_BSLASHglsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6417), - [anon_sym_BSLASHglsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6417), - [anon_sym_BSLASHglsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6417), - [anon_sym_BSLASHglsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6417), - [anon_sym_BSLASHglsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6417), - [anon_sym_BSLASHnewacronym] = ACTIONS(6417), - [anon_sym_BSLASHacrshort] = ACTIONS(6417), - [anon_sym_BSLASHAcrshort] = ACTIONS(6417), - [anon_sym_BSLASHACRshort] = ACTIONS(6417), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6417), - [anon_sym_BSLASHacrlong] = ACTIONS(6417), - [anon_sym_BSLASHAcrlong] = ACTIONS(6417), - [anon_sym_BSLASHACRlong] = ACTIONS(6417), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6417), - [anon_sym_BSLASHacrfull] = ACTIONS(6417), - [anon_sym_BSLASHAcrfull] = ACTIONS(6417), - [anon_sym_BSLASHACRfull] = ACTIONS(6417), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6417), - [anon_sym_BSLASHacs] = ACTIONS(6417), - [anon_sym_BSLASHAcs] = ACTIONS(6417), - [anon_sym_BSLASHacsp] = ACTIONS(6417), - [anon_sym_BSLASHAcsp] = ACTIONS(6417), - [anon_sym_BSLASHacl] = ACTIONS(6417), - [anon_sym_BSLASHAcl] = ACTIONS(6417), - [anon_sym_BSLASHaclp] = ACTIONS(6417), - [anon_sym_BSLASHAclp] = ACTIONS(6417), - [anon_sym_BSLASHacf] = ACTIONS(6417), - [anon_sym_BSLASHAcf] = ACTIONS(6417), - [anon_sym_BSLASHacfp] = ACTIONS(6417), - [anon_sym_BSLASHAcfp] = ACTIONS(6417), - [anon_sym_BSLASHac] = ACTIONS(6417), - [anon_sym_BSLASHAc] = ACTIONS(6417), - [anon_sym_BSLASHacp] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6417), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6417), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6417), - [anon_sym_BSLASHcolor] = ACTIONS(6417), - [anon_sym_BSLASHcolorbox] = ACTIONS(6417), - [anon_sym_BSLASHtextcolor] = ACTIONS(6417), - [anon_sym_BSLASHpagecolor] = ACTIONS(6417), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6417), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6417), - [anon_sym_BSLASHtext] = ACTIONS(6417), - [anon_sym_BSLASHintertext] = ACTIONS(6417), - [anon_sym_shortintertext] = ACTIONS(6417), - }, - [1203] = { - [sym_command_name] = ACTIONS(6129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(6131), - [anon_sym_RBRACK] = ACTIONS(6131), - [anon_sym_COMMA] = ACTIONS(6131), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_LPAREN] = ACTIONS(6131), - [anon_sym_RPAREN] = ACTIONS(6131), - [anon_sym_BSLASHpart] = ACTIONS(6129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddpart] = ACTIONS(6129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6131), - [anon_sym_BSLASHchapter] = ACTIONS(6129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddchap] = ACTIONS(6129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsection] = ACTIONS(6129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddsec] = ACTIONS(6129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubsection] = ACTIONS(6129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHparagraph] = ACTIONS(6129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6131), - [anon_sym_BSLASHitem] = ACTIONS(6129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(6131), - [sym_word] = ACTIONS(6129), - [sym_placeholder] = ACTIONS(6131), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_BANG] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_SQUOTE] = ACTIONS(6129), - [anon_sym__] = ACTIONS(6131), - [anon_sym_CARET] = ACTIONS(6131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6131), - [anon_sym_DOLLAR] = ACTIONS(6129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6131), - [anon_sym_BSLASHbegin] = ACTIONS(6129), - [anon_sym_BSLASHend] = ACTIONS(6129), - [anon_sym_BSLASHtitle] = ACTIONS(6129), - [anon_sym_BSLASHauthor] = ACTIONS(6129), - [anon_sym_BSLASHusepackage] = ACTIONS(6129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6129), - [anon_sym_BSLASHinclude] = ACTIONS(6129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6129), - [anon_sym_BSLASHinput] = ACTIONS(6129), - [anon_sym_BSLASHsubfile] = ACTIONS(6129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6129), - [anon_sym_BSLASHbibliography] = ACTIONS(6129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6129), - [anon_sym_BSLASHincludesvg] = ACTIONS(6129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6129), - [anon_sym_BSLASHimport] = ACTIONS(6129), - [anon_sym_BSLASHsubimport] = ACTIONS(6129), - [anon_sym_BSLASHinputfrom] = ACTIONS(6129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6129), - [anon_sym_BSLASHincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHcaption] = ACTIONS(6129), - [anon_sym_BSLASHcite] = ACTIONS(6129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCite] = ACTIONS(6129), - [anon_sym_BSLASHnocite] = ACTIONS(6129), - [anon_sym_BSLASHcitet] = ACTIONS(6129), - [anon_sym_BSLASHcitep] = ACTIONS(6129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteauthor] = ACTIONS(6129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitetitle] = ACTIONS(6129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteyear] = ACTIONS(6129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitedate] = ACTIONS(6129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteurl] = ACTIONS(6129), - [anon_sym_BSLASHfullcite] = ACTIONS(6129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6129), - [anon_sym_BSLASHcitealt] = ACTIONS(6129), - [anon_sym_BSLASHcitealp] = ACTIONS(6129), - [anon_sym_BSLASHcitetext] = ACTIONS(6129), - [anon_sym_BSLASHparencite] = ACTIONS(6129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHParencite] = ACTIONS(6129), - [anon_sym_BSLASHfootcite] = ACTIONS(6129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6129), - [anon_sym_BSLASHtextcite] = ACTIONS(6129), - [anon_sym_BSLASHTextcite] = ACTIONS(6129), - [anon_sym_BSLASHsmartcite] = ACTIONS(6129), - [anon_sym_BSLASHSmartcite] = ACTIONS(6129), - [anon_sym_BSLASHsupercite] = ACTIONS(6129), - [anon_sym_BSLASHautocite] = ACTIONS(6129), - [anon_sym_BSLASHAutocite] = ACTIONS(6129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHvolcite] = ACTIONS(6129), - [anon_sym_BSLASHVolcite] = ACTIONS(6129), - [anon_sym_BSLASHpvolcite] = ACTIONS(6129), - [anon_sym_BSLASHPvolcite] = ACTIONS(6129), - [anon_sym_BSLASHfvolcite] = ACTIONS(6129), - [anon_sym_BSLASHftvolcite] = ACTIONS(6129), - [anon_sym_BSLASHsvolcite] = ACTIONS(6129), - [anon_sym_BSLASHSvolcite] = ACTIONS(6129), - [anon_sym_BSLASHtvolcite] = ACTIONS(6129), - [anon_sym_BSLASHTvolcite] = ACTIONS(6129), - [anon_sym_BSLASHavolcite] = ACTIONS(6129), - [anon_sym_BSLASHAvolcite] = ACTIONS(6129), - [anon_sym_BSLASHnotecite] = ACTIONS(6129), - [anon_sym_BSLASHNotecite] = ACTIONS(6129), - [anon_sym_BSLASHpnotecite] = ACTIONS(6129), - [anon_sym_BSLASHPnotecite] = ACTIONS(6129), - [anon_sym_BSLASHfnotecite] = ACTIONS(6129), - [anon_sym_BSLASHlabel] = ACTIONS(6129), - [anon_sym_BSLASHref] = ACTIONS(6129), - [anon_sym_BSLASHeqref] = ACTIONS(6129), - [anon_sym_BSLASHvref] = ACTIONS(6129), - [anon_sym_BSLASHVref] = ACTIONS(6129), - [anon_sym_BSLASHautoref] = ACTIONS(6129), - [anon_sym_BSLASHpageref] = ACTIONS(6129), - [anon_sym_BSLASHcref] = ACTIONS(6129), - [anon_sym_BSLASHCref] = ACTIONS(6129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnameCref] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHlabelcref] = ACTIONS(6129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCrefrange] = ACTIONS(6129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnewlabel] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6131), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHdef] = ACTIONS(6129), - [anon_sym_BSLASHlet] = ACTIONS(6129), - [anon_sym_BSLASHleft] = ACTIONS(6129), - [anon_sym_BSLASHbig] = ACTIONS(6129), - [anon_sym_BSLASHBig] = ACTIONS(6129), - [anon_sym_BSLASHbigg] = ACTIONS(6129), - [anon_sym_BSLASHBigg] = ACTIONS(6129), - [anon_sym_BSLASHbigl] = ACTIONS(6129), - [anon_sym_BSLASHBigl] = ACTIONS(6129), - [anon_sym_BSLASHbiggl] = ACTIONS(6129), - [anon_sym_BSLASHBiggl] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6129), - [anon_sym_BSLASHgls] = ACTIONS(6129), - [anon_sym_BSLASHGls] = ACTIONS(6129), - [anon_sym_BSLASHGLS] = ACTIONS(6129), - [anon_sym_BSLASHglspl] = ACTIONS(6129), - [anon_sym_BSLASHGlspl] = ACTIONS(6129), - [anon_sym_BSLASHGLSpl] = ACTIONS(6129), - [anon_sym_BSLASHglsdisp] = ACTIONS(6129), - [anon_sym_BSLASHglslink] = ACTIONS(6129), - [anon_sym_BSLASHglstext] = ACTIONS(6129), - [anon_sym_BSLASHGlstext] = ACTIONS(6129), - [anon_sym_BSLASHGLStext] = ACTIONS(6129), - [anon_sym_BSLASHglsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6129), - [anon_sym_BSLASHglsplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSplural] = ACTIONS(6129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHglsname] = ACTIONS(6129), - [anon_sym_BSLASHGlsname] = ACTIONS(6129), - [anon_sym_BSLASHGLSname] = ACTIONS(6129), - [anon_sym_BSLASHglssymbol] = ACTIONS(6129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6129), - [anon_sym_BSLASHglsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6129), - [anon_sym_BSLASHglsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6129), - [anon_sym_BSLASHglsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6129), - [anon_sym_BSLASHglsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6129), - [anon_sym_BSLASHglsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6129), - [anon_sym_BSLASHnewacronym] = ACTIONS(6129), - [anon_sym_BSLASHacrshort] = ACTIONS(6129), - [anon_sym_BSLASHAcrshort] = ACTIONS(6129), - [anon_sym_BSLASHACRshort] = ACTIONS(6129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6129), - [anon_sym_BSLASHacrlong] = ACTIONS(6129), - [anon_sym_BSLASHAcrlong] = ACTIONS(6129), - [anon_sym_BSLASHACRlong] = ACTIONS(6129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6129), - [anon_sym_BSLASHacrfull] = ACTIONS(6129), - [anon_sym_BSLASHAcrfull] = ACTIONS(6129), - [anon_sym_BSLASHACRfull] = ACTIONS(6129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6129), - [anon_sym_BSLASHacs] = ACTIONS(6129), - [anon_sym_BSLASHAcs] = ACTIONS(6129), - [anon_sym_BSLASHacsp] = ACTIONS(6129), - [anon_sym_BSLASHAcsp] = ACTIONS(6129), - [anon_sym_BSLASHacl] = ACTIONS(6129), - [anon_sym_BSLASHAcl] = ACTIONS(6129), - [anon_sym_BSLASHaclp] = ACTIONS(6129), - [anon_sym_BSLASHAclp] = ACTIONS(6129), - [anon_sym_BSLASHacf] = ACTIONS(6129), - [anon_sym_BSLASHAcf] = ACTIONS(6129), - [anon_sym_BSLASHacfp] = ACTIONS(6129), - [anon_sym_BSLASHAcfp] = ACTIONS(6129), - [anon_sym_BSLASHac] = ACTIONS(6129), - [anon_sym_BSLASHAc] = ACTIONS(6129), - [anon_sym_BSLASHacp] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6129), - [anon_sym_BSLASHcolor] = ACTIONS(6129), - [anon_sym_BSLASHcolorbox] = ACTIONS(6129), - [anon_sym_BSLASHtextcolor] = ACTIONS(6129), - [anon_sym_BSLASHpagecolor] = ACTIONS(6129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6129), - [anon_sym_BSLASHtext] = ACTIONS(6129), - [anon_sym_BSLASHintertext] = ACTIONS(6129), - [anon_sym_shortintertext] = ACTIONS(6129), - }, - [1204] = { - [sym_command_name] = ACTIONS(6133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6133), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_EQ] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_BSLASHpart] = ACTIONS(6133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddpart] = ACTIONS(6133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6135), - [anon_sym_BSLASHchapter] = ACTIONS(6133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddchap] = ACTIONS(6133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsection] = ACTIONS(6133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddsec] = ACTIONS(6133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubsection] = ACTIONS(6133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHparagraph] = ACTIONS(6133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6135), - [anon_sym_BSLASHitem] = ACTIONS(6133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6135), - [anon_sym_LBRACE] = ACTIONS(6135), - [sym_word] = ACTIONS(6133), - [sym_placeholder] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6135), - [anon_sym_DASH] = ACTIONS(6135), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6133), - [anon_sym_GT] = ACTIONS(6133), - [anon_sym_BANG] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6133), - [anon_sym_COLON] = ACTIONS(6133), - [anon_sym_SQUOTE] = ACTIONS(6133), - [anon_sym__] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6135), - [anon_sym_DOLLAR] = ACTIONS(6133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6135), - [anon_sym_BSLASHbegin] = ACTIONS(6133), - [anon_sym_BSLASHend] = ACTIONS(6133), - [anon_sym_BSLASHtitle] = ACTIONS(6133), - [anon_sym_BSLASHauthor] = ACTIONS(6133), - [anon_sym_BSLASHusepackage] = ACTIONS(6133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6133), - [anon_sym_BSLASHinclude] = ACTIONS(6133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6133), - [anon_sym_BSLASHinput] = ACTIONS(6133), - [anon_sym_BSLASHsubfile] = ACTIONS(6133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6133), - [anon_sym_BSLASHbibliography] = ACTIONS(6133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6133), - [anon_sym_BSLASHincludesvg] = ACTIONS(6133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6133), - [anon_sym_BSLASHimport] = ACTIONS(6133), - [anon_sym_BSLASHsubimport] = ACTIONS(6133), - [anon_sym_BSLASHinputfrom] = ACTIONS(6133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6133), - [anon_sym_BSLASHincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHcaption] = ACTIONS(6133), - [anon_sym_BSLASHcite] = ACTIONS(6133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCite] = ACTIONS(6133), - [anon_sym_BSLASHnocite] = ACTIONS(6133), - [anon_sym_BSLASHcitet] = ACTIONS(6133), - [anon_sym_BSLASHcitep] = ACTIONS(6133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteauthor] = ACTIONS(6133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitetitle] = ACTIONS(6133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteyear] = ACTIONS(6133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitedate] = ACTIONS(6133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteurl] = ACTIONS(6133), - [anon_sym_BSLASHfullcite] = ACTIONS(6133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6133), - [anon_sym_BSLASHcitealt] = ACTIONS(6133), - [anon_sym_BSLASHcitealp] = ACTIONS(6133), - [anon_sym_BSLASHcitetext] = ACTIONS(6133), - [anon_sym_BSLASHparencite] = ACTIONS(6133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHParencite] = ACTIONS(6133), - [anon_sym_BSLASHfootcite] = ACTIONS(6133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6133), - [anon_sym_BSLASHtextcite] = ACTIONS(6133), - [anon_sym_BSLASHTextcite] = ACTIONS(6133), - [anon_sym_BSLASHsmartcite] = ACTIONS(6133), - [anon_sym_BSLASHSmartcite] = ACTIONS(6133), - [anon_sym_BSLASHsupercite] = ACTIONS(6133), - [anon_sym_BSLASHautocite] = ACTIONS(6133), - [anon_sym_BSLASHAutocite] = ACTIONS(6133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHvolcite] = ACTIONS(6133), - [anon_sym_BSLASHVolcite] = ACTIONS(6133), - [anon_sym_BSLASHpvolcite] = ACTIONS(6133), - [anon_sym_BSLASHPvolcite] = ACTIONS(6133), - [anon_sym_BSLASHfvolcite] = ACTIONS(6133), - [anon_sym_BSLASHftvolcite] = ACTIONS(6133), - [anon_sym_BSLASHsvolcite] = ACTIONS(6133), - [anon_sym_BSLASHSvolcite] = ACTIONS(6133), - [anon_sym_BSLASHtvolcite] = ACTIONS(6133), - [anon_sym_BSLASHTvolcite] = ACTIONS(6133), - [anon_sym_BSLASHavolcite] = ACTIONS(6133), - [anon_sym_BSLASHAvolcite] = ACTIONS(6133), - [anon_sym_BSLASHnotecite] = ACTIONS(6133), - [anon_sym_BSLASHNotecite] = ACTIONS(6133), - [anon_sym_BSLASHpnotecite] = ACTIONS(6133), - [anon_sym_BSLASHPnotecite] = ACTIONS(6133), - [anon_sym_BSLASHfnotecite] = ACTIONS(6133), - [anon_sym_BSLASHlabel] = ACTIONS(6133), - [anon_sym_BSLASHref] = ACTIONS(6133), - [anon_sym_BSLASHeqref] = ACTIONS(6133), - [anon_sym_BSLASHvref] = ACTIONS(6133), - [anon_sym_BSLASHVref] = ACTIONS(6133), - [anon_sym_BSLASHautoref] = ACTIONS(6133), - [anon_sym_BSLASHpageref] = ACTIONS(6133), - [anon_sym_BSLASHcref] = ACTIONS(6133), - [anon_sym_BSLASHCref] = ACTIONS(6133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnameCref] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHlabelcref] = ACTIONS(6133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCrefrange] = ACTIONS(6133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnewlabel] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6135), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHdef] = ACTIONS(6133), - [anon_sym_BSLASHlet] = ACTIONS(6133), - [anon_sym_BSLASHleft] = ACTIONS(6133), - [anon_sym_BSLASHbig] = ACTIONS(6133), - [anon_sym_BSLASHBig] = ACTIONS(6133), - [anon_sym_BSLASHbigg] = ACTIONS(6133), - [anon_sym_BSLASHBigg] = ACTIONS(6133), - [anon_sym_BSLASHbigl] = ACTIONS(6133), - [anon_sym_BSLASHBigl] = ACTIONS(6133), - [anon_sym_BSLASHbiggl] = ACTIONS(6133), - [anon_sym_BSLASHBiggl] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6133), - [anon_sym_BSLASHgls] = ACTIONS(6133), - [anon_sym_BSLASHGls] = ACTIONS(6133), - [anon_sym_BSLASHGLS] = ACTIONS(6133), - [anon_sym_BSLASHglspl] = ACTIONS(6133), - [anon_sym_BSLASHGlspl] = ACTIONS(6133), - [anon_sym_BSLASHGLSpl] = ACTIONS(6133), - [anon_sym_BSLASHglsdisp] = ACTIONS(6133), - [anon_sym_BSLASHglslink] = ACTIONS(6133), - [anon_sym_BSLASHglstext] = ACTIONS(6133), - [anon_sym_BSLASHGlstext] = ACTIONS(6133), - [anon_sym_BSLASHGLStext] = ACTIONS(6133), - [anon_sym_BSLASHglsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6133), - [anon_sym_BSLASHglsplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSplural] = ACTIONS(6133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHglsname] = ACTIONS(6133), - [anon_sym_BSLASHGlsname] = ACTIONS(6133), - [anon_sym_BSLASHGLSname] = ACTIONS(6133), - [anon_sym_BSLASHglssymbol] = ACTIONS(6133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6133), - [anon_sym_BSLASHglsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6133), - [anon_sym_BSLASHglsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6133), - [anon_sym_BSLASHglsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6133), - [anon_sym_BSLASHglsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6133), - [anon_sym_BSLASHglsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6133), - [anon_sym_BSLASHnewacronym] = ACTIONS(6133), - [anon_sym_BSLASHacrshort] = ACTIONS(6133), - [anon_sym_BSLASHAcrshort] = ACTIONS(6133), - [anon_sym_BSLASHACRshort] = ACTIONS(6133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6133), - [anon_sym_BSLASHacrlong] = ACTIONS(6133), - [anon_sym_BSLASHAcrlong] = ACTIONS(6133), - [anon_sym_BSLASHACRlong] = ACTIONS(6133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6133), - [anon_sym_BSLASHacrfull] = ACTIONS(6133), - [anon_sym_BSLASHAcrfull] = ACTIONS(6133), - [anon_sym_BSLASHACRfull] = ACTIONS(6133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6133), - [anon_sym_BSLASHacs] = ACTIONS(6133), - [anon_sym_BSLASHAcs] = ACTIONS(6133), - [anon_sym_BSLASHacsp] = ACTIONS(6133), - [anon_sym_BSLASHAcsp] = ACTIONS(6133), - [anon_sym_BSLASHacl] = ACTIONS(6133), - [anon_sym_BSLASHAcl] = ACTIONS(6133), - [anon_sym_BSLASHaclp] = ACTIONS(6133), - [anon_sym_BSLASHAclp] = ACTIONS(6133), - [anon_sym_BSLASHacf] = ACTIONS(6133), - [anon_sym_BSLASHAcf] = ACTIONS(6133), - [anon_sym_BSLASHacfp] = ACTIONS(6133), - [anon_sym_BSLASHAcfp] = ACTIONS(6133), - [anon_sym_BSLASHac] = ACTIONS(6133), - [anon_sym_BSLASHAc] = ACTIONS(6133), - [anon_sym_BSLASHacp] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6133), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6133), - [anon_sym_BSLASHcolor] = ACTIONS(6133), - [anon_sym_BSLASHcolorbox] = ACTIONS(6133), - [anon_sym_BSLASHtextcolor] = ACTIONS(6133), - [anon_sym_BSLASHpagecolor] = ACTIONS(6133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6133), - [anon_sym_BSLASHtext] = ACTIONS(6133), - [anon_sym_BSLASHintertext] = ACTIONS(6133), - [anon_sym_shortintertext] = ACTIONS(6133), - }, - [1205] = { - [sym_command_name] = ACTIONS(6529), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6529), - [anon_sym_LBRACK] = ACTIONS(6531), - [anon_sym_RBRACK] = ACTIONS(6531), - [anon_sym_COMMA] = ACTIONS(6531), - [anon_sym_EQ] = ACTIONS(6531), - [anon_sym_LPAREN] = ACTIONS(6531), - [anon_sym_RPAREN] = ACTIONS(6531), - [anon_sym_BSLASHpart] = ACTIONS(6529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddpart] = ACTIONS(6529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6531), - [anon_sym_BSLASHchapter] = ACTIONS(6529), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddchap] = ACTIONS(6529), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsection] = ACTIONS(6529), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddsec] = ACTIONS(6529), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubsection] = ACTIONS(6529), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6529), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHparagraph] = ACTIONS(6529), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6529), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6531), - [anon_sym_BSLASHitem] = ACTIONS(6529), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6531), - [anon_sym_LBRACE] = ACTIONS(6531), - [sym_word] = ACTIONS(6529), - [sym_placeholder] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6531), - [anon_sym_DASH] = ACTIONS(6531), - [anon_sym_STAR] = ACTIONS(6531), - [anon_sym_SLASH] = ACTIONS(6531), - [anon_sym_LT] = ACTIONS(6529), - [anon_sym_GT] = ACTIONS(6529), - [anon_sym_BANG] = ACTIONS(6529), - [anon_sym_PIPE] = ACTIONS(6529), - [anon_sym_COLON] = ACTIONS(6529), - [anon_sym_SQUOTE] = ACTIONS(6529), - [anon_sym__] = ACTIONS(6531), - [anon_sym_CARET] = ACTIONS(6531), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6531), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6531), - [anon_sym_DOLLAR] = ACTIONS(6529), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6531), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6531), - [anon_sym_BSLASHbegin] = ACTIONS(6529), - [anon_sym_BSLASHtitle] = ACTIONS(6529), - [anon_sym_BSLASHauthor] = ACTIONS(6529), - [anon_sym_BSLASHusepackage] = ACTIONS(6529), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6529), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6529), - [anon_sym_BSLASHinclude] = ACTIONS(6529), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6529), - [anon_sym_BSLASHinput] = ACTIONS(6529), - [anon_sym_BSLASHsubfile] = ACTIONS(6529), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6529), - [anon_sym_BSLASHbibliography] = ACTIONS(6529), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6529), - [anon_sym_BSLASHincludesvg] = ACTIONS(6529), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6529), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6529), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6529), - [anon_sym_BSLASHimport] = ACTIONS(6529), - [anon_sym_BSLASHsubimport] = ACTIONS(6529), - [anon_sym_BSLASHinputfrom] = ACTIONS(6529), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6529), - [anon_sym_BSLASHincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHcaption] = ACTIONS(6529), - [anon_sym_BSLASHcite] = ACTIONS(6529), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCite] = ACTIONS(6529), - [anon_sym_BSLASHnocite] = ACTIONS(6529), - [anon_sym_BSLASHcitet] = ACTIONS(6529), - [anon_sym_BSLASHcitep] = ACTIONS(6529), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteauthor] = ACTIONS(6529), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6529), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitetitle] = ACTIONS(6529), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteyear] = ACTIONS(6529), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitedate] = ACTIONS(6529), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteurl] = ACTIONS(6529), - [anon_sym_BSLASHfullcite] = ACTIONS(6529), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6529), - [anon_sym_BSLASHcitealt] = ACTIONS(6529), - [anon_sym_BSLASHcitealp] = ACTIONS(6529), - [anon_sym_BSLASHcitetext] = ACTIONS(6529), - [anon_sym_BSLASHparencite] = ACTIONS(6529), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHParencite] = ACTIONS(6529), - [anon_sym_BSLASHfootcite] = ACTIONS(6529), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6529), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6529), - [anon_sym_BSLASHtextcite] = ACTIONS(6529), - [anon_sym_BSLASHTextcite] = ACTIONS(6529), - [anon_sym_BSLASHsmartcite] = ACTIONS(6529), - [anon_sym_BSLASHSmartcite] = ACTIONS(6529), - [anon_sym_BSLASHsupercite] = ACTIONS(6529), - [anon_sym_BSLASHautocite] = ACTIONS(6529), - [anon_sym_BSLASHAutocite] = ACTIONS(6529), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHvolcite] = ACTIONS(6529), - [anon_sym_BSLASHVolcite] = ACTIONS(6529), - [anon_sym_BSLASHpvolcite] = ACTIONS(6529), - [anon_sym_BSLASHPvolcite] = ACTIONS(6529), - [anon_sym_BSLASHfvolcite] = ACTIONS(6529), - [anon_sym_BSLASHftvolcite] = ACTIONS(6529), - [anon_sym_BSLASHsvolcite] = ACTIONS(6529), - [anon_sym_BSLASHSvolcite] = ACTIONS(6529), - [anon_sym_BSLASHtvolcite] = ACTIONS(6529), - [anon_sym_BSLASHTvolcite] = ACTIONS(6529), - [anon_sym_BSLASHavolcite] = ACTIONS(6529), - [anon_sym_BSLASHAvolcite] = ACTIONS(6529), - [anon_sym_BSLASHnotecite] = ACTIONS(6529), - [anon_sym_BSLASHNotecite] = ACTIONS(6529), - [anon_sym_BSLASHpnotecite] = ACTIONS(6529), - [anon_sym_BSLASHPnotecite] = ACTIONS(6529), - [anon_sym_BSLASHfnotecite] = ACTIONS(6529), - [anon_sym_BSLASHlabel] = ACTIONS(6529), - [anon_sym_BSLASHref] = ACTIONS(6529), - [anon_sym_BSLASHeqref] = ACTIONS(6529), - [anon_sym_BSLASHvref] = ACTIONS(6529), - [anon_sym_BSLASHVref] = ACTIONS(6529), - [anon_sym_BSLASHautoref] = ACTIONS(6529), - [anon_sym_BSLASHpageref] = ACTIONS(6529), - [anon_sym_BSLASHcref] = ACTIONS(6529), - [anon_sym_BSLASHCref] = ACTIONS(6529), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnameCref] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHlabelcref] = ACTIONS(6529), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCrefrange] = ACTIONS(6529), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnewlabel] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6529), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6529), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6531), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHdef] = ACTIONS(6529), - [anon_sym_BSLASHlet] = ACTIONS(6529), - [anon_sym_BSLASHleft] = ACTIONS(6529), - [anon_sym_BSLASHbig] = ACTIONS(6529), - [anon_sym_BSLASHBig] = ACTIONS(6529), - [anon_sym_BSLASHbigg] = ACTIONS(6529), - [anon_sym_BSLASHBigg] = ACTIONS(6529), - [anon_sym_BSLASHbigl] = ACTIONS(6529), - [anon_sym_BSLASHBigl] = ACTIONS(6529), - [anon_sym_BSLASHbiggl] = ACTIONS(6529), - [anon_sym_BSLASHBiggl] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6529), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6529), - [anon_sym_BSLASHgls] = ACTIONS(6529), - [anon_sym_BSLASHGls] = ACTIONS(6529), - [anon_sym_BSLASHGLS] = ACTIONS(6529), - [anon_sym_BSLASHglspl] = ACTIONS(6529), - [anon_sym_BSLASHGlspl] = ACTIONS(6529), - [anon_sym_BSLASHGLSpl] = ACTIONS(6529), - [anon_sym_BSLASHglsdisp] = ACTIONS(6529), - [anon_sym_BSLASHglslink] = ACTIONS(6529), - [anon_sym_BSLASHglstext] = ACTIONS(6529), - [anon_sym_BSLASHGlstext] = ACTIONS(6529), - [anon_sym_BSLASHGLStext] = ACTIONS(6529), - [anon_sym_BSLASHglsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6529), - [anon_sym_BSLASHglsplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSplural] = ACTIONS(6529), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHglsname] = ACTIONS(6529), - [anon_sym_BSLASHGlsname] = ACTIONS(6529), - [anon_sym_BSLASHGLSname] = ACTIONS(6529), - [anon_sym_BSLASHglssymbol] = ACTIONS(6529), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6529), - [anon_sym_BSLASHglsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6529), - [anon_sym_BSLASHglsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6529), - [anon_sym_BSLASHglsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6529), - [anon_sym_BSLASHglsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6529), - [anon_sym_BSLASHglsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6529), - [anon_sym_BSLASHnewacronym] = ACTIONS(6529), - [anon_sym_BSLASHacrshort] = ACTIONS(6529), - [anon_sym_BSLASHAcrshort] = ACTIONS(6529), - [anon_sym_BSLASHACRshort] = ACTIONS(6529), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6529), - [anon_sym_BSLASHacrlong] = ACTIONS(6529), - [anon_sym_BSLASHAcrlong] = ACTIONS(6529), - [anon_sym_BSLASHACRlong] = ACTIONS(6529), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6529), - [anon_sym_BSLASHacrfull] = ACTIONS(6529), - [anon_sym_BSLASHAcrfull] = ACTIONS(6529), - [anon_sym_BSLASHACRfull] = ACTIONS(6529), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6529), - [anon_sym_BSLASHacs] = ACTIONS(6529), - [anon_sym_BSLASHAcs] = ACTIONS(6529), - [anon_sym_BSLASHacsp] = ACTIONS(6529), - [anon_sym_BSLASHAcsp] = ACTIONS(6529), - [anon_sym_BSLASHacl] = ACTIONS(6529), - [anon_sym_BSLASHAcl] = ACTIONS(6529), - [anon_sym_BSLASHaclp] = ACTIONS(6529), - [anon_sym_BSLASHAclp] = ACTIONS(6529), - [anon_sym_BSLASHacf] = ACTIONS(6529), - [anon_sym_BSLASHAcf] = ACTIONS(6529), - [anon_sym_BSLASHacfp] = ACTIONS(6529), - [anon_sym_BSLASHAcfp] = ACTIONS(6529), - [anon_sym_BSLASHac] = ACTIONS(6529), - [anon_sym_BSLASHAc] = ACTIONS(6529), - [anon_sym_BSLASHacp] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6529), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6529), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6529), - [anon_sym_BSLASHcolor] = ACTIONS(6529), - [anon_sym_BSLASHcolorbox] = ACTIONS(6529), - [anon_sym_BSLASHtextcolor] = ACTIONS(6529), - [anon_sym_BSLASHpagecolor] = ACTIONS(6529), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6529), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6529), - [anon_sym_BSLASHtext] = ACTIONS(6529), - [anon_sym_BSLASHintertext] = ACTIONS(6529), - [anon_sym_shortintertext] = ACTIONS(6529), - }, - [1206] = { - [sym_command_name] = ACTIONS(6525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6527), - [anon_sym_LPAREN] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_BSLASHpart] = ACTIONS(6525), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddpart] = ACTIONS(6525), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6527), - [anon_sym_BSLASHchapter] = ACTIONS(6525), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddchap] = ACTIONS(6525), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsection] = ACTIONS(6525), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddsec] = ACTIONS(6525), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubsection] = ACTIONS(6525), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6525), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHparagraph] = ACTIONS(6525), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6525), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6527), - [anon_sym_BSLASHitem] = ACTIONS(6525), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6527), - [anon_sym_LBRACE] = ACTIONS(6527), - [sym_word] = ACTIONS(6525), - [sym_placeholder] = ACTIONS(6527), - [anon_sym_PLUS] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6527), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6527), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_BANG] = ACTIONS(6525), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_SQUOTE] = ACTIONS(6525), - [anon_sym__] = ACTIONS(6527), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6527), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6527), - [anon_sym_DOLLAR] = ACTIONS(6525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6527), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6527), - [anon_sym_BSLASHbegin] = ACTIONS(6525), - [anon_sym_BSLASHtitle] = ACTIONS(6525), - [anon_sym_BSLASHauthor] = ACTIONS(6525), - [anon_sym_BSLASHusepackage] = ACTIONS(6525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6525), - [anon_sym_BSLASHinclude] = ACTIONS(6525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6525), - [anon_sym_BSLASHinput] = ACTIONS(6525), - [anon_sym_BSLASHsubfile] = ACTIONS(6525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6525), - [anon_sym_BSLASHbibliography] = ACTIONS(6525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6525), - [anon_sym_BSLASHincludesvg] = ACTIONS(6525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6525), - [anon_sym_BSLASHimport] = ACTIONS(6525), - [anon_sym_BSLASHsubimport] = ACTIONS(6525), - [anon_sym_BSLASHinputfrom] = ACTIONS(6525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6525), - [anon_sym_BSLASHincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHcaption] = ACTIONS(6525), - [anon_sym_BSLASHcite] = ACTIONS(6525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCite] = ACTIONS(6525), - [anon_sym_BSLASHnocite] = ACTIONS(6525), - [anon_sym_BSLASHcitet] = ACTIONS(6525), - [anon_sym_BSLASHcitep] = ACTIONS(6525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteauthor] = ACTIONS(6525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitetitle] = ACTIONS(6525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteyear] = ACTIONS(6525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitedate] = ACTIONS(6525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteurl] = ACTIONS(6525), - [anon_sym_BSLASHfullcite] = ACTIONS(6525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6525), - [anon_sym_BSLASHcitealt] = ACTIONS(6525), - [anon_sym_BSLASHcitealp] = ACTIONS(6525), - [anon_sym_BSLASHcitetext] = ACTIONS(6525), - [anon_sym_BSLASHparencite] = ACTIONS(6525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHParencite] = ACTIONS(6525), - [anon_sym_BSLASHfootcite] = ACTIONS(6525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6525), - [anon_sym_BSLASHtextcite] = ACTIONS(6525), - [anon_sym_BSLASHTextcite] = ACTIONS(6525), - [anon_sym_BSLASHsmartcite] = ACTIONS(6525), - [anon_sym_BSLASHSmartcite] = ACTIONS(6525), - [anon_sym_BSLASHsupercite] = ACTIONS(6525), - [anon_sym_BSLASHautocite] = ACTIONS(6525), - [anon_sym_BSLASHAutocite] = ACTIONS(6525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHvolcite] = ACTIONS(6525), - [anon_sym_BSLASHVolcite] = ACTIONS(6525), - [anon_sym_BSLASHpvolcite] = ACTIONS(6525), - [anon_sym_BSLASHPvolcite] = ACTIONS(6525), - [anon_sym_BSLASHfvolcite] = ACTIONS(6525), - [anon_sym_BSLASHftvolcite] = ACTIONS(6525), - [anon_sym_BSLASHsvolcite] = ACTIONS(6525), - [anon_sym_BSLASHSvolcite] = ACTIONS(6525), - [anon_sym_BSLASHtvolcite] = ACTIONS(6525), - [anon_sym_BSLASHTvolcite] = ACTIONS(6525), - [anon_sym_BSLASHavolcite] = ACTIONS(6525), - [anon_sym_BSLASHAvolcite] = ACTIONS(6525), - [anon_sym_BSLASHnotecite] = ACTIONS(6525), - [anon_sym_BSLASHNotecite] = ACTIONS(6525), - [anon_sym_BSLASHpnotecite] = ACTIONS(6525), - [anon_sym_BSLASHPnotecite] = ACTIONS(6525), - [anon_sym_BSLASHfnotecite] = ACTIONS(6525), - [anon_sym_BSLASHlabel] = ACTIONS(6525), - [anon_sym_BSLASHref] = ACTIONS(6525), - [anon_sym_BSLASHeqref] = ACTIONS(6525), - [anon_sym_BSLASHvref] = ACTIONS(6525), - [anon_sym_BSLASHVref] = ACTIONS(6525), - [anon_sym_BSLASHautoref] = ACTIONS(6525), - [anon_sym_BSLASHpageref] = ACTIONS(6525), - [anon_sym_BSLASHcref] = ACTIONS(6525), - [anon_sym_BSLASHCref] = ACTIONS(6525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnameCref] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHlabelcref] = ACTIONS(6525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCrefrange] = ACTIONS(6525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnewlabel] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6527), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHdef] = ACTIONS(6525), - [anon_sym_BSLASHlet] = ACTIONS(6525), - [anon_sym_BSLASHleft] = ACTIONS(6525), - [anon_sym_BSLASHbig] = ACTIONS(6525), - [anon_sym_BSLASHBig] = ACTIONS(6525), - [anon_sym_BSLASHbigg] = ACTIONS(6525), - [anon_sym_BSLASHBigg] = ACTIONS(6525), - [anon_sym_BSLASHbigl] = ACTIONS(6525), - [anon_sym_BSLASHBigl] = ACTIONS(6525), - [anon_sym_BSLASHbiggl] = ACTIONS(6525), - [anon_sym_BSLASHBiggl] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6525), - [anon_sym_BSLASHgls] = ACTIONS(6525), - [anon_sym_BSLASHGls] = ACTIONS(6525), - [anon_sym_BSLASHGLS] = ACTIONS(6525), - [anon_sym_BSLASHglspl] = ACTIONS(6525), - [anon_sym_BSLASHGlspl] = ACTIONS(6525), - [anon_sym_BSLASHGLSpl] = ACTIONS(6525), - [anon_sym_BSLASHglsdisp] = ACTIONS(6525), - [anon_sym_BSLASHglslink] = ACTIONS(6525), - [anon_sym_BSLASHglstext] = ACTIONS(6525), - [anon_sym_BSLASHGlstext] = ACTIONS(6525), - [anon_sym_BSLASHGLStext] = ACTIONS(6525), - [anon_sym_BSLASHglsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6525), - [anon_sym_BSLASHglsplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSplural] = ACTIONS(6525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHglsname] = ACTIONS(6525), - [anon_sym_BSLASHGlsname] = ACTIONS(6525), - [anon_sym_BSLASHGLSname] = ACTIONS(6525), - [anon_sym_BSLASHglssymbol] = ACTIONS(6525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6525), - [anon_sym_BSLASHglsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6525), - [anon_sym_BSLASHglsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6525), - [anon_sym_BSLASHglsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6525), - [anon_sym_BSLASHglsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6525), - [anon_sym_BSLASHglsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6525), - [anon_sym_BSLASHnewacronym] = ACTIONS(6525), - [anon_sym_BSLASHacrshort] = ACTIONS(6525), - [anon_sym_BSLASHAcrshort] = ACTIONS(6525), - [anon_sym_BSLASHACRshort] = ACTIONS(6525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6525), - [anon_sym_BSLASHacrlong] = ACTIONS(6525), - [anon_sym_BSLASHAcrlong] = ACTIONS(6525), - [anon_sym_BSLASHACRlong] = ACTIONS(6525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6525), - [anon_sym_BSLASHacrfull] = ACTIONS(6525), - [anon_sym_BSLASHAcrfull] = ACTIONS(6525), - [anon_sym_BSLASHACRfull] = ACTIONS(6525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6525), - [anon_sym_BSLASHacs] = ACTIONS(6525), - [anon_sym_BSLASHAcs] = ACTIONS(6525), - [anon_sym_BSLASHacsp] = ACTIONS(6525), - [anon_sym_BSLASHAcsp] = ACTIONS(6525), - [anon_sym_BSLASHacl] = ACTIONS(6525), - [anon_sym_BSLASHAcl] = ACTIONS(6525), - [anon_sym_BSLASHaclp] = ACTIONS(6525), - [anon_sym_BSLASHAclp] = ACTIONS(6525), - [anon_sym_BSLASHacf] = ACTIONS(6525), - [anon_sym_BSLASHAcf] = ACTIONS(6525), - [anon_sym_BSLASHacfp] = ACTIONS(6525), - [anon_sym_BSLASHAcfp] = ACTIONS(6525), - [anon_sym_BSLASHac] = ACTIONS(6525), - [anon_sym_BSLASHAc] = ACTIONS(6525), - [anon_sym_BSLASHacp] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6525), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6525), - [anon_sym_BSLASHcolor] = ACTIONS(6525), - [anon_sym_BSLASHcolorbox] = ACTIONS(6525), - [anon_sym_BSLASHtextcolor] = ACTIONS(6525), - [anon_sym_BSLASHpagecolor] = ACTIONS(6525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6525), - [anon_sym_BSLASHtext] = ACTIONS(6525), - [anon_sym_BSLASHintertext] = ACTIONS(6525), - [anon_sym_shortintertext] = ACTIONS(6525), - }, - [1207] = { - [sym_command_name] = ACTIONS(6521), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6521), - [anon_sym_LBRACK] = ACTIONS(6523), - [anon_sym_RBRACK] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_EQ] = ACTIONS(6523), - [anon_sym_LPAREN] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_BSLASHpart] = ACTIONS(6521), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddpart] = ACTIONS(6521), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6523), - [anon_sym_BSLASHchapter] = ACTIONS(6521), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddchap] = ACTIONS(6521), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsection] = ACTIONS(6521), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddsec] = ACTIONS(6521), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubsection] = ACTIONS(6521), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6521), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHparagraph] = ACTIONS(6521), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6521), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6523), - [anon_sym_BSLASHitem] = ACTIONS(6521), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6523), - [anon_sym_LBRACE] = ACTIONS(6523), - [sym_word] = ACTIONS(6521), - [sym_placeholder] = ACTIONS(6523), - [anon_sym_PLUS] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6523), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_BANG] = ACTIONS(6521), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6521), - [anon_sym_SQUOTE] = ACTIONS(6521), - [anon_sym__] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6523), - [anon_sym_DOLLAR] = ACTIONS(6521), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6523), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6523), - [anon_sym_BSLASHbegin] = ACTIONS(6521), - [anon_sym_BSLASHtitle] = ACTIONS(6521), - [anon_sym_BSLASHauthor] = ACTIONS(6521), - [anon_sym_BSLASHusepackage] = ACTIONS(6521), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6521), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6521), - [anon_sym_BSLASHinclude] = ACTIONS(6521), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6521), - [anon_sym_BSLASHinput] = ACTIONS(6521), - [anon_sym_BSLASHsubfile] = ACTIONS(6521), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6521), - [anon_sym_BSLASHbibliography] = ACTIONS(6521), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6521), - [anon_sym_BSLASHincludesvg] = ACTIONS(6521), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6521), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6521), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6521), - [anon_sym_BSLASHimport] = ACTIONS(6521), - [anon_sym_BSLASHsubimport] = ACTIONS(6521), - [anon_sym_BSLASHinputfrom] = ACTIONS(6521), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6521), - [anon_sym_BSLASHincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHcaption] = ACTIONS(6521), - [anon_sym_BSLASHcite] = ACTIONS(6521), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCite] = ACTIONS(6521), - [anon_sym_BSLASHnocite] = ACTIONS(6521), - [anon_sym_BSLASHcitet] = ACTIONS(6521), - [anon_sym_BSLASHcitep] = ACTIONS(6521), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteauthor] = ACTIONS(6521), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6521), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitetitle] = ACTIONS(6521), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteyear] = ACTIONS(6521), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitedate] = ACTIONS(6521), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteurl] = ACTIONS(6521), - [anon_sym_BSLASHfullcite] = ACTIONS(6521), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6521), - [anon_sym_BSLASHcitealt] = ACTIONS(6521), - [anon_sym_BSLASHcitealp] = ACTIONS(6521), - [anon_sym_BSLASHcitetext] = ACTIONS(6521), - [anon_sym_BSLASHparencite] = ACTIONS(6521), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHParencite] = ACTIONS(6521), - [anon_sym_BSLASHfootcite] = ACTIONS(6521), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6521), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6521), - [anon_sym_BSLASHtextcite] = ACTIONS(6521), - [anon_sym_BSLASHTextcite] = ACTIONS(6521), - [anon_sym_BSLASHsmartcite] = ACTIONS(6521), - [anon_sym_BSLASHSmartcite] = ACTIONS(6521), - [anon_sym_BSLASHsupercite] = ACTIONS(6521), - [anon_sym_BSLASHautocite] = ACTIONS(6521), - [anon_sym_BSLASHAutocite] = ACTIONS(6521), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHvolcite] = ACTIONS(6521), - [anon_sym_BSLASHVolcite] = ACTIONS(6521), - [anon_sym_BSLASHpvolcite] = ACTIONS(6521), - [anon_sym_BSLASHPvolcite] = ACTIONS(6521), - [anon_sym_BSLASHfvolcite] = ACTIONS(6521), - [anon_sym_BSLASHftvolcite] = ACTIONS(6521), - [anon_sym_BSLASHsvolcite] = ACTIONS(6521), - [anon_sym_BSLASHSvolcite] = ACTIONS(6521), - [anon_sym_BSLASHtvolcite] = ACTIONS(6521), - [anon_sym_BSLASHTvolcite] = ACTIONS(6521), - [anon_sym_BSLASHavolcite] = ACTIONS(6521), - [anon_sym_BSLASHAvolcite] = ACTIONS(6521), - [anon_sym_BSLASHnotecite] = ACTIONS(6521), - [anon_sym_BSLASHNotecite] = ACTIONS(6521), - [anon_sym_BSLASHpnotecite] = ACTIONS(6521), - [anon_sym_BSLASHPnotecite] = ACTIONS(6521), - [anon_sym_BSLASHfnotecite] = ACTIONS(6521), - [anon_sym_BSLASHlabel] = ACTIONS(6521), - [anon_sym_BSLASHref] = ACTIONS(6521), - [anon_sym_BSLASHeqref] = ACTIONS(6521), - [anon_sym_BSLASHvref] = ACTIONS(6521), - [anon_sym_BSLASHVref] = ACTIONS(6521), - [anon_sym_BSLASHautoref] = ACTIONS(6521), - [anon_sym_BSLASHpageref] = ACTIONS(6521), - [anon_sym_BSLASHcref] = ACTIONS(6521), - [anon_sym_BSLASHCref] = ACTIONS(6521), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnameCref] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHlabelcref] = ACTIONS(6521), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCrefrange] = ACTIONS(6521), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnewlabel] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6521), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6521), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6523), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHdef] = ACTIONS(6521), - [anon_sym_BSLASHlet] = ACTIONS(6521), - [anon_sym_BSLASHleft] = ACTIONS(6521), - [anon_sym_BSLASHbig] = ACTIONS(6521), - [anon_sym_BSLASHBig] = ACTIONS(6521), - [anon_sym_BSLASHbigg] = ACTIONS(6521), - [anon_sym_BSLASHBigg] = ACTIONS(6521), - [anon_sym_BSLASHbigl] = ACTIONS(6521), - [anon_sym_BSLASHBigl] = ACTIONS(6521), - [anon_sym_BSLASHbiggl] = ACTIONS(6521), - [anon_sym_BSLASHBiggl] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6521), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6521), - [anon_sym_BSLASHgls] = ACTIONS(6521), - [anon_sym_BSLASHGls] = ACTIONS(6521), - [anon_sym_BSLASHGLS] = ACTIONS(6521), - [anon_sym_BSLASHglspl] = ACTIONS(6521), - [anon_sym_BSLASHGlspl] = ACTIONS(6521), - [anon_sym_BSLASHGLSpl] = ACTIONS(6521), - [anon_sym_BSLASHglsdisp] = ACTIONS(6521), - [anon_sym_BSLASHglslink] = ACTIONS(6521), - [anon_sym_BSLASHglstext] = ACTIONS(6521), - [anon_sym_BSLASHGlstext] = ACTIONS(6521), - [anon_sym_BSLASHGLStext] = ACTIONS(6521), - [anon_sym_BSLASHglsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6521), - [anon_sym_BSLASHglsplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSplural] = ACTIONS(6521), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHglsname] = ACTIONS(6521), - [anon_sym_BSLASHGlsname] = ACTIONS(6521), - [anon_sym_BSLASHGLSname] = ACTIONS(6521), - [anon_sym_BSLASHglssymbol] = ACTIONS(6521), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6521), - [anon_sym_BSLASHglsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6521), - [anon_sym_BSLASHglsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6521), - [anon_sym_BSLASHglsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6521), - [anon_sym_BSLASHglsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6521), - [anon_sym_BSLASHglsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6521), - [anon_sym_BSLASHnewacronym] = ACTIONS(6521), - [anon_sym_BSLASHacrshort] = ACTIONS(6521), - [anon_sym_BSLASHAcrshort] = ACTIONS(6521), - [anon_sym_BSLASHACRshort] = ACTIONS(6521), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6521), - [anon_sym_BSLASHacrlong] = ACTIONS(6521), - [anon_sym_BSLASHAcrlong] = ACTIONS(6521), - [anon_sym_BSLASHACRlong] = ACTIONS(6521), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6521), - [anon_sym_BSLASHacrfull] = ACTIONS(6521), - [anon_sym_BSLASHAcrfull] = ACTIONS(6521), - [anon_sym_BSLASHACRfull] = ACTIONS(6521), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6521), - [anon_sym_BSLASHacs] = ACTIONS(6521), - [anon_sym_BSLASHAcs] = ACTIONS(6521), - [anon_sym_BSLASHacsp] = ACTIONS(6521), - [anon_sym_BSLASHAcsp] = ACTIONS(6521), - [anon_sym_BSLASHacl] = ACTIONS(6521), - [anon_sym_BSLASHAcl] = ACTIONS(6521), - [anon_sym_BSLASHaclp] = ACTIONS(6521), - [anon_sym_BSLASHAclp] = ACTIONS(6521), - [anon_sym_BSLASHacf] = ACTIONS(6521), - [anon_sym_BSLASHAcf] = ACTIONS(6521), - [anon_sym_BSLASHacfp] = ACTIONS(6521), - [anon_sym_BSLASHAcfp] = ACTIONS(6521), - [anon_sym_BSLASHac] = ACTIONS(6521), - [anon_sym_BSLASHAc] = ACTIONS(6521), - [anon_sym_BSLASHacp] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6521), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6521), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6521), - [anon_sym_BSLASHcolor] = ACTIONS(6521), - [anon_sym_BSLASHcolorbox] = ACTIONS(6521), - [anon_sym_BSLASHtextcolor] = ACTIONS(6521), - [anon_sym_BSLASHpagecolor] = ACTIONS(6521), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6521), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6521), - [anon_sym_BSLASHtext] = ACTIONS(6521), - [anon_sym_BSLASHintertext] = ACTIONS(6521), - [anon_sym_shortintertext] = ACTIONS(6521), - }, - [1208] = { - [sym_command_name] = ACTIONS(6421), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6421), - [anon_sym_LBRACK] = ACTIONS(6423), - [anon_sym_RBRACK] = ACTIONS(6423), - [anon_sym_COMMA] = ACTIONS(6423), - [anon_sym_EQ] = ACTIONS(6423), - [anon_sym_LPAREN] = ACTIONS(6423), - [anon_sym_RPAREN] = ACTIONS(6423), - [anon_sym_BSLASHpart] = ACTIONS(6421), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddpart] = ACTIONS(6421), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6423), - [anon_sym_BSLASHchapter] = ACTIONS(6421), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddchap] = ACTIONS(6421), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsection] = ACTIONS(6421), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddsec] = ACTIONS(6421), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubsection] = ACTIONS(6421), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6421), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHparagraph] = ACTIONS(6421), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6421), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6423), - [anon_sym_BSLASHitem] = ACTIONS(6421), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6423), - [anon_sym_LBRACE] = ACTIONS(6423), - [sym_word] = ACTIONS(6421), - [sym_placeholder] = ACTIONS(6423), - [anon_sym_PLUS] = ACTIONS(6423), - [anon_sym_DASH] = ACTIONS(6423), - [anon_sym_STAR] = ACTIONS(6423), - [anon_sym_SLASH] = ACTIONS(6423), - [anon_sym_LT] = ACTIONS(6421), - [anon_sym_GT] = ACTIONS(6421), - [anon_sym_BANG] = ACTIONS(6421), - [anon_sym_PIPE] = ACTIONS(6421), - [anon_sym_COLON] = ACTIONS(6421), - [anon_sym_SQUOTE] = ACTIONS(6421), - [anon_sym__] = ACTIONS(6423), - [anon_sym_CARET] = ACTIONS(6423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6423), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6423), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6423), - [anon_sym_DOLLAR] = ACTIONS(6421), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6423), - [anon_sym_BSLASHbegin] = ACTIONS(6421), - [anon_sym_BSLASHtitle] = ACTIONS(6421), - [anon_sym_BSLASHauthor] = ACTIONS(6421), - [anon_sym_BSLASHusepackage] = ACTIONS(6421), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6421), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6421), - [anon_sym_BSLASHinclude] = ACTIONS(6421), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6421), - [anon_sym_BSLASHinput] = ACTIONS(6421), - [anon_sym_BSLASHsubfile] = ACTIONS(6421), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6421), - [anon_sym_BSLASHbibliography] = ACTIONS(6421), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6421), - [anon_sym_BSLASHincludesvg] = ACTIONS(6421), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6421), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6421), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6421), - [anon_sym_BSLASHimport] = ACTIONS(6421), - [anon_sym_BSLASHsubimport] = ACTIONS(6421), - [anon_sym_BSLASHinputfrom] = ACTIONS(6421), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6421), - [anon_sym_BSLASHincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHcaption] = ACTIONS(6421), - [anon_sym_BSLASHcite] = ACTIONS(6421), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCite] = ACTIONS(6421), - [anon_sym_BSLASHnocite] = ACTIONS(6421), - [anon_sym_BSLASHcitet] = ACTIONS(6421), - [anon_sym_BSLASHcitep] = ACTIONS(6421), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteauthor] = ACTIONS(6421), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6421), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitetitle] = ACTIONS(6421), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteyear] = ACTIONS(6421), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitedate] = ACTIONS(6421), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteurl] = ACTIONS(6421), - [anon_sym_BSLASHfullcite] = ACTIONS(6421), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6421), - [anon_sym_BSLASHcitealt] = ACTIONS(6421), - [anon_sym_BSLASHcitealp] = ACTIONS(6421), - [anon_sym_BSLASHcitetext] = ACTIONS(6421), - [anon_sym_BSLASHparencite] = ACTIONS(6421), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHParencite] = ACTIONS(6421), - [anon_sym_BSLASHfootcite] = ACTIONS(6421), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6421), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6421), - [anon_sym_BSLASHtextcite] = ACTIONS(6421), - [anon_sym_BSLASHTextcite] = ACTIONS(6421), - [anon_sym_BSLASHsmartcite] = ACTIONS(6421), - [anon_sym_BSLASHSmartcite] = ACTIONS(6421), - [anon_sym_BSLASHsupercite] = ACTIONS(6421), - [anon_sym_BSLASHautocite] = ACTIONS(6421), - [anon_sym_BSLASHAutocite] = ACTIONS(6421), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHvolcite] = ACTIONS(6421), - [anon_sym_BSLASHVolcite] = ACTIONS(6421), - [anon_sym_BSLASHpvolcite] = ACTIONS(6421), - [anon_sym_BSLASHPvolcite] = ACTIONS(6421), - [anon_sym_BSLASHfvolcite] = ACTIONS(6421), - [anon_sym_BSLASHftvolcite] = ACTIONS(6421), - [anon_sym_BSLASHsvolcite] = ACTIONS(6421), - [anon_sym_BSLASHSvolcite] = ACTIONS(6421), - [anon_sym_BSLASHtvolcite] = ACTIONS(6421), - [anon_sym_BSLASHTvolcite] = ACTIONS(6421), - [anon_sym_BSLASHavolcite] = ACTIONS(6421), - [anon_sym_BSLASHAvolcite] = ACTIONS(6421), - [anon_sym_BSLASHnotecite] = ACTIONS(6421), - [anon_sym_BSLASHNotecite] = ACTIONS(6421), - [anon_sym_BSLASHpnotecite] = ACTIONS(6421), - [anon_sym_BSLASHPnotecite] = ACTIONS(6421), - [anon_sym_BSLASHfnotecite] = ACTIONS(6421), - [anon_sym_BSLASHlabel] = ACTIONS(6421), - [anon_sym_BSLASHref] = ACTIONS(6421), - [anon_sym_BSLASHeqref] = ACTIONS(6421), - [anon_sym_BSLASHvref] = ACTIONS(6421), - [anon_sym_BSLASHVref] = ACTIONS(6421), - [anon_sym_BSLASHautoref] = ACTIONS(6421), - [anon_sym_BSLASHpageref] = ACTIONS(6421), - [anon_sym_BSLASHcref] = ACTIONS(6421), - [anon_sym_BSLASHCref] = ACTIONS(6421), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnameCref] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHlabelcref] = ACTIONS(6421), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCrefrange] = ACTIONS(6421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnewlabel] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6421), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6421), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6423), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHdef] = ACTIONS(6421), - [anon_sym_BSLASHlet] = ACTIONS(6421), - [anon_sym_BSLASHleft] = ACTIONS(6421), - [anon_sym_BSLASHbig] = ACTIONS(6421), - [anon_sym_BSLASHBig] = ACTIONS(6421), - [anon_sym_BSLASHbigg] = ACTIONS(6421), - [anon_sym_BSLASHBigg] = ACTIONS(6421), - [anon_sym_BSLASHbigl] = ACTIONS(6421), - [anon_sym_BSLASHBigl] = ACTIONS(6421), - [anon_sym_BSLASHbiggl] = ACTIONS(6421), - [anon_sym_BSLASHBiggl] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6421), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6421), - [anon_sym_BSLASHgls] = ACTIONS(6421), - [anon_sym_BSLASHGls] = ACTIONS(6421), - [anon_sym_BSLASHGLS] = ACTIONS(6421), - [anon_sym_BSLASHglspl] = ACTIONS(6421), - [anon_sym_BSLASHGlspl] = ACTIONS(6421), - [anon_sym_BSLASHGLSpl] = ACTIONS(6421), - [anon_sym_BSLASHglsdisp] = ACTIONS(6421), - [anon_sym_BSLASHglslink] = ACTIONS(6421), - [anon_sym_BSLASHglstext] = ACTIONS(6421), - [anon_sym_BSLASHGlstext] = ACTIONS(6421), - [anon_sym_BSLASHGLStext] = ACTIONS(6421), - [anon_sym_BSLASHglsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6421), - [anon_sym_BSLASHglsplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSplural] = ACTIONS(6421), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHglsname] = ACTIONS(6421), - [anon_sym_BSLASHGlsname] = ACTIONS(6421), - [anon_sym_BSLASHGLSname] = ACTIONS(6421), - [anon_sym_BSLASHglssymbol] = ACTIONS(6421), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6421), - [anon_sym_BSLASHglsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6421), - [anon_sym_BSLASHglsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6421), - [anon_sym_BSLASHglsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6421), - [anon_sym_BSLASHglsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6421), - [anon_sym_BSLASHglsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6421), - [anon_sym_BSLASHnewacronym] = ACTIONS(6421), - [anon_sym_BSLASHacrshort] = ACTIONS(6421), - [anon_sym_BSLASHAcrshort] = ACTIONS(6421), - [anon_sym_BSLASHACRshort] = ACTIONS(6421), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6421), - [anon_sym_BSLASHacrlong] = ACTIONS(6421), - [anon_sym_BSLASHAcrlong] = ACTIONS(6421), - [anon_sym_BSLASHACRlong] = ACTIONS(6421), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6421), - [anon_sym_BSLASHacrfull] = ACTIONS(6421), - [anon_sym_BSLASHAcrfull] = ACTIONS(6421), - [anon_sym_BSLASHACRfull] = ACTIONS(6421), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6421), - [anon_sym_BSLASHacs] = ACTIONS(6421), - [anon_sym_BSLASHAcs] = ACTIONS(6421), - [anon_sym_BSLASHacsp] = ACTIONS(6421), - [anon_sym_BSLASHAcsp] = ACTIONS(6421), - [anon_sym_BSLASHacl] = ACTIONS(6421), - [anon_sym_BSLASHAcl] = ACTIONS(6421), - [anon_sym_BSLASHaclp] = ACTIONS(6421), - [anon_sym_BSLASHAclp] = ACTIONS(6421), - [anon_sym_BSLASHacf] = ACTIONS(6421), - [anon_sym_BSLASHAcf] = ACTIONS(6421), - [anon_sym_BSLASHacfp] = ACTIONS(6421), - [anon_sym_BSLASHAcfp] = ACTIONS(6421), - [anon_sym_BSLASHac] = ACTIONS(6421), - [anon_sym_BSLASHAc] = ACTIONS(6421), - [anon_sym_BSLASHacp] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6421), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6421), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6421), - [anon_sym_BSLASHcolor] = ACTIONS(6421), - [anon_sym_BSLASHcolorbox] = ACTIONS(6421), - [anon_sym_BSLASHtextcolor] = ACTIONS(6421), - [anon_sym_BSLASHpagecolor] = ACTIONS(6421), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6421), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6421), - [anon_sym_BSLASHtext] = ACTIONS(6421), - [anon_sym_BSLASHintertext] = ACTIONS(6421), - [anon_sym_shortintertext] = ACTIONS(6421), - }, - [1209] = { - [sym_command_name] = ACTIONS(6425), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6425), - [anon_sym_LBRACK] = ACTIONS(6427), - [anon_sym_RBRACK] = ACTIONS(6427), - [anon_sym_COMMA] = ACTIONS(6427), - [anon_sym_EQ] = ACTIONS(6427), - [anon_sym_LPAREN] = ACTIONS(6427), - [anon_sym_RPAREN] = ACTIONS(6427), - [anon_sym_BSLASHpart] = ACTIONS(6425), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddpart] = ACTIONS(6425), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6427), - [anon_sym_BSLASHchapter] = ACTIONS(6425), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddchap] = ACTIONS(6425), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsection] = ACTIONS(6425), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddsec] = ACTIONS(6425), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubsection] = ACTIONS(6425), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6425), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHparagraph] = ACTIONS(6425), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6425), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6427), - [anon_sym_BSLASHitem] = ACTIONS(6425), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6427), - [anon_sym_LBRACE] = ACTIONS(6427), - [sym_word] = ACTIONS(6425), - [sym_placeholder] = ACTIONS(6427), - [anon_sym_PLUS] = ACTIONS(6427), - [anon_sym_DASH] = ACTIONS(6427), - [anon_sym_STAR] = ACTIONS(6427), - [anon_sym_SLASH] = ACTIONS(6427), - [anon_sym_LT] = ACTIONS(6425), - [anon_sym_GT] = ACTIONS(6425), - [anon_sym_BANG] = ACTIONS(6425), - [anon_sym_PIPE] = ACTIONS(6425), - [anon_sym_COLON] = ACTIONS(6425), - [anon_sym_SQUOTE] = ACTIONS(6425), - [anon_sym__] = ACTIONS(6427), - [anon_sym_CARET] = ACTIONS(6427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6427), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6427), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6427), - [anon_sym_DOLLAR] = ACTIONS(6425), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6427), - [anon_sym_BSLASHbegin] = ACTIONS(6425), - [anon_sym_BSLASHtitle] = ACTIONS(6425), - [anon_sym_BSLASHauthor] = ACTIONS(6425), - [anon_sym_BSLASHusepackage] = ACTIONS(6425), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6425), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6425), - [anon_sym_BSLASHinclude] = ACTIONS(6425), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6425), - [anon_sym_BSLASHinput] = ACTIONS(6425), - [anon_sym_BSLASHsubfile] = ACTIONS(6425), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6425), - [anon_sym_BSLASHbibliography] = ACTIONS(6425), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6425), - [anon_sym_BSLASHincludesvg] = ACTIONS(6425), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6425), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6425), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6425), - [anon_sym_BSLASHimport] = ACTIONS(6425), - [anon_sym_BSLASHsubimport] = ACTIONS(6425), - [anon_sym_BSLASHinputfrom] = ACTIONS(6425), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6425), - [anon_sym_BSLASHincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHcaption] = ACTIONS(6425), - [anon_sym_BSLASHcite] = ACTIONS(6425), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCite] = ACTIONS(6425), - [anon_sym_BSLASHnocite] = ACTIONS(6425), - [anon_sym_BSLASHcitet] = ACTIONS(6425), - [anon_sym_BSLASHcitep] = ACTIONS(6425), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteauthor] = ACTIONS(6425), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6425), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitetitle] = ACTIONS(6425), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteyear] = ACTIONS(6425), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitedate] = ACTIONS(6425), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteurl] = ACTIONS(6425), - [anon_sym_BSLASHfullcite] = ACTIONS(6425), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6425), - [anon_sym_BSLASHcitealt] = ACTIONS(6425), - [anon_sym_BSLASHcitealp] = ACTIONS(6425), - [anon_sym_BSLASHcitetext] = ACTIONS(6425), - [anon_sym_BSLASHparencite] = ACTIONS(6425), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHParencite] = ACTIONS(6425), - [anon_sym_BSLASHfootcite] = ACTIONS(6425), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6425), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6425), - [anon_sym_BSLASHtextcite] = ACTIONS(6425), - [anon_sym_BSLASHTextcite] = ACTIONS(6425), - [anon_sym_BSLASHsmartcite] = ACTIONS(6425), - [anon_sym_BSLASHSmartcite] = ACTIONS(6425), - [anon_sym_BSLASHsupercite] = ACTIONS(6425), - [anon_sym_BSLASHautocite] = ACTIONS(6425), - [anon_sym_BSLASHAutocite] = ACTIONS(6425), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHvolcite] = ACTIONS(6425), - [anon_sym_BSLASHVolcite] = ACTIONS(6425), - [anon_sym_BSLASHpvolcite] = ACTIONS(6425), - [anon_sym_BSLASHPvolcite] = ACTIONS(6425), - [anon_sym_BSLASHfvolcite] = ACTIONS(6425), - [anon_sym_BSLASHftvolcite] = ACTIONS(6425), - [anon_sym_BSLASHsvolcite] = ACTIONS(6425), - [anon_sym_BSLASHSvolcite] = ACTIONS(6425), - [anon_sym_BSLASHtvolcite] = ACTIONS(6425), - [anon_sym_BSLASHTvolcite] = ACTIONS(6425), - [anon_sym_BSLASHavolcite] = ACTIONS(6425), - [anon_sym_BSLASHAvolcite] = ACTIONS(6425), - [anon_sym_BSLASHnotecite] = ACTIONS(6425), - [anon_sym_BSLASHNotecite] = ACTIONS(6425), - [anon_sym_BSLASHpnotecite] = ACTIONS(6425), - [anon_sym_BSLASHPnotecite] = ACTIONS(6425), - [anon_sym_BSLASHfnotecite] = ACTIONS(6425), - [anon_sym_BSLASHlabel] = ACTIONS(6425), - [anon_sym_BSLASHref] = ACTIONS(6425), - [anon_sym_BSLASHeqref] = ACTIONS(6425), - [anon_sym_BSLASHvref] = ACTIONS(6425), - [anon_sym_BSLASHVref] = ACTIONS(6425), - [anon_sym_BSLASHautoref] = ACTIONS(6425), - [anon_sym_BSLASHpageref] = ACTIONS(6425), - [anon_sym_BSLASHcref] = ACTIONS(6425), - [anon_sym_BSLASHCref] = ACTIONS(6425), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnameCref] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHlabelcref] = ACTIONS(6425), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCrefrange] = ACTIONS(6425), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnewlabel] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6425), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6425), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6427), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHdef] = ACTIONS(6425), - [anon_sym_BSLASHlet] = ACTIONS(6425), - [anon_sym_BSLASHleft] = ACTIONS(6425), - [anon_sym_BSLASHbig] = ACTIONS(6425), - [anon_sym_BSLASHBig] = ACTIONS(6425), - [anon_sym_BSLASHbigg] = ACTIONS(6425), - [anon_sym_BSLASHBigg] = ACTIONS(6425), - [anon_sym_BSLASHbigl] = ACTIONS(6425), - [anon_sym_BSLASHBigl] = ACTIONS(6425), - [anon_sym_BSLASHbiggl] = ACTIONS(6425), - [anon_sym_BSLASHBiggl] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6425), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6425), - [anon_sym_BSLASHgls] = ACTIONS(6425), - [anon_sym_BSLASHGls] = ACTIONS(6425), - [anon_sym_BSLASHGLS] = ACTIONS(6425), - [anon_sym_BSLASHglspl] = ACTIONS(6425), - [anon_sym_BSLASHGlspl] = ACTIONS(6425), - [anon_sym_BSLASHGLSpl] = ACTIONS(6425), - [anon_sym_BSLASHglsdisp] = ACTIONS(6425), - [anon_sym_BSLASHglslink] = ACTIONS(6425), - [anon_sym_BSLASHglstext] = ACTIONS(6425), - [anon_sym_BSLASHGlstext] = ACTIONS(6425), - [anon_sym_BSLASHGLStext] = ACTIONS(6425), - [anon_sym_BSLASHglsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6425), - [anon_sym_BSLASHglsplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSplural] = ACTIONS(6425), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHglsname] = ACTIONS(6425), - [anon_sym_BSLASHGlsname] = ACTIONS(6425), - [anon_sym_BSLASHGLSname] = ACTIONS(6425), - [anon_sym_BSLASHglssymbol] = ACTIONS(6425), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6425), - [anon_sym_BSLASHglsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6425), - [anon_sym_BSLASHglsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6425), - [anon_sym_BSLASHglsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6425), - [anon_sym_BSLASHglsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6425), - [anon_sym_BSLASHglsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6425), - [anon_sym_BSLASHnewacronym] = ACTIONS(6425), - [anon_sym_BSLASHacrshort] = ACTIONS(6425), - [anon_sym_BSLASHAcrshort] = ACTIONS(6425), - [anon_sym_BSLASHACRshort] = ACTIONS(6425), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6425), - [anon_sym_BSLASHacrlong] = ACTIONS(6425), - [anon_sym_BSLASHAcrlong] = ACTIONS(6425), - [anon_sym_BSLASHACRlong] = ACTIONS(6425), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6425), - [anon_sym_BSLASHacrfull] = ACTIONS(6425), - [anon_sym_BSLASHAcrfull] = ACTIONS(6425), - [anon_sym_BSLASHACRfull] = ACTIONS(6425), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6425), - [anon_sym_BSLASHacs] = ACTIONS(6425), - [anon_sym_BSLASHAcs] = ACTIONS(6425), - [anon_sym_BSLASHacsp] = ACTIONS(6425), - [anon_sym_BSLASHAcsp] = ACTIONS(6425), - [anon_sym_BSLASHacl] = ACTIONS(6425), - [anon_sym_BSLASHAcl] = ACTIONS(6425), - [anon_sym_BSLASHaclp] = ACTIONS(6425), - [anon_sym_BSLASHAclp] = ACTIONS(6425), - [anon_sym_BSLASHacf] = ACTIONS(6425), - [anon_sym_BSLASHAcf] = ACTIONS(6425), - [anon_sym_BSLASHacfp] = ACTIONS(6425), - [anon_sym_BSLASHAcfp] = ACTIONS(6425), - [anon_sym_BSLASHac] = ACTIONS(6425), - [anon_sym_BSLASHAc] = ACTIONS(6425), - [anon_sym_BSLASHacp] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6425), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6425), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6425), - [anon_sym_BSLASHcolor] = ACTIONS(6425), - [anon_sym_BSLASHcolorbox] = ACTIONS(6425), - [anon_sym_BSLASHtextcolor] = ACTIONS(6425), - [anon_sym_BSLASHpagecolor] = ACTIONS(6425), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6425), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6425), - [anon_sym_BSLASHtext] = ACTIONS(6425), - [anon_sym_BSLASHintertext] = ACTIONS(6425), - [anon_sym_shortintertext] = ACTIONS(6425), - }, - [1210] = { - [sym_command_name] = ACTIONS(6517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6517), - [anon_sym_LBRACK] = ACTIONS(6519), - [anon_sym_RBRACK] = ACTIONS(6519), - [anon_sym_COMMA] = ACTIONS(6519), - [anon_sym_EQ] = ACTIONS(6519), - [anon_sym_LPAREN] = ACTIONS(6519), - [anon_sym_RPAREN] = ACTIONS(6519), - [anon_sym_BSLASHpart] = ACTIONS(6517), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddpart] = ACTIONS(6517), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6519), - [anon_sym_BSLASHchapter] = ACTIONS(6517), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddchap] = ACTIONS(6517), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsection] = ACTIONS(6517), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddsec] = ACTIONS(6517), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubsection] = ACTIONS(6517), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6517), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHparagraph] = ACTIONS(6517), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6517), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6519), - [anon_sym_BSLASHitem] = ACTIONS(6517), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6519), - [anon_sym_LBRACE] = ACTIONS(6519), - [sym_word] = ACTIONS(6517), - [sym_placeholder] = ACTIONS(6519), - [anon_sym_PLUS] = ACTIONS(6519), - [anon_sym_DASH] = ACTIONS(6519), - [anon_sym_STAR] = ACTIONS(6519), - [anon_sym_SLASH] = ACTIONS(6519), - [anon_sym_LT] = ACTIONS(6517), - [anon_sym_GT] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(6517), - [anon_sym_PIPE] = ACTIONS(6517), - [anon_sym_COLON] = ACTIONS(6517), - [anon_sym_SQUOTE] = ACTIONS(6517), - [anon_sym__] = ACTIONS(6519), - [anon_sym_CARET] = ACTIONS(6519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6519), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6519), - [anon_sym_DOLLAR] = ACTIONS(6517), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6519), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6519), - [anon_sym_BSLASHbegin] = ACTIONS(6517), - [anon_sym_BSLASHtitle] = ACTIONS(6517), - [anon_sym_BSLASHauthor] = ACTIONS(6517), - [anon_sym_BSLASHusepackage] = ACTIONS(6517), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6517), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6517), - [anon_sym_BSLASHinclude] = ACTIONS(6517), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6517), - [anon_sym_BSLASHinput] = ACTIONS(6517), - [anon_sym_BSLASHsubfile] = ACTIONS(6517), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6517), - [anon_sym_BSLASHbibliography] = ACTIONS(6517), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6517), - [anon_sym_BSLASHincludesvg] = ACTIONS(6517), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6517), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6517), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6517), - [anon_sym_BSLASHimport] = ACTIONS(6517), - [anon_sym_BSLASHsubimport] = ACTIONS(6517), - [anon_sym_BSLASHinputfrom] = ACTIONS(6517), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6517), - [anon_sym_BSLASHincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHcaption] = ACTIONS(6517), - [anon_sym_BSLASHcite] = ACTIONS(6517), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCite] = ACTIONS(6517), - [anon_sym_BSLASHnocite] = ACTIONS(6517), - [anon_sym_BSLASHcitet] = ACTIONS(6517), - [anon_sym_BSLASHcitep] = ACTIONS(6517), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteauthor] = ACTIONS(6517), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6517), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitetitle] = ACTIONS(6517), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteyear] = ACTIONS(6517), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitedate] = ACTIONS(6517), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteurl] = ACTIONS(6517), - [anon_sym_BSLASHfullcite] = ACTIONS(6517), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6517), - [anon_sym_BSLASHcitealt] = ACTIONS(6517), - [anon_sym_BSLASHcitealp] = ACTIONS(6517), - [anon_sym_BSLASHcitetext] = ACTIONS(6517), - [anon_sym_BSLASHparencite] = ACTIONS(6517), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHParencite] = ACTIONS(6517), - [anon_sym_BSLASHfootcite] = ACTIONS(6517), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6517), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6517), - [anon_sym_BSLASHtextcite] = ACTIONS(6517), - [anon_sym_BSLASHTextcite] = ACTIONS(6517), - [anon_sym_BSLASHsmartcite] = ACTIONS(6517), - [anon_sym_BSLASHSmartcite] = ACTIONS(6517), - [anon_sym_BSLASHsupercite] = ACTIONS(6517), - [anon_sym_BSLASHautocite] = ACTIONS(6517), - [anon_sym_BSLASHAutocite] = ACTIONS(6517), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHvolcite] = ACTIONS(6517), - [anon_sym_BSLASHVolcite] = ACTIONS(6517), - [anon_sym_BSLASHpvolcite] = ACTIONS(6517), - [anon_sym_BSLASHPvolcite] = ACTIONS(6517), - [anon_sym_BSLASHfvolcite] = ACTIONS(6517), - [anon_sym_BSLASHftvolcite] = ACTIONS(6517), - [anon_sym_BSLASHsvolcite] = ACTIONS(6517), - [anon_sym_BSLASHSvolcite] = ACTIONS(6517), - [anon_sym_BSLASHtvolcite] = ACTIONS(6517), - [anon_sym_BSLASHTvolcite] = ACTIONS(6517), - [anon_sym_BSLASHavolcite] = ACTIONS(6517), - [anon_sym_BSLASHAvolcite] = ACTIONS(6517), - [anon_sym_BSLASHnotecite] = ACTIONS(6517), - [anon_sym_BSLASHNotecite] = ACTIONS(6517), - [anon_sym_BSLASHpnotecite] = ACTIONS(6517), - [anon_sym_BSLASHPnotecite] = ACTIONS(6517), - [anon_sym_BSLASHfnotecite] = ACTIONS(6517), - [anon_sym_BSLASHlabel] = ACTIONS(6517), - [anon_sym_BSLASHref] = ACTIONS(6517), - [anon_sym_BSLASHeqref] = ACTIONS(6517), - [anon_sym_BSLASHvref] = ACTIONS(6517), - [anon_sym_BSLASHVref] = ACTIONS(6517), - [anon_sym_BSLASHautoref] = ACTIONS(6517), - [anon_sym_BSLASHpageref] = ACTIONS(6517), - [anon_sym_BSLASHcref] = ACTIONS(6517), - [anon_sym_BSLASHCref] = ACTIONS(6517), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnameCref] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHlabelcref] = ACTIONS(6517), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCrefrange] = ACTIONS(6517), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnewlabel] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6517), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6517), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6519), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHdef] = ACTIONS(6517), - [anon_sym_BSLASHlet] = ACTIONS(6517), - [anon_sym_BSLASHleft] = ACTIONS(6517), - [anon_sym_BSLASHbig] = ACTIONS(6517), - [anon_sym_BSLASHBig] = ACTIONS(6517), - [anon_sym_BSLASHbigg] = ACTIONS(6517), - [anon_sym_BSLASHBigg] = ACTIONS(6517), - [anon_sym_BSLASHbigl] = ACTIONS(6517), - [anon_sym_BSLASHBigl] = ACTIONS(6517), - [anon_sym_BSLASHbiggl] = ACTIONS(6517), - [anon_sym_BSLASHBiggl] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6517), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6517), - [anon_sym_BSLASHgls] = ACTIONS(6517), - [anon_sym_BSLASHGls] = ACTIONS(6517), - [anon_sym_BSLASHGLS] = ACTIONS(6517), - [anon_sym_BSLASHglspl] = ACTIONS(6517), - [anon_sym_BSLASHGlspl] = ACTIONS(6517), - [anon_sym_BSLASHGLSpl] = ACTIONS(6517), - [anon_sym_BSLASHglsdisp] = ACTIONS(6517), - [anon_sym_BSLASHglslink] = ACTIONS(6517), - [anon_sym_BSLASHglstext] = ACTIONS(6517), - [anon_sym_BSLASHGlstext] = ACTIONS(6517), - [anon_sym_BSLASHGLStext] = ACTIONS(6517), - [anon_sym_BSLASHglsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6517), - [anon_sym_BSLASHglsplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSplural] = ACTIONS(6517), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHglsname] = ACTIONS(6517), - [anon_sym_BSLASHGlsname] = ACTIONS(6517), - [anon_sym_BSLASHGLSname] = ACTIONS(6517), - [anon_sym_BSLASHglssymbol] = ACTIONS(6517), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6517), - [anon_sym_BSLASHglsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6517), - [anon_sym_BSLASHglsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6517), - [anon_sym_BSLASHglsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6517), - [anon_sym_BSLASHglsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6517), - [anon_sym_BSLASHglsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6517), - [anon_sym_BSLASHnewacronym] = ACTIONS(6517), - [anon_sym_BSLASHacrshort] = ACTIONS(6517), - [anon_sym_BSLASHAcrshort] = ACTIONS(6517), - [anon_sym_BSLASHACRshort] = ACTIONS(6517), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6517), - [anon_sym_BSLASHacrlong] = ACTIONS(6517), - [anon_sym_BSLASHAcrlong] = ACTIONS(6517), - [anon_sym_BSLASHACRlong] = ACTIONS(6517), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6517), - [anon_sym_BSLASHacrfull] = ACTIONS(6517), - [anon_sym_BSLASHAcrfull] = ACTIONS(6517), - [anon_sym_BSLASHACRfull] = ACTIONS(6517), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6517), - [anon_sym_BSLASHacs] = ACTIONS(6517), - [anon_sym_BSLASHAcs] = ACTIONS(6517), - [anon_sym_BSLASHacsp] = ACTIONS(6517), - [anon_sym_BSLASHAcsp] = ACTIONS(6517), - [anon_sym_BSLASHacl] = ACTIONS(6517), - [anon_sym_BSLASHAcl] = ACTIONS(6517), - [anon_sym_BSLASHaclp] = ACTIONS(6517), - [anon_sym_BSLASHAclp] = ACTIONS(6517), - [anon_sym_BSLASHacf] = ACTIONS(6517), - [anon_sym_BSLASHAcf] = ACTIONS(6517), - [anon_sym_BSLASHacfp] = ACTIONS(6517), - [anon_sym_BSLASHAcfp] = ACTIONS(6517), - [anon_sym_BSLASHac] = ACTIONS(6517), - [anon_sym_BSLASHAc] = ACTIONS(6517), - [anon_sym_BSLASHacp] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6517), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6517), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6517), - [anon_sym_BSLASHcolor] = ACTIONS(6517), - [anon_sym_BSLASHcolorbox] = ACTIONS(6517), - [anon_sym_BSLASHtextcolor] = ACTIONS(6517), - [anon_sym_BSLASHpagecolor] = ACTIONS(6517), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6517), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6517), - [anon_sym_BSLASHtext] = ACTIONS(6517), - [anon_sym_BSLASHintertext] = ACTIONS(6517), - [anon_sym_shortintertext] = ACTIONS(6517), - }, - [1211] = { - [sym_command_name] = ACTIONS(6513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6513), - [anon_sym_LBRACK] = ACTIONS(6515), - [anon_sym_RBRACK] = ACTIONS(6515), - [anon_sym_COMMA] = ACTIONS(6515), - [anon_sym_EQ] = ACTIONS(6515), - [anon_sym_LPAREN] = ACTIONS(6515), - [anon_sym_RPAREN] = ACTIONS(6515), - [anon_sym_BSLASHpart] = ACTIONS(6513), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddpart] = ACTIONS(6513), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6515), - [anon_sym_BSLASHchapter] = ACTIONS(6513), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddchap] = ACTIONS(6513), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsection] = ACTIONS(6513), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddsec] = ACTIONS(6513), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubsection] = ACTIONS(6513), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6513), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHparagraph] = ACTIONS(6513), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6513), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6515), - [anon_sym_BSLASHitem] = ACTIONS(6513), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(6515), - [sym_word] = ACTIONS(6513), - [sym_placeholder] = ACTIONS(6515), - [anon_sym_PLUS] = ACTIONS(6515), - [anon_sym_DASH] = ACTIONS(6515), - [anon_sym_STAR] = ACTIONS(6515), - [anon_sym_SLASH] = ACTIONS(6515), - [anon_sym_LT] = ACTIONS(6513), - [anon_sym_GT] = ACTIONS(6513), - [anon_sym_BANG] = ACTIONS(6513), - [anon_sym_PIPE] = ACTIONS(6513), - [anon_sym_COLON] = ACTIONS(6513), - [anon_sym_SQUOTE] = ACTIONS(6513), - [anon_sym__] = ACTIONS(6515), - [anon_sym_CARET] = ACTIONS(6515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6515), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6515), - [anon_sym_DOLLAR] = ACTIONS(6513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6515), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6515), - [anon_sym_BSLASHbegin] = ACTIONS(6513), - [anon_sym_BSLASHtitle] = ACTIONS(6513), - [anon_sym_BSLASHauthor] = ACTIONS(6513), - [anon_sym_BSLASHusepackage] = ACTIONS(6513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6513), - [anon_sym_BSLASHinclude] = ACTIONS(6513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6513), - [anon_sym_BSLASHinput] = ACTIONS(6513), - [anon_sym_BSLASHsubfile] = ACTIONS(6513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6513), - [anon_sym_BSLASHbibliography] = ACTIONS(6513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6513), - [anon_sym_BSLASHincludesvg] = ACTIONS(6513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6513), - [anon_sym_BSLASHimport] = ACTIONS(6513), - [anon_sym_BSLASHsubimport] = ACTIONS(6513), - [anon_sym_BSLASHinputfrom] = ACTIONS(6513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6513), - [anon_sym_BSLASHincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHcaption] = ACTIONS(6513), - [anon_sym_BSLASHcite] = ACTIONS(6513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCite] = ACTIONS(6513), - [anon_sym_BSLASHnocite] = ACTIONS(6513), - [anon_sym_BSLASHcitet] = ACTIONS(6513), - [anon_sym_BSLASHcitep] = ACTIONS(6513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteauthor] = ACTIONS(6513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitetitle] = ACTIONS(6513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteyear] = ACTIONS(6513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitedate] = ACTIONS(6513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteurl] = ACTIONS(6513), - [anon_sym_BSLASHfullcite] = ACTIONS(6513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6513), - [anon_sym_BSLASHcitealt] = ACTIONS(6513), - [anon_sym_BSLASHcitealp] = ACTIONS(6513), - [anon_sym_BSLASHcitetext] = ACTIONS(6513), - [anon_sym_BSLASHparencite] = ACTIONS(6513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHParencite] = ACTIONS(6513), - [anon_sym_BSLASHfootcite] = ACTIONS(6513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6513), - [anon_sym_BSLASHtextcite] = ACTIONS(6513), - [anon_sym_BSLASHTextcite] = ACTIONS(6513), - [anon_sym_BSLASHsmartcite] = ACTIONS(6513), - [anon_sym_BSLASHSmartcite] = ACTIONS(6513), - [anon_sym_BSLASHsupercite] = ACTIONS(6513), - [anon_sym_BSLASHautocite] = ACTIONS(6513), - [anon_sym_BSLASHAutocite] = ACTIONS(6513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHvolcite] = ACTIONS(6513), - [anon_sym_BSLASHVolcite] = ACTIONS(6513), - [anon_sym_BSLASHpvolcite] = ACTIONS(6513), - [anon_sym_BSLASHPvolcite] = ACTIONS(6513), - [anon_sym_BSLASHfvolcite] = ACTIONS(6513), - [anon_sym_BSLASHftvolcite] = ACTIONS(6513), - [anon_sym_BSLASHsvolcite] = ACTIONS(6513), - [anon_sym_BSLASHSvolcite] = ACTIONS(6513), - [anon_sym_BSLASHtvolcite] = ACTIONS(6513), - [anon_sym_BSLASHTvolcite] = ACTIONS(6513), - [anon_sym_BSLASHavolcite] = ACTIONS(6513), - [anon_sym_BSLASHAvolcite] = ACTIONS(6513), - [anon_sym_BSLASHnotecite] = ACTIONS(6513), - [anon_sym_BSLASHNotecite] = ACTIONS(6513), - [anon_sym_BSLASHpnotecite] = ACTIONS(6513), - [anon_sym_BSLASHPnotecite] = ACTIONS(6513), - [anon_sym_BSLASHfnotecite] = ACTIONS(6513), - [anon_sym_BSLASHlabel] = ACTIONS(6513), - [anon_sym_BSLASHref] = ACTIONS(6513), - [anon_sym_BSLASHeqref] = ACTIONS(6513), - [anon_sym_BSLASHvref] = ACTIONS(6513), - [anon_sym_BSLASHVref] = ACTIONS(6513), - [anon_sym_BSLASHautoref] = ACTIONS(6513), - [anon_sym_BSLASHpageref] = ACTIONS(6513), - [anon_sym_BSLASHcref] = ACTIONS(6513), - [anon_sym_BSLASHCref] = ACTIONS(6513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnameCref] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHlabelcref] = ACTIONS(6513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCrefrange] = ACTIONS(6513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnewlabel] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6515), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHdef] = ACTIONS(6513), - [anon_sym_BSLASHlet] = ACTIONS(6513), - [anon_sym_BSLASHleft] = ACTIONS(6513), - [anon_sym_BSLASHbig] = ACTIONS(6513), - [anon_sym_BSLASHBig] = ACTIONS(6513), - [anon_sym_BSLASHbigg] = ACTIONS(6513), - [anon_sym_BSLASHBigg] = ACTIONS(6513), - [anon_sym_BSLASHbigl] = ACTIONS(6513), - [anon_sym_BSLASHBigl] = ACTIONS(6513), - [anon_sym_BSLASHbiggl] = ACTIONS(6513), - [anon_sym_BSLASHBiggl] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6513), - [anon_sym_BSLASHgls] = ACTIONS(6513), - [anon_sym_BSLASHGls] = ACTIONS(6513), - [anon_sym_BSLASHGLS] = ACTIONS(6513), - [anon_sym_BSLASHglspl] = ACTIONS(6513), - [anon_sym_BSLASHGlspl] = ACTIONS(6513), - [anon_sym_BSLASHGLSpl] = ACTIONS(6513), - [anon_sym_BSLASHglsdisp] = ACTIONS(6513), - [anon_sym_BSLASHglslink] = ACTIONS(6513), - [anon_sym_BSLASHglstext] = ACTIONS(6513), - [anon_sym_BSLASHGlstext] = ACTIONS(6513), - [anon_sym_BSLASHGLStext] = ACTIONS(6513), - [anon_sym_BSLASHglsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6513), - [anon_sym_BSLASHglsplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSplural] = ACTIONS(6513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHglsname] = ACTIONS(6513), - [anon_sym_BSLASHGlsname] = ACTIONS(6513), - [anon_sym_BSLASHGLSname] = ACTIONS(6513), - [anon_sym_BSLASHglssymbol] = ACTIONS(6513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6513), - [anon_sym_BSLASHglsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6513), - [anon_sym_BSLASHglsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6513), - [anon_sym_BSLASHglsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6513), - [anon_sym_BSLASHglsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6513), - [anon_sym_BSLASHglsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6513), - [anon_sym_BSLASHnewacronym] = ACTIONS(6513), - [anon_sym_BSLASHacrshort] = ACTIONS(6513), - [anon_sym_BSLASHAcrshort] = ACTIONS(6513), - [anon_sym_BSLASHACRshort] = ACTIONS(6513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6513), - [anon_sym_BSLASHacrlong] = ACTIONS(6513), - [anon_sym_BSLASHAcrlong] = ACTIONS(6513), - [anon_sym_BSLASHACRlong] = ACTIONS(6513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6513), - [anon_sym_BSLASHacrfull] = ACTIONS(6513), - [anon_sym_BSLASHAcrfull] = ACTIONS(6513), - [anon_sym_BSLASHACRfull] = ACTIONS(6513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6513), - [anon_sym_BSLASHacs] = ACTIONS(6513), - [anon_sym_BSLASHAcs] = ACTIONS(6513), - [anon_sym_BSLASHacsp] = ACTIONS(6513), - [anon_sym_BSLASHAcsp] = ACTIONS(6513), - [anon_sym_BSLASHacl] = ACTIONS(6513), - [anon_sym_BSLASHAcl] = ACTIONS(6513), - [anon_sym_BSLASHaclp] = ACTIONS(6513), - [anon_sym_BSLASHAclp] = ACTIONS(6513), - [anon_sym_BSLASHacf] = ACTIONS(6513), - [anon_sym_BSLASHAcf] = ACTIONS(6513), - [anon_sym_BSLASHacfp] = ACTIONS(6513), - [anon_sym_BSLASHAcfp] = ACTIONS(6513), - [anon_sym_BSLASHac] = ACTIONS(6513), - [anon_sym_BSLASHAc] = ACTIONS(6513), - [anon_sym_BSLASHacp] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6513), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6513), - [anon_sym_BSLASHcolor] = ACTIONS(6513), - [anon_sym_BSLASHcolorbox] = ACTIONS(6513), - [anon_sym_BSLASHtextcolor] = ACTIONS(6513), - [anon_sym_BSLASHpagecolor] = ACTIONS(6513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6513), - [anon_sym_BSLASHtext] = ACTIONS(6513), - [anon_sym_BSLASHintertext] = ACTIONS(6513), - [anon_sym_shortintertext] = ACTIONS(6513), - }, - [1212] = { - [sym_command_name] = ACTIONS(6509), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6509), - [anon_sym_LBRACK] = ACTIONS(6511), - [anon_sym_RBRACK] = ACTIONS(6511), - [anon_sym_COMMA] = ACTIONS(6511), - [anon_sym_EQ] = ACTIONS(6511), - [anon_sym_LPAREN] = ACTIONS(6511), - [anon_sym_RPAREN] = ACTIONS(6511), - [anon_sym_BSLASHpart] = ACTIONS(6509), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddpart] = ACTIONS(6509), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6511), - [anon_sym_BSLASHchapter] = ACTIONS(6509), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddchap] = ACTIONS(6509), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsection] = ACTIONS(6509), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddsec] = ACTIONS(6509), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubsection] = ACTIONS(6509), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6509), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHparagraph] = ACTIONS(6509), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6509), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6511), - [anon_sym_BSLASHitem] = ACTIONS(6509), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6511), - [anon_sym_LBRACE] = ACTIONS(6511), - [sym_word] = ACTIONS(6509), - [sym_placeholder] = ACTIONS(6511), - [anon_sym_PLUS] = ACTIONS(6511), - [anon_sym_DASH] = ACTIONS(6511), - [anon_sym_STAR] = ACTIONS(6511), - [anon_sym_SLASH] = ACTIONS(6511), - [anon_sym_LT] = ACTIONS(6509), - [anon_sym_GT] = ACTIONS(6509), - [anon_sym_BANG] = ACTIONS(6509), - [anon_sym_PIPE] = ACTIONS(6509), - [anon_sym_COLON] = ACTIONS(6509), - [anon_sym_SQUOTE] = ACTIONS(6509), - [anon_sym__] = ACTIONS(6511), - [anon_sym_CARET] = ACTIONS(6511), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6511), - [anon_sym_DOLLAR] = ACTIONS(6509), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6511), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6511), - [anon_sym_BSLASHbegin] = ACTIONS(6509), - [anon_sym_BSLASHtitle] = ACTIONS(6509), - [anon_sym_BSLASHauthor] = ACTIONS(6509), - [anon_sym_BSLASHusepackage] = ACTIONS(6509), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6509), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6509), - [anon_sym_BSLASHinclude] = ACTIONS(6509), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6509), - [anon_sym_BSLASHinput] = ACTIONS(6509), - [anon_sym_BSLASHsubfile] = ACTIONS(6509), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6509), - [anon_sym_BSLASHbibliography] = ACTIONS(6509), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6509), - [anon_sym_BSLASHincludesvg] = ACTIONS(6509), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6509), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6509), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6509), - [anon_sym_BSLASHimport] = ACTIONS(6509), - [anon_sym_BSLASHsubimport] = ACTIONS(6509), - [anon_sym_BSLASHinputfrom] = ACTIONS(6509), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6509), - [anon_sym_BSLASHincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHcaption] = ACTIONS(6509), - [anon_sym_BSLASHcite] = ACTIONS(6509), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCite] = ACTIONS(6509), - [anon_sym_BSLASHnocite] = ACTIONS(6509), - [anon_sym_BSLASHcitet] = ACTIONS(6509), - [anon_sym_BSLASHcitep] = ACTIONS(6509), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteauthor] = ACTIONS(6509), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6509), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitetitle] = ACTIONS(6509), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteyear] = ACTIONS(6509), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitedate] = ACTIONS(6509), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteurl] = ACTIONS(6509), - [anon_sym_BSLASHfullcite] = ACTIONS(6509), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6509), - [anon_sym_BSLASHcitealt] = ACTIONS(6509), - [anon_sym_BSLASHcitealp] = ACTIONS(6509), - [anon_sym_BSLASHcitetext] = ACTIONS(6509), - [anon_sym_BSLASHparencite] = ACTIONS(6509), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHParencite] = ACTIONS(6509), - [anon_sym_BSLASHfootcite] = ACTIONS(6509), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6509), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6509), - [anon_sym_BSLASHtextcite] = ACTIONS(6509), - [anon_sym_BSLASHTextcite] = ACTIONS(6509), - [anon_sym_BSLASHsmartcite] = ACTIONS(6509), - [anon_sym_BSLASHSmartcite] = ACTIONS(6509), - [anon_sym_BSLASHsupercite] = ACTIONS(6509), - [anon_sym_BSLASHautocite] = ACTIONS(6509), - [anon_sym_BSLASHAutocite] = ACTIONS(6509), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHvolcite] = ACTIONS(6509), - [anon_sym_BSLASHVolcite] = ACTIONS(6509), - [anon_sym_BSLASHpvolcite] = ACTIONS(6509), - [anon_sym_BSLASHPvolcite] = ACTIONS(6509), - [anon_sym_BSLASHfvolcite] = ACTIONS(6509), - [anon_sym_BSLASHftvolcite] = ACTIONS(6509), - [anon_sym_BSLASHsvolcite] = ACTIONS(6509), - [anon_sym_BSLASHSvolcite] = ACTIONS(6509), - [anon_sym_BSLASHtvolcite] = ACTIONS(6509), - [anon_sym_BSLASHTvolcite] = ACTIONS(6509), - [anon_sym_BSLASHavolcite] = ACTIONS(6509), - [anon_sym_BSLASHAvolcite] = ACTIONS(6509), - [anon_sym_BSLASHnotecite] = ACTIONS(6509), - [anon_sym_BSLASHNotecite] = ACTIONS(6509), - [anon_sym_BSLASHpnotecite] = ACTIONS(6509), - [anon_sym_BSLASHPnotecite] = ACTIONS(6509), - [anon_sym_BSLASHfnotecite] = ACTIONS(6509), - [anon_sym_BSLASHlabel] = ACTIONS(6509), - [anon_sym_BSLASHref] = ACTIONS(6509), - [anon_sym_BSLASHeqref] = ACTIONS(6509), - [anon_sym_BSLASHvref] = ACTIONS(6509), - [anon_sym_BSLASHVref] = ACTIONS(6509), - [anon_sym_BSLASHautoref] = ACTIONS(6509), - [anon_sym_BSLASHpageref] = ACTIONS(6509), - [anon_sym_BSLASHcref] = ACTIONS(6509), - [anon_sym_BSLASHCref] = ACTIONS(6509), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnameCref] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHlabelcref] = ACTIONS(6509), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCrefrange] = ACTIONS(6509), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnewlabel] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6509), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6509), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6511), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHdef] = ACTIONS(6509), - [anon_sym_BSLASHlet] = ACTIONS(6509), - [anon_sym_BSLASHleft] = ACTIONS(6509), - [anon_sym_BSLASHbig] = ACTIONS(6509), - [anon_sym_BSLASHBig] = ACTIONS(6509), - [anon_sym_BSLASHbigg] = ACTIONS(6509), - [anon_sym_BSLASHBigg] = ACTIONS(6509), - [anon_sym_BSLASHbigl] = ACTIONS(6509), - [anon_sym_BSLASHBigl] = ACTIONS(6509), - [anon_sym_BSLASHbiggl] = ACTIONS(6509), - [anon_sym_BSLASHBiggl] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6509), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6509), - [anon_sym_BSLASHgls] = ACTIONS(6509), - [anon_sym_BSLASHGls] = ACTIONS(6509), - [anon_sym_BSLASHGLS] = ACTIONS(6509), - [anon_sym_BSLASHglspl] = ACTIONS(6509), - [anon_sym_BSLASHGlspl] = ACTIONS(6509), - [anon_sym_BSLASHGLSpl] = ACTIONS(6509), - [anon_sym_BSLASHglsdisp] = ACTIONS(6509), - [anon_sym_BSLASHglslink] = ACTIONS(6509), - [anon_sym_BSLASHglstext] = ACTIONS(6509), - [anon_sym_BSLASHGlstext] = ACTIONS(6509), - [anon_sym_BSLASHGLStext] = ACTIONS(6509), - [anon_sym_BSLASHglsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6509), - [anon_sym_BSLASHglsplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSplural] = ACTIONS(6509), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHglsname] = ACTIONS(6509), - [anon_sym_BSLASHGlsname] = ACTIONS(6509), - [anon_sym_BSLASHGLSname] = ACTIONS(6509), - [anon_sym_BSLASHglssymbol] = ACTIONS(6509), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6509), - [anon_sym_BSLASHglsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6509), - [anon_sym_BSLASHglsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6509), - [anon_sym_BSLASHglsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6509), - [anon_sym_BSLASHglsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6509), - [anon_sym_BSLASHglsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6509), - [anon_sym_BSLASHnewacronym] = ACTIONS(6509), - [anon_sym_BSLASHacrshort] = ACTIONS(6509), - [anon_sym_BSLASHAcrshort] = ACTIONS(6509), - [anon_sym_BSLASHACRshort] = ACTIONS(6509), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6509), - [anon_sym_BSLASHacrlong] = ACTIONS(6509), - [anon_sym_BSLASHAcrlong] = ACTIONS(6509), - [anon_sym_BSLASHACRlong] = ACTIONS(6509), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6509), - [anon_sym_BSLASHacrfull] = ACTIONS(6509), - [anon_sym_BSLASHAcrfull] = ACTIONS(6509), - [anon_sym_BSLASHACRfull] = ACTIONS(6509), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6509), - [anon_sym_BSLASHacs] = ACTIONS(6509), - [anon_sym_BSLASHAcs] = ACTIONS(6509), - [anon_sym_BSLASHacsp] = ACTIONS(6509), - [anon_sym_BSLASHAcsp] = ACTIONS(6509), - [anon_sym_BSLASHacl] = ACTIONS(6509), - [anon_sym_BSLASHAcl] = ACTIONS(6509), - [anon_sym_BSLASHaclp] = ACTIONS(6509), - [anon_sym_BSLASHAclp] = ACTIONS(6509), - [anon_sym_BSLASHacf] = ACTIONS(6509), - [anon_sym_BSLASHAcf] = ACTIONS(6509), - [anon_sym_BSLASHacfp] = ACTIONS(6509), - [anon_sym_BSLASHAcfp] = ACTIONS(6509), - [anon_sym_BSLASHac] = ACTIONS(6509), - [anon_sym_BSLASHAc] = ACTIONS(6509), - [anon_sym_BSLASHacp] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6509), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6509), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6509), - [anon_sym_BSLASHcolor] = ACTIONS(6509), - [anon_sym_BSLASHcolorbox] = ACTIONS(6509), - [anon_sym_BSLASHtextcolor] = ACTIONS(6509), - [anon_sym_BSLASHpagecolor] = ACTIONS(6509), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6509), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6509), - [anon_sym_BSLASHtext] = ACTIONS(6509), - [anon_sym_BSLASHintertext] = ACTIONS(6509), - [anon_sym_shortintertext] = ACTIONS(6509), - }, - [1213] = { - [sym_command_name] = ACTIONS(6505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(6507), - [anon_sym_RBRACK] = ACTIONS(6507), - [anon_sym_COMMA] = ACTIONS(6507), - [anon_sym_EQ] = ACTIONS(6507), - [anon_sym_LPAREN] = ACTIONS(6507), - [anon_sym_RPAREN] = ACTIONS(6507), - [anon_sym_BSLASHpart] = ACTIONS(6505), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddpart] = ACTIONS(6505), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6507), - [anon_sym_BSLASHchapter] = ACTIONS(6505), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddchap] = ACTIONS(6505), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsection] = ACTIONS(6505), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddsec] = ACTIONS(6505), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubsection] = ACTIONS(6505), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6505), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHparagraph] = ACTIONS(6505), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6505), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6507), - [anon_sym_BSLASHitem] = ACTIONS(6505), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [sym_word] = ACTIONS(6505), - [sym_placeholder] = ACTIONS(6507), - [anon_sym_PLUS] = ACTIONS(6507), - [anon_sym_DASH] = ACTIONS(6507), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_SLASH] = ACTIONS(6507), - [anon_sym_LT] = ACTIONS(6505), - [anon_sym_GT] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6505), - [anon_sym_PIPE] = ACTIONS(6505), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6505), - [anon_sym__] = ACTIONS(6507), - [anon_sym_CARET] = ACTIONS(6507), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6507), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6507), - [anon_sym_DOLLAR] = ACTIONS(6505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6507), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6507), - [anon_sym_BSLASHbegin] = ACTIONS(6505), - [anon_sym_BSLASHtitle] = ACTIONS(6505), - [anon_sym_BSLASHauthor] = ACTIONS(6505), - [anon_sym_BSLASHusepackage] = ACTIONS(6505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6505), - [anon_sym_BSLASHinclude] = ACTIONS(6505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6505), - [anon_sym_BSLASHinput] = ACTIONS(6505), - [anon_sym_BSLASHsubfile] = ACTIONS(6505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6505), - [anon_sym_BSLASHbibliography] = ACTIONS(6505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6505), - [anon_sym_BSLASHincludesvg] = ACTIONS(6505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6505), - [anon_sym_BSLASHimport] = ACTIONS(6505), - [anon_sym_BSLASHsubimport] = ACTIONS(6505), - [anon_sym_BSLASHinputfrom] = ACTIONS(6505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6505), - [anon_sym_BSLASHincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHcaption] = ACTIONS(6505), - [anon_sym_BSLASHcite] = ACTIONS(6505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCite] = ACTIONS(6505), - [anon_sym_BSLASHnocite] = ACTIONS(6505), - [anon_sym_BSLASHcitet] = ACTIONS(6505), - [anon_sym_BSLASHcitep] = ACTIONS(6505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteauthor] = ACTIONS(6505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitetitle] = ACTIONS(6505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteyear] = ACTIONS(6505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitedate] = ACTIONS(6505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteurl] = ACTIONS(6505), - [anon_sym_BSLASHfullcite] = ACTIONS(6505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6505), - [anon_sym_BSLASHcitealt] = ACTIONS(6505), - [anon_sym_BSLASHcitealp] = ACTIONS(6505), - [anon_sym_BSLASHcitetext] = ACTIONS(6505), - [anon_sym_BSLASHparencite] = ACTIONS(6505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHParencite] = ACTIONS(6505), - [anon_sym_BSLASHfootcite] = ACTIONS(6505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6505), - [anon_sym_BSLASHtextcite] = ACTIONS(6505), - [anon_sym_BSLASHTextcite] = ACTIONS(6505), - [anon_sym_BSLASHsmartcite] = ACTIONS(6505), - [anon_sym_BSLASHSmartcite] = ACTIONS(6505), - [anon_sym_BSLASHsupercite] = ACTIONS(6505), - [anon_sym_BSLASHautocite] = ACTIONS(6505), - [anon_sym_BSLASHAutocite] = ACTIONS(6505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHvolcite] = ACTIONS(6505), - [anon_sym_BSLASHVolcite] = ACTIONS(6505), - [anon_sym_BSLASHpvolcite] = ACTIONS(6505), - [anon_sym_BSLASHPvolcite] = ACTIONS(6505), - [anon_sym_BSLASHfvolcite] = ACTIONS(6505), - [anon_sym_BSLASHftvolcite] = ACTIONS(6505), - [anon_sym_BSLASHsvolcite] = ACTIONS(6505), - [anon_sym_BSLASHSvolcite] = ACTIONS(6505), - [anon_sym_BSLASHtvolcite] = ACTIONS(6505), - [anon_sym_BSLASHTvolcite] = ACTIONS(6505), - [anon_sym_BSLASHavolcite] = ACTIONS(6505), - [anon_sym_BSLASHAvolcite] = ACTIONS(6505), - [anon_sym_BSLASHnotecite] = ACTIONS(6505), - [anon_sym_BSLASHNotecite] = ACTIONS(6505), - [anon_sym_BSLASHpnotecite] = ACTIONS(6505), - [anon_sym_BSLASHPnotecite] = ACTIONS(6505), - [anon_sym_BSLASHfnotecite] = ACTIONS(6505), - [anon_sym_BSLASHlabel] = ACTIONS(6505), - [anon_sym_BSLASHref] = ACTIONS(6505), - [anon_sym_BSLASHeqref] = ACTIONS(6505), - [anon_sym_BSLASHvref] = ACTIONS(6505), - [anon_sym_BSLASHVref] = ACTIONS(6505), - [anon_sym_BSLASHautoref] = ACTIONS(6505), - [anon_sym_BSLASHpageref] = ACTIONS(6505), - [anon_sym_BSLASHcref] = ACTIONS(6505), - [anon_sym_BSLASHCref] = ACTIONS(6505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnameCref] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHlabelcref] = ACTIONS(6505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCrefrange] = ACTIONS(6505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnewlabel] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6507), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHdef] = ACTIONS(6505), - [anon_sym_BSLASHlet] = ACTIONS(6505), - [anon_sym_BSLASHleft] = ACTIONS(6505), - [anon_sym_BSLASHbig] = ACTIONS(6505), - [anon_sym_BSLASHBig] = ACTIONS(6505), - [anon_sym_BSLASHbigg] = ACTIONS(6505), - [anon_sym_BSLASHBigg] = ACTIONS(6505), - [anon_sym_BSLASHbigl] = ACTIONS(6505), - [anon_sym_BSLASHBigl] = ACTIONS(6505), - [anon_sym_BSLASHbiggl] = ACTIONS(6505), - [anon_sym_BSLASHBiggl] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6505), - [anon_sym_BSLASHgls] = ACTIONS(6505), - [anon_sym_BSLASHGls] = ACTIONS(6505), - [anon_sym_BSLASHGLS] = ACTIONS(6505), - [anon_sym_BSLASHglspl] = ACTIONS(6505), - [anon_sym_BSLASHGlspl] = ACTIONS(6505), - [anon_sym_BSLASHGLSpl] = ACTIONS(6505), - [anon_sym_BSLASHglsdisp] = ACTIONS(6505), - [anon_sym_BSLASHglslink] = ACTIONS(6505), - [anon_sym_BSLASHglstext] = ACTIONS(6505), - [anon_sym_BSLASHGlstext] = ACTIONS(6505), - [anon_sym_BSLASHGLStext] = ACTIONS(6505), - [anon_sym_BSLASHglsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6505), - [anon_sym_BSLASHglsplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSplural] = ACTIONS(6505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHglsname] = ACTIONS(6505), - [anon_sym_BSLASHGlsname] = ACTIONS(6505), - [anon_sym_BSLASHGLSname] = ACTIONS(6505), - [anon_sym_BSLASHglssymbol] = ACTIONS(6505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6505), - [anon_sym_BSLASHglsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6505), - [anon_sym_BSLASHglsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6505), - [anon_sym_BSLASHglsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6505), - [anon_sym_BSLASHglsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6505), - [anon_sym_BSLASHglsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6505), - [anon_sym_BSLASHnewacronym] = ACTIONS(6505), - [anon_sym_BSLASHacrshort] = ACTIONS(6505), - [anon_sym_BSLASHAcrshort] = ACTIONS(6505), - [anon_sym_BSLASHACRshort] = ACTIONS(6505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6505), - [anon_sym_BSLASHacrlong] = ACTIONS(6505), - [anon_sym_BSLASHAcrlong] = ACTIONS(6505), - [anon_sym_BSLASHACRlong] = ACTIONS(6505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6505), - [anon_sym_BSLASHacrfull] = ACTIONS(6505), - [anon_sym_BSLASHAcrfull] = ACTIONS(6505), - [anon_sym_BSLASHACRfull] = ACTIONS(6505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6505), - [anon_sym_BSLASHacs] = ACTIONS(6505), - [anon_sym_BSLASHAcs] = ACTIONS(6505), - [anon_sym_BSLASHacsp] = ACTIONS(6505), - [anon_sym_BSLASHAcsp] = ACTIONS(6505), - [anon_sym_BSLASHacl] = ACTIONS(6505), - [anon_sym_BSLASHAcl] = ACTIONS(6505), - [anon_sym_BSLASHaclp] = ACTIONS(6505), - [anon_sym_BSLASHAclp] = ACTIONS(6505), - [anon_sym_BSLASHacf] = ACTIONS(6505), - [anon_sym_BSLASHAcf] = ACTIONS(6505), - [anon_sym_BSLASHacfp] = ACTIONS(6505), - [anon_sym_BSLASHAcfp] = ACTIONS(6505), - [anon_sym_BSLASHac] = ACTIONS(6505), - [anon_sym_BSLASHAc] = ACTIONS(6505), - [anon_sym_BSLASHacp] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6505), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6505), - [anon_sym_BSLASHcolor] = ACTIONS(6505), - [anon_sym_BSLASHcolorbox] = ACTIONS(6505), - [anon_sym_BSLASHtextcolor] = ACTIONS(6505), - [anon_sym_BSLASHpagecolor] = ACTIONS(6505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6505), - [anon_sym_BSLASHtext] = ACTIONS(6505), - [anon_sym_BSLASHintertext] = ACTIONS(6505), - [anon_sym_shortintertext] = ACTIONS(6505), - }, - [1214] = { - [sym_command_name] = ACTIONS(6501), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6501), - [anon_sym_LBRACK] = ACTIONS(6503), - [anon_sym_RBRACK] = ACTIONS(6503), - [anon_sym_COMMA] = ACTIONS(6503), - [anon_sym_EQ] = ACTIONS(6503), - [anon_sym_LPAREN] = ACTIONS(6503), - [anon_sym_RPAREN] = ACTIONS(6503), - [anon_sym_BSLASHpart] = ACTIONS(6501), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddpart] = ACTIONS(6501), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6503), - [anon_sym_BSLASHchapter] = ACTIONS(6501), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddchap] = ACTIONS(6501), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsection] = ACTIONS(6501), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddsec] = ACTIONS(6501), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubsection] = ACTIONS(6501), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6501), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHparagraph] = ACTIONS(6501), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6501), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6503), - [anon_sym_BSLASHitem] = ACTIONS(6501), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6503), - [anon_sym_LBRACE] = ACTIONS(6503), - [sym_word] = ACTIONS(6501), - [sym_placeholder] = ACTIONS(6503), - [anon_sym_PLUS] = ACTIONS(6503), - [anon_sym_DASH] = ACTIONS(6503), - [anon_sym_STAR] = ACTIONS(6503), - [anon_sym_SLASH] = ACTIONS(6503), - [anon_sym_LT] = ACTIONS(6501), - [anon_sym_GT] = ACTIONS(6501), - [anon_sym_BANG] = ACTIONS(6501), - [anon_sym_PIPE] = ACTIONS(6501), - [anon_sym_COLON] = ACTIONS(6501), - [anon_sym_SQUOTE] = ACTIONS(6501), - [anon_sym__] = ACTIONS(6503), - [anon_sym_CARET] = ACTIONS(6503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6503), - [anon_sym_DOLLAR] = ACTIONS(6501), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6503), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6503), - [anon_sym_BSLASHbegin] = ACTIONS(6501), - [anon_sym_BSLASHtitle] = ACTIONS(6501), - [anon_sym_BSLASHauthor] = ACTIONS(6501), - [anon_sym_BSLASHusepackage] = ACTIONS(6501), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6501), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6501), - [anon_sym_BSLASHinclude] = ACTIONS(6501), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6501), - [anon_sym_BSLASHinput] = ACTIONS(6501), - [anon_sym_BSLASHsubfile] = ACTIONS(6501), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6501), - [anon_sym_BSLASHbibliography] = ACTIONS(6501), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6501), - [anon_sym_BSLASHincludesvg] = ACTIONS(6501), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6501), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6501), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6501), - [anon_sym_BSLASHimport] = ACTIONS(6501), - [anon_sym_BSLASHsubimport] = ACTIONS(6501), - [anon_sym_BSLASHinputfrom] = ACTIONS(6501), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6501), - [anon_sym_BSLASHincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHcaption] = ACTIONS(6501), - [anon_sym_BSLASHcite] = ACTIONS(6501), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCite] = ACTIONS(6501), - [anon_sym_BSLASHnocite] = ACTIONS(6501), - [anon_sym_BSLASHcitet] = ACTIONS(6501), - [anon_sym_BSLASHcitep] = ACTIONS(6501), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteauthor] = ACTIONS(6501), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6501), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitetitle] = ACTIONS(6501), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteyear] = ACTIONS(6501), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitedate] = ACTIONS(6501), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteurl] = ACTIONS(6501), - [anon_sym_BSLASHfullcite] = ACTIONS(6501), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6501), - [anon_sym_BSLASHcitealt] = ACTIONS(6501), - [anon_sym_BSLASHcitealp] = ACTIONS(6501), - [anon_sym_BSLASHcitetext] = ACTIONS(6501), - [anon_sym_BSLASHparencite] = ACTIONS(6501), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHParencite] = ACTIONS(6501), - [anon_sym_BSLASHfootcite] = ACTIONS(6501), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6501), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6501), - [anon_sym_BSLASHtextcite] = ACTIONS(6501), - [anon_sym_BSLASHTextcite] = ACTIONS(6501), - [anon_sym_BSLASHsmartcite] = ACTIONS(6501), - [anon_sym_BSLASHSmartcite] = ACTIONS(6501), - [anon_sym_BSLASHsupercite] = ACTIONS(6501), - [anon_sym_BSLASHautocite] = ACTIONS(6501), - [anon_sym_BSLASHAutocite] = ACTIONS(6501), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHvolcite] = ACTIONS(6501), - [anon_sym_BSLASHVolcite] = ACTIONS(6501), - [anon_sym_BSLASHpvolcite] = ACTIONS(6501), - [anon_sym_BSLASHPvolcite] = ACTIONS(6501), - [anon_sym_BSLASHfvolcite] = ACTIONS(6501), - [anon_sym_BSLASHftvolcite] = ACTIONS(6501), - [anon_sym_BSLASHsvolcite] = ACTIONS(6501), - [anon_sym_BSLASHSvolcite] = ACTIONS(6501), - [anon_sym_BSLASHtvolcite] = ACTIONS(6501), - [anon_sym_BSLASHTvolcite] = ACTIONS(6501), - [anon_sym_BSLASHavolcite] = ACTIONS(6501), - [anon_sym_BSLASHAvolcite] = ACTIONS(6501), - [anon_sym_BSLASHnotecite] = ACTIONS(6501), - [anon_sym_BSLASHNotecite] = ACTIONS(6501), - [anon_sym_BSLASHpnotecite] = ACTIONS(6501), - [anon_sym_BSLASHPnotecite] = ACTIONS(6501), - [anon_sym_BSLASHfnotecite] = ACTIONS(6501), - [anon_sym_BSLASHlabel] = ACTIONS(6501), - [anon_sym_BSLASHref] = ACTIONS(6501), - [anon_sym_BSLASHeqref] = ACTIONS(6501), - [anon_sym_BSLASHvref] = ACTIONS(6501), - [anon_sym_BSLASHVref] = ACTIONS(6501), - [anon_sym_BSLASHautoref] = ACTIONS(6501), - [anon_sym_BSLASHpageref] = ACTIONS(6501), - [anon_sym_BSLASHcref] = ACTIONS(6501), - [anon_sym_BSLASHCref] = ACTIONS(6501), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnameCref] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHlabelcref] = ACTIONS(6501), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCrefrange] = ACTIONS(6501), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnewlabel] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6501), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6501), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6503), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHdef] = ACTIONS(6501), - [anon_sym_BSLASHlet] = ACTIONS(6501), - [anon_sym_BSLASHleft] = ACTIONS(6501), - [anon_sym_BSLASHbig] = ACTIONS(6501), - [anon_sym_BSLASHBig] = ACTIONS(6501), - [anon_sym_BSLASHbigg] = ACTIONS(6501), - [anon_sym_BSLASHBigg] = ACTIONS(6501), - [anon_sym_BSLASHbigl] = ACTIONS(6501), - [anon_sym_BSLASHBigl] = ACTIONS(6501), - [anon_sym_BSLASHbiggl] = ACTIONS(6501), - [anon_sym_BSLASHBiggl] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6501), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6501), - [anon_sym_BSLASHgls] = ACTIONS(6501), - [anon_sym_BSLASHGls] = ACTIONS(6501), - [anon_sym_BSLASHGLS] = ACTIONS(6501), - [anon_sym_BSLASHglspl] = ACTIONS(6501), - [anon_sym_BSLASHGlspl] = ACTIONS(6501), - [anon_sym_BSLASHGLSpl] = ACTIONS(6501), - [anon_sym_BSLASHglsdisp] = ACTIONS(6501), - [anon_sym_BSLASHglslink] = ACTIONS(6501), - [anon_sym_BSLASHglstext] = ACTIONS(6501), - [anon_sym_BSLASHGlstext] = ACTIONS(6501), - [anon_sym_BSLASHGLStext] = ACTIONS(6501), - [anon_sym_BSLASHglsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6501), - [anon_sym_BSLASHglsplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSplural] = ACTIONS(6501), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHglsname] = ACTIONS(6501), - [anon_sym_BSLASHGlsname] = ACTIONS(6501), - [anon_sym_BSLASHGLSname] = ACTIONS(6501), - [anon_sym_BSLASHglssymbol] = ACTIONS(6501), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6501), - [anon_sym_BSLASHglsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6501), - [anon_sym_BSLASHglsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6501), - [anon_sym_BSLASHglsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6501), - [anon_sym_BSLASHglsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6501), - [anon_sym_BSLASHglsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6501), - [anon_sym_BSLASHnewacronym] = ACTIONS(6501), - [anon_sym_BSLASHacrshort] = ACTIONS(6501), - [anon_sym_BSLASHAcrshort] = ACTIONS(6501), - [anon_sym_BSLASHACRshort] = ACTIONS(6501), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6501), - [anon_sym_BSLASHacrlong] = ACTIONS(6501), - [anon_sym_BSLASHAcrlong] = ACTIONS(6501), - [anon_sym_BSLASHACRlong] = ACTIONS(6501), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6501), - [anon_sym_BSLASHacrfull] = ACTIONS(6501), - [anon_sym_BSLASHAcrfull] = ACTIONS(6501), - [anon_sym_BSLASHACRfull] = ACTIONS(6501), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6501), - [anon_sym_BSLASHacs] = ACTIONS(6501), - [anon_sym_BSLASHAcs] = ACTIONS(6501), - [anon_sym_BSLASHacsp] = ACTIONS(6501), - [anon_sym_BSLASHAcsp] = ACTIONS(6501), - [anon_sym_BSLASHacl] = ACTIONS(6501), - [anon_sym_BSLASHAcl] = ACTIONS(6501), - [anon_sym_BSLASHaclp] = ACTIONS(6501), - [anon_sym_BSLASHAclp] = ACTIONS(6501), - [anon_sym_BSLASHacf] = ACTIONS(6501), - [anon_sym_BSLASHAcf] = ACTIONS(6501), - [anon_sym_BSLASHacfp] = ACTIONS(6501), - [anon_sym_BSLASHAcfp] = ACTIONS(6501), - [anon_sym_BSLASHac] = ACTIONS(6501), - [anon_sym_BSLASHAc] = ACTIONS(6501), - [anon_sym_BSLASHacp] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6501), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6501), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6501), - [anon_sym_BSLASHcolor] = ACTIONS(6501), - [anon_sym_BSLASHcolorbox] = ACTIONS(6501), - [anon_sym_BSLASHtextcolor] = ACTIONS(6501), - [anon_sym_BSLASHpagecolor] = ACTIONS(6501), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6501), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6501), - [anon_sym_BSLASHtext] = ACTIONS(6501), - [anon_sym_BSLASHintertext] = ACTIONS(6501), - [anon_sym_shortintertext] = ACTIONS(6501), - }, - [1215] = { - [sym_command_name] = ACTIONS(6497), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(6499), - [anon_sym_RBRACK] = ACTIONS(6499), - [anon_sym_COMMA] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(6499), - [anon_sym_LPAREN] = ACTIONS(6499), - [anon_sym_RPAREN] = ACTIONS(6499), - [anon_sym_BSLASHpart] = ACTIONS(6497), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddpart] = ACTIONS(6497), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6499), - [anon_sym_BSLASHchapter] = ACTIONS(6497), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddchap] = ACTIONS(6497), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsection] = ACTIONS(6497), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddsec] = ACTIONS(6497), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubsection] = ACTIONS(6497), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6497), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHparagraph] = ACTIONS(6497), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6497), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6499), - [anon_sym_BSLASHitem] = ACTIONS(6497), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6499), - [anon_sym_LBRACE] = ACTIONS(6499), - [sym_word] = ACTIONS(6497), - [sym_placeholder] = ACTIONS(6499), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_STAR] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6499), - [anon_sym_LT] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6497), - [anon_sym_BANG] = ACTIONS(6497), - [anon_sym_PIPE] = ACTIONS(6497), - [anon_sym_COLON] = ACTIONS(6497), - [anon_sym_SQUOTE] = ACTIONS(6497), - [anon_sym__] = ACTIONS(6499), - [anon_sym_CARET] = ACTIONS(6499), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6499), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6499), - [anon_sym_DOLLAR] = ACTIONS(6497), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6499), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6499), - [anon_sym_BSLASHbegin] = ACTIONS(6497), - [anon_sym_BSLASHtitle] = ACTIONS(6497), - [anon_sym_BSLASHauthor] = ACTIONS(6497), - [anon_sym_BSLASHusepackage] = ACTIONS(6497), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6497), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6497), - [anon_sym_BSLASHinclude] = ACTIONS(6497), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6497), - [anon_sym_BSLASHinput] = ACTIONS(6497), - [anon_sym_BSLASHsubfile] = ACTIONS(6497), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6497), - [anon_sym_BSLASHbibliography] = ACTIONS(6497), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6497), - [anon_sym_BSLASHincludesvg] = ACTIONS(6497), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6497), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6497), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6497), - [anon_sym_BSLASHimport] = ACTIONS(6497), - [anon_sym_BSLASHsubimport] = ACTIONS(6497), - [anon_sym_BSLASHinputfrom] = ACTIONS(6497), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6497), - [anon_sym_BSLASHincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHcaption] = ACTIONS(6497), - [anon_sym_BSLASHcite] = ACTIONS(6497), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCite] = ACTIONS(6497), - [anon_sym_BSLASHnocite] = ACTIONS(6497), - [anon_sym_BSLASHcitet] = ACTIONS(6497), - [anon_sym_BSLASHcitep] = ACTIONS(6497), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteauthor] = ACTIONS(6497), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6497), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitetitle] = ACTIONS(6497), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteyear] = ACTIONS(6497), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitedate] = ACTIONS(6497), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteurl] = ACTIONS(6497), - [anon_sym_BSLASHfullcite] = ACTIONS(6497), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6497), - [anon_sym_BSLASHcitealt] = ACTIONS(6497), - [anon_sym_BSLASHcitealp] = ACTIONS(6497), - [anon_sym_BSLASHcitetext] = ACTIONS(6497), - [anon_sym_BSLASHparencite] = ACTIONS(6497), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHParencite] = ACTIONS(6497), - [anon_sym_BSLASHfootcite] = ACTIONS(6497), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6497), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6497), - [anon_sym_BSLASHtextcite] = ACTIONS(6497), - [anon_sym_BSLASHTextcite] = ACTIONS(6497), - [anon_sym_BSLASHsmartcite] = ACTIONS(6497), - [anon_sym_BSLASHSmartcite] = ACTIONS(6497), - [anon_sym_BSLASHsupercite] = ACTIONS(6497), - [anon_sym_BSLASHautocite] = ACTIONS(6497), - [anon_sym_BSLASHAutocite] = ACTIONS(6497), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHvolcite] = ACTIONS(6497), - [anon_sym_BSLASHVolcite] = ACTIONS(6497), - [anon_sym_BSLASHpvolcite] = ACTIONS(6497), - [anon_sym_BSLASHPvolcite] = ACTIONS(6497), - [anon_sym_BSLASHfvolcite] = ACTIONS(6497), - [anon_sym_BSLASHftvolcite] = ACTIONS(6497), - [anon_sym_BSLASHsvolcite] = ACTIONS(6497), - [anon_sym_BSLASHSvolcite] = ACTIONS(6497), - [anon_sym_BSLASHtvolcite] = ACTIONS(6497), - [anon_sym_BSLASHTvolcite] = ACTIONS(6497), - [anon_sym_BSLASHavolcite] = ACTIONS(6497), - [anon_sym_BSLASHAvolcite] = ACTIONS(6497), - [anon_sym_BSLASHnotecite] = ACTIONS(6497), - [anon_sym_BSLASHNotecite] = ACTIONS(6497), - [anon_sym_BSLASHpnotecite] = ACTIONS(6497), - [anon_sym_BSLASHPnotecite] = ACTIONS(6497), - [anon_sym_BSLASHfnotecite] = ACTIONS(6497), - [anon_sym_BSLASHlabel] = ACTIONS(6497), - [anon_sym_BSLASHref] = ACTIONS(6497), - [anon_sym_BSLASHeqref] = ACTIONS(6497), - [anon_sym_BSLASHvref] = ACTIONS(6497), - [anon_sym_BSLASHVref] = ACTIONS(6497), - [anon_sym_BSLASHautoref] = ACTIONS(6497), - [anon_sym_BSLASHpageref] = ACTIONS(6497), - [anon_sym_BSLASHcref] = ACTIONS(6497), - [anon_sym_BSLASHCref] = ACTIONS(6497), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnameCref] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHlabelcref] = ACTIONS(6497), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCrefrange] = ACTIONS(6497), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnewlabel] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6497), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6497), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6499), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHdef] = ACTIONS(6497), - [anon_sym_BSLASHlet] = ACTIONS(6497), - [anon_sym_BSLASHleft] = ACTIONS(6497), - [anon_sym_BSLASHbig] = ACTIONS(6497), - [anon_sym_BSLASHBig] = ACTIONS(6497), - [anon_sym_BSLASHbigg] = ACTIONS(6497), - [anon_sym_BSLASHBigg] = ACTIONS(6497), - [anon_sym_BSLASHbigl] = ACTIONS(6497), - [anon_sym_BSLASHBigl] = ACTIONS(6497), - [anon_sym_BSLASHbiggl] = ACTIONS(6497), - [anon_sym_BSLASHBiggl] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6497), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6497), - [anon_sym_BSLASHgls] = ACTIONS(6497), - [anon_sym_BSLASHGls] = ACTIONS(6497), - [anon_sym_BSLASHGLS] = ACTIONS(6497), - [anon_sym_BSLASHglspl] = ACTIONS(6497), - [anon_sym_BSLASHGlspl] = ACTIONS(6497), - [anon_sym_BSLASHGLSpl] = ACTIONS(6497), - [anon_sym_BSLASHglsdisp] = ACTIONS(6497), - [anon_sym_BSLASHglslink] = ACTIONS(6497), - [anon_sym_BSLASHglstext] = ACTIONS(6497), - [anon_sym_BSLASHGlstext] = ACTIONS(6497), - [anon_sym_BSLASHGLStext] = ACTIONS(6497), - [anon_sym_BSLASHglsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6497), - [anon_sym_BSLASHglsplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSplural] = ACTIONS(6497), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHglsname] = ACTIONS(6497), - [anon_sym_BSLASHGlsname] = ACTIONS(6497), - [anon_sym_BSLASHGLSname] = ACTIONS(6497), - [anon_sym_BSLASHglssymbol] = ACTIONS(6497), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6497), - [anon_sym_BSLASHglsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6497), - [anon_sym_BSLASHglsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6497), - [anon_sym_BSLASHglsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6497), - [anon_sym_BSLASHglsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6497), - [anon_sym_BSLASHglsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6497), - [anon_sym_BSLASHnewacronym] = ACTIONS(6497), - [anon_sym_BSLASHacrshort] = ACTIONS(6497), - [anon_sym_BSLASHAcrshort] = ACTIONS(6497), - [anon_sym_BSLASHACRshort] = ACTIONS(6497), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6497), - [anon_sym_BSLASHacrlong] = ACTIONS(6497), - [anon_sym_BSLASHAcrlong] = ACTIONS(6497), - [anon_sym_BSLASHACRlong] = ACTIONS(6497), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6497), - [anon_sym_BSLASHacrfull] = ACTIONS(6497), - [anon_sym_BSLASHAcrfull] = ACTIONS(6497), - [anon_sym_BSLASHACRfull] = ACTIONS(6497), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6497), - [anon_sym_BSLASHacs] = ACTIONS(6497), - [anon_sym_BSLASHAcs] = ACTIONS(6497), - [anon_sym_BSLASHacsp] = ACTIONS(6497), - [anon_sym_BSLASHAcsp] = ACTIONS(6497), - [anon_sym_BSLASHacl] = ACTIONS(6497), - [anon_sym_BSLASHAcl] = ACTIONS(6497), - [anon_sym_BSLASHaclp] = ACTIONS(6497), - [anon_sym_BSLASHAclp] = ACTIONS(6497), - [anon_sym_BSLASHacf] = ACTIONS(6497), - [anon_sym_BSLASHAcf] = ACTIONS(6497), - [anon_sym_BSLASHacfp] = ACTIONS(6497), - [anon_sym_BSLASHAcfp] = ACTIONS(6497), - [anon_sym_BSLASHac] = ACTIONS(6497), - [anon_sym_BSLASHAc] = ACTIONS(6497), - [anon_sym_BSLASHacp] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6497), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6497), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6497), - [anon_sym_BSLASHcolor] = ACTIONS(6497), - [anon_sym_BSLASHcolorbox] = ACTIONS(6497), - [anon_sym_BSLASHtextcolor] = ACTIONS(6497), - [anon_sym_BSLASHpagecolor] = ACTIONS(6497), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6497), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6497), - [anon_sym_BSLASHtext] = ACTIONS(6497), - [anon_sym_BSLASHintertext] = ACTIONS(6497), - [anon_sym_shortintertext] = ACTIONS(6497), - }, - [1216] = { - [sym_command_name] = ACTIONS(6493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6495), - [anon_sym_RBRACK] = ACTIONS(6495), - [anon_sym_COMMA] = ACTIONS(6495), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_LPAREN] = ACTIONS(6495), - [anon_sym_RPAREN] = ACTIONS(6495), - [anon_sym_BSLASHpart] = ACTIONS(6493), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddpart] = ACTIONS(6493), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6495), - [anon_sym_BSLASHchapter] = ACTIONS(6493), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddchap] = ACTIONS(6493), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsection] = ACTIONS(6493), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddsec] = ACTIONS(6493), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubsection] = ACTIONS(6493), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6493), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHparagraph] = ACTIONS(6493), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6493), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6495), - [anon_sym_BSLASHitem] = ACTIONS(6493), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6495), - [anon_sym_LBRACE] = ACTIONS(6495), - [sym_word] = ACTIONS(6493), - [sym_placeholder] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6495), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6493), - [anon_sym_GT] = ACTIONS(6493), - [anon_sym_BANG] = ACTIONS(6493), - [anon_sym_PIPE] = ACTIONS(6493), - [anon_sym_COLON] = ACTIONS(6493), - [anon_sym_SQUOTE] = ACTIONS(6493), - [anon_sym__] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6495), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6495), - [anon_sym_DOLLAR] = ACTIONS(6493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6495), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6495), - [anon_sym_BSLASHbegin] = ACTIONS(6493), - [anon_sym_BSLASHtitle] = ACTIONS(6493), - [anon_sym_BSLASHauthor] = ACTIONS(6493), - [anon_sym_BSLASHusepackage] = ACTIONS(6493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6493), - [anon_sym_BSLASHinclude] = ACTIONS(6493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6493), - [anon_sym_BSLASHinput] = ACTIONS(6493), - [anon_sym_BSLASHsubfile] = ACTIONS(6493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6493), - [anon_sym_BSLASHbibliography] = ACTIONS(6493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6493), - [anon_sym_BSLASHincludesvg] = ACTIONS(6493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6493), - [anon_sym_BSLASHimport] = ACTIONS(6493), - [anon_sym_BSLASHsubimport] = ACTIONS(6493), - [anon_sym_BSLASHinputfrom] = ACTIONS(6493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6493), - [anon_sym_BSLASHincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHcaption] = ACTIONS(6493), - [anon_sym_BSLASHcite] = ACTIONS(6493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCite] = ACTIONS(6493), - [anon_sym_BSLASHnocite] = ACTIONS(6493), - [anon_sym_BSLASHcitet] = ACTIONS(6493), - [anon_sym_BSLASHcitep] = ACTIONS(6493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteauthor] = ACTIONS(6493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitetitle] = ACTIONS(6493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteyear] = ACTIONS(6493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitedate] = ACTIONS(6493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteurl] = ACTIONS(6493), - [anon_sym_BSLASHfullcite] = ACTIONS(6493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6493), - [anon_sym_BSLASHcitealt] = ACTIONS(6493), - [anon_sym_BSLASHcitealp] = ACTIONS(6493), - [anon_sym_BSLASHcitetext] = ACTIONS(6493), - [anon_sym_BSLASHparencite] = ACTIONS(6493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHParencite] = ACTIONS(6493), - [anon_sym_BSLASHfootcite] = ACTIONS(6493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6493), - [anon_sym_BSLASHtextcite] = ACTIONS(6493), - [anon_sym_BSLASHTextcite] = ACTIONS(6493), - [anon_sym_BSLASHsmartcite] = ACTIONS(6493), - [anon_sym_BSLASHSmartcite] = ACTIONS(6493), - [anon_sym_BSLASHsupercite] = ACTIONS(6493), - [anon_sym_BSLASHautocite] = ACTIONS(6493), - [anon_sym_BSLASHAutocite] = ACTIONS(6493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHvolcite] = ACTIONS(6493), - [anon_sym_BSLASHVolcite] = ACTIONS(6493), - [anon_sym_BSLASHpvolcite] = ACTIONS(6493), - [anon_sym_BSLASHPvolcite] = ACTIONS(6493), - [anon_sym_BSLASHfvolcite] = ACTIONS(6493), - [anon_sym_BSLASHftvolcite] = ACTIONS(6493), - [anon_sym_BSLASHsvolcite] = ACTIONS(6493), - [anon_sym_BSLASHSvolcite] = ACTIONS(6493), - [anon_sym_BSLASHtvolcite] = ACTIONS(6493), - [anon_sym_BSLASHTvolcite] = ACTIONS(6493), - [anon_sym_BSLASHavolcite] = ACTIONS(6493), - [anon_sym_BSLASHAvolcite] = ACTIONS(6493), - [anon_sym_BSLASHnotecite] = ACTIONS(6493), - [anon_sym_BSLASHNotecite] = ACTIONS(6493), - [anon_sym_BSLASHpnotecite] = ACTIONS(6493), - [anon_sym_BSLASHPnotecite] = ACTIONS(6493), - [anon_sym_BSLASHfnotecite] = ACTIONS(6493), - [anon_sym_BSLASHlabel] = ACTIONS(6493), - [anon_sym_BSLASHref] = ACTIONS(6493), - [anon_sym_BSLASHeqref] = ACTIONS(6493), - [anon_sym_BSLASHvref] = ACTIONS(6493), - [anon_sym_BSLASHVref] = ACTIONS(6493), - [anon_sym_BSLASHautoref] = ACTIONS(6493), - [anon_sym_BSLASHpageref] = ACTIONS(6493), - [anon_sym_BSLASHcref] = ACTIONS(6493), - [anon_sym_BSLASHCref] = ACTIONS(6493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnameCref] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHlabelcref] = ACTIONS(6493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCrefrange] = ACTIONS(6493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnewlabel] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6495), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHdef] = ACTIONS(6493), - [anon_sym_BSLASHlet] = ACTIONS(6493), - [anon_sym_BSLASHleft] = ACTIONS(6493), - [anon_sym_BSLASHbig] = ACTIONS(6493), - [anon_sym_BSLASHBig] = ACTIONS(6493), - [anon_sym_BSLASHbigg] = ACTIONS(6493), - [anon_sym_BSLASHBigg] = ACTIONS(6493), - [anon_sym_BSLASHbigl] = ACTIONS(6493), - [anon_sym_BSLASHBigl] = ACTIONS(6493), - [anon_sym_BSLASHbiggl] = ACTIONS(6493), - [anon_sym_BSLASHBiggl] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6493), - [anon_sym_BSLASHgls] = ACTIONS(6493), - [anon_sym_BSLASHGls] = ACTIONS(6493), - [anon_sym_BSLASHGLS] = ACTIONS(6493), - [anon_sym_BSLASHglspl] = ACTIONS(6493), - [anon_sym_BSLASHGlspl] = ACTIONS(6493), - [anon_sym_BSLASHGLSpl] = ACTIONS(6493), - [anon_sym_BSLASHglsdisp] = ACTIONS(6493), - [anon_sym_BSLASHglslink] = ACTIONS(6493), - [anon_sym_BSLASHglstext] = ACTIONS(6493), - [anon_sym_BSLASHGlstext] = ACTIONS(6493), - [anon_sym_BSLASHGLStext] = ACTIONS(6493), - [anon_sym_BSLASHglsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6493), - [anon_sym_BSLASHglsplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSplural] = ACTIONS(6493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHglsname] = ACTIONS(6493), - [anon_sym_BSLASHGlsname] = ACTIONS(6493), - [anon_sym_BSLASHGLSname] = ACTIONS(6493), - [anon_sym_BSLASHglssymbol] = ACTIONS(6493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6493), - [anon_sym_BSLASHglsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6493), - [anon_sym_BSLASHglsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6493), - [anon_sym_BSLASHglsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6493), - [anon_sym_BSLASHglsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6493), - [anon_sym_BSLASHglsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6493), - [anon_sym_BSLASHnewacronym] = ACTIONS(6493), - [anon_sym_BSLASHacrshort] = ACTIONS(6493), - [anon_sym_BSLASHAcrshort] = ACTIONS(6493), - [anon_sym_BSLASHACRshort] = ACTIONS(6493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6493), - [anon_sym_BSLASHacrlong] = ACTIONS(6493), - [anon_sym_BSLASHAcrlong] = ACTIONS(6493), - [anon_sym_BSLASHACRlong] = ACTIONS(6493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6493), - [anon_sym_BSLASHacrfull] = ACTIONS(6493), - [anon_sym_BSLASHAcrfull] = ACTIONS(6493), - [anon_sym_BSLASHACRfull] = ACTIONS(6493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6493), - [anon_sym_BSLASHacs] = ACTIONS(6493), - [anon_sym_BSLASHAcs] = ACTIONS(6493), - [anon_sym_BSLASHacsp] = ACTIONS(6493), - [anon_sym_BSLASHAcsp] = ACTIONS(6493), - [anon_sym_BSLASHacl] = ACTIONS(6493), - [anon_sym_BSLASHAcl] = ACTIONS(6493), - [anon_sym_BSLASHaclp] = ACTIONS(6493), - [anon_sym_BSLASHAclp] = ACTIONS(6493), - [anon_sym_BSLASHacf] = ACTIONS(6493), - [anon_sym_BSLASHAcf] = ACTIONS(6493), - [anon_sym_BSLASHacfp] = ACTIONS(6493), - [anon_sym_BSLASHAcfp] = ACTIONS(6493), - [anon_sym_BSLASHac] = ACTIONS(6493), - [anon_sym_BSLASHAc] = ACTIONS(6493), - [anon_sym_BSLASHacp] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6493), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6493), - [anon_sym_BSLASHcolor] = ACTIONS(6493), - [anon_sym_BSLASHcolorbox] = ACTIONS(6493), - [anon_sym_BSLASHtextcolor] = ACTIONS(6493), - [anon_sym_BSLASHpagecolor] = ACTIONS(6493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6493), - [anon_sym_BSLASHtext] = ACTIONS(6493), - [anon_sym_BSLASHintertext] = ACTIONS(6493), - [anon_sym_shortintertext] = ACTIONS(6493), - }, - [1217] = { - [sym_command_name] = ACTIONS(6489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6489), - [anon_sym_LBRACK] = ACTIONS(6491), - [anon_sym_RBRACK] = ACTIONS(6491), - [anon_sym_COMMA] = ACTIONS(6491), - [anon_sym_EQ] = ACTIONS(6491), - [anon_sym_LPAREN] = ACTIONS(6491), - [anon_sym_RPAREN] = ACTIONS(6491), - [anon_sym_BSLASHpart] = ACTIONS(6489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddpart] = ACTIONS(6489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6491), - [anon_sym_BSLASHchapter] = ACTIONS(6489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddchap] = ACTIONS(6489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsection] = ACTIONS(6489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddsec] = ACTIONS(6489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubsection] = ACTIONS(6489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHparagraph] = ACTIONS(6489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6491), - [anon_sym_BSLASHitem] = ACTIONS(6489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6491), - [anon_sym_LBRACE] = ACTIONS(6491), - [sym_word] = ACTIONS(6489), - [sym_placeholder] = ACTIONS(6491), - [anon_sym_PLUS] = ACTIONS(6491), - [anon_sym_DASH] = ACTIONS(6491), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_LT] = ACTIONS(6489), - [anon_sym_GT] = ACTIONS(6489), - [anon_sym_BANG] = ACTIONS(6489), - [anon_sym_PIPE] = ACTIONS(6489), - [anon_sym_COLON] = ACTIONS(6489), - [anon_sym_SQUOTE] = ACTIONS(6489), - [anon_sym__] = ACTIONS(6491), - [anon_sym_CARET] = ACTIONS(6491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6491), - [anon_sym_DOLLAR] = ACTIONS(6489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6491), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6491), - [anon_sym_BSLASHbegin] = ACTIONS(6489), - [anon_sym_BSLASHtitle] = ACTIONS(6489), - [anon_sym_BSLASHauthor] = ACTIONS(6489), - [anon_sym_BSLASHusepackage] = ACTIONS(6489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6489), - [anon_sym_BSLASHinclude] = ACTIONS(6489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6489), - [anon_sym_BSLASHinput] = ACTIONS(6489), - [anon_sym_BSLASHsubfile] = ACTIONS(6489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6489), - [anon_sym_BSLASHbibliography] = ACTIONS(6489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6489), - [anon_sym_BSLASHincludesvg] = ACTIONS(6489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6489), - [anon_sym_BSLASHimport] = ACTIONS(6489), - [anon_sym_BSLASHsubimport] = ACTIONS(6489), - [anon_sym_BSLASHinputfrom] = ACTIONS(6489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6489), - [anon_sym_BSLASHincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHcaption] = ACTIONS(6489), - [anon_sym_BSLASHcite] = ACTIONS(6489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCite] = ACTIONS(6489), - [anon_sym_BSLASHnocite] = ACTIONS(6489), - [anon_sym_BSLASHcitet] = ACTIONS(6489), - [anon_sym_BSLASHcitep] = ACTIONS(6489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteauthor] = ACTIONS(6489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitetitle] = ACTIONS(6489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteyear] = ACTIONS(6489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitedate] = ACTIONS(6489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteurl] = ACTIONS(6489), - [anon_sym_BSLASHfullcite] = ACTIONS(6489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6489), - [anon_sym_BSLASHcitealt] = ACTIONS(6489), - [anon_sym_BSLASHcitealp] = ACTIONS(6489), - [anon_sym_BSLASHcitetext] = ACTIONS(6489), - [anon_sym_BSLASHparencite] = ACTIONS(6489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHParencite] = ACTIONS(6489), - [anon_sym_BSLASHfootcite] = ACTIONS(6489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6489), - [anon_sym_BSLASHtextcite] = ACTIONS(6489), - [anon_sym_BSLASHTextcite] = ACTIONS(6489), - [anon_sym_BSLASHsmartcite] = ACTIONS(6489), - [anon_sym_BSLASHSmartcite] = ACTIONS(6489), - [anon_sym_BSLASHsupercite] = ACTIONS(6489), - [anon_sym_BSLASHautocite] = ACTIONS(6489), - [anon_sym_BSLASHAutocite] = ACTIONS(6489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHvolcite] = ACTIONS(6489), - [anon_sym_BSLASHVolcite] = ACTIONS(6489), - [anon_sym_BSLASHpvolcite] = ACTIONS(6489), - [anon_sym_BSLASHPvolcite] = ACTIONS(6489), - [anon_sym_BSLASHfvolcite] = ACTIONS(6489), - [anon_sym_BSLASHftvolcite] = ACTIONS(6489), - [anon_sym_BSLASHsvolcite] = ACTIONS(6489), - [anon_sym_BSLASHSvolcite] = ACTIONS(6489), - [anon_sym_BSLASHtvolcite] = ACTIONS(6489), - [anon_sym_BSLASHTvolcite] = ACTIONS(6489), - [anon_sym_BSLASHavolcite] = ACTIONS(6489), - [anon_sym_BSLASHAvolcite] = ACTIONS(6489), - [anon_sym_BSLASHnotecite] = ACTIONS(6489), - [anon_sym_BSLASHNotecite] = ACTIONS(6489), - [anon_sym_BSLASHpnotecite] = ACTIONS(6489), - [anon_sym_BSLASHPnotecite] = ACTIONS(6489), - [anon_sym_BSLASHfnotecite] = ACTIONS(6489), - [anon_sym_BSLASHlabel] = ACTIONS(6489), - [anon_sym_BSLASHref] = ACTIONS(6489), - [anon_sym_BSLASHeqref] = ACTIONS(6489), - [anon_sym_BSLASHvref] = ACTIONS(6489), - [anon_sym_BSLASHVref] = ACTIONS(6489), - [anon_sym_BSLASHautoref] = ACTIONS(6489), - [anon_sym_BSLASHpageref] = ACTIONS(6489), - [anon_sym_BSLASHcref] = ACTIONS(6489), - [anon_sym_BSLASHCref] = ACTIONS(6489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnameCref] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHlabelcref] = ACTIONS(6489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCrefrange] = ACTIONS(6489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnewlabel] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6491), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHdef] = ACTIONS(6489), - [anon_sym_BSLASHlet] = ACTIONS(6489), - [anon_sym_BSLASHleft] = ACTIONS(6489), - [anon_sym_BSLASHbig] = ACTIONS(6489), - [anon_sym_BSLASHBig] = ACTIONS(6489), - [anon_sym_BSLASHbigg] = ACTIONS(6489), - [anon_sym_BSLASHBigg] = ACTIONS(6489), - [anon_sym_BSLASHbigl] = ACTIONS(6489), - [anon_sym_BSLASHBigl] = ACTIONS(6489), - [anon_sym_BSLASHbiggl] = ACTIONS(6489), - [anon_sym_BSLASHBiggl] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6489), - [anon_sym_BSLASHgls] = ACTIONS(6489), - [anon_sym_BSLASHGls] = ACTIONS(6489), - [anon_sym_BSLASHGLS] = ACTIONS(6489), - [anon_sym_BSLASHglspl] = ACTIONS(6489), - [anon_sym_BSLASHGlspl] = ACTIONS(6489), - [anon_sym_BSLASHGLSpl] = ACTIONS(6489), - [anon_sym_BSLASHglsdisp] = ACTIONS(6489), - [anon_sym_BSLASHglslink] = ACTIONS(6489), - [anon_sym_BSLASHglstext] = ACTIONS(6489), - [anon_sym_BSLASHGlstext] = ACTIONS(6489), - [anon_sym_BSLASHGLStext] = ACTIONS(6489), - [anon_sym_BSLASHglsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6489), - [anon_sym_BSLASHglsplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSplural] = ACTIONS(6489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHglsname] = ACTIONS(6489), - [anon_sym_BSLASHGlsname] = ACTIONS(6489), - [anon_sym_BSLASHGLSname] = ACTIONS(6489), - [anon_sym_BSLASHglssymbol] = ACTIONS(6489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6489), - [anon_sym_BSLASHglsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6489), - [anon_sym_BSLASHglsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6489), - [anon_sym_BSLASHglsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6489), - [anon_sym_BSLASHglsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6489), - [anon_sym_BSLASHglsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6489), - [anon_sym_BSLASHnewacronym] = ACTIONS(6489), - [anon_sym_BSLASHacrshort] = ACTIONS(6489), - [anon_sym_BSLASHAcrshort] = ACTIONS(6489), - [anon_sym_BSLASHACRshort] = ACTIONS(6489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6489), - [anon_sym_BSLASHacrlong] = ACTIONS(6489), - [anon_sym_BSLASHAcrlong] = ACTIONS(6489), - [anon_sym_BSLASHACRlong] = ACTIONS(6489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6489), - [anon_sym_BSLASHacrfull] = ACTIONS(6489), - [anon_sym_BSLASHAcrfull] = ACTIONS(6489), - [anon_sym_BSLASHACRfull] = ACTIONS(6489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6489), - [anon_sym_BSLASHacs] = ACTIONS(6489), - [anon_sym_BSLASHAcs] = ACTIONS(6489), - [anon_sym_BSLASHacsp] = ACTIONS(6489), - [anon_sym_BSLASHAcsp] = ACTIONS(6489), - [anon_sym_BSLASHacl] = ACTIONS(6489), - [anon_sym_BSLASHAcl] = ACTIONS(6489), - [anon_sym_BSLASHaclp] = ACTIONS(6489), - [anon_sym_BSLASHAclp] = ACTIONS(6489), - [anon_sym_BSLASHacf] = ACTIONS(6489), - [anon_sym_BSLASHAcf] = ACTIONS(6489), - [anon_sym_BSLASHacfp] = ACTIONS(6489), - [anon_sym_BSLASHAcfp] = ACTIONS(6489), - [anon_sym_BSLASHac] = ACTIONS(6489), - [anon_sym_BSLASHAc] = ACTIONS(6489), - [anon_sym_BSLASHacp] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6489), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6489), - [anon_sym_BSLASHcolor] = ACTIONS(6489), - [anon_sym_BSLASHcolorbox] = ACTIONS(6489), - [anon_sym_BSLASHtextcolor] = ACTIONS(6489), - [anon_sym_BSLASHpagecolor] = ACTIONS(6489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6489), - [anon_sym_BSLASHtext] = ACTIONS(6489), - [anon_sym_BSLASHintertext] = ACTIONS(6489), - [anon_sym_shortintertext] = ACTIONS(6489), - }, - [1218] = { - [sym_command_name] = ACTIONS(6165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6165), - [anon_sym_LBRACK] = ACTIONS(6167), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_EQ] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_BSLASHpart] = ACTIONS(6165), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddpart] = ACTIONS(6165), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6167), - [anon_sym_BSLASHchapter] = ACTIONS(6165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddchap] = ACTIONS(6165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsection] = ACTIONS(6165), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddsec] = ACTIONS(6165), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubsection] = ACTIONS(6165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6165), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHparagraph] = ACTIONS(6165), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6165), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6167), - [anon_sym_BSLASHitem] = ACTIONS(6165), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6167), - [anon_sym_LBRACE] = ACTIONS(6167), - [sym_word] = ACTIONS(6165), - [sym_placeholder] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6167), - [anon_sym_DASH] = ACTIONS(6167), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_COLON] = ACTIONS(6165), - [anon_sym_SQUOTE] = ACTIONS(6165), - [anon_sym__] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6167), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6167), - [anon_sym_BSLASHbegin] = ACTIONS(6165), - [anon_sym_BSLASHtitle] = ACTIONS(6165), - [anon_sym_BSLASHauthor] = ACTIONS(6165), - [anon_sym_BSLASHusepackage] = ACTIONS(6165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6165), - [anon_sym_BSLASHinclude] = ACTIONS(6165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6165), - [anon_sym_BSLASHinput] = ACTIONS(6165), - [anon_sym_BSLASHsubfile] = ACTIONS(6165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6165), - [anon_sym_BSLASHbibliography] = ACTIONS(6165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6165), - [anon_sym_BSLASHincludesvg] = ACTIONS(6165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6165), - [anon_sym_BSLASHimport] = ACTIONS(6165), - [anon_sym_BSLASHsubimport] = ACTIONS(6165), - [anon_sym_BSLASHinputfrom] = ACTIONS(6165), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6165), - [anon_sym_BSLASHincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHcaption] = ACTIONS(6165), - [anon_sym_BSLASHcite] = ACTIONS(6165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCite] = ACTIONS(6165), - [anon_sym_BSLASHnocite] = ACTIONS(6165), - [anon_sym_BSLASHcitet] = ACTIONS(6165), - [anon_sym_BSLASHcitep] = ACTIONS(6165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteauthor] = ACTIONS(6165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitetitle] = ACTIONS(6165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteyear] = ACTIONS(6165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitedate] = ACTIONS(6165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteurl] = ACTIONS(6165), - [anon_sym_BSLASHfullcite] = ACTIONS(6165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6165), - [anon_sym_BSLASHcitealt] = ACTIONS(6165), - [anon_sym_BSLASHcitealp] = ACTIONS(6165), - [anon_sym_BSLASHcitetext] = ACTIONS(6165), - [anon_sym_BSLASHparencite] = ACTIONS(6165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHParencite] = ACTIONS(6165), - [anon_sym_BSLASHfootcite] = ACTIONS(6165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6165), - [anon_sym_BSLASHtextcite] = ACTIONS(6165), - [anon_sym_BSLASHTextcite] = ACTIONS(6165), - [anon_sym_BSLASHsmartcite] = ACTIONS(6165), - [anon_sym_BSLASHSmartcite] = ACTIONS(6165), - [anon_sym_BSLASHsupercite] = ACTIONS(6165), - [anon_sym_BSLASHautocite] = ACTIONS(6165), - [anon_sym_BSLASHAutocite] = ACTIONS(6165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHvolcite] = ACTIONS(6165), - [anon_sym_BSLASHVolcite] = ACTIONS(6165), - [anon_sym_BSLASHpvolcite] = ACTIONS(6165), - [anon_sym_BSLASHPvolcite] = ACTIONS(6165), - [anon_sym_BSLASHfvolcite] = ACTIONS(6165), - [anon_sym_BSLASHftvolcite] = ACTIONS(6165), - [anon_sym_BSLASHsvolcite] = ACTIONS(6165), - [anon_sym_BSLASHSvolcite] = ACTIONS(6165), - [anon_sym_BSLASHtvolcite] = ACTIONS(6165), - [anon_sym_BSLASHTvolcite] = ACTIONS(6165), - [anon_sym_BSLASHavolcite] = ACTIONS(6165), - [anon_sym_BSLASHAvolcite] = ACTIONS(6165), - [anon_sym_BSLASHnotecite] = ACTIONS(6165), - [anon_sym_BSLASHNotecite] = ACTIONS(6165), - [anon_sym_BSLASHpnotecite] = ACTIONS(6165), - [anon_sym_BSLASHPnotecite] = ACTIONS(6165), - [anon_sym_BSLASHfnotecite] = ACTIONS(6165), - [anon_sym_BSLASHlabel] = ACTIONS(6165), - [anon_sym_BSLASHref] = ACTIONS(6165), - [anon_sym_BSLASHeqref] = ACTIONS(6165), - [anon_sym_BSLASHvref] = ACTIONS(6165), - [anon_sym_BSLASHVref] = ACTIONS(6165), - [anon_sym_BSLASHautoref] = ACTIONS(6165), - [anon_sym_BSLASHpageref] = ACTIONS(6165), - [anon_sym_BSLASHcref] = ACTIONS(6165), - [anon_sym_BSLASHCref] = ACTIONS(6165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnameCref] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHlabelcref] = ACTIONS(6165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCrefrange] = ACTIONS(6165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnewlabel] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6167), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHdef] = ACTIONS(6165), - [anon_sym_BSLASHlet] = ACTIONS(6165), - [anon_sym_BSLASHleft] = ACTIONS(6165), - [anon_sym_BSLASHbig] = ACTIONS(6165), - [anon_sym_BSLASHBig] = ACTIONS(6165), - [anon_sym_BSLASHbigg] = ACTIONS(6165), - [anon_sym_BSLASHBigg] = ACTIONS(6165), - [anon_sym_BSLASHbigl] = ACTIONS(6165), - [anon_sym_BSLASHBigl] = ACTIONS(6165), - [anon_sym_BSLASHbiggl] = ACTIONS(6165), - [anon_sym_BSLASHBiggl] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6165), - [anon_sym_BSLASHgls] = ACTIONS(6165), - [anon_sym_BSLASHGls] = ACTIONS(6165), - [anon_sym_BSLASHGLS] = ACTIONS(6165), - [anon_sym_BSLASHglspl] = ACTIONS(6165), - [anon_sym_BSLASHGlspl] = ACTIONS(6165), - [anon_sym_BSLASHGLSpl] = ACTIONS(6165), - [anon_sym_BSLASHglsdisp] = ACTIONS(6165), - [anon_sym_BSLASHglslink] = ACTIONS(6165), - [anon_sym_BSLASHglstext] = ACTIONS(6165), - [anon_sym_BSLASHGlstext] = ACTIONS(6165), - [anon_sym_BSLASHGLStext] = ACTIONS(6165), - [anon_sym_BSLASHglsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6165), - [anon_sym_BSLASHglsplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSplural] = ACTIONS(6165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHglsname] = ACTIONS(6165), - [anon_sym_BSLASHGlsname] = ACTIONS(6165), - [anon_sym_BSLASHGLSname] = ACTIONS(6165), - [anon_sym_BSLASHglssymbol] = ACTIONS(6165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6165), - [anon_sym_BSLASHglsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6165), - [anon_sym_BSLASHglsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6165), - [anon_sym_BSLASHglsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6165), - [anon_sym_BSLASHglsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6165), - [anon_sym_BSLASHglsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6165), - [anon_sym_BSLASHnewacronym] = ACTIONS(6165), - [anon_sym_BSLASHacrshort] = ACTIONS(6165), - [anon_sym_BSLASHAcrshort] = ACTIONS(6165), - [anon_sym_BSLASHACRshort] = ACTIONS(6165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6165), - [anon_sym_BSLASHacrlong] = ACTIONS(6165), - [anon_sym_BSLASHAcrlong] = ACTIONS(6165), - [anon_sym_BSLASHACRlong] = ACTIONS(6165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6165), - [anon_sym_BSLASHacrfull] = ACTIONS(6165), - [anon_sym_BSLASHAcrfull] = ACTIONS(6165), - [anon_sym_BSLASHACRfull] = ACTIONS(6165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6165), - [anon_sym_BSLASHacs] = ACTIONS(6165), - [anon_sym_BSLASHAcs] = ACTIONS(6165), - [anon_sym_BSLASHacsp] = ACTIONS(6165), - [anon_sym_BSLASHAcsp] = ACTIONS(6165), - [anon_sym_BSLASHacl] = ACTIONS(6165), - [anon_sym_BSLASHAcl] = ACTIONS(6165), - [anon_sym_BSLASHaclp] = ACTIONS(6165), - [anon_sym_BSLASHAclp] = ACTIONS(6165), - [anon_sym_BSLASHacf] = ACTIONS(6165), - [anon_sym_BSLASHAcf] = ACTIONS(6165), - [anon_sym_BSLASHacfp] = ACTIONS(6165), - [anon_sym_BSLASHAcfp] = ACTIONS(6165), - [anon_sym_BSLASHac] = ACTIONS(6165), - [anon_sym_BSLASHAc] = ACTIONS(6165), - [anon_sym_BSLASHacp] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6165), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6165), - [anon_sym_BSLASHcolor] = ACTIONS(6165), - [anon_sym_BSLASHcolorbox] = ACTIONS(6165), - [anon_sym_BSLASHtextcolor] = ACTIONS(6165), - [anon_sym_BSLASHpagecolor] = ACTIONS(6165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6165), - [anon_sym_BSLASHtext] = ACTIONS(6165), - [anon_sym_BSLASHintertext] = ACTIONS(6165), - [anon_sym_shortintertext] = ACTIONS(6165), - }, - [1219] = { - [sym_command_name] = ACTIONS(6429), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6429), - [anon_sym_LBRACK] = ACTIONS(6431), - [anon_sym_RBRACK] = ACTIONS(6431), - [anon_sym_COMMA] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(6431), - [anon_sym_LPAREN] = ACTIONS(6431), - [anon_sym_RPAREN] = ACTIONS(6431), - [anon_sym_BSLASHpart] = ACTIONS(6429), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddpart] = ACTIONS(6429), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6431), - [anon_sym_BSLASHchapter] = ACTIONS(6429), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddchap] = ACTIONS(6429), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsection] = ACTIONS(6429), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddsec] = ACTIONS(6429), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubsection] = ACTIONS(6429), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6429), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHparagraph] = ACTIONS(6429), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6429), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6431), - [anon_sym_BSLASHitem] = ACTIONS(6429), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6431), - [anon_sym_LBRACE] = ACTIONS(6431), - [sym_word] = ACTIONS(6429), - [sym_placeholder] = ACTIONS(6431), - [anon_sym_PLUS] = ACTIONS(6431), - [anon_sym_DASH] = ACTIONS(6431), - [anon_sym_STAR] = ACTIONS(6431), - [anon_sym_SLASH] = ACTIONS(6431), - [anon_sym_LT] = ACTIONS(6429), - [anon_sym_GT] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(6429), - [anon_sym_PIPE] = ACTIONS(6429), - [anon_sym_COLON] = ACTIONS(6429), - [anon_sym_SQUOTE] = ACTIONS(6429), - [anon_sym__] = ACTIONS(6431), - [anon_sym_CARET] = ACTIONS(6431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6431), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6431), - [anon_sym_DOLLAR] = ACTIONS(6429), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6431), - [anon_sym_BSLASHbegin] = ACTIONS(6429), - [anon_sym_BSLASHtitle] = ACTIONS(6429), - [anon_sym_BSLASHauthor] = ACTIONS(6429), - [anon_sym_BSLASHusepackage] = ACTIONS(6429), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6429), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6429), - [anon_sym_BSLASHinclude] = ACTIONS(6429), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6429), - [anon_sym_BSLASHinput] = ACTIONS(6429), - [anon_sym_BSLASHsubfile] = ACTIONS(6429), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6429), - [anon_sym_BSLASHbibliography] = ACTIONS(6429), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6429), - [anon_sym_BSLASHincludesvg] = ACTIONS(6429), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6429), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6429), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6429), - [anon_sym_BSLASHimport] = ACTIONS(6429), - [anon_sym_BSLASHsubimport] = ACTIONS(6429), - [anon_sym_BSLASHinputfrom] = ACTIONS(6429), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6429), - [anon_sym_BSLASHincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHcaption] = ACTIONS(6429), - [anon_sym_BSLASHcite] = ACTIONS(6429), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCite] = ACTIONS(6429), - [anon_sym_BSLASHnocite] = ACTIONS(6429), - [anon_sym_BSLASHcitet] = ACTIONS(6429), - [anon_sym_BSLASHcitep] = ACTIONS(6429), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteauthor] = ACTIONS(6429), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6429), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitetitle] = ACTIONS(6429), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteyear] = ACTIONS(6429), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitedate] = ACTIONS(6429), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteurl] = ACTIONS(6429), - [anon_sym_BSLASHfullcite] = ACTIONS(6429), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6429), - [anon_sym_BSLASHcitealt] = ACTIONS(6429), - [anon_sym_BSLASHcitealp] = ACTIONS(6429), - [anon_sym_BSLASHcitetext] = ACTIONS(6429), - [anon_sym_BSLASHparencite] = ACTIONS(6429), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHParencite] = ACTIONS(6429), - [anon_sym_BSLASHfootcite] = ACTIONS(6429), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6429), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6429), - [anon_sym_BSLASHtextcite] = ACTIONS(6429), - [anon_sym_BSLASHTextcite] = ACTIONS(6429), - [anon_sym_BSLASHsmartcite] = ACTIONS(6429), - [anon_sym_BSLASHSmartcite] = ACTIONS(6429), - [anon_sym_BSLASHsupercite] = ACTIONS(6429), - [anon_sym_BSLASHautocite] = ACTIONS(6429), - [anon_sym_BSLASHAutocite] = ACTIONS(6429), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHvolcite] = ACTIONS(6429), - [anon_sym_BSLASHVolcite] = ACTIONS(6429), - [anon_sym_BSLASHpvolcite] = ACTIONS(6429), - [anon_sym_BSLASHPvolcite] = ACTIONS(6429), - [anon_sym_BSLASHfvolcite] = ACTIONS(6429), - [anon_sym_BSLASHftvolcite] = ACTIONS(6429), - [anon_sym_BSLASHsvolcite] = ACTIONS(6429), - [anon_sym_BSLASHSvolcite] = ACTIONS(6429), - [anon_sym_BSLASHtvolcite] = ACTIONS(6429), - [anon_sym_BSLASHTvolcite] = ACTIONS(6429), - [anon_sym_BSLASHavolcite] = ACTIONS(6429), - [anon_sym_BSLASHAvolcite] = ACTIONS(6429), - [anon_sym_BSLASHnotecite] = ACTIONS(6429), - [anon_sym_BSLASHNotecite] = ACTIONS(6429), - [anon_sym_BSLASHpnotecite] = ACTIONS(6429), - [anon_sym_BSLASHPnotecite] = ACTIONS(6429), - [anon_sym_BSLASHfnotecite] = ACTIONS(6429), - [anon_sym_BSLASHlabel] = ACTIONS(6429), - [anon_sym_BSLASHref] = ACTIONS(6429), - [anon_sym_BSLASHeqref] = ACTIONS(6429), - [anon_sym_BSLASHvref] = ACTIONS(6429), - [anon_sym_BSLASHVref] = ACTIONS(6429), - [anon_sym_BSLASHautoref] = ACTIONS(6429), - [anon_sym_BSLASHpageref] = ACTIONS(6429), - [anon_sym_BSLASHcref] = ACTIONS(6429), - [anon_sym_BSLASHCref] = ACTIONS(6429), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnameCref] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHlabelcref] = ACTIONS(6429), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCrefrange] = ACTIONS(6429), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnewlabel] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6429), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6429), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6431), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHdef] = ACTIONS(6429), - [anon_sym_BSLASHlet] = ACTIONS(6429), - [anon_sym_BSLASHleft] = ACTIONS(6429), - [anon_sym_BSLASHbig] = ACTIONS(6429), - [anon_sym_BSLASHBig] = ACTIONS(6429), - [anon_sym_BSLASHbigg] = ACTIONS(6429), - [anon_sym_BSLASHBigg] = ACTIONS(6429), - [anon_sym_BSLASHbigl] = ACTIONS(6429), - [anon_sym_BSLASHBigl] = ACTIONS(6429), - [anon_sym_BSLASHbiggl] = ACTIONS(6429), - [anon_sym_BSLASHBiggl] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6429), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6429), - [anon_sym_BSLASHgls] = ACTIONS(6429), - [anon_sym_BSLASHGls] = ACTIONS(6429), - [anon_sym_BSLASHGLS] = ACTIONS(6429), - [anon_sym_BSLASHglspl] = ACTIONS(6429), - [anon_sym_BSLASHGlspl] = ACTIONS(6429), - [anon_sym_BSLASHGLSpl] = ACTIONS(6429), - [anon_sym_BSLASHglsdisp] = ACTIONS(6429), - [anon_sym_BSLASHglslink] = ACTIONS(6429), - [anon_sym_BSLASHglstext] = ACTIONS(6429), - [anon_sym_BSLASHGlstext] = ACTIONS(6429), - [anon_sym_BSLASHGLStext] = ACTIONS(6429), - [anon_sym_BSLASHglsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6429), - [anon_sym_BSLASHglsplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSplural] = ACTIONS(6429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHglsname] = ACTIONS(6429), - [anon_sym_BSLASHGlsname] = ACTIONS(6429), - [anon_sym_BSLASHGLSname] = ACTIONS(6429), - [anon_sym_BSLASHglssymbol] = ACTIONS(6429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6429), - [anon_sym_BSLASHglsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6429), - [anon_sym_BSLASHglsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6429), - [anon_sym_BSLASHglsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6429), - [anon_sym_BSLASHglsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6429), - [anon_sym_BSLASHglsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6429), - [anon_sym_BSLASHnewacronym] = ACTIONS(6429), - [anon_sym_BSLASHacrshort] = ACTIONS(6429), - [anon_sym_BSLASHAcrshort] = ACTIONS(6429), - [anon_sym_BSLASHACRshort] = ACTIONS(6429), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6429), - [anon_sym_BSLASHacrlong] = ACTIONS(6429), - [anon_sym_BSLASHAcrlong] = ACTIONS(6429), - [anon_sym_BSLASHACRlong] = ACTIONS(6429), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6429), - [anon_sym_BSLASHacrfull] = ACTIONS(6429), - [anon_sym_BSLASHAcrfull] = ACTIONS(6429), - [anon_sym_BSLASHACRfull] = ACTIONS(6429), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6429), - [anon_sym_BSLASHacs] = ACTIONS(6429), - [anon_sym_BSLASHAcs] = ACTIONS(6429), - [anon_sym_BSLASHacsp] = ACTIONS(6429), - [anon_sym_BSLASHAcsp] = ACTIONS(6429), - [anon_sym_BSLASHacl] = ACTIONS(6429), - [anon_sym_BSLASHAcl] = ACTIONS(6429), - [anon_sym_BSLASHaclp] = ACTIONS(6429), - [anon_sym_BSLASHAclp] = ACTIONS(6429), - [anon_sym_BSLASHacf] = ACTIONS(6429), - [anon_sym_BSLASHAcf] = ACTIONS(6429), - [anon_sym_BSLASHacfp] = ACTIONS(6429), - [anon_sym_BSLASHAcfp] = ACTIONS(6429), - [anon_sym_BSLASHac] = ACTIONS(6429), - [anon_sym_BSLASHAc] = ACTIONS(6429), - [anon_sym_BSLASHacp] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6429), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6429), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6429), - [anon_sym_BSLASHcolor] = ACTIONS(6429), - [anon_sym_BSLASHcolorbox] = ACTIONS(6429), - [anon_sym_BSLASHtextcolor] = ACTIONS(6429), - [anon_sym_BSLASHpagecolor] = ACTIONS(6429), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6429), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6429), - [anon_sym_BSLASHtext] = ACTIONS(6429), - [anon_sym_BSLASHintertext] = ACTIONS(6429), - [anon_sym_shortintertext] = ACTIONS(6429), - }, - [1220] = { - [sym_command_name] = ACTIONS(6433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6433), - [anon_sym_LBRACK] = ACTIONS(6435), - [anon_sym_RBRACK] = ACTIONS(6435), - [anon_sym_COMMA] = ACTIONS(6435), - [anon_sym_EQ] = ACTIONS(6435), - [anon_sym_LPAREN] = ACTIONS(6435), - [anon_sym_RPAREN] = ACTIONS(6435), - [anon_sym_BSLASHpart] = ACTIONS(6433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddpart] = ACTIONS(6433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6435), - [anon_sym_BSLASHchapter] = ACTIONS(6433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddchap] = ACTIONS(6433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsection] = ACTIONS(6433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddsec] = ACTIONS(6433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubsection] = ACTIONS(6433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHparagraph] = ACTIONS(6433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6435), - [anon_sym_BSLASHitem] = ACTIONS(6433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6435), - [anon_sym_LBRACE] = ACTIONS(6435), - [sym_word] = ACTIONS(6433), - [sym_placeholder] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6435), - [anon_sym_DASH] = ACTIONS(6435), - [anon_sym_STAR] = ACTIONS(6435), - [anon_sym_SLASH] = ACTIONS(6435), - [anon_sym_LT] = ACTIONS(6433), - [anon_sym_GT] = ACTIONS(6433), - [anon_sym_BANG] = ACTIONS(6433), - [anon_sym_PIPE] = ACTIONS(6433), - [anon_sym_COLON] = ACTIONS(6433), - [anon_sym_SQUOTE] = ACTIONS(6433), - [anon_sym__] = ACTIONS(6435), - [anon_sym_CARET] = ACTIONS(6435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6435), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6435), - [anon_sym_DOLLAR] = ACTIONS(6433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6435), - [anon_sym_BSLASHbegin] = ACTIONS(6433), - [anon_sym_BSLASHtitle] = ACTIONS(6433), - [anon_sym_BSLASHauthor] = ACTIONS(6433), - [anon_sym_BSLASHusepackage] = ACTIONS(6433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6433), - [anon_sym_BSLASHinclude] = ACTIONS(6433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6433), - [anon_sym_BSLASHinput] = ACTIONS(6433), - [anon_sym_BSLASHsubfile] = ACTIONS(6433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6433), - [anon_sym_BSLASHbibliography] = ACTIONS(6433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6433), - [anon_sym_BSLASHincludesvg] = ACTIONS(6433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6433), - [anon_sym_BSLASHimport] = ACTIONS(6433), - [anon_sym_BSLASHsubimport] = ACTIONS(6433), - [anon_sym_BSLASHinputfrom] = ACTIONS(6433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6433), - [anon_sym_BSLASHincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHcaption] = ACTIONS(6433), - [anon_sym_BSLASHcite] = ACTIONS(6433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCite] = ACTIONS(6433), - [anon_sym_BSLASHnocite] = ACTIONS(6433), - [anon_sym_BSLASHcitet] = ACTIONS(6433), - [anon_sym_BSLASHcitep] = ACTIONS(6433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteauthor] = ACTIONS(6433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitetitle] = ACTIONS(6433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteyear] = ACTIONS(6433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitedate] = ACTIONS(6433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteurl] = ACTIONS(6433), - [anon_sym_BSLASHfullcite] = ACTIONS(6433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6433), - [anon_sym_BSLASHcitealt] = ACTIONS(6433), - [anon_sym_BSLASHcitealp] = ACTIONS(6433), - [anon_sym_BSLASHcitetext] = ACTIONS(6433), - [anon_sym_BSLASHparencite] = ACTIONS(6433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHParencite] = ACTIONS(6433), - [anon_sym_BSLASHfootcite] = ACTIONS(6433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6433), - [anon_sym_BSLASHtextcite] = ACTIONS(6433), - [anon_sym_BSLASHTextcite] = ACTIONS(6433), - [anon_sym_BSLASHsmartcite] = ACTIONS(6433), - [anon_sym_BSLASHSmartcite] = ACTIONS(6433), - [anon_sym_BSLASHsupercite] = ACTIONS(6433), - [anon_sym_BSLASHautocite] = ACTIONS(6433), - [anon_sym_BSLASHAutocite] = ACTIONS(6433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHvolcite] = ACTIONS(6433), - [anon_sym_BSLASHVolcite] = ACTIONS(6433), - [anon_sym_BSLASHpvolcite] = ACTIONS(6433), - [anon_sym_BSLASHPvolcite] = ACTIONS(6433), - [anon_sym_BSLASHfvolcite] = ACTIONS(6433), - [anon_sym_BSLASHftvolcite] = ACTIONS(6433), - [anon_sym_BSLASHsvolcite] = ACTIONS(6433), - [anon_sym_BSLASHSvolcite] = ACTIONS(6433), - [anon_sym_BSLASHtvolcite] = ACTIONS(6433), - [anon_sym_BSLASHTvolcite] = ACTIONS(6433), - [anon_sym_BSLASHavolcite] = ACTIONS(6433), - [anon_sym_BSLASHAvolcite] = ACTIONS(6433), - [anon_sym_BSLASHnotecite] = ACTIONS(6433), - [anon_sym_BSLASHNotecite] = ACTIONS(6433), - [anon_sym_BSLASHpnotecite] = ACTIONS(6433), - [anon_sym_BSLASHPnotecite] = ACTIONS(6433), - [anon_sym_BSLASHfnotecite] = ACTIONS(6433), - [anon_sym_BSLASHlabel] = ACTIONS(6433), - [anon_sym_BSLASHref] = ACTIONS(6433), - [anon_sym_BSLASHeqref] = ACTIONS(6433), - [anon_sym_BSLASHvref] = ACTIONS(6433), - [anon_sym_BSLASHVref] = ACTIONS(6433), - [anon_sym_BSLASHautoref] = ACTIONS(6433), - [anon_sym_BSLASHpageref] = ACTIONS(6433), - [anon_sym_BSLASHcref] = ACTIONS(6433), - [anon_sym_BSLASHCref] = ACTIONS(6433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnameCref] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHlabelcref] = ACTIONS(6433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCrefrange] = ACTIONS(6433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnewlabel] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6435), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHdef] = ACTIONS(6433), - [anon_sym_BSLASHlet] = ACTIONS(6433), - [anon_sym_BSLASHleft] = ACTIONS(6433), - [anon_sym_BSLASHbig] = ACTIONS(6433), - [anon_sym_BSLASHBig] = ACTIONS(6433), - [anon_sym_BSLASHbigg] = ACTIONS(6433), - [anon_sym_BSLASHBigg] = ACTIONS(6433), - [anon_sym_BSLASHbigl] = ACTIONS(6433), - [anon_sym_BSLASHBigl] = ACTIONS(6433), - [anon_sym_BSLASHbiggl] = ACTIONS(6433), - [anon_sym_BSLASHBiggl] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6433), - [anon_sym_BSLASHgls] = ACTIONS(6433), - [anon_sym_BSLASHGls] = ACTIONS(6433), - [anon_sym_BSLASHGLS] = ACTIONS(6433), - [anon_sym_BSLASHglspl] = ACTIONS(6433), - [anon_sym_BSLASHGlspl] = ACTIONS(6433), - [anon_sym_BSLASHGLSpl] = ACTIONS(6433), - [anon_sym_BSLASHglsdisp] = ACTIONS(6433), - [anon_sym_BSLASHglslink] = ACTIONS(6433), - [anon_sym_BSLASHglstext] = ACTIONS(6433), - [anon_sym_BSLASHGlstext] = ACTIONS(6433), - [anon_sym_BSLASHGLStext] = ACTIONS(6433), - [anon_sym_BSLASHglsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6433), - [anon_sym_BSLASHglsplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSplural] = ACTIONS(6433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHglsname] = ACTIONS(6433), - [anon_sym_BSLASHGlsname] = ACTIONS(6433), - [anon_sym_BSLASHGLSname] = ACTIONS(6433), - [anon_sym_BSLASHglssymbol] = ACTIONS(6433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6433), - [anon_sym_BSLASHglsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6433), - [anon_sym_BSLASHglsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6433), - [anon_sym_BSLASHglsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6433), - [anon_sym_BSLASHglsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6433), - [anon_sym_BSLASHglsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6433), - [anon_sym_BSLASHnewacronym] = ACTIONS(6433), - [anon_sym_BSLASHacrshort] = ACTIONS(6433), - [anon_sym_BSLASHAcrshort] = ACTIONS(6433), - [anon_sym_BSLASHACRshort] = ACTIONS(6433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6433), - [anon_sym_BSLASHacrlong] = ACTIONS(6433), - [anon_sym_BSLASHAcrlong] = ACTIONS(6433), - [anon_sym_BSLASHACRlong] = ACTIONS(6433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6433), - [anon_sym_BSLASHacrfull] = ACTIONS(6433), - [anon_sym_BSLASHAcrfull] = ACTIONS(6433), - [anon_sym_BSLASHACRfull] = ACTIONS(6433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6433), - [anon_sym_BSLASHacs] = ACTIONS(6433), - [anon_sym_BSLASHAcs] = ACTIONS(6433), - [anon_sym_BSLASHacsp] = ACTIONS(6433), - [anon_sym_BSLASHAcsp] = ACTIONS(6433), - [anon_sym_BSLASHacl] = ACTIONS(6433), - [anon_sym_BSLASHAcl] = ACTIONS(6433), - [anon_sym_BSLASHaclp] = ACTIONS(6433), - [anon_sym_BSLASHAclp] = ACTIONS(6433), - [anon_sym_BSLASHacf] = ACTIONS(6433), - [anon_sym_BSLASHAcf] = ACTIONS(6433), - [anon_sym_BSLASHacfp] = ACTIONS(6433), - [anon_sym_BSLASHAcfp] = ACTIONS(6433), - [anon_sym_BSLASHac] = ACTIONS(6433), - [anon_sym_BSLASHAc] = ACTIONS(6433), - [anon_sym_BSLASHacp] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6433), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6433), - [anon_sym_BSLASHcolor] = ACTIONS(6433), - [anon_sym_BSLASHcolorbox] = ACTIONS(6433), - [anon_sym_BSLASHtextcolor] = ACTIONS(6433), - [anon_sym_BSLASHpagecolor] = ACTIONS(6433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6433), - [anon_sym_BSLASHtext] = ACTIONS(6433), - [anon_sym_BSLASHintertext] = ACTIONS(6433), - [anon_sym_shortintertext] = ACTIONS(6433), - }, - [1221] = { - [sym_command_name] = ACTIONS(6437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6437), - [anon_sym_LBRACK] = ACTIONS(6439), - [anon_sym_RBRACK] = ACTIONS(6439), - [anon_sym_COMMA] = ACTIONS(6439), - [anon_sym_EQ] = ACTIONS(6439), - [anon_sym_LPAREN] = ACTIONS(6439), - [anon_sym_RPAREN] = ACTIONS(6439), - [anon_sym_BSLASHpart] = ACTIONS(6437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddpart] = ACTIONS(6437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6439), - [anon_sym_BSLASHchapter] = ACTIONS(6437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddchap] = ACTIONS(6437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsection] = ACTIONS(6437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddsec] = ACTIONS(6437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubsection] = ACTIONS(6437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHparagraph] = ACTIONS(6437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6439), - [anon_sym_BSLASHitem] = ACTIONS(6437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6439), - [anon_sym_LBRACE] = ACTIONS(6439), - [sym_word] = ACTIONS(6437), - [sym_placeholder] = ACTIONS(6439), - [anon_sym_PLUS] = ACTIONS(6439), - [anon_sym_DASH] = ACTIONS(6439), - [anon_sym_STAR] = ACTIONS(6439), - [anon_sym_SLASH] = ACTIONS(6439), - [anon_sym_LT] = ACTIONS(6437), - [anon_sym_GT] = ACTIONS(6437), - [anon_sym_BANG] = ACTIONS(6437), - [anon_sym_PIPE] = ACTIONS(6437), - [anon_sym_COLON] = ACTIONS(6437), - [anon_sym_SQUOTE] = ACTIONS(6437), - [anon_sym__] = ACTIONS(6439), - [anon_sym_CARET] = ACTIONS(6439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6439), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6439), - [anon_sym_DOLLAR] = ACTIONS(6437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6439), - [anon_sym_BSLASHbegin] = ACTIONS(6437), - [anon_sym_BSLASHtitle] = ACTIONS(6437), - [anon_sym_BSLASHauthor] = ACTIONS(6437), - [anon_sym_BSLASHusepackage] = ACTIONS(6437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6437), - [anon_sym_BSLASHinclude] = ACTIONS(6437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6437), - [anon_sym_BSLASHinput] = ACTIONS(6437), - [anon_sym_BSLASHsubfile] = ACTIONS(6437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6437), - [anon_sym_BSLASHbibliography] = ACTIONS(6437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6437), - [anon_sym_BSLASHincludesvg] = ACTIONS(6437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6437), - [anon_sym_BSLASHimport] = ACTIONS(6437), - [anon_sym_BSLASHsubimport] = ACTIONS(6437), - [anon_sym_BSLASHinputfrom] = ACTIONS(6437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6437), - [anon_sym_BSLASHincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHcaption] = ACTIONS(6437), - [anon_sym_BSLASHcite] = ACTIONS(6437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCite] = ACTIONS(6437), - [anon_sym_BSLASHnocite] = ACTIONS(6437), - [anon_sym_BSLASHcitet] = ACTIONS(6437), - [anon_sym_BSLASHcitep] = ACTIONS(6437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteauthor] = ACTIONS(6437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitetitle] = ACTIONS(6437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteyear] = ACTIONS(6437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitedate] = ACTIONS(6437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteurl] = ACTIONS(6437), - [anon_sym_BSLASHfullcite] = ACTIONS(6437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6437), - [anon_sym_BSLASHcitealt] = ACTIONS(6437), - [anon_sym_BSLASHcitealp] = ACTIONS(6437), - [anon_sym_BSLASHcitetext] = ACTIONS(6437), - [anon_sym_BSLASHparencite] = ACTIONS(6437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHParencite] = ACTIONS(6437), - [anon_sym_BSLASHfootcite] = ACTIONS(6437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6437), - [anon_sym_BSLASHtextcite] = ACTIONS(6437), - [anon_sym_BSLASHTextcite] = ACTIONS(6437), - [anon_sym_BSLASHsmartcite] = ACTIONS(6437), - [anon_sym_BSLASHSmartcite] = ACTIONS(6437), - [anon_sym_BSLASHsupercite] = ACTIONS(6437), - [anon_sym_BSLASHautocite] = ACTIONS(6437), - [anon_sym_BSLASHAutocite] = ACTIONS(6437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHvolcite] = ACTIONS(6437), - [anon_sym_BSLASHVolcite] = ACTIONS(6437), - [anon_sym_BSLASHpvolcite] = ACTIONS(6437), - [anon_sym_BSLASHPvolcite] = ACTIONS(6437), - [anon_sym_BSLASHfvolcite] = ACTIONS(6437), - [anon_sym_BSLASHftvolcite] = ACTIONS(6437), - [anon_sym_BSLASHsvolcite] = ACTIONS(6437), - [anon_sym_BSLASHSvolcite] = ACTIONS(6437), - [anon_sym_BSLASHtvolcite] = ACTIONS(6437), - [anon_sym_BSLASHTvolcite] = ACTIONS(6437), - [anon_sym_BSLASHavolcite] = ACTIONS(6437), - [anon_sym_BSLASHAvolcite] = ACTIONS(6437), - [anon_sym_BSLASHnotecite] = ACTIONS(6437), - [anon_sym_BSLASHNotecite] = ACTIONS(6437), - [anon_sym_BSLASHpnotecite] = ACTIONS(6437), - [anon_sym_BSLASHPnotecite] = ACTIONS(6437), - [anon_sym_BSLASHfnotecite] = ACTIONS(6437), - [anon_sym_BSLASHlabel] = ACTIONS(6437), - [anon_sym_BSLASHref] = ACTIONS(6437), - [anon_sym_BSLASHeqref] = ACTIONS(6437), - [anon_sym_BSLASHvref] = ACTIONS(6437), - [anon_sym_BSLASHVref] = ACTIONS(6437), - [anon_sym_BSLASHautoref] = ACTIONS(6437), - [anon_sym_BSLASHpageref] = ACTIONS(6437), - [anon_sym_BSLASHcref] = ACTIONS(6437), - [anon_sym_BSLASHCref] = ACTIONS(6437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnameCref] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHlabelcref] = ACTIONS(6437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCrefrange] = ACTIONS(6437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnewlabel] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6439), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHdef] = ACTIONS(6437), - [anon_sym_BSLASHlet] = ACTIONS(6437), - [anon_sym_BSLASHleft] = ACTIONS(6437), - [anon_sym_BSLASHbig] = ACTIONS(6437), - [anon_sym_BSLASHBig] = ACTIONS(6437), - [anon_sym_BSLASHbigg] = ACTIONS(6437), - [anon_sym_BSLASHBigg] = ACTIONS(6437), - [anon_sym_BSLASHbigl] = ACTIONS(6437), - [anon_sym_BSLASHBigl] = ACTIONS(6437), - [anon_sym_BSLASHbiggl] = ACTIONS(6437), - [anon_sym_BSLASHBiggl] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6437), - [anon_sym_BSLASHgls] = ACTIONS(6437), - [anon_sym_BSLASHGls] = ACTIONS(6437), - [anon_sym_BSLASHGLS] = ACTIONS(6437), - [anon_sym_BSLASHglspl] = ACTIONS(6437), - [anon_sym_BSLASHGlspl] = ACTIONS(6437), - [anon_sym_BSLASHGLSpl] = ACTIONS(6437), - [anon_sym_BSLASHglsdisp] = ACTIONS(6437), - [anon_sym_BSLASHglslink] = ACTIONS(6437), - [anon_sym_BSLASHglstext] = ACTIONS(6437), - [anon_sym_BSLASHGlstext] = ACTIONS(6437), - [anon_sym_BSLASHGLStext] = ACTIONS(6437), - [anon_sym_BSLASHglsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6437), - [anon_sym_BSLASHglsplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSplural] = ACTIONS(6437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHglsname] = ACTIONS(6437), - [anon_sym_BSLASHGlsname] = ACTIONS(6437), - [anon_sym_BSLASHGLSname] = ACTIONS(6437), - [anon_sym_BSLASHglssymbol] = ACTIONS(6437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6437), - [anon_sym_BSLASHglsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6437), - [anon_sym_BSLASHglsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6437), - [anon_sym_BSLASHglsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6437), - [anon_sym_BSLASHglsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6437), - [anon_sym_BSLASHglsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6437), - [anon_sym_BSLASHnewacronym] = ACTIONS(6437), - [anon_sym_BSLASHacrshort] = ACTIONS(6437), - [anon_sym_BSLASHAcrshort] = ACTIONS(6437), - [anon_sym_BSLASHACRshort] = ACTIONS(6437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6437), - [anon_sym_BSLASHacrlong] = ACTIONS(6437), - [anon_sym_BSLASHAcrlong] = ACTIONS(6437), - [anon_sym_BSLASHACRlong] = ACTIONS(6437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6437), - [anon_sym_BSLASHacrfull] = ACTIONS(6437), - [anon_sym_BSLASHAcrfull] = ACTIONS(6437), - [anon_sym_BSLASHACRfull] = ACTIONS(6437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6437), - [anon_sym_BSLASHacs] = ACTIONS(6437), - [anon_sym_BSLASHAcs] = ACTIONS(6437), - [anon_sym_BSLASHacsp] = ACTIONS(6437), - [anon_sym_BSLASHAcsp] = ACTIONS(6437), - [anon_sym_BSLASHacl] = ACTIONS(6437), - [anon_sym_BSLASHAcl] = ACTIONS(6437), - [anon_sym_BSLASHaclp] = ACTIONS(6437), - [anon_sym_BSLASHAclp] = ACTIONS(6437), - [anon_sym_BSLASHacf] = ACTIONS(6437), - [anon_sym_BSLASHAcf] = ACTIONS(6437), - [anon_sym_BSLASHacfp] = ACTIONS(6437), - [anon_sym_BSLASHAcfp] = ACTIONS(6437), - [anon_sym_BSLASHac] = ACTIONS(6437), - [anon_sym_BSLASHAc] = ACTIONS(6437), - [anon_sym_BSLASHacp] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6437), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6437), - [anon_sym_BSLASHcolor] = ACTIONS(6437), - [anon_sym_BSLASHcolorbox] = ACTIONS(6437), - [anon_sym_BSLASHtextcolor] = ACTIONS(6437), - [anon_sym_BSLASHpagecolor] = ACTIONS(6437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6437), - [anon_sym_BSLASHtext] = ACTIONS(6437), - [anon_sym_BSLASHintertext] = ACTIONS(6437), - [anon_sym_shortintertext] = ACTIONS(6437), - }, - [1222] = { - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddpart] = ACTIONS(145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHchapter] = ACTIONS(145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddchap] = ACTIONS(145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), - [anon_sym_BSLASHsection] = ACTIONS(145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddsec] = ACTIONS(145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHparagraph] = ACTIONS(145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHitem] = ACTIONS(145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASH_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [1223] = { - [sym_command_name] = ACTIONS(6485), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6485), - [anon_sym_LBRACK] = ACTIONS(6487), - [anon_sym_RBRACK] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(6487), - [anon_sym_EQ] = ACTIONS(6487), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(6487), - [anon_sym_BSLASHpart] = ACTIONS(6485), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddpart] = ACTIONS(6485), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6487), - [anon_sym_BSLASHchapter] = ACTIONS(6485), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddchap] = ACTIONS(6485), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsection] = ACTIONS(6485), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddsec] = ACTIONS(6485), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubsection] = ACTIONS(6485), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6485), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHparagraph] = ACTIONS(6485), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6485), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6487), - [anon_sym_BSLASHitem] = ACTIONS(6485), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6487), - [anon_sym_LBRACE] = ACTIONS(6487), - [sym_word] = ACTIONS(6485), - [sym_placeholder] = ACTIONS(6487), - [anon_sym_PLUS] = ACTIONS(6487), - [anon_sym_DASH] = ACTIONS(6487), - [anon_sym_STAR] = ACTIONS(6487), - [anon_sym_SLASH] = ACTIONS(6487), - [anon_sym_LT] = ACTIONS(6485), - [anon_sym_GT] = ACTIONS(6485), - [anon_sym_BANG] = ACTIONS(6485), - [anon_sym_PIPE] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6485), - [anon_sym_SQUOTE] = ACTIONS(6485), - [anon_sym__] = ACTIONS(6487), - [anon_sym_CARET] = ACTIONS(6487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6487), - [anon_sym_DOLLAR] = ACTIONS(6485), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6487), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6487), - [anon_sym_BSLASHbegin] = ACTIONS(6485), - [anon_sym_BSLASHtitle] = ACTIONS(6485), - [anon_sym_BSLASHauthor] = ACTIONS(6485), - [anon_sym_BSLASHusepackage] = ACTIONS(6485), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6485), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6485), - [anon_sym_BSLASHinclude] = ACTIONS(6485), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6485), - [anon_sym_BSLASHinput] = ACTIONS(6485), - [anon_sym_BSLASHsubfile] = ACTIONS(6485), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6485), - [anon_sym_BSLASHbibliography] = ACTIONS(6485), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6485), - [anon_sym_BSLASHincludesvg] = ACTIONS(6485), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6485), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6485), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6485), - [anon_sym_BSLASHimport] = ACTIONS(6485), - [anon_sym_BSLASHsubimport] = ACTIONS(6485), - [anon_sym_BSLASHinputfrom] = ACTIONS(6485), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6485), - [anon_sym_BSLASHincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHcaption] = ACTIONS(6485), - [anon_sym_BSLASHcite] = ACTIONS(6485), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCite] = ACTIONS(6485), - [anon_sym_BSLASHnocite] = ACTIONS(6485), - [anon_sym_BSLASHcitet] = ACTIONS(6485), - [anon_sym_BSLASHcitep] = ACTIONS(6485), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteauthor] = ACTIONS(6485), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6485), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitetitle] = ACTIONS(6485), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteyear] = ACTIONS(6485), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitedate] = ACTIONS(6485), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteurl] = ACTIONS(6485), - [anon_sym_BSLASHfullcite] = ACTIONS(6485), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6485), - [anon_sym_BSLASHcitealt] = ACTIONS(6485), - [anon_sym_BSLASHcitealp] = ACTIONS(6485), - [anon_sym_BSLASHcitetext] = ACTIONS(6485), - [anon_sym_BSLASHparencite] = ACTIONS(6485), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHParencite] = ACTIONS(6485), - [anon_sym_BSLASHfootcite] = ACTIONS(6485), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6485), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6485), - [anon_sym_BSLASHtextcite] = ACTIONS(6485), - [anon_sym_BSLASHTextcite] = ACTIONS(6485), - [anon_sym_BSLASHsmartcite] = ACTIONS(6485), - [anon_sym_BSLASHSmartcite] = ACTIONS(6485), - [anon_sym_BSLASHsupercite] = ACTIONS(6485), - [anon_sym_BSLASHautocite] = ACTIONS(6485), - [anon_sym_BSLASHAutocite] = ACTIONS(6485), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHvolcite] = ACTIONS(6485), - [anon_sym_BSLASHVolcite] = ACTIONS(6485), - [anon_sym_BSLASHpvolcite] = ACTIONS(6485), - [anon_sym_BSLASHPvolcite] = ACTIONS(6485), - [anon_sym_BSLASHfvolcite] = ACTIONS(6485), - [anon_sym_BSLASHftvolcite] = ACTIONS(6485), - [anon_sym_BSLASHsvolcite] = ACTIONS(6485), - [anon_sym_BSLASHSvolcite] = ACTIONS(6485), - [anon_sym_BSLASHtvolcite] = ACTIONS(6485), - [anon_sym_BSLASHTvolcite] = ACTIONS(6485), - [anon_sym_BSLASHavolcite] = ACTIONS(6485), - [anon_sym_BSLASHAvolcite] = ACTIONS(6485), - [anon_sym_BSLASHnotecite] = ACTIONS(6485), - [anon_sym_BSLASHNotecite] = ACTIONS(6485), - [anon_sym_BSLASHpnotecite] = ACTIONS(6485), - [anon_sym_BSLASHPnotecite] = ACTIONS(6485), - [anon_sym_BSLASHfnotecite] = ACTIONS(6485), - [anon_sym_BSLASHlabel] = ACTIONS(6485), - [anon_sym_BSLASHref] = ACTIONS(6485), - [anon_sym_BSLASHeqref] = ACTIONS(6485), - [anon_sym_BSLASHvref] = ACTIONS(6485), - [anon_sym_BSLASHVref] = ACTIONS(6485), - [anon_sym_BSLASHautoref] = ACTIONS(6485), - [anon_sym_BSLASHpageref] = ACTIONS(6485), - [anon_sym_BSLASHcref] = ACTIONS(6485), - [anon_sym_BSLASHCref] = ACTIONS(6485), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnameCref] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHlabelcref] = ACTIONS(6485), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCrefrange] = ACTIONS(6485), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnewlabel] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6485), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6485), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6487), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHdef] = ACTIONS(6485), - [anon_sym_BSLASHlet] = ACTIONS(6485), - [anon_sym_BSLASHleft] = ACTIONS(6485), - [anon_sym_BSLASHbig] = ACTIONS(6485), - [anon_sym_BSLASHBig] = ACTIONS(6485), - [anon_sym_BSLASHbigg] = ACTIONS(6485), - [anon_sym_BSLASHBigg] = ACTIONS(6485), - [anon_sym_BSLASHbigl] = ACTIONS(6485), - [anon_sym_BSLASHBigl] = ACTIONS(6485), - [anon_sym_BSLASHbiggl] = ACTIONS(6485), - [anon_sym_BSLASHBiggl] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6485), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6485), - [anon_sym_BSLASHgls] = ACTIONS(6485), - [anon_sym_BSLASHGls] = ACTIONS(6485), - [anon_sym_BSLASHGLS] = ACTIONS(6485), - [anon_sym_BSLASHglspl] = ACTIONS(6485), - [anon_sym_BSLASHGlspl] = ACTIONS(6485), - [anon_sym_BSLASHGLSpl] = ACTIONS(6485), - [anon_sym_BSLASHglsdisp] = ACTIONS(6485), - [anon_sym_BSLASHglslink] = ACTIONS(6485), - [anon_sym_BSLASHglstext] = ACTIONS(6485), - [anon_sym_BSLASHGlstext] = ACTIONS(6485), - [anon_sym_BSLASHGLStext] = ACTIONS(6485), - [anon_sym_BSLASHglsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6485), - [anon_sym_BSLASHglsplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSplural] = ACTIONS(6485), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHglsname] = ACTIONS(6485), - [anon_sym_BSLASHGlsname] = ACTIONS(6485), - [anon_sym_BSLASHGLSname] = ACTIONS(6485), - [anon_sym_BSLASHglssymbol] = ACTIONS(6485), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6485), - [anon_sym_BSLASHglsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6485), - [anon_sym_BSLASHglsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6485), - [anon_sym_BSLASHglsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6485), - [anon_sym_BSLASHglsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6485), - [anon_sym_BSLASHglsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6485), - [anon_sym_BSLASHnewacronym] = ACTIONS(6485), - [anon_sym_BSLASHacrshort] = ACTIONS(6485), - [anon_sym_BSLASHAcrshort] = ACTIONS(6485), - [anon_sym_BSLASHACRshort] = ACTIONS(6485), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6485), - [anon_sym_BSLASHacrlong] = ACTIONS(6485), - [anon_sym_BSLASHAcrlong] = ACTIONS(6485), - [anon_sym_BSLASHACRlong] = ACTIONS(6485), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6485), - [anon_sym_BSLASHacrfull] = ACTIONS(6485), - [anon_sym_BSLASHAcrfull] = ACTIONS(6485), - [anon_sym_BSLASHACRfull] = ACTIONS(6485), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6485), - [anon_sym_BSLASHacs] = ACTIONS(6485), - [anon_sym_BSLASHAcs] = ACTIONS(6485), - [anon_sym_BSLASHacsp] = ACTIONS(6485), - [anon_sym_BSLASHAcsp] = ACTIONS(6485), - [anon_sym_BSLASHacl] = ACTIONS(6485), - [anon_sym_BSLASHAcl] = ACTIONS(6485), - [anon_sym_BSLASHaclp] = ACTIONS(6485), - [anon_sym_BSLASHAclp] = ACTIONS(6485), - [anon_sym_BSLASHacf] = ACTIONS(6485), - [anon_sym_BSLASHAcf] = ACTIONS(6485), - [anon_sym_BSLASHacfp] = ACTIONS(6485), - [anon_sym_BSLASHAcfp] = ACTIONS(6485), - [anon_sym_BSLASHac] = ACTIONS(6485), - [anon_sym_BSLASHAc] = ACTIONS(6485), - [anon_sym_BSLASHacp] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6485), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6485), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6485), - [anon_sym_BSLASHcolor] = ACTIONS(6485), - [anon_sym_BSLASHcolorbox] = ACTIONS(6485), - [anon_sym_BSLASHtextcolor] = ACTIONS(6485), - [anon_sym_BSLASHpagecolor] = ACTIONS(6485), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6485), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6485), - [anon_sym_BSLASHtext] = ACTIONS(6485), - [anon_sym_BSLASHintertext] = ACTIONS(6485), - [anon_sym_shortintertext] = ACTIONS(6485), - }, - [1224] = { - [sym_command_name] = ACTIONS(6481), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(6483), - [anon_sym_COMMA] = ACTIONS(6483), - [anon_sym_EQ] = ACTIONS(6483), - [anon_sym_LPAREN] = ACTIONS(6483), - [anon_sym_RPAREN] = ACTIONS(6483), - [anon_sym_BSLASHpart] = ACTIONS(6481), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddpart] = ACTIONS(6481), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6483), - [anon_sym_BSLASHchapter] = ACTIONS(6481), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddchap] = ACTIONS(6481), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsection] = ACTIONS(6481), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddsec] = ACTIONS(6481), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubsection] = ACTIONS(6481), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6481), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHparagraph] = ACTIONS(6481), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6481), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6483), - [anon_sym_BSLASHitem] = ACTIONS(6481), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6483), - [anon_sym_LBRACE] = ACTIONS(6483), - [sym_word] = ACTIONS(6481), - [sym_placeholder] = ACTIONS(6483), - [anon_sym_PLUS] = ACTIONS(6483), - [anon_sym_DASH] = ACTIONS(6483), - [anon_sym_STAR] = ACTIONS(6483), - [anon_sym_SLASH] = ACTIONS(6483), - [anon_sym_LT] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6481), - [anon_sym_BANG] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6481), - [anon_sym_COLON] = ACTIONS(6481), - [anon_sym_SQUOTE] = ACTIONS(6481), - [anon_sym__] = ACTIONS(6483), - [anon_sym_CARET] = ACTIONS(6483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6483), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6483), - [anon_sym_DOLLAR] = ACTIONS(6481), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6483), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6483), - [anon_sym_BSLASHbegin] = ACTIONS(6481), - [anon_sym_BSLASHtitle] = ACTIONS(6481), - [anon_sym_BSLASHauthor] = ACTIONS(6481), - [anon_sym_BSLASHusepackage] = ACTIONS(6481), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6481), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6481), - [anon_sym_BSLASHinclude] = ACTIONS(6481), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6481), - [anon_sym_BSLASHinput] = ACTIONS(6481), - [anon_sym_BSLASHsubfile] = ACTIONS(6481), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6481), - [anon_sym_BSLASHbibliography] = ACTIONS(6481), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6481), - [anon_sym_BSLASHincludesvg] = ACTIONS(6481), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6481), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6481), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6481), - [anon_sym_BSLASHimport] = ACTIONS(6481), - [anon_sym_BSLASHsubimport] = ACTIONS(6481), - [anon_sym_BSLASHinputfrom] = ACTIONS(6481), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6481), - [anon_sym_BSLASHincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHcaption] = ACTIONS(6481), - [anon_sym_BSLASHcite] = ACTIONS(6481), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCite] = ACTIONS(6481), - [anon_sym_BSLASHnocite] = ACTIONS(6481), - [anon_sym_BSLASHcitet] = ACTIONS(6481), - [anon_sym_BSLASHcitep] = ACTIONS(6481), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteauthor] = ACTIONS(6481), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6481), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitetitle] = ACTIONS(6481), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteyear] = ACTIONS(6481), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitedate] = ACTIONS(6481), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteurl] = ACTIONS(6481), - [anon_sym_BSLASHfullcite] = ACTIONS(6481), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6481), - [anon_sym_BSLASHcitealt] = ACTIONS(6481), - [anon_sym_BSLASHcitealp] = ACTIONS(6481), - [anon_sym_BSLASHcitetext] = ACTIONS(6481), - [anon_sym_BSLASHparencite] = ACTIONS(6481), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHParencite] = ACTIONS(6481), - [anon_sym_BSLASHfootcite] = ACTIONS(6481), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6481), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6481), - [anon_sym_BSLASHtextcite] = ACTIONS(6481), - [anon_sym_BSLASHTextcite] = ACTIONS(6481), - [anon_sym_BSLASHsmartcite] = ACTIONS(6481), - [anon_sym_BSLASHSmartcite] = ACTIONS(6481), - [anon_sym_BSLASHsupercite] = ACTIONS(6481), - [anon_sym_BSLASHautocite] = ACTIONS(6481), - [anon_sym_BSLASHAutocite] = ACTIONS(6481), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHvolcite] = ACTIONS(6481), - [anon_sym_BSLASHVolcite] = ACTIONS(6481), - [anon_sym_BSLASHpvolcite] = ACTIONS(6481), - [anon_sym_BSLASHPvolcite] = ACTIONS(6481), - [anon_sym_BSLASHfvolcite] = ACTIONS(6481), - [anon_sym_BSLASHftvolcite] = ACTIONS(6481), - [anon_sym_BSLASHsvolcite] = ACTIONS(6481), - [anon_sym_BSLASHSvolcite] = ACTIONS(6481), - [anon_sym_BSLASHtvolcite] = ACTIONS(6481), - [anon_sym_BSLASHTvolcite] = ACTIONS(6481), - [anon_sym_BSLASHavolcite] = ACTIONS(6481), - [anon_sym_BSLASHAvolcite] = ACTIONS(6481), - [anon_sym_BSLASHnotecite] = ACTIONS(6481), - [anon_sym_BSLASHNotecite] = ACTIONS(6481), - [anon_sym_BSLASHpnotecite] = ACTIONS(6481), - [anon_sym_BSLASHPnotecite] = ACTIONS(6481), - [anon_sym_BSLASHfnotecite] = ACTIONS(6481), - [anon_sym_BSLASHlabel] = ACTIONS(6481), - [anon_sym_BSLASHref] = ACTIONS(6481), - [anon_sym_BSLASHeqref] = ACTIONS(6481), - [anon_sym_BSLASHvref] = ACTIONS(6481), - [anon_sym_BSLASHVref] = ACTIONS(6481), - [anon_sym_BSLASHautoref] = ACTIONS(6481), - [anon_sym_BSLASHpageref] = ACTIONS(6481), - [anon_sym_BSLASHcref] = ACTIONS(6481), - [anon_sym_BSLASHCref] = ACTIONS(6481), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnameCref] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHlabelcref] = ACTIONS(6481), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCrefrange] = ACTIONS(6481), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnewlabel] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6481), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6481), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6483), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHdef] = ACTIONS(6481), - [anon_sym_BSLASHlet] = ACTIONS(6481), - [anon_sym_BSLASHleft] = ACTIONS(6481), - [anon_sym_BSLASHbig] = ACTIONS(6481), - [anon_sym_BSLASHBig] = ACTIONS(6481), - [anon_sym_BSLASHbigg] = ACTIONS(6481), - [anon_sym_BSLASHBigg] = ACTIONS(6481), - [anon_sym_BSLASHbigl] = ACTIONS(6481), - [anon_sym_BSLASHBigl] = ACTIONS(6481), - [anon_sym_BSLASHbiggl] = ACTIONS(6481), - [anon_sym_BSLASHBiggl] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6481), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6481), - [anon_sym_BSLASHgls] = ACTIONS(6481), - [anon_sym_BSLASHGls] = ACTIONS(6481), - [anon_sym_BSLASHGLS] = ACTIONS(6481), - [anon_sym_BSLASHglspl] = ACTIONS(6481), - [anon_sym_BSLASHGlspl] = ACTIONS(6481), - [anon_sym_BSLASHGLSpl] = ACTIONS(6481), - [anon_sym_BSLASHglsdisp] = ACTIONS(6481), - [anon_sym_BSLASHglslink] = ACTIONS(6481), - [anon_sym_BSLASHglstext] = ACTIONS(6481), - [anon_sym_BSLASHGlstext] = ACTIONS(6481), - [anon_sym_BSLASHGLStext] = ACTIONS(6481), - [anon_sym_BSLASHglsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6481), - [anon_sym_BSLASHglsplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSplural] = ACTIONS(6481), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHglsname] = ACTIONS(6481), - [anon_sym_BSLASHGlsname] = ACTIONS(6481), - [anon_sym_BSLASHGLSname] = ACTIONS(6481), - [anon_sym_BSLASHglssymbol] = ACTIONS(6481), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6481), - [anon_sym_BSLASHglsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6481), - [anon_sym_BSLASHglsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6481), - [anon_sym_BSLASHglsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6481), - [anon_sym_BSLASHglsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6481), - [anon_sym_BSLASHglsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6481), - [anon_sym_BSLASHnewacronym] = ACTIONS(6481), - [anon_sym_BSLASHacrshort] = ACTIONS(6481), - [anon_sym_BSLASHAcrshort] = ACTIONS(6481), - [anon_sym_BSLASHACRshort] = ACTIONS(6481), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6481), - [anon_sym_BSLASHacrlong] = ACTIONS(6481), - [anon_sym_BSLASHAcrlong] = ACTIONS(6481), - [anon_sym_BSLASHACRlong] = ACTIONS(6481), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6481), - [anon_sym_BSLASHacrfull] = ACTIONS(6481), - [anon_sym_BSLASHAcrfull] = ACTIONS(6481), - [anon_sym_BSLASHACRfull] = ACTIONS(6481), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6481), - [anon_sym_BSLASHacs] = ACTIONS(6481), - [anon_sym_BSLASHAcs] = ACTIONS(6481), - [anon_sym_BSLASHacsp] = ACTIONS(6481), - [anon_sym_BSLASHAcsp] = ACTIONS(6481), - [anon_sym_BSLASHacl] = ACTIONS(6481), - [anon_sym_BSLASHAcl] = ACTIONS(6481), - [anon_sym_BSLASHaclp] = ACTIONS(6481), - [anon_sym_BSLASHAclp] = ACTIONS(6481), - [anon_sym_BSLASHacf] = ACTIONS(6481), - [anon_sym_BSLASHAcf] = ACTIONS(6481), - [anon_sym_BSLASHacfp] = ACTIONS(6481), - [anon_sym_BSLASHAcfp] = ACTIONS(6481), - [anon_sym_BSLASHac] = ACTIONS(6481), - [anon_sym_BSLASHAc] = ACTIONS(6481), - [anon_sym_BSLASHacp] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6481), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6481), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6481), - [anon_sym_BSLASHcolor] = ACTIONS(6481), - [anon_sym_BSLASHcolorbox] = ACTIONS(6481), - [anon_sym_BSLASHtextcolor] = ACTIONS(6481), - [anon_sym_BSLASHpagecolor] = ACTIONS(6481), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6481), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6481), - [anon_sym_BSLASHtext] = ACTIONS(6481), - [anon_sym_BSLASHintertext] = ACTIONS(6481), - [anon_sym_shortintertext] = ACTIONS(6481), - }, - [1225] = { - [sym_command_name] = ACTIONS(6441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6441), - [anon_sym_LBRACK] = ACTIONS(6443), - [anon_sym_RBRACK] = ACTIONS(6443), - [anon_sym_COMMA] = ACTIONS(6443), - [anon_sym_EQ] = ACTIONS(6443), - [anon_sym_LPAREN] = ACTIONS(6443), - [anon_sym_RPAREN] = ACTIONS(6443), - [anon_sym_BSLASHpart] = ACTIONS(6441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddpart] = ACTIONS(6441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6443), - [anon_sym_BSLASHchapter] = ACTIONS(6441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddchap] = ACTIONS(6441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsection] = ACTIONS(6441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddsec] = ACTIONS(6441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubsection] = ACTIONS(6441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHparagraph] = ACTIONS(6441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6443), - [anon_sym_BSLASHitem] = ACTIONS(6441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6443), - [anon_sym_LBRACE] = ACTIONS(6443), - [sym_word] = ACTIONS(6441), - [sym_placeholder] = ACTIONS(6443), - [anon_sym_PLUS] = ACTIONS(6443), - [anon_sym_DASH] = ACTIONS(6443), - [anon_sym_STAR] = ACTIONS(6443), - [anon_sym_SLASH] = ACTIONS(6443), - [anon_sym_LT] = ACTIONS(6441), - [anon_sym_GT] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(6441), - [anon_sym_PIPE] = ACTIONS(6441), - [anon_sym_COLON] = ACTIONS(6441), - [anon_sym_SQUOTE] = ACTIONS(6441), - [anon_sym__] = ACTIONS(6443), - [anon_sym_CARET] = ACTIONS(6443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6443), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6443), - [anon_sym_DOLLAR] = ACTIONS(6441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6443), - [anon_sym_BSLASHbegin] = ACTIONS(6441), - [anon_sym_BSLASHtitle] = ACTIONS(6441), - [anon_sym_BSLASHauthor] = ACTIONS(6441), - [anon_sym_BSLASHusepackage] = ACTIONS(6441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6441), - [anon_sym_BSLASHinclude] = ACTIONS(6441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6441), - [anon_sym_BSLASHinput] = ACTIONS(6441), - [anon_sym_BSLASHsubfile] = ACTIONS(6441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6441), - [anon_sym_BSLASHbibliography] = ACTIONS(6441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6441), - [anon_sym_BSLASHincludesvg] = ACTIONS(6441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6441), - [anon_sym_BSLASHimport] = ACTIONS(6441), - [anon_sym_BSLASHsubimport] = ACTIONS(6441), - [anon_sym_BSLASHinputfrom] = ACTIONS(6441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6441), - [anon_sym_BSLASHincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHcaption] = ACTIONS(6441), - [anon_sym_BSLASHcite] = ACTIONS(6441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCite] = ACTIONS(6441), - [anon_sym_BSLASHnocite] = ACTIONS(6441), - [anon_sym_BSLASHcitet] = ACTIONS(6441), - [anon_sym_BSLASHcitep] = ACTIONS(6441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteauthor] = ACTIONS(6441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitetitle] = ACTIONS(6441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteyear] = ACTIONS(6441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitedate] = ACTIONS(6441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteurl] = ACTIONS(6441), - [anon_sym_BSLASHfullcite] = ACTIONS(6441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6441), - [anon_sym_BSLASHcitealt] = ACTIONS(6441), - [anon_sym_BSLASHcitealp] = ACTIONS(6441), - [anon_sym_BSLASHcitetext] = ACTIONS(6441), - [anon_sym_BSLASHparencite] = ACTIONS(6441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHParencite] = ACTIONS(6441), - [anon_sym_BSLASHfootcite] = ACTIONS(6441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6441), - [anon_sym_BSLASHtextcite] = ACTIONS(6441), - [anon_sym_BSLASHTextcite] = ACTIONS(6441), - [anon_sym_BSLASHsmartcite] = ACTIONS(6441), - [anon_sym_BSLASHSmartcite] = ACTIONS(6441), - [anon_sym_BSLASHsupercite] = ACTIONS(6441), - [anon_sym_BSLASHautocite] = ACTIONS(6441), - [anon_sym_BSLASHAutocite] = ACTIONS(6441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHvolcite] = ACTIONS(6441), - [anon_sym_BSLASHVolcite] = ACTIONS(6441), - [anon_sym_BSLASHpvolcite] = ACTIONS(6441), - [anon_sym_BSLASHPvolcite] = ACTIONS(6441), - [anon_sym_BSLASHfvolcite] = ACTIONS(6441), - [anon_sym_BSLASHftvolcite] = ACTIONS(6441), - [anon_sym_BSLASHsvolcite] = ACTIONS(6441), - [anon_sym_BSLASHSvolcite] = ACTIONS(6441), - [anon_sym_BSLASHtvolcite] = ACTIONS(6441), - [anon_sym_BSLASHTvolcite] = ACTIONS(6441), - [anon_sym_BSLASHavolcite] = ACTIONS(6441), - [anon_sym_BSLASHAvolcite] = ACTIONS(6441), - [anon_sym_BSLASHnotecite] = ACTIONS(6441), - [anon_sym_BSLASHNotecite] = ACTIONS(6441), - [anon_sym_BSLASHpnotecite] = ACTIONS(6441), - [anon_sym_BSLASHPnotecite] = ACTIONS(6441), - [anon_sym_BSLASHfnotecite] = ACTIONS(6441), - [anon_sym_BSLASHlabel] = ACTIONS(6441), - [anon_sym_BSLASHref] = ACTIONS(6441), - [anon_sym_BSLASHeqref] = ACTIONS(6441), - [anon_sym_BSLASHvref] = ACTIONS(6441), - [anon_sym_BSLASHVref] = ACTIONS(6441), - [anon_sym_BSLASHautoref] = ACTIONS(6441), - [anon_sym_BSLASHpageref] = ACTIONS(6441), - [anon_sym_BSLASHcref] = ACTIONS(6441), - [anon_sym_BSLASHCref] = ACTIONS(6441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnameCref] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHlabelcref] = ACTIONS(6441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCrefrange] = ACTIONS(6441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnewlabel] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6443), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHdef] = ACTIONS(6441), - [anon_sym_BSLASHlet] = ACTIONS(6441), - [anon_sym_BSLASHleft] = ACTIONS(6441), - [anon_sym_BSLASHbig] = ACTIONS(6441), - [anon_sym_BSLASHBig] = ACTIONS(6441), - [anon_sym_BSLASHbigg] = ACTIONS(6441), - [anon_sym_BSLASHBigg] = ACTIONS(6441), - [anon_sym_BSLASHbigl] = ACTIONS(6441), - [anon_sym_BSLASHBigl] = ACTIONS(6441), - [anon_sym_BSLASHbiggl] = ACTIONS(6441), - [anon_sym_BSLASHBiggl] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6441), - [anon_sym_BSLASHgls] = ACTIONS(6441), - [anon_sym_BSLASHGls] = ACTIONS(6441), - [anon_sym_BSLASHGLS] = ACTIONS(6441), - [anon_sym_BSLASHglspl] = ACTIONS(6441), - [anon_sym_BSLASHGlspl] = ACTIONS(6441), - [anon_sym_BSLASHGLSpl] = ACTIONS(6441), - [anon_sym_BSLASHglsdisp] = ACTIONS(6441), - [anon_sym_BSLASHglslink] = ACTIONS(6441), - [anon_sym_BSLASHglstext] = ACTIONS(6441), - [anon_sym_BSLASHGlstext] = ACTIONS(6441), - [anon_sym_BSLASHGLStext] = ACTIONS(6441), - [anon_sym_BSLASHglsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6441), - [anon_sym_BSLASHglsplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSplural] = ACTIONS(6441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHglsname] = ACTIONS(6441), - [anon_sym_BSLASHGlsname] = ACTIONS(6441), - [anon_sym_BSLASHGLSname] = ACTIONS(6441), - [anon_sym_BSLASHglssymbol] = ACTIONS(6441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6441), - [anon_sym_BSLASHglsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6441), - [anon_sym_BSLASHglsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6441), - [anon_sym_BSLASHglsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6441), - [anon_sym_BSLASHglsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6441), - [anon_sym_BSLASHglsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6441), - [anon_sym_BSLASHnewacronym] = ACTIONS(6441), - [anon_sym_BSLASHacrshort] = ACTIONS(6441), - [anon_sym_BSLASHAcrshort] = ACTIONS(6441), - [anon_sym_BSLASHACRshort] = ACTIONS(6441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6441), - [anon_sym_BSLASHacrlong] = ACTIONS(6441), - [anon_sym_BSLASHAcrlong] = ACTIONS(6441), - [anon_sym_BSLASHACRlong] = ACTIONS(6441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6441), - [anon_sym_BSLASHacrfull] = ACTIONS(6441), - [anon_sym_BSLASHAcrfull] = ACTIONS(6441), - [anon_sym_BSLASHACRfull] = ACTIONS(6441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6441), - [anon_sym_BSLASHacs] = ACTIONS(6441), - [anon_sym_BSLASHAcs] = ACTIONS(6441), - [anon_sym_BSLASHacsp] = ACTIONS(6441), - [anon_sym_BSLASHAcsp] = ACTIONS(6441), - [anon_sym_BSLASHacl] = ACTIONS(6441), - [anon_sym_BSLASHAcl] = ACTIONS(6441), - [anon_sym_BSLASHaclp] = ACTIONS(6441), - [anon_sym_BSLASHAclp] = ACTIONS(6441), - [anon_sym_BSLASHacf] = ACTIONS(6441), - [anon_sym_BSLASHAcf] = ACTIONS(6441), - [anon_sym_BSLASHacfp] = ACTIONS(6441), - [anon_sym_BSLASHAcfp] = ACTIONS(6441), - [anon_sym_BSLASHac] = ACTIONS(6441), - [anon_sym_BSLASHAc] = ACTIONS(6441), - [anon_sym_BSLASHacp] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6441), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6441), - [anon_sym_BSLASHcolor] = ACTIONS(6441), - [anon_sym_BSLASHcolorbox] = ACTIONS(6441), - [anon_sym_BSLASHtextcolor] = ACTIONS(6441), - [anon_sym_BSLASHpagecolor] = ACTIONS(6441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6441), - [anon_sym_BSLASHtext] = ACTIONS(6441), - [anon_sym_BSLASHintertext] = ACTIONS(6441), - [anon_sym_shortintertext] = ACTIONS(6441), - }, - [1226] = { - [sym_command_name] = ACTIONS(6445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6445), - [anon_sym_LBRACK] = ACTIONS(6447), - [anon_sym_RBRACK] = ACTIONS(6447), - [anon_sym_COMMA] = ACTIONS(6447), - [anon_sym_EQ] = ACTIONS(6447), - [anon_sym_LPAREN] = ACTIONS(6447), - [anon_sym_RPAREN] = ACTIONS(6447), - [anon_sym_BSLASHpart] = ACTIONS(6445), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddpart] = ACTIONS(6445), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6447), - [anon_sym_BSLASHchapter] = ACTIONS(6445), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddchap] = ACTIONS(6445), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsection] = ACTIONS(6445), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddsec] = ACTIONS(6445), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubsection] = ACTIONS(6445), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6445), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHparagraph] = ACTIONS(6445), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6445), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6447), - [anon_sym_BSLASHitem] = ACTIONS(6445), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6447), - [anon_sym_LBRACE] = ACTIONS(6447), - [sym_word] = ACTIONS(6445), - [sym_placeholder] = ACTIONS(6447), - [anon_sym_PLUS] = ACTIONS(6447), - [anon_sym_DASH] = ACTIONS(6447), - [anon_sym_STAR] = ACTIONS(6447), - [anon_sym_SLASH] = ACTIONS(6447), - [anon_sym_LT] = ACTIONS(6445), - [anon_sym_GT] = ACTIONS(6445), - [anon_sym_BANG] = ACTIONS(6445), - [anon_sym_PIPE] = ACTIONS(6445), - [anon_sym_COLON] = ACTIONS(6445), - [anon_sym_SQUOTE] = ACTIONS(6445), - [anon_sym__] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6447), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6447), - [anon_sym_DOLLAR] = ACTIONS(6445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6447), - [anon_sym_BSLASHbegin] = ACTIONS(6445), - [anon_sym_BSLASHtitle] = ACTIONS(6445), - [anon_sym_BSLASHauthor] = ACTIONS(6445), - [anon_sym_BSLASHusepackage] = ACTIONS(6445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6445), - [anon_sym_BSLASHinclude] = ACTIONS(6445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6445), - [anon_sym_BSLASHinput] = ACTIONS(6445), - [anon_sym_BSLASHsubfile] = ACTIONS(6445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6445), - [anon_sym_BSLASHbibliography] = ACTIONS(6445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6445), - [anon_sym_BSLASHincludesvg] = ACTIONS(6445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6445), - [anon_sym_BSLASHimport] = ACTIONS(6445), - [anon_sym_BSLASHsubimport] = ACTIONS(6445), - [anon_sym_BSLASHinputfrom] = ACTIONS(6445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6445), - [anon_sym_BSLASHincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHcaption] = ACTIONS(6445), - [anon_sym_BSLASHcite] = ACTIONS(6445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCite] = ACTIONS(6445), - [anon_sym_BSLASHnocite] = ACTIONS(6445), - [anon_sym_BSLASHcitet] = ACTIONS(6445), - [anon_sym_BSLASHcitep] = ACTIONS(6445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteauthor] = ACTIONS(6445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitetitle] = ACTIONS(6445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteyear] = ACTIONS(6445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitedate] = ACTIONS(6445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteurl] = ACTIONS(6445), - [anon_sym_BSLASHfullcite] = ACTIONS(6445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6445), - [anon_sym_BSLASHcitealt] = ACTIONS(6445), - [anon_sym_BSLASHcitealp] = ACTIONS(6445), - [anon_sym_BSLASHcitetext] = ACTIONS(6445), - [anon_sym_BSLASHparencite] = ACTIONS(6445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHParencite] = ACTIONS(6445), - [anon_sym_BSLASHfootcite] = ACTIONS(6445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6445), - [anon_sym_BSLASHtextcite] = ACTIONS(6445), - [anon_sym_BSLASHTextcite] = ACTIONS(6445), - [anon_sym_BSLASHsmartcite] = ACTIONS(6445), - [anon_sym_BSLASHSmartcite] = ACTIONS(6445), - [anon_sym_BSLASHsupercite] = ACTIONS(6445), - [anon_sym_BSLASHautocite] = ACTIONS(6445), - [anon_sym_BSLASHAutocite] = ACTIONS(6445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHvolcite] = ACTIONS(6445), - [anon_sym_BSLASHVolcite] = ACTIONS(6445), - [anon_sym_BSLASHpvolcite] = ACTIONS(6445), - [anon_sym_BSLASHPvolcite] = ACTIONS(6445), - [anon_sym_BSLASHfvolcite] = ACTIONS(6445), - [anon_sym_BSLASHftvolcite] = ACTIONS(6445), - [anon_sym_BSLASHsvolcite] = ACTIONS(6445), - [anon_sym_BSLASHSvolcite] = ACTIONS(6445), - [anon_sym_BSLASHtvolcite] = ACTIONS(6445), - [anon_sym_BSLASHTvolcite] = ACTIONS(6445), - [anon_sym_BSLASHavolcite] = ACTIONS(6445), - [anon_sym_BSLASHAvolcite] = ACTIONS(6445), - [anon_sym_BSLASHnotecite] = ACTIONS(6445), - [anon_sym_BSLASHNotecite] = ACTIONS(6445), - [anon_sym_BSLASHpnotecite] = ACTIONS(6445), - [anon_sym_BSLASHPnotecite] = ACTIONS(6445), - [anon_sym_BSLASHfnotecite] = ACTIONS(6445), - [anon_sym_BSLASHlabel] = ACTIONS(6445), - [anon_sym_BSLASHref] = ACTIONS(6445), - [anon_sym_BSLASHeqref] = ACTIONS(6445), - [anon_sym_BSLASHvref] = ACTIONS(6445), - [anon_sym_BSLASHVref] = ACTIONS(6445), - [anon_sym_BSLASHautoref] = ACTIONS(6445), - [anon_sym_BSLASHpageref] = ACTIONS(6445), - [anon_sym_BSLASHcref] = ACTIONS(6445), - [anon_sym_BSLASHCref] = ACTIONS(6445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnameCref] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHlabelcref] = ACTIONS(6445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCrefrange] = ACTIONS(6445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnewlabel] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6447), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHdef] = ACTIONS(6445), - [anon_sym_BSLASHlet] = ACTIONS(6445), - [anon_sym_BSLASHleft] = ACTIONS(6445), - [anon_sym_BSLASHbig] = ACTIONS(6445), - [anon_sym_BSLASHBig] = ACTIONS(6445), - [anon_sym_BSLASHbigg] = ACTIONS(6445), - [anon_sym_BSLASHBigg] = ACTIONS(6445), - [anon_sym_BSLASHbigl] = ACTIONS(6445), - [anon_sym_BSLASHBigl] = ACTIONS(6445), - [anon_sym_BSLASHbiggl] = ACTIONS(6445), - [anon_sym_BSLASHBiggl] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6445), - [anon_sym_BSLASHgls] = ACTIONS(6445), - [anon_sym_BSLASHGls] = ACTIONS(6445), - [anon_sym_BSLASHGLS] = ACTIONS(6445), - [anon_sym_BSLASHglspl] = ACTIONS(6445), - [anon_sym_BSLASHGlspl] = ACTIONS(6445), - [anon_sym_BSLASHGLSpl] = ACTIONS(6445), - [anon_sym_BSLASHglsdisp] = ACTIONS(6445), - [anon_sym_BSLASHglslink] = ACTIONS(6445), - [anon_sym_BSLASHglstext] = ACTIONS(6445), - [anon_sym_BSLASHGlstext] = ACTIONS(6445), - [anon_sym_BSLASHGLStext] = ACTIONS(6445), - [anon_sym_BSLASHglsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6445), - [anon_sym_BSLASHglsplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSplural] = ACTIONS(6445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHglsname] = ACTIONS(6445), - [anon_sym_BSLASHGlsname] = ACTIONS(6445), - [anon_sym_BSLASHGLSname] = ACTIONS(6445), - [anon_sym_BSLASHglssymbol] = ACTIONS(6445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6445), - [anon_sym_BSLASHglsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6445), - [anon_sym_BSLASHglsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6445), - [anon_sym_BSLASHglsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6445), - [anon_sym_BSLASHglsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6445), - [anon_sym_BSLASHglsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6445), - [anon_sym_BSLASHnewacronym] = ACTIONS(6445), - [anon_sym_BSLASHacrshort] = ACTIONS(6445), - [anon_sym_BSLASHAcrshort] = ACTIONS(6445), - [anon_sym_BSLASHACRshort] = ACTIONS(6445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6445), - [anon_sym_BSLASHacrlong] = ACTIONS(6445), - [anon_sym_BSLASHAcrlong] = ACTIONS(6445), - [anon_sym_BSLASHACRlong] = ACTIONS(6445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6445), - [anon_sym_BSLASHacrfull] = ACTIONS(6445), - [anon_sym_BSLASHAcrfull] = ACTIONS(6445), - [anon_sym_BSLASHACRfull] = ACTIONS(6445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6445), - [anon_sym_BSLASHacs] = ACTIONS(6445), - [anon_sym_BSLASHAcs] = ACTIONS(6445), - [anon_sym_BSLASHacsp] = ACTIONS(6445), - [anon_sym_BSLASHAcsp] = ACTIONS(6445), - [anon_sym_BSLASHacl] = ACTIONS(6445), - [anon_sym_BSLASHAcl] = ACTIONS(6445), - [anon_sym_BSLASHaclp] = ACTIONS(6445), - [anon_sym_BSLASHAclp] = ACTIONS(6445), - [anon_sym_BSLASHacf] = ACTIONS(6445), - [anon_sym_BSLASHAcf] = ACTIONS(6445), - [anon_sym_BSLASHacfp] = ACTIONS(6445), - [anon_sym_BSLASHAcfp] = ACTIONS(6445), - [anon_sym_BSLASHac] = ACTIONS(6445), - [anon_sym_BSLASHAc] = ACTIONS(6445), - [anon_sym_BSLASHacp] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6445), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6445), - [anon_sym_BSLASHcolor] = ACTIONS(6445), - [anon_sym_BSLASHcolorbox] = ACTIONS(6445), - [anon_sym_BSLASHtextcolor] = ACTIONS(6445), - [anon_sym_BSLASHpagecolor] = ACTIONS(6445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6445), - [anon_sym_BSLASHtext] = ACTIONS(6445), - [anon_sym_BSLASHintertext] = ACTIONS(6445), - [anon_sym_shortintertext] = ACTIONS(6445), - }, - [1227] = { - [sym_command_name] = ACTIONS(6213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(6215), - [anon_sym_RBRACK] = ACTIONS(6215), - [anon_sym_COMMA] = ACTIONS(6215), - [anon_sym_EQ] = ACTIONS(6215), - [anon_sym_LPAREN] = ACTIONS(6215), - [anon_sym_RPAREN] = ACTIONS(6215), - [anon_sym_BSLASHpart] = ACTIONS(6213), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddpart] = ACTIONS(6213), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6215), - [anon_sym_BSLASHchapter] = ACTIONS(6213), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddchap] = ACTIONS(6213), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsection] = ACTIONS(6213), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddsec] = ACTIONS(6213), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubsection] = ACTIONS(6213), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6213), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHparagraph] = ACTIONS(6213), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6213), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6215), - [anon_sym_BSLASHitem] = ACTIONS(6213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6215), - [anon_sym_LBRACE] = ACTIONS(6215), - [sym_word] = ACTIONS(6213), - [sym_placeholder] = ACTIONS(6215), - [anon_sym_PLUS] = ACTIONS(6215), - [anon_sym_DASH] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6215), - [anon_sym_SLASH] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6213), - [anon_sym_GT] = ACTIONS(6213), - [anon_sym_BANG] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6213), - [anon_sym_COLON] = ACTIONS(6213), - [anon_sym_SQUOTE] = ACTIONS(6213), - [anon_sym__] = ACTIONS(6215), - [anon_sym_CARET] = ACTIONS(6215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6215), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6215), - [anon_sym_DOLLAR] = ACTIONS(6213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6215), - [anon_sym_BSLASHbegin] = ACTIONS(6213), - [anon_sym_BSLASHtitle] = ACTIONS(6213), - [anon_sym_BSLASHauthor] = ACTIONS(6213), - [anon_sym_BSLASHusepackage] = ACTIONS(6213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6213), - [anon_sym_BSLASHinclude] = ACTIONS(6213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6213), - [anon_sym_BSLASHinput] = ACTIONS(6213), - [anon_sym_BSLASHsubfile] = ACTIONS(6213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6213), - [anon_sym_BSLASHbibliography] = ACTIONS(6213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6213), - [anon_sym_BSLASHincludesvg] = ACTIONS(6213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6213), - [anon_sym_BSLASHimport] = ACTIONS(6213), - [anon_sym_BSLASHsubimport] = ACTIONS(6213), - [anon_sym_BSLASHinputfrom] = ACTIONS(6213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6213), - [anon_sym_BSLASHincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHcaption] = ACTIONS(6213), - [anon_sym_BSLASHcite] = ACTIONS(6213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCite] = ACTIONS(6213), - [anon_sym_BSLASHnocite] = ACTIONS(6213), - [anon_sym_BSLASHcitet] = ACTIONS(6213), - [anon_sym_BSLASHcitep] = ACTIONS(6213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteauthor] = ACTIONS(6213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitetitle] = ACTIONS(6213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteyear] = ACTIONS(6213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitedate] = ACTIONS(6213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteurl] = ACTIONS(6213), - [anon_sym_BSLASHfullcite] = ACTIONS(6213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6213), - [anon_sym_BSLASHcitealt] = ACTIONS(6213), - [anon_sym_BSLASHcitealp] = ACTIONS(6213), - [anon_sym_BSLASHcitetext] = ACTIONS(6213), - [anon_sym_BSLASHparencite] = ACTIONS(6213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHParencite] = ACTIONS(6213), - [anon_sym_BSLASHfootcite] = ACTIONS(6213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6213), - [anon_sym_BSLASHtextcite] = ACTIONS(6213), - [anon_sym_BSLASHTextcite] = ACTIONS(6213), - [anon_sym_BSLASHsmartcite] = ACTIONS(6213), - [anon_sym_BSLASHSmartcite] = ACTIONS(6213), - [anon_sym_BSLASHsupercite] = ACTIONS(6213), - [anon_sym_BSLASHautocite] = ACTIONS(6213), - [anon_sym_BSLASHAutocite] = ACTIONS(6213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHvolcite] = ACTIONS(6213), - [anon_sym_BSLASHVolcite] = ACTIONS(6213), - [anon_sym_BSLASHpvolcite] = ACTIONS(6213), - [anon_sym_BSLASHPvolcite] = ACTIONS(6213), - [anon_sym_BSLASHfvolcite] = ACTIONS(6213), - [anon_sym_BSLASHftvolcite] = ACTIONS(6213), - [anon_sym_BSLASHsvolcite] = ACTIONS(6213), - [anon_sym_BSLASHSvolcite] = ACTIONS(6213), - [anon_sym_BSLASHtvolcite] = ACTIONS(6213), - [anon_sym_BSLASHTvolcite] = ACTIONS(6213), - [anon_sym_BSLASHavolcite] = ACTIONS(6213), - [anon_sym_BSLASHAvolcite] = ACTIONS(6213), - [anon_sym_BSLASHnotecite] = ACTIONS(6213), - [anon_sym_BSLASHNotecite] = ACTIONS(6213), - [anon_sym_BSLASHpnotecite] = ACTIONS(6213), - [anon_sym_BSLASHPnotecite] = ACTIONS(6213), - [anon_sym_BSLASHfnotecite] = ACTIONS(6213), - [anon_sym_BSLASHlabel] = ACTIONS(6213), - [anon_sym_BSLASHref] = ACTIONS(6213), - [anon_sym_BSLASHeqref] = ACTIONS(6213), - [anon_sym_BSLASHvref] = ACTIONS(6213), - [anon_sym_BSLASHVref] = ACTIONS(6213), - [anon_sym_BSLASHautoref] = ACTIONS(6213), - [anon_sym_BSLASHpageref] = ACTIONS(6213), - [anon_sym_BSLASHcref] = ACTIONS(6213), - [anon_sym_BSLASHCref] = ACTIONS(6213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnameCref] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHlabelcref] = ACTIONS(6213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCrefrange] = ACTIONS(6213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnewlabel] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6215), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHdef] = ACTIONS(6213), - [anon_sym_BSLASHlet] = ACTIONS(6213), - [anon_sym_BSLASHleft] = ACTIONS(6213), - [anon_sym_BSLASHbig] = ACTIONS(6213), - [anon_sym_BSLASHBig] = ACTIONS(6213), - [anon_sym_BSLASHbigg] = ACTIONS(6213), - [anon_sym_BSLASHBigg] = ACTIONS(6213), - [anon_sym_BSLASHbigl] = ACTIONS(6213), - [anon_sym_BSLASHBigl] = ACTIONS(6213), - [anon_sym_BSLASHbiggl] = ACTIONS(6213), - [anon_sym_BSLASHBiggl] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6213), - [anon_sym_BSLASHgls] = ACTIONS(6213), - [anon_sym_BSLASHGls] = ACTIONS(6213), - [anon_sym_BSLASHGLS] = ACTIONS(6213), - [anon_sym_BSLASHglspl] = ACTIONS(6213), - [anon_sym_BSLASHGlspl] = ACTIONS(6213), - [anon_sym_BSLASHGLSpl] = ACTIONS(6213), - [anon_sym_BSLASHglsdisp] = ACTIONS(6213), - [anon_sym_BSLASHglslink] = ACTIONS(6213), - [anon_sym_BSLASHglstext] = ACTIONS(6213), - [anon_sym_BSLASHGlstext] = ACTIONS(6213), - [anon_sym_BSLASHGLStext] = ACTIONS(6213), - [anon_sym_BSLASHglsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6213), - [anon_sym_BSLASHglsplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSplural] = ACTIONS(6213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHglsname] = ACTIONS(6213), - [anon_sym_BSLASHGlsname] = ACTIONS(6213), - [anon_sym_BSLASHGLSname] = ACTIONS(6213), - [anon_sym_BSLASHglssymbol] = ACTIONS(6213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6213), - [anon_sym_BSLASHglsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6213), - [anon_sym_BSLASHglsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6213), - [anon_sym_BSLASHglsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6213), - [anon_sym_BSLASHglsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6213), - [anon_sym_BSLASHglsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6213), - [anon_sym_BSLASHnewacronym] = ACTIONS(6213), - [anon_sym_BSLASHacrshort] = ACTIONS(6213), - [anon_sym_BSLASHAcrshort] = ACTIONS(6213), - [anon_sym_BSLASHACRshort] = ACTIONS(6213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6213), - [anon_sym_BSLASHacrlong] = ACTIONS(6213), - [anon_sym_BSLASHAcrlong] = ACTIONS(6213), - [anon_sym_BSLASHACRlong] = ACTIONS(6213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6213), - [anon_sym_BSLASHacrfull] = ACTIONS(6213), - [anon_sym_BSLASHAcrfull] = ACTIONS(6213), - [anon_sym_BSLASHACRfull] = ACTIONS(6213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6213), - [anon_sym_BSLASHacs] = ACTIONS(6213), - [anon_sym_BSLASHAcs] = ACTIONS(6213), - [anon_sym_BSLASHacsp] = ACTIONS(6213), - [anon_sym_BSLASHAcsp] = ACTIONS(6213), - [anon_sym_BSLASHacl] = ACTIONS(6213), - [anon_sym_BSLASHAcl] = ACTIONS(6213), - [anon_sym_BSLASHaclp] = ACTIONS(6213), - [anon_sym_BSLASHAclp] = ACTIONS(6213), - [anon_sym_BSLASHacf] = ACTIONS(6213), - [anon_sym_BSLASHAcf] = ACTIONS(6213), - [anon_sym_BSLASHacfp] = ACTIONS(6213), - [anon_sym_BSLASHAcfp] = ACTIONS(6213), - [anon_sym_BSLASHac] = ACTIONS(6213), - [anon_sym_BSLASHAc] = ACTIONS(6213), - [anon_sym_BSLASHacp] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6213), - [anon_sym_BSLASHcolor] = ACTIONS(6213), - [anon_sym_BSLASHcolorbox] = ACTIONS(6213), - [anon_sym_BSLASHtextcolor] = ACTIONS(6213), - [anon_sym_BSLASHpagecolor] = ACTIONS(6213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6213), - [anon_sym_BSLASHtext] = ACTIONS(6213), - [anon_sym_BSLASHintertext] = ACTIONS(6213), - [anon_sym_shortintertext] = ACTIONS(6213), - }, - [1228] = { - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(187), - [anon_sym_BSLASHpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddpart] = ACTIONS(187), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHchapter] = ACTIONS(187), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddchap] = ACTIONS(187), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(185), - [anon_sym_BSLASHsection] = ACTIONS(187), - [anon_sym_BSLASHsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddsec] = ACTIONS(187), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHparagraph] = ACTIONS(187), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph] = ACTIONS(187), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHitem] = ACTIONS(187), - [anon_sym_BSLASHitem_STAR] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_BSLASH_RBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [1229] = { - [sym_command_name] = ACTIONS(6217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6217), - [anon_sym_LBRACK] = ACTIONS(6219), - [anon_sym_RBRACK] = ACTIONS(6219), - [anon_sym_COMMA] = ACTIONS(6219), - [anon_sym_EQ] = ACTIONS(6219), - [anon_sym_LPAREN] = ACTIONS(6219), - [anon_sym_RPAREN] = ACTIONS(6219), - [anon_sym_BSLASHpart] = ACTIONS(6217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddpart] = ACTIONS(6217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6219), - [anon_sym_BSLASHchapter] = ACTIONS(6217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddchap] = ACTIONS(6217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsection] = ACTIONS(6217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddsec] = ACTIONS(6217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubsection] = ACTIONS(6217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHparagraph] = ACTIONS(6217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6219), - [anon_sym_BSLASHitem] = ACTIONS(6217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6219), - [anon_sym_LBRACE] = ACTIONS(6219), - [sym_word] = ACTIONS(6217), - [sym_placeholder] = ACTIONS(6219), - [anon_sym_PLUS] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_STAR] = ACTIONS(6219), - [anon_sym_SLASH] = ACTIONS(6219), - [anon_sym_LT] = ACTIONS(6217), - [anon_sym_GT] = ACTIONS(6217), - [anon_sym_BANG] = ACTIONS(6217), - [anon_sym_PIPE] = ACTIONS(6217), - [anon_sym_COLON] = ACTIONS(6217), - [anon_sym_SQUOTE] = ACTIONS(6217), - [anon_sym__] = ACTIONS(6219), - [anon_sym_CARET] = ACTIONS(6219), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6219), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6219), - [anon_sym_DOLLAR] = ACTIONS(6217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6219), - [anon_sym_BSLASHbegin] = ACTIONS(6217), - [anon_sym_BSLASHtitle] = ACTIONS(6217), - [anon_sym_BSLASHauthor] = ACTIONS(6217), - [anon_sym_BSLASHusepackage] = ACTIONS(6217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6217), - [anon_sym_BSLASHinclude] = ACTIONS(6217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6217), - [anon_sym_BSLASHinput] = ACTIONS(6217), - [anon_sym_BSLASHsubfile] = ACTIONS(6217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6217), - [anon_sym_BSLASHbibliography] = ACTIONS(6217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6217), - [anon_sym_BSLASHincludesvg] = ACTIONS(6217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6217), - [anon_sym_BSLASHimport] = ACTIONS(6217), - [anon_sym_BSLASHsubimport] = ACTIONS(6217), - [anon_sym_BSLASHinputfrom] = ACTIONS(6217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6217), - [anon_sym_BSLASHincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHcaption] = ACTIONS(6217), - [anon_sym_BSLASHcite] = ACTIONS(6217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCite] = ACTIONS(6217), - [anon_sym_BSLASHnocite] = ACTIONS(6217), - [anon_sym_BSLASHcitet] = ACTIONS(6217), - [anon_sym_BSLASHcitep] = ACTIONS(6217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteauthor] = ACTIONS(6217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitetitle] = ACTIONS(6217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteyear] = ACTIONS(6217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitedate] = ACTIONS(6217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteurl] = ACTIONS(6217), - [anon_sym_BSLASHfullcite] = ACTIONS(6217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6217), - [anon_sym_BSLASHcitealt] = ACTIONS(6217), - [anon_sym_BSLASHcitealp] = ACTIONS(6217), - [anon_sym_BSLASHcitetext] = ACTIONS(6217), - [anon_sym_BSLASHparencite] = ACTIONS(6217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHParencite] = ACTIONS(6217), - [anon_sym_BSLASHfootcite] = ACTIONS(6217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6217), - [anon_sym_BSLASHtextcite] = ACTIONS(6217), - [anon_sym_BSLASHTextcite] = ACTIONS(6217), - [anon_sym_BSLASHsmartcite] = ACTIONS(6217), - [anon_sym_BSLASHSmartcite] = ACTIONS(6217), - [anon_sym_BSLASHsupercite] = ACTIONS(6217), - [anon_sym_BSLASHautocite] = ACTIONS(6217), - [anon_sym_BSLASHAutocite] = ACTIONS(6217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHvolcite] = ACTIONS(6217), - [anon_sym_BSLASHVolcite] = ACTIONS(6217), - [anon_sym_BSLASHpvolcite] = ACTIONS(6217), - [anon_sym_BSLASHPvolcite] = ACTIONS(6217), - [anon_sym_BSLASHfvolcite] = ACTIONS(6217), - [anon_sym_BSLASHftvolcite] = ACTIONS(6217), - [anon_sym_BSLASHsvolcite] = ACTIONS(6217), - [anon_sym_BSLASHSvolcite] = ACTIONS(6217), - [anon_sym_BSLASHtvolcite] = ACTIONS(6217), - [anon_sym_BSLASHTvolcite] = ACTIONS(6217), - [anon_sym_BSLASHavolcite] = ACTIONS(6217), - [anon_sym_BSLASHAvolcite] = ACTIONS(6217), - [anon_sym_BSLASHnotecite] = ACTIONS(6217), - [anon_sym_BSLASHNotecite] = ACTIONS(6217), - [anon_sym_BSLASHpnotecite] = ACTIONS(6217), - [anon_sym_BSLASHPnotecite] = ACTIONS(6217), - [anon_sym_BSLASHfnotecite] = ACTIONS(6217), - [anon_sym_BSLASHlabel] = ACTIONS(6217), - [anon_sym_BSLASHref] = ACTIONS(6217), - [anon_sym_BSLASHeqref] = ACTIONS(6217), - [anon_sym_BSLASHvref] = ACTIONS(6217), - [anon_sym_BSLASHVref] = ACTIONS(6217), - [anon_sym_BSLASHautoref] = ACTIONS(6217), - [anon_sym_BSLASHpageref] = ACTIONS(6217), - [anon_sym_BSLASHcref] = ACTIONS(6217), - [anon_sym_BSLASHCref] = ACTIONS(6217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnameCref] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHlabelcref] = ACTIONS(6217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCrefrange] = ACTIONS(6217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnewlabel] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6219), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHdef] = ACTIONS(6217), - [anon_sym_BSLASHlet] = ACTIONS(6217), - [anon_sym_BSLASHleft] = ACTIONS(6217), - [anon_sym_BSLASHbig] = ACTIONS(6217), - [anon_sym_BSLASHBig] = ACTIONS(6217), - [anon_sym_BSLASHbigg] = ACTIONS(6217), - [anon_sym_BSLASHBigg] = ACTIONS(6217), - [anon_sym_BSLASHbigl] = ACTIONS(6217), - [anon_sym_BSLASHBigl] = ACTIONS(6217), - [anon_sym_BSLASHbiggl] = ACTIONS(6217), - [anon_sym_BSLASHBiggl] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6217), - [anon_sym_BSLASHgls] = ACTIONS(6217), - [anon_sym_BSLASHGls] = ACTIONS(6217), - [anon_sym_BSLASHGLS] = ACTIONS(6217), - [anon_sym_BSLASHglspl] = ACTIONS(6217), - [anon_sym_BSLASHGlspl] = ACTIONS(6217), - [anon_sym_BSLASHGLSpl] = ACTIONS(6217), - [anon_sym_BSLASHglsdisp] = ACTIONS(6217), - [anon_sym_BSLASHglslink] = ACTIONS(6217), - [anon_sym_BSLASHglstext] = ACTIONS(6217), - [anon_sym_BSLASHGlstext] = ACTIONS(6217), - [anon_sym_BSLASHGLStext] = ACTIONS(6217), - [anon_sym_BSLASHglsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6217), - [anon_sym_BSLASHglsplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSplural] = ACTIONS(6217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHglsname] = ACTIONS(6217), - [anon_sym_BSLASHGlsname] = ACTIONS(6217), - [anon_sym_BSLASHGLSname] = ACTIONS(6217), - [anon_sym_BSLASHglssymbol] = ACTIONS(6217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6217), - [anon_sym_BSLASHglsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6217), - [anon_sym_BSLASHglsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6217), - [anon_sym_BSLASHglsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6217), - [anon_sym_BSLASHglsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6217), - [anon_sym_BSLASHglsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6217), - [anon_sym_BSLASHnewacronym] = ACTIONS(6217), - [anon_sym_BSLASHacrshort] = ACTIONS(6217), - [anon_sym_BSLASHAcrshort] = ACTIONS(6217), - [anon_sym_BSLASHACRshort] = ACTIONS(6217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6217), - [anon_sym_BSLASHacrlong] = ACTIONS(6217), - [anon_sym_BSLASHAcrlong] = ACTIONS(6217), - [anon_sym_BSLASHACRlong] = ACTIONS(6217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6217), - [anon_sym_BSLASHacrfull] = ACTIONS(6217), - [anon_sym_BSLASHAcrfull] = ACTIONS(6217), - [anon_sym_BSLASHACRfull] = ACTIONS(6217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6217), - [anon_sym_BSLASHacs] = ACTIONS(6217), - [anon_sym_BSLASHAcs] = ACTIONS(6217), - [anon_sym_BSLASHacsp] = ACTIONS(6217), - [anon_sym_BSLASHAcsp] = ACTIONS(6217), - [anon_sym_BSLASHacl] = ACTIONS(6217), - [anon_sym_BSLASHAcl] = ACTIONS(6217), - [anon_sym_BSLASHaclp] = ACTIONS(6217), - [anon_sym_BSLASHAclp] = ACTIONS(6217), - [anon_sym_BSLASHacf] = ACTIONS(6217), - [anon_sym_BSLASHAcf] = ACTIONS(6217), - [anon_sym_BSLASHacfp] = ACTIONS(6217), - [anon_sym_BSLASHAcfp] = ACTIONS(6217), - [anon_sym_BSLASHac] = ACTIONS(6217), - [anon_sym_BSLASHAc] = ACTIONS(6217), - [anon_sym_BSLASHacp] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6217), - [anon_sym_BSLASHcolor] = ACTIONS(6217), - [anon_sym_BSLASHcolorbox] = ACTIONS(6217), - [anon_sym_BSLASHtextcolor] = ACTIONS(6217), - [anon_sym_BSLASHpagecolor] = ACTIONS(6217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6217), - [anon_sym_BSLASHtext] = ACTIONS(6217), - [anon_sym_BSLASHintertext] = ACTIONS(6217), - [anon_sym_shortintertext] = ACTIONS(6217), - }, - [1230] = { - [sym_command_name] = ACTIONS(6449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6449), - [anon_sym_LBRACK] = ACTIONS(6451), - [anon_sym_RBRACK] = ACTIONS(6451), - [anon_sym_COMMA] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(6451), - [anon_sym_LPAREN] = ACTIONS(6451), - [anon_sym_RPAREN] = ACTIONS(6451), - [anon_sym_BSLASHpart] = ACTIONS(6449), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddpart] = ACTIONS(6449), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6451), - [anon_sym_BSLASHchapter] = ACTIONS(6449), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddchap] = ACTIONS(6449), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsection] = ACTIONS(6449), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddsec] = ACTIONS(6449), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubsection] = ACTIONS(6449), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6449), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHparagraph] = ACTIONS(6449), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6449), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6451), - [anon_sym_BSLASHitem] = ACTIONS(6449), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6451), - [anon_sym_LBRACE] = ACTIONS(6451), - [sym_word] = ACTIONS(6449), - [sym_placeholder] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6451), - [anon_sym_DASH] = ACTIONS(6451), - [anon_sym_STAR] = ACTIONS(6451), - [anon_sym_SLASH] = ACTIONS(6451), - [anon_sym_LT] = ACTIONS(6449), - [anon_sym_GT] = ACTIONS(6449), - [anon_sym_BANG] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6449), - [anon_sym_COLON] = ACTIONS(6449), - [anon_sym_SQUOTE] = ACTIONS(6449), - [anon_sym__] = ACTIONS(6451), - [anon_sym_CARET] = ACTIONS(6451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6451), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6451), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6451), - [anon_sym_DOLLAR] = ACTIONS(6449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6451), - [anon_sym_BSLASHbegin] = ACTIONS(6449), - [anon_sym_BSLASHtitle] = ACTIONS(6449), - [anon_sym_BSLASHauthor] = ACTIONS(6449), - [anon_sym_BSLASHusepackage] = ACTIONS(6449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6449), - [anon_sym_BSLASHinclude] = ACTIONS(6449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6449), - [anon_sym_BSLASHinput] = ACTIONS(6449), - [anon_sym_BSLASHsubfile] = ACTIONS(6449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6449), - [anon_sym_BSLASHbibliography] = ACTIONS(6449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6449), - [anon_sym_BSLASHincludesvg] = ACTIONS(6449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6449), - [anon_sym_BSLASHimport] = ACTIONS(6449), - [anon_sym_BSLASHsubimport] = ACTIONS(6449), - [anon_sym_BSLASHinputfrom] = ACTIONS(6449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6449), - [anon_sym_BSLASHincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHcaption] = ACTIONS(6449), - [anon_sym_BSLASHcite] = ACTIONS(6449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCite] = ACTIONS(6449), - [anon_sym_BSLASHnocite] = ACTIONS(6449), - [anon_sym_BSLASHcitet] = ACTIONS(6449), - [anon_sym_BSLASHcitep] = ACTIONS(6449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteauthor] = ACTIONS(6449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitetitle] = ACTIONS(6449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteyear] = ACTIONS(6449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitedate] = ACTIONS(6449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteurl] = ACTIONS(6449), - [anon_sym_BSLASHfullcite] = ACTIONS(6449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6449), - [anon_sym_BSLASHcitealt] = ACTIONS(6449), - [anon_sym_BSLASHcitealp] = ACTIONS(6449), - [anon_sym_BSLASHcitetext] = ACTIONS(6449), - [anon_sym_BSLASHparencite] = ACTIONS(6449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHParencite] = ACTIONS(6449), - [anon_sym_BSLASHfootcite] = ACTIONS(6449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6449), - [anon_sym_BSLASHtextcite] = ACTIONS(6449), - [anon_sym_BSLASHTextcite] = ACTIONS(6449), - [anon_sym_BSLASHsmartcite] = ACTIONS(6449), - [anon_sym_BSLASHSmartcite] = ACTIONS(6449), - [anon_sym_BSLASHsupercite] = ACTIONS(6449), - [anon_sym_BSLASHautocite] = ACTIONS(6449), - [anon_sym_BSLASHAutocite] = ACTIONS(6449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHvolcite] = ACTIONS(6449), - [anon_sym_BSLASHVolcite] = ACTIONS(6449), - [anon_sym_BSLASHpvolcite] = ACTIONS(6449), - [anon_sym_BSLASHPvolcite] = ACTIONS(6449), - [anon_sym_BSLASHfvolcite] = ACTIONS(6449), - [anon_sym_BSLASHftvolcite] = ACTIONS(6449), - [anon_sym_BSLASHsvolcite] = ACTIONS(6449), - [anon_sym_BSLASHSvolcite] = ACTIONS(6449), - [anon_sym_BSLASHtvolcite] = ACTIONS(6449), - [anon_sym_BSLASHTvolcite] = ACTIONS(6449), - [anon_sym_BSLASHavolcite] = ACTIONS(6449), - [anon_sym_BSLASHAvolcite] = ACTIONS(6449), - [anon_sym_BSLASHnotecite] = ACTIONS(6449), - [anon_sym_BSLASHNotecite] = ACTIONS(6449), - [anon_sym_BSLASHpnotecite] = ACTIONS(6449), - [anon_sym_BSLASHPnotecite] = ACTIONS(6449), - [anon_sym_BSLASHfnotecite] = ACTIONS(6449), - [anon_sym_BSLASHlabel] = ACTIONS(6449), - [anon_sym_BSLASHref] = ACTIONS(6449), - [anon_sym_BSLASHeqref] = ACTIONS(6449), - [anon_sym_BSLASHvref] = ACTIONS(6449), - [anon_sym_BSLASHVref] = ACTIONS(6449), - [anon_sym_BSLASHautoref] = ACTIONS(6449), - [anon_sym_BSLASHpageref] = ACTIONS(6449), - [anon_sym_BSLASHcref] = ACTIONS(6449), - [anon_sym_BSLASHCref] = ACTIONS(6449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnameCref] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHlabelcref] = ACTIONS(6449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCrefrange] = ACTIONS(6449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnewlabel] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6451), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHdef] = ACTIONS(6449), - [anon_sym_BSLASHlet] = ACTIONS(6449), - [anon_sym_BSLASHleft] = ACTIONS(6449), - [anon_sym_BSLASHbig] = ACTIONS(6449), - [anon_sym_BSLASHBig] = ACTIONS(6449), - [anon_sym_BSLASHbigg] = ACTIONS(6449), - [anon_sym_BSLASHBigg] = ACTIONS(6449), - [anon_sym_BSLASHbigl] = ACTIONS(6449), - [anon_sym_BSLASHBigl] = ACTIONS(6449), - [anon_sym_BSLASHbiggl] = ACTIONS(6449), - [anon_sym_BSLASHBiggl] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6449), - [anon_sym_BSLASHgls] = ACTIONS(6449), - [anon_sym_BSLASHGls] = ACTIONS(6449), - [anon_sym_BSLASHGLS] = ACTIONS(6449), - [anon_sym_BSLASHglspl] = ACTIONS(6449), - [anon_sym_BSLASHGlspl] = ACTIONS(6449), - [anon_sym_BSLASHGLSpl] = ACTIONS(6449), - [anon_sym_BSLASHglsdisp] = ACTIONS(6449), - [anon_sym_BSLASHglslink] = ACTIONS(6449), - [anon_sym_BSLASHglstext] = ACTIONS(6449), - [anon_sym_BSLASHGlstext] = ACTIONS(6449), - [anon_sym_BSLASHGLStext] = ACTIONS(6449), - [anon_sym_BSLASHglsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6449), - [anon_sym_BSLASHglsplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSplural] = ACTIONS(6449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHglsname] = ACTIONS(6449), - [anon_sym_BSLASHGlsname] = ACTIONS(6449), - [anon_sym_BSLASHGLSname] = ACTIONS(6449), - [anon_sym_BSLASHglssymbol] = ACTIONS(6449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6449), - [anon_sym_BSLASHglsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6449), - [anon_sym_BSLASHglsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6449), - [anon_sym_BSLASHglsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6449), - [anon_sym_BSLASHglsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6449), - [anon_sym_BSLASHglsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6449), - [anon_sym_BSLASHnewacronym] = ACTIONS(6449), - [anon_sym_BSLASHacrshort] = ACTIONS(6449), - [anon_sym_BSLASHAcrshort] = ACTIONS(6449), - [anon_sym_BSLASHACRshort] = ACTIONS(6449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6449), - [anon_sym_BSLASHacrlong] = ACTIONS(6449), - [anon_sym_BSLASHAcrlong] = ACTIONS(6449), - [anon_sym_BSLASHACRlong] = ACTIONS(6449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6449), - [anon_sym_BSLASHacrfull] = ACTIONS(6449), - [anon_sym_BSLASHAcrfull] = ACTIONS(6449), - [anon_sym_BSLASHACRfull] = ACTIONS(6449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6449), - [anon_sym_BSLASHacs] = ACTIONS(6449), - [anon_sym_BSLASHAcs] = ACTIONS(6449), - [anon_sym_BSLASHacsp] = ACTIONS(6449), - [anon_sym_BSLASHAcsp] = ACTIONS(6449), - [anon_sym_BSLASHacl] = ACTIONS(6449), - [anon_sym_BSLASHAcl] = ACTIONS(6449), - [anon_sym_BSLASHaclp] = ACTIONS(6449), - [anon_sym_BSLASHAclp] = ACTIONS(6449), - [anon_sym_BSLASHacf] = ACTIONS(6449), - [anon_sym_BSLASHAcf] = ACTIONS(6449), - [anon_sym_BSLASHacfp] = ACTIONS(6449), - [anon_sym_BSLASHAcfp] = ACTIONS(6449), - [anon_sym_BSLASHac] = ACTIONS(6449), - [anon_sym_BSLASHAc] = ACTIONS(6449), - [anon_sym_BSLASHacp] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6449), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6449), - [anon_sym_BSLASHcolor] = ACTIONS(6449), - [anon_sym_BSLASHcolorbox] = ACTIONS(6449), - [anon_sym_BSLASHtextcolor] = ACTIONS(6449), - [anon_sym_BSLASHpagecolor] = ACTIONS(6449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6449), - [anon_sym_BSLASHtext] = ACTIONS(6449), - [anon_sym_BSLASHintertext] = ACTIONS(6449), - [anon_sym_shortintertext] = ACTIONS(6449), - }, - [1231] = { - [sym_command_name] = ACTIONS(6453), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6453), - [anon_sym_LBRACK] = ACTIONS(6455), - [anon_sym_RBRACK] = ACTIONS(6455), - [anon_sym_COMMA] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(6455), - [anon_sym_LPAREN] = ACTIONS(6455), - [anon_sym_RPAREN] = ACTIONS(6455), - [anon_sym_BSLASHpart] = ACTIONS(6453), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddpart] = ACTIONS(6453), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6455), - [anon_sym_BSLASHchapter] = ACTIONS(6453), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddchap] = ACTIONS(6453), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsection] = ACTIONS(6453), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddsec] = ACTIONS(6453), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubsection] = ACTIONS(6453), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6453), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHparagraph] = ACTIONS(6453), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6453), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6455), - [anon_sym_BSLASHitem] = ACTIONS(6453), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6455), - [anon_sym_LBRACE] = ACTIONS(6455), - [sym_word] = ACTIONS(6453), - [sym_placeholder] = ACTIONS(6455), - [anon_sym_PLUS] = ACTIONS(6455), - [anon_sym_DASH] = ACTIONS(6455), - [anon_sym_STAR] = ACTIONS(6455), - [anon_sym_SLASH] = ACTIONS(6455), - [anon_sym_LT] = ACTIONS(6453), - [anon_sym_GT] = ACTIONS(6453), - [anon_sym_BANG] = ACTIONS(6453), - [anon_sym_PIPE] = ACTIONS(6453), - [anon_sym_COLON] = ACTIONS(6453), - [anon_sym_SQUOTE] = ACTIONS(6453), - [anon_sym__] = ACTIONS(6455), - [anon_sym_CARET] = ACTIONS(6455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6455), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6455), - [anon_sym_DOLLAR] = ACTIONS(6453), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6455), - [anon_sym_BSLASHbegin] = ACTIONS(6453), - [anon_sym_BSLASHtitle] = ACTIONS(6453), - [anon_sym_BSLASHauthor] = ACTIONS(6453), - [anon_sym_BSLASHusepackage] = ACTIONS(6453), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6453), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6453), - [anon_sym_BSLASHinclude] = ACTIONS(6453), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6453), - [anon_sym_BSLASHinput] = ACTIONS(6453), - [anon_sym_BSLASHsubfile] = ACTIONS(6453), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6453), - [anon_sym_BSLASHbibliography] = ACTIONS(6453), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6453), - [anon_sym_BSLASHincludesvg] = ACTIONS(6453), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6453), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6453), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6453), - [anon_sym_BSLASHimport] = ACTIONS(6453), - [anon_sym_BSLASHsubimport] = ACTIONS(6453), - [anon_sym_BSLASHinputfrom] = ACTIONS(6453), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6453), - [anon_sym_BSLASHincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHcaption] = ACTIONS(6453), - [anon_sym_BSLASHcite] = ACTIONS(6453), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCite] = ACTIONS(6453), - [anon_sym_BSLASHnocite] = ACTIONS(6453), - [anon_sym_BSLASHcitet] = ACTIONS(6453), - [anon_sym_BSLASHcitep] = ACTIONS(6453), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteauthor] = ACTIONS(6453), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6453), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitetitle] = ACTIONS(6453), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteyear] = ACTIONS(6453), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitedate] = ACTIONS(6453), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteurl] = ACTIONS(6453), - [anon_sym_BSLASHfullcite] = ACTIONS(6453), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6453), - [anon_sym_BSLASHcitealt] = ACTIONS(6453), - [anon_sym_BSLASHcitealp] = ACTIONS(6453), - [anon_sym_BSLASHcitetext] = ACTIONS(6453), - [anon_sym_BSLASHparencite] = ACTIONS(6453), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHParencite] = ACTIONS(6453), - [anon_sym_BSLASHfootcite] = ACTIONS(6453), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6453), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6453), - [anon_sym_BSLASHtextcite] = ACTIONS(6453), - [anon_sym_BSLASHTextcite] = ACTIONS(6453), - [anon_sym_BSLASHsmartcite] = ACTIONS(6453), - [anon_sym_BSLASHSmartcite] = ACTIONS(6453), - [anon_sym_BSLASHsupercite] = ACTIONS(6453), - [anon_sym_BSLASHautocite] = ACTIONS(6453), - [anon_sym_BSLASHAutocite] = ACTIONS(6453), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHvolcite] = ACTIONS(6453), - [anon_sym_BSLASHVolcite] = ACTIONS(6453), - [anon_sym_BSLASHpvolcite] = ACTIONS(6453), - [anon_sym_BSLASHPvolcite] = ACTIONS(6453), - [anon_sym_BSLASHfvolcite] = ACTIONS(6453), - [anon_sym_BSLASHftvolcite] = ACTIONS(6453), - [anon_sym_BSLASHsvolcite] = ACTIONS(6453), - [anon_sym_BSLASHSvolcite] = ACTIONS(6453), - [anon_sym_BSLASHtvolcite] = ACTIONS(6453), - [anon_sym_BSLASHTvolcite] = ACTIONS(6453), - [anon_sym_BSLASHavolcite] = ACTIONS(6453), - [anon_sym_BSLASHAvolcite] = ACTIONS(6453), - [anon_sym_BSLASHnotecite] = ACTIONS(6453), - [anon_sym_BSLASHNotecite] = ACTIONS(6453), - [anon_sym_BSLASHpnotecite] = ACTIONS(6453), - [anon_sym_BSLASHPnotecite] = ACTIONS(6453), - [anon_sym_BSLASHfnotecite] = ACTIONS(6453), - [anon_sym_BSLASHlabel] = ACTIONS(6453), - [anon_sym_BSLASHref] = ACTIONS(6453), - [anon_sym_BSLASHeqref] = ACTIONS(6453), - [anon_sym_BSLASHvref] = ACTIONS(6453), - [anon_sym_BSLASHVref] = ACTIONS(6453), - [anon_sym_BSLASHautoref] = ACTIONS(6453), - [anon_sym_BSLASHpageref] = ACTIONS(6453), - [anon_sym_BSLASHcref] = ACTIONS(6453), - [anon_sym_BSLASHCref] = ACTIONS(6453), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnameCref] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHlabelcref] = ACTIONS(6453), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCrefrange] = ACTIONS(6453), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnewlabel] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6453), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6453), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6455), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHdef] = ACTIONS(6453), - [anon_sym_BSLASHlet] = ACTIONS(6453), - [anon_sym_BSLASHleft] = ACTIONS(6453), - [anon_sym_BSLASHbig] = ACTIONS(6453), - [anon_sym_BSLASHBig] = ACTIONS(6453), - [anon_sym_BSLASHbigg] = ACTIONS(6453), - [anon_sym_BSLASHBigg] = ACTIONS(6453), - [anon_sym_BSLASHbigl] = ACTIONS(6453), - [anon_sym_BSLASHBigl] = ACTIONS(6453), - [anon_sym_BSLASHbiggl] = ACTIONS(6453), - [anon_sym_BSLASHBiggl] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6453), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6453), - [anon_sym_BSLASHgls] = ACTIONS(6453), - [anon_sym_BSLASHGls] = ACTIONS(6453), - [anon_sym_BSLASHGLS] = ACTIONS(6453), - [anon_sym_BSLASHglspl] = ACTIONS(6453), - [anon_sym_BSLASHGlspl] = ACTIONS(6453), - [anon_sym_BSLASHGLSpl] = ACTIONS(6453), - [anon_sym_BSLASHglsdisp] = ACTIONS(6453), - [anon_sym_BSLASHglslink] = ACTIONS(6453), - [anon_sym_BSLASHglstext] = ACTIONS(6453), - [anon_sym_BSLASHGlstext] = ACTIONS(6453), - [anon_sym_BSLASHGLStext] = ACTIONS(6453), - [anon_sym_BSLASHglsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6453), - [anon_sym_BSLASHglsplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSplural] = ACTIONS(6453), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHglsname] = ACTIONS(6453), - [anon_sym_BSLASHGlsname] = ACTIONS(6453), - [anon_sym_BSLASHGLSname] = ACTIONS(6453), - [anon_sym_BSLASHglssymbol] = ACTIONS(6453), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6453), - [anon_sym_BSLASHglsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6453), - [anon_sym_BSLASHglsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6453), - [anon_sym_BSLASHglsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6453), - [anon_sym_BSLASHglsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6453), - [anon_sym_BSLASHglsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6453), - [anon_sym_BSLASHnewacronym] = ACTIONS(6453), - [anon_sym_BSLASHacrshort] = ACTIONS(6453), - [anon_sym_BSLASHAcrshort] = ACTIONS(6453), - [anon_sym_BSLASHACRshort] = ACTIONS(6453), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6453), - [anon_sym_BSLASHacrlong] = ACTIONS(6453), - [anon_sym_BSLASHAcrlong] = ACTIONS(6453), - [anon_sym_BSLASHACRlong] = ACTIONS(6453), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6453), - [anon_sym_BSLASHacrfull] = ACTIONS(6453), - [anon_sym_BSLASHAcrfull] = ACTIONS(6453), - [anon_sym_BSLASHACRfull] = ACTIONS(6453), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6453), - [anon_sym_BSLASHacs] = ACTIONS(6453), - [anon_sym_BSLASHAcs] = ACTIONS(6453), - [anon_sym_BSLASHacsp] = ACTIONS(6453), - [anon_sym_BSLASHAcsp] = ACTIONS(6453), - [anon_sym_BSLASHacl] = ACTIONS(6453), - [anon_sym_BSLASHAcl] = ACTIONS(6453), - [anon_sym_BSLASHaclp] = ACTIONS(6453), - [anon_sym_BSLASHAclp] = ACTIONS(6453), - [anon_sym_BSLASHacf] = ACTIONS(6453), - [anon_sym_BSLASHAcf] = ACTIONS(6453), - [anon_sym_BSLASHacfp] = ACTIONS(6453), - [anon_sym_BSLASHAcfp] = ACTIONS(6453), - [anon_sym_BSLASHac] = ACTIONS(6453), - [anon_sym_BSLASHAc] = ACTIONS(6453), - [anon_sym_BSLASHacp] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6453), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6453), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6453), - [anon_sym_BSLASHcolor] = ACTIONS(6453), - [anon_sym_BSLASHcolorbox] = ACTIONS(6453), - [anon_sym_BSLASHtextcolor] = ACTIONS(6453), - [anon_sym_BSLASHpagecolor] = ACTIONS(6453), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6453), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6453), - [anon_sym_BSLASHtext] = ACTIONS(6453), - [anon_sym_BSLASHintertext] = ACTIONS(6453), - [anon_sym_shortintertext] = ACTIONS(6453), - }, - [1232] = { - [sym_command_name] = ACTIONS(6457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6457), - [anon_sym_LBRACK] = ACTIONS(6459), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(6459), - [anon_sym_LPAREN] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_BSLASHpart] = ACTIONS(6457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddpart] = ACTIONS(6457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6459), - [anon_sym_BSLASHchapter] = ACTIONS(6457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddchap] = ACTIONS(6457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsection] = ACTIONS(6457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddsec] = ACTIONS(6457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubsection] = ACTIONS(6457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHparagraph] = ACTIONS(6457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6459), - [anon_sym_BSLASHitem] = ACTIONS(6457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6459), - [anon_sym_LBRACE] = ACTIONS(6459), - [sym_word] = ACTIONS(6457), - [sym_placeholder] = ACTIONS(6459), - [anon_sym_PLUS] = ACTIONS(6459), - [anon_sym_DASH] = ACTIONS(6459), - [anon_sym_STAR] = ACTIONS(6459), - [anon_sym_SLASH] = ACTIONS(6459), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_BANG] = ACTIONS(6457), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_SQUOTE] = ACTIONS(6457), - [anon_sym__] = ACTIONS(6459), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6459), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6459), - [anon_sym_DOLLAR] = ACTIONS(6457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6459), - [anon_sym_BSLASHbegin] = ACTIONS(6457), - [anon_sym_BSLASHtitle] = ACTIONS(6457), - [anon_sym_BSLASHauthor] = ACTIONS(6457), - [anon_sym_BSLASHusepackage] = ACTIONS(6457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6457), - [anon_sym_BSLASHinclude] = ACTIONS(6457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6457), - [anon_sym_BSLASHinput] = ACTIONS(6457), - [anon_sym_BSLASHsubfile] = ACTIONS(6457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6457), - [anon_sym_BSLASHbibliography] = ACTIONS(6457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6457), - [anon_sym_BSLASHincludesvg] = ACTIONS(6457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6457), - [anon_sym_BSLASHimport] = ACTIONS(6457), - [anon_sym_BSLASHsubimport] = ACTIONS(6457), - [anon_sym_BSLASHinputfrom] = ACTIONS(6457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6457), - [anon_sym_BSLASHincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHcaption] = ACTIONS(6457), - [anon_sym_BSLASHcite] = ACTIONS(6457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCite] = ACTIONS(6457), - [anon_sym_BSLASHnocite] = ACTIONS(6457), - [anon_sym_BSLASHcitet] = ACTIONS(6457), - [anon_sym_BSLASHcitep] = ACTIONS(6457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteauthor] = ACTIONS(6457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitetitle] = ACTIONS(6457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteyear] = ACTIONS(6457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitedate] = ACTIONS(6457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteurl] = ACTIONS(6457), - [anon_sym_BSLASHfullcite] = ACTIONS(6457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6457), - [anon_sym_BSLASHcitealt] = ACTIONS(6457), - [anon_sym_BSLASHcitealp] = ACTIONS(6457), - [anon_sym_BSLASHcitetext] = ACTIONS(6457), - [anon_sym_BSLASHparencite] = ACTIONS(6457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHParencite] = ACTIONS(6457), - [anon_sym_BSLASHfootcite] = ACTIONS(6457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6457), - [anon_sym_BSLASHtextcite] = ACTIONS(6457), - [anon_sym_BSLASHTextcite] = ACTIONS(6457), - [anon_sym_BSLASHsmartcite] = ACTIONS(6457), - [anon_sym_BSLASHSmartcite] = ACTIONS(6457), - [anon_sym_BSLASHsupercite] = ACTIONS(6457), - [anon_sym_BSLASHautocite] = ACTIONS(6457), - [anon_sym_BSLASHAutocite] = ACTIONS(6457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHvolcite] = ACTIONS(6457), - [anon_sym_BSLASHVolcite] = ACTIONS(6457), - [anon_sym_BSLASHpvolcite] = ACTIONS(6457), - [anon_sym_BSLASHPvolcite] = ACTIONS(6457), - [anon_sym_BSLASHfvolcite] = ACTIONS(6457), - [anon_sym_BSLASHftvolcite] = ACTIONS(6457), - [anon_sym_BSLASHsvolcite] = ACTIONS(6457), - [anon_sym_BSLASHSvolcite] = ACTIONS(6457), - [anon_sym_BSLASHtvolcite] = ACTIONS(6457), - [anon_sym_BSLASHTvolcite] = ACTIONS(6457), - [anon_sym_BSLASHavolcite] = ACTIONS(6457), - [anon_sym_BSLASHAvolcite] = ACTIONS(6457), - [anon_sym_BSLASHnotecite] = ACTIONS(6457), - [anon_sym_BSLASHNotecite] = ACTIONS(6457), - [anon_sym_BSLASHpnotecite] = ACTIONS(6457), - [anon_sym_BSLASHPnotecite] = ACTIONS(6457), - [anon_sym_BSLASHfnotecite] = ACTIONS(6457), - [anon_sym_BSLASHlabel] = ACTIONS(6457), - [anon_sym_BSLASHref] = ACTIONS(6457), - [anon_sym_BSLASHeqref] = ACTIONS(6457), - [anon_sym_BSLASHvref] = ACTIONS(6457), - [anon_sym_BSLASHVref] = ACTIONS(6457), - [anon_sym_BSLASHautoref] = ACTIONS(6457), - [anon_sym_BSLASHpageref] = ACTIONS(6457), - [anon_sym_BSLASHcref] = ACTIONS(6457), - [anon_sym_BSLASHCref] = ACTIONS(6457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnameCref] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHlabelcref] = ACTIONS(6457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCrefrange] = ACTIONS(6457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnewlabel] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6459), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHdef] = ACTIONS(6457), - [anon_sym_BSLASHlet] = ACTIONS(6457), - [anon_sym_BSLASHleft] = ACTIONS(6457), - [anon_sym_BSLASHbig] = ACTIONS(6457), - [anon_sym_BSLASHBig] = ACTIONS(6457), - [anon_sym_BSLASHbigg] = ACTIONS(6457), - [anon_sym_BSLASHBigg] = ACTIONS(6457), - [anon_sym_BSLASHbigl] = ACTIONS(6457), - [anon_sym_BSLASHBigl] = ACTIONS(6457), - [anon_sym_BSLASHbiggl] = ACTIONS(6457), - [anon_sym_BSLASHBiggl] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6457), - [anon_sym_BSLASHgls] = ACTIONS(6457), - [anon_sym_BSLASHGls] = ACTIONS(6457), - [anon_sym_BSLASHGLS] = ACTIONS(6457), - [anon_sym_BSLASHglspl] = ACTIONS(6457), - [anon_sym_BSLASHGlspl] = ACTIONS(6457), - [anon_sym_BSLASHGLSpl] = ACTIONS(6457), - [anon_sym_BSLASHglsdisp] = ACTIONS(6457), - [anon_sym_BSLASHglslink] = ACTIONS(6457), - [anon_sym_BSLASHglstext] = ACTIONS(6457), - [anon_sym_BSLASHGlstext] = ACTIONS(6457), - [anon_sym_BSLASHGLStext] = ACTIONS(6457), - [anon_sym_BSLASHglsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6457), - [anon_sym_BSLASHglsplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSplural] = ACTIONS(6457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHglsname] = ACTIONS(6457), - [anon_sym_BSLASHGlsname] = ACTIONS(6457), - [anon_sym_BSLASHGLSname] = ACTIONS(6457), - [anon_sym_BSLASHglssymbol] = ACTIONS(6457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6457), - [anon_sym_BSLASHglsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6457), - [anon_sym_BSLASHglsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6457), - [anon_sym_BSLASHglsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6457), - [anon_sym_BSLASHglsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6457), - [anon_sym_BSLASHglsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6457), - [anon_sym_BSLASHnewacronym] = ACTIONS(6457), - [anon_sym_BSLASHacrshort] = ACTIONS(6457), - [anon_sym_BSLASHAcrshort] = ACTIONS(6457), - [anon_sym_BSLASHACRshort] = ACTIONS(6457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6457), - [anon_sym_BSLASHacrlong] = ACTIONS(6457), - [anon_sym_BSLASHAcrlong] = ACTIONS(6457), - [anon_sym_BSLASHACRlong] = ACTIONS(6457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6457), - [anon_sym_BSLASHacrfull] = ACTIONS(6457), - [anon_sym_BSLASHAcrfull] = ACTIONS(6457), - [anon_sym_BSLASHACRfull] = ACTIONS(6457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6457), - [anon_sym_BSLASHacs] = ACTIONS(6457), - [anon_sym_BSLASHAcs] = ACTIONS(6457), - [anon_sym_BSLASHacsp] = ACTIONS(6457), - [anon_sym_BSLASHAcsp] = ACTIONS(6457), - [anon_sym_BSLASHacl] = ACTIONS(6457), - [anon_sym_BSLASHAcl] = ACTIONS(6457), - [anon_sym_BSLASHaclp] = ACTIONS(6457), - [anon_sym_BSLASHAclp] = ACTIONS(6457), - [anon_sym_BSLASHacf] = ACTIONS(6457), - [anon_sym_BSLASHAcf] = ACTIONS(6457), - [anon_sym_BSLASHacfp] = ACTIONS(6457), - [anon_sym_BSLASHAcfp] = ACTIONS(6457), - [anon_sym_BSLASHac] = ACTIONS(6457), - [anon_sym_BSLASHAc] = ACTIONS(6457), - [anon_sym_BSLASHacp] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6457), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6457), - [anon_sym_BSLASHcolor] = ACTIONS(6457), - [anon_sym_BSLASHcolorbox] = ACTIONS(6457), - [anon_sym_BSLASHtextcolor] = ACTIONS(6457), - [anon_sym_BSLASHpagecolor] = ACTIONS(6457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6457), - [anon_sym_BSLASHtext] = ACTIONS(6457), - [anon_sym_BSLASHintertext] = ACTIONS(6457), - [anon_sym_shortintertext] = ACTIONS(6457), - }, - [1233] = { - [sym_command_name] = ACTIONS(6461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6461), - [anon_sym_LBRACK] = ACTIONS(6463), - [anon_sym_RBRACK] = ACTIONS(6463), - [anon_sym_COMMA] = ACTIONS(6463), - [anon_sym_EQ] = ACTIONS(6463), - [anon_sym_LPAREN] = ACTIONS(6463), - [anon_sym_RPAREN] = ACTIONS(6463), - [anon_sym_BSLASHpart] = ACTIONS(6461), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddpart] = ACTIONS(6461), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6463), - [anon_sym_BSLASHchapter] = ACTIONS(6461), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddchap] = ACTIONS(6461), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsection] = ACTIONS(6461), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddsec] = ACTIONS(6461), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubsection] = ACTIONS(6461), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6461), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHparagraph] = ACTIONS(6461), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6461), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6463), - [anon_sym_BSLASHitem] = ACTIONS(6461), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6463), - [anon_sym_LBRACE] = ACTIONS(6463), - [sym_word] = ACTIONS(6461), - [sym_placeholder] = ACTIONS(6463), - [anon_sym_PLUS] = ACTIONS(6463), - [anon_sym_DASH] = ACTIONS(6463), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6463), - [anon_sym_LT] = ACTIONS(6461), - [anon_sym_GT] = ACTIONS(6461), - [anon_sym_BANG] = ACTIONS(6461), - [anon_sym_PIPE] = ACTIONS(6461), - [anon_sym_COLON] = ACTIONS(6461), - [anon_sym_SQUOTE] = ACTIONS(6461), - [anon_sym__] = ACTIONS(6463), - [anon_sym_CARET] = ACTIONS(6463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6463), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6463), - [anon_sym_DOLLAR] = ACTIONS(6461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6463), - [anon_sym_BSLASHbegin] = ACTIONS(6461), - [anon_sym_BSLASHtitle] = ACTIONS(6461), - [anon_sym_BSLASHauthor] = ACTIONS(6461), - [anon_sym_BSLASHusepackage] = ACTIONS(6461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6461), - [anon_sym_BSLASHinclude] = ACTIONS(6461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6461), - [anon_sym_BSLASHinput] = ACTIONS(6461), - [anon_sym_BSLASHsubfile] = ACTIONS(6461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6461), - [anon_sym_BSLASHbibliography] = ACTIONS(6461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6461), - [anon_sym_BSLASHincludesvg] = ACTIONS(6461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6461), - [anon_sym_BSLASHimport] = ACTIONS(6461), - [anon_sym_BSLASHsubimport] = ACTIONS(6461), - [anon_sym_BSLASHinputfrom] = ACTIONS(6461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6461), - [anon_sym_BSLASHincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHcaption] = ACTIONS(6461), - [anon_sym_BSLASHcite] = ACTIONS(6461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCite] = ACTIONS(6461), - [anon_sym_BSLASHnocite] = ACTIONS(6461), - [anon_sym_BSLASHcitet] = ACTIONS(6461), - [anon_sym_BSLASHcitep] = ACTIONS(6461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteauthor] = ACTIONS(6461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitetitle] = ACTIONS(6461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteyear] = ACTIONS(6461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitedate] = ACTIONS(6461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteurl] = ACTIONS(6461), - [anon_sym_BSLASHfullcite] = ACTIONS(6461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6461), - [anon_sym_BSLASHcitealt] = ACTIONS(6461), - [anon_sym_BSLASHcitealp] = ACTIONS(6461), - [anon_sym_BSLASHcitetext] = ACTIONS(6461), - [anon_sym_BSLASHparencite] = ACTIONS(6461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHParencite] = ACTIONS(6461), - [anon_sym_BSLASHfootcite] = ACTIONS(6461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6461), - [anon_sym_BSLASHtextcite] = ACTIONS(6461), - [anon_sym_BSLASHTextcite] = ACTIONS(6461), - [anon_sym_BSLASHsmartcite] = ACTIONS(6461), - [anon_sym_BSLASHSmartcite] = ACTIONS(6461), - [anon_sym_BSLASHsupercite] = ACTIONS(6461), - [anon_sym_BSLASHautocite] = ACTIONS(6461), - [anon_sym_BSLASHAutocite] = ACTIONS(6461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHvolcite] = ACTIONS(6461), - [anon_sym_BSLASHVolcite] = ACTIONS(6461), - [anon_sym_BSLASHpvolcite] = ACTIONS(6461), - [anon_sym_BSLASHPvolcite] = ACTIONS(6461), - [anon_sym_BSLASHfvolcite] = ACTIONS(6461), - [anon_sym_BSLASHftvolcite] = ACTIONS(6461), - [anon_sym_BSLASHsvolcite] = ACTIONS(6461), - [anon_sym_BSLASHSvolcite] = ACTIONS(6461), - [anon_sym_BSLASHtvolcite] = ACTIONS(6461), - [anon_sym_BSLASHTvolcite] = ACTIONS(6461), - [anon_sym_BSLASHavolcite] = ACTIONS(6461), - [anon_sym_BSLASHAvolcite] = ACTIONS(6461), - [anon_sym_BSLASHnotecite] = ACTIONS(6461), - [anon_sym_BSLASHNotecite] = ACTIONS(6461), - [anon_sym_BSLASHpnotecite] = ACTIONS(6461), - [anon_sym_BSLASHPnotecite] = ACTIONS(6461), - [anon_sym_BSLASHfnotecite] = ACTIONS(6461), - [anon_sym_BSLASHlabel] = ACTIONS(6461), - [anon_sym_BSLASHref] = ACTIONS(6461), - [anon_sym_BSLASHeqref] = ACTIONS(6461), - [anon_sym_BSLASHvref] = ACTIONS(6461), - [anon_sym_BSLASHVref] = ACTIONS(6461), - [anon_sym_BSLASHautoref] = ACTIONS(6461), - [anon_sym_BSLASHpageref] = ACTIONS(6461), - [anon_sym_BSLASHcref] = ACTIONS(6461), - [anon_sym_BSLASHCref] = ACTIONS(6461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnameCref] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHlabelcref] = ACTIONS(6461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCrefrange] = ACTIONS(6461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnewlabel] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6463), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHdef] = ACTIONS(6461), - [anon_sym_BSLASHlet] = ACTIONS(6461), - [anon_sym_BSLASHleft] = ACTIONS(6461), - [anon_sym_BSLASHbig] = ACTIONS(6461), - [anon_sym_BSLASHBig] = ACTIONS(6461), - [anon_sym_BSLASHbigg] = ACTIONS(6461), - [anon_sym_BSLASHBigg] = ACTIONS(6461), - [anon_sym_BSLASHbigl] = ACTIONS(6461), - [anon_sym_BSLASHBigl] = ACTIONS(6461), - [anon_sym_BSLASHbiggl] = ACTIONS(6461), - [anon_sym_BSLASHBiggl] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6461), - [anon_sym_BSLASHgls] = ACTIONS(6461), - [anon_sym_BSLASHGls] = ACTIONS(6461), - [anon_sym_BSLASHGLS] = ACTIONS(6461), - [anon_sym_BSLASHglspl] = ACTIONS(6461), - [anon_sym_BSLASHGlspl] = ACTIONS(6461), - [anon_sym_BSLASHGLSpl] = ACTIONS(6461), - [anon_sym_BSLASHglsdisp] = ACTIONS(6461), - [anon_sym_BSLASHglslink] = ACTIONS(6461), - [anon_sym_BSLASHglstext] = ACTIONS(6461), - [anon_sym_BSLASHGlstext] = ACTIONS(6461), - [anon_sym_BSLASHGLStext] = ACTIONS(6461), - [anon_sym_BSLASHglsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6461), - [anon_sym_BSLASHglsplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSplural] = ACTIONS(6461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHglsname] = ACTIONS(6461), - [anon_sym_BSLASHGlsname] = ACTIONS(6461), - [anon_sym_BSLASHGLSname] = ACTIONS(6461), - [anon_sym_BSLASHglssymbol] = ACTIONS(6461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6461), - [anon_sym_BSLASHglsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6461), - [anon_sym_BSLASHglsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6461), - [anon_sym_BSLASHglsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6461), - [anon_sym_BSLASHglsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6461), - [anon_sym_BSLASHglsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6461), - [anon_sym_BSLASHnewacronym] = ACTIONS(6461), - [anon_sym_BSLASHacrshort] = ACTIONS(6461), - [anon_sym_BSLASHAcrshort] = ACTIONS(6461), - [anon_sym_BSLASHACRshort] = ACTIONS(6461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6461), - [anon_sym_BSLASHacrlong] = ACTIONS(6461), - [anon_sym_BSLASHAcrlong] = ACTIONS(6461), - [anon_sym_BSLASHACRlong] = ACTIONS(6461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6461), - [anon_sym_BSLASHacrfull] = ACTIONS(6461), - [anon_sym_BSLASHAcrfull] = ACTIONS(6461), - [anon_sym_BSLASHACRfull] = ACTIONS(6461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6461), - [anon_sym_BSLASHacs] = ACTIONS(6461), - [anon_sym_BSLASHAcs] = ACTIONS(6461), - [anon_sym_BSLASHacsp] = ACTIONS(6461), - [anon_sym_BSLASHAcsp] = ACTIONS(6461), - [anon_sym_BSLASHacl] = ACTIONS(6461), - [anon_sym_BSLASHAcl] = ACTIONS(6461), - [anon_sym_BSLASHaclp] = ACTIONS(6461), - [anon_sym_BSLASHAclp] = ACTIONS(6461), - [anon_sym_BSLASHacf] = ACTIONS(6461), - [anon_sym_BSLASHAcf] = ACTIONS(6461), - [anon_sym_BSLASHacfp] = ACTIONS(6461), - [anon_sym_BSLASHAcfp] = ACTIONS(6461), - [anon_sym_BSLASHac] = ACTIONS(6461), - [anon_sym_BSLASHAc] = ACTIONS(6461), - [anon_sym_BSLASHacp] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6461), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6461), - [anon_sym_BSLASHcolor] = ACTIONS(6461), - [anon_sym_BSLASHcolorbox] = ACTIONS(6461), - [anon_sym_BSLASHtextcolor] = ACTIONS(6461), - [anon_sym_BSLASHpagecolor] = ACTIONS(6461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6461), - [anon_sym_BSLASHtext] = ACTIONS(6461), - [anon_sym_BSLASHintertext] = ACTIONS(6461), - [anon_sym_shortintertext] = ACTIONS(6461), - }, - [1234] = { - [sym_command_name] = ACTIONS(6465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6465), - [anon_sym_LBRACK] = ACTIONS(6467), - [anon_sym_RBRACK] = ACTIONS(6467), - [anon_sym_COMMA] = ACTIONS(6467), - [anon_sym_EQ] = ACTIONS(6467), - [anon_sym_LPAREN] = ACTIONS(6467), - [anon_sym_RPAREN] = ACTIONS(6467), - [anon_sym_BSLASHpart] = ACTIONS(6465), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddpart] = ACTIONS(6465), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6467), - [anon_sym_BSLASHchapter] = ACTIONS(6465), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddchap] = ACTIONS(6465), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsection] = ACTIONS(6465), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddsec] = ACTIONS(6465), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubsection] = ACTIONS(6465), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6465), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHparagraph] = ACTIONS(6465), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6465), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6467), - [anon_sym_BSLASHitem] = ACTIONS(6465), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6467), - [anon_sym_LBRACE] = ACTIONS(6467), - [sym_word] = ACTIONS(6465), - [sym_placeholder] = ACTIONS(6467), - [anon_sym_PLUS] = ACTIONS(6467), - [anon_sym_DASH] = ACTIONS(6467), - [anon_sym_STAR] = ACTIONS(6467), - [anon_sym_SLASH] = ACTIONS(6467), - [anon_sym_LT] = ACTIONS(6465), - [anon_sym_GT] = ACTIONS(6465), - [anon_sym_BANG] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6465), - [anon_sym_COLON] = ACTIONS(6465), - [anon_sym_SQUOTE] = ACTIONS(6465), - [anon_sym__] = ACTIONS(6467), - [anon_sym_CARET] = ACTIONS(6467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6467), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6467), - [anon_sym_DOLLAR] = ACTIONS(6465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6467), - [anon_sym_BSLASHbegin] = ACTIONS(6465), - [anon_sym_BSLASHtitle] = ACTIONS(6465), - [anon_sym_BSLASHauthor] = ACTIONS(6465), - [anon_sym_BSLASHusepackage] = ACTIONS(6465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6465), - [anon_sym_BSLASHinclude] = ACTIONS(6465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6465), - [anon_sym_BSLASHinput] = ACTIONS(6465), - [anon_sym_BSLASHsubfile] = ACTIONS(6465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6465), - [anon_sym_BSLASHbibliography] = ACTIONS(6465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6465), - [anon_sym_BSLASHincludesvg] = ACTIONS(6465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6465), - [anon_sym_BSLASHimport] = ACTIONS(6465), - [anon_sym_BSLASHsubimport] = ACTIONS(6465), - [anon_sym_BSLASHinputfrom] = ACTIONS(6465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6465), - [anon_sym_BSLASHincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHcaption] = ACTIONS(6465), - [anon_sym_BSLASHcite] = ACTIONS(6465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCite] = ACTIONS(6465), - [anon_sym_BSLASHnocite] = ACTIONS(6465), - [anon_sym_BSLASHcitet] = ACTIONS(6465), - [anon_sym_BSLASHcitep] = ACTIONS(6465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteauthor] = ACTIONS(6465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitetitle] = ACTIONS(6465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteyear] = ACTIONS(6465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitedate] = ACTIONS(6465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteurl] = ACTIONS(6465), - [anon_sym_BSLASHfullcite] = ACTIONS(6465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6465), - [anon_sym_BSLASHcitealt] = ACTIONS(6465), - [anon_sym_BSLASHcitealp] = ACTIONS(6465), - [anon_sym_BSLASHcitetext] = ACTIONS(6465), - [anon_sym_BSLASHparencite] = ACTIONS(6465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHParencite] = ACTIONS(6465), - [anon_sym_BSLASHfootcite] = ACTIONS(6465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6465), - [anon_sym_BSLASHtextcite] = ACTIONS(6465), - [anon_sym_BSLASHTextcite] = ACTIONS(6465), - [anon_sym_BSLASHsmartcite] = ACTIONS(6465), - [anon_sym_BSLASHSmartcite] = ACTIONS(6465), - [anon_sym_BSLASHsupercite] = ACTIONS(6465), - [anon_sym_BSLASHautocite] = ACTIONS(6465), - [anon_sym_BSLASHAutocite] = ACTIONS(6465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHvolcite] = ACTIONS(6465), - [anon_sym_BSLASHVolcite] = ACTIONS(6465), - [anon_sym_BSLASHpvolcite] = ACTIONS(6465), - [anon_sym_BSLASHPvolcite] = ACTIONS(6465), - [anon_sym_BSLASHfvolcite] = ACTIONS(6465), - [anon_sym_BSLASHftvolcite] = ACTIONS(6465), - [anon_sym_BSLASHsvolcite] = ACTIONS(6465), - [anon_sym_BSLASHSvolcite] = ACTIONS(6465), - [anon_sym_BSLASHtvolcite] = ACTIONS(6465), - [anon_sym_BSLASHTvolcite] = ACTIONS(6465), - [anon_sym_BSLASHavolcite] = ACTIONS(6465), - [anon_sym_BSLASHAvolcite] = ACTIONS(6465), - [anon_sym_BSLASHnotecite] = ACTIONS(6465), - [anon_sym_BSLASHNotecite] = ACTIONS(6465), - [anon_sym_BSLASHpnotecite] = ACTIONS(6465), - [anon_sym_BSLASHPnotecite] = ACTIONS(6465), - [anon_sym_BSLASHfnotecite] = ACTIONS(6465), - [anon_sym_BSLASHlabel] = ACTIONS(6465), - [anon_sym_BSLASHref] = ACTIONS(6465), - [anon_sym_BSLASHeqref] = ACTIONS(6465), - [anon_sym_BSLASHvref] = ACTIONS(6465), - [anon_sym_BSLASHVref] = ACTIONS(6465), - [anon_sym_BSLASHautoref] = ACTIONS(6465), - [anon_sym_BSLASHpageref] = ACTIONS(6465), - [anon_sym_BSLASHcref] = ACTIONS(6465), - [anon_sym_BSLASHCref] = ACTIONS(6465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnameCref] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHlabelcref] = ACTIONS(6465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCrefrange] = ACTIONS(6465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnewlabel] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6467), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHdef] = ACTIONS(6465), - [anon_sym_BSLASHlet] = ACTIONS(6465), - [anon_sym_BSLASHleft] = ACTIONS(6465), - [anon_sym_BSLASHbig] = ACTIONS(6465), - [anon_sym_BSLASHBig] = ACTIONS(6465), - [anon_sym_BSLASHbigg] = ACTIONS(6465), - [anon_sym_BSLASHBigg] = ACTIONS(6465), - [anon_sym_BSLASHbigl] = ACTIONS(6465), - [anon_sym_BSLASHBigl] = ACTIONS(6465), - [anon_sym_BSLASHbiggl] = ACTIONS(6465), - [anon_sym_BSLASHBiggl] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6465), - [anon_sym_BSLASHgls] = ACTIONS(6465), - [anon_sym_BSLASHGls] = ACTIONS(6465), - [anon_sym_BSLASHGLS] = ACTIONS(6465), - [anon_sym_BSLASHglspl] = ACTIONS(6465), - [anon_sym_BSLASHGlspl] = ACTIONS(6465), - [anon_sym_BSLASHGLSpl] = ACTIONS(6465), - [anon_sym_BSLASHglsdisp] = ACTIONS(6465), - [anon_sym_BSLASHglslink] = ACTIONS(6465), - [anon_sym_BSLASHglstext] = ACTIONS(6465), - [anon_sym_BSLASHGlstext] = ACTIONS(6465), - [anon_sym_BSLASHGLStext] = ACTIONS(6465), - [anon_sym_BSLASHglsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6465), - [anon_sym_BSLASHglsplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSplural] = ACTIONS(6465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHglsname] = ACTIONS(6465), - [anon_sym_BSLASHGlsname] = ACTIONS(6465), - [anon_sym_BSLASHGLSname] = ACTIONS(6465), - [anon_sym_BSLASHglssymbol] = ACTIONS(6465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6465), - [anon_sym_BSLASHglsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6465), - [anon_sym_BSLASHglsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6465), - [anon_sym_BSLASHglsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6465), - [anon_sym_BSLASHglsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6465), - [anon_sym_BSLASHglsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6465), - [anon_sym_BSLASHnewacronym] = ACTIONS(6465), - [anon_sym_BSLASHacrshort] = ACTIONS(6465), - [anon_sym_BSLASHAcrshort] = ACTIONS(6465), - [anon_sym_BSLASHACRshort] = ACTIONS(6465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6465), - [anon_sym_BSLASHacrlong] = ACTIONS(6465), - [anon_sym_BSLASHAcrlong] = ACTIONS(6465), - [anon_sym_BSLASHACRlong] = ACTIONS(6465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6465), - [anon_sym_BSLASHacrfull] = ACTIONS(6465), - [anon_sym_BSLASHAcrfull] = ACTIONS(6465), - [anon_sym_BSLASHACRfull] = ACTIONS(6465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6465), - [anon_sym_BSLASHacs] = ACTIONS(6465), - [anon_sym_BSLASHAcs] = ACTIONS(6465), - [anon_sym_BSLASHacsp] = ACTIONS(6465), - [anon_sym_BSLASHAcsp] = ACTIONS(6465), - [anon_sym_BSLASHacl] = ACTIONS(6465), - [anon_sym_BSLASHAcl] = ACTIONS(6465), - [anon_sym_BSLASHaclp] = ACTIONS(6465), - [anon_sym_BSLASHAclp] = ACTIONS(6465), - [anon_sym_BSLASHacf] = ACTIONS(6465), - [anon_sym_BSLASHAcf] = ACTIONS(6465), - [anon_sym_BSLASHacfp] = ACTIONS(6465), - [anon_sym_BSLASHAcfp] = ACTIONS(6465), - [anon_sym_BSLASHac] = ACTIONS(6465), - [anon_sym_BSLASHAc] = ACTIONS(6465), - [anon_sym_BSLASHacp] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6465), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6465), - [anon_sym_BSLASHcolor] = ACTIONS(6465), - [anon_sym_BSLASHcolorbox] = ACTIONS(6465), - [anon_sym_BSLASHtextcolor] = ACTIONS(6465), - [anon_sym_BSLASHpagecolor] = ACTIONS(6465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6465), - [anon_sym_BSLASHtext] = ACTIONS(6465), - [anon_sym_BSLASHintertext] = ACTIONS(6465), - [anon_sym_shortintertext] = ACTIONS(6465), - }, - [1235] = { - [sym_command_name] = ACTIONS(6469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6471), - [anon_sym_RBRACK] = ACTIONS(6471), - [anon_sym_COMMA] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(6471), - [anon_sym_LPAREN] = ACTIONS(6471), - [anon_sym_RPAREN] = ACTIONS(6471), - [anon_sym_BSLASHpart] = ACTIONS(6469), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddpart] = ACTIONS(6469), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6471), - [anon_sym_BSLASHchapter] = ACTIONS(6469), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddchap] = ACTIONS(6469), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsection] = ACTIONS(6469), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddsec] = ACTIONS(6469), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubsection] = ACTIONS(6469), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6469), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHparagraph] = ACTIONS(6469), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6469), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6471), - [anon_sym_BSLASHitem] = ACTIONS(6469), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6471), - [sym_word] = ACTIONS(6469), - [sym_placeholder] = ACTIONS(6471), - [anon_sym_PLUS] = ACTIONS(6471), - [anon_sym_DASH] = ACTIONS(6471), - [anon_sym_STAR] = ACTIONS(6471), - [anon_sym_SLASH] = ACTIONS(6471), - [anon_sym_LT] = ACTIONS(6469), - [anon_sym_GT] = ACTIONS(6469), - [anon_sym_BANG] = ACTIONS(6469), - [anon_sym_PIPE] = ACTIONS(6469), - [anon_sym_COLON] = ACTIONS(6469), - [anon_sym_SQUOTE] = ACTIONS(6469), - [anon_sym__] = ACTIONS(6471), - [anon_sym_CARET] = ACTIONS(6471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6471), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6471), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6471), - [anon_sym_DOLLAR] = ACTIONS(6469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6471), - [anon_sym_BSLASHbegin] = ACTIONS(6469), - [anon_sym_BSLASHtitle] = ACTIONS(6469), - [anon_sym_BSLASHauthor] = ACTIONS(6469), - [anon_sym_BSLASHusepackage] = ACTIONS(6469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6469), - [anon_sym_BSLASHinclude] = ACTIONS(6469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6469), - [anon_sym_BSLASHinput] = ACTIONS(6469), - [anon_sym_BSLASHsubfile] = ACTIONS(6469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6469), - [anon_sym_BSLASHbibliography] = ACTIONS(6469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6469), - [anon_sym_BSLASHincludesvg] = ACTIONS(6469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6469), - [anon_sym_BSLASHimport] = ACTIONS(6469), - [anon_sym_BSLASHsubimport] = ACTIONS(6469), - [anon_sym_BSLASHinputfrom] = ACTIONS(6469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6469), - [anon_sym_BSLASHincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHcaption] = ACTIONS(6469), - [anon_sym_BSLASHcite] = ACTIONS(6469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCite] = ACTIONS(6469), - [anon_sym_BSLASHnocite] = ACTIONS(6469), - [anon_sym_BSLASHcitet] = ACTIONS(6469), - [anon_sym_BSLASHcitep] = ACTIONS(6469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteauthor] = ACTIONS(6469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitetitle] = ACTIONS(6469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteyear] = ACTIONS(6469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitedate] = ACTIONS(6469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteurl] = ACTIONS(6469), - [anon_sym_BSLASHfullcite] = ACTIONS(6469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6469), - [anon_sym_BSLASHcitealt] = ACTIONS(6469), - [anon_sym_BSLASHcitealp] = ACTIONS(6469), - [anon_sym_BSLASHcitetext] = ACTIONS(6469), - [anon_sym_BSLASHparencite] = ACTIONS(6469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHParencite] = ACTIONS(6469), - [anon_sym_BSLASHfootcite] = ACTIONS(6469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6469), - [anon_sym_BSLASHtextcite] = ACTIONS(6469), - [anon_sym_BSLASHTextcite] = ACTIONS(6469), - [anon_sym_BSLASHsmartcite] = ACTIONS(6469), - [anon_sym_BSLASHSmartcite] = ACTIONS(6469), - [anon_sym_BSLASHsupercite] = ACTIONS(6469), - [anon_sym_BSLASHautocite] = ACTIONS(6469), - [anon_sym_BSLASHAutocite] = ACTIONS(6469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHvolcite] = ACTIONS(6469), - [anon_sym_BSLASHVolcite] = ACTIONS(6469), - [anon_sym_BSLASHpvolcite] = ACTIONS(6469), - [anon_sym_BSLASHPvolcite] = ACTIONS(6469), - [anon_sym_BSLASHfvolcite] = ACTIONS(6469), - [anon_sym_BSLASHftvolcite] = ACTIONS(6469), - [anon_sym_BSLASHsvolcite] = ACTIONS(6469), - [anon_sym_BSLASHSvolcite] = ACTIONS(6469), - [anon_sym_BSLASHtvolcite] = ACTIONS(6469), - [anon_sym_BSLASHTvolcite] = ACTIONS(6469), - [anon_sym_BSLASHavolcite] = ACTIONS(6469), - [anon_sym_BSLASHAvolcite] = ACTIONS(6469), - [anon_sym_BSLASHnotecite] = ACTIONS(6469), - [anon_sym_BSLASHNotecite] = ACTIONS(6469), - [anon_sym_BSLASHpnotecite] = ACTIONS(6469), - [anon_sym_BSLASHPnotecite] = ACTIONS(6469), - [anon_sym_BSLASHfnotecite] = ACTIONS(6469), - [anon_sym_BSLASHlabel] = ACTIONS(6469), - [anon_sym_BSLASHref] = ACTIONS(6469), - [anon_sym_BSLASHeqref] = ACTIONS(6469), - [anon_sym_BSLASHvref] = ACTIONS(6469), - [anon_sym_BSLASHVref] = ACTIONS(6469), - [anon_sym_BSLASHautoref] = ACTIONS(6469), - [anon_sym_BSLASHpageref] = ACTIONS(6469), - [anon_sym_BSLASHcref] = ACTIONS(6469), - [anon_sym_BSLASHCref] = ACTIONS(6469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnameCref] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHlabelcref] = ACTIONS(6469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCrefrange] = ACTIONS(6469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnewlabel] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6471), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHdef] = ACTIONS(6469), - [anon_sym_BSLASHlet] = ACTIONS(6469), - [anon_sym_BSLASHleft] = ACTIONS(6469), - [anon_sym_BSLASHbig] = ACTIONS(6469), - [anon_sym_BSLASHBig] = ACTIONS(6469), - [anon_sym_BSLASHbigg] = ACTIONS(6469), - [anon_sym_BSLASHBigg] = ACTIONS(6469), - [anon_sym_BSLASHbigl] = ACTIONS(6469), - [anon_sym_BSLASHBigl] = ACTIONS(6469), - [anon_sym_BSLASHbiggl] = ACTIONS(6469), - [anon_sym_BSLASHBiggl] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6469), - [anon_sym_BSLASHgls] = ACTIONS(6469), - [anon_sym_BSLASHGls] = ACTIONS(6469), - [anon_sym_BSLASHGLS] = ACTIONS(6469), - [anon_sym_BSLASHglspl] = ACTIONS(6469), - [anon_sym_BSLASHGlspl] = ACTIONS(6469), - [anon_sym_BSLASHGLSpl] = ACTIONS(6469), - [anon_sym_BSLASHglsdisp] = ACTIONS(6469), - [anon_sym_BSLASHglslink] = ACTIONS(6469), - [anon_sym_BSLASHglstext] = ACTIONS(6469), - [anon_sym_BSLASHGlstext] = ACTIONS(6469), - [anon_sym_BSLASHGLStext] = ACTIONS(6469), - [anon_sym_BSLASHglsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6469), - [anon_sym_BSLASHglsplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSplural] = ACTIONS(6469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHglsname] = ACTIONS(6469), - [anon_sym_BSLASHGlsname] = ACTIONS(6469), - [anon_sym_BSLASHGLSname] = ACTIONS(6469), - [anon_sym_BSLASHglssymbol] = ACTIONS(6469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6469), - [anon_sym_BSLASHglsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6469), - [anon_sym_BSLASHglsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6469), - [anon_sym_BSLASHglsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6469), - [anon_sym_BSLASHglsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6469), - [anon_sym_BSLASHglsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6469), - [anon_sym_BSLASHnewacronym] = ACTIONS(6469), - [anon_sym_BSLASHacrshort] = ACTIONS(6469), - [anon_sym_BSLASHAcrshort] = ACTIONS(6469), - [anon_sym_BSLASHACRshort] = ACTIONS(6469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6469), - [anon_sym_BSLASHacrlong] = ACTIONS(6469), - [anon_sym_BSLASHAcrlong] = ACTIONS(6469), - [anon_sym_BSLASHACRlong] = ACTIONS(6469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6469), - [anon_sym_BSLASHacrfull] = ACTIONS(6469), - [anon_sym_BSLASHAcrfull] = ACTIONS(6469), - [anon_sym_BSLASHACRfull] = ACTIONS(6469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6469), - [anon_sym_BSLASHacs] = ACTIONS(6469), - [anon_sym_BSLASHAcs] = ACTIONS(6469), - [anon_sym_BSLASHacsp] = ACTIONS(6469), - [anon_sym_BSLASHAcsp] = ACTIONS(6469), - [anon_sym_BSLASHacl] = ACTIONS(6469), - [anon_sym_BSLASHAcl] = ACTIONS(6469), - [anon_sym_BSLASHaclp] = ACTIONS(6469), - [anon_sym_BSLASHAclp] = ACTIONS(6469), - [anon_sym_BSLASHacf] = ACTIONS(6469), - [anon_sym_BSLASHAcf] = ACTIONS(6469), - [anon_sym_BSLASHacfp] = ACTIONS(6469), - [anon_sym_BSLASHAcfp] = ACTIONS(6469), - [anon_sym_BSLASHac] = ACTIONS(6469), - [anon_sym_BSLASHAc] = ACTIONS(6469), - [anon_sym_BSLASHacp] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6469), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6469), - [anon_sym_BSLASHcolor] = ACTIONS(6469), - [anon_sym_BSLASHcolorbox] = ACTIONS(6469), - [anon_sym_BSLASHtextcolor] = ACTIONS(6469), - [anon_sym_BSLASHpagecolor] = ACTIONS(6469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6469), - [anon_sym_BSLASHtext] = ACTIONS(6469), - [anon_sym_BSLASHintertext] = ACTIONS(6469), - [anon_sym_shortintertext] = ACTIONS(6469), - }, - [1236] = { - [sym_command_name] = ACTIONS(6305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6305), - [anon_sym_LBRACK] = ACTIONS(6307), - [anon_sym_RBRACK] = ACTIONS(6307), - [anon_sym_COMMA] = ACTIONS(6307), - [anon_sym_EQ] = ACTIONS(6307), - [anon_sym_LPAREN] = ACTIONS(6307), - [anon_sym_RPAREN] = ACTIONS(6307), - [anon_sym_BSLASHpart] = ACTIONS(6305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddpart] = ACTIONS(6305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6307), - [anon_sym_BSLASHchapter] = ACTIONS(6305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddchap] = ACTIONS(6305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsection] = ACTIONS(6305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddsec] = ACTIONS(6305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubsection] = ACTIONS(6305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHparagraph] = ACTIONS(6305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6307), - [anon_sym_BSLASHitem] = ACTIONS(6305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6307), - [anon_sym_LBRACE] = ACTIONS(6307), - [sym_word] = ACTIONS(6305), - [sym_placeholder] = ACTIONS(6307), - [anon_sym_PLUS] = ACTIONS(6307), - [anon_sym_DASH] = ACTIONS(6307), - [anon_sym_STAR] = ACTIONS(6307), - [anon_sym_SLASH] = ACTIONS(6307), - [anon_sym_LT] = ACTIONS(6305), - [anon_sym_GT] = ACTIONS(6305), - [anon_sym_BANG] = ACTIONS(6305), - [anon_sym_PIPE] = ACTIONS(6305), - [anon_sym_COLON] = ACTIONS(6305), - [anon_sym_SQUOTE] = ACTIONS(6305), - [anon_sym__] = ACTIONS(6307), - [anon_sym_CARET] = ACTIONS(6307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6307), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6307), - [anon_sym_DOLLAR] = ACTIONS(6305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6307), - [anon_sym_BSLASHbegin] = ACTIONS(6305), - [anon_sym_BSLASHtitle] = ACTIONS(6305), - [anon_sym_BSLASHauthor] = ACTIONS(6305), - [anon_sym_BSLASHusepackage] = ACTIONS(6305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6305), - [anon_sym_BSLASHinclude] = ACTIONS(6305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6305), - [anon_sym_BSLASHinput] = ACTIONS(6305), - [anon_sym_BSLASHsubfile] = ACTIONS(6305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6305), - [anon_sym_BSLASHbibliography] = ACTIONS(6305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6305), - [anon_sym_BSLASHincludesvg] = ACTIONS(6305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6305), - [anon_sym_BSLASHimport] = ACTIONS(6305), - [anon_sym_BSLASHsubimport] = ACTIONS(6305), - [anon_sym_BSLASHinputfrom] = ACTIONS(6305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6305), - [anon_sym_BSLASHincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHcaption] = ACTIONS(6305), - [anon_sym_BSLASHcite] = ACTIONS(6305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCite] = ACTIONS(6305), - [anon_sym_BSLASHnocite] = ACTIONS(6305), - [anon_sym_BSLASHcitet] = ACTIONS(6305), - [anon_sym_BSLASHcitep] = ACTIONS(6305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteauthor] = ACTIONS(6305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitetitle] = ACTIONS(6305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteyear] = ACTIONS(6305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitedate] = ACTIONS(6305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteurl] = ACTIONS(6305), - [anon_sym_BSLASHfullcite] = ACTIONS(6305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6305), - [anon_sym_BSLASHcitealt] = ACTIONS(6305), - [anon_sym_BSLASHcitealp] = ACTIONS(6305), - [anon_sym_BSLASHcitetext] = ACTIONS(6305), - [anon_sym_BSLASHparencite] = ACTIONS(6305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHParencite] = ACTIONS(6305), - [anon_sym_BSLASHfootcite] = ACTIONS(6305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6305), - [anon_sym_BSLASHtextcite] = ACTIONS(6305), - [anon_sym_BSLASHTextcite] = ACTIONS(6305), - [anon_sym_BSLASHsmartcite] = ACTIONS(6305), - [anon_sym_BSLASHSmartcite] = ACTIONS(6305), - [anon_sym_BSLASHsupercite] = ACTIONS(6305), - [anon_sym_BSLASHautocite] = ACTIONS(6305), - [anon_sym_BSLASHAutocite] = ACTIONS(6305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHvolcite] = ACTIONS(6305), - [anon_sym_BSLASHVolcite] = ACTIONS(6305), - [anon_sym_BSLASHpvolcite] = ACTIONS(6305), - [anon_sym_BSLASHPvolcite] = ACTIONS(6305), - [anon_sym_BSLASHfvolcite] = ACTIONS(6305), - [anon_sym_BSLASHftvolcite] = ACTIONS(6305), - [anon_sym_BSLASHsvolcite] = ACTIONS(6305), - [anon_sym_BSLASHSvolcite] = ACTIONS(6305), - [anon_sym_BSLASHtvolcite] = ACTIONS(6305), - [anon_sym_BSLASHTvolcite] = ACTIONS(6305), - [anon_sym_BSLASHavolcite] = ACTIONS(6305), - [anon_sym_BSLASHAvolcite] = ACTIONS(6305), - [anon_sym_BSLASHnotecite] = ACTIONS(6305), - [anon_sym_BSLASHNotecite] = ACTIONS(6305), - [anon_sym_BSLASHpnotecite] = ACTIONS(6305), - [anon_sym_BSLASHPnotecite] = ACTIONS(6305), - [anon_sym_BSLASHfnotecite] = ACTIONS(6305), - [anon_sym_BSLASHlabel] = ACTIONS(6305), - [anon_sym_BSLASHref] = ACTIONS(6305), - [anon_sym_BSLASHeqref] = ACTIONS(6305), - [anon_sym_BSLASHvref] = ACTIONS(6305), - [anon_sym_BSLASHVref] = ACTIONS(6305), - [anon_sym_BSLASHautoref] = ACTIONS(6305), - [anon_sym_BSLASHpageref] = ACTIONS(6305), - [anon_sym_BSLASHcref] = ACTIONS(6305), - [anon_sym_BSLASHCref] = ACTIONS(6305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnameCref] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHlabelcref] = ACTIONS(6305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCrefrange] = ACTIONS(6305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnewlabel] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6307), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHdef] = ACTIONS(6305), - [anon_sym_BSLASHlet] = ACTIONS(6305), - [anon_sym_BSLASHleft] = ACTIONS(6305), - [anon_sym_BSLASHbig] = ACTIONS(6305), - [anon_sym_BSLASHBig] = ACTIONS(6305), - [anon_sym_BSLASHbigg] = ACTIONS(6305), - [anon_sym_BSLASHBigg] = ACTIONS(6305), - [anon_sym_BSLASHbigl] = ACTIONS(6305), - [anon_sym_BSLASHBigl] = ACTIONS(6305), - [anon_sym_BSLASHbiggl] = ACTIONS(6305), - [anon_sym_BSLASHBiggl] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6305), - [anon_sym_BSLASHgls] = ACTIONS(6305), - [anon_sym_BSLASHGls] = ACTIONS(6305), - [anon_sym_BSLASHGLS] = ACTIONS(6305), - [anon_sym_BSLASHglspl] = ACTIONS(6305), - [anon_sym_BSLASHGlspl] = ACTIONS(6305), - [anon_sym_BSLASHGLSpl] = ACTIONS(6305), - [anon_sym_BSLASHglsdisp] = ACTIONS(6305), - [anon_sym_BSLASHglslink] = ACTIONS(6305), - [anon_sym_BSLASHglstext] = ACTIONS(6305), - [anon_sym_BSLASHGlstext] = ACTIONS(6305), - [anon_sym_BSLASHGLStext] = ACTIONS(6305), - [anon_sym_BSLASHglsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6305), - [anon_sym_BSLASHglsplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSplural] = ACTIONS(6305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHglsname] = ACTIONS(6305), - [anon_sym_BSLASHGlsname] = ACTIONS(6305), - [anon_sym_BSLASHGLSname] = ACTIONS(6305), - [anon_sym_BSLASHglssymbol] = ACTIONS(6305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6305), - [anon_sym_BSLASHglsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6305), - [anon_sym_BSLASHglsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6305), - [anon_sym_BSLASHglsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6305), - [anon_sym_BSLASHglsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6305), - [anon_sym_BSLASHglsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6305), - [anon_sym_BSLASHnewacronym] = ACTIONS(6305), - [anon_sym_BSLASHacrshort] = ACTIONS(6305), - [anon_sym_BSLASHAcrshort] = ACTIONS(6305), - [anon_sym_BSLASHACRshort] = ACTIONS(6305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6305), - [anon_sym_BSLASHacrlong] = ACTIONS(6305), - [anon_sym_BSLASHAcrlong] = ACTIONS(6305), - [anon_sym_BSLASHACRlong] = ACTIONS(6305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6305), - [anon_sym_BSLASHacrfull] = ACTIONS(6305), - [anon_sym_BSLASHAcrfull] = ACTIONS(6305), - [anon_sym_BSLASHACRfull] = ACTIONS(6305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6305), - [anon_sym_BSLASHacs] = ACTIONS(6305), - [anon_sym_BSLASHAcs] = ACTIONS(6305), - [anon_sym_BSLASHacsp] = ACTIONS(6305), - [anon_sym_BSLASHAcsp] = ACTIONS(6305), - [anon_sym_BSLASHacl] = ACTIONS(6305), - [anon_sym_BSLASHAcl] = ACTIONS(6305), - [anon_sym_BSLASHaclp] = ACTIONS(6305), - [anon_sym_BSLASHAclp] = ACTIONS(6305), - [anon_sym_BSLASHacf] = ACTIONS(6305), - [anon_sym_BSLASHAcf] = ACTIONS(6305), - [anon_sym_BSLASHacfp] = ACTIONS(6305), - [anon_sym_BSLASHAcfp] = ACTIONS(6305), - [anon_sym_BSLASHac] = ACTIONS(6305), - [anon_sym_BSLASHAc] = ACTIONS(6305), - [anon_sym_BSLASHacp] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6305), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6305), - [anon_sym_BSLASHcolor] = ACTIONS(6305), - [anon_sym_BSLASHcolorbox] = ACTIONS(6305), - [anon_sym_BSLASHtextcolor] = ACTIONS(6305), - [anon_sym_BSLASHpagecolor] = ACTIONS(6305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6305), - [anon_sym_BSLASHtext] = ACTIONS(6305), - [anon_sym_BSLASHintertext] = ACTIONS(6305), - [anon_sym_shortintertext] = ACTIONS(6305), - }, - [1237] = { - [sym_command_name] = ACTIONS(6309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6309), - [anon_sym_LBRACK] = ACTIONS(6311), - [anon_sym_RBRACK] = ACTIONS(6311), - [anon_sym_COMMA] = ACTIONS(6311), - [anon_sym_EQ] = ACTIONS(6311), - [anon_sym_LPAREN] = ACTIONS(6311), - [anon_sym_RPAREN] = ACTIONS(6311), - [anon_sym_BSLASHpart] = ACTIONS(6309), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddpart] = ACTIONS(6309), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6311), - [anon_sym_BSLASHchapter] = ACTIONS(6309), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddchap] = ACTIONS(6309), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsection] = ACTIONS(6309), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddsec] = ACTIONS(6309), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubsection] = ACTIONS(6309), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6309), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHparagraph] = ACTIONS(6309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6309), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6311), - [anon_sym_BSLASHitem] = ACTIONS(6309), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(6311), - [sym_word] = ACTIONS(6309), - [sym_placeholder] = ACTIONS(6311), - [anon_sym_PLUS] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [anon_sym_STAR] = ACTIONS(6311), - [anon_sym_SLASH] = ACTIONS(6311), - [anon_sym_LT] = ACTIONS(6309), - [anon_sym_GT] = ACTIONS(6309), - [anon_sym_BANG] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(6309), - [anon_sym_COLON] = ACTIONS(6309), - [anon_sym_SQUOTE] = ACTIONS(6309), - [anon_sym__] = ACTIONS(6311), - [anon_sym_CARET] = ACTIONS(6311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6311), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6311), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6311), - [anon_sym_DOLLAR] = ACTIONS(6309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6311), - [anon_sym_BSLASHbegin] = ACTIONS(6309), - [anon_sym_BSLASHtitle] = ACTIONS(6309), - [anon_sym_BSLASHauthor] = ACTIONS(6309), - [anon_sym_BSLASHusepackage] = ACTIONS(6309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6309), - [anon_sym_BSLASHinclude] = ACTIONS(6309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6309), - [anon_sym_BSLASHinput] = ACTIONS(6309), - [anon_sym_BSLASHsubfile] = ACTIONS(6309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6309), - [anon_sym_BSLASHbibliography] = ACTIONS(6309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6309), - [anon_sym_BSLASHincludesvg] = ACTIONS(6309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6309), - [anon_sym_BSLASHimport] = ACTIONS(6309), - [anon_sym_BSLASHsubimport] = ACTIONS(6309), - [anon_sym_BSLASHinputfrom] = ACTIONS(6309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6309), - [anon_sym_BSLASHincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHcaption] = ACTIONS(6309), - [anon_sym_BSLASHcite] = ACTIONS(6309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCite] = ACTIONS(6309), - [anon_sym_BSLASHnocite] = ACTIONS(6309), - [anon_sym_BSLASHcitet] = ACTIONS(6309), - [anon_sym_BSLASHcitep] = ACTIONS(6309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteauthor] = ACTIONS(6309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitetitle] = ACTIONS(6309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteyear] = ACTIONS(6309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitedate] = ACTIONS(6309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteurl] = ACTIONS(6309), - [anon_sym_BSLASHfullcite] = ACTIONS(6309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6309), - [anon_sym_BSLASHcitealt] = ACTIONS(6309), - [anon_sym_BSLASHcitealp] = ACTIONS(6309), - [anon_sym_BSLASHcitetext] = ACTIONS(6309), - [anon_sym_BSLASHparencite] = ACTIONS(6309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHParencite] = ACTIONS(6309), - [anon_sym_BSLASHfootcite] = ACTIONS(6309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6309), - [anon_sym_BSLASHtextcite] = ACTIONS(6309), - [anon_sym_BSLASHTextcite] = ACTIONS(6309), - [anon_sym_BSLASHsmartcite] = ACTIONS(6309), - [anon_sym_BSLASHSmartcite] = ACTIONS(6309), - [anon_sym_BSLASHsupercite] = ACTIONS(6309), - [anon_sym_BSLASHautocite] = ACTIONS(6309), - [anon_sym_BSLASHAutocite] = ACTIONS(6309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHvolcite] = ACTIONS(6309), - [anon_sym_BSLASHVolcite] = ACTIONS(6309), - [anon_sym_BSLASHpvolcite] = ACTIONS(6309), - [anon_sym_BSLASHPvolcite] = ACTIONS(6309), - [anon_sym_BSLASHfvolcite] = ACTIONS(6309), - [anon_sym_BSLASHftvolcite] = ACTIONS(6309), - [anon_sym_BSLASHsvolcite] = ACTIONS(6309), - [anon_sym_BSLASHSvolcite] = ACTIONS(6309), - [anon_sym_BSLASHtvolcite] = ACTIONS(6309), - [anon_sym_BSLASHTvolcite] = ACTIONS(6309), - [anon_sym_BSLASHavolcite] = ACTIONS(6309), - [anon_sym_BSLASHAvolcite] = ACTIONS(6309), - [anon_sym_BSLASHnotecite] = ACTIONS(6309), - [anon_sym_BSLASHNotecite] = ACTIONS(6309), - [anon_sym_BSLASHpnotecite] = ACTIONS(6309), - [anon_sym_BSLASHPnotecite] = ACTIONS(6309), - [anon_sym_BSLASHfnotecite] = ACTIONS(6309), - [anon_sym_BSLASHlabel] = ACTIONS(6309), - [anon_sym_BSLASHref] = ACTIONS(6309), - [anon_sym_BSLASHeqref] = ACTIONS(6309), - [anon_sym_BSLASHvref] = ACTIONS(6309), - [anon_sym_BSLASHVref] = ACTIONS(6309), - [anon_sym_BSLASHautoref] = ACTIONS(6309), - [anon_sym_BSLASHpageref] = ACTIONS(6309), - [anon_sym_BSLASHcref] = ACTIONS(6309), - [anon_sym_BSLASHCref] = ACTIONS(6309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnameCref] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHlabelcref] = ACTIONS(6309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCrefrange] = ACTIONS(6309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnewlabel] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6311), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHdef] = ACTIONS(6309), - [anon_sym_BSLASHlet] = ACTIONS(6309), - [anon_sym_BSLASHleft] = ACTIONS(6309), - [anon_sym_BSLASHbig] = ACTIONS(6309), - [anon_sym_BSLASHBig] = ACTIONS(6309), - [anon_sym_BSLASHbigg] = ACTIONS(6309), - [anon_sym_BSLASHBigg] = ACTIONS(6309), - [anon_sym_BSLASHbigl] = ACTIONS(6309), - [anon_sym_BSLASHBigl] = ACTIONS(6309), - [anon_sym_BSLASHbiggl] = ACTIONS(6309), - [anon_sym_BSLASHBiggl] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6309), - [anon_sym_BSLASHgls] = ACTIONS(6309), - [anon_sym_BSLASHGls] = ACTIONS(6309), - [anon_sym_BSLASHGLS] = ACTIONS(6309), - [anon_sym_BSLASHglspl] = ACTIONS(6309), - [anon_sym_BSLASHGlspl] = ACTIONS(6309), - [anon_sym_BSLASHGLSpl] = ACTIONS(6309), - [anon_sym_BSLASHglsdisp] = ACTIONS(6309), - [anon_sym_BSLASHglslink] = ACTIONS(6309), - [anon_sym_BSLASHglstext] = ACTIONS(6309), - [anon_sym_BSLASHGlstext] = ACTIONS(6309), - [anon_sym_BSLASHGLStext] = ACTIONS(6309), - [anon_sym_BSLASHglsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6309), - [anon_sym_BSLASHglsplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSplural] = ACTIONS(6309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHglsname] = ACTIONS(6309), - [anon_sym_BSLASHGlsname] = ACTIONS(6309), - [anon_sym_BSLASHGLSname] = ACTIONS(6309), - [anon_sym_BSLASHglssymbol] = ACTIONS(6309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6309), - [anon_sym_BSLASHglsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6309), - [anon_sym_BSLASHglsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6309), - [anon_sym_BSLASHglsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6309), - [anon_sym_BSLASHglsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6309), - [anon_sym_BSLASHglsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6309), - [anon_sym_BSLASHnewacronym] = ACTIONS(6309), - [anon_sym_BSLASHacrshort] = ACTIONS(6309), - [anon_sym_BSLASHAcrshort] = ACTIONS(6309), - [anon_sym_BSLASHACRshort] = ACTIONS(6309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6309), - [anon_sym_BSLASHacrlong] = ACTIONS(6309), - [anon_sym_BSLASHAcrlong] = ACTIONS(6309), - [anon_sym_BSLASHACRlong] = ACTIONS(6309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6309), - [anon_sym_BSLASHacrfull] = ACTIONS(6309), - [anon_sym_BSLASHAcrfull] = ACTIONS(6309), - [anon_sym_BSLASHACRfull] = ACTIONS(6309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6309), - [anon_sym_BSLASHacs] = ACTIONS(6309), - [anon_sym_BSLASHAcs] = ACTIONS(6309), - [anon_sym_BSLASHacsp] = ACTIONS(6309), - [anon_sym_BSLASHAcsp] = ACTIONS(6309), - [anon_sym_BSLASHacl] = ACTIONS(6309), - [anon_sym_BSLASHAcl] = ACTIONS(6309), - [anon_sym_BSLASHaclp] = ACTIONS(6309), - [anon_sym_BSLASHAclp] = ACTIONS(6309), - [anon_sym_BSLASHacf] = ACTIONS(6309), - [anon_sym_BSLASHAcf] = ACTIONS(6309), - [anon_sym_BSLASHacfp] = ACTIONS(6309), - [anon_sym_BSLASHAcfp] = ACTIONS(6309), - [anon_sym_BSLASHac] = ACTIONS(6309), - [anon_sym_BSLASHAc] = ACTIONS(6309), - [anon_sym_BSLASHacp] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6309), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6309), - [anon_sym_BSLASHcolor] = ACTIONS(6309), - [anon_sym_BSLASHcolorbox] = ACTIONS(6309), - [anon_sym_BSLASHtextcolor] = ACTIONS(6309), - [anon_sym_BSLASHpagecolor] = ACTIONS(6309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6309), - [anon_sym_BSLASHtext] = ACTIONS(6309), - [anon_sym_BSLASHintertext] = ACTIONS(6309), - [anon_sym_shortintertext] = ACTIONS(6309), - }, - [1238] = { - [sym_command_name] = ACTIONS(6313), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6313), - [anon_sym_LBRACK] = ACTIONS(6315), - [anon_sym_RBRACK] = ACTIONS(6315), - [anon_sym_COMMA] = ACTIONS(6315), - [anon_sym_EQ] = ACTIONS(6315), - [anon_sym_LPAREN] = ACTIONS(6315), - [anon_sym_RPAREN] = ACTIONS(6315), - [anon_sym_BSLASHpart] = ACTIONS(6313), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddpart] = ACTIONS(6313), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6315), - [anon_sym_BSLASHchapter] = ACTIONS(6313), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddchap] = ACTIONS(6313), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsection] = ACTIONS(6313), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddsec] = ACTIONS(6313), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubsection] = ACTIONS(6313), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6313), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHparagraph] = ACTIONS(6313), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6315), - [anon_sym_BSLASHitem] = ACTIONS(6313), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6315), - [anon_sym_LBRACE] = ACTIONS(6315), - [sym_word] = ACTIONS(6313), - [sym_placeholder] = ACTIONS(6315), - [anon_sym_PLUS] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6315), - [anon_sym_SLASH] = ACTIONS(6315), - [anon_sym_LT] = ACTIONS(6313), - [anon_sym_GT] = ACTIONS(6313), - [anon_sym_BANG] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(6313), - [anon_sym_COLON] = ACTIONS(6313), - [anon_sym_SQUOTE] = ACTIONS(6313), - [anon_sym__] = ACTIONS(6315), - [anon_sym_CARET] = ACTIONS(6315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6315), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6315), - [anon_sym_DOLLAR] = ACTIONS(6313), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6315), - [anon_sym_BSLASHbegin] = ACTIONS(6313), - [anon_sym_BSLASHtitle] = ACTIONS(6313), - [anon_sym_BSLASHauthor] = ACTIONS(6313), - [anon_sym_BSLASHusepackage] = ACTIONS(6313), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6313), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6313), - [anon_sym_BSLASHinclude] = ACTIONS(6313), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6313), - [anon_sym_BSLASHinput] = ACTIONS(6313), - [anon_sym_BSLASHsubfile] = ACTIONS(6313), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6313), - [anon_sym_BSLASHbibliography] = ACTIONS(6313), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6313), - [anon_sym_BSLASHincludesvg] = ACTIONS(6313), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6313), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6313), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6313), - [anon_sym_BSLASHimport] = ACTIONS(6313), - [anon_sym_BSLASHsubimport] = ACTIONS(6313), - [anon_sym_BSLASHinputfrom] = ACTIONS(6313), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6313), - [anon_sym_BSLASHincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHcaption] = ACTIONS(6313), - [anon_sym_BSLASHcite] = ACTIONS(6313), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCite] = ACTIONS(6313), - [anon_sym_BSLASHnocite] = ACTIONS(6313), - [anon_sym_BSLASHcitet] = ACTIONS(6313), - [anon_sym_BSLASHcitep] = ACTIONS(6313), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteauthor] = ACTIONS(6313), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6313), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitetitle] = ACTIONS(6313), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteyear] = ACTIONS(6313), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitedate] = ACTIONS(6313), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteurl] = ACTIONS(6313), - [anon_sym_BSLASHfullcite] = ACTIONS(6313), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6313), - [anon_sym_BSLASHcitealt] = ACTIONS(6313), - [anon_sym_BSLASHcitealp] = ACTIONS(6313), - [anon_sym_BSLASHcitetext] = ACTIONS(6313), - [anon_sym_BSLASHparencite] = ACTIONS(6313), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHParencite] = ACTIONS(6313), - [anon_sym_BSLASHfootcite] = ACTIONS(6313), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6313), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6313), - [anon_sym_BSLASHtextcite] = ACTIONS(6313), - [anon_sym_BSLASHTextcite] = ACTIONS(6313), - [anon_sym_BSLASHsmartcite] = ACTIONS(6313), - [anon_sym_BSLASHSmartcite] = ACTIONS(6313), - [anon_sym_BSLASHsupercite] = ACTIONS(6313), - [anon_sym_BSLASHautocite] = ACTIONS(6313), - [anon_sym_BSLASHAutocite] = ACTIONS(6313), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHvolcite] = ACTIONS(6313), - [anon_sym_BSLASHVolcite] = ACTIONS(6313), - [anon_sym_BSLASHpvolcite] = ACTIONS(6313), - [anon_sym_BSLASHPvolcite] = ACTIONS(6313), - [anon_sym_BSLASHfvolcite] = ACTIONS(6313), - [anon_sym_BSLASHftvolcite] = ACTIONS(6313), - [anon_sym_BSLASHsvolcite] = ACTIONS(6313), - [anon_sym_BSLASHSvolcite] = ACTIONS(6313), - [anon_sym_BSLASHtvolcite] = ACTIONS(6313), - [anon_sym_BSLASHTvolcite] = ACTIONS(6313), - [anon_sym_BSLASHavolcite] = ACTIONS(6313), - [anon_sym_BSLASHAvolcite] = ACTIONS(6313), - [anon_sym_BSLASHnotecite] = ACTIONS(6313), - [anon_sym_BSLASHNotecite] = ACTIONS(6313), - [anon_sym_BSLASHpnotecite] = ACTIONS(6313), - [anon_sym_BSLASHPnotecite] = ACTIONS(6313), - [anon_sym_BSLASHfnotecite] = ACTIONS(6313), - [anon_sym_BSLASHlabel] = ACTIONS(6313), - [anon_sym_BSLASHref] = ACTIONS(6313), - [anon_sym_BSLASHeqref] = ACTIONS(6313), - [anon_sym_BSLASHvref] = ACTIONS(6313), - [anon_sym_BSLASHVref] = ACTIONS(6313), - [anon_sym_BSLASHautoref] = ACTIONS(6313), - [anon_sym_BSLASHpageref] = ACTIONS(6313), - [anon_sym_BSLASHcref] = ACTIONS(6313), - [anon_sym_BSLASHCref] = ACTIONS(6313), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnameCref] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHlabelcref] = ACTIONS(6313), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCrefrange] = ACTIONS(6313), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnewlabel] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6313), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6313), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6315), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHdef] = ACTIONS(6313), - [anon_sym_BSLASHlet] = ACTIONS(6313), - [anon_sym_BSLASHleft] = ACTIONS(6313), - [anon_sym_BSLASHbig] = ACTIONS(6313), - [anon_sym_BSLASHBig] = ACTIONS(6313), - [anon_sym_BSLASHbigg] = ACTIONS(6313), - [anon_sym_BSLASHBigg] = ACTIONS(6313), - [anon_sym_BSLASHbigl] = ACTIONS(6313), - [anon_sym_BSLASHBigl] = ACTIONS(6313), - [anon_sym_BSLASHbiggl] = ACTIONS(6313), - [anon_sym_BSLASHBiggl] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6313), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6313), - [anon_sym_BSLASHgls] = ACTIONS(6313), - [anon_sym_BSLASHGls] = ACTIONS(6313), - [anon_sym_BSLASHGLS] = ACTIONS(6313), - [anon_sym_BSLASHglspl] = ACTIONS(6313), - [anon_sym_BSLASHGlspl] = ACTIONS(6313), - [anon_sym_BSLASHGLSpl] = ACTIONS(6313), - [anon_sym_BSLASHglsdisp] = ACTIONS(6313), - [anon_sym_BSLASHglslink] = ACTIONS(6313), - [anon_sym_BSLASHglstext] = ACTIONS(6313), - [anon_sym_BSLASHGlstext] = ACTIONS(6313), - [anon_sym_BSLASHGLStext] = ACTIONS(6313), - [anon_sym_BSLASHglsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6313), - [anon_sym_BSLASHglsplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSplural] = ACTIONS(6313), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHglsname] = ACTIONS(6313), - [anon_sym_BSLASHGlsname] = ACTIONS(6313), - [anon_sym_BSLASHGLSname] = ACTIONS(6313), - [anon_sym_BSLASHglssymbol] = ACTIONS(6313), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6313), - [anon_sym_BSLASHglsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6313), - [anon_sym_BSLASHglsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6313), - [anon_sym_BSLASHglsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6313), - [anon_sym_BSLASHglsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6313), - [anon_sym_BSLASHglsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6313), - [anon_sym_BSLASHnewacronym] = ACTIONS(6313), - [anon_sym_BSLASHacrshort] = ACTIONS(6313), - [anon_sym_BSLASHAcrshort] = ACTIONS(6313), - [anon_sym_BSLASHACRshort] = ACTIONS(6313), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6313), - [anon_sym_BSLASHacrlong] = ACTIONS(6313), - [anon_sym_BSLASHAcrlong] = ACTIONS(6313), - [anon_sym_BSLASHACRlong] = ACTIONS(6313), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6313), - [anon_sym_BSLASHacrfull] = ACTIONS(6313), - [anon_sym_BSLASHAcrfull] = ACTIONS(6313), - [anon_sym_BSLASHACRfull] = ACTIONS(6313), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6313), - [anon_sym_BSLASHacs] = ACTIONS(6313), - [anon_sym_BSLASHAcs] = ACTIONS(6313), - [anon_sym_BSLASHacsp] = ACTIONS(6313), - [anon_sym_BSLASHAcsp] = ACTIONS(6313), - [anon_sym_BSLASHacl] = ACTIONS(6313), - [anon_sym_BSLASHAcl] = ACTIONS(6313), - [anon_sym_BSLASHaclp] = ACTIONS(6313), - [anon_sym_BSLASHAclp] = ACTIONS(6313), - [anon_sym_BSLASHacf] = ACTIONS(6313), - [anon_sym_BSLASHAcf] = ACTIONS(6313), - [anon_sym_BSLASHacfp] = ACTIONS(6313), - [anon_sym_BSLASHAcfp] = ACTIONS(6313), - [anon_sym_BSLASHac] = ACTIONS(6313), - [anon_sym_BSLASHAc] = ACTIONS(6313), - [anon_sym_BSLASHacp] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6313), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6313), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6313), - [anon_sym_BSLASHcolor] = ACTIONS(6313), - [anon_sym_BSLASHcolorbox] = ACTIONS(6313), - [anon_sym_BSLASHtextcolor] = ACTIONS(6313), - [anon_sym_BSLASHpagecolor] = ACTIONS(6313), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6313), - [anon_sym_BSLASHtext] = ACTIONS(6313), - [anon_sym_BSLASHintertext] = ACTIONS(6313), - [anon_sym_shortintertext] = ACTIONS(6313), - }, - [1239] = { - [sym_command_name] = ACTIONS(6317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(6319), - [anon_sym_RBRACK] = ACTIONS(6319), - [anon_sym_COMMA] = ACTIONS(6319), - [anon_sym_EQ] = ACTIONS(6319), - [anon_sym_LPAREN] = ACTIONS(6319), - [anon_sym_RPAREN] = ACTIONS(6319), - [anon_sym_BSLASHpart] = ACTIONS(6317), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddpart] = ACTIONS(6317), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6319), - [anon_sym_BSLASHchapter] = ACTIONS(6317), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddchap] = ACTIONS(6317), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsection] = ACTIONS(6317), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddsec] = ACTIONS(6317), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubsection] = ACTIONS(6317), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6317), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHparagraph] = ACTIONS(6317), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6317), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6319), - [anon_sym_BSLASHitem] = ACTIONS(6317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6319), - [anon_sym_LBRACE] = ACTIONS(6319), - [sym_word] = ACTIONS(6317), - [sym_placeholder] = ACTIONS(6319), - [anon_sym_PLUS] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(6319), - [anon_sym_SLASH] = ACTIONS(6319), - [anon_sym_LT] = ACTIONS(6317), - [anon_sym_GT] = ACTIONS(6317), - [anon_sym_BANG] = ACTIONS(6317), - [anon_sym_PIPE] = ACTIONS(6317), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_SQUOTE] = ACTIONS(6317), - [anon_sym__] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6319), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6319), - [anon_sym_DOLLAR] = ACTIONS(6317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6319), - [anon_sym_BSLASHbegin] = ACTIONS(6317), - [anon_sym_BSLASHtitle] = ACTIONS(6317), - [anon_sym_BSLASHauthor] = ACTIONS(6317), - [anon_sym_BSLASHusepackage] = ACTIONS(6317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6317), - [anon_sym_BSLASHinclude] = ACTIONS(6317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6317), - [anon_sym_BSLASHinput] = ACTIONS(6317), - [anon_sym_BSLASHsubfile] = ACTIONS(6317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6317), - [anon_sym_BSLASHbibliography] = ACTIONS(6317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6317), - [anon_sym_BSLASHincludesvg] = ACTIONS(6317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6317), - [anon_sym_BSLASHimport] = ACTIONS(6317), - [anon_sym_BSLASHsubimport] = ACTIONS(6317), - [anon_sym_BSLASHinputfrom] = ACTIONS(6317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6317), - [anon_sym_BSLASHincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHcaption] = ACTIONS(6317), - [anon_sym_BSLASHcite] = ACTIONS(6317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCite] = ACTIONS(6317), - [anon_sym_BSLASHnocite] = ACTIONS(6317), - [anon_sym_BSLASHcitet] = ACTIONS(6317), - [anon_sym_BSLASHcitep] = ACTIONS(6317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteauthor] = ACTIONS(6317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitetitle] = ACTIONS(6317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteyear] = ACTIONS(6317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitedate] = ACTIONS(6317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteurl] = ACTIONS(6317), - [anon_sym_BSLASHfullcite] = ACTIONS(6317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6317), - [anon_sym_BSLASHcitealt] = ACTIONS(6317), - [anon_sym_BSLASHcitealp] = ACTIONS(6317), - [anon_sym_BSLASHcitetext] = ACTIONS(6317), - [anon_sym_BSLASHparencite] = ACTIONS(6317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHParencite] = ACTIONS(6317), - [anon_sym_BSLASHfootcite] = ACTIONS(6317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6317), - [anon_sym_BSLASHtextcite] = ACTIONS(6317), - [anon_sym_BSLASHTextcite] = ACTIONS(6317), - [anon_sym_BSLASHsmartcite] = ACTIONS(6317), - [anon_sym_BSLASHSmartcite] = ACTIONS(6317), - [anon_sym_BSLASHsupercite] = ACTIONS(6317), - [anon_sym_BSLASHautocite] = ACTIONS(6317), - [anon_sym_BSLASHAutocite] = ACTIONS(6317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHvolcite] = ACTIONS(6317), - [anon_sym_BSLASHVolcite] = ACTIONS(6317), - [anon_sym_BSLASHpvolcite] = ACTIONS(6317), - [anon_sym_BSLASHPvolcite] = ACTIONS(6317), - [anon_sym_BSLASHfvolcite] = ACTIONS(6317), - [anon_sym_BSLASHftvolcite] = ACTIONS(6317), - [anon_sym_BSLASHsvolcite] = ACTIONS(6317), - [anon_sym_BSLASHSvolcite] = ACTIONS(6317), - [anon_sym_BSLASHtvolcite] = ACTIONS(6317), - [anon_sym_BSLASHTvolcite] = ACTIONS(6317), - [anon_sym_BSLASHavolcite] = ACTIONS(6317), - [anon_sym_BSLASHAvolcite] = ACTIONS(6317), - [anon_sym_BSLASHnotecite] = ACTIONS(6317), - [anon_sym_BSLASHNotecite] = ACTIONS(6317), - [anon_sym_BSLASHpnotecite] = ACTIONS(6317), - [anon_sym_BSLASHPnotecite] = ACTIONS(6317), - [anon_sym_BSLASHfnotecite] = ACTIONS(6317), - [anon_sym_BSLASHlabel] = ACTIONS(6317), - [anon_sym_BSLASHref] = ACTIONS(6317), - [anon_sym_BSLASHeqref] = ACTIONS(6317), - [anon_sym_BSLASHvref] = ACTIONS(6317), - [anon_sym_BSLASHVref] = ACTIONS(6317), - [anon_sym_BSLASHautoref] = ACTIONS(6317), - [anon_sym_BSLASHpageref] = ACTIONS(6317), - [anon_sym_BSLASHcref] = ACTIONS(6317), - [anon_sym_BSLASHCref] = ACTIONS(6317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnameCref] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHlabelcref] = ACTIONS(6317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCrefrange] = ACTIONS(6317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnewlabel] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6319), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHdef] = ACTIONS(6317), - [anon_sym_BSLASHlet] = ACTIONS(6317), - [anon_sym_BSLASHleft] = ACTIONS(6317), - [anon_sym_BSLASHbig] = ACTIONS(6317), - [anon_sym_BSLASHBig] = ACTIONS(6317), - [anon_sym_BSLASHbigg] = ACTIONS(6317), - [anon_sym_BSLASHBigg] = ACTIONS(6317), - [anon_sym_BSLASHbigl] = ACTIONS(6317), - [anon_sym_BSLASHBigl] = ACTIONS(6317), - [anon_sym_BSLASHbiggl] = ACTIONS(6317), - [anon_sym_BSLASHBiggl] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6317), - [anon_sym_BSLASHgls] = ACTIONS(6317), - [anon_sym_BSLASHGls] = ACTIONS(6317), - [anon_sym_BSLASHGLS] = ACTIONS(6317), - [anon_sym_BSLASHglspl] = ACTIONS(6317), - [anon_sym_BSLASHGlspl] = ACTIONS(6317), - [anon_sym_BSLASHGLSpl] = ACTIONS(6317), - [anon_sym_BSLASHglsdisp] = ACTIONS(6317), - [anon_sym_BSLASHglslink] = ACTIONS(6317), - [anon_sym_BSLASHglstext] = ACTIONS(6317), - [anon_sym_BSLASHGlstext] = ACTIONS(6317), - [anon_sym_BSLASHGLStext] = ACTIONS(6317), - [anon_sym_BSLASHglsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6317), - [anon_sym_BSLASHglsplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSplural] = ACTIONS(6317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHglsname] = ACTIONS(6317), - [anon_sym_BSLASHGlsname] = ACTIONS(6317), - [anon_sym_BSLASHGLSname] = ACTIONS(6317), - [anon_sym_BSLASHglssymbol] = ACTIONS(6317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6317), - [anon_sym_BSLASHglsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6317), - [anon_sym_BSLASHglsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6317), - [anon_sym_BSLASHglsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6317), - [anon_sym_BSLASHglsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6317), - [anon_sym_BSLASHglsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6317), - [anon_sym_BSLASHnewacronym] = ACTIONS(6317), - [anon_sym_BSLASHacrshort] = ACTIONS(6317), - [anon_sym_BSLASHAcrshort] = ACTIONS(6317), - [anon_sym_BSLASHACRshort] = ACTIONS(6317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6317), - [anon_sym_BSLASHacrlong] = ACTIONS(6317), - [anon_sym_BSLASHAcrlong] = ACTIONS(6317), - [anon_sym_BSLASHACRlong] = ACTIONS(6317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6317), - [anon_sym_BSLASHacrfull] = ACTIONS(6317), - [anon_sym_BSLASHAcrfull] = ACTIONS(6317), - [anon_sym_BSLASHACRfull] = ACTIONS(6317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6317), - [anon_sym_BSLASHacs] = ACTIONS(6317), - [anon_sym_BSLASHAcs] = ACTIONS(6317), - [anon_sym_BSLASHacsp] = ACTIONS(6317), - [anon_sym_BSLASHAcsp] = ACTIONS(6317), - [anon_sym_BSLASHacl] = ACTIONS(6317), - [anon_sym_BSLASHAcl] = ACTIONS(6317), - [anon_sym_BSLASHaclp] = ACTIONS(6317), - [anon_sym_BSLASHAclp] = ACTIONS(6317), - [anon_sym_BSLASHacf] = ACTIONS(6317), - [anon_sym_BSLASHAcf] = ACTIONS(6317), - [anon_sym_BSLASHacfp] = ACTIONS(6317), - [anon_sym_BSLASHAcfp] = ACTIONS(6317), - [anon_sym_BSLASHac] = ACTIONS(6317), - [anon_sym_BSLASHAc] = ACTIONS(6317), - [anon_sym_BSLASHacp] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6317), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6317), - [anon_sym_BSLASHcolor] = ACTIONS(6317), - [anon_sym_BSLASHcolorbox] = ACTIONS(6317), - [anon_sym_BSLASHtextcolor] = ACTIONS(6317), - [anon_sym_BSLASHpagecolor] = ACTIONS(6317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6317), - [anon_sym_BSLASHtext] = ACTIONS(6317), - [anon_sym_BSLASHintertext] = ACTIONS(6317), - [anon_sym_shortintertext] = ACTIONS(6317), - }, - [1240] = { - [sym_command_name] = ACTIONS(6189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6189), - [anon_sym_LBRACK] = ACTIONS(6191), - [anon_sym_RBRACK] = ACTIONS(6191), - [anon_sym_COMMA] = ACTIONS(6191), - [anon_sym_EQ] = ACTIONS(6191), - [anon_sym_LPAREN] = ACTIONS(6191), - [anon_sym_RPAREN] = ACTIONS(6191), - [anon_sym_BSLASHpart] = ACTIONS(6189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddpart] = ACTIONS(6189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6191), - [anon_sym_BSLASHchapter] = ACTIONS(6189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddchap] = ACTIONS(6189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsection] = ACTIONS(6189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddsec] = ACTIONS(6189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubsection] = ACTIONS(6189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHparagraph] = ACTIONS(6189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6191), - [anon_sym_BSLASHitem] = ACTIONS(6189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6191), - [anon_sym_LBRACE] = ACTIONS(6191), - [sym_word] = ACTIONS(6189), - [sym_placeholder] = ACTIONS(6191), - [anon_sym_PLUS] = ACTIONS(6191), - [anon_sym_DASH] = ACTIONS(6191), - [anon_sym_STAR] = ACTIONS(6191), - [anon_sym_SLASH] = ACTIONS(6191), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_COLON] = ACTIONS(6189), - [anon_sym_SQUOTE] = ACTIONS(6189), - [anon_sym__] = ACTIONS(6191), - [anon_sym_CARET] = ACTIONS(6191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), - [anon_sym_DOLLAR] = ACTIONS(6189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), - [anon_sym_BSLASHbegin] = ACTIONS(6189), - [anon_sym_BSLASHend] = ACTIONS(6189), - [anon_sym_BSLASHtitle] = ACTIONS(6189), - [anon_sym_BSLASHauthor] = ACTIONS(6189), - [anon_sym_BSLASHusepackage] = ACTIONS(6189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), - [anon_sym_BSLASHinclude] = ACTIONS(6189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), - [anon_sym_BSLASHinput] = ACTIONS(6189), - [anon_sym_BSLASHsubfile] = ACTIONS(6189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), - [anon_sym_BSLASHbibliography] = ACTIONS(6189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), - [anon_sym_BSLASHincludesvg] = ACTIONS(6189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), - [anon_sym_BSLASHimport] = ACTIONS(6189), - [anon_sym_BSLASHsubimport] = ACTIONS(6189), - [anon_sym_BSLASHinputfrom] = ACTIONS(6189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), - [anon_sym_BSLASHincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHcaption] = ACTIONS(6189), - [anon_sym_BSLASHcite] = ACTIONS(6189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCite] = ACTIONS(6189), - [anon_sym_BSLASHnocite] = ACTIONS(6189), - [anon_sym_BSLASHcitet] = ACTIONS(6189), - [anon_sym_BSLASHcitep] = ACTIONS(6189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteauthor] = ACTIONS(6189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitetitle] = ACTIONS(6189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteyear] = ACTIONS(6189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitedate] = ACTIONS(6189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteurl] = ACTIONS(6189), - [anon_sym_BSLASHfullcite] = ACTIONS(6189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), - [anon_sym_BSLASHcitealt] = ACTIONS(6189), - [anon_sym_BSLASHcitealp] = ACTIONS(6189), - [anon_sym_BSLASHcitetext] = ACTIONS(6189), - [anon_sym_BSLASHparencite] = ACTIONS(6189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHParencite] = ACTIONS(6189), - [anon_sym_BSLASHfootcite] = ACTIONS(6189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), - [anon_sym_BSLASHtextcite] = ACTIONS(6189), - [anon_sym_BSLASHTextcite] = ACTIONS(6189), - [anon_sym_BSLASHsmartcite] = ACTIONS(6189), - [anon_sym_BSLASHSmartcite] = ACTIONS(6189), - [anon_sym_BSLASHsupercite] = ACTIONS(6189), - [anon_sym_BSLASHautocite] = ACTIONS(6189), - [anon_sym_BSLASHAutocite] = ACTIONS(6189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHvolcite] = ACTIONS(6189), - [anon_sym_BSLASHVolcite] = ACTIONS(6189), - [anon_sym_BSLASHpvolcite] = ACTIONS(6189), - [anon_sym_BSLASHPvolcite] = ACTIONS(6189), - [anon_sym_BSLASHfvolcite] = ACTIONS(6189), - [anon_sym_BSLASHftvolcite] = ACTIONS(6189), - [anon_sym_BSLASHsvolcite] = ACTIONS(6189), - [anon_sym_BSLASHSvolcite] = ACTIONS(6189), - [anon_sym_BSLASHtvolcite] = ACTIONS(6189), - [anon_sym_BSLASHTvolcite] = ACTIONS(6189), - [anon_sym_BSLASHavolcite] = ACTIONS(6189), - [anon_sym_BSLASHAvolcite] = ACTIONS(6189), - [anon_sym_BSLASHnotecite] = ACTIONS(6189), - [anon_sym_BSLASHNotecite] = ACTIONS(6189), - [anon_sym_BSLASHpnotecite] = ACTIONS(6189), - [anon_sym_BSLASHPnotecite] = ACTIONS(6189), - [anon_sym_BSLASHfnotecite] = ACTIONS(6189), - [anon_sym_BSLASHlabel] = ACTIONS(6189), - [anon_sym_BSLASHref] = ACTIONS(6189), - [anon_sym_BSLASHeqref] = ACTIONS(6189), - [anon_sym_BSLASHvref] = ACTIONS(6189), - [anon_sym_BSLASHVref] = ACTIONS(6189), - [anon_sym_BSLASHautoref] = ACTIONS(6189), - [anon_sym_BSLASHpageref] = ACTIONS(6189), - [anon_sym_BSLASHcref] = ACTIONS(6189), - [anon_sym_BSLASHCref] = ACTIONS(6189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnameCref] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHlabelcref] = ACTIONS(6189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCrefrange] = ACTIONS(6189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnewlabel] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHdef] = ACTIONS(6189), - [anon_sym_BSLASHlet] = ACTIONS(6189), - [anon_sym_BSLASHleft] = ACTIONS(6189), - [anon_sym_BSLASHbig] = ACTIONS(6189), - [anon_sym_BSLASHBig] = ACTIONS(6189), - [anon_sym_BSLASHbigg] = ACTIONS(6189), - [anon_sym_BSLASHBigg] = ACTIONS(6189), - [anon_sym_BSLASHbigl] = ACTIONS(6189), - [anon_sym_BSLASHBigl] = ACTIONS(6189), - [anon_sym_BSLASHbiggl] = ACTIONS(6189), - [anon_sym_BSLASHBiggl] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), - [anon_sym_BSLASHgls] = ACTIONS(6189), - [anon_sym_BSLASHGls] = ACTIONS(6189), - [anon_sym_BSLASHGLS] = ACTIONS(6189), - [anon_sym_BSLASHglspl] = ACTIONS(6189), - [anon_sym_BSLASHGlspl] = ACTIONS(6189), - [anon_sym_BSLASHGLSpl] = ACTIONS(6189), - [anon_sym_BSLASHglsdisp] = ACTIONS(6189), - [anon_sym_BSLASHglslink] = ACTIONS(6189), - [anon_sym_BSLASHglstext] = ACTIONS(6189), - [anon_sym_BSLASHGlstext] = ACTIONS(6189), - [anon_sym_BSLASHGLStext] = ACTIONS(6189), - [anon_sym_BSLASHglsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), - [anon_sym_BSLASHglsplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSplural] = ACTIONS(6189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHglsname] = ACTIONS(6189), - [anon_sym_BSLASHGlsname] = ACTIONS(6189), - [anon_sym_BSLASHGLSname] = ACTIONS(6189), - [anon_sym_BSLASHglssymbol] = ACTIONS(6189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), - [anon_sym_BSLASHglsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), - [anon_sym_BSLASHglsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), - [anon_sym_BSLASHglsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), - [anon_sym_BSLASHglsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), - [anon_sym_BSLASHglsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), - [anon_sym_BSLASHnewacronym] = ACTIONS(6189), - [anon_sym_BSLASHacrshort] = ACTIONS(6189), - [anon_sym_BSLASHAcrshort] = ACTIONS(6189), - [anon_sym_BSLASHACRshort] = ACTIONS(6189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), - [anon_sym_BSLASHacrlong] = ACTIONS(6189), - [anon_sym_BSLASHAcrlong] = ACTIONS(6189), - [anon_sym_BSLASHACRlong] = ACTIONS(6189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), - [anon_sym_BSLASHacrfull] = ACTIONS(6189), - [anon_sym_BSLASHAcrfull] = ACTIONS(6189), - [anon_sym_BSLASHACRfull] = ACTIONS(6189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), - [anon_sym_BSLASHacs] = ACTIONS(6189), - [anon_sym_BSLASHAcs] = ACTIONS(6189), - [anon_sym_BSLASHacsp] = ACTIONS(6189), - [anon_sym_BSLASHAcsp] = ACTIONS(6189), - [anon_sym_BSLASHacl] = ACTIONS(6189), - [anon_sym_BSLASHAcl] = ACTIONS(6189), - [anon_sym_BSLASHaclp] = ACTIONS(6189), - [anon_sym_BSLASHAclp] = ACTIONS(6189), - [anon_sym_BSLASHacf] = ACTIONS(6189), - [anon_sym_BSLASHAcf] = ACTIONS(6189), - [anon_sym_BSLASHacfp] = ACTIONS(6189), - [anon_sym_BSLASHAcfp] = ACTIONS(6189), - [anon_sym_BSLASHac] = ACTIONS(6189), - [anon_sym_BSLASHAc] = ACTIONS(6189), - [anon_sym_BSLASHacp] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), - [anon_sym_BSLASHcolor] = ACTIONS(6189), - [anon_sym_BSLASHcolorbox] = ACTIONS(6189), - [anon_sym_BSLASHtextcolor] = ACTIONS(6189), - [anon_sym_BSLASHpagecolor] = ACTIONS(6189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), - [anon_sym_BSLASHtext] = ACTIONS(6189), - [anon_sym_BSLASHintertext] = ACTIONS(6189), - [anon_sym_shortintertext] = ACTIONS(6189), - }, - [1241] = { - [sym_command_name] = ACTIONS(6325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6325), - [anon_sym_LBRACK] = ACTIONS(6327), - [anon_sym_RBRACK] = ACTIONS(6327), - [anon_sym_COMMA] = ACTIONS(6327), - [anon_sym_EQ] = ACTIONS(6327), - [anon_sym_LPAREN] = ACTIONS(6327), - [anon_sym_RPAREN] = ACTIONS(6327), - [anon_sym_BSLASHpart] = ACTIONS(6325), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddpart] = ACTIONS(6325), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6327), - [anon_sym_BSLASHchapter] = ACTIONS(6325), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddchap] = ACTIONS(6325), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsection] = ACTIONS(6325), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddsec] = ACTIONS(6325), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubsection] = ACTIONS(6325), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6325), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHparagraph] = ACTIONS(6325), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6325), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6327), - [anon_sym_BSLASHitem] = ACTIONS(6325), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6327), - [anon_sym_LBRACE] = ACTIONS(6327), - [sym_word] = ACTIONS(6325), - [sym_placeholder] = ACTIONS(6327), - [anon_sym_PLUS] = ACTIONS(6327), - [anon_sym_DASH] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6327), - [anon_sym_SLASH] = ACTIONS(6327), - [anon_sym_LT] = ACTIONS(6325), - [anon_sym_GT] = ACTIONS(6325), - [anon_sym_BANG] = ACTIONS(6325), - [anon_sym_PIPE] = ACTIONS(6325), - [anon_sym_COLON] = ACTIONS(6325), - [anon_sym_SQUOTE] = ACTIONS(6325), - [anon_sym__] = ACTIONS(6327), - [anon_sym_CARET] = ACTIONS(6327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6327), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6327), - [anon_sym_DOLLAR] = ACTIONS(6325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6327), - [anon_sym_BSLASHbegin] = ACTIONS(6325), - [anon_sym_BSLASHtitle] = ACTIONS(6325), - [anon_sym_BSLASHauthor] = ACTIONS(6325), - [anon_sym_BSLASHusepackage] = ACTIONS(6325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6325), - [anon_sym_BSLASHinclude] = ACTIONS(6325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6325), - [anon_sym_BSLASHinput] = ACTIONS(6325), - [anon_sym_BSLASHsubfile] = ACTIONS(6325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6325), - [anon_sym_BSLASHbibliography] = ACTIONS(6325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6325), - [anon_sym_BSLASHincludesvg] = ACTIONS(6325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6325), - [anon_sym_BSLASHimport] = ACTIONS(6325), - [anon_sym_BSLASHsubimport] = ACTIONS(6325), - [anon_sym_BSLASHinputfrom] = ACTIONS(6325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6325), - [anon_sym_BSLASHincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHcaption] = ACTIONS(6325), - [anon_sym_BSLASHcite] = ACTIONS(6325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCite] = ACTIONS(6325), - [anon_sym_BSLASHnocite] = ACTIONS(6325), - [anon_sym_BSLASHcitet] = ACTIONS(6325), - [anon_sym_BSLASHcitep] = ACTIONS(6325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteauthor] = ACTIONS(6325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitetitle] = ACTIONS(6325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteyear] = ACTIONS(6325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitedate] = ACTIONS(6325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteurl] = ACTIONS(6325), - [anon_sym_BSLASHfullcite] = ACTIONS(6325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6325), - [anon_sym_BSLASHcitealt] = ACTIONS(6325), - [anon_sym_BSLASHcitealp] = ACTIONS(6325), - [anon_sym_BSLASHcitetext] = ACTIONS(6325), - [anon_sym_BSLASHparencite] = ACTIONS(6325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHParencite] = ACTIONS(6325), - [anon_sym_BSLASHfootcite] = ACTIONS(6325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6325), - [anon_sym_BSLASHtextcite] = ACTIONS(6325), - [anon_sym_BSLASHTextcite] = ACTIONS(6325), - [anon_sym_BSLASHsmartcite] = ACTIONS(6325), - [anon_sym_BSLASHSmartcite] = ACTIONS(6325), - [anon_sym_BSLASHsupercite] = ACTIONS(6325), - [anon_sym_BSLASHautocite] = ACTIONS(6325), - [anon_sym_BSLASHAutocite] = ACTIONS(6325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHvolcite] = ACTIONS(6325), - [anon_sym_BSLASHVolcite] = ACTIONS(6325), - [anon_sym_BSLASHpvolcite] = ACTIONS(6325), - [anon_sym_BSLASHPvolcite] = ACTIONS(6325), - [anon_sym_BSLASHfvolcite] = ACTIONS(6325), - [anon_sym_BSLASHftvolcite] = ACTIONS(6325), - [anon_sym_BSLASHsvolcite] = ACTIONS(6325), - [anon_sym_BSLASHSvolcite] = ACTIONS(6325), - [anon_sym_BSLASHtvolcite] = ACTIONS(6325), - [anon_sym_BSLASHTvolcite] = ACTIONS(6325), - [anon_sym_BSLASHavolcite] = ACTIONS(6325), - [anon_sym_BSLASHAvolcite] = ACTIONS(6325), - [anon_sym_BSLASHnotecite] = ACTIONS(6325), - [anon_sym_BSLASHNotecite] = ACTIONS(6325), - [anon_sym_BSLASHpnotecite] = ACTIONS(6325), - [anon_sym_BSLASHPnotecite] = ACTIONS(6325), - [anon_sym_BSLASHfnotecite] = ACTIONS(6325), - [anon_sym_BSLASHlabel] = ACTIONS(6325), - [anon_sym_BSLASHref] = ACTIONS(6325), - [anon_sym_BSLASHeqref] = ACTIONS(6325), - [anon_sym_BSLASHvref] = ACTIONS(6325), - [anon_sym_BSLASHVref] = ACTIONS(6325), - [anon_sym_BSLASHautoref] = ACTIONS(6325), - [anon_sym_BSLASHpageref] = ACTIONS(6325), - [anon_sym_BSLASHcref] = ACTIONS(6325), - [anon_sym_BSLASHCref] = ACTIONS(6325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnameCref] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHlabelcref] = ACTIONS(6325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCrefrange] = ACTIONS(6325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnewlabel] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6327), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHdef] = ACTIONS(6325), - [anon_sym_BSLASHlet] = ACTIONS(6325), - [anon_sym_BSLASHleft] = ACTIONS(6325), - [anon_sym_BSLASHbig] = ACTIONS(6325), - [anon_sym_BSLASHBig] = ACTIONS(6325), - [anon_sym_BSLASHbigg] = ACTIONS(6325), - [anon_sym_BSLASHBigg] = ACTIONS(6325), - [anon_sym_BSLASHbigl] = ACTIONS(6325), - [anon_sym_BSLASHBigl] = ACTIONS(6325), - [anon_sym_BSLASHbiggl] = ACTIONS(6325), - [anon_sym_BSLASHBiggl] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6325), - [anon_sym_BSLASHgls] = ACTIONS(6325), - [anon_sym_BSLASHGls] = ACTIONS(6325), - [anon_sym_BSLASHGLS] = ACTIONS(6325), - [anon_sym_BSLASHglspl] = ACTIONS(6325), - [anon_sym_BSLASHGlspl] = ACTIONS(6325), - [anon_sym_BSLASHGLSpl] = ACTIONS(6325), - [anon_sym_BSLASHglsdisp] = ACTIONS(6325), - [anon_sym_BSLASHglslink] = ACTIONS(6325), - [anon_sym_BSLASHglstext] = ACTIONS(6325), - [anon_sym_BSLASHGlstext] = ACTIONS(6325), - [anon_sym_BSLASHGLStext] = ACTIONS(6325), - [anon_sym_BSLASHglsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6325), - [anon_sym_BSLASHglsplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSplural] = ACTIONS(6325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHglsname] = ACTIONS(6325), - [anon_sym_BSLASHGlsname] = ACTIONS(6325), - [anon_sym_BSLASHGLSname] = ACTIONS(6325), - [anon_sym_BSLASHglssymbol] = ACTIONS(6325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6325), - [anon_sym_BSLASHglsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6325), - [anon_sym_BSLASHglsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6325), - [anon_sym_BSLASHglsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6325), - [anon_sym_BSLASHglsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6325), - [anon_sym_BSLASHglsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6325), - [anon_sym_BSLASHnewacronym] = ACTIONS(6325), - [anon_sym_BSLASHacrshort] = ACTIONS(6325), - [anon_sym_BSLASHAcrshort] = ACTIONS(6325), - [anon_sym_BSLASHACRshort] = ACTIONS(6325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6325), - [anon_sym_BSLASHacrlong] = ACTIONS(6325), - [anon_sym_BSLASHAcrlong] = ACTIONS(6325), - [anon_sym_BSLASHACRlong] = ACTIONS(6325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6325), - [anon_sym_BSLASHacrfull] = ACTIONS(6325), - [anon_sym_BSLASHAcrfull] = ACTIONS(6325), - [anon_sym_BSLASHACRfull] = ACTIONS(6325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6325), - [anon_sym_BSLASHacs] = ACTIONS(6325), - [anon_sym_BSLASHAcs] = ACTIONS(6325), - [anon_sym_BSLASHacsp] = ACTIONS(6325), - [anon_sym_BSLASHAcsp] = ACTIONS(6325), - [anon_sym_BSLASHacl] = ACTIONS(6325), - [anon_sym_BSLASHAcl] = ACTIONS(6325), - [anon_sym_BSLASHaclp] = ACTIONS(6325), - [anon_sym_BSLASHAclp] = ACTIONS(6325), - [anon_sym_BSLASHacf] = ACTIONS(6325), - [anon_sym_BSLASHAcf] = ACTIONS(6325), - [anon_sym_BSLASHacfp] = ACTIONS(6325), - [anon_sym_BSLASHAcfp] = ACTIONS(6325), - [anon_sym_BSLASHac] = ACTIONS(6325), - [anon_sym_BSLASHAc] = ACTIONS(6325), - [anon_sym_BSLASHacp] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6325), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6325), - [anon_sym_BSLASHcolor] = ACTIONS(6325), - [anon_sym_BSLASHcolorbox] = ACTIONS(6325), - [anon_sym_BSLASHtextcolor] = ACTIONS(6325), - [anon_sym_BSLASHpagecolor] = ACTIONS(6325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6325), - [anon_sym_BSLASHtext] = ACTIONS(6325), - [anon_sym_BSLASHintertext] = ACTIONS(6325), - [anon_sym_shortintertext] = ACTIONS(6325), - }, - [1242] = { - [sym_command_name] = ACTIONS(6473), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6473), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_RBRACK] = ACTIONS(6475), - [anon_sym_COMMA] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6475), - [anon_sym_LPAREN] = ACTIONS(6475), - [anon_sym_RPAREN] = ACTIONS(6475), - [anon_sym_BSLASHpart] = ACTIONS(6473), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddpart] = ACTIONS(6473), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6475), - [anon_sym_BSLASHchapter] = ACTIONS(6473), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddchap] = ACTIONS(6473), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsection] = ACTIONS(6473), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddsec] = ACTIONS(6473), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubsection] = ACTIONS(6473), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6473), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHparagraph] = ACTIONS(6473), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6473), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6475), - [anon_sym_BSLASHitem] = ACTIONS(6473), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6475), - [anon_sym_LBRACE] = ACTIONS(6475), - [sym_word] = ACTIONS(6473), - [sym_placeholder] = ACTIONS(6475), - [anon_sym_PLUS] = ACTIONS(6475), - [anon_sym_DASH] = ACTIONS(6475), - [anon_sym_STAR] = ACTIONS(6475), - [anon_sym_SLASH] = ACTIONS(6475), - [anon_sym_LT] = ACTIONS(6473), - [anon_sym_GT] = ACTIONS(6473), - [anon_sym_BANG] = ACTIONS(6473), - [anon_sym_PIPE] = ACTIONS(6473), - [anon_sym_COLON] = ACTIONS(6473), - [anon_sym_SQUOTE] = ACTIONS(6473), - [anon_sym__] = ACTIONS(6475), - [anon_sym_CARET] = ACTIONS(6475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6475), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6475), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6475), - [anon_sym_DOLLAR] = ACTIONS(6473), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6475), - [anon_sym_BSLASHbegin] = ACTIONS(6473), - [anon_sym_BSLASHtitle] = ACTIONS(6473), - [anon_sym_BSLASHauthor] = ACTIONS(6473), - [anon_sym_BSLASHusepackage] = ACTIONS(6473), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6473), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6473), - [anon_sym_BSLASHinclude] = ACTIONS(6473), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6473), - [anon_sym_BSLASHinput] = ACTIONS(6473), - [anon_sym_BSLASHsubfile] = ACTIONS(6473), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6473), - [anon_sym_BSLASHbibliography] = ACTIONS(6473), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6473), - [anon_sym_BSLASHincludesvg] = ACTIONS(6473), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6473), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6473), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6473), - [anon_sym_BSLASHimport] = ACTIONS(6473), - [anon_sym_BSLASHsubimport] = ACTIONS(6473), - [anon_sym_BSLASHinputfrom] = ACTIONS(6473), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6473), - [anon_sym_BSLASHincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHcaption] = ACTIONS(6473), - [anon_sym_BSLASHcite] = ACTIONS(6473), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCite] = ACTIONS(6473), - [anon_sym_BSLASHnocite] = ACTIONS(6473), - [anon_sym_BSLASHcitet] = ACTIONS(6473), - [anon_sym_BSLASHcitep] = ACTIONS(6473), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteauthor] = ACTIONS(6473), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6473), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitetitle] = ACTIONS(6473), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteyear] = ACTIONS(6473), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitedate] = ACTIONS(6473), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteurl] = ACTIONS(6473), - [anon_sym_BSLASHfullcite] = ACTIONS(6473), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6473), - [anon_sym_BSLASHcitealt] = ACTIONS(6473), - [anon_sym_BSLASHcitealp] = ACTIONS(6473), - [anon_sym_BSLASHcitetext] = ACTIONS(6473), - [anon_sym_BSLASHparencite] = ACTIONS(6473), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHParencite] = ACTIONS(6473), - [anon_sym_BSLASHfootcite] = ACTIONS(6473), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6473), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6473), - [anon_sym_BSLASHtextcite] = ACTIONS(6473), - [anon_sym_BSLASHTextcite] = ACTIONS(6473), - [anon_sym_BSLASHsmartcite] = ACTIONS(6473), - [anon_sym_BSLASHSmartcite] = ACTIONS(6473), - [anon_sym_BSLASHsupercite] = ACTIONS(6473), - [anon_sym_BSLASHautocite] = ACTIONS(6473), - [anon_sym_BSLASHAutocite] = ACTIONS(6473), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHvolcite] = ACTIONS(6473), - [anon_sym_BSLASHVolcite] = ACTIONS(6473), - [anon_sym_BSLASHpvolcite] = ACTIONS(6473), - [anon_sym_BSLASHPvolcite] = ACTIONS(6473), - [anon_sym_BSLASHfvolcite] = ACTIONS(6473), - [anon_sym_BSLASHftvolcite] = ACTIONS(6473), - [anon_sym_BSLASHsvolcite] = ACTIONS(6473), - [anon_sym_BSLASHSvolcite] = ACTIONS(6473), - [anon_sym_BSLASHtvolcite] = ACTIONS(6473), - [anon_sym_BSLASHTvolcite] = ACTIONS(6473), - [anon_sym_BSLASHavolcite] = ACTIONS(6473), - [anon_sym_BSLASHAvolcite] = ACTIONS(6473), - [anon_sym_BSLASHnotecite] = ACTIONS(6473), - [anon_sym_BSLASHNotecite] = ACTIONS(6473), - [anon_sym_BSLASHpnotecite] = ACTIONS(6473), - [anon_sym_BSLASHPnotecite] = ACTIONS(6473), - [anon_sym_BSLASHfnotecite] = ACTIONS(6473), - [anon_sym_BSLASHlabel] = ACTIONS(6473), - [anon_sym_BSLASHref] = ACTIONS(6473), - [anon_sym_BSLASHeqref] = ACTIONS(6473), - [anon_sym_BSLASHvref] = ACTIONS(6473), - [anon_sym_BSLASHVref] = ACTIONS(6473), - [anon_sym_BSLASHautoref] = ACTIONS(6473), - [anon_sym_BSLASHpageref] = ACTIONS(6473), - [anon_sym_BSLASHcref] = ACTIONS(6473), - [anon_sym_BSLASHCref] = ACTIONS(6473), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnameCref] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHlabelcref] = ACTIONS(6473), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCrefrange] = ACTIONS(6473), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnewlabel] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6473), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6473), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6475), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHdef] = ACTIONS(6473), - [anon_sym_BSLASHlet] = ACTIONS(6473), - [anon_sym_BSLASHleft] = ACTIONS(6473), - [anon_sym_BSLASHbig] = ACTIONS(6473), - [anon_sym_BSLASHBig] = ACTIONS(6473), - [anon_sym_BSLASHbigg] = ACTIONS(6473), - [anon_sym_BSLASHBigg] = ACTIONS(6473), - [anon_sym_BSLASHbigl] = ACTIONS(6473), - [anon_sym_BSLASHBigl] = ACTIONS(6473), - [anon_sym_BSLASHbiggl] = ACTIONS(6473), - [anon_sym_BSLASHBiggl] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6473), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6473), - [anon_sym_BSLASHgls] = ACTIONS(6473), - [anon_sym_BSLASHGls] = ACTIONS(6473), - [anon_sym_BSLASHGLS] = ACTIONS(6473), - [anon_sym_BSLASHglspl] = ACTIONS(6473), - [anon_sym_BSLASHGlspl] = ACTIONS(6473), - [anon_sym_BSLASHGLSpl] = ACTIONS(6473), - [anon_sym_BSLASHglsdisp] = ACTIONS(6473), - [anon_sym_BSLASHglslink] = ACTIONS(6473), - [anon_sym_BSLASHglstext] = ACTIONS(6473), - [anon_sym_BSLASHGlstext] = ACTIONS(6473), - [anon_sym_BSLASHGLStext] = ACTIONS(6473), - [anon_sym_BSLASHglsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6473), - [anon_sym_BSLASHglsplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSplural] = ACTIONS(6473), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHglsname] = ACTIONS(6473), - [anon_sym_BSLASHGlsname] = ACTIONS(6473), - [anon_sym_BSLASHGLSname] = ACTIONS(6473), - [anon_sym_BSLASHglssymbol] = ACTIONS(6473), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6473), - [anon_sym_BSLASHglsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6473), - [anon_sym_BSLASHglsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6473), - [anon_sym_BSLASHglsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6473), - [anon_sym_BSLASHglsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6473), - [anon_sym_BSLASHglsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6473), - [anon_sym_BSLASHnewacronym] = ACTIONS(6473), - [anon_sym_BSLASHacrshort] = ACTIONS(6473), - [anon_sym_BSLASHAcrshort] = ACTIONS(6473), - [anon_sym_BSLASHACRshort] = ACTIONS(6473), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6473), - [anon_sym_BSLASHacrlong] = ACTIONS(6473), - [anon_sym_BSLASHAcrlong] = ACTIONS(6473), - [anon_sym_BSLASHACRlong] = ACTIONS(6473), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6473), - [anon_sym_BSLASHacrfull] = ACTIONS(6473), - [anon_sym_BSLASHAcrfull] = ACTIONS(6473), - [anon_sym_BSLASHACRfull] = ACTIONS(6473), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6473), - [anon_sym_BSLASHacs] = ACTIONS(6473), - [anon_sym_BSLASHAcs] = ACTIONS(6473), - [anon_sym_BSLASHacsp] = ACTIONS(6473), - [anon_sym_BSLASHAcsp] = ACTIONS(6473), - [anon_sym_BSLASHacl] = ACTIONS(6473), - [anon_sym_BSLASHAcl] = ACTIONS(6473), - [anon_sym_BSLASHaclp] = ACTIONS(6473), - [anon_sym_BSLASHAclp] = ACTIONS(6473), - [anon_sym_BSLASHacf] = ACTIONS(6473), - [anon_sym_BSLASHAcf] = ACTIONS(6473), - [anon_sym_BSLASHacfp] = ACTIONS(6473), - [anon_sym_BSLASHAcfp] = ACTIONS(6473), - [anon_sym_BSLASHac] = ACTIONS(6473), - [anon_sym_BSLASHAc] = ACTIONS(6473), - [anon_sym_BSLASHacp] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6473), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6473), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6473), - [anon_sym_BSLASHcolor] = ACTIONS(6473), - [anon_sym_BSLASHcolorbox] = ACTIONS(6473), - [anon_sym_BSLASHtextcolor] = ACTIONS(6473), - [anon_sym_BSLASHpagecolor] = ACTIONS(6473), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6473), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6473), - [anon_sym_BSLASHtext] = ACTIONS(6473), - [anon_sym_BSLASHintertext] = ACTIONS(6473), - [anon_sym_shortintertext] = ACTIONS(6473), - }, - [1243] = { - [sym_command_name] = ACTIONS(6477), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6477), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_RBRACK] = ACTIONS(6479), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_LPAREN] = ACTIONS(6479), - [anon_sym_RPAREN] = ACTIONS(6479), - [anon_sym_BSLASHpart] = ACTIONS(6477), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddpart] = ACTIONS(6477), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6479), - [anon_sym_BSLASHchapter] = ACTIONS(6477), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddchap] = ACTIONS(6477), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsection] = ACTIONS(6477), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHaddsec] = ACTIONS(6477), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubsection] = ACTIONS(6477), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6477), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6479), - [anon_sym_BSLASHparagraph] = ACTIONS(6477), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6479), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6477), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6479), - [anon_sym_BSLASHitem] = ACTIONS(6477), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6479), - [anon_sym_LBRACE] = ACTIONS(6479), - [sym_word] = ACTIONS(6477), - [sym_placeholder] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6477), - [anon_sym_GT] = ACTIONS(6477), - [anon_sym_BANG] = ACTIONS(6477), - [anon_sym_PIPE] = ACTIONS(6477), - [anon_sym_COLON] = ACTIONS(6477), - [anon_sym_SQUOTE] = ACTIONS(6477), - [anon_sym__] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6479), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6479), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6479), - [anon_sym_DOLLAR] = ACTIONS(6477), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6479), - [anon_sym_BSLASHbegin] = ACTIONS(6477), - [anon_sym_BSLASHtitle] = ACTIONS(6477), - [anon_sym_BSLASHauthor] = ACTIONS(6477), - [anon_sym_BSLASHusepackage] = ACTIONS(6477), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6477), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6477), - [anon_sym_BSLASHinclude] = ACTIONS(6477), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6477), - [anon_sym_BSLASHinput] = ACTIONS(6477), - [anon_sym_BSLASHsubfile] = ACTIONS(6477), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6477), - [anon_sym_BSLASHbibliography] = ACTIONS(6477), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6477), - [anon_sym_BSLASHincludesvg] = ACTIONS(6477), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6477), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6477), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6477), - [anon_sym_BSLASHimport] = ACTIONS(6477), - [anon_sym_BSLASHsubimport] = ACTIONS(6477), - [anon_sym_BSLASHinputfrom] = ACTIONS(6477), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6477), - [anon_sym_BSLASHincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHcaption] = ACTIONS(6477), - [anon_sym_BSLASHcite] = ACTIONS(6477), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCite] = ACTIONS(6477), - [anon_sym_BSLASHnocite] = ACTIONS(6477), - [anon_sym_BSLASHcitet] = ACTIONS(6477), - [anon_sym_BSLASHcitep] = ACTIONS(6477), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteauthor] = ACTIONS(6477), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6477), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitetitle] = ACTIONS(6477), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteyear] = ACTIONS(6477), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitedate] = ACTIONS(6477), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteurl] = ACTIONS(6477), - [anon_sym_BSLASHfullcite] = ACTIONS(6477), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6477), - [anon_sym_BSLASHcitealt] = ACTIONS(6477), - [anon_sym_BSLASHcitealp] = ACTIONS(6477), - [anon_sym_BSLASHcitetext] = ACTIONS(6477), - [anon_sym_BSLASHparencite] = ACTIONS(6477), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHParencite] = ACTIONS(6477), - [anon_sym_BSLASHfootcite] = ACTIONS(6477), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6477), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6477), - [anon_sym_BSLASHtextcite] = ACTIONS(6477), - [anon_sym_BSLASHTextcite] = ACTIONS(6477), - [anon_sym_BSLASHsmartcite] = ACTIONS(6477), - [anon_sym_BSLASHSmartcite] = ACTIONS(6477), - [anon_sym_BSLASHsupercite] = ACTIONS(6477), - [anon_sym_BSLASHautocite] = ACTIONS(6477), - [anon_sym_BSLASHAutocite] = ACTIONS(6477), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHvolcite] = ACTIONS(6477), - [anon_sym_BSLASHVolcite] = ACTIONS(6477), - [anon_sym_BSLASHpvolcite] = ACTIONS(6477), - [anon_sym_BSLASHPvolcite] = ACTIONS(6477), - [anon_sym_BSLASHfvolcite] = ACTIONS(6477), - [anon_sym_BSLASHftvolcite] = ACTIONS(6477), - [anon_sym_BSLASHsvolcite] = ACTIONS(6477), - [anon_sym_BSLASHSvolcite] = ACTIONS(6477), - [anon_sym_BSLASHtvolcite] = ACTIONS(6477), - [anon_sym_BSLASHTvolcite] = ACTIONS(6477), - [anon_sym_BSLASHavolcite] = ACTIONS(6477), - [anon_sym_BSLASHAvolcite] = ACTIONS(6477), - [anon_sym_BSLASHnotecite] = ACTIONS(6477), - [anon_sym_BSLASHNotecite] = ACTIONS(6477), - [anon_sym_BSLASHpnotecite] = ACTIONS(6477), - [anon_sym_BSLASHPnotecite] = ACTIONS(6477), - [anon_sym_BSLASHfnotecite] = ACTIONS(6477), - [anon_sym_BSLASHlabel] = ACTIONS(6477), - [anon_sym_BSLASHref] = ACTIONS(6477), - [anon_sym_BSLASHeqref] = ACTIONS(6477), - [anon_sym_BSLASHvref] = ACTIONS(6477), - [anon_sym_BSLASHVref] = ACTIONS(6477), - [anon_sym_BSLASHautoref] = ACTIONS(6477), - [anon_sym_BSLASHpageref] = ACTIONS(6477), - [anon_sym_BSLASHcref] = ACTIONS(6477), - [anon_sym_BSLASHCref] = ACTIONS(6477), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnameCref] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHlabelcref] = ACTIONS(6477), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCrefrange] = ACTIONS(6477), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnewlabel] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6477), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6477), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6479), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHdef] = ACTIONS(6477), - [anon_sym_BSLASHlet] = ACTIONS(6477), - [anon_sym_BSLASHleft] = ACTIONS(6477), - [anon_sym_BSLASHbig] = ACTIONS(6477), - [anon_sym_BSLASHBig] = ACTIONS(6477), - [anon_sym_BSLASHbigg] = ACTIONS(6477), - [anon_sym_BSLASHBigg] = ACTIONS(6477), - [anon_sym_BSLASHbigl] = ACTIONS(6477), - [anon_sym_BSLASHBigl] = ACTIONS(6477), - [anon_sym_BSLASHbiggl] = ACTIONS(6477), - [anon_sym_BSLASHBiggl] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6477), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6477), - [anon_sym_BSLASHgls] = ACTIONS(6477), - [anon_sym_BSLASHGls] = ACTIONS(6477), - [anon_sym_BSLASHGLS] = ACTIONS(6477), - [anon_sym_BSLASHglspl] = ACTIONS(6477), - [anon_sym_BSLASHGlspl] = ACTIONS(6477), - [anon_sym_BSLASHGLSpl] = ACTIONS(6477), - [anon_sym_BSLASHglsdisp] = ACTIONS(6477), - [anon_sym_BSLASHglslink] = ACTIONS(6477), - [anon_sym_BSLASHglstext] = ACTIONS(6477), - [anon_sym_BSLASHGlstext] = ACTIONS(6477), - [anon_sym_BSLASHGLStext] = ACTIONS(6477), - [anon_sym_BSLASHglsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6477), - [anon_sym_BSLASHglsplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSplural] = ACTIONS(6477), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHglsname] = ACTIONS(6477), - [anon_sym_BSLASHGlsname] = ACTIONS(6477), - [anon_sym_BSLASHGLSname] = ACTIONS(6477), - [anon_sym_BSLASHglssymbol] = ACTIONS(6477), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6477), - [anon_sym_BSLASHglsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6477), - [anon_sym_BSLASHglsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6477), - [anon_sym_BSLASHglsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6477), - [anon_sym_BSLASHglsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6477), - [anon_sym_BSLASHglsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6477), - [anon_sym_BSLASHnewacronym] = ACTIONS(6477), - [anon_sym_BSLASHacrshort] = ACTIONS(6477), - [anon_sym_BSLASHAcrshort] = ACTIONS(6477), - [anon_sym_BSLASHACRshort] = ACTIONS(6477), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6477), - [anon_sym_BSLASHacrlong] = ACTIONS(6477), - [anon_sym_BSLASHAcrlong] = ACTIONS(6477), - [anon_sym_BSLASHACRlong] = ACTIONS(6477), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6477), - [anon_sym_BSLASHacrfull] = ACTIONS(6477), - [anon_sym_BSLASHAcrfull] = ACTIONS(6477), - [anon_sym_BSLASHACRfull] = ACTIONS(6477), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6477), - [anon_sym_BSLASHacs] = ACTIONS(6477), - [anon_sym_BSLASHAcs] = ACTIONS(6477), - [anon_sym_BSLASHacsp] = ACTIONS(6477), - [anon_sym_BSLASHAcsp] = ACTIONS(6477), - [anon_sym_BSLASHacl] = ACTIONS(6477), - [anon_sym_BSLASHAcl] = ACTIONS(6477), - [anon_sym_BSLASHaclp] = ACTIONS(6477), - [anon_sym_BSLASHAclp] = ACTIONS(6477), - [anon_sym_BSLASHacf] = ACTIONS(6477), - [anon_sym_BSLASHAcf] = ACTIONS(6477), - [anon_sym_BSLASHacfp] = ACTIONS(6477), - [anon_sym_BSLASHAcfp] = ACTIONS(6477), - [anon_sym_BSLASHac] = ACTIONS(6477), - [anon_sym_BSLASHAc] = ACTIONS(6477), - [anon_sym_BSLASHacp] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6477), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6477), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6477), - [anon_sym_BSLASHcolor] = ACTIONS(6477), - [anon_sym_BSLASHcolorbox] = ACTIONS(6477), - [anon_sym_BSLASHtextcolor] = ACTIONS(6477), - [anon_sym_BSLASHpagecolor] = ACTIONS(6477), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6477), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6477), - [anon_sym_BSLASHtext] = ACTIONS(6477), - [anon_sym_BSLASHintertext] = ACTIONS(6477), - [anon_sym_shortintertext] = ACTIONS(6477), - }, - [1244] = { - [sym_command_name] = ACTIONS(6481), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(6483), - [anon_sym_COMMA] = ACTIONS(6483), - [anon_sym_EQ] = ACTIONS(6483), - [anon_sym_LPAREN] = ACTIONS(6483), - [anon_sym_RPAREN] = ACTIONS(6483), - [anon_sym_BSLASHpart] = ACTIONS(6481), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddpart] = ACTIONS(6481), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6483), - [anon_sym_BSLASHchapter] = ACTIONS(6481), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddchap] = ACTIONS(6481), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsection] = ACTIONS(6481), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHaddsec] = ACTIONS(6481), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubsection] = ACTIONS(6481), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6481), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6483), - [anon_sym_BSLASHparagraph] = ACTIONS(6481), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6483), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6481), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6483), - [anon_sym_BSLASHitem] = ACTIONS(6481), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6483), - [anon_sym_LBRACE] = ACTIONS(6483), - [sym_word] = ACTIONS(6481), - [sym_placeholder] = ACTIONS(6483), - [anon_sym_PLUS] = ACTIONS(6483), - [anon_sym_DASH] = ACTIONS(6483), - [anon_sym_STAR] = ACTIONS(6483), - [anon_sym_SLASH] = ACTIONS(6483), - [anon_sym_LT] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6481), - [anon_sym_BANG] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6481), - [anon_sym_COLON] = ACTIONS(6481), - [anon_sym_SQUOTE] = ACTIONS(6481), - [anon_sym__] = ACTIONS(6483), - [anon_sym_CARET] = ACTIONS(6483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6483), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6483), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6483), - [anon_sym_DOLLAR] = ACTIONS(6481), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6483), - [anon_sym_BSLASHbegin] = ACTIONS(6481), - [anon_sym_BSLASHtitle] = ACTIONS(6481), - [anon_sym_BSLASHauthor] = ACTIONS(6481), - [anon_sym_BSLASHusepackage] = ACTIONS(6481), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6481), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6481), - [anon_sym_BSLASHinclude] = ACTIONS(6481), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6481), - [anon_sym_BSLASHinput] = ACTIONS(6481), - [anon_sym_BSLASHsubfile] = ACTIONS(6481), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6481), - [anon_sym_BSLASHbibliography] = ACTIONS(6481), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6481), - [anon_sym_BSLASHincludesvg] = ACTIONS(6481), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6481), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6481), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6481), - [anon_sym_BSLASHimport] = ACTIONS(6481), - [anon_sym_BSLASHsubimport] = ACTIONS(6481), - [anon_sym_BSLASHinputfrom] = ACTIONS(6481), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6481), - [anon_sym_BSLASHincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHcaption] = ACTIONS(6481), - [anon_sym_BSLASHcite] = ACTIONS(6481), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCite] = ACTIONS(6481), - [anon_sym_BSLASHnocite] = ACTIONS(6481), - [anon_sym_BSLASHcitet] = ACTIONS(6481), - [anon_sym_BSLASHcitep] = ACTIONS(6481), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteauthor] = ACTIONS(6481), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6481), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitetitle] = ACTIONS(6481), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteyear] = ACTIONS(6481), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitedate] = ACTIONS(6481), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteurl] = ACTIONS(6481), - [anon_sym_BSLASHfullcite] = ACTIONS(6481), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6481), - [anon_sym_BSLASHcitealt] = ACTIONS(6481), - [anon_sym_BSLASHcitealp] = ACTIONS(6481), - [anon_sym_BSLASHcitetext] = ACTIONS(6481), - [anon_sym_BSLASHparencite] = ACTIONS(6481), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHParencite] = ACTIONS(6481), - [anon_sym_BSLASHfootcite] = ACTIONS(6481), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6481), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6481), - [anon_sym_BSLASHtextcite] = ACTIONS(6481), - [anon_sym_BSLASHTextcite] = ACTIONS(6481), - [anon_sym_BSLASHsmartcite] = ACTIONS(6481), - [anon_sym_BSLASHSmartcite] = ACTIONS(6481), - [anon_sym_BSLASHsupercite] = ACTIONS(6481), - [anon_sym_BSLASHautocite] = ACTIONS(6481), - [anon_sym_BSLASHAutocite] = ACTIONS(6481), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHvolcite] = ACTIONS(6481), - [anon_sym_BSLASHVolcite] = ACTIONS(6481), - [anon_sym_BSLASHpvolcite] = ACTIONS(6481), - [anon_sym_BSLASHPvolcite] = ACTIONS(6481), - [anon_sym_BSLASHfvolcite] = ACTIONS(6481), - [anon_sym_BSLASHftvolcite] = ACTIONS(6481), - [anon_sym_BSLASHsvolcite] = ACTIONS(6481), - [anon_sym_BSLASHSvolcite] = ACTIONS(6481), - [anon_sym_BSLASHtvolcite] = ACTIONS(6481), - [anon_sym_BSLASHTvolcite] = ACTIONS(6481), - [anon_sym_BSLASHavolcite] = ACTIONS(6481), - [anon_sym_BSLASHAvolcite] = ACTIONS(6481), - [anon_sym_BSLASHnotecite] = ACTIONS(6481), - [anon_sym_BSLASHNotecite] = ACTIONS(6481), - [anon_sym_BSLASHpnotecite] = ACTIONS(6481), - [anon_sym_BSLASHPnotecite] = ACTIONS(6481), - [anon_sym_BSLASHfnotecite] = ACTIONS(6481), - [anon_sym_BSLASHlabel] = ACTIONS(6481), - [anon_sym_BSLASHref] = ACTIONS(6481), - [anon_sym_BSLASHeqref] = ACTIONS(6481), - [anon_sym_BSLASHvref] = ACTIONS(6481), - [anon_sym_BSLASHVref] = ACTIONS(6481), - [anon_sym_BSLASHautoref] = ACTIONS(6481), - [anon_sym_BSLASHpageref] = ACTIONS(6481), - [anon_sym_BSLASHcref] = ACTIONS(6481), - [anon_sym_BSLASHCref] = ACTIONS(6481), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnameCref] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHlabelcref] = ACTIONS(6481), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCrefrange] = ACTIONS(6481), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnewlabel] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6481), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6481), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6483), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHdef] = ACTIONS(6481), - [anon_sym_BSLASHlet] = ACTIONS(6481), - [anon_sym_BSLASHleft] = ACTIONS(6481), - [anon_sym_BSLASHbig] = ACTIONS(6481), - [anon_sym_BSLASHBig] = ACTIONS(6481), - [anon_sym_BSLASHbigg] = ACTIONS(6481), - [anon_sym_BSLASHBigg] = ACTIONS(6481), - [anon_sym_BSLASHbigl] = ACTIONS(6481), - [anon_sym_BSLASHBigl] = ACTIONS(6481), - [anon_sym_BSLASHbiggl] = ACTIONS(6481), - [anon_sym_BSLASHBiggl] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6481), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6481), - [anon_sym_BSLASHgls] = ACTIONS(6481), - [anon_sym_BSLASHGls] = ACTIONS(6481), - [anon_sym_BSLASHGLS] = ACTIONS(6481), - [anon_sym_BSLASHglspl] = ACTIONS(6481), - [anon_sym_BSLASHGlspl] = ACTIONS(6481), - [anon_sym_BSLASHGLSpl] = ACTIONS(6481), - [anon_sym_BSLASHglsdisp] = ACTIONS(6481), - [anon_sym_BSLASHglslink] = ACTIONS(6481), - [anon_sym_BSLASHglstext] = ACTIONS(6481), - [anon_sym_BSLASHGlstext] = ACTIONS(6481), - [anon_sym_BSLASHGLStext] = ACTIONS(6481), - [anon_sym_BSLASHglsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6481), - [anon_sym_BSLASHglsplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSplural] = ACTIONS(6481), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHglsname] = ACTIONS(6481), - [anon_sym_BSLASHGlsname] = ACTIONS(6481), - [anon_sym_BSLASHGLSname] = ACTIONS(6481), - [anon_sym_BSLASHglssymbol] = ACTIONS(6481), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6481), - [anon_sym_BSLASHglsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6481), - [anon_sym_BSLASHglsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6481), - [anon_sym_BSLASHglsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6481), - [anon_sym_BSLASHglsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6481), - [anon_sym_BSLASHglsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6481), - [anon_sym_BSLASHnewacronym] = ACTIONS(6481), - [anon_sym_BSLASHacrshort] = ACTIONS(6481), - [anon_sym_BSLASHAcrshort] = ACTIONS(6481), - [anon_sym_BSLASHACRshort] = ACTIONS(6481), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6481), - [anon_sym_BSLASHacrlong] = ACTIONS(6481), - [anon_sym_BSLASHAcrlong] = ACTIONS(6481), - [anon_sym_BSLASHACRlong] = ACTIONS(6481), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6481), - [anon_sym_BSLASHacrfull] = ACTIONS(6481), - [anon_sym_BSLASHAcrfull] = ACTIONS(6481), - [anon_sym_BSLASHACRfull] = ACTIONS(6481), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6481), - [anon_sym_BSLASHacs] = ACTIONS(6481), - [anon_sym_BSLASHAcs] = ACTIONS(6481), - [anon_sym_BSLASHacsp] = ACTIONS(6481), - [anon_sym_BSLASHAcsp] = ACTIONS(6481), - [anon_sym_BSLASHacl] = ACTIONS(6481), - [anon_sym_BSLASHAcl] = ACTIONS(6481), - [anon_sym_BSLASHaclp] = ACTIONS(6481), - [anon_sym_BSLASHAclp] = ACTIONS(6481), - [anon_sym_BSLASHacf] = ACTIONS(6481), - [anon_sym_BSLASHAcf] = ACTIONS(6481), - [anon_sym_BSLASHacfp] = ACTIONS(6481), - [anon_sym_BSLASHAcfp] = ACTIONS(6481), - [anon_sym_BSLASHac] = ACTIONS(6481), - [anon_sym_BSLASHAc] = ACTIONS(6481), - [anon_sym_BSLASHacp] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6481), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6481), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6481), - [anon_sym_BSLASHcolor] = ACTIONS(6481), - [anon_sym_BSLASHcolorbox] = ACTIONS(6481), - [anon_sym_BSLASHtextcolor] = ACTIONS(6481), - [anon_sym_BSLASHpagecolor] = ACTIONS(6481), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6481), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6481), - [anon_sym_BSLASHtext] = ACTIONS(6481), - [anon_sym_BSLASHintertext] = ACTIONS(6481), - [anon_sym_shortintertext] = ACTIONS(6481), - }, - [1245] = { - [sym_command_name] = ACTIONS(6429), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6429), - [anon_sym_LBRACK] = ACTIONS(6431), - [anon_sym_RBRACK] = ACTIONS(6431), - [anon_sym_COMMA] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(6431), - [anon_sym_LPAREN] = ACTIONS(6431), - [anon_sym_RPAREN] = ACTIONS(6431), - [anon_sym_BSLASHpart] = ACTIONS(6429), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddpart] = ACTIONS(6429), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6431), - [anon_sym_BSLASHchapter] = ACTIONS(6429), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddchap] = ACTIONS(6429), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsection] = ACTIONS(6429), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHaddsec] = ACTIONS(6429), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubsection] = ACTIONS(6429), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6429), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6431), - [anon_sym_BSLASHparagraph] = ACTIONS(6429), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6429), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6431), - [anon_sym_BSLASHitem] = ACTIONS(6429), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6431), - [anon_sym_LBRACE] = ACTIONS(6431), - [sym_word] = ACTIONS(6429), - [sym_placeholder] = ACTIONS(6431), - [anon_sym_PLUS] = ACTIONS(6431), - [anon_sym_DASH] = ACTIONS(6431), - [anon_sym_STAR] = ACTIONS(6431), - [anon_sym_SLASH] = ACTIONS(6431), - [anon_sym_LT] = ACTIONS(6429), - [anon_sym_GT] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(6429), - [anon_sym_PIPE] = ACTIONS(6429), - [anon_sym_COLON] = ACTIONS(6429), - [anon_sym_SQUOTE] = ACTIONS(6429), - [anon_sym__] = ACTIONS(6431), - [anon_sym_CARET] = ACTIONS(6431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6431), - [anon_sym_DOLLAR] = ACTIONS(6429), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6431), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6431), - [anon_sym_BSLASHbegin] = ACTIONS(6429), - [anon_sym_BSLASHtitle] = ACTIONS(6429), - [anon_sym_BSLASHauthor] = ACTIONS(6429), - [anon_sym_BSLASHusepackage] = ACTIONS(6429), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6429), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6429), - [anon_sym_BSLASHinclude] = ACTIONS(6429), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6429), - [anon_sym_BSLASHinput] = ACTIONS(6429), - [anon_sym_BSLASHsubfile] = ACTIONS(6429), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6429), - [anon_sym_BSLASHbibliography] = ACTIONS(6429), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6429), - [anon_sym_BSLASHincludesvg] = ACTIONS(6429), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6429), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6429), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6429), - [anon_sym_BSLASHimport] = ACTIONS(6429), - [anon_sym_BSLASHsubimport] = ACTIONS(6429), - [anon_sym_BSLASHinputfrom] = ACTIONS(6429), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6429), - [anon_sym_BSLASHincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHcaption] = ACTIONS(6429), - [anon_sym_BSLASHcite] = ACTIONS(6429), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCite] = ACTIONS(6429), - [anon_sym_BSLASHnocite] = ACTIONS(6429), - [anon_sym_BSLASHcitet] = ACTIONS(6429), - [anon_sym_BSLASHcitep] = ACTIONS(6429), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteauthor] = ACTIONS(6429), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6429), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitetitle] = ACTIONS(6429), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteyear] = ACTIONS(6429), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitedate] = ACTIONS(6429), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteurl] = ACTIONS(6429), - [anon_sym_BSLASHfullcite] = ACTIONS(6429), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6429), - [anon_sym_BSLASHcitealt] = ACTIONS(6429), - [anon_sym_BSLASHcitealp] = ACTIONS(6429), - [anon_sym_BSLASHcitetext] = ACTIONS(6429), - [anon_sym_BSLASHparencite] = ACTIONS(6429), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHParencite] = ACTIONS(6429), - [anon_sym_BSLASHfootcite] = ACTIONS(6429), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6429), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6429), - [anon_sym_BSLASHtextcite] = ACTIONS(6429), - [anon_sym_BSLASHTextcite] = ACTIONS(6429), - [anon_sym_BSLASHsmartcite] = ACTIONS(6429), - [anon_sym_BSLASHSmartcite] = ACTIONS(6429), - [anon_sym_BSLASHsupercite] = ACTIONS(6429), - [anon_sym_BSLASHautocite] = ACTIONS(6429), - [anon_sym_BSLASHAutocite] = ACTIONS(6429), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHvolcite] = ACTIONS(6429), - [anon_sym_BSLASHVolcite] = ACTIONS(6429), - [anon_sym_BSLASHpvolcite] = ACTIONS(6429), - [anon_sym_BSLASHPvolcite] = ACTIONS(6429), - [anon_sym_BSLASHfvolcite] = ACTIONS(6429), - [anon_sym_BSLASHftvolcite] = ACTIONS(6429), - [anon_sym_BSLASHsvolcite] = ACTIONS(6429), - [anon_sym_BSLASHSvolcite] = ACTIONS(6429), - [anon_sym_BSLASHtvolcite] = ACTIONS(6429), - [anon_sym_BSLASHTvolcite] = ACTIONS(6429), - [anon_sym_BSLASHavolcite] = ACTIONS(6429), - [anon_sym_BSLASHAvolcite] = ACTIONS(6429), - [anon_sym_BSLASHnotecite] = ACTIONS(6429), - [anon_sym_BSLASHNotecite] = ACTIONS(6429), - [anon_sym_BSLASHpnotecite] = ACTIONS(6429), - [anon_sym_BSLASHPnotecite] = ACTIONS(6429), - [anon_sym_BSLASHfnotecite] = ACTIONS(6429), - [anon_sym_BSLASHlabel] = ACTIONS(6429), - [anon_sym_BSLASHref] = ACTIONS(6429), - [anon_sym_BSLASHeqref] = ACTIONS(6429), - [anon_sym_BSLASHvref] = ACTIONS(6429), - [anon_sym_BSLASHVref] = ACTIONS(6429), - [anon_sym_BSLASHautoref] = ACTIONS(6429), - [anon_sym_BSLASHpageref] = ACTIONS(6429), - [anon_sym_BSLASHcref] = ACTIONS(6429), - [anon_sym_BSLASHCref] = ACTIONS(6429), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnameCref] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHlabelcref] = ACTIONS(6429), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCrefrange] = ACTIONS(6429), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnewlabel] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6429), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6429), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6431), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHdef] = ACTIONS(6429), - [anon_sym_BSLASHlet] = ACTIONS(6429), - [anon_sym_BSLASHleft] = ACTIONS(6429), - [anon_sym_BSLASHbig] = ACTIONS(6429), - [anon_sym_BSLASHBig] = ACTIONS(6429), - [anon_sym_BSLASHbigg] = ACTIONS(6429), - [anon_sym_BSLASHBigg] = ACTIONS(6429), - [anon_sym_BSLASHbigl] = ACTIONS(6429), - [anon_sym_BSLASHBigl] = ACTIONS(6429), - [anon_sym_BSLASHbiggl] = ACTIONS(6429), - [anon_sym_BSLASHBiggl] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6429), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6429), - [anon_sym_BSLASHgls] = ACTIONS(6429), - [anon_sym_BSLASHGls] = ACTIONS(6429), - [anon_sym_BSLASHGLS] = ACTIONS(6429), - [anon_sym_BSLASHglspl] = ACTIONS(6429), - [anon_sym_BSLASHGlspl] = ACTIONS(6429), - [anon_sym_BSLASHGLSpl] = ACTIONS(6429), - [anon_sym_BSLASHglsdisp] = ACTIONS(6429), - [anon_sym_BSLASHglslink] = ACTIONS(6429), - [anon_sym_BSLASHglstext] = ACTIONS(6429), - [anon_sym_BSLASHGlstext] = ACTIONS(6429), - [anon_sym_BSLASHGLStext] = ACTIONS(6429), - [anon_sym_BSLASHglsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6429), - [anon_sym_BSLASHglsplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSplural] = ACTIONS(6429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHglsname] = ACTIONS(6429), - [anon_sym_BSLASHGlsname] = ACTIONS(6429), - [anon_sym_BSLASHGLSname] = ACTIONS(6429), - [anon_sym_BSLASHglssymbol] = ACTIONS(6429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6429), - [anon_sym_BSLASHglsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6429), - [anon_sym_BSLASHglsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6429), - [anon_sym_BSLASHglsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6429), - [anon_sym_BSLASHglsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6429), - [anon_sym_BSLASHglsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6429), - [anon_sym_BSLASHnewacronym] = ACTIONS(6429), - [anon_sym_BSLASHacrshort] = ACTIONS(6429), - [anon_sym_BSLASHAcrshort] = ACTIONS(6429), - [anon_sym_BSLASHACRshort] = ACTIONS(6429), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6429), - [anon_sym_BSLASHacrlong] = ACTIONS(6429), - [anon_sym_BSLASHAcrlong] = ACTIONS(6429), - [anon_sym_BSLASHACRlong] = ACTIONS(6429), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6429), - [anon_sym_BSLASHacrfull] = ACTIONS(6429), - [anon_sym_BSLASHAcrfull] = ACTIONS(6429), - [anon_sym_BSLASHACRfull] = ACTIONS(6429), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6429), - [anon_sym_BSLASHacs] = ACTIONS(6429), - [anon_sym_BSLASHAcs] = ACTIONS(6429), - [anon_sym_BSLASHacsp] = ACTIONS(6429), - [anon_sym_BSLASHAcsp] = ACTIONS(6429), - [anon_sym_BSLASHacl] = ACTIONS(6429), - [anon_sym_BSLASHAcl] = ACTIONS(6429), - [anon_sym_BSLASHaclp] = ACTIONS(6429), - [anon_sym_BSLASHAclp] = ACTIONS(6429), - [anon_sym_BSLASHacf] = ACTIONS(6429), - [anon_sym_BSLASHAcf] = ACTIONS(6429), - [anon_sym_BSLASHacfp] = ACTIONS(6429), - [anon_sym_BSLASHAcfp] = ACTIONS(6429), - [anon_sym_BSLASHac] = ACTIONS(6429), - [anon_sym_BSLASHAc] = ACTIONS(6429), - [anon_sym_BSLASHacp] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6429), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6429), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6429), - [anon_sym_BSLASHcolor] = ACTIONS(6429), - [anon_sym_BSLASHcolorbox] = ACTIONS(6429), - [anon_sym_BSLASHtextcolor] = ACTIONS(6429), - [anon_sym_BSLASHpagecolor] = ACTIONS(6429), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6429), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6429), - [anon_sym_BSLASHtext] = ACTIONS(6429), - [anon_sym_BSLASHintertext] = ACTIONS(6429), - [anon_sym_shortintertext] = ACTIONS(6429), - }, - [1246] = { - [sym_command_name] = ACTIONS(6485), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6485), - [anon_sym_LBRACK] = ACTIONS(6487), - [anon_sym_RBRACK] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(6487), - [anon_sym_EQ] = ACTIONS(6487), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(6487), - [anon_sym_BSLASHpart] = ACTIONS(6485), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddpart] = ACTIONS(6485), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6487), - [anon_sym_BSLASHchapter] = ACTIONS(6485), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddchap] = ACTIONS(6485), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsection] = ACTIONS(6485), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHaddsec] = ACTIONS(6485), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubsection] = ACTIONS(6485), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6485), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6487), - [anon_sym_BSLASHparagraph] = ACTIONS(6485), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6485), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6487), - [anon_sym_BSLASHitem] = ACTIONS(6485), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6487), - [anon_sym_LBRACE] = ACTIONS(6487), - [sym_word] = ACTIONS(6485), - [sym_placeholder] = ACTIONS(6487), - [anon_sym_PLUS] = ACTIONS(6487), - [anon_sym_DASH] = ACTIONS(6487), - [anon_sym_STAR] = ACTIONS(6487), - [anon_sym_SLASH] = ACTIONS(6487), - [anon_sym_LT] = ACTIONS(6485), - [anon_sym_GT] = ACTIONS(6485), - [anon_sym_BANG] = ACTIONS(6485), - [anon_sym_PIPE] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6485), - [anon_sym_SQUOTE] = ACTIONS(6485), - [anon_sym__] = ACTIONS(6487), - [anon_sym_CARET] = ACTIONS(6487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6487), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6487), - [anon_sym_DOLLAR] = ACTIONS(6485), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6487), - [anon_sym_BSLASHbegin] = ACTIONS(6485), - [anon_sym_BSLASHtitle] = ACTIONS(6485), - [anon_sym_BSLASHauthor] = ACTIONS(6485), - [anon_sym_BSLASHusepackage] = ACTIONS(6485), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6485), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6485), - [anon_sym_BSLASHinclude] = ACTIONS(6485), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6485), - [anon_sym_BSLASHinput] = ACTIONS(6485), - [anon_sym_BSLASHsubfile] = ACTIONS(6485), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6485), - [anon_sym_BSLASHbibliography] = ACTIONS(6485), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6485), - [anon_sym_BSLASHincludesvg] = ACTIONS(6485), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6485), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6485), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6485), - [anon_sym_BSLASHimport] = ACTIONS(6485), - [anon_sym_BSLASHsubimport] = ACTIONS(6485), - [anon_sym_BSLASHinputfrom] = ACTIONS(6485), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6485), - [anon_sym_BSLASHincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHcaption] = ACTIONS(6485), - [anon_sym_BSLASHcite] = ACTIONS(6485), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCite] = ACTIONS(6485), - [anon_sym_BSLASHnocite] = ACTIONS(6485), - [anon_sym_BSLASHcitet] = ACTIONS(6485), - [anon_sym_BSLASHcitep] = ACTIONS(6485), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteauthor] = ACTIONS(6485), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6485), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitetitle] = ACTIONS(6485), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteyear] = ACTIONS(6485), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitedate] = ACTIONS(6485), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteurl] = ACTIONS(6485), - [anon_sym_BSLASHfullcite] = ACTIONS(6485), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6485), - [anon_sym_BSLASHcitealt] = ACTIONS(6485), - [anon_sym_BSLASHcitealp] = ACTIONS(6485), - [anon_sym_BSLASHcitetext] = ACTIONS(6485), - [anon_sym_BSLASHparencite] = ACTIONS(6485), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHParencite] = ACTIONS(6485), - [anon_sym_BSLASHfootcite] = ACTIONS(6485), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6485), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6485), - [anon_sym_BSLASHtextcite] = ACTIONS(6485), - [anon_sym_BSLASHTextcite] = ACTIONS(6485), - [anon_sym_BSLASHsmartcite] = ACTIONS(6485), - [anon_sym_BSLASHSmartcite] = ACTIONS(6485), - [anon_sym_BSLASHsupercite] = ACTIONS(6485), - [anon_sym_BSLASHautocite] = ACTIONS(6485), - [anon_sym_BSLASHAutocite] = ACTIONS(6485), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHvolcite] = ACTIONS(6485), - [anon_sym_BSLASHVolcite] = ACTIONS(6485), - [anon_sym_BSLASHpvolcite] = ACTIONS(6485), - [anon_sym_BSLASHPvolcite] = ACTIONS(6485), - [anon_sym_BSLASHfvolcite] = ACTIONS(6485), - [anon_sym_BSLASHftvolcite] = ACTIONS(6485), - [anon_sym_BSLASHsvolcite] = ACTIONS(6485), - [anon_sym_BSLASHSvolcite] = ACTIONS(6485), - [anon_sym_BSLASHtvolcite] = ACTIONS(6485), - [anon_sym_BSLASHTvolcite] = ACTIONS(6485), - [anon_sym_BSLASHavolcite] = ACTIONS(6485), - [anon_sym_BSLASHAvolcite] = ACTIONS(6485), - [anon_sym_BSLASHnotecite] = ACTIONS(6485), - [anon_sym_BSLASHNotecite] = ACTIONS(6485), - [anon_sym_BSLASHpnotecite] = ACTIONS(6485), - [anon_sym_BSLASHPnotecite] = ACTIONS(6485), - [anon_sym_BSLASHfnotecite] = ACTIONS(6485), - [anon_sym_BSLASHlabel] = ACTIONS(6485), - [anon_sym_BSLASHref] = ACTIONS(6485), - [anon_sym_BSLASHeqref] = ACTIONS(6485), - [anon_sym_BSLASHvref] = ACTIONS(6485), - [anon_sym_BSLASHVref] = ACTIONS(6485), - [anon_sym_BSLASHautoref] = ACTIONS(6485), - [anon_sym_BSLASHpageref] = ACTIONS(6485), - [anon_sym_BSLASHcref] = ACTIONS(6485), - [anon_sym_BSLASHCref] = ACTIONS(6485), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnameCref] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHlabelcref] = ACTIONS(6485), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCrefrange] = ACTIONS(6485), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnewlabel] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6485), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6485), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6487), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHdef] = ACTIONS(6485), - [anon_sym_BSLASHlet] = ACTIONS(6485), - [anon_sym_BSLASHleft] = ACTIONS(6485), - [anon_sym_BSLASHbig] = ACTIONS(6485), - [anon_sym_BSLASHBig] = ACTIONS(6485), - [anon_sym_BSLASHbigg] = ACTIONS(6485), - [anon_sym_BSLASHBigg] = ACTIONS(6485), - [anon_sym_BSLASHbigl] = ACTIONS(6485), - [anon_sym_BSLASHBigl] = ACTIONS(6485), - [anon_sym_BSLASHbiggl] = ACTIONS(6485), - [anon_sym_BSLASHBiggl] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6485), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6485), - [anon_sym_BSLASHgls] = ACTIONS(6485), - [anon_sym_BSLASHGls] = ACTIONS(6485), - [anon_sym_BSLASHGLS] = ACTIONS(6485), - [anon_sym_BSLASHglspl] = ACTIONS(6485), - [anon_sym_BSLASHGlspl] = ACTIONS(6485), - [anon_sym_BSLASHGLSpl] = ACTIONS(6485), - [anon_sym_BSLASHglsdisp] = ACTIONS(6485), - [anon_sym_BSLASHglslink] = ACTIONS(6485), - [anon_sym_BSLASHglstext] = ACTIONS(6485), - [anon_sym_BSLASHGlstext] = ACTIONS(6485), - [anon_sym_BSLASHGLStext] = ACTIONS(6485), - [anon_sym_BSLASHglsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6485), - [anon_sym_BSLASHglsplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSplural] = ACTIONS(6485), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHglsname] = ACTIONS(6485), - [anon_sym_BSLASHGlsname] = ACTIONS(6485), - [anon_sym_BSLASHGLSname] = ACTIONS(6485), - [anon_sym_BSLASHglssymbol] = ACTIONS(6485), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6485), - [anon_sym_BSLASHglsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6485), - [anon_sym_BSLASHglsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6485), - [anon_sym_BSLASHglsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6485), - [anon_sym_BSLASHglsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6485), - [anon_sym_BSLASHglsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6485), - [anon_sym_BSLASHnewacronym] = ACTIONS(6485), - [anon_sym_BSLASHacrshort] = ACTIONS(6485), - [anon_sym_BSLASHAcrshort] = ACTIONS(6485), - [anon_sym_BSLASHACRshort] = ACTIONS(6485), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6485), - [anon_sym_BSLASHacrlong] = ACTIONS(6485), - [anon_sym_BSLASHAcrlong] = ACTIONS(6485), - [anon_sym_BSLASHACRlong] = ACTIONS(6485), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6485), - [anon_sym_BSLASHacrfull] = ACTIONS(6485), - [anon_sym_BSLASHAcrfull] = ACTIONS(6485), - [anon_sym_BSLASHACRfull] = ACTIONS(6485), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6485), - [anon_sym_BSLASHacs] = ACTIONS(6485), - [anon_sym_BSLASHAcs] = ACTIONS(6485), - [anon_sym_BSLASHacsp] = ACTIONS(6485), - [anon_sym_BSLASHAcsp] = ACTIONS(6485), - [anon_sym_BSLASHacl] = ACTIONS(6485), - [anon_sym_BSLASHAcl] = ACTIONS(6485), - [anon_sym_BSLASHaclp] = ACTIONS(6485), - [anon_sym_BSLASHAclp] = ACTIONS(6485), - [anon_sym_BSLASHacf] = ACTIONS(6485), - [anon_sym_BSLASHAcf] = ACTIONS(6485), - [anon_sym_BSLASHacfp] = ACTIONS(6485), - [anon_sym_BSLASHAcfp] = ACTIONS(6485), - [anon_sym_BSLASHac] = ACTIONS(6485), - [anon_sym_BSLASHAc] = ACTIONS(6485), - [anon_sym_BSLASHacp] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6485), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6485), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6485), - [anon_sym_BSLASHcolor] = ACTIONS(6485), - [anon_sym_BSLASHcolorbox] = ACTIONS(6485), - [anon_sym_BSLASHtextcolor] = ACTIONS(6485), - [anon_sym_BSLASHpagecolor] = ACTIONS(6485), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6485), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6485), - [anon_sym_BSLASHtext] = ACTIONS(6485), - [anon_sym_BSLASHintertext] = ACTIONS(6485), - [anon_sym_shortintertext] = ACTIONS(6485), - }, - [1247] = { - [sym_command_name] = ACTIONS(6473), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6473), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_RBRACK] = ACTIONS(6475), - [anon_sym_COMMA] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6475), - [anon_sym_LPAREN] = ACTIONS(6475), - [anon_sym_RPAREN] = ACTIONS(6475), - [anon_sym_BSLASHpart] = ACTIONS(6473), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddpart] = ACTIONS(6473), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6475), - [anon_sym_BSLASHchapter] = ACTIONS(6473), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddchap] = ACTIONS(6473), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsection] = ACTIONS(6473), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHaddsec] = ACTIONS(6473), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubsection] = ACTIONS(6473), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6473), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6475), - [anon_sym_BSLASHparagraph] = ACTIONS(6473), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6475), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6473), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6475), - [anon_sym_BSLASHitem] = ACTIONS(6473), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6475), - [anon_sym_LBRACE] = ACTIONS(6475), - [sym_word] = ACTIONS(6473), - [sym_placeholder] = ACTIONS(6475), - [anon_sym_PLUS] = ACTIONS(6475), - [anon_sym_DASH] = ACTIONS(6475), - [anon_sym_STAR] = ACTIONS(6475), - [anon_sym_SLASH] = ACTIONS(6475), - [anon_sym_LT] = ACTIONS(6473), - [anon_sym_GT] = ACTIONS(6473), - [anon_sym_BANG] = ACTIONS(6473), - [anon_sym_PIPE] = ACTIONS(6473), - [anon_sym_COLON] = ACTIONS(6473), - [anon_sym_SQUOTE] = ACTIONS(6473), - [anon_sym__] = ACTIONS(6475), - [anon_sym_CARET] = ACTIONS(6475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6475), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6475), - [anon_sym_DOLLAR] = ACTIONS(6473), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6475), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6475), - [anon_sym_BSLASHbegin] = ACTIONS(6473), - [anon_sym_BSLASHtitle] = ACTIONS(6473), - [anon_sym_BSLASHauthor] = ACTIONS(6473), - [anon_sym_BSLASHusepackage] = ACTIONS(6473), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6473), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6473), - [anon_sym_BSLASHinclude] = ACTIONS(6473), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6473), - [anon_sym_BSLASHinput] = ACTIONS(6473), - [anon_sym_BSLASHsubfile] = ACTIONS(6473), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6473), - [anon_sym_BSLASHbibliography] = ACTIONS(6473), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6473), - [anon_sym_BSLASHincludesvg] = ACTIONS(6473), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6473), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6473), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6473), - [anon_sym_BSLASHimport] = ACTIONS(6473), - [anon_sym_BSLASHsubimport] = ACTIONS(6473), - [anon_sym_BSLASHinputfrom] = ACTIONS(6473), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6473), - [anon_sym_BSLASHincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHcaption] = ACTIONS(6473), - [anon_sym_BSLASHcite] = ACTIONS(6473), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCite] = ACTIONS(6473), - [anon_sym_BSLASHnocite] = ACTIONS(6473), - [anon_sym_BSLASHcitet] = ACTIONS(6473), - [anon_sym_BSLASHcitep] = ACTIONS(6473), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteauthor] = ACTIONS(6473), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6473), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitetitle] = ACTIONS(6473), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteyear] = ACTIONS(6473), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitedate] = ACTIONS(6473), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteurl] = ACTIONS(6473), - [anon_sym_BSLASHfullcite] = ACTIONS(6473), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6473), - [anon_sym_BSLASHcitealt] = ACTIONS(6473), - [anon_sym_BSLASHcitealp] = ACTIONS(6473), - [anon_sym_BSLASHcitetext] = ACTIONS(6473), - [anon_sym_BSLASHparencite] = ACTIONS(6473), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHParencite] = ACTIONS(6473), - [anon_sym_BSLASHfootcite] = ACTIONS(6473), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6473), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6473), - [anon_sym_BSLASHtextcite] = ACTIONS(6473), - [anon_sym_BSLASHTextcite] = ACTIONS(6473), - [anon_sym_BSLASHsmartcite] = ACTIONS(6473), - [anon_sym_BSLASHSmartcite] = ACTIONS(6473), - [anon_sym_BSLASHsupercite] = ACTIONS(6473), - [anon_sym_BSLASHautocite] = ACTIONS(6473), - [anon_sym_BSLASHAutocite] = ACTIONS(6473), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHvolcite] = ACTIONS(6473), - [anon_sym_BSLASHVolcite] = ACTIONS(6473), - [anon_sym_BSLASHpvolcite] = ACTIONS(6473), - [anon_sym_BSLASHPvolcite] = ACTIONS(6473), - [anon_sym_BSLASHfvolcite] = ACTIONS(6473), - [anon_sym_BSLASHftvolcite] = ACTIONS(6473), - [anon_sym_BSLASHsvolcite] = ACTIONS(6473), - [anon_sym_BSLASHSvolcite] = ACTIONS(6473), - [anon_sym_BSLASHtvolcite] = ACTIONS(6473), - [anon_sym_BSLASHTvolcite] = ACTIONS(6473), - [anon_sym_BSLASHavolcite] = ACTIONS(6473), - [anon_sym_BSLASHAvolcite] = ACTIONS(6473), - [anon_sym_BSLASHnotecite] = ACTIONS(6473), - [anon_sym_BSLASHNotecite] = ACTIONS(6473), - [anon_sym_BSLASHpnotecite] = ACTIONS(6473), - [anon_sym_BSLASHPnotecite] = ACTIONS(6473), - [anon_sym_BSLASHfnotecite] = ACTIONS(6473), - [anon_sym_BSLASHlabel] = ACTIONS(6473), - [anon_sym_BSLASHref] = ACTIONS(6473), - [anon_sym_BSLASHeqref] = ACTIONS(6473), - [anon_sym_BSLASHvref] = ACTIONS(6473), - [anon_sym_BSLASHVref] = ACTIONS(6473), - [anon_sym_BSLASHautoref] = ACTIONS(6473), - [anon_sym_BSLASHpageref] = ACTIONS(6473), - [anon_sym_BSLASHcref] = ACTIONS(6473), - [anon_sym_BSLASHCref] = ACTIONS(6473), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnameCref] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHlabelcref] = ACTIONS(6473), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCrefrange] = ACTIONS(6473), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnewlabel] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6473), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6473), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6475), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHdef] = ACTIONS(6473), - [anon_sym_BSLASHlet] = ACTIONS(6473), - [anon_sym_BSLASHleft] = ACTIONS(6473), - [anon_sym_BSLASHbig] = ACTIONS(6473), - [anon_sym_BSLASHBig] = ACTIONS(6473), - [anon_sym_BSLASHbigg] = ACTIONS(6473), - [anon_sym_BSLASHBigg] = ACTIONS(6473), - [anon_sym_BSLASHbigl] = ACTIONS(6473), - [anon_sym_BSLASHBigl] = ACTIONS(6473), - [anon_sym_BSLASHbiggl] = ACTIONS(6473), - [anon_sym_BSLASHBiggl] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6473), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6473), - [anon_sym_BSLASHgls] = ACTIONS(6473), - [anon_sym_BSLASHGls] = ACTIONS(6473), - [anon_sym_BSLASHGLS] = ACTIONS(6473), - [anon_sym_BSLASHglspl] = ACTIONS(6473), - [anon_sym_BSLASHGlspl] = ACTIONS(6473), - [anon_sym_BSLASHGLSpl] = ACTIONS(6473), - [anon_sym_BSLASHglsdisp] = ACTIONS(6473), - [anon_sym_BSLASHglslink] = ACTIONS(6473), - [anon_sym_BSLASHglstext] = ACTIONS(6473), - [anon_sym_BSLASHGlstext] = ACTIONS(6473), - [anon_sym_BSLASHGLStext] = ACTIONS(6473), - [anon_sym_BSLASHglsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6473), - [anon_sym_BSLASHglsplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSplural] = ACTIONS(6473), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHglsname] = ACTIONS(6473), - [anon_sym_BSLASHGlsname] = ACTIONS(6473), - [anon_sym_BSLASHGLSname] = ACTIONS(6473), - [anon_sym_BSLASHglssymbol] = ACTIONS(6473), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6473), - [anon_sym_BSLASHglsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6473), - [anon_sym_BSLASHglsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6473), - [anon_sym_BSLASHglsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6473), - [anon_sym_BSLASHglsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6473), - [anon_sym_BSLASHglsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6473), - [anon_sym_BSLASHnewacronym] = ACTIONS(6473), - [anon_sym_BSLASHacrshort] = ACTIONS(6473), - [anon_sym_BSLASHAcrshort] = ACTIONS(6473), - [anon_sym_BSLASHACRshort] = ACTIONS(6473), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6473), - [anon_sym_BSLASHacrlong] = ACTIONS(6473), - [anon_sym_BSLASHAcrlong] = ACTIONS(6473), - [anon_sym_BSLASHACRlong] = ACTIONS(6473), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6473), - [anon_sym_BSLASHacrfull] = ACTIONS(6473), - [anon_sym_BSLASHAcrfull] = ACTIONS(6473), - [anon_sym_BSLASHACRfull] = ACTIONS(6473), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6473), - [anon_sym_BSLASHacs] = ACTIONS(6473), - [anon_sym_BSLASHAcs] = ACTIONS(6473), - [anon_sym_BSLASHacsp] = ACTIONS(6473), - [anon_sym_BSLASHAcsp] = ACTIONS(6473), - [anon_sym_BSLASHacl] = ACTIONS(6473), - [anon_sym_BSLASHAcl] = ACTIONS(6473), - [anon_sym_BSLASHaclp] = ACTIONS(6473), - [anon_sym_BSLASHAclp] = ACTIONS(6473), - [anon_sym_BSLASHacf] = ACTIONS(6473), - [anon_sym_BSLASHAcf] = ACTIONS(6473), - [anon_sym_BSLASHacfp] = ACTIONS(6473), - [anon_sym_BSLASHAcfp] = ACTIONS(6473), - [anon_sym_BSLASHac] = ACTIONS(6473), - [anon_sym_BSLASHAc] = ACTIONS(6473), - [anon_sym_BSLASHacp] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6473), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6473), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6473), - [anon_sym_BSLASHcolor] = ACTIONS(6473), - [anon_sym_BSLASHcolorbox] = ACTIONS(6473), - [anon_sym_BSLASHtextcolor] = ACTIONS(6473), - [anon_sym_BSLASHpagecolor] = ACTIONS(6473), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6473), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6473), - [anon_sym_BSLASHtext] = ACTIONS(6473), - [anon_sym_BSLASHintertext] = ACTIONS(6473), - [anon_sym_shortintertext] = ACTIONS(6473), - }, - [1248] = { - [sym_command_name] = ACTIONS(6325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6325), - [anon_sym_LBRACK] = ACTIONS(6327), - [anon_sym_RBRACK] = ACTIONS(6327), - [anon_sym_COMMA] = ACTIONS(6327), - [anon_sym_EQ] = ACTIONS(6327), - [anon_sym_LPAREN] = ACTIONS(6327), - [anon_sym_RPAREN] = ACTIONS(6327), - [anon_sym_BSLASHpart] = ACTIONS(6325), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddpart] = ACTIONS(6325), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6327), - [anon_sym_BSLASHchapter] = ACTIONS(6325), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddchap] = ACTIONS(6325), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsection] = ACTIONS(6325), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHaddsec] = ACTIONS(6325), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubsection] = ACTIONS(6325), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6325), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6327), - [anon_sym_BSLASHparagraph] = ACTIONS(6325), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6327), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6325), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6327), - [anon_sym_BSLASHitem] = ACTIONS(6325), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6327), - [anon_sym_LBRACE] = ACTIONS(6327), - [sym_word] = ACTIONS(6325), - [sym_placeholder] = ACTIONS(6327), - [anon_sym_PLUS] = ACTIONS(6327), - [anon_sym_DASH] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6327), - [anon_sym_SLASH] = ACTIONS(6327), - [anon_sym_LT] = ACTIONS(6325), - [anon_sym_GT] = ACTIONS(6325), - [anon_sym_BANG] = ACTIONS(6325), - [anon_sym_PIPE] = ACTIONS(6325), - [anon_sym_COLON] = ACTIONS(6325), - [anon_sym_SQUOTE] = ACTIONS(6325), - [anon_sym__] = ACTIONS(6327), - [anon_sym_CARET] = ACTIONS(6327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6327), - [anon_sym_DOLLAR] = ACTIONS(6325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6327), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6327), - [anon_sym_BSLASHbegin] = ACTIONS(6325), - [anon_sym_BSLASHtitle] = ACTIONS(6325), - [anon_sym_BSLASHauthor] = ACTIONS(6325), - [anon_sym_BSLASHusepackage] = ACTIONS(6325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6325), - [anon_sym_BSLASHinclude] = ACTIONS(6325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6325), - [anon_sym_BSLASHinput] = ACTIONS(6325), - [anon_sym_BSLASHsubfile] = ACTIONS(6325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6325), - [anon_sym_BSLASHbibliography] = ACTIONS(6325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6325), - [anon_sym_BSLASHincludesvg] = ACTIONS(6325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6325), - [anon_sym_BSLASHimport] = ACTIONS(6325), - [anon_sym_BSLASHsubimport] = ACTIONS(6325), - [anon_sym_BSLASHinputfrom] = ACTIONS(6325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6325), - [anon_sym_BSLASHincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHcaption] = ACTIONS(6325), - [anon_sym_BSLASHcite] = ACTIONS(6325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCite] = ACTIONS(6325), - [anon_sym_BSLASHnocite] = ACTIONS(6325), - [anon_sym_BSLASHcitet] = ACTIONS(6325), - [anon_sym_BSLASHcitep] = ACTIONS(6325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteauthor] = ACTIONS(6325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitetitle] = ACTIONS(6325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteyear] = ACTIONS(6325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitedate] = ACTIONS(6325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteurl] = ACTIONS(6325), - [anon_sym_BSLASHfullcite] = ACTIONS(6325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6325), - [anon_sym_BSLASHcitealt] = ACTIONS(6325), - [anon_sym_BSLASHcitealp] = ACTIONS(6325), - [anon_sym_BSLASHcitetext] = ACTIONS(6325), - [anon_sym_BSLASHparencite] = ACTIONS(6325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHParencite] = ACTIONS(6325), - [anon_sym_BSLASHfootcite] = ACTIONS(6325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6325), - [anon_sym_BSLASHtextcite] = ACTIONS(6325), - [anon_sym_BSLASHTextcite] = ACTIONS(6325), - [anon_sym_BSLASHsmartcite] = ACTIONS(6325), - [anon_sym_BSLASHSmartcite] = ACTIONS(6325), - [anon_sym_BSLASHsupercite] = ACTIONS(6325), - [anon_sym_BSLASHautocite] = ACTIONS(6325), - [anon_sym_BSLASHAutocite] = ACTIONS(6325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHvolcite] = ACTIONS(6325), - [anon_sym_BSLASHVolcite] = ACTIONS(6325), - [anon_sym_BSLASHpvolcite] = ACTIONS(6325), - [anon_sym_BSLASHPvolcite] = ACTIONS(6325), - [anon_sym_BSLASHfvolcite] = ACTIONS(6325), - [anon_sym_BSLASHftvolcite] = ACTIONS(6325), - [anon_sym_BSLASHsvolcite] = ACTIONS(6325), - [anon_sym_BSLASHSvolcite] = ACTIONS(6325), - [anon_sym_BSLASHtvolcite] = ACTIONS(6325), - [anon_sym_BSLASHTvolcite] = ACTIONS(6325), - [anon_sym_BSLASHavolcite] = ACTIONS(6325), - [anon_sym_BSLASHAvolcite] = ACTIONS(6325), - [anon_sym_BSLASHnotecite] = ACTIONS(6325), - [anon_sym_BSLASHNotecite] = ACTIONS(6325), - [anon_sym_BSLASHpnotecite] = ACTIONS(6325), - [anon_sym_BSLASHPnotecite] = ACTIONS(6325), - [anon_sym_BSLASHfnotecite] = ACTIONS(6325), - [anon_sym_BSLASHlabel] = ACTIONS(6325), - [anon_sym_BSLASHref] = ACTIONS(6325), - [anon_sym_BSLASHeqref] = ACTIONS(6325), - [anon_sym_BSLASHvref] = ACTIONS(6325), - [anon_sym_BSLASHVref] = ACTIONS(6325), - [anon_sym_BSLASHautoref] = ACTIONS(6325), - [anon_sym_BSLASHpageref] = ACTIONS(6325), - [anon_sym_BSLASHcref] = ACTIONS(6325), - [anon_sym_BSLASHCref] = ACTIONS(6325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnameCref] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHlabelcref] = ACTIONS(6325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCrefrange] = ACTIONS(6325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnewlabel] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6327), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHdef] = ACTIONS(6325), - [anon_sym_BSLASHlet] = ACTIONS(6325), - [anon_sym_BSLASHleft] = ACTIONS(6325), - [anon_sym_BSLASHbig] = ACTIONS(6325), - [anon_sym_BSLASHBig] = ACTIONS(6325), - [anon_sym_BSLASHbigg] = ACTIONS(6325), - [anon_sym_BSLASHBigg] = ACTIONS(6325), - [anon_sym_BSLASHbigl] = ACTIONS(6325), - [anon_sym_BSLASHBigl] = ACTIONS(6325), - [anon_sym_BSLASHbiggl] = ACTIONS(6325), - [anon_sym_BSLASHBiggl] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6325), - [anon_sym_BSLASHgls] = ACTIONS(6325), - [anon_sym_BSLASHGls] = ACTIONS(6325), - [anon_sym_BSLASHGLS] = ACTIONS(6325), - [anon_sym_BSLASHglspl] = ACTIONS(6325), - [anon_sym_BSLASHGlspl] = ACTIONS(6325), - [anon_sym_BSLASHGLSpl] = ACTIONS(6325), - [anon_sym_BSLASHglsdisp] = ACTIONS(6325), - [anon_sym_BSLASHglslink] = ACTIONS(6325), - [anon_sym_BSLASHglstext] = ACTIONS(6325), - [anon_sym_BSLASHGlstext] = ACTIONS(6325), - [anon_sym_BSLASHGLStext] = ACTIONS(6325), - [anon_sym_BSLASHglsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6325), - [anon_sym_BSLASHglsplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSplural] = ACTIONS(6325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHglsname] = ACTIONS(6325), - [anon_sym_BSLASHGlsname] = ACTIONS(6325), - [anon_sym_BSLASHGLSname] = ACTIONS(6325), - [anon_sym_BSLASHglssymbol] = ACTIONS(6325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6325), - [anon_sym_BSLASHglsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6325), - [anon_sym_BSLASHglsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6325), - [anon_sym_BSLASHglsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6325), - [anon_sym_BSLASHglsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6325), - [anon_sym_BSLASHglsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6325), - [anon_sym_BSLASHnewacronym] = ACTIONS(6325), - [anon_sym_BSLASHacrshort] = ACTIONS(6325), - [anon_sym_BSLASHAcrshort] = ACTIONS(6325), - [anon_sym_BSLASHACRshort] = ACTIONS(6325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6325), - [anon_sym_BSLASHacrlong] = ACTIONS(6325), - [anon_sym_BSLASHAcrlong] = ACTIONS(6325), - [anon_sym_BSLASHACRlong] = ACTIONS(6325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6325), - [anon_sym_BSLASHacrfull] = ACTIONS(6325), - [anon_sym_BSLASHAcrfull] = ACTIONS(6325), - [anon_sym_BSLASHACRfull] = ACTIONS(6325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6325), - [anon_sym_BSLASHacs] = ACTIONS(6325), - [anon_sym_BSLASHAcs] = ACTIONS(6325), - [anon_sym_BSLASHacsp] = ACTIONS(6325), - [anon_sym_BSLASHAcsp] = ACTIONS(6325), - [anon_sym_BSLASHacl] = ACTIONS(6325), - [anon_sym_BSLASHAcl] = ACTIONS(6325), - [anon_sym_BSLASHaclp] = ACTIONS(6325), - [anon_sym_BSLASHAclp] = ACTIONS(6325), - [anon_sym_BSLASHacf] = ACTIONS(6325), - [anon_sym_BSLASHAcf] = ACTIONS(6325), - [anon_sym_BSLASHacfp] = ACTIONS(6325), - [anon_sym_BSLASHAcfp] = ACTIONS(6325), - [anon_sym_BSLASHac] = ACTIONS(6325), - [anon_sym_BSLASHAc] = ACTIONS(6325), - [anon_sym_BSLASHacp] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6325), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6325), - [anon_sym_BSLASHcolor] = ACTIONS(6325), - [anon_sym_BSLASHcolorbox] = ACTIONS(6325), - [anon_sym_BSLASHtextcolor] = ACTIONS(6325), - [anon_sym_BSLASHpagecolor] = ACTIONS(6325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6325), - [anon_sym_BSLASHtext] = ACTIONS(6325), - [anon_sym_BSLASHintertext] = ACTIONS(6325), - [anon_sym_shortintertext] = ACTIONS(6325), - }, - [1249] = { - [sym_command_name] = ACTIONS(6317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(6319), - [anon_sym_RBRACK] = ACTIONS(6319), - [anon_sym_COMMA] = ACTIONS(6319), - [anon_sym_EQ] = ACTIONS(6319), - [anon_sym_LPAREN] = ACTIONS(6319), - [anon_sym_RPAREN] = ACTIONS(6319), - [anon_sym_BSLASHpart] = ACTIONS(6317), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddpart] = ACTIONS(6317), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6319), - [anon_sym_BSLASHchapter] = ACTIONS(6317), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddchap] = ACTIONS(6317), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsection] = ACTIONS(6317), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHaddsec] = ACTIONS(6317), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubsection] = ACTIONS(6317), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6317), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6319), - [anon_sym_BSLASHparagraph] = ACTIONS(6317), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6319), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6317), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6319), - [anon_sym_BSLASHitem] = ACTIONS(6317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6319), - [anon_sym_LBRACE] = ACTIONS(6319), - [sym_word] = ACTIONS(6317), - [sym_placeholder] = ACTIONS(6319), - [anon_sym_PLUS] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(6319), - [anon_sym_SLASH] = ACTIONS(6319), - [anon_sym_LT] = ACTIONS(6317), - [anon_sym_GT] = ACTIONS(6317), - [anon_sym_BANG] = ACTIONS(6317), - [anon_sym_PIPE] = ACTIONS(6317), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_SQUOTE] = ACTIONS(6317), - [anon_sym__] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6319), - [anon_sym_DOLLAR] = ACTIONS(6317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6319), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6319), - [anon_sym_BSLASHbegin] = ACTIONS(6317), - [anon_sym_BSLASHtitle] = ACTIONS(6317), - [anon_sym_BSLASHauthor] = ACTIONS(6317), - [anon_sym_BSLASHusepackage] = ACTIONS(6317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6317), - [anon_sym_BSLASHinclude] = ACTIONS(6317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6317), - [anon_sym_BSLASHinput] = ACTIONS(6317), - [anon_sym_BSLASHsubfile] = ACTIONS(6317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6317), - [anon_sym_BSLASHbibliography] = ACTIONS(6317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6317), - [anon_sym_BSLASHincludesvg] = ACTIONS(6317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6317), - [anon_sym_BSLASHimport] = ACTIONS(6317), - [anon_sym_BSLASHsubimport] = ACTIONS(6317), - [anon_sym_BSLASHinputfrom] = ACTIONS(6317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6317), - [anon_sym_BSLASHincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHcaption] = ACTIONS(6317), - [anon_sym_BSLASHcite] = ACTIONS(6317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCite] = ACTIONS(6317), - [anon_sym_BSLASHnocite] = ACTIONS(6317), - [anon_sym_BSLASHcitet] = ACTIONS(6317), - [anon_sym_BSLASHcitep] = ACTIONS(6317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteauthor] = ACTIONS(6317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitetitle] = ACTIONS(6317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteyear] = ACTIONS(6317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitedate] = ACTIONS(6317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteurl] = ACTIONS(6317), - [anon_sym_BSLASHfullcite] = ACTIONS(6317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6317), - [anon_sym_BSLASHcitealt] = ACTIONS(6317), - [anon_sym_BSLASHcitealp] = ACTIONS(6317), - [anon_sym_BSLASHcitetext] = ACTIONS(6317), - [anon_sym_BSLASHparencite] = ACTIONS(6317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHParencite] = ACTIONS(6317), - [anon_sym_BSLASHfootcite] = ACTIONS(6317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6317), - [anon_sym_BSLASHtextcite] = ACTIONS(6317), - [anon_sym_BSLASHTextcite] = ACTIONS(6317), - [anon_sym_BSLASHsmartcite] = ACTIONS(6317), - [anon_sym_BSLASHSmartcite] = ACTIONS(6317), - [anon_sym_BSLASHsupercite] = ACTIONS(6317), - [anon_sym_BSLASHautocite] = ACTIONS(6317), - [anon_sym_BSLASHAutocite] = ACTIONS(6317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHvolcite] = ACTIONS(6317), - [anon_sym_BSLASHVolcite] = ACTIONS(6317), - [anon_sym_BSLASHpvolcite] = ACTIONS(6317), - [anon_sym_BSLASHPvolcite] = ACTIONS(6317), - [anon_sym_BSLASHfvolcite] = ACTIONS(6317), - [anon_sym_BSLASHftvolcite] = ACTIONS(6317), - [anon_sym_BSLASHsvolcite] = ACTIONS(6317), - [anon_sym_BSLASHSvolcite] = ACTIONS(6317), - [anon_sym_BSLASHtvolcite] = ACTIONS(6317), - [anon_sym_BSLASHTvolcite] = ACTIONS(6317), - [anon_sym_BSLASHavolcite] = ACTIONS(6317), - [anon_sym_BSLASHAvolcite] = ACTIONS(6317), - [anon_sym_BSLASHnotecite] = ACTIONS(6317), - [anon_sym_BSLASHNotecite] = ACTIONS(6317), - [anon_sym_BSLASHpnotecite] = ACTIONS(6317), - [anon_sym_BSLASHPnotecite] = ACTIONS(6317), - [anon_sym_BSLASHfnotecite] = ACTIONS(6317), - [anon_sym_BSLASHlabel] = ACTIONS(6317), - [anon_sym_BSLASHref] = ACTIONS(6317), - [anon_sym_BSLASHeqref] = ACTIONS(6317), - [anon_sym_BSLASHvref] = ACTIONS(6317), - [anon_sym_BSLASHVref] = ACTIONS(6317), - [anon_sym_BSLASHautoref] = ACTIONS(6317), - [anon_sym_BSLASHpageref] = ACTIONS(6317), - [anon_sym_BSLASHcref] = ACTIONS(6317), - [anon_sym_BSLASHCref] = ACTIONS(6317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnameCref] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHlabelcref] = ACTIONS(6317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCrefrange] = ACTIONS(6317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnewlabel] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6319), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHdef] = ACTIONS(6317), - [anon_sym_BSLASHlet] = ACTIONS(6317), - [anon_sym_BSLASHleft] = ACTIONS(6317), - [anon_sym_BSLASHbig] = ACTIONS(6317), - [anon_sym_BSLASHBig] = ACTIONS(6317), - [anon_sym_BSLASHbigg] = ACTIONS(6317), - [anon_sym_BSLASHBigg] = ACTIONS(6317), - [anon_sym_BSLASHbigl] = ACTIONS(6317), - [anon_sym_BSLASHBigl] = ACTIONS(6317), - [anon_sym_BSLASHbiggl] = ACTIONS(6317), - [anon_sym_BSLASHBiggl] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6317), - [anon_sym_BSLASHgls] = ACTIONS(6317), - [anon_sym_BSLASHGls] = ACTIONS(6317), - [anon_sym_BSLASHGLS] = ACTIONS(6317), - [anon_sym_BSLASHglspl] = ACTIONS(6317), - [anon_sym_BSLASHGlspl] = ACTIONS(6317), - [anon_sym_BSLASHGLSpl] = ACTIONS(6317), - [anon_sym_BSLASHglsdisp] = ACTIONS(6317), - [anon_sym_BSLASHglslink] = ACTIONS(6317), - [anon_sym_BSLASHglstext] = ACTIONS(6317), - [anon_sym_BSLASHGlstext] = ACTIONS(6317), - [anon_sym_BSLASHGLStext] = ACTIONS(6317), - [anon_sym_BSLASHglsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6317), - [anon_sym_BSLASHglsplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSplural] = ACTIONS(6317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHglsname] = ACTIONS(6317), - [anon_sym_BSLASHGlsname] = ACTIONS(6317), - [anon_sym_BSLASHGLSname] = ACTIONS(6317), - [anon_sym_BSLASHglssymbol] = ACTIONS(6317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6317), - [anon_sym_BSLASHglsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6317), - [anon_sym_BSLASHglsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6317), - [anon_sym_BSLASHglsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6317), - [anon_sym_BSLASHglsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6317), - [anon_sym_BSLASHglsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6317), - [anon_sym_BSLASHnewacronym] = ACTIONS(6317), - [anon_sym_BSLASHacrshort] = ACTIONS(6317), - [anon_sym_BSLASHAcrshort] = ACTIONS(6317), - [anon_sym_BSLASHACRshort] = ACTIONS(6317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6317), - [anon_sym_BSLASHacrlong] = ACTIONS(6317), - [anon_sym_BSLASHAcrlong] = ACTIONS(6317), - [anon_sym_BSLASHACRlong] = ACTIONS(6317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6317), - [anon_sym_BSLASHacrfull] = ACTIONS(6317), - [anon_sym_BSLASHAcrfull] = ACTIONS(6317), - [anon_sym_BSLASHACRfull] = ACTIONS(6317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6317), - [anon_sym_BSLASHacs] = ACTIONS(6317), - [anon_sym_BSLASHAcs] = ACTIONS(6317), - [anon_sym_BSLASHacsp] = ACTIONS(6317), - [anon_sym_BSLASHAcsp] = ACTIONS(6317), - [anon_sym_BSLASHacl] = ACTIONS(6317), - [anon_sym_BSLASHAcl] = ACTIONS(6317), - [anon_sym_BSLASHaclp] = ACTIONS(6317), - [anon_sym_BSLASHAclp] = ACTIONS(6317), - [anon_sym_BSLASHacf] = ACTIONS(6317), - [anon_sym_BSLASHAcf] = ACTIONS(6317), - [anon_sym_BSLASHacfp] = ACTIONS(6317), - [anon_sym_BSLASHAcfp] = ACTIONS(6317), - [anon_sym_BSLASHac] = ACTIONS(6317), - [anon_sym_BSLASHAc] = ACTIONS(6317), - [anon_sym_BSLASHacp] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6317), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6317), - [anon_sym_BSLASHcolor] = ACTIONS(6317), - [anon_sym_BSLASHcolorbox] = ACTIONS(6317), - [anon_sym_BSLASHtextcolor] = ACTIONS(6317), - [anon_sym_BSLASHpagecolor] = ACTIONS(6317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6317), - [anon_sym_BSLASHtext] = ACTIONS(6317), - [anon_sym_BSLASHintertext] = ACTIONS(6317), - [anon_sym_shortintertext] = ACTIONS(6317), - }, - [1250] = { - [sym_command_name] = ACTIONS(6313), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6313), - [anon_sym_LBRACK] = ACTIONS(6315), - [anon_sym_RBRACK] = ACTIONS(6315), - [anon_sym_COMMA] = ACTIONS(6315), - [anon_sym_EQ] = ACTIONS(6315), - [anon_sym_LPAREN] = ACTIONS(6315), - [anon_sym_RPAREN] = ACTIONS(6315), - [anon_sym_BSLASHpart] = ACTIONS(6313), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddpart] = ACTIONS(6313), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6315), - [anon_sym_BSLASHchapter] = ACTIONS(6313), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddchap] = ACTIONS(6313), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsection] = ACTIONS(6313), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHaddsec] = ACTIONS(6313), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubsection] = ACTIONS(6313), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6313), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6315), - [anon_sym_BSLASHparagraph] = ACTIONS(6313), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6315), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6313), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6315), - [anon_sym_BSLASHitem] = ACTIONS(6313), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6315), - [anon_sym_LBRACE] = ACTIONS(6315), - [sym_word] = ACTIONS(6313), - [sym_placeholder] = ACTIONS(6315), - [anon_sym_PLUS] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6315), - [anon_sym_SLASH] = ACTIONS(6315), - [anon_sym_LT] = ACTIONS(6313), - [anon_sym_GT] = ACTIONS(6313), - [anon_sym_BANG] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(6313), - [anon_sym_COLON] = ACTIONS(6313), - [anon_sym_SQUOTE] = ACTIONS(6313), - [anon_sym__] = ACTIONS(6315), - [anon_sym_CARET] = ACTIONS(6315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6315), - [anon_sym_DOLLAR] = ACTIONS(6313), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6315), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6315), - [anon_sym_BSLASHbegin] = ACTIONS(6313), - [anon_sym_BSLASHtitle] = ACTIONS(6313), - [anon_sym_BSLASHauthor] = ACTIONS(6313), - [anon_sym_BSLASHusepackage] = ACTIONS(6313), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6313), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6313), - [anon_sym_BSLASHinclude] = ACTIONS(6313), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6313), - [anon_sym_BSLASHinput] = ACTIONS(6313), - [anon_sym_BSLASHsubfile] = ACTIONS(6313), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6313), - [anon_sym_BSLASHbibliography] = ACTIONS(6313), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6313), - [anon_sym_BSLASHincludesvg] = ACTIONS(6313), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6313), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6313), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6313), - [anon_sym_BSLASHimport] = ACTIONS(6313), - [anon_sym_BSLASHsubimport] = ACTIONS(6313), - [anon_sym_BSLASHinputfrom] = ACTIONS(6313), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6313), - [anon_sym_BSLASHincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHcaption] = ACTIONS(6313), - [anon_sym_BSLASHcite] = ACTIONS(6313), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCite] = ACTIONS(6313), - [anon_sym_BSLASHnocite] = ACTIONS(6313), - [anon_sym_BSLASHcitet] = ACTIONS(6313), - [anon_sym_BSLASHcitep] = ACTIONS(6313), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteauthor] = ACTIONS(6313), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6313), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitetitle] = ACTIONS(6313), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteyear] = ACTIONS(6313), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitedate] = ACTIONS(6313), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteurl] = ACTIONS(6313), - [anon_sym_BSLASHfullcite] = ACTIONS(6313), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6313), - [anon_sym_BSLASHcitealt] = ACTIONS(6313), - [anon_sym_BSLASHcitealp] = ACTIONS(6313), - [anon_sym_BSLASHcitetext] = ACTIONS(6313), - [anon_sym_BSLASHparencite] = ACTIONS(6313), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHParencite] = ACTIONS(6313), - [anon_sym_BSLASHfootcite] = ACTIONS(6313), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6313), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6313), - [anon_sym_BSLASHtextcite] = ACTIONS(6313), - [anon_sym_BSLASHTextcite] = ACTIONS(6313), - [anon_sym_BSLASHsmartcite] = ACTIONS(6313), - [anon_sym_BSLASHSmartcite] = ACTIONS(6313), - [anon_sym_BSLASHsupercite] = ACTIONS(6313), - [anon_sym_BSLASHautocite] = ACTIONS(6313), - [anon_sym_BSLASHAutocite] = ACTIONS(6313), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHvolcite] = ACTIONS(6313), - [anon_sym_BSLASHVolcite] = ACTIONS(6313), - [anon_sym_BSLASHpvolcite] = ACTIONS(6313), - [anon_sym_BSLASHPvolcite] = ACTIONS(6313), - [anon_sym_BSLASHfvolcite] = ACTIONS(6313), - [anon_sym_BSLASHftvolcite] = ACTIONS(6313), - [anon_sym_BSLASHsvolcite] = ACTIONS(6313), - [anon_sym_BSLASHSvolcite] = ACTIONS(6313), - [anon_sym_BSLASHtvolcite] = ACTIONS(6313), - [anon_sym_BSLASHTvolcite] = ACTIONS(6313), - [anon_sym_BSLASHavolcite] = ACTIONS(6313), - [anon_sym_BSLASHAvolcite] = ACTIONS(6313), - [anon_sym_BSLASHnotecite] = ACTIONS(6313), - [anon_sym_BSLASHNotecite] = ACTIONS(6313), - [anon_sym_BSLASHpnotecite] = ACTIONS(6313), - [anon_sym_BSLASHPnotecite] = ACTIONS(6313), - [anon_sym_BSLASHfnotecite] = ACTIONS(6313), - [anon_sym_BSLASHlabel] = ACTIONS(6313), - [anon_sym_BSLASHref] = ACTIONS(6313), - [anon_sym_BSLASHeqref] = ACTIONS(6313), - [anon_sym_BSLASHvref] = ACTIONS(6313), - [anon_sym_BSLASHVref] = ACTIONS(6313), - [anon_sym_BSLASHautoref] = ACTIONS(6313), - [anon_sym_BSLASHpageref] = ACTIONS(6313), - [anon_sym_BSLASHcref] = ACTIONS(6313), - [anon_sym_BSLASHCref] = ACTIONS(6313), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnameCref] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHlabelcref] = ACTIONS(6313), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCrefrange] = ACTIONS(6313), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnewlabel] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6313), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6313), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6315), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHdef] = ACTIONS(6313), - [anon_sym_BSLASHlet] = ACTIONS(6313), - [anon_sym_BSLASHleft] = ACTIONS(6313), - [anon_sym_BSLASHbig] = ACTIONS(6313), - [anon_sym_BSLASHBig] = ACTIONS(6313), - [anon_sym_BSLASHbigg] = ACTIONS(6313), - [anon_sym_BSLASHBigg] = ACTIONS(6313), - [anon_sym_BSLASHbigl] = ACTIONS(6313), - [anon_sym_BSLASHBigl] = ACTIONS(6313), - [anon_sym_BSLASHbiggl] = ACTIONS(6313), - [anon_sym_BSLASHBiggl] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6313), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6313), - [anon_sym_BSLASHgls] = ACTIONS(6313), - [anon_sym_BSLASHGls] = ACTIONS(6313), - [anon_sym_BSLASHGLS] = ACTIONS(6313), - [anon_sym_BSLASHglspl] = ACTIONS(6313), - [anon_sym_BSLASHGlspl] = ACTIONS(6313), - [anon_sym_BSLASHGLSpl] = ACTIONS(6313), - [anon_sym_BSLASHglsdisp] = ACTIONS(6313), - [anon_sym_BSLASHglslink] = ACTIONS(6313), - [anon_sym_BSLASHglstext] = ACTIONS(6313), - [anon_sym_BSLASHGlstext] = ACTIONS(6313), - [anon_sym_BSLASHGLStext] = ACTIONS(6313), - [anon_sym_BSLASHglsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6313), - [anon_sym_BSLASHglsplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSplural] = ACTIONS(6313), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHglsname] = ACTIONS(6313), - [anon_sym_BSLASHGlsname] = ACTIONS(6313), - [anon_sym_BSLASHGLSname] = ACTIONS(6313), - [anon_sym_BSLASHglssymbol] = ACTIONS(6313), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6313), - [anon_sym_BSLASHglsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6313), - [anon_sym_BSLASHglsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6313), - [anon_sym_BSLASHglsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6313), - [anon_sym_BSLASHglsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6313), - [anon_sym_BSLASHglsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6313), - [anon_sym_BSLASHnewacronym] = ACTIONS(6313), - [anon_sym_BSLASHacrshort] = ACTIONS(6313), - [anon_sym_BSLASHAcrshort] = ACTIONS(6313), - [anon_sym_BSLASHACRshort] = ACTIONS(6313), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6313), - [anon_sym_BSLASHacrlong] = ACTIONS(6313), - [anon_sym_BSLASHAcrlong] = ACTIONS(6313), - [anon_sym_BSLASHACRlong] = ACTIONS(6313), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6313), - [anon_sym_BSLASHacrfull] = ACTIONS(6313), - [anon_sym_BSLASHAcrfull] = ACTIONS(6313), - [anon_sym_BSLASHACRfull] = ACTIONS(6313), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6313), - [anon_sym_BSLASHacs] = ACTIONS(6313), - [anon_sym_BSLASHAcs] = ACTIONS(6313), - [anon_sym_BSLASHacsp] = ACTIONS(6313), - [anon_sym_BSLASHAcsp] = ACTIONS(6313), - [anon_sym_BSLASHacl] = ACTIONS(6313), - [anon_sym_BSLASHAcl] = ACTIONS(6313), - [anon_sym_BSLASHaclp] = ACTIONS(6313), - [anon_sym_BSLASHAclp] = ACTIONS(6313), - [anon_sym_BSLASHacf] = ACTIONS(6313), - [anon_sym_BSLASHAcf] = ACTIONS(6313), - [anon_sym_BSLASHacfp] = ACTIONS(6313), - [anon_sym_BSLASHAcfp] = ACTIONS(6313), - [anon_sym_BSLASHac] = ACTIONS(6313), - [anon_sym_BSLASHAc] = ACTIONS(6313), - [anon_sym_BSLASHacp] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6313), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6313), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6313), - [anon_sym_BSLASHcolor] = ACTIONS(6313), - [anon_sym_BSLASHcolorbox] = ACTIONS(6313), - [anon_sym_BSLASHtextcolor] = ACTIONS(6313), - [anon_sym_BSLASHpagecolor] = ACTIONS(6313), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6313), - [anon_sym_BSLASHtext] = ACTIONS(6313), - [anon_sym_BSLASHintertext] = ACTIONS(6313), - [anon_sym_shortintertext] = ACTIONS(6313), - }, - [1251] = { - [sym_command_name] = ACTIONS(6309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6309), - [anon_sym_LBRACK] = ACTIONS(6311), - [anon_sym_RBRACK] = ACTIONS(6311), - [anon_sym_COMMA] = ACTIONS(6311), - [anon_sym_EQ] = ACTIONS(6311), - [anon_sym_LPAREN] = ACTIONS(6311), - [anon_sym_RPAREN] = ACTIONS(6311), - [anon_sym_BSLASHpart] = ACTIONS(6309), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddpart] = ACTIONS(6309), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6311), - [anon_sym_BSLASHchapter] = ACTIONS(6309), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddchap] = ACTIONS(6309), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsection] = ACTIONS(6309), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHaddsec] = ACTIONS(6309), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubsection] = ACTIONS(6309), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6309), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6311), - [anon_sym_BSLASHparagraph] = ACTIONS(6309), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6311), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6309), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6311), - [anon_sym_BSLASHitem] = ACTIONS(6309), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(6311), - [sym_word] = ACTIONS(6309), - [sym_placeholder] = ACTIONS(6311), - [anon_sym_PLUS] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [anon_sym_STAR] = ACTIONS(6311), - [anon_sym_SLASH] = ACTIONS(6311), - [anon_sym_LT] = ACTIONS(6309), - [anon_sym_GT] = ACTIONS(6309), - [anon_sym_BANG] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(6309), - [anon_sym_COLON] = ACTIONS(6309), - [anon_sym_SQUOTE] = ACTIONS(6309), - [anon_sym__] = ACTIONS(6311), - [anon_sym_CARET] = ACTIONS(6311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6311), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6311), - [anon_sym_DOLLAR] = ACTIONS(6309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6311), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6311), - [anon_sym_BSLASHbegin] = ACTIONS(6309), - [anon_sym_BSLASHtitle] = ACTIONS(6309), - [anon_sym_BSLASHauthor] = ACTIONS(6309), - [anon_sym_BSLASHusepackage] = ACTIONS(6309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6309), - [anon_sym_BSLASHinclude] = ACTIONS(6309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6309), - [anon_sym_BSLASHinput] = ACTIONS(6309), - [anon_sym_BSLASHsubfile] = ACTIONS(6309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6309), - [anon_sym_BSLASHbibliography] = ACTIONS(6309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6309), - [anon_sym_BSLASHincludesvg] = ACTIONS(6309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6309), - [anon_sym_BSLASHimport] = ACTIONS(6309), - [anon_sym_BSLASHsubimport] = ACTIONS(6309), - [anon_sym_BSLASHinputfrom] = ACTIONS(6309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6309), - [anon_sym_BSLASHincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHcaption] = ACTIONS(6309), - [anon_sym_BSLASHcite] = ACTIONS(6309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCite] = ACTIONS(6309), - [anon_sym_BSLASHnocite] = ACTIONS(6309), - [anon_sym_BSLASHcitet] = ACTIONS(6309), - [anon_sym_BSLASHcitep] = ACTIONS(6309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteauthor] = ACTIONS(6309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitetitle] = ACTIONS(6309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteyear] = ACTIONS(6309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitedate] = ACTIONS(6309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteurl] = ACTIONS(6309), - [anon_sym_BSLASHfullcite] = ACTIONS(6309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6309), - [anon_sym_BSLASHcitealt] = ACTIONS(6309), - [anon_sym_BSLASHcitealp] = ACTIONS(6309), - [anon_sym_BSLASHcitetext] = ACTIONS(6309), - [anon_sym_BSLASHparencite] = ACTIONS(6309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHParencite] = ACTIONS(6309), - [anon_sym_BSLASHfootcite] = ACTIONS(6309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6309), - [anon_sym_BSLASHtextcite] = ACTIONS(6309), - [anon_sym_BSLASHTextcite] = ACTIONS(6309), - [anon_sym_BSLASHsmartcite] = ACTIONS(6309), - [anon_sym_BSLASHSmartcite] = ACTIONS(6309), - [anon_sym_BSLASHsupercite] = ACTIONS(6309), - [anon_sym_BSLASHautocite] = ACTIONS(6309), - [anon_sym_BSLASHAutocite] = ACTIONS(6309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHvolcite] = ACTIONS(6309), - [anon_sym_BSLASHVolcite] = ACTIONS(6309), - [anon_sym_BSLASHpvolcite] = ACTIONS(6309), - [anon_sym_BSLASHPvolcite] = ACTIONS(6309), - [anon_sym_BSLASHfvolcite] = ACTIONS(6309), - [anon_sym_BSLASHftvolcite] = ACTIONS(6309), - [anon_sym_BSLASHsvolcite] = ACTIONS(6309), - [anon_sym_BSLASHSvolcite] = ACTIONS(6309), - [anon_sym_BSLASHtvolcite] = ACTIONS(6309), - [anon_sym_BSLASHTvolcite] = ACTIONS(6309), - [anon_sym_BSLASHavolcite] = ACTIONS(6309), - [anon_sym_BSLASHAvolcite] = ACTIONS(6309), - [anon_sym_BSLASHnotecite] = ACTIONS(6309), - [anon_sym_BSLASHNotecite] = ACTIONS(6309), - [anon_sym_BSLASHpnotecite] = ACTIONS(6309), - [anon_sym_BSLASHPnotecite] = ACTIONS(6309), - [anon_sym_BSLASHfnotecite] = ACTIONS(6309), - [anon_sym_BSLASHlabel] = ACTIONS(6309), - [anon_sym_BSLASHref] = ACTIONS(6309), - [anon_sym_BSLASHeqref] = ACTIONS(6309), - [anon_sym_BSLASHvref] = ACTIONS(6309), - [anon_sym_BSLASHVref] = ACTIONS(6309), - [anon_sym_BSLASHautoref] = ACTIONS(6309), - [anon_sym_BSLASHpageref] = ACTIONS(6309), - [anon_sym_BSLASHcref] = ACTIONS(6309), - [anon_sym_BSLASHCref] = ACTIONS(6309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnameCref] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHlabelcref] = ACTIONS(6309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCrefrange] = ACTIONS(6309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnewlabel] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6311), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHdef] = ACTIONS(6309), - [anon_sym_BSLASHlet] = ACTIONS(6309), - [anon_sym_BSLASHleft] = ACTIONS(6309), - [anon_sym_BSLASHbig] = ACTIONS(6309), - [anon_sym_BSLASHBig] = ACTIONS(6309), - [anon_sym_BSLASHbigg] = ACTIONS(6309), - [anon_sym_BSLASHBigg] = ACTIONS(6309), - [anon_sym_BSLASHbigl] = ACTIONS(6309), - [anon_sym_BSLASHBigl] = ACTIONS(6309), - [anon_sym_BSLASHbiggl] = ACTIONS(6309), - [anon_sym_BSLASHBiggl] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6309), - [anon_sym_BSLASHgls] = ACTIONS(6309), - [anon_sym_BSLASHGls] = ACTIONS(6309), - [anon_sym_BSLASHGLS] = ACTIONS(6309), - [anon_sym_BSLASHglspl] = ACTIONS(6309), - [anon_sym_BSLASHGlspl] = ACTIONS(6309), - [anon_sym_BSLASHGLSpl] = ACTIONS(6309), - [anon_sym_BSLASHglsdisp] = ACTIONS(6309), - [anon_sym_BSLASHglslink] = ACTIONS(6309), - [anon_sym_BSLASHglstext] = ACTIONS(6309), - [anon_sym_BSLASHGlstext] = ACTIONS(6309), - [anon_sym_BSLASHGLStext] = ACTIONS(6309), - [anon_sym_BSLASHglsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6309), - [anon_sym_BSLASHglsplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSplural] = ACTIONS(6309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHglsname] = ACTIONS(6309), - [anon_sym_BSLASHGlsname] = ACTIONS(6309), - [anon_sym_BSLASHGLSname] = ACTIONS(6309), - [anon_sym_BSLASHglssymbol] = ACTIONS(6309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6309), - [anon_sym_BSLASHglsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6309), - [anon_sym_BSLASHglsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6309), - [anon_sym_BSLASHglsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6309), - [anon_sym_BSLASHglsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6309), - [anon_sym_BSLASHglsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6309), - [anon_sym_BSLASHnewacronym] = ACTIONS(6309), - [anon_sym_BSLASHacrshort] = ACTIONS(6309), - [anon_sym_BSLASHAcrshort] = ACTIONS(6309), - [anon_sym_BSLASHACRshort] = ACTIONS(6309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6309), - [anon_sym_BSLASHacrlong] = ACTIONS(6309), - [anon_sym_BSLASHAcrlong] = ACTIONS(6309), - [anon_sym_BSLASHACRlong] = ACTIONS(6309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6309), - [anon_sym_BSLASHacrfull] = ACTIONS(6309), - [anon_sym_BSLASHAcrfull] = ACTIONS(6309), - [anon_sym_BSLASHACRfull] = ACTIONS(6309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6309), - [anon_sym_BSLASHacs] = ACTIONS(6309), - [anon_sym_BSLASHAcs] = ACTIONS(6309), - [anon_sym_BSLASHacsp] = ACTIONS(6309), - [anon_sym_BSLASHAcsp] = ACTIONS(6309), - [anon_sym_BSLASHacl] = ACTIONS(6309), - [anon_sym_BSLASHAcl] = ACTIONS(6309), - [anon_sym_BSLASHaclp] = ACTIONS(6309), - [anon_sym_BSLASHAclp] = ACTIONS(6309), - [anon_sym_BSLASHacf] = ACTIONS(6309), - [anon_sym_BSLASHAcf] = ACTIONS(6309), - [anon_sym_BSLASHacfp] = ACTIONS(6309), - [anon_sym_BSLASHAcfp] = ACTIONS(6309), - [anon_sym_BSLASHac] = ACTIONS(6309), - [anon_sym_BSLASHAc] = ACTIONS(6309), - [anon_sym_BSLASHacp] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6309), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6309), - [anon_sym_BSLASHcolor] = ACTIONS(6309), - [anon_sym_BSLASHcolorbox] = ACTIONS(6309), - [anon_sym_BSLASHtextcolor] = ACTIONS(6309), - [anon_sym_BSLASHpagecolor] = ACTIONS(6309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6309), - [anon_sym_BSLASHtext] = ACTIONS(6309), - [anon_sym_BSLASHintertext] = ACTIONS(6309), - [anon_sym_shortintertext] = ACTIONS(6309), - }, - [1252] = { - [sym_command_name] = ACTIONS(6305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6305), - [anon_sym_LBRACK] = ACTIONS(6307), - [anon_sym_RBRACK] = ACTIONS(6307), - [anon_sym_COMMA] = ACTIONS(6307), - [anon_sym_EQ] = ACTIONS(6307), - [anon_sym_LPAREN] = ACTIONS(6307), - [anon_sym_RPAREN] = ACTIONS(6307), - [anon_sym_BSLASHpart] = ACTIONS(6305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddpart] = ACTIONS(6305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6307), - [anon_sym_BSLASHchapter] = ACTIONS(6305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddchap] = ACTIONS(6305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsection] = ACTIONS(6305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHaddsec] = ACTIONS(6305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubsection] = ACTIONS(6305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6307), - [anon_sym_BSLASHparagraph] = ACTIONS(6305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6307), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6307), - [anon_sym_BSLASHitem] = ACTIONS(6305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6307), - [anon_sym_LBRACE] = ACTIONS(6307), - [sym_word] = ACTIONS(6305), - [sym_placeholder] = ACTIONS(6307), - [anon_sym_PLUS] = ACTIONS(6307), - [anon_sym_DASH] = ACTIONS(6307), - [anon_sym_STAR] = ACTIONS(6307), - [anon_sym_SLASH] = ACTIONS(6307), - [anon_sym_LT] = ACTIONS(6305), - [anon_sym_GT] = ACTIONS(6305), - [anon_sym_BANG] = ACTIONS(6305), - [anon_sym_PIPE] = ACTIONS(6305), - [anon_sym_COLON] = ACTIONS(6305), - [anon_sym_SQUOTE] = ACTIONS(6305), - [anon_sym__] = ACTIONS(6307), - [anon_sym_CARET] = ACTIONS(6307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6307), - [anon_sym_DOLLAR] = ACTIONS(6305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6307), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6307), - [anon_sym_BSLASHbegin] = ACTIONS(6305), - [anon_sym_BSLASHtitle] = ACTIONS(6305), - [anon_sym_BSLASHauthor] = ACTIONS(6305), - [anon_sym_BSLASHusepackage] = ACTIONS(6305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6305), - [anon_sym_BSLASHinclude] = ACTIONS(6305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6305), - [anon_sym_BSLASHinput] = ACTIONS(6305), - [anon_sym_BSLASHsubfile] = ACTIONS(6305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6305), - [anon_sym_BSLASHbibliography] = ACTIONS(6305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6305), - [anon_sym_BSLASHincludesvg] = ACTIONS(6305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6305), - [anon_sym_BSLASHimport] = ACTIONS(6305), - [anon_sym_BSLASHsubimport] = ACTIONS(6305), - [anon_sym_BSLASHinputfrom] = ACTIONS(6305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6305), - [anon_sym_BSLASHincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHcaption] = ACTIONS(6305), - [anon_sym_BSLASHcite] = ACTIONS(6305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCite] = ACTIONS(6305), - [anon_sym_BSLASHnocite] = ACTIONS(6305), - [anon_sym_BSLASHcitet] = ACTIONS(6305), - [anon_sym_BSLASHcitep] = ACTIONS(6305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteauthor] = ACTIONS(6305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitetitle] = ACTIONS(6305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteyear] = ACTIONS(6305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitedate] = ACTIONS(6305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteurl] = ACTIONS(6305), - [anon_sym_BSLASHfullcite] = ACTIONS(6305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6305), - [anon_sym_BSLASHcitealt] = ACTIONS(6305), - [anon_sym_BSLASHcitealp] = ACTIONS(6305), - [anon_sym_BSLASHcitetext] = ACTIONS(6305), - [anon_sym_BSLASHparencite] = ACTIONS(6305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHParencite] = ACTIONS(6305), - [anon_sym_BSLASHfootcite] = ACTIONS(6305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6305), - [anon_sym_BSLASHtextcite] = ACTIONS(6305), - [anon_sym_BSLASHTextcite] = ACTIONS(6305), - [anon_sym_BSLASHsmartcite] = ACTIONS(6305), - [anon_sym_BSLASHSmartcite] = ACTIONS(6305), - [anon_sym_BSLASHsupercite] = ACTIONS(6305), - [anon_sym_BSLASHautocite] = ACTIONS(6305), - [anon_sym_BSLASHAutocite] = ACTIONS(6305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHvolcite] = ACTIONS(6305), - [anon_sym_BSLASHVolcite] = ACTIONS(6305), - [anon_sym_BSLASHpvolcite] = ACTIONS(6305), - [anon_sym_BSLASHPvolcite] = ACTIONS(6305), - [anon_sym_BSLASHfvolcite] = ACTIONS(6305), - [anon_sym_BSLASHftvolcite] = ACTIONS(6305), - [anon_sym_BSLASHsvolcite] = ACTIONS(6305), - [anon_sym_BSLASHSvolcite] = ACTIONS(6305), - [anon_sym_BSLASHtvolcite] = ACTIONS(6305), - [anon_sym_BSLASHTvolcite] = ACTIONS(6305), - [anon_sym_BSLASHavolcite] = ACTIONS(6305), - [anon_sym_BSLASHAvolcite] = ACTIONS(6305), - [anon_sym_BSLASHnotecite] = ACTIONS(6305), - [anon_sym_BSLASHNotecite] = ACTIONS(6305), - [anon_sym_BSLASHpnotecite] = ACTIONS(6305), - [anon_sym_BSLASHPnotecite] = ACTIONS(6305), - [anon_sym_BSLASHfnotecite] = ACTIONS(6305), - [anon_sym_BSLASHlabel] = ACTIONS(6305), - [anon_sym_BSLASHref] = ACTIONS(6305), - [anon_sym_BSLASHeqref] = ACTIONS(6305), - [anon_sym_BSLASHvref] = ACTIONS(6305), - [anon_sym_BSLASHVref] = ACTIONS(6305), - [anon_sym_BSLASHautoref] = ACTIONS(6305), - [anon_sym_BSLASHpageref] = ACTIONS(6305), - [anon_sym_BSLASHcref] = ACTIONS(6305), - [anon_sym_BSLASHCref] = ACTIONS(6305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnameCref] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHlabelcref] = ACTIONS(6305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCrefrange] = ACTIONS(6305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnewlabel] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6307), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHdef] = ACTIONS(6305), - [anon_sym_BSLASHlet] = ACTIONS(6305), - [anon_sym_BSLASHleft] = ACTIONS(6305), - [anon_sym_BSLASHbig] = ACTIONS(6305), - [anon_sym_BSLASHBig] = ACTIONS(6305), - [anon_sym_BSLASHbigg] = ACTIONS(6305), - [anon_sym_BSLASHBigg] = ACTIONS(6305), - [anon_sym_BSLASHbigl] = ACTIONS(6305), - [anon_sym_BSLASHBigl] = ACTIONS(6305), - [anon_sym_BSLASHbiggl] = ACTIONS(6305), - [anon_sym_BSLASHBiggl] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6305), - [anon_sym_BSLASHgls] = ACTIONS(6305), - [anon_sym_BSLASHGls] = ACTIONS(6305), - [anon_sym_BSLASHGLS] = ACTIONS(6305), - [anon_sym_BSLASHglspl] = ACTIONS(6305), - [anon_sym_BSLASHGlspl] = ACTIONS(6305), - [anon_sym_BSLASHGLSpl] = ACTIONS(6305), - [anon_sym_BSLASHglsdisp] = ACTIONS(6305), - [anon_sym_BSLASHglslink] = ACTIONS(6305), - [anon_sym_BSLASHglstext] = ACTIONS(6305), - [anon_sym_BSLASHGlstext] = ACTIONS(6305), - [anon_sym_BSLASHGLStext] = ACTIONS(6305), - [anon_sym_BSLASHglsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6305), - [anon_sym_BSLASHglsplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSplural] = ACTIONS(6305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHglsname] = ACTIONS(6305), - [anon_sym_BSLASHGlsname] = ACTIONS(6305), - [anon_sym_BSLASHGLSname] = ACTIONS(6305), - [anon_sym_BSLASHglssymbol] = ACTIONS(6305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6305), - [anon_sym_BSLASHglsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6305), - [anon_sym_BSLASHglsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6305), - [anon_sym_BSLASHglsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6305), - [anon_sym_BSLASHglsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6305), - [anon_sym_BSLASHglsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6305), - [anon_sym_BSLASHnewacronym] = ACTIONS(6305), - [anon_sym_BSLASHacrshort] = ACTIONS(6305), - [anon_sym_BSLASHAcrshort] = ACTIONS(6305), - [anon_sym_BSLASHACRshort] = ACTIONS(6305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6305), - [anon_sym_BSLASHacrlong] = ACTIONS(6305), - [anon_sym_BSLASHAcrlong] = ACTIONS(6305), - [anon_sym_BSLASHACRlong] = ACTIONS(6305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6305), - [anon_sym_BSLASHacrfull] = ACTIONS(6305), - [anon_sym_BSLASHAcrfull] = ACTIONS(6305), - [anon_sym_BSLASHACRfull] = ACTIONS(6305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6305), - [anon_sym_BSLASHacs] = ACTIONS(6305), - [anon_sym_BSLASHAcs] = ACTIONS(6305), - [anon_sym_BSLASHacsp] = ACTIONS(6305), - [anon_sym_BSLASHAcsp] = ACTIONS(6305), - [anon_sym_BSLASHacl] = ACTIONS(6305), - [anon_sym_BSLASHAcl] = ACTIONS(6305), - [anon_sym_BSLASHaclp] = ACTIONS(6305), - [anon_sym_BSLASHAclp] = ACTIONS(6305), - [anon_sym_BSLASHacf] = ACTIONS(6305), - [anon_sym_BSLASHAcf] = ACTIONS(6305), - [anon_sym_BSLASHacfp] = ACTIONS(6305), - [anon_sym_BSLASHAcfp] = ACTIONS(6305), - [anon_sym_BSLASHac] = ACTIONS(6305), - [anon_sym_BSLASHAc] = ACTIONS(6305), - [anon_sym_BSLASHacp] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6305), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6305), - [anon_sym_BSLASHcolor] = ACTIONS(6305), - [anon_sym_BSLASHcolorbox] = ACTIONS(6305), - [anon_sym_BSLASHtextcolor] = ACTIONS(6305), - [anon_sym_BSLASHpagecolor] = ACTIONS(6305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6305), - [anon_sym_BSLASHtext] = ACTIONS(6305), - [anon_sym_BSLASHintertext] = ACTIONS(6305), - [anon_sym_shortintertext] = ACTIONS(6305), - }, - [1253] = { - [sym_command_name] = ACTIONS(6469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6471), - [anon_sym_RBRACK] = ACTIONS(6471), - [anon_sym_COMMA] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(6471), - [anon_sym_LPAREN] = ACTIONS(6471), - [anon_sym_RPAREN] = ACTIONS(6471), - [anon_sym_BSLASHpart] = ACTIONS(6469), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddpart] = ACTIONS(6469), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6471), - [anon_sym_BSLASHchapter] = ACTIONS(6469), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddchap] = ACTIONS(6469), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsection] = ACTIONS(6469), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHaddsec] = ACTIONS(6469), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubsection] = ACTIONS(6469), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6469), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6471), - [anon_sym_BSLASHparagraph] = ACTIONS(6469), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6471), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6469), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6471), - [anon_sym_BSLASHitem] = ACTIONS(6469), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6471), - [sym_word] = ACTIONS(6469), - [sym_placeholder] = ACTIONS(6471), - [anon_sym_PLUS] = ACTIONS(6471), - [anon_sym_DASH] = ACTIONS(6471), - [anon_sym_STAR] = ACTIONS(6471), - [anon_sym_SLASH] = ACTIONS(6471), - [anon_sym_LT] = ACTIONS(6469), - [anon_sym_GT] = ACTIONS(6469), - [anon_sym_BANG] = ACTIONS(6469), - [anon_sym_PIPE] = ACTIONS(6469), - [anon_sym_COLON] = ACTIONS(6469), - [anon_sym_SQUOTE] = ACTIONS(6469), - [anon_sym__] = ACTIONS(6471), - [anon_sym_CARET] = ACTIONS(6471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6471), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6471), - [anon_sym_DOLLAR] = ACTIONS(6469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6471), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6471), - [anon_sym_BSLASHbegin] = ACTIONS(6469), - [anon_sym_BSLASHtitle] = ACTIONS(6469), - [anon_sym_BSLASHauthor] = ACTIONS(6469), - [anon_sym_BSLASHusepackage] = ACTIONS(6469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6469), - [anon_sym_BSLASHinclude] = ACTIONS(6469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6469), - [anon_sym_BSLASHinput] = ACTIONS(6469), - [anon_sym_BSLASHsubfile] = ACTIONS(6469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6469), - [anon_sym_BSLASHbibliography] = ACTIONS(6469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6469), - [anon_sym_BSLASHincludesvg] = ACTIONS(6469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6469), - [anon_sym_BSLASHimport] = ACTIONS(6469), - [anon_sym_BSLASHsubimport] = ACTIONS(6469), - [anon_sym_BSLASHinputfrom] = ACTIONS(6469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6469), - [anon_sym_BSLASHincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHcaption] = ACTIONS(6469), - [anon_sym_BSLASHcite] = ACTIONS(6469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCite] = ACTIONS(6469), - [anon_sym_BSLASHnocite] = ACTIONS(6469), - [anon_sym_BSLASHcitet] = ACTIONS(6469), - [anon_sym_BSLASHcitep] = ACTIONS(6469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteauthor] = ACTIONS(6469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitetitle] = ACTIONS(6469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteyear] = ACTIONS(6469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitedate] = ACTIONS(6469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteurl] = ACTIONS(6469), - [anon_sym_BSLASHfullcite] = ACTIONS(6469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6469), - [anon_sym_BSLASHcitealt] = ACTIONS(6469), - [anon_sym_BSLASHcitealp] = ACTIONS(6469), - [anon_sym_BSLASHcitetext] = ACTIONS(6469), - [anon_sym_BSLASHparencite] = ACTIONS(6469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHParencite] = ACTIONS(6469), - [anon_sym_BSLASHfootcite] = ACTIONS(6469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6469), - [anon_sym_BSLASHtextcite] = ACTIONS(6469), - [anon_sym_BSLASHTextcite] = ACTIONS(6469), - [anon_sym_BSLASHsmartcite] = ACTIONS(6469), - [anon_sym_BSLASHSmartcite] = ACTIONS(6469), - [anon_sym_BSLASHsupercite] = ACTIONS(6469), - [anon_sym_BSLASHautocite] = ACTIONS(6469), - [anon_sym_BSLASHAutocite] = ACTIONS(6469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHvolcite] = ACTIONS(6469), - [anon_sym_BSLASHVolcite] = ACTIONS(6469), - [anon_sym_BSLASHpvolcite] = ACTIONS(6469), - [anon_sym_BSLASHPvolcite] = ACTIONS(6469), - [anon_sym_BSLASHfvolcite] = ACTIONS(6469), - [anon_sym_BSLASHftvolcite] = ACTIONS(6469), - [anon_sym_BSLASHsvolcite] = ACTIONS(6469), - [anon_sym_BSLASHSvolcite] = ACTIONS(6469), - [anon_sym_BSLASHtvolcite] = ACTIONS(6469), - [anon_sym_BSLASHTvolcite] = ACTIONS(6469), - [anon_sym_BSLASHavolcite] = ACTIONS(6469), - [anon_sym_BSLASHAvolcite] = ACTIONS(6469), - [anon_sym_BSLASHnotecite] = ACTIONS(6469), - [anon_sym_BSLASHNotecite] = ACTIONS(6469), - [anon_sym_BSLASHpnotecite] = ACTIONS(6469), - [anon_sym_BSLASHPnotecite] = ACTIONS(6469), - [anon_sym_BSLASHfnotecite] = ACTIONS(6469), - [anon_sym_BSLASHlabel] = ACTIONS(6469), - [anon_sym_BSLASHref] = ACTIONS(6469), - [anon_sym_BSLASHeqref] = ACTIONS(6469), - [anon_sym_BSLASHvref] = ACTIONS(6469), - [anon_sym_BSLASHVref] = ACTIONS(6469), - [anon_sym_BSLASHautoref] = ACTIONS(6469), - [anon_sym_BSLASHpageref] = ACTIONS(6469), - [anon_sym_BSLASHcref] = ACTIONS(6469), - [anon_sym_BSLASHCref] = ACTIONS(6469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnameCref] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHlabelcref] = ACTIONS(6469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCrefrange] = ACTIONS(6469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnewlabel] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6471), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHdef] = ACTIONS(6469), - [anon_sym_BSLASHlet] = ACTIONS(6469), - [anon_sym_BSLASHleft] = ACTIONS(6469), - [anon_sym_BSLASHbig] = ACTIONS(6469), - [anon_sym_BSLASHBig] = ACTIONS(6469), - [anon_sym_BSLASHbigg] = ACTIONS(6469), - [anon_sym_BSLASHBigg] = ACTIONS(6469), - [anon_sym_BSLASHbigl] = ACTIONS(6469), - [anon_sym_BSLASHBigl] = ACTIONS(6469), - [anon_sym_BSLASHbiggl] = ACTIONS(6469), - [anon_sym_BSLASHBiggl] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6469), - [anon_sym_BSLASHgls] = ACTIONS(6469), - [anon_sym_BSLASHGls] = ACTIONS(6469), - [anon_sym_BSLASHGLS] = ACTIONS(6469), - [anon_sym_BSLASHglspl] = ACTIONS(6469), - [anon_sym_BSLASHGlspl] = ACTIONS(6469), - [anon_sym_BSLASHGLSpl] = ACTIONS(6469), - [anon_sym_BSLASHglsdisp] = ACTIONS(6469), - [anon_sym_BSLASHglslink] = ACTIONS(6469), - [anon_sym_BSLASHglstext] = ACTIONS(6469), - [anon_sym_BSLASHGlstext] = ACTIONS(6469), - [anon_sym_BSLASHGLStext] = ACTIONS(6469), - [anon_sym_BSLASHglsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6469), - [anon_sym_BSLASHglsplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSplural] = ACTIONS(6469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHglsname] = ACTIONS(6469), - [anon_sym_BSLASHGlsname] = ACTIONS(6469), - [anon_sym_BSLASHGLSname] = ACTIONS(6469), - [anon_sym_BSLASHglssymbol] = ACTIONS(6469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6469), - [anon_sym_BSLASHglsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6469), - [anon_sym_BSLASHglsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6469), - [anon_sym_BSLASHglsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6469), - [anon_sym_BSLASHglsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6469), - [anon_sym_BSLASHglsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6469), - [anon_sym_BSLASHnewacronym] = ACTIONS(6469), - [anon_sym_BSLASHacrshort] = ACTIONS(6469), - [anon_sym_BSLASHAcrshort] = ACTIONS(6469), - [anon_sym_BSLASHACRshort] = ACTIONS(6469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6469), - [anon_sym_BSLASHacrlong] = ACTIONS(6469), - [anon_sym_BSLASHAcrlong] = ACTIONS(6469), - [anon_sym_BSLASHACRlong] = ACTIONS(6469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6469), - [anon_sym_BSLASHacrfull] = ACTIONS(6469), - [anon_sym_BSLASHAcrfull] = ACTIONS(6469), - [anon_sym_BSLASHACRfull] = ACTIONS(6469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6469), - [anon_sym_BSLASHacs] = ACTIONS(6469), - [anon_sym_BSLASHAcs] = ACTIONS(6469), - [anon_sym_BSLASHacsp] = ACTIONS(6469), - [anon_sym_BSLASHAcsp] = ACTIONS(6469), - [anon_sym_BSLASHacl] = ACTIONS(6469), - [anon_sym_BSLASHAcl] = ACTIONS(6469), - [anon_sym_BSLASHaclp] = ACTIONS(6469), - [anon_sym_BSLASHAclp] = ACTIONS(6469), - [anon_sym_BSLASHacf] = ACTIONS(6469), - [anon_sym_BSLASHAcf] = ACTIONS(6469), - [anon_sym_BSLASHacfp] = ACTIONS(6469), - [anon_sym_BSLASHAcfp] = ACTIONS(6469), - [anon_sym_BSLASHac] = ACTIONS(6469), - [anon_sym_BSLASHAc] = ACTIONS(6469), - [anon_sym_BSLASHacp] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6469), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6469), - [anon_sym_BSLASHcolor] = ACTIONS(6469), - [anon_sym_BSLASHcolorbox] = ACTIONS(6469), - [anon_sym_BSLASHtextcolor] = ACTIONS(6469), - [anon_sym_BSLASHpagecolor] = ACTIONS(6469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6469), - [anon_sym_BSLASHtext] = ACTIONS(6469), - [anon_sym_BSLASHintertext] = ACTIONS(6469), - [anon_sym_shortintertext] = ACTIONS(6469), - }, - [1254] = { - [sym_command_name] = ACTIONS(6465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6465), - [anon_sym_LBRACK] = ACTIONS(6467), - [anon_sym_RBRACK] = ACTIONS(6467), - [anon_sym_COMMA] = ACTIONS(6467), - [anon_sym_EQ] = ACTIONS(6467), - [anon_sym_LPAREN] = ACTIONS(6467), - [anon_sym_RPAREN] = ACTIONS(6467), - [anon_sym_BSLASHpart] = ACTIONS(6465), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddpart] = ACTIONS(6465), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6467), - [anon_sym_BSLASHchapter] = ACTIONS(6465), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddchap] = ACTIONS(6465), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsection] = ACTIONS(6465), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHaddsec] = ACTIONS(6465), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubsection] = ACTIONS(6465), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6465), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6467), - [anon_sym_BSLASHparagraph] = ACTIONS(6465), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6467), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6465), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6467), - [anon_sym_BSLASHitem] = ACTIONS(6465), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6467), - [anon_sym_LBRACE] = ACTIONS(6467), - [sym_word] = ACTIONS(6465), - [sym_placeholder] = ACTIONS(6467), - [anon_sym_PLUS] = ACTIONS(6467), - [anon_sym_DASH] = ACTIONS(6467), - [anon_sym_STAR] = ACTIONS(6467), - [anon_sym_SLASH] = ACTIONS(6467), - [anon_sym_LT] = ACTIONS(6465), - [anon_sym_GT] = ACTIONS(6465), - [anon_sym_BANG] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6465), - [anon_sym_COLON] = ACTIONS(6465), - [anon_sym_SQUOTE] = ACTIONS(6465), - [anon_sym__] = ACTIONS(6467), - [anon_sym_CARET] = ACTIONS(6467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6467), - [anon_sym_DOLLAR] = ACTIONS(6465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6467), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6467), - [anon_sym_BSLASHbegin] = ACTIONS(6465), - [anon_sym_BSLASHtitle] = ACTIONS(6465), - [anon_sym_BSLASHauthor] = ACTIONS(6465), - [anon_sym_BSLASHusepackage] = ACTIONS(6465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6465), - [anon_sym_BSLASHinclude] = ACTIONS(6465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6465), - [anon_sym_BSLASHinput] = ACTIONS(6465), - [anon_sym_BSLASHsubfile] = ACTIONS(6465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6465), - [anon_sym_BSLASHbibliography] = ACTIONS(6465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6465), - [anon_sym_BSLASHincludesvg] = ACTIONS(6465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6465), - [anon_sym_BSLASHimport] = ACTIONS(6465), - [anon_sym_BSLASHsubimport] = ACTIONS(6465), - [anon_sym_BSLASHinputfrom] = ACTIONS(6465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6465), - [anon_sym_BSLASHincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHcaption] = ACTIONS(6465), - [anon_sym_BSLASHcite] = ACTIONS(6465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCite] = ACTIONS(6465), - [anon_sym_BSLASHnocite] = ACTIONS(6465), - [anon_sym_BSLASHcitet] = ACTIONS(6465), - [anon_sym_BSLASHcitep] = ACTIONS(6465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteauthor] = ACTIONS(6465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitetitle] = ACTIONS(6465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteyear] = ACTIONS(6465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitedate] = ACTIONS(6465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteurl] = ACTIONS(6465), - [anon_sym_BSLASHfullcite] = ACTIONS(6465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6465), - [anon_sym_BSLASHcitealt] = ACTIONS(6465), - [anon_sym_BSLASHcitealp] = ACTIONS(6465), - [anon_sym_BSLASHcitetext] = ACTIONS(6465), - [anon_sym_BSLASHparencite] = ACTIONS(6465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHParencite] = ACTIONS(6465), - [anon_sym_BSLASHfootcite] = ACTIONS(6465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6465), - [anon_sym_BSLASHtextcite] = ACTIONS(6465), - [anon_sym_BSLASHTextcite] = ACTIONS(6465), - [anon_sym_BSLASHsmartcite] = ACTIONS(6465), - [anon_sym_BSLASHSmartcite] = ACTIONS(6465), - [anon_sym_BSLASHsupercite] = ACTIONS(6465), - [anon_sym_BSLASHautocite] = ACTIONS(6465), - [anon_sym_BSLASHAutocite] = ACTIONS(6465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHvolcite] = ACTIONS(6465), - [anon_sym_BSLASHVolcite] = ACTIONS(6465), - [anon_sym_BSLASHpvolcite] = ACTIONS(6465), - [anon_sym_BSLASHPvolcite] = ACTIONS(6465), - [anon_sym_BSLASHfvolcite] = ACTIONS(6465), - [anon_sym_BSLASHftvolcite] = ACTIONS(6465), - [anon_sym_BSLASHsvolcite] = ACTIONS(6465), - [anon_sym_BSLASHSvolcite] = ACTIONS(6465), - [anon_sym_BSLASHtvolcite] = ACTIONS(6465), - [anon_sym_BSLASHTvolcite] = ACTIONS(6465), - [anon_sym_BSLASHavolcite] = ACTIONS(6465), - [anon_sym_BSLASHAvolcite] = ACTIONS(6465), - [anon_sym_BSLASHnotecite] = ACTIONS(6465), - [anon_sym_BSLASHNotecite] = ACTIONS(6465), - [anon_sym_BSLASHpnotecite] = ACTIONS(6465), - [anon_sym_BSLASHPnotecite] = ACTIONS(6465), - [anon_sym_BSLASHfnotecite] = ACTIONS(6465), - [anon_sym_BSLASHlabel] = ACTIONS(6465), - [anon_sym_BSLASHref] = ACTIONS(6465), - [anon_sym_BSLASHeqref] = ACTIONS(6465), - [anon_sym_BSLASHvref] = ACTIONS(6465), - [anon_sym_BSLASHVref] = ACTIONS(6465), - [anon_sym_BSLASHautoref] = ACTIONS(6465), - [anon_sym_BSLASHpageref] = ACTIONS(6465), - [anon_sym_BSLASHcref] = ACTIONS(6465), - [anon_sym_BSLASHCref] = ACTIONS(6465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnameCref] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHlabelcref] = ACTIONS(6465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCrefrange] = ACTIONS(6465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnewlabel] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6467), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHdef] = ACTIONS(6465), - [anon_sym_BSLASHlet] = ACTIONS(6465), - [anon_sym_BSLASHleft] = ACTIONS(6465), - [anon_sym_BSLASHbig] = ACTIONS(6465), - [anon_sym_BSLASHBig] = ACTIONS(6465), - [anon_sym_BSLASHbigg] = ACTIONS(6465), - [anon_sym_BSLASHBigg] = ACTIONS(6465), - [anon_sym_BSLASHbigl] = ACTIONS(6465), - [anon_sym_BSLASHBigl] = ACTIONS(6465), - [anon_sym_BSLASHbiggl] = ACTIONS(6465), - [anon_sym_BSLASHBiggl] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6465), - [anon_sym_BSLASHgls] = ACTIONS(6465), - [anon_sym_BSLASHGls] = ACTIONS(6465), - [anon_sym_BSLASHGLS] = ACTIONS(6465), - [anon_sym_BSLASHglspl] = ACTIONS(6465), - [anon_sym_BSLASHGlspl] = ACTIONS(6465), - [anon_sym_BSLASHGLSpl] = ACTIONS(6465), - [anon_sym_BSLASHglsdisp] = ACTIONS(6465), - [anon_sym_BSLASHglslink] = ACTIONS(6465), - [anon_sym_BSLASHglstext] = ACTIONS(6465), - [anon_sym_BSLASHGlstext] = ACTIONS(6465), - [anon_sym_BSLASHGLStext] = ACTIONS(6465), - [anon_sym_BSLASHglsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6465), - [anon_sym_BSLASHglsplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSplural] = ACTIONS(6465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHglsname] = ACTIONS(6465), - [anon_sym_BSLASHGlsname] = ACTIONS(6465), - [anon_sym_BSLASHGLSname] = ACTIONS(6465), - [anon_sym_BSLASHglssymbol] = ACTIONS(6465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6465), - [anon_sym_BSLASHglsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6465), - [anon_sym_BSLASHglsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6465), - [anon_sym_BSLASHglsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6465), - [anon_sym_BSLASHglsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6465), - [anon_sym_BSLASHglsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6465), - [anon_sym_BSLASHnewacronym] = ACTIONS(6465), - [anon_sym_BSLASHacrshort] = ACTIONS(6465), - [anon_sym_BSLASHAcrshort] = ACTIONS(6465), - [anon_sym_BSLASHACRshort] = ACTIONS(6465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6465), - [anon_sym_BSLASHacrlong] = ACTIONS(6465), - [anon_sym_BSLASHAcrlong] = ACTIONS(6465), - [anon_sym_BSLASHACRlong] = ACTIONS(6465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6465), - [anon_sym_BSLASHacrfull] = ACTIONS(6465), - [anon_sym_BSLASHAcrfull] = ACTIONS(6465), - [anon_sym_BSLASHACRfull] = ACTIONS(6465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6465), - [anon_sym_BSLASHacs] = ACTIONS(6465), - [anon_sym_BSLASHAcs] = ACTIONS(6465), - [anon_sym_BSLASHacsp] = ACTIONS(6465), - [anon_sym_BSLASHAcsp] = ACTIONS(6465), - [anon_sym_BSLASHacl] = ACTIONS(6465), - [anon_sym_BSLASHAcl] = ACTIONS(6465), - [anon_sym_BSLASHaclp] = ACTIONS(6465), - [anon_sym_BSLASHAclp] = ACTIONS(6465), - [anon_sym_BSLASHacf] = ACTIONS(6465), - [anon_sym_BSLASHAcf] = ACTIONS(6465), - [anon_sym_BSLASHacfp] = ACTIONS(6465), - [anon_sym_BSLASHAcfp] = ACTIONS(6465), - [anon_sym_BSLASHac] = ACTIONS(6465), - [anon_sym_BSLASHAc] = ACTIONS(6465), - [anon_sym_BSLASHacp] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6465), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6465), - [anon_sym_BSLASHcolor] = ACTIONS(6465), - [anon_sym_BSLASHcolorbox] = ACTIONS(6465), - [anon_sym_BSLASHtextcolor] = ACTIONS(6465), - [anon_sym_BSLASHpagecolor] = ACTIONS(6465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6465), - [anon_sym_BSLASHtext] = ACTIONS(6465), - [anon_sym_BSLASHintertext] = ACTIONS(6465), - [anon_sym_shortintertext] = ACTIONS(6465), - }, - [1255] = { - [sym_command_name] = ACTIONS(6461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6461), - [anon_sym_LBRACK] = ACTIONS(6463), - [anon_sym_RBRACK] = ACTIONS(6463), - [anon_sym_COMMA] = ACTIONS(6463), - [anon_sym_EQ] = ACTIONS(6463), - [anon_sym_LPAREN] = ACTIONS(6463), - [anon_sym_RPAREN] = ACTIONS(6463), - [anon_sym_BSLASHpart] = ACTIONS(6461), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddpart] = ACTIONS(6461), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6463), - [anon_sym_BSLASHchapter] = ACTIONS(6461), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddchap] = ACTIONS(6461), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsection] = ACTIONS(6461), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHaddsec] = ACTIONS(6461), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubsection] = ACTIONS(6461), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6461), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6463), - [anon_sym_BSLASHparagraph] = ACTIONS(6461), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6463), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6461), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6463), - [anon_sym_BSLASHitem] = ACTIONS(6461), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6463), - [anon_sym_LBRACE] = ACTIONS(6463), - [sym_word] = ACTIONS(6461), - [sym_placeholder] = ACTIONS(6463), - [anon_sym_PLUS] = ACTIONS(6463), - [anon_sym_DASH] = ACTIONS(6463), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6463), - [anon_sym_LT] = ACTIONS(6461), - [anon_sym_GT] = ACTIONS(6461), - [anon_sym_BANG] = ACTIONS(6461), - [anon_sym_PIPE] = ACTIONS(6461), - [anon_sym_COLON] = ACTIONS(6461), - [anon_sym_SQUOTE] = ACTIONS(6461), - [anon_sym__] = ACTIONS(6463), - [anon_sym_CARET] = ACTIONS(6463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6463), - [anon_sym_DOLLAR] = ACTIONS(6461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6463), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6463), - [anon_sym_BSLASHbegin] = ACTIONS(6461), - [anon_sym_BSLASHtitle] = ACTIONS(6461), - [anon_sym_BSLASHauthor] = ACTIONS(6461), - [anon_sym_BSLASHusepackage] = ACTIONS(6461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6461), - [anon_sym_BSLASHinclude] = ACTIONS(6461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6461), - [anon_sym_BSLASHinput] = ACTIONS(6461), - [anon_sym_BSLASHsubfile] = ACTIONS(6461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6461), - [anon_sym_BSLASHbibliography] = ACTIONS(6461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6461), - [anon_sym_BSLASHincludesvg] = ACTIONS(6461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6461), - [anon_sym_BSLASHimport] = ACTIONS(6461), - [anon_sym_BSLASHsubimport] = ACTIONS(6461), - [anon_sym_BSLASHinputfrom] = ACTIONS(6461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6461), - [anon_sym_BSLASHincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHcaption] = ACTIONS(6461), - [anon_sym_BSLASHcite] = ACTIONS(6461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCite] = ACTIONS(6461), - [anon_sym_BSLASHnocite] = ACTIONS(6461), - [anon_sym_BSLASHcitet] = ACTIONS(6461), - [anon_sym_BSLASHcitep] = ACTIONS(6461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteauthor] = ACTIONS(6461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitetitle] = ACTIONS(6461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteyear] = ACTIONS(6461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitedate] = ACTIONS(6461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteurl] = ACTIONS(6461), - [anon_sym_BSLASHfullcite] = ACTIONS(6461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6461), - [anon_sym_BSLASHcitealt] = ACTIONS(6461), - [anon_sym_BSLASHcitealp] = ACTIONS(6461), - [anon_sym_BSLASHcitetext] = ACTIONS(6461), - [anon_sym_BSLASHparencite] = ACTIONS(6461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHParencite] = ACTIONS(6461), - [anon_sym_BSLASHfootcite] = ACTIONS(6461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6461), - [anon_sym_BSLASHtextcite] = ACTIONS(6461), - [anon_sym_BSLASHTextcite] = ACTIONS(6461), - [anon_sym_BSLASHsmartcite] = ACTIONS(6461), - [anon_sym_BSLASHSmartcite] = ACTIONS(6461), - [anon_sym_BSLASHsupercite] = ACTIONS(6461), - [anon_sym_BSLASHautocite] = ACTIONS(6461), - [anon_sym_BSLASHAutocite] = ACTIONS(6461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHvolcite] = ACTIONS(6461), - [anon_sym_BSLASHVolcite] = ACTIONS(6461), - [anon_sym_BSLASHpvolcite] = ACTIONS(6461), - [anon_sym_BSLASHPvolcite] = ACTIONS(6461), - [anon_sym_BSLASHfvolcite] = ACTIONS(6461), - [anon_sym_BSLASHftvolcite] = ACTIONS(6461), - [anon_sym_BSLASHsvolcite] = ACTIONS(6461), - [anon_sym_BSLASHSvolcite] = ACTIONS(6461), - [anon_sym_BSLASHtvolcite] = ACTIONS(6461), - [anon_sym_BSLASHTvolcite] = ACTIONS(6461), - [anon_sym_BSLASHavolcite] = ACTIONS(6461), - [anon_sym_BSLASHAvolcite] = ACTIONS(6461), - [anon_sym_BSLASHnotecite] = ACTIONS(6461), - [anon_sym_BSLASHNotecite] = ACTIONS(6461), - [anon_sym_BSLASHpnotecite] = ACTIONS(6461), - [anon_sym_BSLASHPnotecite] = ACTIONS(6461), - [anon_sym_BSLASHfnotecite] = ACTIONS(6461), - [anon_sym_BSLASHlabel] = ACTIONS(6461), - [anon_sym_BSLASHref] = ACTIONS(6461), - [anon_sym_BSLASHeqref] = ACTIONS(6461), - [anon_sym_BSLASHvref] = ACTIONS(6461), - [anon_sym_BSLASHVref] = ACTIONS(6461), - [anon_sym_BSLASHautoref] = ACTIONS(6461), - [anon_sym_BSLASHpageref] = ACTIONS(6461), - [anon_sym_BSLASHcref] = ACTIONS(6461), - [anon_sym_BSLASHCref] = ACTIONS(6461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnameCref] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHlabelcref] = ACTIONS(6461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCrefrange] = ACTIONS(6461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnewlabel] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6463), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHdef] = ACTIONS(6461), - [anon_sym_BSLASHlet] = ACTIONS(6461), - [anon_sym_BSLASHleft] = ACTIONS(6461), - [anon_sym_BSLASHbig] = ACTIONS(6461), - [anon_sym_BSLASHBig] = ACTIONS(6461), - [anon_sym_BSLASHbigg] = ACTIONS(6461), - [anon_sym_BSLASHBigg] = ACTIONS(6461), - [anon_sym_BSLASHbigl] = ACTIONS(6461), - [anon_sym_BSLASHBigl] = ACTIONS(6461), - [anon_sym_BSLASHbiggl] = ACTIONS(6461), - [anon_sym_BSLASHBiggl] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6461), - [anon_sym_BSLASHgls] = ACTIONS(6461), - [anon_sym_BSLASHGls] = ACTIONS(6461), - [anon_sym_BSLASHGLS] = ACTIONS(6461), - [anon_sym_BSLASHglspl] = ACTIONS(6461), - [anon_sym_BSLASHGlspl] = ACTIONS(6461), - [anon_sym_BSLASHGLSpl] = ACTIONS(6461), - [anon_sym_BSLASHglsdisp] = ACTIONS(6461), - [anon_sym_BSLASHglslink] = ACTIONS(6461), - [anon_sym_BSLASHglstext] = ACTIONS(6461), - [anon_sym_BSLASHGlstext] = ACTIONS(6461), - [anon_sym_BSLASHGLStext] = ACTIONS(6461), - [anon_sym_BSLASHglsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6461), - [anon_sym_BSLASHglsplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSplural] = ACTIONS(6461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHglsname] = ACTIONS(6461), - [anon_sym_BSLASHGlsname] = ACTIONS(6461), - [anon_sym_BSLASHGLSname] = ACTIONS(6461), - [anon_sym_BSLASHglssymbol] = ACTIONS(6461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6461), - [anon_sym_BSLASHglsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6461), - [anon_sym_BSLASHglsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6461), - [anon_sym_BSLASHglsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6461), - [anon_sym_BSLASHglsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6461), - [anon_sym_BSLASHglsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6461), - [anon_sym_BSLASHnewacronym] = ACTIONS(6461), - [anon_sym_BSLASHacrshort] = ACTIONS(6461), - [anon_sym_BSLASHAcrshort] = ACTIONS(6461), - [anon_sym_BSLASHACRshort] = ACTIONS(6461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6461), - [anon_sym_BSLASHacrlong] = ACTIONS(6461), - [anon_sym_BSLASHAcrlong] = ACTIONS(6461), - [anon_sym_BSLASHACRlong] = ACTIONS(6461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6461), - [anon_sym_BSLASHacrfull] = ACTIONS(6461), - [anon_sym_BSLASHAcrfull] = ACTIONS(6461), - [anon_sym_BSLASHACRfull] = ACTIONS(6461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6461), - [anon_sym_BSLASHacs] = ACTIONS(6461), - [anon_sym_BSLASHAcs] = ACTIONS(6461), - [anon_sym_BSLASHacsp] = ACTIONS(6461), - [anon_sym_BSLASHAcsp] = ACTIONS(6461), - [anon_sym_BSLASHacl] = ACTIONS(6461), - [anon_sym_BSLASHAcl] = ACTIONS(6461), - [anon_sym_BSLASHaclp] = ACTIONS(6461), - [anon_sym_BSLASHAclp] = ACTIONS(6461), - [anon_sym_BSLASHacf] = ACTIONS(6461), - [anon_sym_BSLASHAcf] = ACTIONS(6461), - [anon_sym_BSLASHacfp] = ACTIONS(6461), - [anon_sym_BSLASHAcfp] = ACTIONS(6461), - [anon_sym_BSLASHac] = ACTIONS(6461), - [anon_sym_BSLASHAc] = ACTIONS(6461), - [anon_sym_BSLASHacp] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6461), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6461), - [anon_sym_BSLASHcolor] = ACTIONS(6461), - [anon_sym_BSLASHcolorbox] = ACTIONS(6461), - [anon_sym_BSLASHtextcolor] = ACTIONS(6461), - [anon_sym_BSLASHpagecolor] = ACTIONS(6461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6461), - [anon_sym_BSLASHtext] = ACTIONS(6461), - [anon_sym_BSLASHintertext] = ACTIONS(6461), - [anon_sym_shortintertext] = ACTIONS(6461), - }, - [1256] = { - [sym_command_name] = ACTIONS(6457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6457), - [anon_sym_LBRACK] = ACTIONS(6459), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(6459), - [anon_sym_LPAREN] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_BSLASHpart] = ACTIONS(6457), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddpart] = ACTIONS(6457), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6459), - [anon_sym_BSLASHchapter] = ACTIONS(6457), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddchap] = ACTIONS(6457), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsection] = ACTIONS(6457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHaddsec] = ACTIONS(6457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubsection] = ACTIONS(6457), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6457), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6459), - [anon_sym_BSLASHparagraph] = ACTIONS(6457), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6459), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6457), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6459), - [anon_sym_BSLASHitem] = ACTIONS(6457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6459), - [anon_sym_LBRACE] = ACTIONS(6459), - [sym_word] = ACTIONS(6457), - [sym_placeholder] = ACTIONS(6459), - [anon_sym_PLUS] = ACTIONS(6459), - [anon_sym_DASH] = ACTIONS(6459), - [anon_sym_STAR] = ACTIONS(6459), - [anon_sym_SLASH] = ACTIONS(6459), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_BANG] = ACTIONS(6457), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_SQUOTE] = ACTIONS(6457), - [anon_sym__] = ACTIONS(6459), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6459), - [anon_sym_DOLLAR] = ACTIONS(6457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6459), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6459), - [anon_sym_BSLASHbegin] = ACTIONS(6457), - [anon_sym_BSLASHtitle] = ACTIONS(6457), - [anon_sym_BSLASHauthor] = ACTIONS(6457), - [anon_sym_BSLASHusepackage] = ACTIONS(6457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6457), - [anon_sym_BSLASHinclude] = ACTIONS(6457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6457), - [anon_sym_BSLASHinput] = ACTIONS(6457), - [anon_sym_BSLASHsubfile] = ACTIONS(6457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6457), - [anon_sym_BSLASHbibliography] = ACTIONS(6457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6457), - [anon_sym_BSLASHincludesvg] = ACTIONS(6457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6457), - [anon_sym_BSLASHimport] = ACTIONS(6457), - [anon_sym_BSLASHsubimport] = ACTIONS(6457), - [anon_sym_BSLASHinputfrom] = ACTIONS(6457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6457), - [anon_sym_BSLASHincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHcaption] = ACTIONS(6457), - [anon_sym_BSLASHcite] = ACTIONS(6457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCite] = ACTIONS(6457), - [anon_sym_BSLASHnocite] = ACTIONS(6457), - [anon_sym_BSLASHcitet] = ACTIONS(6457), - [anon_sym_BSLASHcitep] = ACTIONS(6457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteauthor] = ACTIONS(6457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitetitle] = ACTIONS(6457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteyear] = ACTIONS(6457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitedate] = ACTIONS(6457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteurl] = ACTIONS(6457), - [anon_sym_BSLASHfullcite] = ACTIONS(6457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6457), - [anon_sym_BSLASHcitealt] = ACTIONS(6457), - [anon_sym_BSLASHcitealp] = ACTIONS(6457), - [anon_sym_BSLASHcitetext] = ACTIONS(6457), - [anon_sym_BSLASHparencite] = ACTIONS(6457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHParencite] = ACTIONS(6457), - [anon_sym_BSLASHfootcite] = ACTIONS(6457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6457), - [anon_sym_BSLASHtextcite] = ACTIONS(6457), - [anon_sym_BSLASHTextcite] = ACTIONS(6457), - [anon_sym_BSLASHsmartcite] = ACTIONS(6457), - [anon_sym_BSLASHSmartcite] = ACTIONS(6457), - [anon_sym_BSLASHsupercite] = ACTIONS(6457), - [anon_sym_BSLASHautocite] = ACTIONS(6457), - [anon_sym_BSLASHAutocite] = ACTIONS(6457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHvolcite] = ACTIONS(6457), - [anon_sym_BSLASHVolcite] = ACTIONS(6457), - [anon_sym_BSLASHpvolcite] = ACTIONS(6457), - [anon_sym_BSLASHPvolcite] = ACTIONS(6457), - [anon_sym_BSLASHfvolcite] = ACTIONS(6457), - [anon_sym_BSLASHftvolcite] = ACTIONS(6457), - [anon_sym_BSLASHsvolcite] = ACTIONS(6457), - [anon_sym_BSLASHSvolcite] = ACTIONS(6457), - [anon_sym_BSLASHtvolcite] = ACTIONS(6457), - [anon_sym_BSLASHTvolcite] = ACTIONS(6457), - [anon_sym_BSLASHavolcite] = ACTIONS(6457), - [anon_sym_BSLASHAvolcite] = ACTIONS(6457), - [anon_sym_BSLASHnotecite] = ACTIONS(6457), - [anon_sym_BSLASHNotecite] = ACTIONS(6457), - [anon_sym_BSLASHpnotecite] = ACTIONS(6457), - [anon_sym_BSLASHPnotecite] = ACTIONS(6457), - [anon_sym_BSLASHfnotecite] = ACTIONS(6457), - [anon_sym_BSLASHlabel] = ACTIONS(6457), - [anon_sym_BSLASHref] = ACTIONS(6457), - [anon_sym_BSLASHeqref] = ACTIONS(6457), - [anon_sym_BSLASHvref] = ACTIONS(6457), - [anon_sym_BSLASHVref] = ACTIONS(6457), - [anon_sym_BSLASHautoref] = ACTIONS(6457), - [anon_sym_BSLASHpageref] = ACTIONS(6457), - [anon_sym_BSLASHcref] = ACTIONS(6457), - [anon_sym_BSLASHCref] = ACTIONS(6457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnameCref] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHlabelcref] = ACTIONS(6457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCrefrange] = ACTIONS(6457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnewlabel] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6459), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHdef] = ACTIONS(6457), - [anon_sym_BSLASHlet] = ACTIONS(6457), - [anon_sym_BSLASHleft] = ACTIONS(6457), - [anon_sym_BSLASHbig] = ACTIONS(6457), - [anon_sym_BSLASHBig] = ACTIONS(6457), - [anon_sym_BSLASHbigg] = ACTIONS(6457), - [anon_sym_BSLASHBigg] = ACTIONS(6457), - [anon_sym_BSLASHbigl] = ACTIONS(6457), - [anon_sym_BSLASHBigl] = ACTIONS(6457), - [anon_sym_BSLASHbiggl] = ACTIONS(6457), - [anon_sym_BSLASHBiggl] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6457), - [anon_sym_BSLASHgls] = ACTIONS(6457), - [anon_sym_BSLASHGls] = ACTIONS(6457), - [anon_sym_BSLASHGLS] = ACTIONS(6457), - [anon_sym_BSLASHglspl] = ACTIONS(6457), - [anon_sym_BSLASHGlspl] = ACTIONS(6457), - [anon_sym_BSLASHGLSpl] = ACTIONS(6457), - [anon_sym_BSLASHglsdisp] = ACTIONS(6457), - [anon_sym_BSLASHglslink] = ACTIONS(6457), - [anon_sym_BSLASHglstext] = ACTIONS(6457), - [anon_sym_BSLASHGlstext] = ACTIONS(6457), - [anon_sym_BSLASHGLStext] = ACTIONS(6457), - [anon_sym_BSLASHglsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6457), - [anon_sym_BSLASHglsplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSplural] = ACTIONS(6457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHglsname] = ACTIONS(6457), - [anon_sym_BSLASHGlsname] = ACTIONS(6457), - [anon_sym_BSLASHGLSname] = ACTIONS(6457), - [anon_sym_BSLASHglssymbol] = ACTIONS(6457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6457), - [anon_sym_BSLASHglsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6457), - [anon_sym_BSLASHglsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6457), - [anon_sym_BSLASHglsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6457), - [anon_sym_BSLASHglsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6457), - [anon_sym_BSLASHglsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6457), - [anon_sym_BSLASHnewacronym] = ACTIONS(6457), - [anon_sym_BSLASHacrshort] = ACTIONS(6457), - [anon_sym_BSLASHAcrshort] = ACTIONS(6457), - [anon_sym_BSLASHACRshort] = ACTIONS(6457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6457), - [anon_sym_BSLASHacrlong] = ACTIONS(6457), - [anon_sym_BSLASHAcrlong] = ACTIONS(6457), - [anon_sym_BSLASHACRlong] = ACTIONS(6457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6457), - [anon_sym_BSLASHacrfull] = ACTIONS(6457), - [anon_sym_BSLASHAcrfull] = ACTIONS(6457), - [anon_sym_BSLASHACRfull] = ACTIONS(6457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6457), - [anon_sym_BSLASHacs] = ACTIONS(6457), - [anon_sym_BSLASHAcs] = ACTIONS(6457), - [anon_sym_BSLASHacsp] = ACTIONS(6457), - [anon_sym_BSLASHAcsp] = ACTIONS(6457), - [anon_sym_BSLASHacl] = ACTIONS(6457), - [anon_sym_BSLASHAcl] = ACTIONS(6457), - [anon_sym_BSLASHaclp] = ACTIONS(6457), - [anon_sym_BSLASHAclp] = ACTIONS(6457), - [anon_sym_BSLASHacf] = ACTIONS(6457), - [anon_sym_BSLASHAcf] = ACTIONS(6457), - [anon_sym_BSLASHacfp] = ACTIONS(6457), - [anon_sym_BSLASHAcfp] = ACTIONS(6457), - [anon_sym_BSLASHac] = ACTIONS(6457), - [anon_sym_BSLASHAc] = ACTIONS(6457), - [anon_sym_BSLASHacp] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6457), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6457), - [anon_sym_BSLASHcolor] = ACTIONS(6457), - [anon_sym_BSLASHcolorbox] = ACTIONS(6457), - [anon_sym_BSLASHtextcolor] = ACTIONS(6457), - [anon_sym_BSLASHpagecolor] = ACTIONS(6457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6457), - [anon_sym_BSLASHtext] = ACTIONS(6457), - [anon_sym_BSLASHintertext] = ACTIONS(6457), - [anon_sym_shortintertext] = ACTIONS(6457), - }, - [1257] = { - [sym_command_name] = ACTIONS(6453), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6453), - [anon_sym_LBRACK] = ACTIONS(6455), - [anon_sym_RBRACK] = ACTIONS(6455), - [anon_sym_COMMA] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(6455), - [anon_sym_LPAREN] = ACTIONS(6455), - [anon_sym_RPAREN] = ACTIONS(6455), - [anon_sym_BSLASHpart] = ACTIONS(6453), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddpart] = ACTIONS(6453), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6455), - [anon_sym_BSLASHchapter] = ACTIONS(6453), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddchap] = ACTIONS(6453), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsection] = ACTIONS(6453), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHaddsec] = ACTIONS(6453), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubsection] = ACTIONS(6453), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6453), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6455), - [anon_sym_BSLASHparagraph] = ACTIONS(6453), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6455), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6453), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6455), - [anon_sym_BSLASHitem] = ACTIONS(6453), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6455), - [anon_sym_LBRACE] = ACTIONS(6455), - [sym_word] = ACTIONS(6453), - [sym_placeholder] = ACTIONS(6455), - [anon_sym_PLUS] = ACTIONS(6455), - [anon_sym_DASH] = ACTIONS(6455), - [anon_sym_STAR] = ACTIONS(6455), - [anon_sym_SLASH] = ACTIONS(6455), - [anon_sym_LT] = ACTIONS(6453), - [anon_sym_GT] = ACTIONS(6453), - [anon_sym_BANG] = ACTIONS(6453), - [anon_sym_PIPE] = ACTIONS(6453), - [anon_sym_COLON] = ACTIONS(6453), - [anon_sym_SQUOTE] = ACTIONS(6453), - [anon_sym__] = ACTIONS(6455), - [anon_sym_CARET] = ACTIONS(6455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6455), - [anon_sym_DOLLAR] = ACTIONS(6453), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6455), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6455), - [anon_sym_BSLASHbegin] = ACTIONS(6453), - [anon_sym_BSLASHtitle] = ACTIONS(6453), - [anon_sym_BSLASHauthor] = ACTIONS(6453), - [anon_sym_BSLASHusepackage] = ACTIONS(6453), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6453), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6453), - [anon_sym_BSLASHinclude] = ACTIONS(6453), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6453), - [anon_sym_BSLASHinput] = ACTIONS(6453), - [anon_sym_BSLASHsubfile] = ACTIONS(6453), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6453), - [anon_sym_BSLASHbibliography] = ACTIONS(6453), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6453), - [anon_sym_BSLASHincludesvg] = ACTIONS(6453), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6453), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6453), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6453), - [anon_sym_BSLASHimport] = ACTIONS(6453), - [anon_sym_BSLASHsubimport] = ACTIONS(6453), - [anon_sym_BSLASHinputfrom] = ACTIONS(6453), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6453), - [anon_sym_BSLASHincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHcaption] = ACTIONS(6453), - [anon_sym_BSLASHcite] = ACTIONS(6453), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCite] = ACTIONS(6453), - [anon_sym_BSLASHnocite] = ACTIONS(6453), - [anon_sym_BSLASHcitet] = ACTIONS(6453), - [anon_sym_BSLASHcitep] = ACTIONS(6453), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteauthor] = ACTIONS(6453), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6453), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitetitle] = ACTIONS(6453), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteyear] = ACTIONS(6453), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitedate] = ACTIONS(6453), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteurl] = ACTIONS(6453), - [anon_sym_BSLASHfullcite] = ACTIONS(6453), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6453), - [anon_sym_BSLASHcitealt] = ACTIONS(6453), - [anon_sym_BSLASHcitealp] = ACTIONS(6453), - [anon_sym_BSLASHcitetext] = ACTIONS(6453), - [anon_sym_BSLASHparencite] = ACTIONS(6453), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHParencite] = ACTIONS(6453), - [anon_sym_BSLASHfootcite] = ACTIONS(6453), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6453), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6453), - [anon_sym_BSLASHtextcite] = ACTIONS(6453), - [anon_sym_BSLASHTextcite] = ACTIONS(6453), - [anon_sym_BSLASHsmartcite] = ACTIONS(6453), - [anon_sym_BSLASHSmartcite] = ACTIONS(6453), - [anon_sym_BSLASHsupercite] = ACTIONS(6453), - [anon_sym_BSLASHautocite] = ACTIONS(6453), - [anon_sym_BSLASHAutocite] = ACTIONS(6453), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHvolcite] = ACTIONS(6453), - [anon_sym_BSLASHVolcite] = ACTIONS(6453), - [anon_sym_BSLASHpvolcite] = ACTIONS(6453), - [anon_sym_BSLASHPvolcite] = ACTIONS(6453), - [anon_sym_BSLASHfvolcite] = ACTIONS(6453), - [anon_sym_BSLASHftvolcite] = ACTIONS(6453), - [anon_sym_BSLASHsvolcite] = ACTIONS(6453), - [anon_sym_BSLASHSvolcite] = ACTIONS(6453), - [anon_sym_BSLASHtvolcite] = ACTIONS(6453), - [anon_sym_BSLASHTvolcite] = ACTIONS(6453), - [anon_sym_BSLASHavolcite] = ACTIONS(6453), - [anon_sym_BSLASHAvolcite] = ACTIONS(6453), - [anon_sym_BSLASHnotecite] = ACTIONS(6453), - [anon_sym_BSLASHNotecite] = ACTIONS(6453), - [anon_sym_BSLASHpnotecite] = ACTIONS(6453), - [anon_sym_BSLASHPnotecite] = ACTIONS(6453), - [anon_sym_BSLASHfnotecite] = ACTIONS(6453), - [anon_sym_BSLASHlabel] = ACTIONS(6453), - [anon_sym_BSLASHref] = ACTIONS(6453), - [anon_sym_BSLASHeqref] = ACTIONS(6453), - [anon_sym_BSLASHvref] = ACTIONS(6453), - [anon_sym_BSLASHVref] = ACTIONS(6453), - [anon_sym_BSLASHautoref] = ACTIONS(6453), - [anon_sym_BSLASHpageref] = ACTIONS(6453), - [anon_sym_BSLASHcref] = ACTIONS(6453), - [anon_sym_BSLASHCref] = ACTIONS(6453), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnameCref] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHlabelcref] = ACTIONS(6453), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCrefrange] = ACTIONS(6453), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnewlabel] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6453), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6453), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6455), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHdef] = ACTIONS(6453), - [anon_sym_BSLASHlet] = ACTIONS(6453), - [anon_sym_BSLASHleft] = ACTIONS(6453), - [anon_sym_BSLASHbig] = ACTIONS(6453), - [anon_sym_BSLASHBig] = ACTIONS(6453), - [anon_sym_BSLASHbigg] = ACTIONS(6453), - [anon_sym_BSLASHBigg] = ACTIONS(6453), - [anon_sym_BSLASHbigl] = ACTIONS(6453), - [anon_sym_BSLASHBigl] = ACTIONS(6453), - [anon_sym_BSLASHbiggl] = ACTIONS(6453), - [anon_sym_BSLASHBiggl] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6453), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6453), - [anon_sym_BSLASHgls] = ACTIONS(6453), - [anon_sym_BSLASHGls] = ACTIONS(6453), - [anon_sym_BSLASHGLS] = ACTIONS(6453), - [anon_sym_BSLASHglspl] = ACTIONS(6453), - [anon_sym_BSLASHGlspl] = ACTIONS(6453), - [anon_sym_BSLASHGLSpl] = ACTIONS(6453), - [anon_sym_BSLASHglsdisp] = ACTIONS(6453), - [anon_sym_BSLASHglslink] = ACTIONS(6453), - [anon_sym_BSLASHglstext] = ACTIONS(6453), - [anon_sym_BSLASHGlstext] = ACTIONS(6453), - [anon_sym_BSLASHGLStext] = ACTIONS(6453), - [anon_sym_BSLASHglsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6453), - [anon_sym_BSLASHglsplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSplural] = ACTIONS(6453), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHglsname] = ACTIONS(6453), - [anon_sym_BSLASHGlsname] = ACTIONS(6453), - [anon_sym_BSLASHGLSname] = ACTIONS(6453), - [anon_sym_BSLASHglssymbol] = ACTIONS(6453), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6453), - [anon_sym_BSLASHglsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6453), - [anon_sym_BSLASHglsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6453), - [anon_sym_BSLASHglsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6453), - [anon_sym_BSLASHglsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6453), - [anon_sym_BSLASHglsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6453), - [anon_sym_BSLASHnewacronym] = ACTIONS(6453), - [anon_sym_BSLASHacrshort] = ACTIONS(6453), - [anon_sym_BSLASHAcrshort] = ACTIONS(6453), - [anon_sym_BSLASHACRshort] = ACTIONS(6453), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6453), - [anon_sym_BSLASHacrlong] = ACTIONS(6453), - [anon_sym_BSLASHAcrlong] = ACTIONS(6453), - [anon_sym_BSLASHACRlong] = ACTIONS(6453), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6453), - [anon_sym_BSLASHacrfull] = ACTIONS(6453), - [anon_sym_BSLASHAcrfull] = ACTIONS(6453), - [anon_sym_BSLASHACRfull] = ACTIONS(6453), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6453), - [anon_sym_BSLASHacs] = ACTIONS(6453), - [anon_sym_BSLASHAcs] = ACTIONS(6453), - [anon_sym_BSLASHacsp] = ACTIONS(6453), - [anon_sym_BSLASHAcsp] = ACTIONS(6453), - [anon_sym_BSLASHacl] = ACTIONS(6453), - [anon_sym_BSLASHAcl] = ACTIONS(6453), - [anon_sym_BSLASHaclp] = ACTIONS(6453), - [anon_sym_BSLASHAclp] = ACTIONS(6453), - [anon_sym_BSLASHacf] = ACTIONS(6453), - [anon_sym_BSLASHAcf] = ACTIONS(6453), - [anon_sym_BSLASHacfp] = ACTIONS(6453), - [anon_sym_BSLASHAcfp] = ACTIONS(6453), - [anon_sym_BSLASHac] = ACTIONS(6453), - [anon_sym_BSLASHAc] = ACTIONS(6453), - [anon_sym_BSLASHacp] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6453), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6453), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6453), - [anon_sym_BSLASHcolor] = ACTIONS(6453), - [anon_sym_BSLASHcolorbox] = ACTIONS(6453), - [anon_sym_BSLASHtextcolor] = ACTIONS(6453), - [anon_sym_BSLASHpagecolor] = ACTIONS(6453), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6453), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6453), - [anon_sym_BSLASHtext] = ACTIONS(6453), - [anon_sym_BSLASHintertext] = ACTIONS(6453), - [anon_sym_shortintertext] = ACTIONS(6453), - }, - [1258] = { - [sym_command_name] = ACTIONS(6449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6449), - [anon_sym_LBRACK] = ACTIONS(6451), - [anon_sym_RBRACK] = ACTIONS(6451), - [anon_sym_COMMA] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(6451), - [anon_sym_LPAREN] = ACTIONS(6451), - [anon_sym_RPAREN] = ACTIONS(6451), - [anon_sym_BSLASHpart] = ACTIONS(6449), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddpart] = ACTIONS(6449), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6451), - [anon_sym_BSLASHchapter] = ACTIONS(6449), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddchap] = ACTIONS(6449), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsection] = ACTIONS(6449), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHaddsec] = ACTIONS(6449), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubsection] = ACTIONS(6449), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6449), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6451), - [anon_sym_BSLASHparagraph] = ACTIONS(6449), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6451), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6449), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6451), - [anon_sym_BSLASHitem] = ACTIONS(6449), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6451), - [anon_sym_LBRACE] = ACTIONS(6451), - [sym_word] = ACTIONS(6449), - [sym_placeholder] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6451), - [anon_sym_DASH] = ACTIONS(6451), - [anon_sym_STAR] = ACTIONS(6451), - [anon_sym_SLASH] = ACTIONS(6451), - [anon_sym_LT] = ACTIONS(6449), - [anon_sym_GT] = ACTIONS(6449), - [anon_sym_BANG] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6449), - [anon_sym_COLON] = ACTIONS(6449), - [anon_sym_SQUOTE] = ACTIONS(6449), - [anon_sym__] = ACTIONS(6451), - [anon_sym_CARET] = ACTIONS(6451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6451), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6451), - [anon_sym_DOLLAR] = ACTIONS(6449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6451), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6451), - [anon_sym_BSLASHbegin] = ACTIONS(6449), - [anon_sym_BSLASHtitle] = ACTIONS(6449), - [anon_sym_BSLASHauthor] = ACTIONS(6449), - [anon_sym_BSLASHusepackage] = ACTIONS(6449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6449), - [anon_sym_BSLASHinclude] = ACTIONS(6449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6449), - [anon_sym_BSLASHinput] = ACTIONS(6449), - [anon_sym_BSLASHsubfile] = ACTIONS(6449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6449), - [anon_sym_BSLASHbibliography] = ACTIONS(6449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6449), - [anon_sym_BSLASHincludesvg] = ACTIONS(6449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6449), - [anon_sym_BSLASHimport] = ACTIONS(6449), - [anon_sym_BSLASHsubimport] = ACTIONS(6449), - [anon_sym_BSLASHinputfrom] = ACTIONS(6449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6449), - [anon_sym_BSLASHincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHcaption] = ACTIONS(6449), - [anon_sym_BSLASHcite] = ACTIONS(6449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCite] = ACTIONS(6449), - [anon_sym_BSLASHnocite] = ACTIONS(6449), - [anon_sym_BSLASHcitet] = ACTIONS(6449), - [anon_sym_BSLASHcitep] = ACTIONS(6449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteauthor] = ACTIONS(6449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitetitle] = ACTIONS(6449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteyear] = ACTIONS(6449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitedate] = ACTIONS(6449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteurl] = ACTIONS(6449), - [anon_sym_BSLASHfullcite] = ACTIONS(6449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6449), - [anon_sym_BSLASHcitealt] = ACTIONS(6449), - [anon_sym_BSLASHcitealp] = ACTIONS(6449), - [anon_sym_BSLASHcitetext] = ACTIONS(6449), - [anon_sym_BSLASHparencite] = ACTIONS(6449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHParencite] = ACTIONS(6449), - [anon_sym_BSLASHfootcite] = ACTIONS(6449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6449), - [anon_sym_BSLASHtextcite] = ACTIONS(6449), - [anon_sym_BSLASHTextcite] = ACTIONS(6449), - [anon_sym_BSLASHsmartcite] = ACTIONS(6449), - [anon_sym_BSLASHSmartcite] = ACTIONS(6449), - [anon_sym_BSLASHsupercite] = ACTIONS(6449), - [anon_sym_BSLASHautocite] = ACTIONS(6449), - [anon_sym_BSLASHAutocite] = ACTIONS(6449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHvolcite] = ACTIONS(6449), - [anon_sym_BSLASHVolcite] = ACTIONS(6449), - [anon_sym_BSLASHpvolcite] = ACTIONS(6449), - [anon_sym_BSLASHPvolcite] = ACTIONS(6449), - [anon_sym_BSLASHfvolcite] = ACTIONS(6449), - [anon_sym_BSLASHftvolcite] = ACTIONS(6449), - [anon_sym_BSLASHsvolcite] = ACTIONS(6449), - [anon_sym_BSLASHSvolcite] = ACTIONS(6449), - [anon_sym_BSLASHtvolcite] = ACTIONS(6449), - [anon_sym_BSLASHTvolcite] = ACTIONS(6449), - [anon_sym_BSLASHavolcite] = ACTIONS(6449), - [anon_sym_BSLASHAvolcite] = ACTIONS(6449), - [anon_sym_BSLASHnotecite] = ACTIONS(6449), - [anon_sym_BSLASHNotecite] = ACTIONS(6449), - [anon_sym_BSLASHpnotecite] = ACTIONS(6449), - [anon_sym_BSLASHPnotecite] = ACTIONS(6449), - [anon_sym_BSLASHfnotecite] = ACTIONS(6449), - [anon_sym_BSLASHlabel] = ACTIONS(6449), - [anon_sym_BSLASHref] = ACTIONS(6449), - [anon_sym_BSLASHeqref] = ACTIONS(6449), - [anon_sym_BSLASHvref] = ACTIONS(6449), - [anon_sym_BSLASHVref] = ACTIONS(6449), - [anon_sym_BSLASHautoref] = ACTIONS(6449), - [anon_sym_BSLASHpageref] = ACTIONS(6449), - [anon_sym_BSLASHcref] = ACTIONS(6449), - [anon_sym_BSLASHCref] = ACTIONS(6449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnameCref] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHlabelcref] = ACTIONS(6449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCrefrange] = ACTIONS(6449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnewlabel] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6451), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHdef] = ACTIONS(6449), - [anon_sym_BSLASHlet] = ACTIONS(6449), - [anon_sym_BSLASHleft] = ACTIONS(6449), - [anon_sym_BSLASHbig] = ACTIONS(6449), - [anon_sym_BSLASHBig] = ACTIONS(6449), - [anon_sym_BSLASHbigg] = ACTIONS(6449), - [anon_sym_BSLASHBigg] = ACTIONS(6449), - [anon_sym_BSLASHbigl] = ACTIONS(6449), - [anon_sym_BSLASHBigl] = ACTIONS(6449), - [anon_sym_BSLASHbiggl] = ACTIONS(6449), - [anon_sym_BSLASHBiggl] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6449), - [anon_sym_BSLASHgls] = ACTIONS(6449), - [anon_sym_BSLASHGls] = ACTIONS(6449), - [anon_sym_BSLASHGLS] = ACTIONS(6449), - [anon_sym_BSLASHglspl] = ACTIONS(6449), - [anon_sym_BSLASHGlspl] = ACTIONS(6449), - [anon_sym_BSLASHGLSpl] = ACTIONS(6449), - [anon_sym_BSLASHglsdisp] = ACTIONS(6449), - [anon_sym_BSLASHglslink] = ACTIONS(6449), - [anon_sym_BSLASHglstext] = ACTIONS(6449), - [anon_sym_BSLASHGlstext] = ACTIONS(6449), - [anon_sym_BSLASHGLStext] = ACTIONS(6449), - [anon_sym_BSLASHglsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6449), - [anon_sym_BSLASHglsplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSplural] = ACTIONS(6449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHglsname] = ACTIONS(6449), - [anon_sym_BSLASHGlsname] = ACTIONS(6449), - [anon_sym_BSLASHGLSname] = ACTIONS(6449), - [anon_sym_BSLASHglssymbol] = ACTIONS(6449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6449), - [anon_sym_BSLASHglsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6449), - [anon_sym_BSLASHglsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6449), - [anon_sym_BSLASHglsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6449), - [anon_sym_BSLASHglsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6449), - [anon_sym_BSLASHglsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6449), - [anon_sym_BSLASHnewacronym] = ACTIONS(6449), - [anon_sym_BSLASHacrshort] = ACTIONS(6449), - [anon_sym_BSLASHAcrshort] = ACTIONS(6449), - [anon_sym_BSLASHACRshort] = ACTIONS(6449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6449), - [anon_sym_BSLASHacrlong] = ACTIONS(6449), - [anon_sym_BSLASHAcrlong] = ACTIONS(6449), - [anon_sym_BSLASHACRlong] = ACTIONS(6449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6449), - [anon_sym_BSLASHacrfull] = ACTIONS(6449), - [anon_sym_BSLASHAcrfull] = ACTIONS(6449), - [anon_sym_BSLASHACRfull] = ACTIONS(6449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6449), - [anon_sym_BSLASHacs] = ACTIONS(6449), - [anon_sym_BSLASHAcs] = ACTIONS(6449), - [anon_sym_BSLASHacsp] = ACTIONS(6449), - [anon_sym_BSLASHAcsp] = ACTIONS(6449), - [anon_sym_BSLASHacl] = ACTIONS(6449), - [anon_sym_BSLASHAcl] = ACTIONS(6449), - [anon_sym_BSLASHaclp] = ACTIONS(6449), - [anon_sym_BSLASHAclp] = ACTIONS(6449), - [anon_sym_BSLASHacf] = ACTIONS(6449), - [anon_sym_BSLASHAcf] = ACTIONS(6449), - [anon_sym_BSLASHacfp] = ACTIONS(6449), - [anon_sym_BSLASHAcfp] = ACTIONS(6449), - [anon_sym_BSLASHac] = ACTIONS(6449), - [anon_sym_BSLASHAc] = ACTIONS(6449), - [anon_sym_BSLASHacp] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6449), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6449), - [anon_sym_BSLASHcolor] = ACTIONS(6449), - [anon_sym_BSLASHcolorbox] = ACTIONS(6449), - [anon_sym_BSLASHtextcolor] = ACTIONS(6449), - [anon_sym_BSLASHpagecolor] = ACTIONS(6449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6449), - [anon_sym_BSLASHtext] = ACTIONS(6449), - [anon_sym_BSLASHintertext] = ACTIONS(6449), - [anon_sym_shortintertext] = ACTIONS(6449), - }, - [1259] = { - [sym_command_name] = ACTIONS(6185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_RBRACK] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_EQ] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_BSLASHpart] = ACTIONS(6185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddpart] = ACTIONS(6185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6187), - [anon_sym_BSLASHchapter] = ACTIONS(6185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddchap] = ACTIONS(6185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsection] = ACTIONS(6185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddsec] = ACTIONS(6185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubsection] = ACTIONS(6185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHparagraph] = ACTIONS(6185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6187), - [anon_sym_BSLASHitem] = ACTIONS(6185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6187), - [anon_sym_LBRACE] = ACTIONS(6187), - [sym_word] = ACTIONS(6185), - [sym_placeholder] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6187), - [anon_sym_DASH] = ACTIONS(6187), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_SQUOTE] = ACTIONS(6185), - [anon_sym__] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6187), - [anon_sym_DOLLAR] = ACTIONS(6185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), - [anon_sym_BSLASHbegin] = ACTIONS(6185), - [anon_sym_BSLASHtitle] = ACTIONS(6185), - [anon_sym_BSLASHauthor] = ACTIONS(6185), - [anon_sym_BSLASHusepackage] = ACTIONS(6185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), - [anon_sym_BSLASHinclude] = ACTIONS(6185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), - [anon_sym_BSLASHinput] = ACTIONS(6185), - [anon_sym_BSLASHsubfile] = ACTIONS(6185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), - [anon_sym_BSLASHbibliography] = ACTIONS(6185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), - [anon_sym_BSLASHincludesvg] = ACTIONS(6185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), - [anon_sym_BSLASHimport] = ACTIONS(6185), - [anon_sym_BSLASHsubimport] = ACTIONS(6185), - [anon_sym_BSLASHinputfrom] = ACTIONS(6185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), - [anon_sym_BSLASHincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHcaption] = ACTIONS(6185), - [anon_sym_BSLASHcite] = ACTIONS(6185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCite] = ACTIONS(6185), - [anon_sym_BSLASHnocite] = ACTIONS(6185), - [anon_sym_BSLASHcitet] = ACTIONS(6185), - [anon_sym_BSLASHcitep] = ACTIONS(6185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteauthor] = ACTIONS(6185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitetitle] = ACTIONS(6185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteyear] = ACTIONS(6185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitedate] = ACTIONS(6185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteurl] = ACTIONS(6185), - [anon_sym_BSLASHfullcite] = ACTIONS(6185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), - [anon_sym_BSLASHcitealt] = ACTIONS(6185), - [anon_sym_BSLASHcitealp] = ACTIONS(6185), - [anon_sym_BSLASHcitetext] = ACTIONS(6185), - [anon_sym_BSLASHparencite] = ACTIONS(6185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHParencite] = ACTIONS(6185), - [anon_sym_BSLASHfootcite] = ACTIONS(6185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), - [anon_sym_BSLASHtextcite] = ACTIONS(6185), - [anon_sym_BSLASHTextcite] = ACTIONS(6185), - [anon_sym_BSLASHsmartcite] = ACTIONS(6185), - [anon_sym_BSLASHSmartcite] = ACTIONS(6185), - [anon_sym_BSLASHsupercite] = ACTIONS(6185), - [anon_sym_BSLASHautocite] = ACTIONS(6185), - [anon_sym_BSLASHAutocite] = ACTIONS(6185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHvolcite] = ACTIONS(6185), - [anon_sym_BSLASHVolcite] = ACTIONS(6185), - [anon_sym_BSLASHpvolcite] = ACTIONS(6185), - [anon_sym_BSLASHPvolcite] = ACTIONS(6185), - [anon_sym_BSLASHfvolcite] = ACTIONS(6185), - [anon_sym_BSLASHftvolcite] = ACTIONS(6185), - [anon_sym_BSLASHsvolcite] = ACTIONS(6185), - [anon_sym_BSLASHSvolcite] = ACTIONS(6185), - [anon_sym_BSLASHtvolcite] = ACTIONS(6185), - [anon_sym_BSLASHTvolcite] = ACTIONS(6185), - [anon_sym_BSLASHavolcite] = ACTIONS(6185), - [anon_sym_BSLASHAvolcite] = ACTIONS(6185), - [anon_sym_BSLASHnotecite] = ACTIONS(6185), - [anon_sym_BSLASHNotecite] = ACTIONS(6185), - [anon_sym_BSLASHpnotecite] = ACTIONS(6185), - [anon_sym_BSLASHPnotecite] = ACTIONS(6185), - [anon_sym_BSLASHfnotecite] = ACTIONS(6185), - [anon_sym_BSLASHlabel] = ACTIONS(6185), - [anon_sym_BSLASHref] = ACTIONS(6185), - [anon_sym_BSLASHeqref] = ACTIONS(6185), - [anon_sym_BSLASHvref] = ACTIONS(6185), - [anon_sym_BSLASHVref] = ACTIONS(6185), - [anon_sym_BSLASHautoref] = ACTIONS(6185), - [anon_sym_BSLASHpageref] = ACTIONS(6185), - [anon_sym_BSLASHcref] = ACTIONS(6185), - [anon_sym_BSLASHCref] = ACTIONS(6185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnameCref] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHlabelcref] = ACTIONS(6185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCrefrange] = ACTIONS(6185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnewlabel] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHdef] = ACTIONS(6185), - [anon_sym_BSLASHlet] = ACTIONS(6185), - [anon_sym_BSLASHleft] = ACTIONS(6185), - [anon_sym_BSLASHbig] = ACTIONS(6185), - [anon_sym_BSLASHBig] = ACTIONS(6185), - [anon_sym_BSLASHbigg] = ACTIONS(6185), - [anon_sym_BSLASHBigg] = ACTIONS(6185), - [anon_sym_BSLASHbigl] = ACTIONS(6185), - [anon_sym_BSLASHBigl] = ACTIONS(6185), - [anon_sym_BSLASHbiggl] = ACTIONS(6185), - [anon_sym_BSLASHBiggl] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), - [anon_sym_BSLASHgls] = ACTIONS(6185), - [anon_sym_BSLASHGls] = ACTIONS(6185), - [anon_sym_BSLASHGLS] = ACTIONS(6185), - [anon_sym_BSLASHglspl] = ACTIONS(6185), - [anon_sym_BSLASHGlspl] = ACTIONS(6185), - [anon_sym_BSLASHGLSpl] = ACTIONS(6185), - [anon_sym_BSLASHglsdisp] = ACTIONS(6185), - [anon_sym_BSLASHglslink] = ACTIONS(6185), - [anon_sym_BSLASHglstext] = ACTIONS(6185), - [anon_sym_BSLASHGlstext] = ACTIONS(6185), - [anon_sym_BSLASHGLStext] = ACTIONS(6185), - [anon_sym_BSLASHglsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), - [anon_sym_BSLASHglsplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSplural] = ACTIONS(6185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHglsname] = ACTIONS(6185), - [anon_sym_BSLASHGlsname] = ACTIONS(6185), - [anon_sym_BSLASHGLSname] = ACTIONS(6185), - [anon_sym_BSLASHglssymbol] = ACTIONS(6185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), - [anon_sym_BSLASHglsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), - [anon_sym_BSLASHglsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), - [anon_sym_BSLASHglsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), - [anon_sym_BSLASHglsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), - [anon_sym_BSLASHglsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), - [anon_sym_BSLASHnewacronym] = ACTIONS(6185), - [anon_sym_BSLASHacrshort] = ACTIONS(6185), - [anon_sym_BSLASHAcrshort] = ACTIONS(6185), - [anon_sym_BSLASHACRshort] = ACTIONS(6185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), - [anon_sym_BSLASHacrlong] = ACTIONS(6185), - [anon_sym_BSLASHAcrlong] = ACTIONS(6185), - [anon_sym_BSLASHACRlong] = ACTIONS(6185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), - [anon_sym_BSLASHacrfull] = ACTIONS(6185), - [anon_sym_BSLASHAcrfull] = ACTIONS(6185), - [anon_sym_BSLASHACRfull] = ACTIONS(6185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), - [anon_sym_BSLASHacs] = ACTIONS(6185), - [anon_sym_BSLASHAcs] = ACTIONS(6185), - [anon_sym_BSLASHacsp] = ACTIONS(6185), - [anon_sym_BSLASHAcsp] = ACTIONS(6185), - [anon_sym_BSLASHacl] = ACTIONS(6185), - [anon_sym_BSLASHAcl] = ACTIONS(6185), - [anon_sym_BSLASHaclp] = ACTIONS(6185), - [anon_sym_BSLASHAclp] = ACTIONS(6185), - [anon_sym_BSLASHacf] = ACTIONS(6185), - [anon_sym_BSLASHAcf] = ACTIONS(6185), - [anon_sym_BSLASHacfp] = ACTIONS(6185), - [anon_sym_BSLASHAcfp] = ACTIONS(6185), - [anon_sym_BSLASHac] = ACTIONS(6185), - [anon_sym_BSLASHAc] = ACTIONS(6185), - [anon_sym_BSLASHacp] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), - [anon_sym_BSLASHcolor] = ACTIONS(6185), - [anon_sym_BSLASHcolorbox] = ACTIONS(6185), - [anon_sym_BSLASHtextcolor] = ACTIONS(6185), - [anon_sym_BSLASHpagecolor] = ACTIONS(6185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), - [anon_sym_BSLASHtext] = ACTIONS(6185), - [anon_sym_BSLASHintertext] = ACTIONS(6185), - [anon_sym_shortintertext] = ACTIONS(6185), - }, - [1260] = { - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHpart] = ACTIONS(187), - [anon_sym_BSLASHpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddpart] = ACTIONS(187), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(185), - [anon_sym_BSLASHchapter] = ACTIONS(187), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddchap] = ACTIONS(187), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(185), - [anon_sym_BSLASHsection] = ACTIONS(187), - [anon_sym_BSLASHsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHaddsec] = ACTIONS(187), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubsubsection] = ACTIONS(187), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(185), - [anon_sym_BSLASHparagraph] = ACTIONS(187), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHsubparagraph] = ACTIONS(187), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(185), - [anon_sym_BSLASHitem] = ACTIONS(187), - [anon_sym_BSLASHitem_STAR] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASH_RPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [1261] = { - [sym_command_name] = ACTIONS(6125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6127), - [anon_sym_RBRACK] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6127), - [anon_sym_EQ] = ACTIONS(6127), - [anon_sym_LPAREN] = ACTIONS(6127), - [anon_sym_RPAREN] = ACTIONS(6127), - [anon_sym_BSLASHpart] = ACTIONS(6125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddpart] = ACTIONS(6125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6127), - [anon_sym_BSLASHchapter] = ACTIONS(6125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddchap] = ACTIONS(6125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsection] = ACTIONS(6125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddsec] = ACTIONS(6125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubsection] = ACTIONS(6125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHparagraph] = ACTIONS(6125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6127), - [anon_sym_BSLASHitem] = ACTIONS(6125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6127), - [anon_sym_LBRACE] = ACTIONS(6127), - [sym_word] = ACTIONS(6125), - [sym_placeholder] = ACTIONS(6127), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_LT] = ACTIONS(6125), - [anon_sym_GT] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_SQUOTE] = ACTIONS(6125), - [anon_sym__] = ACTIONS(6127), - [anon_sym_CARET] = ACTIONS(6127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6127), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6127), - [anon_sym_DOLLAR] = ACTIONS(6125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6127), - [anon_sym_BSLASHbegin] = ACTIONS(6125), - [anon_sym_BSLASHtitle] = ACTIONS(6125), - [anon_sym_BSLASHauthor] = ACTIONS(6125), - [anon_sym_BSLASHusepackage] = ACTIONS(6125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6125), - [anon_sym_BSLASHinclude] = ACTIONS(6125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6125), - [anon_sym_BSLASHinput] = ACTIONS(6125), - [anon_sym_BSLASHsubfile] = ACTIONS(6125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6125), - [anon_sym_BSLASHbibliography] = ACTIONS(6125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6125), - [anon_sym_BSLASHincludesvg] = ACTIONS(6125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6125), - [anon_sym_BSLASHimport] = ACTIONS(6125), - [anon_sym_BSLASHsubimport] = ACTIONS(6125), - [anon_sym_BSLASHinputfrom] = ACTIONS(6125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6125), - [anon_sym_BSLASHincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHcaption] = ACTIONS(6125), - [anon_sym_BSLASHcite] = ACTIONS(6125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCite] = ACTIONS(6125), - [anon_sym_BSLASHnocite] = ACTIONS(6125), - [anon_sym_BSLASHcitet] = ACTIONS(6125), - [anon_sym_BSLASHcitep] = ACTIONS(6125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteauthor] = ACTIONS(6125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitetitle] = ACTIONS(6125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteyear] = ACTIONS(6125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitedate] = ACTIONS(6125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteurl] = ACTIONS(6125), - [anon_sym_BSLASHfullcite] = ACTIONS(6125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6125), - [anon_sym_BSLASHcitealt] = ACTIONS(6125), - [anon_sym_BSLASHcitealp] = ACTIONS(6125), - [anon_sym_BSLASHcitetext] = ACTIONS(6125), - [anon_sym_BSLASHparencite] = ACTIONS(6125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHParencite] = ACTIONS(6125), - [anon_sym_BSLASHfootcite] = ACTIONS(6125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6125), - [anon_sym_BSLASHtextcite] = ACTIONS(6125), - [anon_sym_BSLASHTextcite] = ACTIONS(6125), - [anon_sym_BSLASHsmartcite] = ACTIONS(6125), - [anon_sym_BSLASHSmartcite] = ACTIONS(6125), - [anon_sym_BSLASHsupercite] = ACTIONS(6125), - [anon_sym_BSLASHautocite] = ACTIONS(6125), - [anon_sym_BSLASHAutocite] = ACTIONS(6125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHvolcite] = ACTIONS(6125), - [anon_sym_BSLASHVolcite] = ACTIONS(6125), - [anon_sym_BSLASHpvolcite] = ACTIONS(6125), - [anon_sym_BSLASHPvolcite] = ACTIONS(6125), - [anon_sym_BSLASHfvolcite] = ACTIONS(6125), - [anon_sym_BSLASHftvolcite] = ACTIONS(6125), - [anon_sym_BSLASHsvolcite] = ACTIONS(6125), - [anon_sym_BSLASHSvolcite] = ACTIONS(6125), - [anon_sym_BSLASHtvolcite] = ACTIONS(6125), - [anon_sym_BSLASHTvolcite] = ACTIONS(6125), - [anon_sym_BSLASHavolcite] = ACTIONS(6125), - [anon_sym_BSLASHAvolcite] = ACTIONS(6125), - [anon_sym_BSLASHnotecite] = ACTIONS(6125), - [anon_sym_BSLASHNotecite] = ACTIONS(6125), - [anon_sym_BSLASHpnotecite] = ACTIONS(6125), - [anon_sym_BSLASHPnotecite] = ACTIONS(6125), - [anon_sym_BSLASHfnotecite] = ACTIONS(6125), - [anon_sym_BSLASHlabel] = ACTIONS(6125), - [anon_sym_BSLASHref] = ACTIONS(6125), - [anon_sym_BSLASHeqref] = ACTIONS(6125), - [anon_sym_BSLASHvref] = ACTIONS(6125), - [anon_sym_BSLASHVref] = ACTIONS(6125), - [anon_sym_BSLASHautoref] = ACTIONS(6125), - [anon_sym_BSLASHpageref] = ACTIONS(6125), - [anon_sym_BSLASHcref] = ACTIONS(6125), - [anon_sym_BSLASHCref] = ACTIONS(6125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnameCref] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHlabelcref] = ACTIONS(6125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCrefrange] = ACTIONS(6125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnewlabel] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6127), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHdef] = ACTIONS(6125), - [anon_sym_BSLASHlet] = ACTIONS(6125), - [anon_sym_BSLASHleft] = ACTIONS(6125), - [anon_sym_BSLASHbig] = ACTIONS(6125), - [anon_sym_BSLASHBig] = ACTIONS(6125), - [anon_sym_BSLASHbigg] = ACTIONS(6125), - [anon_sym_BSLASHBigg] = ACTIONS(6125), - [anon_sym_BSLASHbigl] = ACTIONS(6125), - [anon_sym_BSLASHBigl] = ACTIONS(6125), - [anon_sym_BSLASHbiggl] = ACTIONS(6125), - [anon_sym_BSLASHBiggl] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6125), - [anon_sym_BSLASHgls] = ACTIONS(6125), - [anon_sym_BSLASHGls] = ACTIONS(6125), - [anon_sym_BSLASHGLS] = ACTIONS(6125), - [anon_sym_BSLASHglspl] = ACTIONS(6125), - [anon_sym_BSLASHGlspl] = ACTIONS(6125), - [anon_sym_BSLASHGLSpl] = ACTIONS(6125), - [anon_sym_BSLASHglsdisp] = ACTIONS(6125), - [anon_sym_BSLASHglslink] = ACTIONS(6125), - [anon_sym_BSLASHglstext] = ACTIONS(6125), - [anon_sym_BSLASHGlstext] = ACTIONS(6125), - [anon_sym_BSLASHGLStext] = ACTIONS(6125), - [anon_sym_BSLASHglsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6125), - [anon_sym_BSLASHglsplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSplural] = ACTIONS(6125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHglsname] = ACTIONS(6125), - [anon_sym_BSLASHGlsname] = ACTIONS(6125), - [anon_sym_BSLASHGLSname] = ACTIONS(6125), - [anon_sym_BSLASHglssymbol] = ACTIONS(6125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6125), - [anon_sym_BSLASHglsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6125), - [anon_sym_BSLASHglsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6125), - [anon_sym_BSLASHglsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6125), - [anon_sym_BSLASHglsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6125), - [anon_sym_BSLASHglsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6125), - [anon_sym_BSLASHnewacronym] = ACTIONS(6125), - [anon_sym_BSLASHacrshort] = ACTIONS(6125), - [anon_sym_BSLASHAcrshort] = ACTIONS(6125), - [anon_sym_BSLASHACRshort] = ACTIONS(6125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6125), - [anon_sym_BSLASHacrlong] = ACTIONS(6125), - [anon_sym_BSLASHAcrlong] = ACTIONS(6125), - [anon_sym_BSLASHACRlong] = ACTIONS(6125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6125), - [anon_sym_BSLASHacrfull] = ACTIONS(6125), - [anon_sym_BSLASHAcrfull] = ACTIONS(6125), - [anon_sym_BSLASHACRfull] = ACTIONS(6125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6125), - [anon_sym_BSLASHacs] = ACTIONS(6125), - [anon_sym_BSLASHAcs] = ACTIONS(6125), - [anon_sym_BSLASHacsp] = ACTIONS(6125), - [anon_sym_BSLASHAcsp] = ACTIONS(6125), - [anon_sym_BSLASHacl] = ACTIONS(6125), - [anon_sym_BSLASHAcl] = ACTIONS(6125), - [anon_sym_BSLASHaclp] = ACTIONS(6125), - [anon_sym_BSLASHAclp] = ACTIONS(6125), - [anon_sym_BSLASHacf] = ACTIONS(6125), - [anon_sym_BSLASHAcf] = ACTIONS(6125), - [anon_sym_BSLASHacfp] = ACTIONS(6125), - [anon_sym_BSLASHAcfp] = ACTIONS(6125), - [anon_sym_BSLASHac] = ACTIONS(6125), - [anon_sym_BSLASHAc] = ACTIONS(6125), - [anon_sym_BSLASHacp] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6125), - [anon_sym_BSLASHcolor] = ACTIONS(6125), - [anon_sym_BSLASHcolorbox] = ACTIONS(6125), - [anon_sym_BSLASHtextcolor] = ACTIONS(6125), - [anon_sym_BSLASHpagecolor] = ACTIONS(6125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6125), - [anon_sym_BSLASHtext] = ACTIONS(6125), - [anon_sym_BSLASHintertext] = ACTIONS(6125), - [anon_sym_shortintertext] = ACTIONS(6125), - }, - [1262] = { - [sym_command_name] = ACTIONS(6329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6329), - [anon_sym_LBRACK] = ACTIONS(6331), - [anon_sym_RBRACK] = ACTIONS(6331), - [anon_sym_COMMA] = ACTIONS(6331), - [anon_sym_EQ] = ACTIONS(6331), - [anon_sym_LPAREN] = ACTIONS(6331), - [anon_sym_RPAREN] = ACTIONS(6331), - [anon_sym_BSLASHpart] = ACTIONS(6329), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddpart] = ACTIONS(6329), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6331), - [anon_sym_BSLASHchapter] = ACTIONS(6329), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddchap] = ACTIONS(6329), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsection] = ACTIONS(6329), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddsec] = ACTIONS(6329), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubsection] = ACTIONS(6329), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6329), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHparagraph] = ACTIONS(6329), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6329), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6331), - [anon_sym_BSLASHitem] = ACTIONS(6329), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6331), - [sym_word] = ACTIONS(6329), - [sym_placeholder] = ACTIONS(6331), - [anon_sym_PLUS] = ACTIONS(6331), - [anon_sym_DASH] = ACTIONS(6331), - [anon_sym_STAR] = ACTIONS(6331), - [anon_sym_SLASH] = ACTIONS(6331), - [anon_sym_LT] = ACTIONS(6329), - [anon_sym_GT] = ACTIONS(6329), - [anon_sym_BANG] = ACTIONS(6329), - [anon_sym_PIPE] = ACTIONS(6329), - [anon_sym_COLON] = ACTIONS(6329), - [anon_sym_SQUOTE] = ACTIONS(6329), - [anon_sym__] = ACTIONS(6331), - [anon_sym_CARET] = ACTIONS(6331), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6331), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6331), - [anon_sym_DOLLAR] = ACTIONS(6329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6331), - [anon_sym_BSLASHbegin] = ACTIONS(6329), - [anon_sym_BSLASHtitle] = ACTIONS(6329), - [anon_sym_BSLASHauthor] = ACTIONS(6329), - [anon_sym_BSLASHusepackage] = ACTIONS(6329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6329), - [anon_sym_BSLASHinclude] = ACTIONS(6329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6329), - [anon_sym_BSLASHinput] = ACTIONS(6329), - [anon_sym_BSLASHsubfile] = ACTIONS(6329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6329), - [anon_sym_BSLASHbibliography] = ACTIONS(6329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6329), - [anon_sym_BSLASHincludesvg] = ACTIONS(6329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6329), - [anon_sym_BSLASHimport] = ACTIONS(6329), - [anon_sym_BSLASHsubimport] = ACTIONS(6329), - [anon_sym_BSLASHinputfrom] = ACTIONS(6329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6329), - [anon_sym_BSLASHincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHcaption] = ACTIONS(6329), - [anon_sym_BSLASHcite] = ACTIONS(6329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCite] = ACTIONS(6329), - [anon_sym_BSLASHnocite] = ACTIONS(6329), - [anon_sym_BSLASHcitet] = ACTIONS(6329), - [anon_sym_BSLASHcitep] = ACTIONS(6329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteauthor] = ACTIONS(6329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitetitle] = ACTIONS(6329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteyear] = ACTIONS(6329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitedate] = ACTIONS(6329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteurl] = ACTIONS(6329), - [anon_sym_BSLASHfullcite] = ACTIONS(6329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6329), - [anon_sym_BSLASHcitealt] = ACTIONS(6329), - [anon_sym_BSLASHcitealp] = ACTIONS(6329), - [anon_sym_BSLASHcitetext] = ACTIONS(6329), - [anon_sym_BSLASHparencite] = ACTIONS(6329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHParencite] = ACTIONS(6329), - [anon_sym_BSLASHfootcite] = ACTIONS(6329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6329), - [anon_sym_BSLASHtextcite] = ACTIONS(6329), - [anon_sym_BSLASHTextcite] = ACTIONS(6329), - [anon_sym_BSLASHsmartcite] = ACTIONS(6329), - [anon_sym_BSLASHSmartcite] = ACTIONS(6329), - [anon_sym_BSLASHsupercite] = ACTIONS(6329), - [anon_sym_BSLASHautocite] = ACTIONS(6329), - [anon_sym_BSLASHAutocite] = ACTIONS(6329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHvolcite] = ACTIONS(6329), - [anon_sym_BSLASHVolcite] = ACTIONS(6329), - [anon_sym_BSLASHpvolcite] = ACTIONS(6329), - [anon_sym_BSLASHPvolcite] = ACTIONS(6329), - [anon_sym_BSLASHfvolcite] = ACTIONS(6329), - [anon_sym_BSLASHftvolcite] = ACTIONS(6329), - [anon_sym_BSLASHsvolcite] = ACTIONS(6329), - [anon_sym_BSLASHSvolcite] = ACTIONS(6329), - [anon_sym_BSLASHtvolcite] = ACTIONS(6329), - [anon_sym_BSLASHTvolcite] = ACTIONS(6329), - [anon_sym_BSLASHavolcite] = ACTIONS(6329), - [anon_sym_BSLASHAvolcite] = ACTIONS(6329), - [anon_sym_BSLASHnotecite] = ACTIONS(6329), - [anon_sym_BSLASHNotecite] = ACTIONS(6329), - [anon_sym_BSLASHpnotecite] = ACTIONS(6329), - [anon_sym_BSLASHPnotecite] = ACTIONS(6329), - [anon_sym_BSLASHfnotecite] = ACTIONS(6329), - [anon_sym_BSLASHlabel] = ACTIONS(6329), - [anon_sym_BSLASHref] = ACTIONS(6329), - [anon_sym_BSLASHeqref] = ACTIONS(6329), - [anon_sym_BSLASHvref] = ACTIONS(6329), - [anon_sym_BSLASHVref] = ACTIONS(6329), - [anon_sym_BSLASHautoref] = ACTIONS(6329), - [anon_sym_BSLASHpageref] = ACTIONS(6329), - [anon_sym_BSLASHcref] = ACTIONS(6329), - [anon_sym_BSLASHCref] = ACTIONS(6329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnameCref] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHlabelcref] = ACTIONS(6329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCrefrange] = ACTIONS(6329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnewlabel] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6331), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHdef] = ACTIONS(6329), - [anon_sym_BSLASHlet] = ACTIONS(6329), - [anon_sym_BSLASHleft] = ACTIONS(6329), - [anon_sym_BSLASHbig] = ACTIONS(6329), - [anon_sym_BSLASHBig] = ACTIONS(6329), - [anon_sym_BSLASHbigg] = ACTIONS(6329), - [anon_sym_BSLASHBigg] = ACTIONS(6329), - [anon_sym_BSLASHbigl] = ACTIONS(6329), - [anon_sym_BSLASHBigl] = ACTIONS(6329), - [anon_sym_BSLASHbiggl] = ACTIONS(6329), - [anon_sym_BSLASHBiggl] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6329), - [anon_sym_BSLASHgls] = ACTIONS(6329), - [anon_sym_BSLASHGls] = ACTIONS(6329), - [anon_sym_BSLASHGLS] = ACTIONS(6329), - [anon_sym_BSLASHglspl] = ACTIONS(6329), - [anon_sym_BSLASHGlspl] = ACTIONS(6329), - [anon_sym_BSLASHGLSpl] = ACTIONS(6329), - [anon_sym_BSLASHglsdisp] = ACTIONS(6329), - [anon_sym_BSLASHglslink] = ACTIONS(6329), - [anon_sym_BSLASHglstext] = ACTIONS(6329), - [anon_sym_BSLASHGlstext] = ACTIONS(6329), - [anon_sym_BSLASHGLStext] = ACTIONS(6329), - [anon_sym_BSLASHglsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6329), - [anon_sym_BSLASHglsplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSplural] = ACTIONS(6329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHglsname] = ACTIONS(6329), - [anon_sym_BSLASHGlsname] = ACTIONS(6329), - [anon_sym_BSLASHGLSname] = ACTIONS(6329), - [anon_sym_BSLASHglssymbol] = ACTIONS(6329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6329), - [anon_sym_BSLASHglsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6329), - [anon_sym_BSLASHglsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6329), - [anon_sym_BSLASHglsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6329), - [anon_sym_BSLASHglsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6329), - [anon_sym_BSLASHglsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6329), - [anon_sym_BSLASHnewacronym] = ACTIONS(6329), - [anon_sym_BSLASHacrshort] = ACTIONS(6329), - [anon_sym_BSLASHAcrshort] = ACTIONS(6329), - [anon_sym_BSLASHACRshort] = ACTIONS(6329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6329), - [anon_sym_BSLASHacrlong] = ACTIONS(6329), - [anon_sym_BSLASHAcrlong] = ACTIONS(6329), - [anon_sym_BSLASHACRlong] = ACTIONS(6329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6329), - [anon_sym_BSLASHacrfull] = ACTIONS(6329), - [anon_sym_BSLASHAcrfull] = ACTIONS(6329), - [anon_sym_BSLASHACRfull] = ACTIONS(6329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6329), - [anon_sym_BSLASHacs] = ACTIONS(6329), - [anon_sym_BSLASHAcs] = ACTIONS(6329), - [anon_sym_BSLASHacsp] = ACTIONS(6329), - [anon_sym_BSLASHAcsp] = ACTIONS(6329), - [anon_sym_BSLASHacl] = ACTIONS(6329), - [anon_sym_BSLASHAcl] = ACTIONS(6329), - [anon_sym_BSLASHaclp] = ACTIONS(6329), - [anon_sym_BSLASHAclp] = ACTIONS(6329), - [anon_sym_BSLASHacf] = ACTIONS(6329), - [anon_sym_BSLASHAcf] = ACTIONS(6329), - [anon_sym_BSLASHacfp] = ACTIONS(6329), - [anon_sym_BSLASHAcfp] = ACTIONS(6329), - [anon_sym_BSLASHac] = ACTIONS(6329), - [anon_sym_BSLASHAc] = ACTIONS(6329), - [anon_sym_BSLASHacp] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6329), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6329), - [anon_sym_BSLASHcolor] = ACTIONS(6329), - [anon_sym_BSLASHcolorbox] = ACTIONS(6329), - [anon_sym_BSLASHtextcolor] = ACTIONS(6329), - [anon_sym_BSLASHpagecolor] = ACTIONS(6329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6329), - [anon_sym_BSLASHtext] = ACTIONS(6329), - [anon_sym_BSLASHintertext] = ACTIONS(6329), - [anon_sym_shortintertext] = ACTIONS(6329), - }, - [1263] = { - [sym_command_name] = ACTIONS(6321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(6323), - [anon_sym_RBRACK] = ACTIONS(6323), - [anon_sym_COMMA] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(6323), - [anon_sym_LPAREN] = ACTIONS(6323), - [anon_sym_RPAREN] = ACTIONS(6323), - [anon_sym_BSLASHpart] = ACTIONS(6321), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddpart] = ACTIONS(6321), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6323), - [anon_sym_BSLASHchapter] = ACTIONS(6321), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddchap] = ACTIONS(6321), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsection] = ACTIONS(6321), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddsec] = ACTIONS(6321), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubsection] = ACTIONS(6321), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6321), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHparagraph] = ACTIONS(6321), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6321), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6323), - [anon_sym_BSLASHitem] = ACTIONS(6321), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6323), - [anon_sym_LBRACE] = ACTIONS(6323), - [sym_word] = ACTIONS(6321), - [sym_placeholder] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6323), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_LT] = ACTIONS(6321), - [anon_sym_GT] = ACTIONS(6321), - [anon_sym_BANG] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_SQUOTE] = ACTIONS(6321), - [anon_sym__] = ACTIONS(6323), - [anon_sym_CARET] = ACTIONS(6323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6323), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6323), - [anon_sym_DOLLAR] = ACTIONS(6321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6323), - [anon_sym_BSLASHbegin] = ACTIONS(6321), - [anon_sym_BSLASHtitle] = ACTIONS(6321), - [anon_sym_BSLASHauthor] = ACTIONS(6321), - [anon_sym_BSLASHusepackage] = ACTIONS(6321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6321), - [anon_sym_BSLASHinclude] = ACTIONS(6321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6321), - [anon_sym_BSLASHinput] = ACTIONS(6321), - [anon_sym_BSLASHsubfile] = ACTIONS(6321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6321), - [anon_sym_BSLASHbibliography] = ACTIONS(6321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6321), - [anon_sym_BSLASHincludesvg] = ACTIONS(6321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6321), - [anon_sym_BSLASHimport] = ACTIONS(6321), - [anon_sym_BSLASHsubimport] = ACTIONS(6321), - [anon_sym_BSLASHinputfrom] = ACTIONS(6321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6321), - [anon_sym_BSLASHincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHcaption] = ACTIONS(6321), - [anon_sym_BSLASHcite] = ACTIONS(6321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCite] = ACTIONS(6321), - [anon_sym_BSLASHnocite] = ACTIONS(6321), - [anon_sym_BSLASHcitet] = ACTIONS(6321), - [anon_sym_BSLASHcitep] = ACTIONS(6321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteauthor] = ACTIONS(6321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitetitle] = ACTIONS(6321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteyear] = ACTIONS(6321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitedate] = ACTIONS(6321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteurl] = ACTIONS(6321), - [anon_sym_BSLASHfullcite] = ACTIONS(6321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6321), - [anon_sym_BSLASHcitealt] = ACTIONS(6321), - [anon_sym_BSLASHcitealp] = ACTIONS(6321), - [anon_sym_BSLASHcitetext] = ACTIONS(6321), - [anon_sym_BSLASHparencite] = ACTIONS(6321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHParencite] = ACTIONS(6321), - [anon_sym_BSLASHfootcite] = ACTIONS(6321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6321), - [anon_sym_BSLASHtextcite] = ACTIONS(6321), - [anon_sym_BSLASHTextcite] = ACTIONS(6321), - [anon_sym_BSLASHsmartcite] = ACTIONS(6321), - [anon_sym_BSLASHSmartcite] = ACTIONS(6321), - [anon_sym_BSLASHsupercite] = ACTIONS(6321), - [anon_sym_BSLASHautocite] = ACTIONS(6321), - [anon_sym_BSLASHAutocite] = ACTIONS(6321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHvolcite] = ACTIONS(6321), - [anon_sym_BSLASHVolcite] = ACTIONS(6321), - [anon_sym_BSLASHpvolcite] = ACTIONS(6321), - [anon_sym_BSLASHPvolcite] = ACTIONS(6321), - [anon_sym_BSLASHfvolcite] = ACTIONS(6321), - [anon_sym_BSLASHftvolcite] = ACTIONS(6321), - [anon_sym_BSLASHsvolcite] = ACTIONS(6321), - [anon_sym_BSLASHSvolcite] = ACTIONS(6321), - [anon_sym_BSLASHtvolcite] = ACTIONS(6321), - [anon_sym_BSLASHTvolcite] = ACTIONS(6321), - [anon_sym_BSLASHavolcite] = ACTIONS(6321), - [anon_sym_BSLASHAvolcite] = ACTIONS(6321), - [anon_sym_BSLASHnotecite] = ACTIONS(6321), - [anon_sym_BSLASHNotecite] = ACTIONS(6321), - [anon_sym_BSLASHpnotecite] = ACTIONS(6321), - [anon_sym_BSLASHPnotecite] = ACTIONS(6321), - [anon_sym_BSLASHfnotecite] = ACTIONS(6321), - [anon_sym_BSLASHlabel] = ACTIONS(6321), - [anon_sym_BSLASHref] = ACTIONS(6321), - [anon_sym_BSLASHeqref] = ACTIONS(6321), - [anon_sym_BSLASHvref] = ACTIONS(6321), - [anon_sym_BSLASHVref] = ACTIONS(6321), - [anon_sym_BSLASHautoref] = ACTIONS(6321), - [anon_sym_BSLASHpageref] = ACTIONS(6321), - [anon_sym_BSLASHcref] = ACTIONS(6321), - [anon_sym_BSLASHCref] = ACTIONS(6321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnameCref] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHlabelcref] = ACTIONS(6321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCrefrange] = ACTIONS(6321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnewlabel] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6323), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHdef] = ACTIONS(6321), - [anon_sym_BSLASHlet] = ACTIONS(6321), - [anon_sym_BSLASHleft] = ACTIONS(6321), - [anon_sym_BSLASHbig] = ACTIONS(6321), - [anon_sym_BSLASHBig] = ACTIONS(6321), - [anon_sym_BSLASHbigg] = ACTIONS(6321), - [anon_sym_BSLASHBigg] = ACTIONS(6321), - [anon_sym_BSLASHbigl] = ACTIONS(6321), - [anon_sym_BSLASHBigl] = ACTIONS(6321), - [anon_sym_BSLASHbiggl] = ACTIONS(6321), - [anon_sym_BSLASHBiggl] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6321), - [anon_sym_BSLASHgls] = ACTIONS(6321), - [anon_sym_BSLASHGls] = ACTIONS(6321), - [anon_sym_BSLASHGLS] = ACTIONS(6321), - [anon_sym_BSLASHglspl] = ACTIONS(6321), - [anon_sym_BSLASHGlspl] = ACTIONS(6321), - [anon_sym_BSLASHGLSpl] = ACTIONS(6321), - [anon_sym_BSLASHglsdisp] = ACTIONS(6321), - [anon_sym_BSLASHglslink] = ACTIONS(6321), - [anon_sym_BSLASHglstext] = ACTIONS(6321), - [anon_sym_BSLASHGlstext] = ACTIONS(6321), - [anon_sym_BSLASHGLStext] = ACTIONS(6321), - [anon_sym_BSLASHglsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6321), - [anon_sym_BSLASHglsplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSplural] = ACTIONS(6321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHglsname] = ACTIONS(6321), - [anon_sym_BSLASHGlsname] = ACTIONS(6321), - [anon_sym_BSLASHGLSname] = ACTIONS(6321), - [anon_sym_BSLASHglssymbol] = ACTIONS(6321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6321), - [anon_sym_BSLASHglsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6321), - [anon_sym_BSLASHglsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6321), - [anon_sym_BSLASHglsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6321), - [anon_sym_BSLASHglsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6321), - [anon_sym_BSLASHglsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6321), - [anon_sym_BSLASHnewacronym] = ACTIONS(6321), - [anon_sym_BSLASHacrshort] = ACTIONS(6321), - [anon_sym_BSLASHAcrshort] = ACTIONS(6321), - [anon_sym_BSLASHACRshort] = ACTIONS(6321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6321), - [anon_sym_BSLASHacrlong] = ACTIONS(6321), - [anon_sym_BSLASHAcrlong] = ACTIONS(6321), - [anon_sym_BSLASHACRlong] = ACTIONS(6321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6321), - [anon_sym_BSLASHacrfull] = ACTIONS(6321), - [anon_sym_BSLASHAcrfull] = ACTIONS(6321), - [anon_sym_BSLASHACRfull] = ACTIONS(6321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6321), - [anon_sym_BSLASHacs] = ACTIONS(6321), - [anon_sym_BSLASHAcs] = ACTIONS(6321), - [anon_sym_BSLASHacsp] = ACTIONS(6321), - [anon_sym_BSLASHAcsp] = ACTIONS(6321), - [anon_sym_BSLASHacl] = ACTIONS(6321), - [anon_sym_BSLASHAcl] = ACTIONS(6321), - [anon_sym_BSLASHaclp] = ACTIONS(6321), - [anon_sym_BSLASHAclp] = ACTIONS(6321), - [anon_sym_BSLASHacf] = ACTIONS(6321), - [anon_sym_BSLASHAcf] = ACTIONS(6321), - [anon_sym_BSLASHacfp] = ACTIONS(6321), - [anon_sym_BSLASHAcfp] = ACTIONS(6321), - [anon_sym_BSLASHac] = ACTIONS(6321), - [anon_sym_BSLASHAc] = ACTIONS(6321), - [anon_sym_BSLASHacp] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6321), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6321), - [anon_sym_BSLASHcolor] = ACTIONS(6321), - [anon_sym_BSLASHcolorbox] = ACTIONS(6321), - [anon_sym_BSLASHtextcolor] = ACTIONS(6321), - [anon_sym_BSLASHpagecolor] = ACTIONS(6321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6321), - [anon_sym_BSLASHtext] = ACTIONS(6321), - [anon_sym_BSLASHintertext] = ACTIONS(6321), - [anon_sym_shortintertext] = ACTIONS(6321), - }, - [1264] = { - [sym_command_name] = ACTIONS(6401), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6401), - [anon_sym_LBRACK] = ACTIONS(6403), - [anon_sym_RBRACK] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(6403), - [anon_sym_EQ] = ACTIONS(6403), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(6403), - [anon_sym_BSLASHpart] = ACTIONS(6401), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddpart] = ACTIONS(6401), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6403), - [anon_sym_BSLASHchapter] = ACTIONS(6401), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddchap] = ACTIONS(6401), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsection] = ACTIONS(6401), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddsec] = ACTIONS(6401), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubsection] = ACTIONS(6401), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6401), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHparagraph] = ACTIONS(6401), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6401), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6403), - [anon_sym_BSLASHitem] = ACTIONS(6401), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6403), - [anon_sym_LBRACE] = ACTIONS(6403), - [sym_word] = ACTIONS(6401), - [sym_placeholder] = ACTIONS(6403), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6403), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_LT] = ACTIONS(6401), - [anon_sym_GT] = ACTIONS(6401), - [anon_sym_BANG] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_SQUOTE] = ACTIONS(6401), - [anon_sym__] = ACTIONS(6403), - [anon_sym_CARET] = ACTIONS(6403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6403), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6403), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6403), - [anon_sym_DOLLAR] = ACTIONS(6401), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6403), - [anon_sym_BSLASHbegin] = ACTIONS(6401), - [anon_sym_BSLASHtitle] = ACTIONS(6401), - [anon_sym_BSLASHauthor] = ACTIONS(6401), - [anon_sym_BSLASHusepackage] = ACTIONS(6401), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6401), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6401), - [anon_sym_BSLASHinclude] = ACTIONS(6401), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6401), - [anon_sym_BSLASHinput] = ACTIONS(6401), - [anon_sym_BSLASHsubfile] = ACTIONS(6401), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6401), - [anon_sym_BSLASHbibliography] = ACTIONS(6401), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6401), - [anon_sym_BSLASHincludesvg] = ACTIONS(6401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6401), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6401), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6401), - [anon_sym_BSLASHimport] = ACTIONS(6401), - [anon_sym_BSLASHsubimport] = ACTIONS(6401), - [anon_sym_BSLASHinputfrom] = ACTIONS(6401), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6401), - [anon_sym_BSLASHincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHcaption] = ACTIONS(6401), - [anon_sym_BSLASHcite] = ACTIONS(6401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCite] = ACTIONS(6401), - [anon_sym_BSLASHnocite] = ACTIONS(6401), - [anon_sym_BSLASHcitet] = ACTIONS(6401), - [anon_sym_BSLASHcitep] = ACTIONS(6401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteauthor] = ACTIONS(6401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitetitle] = ACTIONS(6401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteyear] = ACTIONS(6401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitedate] = ACTIONS(6401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteurl] = ACTIONS(6401), - [anon_sym_BSLASHfullcite] = ACTIONS(6401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6401), - [anon_sym_BSLASHcitealt] = ACTIONS(6401), - [anon_sym_BSLASHcitealp] = ACTIONS(6401), - [anon_sym_BSLASHcitetext] = ACTIONS(6401), - [anon_sym_BSLASHparencite] = ACTIONS(6401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHParencite] = ACTIONS(6401), - [anon_sym_BSLASHfootcite] = ACTIONS(6401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6401), - [anon_sym_BSLASHtextcite] = ACTIONS(6401), - [anon_sym_BSLASHTextcite] = ACTIONS(6401), - [anon_sym_BSLASHsmartcite] = ACTIONS(6401), - [anon_sym_BSLASHSmartcite] = ACTIONS(6401), - [anon_sym_BSLASHsupercite] = ACTIONS(6401), - [anon_sym_BSLASHautocite] = ACTIONS(6401), - [anon_sym_BSLASHAutocite] = ACTIONS(6401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHvolcite] = ACTIONS(6401), - [anon_sym_BSLASHVolcite] = ACTIONS(6401), - [anon_sym_BSLASHpvolcite] = ACTIONS(6401), - [anon_sym_BSLASHPvolcite] = ACTIONS(6401), - [anon_sym_BSLASHfvolcite] = ACTIONS(6401), - [anon_sym_BSLASHftvolcite] = ACTIONS(6401), - [anon_sym_BSLASHsvolcite] = ACTIONS(6401), - [anon_sym_BSLASHSvolcite] = ACTIONS(6401), - [anon_sym_BSLASHtvolcite] = ACTIONS(6401), - [anon_sym_BSLASHTvolcite] = ACTIONS(6401), - [anon_sym_BSLASHavolcite] = ACTIONS(6401), - [anon_sym_BSLASHAvolcite] = ACTIONS(6401), - [anon_sym_BSLASHnotecite] = ACTIONS(6401), - [anon_sym_BSLASHNotecite] = ACTIONS(6401), - [anon_sym_BSLASHpnotecite] = ACTIONS(6401), - [anon_sym_BSLASHPnotecite] = ACTIONS(6401), - [anon_sym_BSLASHfnotecite] = ACTIONS(6401), - [anon_sym_BSLASHlabel] = ACTIONS(6401), - [anon_sym_BSLASHref] = ACTIONS(6401), - [anon_sym_BSLASHeqref] = ACTIONS(6401), - [anon_sym_BSLASHvref] = ACTIONS(6401), - [anon_sym_BSLASHVref] = ACTIONS(6401), - [anon_sym_BSLASHautoref] = ACTIONS(6401), - [anon_sym_BSLASHpageref] = ACTIONS(6401), - [anon_sym_BSLASHcref] = ACTIONS(6401), - [anon_sym_BSLASHCref] = ACTIONS(6401), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnameCref] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHlabelcref] = ACTIONS(6401), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCrefrange] = ACTIONS(6401), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnewlabel] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6401), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6401), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6403), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHdef] = ACTIONS(6401), - [anon_sym_BSLASHlet] = ACTIONS(6401), - [anon_sym_BSLASHleft] = ACTIONS(6401), - [anon_sym_BSLASHbig] = ACTIONS(6401), - [anon_sym_BSLASHBig] = ACTIONS(6401), - [anon_sym_BSLASHbigg] = ACTIONS(6401), - [anon_sym_BSLASHBigg] = ACTIONS(6401), - [anon_sym_BSLASHbigl] = ACTIONS(6401), - [anon_sym_BSLASHBigl] = ACTIONS(6401), - [anon_sym_BSLASHbiggl] = ACTIONS(6401), - [anon_sym_BSLASHBiggl] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6401), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6401), - [anon_sym_BSLASHgls] = ACTIONS(6401), - [anon_sym_BSLASHGls] = ACTIONS(6401), - [anon_sym_BSLASHGLS] = ACTIONS(6401), - [anon_sym_BSLASHglspl] = ACTIONS(6401), - [anon_sym_BSLASHGlspl] = ACTIONS(6401), - [anon_sym_BSLASHGLSpl] = ACTIONS(6401), - [anon_sym_BSLASHglsdisp] = ACTIONS(6401), - [anon_sym_BSLASHglslink] = ACTIONS(6401), - [anon_sym_BSLASHglstext] = ACTIONS(6401), - [anon_sym_BSLASHGlstext] = ACTIONS(6401), - [anon_sym_BSLASHGLStext] = ACTIONS(6401), - [anon_sym_BSLASHglsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6401), - [anon_sym_BSLASHglsplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSplural] = ACTIONS(6401), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHglsname] = ACTIONS(6401), - [anon_sym_BSLASHGlsname] = ACTIONS(6401), - [anon_sym_BSLASHGLSname] = ACTIONS(6401), - [anon_sym_BSLASHglssymbol] = ACTIONS(6401), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6401), - [anon_sym_BSLASHglsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6401), - [anon_sym_BSLASHglsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6401), - [anon_sym_BSLASHglsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6401), - [anon_sym_BSLASHglsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6401), - [anon_sym_BSLASHglsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6401), - [anon_sym_BSLASHnewacronym] = ACTIONS(6401), - [anon_sym_BSLASHacrshort] = ACTIONS(6401), - [anon_sym_BSLASHAcrshort] = ACTIONS(6401), - [anon_sym_BSLASHACRshort] = ACTIONS(6401), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6401), - [anon_sym_BSLASHacrlong] = ACTIONS(6401), - [anon_sym_BSLASHAcrlong] = ACTIONS(6401), - [anon_sym_BSLASHACRlong] = ACTIONS(6401), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6401), - [anon_sym_BSLASHacrfull] = ACTIONS(6401), - [anon_sym_BSLASHAcrfull] = ACTIONS(6401), - [anon_sym_BSLASHACRfull] = ACTIONS(6401), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6401), - [anon_sym_BSLASHacs] = ACTIONS(6401), - [anon_sym_BSLASHAcs] = ACTIONS(6401), - [anon_sym_BSLASHacsp] = ACTIONS(6401), - [anon_sym_BSLASHAcsp] = ACTIONS(6401), - [anon_sym_BSLASHacl] = ACTIONS(6401), - [anon_sym_BSLASHAcl] = ACTIONS(6401), - [anon_sym_BSLASHaclp] = ACTIONS(6401), - [anon_sym_BSLASHAclp] = ACTIONS(6401), - [anon_sym_BSLASHacf] = ACTIONS(6401), - [anon_sym_BSLASHAcf] = ACTIONS(6401), - [anon_sym_BSLASHacfp] = ACTIONS(6401), - [anon_sym_BSLASHAcfp] = ACTIONS(6401), - [anon_sym_BSLASHac] = ACTIONS(6401), - [anon_sym_BSLASHAc] = ACTIONS(6401), - [anon_sym_BSLASHacp] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6401), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6401), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6401), - [anon_sym_BSLASHcolor] = ACTIONS(6401), - [anon_sym_BSLASHcolorbox] = ACTIONS(6401), - [anon_sym_BSLASHtextcolor] = ACTIONS(6401), - [anon_sym_BSLASHpagecolor] = ACTIONS(6401), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6401), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6401), - [anon_sym_BSLASHtext] = ACTIONS(6401), - [anon_sym_BSLASHintertext] = ACTIONS(6401), - [anon_sym_shortintertext] = ACTIONS(6401), - }, - [1265] = { - [sym_command_name] = ACTIONS(6293), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(6295), - [anon_sym_RBRACK] = ACTIONS(6295), - [anon_sym_COMMA] = ACTIONS(6295), - [anon_sym_EQ] = ACTIONS(6295), - [anon_sym_LPAREN] = ACTIONS(6295), - [anon_sym_RPAREN] = ACTIONS(6295), - [anon_sym_BSLASHpart] = ACTIONS(6293), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddpart] = ACTIONS(6293), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6295), - [anon_sym_BSLASHchapter] = ACTIONS(6293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddchap] = ACTIONS(6293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsection] = ACTIONS(6293), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddsec] = ACTIONS(6293), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubsection] = ACTIONS(6293), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6293), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHparagraph] = ACTIONS(6293), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6293), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6295), - [anon_sym_BSLASHitem] = ACTIONS(6293), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6295), - [anon_sym_LBRACE] = ACTIONS(6295), - [sym_word] = ACTIONS(6293), - [sym_placeholder] = ACTIONS(6295), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6295), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_LT] = ACTIONS(6293), - [anon_sym_GT] = ACTIONS(6293), - [anon_sym_BANG] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_SQUOTE] = ACTIONS(6293), - [anon_sym__] = ACTIONS(6295), - [anon_sym_CARET] = ACTIONS(6295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6295), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6295), - [anon_sym_DOLLAR] = ACTIONS(6293), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6295), - [anon_sym_BSLASHbegin] = ACTIONS(6293), - [anon_sym_BSLASHtitle] = ACTIONS(6293), - [anon_sym_BSLASHauthor] = ACTIONS(6293), - [anon_sym_BSLASHusepackage] = ACTIONS(6293), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6293), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6293), - [anon_sym_BSLASHinclude] = ACTIONS(6293), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6293), - [anon_sym_BSLASHinput] = ACTIONS(6293), - [anon_sym_BSLASHsubfile] = ACTIONS(6293), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6293), - [anon_sym_BSLASHbibliography] = ACTIONS(6293), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6293), - [anon_sym_BSLASHincludesvg] = ACTIONS(6293), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6293), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6293), - [anon_sym_BSLASHimport] = ACTIONS(6293), - [anon_sym_BSLASHsubimport] = ACTIONS(6293), - [anon_sym_BSLASHinputfrom] = ACTIONS(6293), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6293), - [anon_sym_BSLASHincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHcaption] = ACTIONS(6293), - [anon_sym_BSLASHcite] = ACTIONS(6293), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCite] = ACTIONS(6293), - [anon_sym_BSLASHnocite] = ACTIONS(6293), - [anon_sym_BSLASHcitet] = ACTIONS(6293), - [anon_sym_BSLASHcitep] = ACTIONS(6293), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteauthor] = ACTIONS(6293), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6293), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitetitle] = ACTIONS(6293), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteyear] = ACTIONS(6293), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitedate] = ACTIONS(6293), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteurl] = ACTIONS(6293), - [anon_sym_BSLASHfullcite] = ACTIONS(6293), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6293), - [anon_sym_BSLASHcitealt] = ACTIONS(6293), - [anon_sym_BSLASHcitealp] = ACTIONS(6293), - [anon_sym_BSLASHcitetext] = ACTIONS(6293), - [anon_sym_BSLASHparencite] = ACTIONS(6293), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHParencite] = ACTIONS(6293), - [anon_sym_BSLASHfootcite] = ACTIONS(6293), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6293), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6293), - [anon_sym_BSLASHtextcite] = ACTIONS(6293), - [anon_sym_BSLASHTextcite] = ACTIONS(6293), - [anon_sym_BSLASHsmartcite] = ACTIONS(6293), - [anon_sym_BSLASHSmartcite] = ACTIONS(6293), - [anon_sym_BSLASHsupercite] = ACTIONS(6293), - [anon_sym_BSLASHautocite] = ACTIONS(6293), - [anon_sym_BSLASHAutocite] = ACTIONS(6293), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHvolcite] = ACTIONS(6293), - [anon_sym_BSLASHVolcite] = ACTIONS(6293), - [anon_sym_BSLASHpvolcite] = ACTIONS(6293), - [anon_sym_BSLASHPvolcite] = ACTIONS(6293), - [anon_sym_BSLASHfvolcite] = ACTIONS(6293), - [anon_sym_BSLASHftvolcite] = ACTIONS(6293), - [anon_sym_BSLASHsvolcite] = ACTIONS(6293), - [anon_sym_BSLASHSvolcite] = ACTIONS(6293), - [anon_sym_BSLASHtvolcite] = ACTIONS(6293), - [anon_sym_BSLASHTvolcite] = ACTIONS(6293), - [anon_sym_BSLASHavolcite] = ACTIONS(6293), - [anon_sym_BSLASHAvolcite] = ACTIONS(6293), - [anon_sym_BSLASHnotecite] = ACTIONS(6293), - [anon_sym_BSLASHNotecite] = ACTIONS(6293), - [anon_sym_BSLASHpnotecite] = ACTIONS(6293), - [anon_sym_BSLASHPnotecite] = ACTIONS(6293), - [anon_sym_BSLASHfnotecite] = ACTIONS(6293), - [anon_sym_BSLASHlabel] = ACTIONS(6293), - [anon_sym_BSLASHref] = ACTIONS(6293), - [anon_sym_BSLASHeqref] = ACTIONS(6293), - [anon_sym_BSLASHvref] = ACTIONS(6293), - [anon_sym_BSLASHVref] = ACTIONS(6293), - [anon_sym_BSLASHautoref] = ACTIONS(6293), - [anon_sym_BSLASHpageref] = ACTIONS(6293), - [anon_sym_BSLASHcref] = ACTIONS(6293), - [anon_sym_BSLASHCref] = ACTIONS(6293), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnameCref] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHlabelcref] = ACTIONS(6293), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCrefrange] = ACTIONS(6293), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnewlabel] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6293), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6293), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6295), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHdef] = ACTIONS(6293), - [anon_sym_BSLASHlet] = ACTIONS(6293), - [anon_sym_BSLASHleft] = ACTIONS(6293), - [anon_sym_BSLASHbig] = ACTIONS(6293), - [anon_sym_BSLASHBig] = ACTIONS(6293), - [anon_sym_BSLASHbigg] = ACTIONS(6293), - [anon_sym_BSLASHBigg] = ACTIONS(6293), - [anon_sym_BSLASHbigl] = ACTIONS(6293), - [anon_sym_BSLASHBigl] = ACTIONS(6293), - [anon_sym_BSLASHbiggl] = ACTIONS(6293), - [anon_sym_BSLASHBiggl] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6293), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6293), - [anon_sym_BSLASHgls] = ACTIONS(6293), - [anon_sym_BSLASHGls] = ACTIONS(6293), - [anon_sym_BSLASHGLS] = ACTIONS(6293), - [anon_sym_BSLASHglspl] = ACTIONS(6293), - [anon_sym_BSLASHGlspl] = ACTIONS(6293), - [anon_sym_BSLASHGLSpl] = ACTIONS(6293), - [anon_sym_BSLASHglsdisp] = ACTIONS(6293), - [anon_sym_BSLASHglslink] = ACTIONS(6293), - [anon_sym_BSLASHglstext] = ACTIONS(6293), - [anon_sym_BSLASHGlstext] = ACTIONS(6293), - [anon_sym_BSLASHGLStext] = ACTIONS(6293), - [anon_sym_BSLASHglsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6293), - [anon_sym_BSLASHglsplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSplural] = ACTIONS(6293), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHglsname] = ACTIONS(6293), - [anon_sym_BSLASHGlsname] = ACTIONS(6293), - [anon_sym_BSLASHGLSname] = ACTIONS(6293), - [anon_sym_BSLASHglssymbol] = ACTIONS(6293), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6293), - [anon_sym_BSLASHglsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6293), - [anon_sym_BSLASHglsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6293), - [anon_sym_BSLASHglsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6293), - [anon_sym_BSLASHglsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6293), - [anon_sym_BSLASHglsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6293), - [anon_sym_BSLASHnewacronym] = ACTIONS(6293), - [anon_sym_BSLASHacrshort] = ACTIONS(6293), - [anon_sym_BSLASHAcrshort] = ACTIONS(6293), - [anon_sym_BSLASHACRshort] = ACTIONS(6293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6293), - [anon_sym_BSLASHacrlong] = ACTIONS(6293), - [anon_sym_BSLASHAcrlong] = ACTIONS(6293), - [anon_sym_BSLASHACRlong] = ACTIONS(6293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6293), - [anon_sym_BSLASHacrfull] = ACTIONS(6293), - [anon_sym_BSLASHAcrfull] = ACTIONS(6293), - [anon_sym_BSLASHACRfull] = ACTIONS(6293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6293), - [anon_sym_BSLASHacs] = ACTIONS(6293), - [anon_sym_BSLASHAcs] = ACTIONS(6293), - [anon_sym_BSLASHacsp] = ACTIONS(6293), - [anon_sym_BSLASHAcsp] = ACTIONS(6293), - [anon_sym_BSLASHacl] = ACTIONS(6293), - [anon_sym_BSLASHAcl] = ACTIONS(6293), - [anon_sym_BSLASHaclp] = ACTIONS(6293), - [anon_sym_BSLASHAclp] = ACTIONS(6293), - [anon_sym_BSLASHacf] = ACTIONS(6293), - [anon_sym_BSLASHAcf] = ACTIONS(6293), - [anon_sym_BSLASHacfp] = ACTIONS(6293), - [anon_sym_BSLASHAcfp] = ACTIONS(6293), - [anon_sym_BSLASHac] = ACTIONS(6293), - [anon_sym_BSLASHAc] = ACTIONS(6293), - [anon_sym_BSLASHacp] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6293), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6293), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6293), - [anon_sym_BSLASHcolor] = ACTIONS(6293), - [anon_sym_BSLASHcolorbox] = ACTIONS(6293), - [anon_sym_BSLASHtextcolor] = ACTIONS(6293), - [anon_sym_BSLASHpagecolor] = ACTIONS(6293), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6293), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6293), - [anon_sym_BSLASHtext] = ACTIONS(6293), - [anon_sym_BSLASHintertext] = ACTIONS(6293), - [anon_sym_shortintertext] = ACTIONS(6293), - }, - [1266] = { - [sym_command_name] = ACTIONS(6289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(6291), - [anon_sym_RBRACK] = ACTIONS(6291), - [anon_sym_COMMA] = ACTIONS(6291), - [anon_sym_EQ] = ACTIONS(6291), - [anon_sym_LPAREN] = ACTIONS(6291), - [anon_sym_RPAREN] = ACTIONS(6291), - [anon_sym_BSLASHpart] = ACTIONS(6289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddpart] = ACTIONS(6289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6291), - [anon_sym_BSLASHchapter] = ACTIONS(6289), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddchap] = ACTIONS(6289), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsection] = ACTIONS(6289), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddsec] = ACTIONS(6289), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubsection] = ACTIONS(6289), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6289), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHparagraph] = ACTIONS(6289), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6289), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6291), - [anon_sym_BSLASHitem] = ACTIONS(6289), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6291), - [anon_sym_LBRACE] = ACTIONS(6291), - [sym_word] = ACTIONS(6289), - [sym_placeholder] = ACTIONS(6291), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6291), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_LT] = ACTIONS(6289), - [anon_sym_GT] = ACTIONS(6289), - [anon_sym_BANG] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_SQUOTE] = ACTIONS(6289), - [anon_sym__] = ACTIONS(6291), - [anon_sym_CARET] = ACTIONS(6291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6291), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6291), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6291), - [anon_sym_DOLLAR] = ACTIONS(6289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6291), - [anon_sym_BSLASHbegin] = ACTIONS(6289), - [anon_sym_BSLASHtitle] = ACTIONS(6289), - [anon_sym_BSLASHauthor] = ACTIONS(6289), - [anon_sym_BSLASHusepackage] = ACTIONS(6289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), - [anon_sym_BSLASHinclude] = ACTIONS(6289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), - [anon_sym_BSLASHinput] = ACTIONS(6289), - [anon_sym_BSLASHsubfile] = ACTIONS(6289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), - [anon_sym_BSLASHbibliography] = ACTIONS(6289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), - [anon_sym_BSLASHincludesvg] = ACTIONS(6289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), - [anon_sym_BSLASHimport] = ACTIONS(6289), - [anon_sym_BSLASHsubimport] = ACTIONS(6289), - [anon_sym_BSLASHinputfrom] = ACTIONS(6289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), - [anon_sym_BSLASHincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHcaption] = ACTIONS(6289), - [anon_sym_BSLASHcite] = ACTIONS(6289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCite] = ACTIONS(6289), - [anon_sym_BSLASHnocite] = ACTIONS(6289), - [anon_sym_BSLASHcitet] = ACTIONS(6289), - [anon_sym_BSLASHcitep] = ACTIONS(6289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteauthor] = ACTIONS(6289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitetitle] = ACTIONS(6289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteyear] = ACTIONS(6289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitedate] = ACTIONS(6289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteurl] = ACTIONS(6289), - [anon_sym_BSLASHfullcite] = ACTIONS(6289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), - [anon_sym_BSLASHcitealt] = ACTIONS(6289), - [anon_sym_BSLASHcitealp] = ACTIONS(6289), - [anon_sym_BSLASHcitetext] = ACTIONS(6289), - [anon_sym_BSLASHparencite] = ACTIONS(6289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHParencite] = ACTIONS(6289), - [anon_sym_BSLASHfootcite] = ACTIONS(6289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), - [anon_sym_BSLASHtextcite] = ACTIONS(6289), - [anon_sym_BSLASHTextcite] = ACTIONS(6289), - [anon_sym_BSLASHsmartcite] = ACTIONS(6289), - [anon_sym_BSLASHSmartcite] = ACTIONS(6289), - [anon_sym_BSLASHsupercite] = ACTIONS(6289), - [anon_sym_BSLASHautocite] = ACTIONS(6289), - [anon_sym_BSLASHAutocite] = ACTIONS(6289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHvolcite] = ACTIONS(6289), - [anon_sym_BSLASHVolcite] = ACTIONS(6289), - [anon_sym_BSLASHpvolcite] = ACTIONS(6289), - [anon_sym_BSLASHPvolcite] = ACTIONS(6289), - [anon_sym_BSLASHfvolcite] = ACTIONS(6289), - [anon_sym_BSLASHftvolcite] = ACTIONS(6289), - [anon_sym_BSLASHsvolcite] = ACTIONS(6289), - [anon_sym_BSLASHSvolcite] = ACTIONS(6289), - [anon_sym_BSLASHtvolcite] = ACTIONS(6289), - [anon_sym_BSLASHTvolcite] = ACTIONS(6289), - [anon_sym_BSLASHavolcite] = ACTIONS(6289), - [anon_sym_BSLASHAvolcite] = ACTIONS(6289), - [anon_sym_BSLASHnotecite] = ACTIONS(6289), - [anon_sym_BSLASHNotecite] = ACTIONS(6289), - [anon_sym_BSLASHpnotecite] = ACTIONS(6289), - [anon_sym_BSLASHPnotecite] = ACTIONS(6289), - [anon_sym_BSLASHfnotecite] = ACTIONS(6289), - [anon_sym_BSLASHlabel] = ACTIONS(6289), - [anon_sym_BSLASHref] = ACTIONS(6289), - [anon_sym_BSLASHeqref] = ACTIONS(6289), - [anon_sym_BSLASHvref] = ACTIONS(6289), - [anon_sym_BSLASHVref] = ACTIONS(6289), - [anon_sym_BSLASHautoref] = ACTIONS(6289), - [anon_sym_BSLASHpageref] = ACTIONS(6289), - [anon_sym_BSLASHcref] = ACTIONS(6289), - [anon_sym_BSLASHCref] = ACTIONS(6289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnameCref] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHlabelcref] = ACTIONS(6289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCrefrange] = ACTIONS(6289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnewlabel] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHdef] = ACTIONS(6289), - [anon_sym_BSLASHlet] = ACTIONS(6289), - [anon_sym_BSLASHleft] = ACTIONS(6289), - [anon_sym_BSLASHbig] = ACTIONS(6289), - [anon_sym_BSLASHBig] = ACTIONS(6289), - [anon_sym_BSLASHbigg] = ACTIONS(6289), - [anon_sym_BSLASHBigg] = ACTIONS(6289), - [anon_sym_BSLASHbigl] = ACTIONS(6289), - [anon_sym_BSLASHBigl] = ACTIONS(6289), - [anon_sym_BSLASHbiggl] = ACTIONS(6289), - [anon_sym_BSLASHBiggl] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), - [anon_sym_BSLASHgls] = ACTIONS(6289), - [anon_sym_BSLASHGls] = ACTIONS(6289), - [anon_sym_BSLASHGLS] = ACTIONS(6289), - [anon_sym_BSLASHglspl] = ACTIONS(6289), - [anon_sym_BSLASHGlspl] = ACTIONS(6289), - [anon_sym_BSLASHGLSpl] = ACTIONS(6289), - [anon_sym_BSLASHglsdisp] = ACTIONS(6289), - [anon_sym_BSLASHglslink] = ACTIONS(6289), - [anon_sym_BSLASHglstext] = ACTIONS(6289), - [anon_sym_BSLASHGlstext] = ACTIONS(6289), - [anon_sym_BSLASHGLStext] = ACTIONS(6289), - [anon_sym_BSLASHglsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), - [anon_sym_BSLASHglsplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSplural] = ACTIONS(6289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHglsname] = ACTIONS(6289), - [anon_sym_BSLASHGlsname] = ACTIONS(6289), - [anon_sym_BSLASHGLSname] = ACTIONS(6289), - [anon_sym_BSLASHglssymbol] = ACTIONS(6289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), - [anon_sym_BSLASHglsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), - [anon_sym_BSLASHglsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), - [anon_sym_BSLASHglsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), - [anon_sym_BSLASHglsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), - [anon_sym_BSLASHglsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), - [anon_sym_BSLASHnewacronym] = ACTIONS(6289), - [anon_sym_BSLASHacrshort] = ACTIONS(6289), - [anon_sym_BSLASHAcrshort] = ACTIONS(6289), - [anon_sym_BSLASHACRshort] = ACTIONS(6289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), - [anon_sym_BSLASHacrlong] = ACTIONS(6289), - [anon_sym_BSLASHAcrlong] = ACTIONS(6289), - [anon_sym_BSLASHACRlong] = ACTIONS(6289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), - [anon_sym_BSLASHacrfull] = ACTIONS(6289), - [anon_sym_BSLASHAcrfull] = ACTIONS(6289), - [anon_sym_BSLASHACRfull] = ACTIONS(6289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), - [anon_sym_BSLASHacs] = ACTIONS(6289), - [anon_sym_BSLASHAcs] = ACTIONS(6289), - [anon_sym_BSLASHacsp] = ACTIONS(6289), - [anon_sym_BSLASHAcsp] = ACTIONS(6289), - [anon_sym_BSLASHacl] = ACTIONS(6289), - [anon_sym_BSLASHAcl] = ACTIONS(6289), - [anon_sym_BSLASHaclp] = ACTIONS(6289), - [anon_sym_BSLASHAclp] = ACTIONS(6289), - [anon_sym_BSLASHacf] = ACTIONS(6289), - [anon_sym_BSLASHAcf] = ACTIONS(6289), - [anon_sym_BSLASHacfp] = ACTIONS(6289), - [anon_sym_BSLASHAcfp] = ACTIONS(6289), - [anon_sym_BSLASHac] = ACTIONS(6289), - [anon_sym_BSLASHAc] = ACTIONS(6289), - [anon_sym_BSLASHacp] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), - [anon_sym_BSLASHcolor] = ACTIONS(6289), - [anon_sym_BSLASHcolorbox] = ACTIONS(6289), - [anon_sym_BSLASHtextcolor] = ACTIONS(6289), - [anon_sym_BSLASHpagecolor] = ACTIONS(6289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), - [anon_sym_BSLASHtext] = ACTIONS(6289), - [anon_sym_BSLASHintertext] = ACTIONS(6289), - [anon_sym_shortintertext] = ACTIONS(6289), - }, - [1267] = { - [sym_command_name] = ACTIONS(6389), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(6391), - [anon_sym_RBRACK] = ACTIONS(6391), - [anon_sym_COMMA] = ACTIONS(6391), - [anon_sym_EQ] = ACTIONS(6391), - [anon_sym_LPAREN] = ACTIONS(6391), - [anon_sym_RPAREN] = ACTIONS(6391), - [anon_sym_BSLASHpart] = ACTIONS(6389), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddpart] = ACTIONS(6389), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6391), - [anon_sym_BSLASHchapter] = ACTIONS(6389), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddchap] = ACTIONS(6389), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsection] = ACTIONS(6389), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddsec] = ACTIONS(6389), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubsection] = ACTIONS(6389), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6389), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHparagraph] = ACTIONS(6389), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6389), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6391), - [anon_sym_BSLASHitem] = ACTIONS(6389), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6391), - [anon_sym_LBRACE] = ACTIONS(6391), - [sym_word] = ACTIONS(6389), - [sym_placeholder] = ACTIONS(6391), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6391), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_LT] = ACTIONS(6389), - [anon_sym_GT] = ACTIONS(6389), - [anon_sym_BANG] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_SQUOTE] = ACTIONS(6389), - [anon_sym__] = ACTIONS(6391), - [anon_sym_CARET] = ACTIONS(6391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6391), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6391), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6391), - [anon_sym_DOLLAR] = ACTIONS(6389), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6391), - [anon_sym_BSLASHbegin] = ACTIONS(6389), - [anon_sym_BSLASHtitle] = ACTIONS(6389), - [anon_sym_BSLASHauthor] = ACTIONS(6389), - [anon_sym_BSLASHusepackage] = ACTIONS(6389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6389), - [anon_sym_BSLASHinclude] = ACTIONS(6389), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6389), - [anon_sym_BSLASHinput] = ACTIONS(6389), - [anon_sym_BSLASHsubfile] = ACTIONS(6389), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6389), - [anon_sym_BSLASHbibliography] = ACTIONS(6389), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6389), - [anon_sym_BSLASHincludesvg] = ACTIONS(6389), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6389), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6389), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6389), - [anon_sym_BSLASHimport] = ACTIONS(6389), - [anon_sym_BSLASHsubimport] = ACTIONS(6389), - [anon_sym_BSLASHinputfrom] = ACTIONS(6389), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6389), - [anon_sym_BSLASHincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHcaption] = ACTIONS(6389), - [anon_sym_BSLASHcite] = ACTIONS(6389), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCite] = ACTIONS(6389), - [anon_sym_BSLASHnocite] = ACTIONS(6389), - [anon_sym_BSLASHcitet] = ACTIONS(6389), - [anon_sym_BSLASHcitep] = ACTIONS(6389), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteauthor] = ACTIONS(6389), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6389), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitetitle] = ACTIONS(6389), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteyear] = ACTIONS(6389), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitedate] = ACTIONS(6389), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteurl] = ACTIONS(6389), - [anon_sym_BSLASHfullcite] = ACTIONS(6389), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6389), - [anon_sym_BSLASHcitealt] = ACTIONS(6389), - [anon_sym_BSLASHcitealp] = ACTIONS(6389), - [anon_sym_BSLASHcitetext] = ACTIONS(6389), - [anon_sym_BSLASHparencite] = ACTIONS(6389), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHParencite] = ACTIONS(6389), - [anon_sym_BSLASHfootcite] = ACTIONS(6389), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6389), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6389), - [anon_sym_BSLASHtextcite] = ACTIONS(6389), - [anon_sym_BSLASHTextcite] = ACTIONS(6389), - [anon_sym_BSLASHsmartcite] = ACTIONS(6389), - [anon_sym_BSLASHSmartcite] = ACTIONS(6389), - [anon_sym_BSLASHsupercite] = ACTIONS(6389), - [anon_sym_BSLASHautocite] = ACTIONS(6389), - [anon_sym_BSLASHAutocite] = ACTIONS(6389), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHvolcite] = ACTIONS(6389), - [anon_sym_BSLASHVolcite] = ACTIONS(6389), - [anon_sym_BSLASHpvolcite] = ACTIONS(6389), - [anon_sym_BSLASHPvolcite] = ACTIONS(6389), - [anon_sym_BSLASHfvolcite] = ACTIONS(6389), - [anon_sym_BSLASHftvolcite] = ACTIONS(6389), - [anon_sym_BSLASHsvolcite] = ACTIONS(6389), - [anon_sym_BSLASHSvolcite] = ACTIONS(6389), - [anon_sym_BSLASHtvolcite] = ACTIONS(6389), - [anon_sym_BSLASHTvolcite] = ACTIONS(6389), - [anon_sym_BSLASHavolcite] = ACTIONS(6389), - [anon_sym_BSLASHAvolcite] = ACTIONS(6389), - [anon_sym_BSLASHnotecite] = ACTIONS(6389), - [anon_sym_BSLASHNotecite] = ACTIONS(6389), - [anon_sym_BSLASHpnotecite] = ACTIONS(6389), - [anon_sym_BSLASHPnotecite] = ACTIONS(6389), - [anon_sym_BSLASHfnotecite] = ACTIONS(6389), - [anon_sym_BSLASHlabel] = ACTIONS(6389), - [anon_sym_BSLASHref] = ACTIONS(6389), - [anon_sym_BSLASHeqref] = ACTIONS(6389), - [anon_sym_BSLASHvref] = ACTIONS(6389), - [anon_sym_BSLASHVref] = ACTIONS(6389), - [anon_sym_BSLASHautoref] = ACTIONS(6389), - [anon_sym_BSLASHpageref] = ACTIONS(6389), - [anon_sym_BSLASHcref] = ACTIONS(6389), - [anon_sym_BSLASHCref] = ACTIONS(6389), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnameCref] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHlabelcref] = ACTIONS(6389), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCrefrange] = ACTIONS(6389), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnewlabel] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6389), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6389), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6391), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHdef] = ACTIONS(6389), - [anon_sym_BSLASHlet] = ACTIONS(6389), - [anon_sym_BSLASHleft] = ACTIONS(6389), - [anon_sym_BSLASHbig] = ACTIONS(6389), - [anon_sym_BSLASHBig] = ACTIONS(6389), - [anon_sym_BSLASHbigg] = ACTIONS(6389), - [anon_sym_BSLASHBigg] = ACTIONS(6389), - [anon_sym_BSLASHbigl] = ACTIONS(6389), - [anon_sym_BSLASHBigl] = ACTIONS(6389), - [anon_sym_BSLASHbiggl] = ACTIONS(6389), - [anon_sym_BSLASHBiggl] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6389), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6389), - [anon_sym_BSLASHgls] = ACTIONS(6389), - [anon_sym_BSLASHGls] = ACTIONS(6389), - [anon_sym_BSLASHGLS] = ACTIONS(6389), - [anon_sym_BSLASHglspl] = ACTIONS(6389), - [anon_sym_BSLASHGlspl] = ACTIONS(6389), - [anon_sym_BSLASHGLSpl] = ACTIONS(6389), - [anon_sym_BSLASHglsdisp] = ACTIONS(6389), - [anon_sym_BSLASHglslink] = ACTIONS(6389), - [anon_sym_BSLASHglstext] = ACTIONS(6389), - [anon_sym_BSLASHGlstext] = ACTIONS(6389), - [anon_sym_BSLASHGLStext] = ACTIONS(6389), - [anon_sym_BSLASHglsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6389), - [anon_sym_BSLASHglsplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSplural] = ACTIONS(6389), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHglsname] = ACTIONS(6389), - [anon_sym_BSLASHGlsname] = ACTIONS(6389), - [anon_sym_BSLASHGLSname] = ACTIONS(6389), - [anon_sym_BSLASHglssymbol] = ACTIONS(6389), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6389), - [anon_sym_BSLASHglsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6389), - [anon_sym_BSLASHglsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6389), - [anon_sym_BSLASHglsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6389), - [anon_sym_BSLASHglsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6389), - [anon_sym_BSLASHglsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6389), - [anon_sym_BSLASHnewacronym] = ACTIONS(6389), - [anon_sym_BSLASHacrshort] = ACTIONS(6389), - [anon_sym_BSLASHAcrshort] = ACTIONS(6389), - [anon_sym_BSLASHACRshort] = ACTIONS(6389), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6389), - [anon_sym_BSLASHacrlong] = ACTIONS(6389), - [anon_sym_BSLASHAcrlong] = ACTIONS(6389), - [anon_sym_BSLASHACRlong] = ACTIONS(6389), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6389), - [anon_sym_BSLASHacrfull] = ACTIONS(6389), - [anon_sym_BSLASHAcrfull] = ACTIONS(6389), - [anon_sym_BSLASHACRfull] = ACTIONS(6389), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6389), - [anon_sym_BSLASHacs] = ACTIONS(6389), - [anon_sym_BSLASHAcs] = ACTIONS(6389), - [anon_sym_BSLASHacsp] = ACTIONS(6389), - [anon_sym_BSLASHAcsp] = ACTIONS(6389), - [anon_sym_BSLASHacl] = ACTIONS(6389), - [anon_sym_BSLASHAcl] = ACTIONS(6389), - [anon_sym_BSLASHaclp] = ACTIONS(6389), - [anon_sym_BSLASHAclp] = ACTIONS(6389), - [anon_sym_BSLASHacf] = ACTIONS(6389), - [anon_sym_BSLASHAcf] = ACTIONS(6389), - [anon_sym_BSLASHacfp] = ACTIONS(6389), - [anon_sym_BSLASHAcfp] = ACTIONS(6389), - [anon_sym_BSLASHac] = ACTIONS(6389), - [anon_sym_BSLASHAc] = ACTIONS(6389), - [anon_sym_BSLASHacp] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6389), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6389), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6389), - [anon_sym_BSLASHcolor] = ACTIONS(6389), - [anon_sym_BSLASHcolorbox] = ACTIONS(6389), - [anon_sym_BSLASHtextcolor] = ACTIONS(6389), - [anon_sym_BSLASHpagecolor] = ACTIONS(6389), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6389), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6389), - [anon_sym_BSLASHtext] = ACTIONS(6389), - [anon_sym_BSLASHintertext] = ACTIONS(6389), - [anon_sym_shortintertext] = ACTIONS(6389), - }, - [1268] = { - [sym_command_name] = ACTIONS(6029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6029), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_EQ] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_BSLASHpart] = ACTIONS(6029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddpart] = ACTIONS(6029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6031), - [anon_sym_BSLASHchapter] = ACTIONS(6029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddchap] = ACTIONS(6029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsection] = ACTIONS(6029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddsec] = ACTIONS(6029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubsection] = ACTIONS(6029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHparagraph] = ACTIONS(6029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6031), - [anon_sym_BSLASHitem] = ACTIONS(6029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6031), - [anon_sym_LBRACE] = ACTIONS(6031), - [sym_word] = ACTIONS(6029), - [sym_placeholder] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6031), - [anon_sym_DASH] = ACTIONS(6031), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6029), - [anon_sym_GT] = ACTIONS(6029), - [anon_sym_BANG] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_COLON] = ACTIONS(6029), - [anon_sym_SQUOTE] = ACTIONS(6029), - [anon_sym__] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), - [anon_sym_BSLASHbegin] = ACTIONS(6029), - [anon_sym_BSLASHtitle] = ACTIONS(6029), - [anon_sym_BSLASHauthor] = ACTIONS(6029), - [anon_sym_BSLASHusepackage] = ACTIONS(6029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), - [anon_sym_BSLASHinclude] = ACTIONS(6029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), - [anon_sym_BSLASHinput] = ACTIONS(6029), - [anon_sym_BSLASHsubfile] = ACTIONS(6029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), - [anon_sym_BSLASHbibliography] = ACTIONS(6029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), - [anon_sym_BSLASHincludesvg] = ACTIONS(6029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), - [anon_sym_BSLASHimport] = ACTIONS(6029), - [anon_sym_BSLASHsubimport] = ACTIONS(6029), - [anon_sym_BSLASHinputfrom] = ACTIONS(6029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), - [anon_sym_BSLASHincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHcaption] = ACTIONS(6029), - [anon_sym_BSLASHcite] = ACTIONS(6029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCite] = ACTIONS(6029), - [anon_sym_BSLASHnocite] = ACTIONS(6029), - [anon_sym_BSLASHcitet] = ACTIONS(6029), - [anon_sym_BSLASHcitep] = ACTIONS(6029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteauthor] = ACTIONS(6029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitetitle] = ACTIONS(6029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteyear] = ACTIONS(6029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitedate] = ACTIONS(6029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteurl] = ACTIONS(6029), - [anon_sym_BSLASHfullcite] = ACTIONS(6029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), - [anon_sym_BSLASHcitealt] = ACTIONS(6029), - [anon_sym_BSLASHcitealp] = ACTIONS(6029), - [anon_sym_BSLASHcitetext] = ACTIONS(6029), - [anon_sym_BSLASHparencite] = ACTIONS(6029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHParencite] = ACTIONS(6029), - [anon_sym_BSLASHfootcite] = ACTIONS(6029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), - [anon_sym_BSLASHtextcite] = ACTIONS(6029), - [anon_sym_BSLASHTextcite] = ACTIONS(6029), - [anon_sym_BSLASHsmartcite] = ACTIONS(6029), - [anon_sym_BSLASHSmartcite] = ACTIONS(6029), - [anon_sym_BSLASHsupercite] = ACTIONS(6029), - [anon_sym_BSLASHautocite] = ACTIONS(6029), - [anon_sym_BSLASHAutocite] = ACTIONS(6029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHvolcite] = ACTIONS(6029), - [anon_sym_BSLASHVolcite] = ACTIONS(6029), - [anon_sym_BSLASHpvolcite] = ACTIONS(6029), - [anon_sym_BSLASHPvolcite] = ACTIONS(6029), - [anon_sym_BSLASHfvolcite] = ACTIONS(6029), - [anon_sym_BSLASHftvolcite] = ACTIONS(6029), - [anon_sym_BSLASHsvolcite] = ACTIONS(6029), - [anon_sym_BSLASHSvolcite] = ACTIONS(6029), - [anon_sym_BSLASHtvolcite] = ACTIONS(6029), - [anon_sym_BSLASHTvolcite] = ACTIONS(6029), - [anon_sym_BSLASHavolcite] = ACTIONS(6029), - [anon_sym_BSLASHAvolcite] = ACTIONS(6029), - [anon_sym_BSLASHnotecite] = ACTIONS(6029), - [anon_sym_BSLASHNotecite] = ACTIONS(6029), - [anon_sym_BSLASHpnotecite] = ACTIONS(6029), - [anon_sym_BSLASHPnotecite] = ACTIONS(6029), - [anon_sym_BSLASHfnotecite] = ACTIONS(6029), - [anon_sym_BSLASHlabel] = ACTIONS(6029), - [anon_sym_BSLASHref] = ACTIONS(6029), - [anon_sym_BSLASHeqref] = ACTIONS(6029), - [anon_sym_BSLASHvref] = ACTIONS(6029), - [anon_sym_BSLASHVref] = ACTIONS(6029), - [anon_sym_BSLASHautoref] = ACTIONS(6029), - [anon_sym_BSLASHpageref] = ACTIONS(6029), - [anon_sym_BSLASHcref] = ACTIONS(6029), - [anon_sym_BSLASHCref] = ACTIONS(6029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnameCref] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHlabelcref] = ACTIONS(6029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCrefrange] = ACTIONS(6029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnewlabel] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHdef] = ACTIONS(6029), - [anon_sym_BSLASHlet] = ACTIONS(6029), - [anon_sym_BSLASHleft] = ACTIONS(6029), - [anon_sym_BSLASHbig] = ACTIONS(6029), - [anon_sym_BSLASHBig] = ACTIONS(6029), - [anon_sym_BSLASHbigg] = ACTIONS(6029), - [anon_sym_BSLASHBigg] = ACTIONS(6029), - [anon_sym_BSLASHbigl] = ACTIONS(6029), - [anon_sym_BSLASHBigl] = ACTIONS(6029), - [anon_sym_BSLASHbiggl] = ACTIONS(6029), - [anon_sym_BSLASHBiggl] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), - [anon_sym_BSLASHgls] = ACTIONS(6029), - [anon_sym_BSLASHGls] = ACTIONS(6029), - [anon_sym_BSLASHGLS] = ACTIONS(6029), - [anon_sym_BSLASHglspl] = ACTIONS(6029), - [anon_sym_BSLASHGlspl] = ACTIONS(6029), - [anon_sym_BSLASHGLSpl] = ACTIONS(6029), - [anon_sym_BSLASHglsdisp] = ACTIONS(6029), - [anon_sym_BSLASHglslink] = ACTIONS(6029), - [anon_sym_BSLASHglstext] = ACTIONS(6029), - [anon_sym_BSLASHGlstext] = ACTIONS(6029), - [anon_sym_BSLASHGLStext] = ACTIONS(6029), - [anon_sym_BSLASHglsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), - [anon_sym_BSLASHglsplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSplural] = ACTIONS(6029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHglsname] = ACTIONS(6029), - [anon_sym_BSLASHGlsname] = ACTIONS(6029), - [anon_sym_BSLASHGLSname] = ACTIONS(6029), - [anon_sym_BSLASHglssymbol] = ACTIONS(6029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), - [anon_sym_BSLASHglsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), - [anon_sym_BSLASHglsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), - [anon_sym_BSLASHglsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), - [anon_sym_BSLASHglsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), - [anon_sym_BSLASHglsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), - [anon_sym_BSLASHnewacronym] = ACTIONS(6029), - [anon_sym_BSLASHacrshort] = ACTIONS(6029), - [anon_sym_BSLASHAcrshort] = ACTIONS(6029), - [anon_sym_BSLASHACRshort] = ACTIONS(6029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), - [anon_sym_BSLASHacrlong] = ACTIONS(6029), - [anon_sym_BSLASHAcrlong] = ACTIONS(6029), - [anon_sym_BSLASHACRlong] = ACTIONS(6029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), - [anon_sym_BSLASHacrfull] = ACTIONS(6029), - [anon_sym_BSLASHAcrfull] = ACTIONS(6029), - [anon_sym_BSLASHACRfull] = ACTIONS(6029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), - [anon_sym_BSLASHacs] = ACTIONS(6029), - [anon_sym_BSLASHAcs] = ACTIONS(6029), - [anon_sym_BSLASHacsp] = ACTIONS(6029), - [anon_sym_BSLASHAcsp] = ACTIONS(6029), - [anon_sym_BSLASHacl] = ACTIONS(6029), - [anon_sym_BSLASHAcl] = ACTIONS(6029), - [anon_sym_BSLASHaclp] = ACTIONS(6029), - [anon_sym_BSLASHAclp] = ACTIONS(6029), - [anon_sym_BSLASHacf] = ACTIONS(6029), - [anon_sym_BSLASHAcf] = ACTIONS(6029), - [anon_sym_BSLASHacfp] = ACTIONS(6029), - [anon_sym_BSLASHAcfp] = ACTIONS(6029), - [anon_sym_BSLASHac] = ACTIONS(6029), - [anon_sym_BSLASHAc] = ACTIONS(6029), - [anon_sym_BSLASHacp] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), - [anon_sym_BSLASHcolor] = ACTIONS(6029), - [anon_sym_BSLASHcolorbox] = ACTIONS(6029), - [anon_sym_BSLASHtextcolor] = ACTIONS(6029), - [anon_sym_BSLASHpagecolor] = ACTIONS(6029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), - [anon_sym_BSLASHtext] = ACTIONS(6029), - [anon_sym_BSLASHintertext] = ACTIONS(6029), - [anon_sym_shortintertext] = ACTIONS(6029), - }, - [1269] = { - [sym_command_name] = ACTIONS(6241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6241), - [anon_sym_LBRACK] = ACTIONS(6243), - [anon_sym_RBRACK] = ACTIONS(6243), - [anon_sym_COMMA] = ACTIONS(6243), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_LPAREN] = ACTIONS(6243), - [anon_sym_RPAREN] = ACTIONS(6243), - [anon_sym_BSLASHpart] = ACTIONS(6241), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddpart] = ACTIONS(6241), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6243), - [anon_sym_BSLASHchapter] = ACTIONS(6241), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddchap] = ACTIONS(6241), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsection] = ACTIONS(6241), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddsec] = ACTIONS(6241), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubsection] = ACTIONS(6241), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6241), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHparagraph] = ACTIONS(6241), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6241), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6243), - [anon_sym_BSLASHitem] = ACTIONS(6241), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6243), - [anon_sym_LBRACE] = ACTIONS(6243), - [sym_word] = ACTIONS(6241), - [sym_placeholder] = ACTIONS(6243), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6243), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(6241), - [anon_sym_GT] = ACTIONS(6241), - [anon_sym_BANG] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_SQUOTE] = ACTIONS(6241), - [anon_sym__] = ACTIONS(6243), - [anon_sym_CARET] = ACTIONS(6243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6243), - [anon_sym_DOLLAR] = ACTIONS(6241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), - [anon_sym_BSLASHbegin] = ACTIONS(6241), - [anon_sym_BSLASHtitle] = ACTIONS(6241), - [anon_sym_BSLASHauthor] = ACTIONS(6241), - [anon_sym_BSLASHusepackage] = ACTIONS(6241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), - [anon_sym_BSLASHinclude] = ACTIONS(6241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), - [anon_sym_BSLASHinput] = ACTIONS(6241), - [anon_sym_BSLASHsubfile] = ACTIONS(6241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), - [anon_sym_BSLASHbibliography] = ACTIONS(6241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), - [anon_sym_BSLASHincludesvg] = ACTIONS(6241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), - [anon_sym_BSLASHimport] = ACTIONS(6241), - [anon_sym_BSLASHsubimport] = ACTIONS(6241), - [anon_sym_BSLASHinputfrom] = ACTIONS(6241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), - [anon_sym_BSLASHincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHcaption] = ACTIONS(6241), - [anon_sym_BSLASHcite] = ACTIONS(6241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCite] = ACTIONS(6241), - [anon_sym_BSLASHnocite] = ACTIONS(6241), - [anon_sym_BSLASHcitet] = ACTIONS(6241), - [anon_sym_BSLASHcitep] = ACTIONS(6241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteauthor] = ACTIONS(6241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitetitle] = ACTIONS(6241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteyear] = ACTIONS(6241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitedate] = ACTIONS(6241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteurl] = ACTIONS(6241), - [anon_sym_BSLASHfullcite] = ACTIONS(6241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), - [anon_sym_BSLASHcitealt] = ACTIONS(6241), - [anon_sym_BSLASHcitealp] = ACTIONS(6241), - [anon_sym_BSLASHcitetext] = ACTIONS(6241), - [anon_sym_BSLASHparencite] = ACTIONS(6241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHParencite] = ACTIONS(6241), - [anon_sym_BSLASHfootcite] = ACTIONS(6241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), - [anon_sym_BSLASHtextcite] = ACTIONS(6241), - [anon_sym_BSLASHTextcite] = ACTIONS(6241), - [anon_sym_BSLASHsmartcite] = ACTIONS(6241), - [anon_sym_BSLASHSmartcite] = ACTIONS(6241), - [anon_sym_BSLASHsupercite] = ACTIONS(6241), - [anon_sym_BSLASHautocite] = ACTIONS(6241), - [anon_sym_BSLASHAutocite] = ACTIONS(6241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHvolcite] = ACTIONS(6241), - [anon_sym_BSLASHVolcite] = ACTIONS(6241), - [anon_sym_BSLASHpvolcite] = ACTIONS(6241), - [anon_sym_BSLASHPvolcite] = ACTIONS(6241), - [anon_sym_BSLASHfvolcite] = ACTIONS(6241), - [anon_sym_BSLASHftvolcite] = ACTIONS(6241), - [anon_sym_BSLASHsvolcite] = ACTIONS(6241), - [anon_sym_BSLASHSvolcite] = ACTIONS(6241), - [anon_sym_BSLASHtvolcite] = ACTIONS(6241), - [anon_sym_BSLASHTvolcite] = ACTIONS(6241), - [anon_sym_BSLASHavolcite] = ACTIONS(6241), - [anon_sym_BSLASHAvolcite] = ACTIONS(6241), - [anon_sym_BSLASHnotecite] = ACTIONS(6241), - [anon_sym_BSLASHNotecite] = ACTIONS(6241), - [anon_sym_BSLASHpnotecite] = ACTIONS(6241), - [anon_sym_BSLASHPnotecite] = ACTIONS(6241), - [anon_sym_BSLASHfnotecite] = ACTIONS(6241), - [anon_sym_BSLASHlabel] = ACTIONS(6241), - [anon_sym_BSLASHref] = ACTIONS(6241), - [anon_sym_BSLASHeqref] = ACTIONS(6241), - [anon_sym_BSLASHvref] = ACTIONS(6241), - [anon_sym_BSLASHVref] = ACTIONS(6241), - [anon_sym_BSLASHautoref] = ACTIONS(6241), - [anon_sym_BSLASHpageref] = ACTIONS(6241), - [anon_sym_BSLASHcref] = ACTIONS(6241), - [anon_sym_BSLASHCref] = ACTIONS(6241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnameCref] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHlabelcref] = ACTIONS(6241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCrefrange] = ACTIONS(6241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnewlabel] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHdef] = ACTIONS(6241), - [anon_sym_BSLASHlet] = ACTIONS(6241), - [anon_sym_BSLASHleft] = ACTIONS(6241), - [anon_sym_BSLASHbig] = ACTIONS(6241), - [anon_sym_BSLASHBig] = ACTIONS(6241), - [anon_sym_BSLASHbigg] = ACTIONS(6241), - [anon_sym_BSLASHBigg] = ACTIONS(6241), - [anon_sym_BSLASHbigl] = ACTIONS(6241), - [anon_sym_BSLASHBigl] = ACTIONS(6241), - [anon_sym_BSLASHbiggl] = ACTIONS(6241), - [anon_sym_BSLASHBiggl] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), - [anon_sym_BSLASHgls] = ACTIONS(6241), - [anon_sym_BSLASHGls] = ACTIONS(6241), - [anon_sym_BSLASHGLS] = ACTIONS(6241), - [anon_sym_BSLASHglspl] = ACTIONS(6241), - [anon_sym_BSLASHGlspl] = ACTIONS(6241), - [anon_sym_BSLASHGLSpl] = ACTIONS(6241), - [anon_sym_BSLASHglsdisp] = ACTIONS(6241), - [anon_sym_BSLASHglslink] = ACTIONS(6241), - [anon_sym_BSLASHglstext] = ACTIONS(6241), - [anon_sym_BSLASHGlstext] = ACTIONS(6241), - [anon_sym_BSLASHGLStext] = ACTIONS(6241), - [anon_sym_BSLASHglsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), - [anon_sym_BSLASHglsplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSplural] = ACTIONS(6241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHglsname] = ACTIONS(6241), - [anon_sym_BSLASHGlsname] = ACTIONS(6241), - [anon_sym_BSLASHGLSname] = ACTIONS(6241), - [anon_sym_BSLASHglssymbol] = ACTIONS(6241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), - [anon_sym_BSLASHglsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), - [anon_sym_BSLASHglsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), - [anon_sym_BSLASHglsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), - [anon_sym_BSLASHglsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), - [anon_sym_BSLASHglsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), - [anon_sym_BSLASHnewacronym] = ACTIONS(6241), - [anon_sym_BSLASHacrshort] = ACTIONS(6241), - [anon_sym_BSLASHAcrshort] = ACTIONS(6241), - [anon_sym_BSLASHACRshort] = ACTIONS(6241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), - [anon_sym_BSLASHacrlong] = ACTIONS(6241), - [anon_sym_BSLASHAcrlong] = ACTIONS(6241), - [anon_sym_BSLASHACRlong] = ACTIONS(6241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), - [anon_sym_BSLASHacrfull] = ACTIONS(6241), - [anon_sym_BSLASHAcrfull] = ACTIONS(6241), - [anon_sym_BSLASHACRfull] = ACTIONS(6241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), - [anon_sym_BSLASHacs] = ACTIONS(6241), - [anon_sym_BSLASHAcs] = ACTIONS(6241), - [anon_sym_BSLASHacsp] = ACTIONS(6241), - [anon_sym_BSLASHAcsp] = ACTIONS(6241), - [anon_sym_BSLASHacl] = ACTIONS(6241), - [anon_sym_BSLASHAcl] = ACTIONS(6241), - [anon_sym_BSLASHaclp] = ACTIONS(6241), - [anon_sym_BSLASHAclp] = ACTIONS(6241), - [anon_sym_BSLASHacf] = ACTIONS(6241), - [anon_sym_BSLASHAcf] = ACTIONS(6241), - [anon_sym_BSLASHacfp] = ACTIONS(6241), - [anon_sym_BSLASHAcfp] = ACTIONS(6241), - [anon_sym_BSLASHac] = ACTIONS(6241), - [anon_sym_BSLASHAc] = ACTIONS(6241), - [anon_sym_BSLASHacp] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), - [anon_sym_BSLASHcolor] = ACTIONS(6241), - [anon_sym_BSLASHcolorbox] = ACTIONS(6241), - [anon_sym_BSLASHtextcolor] = ACTIONS(6241), - [anon_sym_BSLASHpagecolor] = ACTIONS(6241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), - [anon_sym_BSLASHtext] = ACTIONS(6241), - [anon_sym_BSLASHintertext] = ACTIONS(6241), - [anon_sym_shortintertext] = ACTIONS(6241), - }, - [1270] = { - [sym_command_name] = ACTIONS(6249), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_RBRACK] = ACTIONS(6251), - [anon_sym_COMMA] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(6251), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_BSLASHpart] = ACTIONS(6249), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddpart] = ACTIONS(6249), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6251), - [anon_sym_BSLASHchapter] = ACTIONS(6249), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddchap] = ACTIONS(6249), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsection] = ACTIONS(6249), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddsec] = ACTIONS(6249), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubsection] = ACTIONS(6249), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6249), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHparagraph] = ACTIONS(6249), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6249), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6251), - [anon_sym_BSLASHitem] = ACTIONS(6249), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6251), - [anon_sym_LBRACE] = ACTIONS(6251), - [sym_word] = ACTIONS(6249), - [sym_placeholder] = ACTIONS(6251), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6251), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_LT] = ACTIONS(6249), - [anon_sym_GT] = ACTIONS(6249), - [anon_sym_BANG] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_SQUOTE] = ACTIONS(6249), - [anon_sym__] = ACTIONS(6251), - [anon_sym_CARET] = ACTIONS(6251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6251), - [anon_sym_DOLLAR] = ACTIONS(6249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), - [anon_sym_BSLASHbegin] = ACTIONS(6249), - [anon_sym_BSLASHtitle] = ACTIONS(6249), - [anon_sym_BSLASHauthor] = ACTIONS(6249), - [anon_sym_BSLASHusepackage] = ACTIONS(6249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), - [anon_sym_BSLASHinclude] = ACTIONS(6249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), - [anon_sym_BSLASHinput] = ACTIONS(6249), - [anon_sym_BSLASHsubfile] = ACTIONS(6249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), - [anon_sym_BSLASHbibliography] = ACTIONS(6249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), - [anon_sym_BSLASHincludesvg] = ACTIONS(6249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), - [anon_sym_BSLASHimport] = ACTIONS(6249), - [anon_sym_BSLASHsubimport] = ACTIONS(6249), - [anon_sym_BSLASHinputfrom] = ACTIONS(6249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), - [anon_sym_BSLASHincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHcaption] = ACTIONS(6249), - [anon_sym_BSLASHcite] = ACTIONS(6249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCite] = ACTIONS(6249), - [anon_sym_BSLASHnocite] = ACTIONS(6249), - [anon_sym_BSLASHcitet] = ACTIONS(6249), - [anon_sym_BSLASHcitep] = ACTIONS(6249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteauthor] = ACTIONS(6249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitetitle] = ACTIONS(6249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteyear] = ACTIONS(6249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitedate] = ACTIONS(6249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteurl] = ACTIONS(6249), - [anon_sym_BSLASHfullcite] = ACTIONS(6249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), - [anon_sym_BSLASHcitealt] = ACTIONS(6249), - [anon_sym_BSLASHcitealp] = ACTIONS(6249), - [anon_sym_BSLASHcitetext] = ACTIONS(6249), - [anon_sym_BSLASHparencite] = ACTIONS(6249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHParencite] = ACTIONS(6249), - [anon_sym_BSLASHfootcite] = ACTIONS(6249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), - [anon_sym_BSLASHtextcite] = ACTIONS(6249), - [anon_sym_BSLASHTextcite] = ACTIONS(6249), - [anon_sym_BSLASHsmartcite] = ACTIONS(6249), - [anon_sym_BSLASHSmartcite] = ACTIONS(6249), - [anon_sym_BSLASHsupercite] = ACTIONS(6249), - [anon_sym_BSLASHautocite] = ACTIONS(6249), - [anon_sym_BSLASHAutocite] = ACTIONS(6249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHvolcite] = ACTIONS(6249), - [anon_sym_BSLASHVolcite] = ACTIONS(6249), - [anon_sym_BSLASHpvolcite] = ACTIONS(6249), - [anon_sym_BSLASHPvolcite] = ACTIONS(6249), - [anon_sym_BSLASHfvolcite] = ACTIONS(6249), - [anon_sym_BSLASHftvolcite] = ACTIONS(6249), - [anon_sym_BSLASHsvolcite] = ACTIONS(6249), - [anon_sym_BSLASHSvolcite] = ACTIONS(6249), - [anon_sym_BSLASHtvolcite] = ACTIONS(6249), - [anon_sym_BSLASHTvolcite] = ACTIONS(6249), - [anon_sym_BSLASHavolcite] = ACTIONS(6249), - [anon_sym_BSLASHAvolcite] = ACTIONS(6249), - [anon_sym_BSLASHnotecite] = ACTIONS(6249), - [anon_sym_BSLASHNotecite] = ACTIONS(6249), - [anon_sym_BSLASHpnotecite] = ACTIONS(6249), - [anon_sym_BSLASHPnotecite] = ACTIONS(6249), - [anon_sym_BSLASHfnotecite] = ACTIONS(6249), - [anon_sym_BSLASHlabel] = ACTIONS(6249), - [anon_sym_BSLASHref] = ACTIONS(6249), - [anon_sym_BSLASHeqref] = ACTIONS(6249), - [anon_sym_BSLASHvref] = ACTIONS(6249), - [anon_sym_BSLASHVref] = ACTIONS(6249), - [anon_sym_BSLASHautoref] = ACTIONS(6249), - [anon_sym_BSLASHpageref] = ACTIONS(6249), - [anon_sym_BSLASHcref] = ACTIONS(6249), - [anon_sym_BSLASHCref] = ACTIONS(6249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnameCref] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHlabelcref] = ACTIONS(6249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCrefrange] = ACTIONS(6249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnewlabel] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHdef] = ACTIONS(6249), - [anon_sym_BSLASHlet] = ACTIONS(6249), - [anon_sym_BSLASHleft] = ACTIONS(6249), - [anon_sym_BSLASHbig] = ACTIONS(6249), - [anon_sym_BSLASHBig] = ACTIONS(6249), - [anon_sym_BSLASHbigg] = ACTIONS(6249), - [anon_sym_BSLASHBigg] = ACTIONS(6249), - [anon_sym_BSLASHbigl] = ACTIONS(6249), - [anon_sym_BSLASHBigl] = ACTIONS(6249), - [anon_sym_BSLASHbiggl] = ACTIONS(6249), - [anon_sym_BSLASHBiggl] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), - [anon_sym_BSLASHgls] = ACTIONS(6249), - [anon_sym_BSLASHGls] = ACTIONS(6249), - [anon_sym_BSLASHGLS] = ACTIONS(6249), - [anon_sym_BSLASHglspl] = ACTIONS(6249), - [anon_sym_BSLASHGlspl] = ACTIONS(6249), - [anon_sym_BSLASHGLSpl] = ACTIONS(6249), - [anon_sym_BSLASHglsdisp] = ACTIONS(6249), - [anon_sym_BSLASHglslink] = ACTIONS(6249), - [anon_sym_BSLASHglstext] = ACTIONS(6249), - [anon_sym_BSLASHGlstext] = ACTIONS(6249), - [anon_sym_BSLASHGLStext] = ACTIONS(6249), - [anon_sym_BSLASHglsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), - [anon_sym_BSLASHglsplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSplural] = ACTIONS(6249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHglsname] = ACTIONS(6249), - [anon_sym_BSLASHGlsname] = ACTIONS(6249), - [anon_sym_BSLASHGLSname] = ACTIONS(6249), - [anon_sym_BSLASHglssymbol] = ACTIONS(6249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), - [anon_sym_BSLASHglsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), - [anon_sym_BSLASHglsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), - [anon_sym_BSLASHglsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), - [anon_sym_BSLASHglsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), - [anon_sym_BSLASHglsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), - [anon_sym_BSLASHnewacronym] = ACTIONS(6249), - [anon_sym_BSLASHacrshort] = ACTIONS(6249), - [anon_sym_BSLASHAcrshort] = ACTIONS(6249), - [anon_sym_BSLASHACRshort] = ACTIONS(6249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), - [anon_sym_BSLASHacrlong] = ACTIONS(6249), - [anon_sym_BSLASHAcrlong] = ACTIONS(6249), - [anon_sym_BSLASHACRlong] = ACTIONS(6249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), - [anon_sym_BSLASHacrfull] = ACTIONS(6249), - [anon_sym_BSLASHAcrfull] = ACTIONS(6249), - [anon_sym_BSLASHACRfull] = ACTIONS(6249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), - [anon_sym_BSLASHacs] = ACTIONS(6249), - [anon_sym_BSLASHAcs] = ACTIONS(6249), - [anon_sym_BSLASHacsp] = ACTIONS(6249), - [anon_sym_BSLASHAcsp] = ACTIONS(6249), - [anon_sym_BSLASHacl] = ACTIONS(6249), - [anon_sym_BSLASHAcl] = ACTIONS(6249), - [anon_sym_BSLASHaclp] = ACTIONS(6249), - [anon_sym_BSLASHAclp] = ACTIONS(6249), - [anon_sym_BSLASHacf] = ACTIONS(6249), - [anon_sym_BSLASHAcf] = ACTIONS(6249), - [anon_sym_BSLASHacfp] = ACTIONS(6249), - [anon_sym_BSLASHAcfp] = ACTIONS(6249), - [anon_sym_BSLASHac] = ACTIONS(6249), - [anon_sym_BSLASHAc] = ACTIONS(6249), - [anon_sym_BSLASHacp] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), - [anon_sym_BSLASHcolor] = ACTIONS(6249), - [anon_sym_BSLASHcolorbox] = ACTIONS(6249), - [anon_sym_BSLASHtextcolor] = ACTIONS(6249), - [anon_sym_BSLASHpagecolor] = ACTIONS(6249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), - [anon_sym_BSLASHtext] = ACTIONS(6249), - [anon_sym_BSLASHintertext] = ACTIONS(6249), - [anon_sym_shortintertext] = ACTIONS(6249), - }, - [1271] = { - [sym_command_name] = ACTIONS(6221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6221), - [anon_sym_LBRACK] = ACTIONS(6223), - [anon_sym_RBRACK] = ACTIONS(6223), - [anon_sym_COMMA] = ACTIONS(6223), - [anon_sym_EQ] = ACTIONS(6223), - [anon_sym_LPAREN] = ACTIONS(6223), - [anon_sym_RPAREN] = ACTIONS(6223), - [anon_sym_BSLASHpart] = ACTIONS(6221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddpart] = ACTIONS(6221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6223), - [anon_sym_BSLASHchapter] = ACTIONS(6221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddchap] = ACTIONS(6221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsection] = ACTIONS(6221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddsec] = ACTIONS(6221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubsection] = ACTIONS(6221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHparagraph] = ACTIONS(6221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6223), - [anon_sym_BSLASHitem] = ACTIONS(6221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6223), - [anon_sym_LBRACE] = ACTIONS(6223), - [sym_word] = ACTIONS(6221), - [sym_placeholder] = ACTIONS(6223), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6223), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_LT] = ACTIONS(6221), - [anon_sym_GT] = ACTIONS(6221), - [anon_sym_BANG] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_SQUOTE] = ACTIONS(6221), - [anon_sym__] = ACTIONS(6223), - [anon_sym_CARET] = ACTIONS(6223), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6223), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6223), - [anon_sym_DOLLAR] = ACTIONS(6221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6223), - [anon_sym_BSLASHbegin] = ACTIONS(6221), - [anon_sym_BSLASHtitle] = ACTIONS(6221), - [anon_sym_BSLASHauthor] = ACTIONS(6221), - [anon_sym_BSLASHusepackage] = ACTIONS(6221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6221), - [anon_sym_BSLASHinclude] = ACTIONS(6221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6221), - [anon_sym_BSLASHinput] = ACTIONS(6221), - [anon_sym_BSLASHsubfile] = ACTIONS(6221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6221), - [anon_sym_BSLASHbibliography] = ACTIONS(6221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6221), - [anon_sym_BSLASHincludesvg] = ACTIONS(6221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6221), - [anon_sym_BSLASHimport] = ACTIONS(6221), - [anon_sym_BSLASHsubimport] = ACTIONS(6221), - [anon_sym_BSLASHinputfrom] = ACTIONS(6221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6221), - [anon_sym_BSLASHincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHcaption] = ACTIONS(6221), - [anon_sym_BSLASHcite] = ACTIONS(6221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCite] = ACTIONS(6221), - [anon_sym_BSLASHnocite] = ACTIONS(6221), - [anon_sym_BSLASHcitet] = ACTIONS(6221), - [anon_sym_BSLASHcitep] = ACTIONS(6221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteauthor] = ACTIONS(6221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitetitle] = ACTIONS(6221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteyear] = ACTIONS(6221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitedate] = ACTIONS(6221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteurl] = ACTIONS(6221), - [anon_sym_BSLASHfullcite] = ACTIONS(6221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6221), - [anon_sym_BSLASHcitealt] = ACTIONS(6221), - [anon_sym_BSLASHcitealp] = ACTIONS(6221), - [anon_sym_BSLASHcitetext] = ACTIONS(6221), - [anon_sym_BSLASHparencite] = ACTIONS(6221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHParencite] = ACTIONS(6221), - [anon_sym_BSLASHfootcite] = ACTIONS(6221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6221), - [anon_sym_BSLASHtextcite] = ACTIONS(6221), - [anon_sym_BSLASHTextcite] = ACTIONS(6221), - [anon_sym_BSLASHsmartcite] = ACTIONS(6221), - [anon_sym_BSLASHSmartcite] = ACTIONS(6221), - [anon_sym_BSLASHsupercite] = ACTIONS(6221), - [anon_sym_BSLASHautocite] = ACTIONS(6221), - [anon_sym_BSLASHAutocite] = ACTIONS(6221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHvolcite] = ACTIONS(6221), - [anon_sym_BSLASHVolcite] = ACTIONS(6221), - [anon_sym_BSLASHpvolcite] = ACTIONS(6221), - [anon_sym_BSLASHPvolcite] = ACTIONS(6221), - [anon_sym_BSLASHfvolcite] = ACTIONS(6221), - [anon_sym_BSLASHftvolcite] = ACTIONS(6221), - [anon_sym_BSLASHsvolcite] = ACTIONS(6221), - [anon_sym_BSLASHSvolcite] = ACTIONS(6221), - [anon_sym_BSLASHtvolcite] = ACTIONS(6221), - [anon_sym_BSLASHTvolcite] = ACTIONS(6221), - [anon_sym_BSLASHavolcite] = ACTIONS(6221), - [anon_sym_BSLASHAvolcite] = ACTIONS(6221), - [anon_sym_BSLASHnotecite] = ACTIONS(6221), - [anon_sym_BSLASHNotecite] = ACTIONS(6221), - [anon_sym_BSLASHpnotecite] = ACTIONS(6221), - [anon_sym_BSLASHPnotecite] = ACTIONS(6221), - [anon_sym_BSLASHfnotecite] = ACTIONS(6221), - [anon_sym_BSLASHlabel] = ACTIONS(6221), - [anon_sym_BSLASHref] = ACTIONS(6221), - [anon_sym_BSLASHeqref] = ACTIONS(6221), - [anon_sym_BSLASHvref] = ACTIONS(6221), - [anon_sym_BSLASHVref] = ACTIONS(6221), - [anon_sym_BSLASHautoref] = ACTIONS(6221), - [anon_sym_BSLASHpageref] = ACTIONS(6221), - [anon_sym_BSLASHcref] = ACTIONS(6221), - [anon_sym_BSLASHCref] = ACTIONS(6221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnameCref] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHlabelcref] = ACTIONS(6221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCrefrange] = ACTIONS(6221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnewlabel] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6223), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHdef] = ACTIONS(6221), - [anon_sym_BSLASHlet] = ACTIONS(6221), - [anon_sym_BSLASHleft] = ACTIONS(6221), - [anon_sym_BSLASHbig] = ACTIONS(6221), - [anon_sym_BSLASHBig] = ACTIONS(6221), - [anon_sym_BSLASHbigg] = ACTIONS(6221), - [anon_sym_BSLASHBigg] = ACTIONS(6221), - [anon_sym_BSLASHbigl] = ACTIONS(6221), - [anon_sym_BSLASHBigl] = ACTIONS(6221), - [anon_sym_BSLASHbiggl] = ACTIONS(6221), - [anon_sym_BSLASHBiggl] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6221), - [anon_sym_BSLASHgls] = ACTIONS(6221), - [anon_sym_BSLASHGls] = ACTIONS(6221), - [anon_sym_BSLASHGLS] = ACTIONS(6221), - [anon_sym_BSLASHglspl] = ACTIONS(6221), - [anon_sym_BSLASHGlspl] = ACTIONS(6221), - [anon_sym_BSLASHGLSpl] = ACTIONS(6221), - [anon_sym_BSLASHglsdisp] = ACTIONS(6221), - [anon_sym_BSLASHglslink] = ACTIONS(6221), - [anon_sym_BSLASHglstext] = ACTIONS(6221), - [anon_sym_BSLASHGlstext] = ACTIONS(6221), - [anon_sym_BSLASHGLStext] = ACTIONS(6221), - [anon_sym_BSLASHglsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6221), - [anon_sym_BSLASHglsplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSplural] = ACTIONS(6221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHglsname] = ACTIONS(6221), - [anon_sym_BSLASHGlsname] = ACTIONS(6221), - [anon_sym_BSLASHGLSname] = ACTIONS(6221), - [anon_sym_BSLASHglssymbol] = ACTIONS(6221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6221), - [anon_sym_BSLASHglsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6221), - [anon_sym_BSLASHglsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6221), - [anon_sym_BSLASHglsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6221), - [anon_sym_BSLASHglsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6221), - [anon_sym_BSLASHglsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6221), - [anon_sym_BSLASHnewacronym] = ACTIONS(6221), - [anon_sym_BSLASHacrshort] = ACTIONS(6221), - [anon_sym_BSLASHAcrshort] = ACTIONS(6221), - [anon_sym_BSLASHACRshort] = ACTIONS(6221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6221), - [anon_sym_BSLASHacrlong] = ACTIONS(6221), - [anon_sym_BSLASHAcrlong] = ACTIONS(6221), - [anon_sym_BSLASHACRlong] = ACTIONS(6221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6221), - [anon_sym_BSLASHacrfull] = ACTIONS(6221), - [anon_sym_BSLASHAcrfull] = ACTIONS(6221), - [anon_sym_BSLASHACRfull] = ACTIONS(6221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6221), - [anon_sym_BSLASHacs] = ACTIONS(6221), - [anon_sym_BSLASHAcs] = ACTIONS(6221), - [anon_sym_BSLASHacsp] = ACTIONS(6221), - [anon_sym_BSLASHAcsp] = ACTIONS(6221), - [anon_sym_BSLASHacl] = ACTIONS(6221), - [anon_sym_BSLASHAcl] = ACTIONS(6221), - [anon_sym_BSLASHaclp] = ACTIONS(6221), - [anon_sym_BSLASHAclp] = ACTIONS(6221), - [anon_sym_BSLASHacf] = ACTIONS(6221), - [anon_sym_BSLASHAcf] = ACTIONS(6221), - [anon_sym_BSLASHacfp] = ACTIONS(6221), - [anon_sym_BSLASHAcfp] = ACTIONS(6221), - [anon_sym_BSLASHac] = ACTIONS(6221), - [anon_sym_BSLASHAc] = ACTIONS(6221), - [anon_sym_BSLASHacp] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6221), - [anon_sym_BSLASHcolor] = ACTIONS(6221), - [anon_sym_BSLASHcolorbox] = ACTIONS(6221), - [anon_sym_BSLASHtextcolor] = ACTIONS(6221), - [anon_sym_BSLASHpagecolor] = ACTIONS(6221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6221), - [anon_sym_BSLASHtext] = ACTIONS(6221), - [anon_sym_BSLASHintertext] = ACTIONS(6221), - [anon_sym_shortintertext] = ACTIONS(6221), - }, - [1272] = { - [sym_command_name] = ACTIONS(6201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6201), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_EQ] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_BSLASHpart] = ACTIONS(6201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddpart] = ACTIONS(6201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6203), - [anon_sym_BSLASHchapter] = ACTIONS(6201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddchap] = ACTIONS(6201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsection] = ACTIONS(6201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddsec] = ACTIONS(6201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubsection] = ACTIONS(6201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHparagraph] = ACTIONS(6201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6203), - [anon_sym_BSLASHitem] = ACTIONS(6201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6203), - [sym_word] = ACTIONS(6201), - [sym_placeholder] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_SQUOTE] = ACTIONS(6201), - [anon_sym__] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6203), - [anon_sym_DOLLAR] = ACTIONS(6201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), - [anon_sym_BSLASHbegin] = ACTIONS(6201), - [anon_sym_BSLASHtitle] = ACTIONS(6201), - [anon_sym_BSLASHauthor] = ACTIONS(6201), - [anon_sym_BSLASHusepackage] = ACTIONS(6201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), - [anon_sym_BSLASHinclude] = ACTIONS(6201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), - [anon_sym_BSLASHinput] = ACTIONS(6201), - [anon_sym_BSLASHsubfile] = ACTIONS(6201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), - [anon_sym_BSLASHbibliography] = ACTIONS(6201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), - [anon_sym_BSLASHincludesvg] = ACTIONS(6201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), - [anon_sym_BSLASHimport] = ACTIONS(6201), - [anon_sym_BSLASHsubimport] = ACTIONS(6201), - [anon_sym_BSLASHinputfrom] = ACTIONS(6201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), - [anon_sym_BSLASHincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHcaption] = ACTIONS(6201), - [anon_sym_BSLASHcite] = ACTIONS(6201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCite] = ACTIONS(6201), - [anon_sym_BSLASHnocite] = ACTIONS(6201), - [anon_sym_BSLASHcitet] = ACTIONS(6201), - [anon_sym_BSLASHcitep] = ACTIONS(6201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteauthor] = ACTIONS(6201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitetitle] = ACTIONS(6201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteyear] = ACTIONS(6201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitedate] = ACTIONS(6201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteurl] = ACTIONS(6201), - [anon_sym_BSLASHfullcite] = ACTIONS(6201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), - [anon_sym_BSLASHcitealt] = ACTIONS(6201), - [anon_sym_BSLASHcitealp] = ACTIONS(6201), - [anon_sym_BSLASHcitetext] = ACTIONS(6201), - [anon_sym_BSLASHparencite] = ACTIONS(6201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHParencite] = ACTIONS(6201), - [anon_sym_BSLASHfootcite] = ACTIONS(6201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), - [anon_sym_BSLASHtextcite] = ACTIONS(6201), - [anon_sym_BSLASHTextcite] = ACTIONS(6201), - [anon_sym_BSLASHsmartcite] = ACTIONS(6201), - [anon_sym_BSLASHSmartcite] = ACTIONS(6201), - [anon_sym_BSLASHsupercite] = ACTIONS(6201), - [anon_sym_BSLASHautocite] = ACTIONS(6201), - [anon_sym_BSLASHAutocite] = ACTIONS(6201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHvolcite] = ACTIONS(6201), - [anon_sym_BSLASHVolcite] = ACTIONS(6201), - [anon_sym_BSLASHpvolcite] = ACTIONS(6201), - [anon_sym_BSLASHPvolcite] = ACTIONS(6201), - [anon_sym_BSLASHfvolcite] = ACTIONS(6201), - [anon_sym_BSLASHftvolcite] = ACTIONS(6201), - [anon_sym_BSLASHsvolcite] = ACTIONS(6201), - [anon_sym_BSLASHSvolcite] = ACTIONS(6201), - [anon_sym_BSLASHtvolcite] = ACTIONS(6201), - [anon_sym_BSLASHTvolcite] = ACTIONS(6201), - [anon_sym_BSLASHavolcite] = ACTIONS(6201), - [anon_sym_BSLASHAvolcite] = ACTIONS(6201), - [anon_sym_BSLASHnotecite] = ACTIONS(6201), - [anon_sym_BSLASHNotecite] = ACTIONS(6201), - [anon_sym_BSLASHpnotecite] = ACTIONS(6201), - [anon_sym_BSLASHPnotecite] = ACTIONS(6201), - [anon_sym_BSLASHfnotecite] = ACTIONS(6201), - [anon_sym_BSLASHlabel] = ACTIONS(6201), - [anon_sym_BSLASHref] = ACTIONS(6201), - [anon_sym_BSLASHeqref] = ACTIONS(6201), - [anon_sym_BSLASHvref] = ACTIONS(6201), - [anon_sym_BSLASHVref] = ACTIONS(6201), - [anon_sym_BSLASHautoref] = ACTIONS(6201), - [anon_sym_BSLASHpageref] = ACTIONS(6201), - [anon_sym_BSLASHcref] = ACTIONS(6201), - [anon_sym_BSLASHCref] = ACTIONS(6201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnameCref] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHlabelcref] = ACTIONS(6201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCrefrange] = ACTIONS(6201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnewlabel] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHdef] = ACTIONS(6201), - [anon_sym_BSLASHlet] = ACTIONS(6201), - [anon_sym_BSLASHleft] = ACTIONS(6201), - [anon_sym_BSLASHbig] = ACTIONS(6201), - [anon_sym_BSLASHBig] = ACTIONS(6201), - [anon_sym_BSLASHbigg] = ACTIONS(6201), - [anon_sym_BSLASHBigg] = ACTIONS(6201), - [anon_sym_BSLASHbigl] = ACTIONS(6201), - [anon_sym_BSLASHBigl] = ACTIONS(6201), - [anon_sym_BSLASHbiggl] = ACTIONS(6201), - [anon_sym_BSLASHBiggl] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), - [anon_sym_BSLASHgls] = ACTIONS(6201), - [anon_sym_BSLASHGls] = ACTIONS(6201), - [anon_sym_BSLASHGLS] = ACTIONS(6201), - [anon_sym_BSLASHglspl] = ACTIONS(6201), - [anon_sym_BSLASHGlspl] = ACTIONS(6201), - [anon_sym_BSLASHGLSpl] = ACTIONS(6201), - [anon_sym_BSLASHglsdisp] = ACTIONS(6201), - [anon_sym_BSLASHglslink] = ACTIONS(6201), - [anon_sym_BSLASHglstext] = ACTIONS(6201), - [anon_sym_BSLASHGlstext] = ACTIONS(6201), - [anon_sym_BSLASHGLStext] = ACTIONS(6201), - [anon_sym_BSLASHglsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), - [anon_sym_BSLASHglsplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSplural] = ACTIONS(6201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHglsname] = ACTIONS(6201), - [anon_sym_BSLASHGlsname] = ACTIONS(6201), - [anon_sym_BSLASHGLSname] = ACTIONS(6201), - [anon_sym_BSLASHglssymbol] = ACTIONS(6201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), - [anon_sym_BSLASHglsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), - [anon_sym_BSLASHglsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), - [anon_sym_BSLASHglsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), - [anon_sym_BSLASHglsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), - [anon_sym_BSLASHglsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), - [anon_sym_BSLASHnewacronym] = ACTIONS(6201), - [anon_sym_BSLASHacrshort] = ACTIONS(6201), - [anon_sym_BSLASHAcrshort] = ACTIONS(6201), - [anon_sym_BSLASHACRshort] = ACTIONS(6201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), - [anon_sym_BSLASHacrlong] = ACTIONS(6201), - [anon_sym_BSLASHAcrlong] = ACTIONS(6201), - [anon_sym_BSLASHACRlong] = ACTIONS(6201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), - [anon_sym_BSLASHacrfull] = ACTIONS(6201), - [anon_sym_BSLASHAcrfull] = ACTIONS(6201), - [anon_sym_BSLASHACRfull] = ACTIONS(6201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), - [anon_sym_BSLASHacs] = ACTIONS(6201), - [anon_sym_BSLASHAcs] = ACTIONS(6201), - [anon_sym_BSLASHacsp] = ACTIONS(6201), - [anon_sym_BSLASHAcsp] = ACTIONS(6201), - [anon_sym_BSLASHacl] = ACTIONS(6201), - [anon_sym_BSLASHAcl] = ACTIONS(6201), - [anon_sym_BSLASHaclp] = ACTIONS(6201), - [anon_sym_BSLASHAclp] = ACTIONS(6201), - [anon_sym_BSLASHacf] = ACTIONS(6201), - [anon_sym_BSLASHAcf] = ACTIONS(6201), - [anon_sym_BSLASHacfp] = ACTIONS(6201), - [anon_sym_BSLASHAcfp] = ACTIONS(6201), - [anon_sym_BSLASHac] = ACTIONS(6201), - [anon_sym_BSLASHAc] = ACTIONS(6201), - [anon_sym_BSLASHacp] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), - [anon_sym_BSLASHcolor] = ACTIONS(6201), - [anon_sym_BSLASHcolorbox] = ACTIONS(6201), - [anon_sym_BSLASHtextcolor] = ACTIONS(6201), - [anon_sym_BSLASHpagecolor] = ACTIONS(6201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), - [anon_sym_BSLASHtext] = ACTIONS(6201), - [anon_sym_BSLASHintertext] = ACTIONS(6201), - [anon_sym_shortintertext] = ACTIONS(6201), - }, - [1273] = { - [sym_command_name] = ACTIONS(6181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6181), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_EQ] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_BSLASHpart] = ACTIONS(6181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddpart] = ACTIONS(6181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6183), - [anon_sym_BSLASHchapter] = ACTIONS(6181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddchap] = ACTIONS(6181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsection] = ACTIONS(6181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddsec] = ACTIONS(6181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubsection] = ACTIONS(6181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHparagraph] = ACTIONS(6181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6183), - [anon_sym_BSLASHitem] = ACTIONS(6181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6183), - [anon_sym_LBRACE] = ACTIONS(6183), - [sym_word] = ACTIONS(6181), - [sym_placeholder] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6183), - [anon_sym_DASH] = ACTIONS(6183), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_COLON] = ACTIONS(6181), - [anon_sym_SQUOTE] = ACTIONS(6181), - [anon_sym__] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), - [anon_sym_BSLASHbegin] = ACTIONS(6181), - [anon_sym_BSLASHtitle] = ACTIONS(6181), - [anon_sym_BSLASHauthor] = ACTIONS(6181), - [anon_sym_BSLASHusepackage] = ACTIONS(6181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), - [anon_sym_BSLASHinclude] = ACTIONS(6181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), - [anon_sym_BSLASHinput] = ACTIONS(6181), - [anon_sym_BSLASHsubfile] = ACTIONS(6181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), - [anon_sym_BSLASHbibliography] = ACTIONS(6181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), - [anon_sym_BSLASHincludesvg] = ACTIONS(6181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), - [anon_sym_BSLASHimport] = ACTIONS(6181), - [anon_sym_BSLASHsubimport] = ACTIONS(6181), - [anon_sym_BSLASHinputfrom] = ACTIONS(6181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), - [anon_sym_BSLASHincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHcaption] = ACTIONS(6181), - [anon_sym_BSLASHcite] = ACTIONS(6181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCite] = ACTIONS(6181), - [anon_sym_BSLASHnocite] = ACTIONS(6181), - [anon_sym_BSLASHcitet] = ACTIONS(6181), - [anon_sym_BSLASHcitep] = ACTIONS(6181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteauthor] = ACTIONS(6181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitetitle] = ACTIONS(6181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteyear] = ACTIONS(6181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitedate] = ACTIONS(6181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteurl] = ACTIONS(6181), - [anon_sym_BSLASHfullcite] = ACTIONS(6181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), - [anon_sym_BSLASHcitealt] = ACTIONS(6181), - [anon_sym_BSLASHcitealp] = ACTIONS(6181), - [anon_sym_BSLASHcitetext] = ACTIONS(6181), - [anon_sym_BSLASHparencite] = ACTIONS(6181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHParencite] = ACTIONS(6181), - [anon_sym_BSLASHfootcite] = ACTIONS(6181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), - [anon_sym_BSLASHtextcite] = ACTIONS(6181), - [anon_sym_BSLASHTextcite] = ACTIONS(6181), - [anon_sym_BSLASHsmartcite] = ACTIONS(6181), - [anon_sym_BSLASHSmartcite] = ACTIONS(6181), - [anon_sym_BSLASHsupercite] = ACTIONS(6181), - [anon_sym_BSLASHautocite] = ACTIONS(6181), - [anon_sym_BSLASHAutocite] = ACTIONS(6181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHvolcite] = ACTIONS(6181), - [anon_sym_BSLASHVolcite] = ACTIONS(6181), - [anon_sym_BSLASHpvolcite] = ACTIONS(6181), - [anon_sym_BSLASHPvolcite] = ACTIONS(6181), - [anon_sym_BSLASHfvolcite] = ACTIONS(6181), - [anon_sym_BSLASHftvolcite] = ACTIONS(6181), - [anon_sym_BSLASHsvolcite] = ACTIONS(6181), - [anon_sym_BSLASHSvolcite] = ACTIONS(6181), - [anon_sym_BSLASHtvolcite] = ACTIONS(6181), - [anon_sym_BSLASHTvolcite] = ACTIONS(6181), - [anon_sym_BSLASHavolcite] = ACTIONS(6181), - [anon_sym_BSLASHAvolcite] = ACTIONS(6181), - [anon_sym_BSLASHnotecite] = ACTIONS(6181), - [anon_sym_BSLASHNotecite] = ACTIONS(6181), - [anon_sym_BSLASHpnotecite] = ACTIONS(6181), - [anon_sym_BSLASHPnotecite] = ACTIONS(6181), - [anon_sym_BSLASHfnotecite] = ACTIONS(6181), - [anon_sym_BSLASHlabel] = ACTIONS(6181), - [anon_sym_BSLASHref] = ACTIONS(6181), - [anon_sym_BSLASHeqref] = ACTIONS(6181), - [anon_sym_BSLASHvref] = ACTIONS(6181), - [anon_sym_BSLASHVref] = ACTIONS(6181), - [anon_sym_BSLASHautoref] = ACTIONS(6181), - [anon_sym_BSLASHpageref] = ACTIONS(6181), - [anon_sym_BSLASHcref] = ACTIONS(6181), - [anon_sym_BSLASHCref] = ACTIONS(6181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnameCref] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHlabelcref] = ACTIONS(6181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCrefrange] = ACTIONS(6181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnewlabel] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHdef] = ACTIONS(6181), - [anon_sym_BSLASHlet] = ACTIONS(6181), - [anon_sym_BSLASHleft] = ACTIONS(6181), - [anon_sym_BSLASHbig] = ACTIONS(6181), - [anon_sym_BSLASHBig] = ACTIONS(6181), - [anon_sym_BSLASHbigg] = ACTIONS(6181), - [anon_sym_BSLASHBigg] = ACTIONS(6181), - [anon_sym_BSLASHbigl] = ACTIONS(6181), - [anon_sym_BSLASHBigl] = ACTIONS(6181), - [anon_sym_BSLASHbiggl] = ACTIONS(6181), - [anon_sym_BSLASHBiggl] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), - [anon_sym_BSLASHgls] = ACTIONS(6181), - [anon_sym_BSLASHGls] = ACTIONS(6181), - [anon_sym_BSLASHGLS] = ACTIONS(6181), - [anon_sym_BSLASHglspl] = ACTIONS(6181), - [anon_sym_BSLASHGlspl] = ACTIONS(6181), - [anon_sym_BSLASHGLSpl] = ACTIONS(6181), - [anon_sym_BSLASHglsdisp] = ACTIONS(6181), - [anon_sym_BSLASHglslink] = ACTIONS(6181), - [anon_sym_BSLASHglstext] = ACTIONS(6181), - [anon_sym_BSLASHGlstext] = ACTIONS(6181), - [anon_sym_BSLASHGLStext] = ACTIONS(6181), - [anon_sym_BSLASHglsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), - [anon_sym_BSLASHglsplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSplural] = ACTIONS(6181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHglsname] = ACTIONS(6181), - [anon_sym_BSLASHGlsname] = ACTIONS(6181), - [anon_sym_BSLASHGLSname] = ACTIONS(6181), - [anon_sym_BSLASHglssymbol] = ACTIONS(6181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), - [anon_sym_BSLASHglsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), - [anon_sym_BSLASHglsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), - [anon_sym_BSLASHglsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), - [anon_sym_BSLASHglsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), - [anon_sym_BSLASHglsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), - [anon_sym_BSLASHnewacronym] = ACTIONS(6181), - [anon_sym_BSLASHacrshort] = ACTIONS(6181), - [anon_sym_BSLASHAcrshort] = ACTIONS(6181), - [anon_sym_BSLASHACRshort] = ACTIONS(6181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), - [anon_sym_BSLASHacrlong] = ACTIONS(6181), - [anon_sym_BSLASHAcrlong] = ACTIONS(6181), - [anon_sym_BSLASHACRlong] = ACTIONS(6181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), - [anon_sym_BSLASHacrfull] = ACTIONS(6181), - [anon_sym_BSLASHAcrfull] = ACTIONS(6181), - [anon_sym_BSLASHACRfull] = ACTIONS(6181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), - [anon_sym_BSLASHacs] = ACTIONS(6181), - [anon_sym_BSLASHAcs] = ACTIONS(6181), - [anon_sym_BSLASHacsp] = ACTIONS(6181), - [anon_sym_BSLASHAcsp] = ACTIONS(6181), - [anon_sym_BSLASHacl] = ACTIONS(6181), - [anon_sym_BSLASHAcl] = ACTIONS(6181), - [anon_sym_BSLASHaclp] = ACTIONS(6181), - [anon_sym_BSLASHAclp] = ACTIONS(6181), - [anon_sym_BSLASHacf] = ACTIONS(6181), - [anon_sym_BSLASHAcf] = ACTIONS(6181), - [anon_sym_BSLASHacfp] = ACTIONS(6181), - [anon_sym_BSLASHAcfp] = ACTIONS(6181), - [anon_sym_BSLASHac] = ACTIONS(6181), - [anon_sym_BSLASHAc] = ACTIONS(6181), - [anon_sym_BSLASHacp] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), - [anon_sym_BSLASHcolor] = ACTIONS(6181), - [anon_sym_BSLASHcolorbox] = ACTIONS(6181), - [anon_sym_BSLASHtextcolor] = ACTIONS(6181), - [anon_sym_BSLASHpagecolor] = ACTIONS(6181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), - [anon_sym_BSLASHtext] = ACTIONS(6181), - [anon_sym_BSLASHintertext] = ACTIONS(6181), - [anon_sym_shortintertext] = ACTIONS(6181), - }, - [1274] = { - [sym_command_name] = ACTIONS(6445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6445), - [anon_sym_LBRACK] = ACTIONS(6447), - [anon_sym_RBRACK] = ACTIONS(6447), - [anon_sym_COMMA] = ACTIONS(6447), - [anon_sym_EQ] = ACTIONS(6447), - [anon_sym_LPAREN] = ACTIONS(6447), - [anon_sym_RPAREN] = ACTIONS(6447), - [anon_sym_BSLASHpart] = ACTIONS(6445), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddpart] = ACTIONS(6445), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6447), - [anon_sym_BSLASHchapter] = ACTIONS(6445), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddchap] = ACTIONS(6445), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsection] = ACTIONS(6445), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHaddsec] = ACTIONS(6445), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubsection] = ACTIONS(6445), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6445), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6447), - [anon_sym_BSLASHparagraph] = ACTIONS(6445), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6447), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6445), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6447), - [anon_sym_BSLASHitem] = ACTIONS(6445), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6447), - [anon_sym_LBRACE] = ACTIONS(6447), - [sym_word] = ACTIONS(6445), - [sym_placeholder] = ACTIONS(6447), - [anon_sym_PLUS] = ACTIONS(6447), - [anon_sym_DASH] = ACTIONS(6447), - [anon_sym_STAR] = ACTIONS(6447), - [anon_sym_SLASH] = ACTIONS(6447), - [anon_sym_LT] = ACTIONS(6445), - [anon_sym_GT] = ACTIONS(6445), - [anon_sym_BANG] = ACTIONS(6445), - [anon_sym_PIPE] = ACTIONS(6445), - [anon_sym_COLON] = ACTIONS(6445), - [anon_sym_SQUOTE] = ACTIONS(6445), - [anon_sym__] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6447), - [anon_sym_DOLLAR] = ACTIONS(6445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6447), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6447), - [anon_sym_BSLASHbegin] = ACTIONS(6445), - [anon_sym_BSLASHtitle] = ACTIONS(6445), - [anon_sym_BSLASHauthor] = ACTIONS(6445), - [anon_sym_BSLASHusepackage] = ACTIONS(6445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6445), - [anon_sym_BSLASHinclude] = ACTIONS(6445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6445), - [anon_sym_BSLASHinput] = ACTIONS(6445), - [anon_sym_BSLASHsubfile] = ACTIONS(6445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6445), - [anon_sym_BSLASHbibliography] = ACTIONS(6445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6445), - [anon_sym_BSLASHincludesvg] = ACTIONS(6445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6445), - [anon_sym_BSLASHimport] = ACTIONS(6445), - [anon_sym_BSLASHsubimport] = ACTIONS(6445), - [anon_sym_BSLASHinputfrom] = ACTIONS(6445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6445), - [anon_sym_BSLASHincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHcaption] = ACTIONS(6445), - [anon_sym_BSLASHcite] = ACTIONS(6445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCite] = ACTIONS(6445), - [anon_sym_BSLASHnocite] = ACTIONS(6445), - [anon_sym_BSLASHcitet] = ACTIONS(6445), - [anon_sym_BSLASHcitep] = ACTIONS(6445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteauthor] = ACTIONS(6445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitetitle] = ACTIONS(6445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteyear] = ACTIONS(6445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitedate] = ACTIONS(6445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteurl] = ACTIONS(6445), - [anon_sym_BSLASHfullcite] = ACTIONS(6445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6445), - [anon_sym_BSLASHcitealt] = ACTIONS(6445), - [anon_sym_BSLASHcitealp] = ACTIONS(6445), - [anon_sym_BSLASHcitetext] = ACTIONS(6445), - [anon_sym_BSLASHparencite] = ACTIONS(6445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHParencite] = ACTIONS(6445), - [anon_sym_BSLASHfootcite] = ACTIONS(6445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6445), - [anon_sym_BSLASHtextcite] = ACTIONS(6445), - [anon_sym_BSLASHTextcite] = ACTIONS(6445), - [anon_sym_BSLASHsmartcite] = ACTIONS(6445), - [anon_sym_BSLASHSmartcite] = ACTIONS(6445), - [anon_sym_BSLASHsupercite] = ACTIONS(6445), - [anon_sym_BSLASHautocite] = ACTIONS(6445), - [anon_sym_BSLASHAutocite] = ACTIONS(6445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHvolcite] = ACTIONS(6445), - [anon_sym_BSLASHVolcite] = ACTIONS(6445), - [anon_sym_BSLASHpvolcite] = ACTIONS(6445), - [anon_sym_BSLASHPvolcite] = ACTIONS(6445), - [anon_sym_BSLASHfvolcite] = ACTIONS(6445), - [anon_sym_BSLASHftvolcite] = ACTIONS(6445), - [anon_sym_BSLASHsvolcite] = ACTIONS(6445), - [anon_sym_BSLASHSvolcite] = ACTIONS(6445), - [anon_sym_BSLASHtvolcite] = ACTIONS(6445), - [anon_sym_BSLASHTvolcite] = ACTIONS(6445), - [anon_sym_BSLASHavolcite] = ACTIONS(6445), - [anon_sym_BSLASHAvolcite] = ACTIONS(6445), - [anon_sym_BSLASHnotecite] = ACTIONS(6445), - [anon_sym_BSLASHNotecite] = ACTIONS(6445), - [anon_sym_BSLASHpnotecite] = ACTIONS(6445), - [anon_sym_BSLASHPnotecite] = ACTIONS(6445), - [anon_sym_BSLASHfnotecite] = ACTIONS(6445), - [anon_sym_BSLASHlabel] = ACTIONS(6445), - [anon_sym_BSLASHref] = ACTIONS(6445), - [anon_sym_BSLASHeqref] = ACTIONS(6445), - [anon_sym_BSLASHvref] = ACTIONS(6445), - [anon_sym_BSLASHVref] = ACTIONS(6445), - [anon_sym_BSLASHautoref] = ACTIONS(6445), - [anon_sym_BSLASHpageref] = ACTIONS(6445), - [anon_sym_BSLASHcref] = ACTIONS(6445), - [anon_sym_BSLASHCref] = ACTIONS(6445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnameCref] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHlabelcref] = ACTIONS(6445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCrefrange] = ACTIONS(6445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnewlabel] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6447), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHdef] = ACTIONS(6445), - [anon_sym_BSLASHlet] = ACTIONS(6445), - [anon_sym_BSLASHleft] = ACTIONS(6445), - [anon_sym_BSLASHbig] = ACTIONS(6445), - [anon_sym_BSLASHBig] = ACTIONS(6445), - [anon_sym_BSLASHbigg] = ACTIONS(6445), - [anon_sym_BSLASHBigg] = ACTIONS(6445), - [anon_sym_BSLASHbigl] = ACTIONS(6445), - [anon_sym_BSLASHBigl] = ACTIONS(6445), - [anon_sym_BSLASHbiggl] = ACTIONS(6445), - [anon_sym_BSLASHBiggl] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6445), - [anon_sym_BSLASHgls] = ACTIONS(6445), - [anon_sym_BSLASHGls] = ACTIONS(6445), - [anon_sym_BSLASHGLS] = ACTIONS(6445), - [anon_sym_BSLASHglspl] = ACTIONS(6445), - [anon_sym_BSLASHGlspl] = ACTIONS(6445), - [anon_sym_BSLASHGLSpl] = ACTIONS(6445), - [anon_sym_BSLASHglsdisp] = ACTIONS(6445), - [anon_sym_BSLASHglslink] = ACTIONS(6445), - [anon_sym_BSLASHglstext] = ACTIONS(6445), - [anon_sym_BSLASHGlstext] = ACTIONS(6445), - [anon_sym_BSLASHGLStext] = ACTIONS(6445), - [anon_sym_BSLASHglsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6445), - [anon_sym_BSLASHglsplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSplural] = ACTIONS(6445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHglsname] = ACTIONS(6445), - [anon_sym_BSLASHGlsname] = ACTIONS(6445), - [anon_sym_BSLASHGLSname] = ACTIONS(6445), - [anon_sym_BSLASHglssymbol] = ACTIONS(6445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6445), - [anon_sym_BSLASHglsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6445), - [anon_sym_BSLASHglsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6445), - [anon_sym_BSLASHglsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6445), - [anon_sym_BSLASHglsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6445), - [anon_sym_BSLASHglsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6445), - [anon_sym_BSLASHnewacronym] = ACTIONS(6445), - [anon_sym_BSLASHacrshort] = ACTIONS(6445), - [anon_sym_BSLASHAcrshort] = ACTIONS(6445), - [anon_sym_BSLASHACRshort] = ACTIONS(6445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6445), - [anon_sym_BSLASHacrlong] = ACTIONS(6445), - [anon_sym_BSLASHAcrlong] = ACTIONS(6445), - [anon_sym_BSLASHACRlong] = ACTIONS(6445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6445), - [anon_sym_BSLASHacrfull] = ACTIONS(6445), - [anon_sym_BSLASHAcrfull] = ACTIONS(6445), - [anon_sym_BSLASHACRfull] = ACTIONS(6445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6445), - [anon_sym_BSLASHacs] = ACTIONS(6445), - [anon_sym_BSLASHAcs] = ACTIONS(6445), - [anon_sym_BSLASHacsp] = ACTIONS(6445), - [anon_sym_BSLASHAcsp] = ACTIONS(6445), - [anon_sym_BSLASHacl] = ACTIONS(6445), - [anon_sym_BSLASHAcl] = ACTIONS(6445), - [anon_sym_BSLASHaclp] = ACTIONS(6445), - [anon_sym_BSLASHAclp] = ACTIONS(6445), - [anon_sym_BSLASHacf] = ACTIONS(6445), - [anon_sym_BSLASHAcf] = ACTIONS(6445), - [anon_sym_BSLASHacfp] = ACTIONS(6445), - [anon_sym_BSLASHAcfp] = ACTIONS(6445), - [anon_sym_BSLASHac] = ACTIONS(6445), - [anon_sym_BSLASHAc] = ACTIONS(6445), - [anon_sym_BSLASHacp] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6445), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6445), - [anon_sym_BSLASHcolor] = ACTIONS(6445), - [anon_sym_BSLASHcolorbox] = ACTIONS(6445), - [anon_sym_BSLASHtextcolor] = ACTIONS(6445), - [anon_sym_BSLASHpagecolor] = ACTIONS(6445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6445), - [anon_sym_BSLASHtext] = ACTIONS(6445), - [anon_sym_BSLASHintertext] = ACTIONS(6445), - [anon_sym_shortintertext] = ACTIONS(6445), - }, - [1275] = { - [sym_command_name] = ACTIONS(6169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6169), - [anon_sym_LBRACK] = ACTIONS(6171), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_EQ] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_BSLASHpart] = ACTIONS(6169), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddpart] = ACTIONS(6169), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6171), - [anon_sym_BSLASHchapter] = ACTIONS(6169), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddchap] = ACTIONS(6169), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsection] = ACTIONS(6169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddsec] = ACTIONS(6169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubsection] = ACTIONS(6169), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHparagraph] = ACTIONS(6169), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6169), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6171), - [anon_sym_BSLASHitem] = ACTIONS(6169), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6171), - [anon_sym_LBRACE] = ACTIONS(6171), - [sym_word] = ACTIONS(6169), - [sym_placeholder] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6171), - [anon_sym_DASH] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_COLON] = ACTIONS(6169), - [anon_sym_SQUOTE] = ACTIONS(6169), - [anon_sym__] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6171), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6171), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6171), - [anon_sym_DOLLAR] = ACTIONS(6169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6171), - [anon_sym_BSLASHbegin] = ACTIONS(6169), - [anon_sym_BSLASHtitle] = ACTIONS(6169), - [anon_sym_BSLASHauthor] = ACTIONS(6169), - [anon_sym_BSLASHusepackage] = ACTIONS(6169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6169), - [anon_sym_BSLASHinclude] = ACTIONS(6169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6169), - [anon_sym_BSLASHinput] = ACTIONS(6169), - [anon_sym_BSLASHsubfile] = ACTIONS(6169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6169), - [anon_sym_BSLASHbibliography] = ACTIONS(6169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6169), - [anon_sym_BSLASHincludesvg] = ACTIONS(6169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6169), - [anon_sym_BSLASHimport] = ACTIONS(6169), - [anon_sym_BSLASHsubimport] = ACTIONS(6169), - [anon_sym_BSLASHinputfrom] = ACTIONS(6169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6169), - [anon_sym_BSLASHincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHcaption] = ACTIONS(6169), - [anon_sym_BSLASHcite] = ACTIONS(6169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCite] = ACTIONS(6169), - [anon_sym_BSLASHnocite] = ACTIONS(6169), - [anon_sym_BSLASHcitet] = ACTIONS(6169), - [anon_sym_BSLASHcitep] = ACTIONS(6169), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteauthor] = ACTIONS(6169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitetitle] = ACTIONS(6169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteyear] = ACTIONS(6169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitedate] = ACTIONS(6169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteurl] = ACTIONS(6169), - [anon_sym_BSLASHfullcite] = ACTIONS(6169), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6169), - [anon_sym_BSLASHcitealt] = ACTIONS(6169), - [anon_sym_BSLASHcitealp] = ACTIONS(6169), - [anon_sym_BSLASHcitetext] = ACTIONS(6169), - [anon_sym_BSLASHparencite] = ACTIONS(6169), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHParencite] = ACTIONS(6169), - [anon_sym_BSLASHfootcite] = ACTIONS(6169), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6169), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6169), - [anon_sym_BSLASHtextcite] = ACTIONS(6169), - [anon_sym_BSLASHTextcite] = ACTIONS(6169), - [anon_sym_BSLASHsmartcite] = ACTIONS(6169), - [anon_sym_BSLASHSmartcite] = ACTIONS(6169), - [anon_sym_BSLASHsupercite] = ACTIONS(6169), - [anon_sym_BSLASHautocite] = ACTIONS(6169), - [anon_sym_BSLASHAutocite] = ACTIONS(6169), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHvolcite] = ACTIONS(6169), - [anon_sym_BSLASHVolcite] = ACTIONS(6169), - [anon_sym_BSLASHpvolcite] = ACTIONS(6169), - [anon_sym_BSLASHPvolcite] = ACTIONS(6169), - [anon_sym_BSLASHfvolcite] = ACTIONS(6169), - [anon_sym_BSLASHftvolcite] = ACTIONS(6169), - [anon_sym_BSLASHsvolcite] = ACTIONS(6169), - [anon_sym_BSLASHSvolcite] = ACTIONS(6169), - [anon_sym_BSLASHtvolcite] = ACTIONS(6169), - [anon_sym_BSLASHTvolcite] = ACTIONS(6169), - [anon_sym_BSLASHavolcite] = ACTIONS(6169), - [anon_sym_BSLASHAvolcite] = ACTIONS(6169), - [anon_sym_BSLASHnotecite] = ACTIONS(6169), - [anon_sym_BSLASHNotecite] = ACTIONS(6169), - [anon_sym_BSLASHpnotecite] = ACTIONS(6169), - [anon_sym_BSLASHPnotecite] = ACTIONS(6169), - [anon_sym_BSLASHfnotecite] = ACTIONS(6169), - [anon_sym_BSLASHlabel] = ACTIONS(6169), - [anon_sym_BSLASHref] = ACTIONS(6169), - [anon_sym_BSLASHeqref] = ACTIONS(6169), - [anon_sym_BSLASHvref] = ACTIONS(6169), - [anon_sym_BSLASHVref] = ACTIONS(6169), - [anon_sym_BSLASHautoref] = ACTIONS(6169), - [anon_sym_BSLASHpageref] = ACTIONS(6169), - [anon_sym_BSLASHcref] = ACTIONS(6169), - [anon_sym_BSLASHCref] = ACTIONS(6169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnameCref] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHlabelcref] = ACTIONS(6169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCrefrange] = ACTIONS(6169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnewlabel] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6171), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHdef] = ACTIONS(6169), - [anon_sym_BSLASHlet] = ACTIONS(6169), - [anon_sym_BSLASHleft] = ACTIONS(6169), - [anon_sym_BSLASHbig] = ACTIONS(6169), - [anon_sym_BSLASHBig] = ACTIONS(6169), - [anon_sym_BSLASHbigg] = ACTIONS(6169), - [anon_sym_BSLASHBigg] = ACTIONS(6169), - [anon_sym_BSLASHbigl] = ACTIONS(6169), - [anon_sym_BSLASHBigl] = ACTIONS(6169), - [anon_sym_BSLASHbiggl] = ACTIONS(6169), - [anon_sym_BSLASHBiggl] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6169), - [anon_sym_BSLASHgls] = ACTIONS(6169), - [anon_sym_BSLASHGls] = ACTIONS(6169), - [anon_sym_BSLASHGLS] = ACTIONS(6169), - [anon_sym_BSLASHglspl] = ACTIONS(6169), - [anon_sym_BSLASHGlspl] = ACTIONS(6169), - [anon_sym_BSLASHGLSpl] = ACTIONS(6169), - [anon_sym_BSLASHglsdisp] = ACTIONS(6169), - [anon_sym_BSLASHglslink] = ACTIONS(6169), - [anon_sym_BSLASHglstext] = ACTIONS(6169), - [anon_sym_BSLASHGlstext] = ACTIONS(6169), - [anon_sym_BSLASHGLStext] = ACTIONS(6169), - [anon_sym_BSLASHglsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6169), - [anon_sym_BSLASHglsplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSplural] = ACTIONS(6169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHglsname] = ACTIONS(6169), - [anon_sym_BSLASHGlsname] = ACTIONS(6169), - [anon_sym_BSLASHGLSname] = ACTIONS(6169), - [anon_sym_BSLASHglssymbol] = ACTIONS(6169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6169), - [anon_sym_BSLASHglsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6169), - [anon_sym_BSLASHglsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6169), - [anon_sym_BSLASHglsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6169), - [anon_sym_BSLASHglsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6169), - [anon_sym_BSLASHglsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6169), - [anon_sym_BSLASHnewacronym] = ACTIONS(6169), - [anon_sym_BSLASHacrshort] = ACTIONS(6169), - [anon_sym_BSLASHAcrshort] = ACTIONS(6169), - [anon_sym_BSLASHACRshort] = ACTIONS(6169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6169), - [anon_sym_BSLASHacrlong] = ACTIONS(6169), - [anon_sym_BSLASHAcrlong] = ACTIONS(6169), - [anon_sym_BSLASHACRlong] = ACTIONS(6169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6169), - [anon_sym_BSLASHacrfull] = ACTIONS(6169), - [anon_sym_BSLASHAcrfull] = ACTIONS(6169), - [anon_sym_BSLASHACRfull] = ACTIONS(6169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6169), - [anon_sym_BSLASHacs] = ACTIONS(6169), - [anon_sym_BSLASHAcs] = ACTIONS(6169), - [anon_sym_BSLASHacsp] = ACTIONS(6169), - [anon_sym_BSLASHAcsp] = ACTIONS(6169), - [anon_sym_BSLASHacl] = ACTIONS(6169), - [anon_sym_BSLASHAcl] = ACTIONS(6169), - [anon_sym_BSLASHaclp] = ACTIONS(6169), - [anon_sym_BSLASHAclp] = ACTIONS(6169), - [anon_sym_BSLASHacf] = ACTIONS(6169), - [anon_sym_BSLASHAcf] = ACTIONS(6169), - [anon_sym_BSLASHacfp] = ACTIONS(6169), - [anon_sym_BSLASHAcfp] = ACTIONS(6169), - [anon_sym_BSLASHac] = ACTIONS(6169), - [anon_sym_BSLASHAc] = ACTIONS(6169), - [anon_sym_BSLASHacp] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6169), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6169), - [anon_sym_BSLASHcolor] = ACTIONS(6169), - [anon_sym_BSLASHcolorbox] = ACTIONS(6169), - [anon_sym_BSLASHtextcolor] = ACTIONS(6169), - [anon_sym_BSLASHpagecolor] = ACTIONS(6169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6169), - [anon_sym_BSLASHtext] = ACTIONS(6169), - [anon_sym_BSLASHintertext] = ACTIONS(6169), - [anon_sym_shortintertext] = ACTIONS(6169), - }, - [1276] = { - [sym_command_name] = ACTIONS(6117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6117), - [anon_sym_LBRACK] = ACTIONS(6119), - [anon_sym_RBRACK] = ACTIONS(6119), - [anon_sym_COMMA] = ACTIONS(6119), - [anon_sym_EQ] = ACTIONS(6119), - [anon_sym_LPAREN] = ACTIONS(6119), - [anon_sym_RPAREN] = ACTIONS(6119), - [anon_sym_BSLASHpart] = ACTIONS(6117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddpart] = ACTIONS(6117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6119), - [anon_sym_BSLASHchapter] = ACTIONS(6117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddchap] = ACTIONS(6117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsection] = ACTIONS(6117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddsec] = ACTIONS(6117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubsection] = ACTIONS(6117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHparagraph] = ACTIONS(6117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6119), - [anon_sym_BSLASHitem] = ACTIONS(6117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6119), - [anon_sym_LBRACE] = ACTIONS(6119), - [sym_word] = ACTIONS(6117), - [sym_placeholder] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6119), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_LT] = ACTIONS(6117), - [anon_sym_GT] = ACTIONS(6117), - [anon_sym_BANG] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_SQUOTE] = ACTIONS(6117), - [anon_sym__] = ACTIONS(6119), - [anon_sym_CARET] = ACTIONS(6119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6119), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6119), - [anon_sym_DOLLAR] = ACTIONS(6117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6119), - [anon_sym_BSLASHbegin] = ACTIONS(6117), - [anon_sym_BSLASHtitle] = ACTIONS(6117), - [anon_sym_BSLASHauthor] = ACTIONS(6117), - [anon_sym_BSLASHusepackage] = ACTIONS(6117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6117), - [anon_sym_BSLASHinclude] = ACTIONS(6117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6117), - [anon_sym_BSLASHinput] = ACTIONS(6117), - [anon_sym_BSLASHsubfile] = ACTIONS(6117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6117), - [anon_sym_BSLASHbibliography] = ACTIONS(6117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6117), - [anon_sym_BSLASHincludesvg] = ACTIONS(6117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6117), - [anon_sym_BSLASHimport] = ACTIONS(6117), - [anon_sym_BSLASHsubimport] = ACTIONS(6117), - [anon_sym_BSLASHinputfrom] = ACTIONS(6117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6117), - [anon_sym_BSLASHincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHcaption] = ACTIONS(6117), - [anon_sym_BSLASHcite] = ACTIONS(6117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCite] = ACTIONS(6117), - [anon_sym_BSLASHnocite] = ACTIONS(6117), - [anon_sym_BSLASHcitet] = ACTIONS(6117), - [anon_sym_BSLASHcitep] = ACTIONS(6117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteauthor] = ACTIONS(6117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitetitle] = ACTIONS(6117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteyear] = ACTIONS(6117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitedate] = ACTIONS(6117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteurl] = ACTIONS(6117), - [anon_sym_BSLASHfullcite] = ACTIONS(6117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6117), - [anon_sym_BSLASHcitealt] = ACTIONS(6117), - [anon_sym_BSLASHcitealp] = ACTIONS(6117), - [anon_sym_BSLASHcitetext] = ACTIONS(6117), - [anon_sym_BSLASHparencite] = ACTIONS(6117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHParencite] = ACTIONS(6117), - [anon_sym_BSLASHfootcite] = ACTIONS(6117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6117), - [anon_sym_BSLASHtextcite] = ACTIONS(6117), - [anon_sym_BSLASHTextcite] = ACTIONS(6117), - [anon_sym_BSLASHsmartcite] = ACTIONS(6117), - [anon_sym_BSLASHSmartcite] = ACTIONS(6117), - [anon_sym_BSLASHsupercite] = ACTIONS(6117), - [anon_sym_BSLASHautocite] = ACTIONS(6117), - [anon_sym_BSLASHAutocite] = ACTIONS(6117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHvolcite] = ACTIONS(6117), - [anon_sym_BSLASHVolcite] = ACTIONS(6117), - [anon_sym_BSLASHpvolcite] = ACTIONS(6117), - [anon_sym_BSLASHPvolcite] = ACTIONS(6117), - [anon_sym_BSLASHfvolcite] = ACTIONS(6117), - [anon_sym_BSLASHftvolcite] = ACTIONS(6117), - [anon_sym_BSLASHsvolcite] = ACTIONS(6117), - [anon_sym_BSLASHSvolcite] = ACTIONS(6117), - [anon_sym_BSLASHtvolcite] = ACTIONS(6117), - [anon_sym_BSLASHTvolcite] = ACTIONS(6117), - [anon_sym_BSLASHavolcite] = ACTIONS(6117), - [anon_sym_BSLASHAvolcite] = ACTIONS(6117), - [anon_sym_BSLASHnotecite] = ACTIONS(6117), - [anon_sym_BSLASHNotecite] = ACTIONS(6117), - [anon_sym_BSLASHpnotecite] = ACTIONS(6117), - [anon_sym_BSLASHPnotecite] = ACTIONS(6117), - [anon_sym_BSLASHfnotecite] = ACTIONS(6117), - [anon_sym_BSLASHlabel] = ACTIONS(6117), - [anon_sym_BSLASHref] = ACTIONS(6117), - [anon_sym_BSLASHeqref] = ACTIONS(6117), - [anon_sym_BSLASHvref] = ACTIONS(6117), - [anon_sym_BSLASHVref] = ACTIONS(6117), - [anon_sym_BSLASHautoref] = ACTIONS(6117), - [anon_sym_BSLASHpageref] = ACTIONS(6117), - [anon_sym_BSLASHcref] = ACTIONS(6117), - [anon_sym_BSLASHCref] = ACTIONS(6117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnameCref] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHlabelcref] = ACTIONS(6117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCrefrange] = ACTIONS(6117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnewlabel] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6119), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHdef] = ACTIONS(6117), - [anon_sym_BSLASHlet] = ACTIONS(6117), - [anon_sym_BSLASHleft] = ACTIONS(6117), - [anon_sym_BSLASHbig] = ACTIONS(6117), - [anon_sym_BSLASHBig] = ACTIONS(6117), - [anon_sym_BSLASHbigg] = ACTIONS(6117), - [anon_sym_BSLASHBigg] = ACTIONS(6117), - [anon_sym_BSLASHbigl] = ACTIONS(6117), - [anon_sym_BSLASHBigl] = ACTIONS(6117), - [anon_sym_BSLASHbiggl] = ACTIONS(6117), - [anon_sym_BSLASHBiggl] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6117), - [anon_sym_BSLASHgls] = ACTIONS(6117), - [anon_sym_BSLASHGls] = ACTIONS(6117), - [anon_sym_BSLASHGLS] = ACTIONS(6117), - [anon_sym_BSLASHglspl] = ACTIONS(6117), - [anon_sym_BSLASHGlspl] = ACTIONS(6117), - [anon_sym_BSLASHGLSpl] = ACTIONS(6117), - [anon_sym_BSLASHglsdisp] = ACTIONS(6117), - [anon_sym_BSLASHglslink] = ACTIONS(6117), - [anon_sym_BSLASHglstext] = ACTIONS(6117), - [anon_sym_BSLASHGlstext] = ACTIONS(6117), - [anon_sym_BSLASHGLStext] = ACTIONS(6117), - [anon_sym_BSLASHglsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6117), - [anon_sym_BSLASHglsplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSplural] = ACTIONS(6117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHglsname] = ACTIONS(6117), - [anon_sym_BSLASHGlsname] = ACTIONS(6117), - [anon_sym_BSLASHGLSname] = ACTIONS(6117), - [anon_sym_BSLASHglssymbol] = ACTIONS(6117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6117), - [anon_sym_BSLASHglsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6117), - [anon_sym_BSLASHglsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6117), - [anon_sym_BSLASHglsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6117), - [anon_sym_BSLASHglsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6117), - [anon_sym_BSLASHglsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6117), - [anon_sym_BSLASHnewacronym] = ACTIONS(6117), - [anon_sym_BSLASHacrshort] = ACTIONS(6117), - [anon_sym_BSLASHAcrshort] = ACTIONS(6117), - [anon_sym_BSLASHACRshort] = ACTIONS(6117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6117), - [anon_sym_BSLASHacrlong] = ACTIONS(6117), - [anon_sym_BSLASHAcrlong] = ACTIONS(6117), - [anon_sym_BSLASHACRlong] = ACTIONS(6117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6117), - [anon_sym_BSLASHacrfull] = ACTIONS(6117), - [anon_sym_BSLASHAcrfull] = ACTIONS(6117), - [anon_sym_BSLASHACRfull] = ACTIONS(6117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6117), - [anon_sym_BSLASHacs] = ACTIONS(6117), - [anon_sym_BSLASHAcs] = ACTIONS(6117), - [anon_sym_BSLASHacsp] = ACTIONS(6117), - [anon_sym_BSLASHAcsp] = ACTIONS(6117), - [anon_sym_BSLASHacl] = ACTIONS(6117), - [anon_sym_BSLASHAcl] = ACTIONS(6117), - [anon_sym_BSLASHaclp] = ACTIONS(6117), - [anon_sym_BSLASHAclp] = ACTIONS(6117), - [anon_sym_BSLASHacf] = ACTIONS(6117), - [anon_sym_BSLASHAcf] = ACTIONS(6117), - [anon_sym_BSLASHacfp] = ACTIONS(6117), - [anon_sym_BSLASHAcfp] = ACTIONS(6117), - [anon_sym_BSLASHac] = ACTIONS(6117), - [anon_sym_BSLASHAc] = ACTIONS(6117), - [anon_sym_BSLASHacp] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6117), - [anon_sym_BSLASHcolor] = ACTIONS(6117), - [anon_sym_BSLASHcolorbox] = ACTIONS(6117), - [anon_sym_BSLASHtextcolor] = ACTIONS(6117), - [anon_sym_BSLASHpagecolor] = ACTIONS(6117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6117), - [anon_sym_BSLASHtext] = ACTIONS(6117), - [anon_sym_BSLASHintertext] = ACTIONS(6117), - [anon_sym_shortintertext] = ACTIONS(6117), - }, - [1277] = { - [sym_command_name] = ACTIONS(6113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6115), - [anon_sym_RBRACK] = ACTIONS(6115), - [anon_sym_COMMA] = ACTIONS(6115), - [anon_sym_EQ] = ACTIONS(6115), - [anon_sym_LPAREN] = ACTIONS(6115), - [anon_sym_RPAREN] = ACTIONS(6115), - [anon_sym_BSLASHpart] = ACTIONS(6113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddpart] = ACTIONS(6113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6115), - [anon_sym_BSLASHchapter] = ACTIONS(6113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddchap] = ACTIONS(6113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsection] = ACTIONS(6113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddsec] = ACTIONS(6113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubsection] = ACTIONS(6113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHparagraph] = ACTIONS(6113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6115), - [anon_sym_BSLASHitem] = ACTIONS(6113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6115), - [anon_sym_LBRACE] = ACTIONS(6115), - [sym_word] = ACTIONS(6113), - [sym_placeholder] = ACTIONS(6115), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_LT] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6113), - [anon_sym_BANG] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_SQUOTE] = ACTIONS(6113), - [anon_sym__] = ACTIONS(6115), - [anon_sym_CARET] = ACTIONS(6115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6115), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6115), - [anon_sym_DOLLAR] = ACTIONS(6113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6115), - [anon_sym_BSLASHbegin] = ACTIONS(6113), - [anon_sym_BSLASHtitle] = ACTIONS(6113), - [anon_sym_BSLASHauthor] = ACTIONS(6113), - [anon_sym_BSLASHusepackage] = ACTIONS(6113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), - [anon_sym_BSLASHinclude] = ACTIONS(6113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), - [anon_sym_BSLASHinput] = ACTIONS(6113), - [anon_sym_BSLASHsubfile] = ACTIONS(6113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), - [anon_sym_BSLASHbibliography] = ACTIONS(6113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), - [anon_sym_BSLASHincludesvg] = ACTIONS(6113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), - [anon_sym_BSLASHimport] = ACTIONS(6113), - [anon_sym_BSLASHsubimport] = ACTIONS(6113), - [anon_sym_BSLASHinputfrom] = ACTIONS(6113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), - [anon_sym_BSLASHincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHcaption] = ACTIONS(6113), - [anon_sym_BSLASHcite] = ACTIONS(6113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCite] = ACTIONS(6113), - [anon_sym_BSLASHnocite] = ACTIONS(6113), - [anon_sym_BSLASHcitet] = ACTIONS(6113), - [anon_sym_BSLASHcitep] = ACTIONS(6113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteauthor] = ACTIONS(6113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitetitle] = ACTIONS(6113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteyear] = ACTIONS(6113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitedate] = ACTIONS(6113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteurl] = ACTIONS(6113), - [anon_sym_BSLASHfullcite] = ACTIONS(6113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), - [anon_sym_BSLASHcitealt] = ACTIONS(6113), - [anon_sym_BSLASHcitealp] = ACTIONS(6113), - [anon_sym_BSLASHcitetext] = ACTIONS(6113), - [anon_sym_BSLASHparencite] = ACTIONS(6113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHParencite] = ACTIONS(6113), - [anon_sym_BSLASHfootcite] = ACTIONS(6113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), - [anon_sym_BSLASHtextcite] = ACTIONS(6113), - [anon_sym_BSLASHTextcite] = ACTIONS(6113), - [anon_sym_BSLASHsmartcite] = ACTIONS(6113), - [anon_sym_BSLASHSmartcite] = ACTIONS(6113), - [anon_sym_BSLASHsupercite] = ACTIONS(6113), - [anon_sym_BSLASHautocite] = ACTIONS(6113), - [anon_sym_BSLASHAutocite] = ACTIONS(6113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHvolcite] = ACTIONS(6113), - [anon_sym_BSLASHVolcite] = ACTIONS(6113), - [anon_sym_BSLASHpvolcite] = ACTIONS(6113), - [anon_sym_BSLASHPvolcite] = ACTIONS(6113), - [anon_sym_BSLASHfvolcite] = ACTIONS(6113), - [anon_sym_BSLASHftvolcite] = ACTIONS(6113), - [anon_sym_BSLASHsvolcite] = ACTIONS(6113), - [anon_sym_BSLASHSvolcite] = ACTIONS(6113), - [anon_sym_BSLASHtvolcite] = ACTIONS(6113), - [anon_sym_BSLASHTvolcite] = ACTIONS(6113), - [anon_sym_BSLASHavolcite] = ACTIONS(6113), - [anon_sym_BSLASHAvolcite] = ACTIONS(6113), - [anon_sym_BSLASHnotecite] = ACTIONS(6113), - [anon_sym_BSLASHNotecite] = ACTIONS(6113), - [anon_sym_BSLASHpnotecite] = ACTIONS(6113), - [anon_sym_BSLASHPnotecite] = ACTIONS(6113), - [anon_sym_BSLASHfnotecite] = ACTIONS(6113), - [anon_sym_BSLASHlabel] = ACTIONS(6113), - [anon_sym_BSLASHref] = ACTIONS(6113), - [anon_sym_BSLASHeqref] = ACTIONS(6113), - [anon_sym_BSLASHvref] = ACTIONS(6113), - [anon_sym_BSLASHVref] = ACTIONS(6113), - [anon_sym_BSLASHautoref] = ACTIONS(6113), - [anon_sym_BSLASHpageref] = ACTIONS(6113), - [anon_sym_BSLASHcref] = ACTIONS(6113), - [anon_sym_BSLASHCref] = ACTIONS(6113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnameCref] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHlabelcref] = ACTIONS(6113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCrefrange] = ACTIONS(6113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnewlabel] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6115), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHdef] = ACTIONS(6113), - [anon_sym_BSLASHlet] = ACTIONS(6113), - [anon_sym_BSLASHleft] = ACTIONS(6113), - [anon_sym_BSLASHbig] = ACTIONS(6113), - [anon_sym_BSLASHBig] = ACTIONS(6113), - [anon_sym_BSLASHbigg] = ACTIONS(6113), - [anon_sym_BSLASHBigg] = ACTIONS(6113), - [anon_sym_BSLASHbigl] = ACTIONS(6113), - [anon_sym_BSLASHBigl] = ACTIONS(6113), - [anon_sym_BSLASHbiggl] = ACTIONS(6113), - [anon_sym_BSLASHBiggl] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), - [anon_sym_BSLASHgls] = ACTIONS(6113), - [anon_sym_BSLASHGls] = ACTIONS(6113), - [anon_sym_BSLASHGLS] = ACTIONS(6113), - [anon_sym_BSLASHglspl] = ACTIONS(6113), - [anon_sym_BSLASHGlspl] = ACTIONS(6113), - [anon_sym_BSLASHGLSpl] = ACTIONS(6113), - [anon_sym_BSLASHglsdisp] = ACTIONS(6113), - [anon_sym_BSLASHglslink] = ACTIONS(6113), - [anon_sym_BSLASHglstext] = ACTIONS(6113), - [anon_sym_BSLASHGlstext] = ACTIONS(6113), - [anon_sym_BSLASHGLStext] = ACTIONS(6113), - [anon_sym_BSLASHglsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), - [anon_sym_BSLASHglsplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSplural] = ACTIONS(6113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHglsname] = ACTIONS(6113), - [anon_sym_BSLASHGlsname] = ACTIONS(6113), - [anon_sym_BSLASHGLSname] = ACTIONS(6113), - [anon_sym_BSLASHglssymbol] = ACTIONS(6113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), - [anon_sym_BSLASHglsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), - [anon_sym_BSLASHglsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), - [anon_sym_BSLASHglsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), - [anon_sym_BSLASHglsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), - [anon_sym_BSLASHglsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), - [anon_sym_BSLASHnewacronym] = ACTIONS(6113), - [anon_sym_BSLASHacrshort] = ACTIONS(6113), - [anon_sym_BSLASHAcrshort] = ACTIONS(6113), - [anon_sym_BSLASHACRshort] = ACTIONS(6113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), - [anon_sym_BSLASHacrlong] = ACTIONS(6113), - [anon_sym_BSLASHAcrlong] = ACTIONS(6113), - [anon_sym_BSLASHACRlong] = ACTIONS(6113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), - [anon_sym_BSLASHacrfull] = ACTIONS(6113), - [anon_sym_BSLASHAcrfull] = ACTIONS(6113), - [anon_sym_BSLASHACRfull] = ACTIONS(6113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), - [anon_sym_BSLASHacs] = ACTIONS(6113), - [anon_sym_BSLASHAcs] = ACTIONS(6113), - [anon_sym_BSLASHacsp] = ACTIONS(6113), - [anon_sym_BSLASHAcsp] = ACTIONS(6113), - [anon_sym_BSLASHacl] = ACTIONS(6113), - [anon_sym_BSLASHAcl] = ACTIONS(6113), - [anon_sym_BSLASHaclp] = ACTIONS(6113), - [anon_sym_BSLASHAclp] = ACTIONS(6113), - [anon_sym_BSLASHacf] = ACTIONS(6113), - [anon_sym_BSLASHAcf] = ACTIONS(6113), - [anon_sym_BSLASHacfp] = ACTIONS(6113), - [anon_sym_BSLASHAcfp] = ACTIONS(6113), - [anon_sym_BSLASHac] = ACTIONS(6113), - [anon_sym_BSLASHAc] = ACTIONS(6113), - [anon_sym_BSLASHacp] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), - [anon_sym_BSLASHcolor] = ACTIONS(6113), - [anon_sym_BSLASHcolorbox] = ACTIONS(6113), - [anon_sym_BSLASHtextcolor] = ACTIONS(6113), - [anon_sym_BSLASHpagecolor] = ACTIONS(6113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), - [anon_sym_BSLASHtext] = ACTIONS(6113), - [anon_sym_BSLASHintertext] = ACTIONS(6113), - [anon_sym_shortintertext] = ACTIONS(6113), - }, - [1278] = { - [sym_command_name] = ACTIONS(6109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6109), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_RBRACK] = ACTIONS(6111), - [anon_sym_COMMA] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_LPAREN] = ACTIONS(6111), - [anon_sym_RPAREN] = ACTIONS(6111), - [anon_sym_BSLASHpart] = ACTIONS(6109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddpart] = ACTIONS(6109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6111), - [anon_sym_BSLASHchapter] = ACTIONS(6109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddchap] = ACTIONS(6109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsection] = ACTIONS(6109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddsec] = ACTIONS(6109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubsection] = ACTIONS(6109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHparagraph] = ACTIONS(6109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6111), - [anon_sym_BSLASHitem] = ACTIONS(6109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6111), - [anon_sym_LBRACE] = ACTIONS(6111), - [sym_word] = ACTIONS(6109), - [sym_placeholder] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6109), - [anon_sym_GT] = ACTIONS(6109), - [anon_sym_BANG] = ACTIONS(6109), - [anon_sym_PIPE] = ACTIONS(6109), - [anon_sym_COLON] = ACTIONS(6109), - [anon_sym_SQUOTE] = ACTIONS(6109), - [anon_sym__] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6111), - [anon_sym_DOLLAR] = ACTIONS(6109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), - [anon_sym_BSLASHbegin] = ACTIONS(6109), - [anon_sym_BSLASHtitle] = ACTIONS(6109), - [anon_sym_BSLASHauthor] = ACTIONS(6109), - [anon_sym_BSLASHusepackage] = ACTIONS(6109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), - [anon_sym_BSLASHinclude] = ACTIONS(6109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), - [anon_sym_BSLASHinput] = ACTIONS(6109), - [anon_sym_BSLASHsubfile] = ACTIONS(6109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), - [anon_sym_BSLASHbibliography] = ACTIONS(6109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), - [anon_sym_BSLASHincludesvg] = ACTIONS(6109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), - [anon_sym_BSLASHimport] = ACTIONS(6109), - [anon_sym_BSLASHsubimport] = ACTIONS(6109), - [anon_sym_BSLASHinputfrom] = ACTIONS(6109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), - [anon_sym_BSLASHincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHcaption] = ACTIONS(6109), - [anon_sym_BSLASHcite] = ACTIONS(6109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCite] = ACTIONS(6109), - [anon_sym_BSLASHnocite] = ACTIONS(6109), - [anon_sym_BSLASHcitet] = ACTIONS(6109), - [anon_sym_BSLASHcitep] = ACTIONS(6109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteauthor] = ACTIONS(6109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitetitle] = ACTIONS(6109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteyear] = ACTIONS(6109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitedate] = ACTIONS(6109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteurl] = ACTIONS(6109), - [anon_sym_BSLASHfullcite] = ACTIONS(6109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), - [anon_sym_BSLASHcitealt] = ACTIONS(6109), - [anon_sym_BSLASHcitealp] = ACTIONS(6109), - [anon_sym_BSLASHcitetext] = ACTIONS(6109), - [anon_sym_BSLASHparencite] = ACTIONS(6109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHParencite] = ACTIONS(6109), - [anon_sym_BSLASHfootcite] = ACTIONS(6109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), - [anon_sym_BSLASHtextcite] = ACTIONS(6109), - [anon_sym_BSLASHTextcite] = ACTIONS(6109), - [anon_sym_BSLASHsmartcite] = ACTIONS(6109), - [anon_sym_BSLASHSmartcite] = ACTIONS(6109), - [anon_sym_BSLASHsupercite] = ACTIONS(6109), - [anon_sym_BSLASHautocite] = ACTIONS(6109), - [anon_sym_BSLASHAutocite] = ACTIONS(6109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHvolcite] = ACTIONS(6109), - [anon_sym_BSLASHVolcite] = ACTIONS(6109), - [anon_sym_BSLASHpvolcite] = ACTIONS(6109), - [anon_sym_BSLASHPvolcite] = ACTIONS(6109), - [anon_sym_BSLASHfvolcite] = ACTIONS(6109), - [anon_sym_BSLASHftvolcite] = ACTIONS(6109), - [anon_sym_BSLASHsvolcite] = ACTIONS(6109), - [anon_sym_BSLASHSvolcite] = ACTIONS(6109), - [anon_sym_BSLASHtvolcite] = ACTIONS(6109), - [anon_sym_BSLASHTvolcite] = ACTIONS(6109), - [anon_sym_BSLASHavolcite] = ACTIONS(6109), - [anon_sym_BSLASHAvolcite] = ACTIONS(6109), - [anon_sym_BSLASHnotecite] = ACTIONS(6109), - [anon_sym_BSLASHNotecite] = ACTIONS(6109), - [anon_sym_BSLASHpnotecite] = ACTIONS(6109), - [anon_sym_BSLASHPnotecite] = ACTIONS(6109), - [anon_sym_BSLASHfnotecite] = ACTIONS(6109), - [anon_sym_BSLASHlabel] = ACTIONS(6109), - [anon_sym_BSLASHref] = ACTIONS(6109), - [anon_sym_BSLASHeqref] = ACTIONS(6109), - [anon_sym_BSLASHvref] = ACTIONS(6109), - [anon_sym_BSLASHVref] = ACTIONS(6109), - [anon_sym_BSLASHautoref] = ACTIONS(6109), - [anon_sym_BSLASHpageref] = ACTIONS(6109), - [anon_sym_BSLASHcref] = ACTIONS(6109), - [anon_sym_BSLASHCref] = ACTIONS(6109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnameCref] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHlabelcref] = ACTIONS(6109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCrefrange] = ACTIONS(6109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnewlabel] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHdef] = ACTIONS(6109), - [anon_sym_BSLASHlet] = ACTIONS(6109), - [anon_sym_BSLASHleft] = ACTIONS(6109), - [anon_sym_BSLASHbig] = ACTIONS(6109), - [anon_sym_BSLASHBig] = ACTIONS(6109), - [anon_sym_BSLASHbigg] = ACTIONS(6109), - [anon_sym_BSLASHBigg] = ACTIONS(6109), - [anon_sym_BSLASHbigl] = ACTIONS(6109), - [anon_sym_BSLASHBigl] = ACTIONS(6109), - [anon_sym_BSLASHbiggl] = ACTIONS(6109), - [anon_sym_BSLASHBiggl] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), - [anon_sym_BSLASHgls] = ACTIONS(6109), - [anon_sym_BSLASHGls] = ACTIONS(6109), - [anon_sym_BSLASHGLS] = ACTIONS(6109), - [anon_sym_BSLASHglspl] = ACTIONS(6109), - [anon_sym_BSLASHGlspl] = ACTIONS(6109), - [anon_sym_BSLASHGLSpl] = ACTIONS(6109), - [anon_sym_BSLASHglsdisp] = ACTIONS(6109), - [anon_sym_BSLASHglslink] = ACTIONS(6109), - [anon_sym_BSLASHglstext] = ACTIONS(6109), - [anon_sym_BSLASHGlstext] = ACTIONS(6109), - [anon_sym_BSLASHGLStext] = ACTIONS(6109), - [anon_sym_BSLASHglsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), - [anon_sym_BSLASHglsplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSplural] = ACTIONS(6109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHglsname] = ACTIONS(6109), - [anon_sym_BSLASHGlsname] = ACTIONS(6109), - [anon_sym_BSLASHGLSname] = ACTIONS(6109), - [anon_sym_BSLASHglssymbol] = ACTIONS(6109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), - [anon_sym_BSLASHglsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), - [anon_sym_BSLASHglsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), - [anon_sym_BSLASHglsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), - [anon_sym_BSLASHglsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), - [anon_sym_BSLASHglsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), - [anon_sym_BSLASHnewacronym] = ACTIONS(6109), - [anon_sym_BSLASHacrshort] = ACTIONS(6109), - [anon_sym_BSLASHAcrshort] = ACTIONS(6109), - [anon_sym_BSLASHACRshort] = ACTIONS(6109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), - [anon_sym_BSLASHacrlong] = ACTIONS(6109), - [anon_sym_BSLASHAcrlong] = ACTIONS(6109), - [anon_sym_BSLASHACRlong] = ACTIONS(6109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), - [anon_sym_BSLASHacrfull] = ACTIONS(6109), - [anon_sym_BSLASHAcrfull] = ACTIONS(6109), - [anon_sym_BSLASHACRfull] = ACTIONS(6109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), - [anon_sym_BSLASHacs] = ACTIONS(6109), - [anon_sym_BSLASHAcs] = ACTIONS(6109), - [anon_sym_BSLASHacsp] = ACTIONS(6109), - [anon_sym_BSLASHAcsp] = ACTIONS(6109), - [anon_sym_BSLASHacl] = ACTIONS(6109), - [anon_sym_BSLASHAcl] = ACTIONS(6109), - [anon_sym_BSLASHaclp] = ACTIONS(6109), - [anon_sym_BSLASHAclp] = ACTIONS(6109), - [anon_sym_BSLASHacf] = ACTIONS(6109), - [anon_sym_BSLASHAcf] = ACTIONS(6109), - [anon_sym_BSLASHacfp] = ACTIONS(6109), - [anon_sym_BSLASHAcfp] = ACTIONS(6109), - [anon_sym_BSLASHac] = ACTIONS(6109), - [anon_sym_BSLASHAc] = ACTIONS(6109), - [anon_sym_BSLASHacp] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), - [anon_sym_BSLASHcolor] = ACTIONS(6109), - [anon_sym_BSLASHcolorbox] = ACTIONS(6109), - [anon_sym_BSLASHtextcolor] = ACTIONS(6109), - [anon_sym_BSLASHpagecolor] = ACTIONS(6109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), - [anon_sym_BSLASHtext] = ACTIONS(6109), - [anon_sym_BSLASHintertext] = ACTIONS(6109), - [anon_sym_shortintertext] = ACTIONS(6109), - }, - [1279] = { - [sym_command_name] = ACTIONS(6057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6057), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_BSLASHpart] = ACTIONS(6057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddpart] = ACTIONS(6057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6059), - [anon_sym_BSLASHchapter] = ACTIONS(6057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddchap] = ACTIONS(6057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsection] = ACTIONS(6057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddsec] = ACTIONS(6057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubsection] = ACTIONS(6057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHparagraph] = ACTIONS(6057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6059), - [anon_sym_BSLASHitem] = ACTIONS(6057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6059), - [sym_word] = ACTIONS(6057), - [sym_placeholder] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_BANG] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_SQUOTE] = ACTIONS(6057), - [anon_sym__] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), - [anon_sym_BSLASHbegin] = ACTIONS(6057), - [anon_sym_BSLASHtitle] = ACTIONS(6057), - [anon_sym_BSLASHauthor] = ACTIONS(6057), - [anon_sym_BSLASHusepackage] = ACTIONS(6057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), - [anon_sym_BSLASHinclude] = ACTIONS(6057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), - [anon_sym_BSLASHinput] = ACTIONS(6057), - [anon_sym_BSLASHsubfile] = ACTIONS(6057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), - [anon_sym_BSLASHbibliography] = ACTIONS(6057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), - [anon_sym_BSLASHincludesvg] = ACTIONS(6057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), - [anon_sym_BSLASHimport] = ACTIONS(6057), - [anon_sym_BSLASHsubimport] = ACTIONS(6057), - [anon_sym_BSLASHinputfrom] = ACTIONS(6057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), - [anon_sym_BSLASHincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHcaption] = ACTIONS(6057), - [anon_sym_BSLASHcite] = ACTIONS(6057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCite] = ACTIONS(6057), - [anon_sym_BSLASHnocite] = ACTIONS(6057), - [anon_sym_BSLASHcitet] = ACTIONS(6057), - [anon_sym_BSLASHcitep] = ACTIONS(6057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteauthor] = ACTIONS(6057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitetitle] = ACTIONS(6057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteyear] = ACTIONS(6057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitedate] = ACTIONS(6057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteurl] = ACTIONS(6057), - [anon_sym_BSLASHfullcite] = ACTIONS(6057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), - [anon_sym_BSLASHcitealt] = ACTIONS(6057), - [anon_sym_BSLASHcitealp] = ACTIONS(6057), - [anon_sym_BSLASHcitetext] = ACTIONS(6057), - [anon_sym_BSLASHparencite] = ACTIONS(6057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHParencite] = ACTIONS(6057), - [anon_sym_BSLASHfootcite] = ACTIONS(6057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), - [anon_sym_BSLASHtextcite] = ACTIONS(6057), - [anon_sym_BSLASHTextcite] = ACTIONS(6057), - [anon_sym_BSLASHsmartcite] = ACTIONS(6057), - [anon_sym_BSLASHSmartcite] = ACTIONS(6057), - [anon_sym_BSLASHsupercite] = ACTIONS(6057), - [anon_sym_BSLASHautocite] = ACTIONS(6057), - [anon_sym_BSLASHAutocite] = ACTIONS(6057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHvolcite] = ACTIONS(6057), - [anon_sym_BSLASHVolcite] = ACTIONS(6057), - [anon_sym_BSLASHpvolcite] = ACTIONS(6057), - [anon_sym_BSLASHPvolcite] = ACTIONS(6057), - [anon_sym_BSLASHfvolcite] = ACTIONS(6057), - [anon_sym_BSLASHftvolcite] = ACTIONS(6057), - [anon_sym_BSLASHsvolcite] = ACTIONS(6057), - [anon_sym_BSLASHSvolcite] = ACTIONS(6057), - [anon_sym_BSLASHtvolcite] = ACTIONS(6057), - [anon_sym_BSLASHTvolcite] = ACTIONS(6057), - [anon_sym_BSLASHavolcite] = ACTIONS(6057), - [anon_sym_BSLASHAvolcite] = ACTIONS(6057), - [anon_sym_BSLASHnotecite] = ACTIONS(6057), - [anon_sym_BSLASHNotecite] = ACTIONS(6057), - [anon_sym_BSLASHpnotecite] = ACTIONS(6057), - [anon_sym_BSLASHPnotecite] = ACTIONS(6057), - [anon_sym_BSLASHfnotecite] = ACTIONS(6057), - [anon_sym_BSLASHlabel] = ACTIONS(6057), - [anon_sym_BSLASHref] = ACTIONS(6057), - [anon_sym_BSLASHeqref] = ACTIONS(6057), - [anon_sym_BSLASHvref] = ACTIONS(6057), - [anon_sym_BSLASHVref] = ACTIONS(6057), - [anon_sym_BSLASHautoref] = ACTIONS(6057), - [anon_sym_BSLASHpageref] = ACTIONS(6057), - [anon_sym_BSLASHcref] = ACTIONS(6057), - [anon_sym_BSLASHCref] = ACTIONS(6057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnameCref] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHlabelcref] = ACTIONS(6057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCrefrange] = ACTIONS(6057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnewlabel] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHdef] = ACTIONS(6057), - [anon_sym_BSLASHlet] = ACTIONS(6057), - [anon_sym_BSLASHleft] = ACTIONS(6057), - [anon_sym_BSLASHbig] = ACTIONS(6057), - [anon_sym_BSLASHBig] = ACTIONS(6057), - [anon_sym_BSLASHbigg] = ACTIONS(6057), - [anon_sym_BSLASHBigg] = ACTIONS(6057), - [anon_sym_BSLASHbigl] = ACTIONS(6057), - [anon_sym_BSLASHBigl] = ACTIONS(6057), - [anon_sym_BSLASHbiggl] = ACTIONS(6057), - [anon_sym_BSLASHBiggl] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), - [anon_sym_BSLASHgls] = ACTIONS(6057), - [anon_sym_BSLASHGls] = ACTIONS(6057), - [anon_sym_BSLASHGLS] = ACTIONS(6057), - [anon_sym_BSLASHglspl] = ACTIONS(6057), - [anon_sym_BSLASHGlspl] = ACTIONS(6057), - [anon_sym_BSLASHGLSpl] = ACTIONS(6057), - [anon_sym_BSLASHglsdisp] = ACTIONS(6057), - [anon_sym_BSLASHglslink] = ACTIONS(6057), - [anon_sym_BSLASHglstext] = ACTIONS(6057), - [anon_sym_BSLASHGlstext] = ACTIONS(6057), - [anon_sym_BSLASHGLStext] = ACTIONS(6057), - [anon_sym_BSLASHglsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), - [anon_sym_BSLASHglsplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSplural] = ACTIONS(6057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHglsname] = ACTIONS(6057), - [anon_sym_BSLASHGlsname] = ACTIONS(6057), - [anon_sym_BSLASHGLSname] = ACTIONS(6057), - [anon_sym_BSLASHglssymbol] = ACTIONS(6057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), - [anon_sym_BSLASHglsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), - [anon_sym_BSLASHglsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), - [anon_sym_BSLASHglsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), - [anon_sym_BSLASHglsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), - [anon_sym_BSLASHglsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), - [anon_sym_BSLASHnewacronym] = ACTIONS(6057), - [anon_sym_BSLASHacrshort] = ACTIONS(6057), - [anon_sym_BSLASHAcrshort] = ACTIONS(6057), - [anon_sym_BSLASHACRshort] = ACTIONS(6057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), - [anon_sym_BSLASHacrlong] = ACTIONS(6057), - [anon_sym_BSLASHAcrlong] = ACTIONS(6057), - [anon_sym_BSLASHACRlong] = ACTIONS(6057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), - [anon_sym_BSLASHacrfull] = ACTIONS(6057), - [anon_sym_BSLASHAcrfull] = ACTIONS(6057), - [anon_sym_BSLASHACRfull] = ACTIONS(6057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), - [anon_sym_BSLASHacs] = ACTIONS(6057), - [anon_sym_BSLASHAcs] = ACTIONS(6057), - [anon_sym_BSLASHacsp] = ACTIONS(6057), - [anon_sym_BSLASHAcsp] = ACTIONS(6057), - [anon_sym_BSLASHacl] = ACTIONS(6057), - [anon_sym_BSLASHAcl] = ACTIONS(6057), - [anon_sym_BSLASHaclp] = ACTIONS(6057), - [anon_sym_BSLASHAclp] = ACTIONS(6057), - [anon_sym_BSLASHacf] = ACTIONS(6057), - [anon_sym_BSLASHAcf] = ACTIONS(6057), - [anon_sym_BSLASHacfp] = ACTIONS(6057), - [anon_sym_BSLASHAcfp] = ACTIONS(6057), - [anon_sym_BSLASHac] = ACTIONS(6057), - [anon_sym_BSLASHAc] = ACTIONS(6057), - [anon_sym_BSLASHacp] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), - [anon_sym_BSLASHcolor] = ACTIONS(6057), - [anon_sym_BSLASHcolorbox] = ACTIONS(6057), - [anon_sym_BSLASHtextcolor] = ACTIONS(6057), - [anon_sym_BSLASHpagecolor] = ACTIONS(6057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), - [anon_sym_BSLASHtext] = ACTIONS(6057), - [anon_sym_BSLASHintertext] = ACTIONS(6057), - [anon_sym_shortintertext] = ACTIONS(6057), - }, - [1280] = { - [sym_command_name] = ACTIONS(6053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6053), - [anon_sym_LBRACK] = ACTIONS(6055), - [anon_sym_RBRACK] = ACTIONS(6055), - [anon_sym_COMMA] = ACTIONS(6055), - [anon_sym_EQ] = ACTIONS(6055), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_BSLASHpart] = ACTIONS(6053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddpart] = ACTIONS(6053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6055), - [anon_sym_BSLASHchapter] = ACTIONS(6053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddchap] = ACTIONS(6053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsection] = ACTIONS(6053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddsec] = ACTIONS(6053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubsection] = ACTIONS(6053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHparagraph] = ACTIONS(6053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6055), - [anon_sym_BSLASHitem] = ACTIONS(6053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6055), - [anon_sym_LBRACE] = ACTIONS(6055), - [sym_word] = ACTIONS(6053), - [sym_placeholder] = ACTIONS(6055), - [anon_sym_PLUS] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(6055), - [anon_sym_STAR] = ACTIONS(6055), - [anon_sym_SLASH] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_COLON] = ACTIONS(6053), - [anon_sym_SQUOTE] = ACTIONS(6053), - [anon_sym__] = ACTIONS(6055), - [anon_sym_CARET] = ACTIONS(6055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), - [anon_sym_BSLASHbegin] = ACTIONS(6053), - [anon_sym_BSLASHtitle] = ACTIONS(6053), - [anon_sym_BSLASHauthor] = ACTIONS(6053), - [anon_sym_BSLASHusepackage] = ACTIONS(6053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), - [anon_sym_BSLASHinclude] = ACTIONS(6053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), - [anon_sym_BSLASHinput] = ACTIONS(6053), - [anon_sym_BSLASHsubfile] = ACTIONS(6053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), - [anon_sym_BSLASHbibliography] = ACTIONS(6053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), - [anon_sym_BSLASHincludesvg] = ACTIONS(6053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), - [anon_sym_BSLASHimport] = ACTIONS(6053), - [anon_sym_BSLASHsubimport] = ACTIONS(6053), - [anon_sym_BSLASHinputfrom] = ACTIONS(6053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), - [anon_sym_BSLASHincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHcaption] = ACTIONS(6053), - [anon_sym_BSLASHcite] = ACTIONS(6053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCite] = ACTIONS(6053), - [anon_sym_BSLASHnocite] = ACTIONS(6053), - [anon_sym_BSLASHcitet] = ACTIONS(6053), - [anon_sym_BSLASHcitep] = ACTIONS(6053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteauthor] = ACTIONS(6053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitetitle] = ACTIONS(6053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteyear] = ACTIONS(6053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitedate] = ACTIONS(6053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteurl] = ACTIONS(6053), - [anon_sym_BSLASHfullcite] = ACTIONS(6053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), - [anon_sym_BSLASHcitealt] = ACTIONS(6053), - [anon_sym_BSLASHcitealp] = ACTIONS(6053), - [anon_sym_BSLASHcitetext] = ACTIONS(6053), - [anon_sym_BSLASHparencite] = ACTIONS(6053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHParencite] = ACTIONS(6053), - [anon_sym_BSLASHfootcite] = ACTIONS(6053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), - [anon_sym_BSLASHtextcite] = ACTIONS(6053), - [anon_sym_BSLASHTextcite] = ACTIONS(6053), - [anon_sym_BSLASHsmartcite] = ACTIONS(6053), - [anon_sym_BSLASHSmartcite] = ACTIONS(6053), - [anon_sym_BSLASHsupercite] = ACTIONS(6053), - [anon_sym_BSLASHautocite] = ACTIONS(6053), - [anon_sym_BSLASHAutocite] = ACTIONS(6053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHvolcite] = ACTIONS(6053), - [anon_sym_BSLASHVolcite] = ACTIONS(6053), - [anon_sym_BSLASHpvolcite] = ACTIONS(6053), - [anon_sym_BSLASHPvolcite] = ACTIONS(6053), - [anon_sym_BSLASHfvolcite] = ACTIONS(6053), - [anon_sym_BSLASHftvolcite] = ACTIONS(6053), - [anon_sym_BSLASHsvolcite] = ACTIONS(6053), - [anon_sym_BSLASHSvolcite] = ACTIONS(6053), - [anon_sym_BSLASHtvolcite] = ACTIONS(6053), - [anon_sym_BSLASHTvolcite] = ACTIONS(6053), - [anon_sym_BSLASHavolcite] = ACTIONS(6053), - [anon_sym_BSLASHAvolcite] = ACTIONS(6053), - [anon_sym_BSLASHnotecite] = ACTIONS(6053), - [anon_sym_BSLASHNotecite] = ACTIONS(6053), - [anon_sym_BSLASHpnotecite] = ACTIONS(6053), - [anon_sym_BSLASHPnotecite] = ACTIONS(6053), - [anon_sym_BSLASHfnotecite] = ACTIONS(6053), - [anon_sym_BSLASHlabel] = ACTIONS(6053), - [anon_sym_BSLASHref] = ACTIONS(6053), - [anon_sym_BSLASHeqref] = ACTIONS(6053), - [anon_sym_BSLASHvref] = ACTIONS(6053), - [anon_sym_BSLASHVref] = ACTIONS(6053), - [anon_sym_BSLASHautoref] = ACTIONS(6053), - [anon_sym_BSLASHpageref] = ACTIONS(6053), - [anon_sym_BSLASHcref] = ACTIONS(6053), - [anon_sym_BSLASHCref] = ACTIONS(6053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnameCref] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHlabelcref] = ACTIONS(6053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCrefrange] = ACTIONS(6053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnewlabel] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHdef] = ACTIONS(6053), - [anon_sym_BSLASHlet] = ACTIONS(6053), - [anon_sym_BSLASHleft] = ACTIONS(6053), - [anon_sym_BSLASHbig] = ACTIONS(6053), - [anon_sym_BSLASHBig] = ACTIONS(6053), - [anon_sym_BSLASHbigg] = ACTIONS(6053), - [anon_sym_BSLASHBigg] = ACTIONS(6053), - [anon_sym_BSLASHbigl] = ACTIONS(6053), - [anon_sym_BSLASHBigl] = ACTIONS(6053), - [anon_sym_BSLASHbiggl] = ACTIONS(6053), - [anon_sym_BSLASHBiggl] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), - [anon_sym_BSLASHgls] = ACTIONS(6053), - [anon_sym_BSLASHGls] = ACTIONS(6053), - [anon_sym_BSLASHGLS] = ACTIONS(6053), - [anon_sym_BSLASHglspl] = ACTIONS(6053), - [anon_sym_BSLASHGlspl] = ACTIONS(6053), - [anon_sym_BSLASHGLSpl] = ACTIONS(6053), - [anon_sym_BSLASHglsdisp] = ACTIONS(6053), - [anon_sym_BSLASHglslink] = ACTIONS(6053), - [anon_sym_BSLASHglstext] = ACTIONS(6053), - [anon_sym_BSLASHGlstext] = ACTIONS(6053), - [anon_sym_BSLASHGLStext] = ACTIONS(6053), - [anon_sym_BSLASHglsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), - [anon_sym_BSLASHglsplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSplural] = ACTIONS(6053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHglsname] = ACTIONS(6053), - [anon_sym_BSLASHGlsname] = ACTIONS(6053), - [anon_sym_BSLASHGLSname] = ACTIONS(6053), - [anon_sym_BSLASHglssymbol] = ACTIONS(6053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), - [anon_sym_BSLASHglsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), - [anon_sym_BSLASHglsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), - [anon_sym_BSLASHglsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), - [anon_sym_BSLASHglsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), - [anon_sym_BSLASHglsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), - [anon_sym_BSLASHnewacronym] = ACTIONS(6053), - [anon_sym_BSLASHacrshort] = ACTIONS(6053), - [anon_sym_BSLASHAcrshort] = ACTIONS(6053), - [anon_sym_BSLASHACRshort] = ACTIONS(6053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), - [anon_sym_BSLASHacrlong] = ACTIONS(6053), - [anon_sym_BSLASHAcrlong] = ACTIONS(6053), - [anon_sym_BSLASHACRlong] = ACTIONS(6053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), - [anon_sym_BSLASHacrfull] = ACTIONS(6053), - [anon_sym_BSLASHAcrfull] = ACTIONS(6053), - [anon_sym_BSLASHACRfull] = ACTIONS(6053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), - [anon_sym_BSLASHacs] = ACTIONS(6053), - [anon_sym_BSLASHAcs] = ACTIONS(6053), - [anon_sym_BSLASHacsp] = ACTIONS(6053), - [anon_sym_BSLASHAcsp] = ACTIONS(6053), - [anon_sym_BSLASHacl] = ACTIONS(6053), - [anon_sym_BSLASHAcl] = ACTIONS(6053), - [anon_sym_BSLASHaclp] = ACTIONS(6053), - [anon_sym_BSLASHAclp] = ACTIONS(6053), - [anon_sym_BSLASHacf] = ACTIONS(6053), - [anon_sym_BSLASHAcf] = ACTIONS(6053), - [anon_sym_BSLASHacfp] = ACTIONS(6053), - [anon_sym_BSLASHAcfp] = ACTIONS(6053), - [anon_sym_BSLASHac] = ACTIONS(6053), - [anon_sym_BSLASHAc] = ACTIONS(6053), - [anon_sym_BSLASHacp] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), - [anon_sym_BSLASHcolor] = ACTIONS(6053), - [anon_sym_BSLASHcolorbox] = ACTIONS(6053), - [anon_sym_BSLASHtextcolor] = ACTIONS(6053), - [anon_sym_BSLASHpagecolor] = ACTIONS(6053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), - [anon_sym_BSLASHtext] = ACTIONS(6053), - [anon_sym_BSLASHintertext] = ACTIONS(6053), - [anon_sym_shortintertext] = ACTIONS(6053), - }, - [1281] = { - [sym_command_name] = ACTIONS(6049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6049), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_BSLASHpart] = ACTIONS(6049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddpart] = ACTIONS(6049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6051), - [anon_sym_BSLASHchapter] = ACTIONS(6049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddchap] = ACTIONS(6049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsection] = ACTIONS(6049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddsec] = ACTIONS(6049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubsection] = ACTIONS(6049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHparagraph] = ACTIONS(6049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6051), - [anon_sym_BSLASHitem] = ACTIONS(6049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6051), - [anon_sym_LBRACE] = ACTIONS(6051), - [sym_word] = ACTIONS(6049), - [sym_placeholder] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6051), - [anon_sym_DASH] = ACTIONS(6051), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6049), - [anon_sym_GT] = ACTIONS(6049), - [anon_sym_BANG] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6049), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_SQUOTE] = ACTIONS(6049), - [anon_sym__] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), - [anon_sym_BSLASHbegin] = ACTIONS(6049), - [anon_sym_BSLASHtitle] = ACTIONS(6049), - [anon_sym_BSLASHauthor] = ACTIONS(6049), - [anon_sym_BSLASHusepackage] = ACTIONS(6049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6049), - [anon_sym_BSLASHinclude] = ACTIONS(6049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6049), - [anon_sym_BSLASHinput] = ACTIONS(6049), - [anon_sym_BSLASHsubfile] = ACTIONS(6049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6049), - [anon_sym_BSLASHbibliography] = ACTIONS(6049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6049), - [anon_sym_BSLASHincludesvg] = ACTIONS(6049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6049), - [anon_sym_BSLASHimport] = ACTIONS(6049), - [anon_sym_BSLASHsubimport] = ACTIONS(6049), - [anon_sym_BSLASHinputfrom] = ACTIONS(6049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6049), - [anon_sym_BSLASHincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHcaption] = ACTIONS(6049), - [anon_sym_BSLASHcite] = ACTIONS(6049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCite] = ACTIONS(6049), - [anon_sym_BSLASHnocite] = ACTIONS(6049), - [anon_sym_BSLASHcitet] = ACTIONS(6049), - [anon_sym_BSLASHcitep] = ACTIONS(6049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteauthor] = ACTIONS(6049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitetitle] = ACTIONS(6049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteyear] = ACTIONS(6049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitedate] = ACTIONS(6049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteurl] = ACTIONS(6049), - [anon_sym_BSLASHfullcite] = ACTIONS(6049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6049), - [anon_sym_BSLASHcitealt] = ACTIONS(6049), - [anon_sym_BSLASHcitealp] = ACTIONS(6049), - [anon_sym_BSLASHcitetext] = ACTIONS(6049), - [anon_sym_BSLASHparencite] = ACTIONS(6049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHParencite] = ACTIONS(6049), - [anon_sym_BSLASHfootcite] = ACTIONS(6049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6049), - [anon_sym_BSLASHtextcite] = ACTIONS(6049), - [anon_sym_BSLASHTextcite] = ACTIONS(6049), - [anon_sym_BSLASHsmartcite] = ACTIONS(6049), - [anon_sym_BSLASHSmartcite] = ACTIONS(6049), - [anon_sym_BSLASHsupercite] = ACTIONS(6049), - [anon_sym_BSLASHautocite] = ACTIONS(6049), - [anon_sym_BSLASHAutocite] = ACTIONS(6049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHvolcite] = ACTIONS(6049), - [anon_sym_BSLASHVolcite] = ACTIONS(6049), - [anon_sym_BSLASHpvolcite] = ACTIONS(6049), - [anon_sym_BSLASHPvolcite] = ACTIONS(6049), - [anon_sym_BSLASHfvolcite] = ACTIONS(6049), - [anon_sym_BSLASHftvolcite] = ACTIONS(6049), - [anon_sym_BSLASHsvolcite] = ACTIONS(6049), - [anon_sym_BSLASHSvolcite] = ACTIONS(6049), - [anon_sym_BSLASHtvolcite] = ACTIONS(6049), - [anon_sym_BSLASHTvolcite] = ACTIONS(6049), - [anon_sym_BSLASHavolcite] = ACTIONS(6049), - [anon_sym_BSLASHAvolcite] = ACTIONS(6049), - [anon_sym_BSLASHnotecite] = ACTIONS(6049), - [anon_sym_BSLASHNotecite] = ACTIONS(6049), - [anon_sym_BSLASHpnotecite] = ACTIONS(6049), - [anon_sym_BSLASHPnotecite] = ACTIONS(6049), - [anon_sym_BSLASHfnotecite] = ACTIONS(6049), - [anon_sym_BSLASHlabel] = ACTIONS(6049), - [anon_sym_BSLASHref] = ACTIONS(6049), - [anon_sym_BSLASHeqref] = ACTIONS(6049), - [anon_sym_BSLASHvref] = ACTIONS(6049), - [anon_sym_BSLASHVref] = ACTIONS(6049), - [anon_sym_BSLASHautoref] = ACTIONS(6049), - [anon_sym_BSLASHpageref] = ACTIONS(6049), - [anon_sym_BSLASHcref] = ACTIONS(6049), - [anon_sym_BSLASHCref] = ACTIONS(6049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnameCref] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHlabelcref] = ACTIONS(6049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCrefrange] = ACTIONS(6049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnewlabel] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHdef] = ACTIONS(6049), - [anon_sym_BSLASHlet] = ACTIONS(6049), - [anon_sym_BSLASHleft] = ACTIONS(6049), - [anon_sym_BSLASHbig] = ACTIONS(6049), - [anon_sym_BSLASHBig] = ACTIONS(6049), - [anon_sym_BSLASHbigg] = ACTIONS(6049), - [anon_sym_BSLASHBigg] = ACTIONS(6049), - [anon_sym_BSLASHbigl] = ACTIONS(6049), - [anon_sym_BSLASHBigl] = ACTIONS(6049), - [anon_sym_BSLASHbiggl] = ACTIONS(6049), - [anon_sym_BSLASHBiggl] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6049), - [anon_sym_BSLASHgls] = ACTIONS(6049), - [anon_sym_BSLASHGls] = ACTIONS(6049), - [anon_sym_BSLASHGLS] = ACTIONS(6049), - [anon_sym_BSLASHglspl] = ACTIONS(6049), - [anon_sym_BSLASHGlspl] = ACTIONS(6049), - [anon_sym_BSLASHGLSpl] = ACTIONS(6049), - [anon_sym_BSLASHglsdisp] = ACTIONS(6049), - [anon_sym_BSLASHglslink] = ACTIONS(6049), - [anon_sym_BSLASHglstext] = ACTIONS(6049), - [anon_sym_BSLASHGlstext] = ACTIONS(6049), - [anon_sym_BSLASHGLStext] = ACTIONS(6049), - [anon_sym_BSLASHglsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6049), - [anon_sym_BSLASHglsplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSplural] = ACTIONS(6049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHglsname] = ACTIONS(6049), - [anon_sym_BSLASHGlsname] = ACTIONS(6049), - [anon_sym_BSLASHGLSname] = ACTIONS(6049), - [anon_sym_BSLASHglssymbol] = ACTIONS(6049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6049), - [anon_sym_BSLASHglsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6049), - [anon_sym_BSLASHglsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6049), - [anon_sym_BSLASHglsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6049), - [anon_sym_BSLASHglsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6049), - [anon_sym_BSLASHglsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6049), - [anon_sym_BSLASHnewacronym] = ACTIONS(6049), - [anon_sym_BSLASHacrshort] = ACTIONS(6049), - [anon_sym_BSLASHAcrshort] = ACTIONS(6049), - [anon_sym_BSLASHACRshort] = ACTIONS(6049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6049), - [anon_sym_BSLASHacrlong] = ACTIONS(6049), - [anon_sym_BSLASHAcrlong] = ACTIONS(6049), - [anon_sym_BSLASHACRlong] = ACTIONS(6049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6049), - [anon_sym_BSLASHacrfull] = ACTIONS(6049), - [anon_sym_BSLASHAcrfull] = ACTIONS(6049), - [anon_sym_BSLASHACRfull] = ACTIONS(6049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6049), - [anon_sym_BSLASHacs] = ACTIONS(6049), - [anon_sym_BSLASHAcs] = ACTIONS(6049), - [anon_sym_BSLASHacsp] = ACTIONS(6049), - [anon_sym_BSLASHAcsp] = ACTIONS(6049), - [anon_sym_BSLASHacl] = ACTIONS(6049), - [anon_sym_BSLASHAcl] = ACTIONS(6049), - [anon_sym_BSLASHaclp] = ACTIONS(6049), - [anon_sym_BSLASHAclp] = ACTIONS(6049), - [anon_sym_BSLASHacf] = ACTIONS(6049), - [anon_sym_BSLASHAcf] = ACTIONS(6049), - [anon_sym_BSLASHacfp] = ACTIONS(6049), - [anon_sym_BSLASHAcfp] = ACTIONS(6049), - [anon_sym_BSLASHac] = ACTIONS(6049), - [anon_sym_BSLASHAc] = ACTIONS(6049), - [anon_sym_BSLASHacp] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6049), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6049), - [anon_sym_BSLASHcolor] = ACTIONS(6049), - [anon_sym_BSLASHcolorbox] = ACTIONS(6049), - [anon_sym_BSLASHtextcolor] = ACTIONS(6049), - [anon_sym_BSLASHpagecolor] = ACTIONS(6049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6049), - [anon_sym_BSLASHtext] = ACTIONS(6049), - [anon_sym_BSLASHintertext] = ACTIONS(6049), - [anon_sym_shortintertext] = ACTIONS(6049), - }, - [1282] = { - [sym_command_name] = ACTIONS(6045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6045), - [anon_sym_LBRACK] = ACTIONS(6047), - [anon_sym_RBRACK] = ACTIONS(6047), - [anon_sym_COMMA] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(6047), - [anon_sym_LPAREN] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_BSLASHpart] = ACTIONS(6045), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddpart] = ACTIONS(6045), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6047), - [anon_sym_BSLASHchapter] = ACTIONS(6045), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddchap] = ACTIONS(6045), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsection] = ACTIONS(6045), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddsec] = ACTIONS(6045), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubsection] = ACTIONS(6045), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6045), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHparagraph] = ACTIONS(6045), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6045), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6047), - [anon_sym_BSLASHitem] = ACTIONS(6045), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6047), - [anon_sym_LBRACE] = ACTIONS(6047), - [sym_word] = ACTIONS(6045), - [sym_placeholder] = ACTIONS(6047), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6047), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_BANG] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_SQUOTE] = ACTIONS(6045), - [anon_sym__] = ACTIONS(6047), - [anon_sym_CARET] = ACTIONS(6047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6047), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6047), - [anon_sym_BSLASHbegin] = ACTIONS(6045), - [anon_sym_BSLASHtitle] = ACTIONS(6045), - [anon_sym_BSLASHauthor] = ACTIONS(6045), - [anon_sym_BSLASHusepackage] = ACTIONS(6045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6045), - [anon_sym_BSLASHinclude] = ACTIONS(6045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6045), - [anon_sym_BSLASHinput] = ACTIONS(6045), - [anon_sym_BSLASHsubfile] = ACTIONS(6045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6045), - [anon_sym_BSLASHbibliography] = ACTIONS(6045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6045), - [anon_sym_BSLASHincludesvg] = ACTIONS(6045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6045), - [anon_sym_BSLASHimport] = ACTIONS(6045), - [anon_sym_BSLASHsubimport] = ACTIONS(6045), - [anon_sym_BSLASHinputfrom] = ACTIONS(6045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6045), - [anon_sym_BSLASHincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHcaption] = ACTIONS(6045), - [anon_sym_BSLASHcite] = ACTIONS(6045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCite] = ACTIONS(6045), - [anon_sym_BSLASHnocite] = ACTIONS(6045), - [anon_sym_BSLASHcitet] = ACTIONS(6045), - [anon_sym_BSLASHcitep] = ACTIONS(6045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteauthor] = ACTIONS(6045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitetitle] = ACTIONS(6045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteyear] = ACTIONS(6045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitedate] = ACTIONS(6045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteurl] = ACTIONS(6045), - [anon_sym_BSLASHfullcite] = ACTIONS(6045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6045), - [anon_sym_BSLASHcitealt] = ACTIONS(6045), - [anon_sym_BSLASHcitealp] = ACTIONS(6045), - [anon_sym_BSLASHcitetext] = ACTIONS(6045), - [anon_sym_BSLASHparencite] = ACTIONS(6045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHParencite] = ACTIONS(6045), - [anon_sym_BSLASHfootcite] = ACTIONS(6045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6045), - [anon_sym_BSLASHtextcite] = ACTIONS(6045), - [anon_sym_BSLASHTextcite] = ACTIONS(6045), - [anon_sym_BSLASHsmartcite] = ACTIONS(6045), - [anon_sym_BSLASHSmartcite] = ACTIONS(6045), - [anon_sym_BSLASHsupercite] = ACTIONS(6045), - [anon_sym_BSLASHautocite] = ACTIONS(6045), - [anon_sym_BSLASHAutocite] = ACTIONS(6045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHvolcite] = ACTIONS(6045), - [anon_sym_BSLASHVolcite] = ACTIONS(6045), - [anon_sym_BSLASHpvolcite] = ACTIONS(6045), - [anon_sym_BSLASHPvolcite] = ACTIONS(6045), - [anon_sym_BSLASHfvolcite] = ACTIONS(6045), - [anon_sym_BSLASHftvolcite] = ACTIONS(6045), - [anon_sym_BSLASHsvolcite] = ACTIONS(6045), - [anon_sym_BSLASHSvolcite] = ACTIONS(6045), - [anon_sym_BSLASHtvolcite] = ACTIONS(6045), - [anon_sym_BSLASHTvolcite] = ACTIONS(6045), - [anon_sym_BSLASHavolcite] = ACTIONS(6045), - [anon_sym_BSLASHAvolcite] = ACTIONS(6045), - [anon_sym_BSLASHnotecite] = ACTIONS(6045), - [anon_sym_BSLASHNotecite] = ACTIONS(6045), - [anon_sym_BSLASHpnotecite] = ACTIONS(6045), - [anon_sym_BSLASHPnotecite] = ACTIONS(6045), - [anon_sym_BSLASHfnotecite] = ACTIONS(6045), - [anon_sym_BSLASHlabel] = ACTIONS(6045), - [anon_sym_BSLASHref] = ACTIONS(6045), - [anon_sym_BSLASHeqref] = ACTIONS(6045), - [anon_sym_BSLASHvref] = ACTIONS(6045), - [anon_sym_BSLASHVref] = ACTIONS(6045), - [anon_sym_BSLASHautoref] = ACTIONS(6045), - [anon_sym_BSLASHpageref] = ACTIONS(6045), - [anon_sym_BSLASHcref] = ACTIONS(6045), - [anon_sym_BSLASHCref] = ACTIONS(6045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnameCref] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHlabelcref] = ACTIONS(6045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCrefrange] = ACTIONS(6045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnewlabel] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6047), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHdef] = ACTIONS(6045), - [anon_sym_BSLASHlet] = ACTIONS(6045), - [anon_sym_BSLASHleft] = ACTIONS(6045), - [anon_sym_BSLASHbig] = ACTIONS(6045), - [anon_sym_BSLASHBig] = ACTIONS(6045), - [anon_sym_BSLASHbigg] = ACTIONS(6045), - [anon_sym_BSLASHBigg] = ACTIONS(6045), - [anon_sym_BSLASHbigl] = ACTIONS(6045), - [anon_sym_BSLASHBigl] = ACTIONS(6045), - [anon_sym_BSLASHbiggl] = ACTIONS(6045), - [anon_sym_BSLASHBiggl] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6045), - [anon_sym_BSLASHgls] = ACTIONS(6045), - [anon_sym_BSLASHGls] = ACTIONS(6045), - [anon_sym_BSLASHGLS] = ACTIONS(6045), - [anon_sym_BSLASHglspl] = ACTIONS(6045), - [anon_sym_BSLASHGlspl] = ACTIONS(6045), - [anon_sym_BSLASHGLSpl] = ACTIONS(6045), - [anon_sym_BSLASHglsdisp] = ACTIONS(6045), - [anon_sym_BSLASHglslink] = ACTIONS(6045), - [anon_sym_BSLASHglstext] = ACTIONS(6045), - [anon_sym_BSLASHGlstext] = ACTIONS(6045), - [anon_sym_BSLASHGLStext] = ACTIONS(6045), - [anon_sym_BSLASHglsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6045), - [anon_sym_BSLASHglsplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSplural] = ACTIONS(6045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHglsname] = ACTIONS(6045), - [anon_sym_BSLASHGlsname] = ACTIONS(6045), - [anon_sym_BSLASHGLSname] = ACTIONS(6045), - [anon_sym_BSLASHglssymbol] = ACTIONS(6045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6045), - [anon_sym_BSLASHglsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6045), - [anon_sym_BSLASHglsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6045), - [anon_sym_BSLASHglsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6045), - [anon_sym_BSLASHglsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6045), - [anon_sym_BSLASHglsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6045), - [anon_sym_BSLASHnewacronym] = ACTIONS(6045), - [anon_sym_BSLASHacrshort] = ACTIONS(6045), - [anon_sym_BSLASHAcrshort] = ACTIONS(6045), - [anon_sym_BSLASHACRshort] = ACTIONS(6045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6045), - [anon_sym_BSLASHacrlong] = ACTIONS(6045), - [anon_sym_BSLASHAcrlong] = ACTIONS(6045), - [anon_sym_BSLASHACRlong] = ACTIONS(6045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6045), - [anon_sym_BSLASHacrfull] = ACTIONS(6045), - [anon_sym_BSLASHAcrfull] = ACTIONS(6045), - [anon_sym_BSLASHACRfull] = ACTIONS(6045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6045), - [anon_sym_BSLASHacs] = ACTIONS(6045), - [anon_sym_BSLASHAcs] = ACTIONS(6045), - [anon_sym_BSLASHacsp] = ACTIONS(6045), - [anon_sym_BSLASHAcsp] = ACTIONS(6045), - [anon_sym_BSLASHacl] = ACTIONS(6045), - [anon_sym_BSLASHAcl] = ACTIONS(6045), - [anon_sym_BSLASHaclp] = ACTIONS(6045), - [anon_sym_BSLASHAclp] = ACTIONS(6045), - [anon_sym_BSLASHacf] = ACTIONS(6045), - [anon_sym_BSLASHAcf] = ACTIONS(6045), - [anon_sym_BSLASHacfp] = ACTIONS(6045), - [anon_sym_BSLASHAcfp] = ACTIONS(6045), - [anon_sym_BSLASHac] = ACTIONS(6045), - [anon_sym_BSLASHAc] = ACTIONS(6045), - [anon_sym_BSLASHacp] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6045), - [anon_sym_BSLASHcolor] = ACTIONS(6045), - [anon_sym_BSLASHcolorbox] = ACTIONS(6045), - [anon_sym_BSLASHtextcolor] = ACTIONS(6045), - [anon_sym_BSLASHpagecolor] = ACTIONS(6045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6045), - [anon_sym_BSLASHtext] = ACTIONS(6045), - [anon_sym_BSLASHintertext] = ACTIONS(6045), - [anon_sym_shortintertext] = ACTIONS(6045), - }, - [1283] = { - [sym_command_name] = ACTIONS(6441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6441), - [anon_sym_LBRACK] = ACTIONS(6443), - [anon_sym_RBRACK] = ACTIONS(6443), - [anon_sym_COMMA] = ACTIONS(6443), - [anon_sym_EQ] = ACTIONS(6443), - [anon_sym_LPAREN] = ACTIONS(6443), - [anon_sym_RPAREN] = ACTIONS(6443), - [anon_sym_BSLASHpart] = ACTIONS(6441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddpart] = ACTIONS(6441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6443), - [anon_sym_BSLASHchapter] = ACTIONS(6441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddchap] = ACTIONS(6441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsection] = ACTIONS(6441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHaddsec] = ACTIONS(6441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubsection] = ACTIONS(6441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6443), - [anon_sym_BSLASHparagraph] = ACTIONS(6441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6443), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6443), - [anon_sym_BSLASHitem] = ACTIONS(6441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6443), - [anon_sym_LBRACE] = ACTIONS(6443), - [sym_word] = ACTIONS(6441), - [sym_placeholder] = ACTIONS(6443), - [anon_sym_PLUS] = ACTIONS(6443), - [anon_sym_DASH] = ACTIONS(6443), - [anon_sym_STAR] = ACTIONS(6443), - [anon_sym_SLASH] = ACTIONS(6443), - [anon_sym_LT] = ACTIONS(6441), - [anon_sym_GT] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(6441), - [anon_sym_PIPE] = ACTIONS(6441), - [anon_sym_COLON] = ACTIONS(6441), - [anon_sym_SQUOTE] = ACTIONS(6441), - [anon_sym__] = ACTIONS(6443), - [anon_sym_CARET] = ACTIONS(6443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6443), - [anon_sym_DOLLAR] = ACTIONS(6441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6443), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6443), - [anon_sym_BSLASHbegin] = ACTIONS(6441), - [anon_sym_BSLASHtitle] = ACTIONS(6441), - [anon_sym_BSLASHauthor] = ACTIONS(6441), - [anon_sym_BSLASHusepackage] = ACTIONS(6441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6441), - [anon_sym_BSLASHinclude] = ACTIONS(6441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6441), - [anon_sym_BSLASHinput] = ACTIONS(6441), - [anon_sym_BSLASHsubfile] = ACTIONS(6441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6441), - [anon_sym_BSLASHbibliography] = ACTIONS(6441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6441), - [anon_sym_BSLASHincludesvg] = ACTIONS(6441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6441), - [anon_sym_BSLASHimport] = ACTIONS(6441), - [anon_sym_BSLASHsubimport] = ACTIONS(6441), - [anon_sym_BSLASHinputfrom] = ACTIONS(6441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6441), - [anon_sym_BSLASHincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHcaption] = ACTIONS(6441), - [anon_sym_BSLASHcite] = ACTIONS(6441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCite] = ACTIONS(6441), - [anon_sym_BSLASHnocite] = ACTIONS(6441), - [anon_sym_BSLASHcitet] = ACTIONS(6441), - [anon_sym_BSLASHcitep] = ACTIONS(6441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteauthor] = ACTIONS(6441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitetitle] = ACTIONS(6441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteyear] = ACTIONS(6441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitedate] = ACTIONS(6441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteurl] = ACTIONS(6441), - [anon_sym_BSLASHfullcite] = ACTIONS(6441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6441), - [anon_sym_BSLASHcitealt] = ACTIONS(6441), - [anon_sym_BSLASHcitealp] = ACTIONS(6441), - [anon_sym_BSLASHcitetext] = ACTIONS(6441), - [anon_sym_BSLASHparencite] = ACTIONS(6441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHParencite] = ACTIONS(6441), - [anon_sym_BSLASHfootcite] = ACTIONS(6441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6441), - [anon_sym_BSLASHtextcite] = ACTIONS(6441), - [anon_sym_BSLASHTextcite] = ACTIONS(6441), - [anon_sym_BSLASHsmartcite] = ACTIONS(6441), - [anon_sym_BSLASHSmartcite] = ACTIONS(6441), - [anon_sym_BSLASHsupercite] = ACTIONS(6441), - [anon_sym_BSLASHautocite] = ACTIONS(6441), - [anon_sym_BSLASHAutocite] = ACTIONS(6441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHvolcite] = ACTIONS(6441), - [anon_sym_BSLASHVolcite] = ACTIONS(6441), - [anon_sym_BSLASHpvolcite] = ACTIONS(6441), - [anon_sym_BSLASHPvolcite] = ACTIONS(6441), - [anon_sym_BSLASHfvolcite] = ACTIONS(6441), - [anon_sym_BSLASHftvolcite] = ACTIONS(6441), - [anon_sym_BSLASHsvolcite] = ACTIONS(6441), - [anon_sym_BSLASHSvolcite] = ACTIONS(6441), - [anon_sym_BSLASHtvolcite] = ACTIONS(6441), - [anon_sym_BSLASHTvolcite] = ACTIONS(6441), - [anon_sym_BSLASHavolcite] = ACTIONS(6441), - [anon_sym_BSLASHAvolcite] = ACTIONS(6441), - [anon_sym_BSLASHnotecite] = ACTIONS(6441), - [anon_sym_BSLASHNotecite] = ACTIONS(6441), - [anon_sym_BSLASHpnotecite] = ACTIONS(6441), - [anon_sym_BSLASHPnotecite] = ACTIONS(6441), - [anon_sym_BSLASHfnotecite] = ACTIONS(6441), - [anon_sym_BSLASHlabel] = ACTIONS(6441), - [anon_sym_BSLASHref] = ACTIONS(6441), - [anon_sym_BSLASHeqref] = ACTIONS(6441), - [anon_sym_BSLASHvref] = ACTIONS(6441), - [anon_sym_BSLASHVref] = ACTIONS(6441), - [anon_sym_BSLASHautoref] = ACTIONS(6441), - [anon_sym_BSLASHpageref] = ACTIONS(6441), - [anon_sym_BSLASHcref] = ACTIONS(6441), - [anon_sym_BSLASHCref] = ACTIONS(6441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnameCref] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHlabelcref] = ACTIONS(6441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCrefrange] = ACTIONS(6441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnewlabel] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6443), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHdef] = ACTIONS(6441), - [anon_sym_BSLASHlet] = ACTIONS(6441), - [anon_sym_BSLASHleft] = ACTIONS(6441), - [anon_sym_BSLASHbig] = ACTIONS(6441), - [anon_sym_BSLASHBig] = ACTIONS(6441), - [anon_sym_BSLASHbigg] = ACTIONS(6441), - [anon_sym_BSLASHBigg] = ACTIONS(6441), - [anon_sym_BSLASHbigl] = ACTIONS(6441), - [anon_sym_BSLASHBigl] = ACTIONS(6441), - [anon_sym_BSLASHbiggl] = ACTIONS(6441), - [anon_sym_BSLASHBiggl] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6441), - [anon_sym_BSLASHgls] = ACTIONS(6441), - [anon_sym_BSLASHGls] = ACTIONS(6441), - [anon_sym_BSLASHGLS] = ACTIONS(6441), - [anon_sym_BSLASHglspl] = ACTIONS(6441), - [anon_sym_BSLASHGlspl] = ACTIONS(6441), - [anon_sym_BSLASHGLSpl] = ACTIONS(6441), - [anon_sym_BSLASHglsdisp] = ACTIONS(6441), - [anon_sym_BSLASHglslink] = ACTIONS(6441), - [anon_sym_BSLASHglstext] = ACTIONS(6441), - [anon_sym_BSLASHGlstext] = ACTIONS(6441), - [anon_sym_BSLASHGLStext] = ACTIONS(6441), - [anon_sym_BSLASHglsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6441), - [anon_sym_BSLASHglsplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSplural] = ACTIONS(6441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHglsname] = ACTIONS(6441), - [anon_sym_BSLASHGlsname] = ACTIONS(6441), - [anon_sym_BSLASHGLSname] = ACTIONS(6441), - [anon_sym_BSLASHglssymbol] = ACTIONS(6441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6441), - [anon_sym_BSLASHglsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6441), - [anon_sym_BSLASHglsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6441), - [anon_sym_BSLASHglsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6441), - [anon_sym_BSLASHglsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6441), - [anon_sym_BSLASHglsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6441), - [anon_sym_BSLASHnewacronym] = ACTIONS(6441), - [anon_sym_BSLASHacrshort] = ACTIONS(6441), - [anon_sym_BSLASHAcrshort] = ACTIONS(6441), - [anon_sym_BSLASHACRshort] = ACTIONS(6441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6441), - [anon_sym_BSLASHacrlong] = ACTIONS(6441), - [anon_sym_BSLASHAcrlong] = ACTIONS(6441), - [anon_sym_BSLASHACRlong] = ACTIONS(6441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6441), - [anon_sym_BSLASHacrfull] = ACTIONS(6441), - [anon_sym_BSLASHAcrfull] = ACTIONS(6441), - [anon_sym_BSLASHACRfull] = ACTIONS(6441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6441), - [anon_sym_BSLASHacs] = ACTIONS(6441), - [anon_sym_BSLASHAcs] = ACTIONS(6441), - [anon_sym_BSLASHacsp] = ACTIONS(6441), - [anon_sym_BSLASHAcsp] = ACTIONS(6441), - [anon_sym_BSLASHacl] = ACTIONS(6441), - [anon_sym_BSLASHAcl] = ACTIONS(6441), - [anon_sym_BSLASHaclp] = ACTIONS(6441), - [anon_sym_BSLASHAclp] = ACTIONS(6441), - [anon_sym_BSLASHacf] = ACTIONS(6441), - [anon_sym_BSLASHAcf] = ACTIONS(6441), - [anon_sym_BSLASHacfp] = ACTIONS(6441), - [anon_sym_BSLASHAcfp] = ACTIONS(6441), - [anon_sym_BSLASHac] = ACTIONS(6441), - [anon_sym_BSLASHAc] = ACTIONS(6441), - [anon_sym_BSLASHacp] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6441), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6441), - [anon_sym_BSLASHcolor] = ACTIONS(6441), - [anon_sym_BSLASHcolorbox] = ACTIONS(6441), - [anon_sym_BSLASHtextcolor] = ACTIONS(6441), - [anon_sym_BSLASHpagecolor] = ACTIONS(6441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6441), - [anon_sym_BSLASHtext] = ACTIONS(6441), - [anon_sym_BSLASHintertext] = ACTIONS(6441), - [anon_sym_shortintertext] = ACTIONS(6441), - }, - [1284] = { - [sym_command_name] = ACTIONS(6025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6025), - [anon_sym_LBRACK] = ACTIONS(6027), - [anon_sym_RBRACK] = ACTIONS(6027), - [anon_sym_COMMA] = ACTIONS(6027), - [anon_sym_EQ] = ACTIONS(6027), - [anon_sym_LPAREN] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_BSLASHpart] = ACTIONS(6025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddpart] = ACTIONS(6025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6027), - [anon_sym_BSLASHchapter] = ACTIONS(6025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddchap] = ACTIONS(6025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsection] = ACTIONS(6025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddsec] = ACTIONS(6025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubsection] = ACTIONS(6025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHparagraph] = ACTIONS(6025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6027), - [anon_sym_BSLASHitem] = ACTIONS(6025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6027), - [anon_sym_LBRACE] = ACTIONS(6027), - [sym_word] = ACTIONS(6025), - [sym_placeholder] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6025), - [anon_sym_GT] = ACTIONS(6025), - [anon_sym_BANG] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_SQUOTE] = ACTIONS(6025), - [anon_sym__] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), - [anon_sym_BSLASHbegin] = ACTIONS(6025), - [anon_sym_BSLASHtitle] = ACTIONS(6025), - [anon_sym_BSLASHauthor] = ACTIONS(6025), - [anon_sym_BSLASHusepackage] = ACTIONS(6025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), - [anon_sym_BSLASHinclude] = ACTIONS(6025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), - [anon_sym_BSLASHinput] = ACTIONS(6025), - [anon_sym_BSLASHsubfile] = ACTIONS(6025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), - [anon_sym_BSLASHbibliography] = ACTIONS(6025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), - [anon_sym_BSLASHincludesvg] = ACTIONS(6025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), - [anon_sym_BSLASHimport] = ACTIONS(6025), - [anon_sym_BSLASHsubimport] = ACTIONS(6025), - [anon_sym_BSLASHinputfrom] = ACTIONS(6025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), - [anon_sym_BSLASHincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHcaption] = ACTIONS(6025), - [anon_sym_BSLASHcite] = ACTIONS(6025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCite] = ACTIONS(6025), - [anon_sym_BSLASHnocite] = ACTIONS(6025), - [anon_sym_BSLASHcitet] = ACTIONS(6025), - [anon_sym_BSLASHcitep] = ACTIONS(6025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteauthor] = ACTIONS(6025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitetitle] = ACTIONS(6025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteyear] = ACTIONS(6025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitedate] = ACTIONS(6025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteurl] = ACTIONS(6025), - [anon_sym_BSLASHfullcite] = ACTIONS(6025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), - [anon_sym_BSLASHcitealt] = ACTIONS(6025), - [anon_sym_BSLASHcitealp] = ACTIONS(6025), - [anon_sym_BSLASHcitetext] = ACTIONS(6025), - [anon_sym_BSLASHparencite] = ACTIONS(6025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHParencite] = ACTIONS(6025), - [anon_sym_BSLASHfootcite] = ACTIONS(6025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), - [anon_sym_BSLASHtextcite] = ACTIONS(6025), - [anon_sym_BSLASHTextcite] = ACTIONS(6025), - [anon_sym_BSLASHsmartcite] = ACTIONS(6025), - [anon_sym_BSLASHSmartcite] = ACTIONS(6025), - [anon_sym_BSLASHsupercite] = ACTIONS(6025), - [anon_sym_BSLASHautocite] = ACTIONS(6025), - [anon_sym_BSLASHAutocite] = ACTIONS(6025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHvolcite] = ACTIONS(6025), - [anon_sym_BSLASHVolcite] = ACTIONS(6025), - [anon_sym_BSLASHpvolcite] = ACTIONS(6025), - [anon_sym_BSLASHPvolcite] = ACTIONS(6025), - [anon_sym_BSLASHfvolcite] = ACTIONS(6025), - [anon_sym_BSLASHftvolcite] = ACTIONS(6025), - [anon_sym_BSLASHsvolcite] = ACTIONS(6025), - [anon_sym_BSLASHSvolcite] = ACTIONS(6025), - [anon_sym_BSLASHtvolcite] = ACTIONS(6025), - [anon_sym_BSLASHTvolcite] = ACTIONS(6025), - [anon_sym_BSLASHavolcite] = ACTIONS(6025), - [anon_sym_BSLASHAvolcite] = ACTIONS(6025), - [anon_sym_BSLASHnotecite] = ACTIONS(6025), - [anon_sym_BSLASHNotecite] = ACTIONS(6025), - [anon_sym_BSLASHpnotecite] = ACTIONS(6025), - [anon_sym_BSLASHPnotecite] = ACTIONS(6025), - [anon_sym_BSLASHfnotecite] = ACTIONS(6025), - [anon_sym_BSLASHlabel] = ACTIONS(6025), - [anon_sym_BSLASHref] = ACTIONS(6025), - [anon_sym_BSLASHeqref] = ACTIONS(6025), - [anon_sym_BSLASHvref] = ACTIONS(6025), - [anon_sym_BSLASHVref] = ACTIONS(6025), - [anon_sym_BSLASHautoref] = ACTIONS(6025), - [anon_sym_BSLASHpageref] = ACTIONS(6025), - [anon_sym_BSLASHcref] = ACTIONS(6025), - [anon_sym_BSLASHCref] = ACTIONS(6025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnameCref] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHlabelcref] = ACTIONS(6025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCrefrange] = ACTIONS(6025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnewlabel] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHdef] = ACTIONS(6025), - [anon_sym_BSLASHlet] = ACTIONS(6025), - [anon_sym_BSLASHleft] = ACTIONS(6025), - [anon_sym_BSLASHbig] = ACTIONS(6025), - [anon_sym_BSLASHBig] = ACTIONS(6025), - [anon_sym_BSLASHbigg] = ACTIONS(6025), - [anon_sym_BSLASHBigg] = ACTIONS(6025), - [anon_sym_BSLASHbigl] = ACTIONS(6025), - [anon_sym_BSLASHBigl] = ACTIONS(6025), - [anon_sym_BSLASHbiggl] = ACTIONS(6025), - [anon_sym_BSLASHBiggl] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), - [anon_sym_BSLASHgls] = ACTIONS(6025), - [anon_sym_BSLASHGls] = ACTIONS(6025), - [anon_sym_BSLASHGLS] = ACTIONS(6025), - [anon_sym_BSLASHglspl] = ACTIONS(6025), - [anon_sym_BSLASHGlspl] = ACTIONS(6025), - [anon_sym_BSLASHGLSpl] = ACTIONS(6025), - [anon_sym_BSLASHglsdisp] = ACTIONS(6025), - [anon_sym_BSLASHglslink] = ACTIONS(6025), - [anon_sym_BSLASHglstext] = ACTIONS(6025), - [anon_sym_BSLASHGlstext] = ACTIONS(6025), - [anon_sym_BSLASHGLStext] = ACTIONS(6025), - [anon_sym_BSLASHglsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), - [anon_sym_BSLASHglsplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSplural] = ACTIONS(6025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHglsname] = ACTIONS(6025), - [anon_sym_BSLASHGlsname] = ACTIONS(6025), - [anon_sym_BSLASHGLSname] = ACTIONS(6025), - [anon_sym_BSLASHglssymbol] = ACTIONS(6025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), - [anon_sym_BSLASHglsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), - [anon_sym_BSLASHglsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), - [anon_sym_BSLASHglsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), - [anon_sym_BSLASHglsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), - [anon_sym_BSLASHglsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), - [anon_sym_BSLASHnewacronym] = ACTIONS(6025), - [anon_sym_BSLASHacrshort] = ACTIONS(6025), - [anon_sym_BSLASHAcrshort] = ACTIONS(6025), - [anon_sym_BSLASHACRshort] = ACTIONS(6025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), - [anon_sym_BSLASHacrlong] = ACTIONS(6025), - [anon_sym_BSLASHAcrlong] = ACTIONS(6025), - [anon_sym_BSLASHACRlong] = ACTIONS(6025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), - [anon_sym_BSLASHacrfull] = ACTIONS(6025), - [anon_sym_BSLASHAcrfull] = ACTIONS(6025), - [anon_sym_BSLASHACRfull] = ACTIONS(6025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), - [anon_sym_BSLASHacs] = ACTIONS(6025), - [anon_sym_BSLASHAcs] = ACTIONS(6025), - [anon_sym_BSLASHacsp] = ACTIONS(6025), - [anon_sym_BSLASHAcsp] = ACTIONS(6025), - [anon_sym_BSLASHacl] = ACTIONS(6025), - [anon_sym_BSLASHAcl] = ACTIONS(6025), - [anon_sym_BSLASHaclp] = ACTIONS(6025), - [anon_sym_BSLASHAclp] = ACTIONS(6025), - [anon_sym_BSLASHacf] = ACTIONS(6025), - [anon_sym_BSLASHAcf] = ACTIONS(6025), - [anon_sym_BSLASHacfp] = ACTIONS(6025), - [anon_sym_BSLASHAcfp] = ACTIONS(6025), - [anon_sym_BSLASHac] = ACTIONS(6025), - [anon_sym_BSLASHAc] = ACTIONS(6025), - [anon_sym_BSLASHacp] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), - [anon_sym_BSLASHcolor] = ACTIONS(6025), - [anon_sym_BSLASHcolorbox] = ACTIONS(6025), - [anon_sym_BSLASHtextcolor] = ACTIONS(6025), - [anon_sym_BSLASHpagecolor] = ACTIONS(6025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), - [anon_sym_BSLASHtext] = ACTIONS(6025), - [anon_sym_BSLASHintertext] = ACTIONS(6025), - [anon_sym_shortintertext] = ACTIONS(6025), - }, - [1285] = { - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddpart] = ACTIONS(189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddsec] = ACTIONS(189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHparagraph] = ACTIONS(189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_BSLASH_RBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [1286] = { - [sym_command_name] = ACTIONS(6225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6225), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_RBRACK] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_EQ] = ACTIONS(6227), - [anon_sym_LPAREN] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [anon_sym_BSLASHpart] = ACTIONS(6225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddpart] = ACTIONS(6225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6227), - [anon_sym_BSLASHchapter] = ACTIONS(6225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddchap] = ACTIONS(6225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsection] = ACTIONS(6225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddsec] = ACTIONS(6225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubsection] = ACTIONS(6225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHparagraph] = ACTIONS(6225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6227), - [anon_sym_BSLASHitem] = ACTIONS(6225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6227), - [anon_sym_LBRACE] = ACTIONS(6227), - [sym_word] = ACTIONS(6225), - [sym_placeholder] = ACTIONS(6227), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(6225), - [anon_sym_GT] = ACTIONS(6225), - [anon_sym_BANG] = ACTIONS(6225), - [anon_sym_PIPE] = ACTIONS(6225), - [anon_sym_COLON] = ACTIONS(6225), - [anon_sym_SQUOTE] = ACTIONS(6225), - [anon_sym__] = ACTIONS(6227), - [anon_sym_CARET] = ACTIONS(6227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6227), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6227), - [anon_sym_DOLLAR] = ACTIONS(6225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6227), - [anon_sym_BSLASHbegin] = ACTIONS(6225), - [anon_sym_BSLASHtitle] = ACTIONS(6225), - [anon_sym_BSLASHauthor] = ACTIONS(6225), - [anon_sym_BSLASHusepackage] = ACTIONS(6225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6225), - [anon_sym_BSLASHinclude] = ACTIONS(6225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6225), - [anon_sym_BSLASHinput] = ACTIONS(6225), - [anon_sym_BSLASHsubfile] = ACTIONS(6225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6225), - [anon_sym_BSLASHbibliography] = ACTIONS(6225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6225), - [anon_sym_BSLASHincludesvg] = ACTIONS(6225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6225), - [anon_sym_BSLASHimport] = ACTIONS(6225), - [anon_sym_BSLASHsubimport] = ACTIONS(6225), - [anon_sym_BSLASHinputfrom] = ACTIONS(6225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6225), - [anon_sym_BSLASHincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHcaption] = ACTIONS(6225), - [anon_sym_BSLASHcite] = ACTIONS(6225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCite] = ACTIONS(6225), - [anon_sym_BSLASHnocite] = ACTIONS(6225), - [anon_sym_BSLASHcitet] = ACTIONS(6225), - [anon_sym_BSLASHcitep] = ACTIONS(6225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteauthor] = ACTIONS(6225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitetitle] = ACTIONS(6225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteyear] = ACTIONS(6225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitedate] = ACTIONS(6225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteurl] = ACTIONS(6225), - [anon_sym_BSLASHfullcite] = ACTIONS(6225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6225), - [anon_sym_BSLASHcitealt] = ACTIONS(6225), - [anon_sym_BSLASHcitealp] = ACTIONS(6225), - [anon_sym_BSLASHcitetext] = ACTIONS(6225), - [anon_sym_BSLASHparencite] = ACTIONS(6225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHParencite] = ACTIONS(6225), - [anon_sym_BSLASHfootcite] = ACTIONS(6225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6225), - [anon_sym_BSLASHtextcite] = ACTIONS(6225), - [anon_sym_BSLASHTextcite] = ACTIONS(6225), - [anon_sym_BSLASHsmartcite] = ACTIONS(6225), - [anon_sym_BSLASHSmartcite] = ACTIONS(6225), - [anon_sym_BSLASHsupercite] = ACTIONS(6225), - [anon_sym_BSLASHautocite] = ACTIONS(6225), - [anon_sym_BSLASHAutocite] = ACTIONS(6225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHvolcite] = ACTIONS(6225), - [anon_sym_BSLASHVolcite] = ACTIONS(6225), - [anon_sym_BSLASHpvolcite] = ACTIONS(6225), - [anon_sym_BSLASHPvolcite] = ACTIONS(6225), - [anon_sym_BSLASHfvolcite] = ACTIONS(6225), - [anon_sym_BSLASHftvolcite] = ACTIONS(6225), - [anon_sym_BSLASHsvolcite] = ACTIONS(6225), - [anon_sym_BSLASHSvolcite] = ACTIONS(6225), - [anon_sym_BSLASHtvolcite] = ACTIONS(6225), - [anon_sym_BSLASHTvolcite] = ACTIONS(6225), - [anon_sym_BSLASHavolcite] = ACTIONS(6225), - [anon_sym_BSLASHAvolcite] = ACTIONS(6225), - [anon_sym_BSLASHnotecite] = ACTIONS(6225), - [anon_sym_BSLASHNotecite] = ACTIONS(6225), - [anon_sym_BSLASHpnotecite] = ACTIONS(6225), - [anon_sym_BSLASHPnotecite] = ACTIONS(6225), - [anon_sym_BSLASHfnotecite] = ACTIONS(6225), - [anon_sym_BSLASHlabel] = ACTIONS(6225), - [anon_sym_BSLASHref] = ACTIONS(6225), - [anon_sym_BSLASHeqref] = ACTIONS(6225), - [anon_sym_BSLASHvref] = ACTIONS(6225), - [anon_sym_BSLASHVref] = ACTIONS(6225), - [anon_sym_BSLASHautoref] = ACTIONS(6225), - [anon_sym_BSLASHpageref] = ACTIONS(6225), - [anon_sym_BSLASHcref] = ACTIONS(6225), - [anon_sym_BSLASHCref] = ACTIONS(6225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnameCref] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHlabelcref] = ACTIONS(6225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCrefrange] = ACTIONS(6225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnewlabel] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6227), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHdef] = ACTIONS(6225), - [anon_sym_BSLASHlet] = ACTIONS(6225), - [anon_sym_BSLASHleft] = ACTIONS(6225), - [anon_sym_BSLASHbig] = ACTIONS(6225), - [anon_sym_BSLASHBig] = ACTIONS(6225), - [anon_sym_BSLASHbigg] = ACTIONS(6225), - [anon_sym_BSLASHBigg] = ACTIONS(6225), - [anon_sym_BSLASHbigl] = ACTIONS(6225), - [anon_sym_BSLASHBigl] = ACTIONS(6225), - [anon_sym_BSLASHbiggl] = ACTIONS(6225), - [anon_sym_BSLASHBiggl] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6225), - [anon_sym_BSLASHgls] = ACTIONS(6225), - [anon_sym_BSLASHGls] = ACTIONS(6225), - [anon_sym_BSLASHGLS] = ACTIONS(6225), - [anon_sym_BSLASHglspl] = ACTIONS(6225), - [anon_sym_BSLASHGlspl] = ACTIONS(6225), - [anon_sym_BSLASHGLSpl] = ACTIONS(6225), - [anon_sym_BSLASHglsdisp] = ACTIONS(6225), - [anon_sym_BSLASHglslink] = ACTIONS(6225), - [anon_sym_BSLASHglstext] = ACTIONS(6225), - [anon_sym_BSLASHGlstext] = ACTIONS(6225), - [anon_sym_BSLASHGLStext] = ACTIONS(6225), - [anon_sym_BSLASHglsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6225), - [anon_sym_BSLASHglsplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSplural] = ACTIONS(6225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHglsname] = ACTIONS(6225), - [anon_sym_BSLASHGlsname] = ACTIONS(6225), - [anon_sym_BSLASHGLSname] = ACTIONS(6225), - [anon_sym_BSLASHglssymbol] = ACTIONS(6225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6225), - [anon_sym_BSLASHglsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6225), - [anon_sym_BSLASHglsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6225), - [anon_sym_BSLASHglsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6225), - [anon_sym_BSLASHglsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6225), - [anon_sym_BSLASHglsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6225), - [anon_sym_BSLASHnewacronym] = ACTIONS(6225), - [anon_sym_BSLASHacrshort] = ACTIONS(6225), - [anon_sym_BSLASHAcrshort] = ACTIONS(6225), - [anon_sym_BSLASHACRshort] = ACTIONS(6225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6225), - [anon_sym_BSLASHacrlong] = ACTIONS(6225), - [anon_sym_BSLASHAcrlong] = ACTIONS(6225), - [anon_sym_BSLASHACRlong] = ACTIONS(6225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6225), - [anon_sym_BSLASHacrfull] = ACTIONS(6225), - [anon_sym_BSLASHAcrfull] = ACTIONS(6225), - [anon_sym_BSLASHACRfull] = ACTIONS(6225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6225), - [anon_sym_BSLASHacs] = ACTIONS(6225), - [anon_sym_BSLASHAcs] = ACTIONS(6225), - [anon_sym_BSLASHacsp] = ACTIONS(6225), - [anon_sym_BSLASHAcsp] = ACTIONS(6225), - [anon_sym_BSLASHacl] = ACTIONS(6225), - [anon_sym_BSLASHAcl] = ACTIONS(6225), - [anon_sym_BSLASHaclp] = ACTIONS(6225), - [anon_sym_BSLASHAclp] = ACTIONS(6225), - [anon_sym_BSLASHacf] = ACTIONS(6225), - [anon_sym_BSLASHAcf] = ACTIONS(6225), - [anon_sym_BSLASHacfp] = ACTIONS(6225), - [anon_sym_BSLASHAcfp] = ACTIONS(6225), - [anon_sym_BSLASHac] = ACTIONS(6225), - [anon_sym_BSLASHAc] = ACTIONS(6225), - [anon_sym_BSLASHacp] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6225), - [anon_sym_BSLASHcolor] = ACTIONS(6225), - [anon_sym_BSLASHcolorbox] = ACTIONS(6225), - [anon_sym_BSLASHtextcolor] = ACTIONS(6225), - [anon_sym_BSLASHpagecolor] = ACTIONS(6225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6225), - [anon_sym_BSLASHtext] = ACTIONS(6225), - [anon_sym_BSLASHintertext] = ACTIONS(6225), - [anon_sym_shortintertext] = ACTIONS(6225), - }, - [1287] = { - [sym_command_name] = ACTIONS(6437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6437), - [anon_sym_LBRACK] = ACTIONS(6439), - [anon_sym_RBRACK] = ACTIONS(6439), - [anon_sym_COMMA] = ACTIONS(6439), - [anon_sym_EQ] = ACTIONS(6439), - [anon_sym_LPAREN] = ACTIONS(6439), - [anon_sym_RPAREN] = ACTIONS(6439), - [anon_sym_BSLASHpart] = ACTIONS(6437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddpart] = ACTIONS(6437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6439), - [anon_sym_BSLASHchapter] = ACTIONS(6437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddchap] = ACTIONS(6437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsection] = ACTIONS(6437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHaddsec] = ACTIONS(6437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubsection] = ACTIONS(6437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6439), - [anon_sym_BSLASHparagraph] = ACTIONS(6437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6439), - [anon_sym_BSLASHitem] = ACTIONS(6437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6439), - [anon_sym_LBRACE] = ACTIONS(6439), - [sym_word] = ACTIONS(6437), - [sym_placeholder] = ACTIONS(6439), - [anon_sym_PLUS] = ACTIONS(6439), - [anon_sym_DASH] = ACTIONS(6439), - [anon_sym_STAR] = ACTIONS(6439), - [anon_sym_SLASH] = ACTIONS(6439), - [anon_sym_LT] = ACTIONS(6437), - [anon_sym_GT] = ACTIONS(6437), - [anon_sym_BANG] = ACTIONS(6437), - [anon_sym_PIPE] = ACTIONS(6437), - [anon_sym_COLON] = ACTIONS(6437), - [anon_sym_SQUOTE] = ACTIONS(6437), - [anon_sym__] = ACTIONS(6439), - [anon_sym_CARET] = ACTIONS(6439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6439), - [anon_sym_DOLLAR] = ACTIONS(6437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6439), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6439), - [anon_sym_BSLASHbegin] = ACTIONS(6437), - [anon_sym_BSLASHtitle] = ACTIONS(6437), - [anon_sym_BSLASHauthor] = ACTIONS(6437), - [anon_sym_BSLASHusepackage] = ACTIONS(6437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6437), - [anon_sym_BSLASHinclude] = ACTIONS(6437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6437), - [anon_sym_BSLASHinput] = ACTIONS(6437), - [anon_sym_BSLASHsubfile] = ACTIONS(6437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6437), - [anon_sym_BSLASHbibliography] = ACTIONS(6437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6437), - [anon_sym_BSLASHincludesvg] = ACTIONS(6437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6437), - [anon_sym_BSLASHimport] = ACTIONS(6437), - [anon_sym_BSLASHsubimport] = ACTIONS(6437), - [anon_sym_BSLASHinputfrom] = ACTIONS(6437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6437), - [anon_sym_BSLASHincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHcaption] = ACTIONS(6437), - [anon_sym_BSLASHcite] = ACTIONS(6437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCite] = ACTIONS(6437), - [anon_sym_BSLASHnocite] = ACTIONS(6437), - [anon_sym_BSLASHcitet] = ACTIONS(6437), - [anon_sym_BSLASHcitep] = ACTIONS(6437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteauthor] = ACTIONS(6437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitetitle] = ACTIONS(6437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteyear] = ACTIONS(6437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitedate] = ACTIONS(6437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteurl] = ACTIONS(6437), - [anon_sym_BSLASHfullcite] = ACTIONS(6437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6437), - [anon_sym_BSLASHcitealt] = ACTIONS(6437), - [anon_sym_BSLASHcitealp] = ACTIONS(6437), - [anon_sym_BSLASHcitetext] = ACTIONS(6437), - [anon_sym_BSLASHparencite] = ACTIONS(6437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHParencite] = ACTIONS(6437), - [anon_sym_BSLASHfootcite] = ACTIONS(6437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6437), - [anon_sym_BSLASHtextcite] = ACTIONS(6437), - [anon_sym_BSLASHTextcite] = ACTIONS(6437), - [anon_sym_BSLASHsmartcite] = ACTIONS(6437), - [anon_sym_BSLASHSmartcite] = ACTIONS(6437), - [anon_sym_BSLASHsupercite] = ACTIONS(6437), - [anon_sym_BSLASHautocite] = ACTIONS(6437), - [anon_sym_BSLASHAutocite] = ACTIONS(6437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHvolcite] = ACTIONS(6437), - [anon_sym_BSLASHVolcite] = ACTIONS(6437), - [anon_sym_BSLASHpvolcite] = ACTIONS(6437), - [anon_sym_BSLASHPvolcite] = ACTIONS(6437), - [anon_sym_BSLASHfvolcite] = ACTIONS(6437), - [anon_sym_BSLASHftvolcite] = ACTIONS(6437), - [anon_sym_BSLASHsvolcite] = ACTIONS(6437), - [anon_sym_BSLASHSvolcite] = ACTIONS(6437), - [anon_sym_BSLASHtvolcite] = ACTIONS(6437), - [anon_sym_BSLASHTvolcite] = ACTIONS(6437), - [anon_sym_BSLASHavolcite] = ACTIONS(6437), - [anon_sym_BSLASHAvolcite] = ACTIONS(6437), - [anon_sym_BSLASHnotecite] = ACTIONS(6437), - [anon_sym_BSLASHNotecite] = ACTIONS(6437), - [anon_sym_BSLASHpnotecite] = ACTIONS(6437), - [anon_sym_BSLASHPnotecite] = ACTIONS(6437), - [anon_sym_BSLASHfnotecite] = ACTIONS(6437), - [anon_sym_BSLASHlabel] = ACTIONS(6437), - [anon_sym_BSLASHref] = ACTIONS(6437), - [anon_sym_BSLASHeqref] = ACTIONS(6437), - [anon_sym_BSLASHvref] = ACTIONS(6437), - [anon_sym_BSLASHVref] = ACTIONS(6437), - [anon_sym_BSLASHautoref] = ACTIONS(6437), - [anon_sym_BSLASHpageref] = ACTIONS(6437), - [anon_sym_BSLASHcref] = ACTIONS(6437), - [anon_sym_BSLASHCref] = ACTIONS(6437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnameCref] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHlabelcref] = ACTIONS(6437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCrefrange] = ACTIONS(6437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnewlabel] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6439), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHdef] = ACTIONS(6437), - [anon_sym_BSLASHlet] = ACTIONS(6437), - [anon_sym_BSLASHleft] = ACTIONS(6437), - [anon_sym_BSLASHbig] = ACTIONS(6437), - [anon_sym_BSLASHBig] = ACTIONS(6437), - [anon_sym_BSLASHbigg] = ACTIONS(6437), - [anon_sym_BSLASHBigg] = ACTIONS(6437), - [anon_sym_BSLASHbigl] = ACTIONS(6437), - [anon_sym_BSLASHBigl] = ACTIONS(6437), - [anon_sym_BSLASHbiggl] = ACTIONS(6437), - [anon_sym_BSLASHBiggl] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6437), - [anon_sym_BSLASHgls] = ACTIONS(6437), - [anon_sym_BSLASHGls] = ACTIONS(6437), - [anon_sym_BSLASHGLS] = ACTIONS(6437), - [anon_sym_BSLASHglspl] = ACTIONS(6437), - [anon_sym_BSLASHGlspl] = ACTIONS(6437), - [anon_sym_BSLASHGLSpl] = ACTIONS(6437), - [anon_sym_BSLASHglsdisp] = ACTIONS(6437), - [anon_sym_BSLASHglslink] = ACTIONS(6437), - [anon_sym_BSLASHglstext] = ACTIONS(6437), - [anon_sym_BSLASHGlstext] = ACTIONS(6437), - [anon_sym_BSLASHGLStext] = ACTIONS(6437), - [anon_sym_BSLASHglsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6437), - [anon_sym_BSLASHglsplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSplural] = ACTIONS(6437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHglsname] = ACTIONS(6437), - [anon_sym_BSLASHGlsname] = ACTIONS(6437), - [anon_sym_BSLASHGLSname] = ACTIONS(6437), - [anon_sym_BSLASHglssymbol] = ACTIONS(6437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6437), - [anon_sym_BSLASHglsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6437), - [anon_sym_BSLASHglsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6437), - [anon_sym_BSLASHglsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6437), - [anon_sym_BSLASHglsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6437), - [anon_sym_BSLASHglsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6437), - [anon_sym_BSLASHnewacronym] = ACTIONS(6437), - [anon_sym_BSLASHacrshort] = ACTIONS(6437), - [anon_sym_BSLASHAcrshort] = ACTIONS(6437), - [anon_sym_BSLASHACRshort] = ACTIONS(6437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6437), - [anon_sym_BSLASHacrlong] = ACTIONS(6437), - [anon_sym_BSLASHAcrlong] = ACTIONS(6437), - [anon_sym_BSLASHACRlong] = ACTIONS(6437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6437), - [anon_sym_BSLASHacrfull] = ACTIONS(6437), - [anon_sym_BSLASHAcrfull] = ACTIONS(6437), - [anon_sym_BSLASHACRfull] = ACTIONS(6437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6437), - [anon_sym_BSLASHacs] = ACTIONS(6437), - [anon_sym_BSLASHAcs] = ACTIONS(6437), - [anon_sym_BSLASHacsp] = ACTIONS(6437), - [anon_sym_BSLASHAcsp] = ACTIONS(6437), - [anon_sym_BSLASHacl] = ACTIONS(6437), - [anon_sym_BSLASHAcl] = ACTIONS(6437), - [anon_sym_BSLASHaclp] = ACTIONS(6437), - [anon_sym_BSLASHAclp] = ACTIONS(6437), - [anon_sym_BSLASHacf] = ACTIONS(6437), - [anon_sym_BSLASHAcf] = ACTIONS(6437), - [anon_sym_BSLASHacfp] = ACTIONS(6437), - [anon_sym_BSLASHAcfp] = ACTIONS(6437), - [anon_sym_BSLASHac] = ACTIONS(6437), - [anon_sym_BSLASHAc] = ACTIONS(6437), - [anon_sym_BSLASHacp] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6437), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6437), - [anon_sym_BSLASHcolor] = ACTIONS(6437), - [anon_sym_BSLASHcolorbox] = ACTIONS(6437), - [anon_sym_BSLASHtextcolor] = ACTIONS(6437), - [anon_sym_BSLASHpagecolor] = ACTIONS(6437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6437), - [anon_sym_BSLASHtext] = ACTIONS(6437), - [anon_sym_BSLASHintertext] = ACTIONS(6437), - [anon_sym_shortintertext] = ACTIONS(6437), - }, - [1288] = { - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddpart] = ACTIONS(205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHchapter] = ACTIONS(205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddchap] = ACTIONS(205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(207), - [anon_sym_BSLASHsection] = ACTIONS(205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddsec] = ACTIONS(205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHitem] = ACTIONS(205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [1289] = { - [sym_command_name] = ACTIONS(6041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6041), - [anon_sym_LBRACK] = ACTIONS(6043), - [anon_sym_RBRACK] = ACTIONS(6043), - [anon_sym_COMMA] = ACTIONS(6043), - [anon_sym_EQ] = ACTIONS(6043), - [anon_sym_LPAREN] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_BSLASHpart] = ACTIONS(6041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddpart] = ACTIONS(6041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6043), - [anon_sym_BSLASHchapter] = ACTIONS(6041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddchap] = ACTIONS(6041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsection] = ACTIONS(6041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddsec] = ACTIONS(6041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubsection] = ACTIONS(6041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHparagraph] = ACTIONS(6041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6043), - [anon_sym_BSLASHitem] = ACTIONS(6041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6043), - [anon_sym_LBRACE] = ACTIONS(6043), - [sym_word] = ACTIONS(6041), - [sym_placeholder] = ACTIONS(6043), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6043), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6041), - [anon_sym_GT] = ACTIONS(6041), - [anon_sym_BANG] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_SQUOTE] = ACTIONS(6041), - [anon_sym__] = ACTIONS(6043), - [anon_sym_CARET] = ACTIONS(6043), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6043), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6043), - [anon_sym_BSLASHbegin] = ACTIONS(6041), - [anon_sym_BSLASHtitle] = ACTIONS(6041), - [anon_sym_BSLASHauthor] = ACTIONS(6041), - [anon_sym_BSLASHusepackage] = ACTIONS(6041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6041), - [anon_sym_BSLASHinclude] = ACTIONS(6041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6041), - [anon_sym_BSLASHinput] = ACTIONS(6041), - [anon_sym_BSLASHsubfile] = ACTIONS(6041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6041), - [anon_sym_BSLASHbibliography] = ACTIONS(6041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6041), - [anon_sym_BSLASHincludesvg] = ACTIONS(6041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6041), - [anon_sym_BSLASHimport] = ACTIONS(6041), - [anon_sym_BSLASHsubimport] = ACTIONS(6041), - [anon_sym_BSLASHinputfrom] = ACTIONS(6041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6041), - [anon_sym_BSLASHincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHcaption] = ACTIONS(6041), - [anon_sym_BSLASHcite] = ACTIONS(6041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCite] = ACTIONS(6041), - [anon_sym_BSLASHnocite] = ACTIONS(6041), - [anon_sym_BSLASHcitet] = ACTIONS(6041), - [anon_sym_BSLASHcitep] = ACTIONS(6041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteauthor] = ACTIONS(6041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitetitle] = ACTIONS(6041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteyear] = ACTIONS(6041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitedate] = ACTIONS(6041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteurl] = ACTIONS(6041), - [anon_sym_BSLASHfullcite] = ACTIONS(6041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6041), - [anon_sym_BSLASHcitealt] = ACTIONS(6041), - [anon_sym_BSLASHcitealp] = ACTIONS(6041), - [anon_sym_BSLASHcitetext] = ACTIONS(6041), - [anon_sym_BSLASHparencite] = ACTIONS(6041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHParencite] = ACTIONS(6041), - [anon_sym_BSLASHfootcite] = ACTIONS(6041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6041), - [anon_sym_BSLASHtextcite] = ACTIONS(6041), - [anon_sym_BSLASHTextcite] = ACTIONS(6041), - [anon_sym_BSLASHsmartcite] = ACTIONS(6041), - [anon_sym_BSLASHSmartcite] = ACTIONS(6041), - [anon_sym_BSLASHsupercite] = ACTIONS(6041), - [anon_sym_BSLASHautocite] = ACTIONS(6041), - [anon_sym_BSLASHAutocite] = ACTIONS(6041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHvolcite] = ACTIONS(6041), - [anon_sym_BSLASHVolcite] = ACTIONS(6041), - [anon_sym_BSLASHpvolcite] = ACTIONS(6041), - [anon_sym_BSLASHPvolcite] = ACTIONS(6041), - [anon_sym_BSLASHfvolcite] = ACTIONS(6041), - [anon_sym_BSLASHftvolcite] = ACTIONS(6041), - [anon_sym_BSLASHsvolcite] = ACTIONS(6041), - [anon_sym_BSLASHSvolcite] = ACTIONS(6041), - [anon_sym_BSLASHtvolcite] = ACTIONS(6041), - [anon_sym_BSLASHTvolcite] = ACTIONS(6041), - [anon_sym_BSLASHavolcite] = ACTIONS(6041), - [anon_sym_BSLASHAvolcite] = ACTIONS(6041), - [anon_sym_BSLASHnotecite] = ACTIONS(6041), - [anon_sym_BSLASHNotecite] = ACTIONS(6041), - [anon_sym_BSLASHpnotecite] = ACTIONS(6041), - [anon_sym_BSLASHPnotecite] = ACTIONS(6041), - [anon_sym_BSLASHfnotecite] = ACTIONS(6041), - [anon_sym_BSLASHlabel] = ACTIONS(6041), - [anon_sym_BSLASHref] = ACTIONS(6041), - [anon_sym_BSLASHeqref] = ACTIONS(6041), - [anon_sym_BSLASHvref] = ACTIONS(6041), - [anon_sym_BSLASHVref] = ACTIONS(6041), - [anon_sym_BSLASHautoref] = ACTIONS(6041), - [anon_sym_BSLASHpageref] = ACTIONS(6041), - [anon_sym_BSLASHcref] = ACTIONS(6041), - [anon_sym_BSLASHCref] = ACTIONS(6041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnameCref] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHlabelcref] = ACTIONS(6041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCrefrange] = ACTIONS(6041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnewlabel] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6043), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHdef] = ACTIONS(6041), - [anon_sym_BSLASHlet] = ACTIONS(6041), - [anon_sym_BSLASHleft] = ACTIONS(6041), - [anon_sym_BSLASHbig] = ACTIONS(6041), - [anon_sym_BSLASHBig] = ACTIONS(6041), - [anon_sym_BSLASHbigg] = ACTIONS(6041), - [anon_sym_BSLASHBigg] = ACTIONS(6041), - [anon_sym_BSLASHbigl] = ACTIONS(6041), - [anon_sym_BSLASHBigl] = ACTIONS(6041), - [anon_sym_BSLASHbiggl] = ACTIONS(6041), - [anon_sym_BSLASHBiggl] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6041), - [anon_sym_BSLASHgls] = ACTIONS(6041), - [anon_sym_BSLASHGls] = ACTIONS(6041), - [anon_sym_BSLASHGLS] = ACTIONS(6041), - [anon_sym_BSLASHglspl] = ACTIONS(6041), - [anon_sym_BSLASHGlspl] = ACTIONS(6041), - [anon_sym_BSLASHGLSpl] = ACTIONS(6041), - [anon_sym_BSLASHglsdisp] = ACTIONS(6041), - [anon_sym_BSLASHglslink] = ACTIONS(6041), - [anon_sym_BSLASHglstext] = ACTIONS(6041), - [anon_sym_BSLASHGlstext] = ACTIONS(6041), - [anon_sym_BSLASHGLStext] = ACTIONS(6041), - [anon_sym_BSLASHglsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6041), - [anon_sym_BSLASHglsplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSplural] = ACTIONS(6041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHglsname] = ACTIONS(6041), - [anon_sym_BSLASHGlsname] = ACTIONS(6041), - [anon_sym_BSLASHGLSname] = ACTIONS(6041), - [anon_sym_BSLASHglssymbol] = ACTIONS(6041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6041), - [anon_sym_BSLASHglsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6041), - [anon_sym_BSLASHglsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6041), - [anon_sym_BSLASHglsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6041), - [anon_sym_BSLASHglsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6041), - [anon_sym_BSLASHglsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6041), - [anon_sym_BSLASHnewacronym] = ACTIONS(6041), - [anon_sym_BSLASHacrshort] = ACTIONS(6041), - [anon_sym_BSLASHAcrshort] = ACTIONS(6041), - [anon_sym_BSLASHACRshort] = ACTIONS(6041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6041), - [anon_sym_BSLASHacrlong] = ACTIONS(6041), - [anon_sym_BSLASHAcrlong] = ACTIONS(6041), - [anon_sym_BSLASHACRlong] = ACTIONS(6041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6041), - [anon_sym_BSLASHacrfull] = ACTIONS(6041), - [anon_sym_BSLASHAcrfull] = ACTIONS(6041), - [anon_sym_BSLASHACRfull] = ACTIONS(6041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6041), - [anon_sym_BSLASHacs] = ACTIONS(6041), - [anon_sym_BSLASHAcs] = ACTIONS(6041), - [anon_sym_BSLASHacsp] = ACTIONS(6041), - [anon_sym_BSLASHAcsp] = ACTIONS(6041), - [anon_sym_BSLASHacl] = ACTIONS(6041), - [anon_sym_BSLASHAcl] = ACTIONS(6041), - [anon_sym_BSLASHaclp] = ACTIONS(6041), - [anon_sym_BSLASHAclp] = ACTIONS(6041), - [anon_sym_BSLASHacf] = ACTIONS(6041), - [anon_sym_BSLASHAcf] = ACTIONS(6041), - [anon_sym_BSLASHacfp] = ACTIONS(6041), - [anon_sym_BSLASHAcfp] = ACTIONS(6041), - [anon_sym_BSLASHac] = ACTIONS(6041), - [anon_sym_BSLASHAc] = ACTIONS(6041), - [anon_sym_BSLASHacp] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6041), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6041), - [anon_sym_BSLASHcolor] = ACTIONS(6041), - [anon_sym_BSLASHcolorbox] = ACTIONS(6041), - [anon_sym_BSLASHtextcolor] = ACTIONS(6041), - [anon_sym_BSLASHpagecolor] = ACTIONS(6041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6041), - [anon_sym_BSLASHtext] = ACTIONS(6041), - [anon_sym_BSLASHintertext] = ACTIONS(6041), - [anon_sym_shortintertext] = ACTIONS(6041), - }, - [1290] = { - [sym_command_name] = ACTIONS(6037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6037), - [anon_sym_LBRACK] = ACTIONS(6039), - [anon_sym_RBRACK] = ACTIONS(6039), - [anon_sym_COMMA] = ACTIONS(6039), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_LPAREN] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_BSLASHpart] = ACTIONS(6037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddpart] = ACTIONS(6037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6039), - [anon_sym_BSLASHchapter] = ACTIONS(6037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddchap] = ACTIONS(6037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsection] = ACTIONS(6037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddsec] = ACTIONS(6037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubsection] = ACTIONS(6037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHparagraph] = ACTIONS(6037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6039), - [anon_sym_BSLASHitem] = ACTIONS(6037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6039), - [anon_sym_LBRACE] = ACTIONS(6039), - [sym_word] = ACTIONS(6037), - [sym_placeholder] = ACTIONS(6039), - [anon_sym_PLUS] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [anon_sym_STAR] = ACTIONS(6039), - [anon_sym_SLASH] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6037), - [anon_sym_GT] = ACTIONS(6037), - [anon_sym_BANG] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_COLON] = ACTIONS(6037), - [anon_sym_SQUOTE] = ACTIONS(6037), - [anon_sym__] = ACTIONS(6039), - [anon_sym_CARET] = ACTIONS(6039), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6039), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6039), - [anon_sym_BSLASHbegin] = ACTIONS(6037), - [anon_sym_BSLASHtitle] = ACTIONS(6037), - [anon_sym_BSLASHauthor] = ACTIONS(6037), - [anon_sym_BSLASHusepackage] = ACTIONS(6037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6037), - [anon_sym_BSLASHinclude] = ACTIONS(6037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6037), - [anon_sym_BSLASHinput] = ACTIONS(6037), - [anon_sym_BSLASHsubfile] = ACTIONS(6037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6037), - [anon_sym_BSLASHbibliography] = ACTIONS(6037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6037), - [anon_sym_BSLASHincludesvg] = ACTIONS(6037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6037), - [anon_sym_BSLASHimport] = ACTIONS(6037), - [anon_sym_BSLASHsubimport] = ACTIONS(6037), - [anon_sym_BSLASHinputfrom] = ACTIONS(6037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6037), - [anon_sym_BSLASHincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHcaption] = ACTIONS(6037), - [anon_sym_BSLASHcite] = ACTIONS(6037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCite] = ACTIONS(6037), - [anon_sym_BSLASHnocite] = ACTIONS(6037), - [anon_sym_BSLASHcitet] = ACTIONS(6037), - [anon_sym_BSLASHcitep] = ACTIONS(6037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteauthor] = ACTIONS(6037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitetitle] = ACTIONS(6037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteyear] = ACTIONS(6037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitedate] = ACTIONS(6037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteurl] = ACTIONS(6037), - [anon_sym_BSLASHfullcite] = ACTIONS(6037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6037), - [anon_sym_BSLASHcitealt] = ACTIONS(6037), - [anon_sym_BSLASHcitealp] = ACTIONS(6037), - [anon_sym_BSLASHcitetext] = ACTIONS(6037), - [anon_sym_BSLASHparencite] = ACTIONS(6037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHParencite] = ACTIONS(6037), - [anon_sym_BSLASHfootcite] = ACTIONS(6037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6037), - [anon_sym_BSLASHtextcite] = ACTIONS(6037), - [anon_sym_BSLASHTextcite] = ACTIONS(6037), - [anon_sym_BSLASHsmartcite] = ACTIONS(6037), - [anon_sym_BSLASHSmartcite] = ACTIONS(6037), - [anon_sym_BSLASHsupercite] = ACTIONS(6037), - [anon_sym_BSLASHautocite] = ACTIONS(6037), - [anon_sym_BSLASHAutocite] = ACTIONS(6037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHvolcite] = ACTIONS(6037), - [anon_sym_BSLASHVolcite] = ACTIONS(6037), - [anon_sym_BSLASHpvolcite] = ACTIONS(6037), - [anon_sym_BSLASHPvolcite] = ACTIONS(6037), - [anon_sym_BSLASHfvolcite] = ACTIONS(6037), - [anon_sym_BSLASHftvolcite] = ACTIONS(6037), - [anon_sym_BSLASHsvolcite] = ACTIONS(6037), - [anon_sym_BSLASHSvolcite] = ACTIONS(6037), - [anon_sym_BSLASHtvolcite] = ACTIONS(6037), - [anon_sym_BSLASHTvolcite] = ACTIONS(6037), - [anon_sym_BSLASHavolcite] = ACTIONS(6037), - [anon_sym_BSLASHAvolcite] = ACTIONS(6037), - [anon_sym_BSLASHnotecite] = ACTIONS(6037), - [anon_sym_BSLASHNotecite] = ACTIONS(6037), - [anon_sym_BSLASHpnotecite] = ACTIONS(6037), - [anon_sym_BSLASHPnotecite] = ACTIONS(6037), - [anon_sym_BSLASHfnotecite] = ACTIONS(6037), - [anon_sym_BSLASHlabel] = ACTIONS(6037), - [anon_sym_BSLASHref] = ACTIONS(6037), - [anon_sym_BSLASHeqref] = ACTIONS(6037), - [anon_sym_BSLASHvref] = ACTIONS(6037), - [anon_sym_BSLASHVref] = ACTIONS(6037), - [anon_sym_BSLASHautoref] = ACTIONS(6037), - [anon_sym_BSLASHpageref] = ACTIONS(6037), - [anon_sym_BSLASHcref] = ACTIONS(6037), - [anon_sym_BSLASHCref] = ACTIONS(6037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnameCref] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHlabelcref] = ACTIONS(6037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCrefrange] = ACTIONS(6037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnewlabel] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6039), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHdef] = ACTIONS(6037), - [anon_sym_BSLASHlet] = ACTIONS(6037), - [anon_sym_BSLASHleft] = ACTIONS(6037), - [anon_sym_BSLASHbig] = ACTIONS(6037), - [anon_sym_BSLASHBig] = ACTIONS(6037), - [anon_sym_BSLASHbigg] = ACTIONS(6037), - [anon_sym_BSLASHBigg] = ACTIONS(6037), - [anon_sym_BSLASHbigl] = ACTIONS(6037), - [anon_sym_BSLASHBigl] = ACTIONS(6037), - [anon_sym_BSLASHbiggl] = ACTIONS(6037), - [anon_sym_BSLASHBiggl] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6037), - [anon_sym_BSLASHgls] = ACTIONS(6037), - [anon_sym_BSLASHGls] = ACTIONS(6037), - [anon_sym_BSLASHGLS] = ACTIONS(6037), - [anon_sym_BSLASHglspl] = ACTIONS(6037), - [anon_sym_BSLASHGlspl] = ACTIONS(6037), - [anon_sym_BSLASHGLSpl] = ACTIONS(6037), - [anon_sym_BSLASHglsdisp] = ACTIONS(6037), - [anon_sym_BSLASHglslink] = ACTIONS(6037), - [anon_sym_BSLASHglstext] = ACTIONS(6037), - [anon_sym_BSLASHGlstext] = ACTIONS(6037), - [anon_sym_BSLASHGLStext] = ACTIONS(6037), - [anon_sym_BSLASHglsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6037), - [anon_sym_BSLASHglsplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSplural] = ACTIONS(6037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHglsname] = ACTIONS(6037), - [anon_sym_BSLASHGlsname] = ACTIONS(6037), - [anon_sym_BSLASHGLSname] = ACTIONS(6037), - [anon_sym_BSLASHglssymbol] = ACTIONS(6037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6037), - [anon_sym_BSLASHglsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6037), - [anon_sym_BSLASHglsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6037), - [anon_sym_BSLASHglsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6037), - [anon_sym_BSLASHglsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6037), - [anon_sym_BSLASHglsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6037), - [anon_sym_BSLASHnewacronym] = ACTIONS(6037), - [anon_sym_BSLASHacrshort] = ACTIONS(6037), - [anon_sym_BSLASHAcrshort] = ACTIONS(6037), - [anon_sym_BSLASHACRshort] = ACTIONS(6037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6037), - [anon_sym_BSLASHacrlong] = ACTIONS(6037), - [anon_sym_BSLASHAcrlong] = ACTIONS(6037), - [anon_sym_BSLASHACRlong] = ACTIONS(6037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6037), - [anon_sym_BSLASHacrfull] = ACTIONS(6037), - [anon_sym_BSLASHAcrfull] = ACTIONS(6037), - [anon_sym_BSLASHACRfull] = ACTIONS(6037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6037), - [anon_sym_BSLASHacs] = ACTIONS(6037), - [anon_sym_BSLASHAcs] = ACTIONS(6037), - [anon_sym_BSLASHacsp] = ACTIONS(6037), - [anon_sym_BSLASHAcsp] = ACTIONS(6037), - [anon_sym_BSLASHacl] = ACTIONS(6037), - [anon_sym_BSLASHAcl] = ACTIONS(6037), - [anon_sym_BSLASHaclp] = ACTIONS(6037), - [anon_sym_BSLASHAclp] = ACTIONS(6037), - [anon_sym_BSLASHacf] = ACTIONS(6037), - [anon_sym_BSLASHAcf] = ACTIONS(6037), - [anon_sym_BSLASHacfp] = ACTIONS(6037), - [anon_sym_BSLASHAcfp] = ACTIONS(6037), - [anon_sym_BSLASHac] = ACTIONS(6037), - [anon_sym_BSLASHAc] = ACTIONS(6037), - [anon_sym_BSLASHacp] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6037), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6037), - [anon_sym_BSLASHcolor] = ACTIONS(6037), - [anon_sym_BSLASHcolorbox] = ACTIONS(6037), - [anon_sym_BSLASHtextcolor] = ACTIONS(6037), - [anon_sym_BSLASHpagecolor] = ACTIONS(6037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6037), - [anon_sym_BSLASHtext] = ACTIONS(6037), - [anon_sym_BSLASHintertext] = ACTIONS(6037), - [anon_sym_shortintertext] = ACTIONS(6037), - }, - [1291] = { - [sym_command_name] = ACTIONS(6161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_EQ] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_BSLASHpart] = ACTIONS(6161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddpart] = ACTIONS(6161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6163), - [anon_sym_BSLASHchapter] = ACTIONS(6161), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddchap] = ACTIONS(6161), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsection] = ACTIONS(6161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddsec] = ACTIONS(6161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubsection] = ACTIONS(6161), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6161), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHparagraph] = ACTIONS(6161), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6161), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6163), - [anon_sym_BSLASHitem] = ACTIONS(6161), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6163), - [anon_sym_LBRACE] = ACTIONS(6163), - [sym_word] = ACTIONS(6161), - [sym_placeholder] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6163), - [anon_sym_DASH] = ACTIONS(6163), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_COLON] = ACTIONS(6161), - [anon_sym_SQUOTE] = ACTIONS(6161), - [anon_sym__] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6163), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6163), - [anon_sym_DOLLAR] = ACTIONS(6161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6163), - [anon_sym_BSLASHbegin] = ACTIONS(6161), - [anon_sym_BSLASHtitle] = ACTIONS(6161), - [anon_sym_BSLASHauthor] = ACTIONS(6161), - [anon_sym_BSLASHusepackage] = ACTIONS(6161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6161), - [anon_sym_BSLASHinclude] = ACTIONS(6161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6161), - [anon_sym_BSLASHinput] = ACTIONS(6161), - [anon_sym_BSLASHsubfile] = ACTIONS(6161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6161), - [anon_sym_BSLASHbibliography] = ACTIONS(6161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6161), - [anon_sym_BSLASHincludesvg] = ACTIONS(6161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6161), - [anon_sym_BSLASHimport] = ACTIONS(6161), - [anon_sym_BSLASHsubimport] = ACTIONS(6161), - [anon_sym_BSLASHinputfrom] = ACTIONS(6161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6161), - [anon_sym_BSLASHincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHcaption] = ACTIONS(6161), - [anon_sym_BSLASHcite] = ACTIONS(6161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCite] = ACTIONS(6161), - [anon_sym_BSLASHnocite] = ACTIONS(6161), - [anon_sym_BSLASHcitet] = ACTIONS(6161), - [anon_sym_BSLASHcitep] = ACTIONS(6161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteauthor] = ACTIONS(6161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitetitle] = ACTIONS(6161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteyear] = ACTIONS(6161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitedate] = ACTIONS(6161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteurl] = ACTIONS(6161), - [anon_sym_BSLASHfullcite] = ACTIONS(6161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6161), - [anon_sym_BSLASHcitealt] = ACTIONS(6161), - [anon_sym_BSLASHcitealp] = ACTIONS(6161), - [anon_sym_BSLASHcitetext] = ACTIONS(6161), - [anon_sym_BSLASHparencite] = ACTIONS(6161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHParencite] = ACTIONS(6161), - [anon_sym_BSLASHfootcite] = ACTIONS(6161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6161), - [anon_sym_BSLASHtextcite] = ACTIONS(6161), - [anon_sym_BSLASHTextcite] = ACTIONS(6161), - [anon_sym_BSLASHsmartcite] = ACTIONS(6161), - [anon_sym_BSLASHSmartcite] = ACTIONS(6161), - [anon_sym_BSLASHsupercite] = ACTIONS(6161), - [anon_sym_BSLASHautocite] = ACTIONS(6161), - [anon_sym_BSLASHAutocite] = ACTIONS(6161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHvolcite] = ACTIONS(6161), - [anon_sym_BSLASHVolcite] = ACTIONS(6161), - [anon_sym_BSLASHpvolcite] = ACTIONS(6161), - [anon_sym_BSLASHPvolcite] = ACTIONS(6161), - [anon_sym_BSLASHfvolcite] = ACTIONS(6161), - [anon_sym_BSLASHftvolcite] = ACTIONS(6161), - [anon_sym_BSLASHsvolcite] = ACTIONS(6161), - [anon_sym_BSLASHSvolcite] = ACTIONS(6161), - [anon_sym_BSLASHtvolcite] = ACTIONS(6161), - [anon_sym_BSLASHTvolcite] = ACTIONS(6161), - [anon_sym_BSLASHavolcite] = ACTIONS(6161), - [anon_sym_BSLASHAvolcite] = ACTIONS(6161), - [anon_sym_BSLASHnotecite] = ACTIONS(6161), - [anon_sym_BSLASHNotecite] = ACTIONS(6161), - [anon_sym_BSLASHpnotecite] = ACTIONS(6161), - [anon_sym_BSLASHPnotecite] = ACTIONS(6161), - [anon_sym_BSLASHfnotecite] = ACTIONS(6161), - [anon_sym_BSLASHlabel] = ACTIONS(6161), - [anon_sym_BSLASHref] = ACTIONS(6161), - [anon_sym_BSLASHeqref] = ACTIONS(6161), - [anon_sym_BSLASHvref] = ACTIONS(6161), - [anon_sym_BSLASHVref] = ACTIONS(6161), - [anon_sym_BSLASHautoref] = ACTIONS(6161), - [anon_sym_BSLASHpageref] = ACTIONS(6161), - [anon_sym_BSLASHcref] = ACTIONS(6161), - [anon_sym_BSLASHCref] = ACTIONS(6161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnameCref] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHlabelcref] = ACTIONS(6161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCrefrange] = ACTIONS(6161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnewlabel] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6163), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHdef] = ACTIONS(6161), - [anon_sym_BSLASHlet] = ACTIONS(6161), - [anon_sym_BSLASHleft] = ACTIONS(6161), - [anon_sym_BSLASHbig] = ACTIONS(6161), - [anon_sym_BSLASHBig] = ACTIONS(6161), - [anon_sym_BSLASHbigg] = ACTIONS(6161), - [anon_sym_BSLASHBigg] = ACTIONS(6161), - [anon_sym_BSLASHbigl] = ACTIONS(6161), - [anon_sym_BSLASHBigl] = ACTIONS(6161), - [anon_sym_BSLASHbiggl] = ACTIONS(6161), - [anon_sym_BSLASHBiggl] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6161), - [anon_sym_BSLASHgls] = ACTIONS(6161), - [anon_sym_BSLASHGls] = ACTIONS(6161), - [anon_sym_BSLASHGLS] = ACTIONS(6161), - [anon_sym_BSLASHglspl] = ACTIONS(6161), - [anon_sym_BSLASHGlspl] = ACTIONS(6161), - [anon_sym_BSLASHGLSpl] = ACTIONS(6161), - [anon_sym_BSLASHglsdisp] = ACTIONS(6161), - [anon_sym_BSLASHglslink] = ACTIONS(6161), - [anon_sym_BSLASHglstext] = ACTIONS(6161), - [anon_sym_BSLASHGlstext] = ACTIONS(6161), - [anon_sym_BSLASHGLStext] = ACTIONS(6161), - [anon_sym_BSLASHglsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6161), - [anon_sym_BSLASHglsplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSplural] = ACTIONS(6161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHglsname] = ACTIONS(6161), - [anon_sym_BSLASHGlsname] = ACTIONS(6161), - [anon_sym_BSLASHGLSname] = ACTIONS(6161), - [anon_sym_BSLASHglssymbol] = ACTIONS(6161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6161), - [anon_sym_BSLASHglsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6161), - [anon_sym_BSLASHglsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6161), - [anon_sym_BSLASHglsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6161), - [anon_sym_BSLASHglsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6161), - [anon_sym_BSLASHglsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6161), - [anon_sym_BSLASHnewacronym] = ACTIONS(6161), - [anon_sym_BSLASHacrshort] = ACTIONS(6161), - [anon_sym_BSLASHAcrshort] = ACTIONS(6161), - [anon_sym_BSLASHACRshort] = ACTIONS(6161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6161), - [anon_sym_BSLASHacrlong] = ACTIONS(6161), - [anon_sym_BSLASHAcrlong] = ACTIONS(6161), - [anon_sym_BSLASHACRlong] = ACTIONS(6161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6161), - [anon_sym_BSLASHacrfull] = ACTIONS(6161), - [anon_sym_BSLASHAcrfull] = ACTIONS(6161), - [anon_sym_BSLASHACRfull] = ACTIONS(6161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6161), - [anon_sym_BSLASHacs] = ACTIONS(6161), - [anon_sym_BSLASHAcs] = ACTIONS(6161), - [anon_sym_BSLASHacsp] = ACTIONS(6161), - [anon_sym_BSLASHAcsp] = ACTIONS(6161), - [anon_sym_BSLASHacl] = ACTIONS(6161), - [anon_sym_BSLASHAcl] = ACTIONS(6161), - [anon_sym_BSLASHaclp] = ACTIONS(6161), - [anon_sym_BSLASHAclp] = ACTIONS(6161), - [anon_sym_BSLASHacf] = ACTIONS(6161), - [anon_sym_BSLASHAcf] = ACTIONS(6161), - [anon_sym_BSLASHacfp] = ACTIONS(6161), - [anon_sym_BSLASHAcfp] = ACTIONS(6161), - [anon_sym_BSLASHac] = ACTIONS(6161), - [anon_sym_BSLASHAc] = ACTIONS(6161), - [anon_sym_BSLASHacp] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6161), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6161), - [anon_sym_BSLASHcolor] = ACTIONS(6161), - [anon_sym_BSLASHcolorbox] = ACTIONS(6161), - [anon_sym_BSLASHtextcolor] = ACTIONS(6161), - [anon_sym_BSLASHpagecolor] = ACTIONS(6161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6161), - [anon_sym_BSLASHtext] = ACTIONS(6161), - [anon_sym_BSLASHintertext] = ACTIONS(6161), - [anon_sym_shortintertext] = ACTIONS(6161), - }, - [1292] = { - [sym_command_name] = ACTIONS(6245), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6247), - [anon_sym_RBRACK] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(6247), - [anon_sym_EQ] = ACTIONS(6247), - [anon_sym_LPAREN] = ACTIONS(6247), - [anon_sym_RPAREN] = ACTIONS(6247), - [anon_sym_BSLASHpart] = ACTIONS(6245), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddpart] = ACTIONS(6245), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6247), - [anon_sym_BSLASHchapter] = ACTIONS(6245), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddchap] = ACTIONS(6245), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsection] = ACTIONS(6245), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddsec] = ACTIONS(6245), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubsection] = ACTIONS(6245), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6245), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHparagraph] = ACTIONS(6245), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6245), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6247), - [anon_sym_BSLASHitem] = ACTIONS(6245), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6247), - [sym_word] = ACTIONS(6245), - [sym_placeholder] = ACTIONS(6247), - [anon_sym_PLUS] = ACTIONS(6247), - [anon_sym_DASH] = ACTIONS(6247), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_LT] = ACTIONS(6245), - [anon_sym_GT] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6245), - [anon_sym_PIPE] = ACTIONS(6245), - [anon_sym_COLON] = ACTIONS(6245), - [anon_sym_SQUOTE] = ACTIONS(6245), - [anon_sym__] = ACTIONS(6247), - [anon_sym_CARET] = ACTIONS(6247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6247), - [anon_sym_DOLLAR] = ACTIONS(6245), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), - [anon_sym_BSLASHbegin] = ACTIONS(6245), - [anon_sym_BSLASHtitle] = ACTIONS(6245), - [anon_sym_BSLASHauthor] = ACTIONS(6245), - [anon_sym_BSLASHusepackage] = ACTIONS(6245), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), - [anon_sym_BSLASHinclude] = ACTIONS(6245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), - [anon_sym_BSLASHinput] = ACTIONS(6245), - [anon_sym_BSLASHsubfile] = ACTIONS(6245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), - [anon_sym_BSLASHbibliography] = ACTIONS(6245), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), - [anon_sym_BSLASHincludesvg] = ACTIONS(6245), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), - [anon_sym_BSLASHimport] = ACTIONS(6245), - [anon_sym_BSLASHsubimport] = ACTIONS(6245), - [anon_sym_BSLASHinputfrom] = ACTIONS(6245), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), - [anon_sym_BSLASHincludefrom] = ACTIONS(6245), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), - [anon_sym_BSLASHcaption] = ACTIONS(6245), - [anon_sym_BSLASHcite] = ACTIONS(6245), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCite] = ACTIONS(6245), - [anon_sym_BSLASHnocite] = ACTIONS(6245), - [anon_sym_BSLASHcitet] = ACTIONS(6245), - [anon_sym_BSLASHcitep] = ACTIONS(6245), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteauthor] = ACTIONS(6245), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitetitle] = ACTIONS(6245), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteyear] = ACTIONS(6245), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitedate] = ACTIONS(6245), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteurl] = ACTIONS(6245), - [anon_sym_BSLASHfullcite] = ACTIONS(6245), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), - [anon_sym_BSLASHcitealt] = ACTIONS(6245), - [anon_sym_BSLASHcitealp] = ACTIONS(6245), - [anon_sym_BSLASHcitetext] = ACTIONS(6245), - [anon_sym_BSLASHparencite] = ACTIONS(6245), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHParencite] = ACTIONS(6245), - [anon_sym_BSLASHfootcite] = ACTIONS(6245), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), - [anon_sym_BSLASHtextcite] = ACTIONS(6245), - [anon_sym_BSLASHTextcite] = ACTIONS(6245), - [anon_sym_BSLASHsmartcite] = ACTIONS(6245), - [anon_sym_BSLASHSmartcite] = ACTIONS(6245), - [anon_sym_BSLASHsupercite] = ACTIONS(6245), - [anon_sym_BSLASHautocite] = ACTIONS(6245), - [anon_sym_BSLASHAutocite] = ACTIONS(6245), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHvolcite] = ACTIONS(6245), - [anon_sym_BSLASHVolcite] = ACTIONS(6245), - [anon_sym_BSLASHpvolcite] = ACTIONS(6245), - [anon_sym_BSLASHPvolcite] = ACTIONS(6245), - [anon_sym_BSLASHfvolcite] = ACTIONS(6245), - [anon_sym_BSLASHftvolcite] = ACTIONS(6245), - [anon_sym_BSLASHsvolcite] = ACTIONS(6245), - [anon_sym_BSLASHSvolcite] = ACTIONS(6245), - [anon_sym_BSLASHtvolcite] = ACTIONS(6245), - [anon_sym_BSLASHTvolcite] = ACTIONS(6245), - [anon_sym_BSLASHavolcite] = ACTIONS(6245), - [anon_sym_BSLASHAvolcite] = ACTIONS(6245), - [anon_sym_BSLASHnotecite] = ACTIONS(6245), - [anon_sym_BSLASHNotecite] = ACTIONS(6245), - [anon_sym_BSLASHpnotecite] = ACTIONS(6245), - [anon_sym_BSLASHPnotecite] = ACTIONS(6245), - [anon_sym_BSLASHfnotecite] = ACTIONS(6245), - [anon_sym_BSLASHlabel] = ACTIONS(6245), - [anon_sym_BSLASHref] = ACTIONS(6245), - [anon_sym_BSLASHeqref] = ACTIONS(6245), - [anon_sym_BSLASHvref] = ACTIONS(6245), - [anon_sym_BSLASHVref] = ACTIONS(6245), - [anon_sym_BSLASHautoref] = ACTIONS(6245), - [anon_sym_BSLASHpageref] = ACTIONS(6245), - [anon_sym_BSLASHcref] = ACTIONS(6245), - [anon_sym_BSLASHCref] = ACTIONS(6245), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), - [anon_sym_BSLASHnamecref] = ACTIONS(6245), - [anon_sym_BSLASHnameCref] = ACTIONS(6245), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), - [anon_sym_BSLASHlabelcref] = ACTIONS(6245), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), - [anon_sym_BSLASHcrefrange] = ACTIONS(6245), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCrefrange] = ACTIONS(6245), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), - [anon_sym_BSLASHnewlabel] = ACTIONS(6245), - [anon_sym_BSLASHnewcommand] = ACTIONS(6245), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHdef] = ACTIONS(6245), - [anon_sym_BSLASHlet] = ACTIONS(6245), - [anon_sym_BSLASHleft] = ACTIONS(6245), - [anon_sym_BSLASHbig] = ACTIONS(6245), - [anon_sym_BSLASHBig] = ACTIONS(6245), - [anon_sym_BSLASHbigg] = ACTIONS(6245), - [anon_sym_BSLASHBigg] = ACTIONS(6245), - [anon_sym_BSLASHbigl] = ACTIONS(6245), - [anon_sym_BSLASHBigl] = ACTIONS(6245), - [anon_sym_BSLASHbiggl] = ACTIONS(6245), - [anon_sym_BSLASHBiggl] = ACTIONS(6245), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6245), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), - [anon_sym_BSLASHgls] = ACTIONS(6245), - [anon_sym_BSLASHGls] = ACTIONS(6245), - [anon_sym_BSLASHGLS] = ACTIONS(6245), - [anon_sym_BSLASHglspl] = ACTIONS(6245), - [anon_sym_BSLASHGlspl] = ACTIONS(6245), - [anon_sym_BSLASHGLSpl] = ACTIONS(6245), - [anon_sym_BSLASHglsdisp] = ACTIONS(6245), - [anon_sym_BSLASHglslink] = ACTIONS(6245), - [anon_sym_BSLASHglstext] = ACTIONS(6245), - [anon_sym_BSLASHGlstext] = ACTIONS(6245), - [anon_sym_BSLASHGLStext] = ACTIONS(6245), - [anon_sym_BSLASHglsfirst] = ACTIONS(6245), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), - [anon_sym_BSLASHglsplural] = ACTIONS(6245), - [anon_sym_BSLASHGlsplural] = ACTIONS(6245), - [anon_sym_BSLASHGLSplural] = ACTIONS(6245), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHglsname] = ACTIONS(6245), - [anon_sym_BSLASHGlsname] = ACTIONS(6245), - [anon_sym_BSLASHGLSname] = ACTIONS(6245), - [anon_sym_BSLASHglssymbol] = ACTIONS(6245), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), - [anon_sym_BSLASHglsdesc] = ACTIONS(6245), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), - [anon_sym_BSLASHglsuseri] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), - [anon_sym_BSLASHglsuserii] = ACTIONS(6245), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), - [anon_sym_BSLASHglsuserv] = ACTIONS(6245), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), - [anon_sym_BSLASHglsuservi] = ACTIONS(6245), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), - [anon_sym_BSLASHnewacronym] = ACTIONS(6245), - [anon_sym_BSLASHacrshort] = ACTIONS(6245), - [anon_sym_BSLASHAcrshort] = ACTIONS(6245), - [anon_sym_BSLASHACRshort] = ACTIONS(6245), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), - [anon_sym_BSLASHacrlong] = ACTIONS(6245), - [anon_sym_BSLASHAcrlong] = ACTIONS(6245), - [anon_sym_BSLASHACRlong] = ACTIONS(6245), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), - [anon_sym_BSLASHacrfull] = ACTIONS(6245), - [anon_sym_BSLASHAcrfull] = ACTIONS(6245), - [anon_sym_BSLASHACRfull] = ACTIONS(6245), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), - [anon_sym_BSLASHacs] = ACTIONS(6245), - [anon_sym_BSLASHAcs] = ACTIONS(6245), - [anon_sym_BSLASHacsp] = ACTIONS(6245), - [anon_sym_BSLASHAcsp] = ACTIONS(6245), - [anon_sym_BSLASHacl] = ACTIONS(6245), - [anon_sym_BSLASHAcl] = ACTIONS(6245), - [anon_sym_BSLASHaclp] = ACTIONS(6245), - [anon_sym_BSLASHAclp] = ACTIONS(6245), - [anon_sym_BSLASHacf] = ACTIONS(6245), - [anon_sym_BSLASHAcf] = ACTIONS(6245), - [anon_sym_BSLASHacfp] = ACTIONS(6245), - [anon_sym_BSLASHAcfp] = ACTIONS(6245), - [anon_sym_BSLASHac] = ACTIONS(6245), - [anon_sym_BSLASHAc] = ACTIONS(6245), - [anon_sym_BSLASHacp] = ACTIONS(6245), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), - [anon_sym_BSLASHcolor] = ACTIONS(6245), - [anon_sym_BSLASHcolorbox] = ACTIONS(6245), - [anon_sym_BSLASHtextcolor] = ACTIONS(6245), - [anon_sym_BSLASHpagecolor] = ACTIONS(6245), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), - [anon_sym_BSLASHtext] = ACTIONS(6245), - [anon_sym_BSLASHintertext] = ACTIONS(6245), - [anon_sym_shortintertext] = ACTIONS(6245), - }, - [1293] = { - [sym_command_name] = ACTIONS(6253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6253), - [anon_sym_LBRACK] = ACTIONS(6255), - [anon_sym_RBRACK] = ACTIONS(6255), - [anon_sym_COMMA] = ACTIONS(6255), - [anon_sym_EQ] = ACTIONS(6255), - [anon_sym_LPAREN] = ACTIONS(6255), - [anon_sym_RPAREN] = ACTIONS(6255), - [anon_sym_BSLASHpart] = ACTIONS(6253), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddpart] = ACTIONS(6253), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6255), - [anon_sym_BSLASHchapter] = ACTIONS(6253), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddchap] = ACTIONS(6253), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsection] = ACTIONS(6253), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddsec] = ACTIONS(6253), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubsection] = ACTIONS(6253), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6253), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHparagraph] = ACTIONS(6253), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6253), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6255), - [anon_sym_BSLASHitem] = ACTIONS(6253), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6255), - [anon_sym_LBRACE] = ACTIONS(6255), - [sym_word] = ACTIONS(6253), - [sym_placeholder] = ACTIONS(6255), - [anon_sym_PLUS] = ACTIONS(6255), - [anon_sym_DASH] = ACTIONS(6255), - [anon_sym_STAR] = ACTIONS(6255), - [anon_sym_SLASH] = ACTIONS(6255), - [anon_sym_LT] = ACTIONS(6253), - [anon_sym_GT] = ACTIONS(6253), - [anon_sym_BANG] = ACTIONS(6253), - [anon_sym_PIPE] = ACTIONS(6253), - [anon_sym_COLON] = ACTIONS(6253), - [anon_sym_SQUOTE] = ACTIONS(6253), - [anon_sym__] = ACTIONS(6255), - [anon_sym_CARET] = ACTIONS(6255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6255), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6255), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6255), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6255), - [anon_sym_BSLASHbegin] = ACTIONS(6253), - [anon_sym_BSLASHtitle] = ACTIONS(6253), - [anon_sym_BSLASHauthor] = ACTIONS(6253), - [anon_sym_BSLASHusepackage] = ACTIONS(6253), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), - [anon_sym_BSLASHinclude] = ACTIONS(6253), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), - [anon_sym_BSLASHinput] = ACTIONS(6253), - [anon_sym_BSLASHsubfile] = ACTIONS(6253), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), - [anon_sym_BSLASHbibliography] = ACTIONS(6253), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), - [anon_sym_BSLASHincludesvg] = ACTIONS(6253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), - [anon_sym_BSLASHimport] = ACTIONS(6253), - [anon_sym_BSLASHsubimport] = ACTIONS(6253), - [anon_sym_BSLASHinputfrom] = ACTIONS(6253), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), - [anon_sym_BSLASHincludefrom] = ACTIONS(6253), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), - [anon_sym_BSLASHcaption] = ACTIONS(6253), - [anon_sym_BSLASHcite] = ACTIONS(6253), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCite] = ACTIONS(6253), - [anon_sym_BSLASHnocite] = ACTIONS(6253), - [anon_sym_BSLASHcitet] = ACTIONS(6253), - [anon_sym_BSLASHcitep] = ACTIONS(6253), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteauthor] = ACTIONS(6253), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitetitle] = ACTIONS(6253), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteyear] = ACTIONS(6253), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitedate] = ACTIONS(6253), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteurl] = ACTIONS(6253), - [anon_sym_BSLASHfullcite] = ACTIONS(6253), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), - [anon_sym_BSLASHcitealt] = ACTIONS(6253), - [anon_sym_BSLASHcitealp] = ACTIONS(6253), - [anon_sym_BSLASHcitetext] = ACTIONS(6253), - [anon_sym_BSLASHparencite] = ACTIONS(6253), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHParencite] = ACTIONS(6253), - [anon_sym_BSLASHfootcite] = ACTIONS(6253), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), - [anon_sym_BSLASHtextcite] = ACTIONS(6253), - [anon_sym_BSLASHTextcite] = ACTIONS(6253), - [anon_sym_BSLASHsmartcite] = ACTIONS(6253), - [anon_sym_BSLASHSmartcite] = ACTIONS(6253), - [anon_sym_BSLASHsupercite] = ACTIONS(6253), - [anon_sym_BSLASHautocite] = ACTIONS(6253), - [anon_sym_BSLASHAutocite] = ACTIONS(6253), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHvolcite] = ACTIONS(6253), - [anon_sym_BSLASHVolcite] = ACTIONS(6253), - [anon_sym_BSLASHpvolcite] = ACTIONS(6253), - [anon_sym_BSLASHPvolcite] = ACTIONS(6253), - [anon_sym_BSLASHfvolcite] = ACTIONS(6253), - [anon_sym_BSLASHftvolcite] = ACTIONS(6253), - [anon_sym_BSLASHsvolcite] = ACTIONS(6253), - [anon_sym_BSLASHSvolcite] = ACTIONS(6253), - [anon_sym_BSLASHtvolcite] = ACTIONS(6253), - [anon_sym_BSLASHTvolcite] = ACTIONS(6253), - [anon_sym_BSLASHavolcite] = ACTIONS(6253), - [anon_sym_BSLASHAvolcite] = ACTIONS(6253), - [anon_sym_BSLASHnotecite] = ACTIONS(6253), - [anon_sym_BSLASHNotecite] = ACTIONS(6253), - [anon_sym_BSLASHpnotecite] = ACTIONS(6253), - [anon_sym_BSLASHPnotecite] = ACTIONS(6253), - [anon_sym_BSLASHfnotecite] = ACTIONS(6253), - [anon_sym_BSLASHlabel] = ACTIONS(6253), - [anon_sym_BSLASHref] = ACTIONS(6253), - [anon_sym_BSLASHeqref] = ACTIONS(6253), - [anon_sym_BSLASHvref] = ACTIONS(6253), - [anon_sym_BSLASHVref] = ACTIONS(6253), - [anon_sym_BSLASHautoref] = ACTIONS(6253), - [anon_sym_BSLASHpageref] = ACTIONS(6253), - [anon_sym_BSLASHcref] = ACTIONS(6253), - [anon_sym_BSLASHCref] = ACTIONS(6253), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6255), - [anon_sym_BSLASHnamecref] = ACTIONS(6253), - [anon_sym_BSLASHnameCref] = ACTIONS(6253), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), - [anon_sym_BSLASHlabelcref] = ACTIONS(6253), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), - [anon_sym_BSLASHcrefrange] = ACTIONS(6253), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCrefrange] = ACTIONS(6253), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6255), - [anon_sym_BSLASHnewlabel] = ACTIONS(6253), - [anon_sym_BSLASHnewcommand] = ACTIONS(6253), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6255), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHdef] = ACTIONS(6253), - [anon_sym_BSLASHlet] = ACTIONS(6253), - [anon_sym_BSLASHleft] = ACTIONS(6253), - [anon_sym_BSLASHbig] = ACTIONS(6253), - [anon_sym_BSLASHBig] = ACTIONS(6253), - [anon_sym_BSLASHbigg] = ACTIONS(6253), - [anon_sym_BSLASHBigg] = ACTIONS(6253), - [anon_sym_BSLASHbigl] = ACTIONS(6253), - [anon_sym_BSLASHBigl] = ACTIONS(6253), - [anon_sym_BSLASHbiggl] = ACTIONS(6253), - [anon_sym_BSLASHBiggl] = ACTIONS(6253), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6253), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), - [anon_sym_BSLASHgls] = ACTIONS(6253), - [anon_sym_BSLASHGls] = ACTIONS(6253), - [anon_sym_BSLASHGLS] = ACTIONS(6253), - [anon_sym_BSLASHglspl] = ACTIONS(6253), - [anon_sym_BSLASHGlspl] = ACTIONS(6253), - [anon_sym_BSLASHGLSpl] = ACTIONS(6253), - [anon_sym_BSLASHglsdisp] = ACTIONS(6253), - [anon_sym_BSLASHglslink] = ACTIONS(6253), - [anon_sym_BSLASHglstext] = ACTIONS(6253), - [anon_sym_BSLASHGlstext] = ACTIONS(6253), - [anon_sym_BSLASHGLStext] = ACTIONS(6253), - [anon_sym_BSLASHglsfirst] = ACTIONS(6253), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), - [anon_sym_BSLASHglsplural] = ACTIONS(6253), - [anon_sym_BSLASHGlsplural] = ACTIONS(6253), - [anon_sym_BSLASHGLSplural] = ACTIONS(6253), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHglsname] = ACTIONS(6253), - [anon_sym_BSLASHGlsname] = ACTIONS(6253), - [anon_sym_BSLASHGLSname] = ACTIONS(6253), - [anon_sym_BSLASHglssymbol] = ACTIONS(6253), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), - [anon_sym_BSLASHglsdesc] = ACTIONS(6253), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), - [anon_sym_BSLASHglsuseri] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), - [anon_sym_BSLASHglsuserii] = ACTIONS(6253), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), - [anon_sym_BSLASHglsuserv] = ACTIONS(6253), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), - [anon_sym_BSLASHglsuservi] = ACTIONS(6253), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), - [anon_sym_BSLASHnewacronym] = ACTIONS(6253), - [anon_sym_BSLASHacrshort] = ACTIONS(6253), - [anon_sym_BSLASHAcrshort] = ACTIONS(6253), - [anon_sym_BSLASHACRshort] = ACTIONS(6253), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), - [anon_sym_BSLASHacrlong] = ACTIONS(6253), - [anon_sym_BSLASHAcrlong] = ACTIONS(6253), - [anon_sym_BSLASHACRlong] = ACTIONS(6253), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), - [anon_sym_BSLASHacrfull] = ACTIONS(6253), - [anon_sym_BSLASHAcrfull] = ACTIONS(6253), - [anon_sym_BSLASHACRfull] = ACTIONS(6253), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), - [anon_sym_BSLASHacs] = ACTIONS(6253), - [anon_sym_BSLASHAcs] = ACTIONS(6253), - [anon_sym_BSLASHacsp] = ACTIONS(6253), - [anon_sym_BSLASHAcsp] = ACTIONS(6253), - [anon_sym_BSLASHacl] = ACTIONS(6253), - [anon_sym_BSLASHAcl] = ACTIONS(6253), - [anon_sym_BSLASHaclp] = ACTIONS(6253), - [anon_sym_BSLASHAclp] = ACTIONS(6253), - [anon_sym_BSLASHacf] = ACTIONS(6253), - [anon_sym_BSLASHAcf] = ACTIONS(6253), - [anon_sym_BSLASHacfp] = ACTIONS(6253), - [anon_sym_BSLASHAcfp] = ACTIONS(6253), - [anon_sym_BSLASHac] = ACTIONS(6253), - [anon_sym_BSLASHAc] = ACTIONS(6253), - [anon_sym_BSLASHacp] = ACTIONS(6253), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), - [anon_sym_BSLASHcolor] = ACTIONS(6253), - [anon_sym_BSLASHcolorbox] = ACTIONS(6253), - [anon_sym_BSLASHtextcolor] = ACTIONS(6253), - [anon_sym_BSLASHpagecolor] = ACTIONS(6253), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), - [anon_sym_BSLASHtext] = ACTIONS(6253), - [anon_sym_BSLASHintertext] = ACTIONS(6253), - [anon_sym_shortintertext] = ACTIONS(6253), - }, - [1294] = { - [sym_command_name] = ACTIONS(6257), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6257), - [anon_sym_LBRACK] = ACTIONS(6259), - [anon_sym_RBRACK] = ACTIONS(6259), - [anon_sym_COMMA] = ACTIONS(6259), - [anon_sym_EQ] = ACTIONS(6259), - [anon_sym_LPAREN] = ACTIONS(6259), - [anon_sym_RPAREN] = ACTIONS(6259), - [anon_sym_BSLASHpart] = ACTIONS(6257), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddpart] = ACTIONS(6257), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6259), - [anon_sym_BSLASHchapter] = ACTIONS(6257), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddchap] = ACTIONS(6257), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsection] = ACTIONS(6257), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddsec] = ACTIONS(6257), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubsection] = ACTIONS(6257), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6257), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHparagraph] = ACTIONS(6257), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6257), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6259), - [anon_sym_BSLASHitem] = ACTIONS(6257), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6259), - [anon_sym_LBRACE] = ACTIONS(6259), - [sym_word] = ACTIONS(6257), - [sym_placeholder] = ACTIONS(6259), - [anon_sym_PLUS] = ACTIONS(6259), - [anon_sym_DASH] = ACTIONS(6259), - [anon_sym_STAR] = ACTIONS(6259), - [anon_sym_SLASH] = ACTIONS(6259), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_GT] = ACTIONS(6257), - [anon_sym_BANG] = ACTIONS(6257), - [anon_sym_PIPE] = ACTIONS(6257), - [anon_sym_COLON] = ACTIONS(6257), - [anon_sym_SQUOTE] = ACTIONS(6257), - [anon_sym__] = ACTIONS(6259), - [anon_sym_CARET] = ACTIONS(6259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6259), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6259), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6259), - [anon_sym_DOLLAR] = ACTIONS(6257), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6259), - [anon_sym_BSLASHbegin] = ACTIONS(6257), - [anon_sym_BSLASHtitle] = ACTIONS(6257), - [anon_sym_BSLASHauthor] = ACTIONS(6257), - [anon_sym_BSLASHusepackage] = ACTIONS(6257), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6257), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6257), - [anon_sym_BSLASHinclude] = ACTIONS(6257), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6257), - [anon_sym_BSLASHinput] = ACTIONS(6257), - [anon_sym_BSLASHsubfile] = ACTIONS(6257), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6257), - [anon_sym_BSLASHbibliography] = ACTIONS(6257), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6257), - [anon_sym_BSLASHincludesvg] = ACTIONS(6257), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6257), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6257), - [anon_sym_BSLASHimport] = ACTIONS(6257), - [anon_sym_BSLASHsubimport] = ACTIONS(6257), - [anon_sym_BSLASHinputfrom] = ACTIONS(6257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6257), - [anon_sym_BSLASHincludefrom] = ACTIONS(6257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6257), - [anon_sym_BSLASHcaption] = ACTIONS(6257), - [anon_sym_BSLASHcite] = ACTIONS(6257), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCite] = ACTIONS(6257), - [anon_sym_BSLASHnocite] = ACTIONS(6257), - [anon_sym_BSLASHcitet] = ACTIONS(6257), - [anon_sym_BSLASHcitep] = ACTIONS(6257), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteauthor] = ACTIONS(6257), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6257), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitetitle] = ACTIONS(6257), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteyear] = ACTIONS(6257), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitedate] = ACTIONS(6257), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteurl] = ACTIONS(6257), - [anon_sym_BSLASHfullcite] = ACTIONS(6257), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6257), - [anon_sym_BSLASHcitealt] = ACTIONS(6257), - [anon_sym_BSLASHcitealp] = ACTIONS(6257), - [anon_sym_BSLASHcitetext] = ACTIONS(6257), - [anon_sym_BSLASHparencite] = ACTIONS(6257), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHParencite] = ACTIONS(6257), - [anon_sym_BSLASHfootcite] = ACTIONS(6257), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6257), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6257), - [anon_sym_BSLASHtextcite] = ACTIONS(6257), - [anon_sym_BSLASHTextcite] = ACTIONS(6257), - [anon_sym_BSLASHsmartcite] = ACTIONS(6257), - [anon_sym_BSLASHSmartcite] = ACTIONS(6257), - [anon_sym_BSLASHsupercite] = ACTIONS(6257), - [anon_sym_BSLASHautocite] = ACTIONS(6257), - [anon_sym_BSLASHAutocite] = ACTIONS(6257), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHvolcite] = ACTIONS(6257), - [anon_sym_BSLASHVolcite] = ACTIONS(6257), - [anon_sym_BSLASHpvolcite] = ACTIONS(6257), - [anon_sym_BSLASHPvolcite] = ACTIONS(6257), - [anon_sym_BSLASHfvolcite] = ACTIONS(6257), - [anon_sym_BSLASHftvolcite] = ACTIONS(6257), - [anon_sym_BSLASHsvolcite] = ACTIONS(6257), - [anon_sym_BSLASHSvolcite] = ACTIONS(6257), - [anon_sym_BSLASHtvolcite] = ACTIONS(6257), - [anon_sym_BSLASHTvolcite] = ACTIONS(6257), - [anon_sym_BSLASHavolcite] = ACTIONS(6257), - [anon_sym_BSLASHAvolcite] = ACTIONS(6257), - [anon_sym_BSLASHnotecite] = ACTIONS(6257), - [anon_sym_BSLASHNotecite] = ACTIONS(6257), - [anon_sym_BSLASHpnotecite] = ACTIONS(6257), - [anon_sym_BSLASHPnotecite] = ACTIONS(6257), - [anon_sym_BSLASHfnotecite] = ACTIONS(6257), - [anon_sym_BSLASHlabel] = ACTIONS(6257), - [anon_sym_BSLASHref] = ACTIONS(6257), - [anon_sym_BSLASHeqref] = ACTIONS(6257), - [anon_sym_BSLASHvref] = ACTIONS(6257), - [anon_sym_BSLASHVref] = ACTIONS(6257), - [anon_sym_BSLASHautoref] = ACTIONS(6257), - [anon_sym_BSLASHpageref] = ACTIONS(6257), - [anon_sym_BSLASHcref] = ACTIONS(6257), - [anon_sym_BSLASHCref] = ACTIONS(6257), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6259), - [anon_sym_BSLASHnamecref] = ACTIONS(6257), - [anon_sym_BSLASHnameCref] = ACTIONS(6257), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6257), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6257), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6257), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6257), - [anon_sym_BSLASHlabelcref] = ACTIONS(6257), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6257), - [anon_sym_BSLASHcrefrange] = ACTIONS(6257), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCrefrange] = ACTIONS(6257), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6259), - [anon_sym_BSLASHnewlabel] = ACTIONS(6257), - [anon_sym_BSLASHnewcommand] = ACTIONS(6257), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6257), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6257), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6259), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHdef] = ACTIONS(6257), - [anon_sym_BSLASHlet] = ACTIONS(6257), - [anon_sym_BSLASHleft] = ACTIONS(6257), - [anon_sym_BSLASHbig] = ACTIONS(6257), - [anon_sym_BSLASHBig] = ACTIONS(6257), - [anon_sym_BSLASHbigg] = ACTIONS(6257), - [anon_sym_BSLASHBigg] = ACTIONS(6257), - [anon_sym_BSLASHbigl] = ACTIONS(6257), - [anon_sym_BSLASHBigl] = ACTIONS(6257), - [anon_sym_BSLASHbiggl] = ACTIONS(6257), - [anon_sym_BSLASHBiggl] = ACTIONS(6257), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6257), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6257), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6257), - [anon_sym_BSLASHgls] = ACTIONS(6257), - [anon_sym_BSLASHGls] = ACTIONS(6257), - [anon_sym_BSLASHGLS] = ACTIONS(6257), - [anon_sym_BSLASHglspl] = ACTIONS(6257), - [anon_sym_BSLASHGlspl] = ACTIONS(6257), - [anon_sym_BSLASHGLSpl] = ACTIONS(6257), - [anon_sym_BSLASHglsdisp] = ACTIONS(6257), - [anon_sym_BSLASHglslink] = ACTIONS(6257), - [anon_sym_BSLASHglstext] = ACTIONS(6257), - [anon_sym_BSLASHGlstext] = ACTIONS(6257), - [anon_sym_BSLASHGLStext] = ACTIONS(6257), - [anon_sym_BSLASHglsfirst] = ACTIONS(6257), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6257), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6257), - [anon_sym_BSLASHglsplural] = ACTIONS(6257), - [anon_sym_BSLASHGlsplural] = ACTIONS(6257), - [anon_sym_BSLASHGLSplural] = ACTIONS(6257), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHglsname] = ACTIONS(6257), - [anon_sym_BSLASHGlsname] = ACTIONS(6257), - [anon_sym_BSLASHGLSname] = ACTIONS(6257), - [anon_sym_BSLASHglssymbol] = ACTIONS(6257), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6257), - [anon_sym_BSLASHglsdesc] = ACTIONS(6257), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6257), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6257), - [anon_sym_BSLASHglsuseri] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6257), - [anon_sym_BSLASHglsuserii] = ACTIONS(6257), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6257), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6257), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6257), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6257), - [anon_sym_BSLASHglsuserv] = ACTIONS(6257), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6257), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6257), - [anon_sym_BSLASHglsuservi] = ACTIONS(6257), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6257), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6257), - [anon_sym_BSLASHnewacronym] = ACTIONS(6257), - [anon_sym_BSLASHacrshort] = ACTIONS(6257), - [anon_sym_BSLASHAcrshort] = ACTIONS(6257), - [anon_sym_BSLASHACRshort] = ACTIONS(6257), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6257), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6257), - [anon_sym_BSLASHacrlong] = ACTIONS(6257), - [anon_sym_BSLASHAcrlong] = ACTIONS(6257), - [anon_sym_BSLASHACRlong] = ACTIONS(6257), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6257), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6257), - [anon_sym_BSLASHacrfull] = ACTIONS(6257), - [anon_sym_BSLASHAcrfull] = ACTIONS(6257), - [anon_sym_BSLASHACRfull] = ACTIONS(6257), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6257), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6257), - [anon_sym_BSLASHacs] = ACTIONS(6257), - [anon_sym_BSLASHAcs] = ACTIONS(6257), - [anon_sym_BSLASHacsp] = ACTIONS(6257), - [anon_sym_BSLASHAcsp] = ACTIONS(6257), - [anon_sym_BSLASHacl] = ACTIONS(6257), - [anon_sym_BSLASHAcl] = ACTIONS(6257), - [anon_sym_BSLASHaclp] = ACTIONS(6257), - [anon_sym_BSLASHAclp] = ACTIONS(6257), - [anon_sym_BSLASHacf] = ACTIONS(6257), - [anon_sym_BSLASHAcf] = ACTIONS(6257), - [anon_sym_BSLASHacfp] = ACTIONS(6257), - [anon_sym_BSLASHAcfp] = ACTIONS(6257), - [anon_sym_BSLASHac] = ACTIONS(6257), - [anon_sym_BSLASHAc] = ACTIONS(6257), - [anon_sym_BSLASHacp] = ACTIONS(6257), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6257), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6257), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6257), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6257), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6257), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6257), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6257), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6257), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6257), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6257), - [anon_sym_BSLASHcolor] = ACTIONS(6257), - [anon_sym_BSLASHcolorbox] = ACTIONS(6257), - [anon_sym_BSLASHtextcolor] = ACTIONS(6257), - [anon_sym_BSLASHpagecolor] = ACTIONS(6257), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6257), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6257), - [anon_sym_BSLASHtext] = ACTIONS(6257), - [anon_sym_BSLASHintertext] = ACTIONS(6257), - [anon_sym_shortintertext] = ACTIONS(6257), - }, - [1295] = { - [sym_command_name] = ACTIONS(6261), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(6263), - [anon_sym_RBRACK] = ACTIONS(6263), - [anon_sym_COMMA] = ACTIONS(6263), - [anon_sym_EQ] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6263), - [anon_sym_RPAREN] = ACTIONS(6263), - [anon_sym_BSLASHpart] = ACTIONS(6261), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddpart] = ACTIONS(6261), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6263), - [anon_sym_BSLASHchapter] = ACTIONS(6261), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddchap] = ACTIONS(6261), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsection] = ACTIONS(6261), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddsec] = ACTIONS(6261), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubsection] = ACTIONS(6261), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6261), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHparagraph] = ACTIONS(6261), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6261), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6263), - [anon_sym_BSLASHitem] = ACTIONS(6261), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6263), - [anon_sym_LBRACE] = ACTIONS(6263), - [sym_word] = ACTIONS(6261), - [sym_placeholder] = ACTIONS(6263), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_STAR] = ACTIONS(6263), - [anon_sym_SLASH] = ACTIONS(6263), - [anon_sym_LT] = ACTIONS(6261), - [anon_sym_GT] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_PIPE] = ACTIONS(6261), - [anon_sym_COLON] = ACTIONS(6261), - [anon_sym_SQUOTE] = ACTIONS(6261), - [anon_sym__] = ACTIONS(6263), - [anon_sym_CARET] = ACTIONS(6263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6263), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6263), - [anon_sym_DOLLAR] = ACTIONS(6261), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6263), - [anon_sym_BSLASHbegin] = ACTIONS(6261), - [anon_sym_BSLASHtitle] = ACTIONS(6261), - [anon_sym_BSLASHauthor] = ACTIONS(6261), - [anon_sym_BSLASHusepackage] = ACTIONS(6261), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6261), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6261), - [anon_sym_BSLASHinclude] = ACTIONS(6261), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6261), - [anon_sym_BSLASHinput] = ACTIONS(6261), - [anon_sym_BSLASHsubfile] = ACTIONS(6261), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6261), - [anon_sym_BSLASHbibliography] = ACTIONS(6261), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6261), - [anon_sym_BSLASHincludesvg] = ACTIONS(6261), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6261), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6261), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6261), - [anon_sym_BSLASHimport] = ACTIONS(6261), - [anon_sym_BSLASHsubimport] = ACTIONS(6261), - [anon_sym_BSLASHinputfrom] = ACTIONS(6261), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6261), - [anon_sym_BSLASHincludefrom] = ACTIONS(6261), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6261), - [anon_sym_BSLASHcaption] = ACTIONS(6261), - [anon_sym_BSLASHcite] = ACTIONS(6261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCite] = ACTIONS(6261), - [anon_sym_BSLASHnocite] = ACTIONS(6261), - [anon_sym_BSLASHcitet] = ACTIONS(6261), - [anon_sym_BSLASHcitep] = ACTIONS(6261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteauthor] = ACTIONS(6261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitetitle] = ACTIONS(6261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteyear] = ACTIONS(6261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitedate] = ACTIONS(6261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteurl] = ACTIONS(6261), - [anon_sym_BSLASHfullcite] = ACTIONS(6261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6261), - [anon_sym_BSLASHcitealt] = ACTIONS(6261), - [anon_sym_BSLASHcitealp] = ACTIONS(6261), - [anon_sym_BSLASHcitetext] = ACTIONS(6261), - [anon_sym_BSLASHparencite] = ACTIONS(6261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHParencite] = ACTIONS(6261), - [anon_sym_BSLASHfootcite] = ACTIONS(6261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6261), - [anon_sym_BSLASHtextcite] = ACTIONS(6261), - [anon_sym_BSLASHTextcite] = ACTIONS(6261), - [anon_sym_BSLASHsmartcite] = ACTIONS(6261), - [anon_sym_BSLASHSmartcite] = ACTIONS(6261), - [anon_sym_BSLASHsupercite] = ACTIONS(6261), - [anon_sym_BSLASHautocite] = ACTIONS(6261), - [anon_sym_BSLASHAutocite] = ACTIONS(6261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHvolcite] = ACTIONS(6261), - [anon_sym_BSLASHVolcite] = ACTIONS(6261), - [anon_sym_BSLASHpvolcite] = ACTIONS(6261), - [anon_sym_BSLASHPvolcite] = ACTIONS(6261), - [anon_sym_BSLASHfvolcite] = ACTIONS(6261), - [anon_sym_BSLASHftvolcite] = ACTIONS(6261), - [anon_sym_BSLASHsvolcite] = ACTIONS(6261), - [anon_sym_BSLASHSvolcite] = ACTIONS(6261), - [anon_sym_BSLASHtvolcite] = ACTIONS(6261), - [anon_sym_BSLASHTvolcite] = ACTIONS(6261), - [anon_sym_BSLASHavolcite] = ACTIONS(6261), - [anon_sym_BSLASHAvolcite] = ACTIONS(6261), - [anon_sym_BSLASHnotecite] = ACTIONS(6261), - [anon_sym_BSLASHNotecite] = ACTIONS(6261), - [anon_sym_BSLASHpnotecite] = ACTIONS(6261), - [anon_sym_BSLASHPnotecite] = ACTIONS(6261), - [anon_sym_BSLASHfnotecite] = ACTIONS(6261), - [anon_sym_BSLASHlabel] = ACTIONS(6261), - [anon_sym_BSLASHref] = ACTIONS(6261), - [anon_sym_BSLASHeqref] = ACTIONS(6261), - [anon_sym_BSLASHvref] = ACTIONS(6261), - [anon_sym_BSLASHVref] = ACTIONS(6261), - [anon_sym_BSLASHautoref] = ACTIONS(6261), - [anon_sym_BSLASHpageref] = ACTIONS(6261), - [anon_sym_BSLASHcref] = ACTIONS(6261), - [anon_sym_BSLASHCref] = ACTIONS(6261), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6263), - [anon_sym_BSLASHnamecref] = ACTIONS(6261), - [anon_sym_BSLASHnameCref] = ACTIONS(6261), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6261), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6261), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6261), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6261), - [anon_sym_BSLASHlabelcref] = ACTIONS(6261), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6261), - [anon_sym_BSLASHcrefrange] = ACTIONS(6261), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCrefrange] = ACTIONS(6261), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6263), - [anon_sym_BSLASHnewlabel] = ACTIONS(6261), - [anon_sym_BSLASHnewcommand] = ACTIONS(6261), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6261), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6261), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6263), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHdef] = ACTIONS(6261), - [anon_sym_BSLASHlet] = ACTIONS(6261), - [anon_sym_BSLASHleft] = ACTIONS(6261), - [anon_sym_BSLASHbig] = ACTIONS(6261), - [anon_sym_BSLASHBig] = ACTIONS(6261), - [anon_sym_BSLASHbigg] = ACTIONS(6261), - [anon_sym_BSLASHBigg] = ACTIONS(6261), - [anon_sym_BSLASHbigl] = ACTIONS(6261), - [anon_sym_BSLASHBigl] = ACTIONS(6261), - [anon_sym_BSLASHbiggl] = ACTIONS(6261), - [anon_sym_BSLASHBiggl] = ACTIONS(6261), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6261), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6261), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6261), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6261), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6261), - [anon_sym_BSLASHgls] = ACTIONS(6261), - [anon_sym_BSLASHGls] = ACTIONS(6261), - [anon_sym_BSLASHGLS] = ACTIONS(6261), - [anon_sym_BSLASHglspl] = ACTIONS(6261), - [anon_sym_BSLASHGlspl] = ACTIONS(6261), - [anon_sym_BSLASHGLSpl] = ACTIONS(6261), - [anon_sym_BSLASHglsdisp] = ACTIONS(6261), - [anon_sym_BSLASHglslink] = ACTIONS(6261), - [anon_sym_BSLASHglstext] = ACTIONS(6261), - [anon_sym_BSLASHGlstext] = ACTIONS(6261), - [anon_sym_BSLASHGLStext] = ACTIONS(6261), - [anon_sym_BSLASHglsfirst] = ACTIONS(6261), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6261), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6261), - [anon_sym_BSLASHglsplural] = ACTIONS(6261), - [anon_sym_BSLASHGlsplural] = ACTIONS(6261), - [anon_sym_BSLASHGLSplural] = ACTIONS(6261), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHglsname] = ACTIONS(6261), - [anon_sym_BSLASHGlsname] = ACTIONS(6261), - [anon_sym_BSLASHGLSname] = ACTIONS(6261), - [anon_sym_BSLASHglssymbol] = ACTIONS(6261), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6261), - [anon_sym_BSLASHglsdesc] = ACTIONS(6261), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6261), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6261), - [anon_sym_BSLASHglsuseri] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6261), - [anon_sym_BSLASHglsuserii] = ACTIONS(6261), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6261), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6261), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6261), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6261), - [anon_sym_BSLASHglsuserv] = ACTIONS(6261), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6261), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6261), - [anon_sym_BSLASHglsuservi] = ACTIONS(6261), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6261), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6261), - [anon_sym_BSLASHnewacronym] = ACTIONS(6261), - [anon_sym_BSLASHacrshort] = ACTIONS(6261), - [anon_sym_BSLASHAcrshort] = ACTIONS(6261), - [anon_sym_BSLASHACRshort] = ACTIONS(6261), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6261), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6261), - [anon_sym_BSLASHacrlong] = ACTIONS(6261), - [anon_sym_BSLASHAcrlong] = ACTIONS(6261), - [anon_sym_BSLASHACRlong] = ACTIONS(6261), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6261), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6261), - [anon_sym_BSLASHacrfull] = ACTIONS(6261), - [anon_sym_BSLASHAcrfull] = ACTIONS(6261), - [anon_sym_BSLASHACRfull] = ACTIONS(6261), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6261), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6261), - [anon_sym_BSLASHacs] = ACTIONS(6261), - [anon_sym_BSLASHAcs] = ACTIONS(6261), - [anon_sym_BSLASHacsp] = ACTIONS(6261), - [anon_sym_BSLASHAcsp] = ACTIONS(6261), - [anon_sym_BSLASHacl] = ACTIONS(6261), - [anon_sym_BSLASHAcl] = ACTIONS(6261), - [anon_sym_BSLASHaclp] = ACTIONS(6261), - [anon_sym_BSLASHAclp] = ACTIONS(6261), - [anon_sym_BSLASHacf] = ACTIONS(6261), - [anon_sym_BSLASHAcf] = ACTIONS(6261), - [anon_sym_BSLASHacfp] = ACTIONS(6261), - [anon_sym_BSLASHAcfp] = ACTIONS(6261), - [anon_sym_BSLASHac] = ACTIONS(6261), - [anon_sym_BSLASHAc] = ACTIONS(6261), - [anon_sym_BSLASHacp] = ACTIONS(6261), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6261), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6261), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6261), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6261), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6261), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6261), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6261), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6261), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6261), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6261), - [anon_sym_BSLASHcolor] = ACTIONS(6261), - [anon_sym_BSLASHcolorbox] = ACTIONS(6261), - [anon_sym_BSLASHtextcolor] = ACTIONS(6261), - [anon_sym_BSLASHpagecolor] = ACTIONS(6261), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6261), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6261), - [anon_sym_BSLASHtext] = ACTIONS(6261), - [anon_sym_BSLASHintertext] = ACTIONS(6261), - [anon_sym_shortintertext] = ACTIONS(6261), - }, - [1296] = { - [sym_command_name] = ACTIONS(6265), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6265), - [anon_sym_LBRACK] = ACTIONS(6267), - [anon_sym_RBRACK] = ACTIONS(6267), - [anon_sym_COMMA] = ACTIONS(6267), - [anon_sym_EQ] = ACTIONS(6267), - [anon_sym_LPAREN] = ACTIONS(6267), - [anon_sym_RPAREN] = ACTIONS(6267), - [anon_sym_BSLASHpart] = ACTIONS(6265), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddpart] = ACTIONS(6265), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6267), - [anon_sym_BSLASHchapter] = ACTIONS(6265), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddchap] = ACTIONS(6265), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsection] = ACTIONS(6265), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddsec] = ACTIONS(6265), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubsection] = ACTIONS(6265), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6265), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHparagraph] = ACTIONS(6265), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6265), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6267), - [anon_sym_BSLASHitem] = ACTIONS(6265), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6267), - [anon_sym_LBRACE] = ACTIONS(6267), - [sym_word] = ACTIONS(6265), - [sym_placeholder] = ACTIONS(6267), - [anon_sym_PLUS] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(6267), - [anon_sym_STAR] = ACTIONS(6267), - [anon_sym_SLASH] = ACTIONS(6267), - [anon_sym_LT] = ACTIONS(6265), - [anon_sym_GT] = ACTIONS(6265), - [anon_sym_BANG] = ACTIONS(6265), - [anon_sym_PIPE] = ACTIONS(6265), - [anon_sym_COLON] = ACTIONS(6265), - [anon_sym_SQUOTE] = ACTIONS(6265), - [anon_sym__] = ACTIONS(6267), - [anon_sym_CARET] = ACTIONS(6267), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6267), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6267), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6267), - [anon_sym_DOLLAR] = ACTIONS(6265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6267), - [anon_sym_BSLASHbegin] = ACTIONS(6265), - [anon_sym_BSLASHtitle] = ACTIONS(6265), - [anon_sym_BSLASHauthor] = ACTIONS(6265), - [anon_sym_BSLASHusepackage] = ACTIONS(6265), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6265), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6265), - [anon_sym_BSLASHinclude] = ACTIONS(6265), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6265), - [anon_sym_BSLASHinput] = ACTIONS(6265), - [anon_sym_BSLASHsubfile] = ACTIONS(6265), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6265), - [anon_sym_BSLASHbibliography] = ACTIONS(6265), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6265), - [anon_sym_BSLASHincludesvg] = ACTIONS(6265), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6265), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6265), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6265), - [anon_sym_BSLASHimport] = ACTIONS(6265), - [anon_sym_BSLASHsubimport] = ACTIONS(6265), - [anon_sym_BSLASHinputfrom] = ACTIONS(6265), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6265), - [anon_sym_BSLASHincludefrom] = ACTIONS(6265), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6265), - [anon_sym_BSLASHcaption] = ACTIONS(6265), - [anon_sym_BSLASHcite] = ACTIONS(6265), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCite] = ACTIONS(6265), - [anon_sym_BSLASHnocite] = ACTIONS(6265), - [anon_sym_BSLASHcitet] = ACTIONS(6265), - [anon_sym_BSLASHcitep] = ACTIONS(6265), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteauthor] = ACTIONS(6265), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6265), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitetitle] = ACTIONS(6265), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteyear] = ACTIONS(6265), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitedate] = ACTIONS(6265), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteurl] = ACTIONS(6265), - [anon_sym_BSLASHfullcite] = ACTIONS(6265), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6265), - [anon_sym_BSLASHcitealt] = ACTIONS(6265), - [anon_sym_BSLASHcitealp] = ACTIONS(6265), - [anon_sym_BSLASHcitetext] = ACTIONS(6265), - [anon_sym_BSLASHparencite] = ACTIONS(6265), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHParencite] = ACTIONS(6265), - [anon_sym_BSLASHfootcite] = ACTIONS(6265), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6265), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6265), - [anon_sym_BSLASHtextcite] = ACTIONS(6265), - [anon_sym_BSLASHTextcite] = ACTIONS(6265), - [anon_sym_BSLASHsmartcite] = ACTIONS(6265), - [anon_sym_BSLASHSmartcite] = ACTIONS(6265), - [anon_sym_BSLASHsupercite] = ACTIONS(6265), - [anon_sym_BSLASHautocite] = ACTIONS(6265), - [anon_sym_BSLASHAutocite] = ACTIONS(6265), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHvolcite] = ACTIONS(6265), - [anon_sym_BSLASHVolcite] = ACTIONS(6265), - [anon_sym_BSLASHpvolcite] = ACTIONS(6265), - [anon_sym_BSLASHPvolcite] = ACTIONS(6265), - [anon_sym_BSLASHfvolcite] = ACTIONS(6265), - [anon_sym_BSLASHftvolcite] = ACTIONS(6265), - [anon_sym_BSLASHsvolcite] = ACTIONS(6265), - [anon_sym_BSLASHSvolcite] = ACTIONS(6265), - [anon_sym_BSLASHtvolcite] = ACTIONS(6265), - [anon_sym_BSLASHTvolcite] = ACTIONS(6265), - [anon_sym_BSLASHavolcite] = ACTIONS(6265), - [anon_sym_BSLASHAvolcite] = ACTIONS(6265), - [anon_sym_BSLASHnotecite] = ACTIONS(6265), - [anon_sym_BSLASHNotecite] = ACTIONS(6265), - [anon_sym_BSLASHpnotecite] = ACTIONS(6265), - [anon_sym_BSLASHPnotecite] = ACTIONS(6265), - [anon_sym_BSLASHfnotecite] = ACTIONS(6265), - [anon_sym_BSLASHlabel] = ACTIONS(6265), - [anon_sym_BSLASHref] = ACTIONS(6265), - [anon_sym_BSLASHeqref] = ACTIONS(6265), - [anon_sym_BSLASHvref] = ACTIONS(6265), - [anon_sym_BSLASHVref] = ACTIONS(6265), - [anon_sym_BSLASHautoref] = ACTIONS(6265), - [anon_sym_BSLASHpageref] = ACTIONS(6265), - [anon_sym_BSLASHcref] = ACTIONS(6265), - [anon_sym_BSLASHCref] = ACTIONS(6265), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6267), - [anon_sym_BSLASHnamecref] = ACTIONS(6265), - [anon_sym_BSLASHnameCref] = ACTIONS(6265), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6265), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6265), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6265), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6265), - [anon_sym_BSLASHlabelcref] = ACTIONS(6265), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6265), - [anon_sym_BSLASHcrefrange] = ACTIONS(6265), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCrefrange] = ACTIONS(6265), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6267), - [anon_sym_BSLASHnewlabel] = ACTIONS(6265), - [anon_sym_BSLASHnewcommand] = ACTIONS(6265), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6265), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6265), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6267), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHdef] = ACTIONS(6265), - [anon_sym_BSLASHlet] = ACTIONS(6265), - [anon_sym_BSLASHleft] = ACTIONS(6265), - [anon_sym_BSLASHbig] = ACTIONS(6265), - [anon_sym_BSLASHBig] = ACTIONS(6265), - [anon_sym_BSLASHbigg] = ACTIONS(6265), - [anon_sym_BSLASHBigg] = ACTIONS(6265), - [anon_sym_BSLASHbigl] = ACTIONS(6265), - [anon_sym_BSLASHBigl] = ACTIONS(6265), - [anon_sym_BSLASHbiggl] = ACTIONS(6265), - [anon_sym_BSLASHBiggl] = ACTIONS(6265), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6265), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6265), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6265), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6265), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6265), - [anon_sym_BSLASHgls] = ACTIONS(6265), - [anon_sym_BSLASHGls] = ACTIONS(6265), - [anon_sym_BSLASHGLS] = ACTIONS(6265), - [anon_sym_BSLASHglspl] = ACTIONS(6265), - [anon_sym_BSLASHGlspl] = ACTIONS(6265), - [anon_sym_BSLASHGLSpl] = ACTIONS(6265), - [anon_sym_BSLASHglsdisp] = ACTIONS(6265), - [anon_sym_BSLASHglslink] = ACTIONS(6265), - [anon_sym_BSLASHglstext] = ACTIONS(6265), - [anon_sym_BSLASHGlstext] = ACTIONS(6265), - [anon_sym_BSLASHGLStext] = ACTIONS(6265), - [anon_sym_BSLASHglsfirst] = ACTIONS(6265), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6265), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6265), - [anon_sym_BSLASHglsplural] = ACTIONS(6265), - [anon_sym_BSLASHGlsplural] = ACTIONS(6265), - [anon_sym_BSLASHGLSplural] = ACTIONS(6265), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHglsname] = ACTIONS(6265), - [anon_sym_BSLASHGlsname] = ACTIONS(6265), - [anon_sym_BSLASHGLSname] = ACTIONS(6265), - [anon_sym_BSLASHglssymbol] = ACTIONS(6265), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6265), - [anon_sym_BSLASHglsdesc] = ACTIONS(6265), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6265), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6265), - [anon_sym_BSLASHglsuseri] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6265), - [anon_sym_BSLASHglsuserii] = ACTIONS(6265), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6265), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6265), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6265), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6265), - [anon_sym_BSLASHglsuserv] = ACTIONS(6265), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6265), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6265), - [anon_sym_BSLASHglsuservi] = ACTIONS(6265), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6265), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6265), - [anon_sym_BSLASHnewacronym] = ACTIONS(6265), - [anon_sym_BSLASHacrshort] = ACTIONS(6265), - [anon_sym_BSLASHAcrshort] = ACTIONS(6265), - [anon_sym_BSLASHACRshort] = ACTIONS(6265), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6265), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6265), - [anon_sym_BSLASHacrlong] = ACTIONS(6265), - [anon_sym_BSLASHAcrlong] = ACTIONS(6265), - [anon_sym_BSLASHACRlong] = ACTIONS(6265), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6265), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6265), - [anon_sym_BSLASHacrfull] = ACTIONS(6265), - [anon_sym_BSLASHAcrfull] = ACTIONS(6265), - [anon_sym_BSLASHACRfull] = ACTIONS(6265), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6265), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6265), - [anon_sym_BSLASHacs] = ACTIONS(6265), - [anon_sym_BSLASHAcs] = ACTIONS(6265), - [anon_sym_BSLASHacsp] = ACTIONS(6265), - [anon_sym_BSLASHAcsp] = ACTIONS(6265), - [anon_sym_BSLASHacl] = ACTIONS(6265), - [anon_sym_BSLASHAcl] = ACTIONS(6265), - [anon_sym_BSLASHaclp] = ACTIONS(6265), - [anon_sym_BSLASHAclp] = ACTIONS(6265), - [anon_sym_BSLASHacf] = ACTIONS(6265), - [anon_sym_BSLASHAcf] = ACTIONS(6265), - [anon_sym_BSLASHacfp] = ACTIONS(6265), - [anon_sym_BSLASHAcfp] = ACTIONS(6265), - [anon_sym_BSLASHac] = ACTIONS(6265), - [anon_sym_BSLASHAc] = ACTIONS(6265), - [anon_sym_BSLASHacp] = ACTIONS(6265), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6265), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6265), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6265), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6265), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6265), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6265), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6265), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6265), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6265), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6265), - [anon_sym_BSLASHcolor] = ACTIONS(6265), - [anon_sym_BSLASHcolorbox] = ACTIONS(6265), - [anon_sym_BSLASHtextcolor] = ACTIONS(6265), - [anon_sym_BSLASHpagecolor] = ACTIONS(6265), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6265), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6265), - [anon_sym_BSLASHtext] = ACTIONS(6265), - [anon_sym_BSLASHintertext] = ACTIONS(6265), - [anon_sym_shortintertext] = ACTIONS(6265), - }, - [1297] = { - [sym_command_name] = ACTIONS(6269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6269), - [anon_sym_LBRACK] = ACTIONS(6271), - [anon_sym_RBRACK] = ACTIONS(6271), - [anon_sym_COMMA] = ACTIONS(6271), - [anon_sym_EQ] = ACTIONS(6271), - [anon_sym_LPAREN] = ACTIONS(6271), - [anon_sym_RPAREN] = ACTIONS(6271), - [anon_sym_BSLASHpart] = ACTIONS(6269), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddpart] = ACTIONS(6269), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6271), - [anon_sym_BSLASHchapter] = ACTIONS(6269), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddchap] = ACTIONS(6269), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsection] = ACTIONS(6269), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddsec] = ACTIONS(6269), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubsection] = ACTIONS(6269), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6269), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHparagraph] = ACTIONS(6269), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6269), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6271), - [anon_sym_BSLASHitem] = ACTIONS(6269), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6271), - [anon_sym_LBRACE] = ACTIONS(6271), - [sym_word] = ACTIONS(6269), - [sym_placeholder] = ACTIONS(6271), - [anon_sym_PLUS] = ACTIONS(6271), - [anon_sym_DASH] = ACTIONS(6271), - [anon_sym_STAR] = ACTIONS(6271), - [anon_sym_SLASH] = ACTIONS(6271), - [anon_sym_LT] = ACTIONS(6269), - [anon_sym_GT] = ACTIONS(6269), - [anon_sym_BANG] = ACTIONS(6269), - [anon_sym_PIPE] = ACTIONS(6269), - [anon_sym_COLON] = ACTIONS(6269), - [anon_sym_SQUOTE] = ACTIONS(6269), - [anon_sym__] = ACTIONS(6271), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6271), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6271), - [anon_sym_DOLLAR] = ACTIONS(6269), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6271), - [anon_sym_BSLASHbegin] = ACTIONS(6269), - [anon_sym_BSLASHtitle] = ACTIONS(6269), - [anon_sym_BSLASHauthor] = ACTIONS(6269), - [anon_sym_BSLASHusepackage] = ACTIONS(6269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6269), - [anon_sym_BSLASHinclude] = ACTIONS(6269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6269), - [anon_sym_BSLASHinput] = ACTIONS(6269), - [anon_sym_BSLASHsubfile] = ACTIONS(6269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6269), - [anon_sym_BSLASHbibliography] = ACTIONS(6269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6269), - [anon_sym_BSLASHincludesvg] = ACTIONS(6269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6269), - [anon_sym_BSLASHimport] = ACTIONS(6269), - [anon_sym_BSLASHsubimport] = ACTIONS(6269), - [anon_sym_BSLASHinputfrom] = ACTIONS(6269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6269), - [anon_sym_BSLASHincludefrom] = ACTIONS(6269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6269), - [anon_sym_BSLASHcaption] = ACTIONS(6269), - [anon_sym_BSLASHcite] = ACTIONS(6269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCite] = ACTIONS(6269), - [anon_sym_BSLASHnocite] = ACTIONS(6269), - [anon_sym_BSLASHcitet] = ACTIONS(6269), - [anon_sym_BSLASHcitep] = ACTIONS(6269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteauthor] = ACTIONS(6269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitetitle] = ACTIONS(6269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteyear] = ACTIONS(6269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitedate] = ACTIONS(6269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteurl] = ACTIONS(6269), - [anon_sym_BSLASHfullcite] = ACTIONS(6269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6269), - [anon_sym_BSLASHcitealt] = ACTIONS(6269), - [anon_sym_BSLASHcitealp] = ACTIONS(6269), - [anon_sym_BSLASHcitetext] = ACTIONS(6269), - [anon_sym_BSLASHparencite] = ACTIONS(6269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHParencite] = ACTIONS(6269), - [anon_sym_BSLASHfootcite] = ACTIONS(6269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6269), - [anon_sym_BSLASHtextcite] = ACTIONS(6269), - [anon_sym_BSLASHTextcite] = ACTIONS(6269), - [anon_sym_BSLASHsmartcite] = ACTIONS(6269), - [anon_sym_BSLASHSmartcite] = ACTIONS(6269), - [anon_sym_BSLASHsupercite] = ACTIONS(6269), - [anon_sym_BSLASHautocite] = ACTIONS(6269), - [anon_sym_BSLASHAutocite] = ACTIONS(6269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHvolcite] = ACTIONS(6269), - [anon_sym_BSLASHVolcite] = ACTIONS(6269), - [anon_sym_BSLASHpvolcite] = ACTIONS(6269), - [anon_sym_BSLASHPvolcite] = ACTIONS(6269), - [anon_sym_BSLASHfvolcite] = ACTIONS(6269), - [anon_sym_BSLASHftvolcite] = ACTIONS(6269), - [anon_sym_BSLASHsvolcite] = ACTIONS(6269), - [anon_sym_BSLASHSvolcite] = ACTIONS(6269), - [anon_sym_BSLASHtvolcite] = ACTIONS(6269), - [anon_sym_BSLASHTvolcite] = ACTIONS(6269), - [anon_sym_BSLASHavolcite] = ACTIONS(6269), - [anon_sym_BSLASHAvolcite] = ACTIONS(6269), - [anon_sym_BSLASHnotecite] = ACTIONS(6269), - [anon_sym_BSLASHNotecite] = ACTIONS(6269), - [anon_sym_BSLASHpnotecite] = ACTIONS(6269), - [anon_sym_BSLASHPnotecite] = ACTIONS(6269), - [anon_sym_BSLASHfnotecite] = ACTIONS(6269), - [anon_sym_BSLASHlabel] = ACTIONS(6269), - [anon_sym_BSLASHref] = ACTIONS(6269), - [anon_sym_BSLASHeqref] = ACTIONS(6269), - [anon_sym_BSLASHvref] = ACTIONS(6269), - [anon_sym_BSLASHVref] = ACTIONS(6269), - [anon_sym_BSLASHautoref] = ACTIONS(6269), - [anon_sym_BSLASHpageref] = ACTIONS(6269), - [anon_sym_BSLASHcref] = ACTIONS(6269), - [anon_sym_BSLASHCref] = ACTIONS(6269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6271), - [anon_sym_BSLASHnamecref] = ACTIONS(6269), - [anon_sym_BSLASHnameCref] = ACTIONS(6269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6269), - [anon_sym_BSLASHlabelcref] = ACTIONS(6269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6269), - [anon_sym_BSLASHcrefrange] = ACTIONS(6269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCrefrange] = ACTIONS(6269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6271), - [anon_sym_BSLASHnewlabel] = ACTIONS(6269), - [anon_sym_BSLASHnewcommand] = ACTIONS(6269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6271), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHdef] = ACTIONS(6269), - [anon_sym_BSLASHlet] = ACTIONS(6269), - [anon_sym_BSLASHleft] = ACTIONS(6269), - [anon_sym_BSLASHbig] = ACTIONS(6269), - [anon_sym_BSLASHBig] = ACTIONS(6269), - [anon_sym_BSLASHbigg] = ACTIONS(6269), - [anon_sym_BSLASHBigg] = ACTIONS(6269), - [anon_sym_BSLASHbigl] = ACTIONS(6269), - [anon_sym_BSLASHBigl] = ACTIONS(6269), - [anon_sym_BSLASHbiggl] = ACTIONS(6269), - [anon_sym_BSLASHBiggl] = ACTIONS(6269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6269), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6269), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6269), - [anon_sym_BSLASHgls] = ACTIONS(6269), - [anon_sym_BSLASHGls] = ACTIONS(6269), - [anon_sym_BSLASHGLS] = ACTIONS(6269), - [anon_sym_BSLASHglspl] = ACTIONS(6269), - [anon_sym_BSLASHGlspl] = ACTIONS(6269), - [anon_sym_BSLASHGLSpl] = ACTIONS(6269), - [anon_sym_BSLASHglsdisp] = ACTIONS(6269), - [anon_sym_BSLASHglslink] = ACTIONS(6269), - [anon_sym_BSLASHglstext] = ACTIONS(6269), - [anon_sym_BSLASHGlstext] = ACTIONS(6269), - [anon_sym_BSLASHGLStext] = ACTIONS(6269), - [anon_sym_BSLASHglsfirst] = ACTIONS(6269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6269), - [anon_sym_BSLASHglsplural] = ACTIONS(6269), - [anon_sym_BSLASHGlsplural] = ACTIONS(6269), - [anon_sym_BSLASHGLSplural] = ACTIONS(6269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHglsname] = ACTIONS(6269), - [anon_sym_BSLASHGlsname] = ACTIONS(6269), - [anon_sym_BSLASHGLSname] = ACTIONS(6269), - [anon_sym_BSLASHglssymbol] = ACTIONS(6269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6269), - [anon_sym_BSLASHglsdesc] = ACTIONS(6269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6269), - [anon_sym_BSLASHglsuseri] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6269), - [anon_sym_BSLASHglsuserii] = ACTIONS(6269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6269), - [anon_sym_BSLASHglsuserv] = ACTIONS(6269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6269), - [anon_sym_BSLASHglsuservi] = ACTIONS(6269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6269), - [anon_sym_BSLASHnewacronym] = ACTIONS(6269), - [anon_sym_BSLASHacrshort] = ACTIONS(6269), - [anon_sym_BSLASHAcrshort] = ACTIONS(6269), - [anon_sym_BSLASHACRshort] = ACTIONS(6269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6269), - [anon_sym_BSLASHacrlong] = ACTIONS(6269), - [anon_sym_BSLASHAcrlong] = ACTIONS(6269), - [anon_sym_BSLASHACRlong] = ACTIONS(6269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6269), - [anon_sym_BSLASHacrfull] = ACTIONS(6269), - [anon_sym_BSLASHAcrfull] = ACTIONS(6269), - [anon_sym_BSLASHACRfull] = ACTIONS(6269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6269), - [anon_sym_BSLASHacs] = ACTIONS(6269), - [anon_sym_BSLASHAcs] = ACTIONS(6269), - [anon_sym_BSLASHacsp] = ACTIONS(6269), - [anon_sym_BSLASHAcsp] = ACTIONS(6269), - [anon_sym_BSLASHacl] = ACTIONS(6269), - [anon_sym_BSLASHAcl] = ACTIONS(6269), - [anon_sym_BSLASHaclp] = ACTIONS(6269), - [anon_sym_BSLASHAclp] = ACTIONS(6269), - [anon_sym_BSLASHacf] = ACTIONS(6269), - [anon_sym_BSLASHAcf] = ACTIONS(6269), - [anon_sym_BSLASHacfp] = ACTIONS(6269), - [anon_sym_BSLASHAcfp] = ACTIONS(6269), - [anon_sym_BSLASHac] = ACTIONS(6269), - [anon_sym_BSLASHAc] = ACTIONS(6269), - [anon_sym_BSLASHacp] = ACTIONS(6269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6269), - [anon_sym_BSLASHcolor] = ACTIONS(6269), - [anon_sym_BSLASHcolorbox] = ACTIONS(6269), - [anon_sym_BSLASHtextcolor] = ACTIONS(6269), - [anon_sym_BSLASHpagecolor] = ACTIONS(6269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6269), - [anon_sym_BSLASHtext] = ACTIONS(6269), - [anon_sym_BSLASHintertext] = ACTIONS(6269), - [anon_sym_shortintertext] = ACTIONS(6269), - }, - [1298] = { - [sym_command_name] = ACTIONS(6433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6433), - [anon_sym_LBRACK] = ACTIONS(6435), - [anon_sym_RBRACK] = ACTIONS(6435), - [anon_sym_COMMA] = ACTIONS(6435), - [anon_sym_EQ] = ACTIONS(6435), - [anon_sym_LPAREN] = ACTIONS(6435), - [anon_sym_RPAREN] = ACTIONS(6435), - [anon_sym_BSLASHpart] = ACTIONS(6433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddpart] = ACTIONS(6433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6435), - [anon_sym_BSLASHchapter] = ACTIONS(6433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddchap] = ACTIONS(6433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsection] = ACTIONS(6433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHaddsec] = ACTIONS(6433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubsection] = ACTIONS(6433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6435), - [anon_sym_BSLASHparagraph] = ACTIONS(6433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6435), - [anon_sym_BSLASHitem] = ACTIONS(6433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6435), - [anon_sym_LBRACE] = ACTIONS(6435), - [sym_word] = ACTIONS(6433), - [sym_placeholder] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6435), - [anon_sym_DASH] = ACTIONS(6435), - [anon_sym_STAR] = ACTIONS(6435), - [anon_sym_SLASH] = ACTIONS(6435), - [anon_sym_LT] = ACTIONS(6433), - [anon_sym_GT] = ACTIONS(6433), - [anon_sym_BANG] = ACTIONS(6433), - [anon_sym_PIPE] = ACTIONS(6433), - [anon_sym_COLON] = ACTIONS(6433), - [anon_sym_SQUOTE] = ACTIONS(6433), - [anon_sym__] = ACTIONS(6435), - [anon_sym_CARET] = ACTIONS(6435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6435), - [anon_sym_DOLLAR] = ACTIONS(6433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6435), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6435), - [anon_sym_BSLASHbegin] = ACTIONS(6433), - [anon_sym_BSLASHtitle] = ACTIONS(6433), - [anon_sym_BSLASHauthor] = ACTIONS(6433), - [anon_sym_BSLASHusepackage] = ACTIONS(6433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6433), - [anon_sym_BSLASHinclude] = ACTIONS(6433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6433), - [anon_sym_BSLASHinput] = ACTIONS(6433), - [anon_sym_BSLASHsubfile] = ACTIONS(6433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6433), - [anon_sym_BSLASHbibliography] = ACTIONS(6433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6433), - [anon_sym_BSLASHincludesvg] = ACTIONS(6433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6433), - [anon_sym_BSLASHimport] = ACTIONS(6433), - [anon_sym_BSLASHsubimport] = ACTIONS(6433), - [anon_sym_BSLASHinputfrom] = ACTIONS(6433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6433), - [anon_sym_BSLASHincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHcaption] = ACTIONS(6433), - [anon_sym_BSLASHcite] = ACTIONS(6433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCite] = ACTIONS(6433), - [anon_sym_BSLASHnocite] = ACTIONS(6433), - [anon_sym_BSLASHcitet] = ACTIONS(6433), - [anon_sym_BSLASHcitep] = ACTIONS(6433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteauthor] = ACTIONS(6433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitetitle] = ACTIONS(6433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteyear] = ACTIONS(6433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitedate] = ACTIONS(6433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteurl] = ACTIONS(6433), - [anon_sym_BSLASHfullcite] = ACTIONS(6433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6433), - [anon_sym_BSLASHcitealt] = ACTIONS(6433), - [anon_sym_BSLASHcitealp] = ACTIONS(6433), - [anon_sym_BSLASHcitetext] = ACTIONS(6433), - [anon_sym_BSLASHparencite] = ACTIONS(6433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHParencite] = ACTIONS(6433), - [anon_sym_BSLASHfootcite] = ACTIONS(6433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6433), - [anon_sym_BSLASHtextcite] = ACTIONS(6433), - [anon_sym_BSLASHTextcite] = ACTIONS(6433), - [anon_sym_BSLASHsmartcite] = ACTIONS(6433), - [anon_sym_BSLASHSmartcite] = ACTIONS(6433), - [anon_sym_BSLASHsupercite] = ACTIONS(6433), - [anon_sym_BSLASHautocite] = ACTIONS(6433), - [anon_sym_BSLASHAutocite] = ACTIONS(6433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHvolcite] = ACTIONS(6433), - [anon_sym_BSLASHVolcite] = ACTIONS(6433), - [anon_sym_BSLASHpvolcite] = ACTIONS(6433), - [anon_sym_BSLASHPvolcite] = ACTIONS(6433), - [anon_sym_BSLASHfvolcite] = ACTIONS(6433), - [anon_sym_BSLASHftvolcite] = ACTIONS(6433), - [anon_sym_BSLASHsvolcite] = ACTIONS(6433), - [anon_sym_BSLASHSvolcite] = ACTIONS(6433), - [anon_sym_BSLASHtvolcite] = ACTIONS(6433), - [anon_sym_BSLASHTvolcite] = ACTIONS(6433), - [anon_sym_BSLASHavolcite] = ACTIONS(6433), - [anon_sym_BSLASHAvolcite] = ACTIONS(6433), - [anon_sym_BSLASHnotecite] = ACTIONS(6433), - [anon_sym_BSLASHNotecite] = ACTIONS(6433), - [anon_sym_BSLASHpnotecite] = ACTIONS(6433), - [anon_sym_BSLASHPnotecite] = ACTIONS(6433), - [anon_sym_BSLASHfnotecite] = ACTIONS(6433), - [anon_sym_BSLASHlabel] = ACTIONS(6433), - [anon_sym_BSLASHref] = ACTIONS(6433), - [anon_sym_BSLASHeqref] = ACTIONS(6433), - [anon_sym_BSLASHvref] = ACTIONS(6433), - [anon_sym_BSLASHVref] = ACTIONS(6433), - [anon_sym_BSLASHautoref] = ACTIONS(6433), - [anon_sym_BSLASHpageref] = ACTIONS(6433), - [anon_sym_BSLASHcref] = ACTIONS(6433), - [anon_sym_BSLASHCref] = ACTIONS(6433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnameCref] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHlabelcref] = ACTIONS(6433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCrefrange] = ACTIONS(6433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnewlabel] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6435), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHdef] = ACTIONS(6433), - [anon_sym_BSLASHlet] = ACTIONS(6433), - [anon_sym_BSLASHleft] = ACTIONS(6433), - [anon_sym_BSLASHbig] = ACTIONS(6433), - [anon_sym_BSLASHBig] = ACTIONS(6433), - [anon_sym_BSLASHbigg] = ACTIONS(6433), - [anon_sym_BSLASHBigg] = ACTIONS(6433), - [anon_sym_BSLASHbigl] = ACTIONS(6433), - [anon_sym_BSLASHBigl] = ACTIONS(6433), - [anon_sym_BSLASHbiggl] = ACTIONS(6433), - [anon_sym_BSLASHBiggl] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6433), - [anon_sym_BSLASHgls] = ACTIONS(6433), - [anon_sym_BSLASHGls] = ACTIONS(6433), - [anon_sym_BSLASHGLS] = ACTIONS(6433), - [anon_sym_BSLASHglspl] = ACTIONS(6433), - [anon_sym_BSLASHGlspl] = ACTIONS(6433), - [anon_sym_BSLASHGLSpl] = ACTIONS(6433), - [anon_sym_BSLASHglsdisp] = ACTIONS(6433), - [anon_sym_BSLASHglslink] = ACTIONS(6433), - [anon_sym_BSLASHglstext] = ACTIONS(6433), - [anon_sym_BSLASHGlstext] = ACTIONS(6433), - [anon_sym_BSLASHGLStext] = ACTIONS(6433), - [anon_sym_BSLASHglsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6433), - [anon_sym_BSLASHglsplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSplural] = ACTIONS(6433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHglsname] = ACTIONS(6433), - [anon_sym_BSLASHGlsname] = ACTIONS(6433), - [anon_sym_BSLASHGLSname] = ACTIONS(6433), - [anon_sym_BSLASHglssymbol] = ACTIONS(6433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6433), - [anon_sym_BSLASHglsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6433), - [anon_sym_BSLASHglsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6433), - [anon_sym_BSLASHglsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6433), - [anon_sym_BSLASHglsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6433), - [anon_sym_BSLASHglsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6433), - [anon_sym_BSLASHnewacronym] = ACTIONS(6433), - [anon_sym_BSLASHacrshort] = ACTIONS(6433), - [anon_sym_BSLASHAcrshort] = ACTIONS(6433), - [anon_sym_BSLASHACRshort] = ACTIONS(6433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6433), - [anon_sym_BSLASHacrlong] = ACTIONS(6433), - [anon_sym_BSLASHAcrlong] = ACTIONS(6433), - [anon_sym_BSLASHACRlong] = ACTIONS(6433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6433), - [anon_sym_BSLASHacrfull] = ACTIONS(6433), - [anon_sym_BSLASHAcrfull] = ACTIONS(6433), - [anon_sym_BSLASHACRfull] = ACTIONS(6433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6433), - [anon_sym_BSLASHacs] = ACTIONS(6433), - [anon_sym_BSLASHAcs] = ACTIONS(6433), - [anon_sym_BSLASHacsp] = ACTIONS(6433), - [anon_sym_BSLASHAcsp] = ACTIONS(6433), - [anon_sym_BSLASHacl] = ACTIONS(6433), - [anon_sym_BSLASHAcl] = ACTIONS(6433), - [anon_sym_BSLASHaclp] = ACTIONS(6433), - [anon_sym_BSLASHAclp] = ACTIONS(6433), - [anon_sym_BSLASHacf] = ACTIONS(6433), - [anon_sym_BSLASHAcf] = ACTIONS(6433), - [anon_sym_BSLASHacfp] = ACTIONS(6433), - [anon_sym_BSLASHAcfp] = ACTIONS(6433), - [anon_sym_BSLASHac] = ACTIONS(6433), - [anon_sym_BSLASHAc] = ACTIONS(6433), - [anon_sym_BSLASHacp] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6433), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6433), - [anon_sym_BSLASHcolor] = ACTIONS(6433), - [anon_sym_BSLASHcolorbox] = ACTIONS(6433), - [anon_sym_BSLASHtextcolor] = ACTIONS(6433), - [anon_sym_BSLASHpagecolor] = ACTIONS(6433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6433), - [anon_sym_BSLASHtext] = ACTIONS(6433), - [anon_sym_BSLASHintertext] = ACTIONS(6433), - [anon_sym_shortintertext] = ACTIONS(6433), - }, - [1299] = { - [sym_command_name] = ACTIONS(6277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6277), - [anon_sym_LBRACK] = ACTIONS(6279), - [anon_sym_RBRACK] = ACTIONS(6279), - [anon_sym_COMMA] = ACTIONS(6279), - [anon_sym_EQ] = ACTIONS(6279), - [anon_sym_LPAREN] = ACTIONS(6279), - [anon_sym_RPAREN] = ACTIONS(6279), - [anon_sym_BSLASHpart] = ACTIONS(6277), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddpart] = ACTIONS(6277), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6279), - [anon_sym_BSLASHchapter] = ACTIONS(6277), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddchap] = ACTIONS(6277), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsection] = ACTIONS(6277), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddsec] = ACTIONS(6277), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubsection] = ACTIONS(6277), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6277), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHparagraph] = ACTIONS(6277), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6277), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6279), - [anon_sym_BSLASHitem] = ACTIONS(6277), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6279), - [anon_sym_LBRACE] = ACTIONS(6279), - [sym_word] = ACTIONS(6277), - [sym_placeholder] = ACTIONS(6279), - [anon_sym_PLUS] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6279), - [anon_sym_STAR] = ACTIONS(6279), - [anon_sym_SLASH] = ACTIONS(6279), - [anon_sym_LT] = ACTIONS(6277), - [anon_sym_GT] = ACTIONS(6277), - [anon_sym_BANG] = ACTIONS(6277), - [anon_sym_PIPE] = ACTIONS(6277), - [anon_sym_COLON] = ACTIONS(6277), - [anon_sym_SQUOTE] = ACTIONS(6277), - [anon_sym__] = ACTIONS(6279), - [anon_sym_CARET] = ACTIONS(6279), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6279), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6279), - [anon_sym_DOLLAR] = ACTIONS(6277), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6279), - [anon_sym_BSLASHbegin] = ACTIONS(6277), - [anon_sym_BSLASHtitle] = ACTIONS(6277), - [anon_sym_BSLASHauthor] = ACTIONS(6277), - [anon_sym_BSLASHusepackage] = ACTIONS(6277), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6277), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6277), - [anon_sym_BSLASHinclude] = ACTIONS(6277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6277), - [anon_sym_BSLASHinput] = ACTIONS(6277), - [anon_sym_BSLASHsubfile] = ACTIONS(6277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6277), - [anon_sym_BSLASHbibliography] = ACTIONS(6277), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6277), - [anon_sym_BSLASHincludesvg] = ACTIONS(6277), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6277), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6277), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6277), - [anon_sym_BSLASHimport] = ACTIONS(6277), - [anon_sym_BSLASHsubimport] = ACTIONS(6277), - [anon_sym_BSLASHinputfrom] = ACTIONS(6277), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6277), - [anon_sym_BSLASHincludefrom] = ACTIONS(6277), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6277), - [anon_sym_BSLASHcaption] = ACTIONS(6277), - [anon_sym_BSLASHcite] = ACTIONS(6277), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCite] = ACTIONS(6277), - [anon_sym_BSLASHnocite] = ACTIONS(6277), - [anon_sym_BSLASHcitet] = ACTIONS(6277), - [anon_sym_BSLASHcitep] = ACTIONS(6277), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteauthor] = ACTIONS(6277), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6277), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitetitle] = ACTIONS(6277), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteyear] = ACTIONS(6277), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitedate] = ACTIONS(6277), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteurl] = ACTIONS(6277), - [anon_sym_BSLASHfullcite] = ACTIONS(6277), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6277), - [anon_sym_BSLASHcitealt] = ACTIONS(6277), - [anon_sym_BSLASHcitealp] = ACTIONS(6277), - [anon_sym_BSLASHcitetext] = ACTIONS(6277), - [anon_sym_BSLASHparencite] = ACTIONS(6277), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHParencite] = ACTIONS(6277), - [anon_sym_BSLASHfootcite] = ACTIONS(6277), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6277), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6277), - [anon_sym_BSLASHtextcite] = ACTIONS(6277), - [anon_sym_BSLASHTextcite] = ACTIONS(6277), - [anon_sym_BSLASHsmartcite] = ACTIONS(6277), - [anon_sym_BSLASHSmartcite] = ACTIONS(6277), - [anon_sym_BSLASHsupercite] = ACTIONS(6277), - [anon_sym_BSLASHautocite] = ACTIONS(6277), - [anon_sym_BSLASHAutocite] = ACTIONS(6277), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHvolcite] = ACTIONS(6277), - [anon_sym_BSLASHVolcite] = ACTIONS(6277), - [anon_sym_BSLASHpvolcite] = ACTIONS(6277), - [anon_sym_BSLASHPvolcite] = ACTIONS(6277), - [anon_sym_BSLASHfvolcite] = ACTIONS(6277), - [anon_sym_BSLASHftvolcite] = ACTIONS(6277), - [anon_sym_BSLASHsvolcite] = ACTIONS(6277), - [anon_sym_BSLASHSvolcite] = ACTIONS(6277), - [anon_sym_BSLASHtvolcite] = ACTIONS(6277), - [anon_sym_BSLASHTvolcite] = ACTIONS(6277), - [anon_sym_BSLASHavolcite] = ACTIONS(6277), - [anon_sym_BSLASHAvolcite] = ACTIONS(6277), - [anon_sym_BSLASHnotecite] = ACTIONS(6277), - [anon_sym_BSLASHNotecite] = ACTIONS(6277), - [anon_sym_BSLASHpnotecite] = ACTIONS(6277), - [anon_sym_BSLASHPnotecite] = ACTIONS(6277), - [anon_sym_BSLASHfnotecite] = ACTIONS(6277), - [anon_sym_BSLASHlabel] = ACTIONS(6277), - [anon_sym_BSLASHref] = ACTIONS(6277), - [anon_sym_BSLASHeqref] = ACTIONS(6277), - [anon_sym_BSLASHvref] = ACTIONS(6277), - [anon_sym_BSLASHVref] = ACTIONS(6277), - [anon_sym_BSLASHautoref] = ACTIONS(6277), - [anon_sym_BSLASHpageref] = ACTIONS(6277), - [anon_sym_BSLASHcref] = ACTIONS(6277), - [anon_sym_BSLASHCref] = ACTIONS(6277), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6279), - [anon_sym_BSLASHnamecref] = ACTIONS(6277), - [anon_sym_BSLASHnameCref] = ACTIONS(6277), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6277), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6277), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6277), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6277), - [anon_sym_BSLASHlabelcref] = ACTIONS(6277), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6277), - [anon_sym_BSLASHcrefrange] = ACTIONS(6277), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCrefrange] = ACTIONS(6277), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6279), - [anon_sym_BSLASHnewlabel] = ACTIONS(6277), - [anon_sym_BSLASHnewcommand] = ACTIONS(6277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHdef] = ACTIONS(6277), - [anon_sym_BSLASHlet] = ACTIONS(6277), - [anon_sym_BSLASHleft] = ACTIONS(6277), - [anon_sym_BSLASHbig] = ACTIONS(6277), - [anon_sym_BSLASHBig] = ACTIONS(6277), - [anon_sym_BSLASHbigg] = ACTIONS(6277), - [anon_sym_BSLASHBigg] = ACTIONS(6277), - [anon_sym_BSLASHbigl] = ACTIONS(6277), - [anon_sym_BSLASHBigl] = ACTIONS(6277), - [anon_sym_BSLASHbiggl] = ACTIONS(6277), - [anon_sym_BSLASHBiggl] = ACTIONS(6277), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6277), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6277), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6277), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6277), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6277), - [anon_sym_BSLASHgls] = ACTIONS(6277), - [anon_sym_BSLASHGls] = ACTIONS(6277), - [anon_sym_BSLASHGLS] = ACTIONS(6277), - [anon_sym_BSLASHglspl] = ACTIONS(6277), - [anon_sym_BSLASHGlspl] = ACTIONS(6277), - [anon_sym_BSLASHGLSpl] = ACTIONS(6277), - [anon_sym_BSLASHglsdisp] = ACTIONS(6277), - [anon_sym_BSLASHglslink] = ACTIONS(6277), - [anon_sym_BSLASHglstext] = ACTIONS(6277), - [anon_sym_BSLASHGlstext] = ACTIONS(6277), - [anon_sym_BSLASHGLStext] = ACTIONS(6277), - [anon_sym_BSLASHglsfirst] = ACTIONS(6277), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6277), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6277), - [anon_sym_BSLASHglsplural] = ACTIONS(6277), - [anon_sym_BSLASHGlsplural] = ACTIONS(6277), - [anon_sym_BSLASHGLSplural] = ACTIONS(6277), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHglsname] = ACTIONS(6277), - [anon_sym_BSLASHGlsname] = ACTIONS(6277), - [anon_sym_BSLASHGLSname] = ACTIONS(6277), - [anon_sym_BSLASHglssymbol] = ACTIONS(6277), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6277), - [anon_sym_BSLASHglsdesc] = ACTIONS(6277), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6277), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6277), - [anon_sym_BSLASHglsuseri] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6277), - [anon_sym_BSLASHglsuserii] = ACTIONS(6277), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6277), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6277), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6277), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6277), - [anon_sym_BSLASHglsuserv] = ACTIONS(6277), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6277), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6277), - [anon_sym_BSLASHglsuservi] = ACTIONS(6277), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6277), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6277), - [anon_sym_BSLASHnewacronym] = ACTIONS(6277), - [anon_sym_BSLASHacrshort] = ACTIONS(6277), - [anon_sym_BSLASHAcrshort] = ACTIONS(6277), - [anon_sym_BSLASHACRshort] = ACTIONS(6277), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6277), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6277), - [anon_sym_BSLASHacrlong] = ACTIONS(6277), - [anon_sym_BSLASHAcrlong] = ACTIONS(6277), - [anon_sym_BSLASHACRlong] = ACTIONS(6277), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6277), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6277), - [anon_sym_BSLASHacrfull] = ACTIONS(6277), - [anon_sym_BSLASHAcrfull] = ACTIONS(6277), - [anon_sym_BSLASHACRfull] = ACTIONS(6277), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6277), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6277), - [anon_sym_BSLASHacs] = ACTIONS(6277), - [anon_sym_BSLASHAcs] = ACTIONS(6277), - [anon_sym_BSLASHacsp] = ACTIONS(6277), - [anon_sym_BSLASHAcsp] = ACTIONS(6277), - [anon_sym_BSLASHacl] = ACTIONS(6277), - [anon_sym_BSLASHAcl] = ACTIONS(6277), - [anon_sym_BSLASHaclp] = ACTIONS(6277), - [anon_sym_BSLASHAclp] = ACTIONS(6277), - [anon_sym_BSLASHacf] = ACTIONS(6277), - [anon_sym_BSLASHAcf] = ACTIONS(6277), - [anon_sym_BSLASHacfp] = ACTIONS(6277), - [anon_sym_BSLASHAcfp] = ACTIONS(6277), - [anon_sym_BSLASHac] = ACTIONS(6277), - [anon_sym_BSLASHAc] = ACTIONS(6277), - [anon_sym_BSLASHacp] = ACTIONS(6277), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6277), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6277), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6277), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6277), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6277), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6277), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6277), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6279), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6277), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6279), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6277), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6277), - [anon_sym_BSLASHcolor] = ACTIONS(6277), - [anon_sym_BSLASHcolorbox] = ACTIONS(6277), - [anon_sym_BSLASHtextcolor] = ACTIONS(6277), - [anon_sym_BSLASHpagecolor] = ACTIONS(6277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6277), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6277), - [anon_sym_BSLASHtext] = ACTIONS(6277), - [anon_sym_BSLASHintertext] = ACTIONS(6277), - [anon_sym_shortintertext] = ACTIONS(6277), - }, - [1300] = { - [sym_command_name] = ACTIONS(6177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6177), - [anon_sym_LBRACK] = ACTIONS(6179), - [anon_sym_RBRACK] = ACTIONS(6179), - [anon_sym_COMMA] = ACTIONS(6179), - [anon_sym_EQ] = ACTIONS(6179), - [anon_sym_LPAREN] = ACTIONS(6179), - [anon_sym_RPAREN] = ACTIONS(6179), - [anon_sym_BSLASHpart] = ACTIONS(6177), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddpart] = ACTIONS(6177), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6179), - [anon_sym_BSLASHchapter] = ACTIONS(6177), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddchap] = ACTIONS(6177), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsection] = ACTIONS(6177), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHaddsec] = ACTIONS(6177), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubsection] = ACTIONS(6177), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6177), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6179), - [anon_sym_BSLASHparagraph] = ACTIONS(6177), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6179), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6177), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6179), - [anon_sym_BSLASHitem] = ACTIONS(6177), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6179), - [anon_sym_LBRACE] = ACTIONS(6179), - [sym_word] = ACTIONS(6177), - [sym_placeholder] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6179), - [anon_sym_DASH] = ACTIONS(6179), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6177), - [anon_sym_GT] = ACTIONS(6177), - [anon_sym_BANG] = ACTIONS(6177), - [anon_sym_PIPE] = ACTIONS(6177), - [anon_sym_COLON] = ACTIONS(6177), - [anon_sym_SQUOTE] = ACTIONS(6177), - [anon_sym__] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), - [anon_sym_DOLLAR] = ACTIONS(6177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6179), - [anon_sym_BSLASHbegin] = ACTIONS(6177), - [anon_sym_BSLASHtitle] = ACTIONS(6177), - [anon_sym_BSLASHauthor] = ACTIONS(6177), - [anon_sym_BSLASHusepackage] = ACTIONS(6177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6177), - [anon_sym_BSLASHinclude] = ACTIONS(6177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6177), - [anon_sym_BSLASHinput] = ACTIONS(6177), - [anon_sym_BSLASHsubfile] = ACTIONS(6177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6177), - [anon_sym_BSLASHbibliography] = ACTIONS(6177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6177), - [anon_sym_BSLASHincludesvg] = ACTIONS(6177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6177), - [anon_sym_BSLASHimport] = ACTIONS(6177), - [anon_sym_BSLASHsubimport] = ACTIONS(6177), - [anon_sym_BSLASHinputfrom] = ACTIONS(6177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6177), - [anon_sym_BSLASHincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHcaption] = ACTIONS(6177), - [anon_sym_BSLASHcite] = ACTIONS(6177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCite] = ACTIONS(6177), - [anon_sym_BSLASHnocite] = ACTIONS(6177), - [anon_sym_BSLASHcitet] = ACTIONS(6177), - [anon_sym_BSLASHcitep] = ACTIONS(6177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteauthor] = ACTIONS(6177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitetitle] = ACTIONS(6177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteyear] = ACTIONS(6177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitedate] = ACTIONS(6177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteurl] = ACTIONS(6177), - [anon_sym_BSLASHfullcite] = ACTIONS(6177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6177), - [anon_sym_BSLASHcitealt] = ACTIONS(6177), - [anon_sym_BSLASHcitealp] = ACTIONS(6177), - [anon_sym_BSLASHcitetext] = ACTIONS(6177), - [anon_sym_BSLASHparencite] = ACTIONS(6177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHParencite] = ACTIONS(6177), - [anon_sym_BSLASHfootcite] = ACTIONS(6177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6177), - [anon_sym_BSLASHtextcite] = ACTIONS(6177), - [anon_sym_BSLASHTextcite] = ACTIONS(6177), - [anon_sym_BSLASHsmartcite] = ACTIONS(6177), - [anon_sym_BSLASHSmartcite] = ACTIONS(6177), - [anon_sym_BSLASHsupercite] = ACTIONS(6177), - [anon_sym_BSLASHautocite] = ACTIONS(6177), - [anon_sym_BSLASHAutocite] = ACTIONS(6177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHvolcite] = ACTIONS(6177), - [anon_sym_BSLASHVolcite] = ACTIONS(6177), - [anon_sym_BSLASHpvolcite] = ACTIONS(6177), - [anon_sym_BSLASHPvolcite] = ACTIONS(6177), - [anon_sym_BSLASHfvolcite] = ACTIONS(6177), - [anon_sym_BSLASHftvolcite] = ACTIONS(6177), - [anon_sym_BSLASHsvolcite] = ACTIONS(6177), - [anon_sym_BSLASHSvolcite] = ACTIONS(6177), - [anon_sym_BSLASHtvolcite] = ACTIONS(6177), - [anon_sym_BSLASHTvolcite] = ACTIONS(6177), - [anon_sym_BSLASHavolcite] = ACTIONS(6177), - [anon_sym_BSLASHAvolcite] = ACTIONS(6177), - [anon_sym_BSLASHnotecite] = ACTIONS(6177), - [anon_sym_BSLASHNotecite] = ACTIONS(6177), - [anon_sym_BSLASHpnotecite] = ACTIONS(6177), - [anon_sym_BSLASHPnotecite] = ACTIONS(6177), - [anon_sym_BSLASHfnotecite] = ACTIONS(6177), - [anon_sym_BSLASHlabel] = ACTIONS(6177), - [anon_sym_BSLASHref] = ACTIONS(6177), - [anon_sym_BSLASHeqref] = ACTIONS(6177), - [anon_sym_BSLASHvref] = ACTIONS(6177), - [anon_sym_BSLASHVref] = ACTIONS(6177), - [anon_sym_BSLASHautoref] = ACTIONS(6177), - [anon_sym_BSLASHpageref] = ACTIONS(6177), - [anon_sym_BSLASHcref] = ACTIONS(6177), - [anon_sym_BSLASHCref] = ACTIONS(6177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnameCref] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHlabelcref] = ACTIONS(6177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCrefrange] = ACTIONS(6177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnewlabel] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHdef] = ACTIONS(6177), - [anon_sym_BSLASHlet] = ACTIONS(6177), - [anon_sym_BSLASHleft] = ACTIONS(6177), - [anon_sym_BSLASHbig] = ACTIONS(6177), - [anon_sym_BSLASHBig] = ACTIONS(6177), - [anon_sym_BSLASHbigg] = ACTIONS(6177), - [anon_sym_BSLASHBigg] = ACTIONS(6177), - [anon_sym_BSLASHbigl] = ACTIONS(6177), - [anon_sym_BSLASHBigl] = ACTIONS(6177), - [anon_sym_BSLASHbiggl] = ACTIONS(6177), - [anon_sym_BSLASHBiggl] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6177), - [anon_sym_BSLASHgls] = ACTIONS(6177), - [anon_sym_BSLASHGls] = ACTIONS(6177), - [anon_sym_BSLASHGLS] = ACTIONS(6177), - [anon_sym_BSLASHglspl] = ACTIONS(6177), - [anon_sym_BSLASHGlspl] = ACTIONS(6177), - [anon_sym_BSLASHGLSpl] = ACTIONS(6177), - [anon_sym_BSLASHglsdisp] = ACTIONS(6177), - [anon_sym_BSLASHglslink] = ACTIONS(6177), - [anon_sym_BSLASHglstext] = ACTIONS(6177), - [anon_sym_BSLASHGlstext] = ACTIONS(6177), - [anon_sym_BSLASHGLStext] = ACTIONS(6177), - [anon_sym_BSLASHglsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6177), - [anon_sym_BSLASHglsplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSplural] = ACTIONS(6177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHglsname] = ACTIONS(6177), - [anon_sym_BSLASHGlsname] = ACTIONS(6177), - [anon_sym_BSLASHGLSname] = ACTIONS(6177), - [anon_sym_BSLASHglssymbol] = ACTIONS(6177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6177), - [anon_sym_BSLASHglsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6177), - [anon_sym_BSLASHglsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6177), - [anon_sym_BSLASHglsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6177), - [anon_sym_BSLASHglsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6177), - [anon_sym_BSLASHglsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6177), - [anon_sym_BSLASHnewacronym] = ACTIONS(6177), - [anon_sym_BSLASHacrshort] = ACTIONS(6177), - [anon_sym_BSLASHAcrshort] = ACTIONS(6177), - [anon_sym_BSLASHACRshort] = ACTIONS(6177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6177), - [anon_sym_BSLASHacrlong] = ACTIONS(6177), - [anon_sym_BSLASHAcrlong] = ACTIONS(6177), - [anon_sym_BSLASHACRlong] = ACTIONS(6177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6177), - [anon_sym_BSLASHacrfull] = ACTIONS(6177), - [anon_sym_BSLASHAcrfull] = ACTIONS(6177), - [anon_sym_BSLASHACRfull] = ACTIONS(6177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6177), - [anon_sym_BSLASHacs] = ACTIONS(6177), - [anon_sym_BSLASHAcs] = ACTIONS(6177), - [anon_sym_BSLASHacsp] = ACTIONS(6177), - [anon_sym_BSLASHAcsp] = ACTIONS(6177), - [anon_sym_BSLASHacl] = ACTIONS(6177), - [anon_sym_BSLASHAcl] = ACTIONS(6177), - [anon_sym_BSLASHaclp] = ACTIONS(6177), - [anon_sym_BSLASHAclp] = ACTIONS(6177), - [anon_sym_BSLASHacf] = ACTIONS(6177), - [anon_sym_BSLASHAcf] = ACTIONS(6177), - [anon_sym_BSLASHacfp] = ACTIONS(6177), - [anon_sym_BSLASHAcfp] = ACTIONS(6177), - [anon_sym_BSLASHac] = ACTIONS(6177), - [anon_sym_BSLASHAc] = ACTIONS(6177), - [anon_sym_BSLASHacp] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6177), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6177), - [anon_sym_BSLASHcolor] = ACTIONS(6177), - [anon_sym_BSLASHcolorbox] = ACTIONS(6177), - [anon_sym_BSLASHtextcolor] = ACTIONS(6177), - [anon_sym_BSLASHpagecolor] = ACTIONS(6177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6177), - [anon_sym_BSLASHtext] = ACTIONS(6177), - [anon_sym_BSLASHintertext] = ACTIONS(6177), - [anon_sym_shortintertext] = ACTIONS(6177), - }, - [1301] = { - [sym_command_name] = ACTIONS(6281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6281), - [anon_sym_LBRACK] = ACTIONS(6283), - [anon_sym_RBRACK] = ACTIONS(6283), - [anon_sym_COMMA] = ACTIONS(6283), - [anon_sym_EQ] = ACTIONS(6283), - [anon_sym_LPAREN] = ACTIONS(6283), - [anon_sym_RPAREN] = ACTIONS(6283), - [anon_sym_BSLASHpart] = ACTIONS(6281), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddpart] = ACTIONS(6281), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6283), - [anon_sym_BSLASHchapter] = ACTIONS(6281), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddchap] = ACTIONS(6281), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsection] = ACTIONS(6281), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddsec] = ACTIONS(6281), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubsection] = ACTIONS(6281), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6281), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHparagraph] = ACTIONS(6281), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6281), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6283), - [anon_sym_BSLASHitem] = ACTIONS(6281), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6283), - [anon_sym_LBRACE] = ACTIONS(6283), - [sym_word] = ACTIONS(6281), - [sym_placeholder] = ACTIONS(6283), - [anon_sym_PLUS] = ACTIONS(6283), - [anon_sym_DASH] = ACTIONS(6283), - [anon_sym_STAR] = ACTIONS(6283), - [anon_sym_SLASH] = ACTIONS(6283), - [anon_sym_LT] = ACTIONS(6281), - [anon_sym_GT] = ACTIONS(6281), - [anon_sym_BANG] = ACTIONS(6281), - [anon_sym_PIPE] = ACTIONS(6281), - [anon_sym_COLON] = ACTIONS(6281), - [anon_sym_SQUOTE] = ACTIONS(6281), - [anon_sym__] = ACTIONS(6283), - [anon_sym_CARET] = ACTIONS(6283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6283), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6283), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6283), - [anon_sym_DOLLAR] = ACTIONS(6281), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6283), - [anon_sym_BSLASHbegin] = ACTIONS(6281), - [anon_sym_BSLASHtitle] = ACTIONS(6281), - [anon_sym_BSLASHauthor] = ACTIONS(6281), - [anon_sym_BSLASHusepackage] = ACTIONS(6281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6281), - [anon_sym_BSLASHinclude] = ACTIONS(6281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6281), - [anon_sym_BSLASHinput] = ACTIONS(6281), - [anon_sym_BSLASHsubfile] = ACTIONS(6281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6281), - [anon_sym_BSLASHbibliography] = ACTIONS(6281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6281), - [anon_sym_BSLASHincludesvg] = ACTIONS(6281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6281), - [anon_sym_BSLASHimport] = ACTIONS(6281), - [anon_sym_BSLASHsubimport] = ACTIONS(6281), - [anon_sym_BSLASHinputfrom] = ACTIONS(6281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6281), - [anon_sym_BSLASHincludefrom] = ACTIONS(6281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6281), - [anon_sym_BSLASHcaption] = ACTIONS(6281), - [anon_sym_BSLASHcite] = ACTIONS(6281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCite] = ACTIONS(6281), - [anon_sym_BSLASHnocite] = ACTIONS(6281), - [anon_sym_BSLASHcitet] = ACTIONS(6281), - [anon_sym_BSLASHcitep] = ACTIONS(6281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteauthor] = ACTIONS(6281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitetitle] = ACTIONS(6281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteyear] = ACTIONS(6281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitedate] = ACTIONS(6281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteurl] = ACTIONS(6281), - [anon_sym_BSLASHfullcite] = ACTIONS(6281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6281), - [anon_sym_BSLASHcitealt] = ACTIONS(6281), - [anon_sym_BSLASHcitealp] = ACTIONS(6281), - [anon_sym_BSLASHcitetext] = ACTIONS(6281), - [anon_sym_BSLASHparencite] = ACTIONS(6281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHParencite] = ACTIONS(6281), - [anon_sym_BSLASHfootcite] = ACTIONS(6281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6281), - [anon_sym_BSLASHtextcite] = ACTIONS(6281), - [anon_sym_BSLASHTextcite] = ACTIONS(6281), - [anon_sym_BSLASHsmartcite] = ACTIONS(6281), - [anon_sym_BSLASHSmartcite] = ACTIONS(6281), - [anon_sym_BSLASHsupercite] = ACTIONS(6281), - [anon_sym_BSLASHautocite] = ACTIONS(6281), - [anon_sym_BSLASHAutocite] = ACTIONS(6281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHvolcite] = ACTIONS(6281), - [anon_sym_BSLASHVolcite] = ACTIONS(6281), - [anon_sym_BSLASHpvolcite] = ACTIONS(6281), - [anon_sym_BSLASHPvolcite] = ACTIONS(6281), - [anon_sym_BSLASHfvolcite] = ACTIONS(6281), - [anon_sym_BSLASHftvolcite] = ACTIONS(6281), - [anon_sym_BSLASHsvolcite] = ACTIONS(6281), - [anon_sym_BSLASHSvolcite] = ACTIONS(6281), - [anon_sym_BSLASHtvolcite] = ACTIONS(6281), - [anon_sym_BSLASHTvolcite] = ACTIONS(6281), - [anon_sym_BSLASHavolcite] = ACTIONS(6281), - [anon_sym_BSLASHAvolcite] = ACTIONS(6281), - [anon_sym_BSLASHnotecite] = ACTIONS(6281), - [anon_sym_BSLASHNotecite] = ACTIONS(6281), - [anon_sym_BSLASHpnotecite] = ACTIONS(6281), - [anon_sym_BSLASHPnotecite] = ACTIONS(6281), - [anon_sym_BSLASHfnotecite] = ACTIONS(6281), - [anon_sym_BSLASHlabel] = ACTIONS(6281), - [anon_sym_BSLASHref] = ACTIONS(6281), - [anon_sym_BSLASHeqref] = ACTIONS(6281), - [anon_sym_BSLASHvref] = ACTIONS(6281), - [anon_sym_BSLASHVref] = ACTIONS(6281), - [anon_sym_BSLASHautoref] = ACTIONS(6281), - [anon_sym_BSLASHpageref] = ACTIONS(6281), - [anon_sym_BSLASHcref] = ACTIONS(6281), - [anon_sym_BSLASHCref] = ACTIONS(6281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6283), - [anon_sym_BSLASHnamecref] = ACTIONS(6281), - [anon_sym_BSLASHnameCref] = ACTIONS(6281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6281), - [anon_sym_BSLASHlabelcref] = ACTIONS(6281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6281), - [anon_sym_BSLASHcrefrange] = ACTIONS(6281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCrefrange] = ACTIONS(6281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6283), - [anon_sym_BSLASHnewlabel] = ACTIONS(6281), - [anon_sym_BSLASHnewcommand] = ACTIONS(6281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6283), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHdef] = ACTIONS(6281), - [anon_sym_BSLASHlet] = ACTIONS(6281), - [anon_sym_BSLASHleft] = ACTIONS(6281), - [anon_sym_BSLASHbig] = ACTIONS(6281), - [anon_sym_BSLASHBig] = ACTIONS(6281), - [anon_sym_BSLASHbigg] = ACTIONS(6281), - [anon_sym_BSLASHBigg] = ACTIONS(6281), - [anon_sym_BSLASHbigl] = ACTIONS(6281), - [anon_sym_BSLASHBigl] = ACTIONS(6281), - [anon_sym_BSLASHbiggl] = ACTIONS(6281), - [anon_sym_BSLASHBiggl] = ACTIONS(6281), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6281), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6281), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6281), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6281), - [anon_sym_BSLASHgls] = ACTIONS(6281), - [anon_sym_BSLASHGls] = ACTIONS(6281), - [anon_sym_BSLASHGLS] = ACTIONS(6281), - [anon_sym_BSLASHglspl] = ACTIONS(6281), - [anon_sym_BSLASHGlspl] = ACTIONS(6281), - [anon_sym_BSLASHGLSpl] = ACTIONS(6281), - [anon_sym_BSLASHglsdisp] = ACTIONS(6281), - [anon_sym_BSLASHglslink] = ACTIONS(6281), - [anon_sym_BSLASHglstext] = ACTIONS(6281), - [anon_sym_BSLASHGlstext] = ACTIONS(6281), - [anon_sym_BSLASHGLStext] = ACTIONS(6281), - [anon_sym_BSLASHglsfirst] = ACTIONS(6281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6281), - [anon_sym_BSLASHglsplural] = ACTIONS(6281), - [anon_sym_BSLASHGlsplural] = ACTIONS(6281), - [anon_sym_BSLASHGLSplural] = ACTIONS(6281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHglsname] = ACTIONS(6281), - [anon_sym_BSLASHGlsname] = ACTIONS(6281), - [anon_sym_BSLASHGLSname] = ACTIONS(6281), - [anon_sym_BSLASHglssymbol] = ACTIONS(6281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6281), - [anon_sym_BSLASHglsdesc] = ACTIONS(6281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6281), - [anon_sym_BSLASHglsuseri] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6281), - [anon_sym_BSLASHglsuserii] = ACTIONS(6281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6281), - [anon_sym_BSLASHglsuserv] = ACTIONS(6281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6281), - [anon_sym_BSLASHglsuservi] = ACTIONS(6281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6281), - [anon_sym_BSLASHnewacronym] = ACTIONS(6281), - [anon_sym_BSLASHacrshort] = ACTIONS(6281), - [anon_sym_BSLASHAcrshort] = ACTIONS(6281), - [anon_sym_BSLASHACRshort] = ACTIONS(6281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6281), - [anon_sym_BSLASHacrlong] = ACTIONS(6281), - [anon_sym_BSLASHAcrlong] = ACTIONS(6281), - [anon_sym_BSLASHACRlong] = ACTIONS(6281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6281), - [anon_sym_BSLASHacrfull] = ACTIONS(6281), - [anon_sym_BSLASHAcrfull] = ACTIONS(6281), - [anon_sym_BSLASHACRfull] = ACTIONS(6281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6281), - [anon_sym_BSLASHacs] = ACTIONS(6281), - [anon_sym_BSLASHAcs] = ACTIONS(6281), - [anon_sym_BSLASHacsp] = ACTIONS(6281), - [anon_sym_BSLASHAcsp] = ACTIONS(6281), - [anon_sym_BSLASHacl] = ACTIONS(6281), - [anon_sym_BSLASHAcl] = ACTIONS(6281), - [anon_sym_BSLASHaclp] = ACTIONS(6281), - [anon_sym_BSLASHAclp] = ACTIONS(6281), - [anon_sym_BSLASHacf] = ACTIONS(6281), - [anon_sym_BSLASHAcf] = ACTIONS(6281), - [anon_sym_BSLASHacfp] = ACTIONS(6281), - [anon_sym_BSLASHAcfp] = ACTIONS(6281), - [anon_sym_BSLASHac] = ACTIONS(6281), - [anon_sym_BSLASHAc] = ACTIONS(6281), - [anon_sym_BSLASHacp] = ACTIONS(6281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6281), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6283), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6281), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6283), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6281), - [anon_sym_BSLASHcolor] = ACTIONS(6281), - [anon_sym_BSLASHcolorbox] = ACTIONS(6281), - [anon_sym_BSLASHtextcolor] = ACTIONS(6281), - [anon_sym_BSLASHpagecolor] = ACTIONS(6281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6281), - [anon_sym_BSLASHtext] = ACTIONS(6281), - [anon_sym_BSLASHintertext] = ACTIONS(6281), - [anon_sym_shortintertext] = ACTIONS(6281), - }, - [1302] = { - [sym_command_name] = ACTIONS(6425), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6425), - [anon_sym_LBRACK] = ACTIONS(6427), - [anon_sym_RBRACK] = ACTIONS(6427), - [anon_sym_COMMA] = ACTIONS(6427), - [anon_sym_EQ] = ACTIONS(6427), - [anon_sym_LPAREN] = ACTIONS(6427), - [anon_sym_RPAREN] = ACTIONS(6427), - [anon_sym_BSLASHpart] = ACTIONS(6425), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddpart] = ACTIONS(6425), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6427), - [anon_sym_BSLASHchapter] = ACTIONS(6425), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddchap] = ACTIONS(6425), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsection] = ACTIONS(6425), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHaddsec] = ACTIONS(6425), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubsection] = ACTIONS(6425), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6425), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6427), - [anon_sym_BSLASHparagraph] = ACTIONS(6425), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6427), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6425), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6427), - [anon_sym_BSLASHitem] = ACTIONS(6425), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6427), - [anon_sym_LBRACE] = ACTIONS(6427), - [sym_word] = ACTIONS(6425), - [sym_placeholder] = ACTIONS(6427), - [anon_sym_PLUS] = ACTIONS(6427), - [anon_sym_DASH] = ACTIONS(6427), - [anon_sym_STAR] = ACTIONS(6427), - [anon_sym_SLASH] = ACTIONS(6427), - [anon_sym_LT] = ACTIONS(6425), - [anon_sym_GT] = ACTIONS(6425), - [anon_sym_BANG] = ACTIONS(6425), - [anon_sym_PIPE] = ACTIONS(6425), - [anon_sym_COLON] = ACTIONS(6425), - [anon_sym_SQUOTE] = ACTIONS(6425), - [anon_sym__] = ACTIONS(6427), - [anon_sym_CARET] = ACTIONS(6427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6427), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6427), - [anon_sym_DOLLAR] = ACTIONS(6425), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6427), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6427), - [anon_sym_BSLASHbegin] = ACTIONS(6425), - [anon_sym_BSLASHtitle] = ACTIONS(6425), - [anon_sym_BSLASHauthor] = ACTIONS(6425), - [anon_sym_BSLASHusepackage] = ACTIONS(6425), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6425), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6425), - [anon_sym_BSLASHinclude] = ACTIONS(6425), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6425), - [anon_sym_BSLASHinput] = ACTIONS(6425), - [anon_sym_BSLASHsubfile] = ACTIONS(6425), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6425), - [anon_sym_BSLASHbibliography] = ACTIONS(6425), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6425), - [anon_sym_BSLASHincludesvg] = ACTIONS(6425), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6425), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6425), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6425), - [anon_sym_BSLASHimport] = ACTIONS(6425), - [anon_sym_BSLASHsubimport] = ACTIONS(6425), - [anon_sym_BSLASHinputfrom] = ACTIONS(6425), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6425), - [anon_sym_BSLASHincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHcaption] = ACTIONS(6425), - [anon_sym_BSLASHcite] = ACTIONS(6425), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCite] = ACTIONS(6425), - [anon_sym_BSLASHnocite] = ACTIONS(6425), - [anon_sym_BSLASHcitet] = ACTIONS(6425), - [anon_sym_BSLASHcitep] = ACTIONS(6425), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteauthor] = ACTIONS(6425), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6425), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitetitle] = ACTIONS(6425), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteyear] = ACTIONS(6425), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitedate] = ACTIONS(6425), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteurl] = ACTIONS(6425), - [anon_sym_BSLASHfullcite] = ACTIONS(6425), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6425), - [anon_sym_BSLASHcitealt] = ACTIONS(6425), - [anon_sym_BSLASHcitealp] = ACTIONS(6425), - [anon_sym_BSLASHcitetext] = ACTIONS(6425), - [anon_sym_BSLASHparencite] = ACTIONS(6425), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHParencite] = ACTIONS(6425), - [anon_sym_BSLASHfootcite] = ACTIONS(6425), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6425), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6425), - [anon_sym_BSLASHtextcite] = ACTIONS(6425), - [anon_sym_BSLASHTextcite] = ACTIONS(6425), - [anon_sym_BSLASHsmartcite] = ACTIONS(6425), - [anon_sym_BSLASHSmartcite] = ACTIONS(6425), - [anon_sym_BSLASHsupercite] = ACTIONS(6425), - [anon_sym_BSLASHautocite] = ACTIONS(6425), - [anon_sym_BSLASHAutocite] = ACTIONS(6425), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHvolcite] = ACTIONS(6425), - [anon_sym_BSLASHVolcite] = ACTIONS(6425), - [anon_sym_BSLASHpvolcite] = ACTIONS(6425), - [anon_sym_BSLASHPvolcite] = ACTIONS(6425), - [anon_sym_BSLASHfvolcite] = ACTIONS(6425), - [anon_sym_BSLASHftvolcite] = ACTIONS(6425), - [anon_sym_BSLASHsvolcite] = ACTIONS(6425), - [anon_sym_BSLASHSvolcite] = ACTIONS(6425), - [anon_sym_BSLASHtvolcite] = ACTIONS(6425), - [anon_sym_BSLASHTvolcite] = ACTIONS(6425), - [anon_sym_BSLASHavolcite] = ACTIONS(6425), - [anon_sym_BSLASHAvolcite] = ACTIONS(6425), - [anon_sym_BSLASHnotecite] = ACTIONS(6425), - [anon_sym_BSLASHNotecite] = ACTIONS(6425), - [anon_sym_BSLASHpnotecite] = ACTIONS(6425), - [anon_sym_BSLASHPnotecite] = ACTIONS(6425), - [anon_sym_BSLASHfnotecite] = ACTIONS(6425), - [anon_sym_BSLASHlabel] = ACTIONS(6425), - [anon_sym_BSLASHref] = ACTIONS(6425), - [anon_sym_BSLASHeqref] = ACTIONS(6425), - [anon_sym_BSLASHvref] = ACTIONS(6425), - [anon_sym_BSLASHVref] = ACTIONS(6425), - [anon_sym_BSLASHautoref] = ACTIONS(6425), - [anon_sym_BSLASHpageref] = ACTIONS(6425), - [anon_sym_BSLASHcref] = ACTIONS(6425), - [anon_sym_BSLASHCref] = ACTIONS(6425), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnameCref] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHlabelcref] = ACTIONS(6425), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCrefrange] = ACTIONS(6425), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnewlabel] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6425), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6425), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6427), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHdef] = ACTIONS(6425), - [anon_sym_BSLASHlet] = ACTIONS(6425), - [anon_sym_BSLASHleft] = ACTIONS(6425), - [anon_sym_BSLASHbig] = ACTIONS(6425), - [anon_sym_BSLASHBig] = ACTIONS(6425), - [anon_sym_BSLASHbigg] = ACTIONS(6425), - [anon_sym_BSLASHBigg] = ACTIONS(6425), - [anon_sym_BSLASHbigl] = ACTIONS(6425), - [anon_sym_BSLASHBigl] = ACTIONS(6425), - [anon_sym_BSLASHbiggl] = ACTIONS(6425), - [anon_sym_BSLASHBiggl] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6425), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6425), - [anon_sym_BSLASHgls] = ACTIONS(6425), - [anon_sym_BSLASHGls] = ACTIONS(6425), - [anon_sym_BSLASHGLS] = ACTIONS(6425), - [anon_sym_BSLASHglspl] = ACTIONS(6425), - [anon_sym_BSLASHGlspl] = ACTIONS(6425), - [anon_sym_BSLASHGLSpl] = ACTIONS(6425), - [anon_sym_BSLASHglsdisp] = ACTIONS(6425), - [anon_sym_BSLASHglslink] = ACTIONS(6425), - [anon_sym_BSLASHglstext] = ACTIONS(6425), - [anon_sym_BSLASHGlstext] = ACTIONS(6425), - [anon_sym_BSLASHGLStext] = ACTIONS(6425), - [anon_sym_BSLASHglsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6425), - [anon_sym_BSLASHglsplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSplural] = ACTIONS(6425), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHglsname] = ACTIONS(6425), - [anon_sym_BSLASHGlsname] = ACTIONS(6425), - [anon_sym_BSLASHGLSname] = ACTIONS(6425), - [anon_sym_BSLASHglssymbol] = ACTIONS(6425), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6425), - [anon_sym_BSLASHglsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6425), - [anon_sym_BSLASHglsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6425), - [anon_sym_BSLASHglsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6425), - [anon_sym_BSLASHglsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6425), - [anon_sym_BSLASHglsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6425), - [anon_sym_BSLASHnewacronym] = ACTIONS(6425), - [anon_sym_BSLASHacrshort] = ACTIONS(6425), - [anon_sym_BSLASHAcrshort] = ACTIONS(6425), - [anon_sym_BSLASHACRshort] = ACTIONS(6425), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6425), - [anon_sym_BSLASHacrlong] = ACTIONS(6425), - [anon_sym_BSLASHAcrlong] = ACTIONS(6425), - [anon_sym_BSLASHACRlong] = ACTIONS(6425), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6425), - [anon_sym_BSLASHacrfull] = ACTIONS(6425), - [anon_sym_BSLASHAcrfull] = ACTIONS(6425), - [anon_sym_BSLASHACRfull] = ACTIONS(6425), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6425), - [anon_sym_BSLASHacs] = ACTIONS(6425), - [anon_sym_BSLASHAcs] = ACTIONS(6425), - [anon_sym_BSLASHacsp] = ACTIONS(6425), - [anon_sym_BSLASHAcsp] = ACTIONS(6425), - [anon_sym_BSLASHacl] = ACTIONS(6425), - [anon_sym_BSLASHAcl] = ACTIONS(6425), - [anon_sym_BSLASHaclp] = ACTIONS(6425), - [anon_sym_BSLASHAclp] = ACTIONS(6425), - [anon_sym_BSLASHacf] = ACTIONS(6425), - [anon_sym_BSLASHAcf] = ACTIONS(6425), - [anon_sym_BSLASHacfp] = ACTIONS(6425), - [anon_sym_BSLASHAcfp] = ACTIONS(6425), - [anon_sym_BSLASHac] = ACTIONS(6425), - [anon_sym_BSLASHAc] = ACTIONS(6425), - [anon_sym_BSLASHacp] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6425), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6425), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6425), - [anon_sym_BSLASHcolor] = ACTIONS(6425), - [anon_sym_BSLASHcolorbox] = ACTIONS(6425), - [anon_sym_BSLASHtextcolor] = ACTIONS(6425), - [anon_sym_BSLASHpagecolor] = ACTIONS(6425), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6425), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6425), - [anon_sym_BSLASHtext] = ACTIONS(6425), - [anon_sym_BSLASHintertext] = ACTIONS(6425), - [anon_sym_shortintertext] = ACTIONS(6425), - }, - [1303] = { - [sym_command_name] = ACTIONS(6285), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6285), - [anon_sym_LBRACK] = ACTIONS(6287), - [anon_sym_RBRACK] = ACTIONS(6287), - [anon_sym_COMMA] = ACTIONS(6287), - [anon_sym_EQ] = ACTIONS(6287), - [anon_sym_LPAREN] = ACTIONS(6287), - [anon_sym_RPAREN] = ACTIONS(6287), - [anon_sym_BSLASHpart] = ACTIONS(6285), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddpart] = ACTIONS(6285), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6287), - [anon_sym_BSLASHchapter] = ACTIONS(6285), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddchap] = ACTIONS(6285), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsection] = ACTIONS(6285), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddsec] = ACTIONS(6285), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubsection] = ACTIONS(6285), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6285), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHparagraph] = ACTIONS(6285), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6285), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6287), - [anon_sym_BSLASHitem] = ACTIONS(6285), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6287), - [anon_sym_LBRACE] = ACTIONS(6287), - [sym_word] = ACTIONS(6285), - [sym_placeholder] = ACTIONS(6287), - [anon_sym_PLUS] = ACTIONS(6287), - [anon_sym_DASH] = ACTIONS(6287), - [anon_sym_STAR] = ACTIONS(6287), - [anon_sym_SLASH] = ACTIONS(6287), - [anon_sym_LT] = ACTIONS(6285), - [anon_sym_GT] = ACTIONS(6285), - [anon_sym_BANG] = ACTIONS(6285), - [anon_sym_PIPE] = ACTIONS(6285), - [anon_sym_COLON] = ACTIONS(6285), - [anon_sym_SQUOTE] = ACTIONS(6285), - [anon_sym__] = ACTIONS(6287), - [anon_sym_CARET] = ACTIONS(6287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6287), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6287), - [anon_sym_DOLLAR] = ACTIONS(6285), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6287), - [anon_sym_BSLASHbegin] = ACTIONS(6285), - [anon_sym_BSLASHtitle] = ACTIONS(6285), - [anon_sym_BSLASHauthor] = ACTIONS(6285), - [anon_sym_BSLASHusepackage] = ACTIONS(6285), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6285), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6285), - [anon_sym_BSLASHinclude] = ACTIONS(6285), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6285), - [anon_sym_BSLASHinput] = ACTIONS(6285), - [anon_sym_BSLASHsubfile] = ACTIONS(6285), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6285), - [anon_sym_BSLASHbibliography] = ACTIONS(6285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6285), - [anon_sym_BSLASHincludesvg] = ACTIONS(6285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6285), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6285), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6285), - [anon_sym_BSLASHimport] = ACTIONS(6285), - [anon_sym_BSLASHsubimport] = ACTIONS(6285), - [anon_sym_BSLASHinputfrom] = ACTIONS(6285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6285), - [anon_sym_BSLASHincludefrom] = ACTIONS(6285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6285), - [anon_sym_BSLASHcaption] = ACTIONS(6285), - [anon_sym_BSLASHcite] = ACTIONS(6285), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCite] = ACTIONS(6285), - [anon_sym_BSLASHnocite] = ACTIONS(6285), - [anon_sym_BSLASHcitet] = ACTIONS(6285), - [anon_sym_BSLASHcitep] = ACTIONS(6285), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteauthor] = ACTIONS(6285), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6285), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitetitle] = ACTIONS(6285), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteyear] = ACTIONS(6285), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitedate] = ACTIONS(6285), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteurl] = ACTIONS(6285), - [anon_sym_BSLASHfullcite] = ACTIONS(6285), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6285), - [anon_sym_BSLASHcitealt] = ACTIONS(6285), - [anon_sym_BSLASHcitealp] = ACTIONS(6285), - [anon_sym_BSLASHcitetext] = ACTIONS(6285), - [anon_sym_BSLASHparencite] = ACTIONS(6285), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHParencite] = ACTIONS(6285), - [anon_sym_BSLASHfootcite] = ACTIONS(6285), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6285), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6285), - [anon_sym_BSLASHtextcite] = ACTIONS(6285), - [anon_sym_BSLASHTextcite] = ACTIONS(6285), - [anon_sym_BSLASHsmartcite] = ACTIONS(6285), - [anon_sym_BSLASHSmartcite] = ACTIONS(6285), - [anon_sym_BSLASHsupercite] = ACTIONS(6285), - [anon_sym_BSLASHautocite] = ACTIONS(6285), - [anon_sym_BSLASHAutocite] = ACTIONS(6285), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHvolcite] = ACTIONS(6285), - [anon_sym_BSLASHVolcite] = ACTIONS(6285), - [anon_sym_BSLASHpvolcite] = ACTIONS(6285), - [anon_sym_BSLASHPvolcite] = ACTIONS(6285), - [anon_sym_BSLASHfvolcite] = ACTIONS(6285), - [anon_sym_BSLASHftvolcite] = ACTIONS(6285), - [anon_sym_BSLASHsvolcite] = ACTIONS(6285), - [anon_sym_BSLASHSvolcite] = ACTIONS(6285), - [anon_sym_BSLASHtvolcite] = ACTIONS(6285), - [anon_sym_BSLASHTvolcite] = ACTIONS(6285), - [anon_sym_BSLASHavolcite] = ACTIONS(6285), - [anon_sym_BSLASHAvolcite] = ACTIONS(6285), - [anon_sym_BSLASHnotecite] = ACTIONS(6285), - [anon_sym_BSLASHNotecite] = ACTIONS(6285), - [anon_sym_BSLASHpnotecite] = ACTIONS(6285), - [anon_sym_BSLASHPnotecite] = ACTIONS(6285), - [anon_sym_BSLASHfnotecite] = ACTIONS(6285), - [anon_sym_BSLASHlabel] = ACTIONS(6285), - [anon_sym_BSLASHref] = ACTIONS(6285), - [anon_sym_BSLASHeqref] = ACTIONS(6285), - [anon_sym_BSLASHvref] = ACTIONS(6285), - [anon_sym_BSLASHVref] = ACTIONS(6285), - [anon_sym_BSLASHautoref] = ACTIONS(6285), - [anon_sym_BSLASHpageref] = ACTIONS(6285), - [anon_sym_BSLASHcref] = ACTIONS(6285), - [anon_sym_BSLASHCref] = ACTIONS(6285), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6287), - [anon_sym_BSLASHnamecref] = ACTIONS(6285), - [anon_sym_BSLASHnameCref] = ACTIONS(6285), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6285), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6285), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6285), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6285), - [anon_sym_BSLASHlabelcref] = ACTIONS(6285), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6285), - [anon_sym_BSLASHcrefrange] = ACTIONS(6285), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCrefrange] = ACTIONS(6285), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6287), - [anon_sym_BSLASHnewlabel] = ACTIONS(6285), - [anon_sym_BSLASHnewcommand] = ACTIONS(6285), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6285), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6285), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6287), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHdef] = ACTIONS(6285), - [anon_sym_BSLASHlet] = ACTIONS(6285), - [anon_sym_BSLASHleft] = ACTIONS(6285), - [anon_sym_BSLASHbig] = ACTIONS(6285), - [anon_sym_BSLASHBig] = ACTIONS(6285), - [anon_sym_BSLASHbigg] = ACTIONS(6285), - [anon_sym_BSLASHBigg] = ACTIONS(6285), - [anon_sym_BSLASHbigl] = ACTIONS(6285), - [anon_sym_BSLASHBigl] = ACTIONS(6285), - [anon_sym_BSLASHbiggl] = ACTIONS(6285), - [anon_sym_BSLASHBiggl] = ACTIONS(6285), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6285), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6285), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6285), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6285), - [anon_sym_BSLASHgls] = ACTIONS(6285), - [anon_sym_BSLASHGls] = ACTIONS(6285), - [anon_sym_BSLASHGLS] = ACTIONS(6285), - [anon_sym_BSLASHglspl] = ACTIONS(6285), - [anon_sym_BSLASHGlspl] = ACTIONS(6285), - [anon_sym_BSLASHGLSpl] = ACTIONS(6285), - [anon_sym_BSLASHglsdisp] = ACTIONS(6285), - [anon_sym_BSLASHglslink] = ACTIONS(6285), - [anon_sym_BSLASHglstext] = ACTIONS(6285), - [anon_sym_BSLASHGlstext] = ACTIONS(6285), - [anon_sym_BSLASHGLStext] = ACTIONS(6285), - [anon_sym_BSLASHglsfirst] = ACTIONS(6285), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6285), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6285), - [anon_sym_BSLASHglsplural] = ACTIONS(6285), - [anon_sym_BSLASHGlsplural] = ACTIONS(6285), - [anon_sym_BSLASHGLSplural] = ACTIONS(6285), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHglsname] = ACTIONS(6285), - [anon_sym_BSLASHGlsname] = ACTIONS(6285), - [anon_sym_BSLASHGLSname] = ACTIONS(6285), - [anon_sym_BSLASHglssymbol] = ACTIONS(6285), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6285), - [anon_sym_BSLASHglsdesc] = ACTIONS(6285), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6285), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6285), - [anon_sym_BSLASHglsuseri] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6285), - [anon_sym_BSLASHglsuserii] = ACTIONS(6285), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6285), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6285), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6285), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6285), - [anon_sym_BSLASHglsuserv] = ACTIONS(6285), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6285), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6285), - [anon_sym_BSLASHglsuservi] = ACTIONS(6285), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6285), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6285), - [anon_sym_BSLASHnewacronym] = ACTIONS(6285), - [anon_sym_BSLASHacrshort] = ACTIONS(6285), - [anon_sym_BSLASHAcrshort] = ACTIONS(6285), - [anon_sym_BSLASHACRshort] = ACTIONS(6285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6285), - [anon_sym_BSLASHacrlong] = ACTIONS(6285), - [anon_sym_BSLASHAcrlong] = ACTIONS(6285), - [anon_sym_BSLASHACRlong] = ACTIONS(6285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6285), - [anon_sym_BSLASHacrfull] = ACTIONS(6285), - [anon_sym_BSLASHAcrfull] = ACTIONS(6285), - [anon_sym_BSLASHACRfull] = ACTIONS(6285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6285), - [anon_sym_BSLASHacs] = ACTIONS(6285), - [anon_sym_BSLASHAcs] = ACTIONS(6285), - [anon_sym_BSLASHacsp] = ACTIONS(6285), - [anon_sym_BSLASHAcsp] = ACTIONS(6285), - [anon_sym_BSLASHacl] = ACTIONS(6285), - [anon_sym_BSLASHAcl] = ACTIONS(6285), - [anon_sym_BSLASHaclp] = ACTIONS(6285), - [anon_sym_BSLASHAclp] = ACTIONS(6285), - [anon_sym_BSLASHacf] = ACTIONS(6285), - [anon_sym_BSLASHAcf] = ACTIONS(6285), - [anon_sym_BSLASHacfp] = ACTIONS(6285), - [anon_sym_BSLASHAcfp] = ACTIONS(6285), - [anon_sym_BSLASHac] = ACTIONS(6285), - [anon_sym_BSLASHAc] = ACTIONS(6285), - [anon_sym_BSLASHacp] = ACTIONS(6285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6285), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6287), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6285), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6287), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6285), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6285), - [anon_sym_BSLASHcolor] = ACTIONS(6285), - [anon_sym_BSLASHcolorbox] = ACTIONS(6285), - [anon_sym_BSLASHtextcolor] = ACTIONS(6285), - [anon_sym_BSLASHpagecolor] = ACTIONS(6285), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6285), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6285), - [anon_sym_BSLASHtext] = ACTIONS(6285), - [anon_sym_BSLASHintertext] = ACTIONS(6285), - [anon_sym_shortintertext] = ACTIONS(6285), - }, - [1304] = { - [sym_command_name] = ACTIONS(6421), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6421), - [anon_sym_LBRACK] = ACTIONS(6423), - [anon_sym_RBRACK] = ACTIONS(6423), - [anon_sym_COMMA] = ACTIONS(6423), - [anon_sym_EQ] = ACTIONS(6423), - [anon_sym_LPAREN] = ACTIONS(6423), - [anon_sym_RPAREN] = ACTIONS(6423), - [anon_sym_BSLASHpart] = ACTIONS(6421), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddpart] = ACTIONS(6421), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6423), - [anon_sym_BSLASHchapter] = ACTIONS(6421), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddchap] = ACTIONS(6421), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsection] = ACTIONS(6421), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHaddsec] = ACTIONS(6421), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubsection] = ACTIONS(6421), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6421), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6423), - [anon_sym_BSLASHparagraph] = ACTIONS(6421), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6423), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6421), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6423), - [anon_sym_BSLASHitem] = ACTIONS(6421), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6423), - [anon_sym_LBRACE] = ACTIONS(6423), - [sym_word] = ACTIONS(6421), - [sym_placeholder] = ACTIONS(6423), - [anon_sym_PLUS] = ACTIONS(6423), - [anon_sym_DASH] = ACTIONS(6423), - [anon_sym_STAR] = ACTIONS(6423), - [anon_sym_SLASH] = ACTIONS(6423), - [anon_sym_LT] = ACTIONS(6421), - [anon_sym_GT] = ACTIONS(6421), - [anon_sym_BANG] = ACTIONS(6421), - [anon_sym_PIPE] = ACTIONS(6421), - [anon_sym_COLON] = ACTIONS(6421), - [anon_sym_SQUOTE] = ACTIONS(6421), - [anon_sym__] = ACTIONS(6423), - [anon_sym_CARET] = ACTIONS(6423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6423), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6423), - [anon_sym_DOLLAR] = ACTIONS(6421), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6423), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6423), - [anon_sym_BSLASHbegin] = ACTIONS(6421), - [anon_sym_BSLASHtitle] = ACTIONS(6421), - [anon_sym_BSLASHauthor] = ACTIONS(6421), - [anon_sym_BSLASHusepackage] = ACTIONS(6421), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6421), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6421), - [anon_sym_BSLASHinclude] = ACTIONS(6421), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6421), - [anon_sym_BSLASHinput] = ACTIONS(6421), - [anon_sym_BSLASHsubfile] = ACTIONS(6421), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6421), - [anon_sym_BSLASHbibliography] = ACTIONS(6421), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6421), - [anon_sym_BSLASHincludesvg] = ACTIONS(6421), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6421), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6421), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6421), - [anon_sym_BSLASHimport] = ACTIONS(6421), - [anon_sym_BSLASHsubimport] = ACTIONS(6421), - [anon_sym_BSLASHinputfrom] = ACTIONS(6421), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6421), - [anon_sym_BSLASHincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHcaption] = ACTIONS(6421), - [anon_sym_BSLASHcite] = ACTIONS(6421), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCite] = ACTIONS(6421), - [anon_sym_BSLASHnocite] = ACTIONS(6421), - [anon_sym_BSLASHcitet] = ACTIONS(6421), - [anon_sym_BSLASHcitep] = ACTIONS(6421), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteauthor] = ACTIONS(6421), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6421), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitetitle] = ACTIONS(6421), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteyear] = ACTIONS(6421), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitedate] = ACTIONS(6421), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteurl] = ACTIONS(6421), - [anon_sym_BSLASHfullcite] = ACTIONS(6421), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6421), - [anon_sym_BSLASHcitealt] = ACTIONS(6421), - [anon_sym_BSLASHcitealp] = ACTIONS(6421), - [anon_sym_BSLASHcitetext] = ACTIONS(6421), - [anon_sym_BSLASHparencite] = ACTIONS(6421), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHParencite] = ACTIONS(6421), - [anon_sym_BSLASHfootcite] = ACTIONS(6421), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6421), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6421), - [anon_sym_BSLASHtextcite] = ACTIONS(6421), - [anon_sym_BSLASHTextcite] = ACTIONS(6421), - [anon_sym_BSLASHsmartcite] = ACTIONS(6421), - [anon_sym_BSLASHSmartcite] = ACTIONS(6421), - [anon_sym_BSLASHsupercite] = ACTIONS(6421), - [anon_sym_BSLASHautocite] = ACTIONS(6421), - [anon_sym_BSLASHAutocite] = ACTIONS(6421), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHvolcite] = ACTIONS(6421), - [anon_sym_BSLASHVolcite] = ACTIONS(6421), - [anon_sym_BSLASHpvolcite] = ACTIONS(6421), - [anon_sym_BSLASHPvolcite] = ACTIONS(6421), - [anon_sym_BSLASHfvolcite] = ACTIONS(6421), - [anon_sym_BSLASHftvolcite] = ACTIONS(6421), - [anon_sym_BSLASHsvolcite] = ACTIONS(6421), - [anon_sym_BSLASHSvolcite] = ACTIONS(6421), - [anon_sym_BSLASHtvolcite] = ACTIONS(6421), - [anon_sym_BSLASHTvolcite] = ACTIONS(6421), - [anon_sym_BSLASHavolcite] = ACTIONS(6421), - [anon_sym_BSLASHAvolcite] = ACTIONS(6421), - [anon_sym_BSLASHnotecite] = ACTIONS(6421), - [anon_sym_BSLASHNotecite] = ACTIONS(6421), - [anon_sym_BSLASHpnotecite] = ACTIONS(6421), - [anon_sym_BSLASHPnotecite] = ACTIONS(6421), - [anon_sym_BSLASHfnotecite] = ACTIONS(6421), - [anon_sym_BSLASHlabel] = ACTIONS(6421), - [anon_sym_BSLASHref] = ACTIONS(6421), - [anon_sym_BSLASHeqref] = ACTIONS(6421), - [anon_sym_BSLASHvref] = ACTIONS(6421), - [anon_sym_BSLASHVref] = ACTIONS(6421), - [anon_sym_BSLASHautoref] = ACTIONS(6421), - [anon_sym_BSLASHpageref] = ACTIONS(6421), - [anon_sym_BSLASHcref] = ACTIONS(6421), - [anon_sym_BSLASHCref] = ACTIONS(6421), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnameCref] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHlabelcref] = ACTIONS(6421), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCrefrange] = ACTIONS(6421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnewlabel] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6421), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6421), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6423), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHdef] = ACTIONS(6421), - [anon_sym_BSLASHlet] = ACTIONS(6421), - [anon_sym_BSLASHleft] = ACTIONS(6421), - [anon_sym_BSLASHbig] = ACTIONS(6421), - [anon_sym_BSLASHBig] = ACTIONS(6421), - [anon_sym_BSLASHbigg] = ACTIONS(6421), - [anon_sym_BSLASHBigg] = ACTIONS(6421), - [anon_sym_BSLASHbigl] = ACTIONS(6421), - [anon_sym_BSLASHBigl] = ACTIONS(6421), - [anon_sym_BSLASHbiggl] = ACTIONS(6421), - [anon_sym_BSLASHBiggl] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6421), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6421), - [anon_sym_BSLASHgls] = ACTIONS(6421), - [anon_sym_BSLASHGls] = ACTIONS(6421), - [anon_sym_BSLASHGLS] = ACTIONS(6421), - [anon_sym_BSLASHglspl] = ACTIONS(6421), - [anon_sym_BSLASHGlspl] = ACTIONS(6421), - [anon_sym_BSLASHGLSpl] = ACTIONS(6421), - [anon_sym_BSLASHglsdisp] = ACTIONS(6421), - [anon_sym_BSLASHglslink] = ACTIONS(6421), - [anon_sym_BSLASHglstext] = ACTIONS(6421), - [anon_sym_BSLASHGlstext] = ACTIONS(6421), - [anon_sym_BSLASHGLStext] = ACTIONS(6421), - [anon_sym_BSLASHglsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6421), - [anon_sym_BSLASHglsplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSplural] = ACTIONS(6421), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHglsname] = ACTIONS(6421), - [anon_sym_BSLASHGlsname] = ACTIONS(6421), - [anon_sym_BSLASHGLSname] = ACTIONS(6421), - [anon_sym_BSLASHglssymbol] = ACTIONS(6421), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6421), - [anon_sym_BSLASHglsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6421), - [anon_sym_BSLASHglsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6421), - [anon_sym_BSLASHglsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6421), - [anon_sym_BSLASHglsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6421), - [anon_sym_BSLASHglsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6421), - [anon_sym_BSLASHnewacronym] = ACTIONS(6421), - [anon_sym_BSLASHacrshort] = ACTIONS(6421), - [anon_sym_BSLASHAcrshort] = ACTIONS(6421), - [anon_sym_BSLASHACRshort] = ACTIONS(6421), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6421), - [anon_sym_BSLASHacrlong] = ACTIONS(6421), - [anon_sym_BSLASHAcrlong] = ACTIONS(6421), - [anon_sym_BSLASHACRlong] = ACTIONS(6421), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6421), - [anon_sym_BSLASHacrfull] = ACTIONS(6421), - [anon_sym_BSLASHAcrfull] = ACTIONS(6421), - [anon_sym_BSLASHACRfull] = ACTIONS(6421), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6421), - [anon_sym_BSLASHacs] = ACTIONS(6421), - [anon_sym_BSLASHAcs] = ACTIONS(6421), - [anon_sym_BSLASHacsp] = ACTIONS(6421), - [anon_sym_BSLASHAcsp] = ACTIONS(6421), - [anon_sym_BSLASHacl] = ACTIONS(6421), - [anon_sym_BSLASHAcl] = ACTIONS(6421), - [anon_sym_BSLASHaclp] = ACTIONS(6421), - [anon_sym_BSLASHAclp] = ACTIONS(6421), - [anon_sym_BSLASHacf] = ACTIONS(6421), - [anon_sym_BSLASHAcf] = ACTIONS(6421), - [anon_sym_BSLASHacfp] = ACTIONS(6421), - [anon_sym_BSLASHAcfp] = ACTIONS(6421), - [anon_sym_BSLASHac] = ACTIONS(6421), - [anon_sym_BSLASHAc] = ACTIONS(6421), - [anon_sym_BSLASHacp] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6421), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6421), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6421), - [anon_sym_BSLASHcolor] = ACTIONS(6421), - [anon_sym_BSLASHcolorbox] = ACTIONS(6421), - [anon_sym_BSLASHtextcolor] = ACTIONS(6421), - [anon_sym_BSLASHpagecolor] = ACTIONS(6421), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6421), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6421), - [anon_sym_BSLASHtext] = ACTIONS(6421), - [anon_sym_BSLASHintertext] = ACTIONS(6421), - [anon_sym_shortintertext] = ACTIONS(6421), - }, - [1305] = { - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddpart] = ACTIONS(145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(149), - [anon_sym_BSLASHchapter] = ACTIONS(145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddchap] = ACTIONS(145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(149), - [anon_sym_BSLASHsection] = ACTIONS(145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHaddsec] = ACTIONS(145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(149), - [anon_sym_BSLASHparagraph] = ACTIONS(145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(149), - [anon_sym_BSLASHitem] = ACTIONS(145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_BSLASH_RBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [1306] = { - [sym_command_name] = ACTIONS(6417), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6417), - [anon_sym_LBRACK] = ACTIONS(6419), - [anon_sym_RBRACK] = ACTIONS(6419), - [anon_sym_COMMA] = ACTIONS(6419), - [anon_sym_EQ] = ACTIONS(6419), - [anon_sym_LPAREN] = ACTIONS(6419), - [anon_sym_RPAREN] = ACTIONS(6419), - [anon_sym_BSLASHpart] = ACTIONS(6417), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddpart] = ACTIONS(6417), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6419), - [anon_sym_BSLASHchapter] = ACTIONS(6417), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddchap] = ACTIONS(6417), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsection] = ACTIONS(6417), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHaddsec] = ACTIONS(6417), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubsection] = ACTIONS(6417), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6417), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6419), - [anon_sym_BSLASHparagraph] = ACTIONS(6417), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6419), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6417), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6419), - [anon_sym_BSLASHitem] = ACTIONS(6417), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6419), - [anon_sym_LBRACE] = ACTIONS(6419), - [sym_word] = ACTIONS(6417), - [sym_placeholder] = ACTIONS(6419), - [anon_sym_PLUS] = ACTIONS(6419), - [anon_sym_DASH] = ACTIONS(6419), - [anon_sym_STAR] = ACTIONS(6419), - [anon_sym_SLASH] = ACTIONS(6419), - [anon_sym_LT] = ACTIONS(6417), - [anon_sym_GT] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(6417), - [anon_sym_PIPE] = ACTIONS(6417), - [anon_sym_COLON] = ACTIONS(6417), - [anon_sym_SQUOTE] = ACTIONS(6417), - [anon_sym__] = ACTIONS(6419), - [anon_sym_CARET] = ACTIONS(6419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6419), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6419), - [anon_sym_DOLLAR] = ACTIONS(6417), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6419), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6419), - [anon_sym_BSLASHbegin] = ACTIONS(6417), - [anon_sym_BSLASHtitle] = ACTIONS(6417), - [anon_sym_BSLASHauthor] = ACTIONS(6417), - [anon_sym_BSLASHusepackage] = ACTIONS(6417), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6417), - [anon_sym_BSLASHinclude] = ACTIONS(6417), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6417), - [anon_sym_BSLASHinput] = ACTIONS(6417), - [anon_sym_BSLASHsubfile] = ACTIONS(6417), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6417), - [anon_sym_BSLASHbibliography] = ACTIONS(6417), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6417), - [anon_sym_BSLASHincludesvg] = ACTIONS(6417), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6417), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6417), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6417), - [anon_sym_BSLASHimport] = ACTIONS(6417), - [anon_sym_BSLASHsubimport] = ACTIONS(6417), - [anon_sym_BSLASHinputfrom] = ACTIONS(6417), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6417), - [anon_sym_BSLASHincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHcaption] = ACTIONS(6417), - [anon_sym_BSLASHcite] = ACTIONS(6417), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCite] = ACTIONS(6417), - [anon_sym_BSLASHnocite] = ACTIONS(6417), - [anon_sym_BSLASHcitet] = ACTIONS(6417), - [anon_sym_BSLASHcitep] = ACTIONS(6417), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteauthor] = ACTIONS(6417), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6417), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitetitle] = ACTIONS(6417), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteyear] = ACTIONS(6417), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitedate] = ACTIONS(6417), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteurl] = ACTIONS(6417), - [anon_sym_BSLASHfullcite] = ACTIONS(6417), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6417), - [anon_sym_BSLASHcitealt] = ACTIONS(6417), - [anon_sym_BSLASHcitealp] = ACTIONS(6417), - [anon_sym_BSLASHcitetext] = ACTIONS(6417), - [anon_sym_BSLASHparencite] = ACTIONS(6417), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHParencite] = ACTIONS(6417), - [anon_sym_BSLASHfootcite] = ACTIONS(6417), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6417), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6417), - [anon_sym_BSLASHtextcite] = ACTIONS(6417), - [anon_sym_BSLASHTextcite] = ACTIONS(6417), - [anon_sym_BSLASHsmartcite] = ACTIONS(6417), - [anon_sym_BSLASHSmartcite] = ACTIONS(6417), - [anon_sym_BSLASHsupercite] = ACTIONS(6417), - [anon_sym_BSLASHautocite] = ACTIONS(6417), - [anon_sym_BSLASHAutocite] = ACTIONS(6417), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHvolcite] = ACTIONS(6417), - [anon_sym_BSLASHVolcite] = ACTIONS(6417), - [anon_sym_BSLASHpvolcite] = ACTIONS(6417), - [anon_sym_BSLASHPvolcite] = ACTIONS(6417), - [anon_sym_BSLASHfvolcite] = ACTIONS(6417), - [anon_sym_BSLASHftvolcite] = ACTIONS(6417), - [anon_sym_BSLASHsvolcite] = ACTIONS(6417), - [anon_sym_BSLASHSvolcite] = ACTIONS(6417), - [anon_sym_BSLASHtvolcite] = ACTIONS(6417), - [anon_sym_BSLASHTvolcite] = ACTIONS(6417), - [anon_sym_BSLASHavolcite] = ACTIONS(6417), - [anon_sym_BSLASHAvolcite] = ACTIONS(6417), - [anon_sym_BSLASHnotecite] = ACTIONS(6417), - [anon_sym_BSLASHNotecite] = ACTIONS(6417), - [anon_sym_BSLASHpnotecite] = ACTIONS(6417), - [anon_sym_BSLASHPnotecite] = ACTIONS(6417), - [anon_sym_BSLASHfnotecite] = ACTIONS(6417), - [anon_sym_BSLASHlabel] = ACTIONS(6417), - [anon_sym_BSLASHref] = ACTIONS(6417), - [anon_sym_BSLASHeqref] = ACTIONS(6417), - [anon_sym_BSLASHvref] = ACTIONS(6417), - [anon_sym_BSLASHVref] = ACTIONS(6417), - [anon_sym_BSLASHautoref] = ACTIONS(6417), - [anon_sym_BSLASHpageref] = ACTIONS(6417), - [anon_sym_BSLASHcref] = ACTIONS(6417), - [anon_sym_BSLASHCref] = ACTIONS(6417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnameCref] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHlabelcref] = ACTIONS(6417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCrefrange] = ACTIONS(6417), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnewlabel] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6419), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHdef] = ACTIONS(6417), - [anon_sym_BSLASHlet] = ACTIONS(6417), - [anon_sym_BSLASHleft] = ACTIONS(6417), - [anon_sym_BSLASHbig] = ACTIONS(6417), - [anon_sym_BSLASHBig] = ACTIONS(6417), - [anon_sym_BSLASHbigg] = ACTIONS(6417), - [anon_sym_BSLASHBigg] = ACTIONS(6417), - [anon_sym_BSLASHbigl] = ACTIONS(6417), - [anon_sym_BSLASHBigl] = ACTIONS(6417), - [anon_sym_BSLASHbiggl] = ACTIONS(6417), - [anon_sym_BSLASHBiggl] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6417), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6417), - [anon_sym_BSLASHgls] = ACTIONS(6417), - [anon_sym_BSLASHGls] = ACTIONS(6417), - [anon_sym_BSLASHGLS] = ACTIONS(6417), - [anon_sym_BSLASHglspl] = ACTIONS(6417), - [anon_sym_BSLASHGlspl] = ACTIONS(6417), - [anon_sym_BSLASHGLSpl] = ACTIONS(6417), - [anon_sym_BSLASHglsdisp] = ACTIONS(6417), - [anon_sym_BSLASHglslink] = ACTIONS(6417), - [anon_sym_BSLASHglstext] = ACTIONS(6417), - [anon_sym_BSLASHGlstext] = ACTIONS(6417), - [anon_sym_BSLASHGLStext] = ACTIONS(6417), - [anon_sym_BSLASHglsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6417), - [anon_sym_BSLASHglsplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSplural] = ACTIONS(6417), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHglsname] = ACTIONS(6417), - [anon_sym_BSLASHGlsname] = ACTIONS(6417), - [anon_sym_BSLASHGLSname] = ACTIONS(6417), - [anon_sym_BSLASHglssymbol] = ACTIONS(6417), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6417), - [anon_sym_BSLASHglsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6417), - [anon_sym_BSLASHglsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6417), - [anon_sym_BSLASHglsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6417), - [anon_sym_BSLASHglsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6417), - [anon_sym_BSLASHglsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6417), - [anon_sym_BSLASHnewacronym] = ACTIONS(6417), - [anon_sym_BSLASHacrshort] = ACTIONS(6417), - [anon_sym_BSLASHAcrshort] = ACTIONS(6417), - [anon_sym_BSLASHACRshort] = ACTIONS(6417), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6417), - [anon_sym_BSLASHacrlong] = ACTIONS(6417), - [anon_sym_BSLASHAcrlong] = ACTIONS(6417), - [anon_sym_BSLASHACRlong] = ACTIONS(6417), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6417), - [anon_sym_BSLASHacrfull] = ACTIONS(6417), - [anon_sym_BSLASHAcrfull] = ACTIONS(6417), - [anon_sym_BSLASHACRfull] = ACTIONS(6417), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6417), - [anon_sym_BSLASHacs] = ACTIONS(6417), - [anon_sym_BSLASHAcs] = ACTIONS(6417), - [anon_sym_BSLASHacsp] = ACTIONS(6417), - [anon_sym_BSLASHAcsp] = ACTIONS(6417), - [anon_sym_BSLASHacl] = ACTIONS(6417), - [anon_sym_BSLASHAcl] = ACTIONS(6417), - [anon_sym_BSLASHaclp] = ACTIONS(6417), - [anon_sym_BSLASHAclp] = ACTIONS(6417), - [anon_sym_BSLASHacf] = ACTIONS(6417), - [anon_sym_BSLASHAcf] = ACTIONS(6417), - [anon_sym_BSLASHacfp] = ACTIONS(6417), - [anon_sym_BSLASHAcfp] = ACTIONS(6417), - [anon_sym_BSLASHac] = ACTIONS(6417), - [anon_sym_BSLASHAc] = ACTIONS(6417), - [anon_sym_BSLASHacp] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6417), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6417), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6417), - [anon_sym_BSLASHcolor] = ACTIONS(6417), - [anon_sym_BSLASHcolorbox] = ACTIONS(6417), - [anon_sym_BSLASHtextcolor] = ACTIONS(6417), - [anon_sym_BSLASHpagecolor] = ACTIONS(6417), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6417), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6417), - [anon_sym_BSLASHtext] = ACTIONS(6417), - [anon_sym_BSLASHintertext] = ACTIONS(6417), - [anon_sym_shortintertext] = ACTIONS(6417), - }, - [1307] = { - [sym_command_name] = ACTIONS(6489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6489), - [anon_sym_LBRACK] = ACTIONS(6491), - [anon_sym_RBRACK] = ACTIONS(6491), - [anon_sym_COMMA] = ACTIONS(6491), - [anon_sym_EQ] = ACTIONS(6491), - [anon_sym_LPAREN] = ACTIONS(6491), - [anon_sym_RPAREN] = ACTIONS(6491), - [anon_sym_BSLASHpart] = ACTIONS(6489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddpart] = ACTIONS(6489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6491), - [anon_sym_BSLASHchapter] = ACTIONS(6489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddchap] = ACTIONS(6489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsection] = ACTIONS(6489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHaddsec] = ACTIONS(6489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubsection] = ACTIONS(6489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6491), - [anon_sym_BSLASHparagraph] = ACTIONS(6489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6491), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6491), - [anon_sym_BSLASHitem] = ACTIONS(6489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6491), - [anon_sym_LBRACE] = ACTIONS(6491), - [sym_word] = ACTIONS(6489), - [sym_placeholder] = ACTIONS(6491), - [anon_sym_PLUS] = ACTIONS(6491), - [anon_sym_DASH] = ACTIONS(6491), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_LT] = ACTIONS(6489), - [anon_sym_GT] = ACTIONS(6489), - [anon_sym_BANG] = ACTIONS(6489), - [anon_sym_PIPE] = ACTIONS(6489), - [anon_sym_COLON] = ACTIONS(6489), - [anon_sym_SQUOTE] = ACTIONS(6489), - [anon_sym__] = ACTIONS(6491), - [anon_sym_CARET] = ACTIONS(6491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6491), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6491), - [anon_sym_DOLLAR] = ACTIONS(6489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6491), - [anon_sym_BSLASHbegin] = ACTIONS(6489), - [anon_sym_BSLASHtitle] = ACTIONS(6489), - [anon_sym_BSLASHauthor] = ACTIONS(6489), - [anon_sym_BSLASHusepackage] = ACTIONS(6489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6489), - [anon_sym_BSLASHinclude] = ACTIONS(6489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6489), - [anon_sym_BSLASHinput] = ACTIONS(6489), - [anon_sym_BSLASHsubfile] = ACTIONS(6489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6489), - [anon_sym_BSLASHbibliography] = ACTIONS(6489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6489), - [anon_sym_BSLASHincludesvg] = ACTIONS(6489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6489), - [anon_sym_BSLASHimport] = ACTIONS(6489), - [anon_sym_BSLASHsubimport] = ACTIONS(6489), - [anon_sym_BSLASHinputfrom] = ACTIONS(6489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6489), - [anon_sym_BSLASHincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHcaption] = ACTIONS(6489), - [anon_sym_BSLASHcite] = ACTIONS(6489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCite] = ACTIONS(6489), - [anon_sym_BSLASHnocite] = ACTIONS(6489), - [anon_sym_BSLASHcitet] = ACTIONS(6489), - [anon_sym_BSLASHcitep] = ACTIONS(6489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteauthor] = ACTIONS(6489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitetitle] = ACTIONS(6489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteyear] = ACTIONS(6489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitedate] = ACTIONS(6489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteurl] = ACTIONS(6489), - [anon_sym_BSLASHfullcite] = ACTIONS(6489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6489), - [anon_sym_BSLASHcitealt] = ACTIONS(6489), - [anon_sym_BSLASHcitealp] = ACTIONS(6489), - [anon_sym_BSLASHcitetext] = ACTIONS(6489), - [anon_sym_BSLASHparencite] = ACTIONS(6489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHParencite] = ACTIONS(6489), - [anon_sym_BSLASHfootcite] = ACTIONS(6489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6489), - [anon_sym_BSLASHtextcite] = ACTIONS(6489), - [anon_sym_BSLASHTextcite] = ACTIONS(6489), - [anon_sym_BSLASHsmartcite] = ACTIONS(6489), - [anon_sym_BSLASHSmartcite] = ACTIONS(6489), - [anon_sym_BSLASHsupercite] = ACTIONS(6489), - [anon_sym_BSLASHautocite] = ACTIONS(6489), - [anon_sym_BSLASHAutocite] = ACTIONS(6489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHvolcite] = ACTIONS(6489), - [anon_sym_BSLASHVolcite] = ACTIONS(6489), - [anon_sym_BSLASHpvolcite] = ACTIONS(6489), - [anon_sym_BSLASHPvolcite] = ACTIONS(6489), - [anon_sym_BSLASHfvolcite] = ACTIONS(6489), - [anon_sym_BSLASHftvolcite] = ACTIONS(6489), - [anon_sym_BSLASHsvolcite] = ACTIONS(6489), - [anon_sym_BSLASHSvolcite] = ACTIONS(6489), - [anon_sym_BSLASHtvolcite] = ACTIONS(6489), - [anon_sym_BSLASHTvolcite] = ACTIONS(6489), - [anon_sym_BSLASHavolcite] = ACTIONS(6489), - [anon_sym_BSLASHAvolcite] = ACTIONS(6489), - [anon_sym_BSLASHnotecite] = ACTIONS(6489), - [anon_sym_BSLASHNotecite] = ACTIONS(6489), - [anon_sym_BSLASHpnotecite] = ACTIONS(6489), - [anon_sym_BSLASHPnotecite] = ACTIONS(6489), - [anon_sym_BSLASHfnotecite] = ACTIONS(6489), - [anon_sym_BSLASHlabel] = ACTIONS(6489), - [anon_sym_BSLASHref] = ACTIONS(6489), - [anon_sym_BSLASHeqref] = ACTIONS(6489), - [anon_sym_BSLASHvref] = ACTIONS(6489), - [anon_sym_BSLASHVref] = ACTIONS(6489), - [anon_sym_BSLASHautoref] = ACTIONS(6489), - [anon_sym_BSLASHpageref] = ACTIONS(6489), - [anon_sym_BSLASHcref] = ACTIONS(6489), - [anon_sym_BSLASHCref] = ACTIONS(6489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnameCref] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHlabelcref] = ACTIONS(6489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCrefrange] = ACTIONS(6489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnewlabel] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6491), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHdef] = ACTIONS(6489), - [anon_sym_BSLASHlet] = ACTIONS(6489), - [anon_sym_BSLASHleft] = ACTIONS(6489), - [anon_sym_BSLASHbig] = ACTIONS(6489), - [anon_sym_BSLASHBig] = ACTIONS(6489), - [anon_sym_BSLASHbigg] = ACTIONS(6489), - [anon_sym_BSLASHBigg] = ACTIONS(6489), - [anon_sym_BSLASHbigl] = ACTIONS(6489), - [anon_sym_BSLASHBigl] = ACTIONS(6489), - [anon_sym_BSLASHbiggl] = ACTIONS(6489), - [anon_sym_BSLASHBiggl] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6489), - [anon_sym_BSLASHgls] = ACTIONS(6489), - [anon_sym_BSLASHGls] = ACTIONS(6489), - [anon_sym_BSLASHGLS] = ACTIONS(6489), - [anon_sym_BSLASHglspl] = ACTIONS(6489), - [anon_sym_BSLASHGlspl] = ACTIONS(6489), - [anon_sym_BSLASHGLSpl] = ACTIONS(6489), - [anon_sym_BSLASHglsdisp] = ACTIONS(6489), - [anon_sym_BSLASHglslink] = ACTIONS(6489), - [anon_sym_BSLASHglstext] = ACTIONS(6489), - [anon_sym_BSLASHGlstext] = ACTIONS(6489), - [anon_sym_BSLASHGLStext] = ACTIONS(6489), - [anon_sym_BSLASHglsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6489), - [anon_sym_BSLASHglsplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSplural] = ACTIONS(6489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHglsname] = ACTIONS(6489), - [anon_sym_BSLASHGlsname] = ACTIONS(6489), - [anon_sym_BSLASHGLSname] = ACTIONS(6489), - [anon_sym_BSLASHglssymbol] = ACTIONS(6489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6489), - [anon_sym_BSLASHglsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6489), - [anon_sym_BSLASHglsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6489), - [anon_sym_BSLASHglsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6489), - [anon_sym_BSLASHglsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6489), - [anon_sym_BSLASHglsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6489), - [anon_sym_BSLASHnewacronym] = ACTIONS(6489), - [anon_sym_BSLASHacrshort] = ACTIONS(6489), - [anon_sym_BSLASHAcrshort] = ACTIONS(6489), - [anon_sym_BSLASHACRshort] = ACTIONS(6489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6489), - [anon_sym_BSLASHacrlong] = ACTIONS(6489), - [anon_sym_BSLASHAcrlong] = ACTIONS(6489), - [anon_sym_BSLASHACRlong] = ACTIONS(6489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6489), - [anon_sym_BSLASHacrfull] = ACTIONS(6489), - [anon_sym_BSLASHAcrfull] = ACTIONS(6489), - [anon_sym_BSLASHACRfull] = ACTIONS(6489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6489), - [anon_sym_BSLASHacs] = ACTIONS(6489), - [anon_sym_BSLASHAcs] = ACTIONS(6489), - [anon_sym_BSLASHacsp] = ACTIONS(6489), - [anon_sym_BSLASHAcsp] = ACTIONS(6489), - [anon_sym_BSLASHacl] = ACTIONS(6489), - [anon_sym_BSLASHAcl] = ACTIONS(6489), - [anon_sym_BSLASHaclp] = ACTIONS(6489), - [anon_sym_BSLASHAclp] = ACTIONS(6489), - [anon_sym_BSLASHacf] = ACTIONS(6489), - [anon_sym_BSLASHAcf] = ACTIONS(6489), - [anon_sym_BSLASHacfp] = ACTIONS(6489), - [anon_sym_BSLASHAcfp] = ACTIONS(6489), - [anon_sym_BSLASHac] = ACTIONS(6489), - [anon_sym_BSLASHAc] = ACTIONS(6489), - [anon_sym_BSLASHacp] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6489), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6489), - [anon_sym_BSLASHcolor] = ACTIONS(6489), - [anon_sym_BSLASHcolorbox] = ACTIONS(6489), - [anon_sym_BSLASHtextcolor] = ACTIONS(6489), - [anon_sym_BSLASHpagecolor] = ACTIONS(6489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6489), - [anon_sym_BSLASHtext] = ACTIONS(6489), - [anon_sym_BSLASHintertext] = ACTIONS(6489), - [anon_sym_shortintertext] = ACTIONS(6489), - }, - [1308] = { - [sym_command_name] = ACTIONS(6301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6301), - [anon_sym_LBRACK] = ACTIONS(6303), - [anon_sym_RBRACK] = ACTIONS(6303), - [anon_sym_COMMA] = ACTIONS(6303), - [anon_sym_EQ] = ACTIONS(6303), - [anon_sym_LPAREN] = ACTIONS(6303), - [anon_sym_RPAREN] = ACTIONS(6303), - [anon_sym_BSLASHpart] = ACTIONS(6301), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddpart] = ACTIONS(6301), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6303), - [anon_sym_BSLASHchapter] = ACTIONS(6301), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddchap] = ACTIONS(6301), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsection] = ACTIONS(6301), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddsec] = ACTIONS(6301), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubsection] = ACTIONS(6301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6301), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHparagraph] = ACTIONS(6301), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6301), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6303), - [anon_sym_BSLASHitem] = ACTIONS(6301), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6303), - [anon_sym_LBRACE] = ACTIONS(6303), - [sym_word] = ACTIONS(6301), - [sym_placeholder] = ACTIONS(6303), - [anon_sym_PLUS] = ACTIONS(6303), - [anon_sym_DASH] = ACTIONS(6303), - [anon_sym_STAR] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6303), - [anon_sym_LT] = ACTIONS(6301), - [anon_sym_GT] = ACTIONS(6301), - [anon_sym_BANG] = ACTIONS(6301), - [anon_sym_PIPE] = ACTIONS(6301), - [anon_sym_COLON] = ACTIONS(6301), - [anon_sym_SQUOTE] = ACTIONS(6301), - [anon_sym__] = ACTIONS(6303), - [anon_sym_CARET] = ACTIONS(6303), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6303), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6303), - [anon_sym_DOLLAR] = ACTIONS(6301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6303), - [anon_sym_BSLASHbegin] = ACTIONS(6301), - [anon_sym_BSLASHtitle] = ACTIONS(6301), - [anon_sym_BSLASHauthor] = ACTIONS(6301), - [anon_sym_BSLASHusepackage] = ACTIONS(6301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6301), - [anon_sym_BSLASHinclude] = ACTIONS(6301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6301), - [anon_sym_BSLASHinput] = ACTIONS(6301), - [anon_sym_BSLASHsubfile] = ACTIONS(6301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6301), - [anon_sym_BSLASHbibliography] = ACTIONS(6301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6301), - [anon_sym_BSLASHincludesvg] = ACTIONS(6301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6301), - [anon_sym_BSLASHimport] = ACTIONS(6301), - [anon_sym_BSLASHsubimport] = ACTIONS(6301), - [anon_sym_BSLASHinputfrom] = ACTIONS(6301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6301), - [anon_sym_BSLASHincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHcaption] = ACTIONS(6301), - [anon_sym_BSLASHcite] = ACTIONS(6301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCite] = ACTIONS(6301), - [anon_sym_BSLASHnocite] = ACTIONS(6301), - [anon_sym_BSLASHcitet] = ACTIONS(6301), - [anon_sym_BSLASHcitep] = ACTIONS(6301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteauthor] = ACTIONS(6301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitetitle] = ACTIONS(6301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteyear] = ACTIONS(6301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitedate] = ACTIONS(6301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteurl] = ACTIONS(6301), - [anon_sym_BSLASHfullcite] = ACTIONS(6301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6301), - [anon_sym_BSLASHcitealt] = ACTIONS(6301), - [anon_sym_BSLASHcitealp] = ACTIONS(6301), - [anon_sym_BSLASHcitetext] = ACTIONS(6301), - [anon_sym_BSLASHparencite] = ACTIONS(6301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHParencite] = ACTIONS(6301), - [anon_sym_BSLASHfootcite] = ACTIONS(6301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6301), - [anon_sym_BSLASHtextcite] = ACTIONS(6301), - [anon_sym_BSLASHTextcite] = ACTIONS(6301), - [anon_sym_BSLASHsmartcite] = ACTIONS(6301), - [anon_sym_BSLASHSmartcite] = ACTIONS(6301), - [anon_sym_BSLASHsupercite] = ACTIONS(6301), - [anon_sym_BSLASHautocite] = ACTIONS(6301), - [anon_sym_BSLASHAutocite] = ACTIONS(6301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHvolcite] = ACTIONS(6301), - [anon_sym_BSLASHVolcite] = ACTIONS(6301), - [anon_sym_BSLASHpvolcite] = ACTIONS(6301), - [anon_sym_BSLASHPvolcite] = ACTIONS(6301), - [anon_sym_BSLASHfvolcite] = ACTIONS(6301), - [anon_sym_BSLASHftvolcite] = ACTIONS(6301), - [anon_sym_BSLASHsvolcite] = ACTIONS(6301), - [anon_sym_BSLASHSvolcite] = ACTIONS(6301), - [anon_sym_BSLASHtvolcite] = ACTIONS(6301), - [anon_sym_BSLASHTvolcite] = ACTIONS(6301), - [anon_sym_BSLASHavolcite] = ACTIONS(6301), - [anon_sym_BSLASHAvolcite] = ACTIONS(6301), - [anon_sym_BSLASHnotecite] = ACTIONS(6301), - [anon_sym_BSLASHNotecite] = ACTIONS(6301), - [anon_sym_BSLASHpnotecite] = ACTIONS(6301), - [anon_sym_BSLASHPnotecite] = ACTIONS(6301), - [anon_sym_BSLASHfnotecite] = ACTIONS(6301), - [anon_sym_BSLASHlabel] = ACTIONS(6301), - [anon_sym_BSLASHref] = ACTIONS(6301), - [anon_sym_BSLASHeqref] = ACTIONS(6301), - [anon_sym_BSLASHvref] = ACTIONS(6301), - [anon_sym_BSLASHVref] = ACTIONS(6301), - [anon_sym_BSLASHautoref] = ACTIONS(6301), - [anon_sym_BSLASHpageref] = ACTIONS(6301), - [anon_sym_BSLASHcref] = ACTIONS(6301), - [anon_sym_BSLASHCref] = ACTIONS(6301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnameCref] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHlabelcref] = ACTIONS(6301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCrefrange] = ACTIONS(6301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnewlabel] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6303), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHdef] = ACTIONS(6301), - [anon_sym_BSLASHlet] = ACTIONS(6301), - [anon_sym_BSLASHleft] = ACTIONS(6301), - [anon_sym_BSLASHbig] = ACTIONS(6301), - [anon_sym_BSLASHBig] = ACTIONS(6301), - [anon_sym_BSLASHbigg] = ACTIONS(6301), - [anon_sym_BSLASHBigg] = ACTIONS(6301), - [anon_sym_BSLASHbigl] = ACTIONS(6301), - [anon_sym_BSLASHBigl] = ACTIONS(6301), - [anon_sym_BSLASHbiggl] = ACTIONS(6301), - [anon_sym_BSLASHBiggl] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6301), - [anon_sym_BSLASHgls] = ACTIONS(6301), - [anon_sym_BSLASHGls] = ACTIONS(6301), - [anon_sym_BSLASHGLS] = ACTIONS(6301), - [anon_sym_BSLASHglspl] = ACTIONS(6301), - [anon_sym_BSLASHGlspl] = ACTIONS(6301), - [anon_sym_BSLASHGLSpl] = ACTIONS(6301), - [anon_sym_BSLASHglsdisp] = ACTIONS(6301), - [anon_sym_BSLASHglslink] = ACTIONS(6301), - [anon_sym_BSLASHglstext] = ACTIONS(6301), - [anon_sym_BSLASHGlstext] = ACTIONS(6301), - [anon_sym_BSLASHGLStext] = ACTIONS(6301), - [anon_sym_BSLASHglsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6301), - [anon_sym_BSLASHglsplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSplural] = ACTIONS(6301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHglsname] = ACTIONS(6301), - [anon_sym_BSLASHGlsname] = ACTIONS(6301), - [anon_sym_BSLASHGLSname] = ACTIONS(6301), - [anon_sym_BSLASHglssymbol] = ACTIONS(6301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6301), - [anon_sym_BSLASHglsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6301), - [anon_sym_BSLASHglsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6301), - [anon_sym_BSLASHglsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6301), - [anon_sym_BSLASHglsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6301), - [anon_sym_BSLASHglsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6301), - [anon_sym_BSLASHnewacronym] = ACTIONS(6301), - [anon_sym_BSLASHacrshort] = ACTIONS(6301), - [anon_sym_BSLASHAcrshort] = ACTIONS(6301), - [anon_sym_BSLASHACRshort] = ACTIONS(6301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6301), - [anon_sym_BSLASHacrlong] = ACTIONS(6301), - [anon_sym_BSLASHAcrlong] = ACTIONS(6301), - [anon_sym_BSLASHACRlong] = ACTIONS(6301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6301), - [anon_sym_BSLASHacrfull] = ACTIONS(6301), - [anon_sym_BSLASHAcrfull] = ACTIONS(6301), - [anon_sym_BSLASHACRfull] = ACTIONS(6301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6301), - [anon_sym_BSLASHacs] = ACTIONS(6301), - [anon_sym_BSLASHAcs] = ACTIONS(6301), - [anon_sym_BSLASHacsp] = ACTIONS(6301), - [anon_sym_BSLASHAcsp] = ACTIONS(6301), - [anon_sym_BSLASHacl] = ACTIONS(6301), - [anon_sym_BSLASHAcl] = ACTIONS(6301), - [anon_sym_BSLASHaclp] = ACTIONS(6301), - [anon_sym_BSLASHAclp] = ACTIONS(6301), - [anon_sym_BSLASHacf] = ACTIONS(6301), - [anon_sym_BSLASHAcf] = ACTIONS(6301), - [anon_sym_BSLASHacfp] = ACTIONS(6301), - [anon_sym_BSLASHAcfp] = ACTIONS(6301), - [anon_sym_BSLASHac] = ACTIONS(6301), - [anon_sym_BSLASHAc] = ACTIONS(6301), - [anon_sym_BSLASHacp] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6301), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6301), - [anon_sym_BSLASHcolor] = ACTIONS(6301), - [anon_sym_BSLASHcolorbox] = ACTIONS(6301), - [anon_sym_BSLASHtextcolor] = ACTIONS(6301), - [anon_sym_BSLASHpagecolor] = ACTIONS(6301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6301), - [anon_sym_BSLASHtext] = ACTIONS(6301), - [anon_sym_BSLASHintertext] = ACTIONS(6301), - [anon_sym_shortintertext] = ACTIONS(6301), - }, - [1309] = { - [sym_command_name] = ACTIONS(6141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6141), - [anon_sym_LBRACK] = ACTIONS(6143), - [anon_sym_RBRACK] = ACTIONS(6143), - [anon_sym_COMMA] = ACTIONS(6143), - [anon_sym_EQ] = ACTIONS(6143), - [anon_sym_LPAREN] = ACTIONS(6143), - [anon_sym_RPAREN] = ACTIONS(6143), - [anon_sym_BSLASHpart] = ACTIONS(6141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddpart] = ACTIONS(6141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6143), - [anon_sym_BSLASHchapter] = ACTIONS(6141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddchap] = ACTIONS(6141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsection] = ACTIONS(6141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddsec] = ACTIONS(6141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubsection] = ACTIONS(6141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHparagraph] = ACTIONS(6141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6143), - [anon_sym_BSLASHitem] = ACTIONS(6141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6143), - [anon_sym_LBRACE] = ACTIONS(6143), - [sym_word] = ACTIONS(6141), - [sym_placeholder] = ACTIONS(6143), - [anon_sym_PLUS] = ACTIONS(6143), - [anon_sym_DASH] = ACTIONS(6143), - [anon_sym_STAR] = ACTIONS(6143), - [anon_sym_SLASH] = ACTIONS(6143), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_GT] = ACTIONS(6141), - [anon_sym_BANG] = ACTIONS(6141), - [anon_sym_PIPE] = ACTIONS(6141), - [anon_sym_COLON] = ACTIONS(6141), - [anon_sym_SQUOTE] = ACTIONS(6141), - [anon_sym__] = ACTIONS(6143), - [anon_sym_CARET] = ACTIONS(6143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6143), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6143), - [anon_sym_DOLLAR] = ACTIONS(6141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6143), - [anon_sym_BSLASHbegin] = ACTIONS(6141), - [anon_sym_BSLASHtitle] = ACTIONS(6141), - [anon_sym_BSLASHauthor] = ACTIONS(6141), - [anon_sym_BSLASHusepackage] = ACTIONS(6141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6141), - [anon_sym_BSLASHinclude] = ACTIONS(6141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6141), - [anon_sym_BSLASHinput] = ACTIONS(6141), - [anon_sym_BSLASHsubfile] = ACTIONS(6141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6141), - [anon_sym_BSLASHbibliography] = ACTIONS(6141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6141), - [anon_sym_BSLASHincludesvg] = ACTIONS(6141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6141), - [anon_sym_BSLASHimport] = ACTIONS(6141), - [anon_sym_BSLASHsubimport] = ACTIONS(6141), - [anon_sym_BSLASHinputfrom] = ACTIONS(6141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6141), - [anon_sym_BSLASHincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHcaption] = ACTIONS(6141), - [anon_sym_BSLASHcite] = ACTIONS(6141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCite] = ACTIONS(6141), - [anon_sym_BSLASHnocite] = ACTIONS(6141), - [anon_sym_BSLASHcitet] = ACTIONS(6141), - [anon_sym_BSLASHcitep] = ACTIONS(6141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteauthor] = ACTIONS(6141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitetitle] = ACTIONS(6141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteyear] = ACTIONS(6141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitedate] = ACTIONS(6141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteurl] = ACTIONS(6141), - [anon_sym_BSLASHfullcite] = ACTIONS(6141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6141), - [anon_sym_BSLASHcitealt] = ACTIONS(6141), - [anon_sym_BSLASHcitealp] = ACTIONS(6141), - [anon_sym_BSLASHcitetext] = ACTIONS(6141), - [anon_sym_BSLASHparencite] = ACTIONS(6141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHParencite] = ACTIONS(6141), - [anon_sym_BSLASHfootcite] = ACTIONS(6141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6141), - [anon_sym_BSLASHtextcite] = ACTIONS(6141), - [anon_sym_BSLASHTextcite] = ACTIONS(6141), - [anon_sym_BSLASHsmartcite] = ACTIONS(6141), - [anon_sym_BSLASHSmartcite] = ACTIONS(6141), - [anon_sym_BSLASHsupercite] = ACTIONS(6141), - [anon_sym_BSLASHautocite] = ACTIONS(6141), - [anon_sym_BSLASHAutocite] = ACTIONS(6141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHvolcite] = ACTIONS(6141), - [anon_sym_BSLASHVolcite] = ACTIONS(6141), - [anon_sym_BSLASHpvolcite] = ACTIONS(6141), - [anon_sym_BSLASHPvolcite] = ACTIONS(6141), - [anon_sym_BSLASHfvolcite] = ACTIONS(6141), - [anon_sym_BSLASHftvolcite] = ACTIONS(6141), - [anon_sym_BSLASHsvolcite] = ACTIONS(6141), - [anon_sym_BSLASHSvolcite] = ACTIONS(6141), - [anon_sym_BSLASHtvolcite] = ACTIONS(6141), - [anon_sym_BSLASHTvolcite] = ACTIONS(6141), - [anon_sym_BSLASHavolcite] = ACTIONS(6141), - [anon_sym_BSLASHAvolcite] = ACTIONS(6141), - [anon_sym_BSLASHnotecite] = ACTIONS(6141), - [anon_sym_BSLASHNotecite] = ACTIONS(6141), - [anon_sym_BSLASHpnotecite] = ACTIONS(6141), - [anon_sym_BSLASHPnotecite] = ACTIONS(6141), - [anon_sym_BSLASHfnotecite] = ACTIONS(6141), - [anon_sym_BSLASHlabel] = ACTIONS(6141), - [anon_sym_BSLASHref] = ACTIONS(6141), - [anon_sym_BSLASHeqref] = ACTIONS(6141), - [anon_sym_BSLASHvref] = ACTIONS(6141), - [anon_sym_BSLASHVref] = ACTIONS(6141), - [anon_sym_BSLASHautoref] = ACTIONS(6141), - [anon_sym_BSLASHpageref] = ACTIONS(6141), - [anon_sym_BSLASHcref] = ACTIONS(6141), - [anon_sym_BSLASHCref] = ACTIONS(6141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnameCref] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHlabelcref] = ACTIONS(6141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCrefrange] = ACTIONS(6141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnewlabel] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6143), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHdef] = ACTIONS(6141), - [anon_sym_BSLASHlet] = ACTIONS(6141), - [anon_sym_BSLASHleft] = ACTIONS(6141), - [anon_sym_BSLASHbig] = ACTIONS(6141), - [anon_sym_BSLASHBig] = ACTIONS(6141), - [anon_sym_BSLASHbigg] = ACTIONS(6141), - [anon_sym_BSLASHBigg] = ACTIONS(6141), - [anon_sym_BSLASHbigl] = ACTIONS(6141), - [anon_sym_BSLASHBigl] = ACTIONS(6141), - [anon_sym_BSLASHbiggl] = ACTIONS(6141), - [anon_sym_BSLASHBiggl] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6141), - [anon_sym_BSLASHgls] = ACTIONS(6141), - [anon_sym_BSLASHGls] = ACTIONS(6141), - [anon_sym_BSLASHGLS] = ACTIONS(6141), - [anon_sym_BSLASHglspl] = ACTIONS(6141), - [anon_sym_BSLASHGlspl] = ACTIONS(6141), - [anon_sym_BSLASHGLSpl] = ACTIONS(6141), - [anon_sym_BSLASHglsdisp] = ACTIONS(6141), - [anon_sym_BSLASHglslink] = ACTIONS(6141), - [anon_sym_BSLASHglstext] = ACTIONS(6141), - [anon_sym_BSLASHGlstext] = ACTIONS(6141), - [anon_sym_BSLASHGLStext] = ACTIONS(6141), - [anon_sym_BSLASHglsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6141), - [anon_sym_BSLASHglsplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSplural] = ACTIONS(6141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHglsname] = ACTIONS(6141), - [anon_sym_BSLASHGlsname] = ACTIONS(6141), - [anon_sym_BSLASHGLSname] = ACTIONS(6141), - [anon_sym_BSLASHglssymbol] = ACTIONS(6141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6141), - [anon_sym_BSLASHglsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6141), - [anon_sym_BSLASHglsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6141), - [anon_sym_BSLASHglsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6141), - [anon_sym_BSLASHglsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6141), - [anon_sym_BSLASHglsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6141), - [anon_sym_BSLASHnewacronym] = ACTIONS(6141), - [anon_sym_BSLASHacrshort] = ACTIONS(6141), - [anon_sym_BSLASHAcrshort] = ACTIONS(6141), - [anon_sym_BSLASHACRshort] = ACTIONS(6141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6141), - [anon_sym_BSLASHacrlong] = ACTIONS(6141), - [anon_sym_BSLASHAcrlong] = ACTIONS(6141), - [anon_sym_BSLASHACRlong] = ACTIONS(6141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6141), - [anon_sym_BSLASHacrfull] = ACTIONS(6141), - [anon_sym_BSLASHAcrfull] = ACTIONS(6141), - [anon_sym_BSLASHACRfull] = ACTIONS(6141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6141), - [anon_sym_BSLASHacs] = ACTIONS(6141), - [anon_sym_BSLASHAcs] = ACTIONS(6141), - [anon_sym_BSLASHacsp] = ACTIONS(6141), - [anon_sym_BSLASHAcsp] = ACTIONS(6141), - [anon_sym_BSLASHacl] = ACTIONS(6141), - [anon_sym_BSLASHAcl] = ACTIONS(6141), - [anon_sym_BSLASHaclp] = ACTIONS(6141), - [anon_sym_BSLASHAclp] = ACTIONS(6141), - [anon_sym_BSLASHacf] = ACTIONS(6141), - [anon_sym_BSLASHAcf] = ACTIONS(6141), - [anon_sym_BSLASHacfp] = ACTIONS(6141), - [anon_sym_BSLASHAcfp] = ACTIONS(6141), - [anon_sym_BSLASHac] = ACTIONS(6141), - [anon_sym_BSLASHAc] = ACTIONS(6141), - [anon_sym_BSLASHacp] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6141), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6141), - [anon_sym_BSLASHcolor] = ACTIONS(6141), - [anon_sym_BSLASHcolorbox] = ACTIONS(6141), - [anon_sym_BSLASHtextcolor] = ACTIONS(6141), - [anon_sym_BSLASHpagecolor] = ACTIONS(6141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6141), - [anon_sym_BSLASHtext] = ACTIONS(6141), - [anon_sym_BSLASHintertext] = ACTIONS(6141), - [anon_sym_shortintertext] = ACTIONS(6141), - }, - [1310] = { - [sym_command_name] = ACTIONS(6297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6297), - [anon_sym_LBRACK] = ACTIONS(6299), - [anon_sym_RBRACK] = ACTIONS(6299), - [anon_sym_COMMA] = ACTIONS(6299), - [anon_sym_EQ] = ACTIONS(6299), - [anon_sym_LPAREN] = ACTIONS(6299), - [anon_sym_RPAREN] = ACTIONS(6299), - [anon_sym_BSLASHpart] = ACTIONS(6297), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddpart] = ACTIONS(6297), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6299), - [anon_sym_BSLASHchapter] = ACTIONS(6297), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddchap] = ACTIONS(6297), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsection] = ACTIONS(6297), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHaddsec] = ACTIONS(6297), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubsection] = ACTIONS(6297), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6297), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6299), - [anon_sym_BSLASHparagraph] = ACTIONS(6297), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6299), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6297), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6299), - [anon_sym_BSLASHitem] = ACTIONS(6297), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6299), - [anon_sym_LBRACE] = ACTIONS(6299), - [sym_word] = ACTIONS(6297), - [sym_placeholder] = ACTIONS(6299), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_LT] = ACTIONS(6297), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(6297), - [anon_sym_PIPE] = ACTIONS(6297), - [anon_sym_COLON] = ACTIONS(6297), - [anon_sym_SQUOTE] = ACTIONS(6297), - [anon_sym__] = ACTIONS(6299), - [anon_sym_CARET] = ACTIONS(6299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6299), - [anon_sym_DOLLAR] = ACTIONS(6297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6299), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6299), - [anon_sym_BSLASHbegin] = ACTIONS(6297), - [anon_sym_BSLASHtitle] = ACTIONS(6297), - [anon_sym_BSLASHauthor] = ACTIONS(6297), - [anon_sym_BSLASHusepackage] = ACTIONS(6297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6297), - [anon_sym_BSLASHinclude] = ACTIONS(6297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6297), - [anon_sym_BSLASHinput] = ACTIONS(6297), - [anon_sym_BSLASHsubfile] = ACTIONS(6297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6297), - [anon_sym_BSLASHbibliography] = ACTIONS(6297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6297), - [anon_sym_BSLASHincludesvg] = ACTIONS(6297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6297), - [anon_sym_BSLASHimport] = ACTIONS(6297), - [anon_sym_BSLASHsubimport] = ACTIONS(6297), - [anon_sym_BSLASHinputfrom] = ACTIONS(6297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6297), - [anon_sym_BSLASHincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHcaption] = ACTIONS(6297), - [anon_sym_BSLASHcite] = ACTIONS(6297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCite] = ACTIONS(6297), - [anon_sym_BSLASHnocite] = ACTIONS(6297), - [anon_sym_BSLASHcitet] = ACTIONS(6297), - [anon_sym_BSLASHcitep] = ACTIONS(6297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteauthor] = ACTIONS(6297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitetitle] = ACTIONS(6297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteyear] = ACTIONS(6297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitedate] = ACTIONS(6297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteurl] = ACTIONS(6297), - [anon_sym_BSLASHfullcite] = ACTIONS(6297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6297), - [anon_sym_BSLASHcitealt] = ACTIONS(6297), - [anon_sym_BSLASHcitealp] = ACTIONS(6297), - [anon_sym_BSLASHcitetext] = ACTIONS(6297), - [anon_sym_BSLASHparencite] = ACTIONS(6297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHParencite] = ACTIONS(6297), - [anon_sym_BSLASHfootcite] = ACTIONS(6297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6297), - [anon_sym_BSLASHtextcite] = ACTIONS(6297), - [anon_sym_BSLASHTextcite] = ACTIONS(6297), - [anon_sym_BSLASHsmartcite] = ACTIONS(6297), - [anon_sym_BSLASHSmartcite] = ACTIONS(6297), - [anon_sym_BSLASHsupercite] = ACTIONS(6297), - [anon_sym_BSLASHautocite] = ACTIONS(6297), - [anon_sym_BSLASHAutocite] = ACTIONS(6297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHvolcite] = ACTIONS(6297), - [anon_sym_BSLASHVolcite] = ACTIONS(6297), - [anon_sym_BSLASHpvolcite] = ACTIONS(6297), - [anon_sym_BSLASHPvolcite] = ACTIONS(6297), - [anon_sym_BSLASHfvolcite] = ACTIONS(6297), - [anon_sym_BSLASHftvolcite] = ACTIONS(6297), - [anon_sym_BSLASHsvolcite] = ACTIONS(6297), - [anon_sym_BSLASHSvolcite] = ACTIONS(6297), - [anon_sym_BSLASHtvolcite] = ACTIONS(6297), - [anon_sym_BSLASHTvolcite] = ACTIONS(6297), - [anon_sym_BSLASHavolcite] = ACTIONS(6297), - [anon_sym_BSLASHAvolcite] = ACTIONS(6297), - [anon_sym_BSLASHnotecite] = ACTIONS(6297), - [anon_sym_BSLASHNotecite] = ACTIONS(6297), - [anon_sym_BSLASHpnotecite] = ACTIONS(6297), - [anon_sym_BSLASHPnotecite] = ACTIONS(6297), - [anon_sym_BSLASHfnotecite] = ACTIONS(6297), - [anon_sym_BSLASHlabel] = ACTIONS(6297), - [anon_sym_BSLASHref] = ACTIONS(6297), - [anon_sym_BSLASHeqref] = ACTIONS(6297), - [anon_sym_BSLASHvref] = ACTIONS(6297), - [anon_sym_BSLASHVref] = ACTIONS(6297), - [anon_sym_BSLASHautoref] = ACTIONS(6297), - [anon_sym_BSLASHpageref] = ACTIONS(6297), - [anon_sym_BSLASHcref] = ACTIONS(6297), - [anon_sym_BSLASHCref] = ACTIONS(6297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnameCref] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHlabelcref] = ACTIONS(6297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCrefrange] = ACTIONS(6297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnewlabel] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6299), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHdef] = ACTIONS(6297), - [anon_sym_BSLASHlet] = ACTIONS(6297), - [anon_sym_BSLASHleft] = ACTIONS(6297), - [anon_sym_BSLASHbig] = ACTIONS(6297), - [anon_sym_BSLASHBig] = ACTIONS(6297), - [anon_sym_BSLASHbigg] = ACTIONS(6297), - [anon_sym_BSLASHBigg] = ACTIONS(6297), - [anon_sym_BSLASHbigl] = ACTIONS(6297), - [anon_sym_BSLASHBigl] = ACTIONS(6297), - [anon_sym_BSLASHbiggl] = ACTIONS(6297), - [anon_sym_BSLASHBiggl] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6297), - [anon_sym_BSLASHgls] = ACTIONS(6297), - [anon_sym_BSLASHGls] = ACTIONS(6297), - [anon_sym_BSLASHGLS] = ACTIONS(6297), - [anon_sym_BSLASHglspl] = ACTIONS(6297), - [anon_sym_BSLASHGlspl] = ACTIONS(6297), - [anon_sym_BSLASHGLSpl] = ACTIONS(6297), - [anon_sym_BSLASHglsdisp] = ACTIONS(6297), - [anon_sym_BSLASHglslink] = ACTIONS(6297), - [anon_sym_BSLASHglstext] = ACTIONS(6297), - [anon_sym_BSLASHGlstext] = ACTIONS(6297), - [anon_sym_BSLASHGLStext] = ACTIONS(6297), - [anon_sym_BSLASHglsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6297), - [anon_sym_BSLASHglsplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSplural] = ACTIONS(6297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHglsname] = ACTIONS(6297), - [anon_sym_BSLASHGlsname] = ACTIONS(6297), - [anon_sym_BSLASHGLSname] = ACTIONS(6297), - [anon_sym_BSLASHglssymbol] = ACTIONS(6297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6297), - [anon_sym_BSLASHglsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6297), - [anon_sym_BSLASHglsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6297), - [anon_sym_BSLASHglsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6297), - [anon_sym_BSLASHglsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6297), - [anon_sym_BSLASHglsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6297), - [anon_sym_BSLASHnewacronym] = ACTIONS(6297), - [anon_sym_BSLASHacrshort] = ACTIONS(6297), - [anon_sym_BSLASHAcrshort] = ACTIONS(6297), - [anon_sym_BSLASHACRshort] = ACTIONS(6297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6297), - [anon_sym_BSLASHacrlong] = ACTIONS(6297), - [anon_sym_BSLASHAcrlong] = ACTIONS(6297), - [anon_sym_BSLASHACRlong] = ACTIONS(6297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6297), - [anon_sym_BSLASHacrfull] = ACTIONS(6297), - [anon_sym_BSLASHAcrfull] = ACTIONS(6297), - [anon_sym_BSLASHACRfull] = ACTIONS(6297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6297), - [anon_sym_BSLASHacs] = ACTIONS(6297), - [anon_sym_BSLASHAcs] = ACTIONS(6297), - [anon_sym_BSLASHacsp] = ACTIONS(6297), - [anon_sym_BSLASHAcsp] = ACTIONS(6297), - [anon_sym_BSLASHacl] = ACTIONS(6297), - [anon_sym_BSLASHAcl] = ACTIONS(6297), - [anon_sym_BSLASHaclp] = ACTIONS(6297), - [anon_sym_BSLASHAclp] = ACTIONS(6297), - [anon_sym_BSLASHacf] = ACTIONS(6297), - [anon_sym_BSLASHAcf] = ACTIONS(6297), - [anon_sym_BSLASHacfp] = ACTIONS(6297), - [anon_sym_BSLASHAcfp] = ACTIONS(6297), - [anon_sym_BSLASHac] = ACTIONS(6297), - [anon_sym_BSLASHAc] = ACTIONS(6297), - [anon_sym_BSLASHacp] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6297), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6297), - [anon_sym_BSLASHcolor] = ACTIONS(6297), - [anon_sym_BSLASHcolorbox] = ACTIONS(6297), - [anon_sym_BSLASHtextcolor] = ACTIONS(6297), - [anon_sym_BSLASHpagecolor] = ACTIONS(6297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6297), - [anon_sym_BSLASHtext] = ACTIONS(6297), - [anon_sym_BSLASHintertext] = ACTIONS(6297), - [anon_sym_shortintertext] = ACTIONS(6297), - }, - [1311] = { - [sym_command_name] = ACTIONS(6145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6145), - [anon_sym_LBRACK] = ACTIONS(6147), - [anon_sym_RBRACK] = ACTIONS(6147), - [anon_sym_COMMA] = ACTIONS(6147), - [anon_sym_EQ] = ACTIONS(6147), - [anon_sym_LPAREN] = ACTIONS(6147), - [anon_sym_RPAREN] = ACTIONS(6147), - [anon_sym_BSLASHpart] = ACTIONS(6145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddpart] = ACTIONS(6145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6147), - [anon_sym_BSLASHchapter] = ACTIONS(6145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddchap] = ACTIONS(6145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsection] = ACTIONS(6145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddsec] = ACTIONS(6145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubsection] = ACTIONS(6145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHparagraph] = ACTIONS(6145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6147), - [anon_sym_BSLASHitem] = ACTIONS(6145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6147), - [anon_sym_LBRACE] = ACTIONS(6147), - [sym_word] = ACTIONS(6145), - [sym_placeholder] = ACTIONS(6147), - [anon_sym_PLUS] = ACTIONS(6147), - [anon_sym_DASH] = ACTIONS(6147), - [anon_sym_STAR] = ACTIONS(6147), - [anon_sym_SLASH] = ACTIONS(6147), - [anon_sym_LT] = ACTIONS(6145), - [anon_sym_GT] = ACTIONS(6145), - [anon_sym_BANG] = ACTIONS(6145), - [anon_sym_PIPE] = ACTIONS(6145), - [anon_sym_COLON] = ACTIONS(6145), - [anon_sym_SQUOTE] = ACTIONS(6145), - [anon_sym__] = ACTIONS(6147), - [anon_sym_CARET] = ACTIONS(6147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6147), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6147), - [anon_sym_DOLLAR] = ACTIONS(6145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6147), - [anon_sym_BSLASHbegin] = ACTIONS(6145), - [anon_sym_BSLASHtitle] = ACTIONS(6145), - [anon_sym_BSLASHauthor] = ACTIONS(6145), - [anon_sym_BSLASHusepackage] = ACTIONS(6145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6145), - [anon_sym_BSLASHinclude] = ACTIONS(6145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6145), - [anon_sym_BSLASHinput] = ACTIONS(6145), - [anon_sym_BSLASHsubfile] = ACTIONS(6145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6145), - [anon_sym_BSLASHbibliography] = ACTIONS(6145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6145), - [anon_sym_BSLASHincludesvg] = ACTIONS(6145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6145), - [anon_sym_BSLASHimport] = ACTIONS(6145), - [anon_sym_BSLASHsubimport] = ACTIONS(6145), - [anon_sym_BSLASHinputfrom] = ACTIONS(6145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6145), - [anon_sym_BSLASHincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHcaption] = ACTIONS(6145), - [anon_sym_BSLASHcite] = ACTIONS(6145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCite] = ACTIONS(6145), - [anon_sym_BSLASHnocite] = ACTIONS(6145), - [anon_sym_BSLASHcitet] = ACTIONS(6145), - [anon_sym_BSLASHcitep] = ACTIONS(6145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteauthor] = ACTIONS(6145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitetitle] = ACTIONS(6145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteyear] = ACTIONS(6145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitedate] = ACTIONS(6145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteurl] = ACTIONS(6145), - [anon_sym_BSLASHfullcite] = ACTIONS(6145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6145), - [anon_sym_BSLASHcitealt] = ACTIONS(6145), - [anon_sym_BSLASHcitealp] = ACTIONS(6145), - [anon_sym_BSLASHcitetext] = ACTIONS(6145), - [anon_sym_BSLASHparencite] = ACTIONS(6145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHParencite] = ACTIONS(6145), - [anon_sym_BSLASHfootcite] = ACTIONS(6145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6145), - [anon_sym_BSLASHtextcite] = ACTIONS(6145), - [anon_sym_BSLASHTextcite] = ACTIONS(6145), - [anon_sym_BSLASHsmartcite] = ACTIONS(6145), - [anon_sym_BSLASHSmartcite] = ACTIONS(6145), - [anon_sym_BSLASHsupercite] = ACTIONS(6145), - [anon_sym_BSLASHautocite] = ACTIONS(6145), - [anon_sym_BSLASHAutocite] = ACTIONS(6145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHvolcite] = ACTIONS(6145), - [anon_sym_BSLASHVolcite] = ACTIONS(6145), - [anon_sym_BSLASHpvolcite] = ACTIONS(6145), - [anon_sym_BSLASHPvolcite] = ACTIONS(6145), - [anon_sym_BSLASHfvolcite] = ACTIONS(6145), - [anon_sym_BSLASHftvolcite] = ACTIONS(6145), - [anon_sym_BSLASHsvolcite] = ACTIONS(6145), - [anon_sym_BSLASHSvolcite] = ACTIONS(6145), - [anon_sym_BSLASHtvolcite] = ACTIONS(6145), - [anon_sym_BSLASHTvolcite] = ACTIONS(6145), - [anon_sym_BSLASHavolcite] = ACTIONS(6145), - [anon_sym_BSLASHAvolcite] = ACTIONS(6145), - [anon_sym_BSLASHnotecite] = ACTIONS(6145), - [anon_sym_BSLASHNotecite] = ACTIONS(6145), - [anon_sym_BSLASHpnotecite] = ACTIONS(6145), - [anon_sym_BSLASHPnotecite] = ACTIONS(6145), - [anon_sym_BSLASHfnotecite] = ACTIONS(6145), - [anon_sym_BSLASHlabel] = ACTIONS(6145), - [anon_sym_BSLASHref] = ACTIONS(6145), - [anon_sym_BSLASHeqref] = ACTIONS(6145), - [anon_sym_BSLASHvref] = ACTIONS(6145), - [anon_sym_BSLASHVref] = ACTIONS(6145), - [anon_sym_BSLASHautoref] = ACTIONS(6145), - [anon_sym_BSLASHpageref] = ACTIONS(6145), - [anon_sym_BSLASHcref] = ACTIONS(6145), - [anon_sym_BSLASHCref] = ACTIONS(6145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnameCref] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHlabelcref] = ACTIONS(6145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCrefrange] = ACTIONS(6145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnewlabel] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6147), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHdef] = ACTIONS(6145), - [anon_sym_BSLASHlet] = ACTIONS(6145), - [anon_sym_BSLASHleft] = ACTIONS(6145), - [anon_sym_BSLASHbig] = ACTIONS(6145), - [anon_sym_BSLASHBig] = ACTIONS(6145), - [anon_sym_BSLASHbigg] = ACTIONS(6145), - [anon_sym_BSLASHBigg] = ACTIONS(6145), - [anon_sym_BSLASHbigl] = ACTIONS(6145), - [anon_sym_BSLASHBigl] = ACTIONS(6145), - [anon_sym_BSLASHbiggl] = ACTIONS(6145), - [anon_sym_BSLASHBiggl] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6145), - [anon_sym_BSLASHgls] = ACTIONS(6145), - [anon_sym_BSLASHGls] = ACTIONS(6145), - [anon_sym_BSLASHGLS] = ACTIONS(6145), - [anon_sym_BSLASHglspl] = ACTIONS(6145), - [anon_sym_BSLASHGlspl] = ACTIONS(6145), - [anon_sym_BSLASHGLSpl] = ACTIONS(6145), - [anon_sym_BSLASHglsdisp] = ACTIONS(6145), - [anon_sym_BSLASHglslink] = ACTIONS(6145), - [anon_sym_BSLASHglstext] = ACTIONS(6145), - [anon_sym_BSLASHGlstext] = ACTIONS(6145), - [anon_sym_BSLASHGLStext] = ACTIONS(6145), - [anon_sym_BSLASHglsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6145), - [anon_sym_BSLASHglsplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSplural] = ACTIONS(6145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHglsname] = ACTIONS(6145), - [anon_sym_BSLASHGlsname] = ACTIONS(6145), - [anon_sym_BSLASHGLSname] = ACTIONS(6145), - [anon_sym_BSLASHglssymbol] = ACTIONS(6145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6145), - [anon_sym_BSLASHglsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6145), - [anon_sym_BSLASHglsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6145), - [anon_sym_BSLASHglsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6145), - [anon_sym_BSLASHglsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6145), - [anon_sym_BSLASHglsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6145), - [anon_sym_BSLASHnewacronym] = ACTIONS(6145), - [anon_sym_BSLASHacrshort] = ACTIONS(6145), - [anon_sym_BSLASHAcrshort] = ACTIONS(6145), - [anon_sym_BSLASHACRshort] = ACTIONS(6145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6145), - [anon_sym_BSLASHacrlong] = ACTIONS(6145), - [anon_sym_BSLASHAcrlong] = ACTIONS(6145), - [anon_sym_BSLASHACRlong] = ACTIONS(6145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6145), - [anon_sym_BSLASHacrfull] = ACTIONS(6145), - [anon_sym_BSLASHAcrfull] = ACTIONS(6145), - [anon_sym_BSLASHACRfull] = ACTIONS(6145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6145), - [anon_sym_BSLASHacs] = ACTIONS(6145), - [anon_sym_BSLASHAcs] = ACTIONS(6145), - [anon_sym_BSLASHacsp] = ACTIONS(6145), - [anon_sym_BSLASHAcsp] = ACTIONS(6145), - [anon_sym_BSLASHacl] = ACTIONS(6145), - [anon_sym_BSLASHAcl] = ACTIONS(6145), - [anon_sym_BSLASHaclp] = ACTIONS(6145), - [anon_sym_BSLASHAclp] = ACTIONS(6145), - [anon_sym_BSLASHacf] = ACTIONS(6145), - [anon_sym_BSLASHAcf] = ACTIONS(6145), - [anon_sym_BSLASHacfp] = ACTIONS(6145), - [anon_sym_BSLASHAcfp] = ACTIONS(6145), - [anon_sym_BSLASHac] = ACTIONS(6145), - [anon_sym_BSLASHAc] = ACTIONS(6145), - [anon_sym_BSLASHacp] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6145), - [anon_sym_BSLASHcolor] = ACTIONS(6145), - [anon_sym_BSLASHcolorbox] = ACTIONS(6145), - [anon_sym_BSLASHtextcolor] = ACTIONS(6145), - [anon_sym_BSLASHpagecolor] = ACTIONS(6145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6145), - [anon_sym_BSLASHtext] = ACTIONS(6145), - [anon_sym_BSLASHintertext] = ACTIONS(6145), - [anon_sym_shortintertext] = ACTIONS(6145), - }, - [1312] = { - [sym_command_name] = ACTIONS(6149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6149), - [anon_sym_LBRACK] = ACTIONS(6151), - [anon_sym_RBRACK] = ACTIONS(6151), - [anon_sym_COMMA] = ACTIONS(6151), - [anon_sym_EQ] = ACTIONS(6151), - [anon_sym_LPAREN] = ACTIONS(6151), - [anon_sym_RPAREN] = ACTIONS(6151), - [anon_sym_BSLASHpart] = ACTIONS(6149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddpart] = ACTIONS(6149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6151), - [anon_sym_BSLASHchapter] = ACTIONS(6149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddchap] = ACTIONS(6149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsection] = ACTIONS(6149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddsec] = ACTIONS(6149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubsection] = ACTIONS(6149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHparagraph] = ACTIONS(6149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6151), - [anon_sym_BSLASHitem] = ACTIONS(6149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6151), - [anon_sym_LBRACE] = ACTIONS(6151), - [sym_word] = ACTIONS(6149), - [sym_placeholder] = ACTIONS(6151), - [anon_sym_PLUS] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6151), - [anon_sym_STAR] = ACTIONS(6151), - [anon_sym_SLASH] = ACTIONS(6151), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_BANG] = ACTIONS(6149), - [anon_sym_PIPE] = ACTIONS(6149), - [anon_sym_COLON] = ACTIONS(6149), - [anon_sym_SQUOTE] = ACTIONS(6149), - [anon_sym__] = ACTIONS(6151), - [anon_sym_CARET] = ACTIONS(6151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6151), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6151), - [anon_sym_DOLLAR] = ACTIONS(6149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6151), - [anon_sym_BSLASHbegin] = ACTIONS(6149), - [anon_sym_BSLASHtitle] = ACTIONS(6149), - [anon_sym_BSLASHauthor] = ACTIONS(6149), - [anon_sym_BSLASHusepackage] = ACTIONS(6149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6149), - [anon_sym_BSLASHinclude] = ACTIONS(6149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6149), - [anon_sym_BSLASHinput] = ACTIONS(6149), - [anon_sym_BSLASHsubfile] = ACTIONS(6149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6149), - [anon_sym_BSLASHbibliography] = ACTIONS(6149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6149), - [anon_sym_BSLASHincludesvg] = ACTIONS(6149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6149), - [anon_sym_BSLASHimport] = ACTIONS(6149), - [anon_sym_BSLASHsubimport] = ACTIONS(6149), - [anon_sym_BSLASHinputfrom] = ACTIONS(6149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6149), - [anon_sym_BSLASHincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHcaption] = ACTIONS(6149), - [anon_sym_BSLASHcite] = ACTIONS(6149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCite] = ACTIONS(6149), - [anon_sym_BSLASHnocite] = ACTIONS(6149), - [anon_sym_BSLASHcitet] = ACTIONS(6149), - [anon_sym_BSLASHcitep] = ACTIONS(6149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteauthor] = ACTIONS(6149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitetitle] = ACTIONS(6149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteyear] = ACTIONS(6149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitedate] = ACTIONS(6149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteurl] = ACTIONS(6149), - [anon_sym_BSLASHfullcite] = ACTIONS(6149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6149), - [anon_sym_BSLASHcitealt] = ACTIONS(6149), - [anon_sym_BSLASHcitealp] = ACTIONS(6149), - [anon_sym_BSLASHcitetext] = ACTIONS(6149), - [anon_sym_BSLASHparencite] = ACTIONS(6149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHParencite] = ACTIONS(6149), - [anon_sym_BSLASHfootcite] = ACTIONS(6149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6149), - [anon_sym_BSLASHtextcite] = ACTIONS(6149), - [anon_sym_BSLASHTextcite] = ACTIONS(6149), - [anon_sym_BSLASHsmartcite] = ACTIONS(6149), - [anon_sym_BSLASHSmartcite] = ACTIONS(6149), - [anon_sym_BSLASHsupercite] = ACTIONS(6149), - [anon_sym_BSLASHautocite] = ACTIONS(6149), - [anon_sym_BSLASHAutocite] = ACTIONS(6149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHvolcite] = ACTIONS(6149), - [anon_sym_BSLASHVolcite] = ACTIONS(6149), - [anon_sym_BSLASHpvolcite] = ACTIONS(6149), - [anon_sym_BSLASHPvolcite] = ACTIONS(6149), - [anon_sym_BSLASHfvolcite] = ACTIONS(6149), - [anon_sym_BSLASHftvolcite] = ACTIONS(6149), - [anon_sym_BSLASHsvolcite] = ACTIONS(6149), - [anon_sym_BSLASHSvolcite] = ACTIONS(6149), - [anon_sym_BSLASHtvolcite] = ACTIONS(6149), - [anon_sym_BSLASHTvolcite] = ACTIONS(6149), - [anon_sym_BSLASHavolcite] = ACTIONS(6149), - [anon_sym_BSLASHAvolcite] = ACTIONS(6149), - [anon_sym_BSLASHnotecite] = ACTIONS(6149), - [anon_sym_BSLASHNotecite] = ACTIONS(6149), - [anon_sym_BSLASHpnotecite] = ACTIONS(6149), - [anon_sym_BSLASHPnotecite] = ACTIONS(6149), - [anon_sym_BSLASHfnotecite] = ACTIONS(6149), - [anon_sym_BSLASHlabel] = ACTIONS(6149), - [anon_sym_BSLASHref] = ACTIONS(6149), - [anon_sym_BSLASHeqref] = ACTIONS(6149), - [anon_sym_BSLASHvref] = ACTIONS(6149), - [anon_sym_BSLASHVref] = ACTIONS(6149), - [anon_sym_BSLASHautoref] = ACTIONS(6149), - [anon_sym_BSLASHpageref] = ACTIONS(6149), - [anon_sym_BSLASHcref] = ACTIONS(6149), - [anon_sym_BSLASHCref] = ACTIONS(6149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnameCref] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHlabelcref] = ACTIONS(6149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCrefrange] = ACTIONS(6149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnewlabel] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6151), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHdef] = ACTIONS(6149), - [anon_sym_BSLASHlet] = ACTIONS(6149), - [anon_sym_BSLASHleft] = ACTIONS(6149), - [anon_sym_BSLASHbig] = ACTIONS(6149), - [anon_sym_BSLASHBig] = ACTIONS(6149), - [anon_sym_BSLASHbigg] = ACTIONS(6149), - [anon_sym_BSLASHBigg] = ACTIONS(6149), - [anon_sym_BSLASHbigl] = ACTIONS(6149), - [anon_sym_BSLASHBigl] = ACTIONS(6149), - [anon_sym_BSLASHbiggl] = ACTIONS(6149), - [anon_sym_BSLASHBiggl] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6149), - [anon_sym_BSLASHgls] = ACTIONS(6149), - [anon_sym_BSLASHGls] = ACTIONS(6149), - [anon_sym_BSLASHGLS] = ACTIONS(6149), - [anon_sym_BSLASHglspl] = ACTIONS(6149), - [anon_sym_BSLASHGlspl] = ACTIONS(6149), - [anon_sym_BSLASHGLSpl] = ACTIONS(6149), - [anon_sym_BSLASHglsdisp] = ACTIONS(6149), - [anon_sym_BSLASHglslink] = ACTIONS(6149), - [anon_sym_BSLASHglstext] = ACTIONS(6149), - [anon_sym_BSLASHGlstext] = ACTIONS(6149), - [anon_sym_BSLASHGLStext] = ACTIONS(6149), - [anon_sym_BSLASHglsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6149), - [anon_sym_BSLASHglsplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSplural] = ACTIONS(6149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHglsname] = ACTIONS(6149), - [anon_sym_BSLASHGlsname] = ACTIONS(6149), - [anon_sym_BSLASHGLSname] = ACTIONS(6149), - [anon_sym_BSLASHglssymbol] = ACTIONS(6149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6149), - [anon_sym_BSLASHglsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6149), - [anon_sym_BSLASHglsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6149), - [anon_sym_BSLASHglsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6149), - [anon_sym_BSLASHglsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6149), - [anon_sym_BSLASHglsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6149), - [anon_sym_BSLASHnewacronym] = ACTIONS(6149), - [anon_sym_BSLASHacrshort] = ACTIONS(6149), - [anon_sym_BSLASHAcrshort] = ACTIONS(6149), - [anon_sym_BSLASHACRshort] = ACTIONS(6149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6149), - [anon_sym_BSLASHacrlong] = ACTIONS(6149), - [anon_sym_BSLASHAcrlong] = ACTIONS(6149), - [anon_sym_BSLASHACRlong] = ACTIONS(6149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6149), - [anon_sym_BSLASHacrfull] = ACTIONS(6149), - [anon_sym_BSLASHAcrfull] = ACTIONS(6149), - [anon_sym_BSLASHACRfull] = ACTIONS(6149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6149), - [anon_sym_BSLASHacs] = ACTIONS(6149), - [anon_sym_BSLASHAcs] = ACTIONS(6149), - [anon_sym_BSLASHacsp] = ACTIONS(6149), - [anon_sym_BSLASHAcsp] = ACTIONS(6149), - [anon_sym_BSLASHacl] = ACTIONS(6149), - [anon_sym_BSLASHAcl] = ACTIONS(6149), - [anon_sym_BSLASHaclp] = ACTIONS(6149), - [anon_sym_BSLASHAclp] = ACTIONS(6149), - [anon_sym_BSLASHacf] = ACTIONS(6149), - [anon_sym_BSLASHAcf] = ACTIONS(6149), - [anon_sym_BSLASHacfp] = ACTIONS(6149), - [anon_sym_BSLASHAcfp] = ACTIONS(6149), - [anon_sym_BSLASHac] = ACTIONS(6149), - [anon_sym_BSLASHAc] = ACTIONS(6149), - [anon_sym_BSLASHacp] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6149), - [anon_sym_BSLASHcolor] = ACTIONS(6149), - [anon_sym_BSLASHcolorbox] = ACTIONS(6149), - [anon_sym_BSLASHtextcolor] = ACTIONS(6149), - [anon_sym_BSLASHpagecolor] = ACTIONS(6149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6149), - [anon_sym_BSLASHtext] = ACTIONS(6149), - [anon_sym_BSLASHintertext] = ACTIONS(6149), - [anon_sym_shortintertext] = ACTIONS(6149), - }, - [1313] = { - [sym_command_name] = ACTIONS(6153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6153), - [anon_sym_LBRACK] = ACTIONS(6155), - [anon_sym_RBRACK] = ACTIONS(6155), - [anon_sym_COMMA] = ACTIONS(6155), - [anon_sym_EQ] = ACTIONS(6155), - [anon_sym_LPAREN] = ACTIONS(6155), - [anon_sym_RPAREN] = ACTIONS(6155), - [anon_sym_BSLASHpart] = ACTIONS(6153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddpart] = ACTIONS(6153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6155), - [anon_sym_BSLASHchapter] = ACTIONS(6153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddchap] = ACTIONS(6153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsection] = ACTIONS(6153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddsec] = ACTIONS(6153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubsection] = ACTIONS(6153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHparagraph] = ACTIONS(6153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6155), - [anon_sym_BSLASHitem] = ACTIONS(6153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6155), - [anon_sym_LBRACE] = ACTIONS(6155), - [sym_word] = ACTIONS(6153), - [sym_placeholder] = ACTIONS(6155), - [anon_sym_PLUS] = ACTIONS(6155), - [anon_sym_DASH] = ACTIONS(6155), - [anon_sym_STAR] = ACTIONS(6155), - [anon_sym_SLASH] = ACTIONS(6155), - [anon_sym_LT] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6153), - [anon_sym_BANG] = ACTIONS(6153), - [anon_sym_PIPE] = ACTIONS(6153), - [anon_sym_COLON] = ACTIONS(6153), - [anon_sym_SQUOTE] = ACTIONS(6153), - [anon_sym__] = ACTIONS(6155), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6155), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6155), - [anon_sym_DOLLAR] = ACTIONS(6153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6155), - [anon_sym_BSLASHbegin] = ACTIONS(6153), - [anon_sym_BSLASHtitle] = ACTIONS(6153), - [anon_sym_BSLASHauthor] = ACTIONS(6153), - [anon_sym_BSLASHusepackage] = ACTIONS(6153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6153), - [anon_sym_BSLASHinclude] = ACTIONS(6153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6153), - [anon_sym_BSLASHinput] = ACTIONS(6153), - [anon_sym_BSLASHsubfile] = ACTIONS(6153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6153), - [anon_sym_BSLASHbibliography] = ACTIONS(6153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6153), - [anon_sym_BSLASHincludesvg] = ACTIONS(6153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6153), - [anon_sym_BSLASHimport] = ACTIONS(6153), - [anon_sym_BSLASHsubimport] = ACTIONS(6153), - [anon_sym_BSLASHinputfrom] = ACTIONS(6153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6153), - [anon_sym_BSLASHincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHcaption] = ACTIONS(6153), - [anon_sym_BSLASHcite] = ACTIONS(6153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCite] = ACTIONS(6153), - [anon_sym_BSLASHnocite] = ACTIONS(6153), - [anon_sym_BSLASHcitet] = ACTIONS(6153), - [anon_sym_BSLASHcitep] = ACTIONS(6153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteauthor] = ACTIONS(6153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitetitle] = ACTIONS(6153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteyear] = ACTIONS(6153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitedate] = ACTIONS(6153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteurl] = ACTIONS(6153), - [anon_sym_BSLASHfullcite] = ACTIONS(6153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6153), - [anon_sym_BSLASHcitealt] = ACTIONS(6153), - [anon_sym_BSLASHcitealp] = ACTIONS(6153), - [anon_sym_BSLASHcitetext] = ACTIONS(6153), - [anon_sym_BSLASHparencite] = ACTIONS(6153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHParencite] = ACTIONS(6153), - [anon_sym_BSLASHfootcite] = ACTIONS(6153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6153), - [anon_sym_BSLASHtextcite] = ACTIONS(6153), - [anon_sym_BSLASHTextcite] = ACTIONS(6153), - [anon_sym_BSLASHsmartcite] = ACTIONS(6153), - [anon_sym_BSLASHSmartcite] = ACTIONS(6153), - [anon_sym_BSLASHsupercite] = ACTIONS(6153), - [anon_sym_BSLASHautocite] = ACTIONS(6153), - [anon_sym_BSLASHAutocite] = ACTIONS(6153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHvolcite] = ACTIONS(6153), - [anon_sym_BSLASHVolcite] = ACTIONS(6153), - [anon_sym_BSLASHpvolcite] = ACTIONS(6153), - [anon_sym_BSLASHPvolcite] = ACTIONS(6153), - [anon_sym_BSLASHfvolcite] = ACTIONS(6153), - [anon_sym_BSLASHftvolcite] = ACTIONS(6153), - [anon_sym_BSLASHsvolcite] = ACTIONS(6153), - [anon_sym_BSLASHSvolcite] = ACTIONS(6153), - [anon_sym_BSLASHtvolcite] = ACTIONS(6153), - [anon_sym_BSLASHTvolcite] = ACTIONS(6153), - [anon_sym_BSLASHavolcite] = ACTIONS(6153), - [anon_sym_BSLASHAvolcite] = ACTIONS(6153), - [anon_sym_BSLASHnotecite] = ACTIONS(6153), - [anon_sym_BSLASHNotecite] = ACTIONS(6153), - [anon_sym_BSLASHpnotecite] = ACTIONS(6153), - [anon_sym_BSLASHPnotecite] = ACTIONS(6153), - [anon_sym_BSLASHfnotecite] = ACTIONS(6153), - [anon_sym_BSLASHlabel] = ACTIONS(6153), - [anon_sym_BSLASHref] = ACTIONS(6153), - [anon_sym_BSLASHeqref] = ACTIONS(6153), - [anon_sym_BSLASHvref] = ACTIONS(6153), - [anon_sym_BSLASHVref] = ACTIONS(6153), - [anon_sym_BSLASHautoref] = ACTIONS(6153), - [anon_sym_BSLASHpageref] = ACTIONS(6153), - [anon_sym_BSLASHcref] = ACTIONS(6153), - [anon_sym_BSLASHCref] = ACTIONS(6153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnameCref] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHlabelcref] = ACTIONS(6153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCrefrange] = ACTIONS(6153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnewlabel] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6155), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHdef] = ACTIONS(6153), - [anon_sym_BSLASHlet] = ACTIONS(6153), - [anon_sym_BSLASHleft] = ACTIONS(6153), - [anon_sym_BSLASHbig] = ACTIONS(6153), - [anon_sym_BSLASHBig] = ACTIONS(6153), - [anon_sym_BSLASHbigg] = ACTIONS(6153), - [anon_sym_BSLASHBigg] = ACTIONS(6153), - [anon_sym_BSLASHbigl] = ACTIONS(6153), - [anon_sym_BSLASHBigl] = ACTIONS(6153), - [anon_sym_BSLASHbiggl] = ACTIONS(6153), - [anon_sym_BSLASHBiggl] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6153), - [anon_sym_BSLASHgls] = ACTIONS(6153), - [anon_sym_BSLASHGls] = ACTIONS(6153), - [anon_sym_BSLASHGLS] = ACTIONS(6153), - [anon_sym_BSLASHglspl] = ACTIONS(6153), - [anon_sym_BSLASHGlspl] = ACTIONS(6153), - [anon_sym_BSLASHGLSpl] = ACTIONS(6153), - [anon_sym_BSLASHglsdisp] = ACTIONS(6153), - [anon_sym_BSLASHglslink] = ACTIONS(6153), - [anon_sym_BSLASHglstext] = ACTIONS(6153), - [anon_sym_BSLASHGlstext] = ACTIONS(6153), - [anon_sym_BSLASHGLStext] = ACTIONS(6153), - [anon_sym_BSLASHglsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6153), - [anon_sym_BSLASHglsplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSplural] = ACTIONS(6153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHglsname] = ACTIONS(6153), - [anon_sym_BSLASHGlsname] = ACTIONS(6153), - [anon_sym_BSLASHGLSname] = ACTIONS(6153), - [anon_sym_BSLASHglssymbol] = ACTIONS(6153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6153), - [anon_sym_BSLASHglsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6153), - [anon_sym_BSLASHglsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6153), - [anon_sym_BSLASHglsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6153), - [anon_sym_BSLASHglsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6153), - [anon_sym_BSLASHglsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6153), - [anon_sym_BSLASHnewacronym] = ACTIONS(6153), - [anon_sym_BSLASHacrshort] = ACTIONS(6153), - [anon_sym_BSLASHAcrshort] = ACTIONS(6153), - [anon_sym_BSLASHACRshort] = ACTIONS(6153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6153), - [anon_sym_BSLASHacrlong] = ACTIONS(6153), - [anon_sym_BSLASHAcrlong] = ACTIONS(6153), - [anon_sym_BSLASHACRlong] = ACTIONS(6153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6153), - [anon_sym_BSLASHacrfull] = ACTIONS(6153), - [anon_sym_BSLASHAcrfull] = ACTIONS(6153), - [anon_sym_BSLASHACRfull] = ACTIONS(6153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6153), - [anon_sym_BSLASHacs] = ACTIONS(6153), - [anon_sym_BSLASHAcs] = ACTIONS(6153), - [anon_sym_BSLASHacsp] = ACTIONS(6153), - [anon_sym_BSLASHAcsp] = ACTIONS(6153), - [anon_sym_BSLASHacl] = ACTIONS(6153), - [anon_sym_BSLASHAcl] = ACTIONS(6153), - [anon_sym_BSLASHaclp] = ACTIONS(6153), - [anon_sym_BSLASHAclp] = ACTIONS(6153), - [anon_sym_BSLASHacf] = ACTIONS(6153), - [anon_sym_BSLASHAcf] = ACTIONS(6153), - [anon_sym_BSLASHacfp] = ACTIONS(6153), - [anon_sym_BSLASHAcfp] = ACTIONS(6153), - [anon_sym_BSLASHac] = ACTIONS(6153), - [anon_sym_BSLASHAc] = ACTIONS(6153), - [anon_sym_BSLASHacp] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6153), - [anon_sym_BSLASHcolor] = ACTIONS(6153), - [anon_sym_BSLASHcolorbox] = ACTIONS(6153), - [anon_sym_BSLASHtextcolor] = ACTIONS(6153), - [anon_sym_BSLASHpagecolor] = ACTIONS(6153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6153), - [anon_sym_BSLASHtext] = ACTIONS(6153), - [anon_sym_BSLASHintertext] = ACTIONS(6153), - [anon_sym_shortintertext] = ACTIONS(6153), - }, - [1314] = { - [sym_command_name] = ACTIONS(6189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6189), - [anon_sym_LBRACK] = ACTIONS(6191), - [anon_sym_RBRACK] = ACTIONS(6191), - [anon_sym_COMMA] = ACTIONS(6191), - [anon_sym_EQ] = ACTIONS(6191), - [anon_sym_LPAREN] = ACTIONS(6191), - [anon_sym_RPAREN] = ACTIONS(6191), - [anon_sym_BSLASHpart] = ACTIONS(6189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddpart] = ACTIONS(6189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6191), - [anon_sym_BSLASHchapter] = ACTIONS(6189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddchap] = ACTIONS(6189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsection] = ACTIONS(6189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHaddsec] = ACTIONS(6189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubsection] = ACTIONS(6189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6191), - [anon_sym_BSLASHparagraph] = ACTIONS(6189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6191), - [anon_sym_BSLASHitem] = ACTIONS(6189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6191), - [anon_sym_LBRACE] = ACTIONS(6191), - [sym_word] = ACTIONS(6189), - [sym_placeholder] = ACTIONS(6191), - [anon_sym_PLUS] = ACTIONS(6191), - [anon_sym_DASH] = ACTIONS(6191), - [anon_sym_STAR] = ACTIONS(6191), - [anon_sym_SLASH] = ACTIONS(6191), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_COLON] = ACTIONS(6189), - [anon_sym_SQUOTE] = ACTIONS(6189), - [anon_sym__] = ACTIONS(6191), - [anon_sym_CARET] = ACTIONS(6191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6191), - [anon_sym_DOLLAR] = ACTIONS(6189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), - [anon_sym_BSLASHbegin] = ACTIONS(6189), - [anon_sym_BSLASHtitle] = ACTIONS(6189), - [anon_sym_BSLASHauthor] = ACTIONS(6189), - [anon_sym_BSLASHusepackage] = ACTIONS(6189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), - [anon_sym_BSLASHinclude] = ACTIONS(6189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), - [anon_sym_BSLASHinput] = ACTIONS(6189), - [anon_sym_BSLASHsubfile] = ACTIONS(6189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), - [anon_sym_BSLASHbibliography] = ACTIONS(6189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), - [anon_sym_BSLASHincludesvg] = ACTIONS(6189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), - [anon_sym_BSLASHimport] = ACTIONS(6189), - [anon_sym_BSLASHsubimport] = ACTIONS(6189), - [anon_sym_BSLASHinputfrom] = ACTIONS(6189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), - [anon_sym_BSLASHincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHcaption] = ACTIONS(6189), - [anon_sym_BSLASHcite] = ACTIONS(6189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCite] = ACTIONS(6189), - [anon_sym_BSLASHnocite] = ACTIONS(6189), - [anon_sym_BSLASHcitet] = ACTIONS(6189), - [anon_sym_BSLASHcitep] = ACTIONS(6189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteauthor] = ACTIONS(6189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitetitle] = ACTIONS(6189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteyear] = ACTIONS(6189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitedate] = ACTIONS(6189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteurl] = ACTIONS(6189), - [anon_sym_BSLASHfullcite] = ACTIONS(6189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), - [anon_sym_BSLASHcitealt] = ACTIONS(6189), - [anon_sym_BSLASHcitealp] = ACTIONS(6189), - [anon_sym_BSLASHcitetext] = ACTIONS(6189), - [anon_sym_BSLASHparencite] = ACTIONS(6189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHParencite] = ACTIONS(6189), - [anon_sym_BSLASHfootcite] = ACTIONS(6189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), - [anon_sym_BSLASHtextcite] = ACTIONS(6189), - [anon_sym_BSLASHTextcite] = ACTIONS(6189), - [anon_sym_BSLASHsmartcite] = ACTIONS(6189), - [anon_sym_BSLASHSmartcite] = ACTIONS(6189), - [anon_sym_BSLASHsupercite] = ACTIONS(6189), - [anon_sym_BSLASHautocite] = ACTIONS(6189), - [anon_sym_BSLASHAutocite] = ACTIONS(6189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHvolcite] = ACTIONS(6189), - [anon_sym_BSLASHVolcite] = ACTIONS(6189), - [anon_sym_BSLASHpvolcite] = ACTIONS(6189), - [anon_sym_BSLASHPvolcite] = ACTIONS(6189), - [anon_sym_BSLASHfvolcite] = ACTIONS(6189), - [anon_sym_BSLASHftvolcite] = ACTIONS(6189), - [anon_sym_BSLASHsvolcite] = ACTIONS(6189), - [anon_sym_BSLASHSvolcite] = ACTIONS(6189), - [anon_sym_BSLASHtvolcite] = ACTIONS(6189), - [anon_sym_BSLASHTvolcite] = ACTIONS(6189), - [anon_sym_BSLASHavolcite] = ACTIONS(6189), - [anon_sym_BSLASHAvolcite] = ACTIONS(6189), - [anon_sym_BSLASHnotecite] = ACTIONS(6189), - [anon_sym_BSLASHNotecite] = ACTIONS(6189), - [anon_sym_BSLASHpnotecite] = ACTIONS(6189), - [anon_sym_BSLASHPnotecite] = ACTIONS(6189), - [anon_sym_BSLASHfnotecite] = ACTIONS(6189), - [anon_sym_BSLASHlabel] = ACTIONS(6189), - [anon_sym_BSLASHref] = ACTIONS(6189), - [anon_sym_BSLASHeqref] = ACTIONS(6189), - [anon_sym_BSLASHvref] = ACTIONS(6189), - [anon_sym_BSLASHVref] = ACTIONS(6189), - [anon_sym_BSLASHautoref] = ACTIONS(6189), - [anon_sym_BSLASHpageref] = ACTIONS(6189), - [anon_sym_BSLASHcref] = ACTIONS(6189), - [anon_sym_BSLASHCref] = ACTIONS(6189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnameCref] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHlabelcref] = ACTIONS(6189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCrefrange] = ACTIONS(6189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnewlabel] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHdef] = ACTIONS(6189), - [anon_sym_BSLASHlet] = ACTIONS(6189), - [anon_sym_BSLASHleft] = ACTIONS(6189), - [anon_sym_BSLASHbig] = ACTIONS(6189), - [anon_sym_BSLASHBig] = ACTIONS(6189), - [anon_sym_BSLASHbigg] = ACTIONS(6189), - [anon_sym_BSLASHBigg] = ACTIONS(6189), - [anon_sym_BSLASHbigl] = ACTIONS(6189), - [anon_sym_BSLASHBigl] = ACTIONS(6189), - [anon_sym_BSLASHbiggl] = ACTIONS(6189), - [anon_sym_BSLASHBiggl] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), - [anon_sym_BSLASHgls] = ACTIONS(6189), - [anon_sym_BSLASHGls] = ACTIONS(6189), - [anon_sym_BSLASHGLS] = ACTIONS(6189), - [anon_sym_BSLASHglspl] = ACTIONS(6189), - [anon_sym_BSLASHGlspl] = ACTIONS(6189), - [anon_sym_BSLASHGLSpl] = ACTIONS(6189), - [anon_sym_BSLASHglsdisp] = ACTIONS(6189), - [anon_sym_BSLASHglslink] = ACTIONS(6189), - [anon_sym_BSLASHglstext] = ACTIONS(6189), - [anon_sym_BSLASHGlstext] = ACTIONS(6189), - [anon_sym_BSLASHGLStext] = ACTIONS(6189), - [anon_sym_BSLASHglsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), - [anon_sym_BSLASHglsplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSplural] = ACTIONS(6189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHglsname] = ACTIONS(6189), - [anon_sym_BSLASHGlsname] = ACTIONS(6189), - [anon_sym_BSLASHGLSname] = ACTIONS(6189), - [anon_sym_BSLASHglssymbol] = ACTIONS(6189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), - [anon_sym_BSLASHglsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), - [anon_sym_BSLASHglsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), - [anon_sym_BSLASHglsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), - [anon_sym_BSLASHglsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), - [anon_sym_BSLASHglsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), - [anon_sym_BSLASHnewacronym] = ACTIONS(6189), - [anon_sym_BSLASHacrshort] = ACTIONS(6189), - [anon_sym_BSLASHAcrshort] = ACTIONS(6189), - [anon_sym_BSLASHACRshort] = ACTIONS(6189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), - [anon_sym_BSLASHacrlong] = ACTIONS(6189), - [anon_sym_BSLASHAcrlong] = ACTIONS(6189), - [anon_sym_BSLASHACRlong] = ACTIONS(6189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), - [anon_sym_BSLASHacrfull] = ACTIONS(6189), - [anon_sym_BSLASHAcrfull] = ACTIONS(6189), - [anon_sym_BSLASHACRfull] = ACTIONS(6189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), - [anon_sym_BSLASHacs] = ACTIONS(6189), - [anon_sym_BSLASHAcs] = ACTIONS(6189), - [anon_sym_BSLASHacsp] = ACTIONS(6189), - [anon_sym_BSLASHAcsp] = ACTIONS(6189), - [anon_sym_BSLASHacl] = ACTIONS(6189), - [anon_sym_BSLASHAcl] = ACTIONS(6189), - [anon_sym_BSLASHaclp] = ACTIONS(6189), - [anon_sym_BSLASHAclp] = ACTIONS(6189), - [anon_sym_BSLASHacf] = ACTIONS(6189), - [anon_sym_BSLASHAcf] = ACTIONS(6189), - [anon_sym_BSLASHacfp] = ACTIONS(6189), - [anon_sym_BSLASHAcfp] = ACTIONS(6189), - [anon_sym_BSLASHac] = ACTIONS(6189), - [anon_sym_BSLASHAc] = ACTIONS(6189), - [anon_sym_BSLASHacp] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), - [anon_sym_BSLASHcolor] = ACTIONS(6189), - [anon_sym_BSLASHcolorbox] = ACTIONS(6189), - [anon_sym_BSLASHtextcolor] = ACTIONS(6189), - [anon_sym_BSLASHpagecolor] = ACTIONS(6189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), - [anon_sym_BSLASHtext] = ACTIONS(6189), - [anon_sym_BSLASHintertext] = ACTIONS(6189), - [anon_sym_shortintertext] = ACTIONS(6189), - }, - [1315] = { - [sym_command_name] = ACTIONS(6121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6121), - [anon_sym_LBRACK] = ACTIONS(6123), - [anon_sym_RBRACK] = ACTIONS(6123), - [anon_sym_COMMA] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(6123), - [anon_sym_LPAREN] = ACTIONS(6123), - [anon_sym_RPAREN] = ACTIONS(6123), - [anon_sym_BSLASHpart] = ACTIONS(6121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddpart] = ACTIONS(6121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6123), - [anon_sym_BSLASHchapter] = ACTIONS(6121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddchap] = ACTIONS(6121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsection] = ACTIONS(6121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHaddsec] = ACTIONS(6121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubsection] = ACTIONS(6121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6123), - [anon_sym_BSLASHparagraph] = ACTIONS(6121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6123), - [anon_sym_BSLASHitem] = ACTIONS(6121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6123), - [anon_sym_LBRACE] = ACTIONS(6123), - [sym_word] = ACTIONS(6121), - [sym_placeholder] = ACTIONS(6123), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6123), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_LT] = ACTIONS(6121), - [anon_sym_GT] = ACTIONS(6121), - [anon_sym_BANG] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_SQUOTE] = ACTIONS(6121), - [anon_sym__] = ACTIONS(6123), - [anon_sym_CARET] = ACTIONS(6123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6123), - [anon_sym_DOLLAR] = ACTIONS(6121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6123), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6123), - [anon_sym_BSLASHbegin] = ACTIONS(6121), - [anon_sym_BSLASHtitle] = ACTIONS(6121), - [anon_sym_BSLASHauthor] = ACTIONS(6121), - [anon_sym_BSLASHusepackage] = ACTIONS(6121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6121), - [anon_sym_BSLASHinclude] = ACTIONS(6121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6121), - [anon_sym_BSLASHinput] = ACTIONS(6121), - [anon_sym_BSLASHsubfile] = ACTIONS(6121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6121), - [anon_sym_BSLASHbibliography] = ACTIONS(6121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6121), - [anon_sym_BSLASHincludesvg] = ACTIONS(6121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6121), - [anon_sym_BSLASHimport] = ACTIONS(6121), - [anon_sym_BSLASHsubimport] = ACTIONS(6121), - [anon_sym_BSLASHinputfrom] = ACTIONS(6121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6121), - [anon_sym_BSLASHincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHcaption] = ACTIONS(6121), - [anon_sym_BSLASHcite] = ACTIONS(6121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCite] = ACTIONS(6121), - [anon_sym_BSLASHnocite] = ACTIONS(6121), - [anon_sym_BSLASHcitet] = ACTIONS(6121), - [anon_sym_BSLASHcitep] = ACTIONS(6121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteauthor] = ACTIONS(6121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitetitle] = ACTIONS(6121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteyear] = ACTIONS(6121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitedate] = ACTIONS(6121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteurl] = ACTIONS(6121), - [anon_sym_BSLASHfullcite] = ACTIONS(6121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6121), - [anon_sym_BSLASHcitealt] = ACTIONS(6121), - [anon_sym_BSLASHcitealp] = ACTIONS(6121), - [anon_sym_BSLASHcitetext] = ACTIONS(6121), - [anon_sym_BSLASHparencite] = ACTIONS(6121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHParencite] = ACTIONS(6121), - [anon_sym_BSLASHfootcite] = ACTIONS(6121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6121), - [anon_sym_BSLASHtextcite] = ACTIONS(6121), - [anon_sym_BSLASHTextcite] = ACTIONS(6121), - [anon_sym_BSLASHsmartcite] = ACTIONS(6121), - [anon_sym_BSLASHSmartcite] = ACTIONS(6121), - [anon_sym_BSLASHsupercite] = ACTIONS(6121), - [anon_sym_BSLASHautocite] = ACTIONS(6121), - [anon_sym_BSLASHAutocite] = ACTIONS(6121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHvolcite] = ACTIONS(6121), - [anon_sym_BSLASHVolcite] = ACTIONS(6121), - [anon_sym_BSLASHpvolcite] = ACTIONS(6121), - [anon_sym_BSLASHPvolcite] = ACTIONS(6121), - [anon_sym_BSLASHfvolcite] = ACTIONS(6121), - [anon_sym_BSLASHftvolcite] = ACTIONS(6121), - [anon_sym_BSLASHsvolcite] = ACTIONS(6121), - [anon_sym_BSLASHSvolcite] = ACTIONS(6121), - [anon_sym_BSLASHtvolcite] = ACTIONS(6121), - [anon_sym_BSLASHTvolcite] = ACTIONS(6121), - [anon_sym_BSLASHavolcite] = ACTIONS(6121), - [anon_sym_BSLASHAvolcite] = ACTIONS(6121), - [anon_sym_BSLASHnotecite] = ACTIONS(6121), - [anon_sym_BSLASHNotecite] = ACTIONS(6121), - [anon_sym_BSLASHpnotecite] = ACTIONS(6121), - [anon_sym_BSLASHPnotecite] = ACTIONS(6121), - [anon_sym_BSLASHfnotecite] = ACTIONS(6121), - [anon_sym_BSLASHlabel] = ACTIONS(6121), - [anon_sym_BSLASHref] = ACTIONS(6121), - [anon_sym_BSLASHeqref] = ACTIONS(6121), - [anon_sym_BSLASHvref] = ACTIONS(6121), - [anon_sym_BSLASHVref] = ACTIONS(6121), - [anon_sym_BSLASHautoref] = ACTIONS(6121), - [anon_sym_BSLASHpageref] = ACTIONS(6121), - [anon_sym_BSLASHcref] = ACTIONS(6121), - [anon_sym_BSLASHCref] = ACTIONS(6121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnameCref] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHlabelcref] = ACTIONS(6121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCrefrange] = ACTIONS(6121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnewlabel] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6123), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHdef] = ACTIONS(6121), - [anon_sym_BSLASHlet] = ACTIONS(6121), - [anon_sym_BSLASHleft] = ACTIONS(6121), - [anon_sym_BSLASHbig] = ACTIONS(6121), - [anon_sym_BSLASHBig] = ACTIONS(6121), - [anon_sym_BSLASHbigg] = ACTIONS(6121), - [anon_sym_BSLASHBigg] = ACTIONS(6121), - [anon_sym_BSLASHbigl] = ACTIONS(6121), - [anon_sym_BSLASHBigl] = ACTIONS(6121), - [anon_sym_BSLASHbiggl] = ACTIONS(6121), - [anon_sym_BSLASHBiggl] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6121), - [anon_sym_BSLASHgls] = ACTIONS(6121), - [anon_sym_BSLASHGls] = ACTIONS(6121), - [anon_sym_BSLASHGLS] = ACTIONS(6121), - [anon_sym_BSLASHglspl] = ACTIONS(6121), - [anon_sym_BSLASHGlspl] = ACTIONS(6121), - [anon_sym_BSLASHGLSpl] = ACTIONS(6121), - [anon_sym_BSLASHglsdisp] = ACTIONS(6121), - [anon_sym_BSLASHglslink] = ACTIONS(6121), - [anon_sym_BSLASHglstext] = ACTIONS(6121), - [anon_sym_BSLASHGlstext] = ACTIONS(6121), - [anon_sym_BSLASHGLStext] = ACTIONS(6121), - [anon_sym_BSLASHglsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6121), - [anon_sym_BSLASHglsplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSplural] = ACTIONS(6121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHglsname] = ACTIONS(6121), - [anon_sym_BSLASHGlsname] = ACTIONS(6121), - [anon_sym_BSLASHGLSname] = ACTIONS(6121), - [anon_sym_BSLASHglssymbol] = ACTIONS(6121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6121), - [anon_sym_BSLASHglsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6121), - [anon_sym_BSLASHglsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6121), - [anon_sym_BSLASHglsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6121), - [anon_sym_BSLASHglsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6121), - [anon_sym_BSLASHglsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6121), - [anon_sym_BSLASHnewacronym] = ACTIONS(6121), - [anon_sym_BSLASHacrshort] = ACTIONS(6121), - [anon_sym_BSLASHAcrshort] = ACTIONS(6121), - [anon_sym_BSLASHACRshort] = ACTIONS(6121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6121), - [anon_sym_BSLASHacrlong] = ACTIONS(6121), - [anon_sym_BSLASHAcrlong] = ACTIONS(6121), - [anon_sym_BSLASHACRlong] = ACTIONS(6121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6121), - [anon_sym_BSLASHacrfull] = ACTIONS(6121), - [anon_sym_BSLASHAcrfull] = ACTIONS(6121), - [anon_sym_BSLASHACRfull] = ACTIONS(6121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6121), - [anon_sym_BSLASHacs] = ACTIONS(6121), - [anon_sym_BSLASHAcs] = ACTIONS(6121), - [anon_sym_BSLASHacsp] = ACTIONS(6121), - [anon_sym_BSLASHAcsp] = ACTIONS(6121), - [anon_sym_BSLASHacl] = ACTIONS(6121), - [anon_sym_BSLASHAcl] = ACTIONS(6121), - [anon_sym_BSLASHaclp] = ACTIONS(6121), - [anon_sym_BSLASHAclp] = ACTIONS(6121), - [anon_sym_BSLASHacf] = ACTIONS(6121), - [anon_sym_BSLASHAcf] = ACTIONS(6121), - [anon_sym_BSLASHacfp] = ACTIONS(6121), - [anon_sym_BSLASHAcfp] = ACTIONS(6121), - [anon_sym_BSLASHac] = ACTIONS(6121), - [anon_sym_BSLASHAc] = ACTIONS(6121), - [anon_sym_BSLASHacp] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6121), - [anon_sym_BSLASHcolor] = ACTIONS(6121), - [anon_sym_BSLASHcolorbox] = ACTIONS(6121), - [anon_sym_BSLASHtextcolor] = ACTIONS(6121), - [anon_sym_BSLASHpagecolor] = ACTIONS(6121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6121), - [anon_sym_BSLASHtext] = ACTIONS(6121), - [anon_sym_BSLASHintertext] = ACTIONS(6121), - [anon_sym_shortintertext] = ACTIONS(6121), - }, - [1316] = { - [sym_command_name] = ACTIONS(6233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_RBRACK] = ACTIONS(6235), - [anon_sym_COMMA] = ACTIONS(6235), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_LPAREN] = ACTIONS(6235), - [anon_sym_RPAREN] = ACTIONS(6235), - [anon_sym_BSLASHpart] = ACTIONS(6233), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddpart] = ACTIONS(6233), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6235), - [anon_sym_BSLASHchapter] = ACTIONS(6233), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddchap] = ACTIONS(6233), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsection] = ACTIONS(6233), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHaddsec] = ACTIONS(6233), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubsection] = ACTIONS(6233), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6233), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6235), - [anon_sym_BSLASHparagraph] = ACTIONS(6233), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6235), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6233), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6235), - [anon_sym_BSLASHitem] = ACTIONS(6233), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6235), - [anon_sym_LBRACE] = ACTIONS(6235), - [sym_word] = ACTIONS(6233), - [sym_placeholder] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6233), - [anon_sym_BANG] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(6233), - [anon_sym_SQUOTE] = ACTIONS(6233), - [anon_sym__] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6235), - [anon_sym_DOLLAR] = ACTIONS(6233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6235), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6235), - [anon_sym_BSLASHbegin] = ACTIONS(6233), - [anon_sym_BSLASHtitle] = ACTIONS(6233), - [anon_sym_BSLASHauthor] = ACTIONS(6233), - [anon_sym_BSLASHusepackage] = ACTIONS(6233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6233), - [anon_sym_BSLASHinclude] = ACTIONS(6233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6233), - [anon_sym_BSLASHinput] = ACTIONS(6233), - [anon_sym_BSLASHsubfile] = ACTIONS(6233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6233), - [anon_sym_BSLASHbibliography] = ACTIONS(6233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6233), - [anon_sym_BSLASHincludesvg] = ACTIONS(6233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6233), - [anon_sym_BSLASHimport] = ACTIONS(6233), - [anon_sym_BSLASHsubimport] = ACTIONS(6233), - [anon_sym_BSLASHinputfrom] = ACTIONS(6233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6233), - [anon_sym_BSLASHincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHcaption] = ACTIONS(6233), - [anon_sym_BSLASHcite] = ACTIONS(6233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCite] = ACTIONS(6233), - [anon_sym_BSLASHnocite] = ACTIONS(6233), - [anon_sym_BSLASHcitet] = ACTIONS(6233), - [anon_sym_BSLASHcitep] = ACTIONS(6233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteauthor] = ACTIONS(6233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitetitle] = ACTIONS(6233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteyear] = ACTIONS(6233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitedate] = ACTIONS(6233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteurl] = ACTIONS(6233), - [anon_sym_BSLASHfullcite] = ACTIONS(6233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6233), - [anon_sym_BSLASHcitealt] = ACTIONS(6233), - [anon_sym_BSLASHcitealp] = ACTIONS(6233), - [anon_sym_BSLASHcitetext] = ACTIONS(6233), - [anon_sym_BSLASHparencite] = ACTIONS(6233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHParencite] = ACTIONS(6233), - [anon_sym_BSLASHfootcite] = ACTIONS(6233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6233), - [anon_sym_BSLASHtextcite] = ACTIONS(6233), - [anon_sym_BSLASHTextcite] = ACTIONS(6233), - [anon_sym_BSLASHsmartcite] = ACTIONS(6233), - [anon_sym_BSLASHSmartcite] = ACTIONS(6233), - [anon_sym_BSLASHsupercite] = ACTIONS(6233), - [anon_sym_BSLASHautocite] = ACTIONS(6233), - [anon_sym_BSLASHAutocite] = ACTIONS(6233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHvolcite] = ACTIONS(6233), - [anon_sym_BSLASHVolcite] = ACTIONS(6233), - [anon_sym_BSLASHpvolcite] = ACTIONS(6233), - [anon_sym_BSLASHPvolcite] = ACTIONS(6233), - [anon_sym_BSLASHfvolcite] = ACTIONS(6233), - [anon_sym_BSLASHftvolcite] = ACTIONS(6233), - [anon_sym_BSLASHsvolcite] = ACTIONS(6233), - [anon_sym_BSLASHSvolcite] = ACTIONS(6233), - [anon_sym_BSLASHtvolcite] = ACTIONS(6233), - [anon_sym_BSLASHTvolcite] = ACTIONS(6233), - [anon_sym_BSLASHavolcite] = ACTIONS(6233), - [anon_sym_BSLASHAvolcite] = ACTIONS(6233), - [anon_sym_BSLASHnotecite] = ACTIONS(6233), - [anon_sym_BSLASHNotecite] = ACTIONS(6233), - [anon_sym_BSLASHpnotecite] = ACTIONS(6233), - [anon_sym_BSLASHPnotecite] = ACTIONS(6233), - [anon_sym_BSLASHfnotecite] = ACTIONS(6233), - [anon_sym_BSLASHlabel] = ACTIONS(6233), - [anon_sym_BSLASHref] = ACTIONS(6233), - [anon_sym_BSLASHeqref] = ACTIONS(6233), - [anon_sym_BSLASHvref] = ACTIONS(6233), - [anon_sym_BSLASHVref] = ACTIONS(6233), - [anon_sym_BSLASHautoref] = ACTIONS(6233), - [anon_sym_BSLASHpageref] = ACTIONS(6233), - [anon_sym_BSLASHcref] = ACTIONS(6233), - [anon_sym_BSLASHCref] = ACTIONS(6233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnameCref] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHlabelcref] = ACTIONS(6233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCrefrange] = ACTIONS(6233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnewlabel] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6235), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHdef] = ACTIONS(6233), - [anon_sym_BSLASHlet] = ACTIONS(6233), - [anon_sym_BSLASHleft] = ACTIONS(6233), - [anon_sym_BSLASHbig] = ACTIONS(6233), - [anon_sym_BSLASHBig] = ACTIONS(6233), - [anon_sym_BSLASHbigg] = ACTIONS(6233), - [anon_sym_BSLASHBigg] = ACTIONS(6233), - [anon_sym_BSLASHbigl] = ACTIONS(6233), - [anon_sym_BSLASHBigl] = ACTIONS(6233), - [anon_sym_BSLASHbiggl] = ACTIONS(6233), - [anon_sym_BSLASHBiggl] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6233), - [anon_sym_BSLASHgls] = ACTIONS(6233), - [anon_sym_BSLASHGls] = ACTIONS(6233), - [anon_sym_BSLASHGLS] = ACTIONS(6233), - [anon_sym_BSLASHglspl] = ACTIONS(6233), - [anon_sym_BSLASHGlspl] = ACTIONS(6233), - [anon_sym_BSLASHGLSpl] = ACTIONS(6233), - [anon_sym_BSLASHglsdisp] = ACTIONS(6233), - [anon_sym_BSLASHglslink] = ACTIONS(6233), - [anon_sym_BSLASHglstext] = ACTIONS(6233), - [anon_sym_BSLASHGlstext] = ACTIONS(6233), - [anon_sym_BSLASHGLStext] = ACTIONS(6233), - [anon_sym_BSLASHglsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6233), - [anon_sym_BSLASHglsplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSplural] = ACTIONS(6233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHglsname] = ACTIONS(6233), - [anon_sym_BSLASHGlsname] = ACTIONS(6233), - [anon_sym_BSLASHGLSname] = ACTIONS(6233), - [anon_sym_BSLASHglssymbol] = ACTIONS(6233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6233), - [anon_sym_BSLASHglsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6233), - [anon_sym_BSLASHglsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6233), - [anon_sym_BSLASHglsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6233), - [anon_sym_BSLASHglsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6233), - [anon_sym_BSLASHglsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6233), - [anon_sym_BSLASHnewacronym] = ACTIONS(6233), - [anon_sym_BSLASHacrshort] = ACTIONS(6233), - [anon_sym_BSLASHAcrshort] = ACTIONS(6233), - [anon_sym_BSLASHACRshort] = ACTIONS(6233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6233), - [anon_sym_BSLASHacrlong] = ACTIONS(6233), - [anon_sym_BSLASHAcrlong] = ACTIONS(6233), - [anon_sym_BSLASHACRlong] = ACTIONS(6233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6233), - [anon_sym_BSLASHacrfull] = ACTIONS(6233), - [anon_sym_BSLASHAcrfull] = ACTIONS(6233), - [anon_sym_BSLASHACRfull] = ACTIONS(6233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6233), - [anon_sym_BSLASHacs] = ACTIONS(6233), - [anon_sym_BSLASHAcs] = ACTIONS(6233), - [anon_sym_BSLASHacsp] = ACTIONS(6233), - [anon_sym_BSLASHAcsp] = ACTIONS(6233), - [anon_sym_BSLASHacl] = ACTIONS(6233), - [anon_sym_BSLASHAcl] = ACTIONS(6233), - [anon_sym_BSLASHaclp] = ACTIONS(6233), - [anon_sym_BSLASHAclp] = ACTIONS(6233), - [anon_sym_BSLASHacf] = ACTIONS(6233), - [anon_sym_BSLASHAcf] = ACTIONS(6233), - [anon_sym_BSLASHacfp] = ACTIONS(6233), - [anon_sym_BSLASHAcfp] = ACTIONS(6233), - [anon_sym_BSLASHac] = ACTIONS(6233), - [anon_sym_BSLASHAc] = ACTIONS(6233), - [anon_sym_BSLASHacp] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6233), - [anon_sym_BSLASHcolor] = ACTIONS(6233), - [anon_sym_BSLASHcolorbox] = ACTIONS(6233), - [anon_sym_BSLASHtextcolor] = ACTIONS(6233), - [anon_sym_BSLASHpagecolor] = ACTIONS(6233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6233), - [anon_sym_BSLASHtext] = ACTIONS(6233), - [anon_sym_BSLASHintertext] = ACTIONS(6233), - [anon_sym_shortintertext] = ACTIONS(6233), - }, - [1317] = { - [sym_command_name] = ACTIONS(6229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6229), - [anon_sym_LBRACK] = ACTIONS(6231), - [anon_sym_RBRACK] = ACTIONS(6231), - [anon_sym_COMMA] = ACTIONS(6231), - [anon_sym_EQ] = ACTIONS(6231), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_RPAREN] = ACTIONS(6231), - [anon_sym_BSLASHpart] = ACTIONS(6229), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddpart] = ACTIONS(6229), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6231), - [anon_sym_BSLASHchapter] = ACTIONS(6229), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddchap] = ACTIONS(6229), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsection] = ACTIONS(6229), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddsec] = ACTIONS(6229), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubsection] = ACTIONS(6229), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6229), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHparagraph] = ACTIONS(6229), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6229), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6231), - [anon_sym_BSLASHitem] = ACTIONS(6229), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6231), - [anon_sym_LBRACE] = ACTIONS(6231), - [sym_word] = ACTIONS(6229), - [sym_placeholder] = ACTIONS(6231), - [anon_sym_PLUS] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_SLASH] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(6229), - [anon_sym_GT] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [anon_sym_PIPE] = ACTIONS(6229), - [anon_sym_COLON] = ACTIONS(6229), - [anon_sym_SQUOTE] = ACTIONS(6229), - [anon_sym__] = ACTIONS(6231), - [anon_sym_CARET] = ACTIONS(6231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6231), - [anon_sym_DOLLAR] = ACTIONS(6229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6231), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6231), - [anon_sym_BSLASHbegin] = ACTIONS(6229), - [anon_sym_BSLASHtitle] = ACTIONS(6229), - [anon_sym_BSLASHauthor] = ACTIONS(6229), - [anon_sym_BSLASHusepackage] = ACTIONS(6229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6229), - [anon_sym_BSLASHinclude] = ACTIONS(6229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6229), - [anon_sym_BSLASHinput] = ACTIONS(6229), - [anon_sym_BSLASHsubfile] = ACTIONS(6229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6229), - [anon_sym_BSLASHbibliography] = ACTIONS(6229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6229), - [anon_sym_BSLASHincludesvg] = ACTIONS(6229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6229), - [anon_sym_BSLASHimport] = ACTIONS(6229), - [anon_sym_BSLASHsubimport] = ACTIONS(6229), - [anon_sym_BSLASHinputfrom] = ACTIONS(6229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6229), - [anon_sym_BSLASHincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHcaption] = ACTIONS(6229), - [anon_sym_BSLASHcite] = ACTIONS(6229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCite] = ACTIONS(6229), - [anon_sym_BSLASHnocite] = ACTIONS(6229), - [anon_sym_BSLASHcitet] = ACTIONS(6229), - [anon_sym_BSLASHcitep] = ACTIONS(6229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteauthor] = ACTIONS(6229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitetitle] = ACTIONS(6229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteyear] = ACTIONS(6229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitedate] = ACTIONS(6229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteurl] = ACTIONS(6229), - [anon_sym_BSLASHfullcite] = ACTIONS(6229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6229), - [anon_sym_BSLASHcitealt] = ACTIONS(6229), - [anon_sym_BSLASHcitealp] = ACTIONS(6229), - [anon_sym_BSLASHcitetext] = ACTIONS(6229), - [anon_sym_BSLASHparencite] = ACTIONS(6229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHParencite] = ACTIONS(6229), - [anon_sym_BSLASHfootcite] = ACTIONS(6229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6229), - [anon_sym_BSLASHtextcite] = ACTIONS(6229), - [anon_sym_BSLASHTextcite] = ACTIONS(6229), - [anon_sym_BSLASHsmartcite] = ACTIONS(6229), - [anon_sym_BSLASHSmartcite] = ACTIONS(6229), - [anon_sym_BSLASHsupercite] = ACTIONS(6229), - [anon_sym_BSLASHautocite] = ACTIONS(6229), - [anon_sym_BSLASHAutocite] = ACTIONS(6229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHvolcite] = ACTIONS(6229), - [anon_sym_BSLASHVolcite] = ACTIONS(6229), - [anon_sym_BSLASHpvolcite] = ACTIONS(6229), - [anon_sym_BSLASHPvolcite] = ACTIONS(6229), - [anon_sym_BSLASHfvolcite] = ACTIONS(6229), - [anon_sym_BSLASHftvolcite] = ACTIONS(6229), - [anon_sym_BSLASHsvolcite] = ACTIONS(6229), - [anon_sym_BSLASHSvolcite] = ACTIONS(6229), - [anon_sym_BSLASHtvolcite] = ACTIONS(6229), - [anon_sym_BSLASHTvolcite] = ACTIONS(6229), - [anon_sym_BSLASHavolcite] = ACTIONS(6229), - [anon_sym_BSLASHAvolcite] = ACTIONS(6229), - [anon_sym_BSLASHnotecite] = ACTIONS(6229), - [anon_sym_BSLASHNotecite] = ACTIONS(6229), - [anon_sym_BSLASHpnotecite] = ACTIONS(6229), - [anon_sym_BSLASHPnotecite] = ACTIONS(6229), - [anon_sym_BSLASHfnotecite] = ACTIONS(6229), - [anon_sym_BSLASHlabel] = ACTIONS(6229), - [anon_sym_BSLASHref] = ACTIONS(6229), - [anon_sym_BSLASHeqref] = ACTIONS(6229), - [anon_sym_BSLASHvref] = ACTIONS(6229), - [anon_sym_BSLASHVref] = ACTIONS(6229), - [anon_sym_BSLASHautoref] = ACTIONS(6229), - [anon_sym_BSLASHpageref] = ACTIONS(6229), - [anon_sym_BSLASHcref] = ACTIONS(6229), - [anon_sym_BSLASHCref] = ACTIONS(6229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnameCref] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHlabelcref] = ACTIONS(6229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCrefrange] = ACTIONS(6229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnewlabel] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6231), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHdef] = ACTIONS(6229), - [anon_sym_BSLASHlet] = ACTIONS(6229), - [anon_sym_BSLASHleft] = ACTIONS(6229), - [anon_sym_BSLASHbig] = ACTIONS(6229), - [anon_sym_BSLASHBig] = ACTIONS(6229), - [anon_sym_BSLASHbigg] = ACTIONS(6229), - [anon_sym_BSLASHBigg] = ACTIONS(6229), - [anon_sym_BSLASHbigl] = ACTIONS(6229), - [anon_sym_BSLASHBigl] = ACTIONS(6229), - [anon_sym_BSLASHbiggl] = ACTIONS(6229), - [anon_sym_BSLASHBiggl] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6229), - [anon_sym_BSLASHgls] = ACTIONS(6229), - [anon_sym_BSLASHGls] = ACTIONS(6229), - [anon_sym_BSLASHGLS] = ACTIONS(6229), - [anon_sym_BSLASHglspl] = ACTIONS(6229), - [anon_sym_BSLASHGlspl] = ACTIONS(6229), - [anon_sym_BSLASHGLSpl] = ACTIONS(6229), - [anon_sym_BSLASHglsdisp] = ACTIONS(6229), - [anon_sym_BSLASHglslink] = ACTIONS(6229), - [anon_sym_BSLASHglstext] = ACTIONS(6229), - [anon_sym_BSLASHGlstext] = ACTIONS(6229), - [anon_sym_BSLASHGLStext] = ACTIONS(6229), - [anon_sym_BSLASHglsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6229), - [anon_sym_BSLASHglsplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSplural] = ACTIONS(6229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHglsname] = ACTIONS(6229), - [anon_sym_BSLASHGlsname] = ACTIONS(6229), - [anon_sym_BSLASHGLSname] = ACTIONS(6229), - [anon_sym_BSLASHglssymbol] = ACTIONS(6229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6229), - [anon_sym_BSLASHglsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6229), - [anon_sym_BSLASHglsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6229), - [anon_sym_BSLASHglsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6229), - [anon_sym_BSLASHglsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6229), - [anon_sym_BSLASHglsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6229), - [anon_sym_BSLASHnewacronym] = ACTIONS(6229), - [anon_sym_BSLASHacrshort] = ACTIONS(6229), - [anon_sym_BSLASHAcrshort] = ACTIONS(6229), - [anon_sym_BSLASHACRshort] = ACTIONS(6229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6229), - [anon_sym_BSLASHacrlong] = ACTIONS(6229), - [anon_sym_BSLASHAcrlong] = ACTIONS(6229), - [anon_sym_BSLASHACRlong] = ACTIONS(6229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6229), - [anon_sym_BSLASHacrfull] = ACTIONS(6229), - [anon_sym_BSLASHAcrfull] = ACTIONS(6229), - [anon_sym_BSLASHACRfull] = ACTIONS(6229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6229), - [anon_sym_BSLASHacs] = ACTIONS(6229), - [anon_sym_BSLASHAcs] = ACTIONS(6229), - [anon_sym_BSLASHacsp] = ACTIONS(6229), - [anon_sym_BSLASHAcsp] = ACTIONS(6229), - [anon_sym_BSLASHacl] = ACTIONS(6229), - [anon_sym_BSLASHAcl] = ACTIONS(6229), - [anon_sym_BSLASHaclp] = ACTIONS(6229), - [anon_sym_BSLASHAclp] = ACTIONS(6229), - [anon_sym_BSLASHacf] = ACTIONS(6229), - [anon_sym_BSLASHAcf] = ACTIONS(6229), - [anon_sym_BSLASHacfp] = ACTIONS(6229), - [anon_sym_BSLASHAcfp] = ACTIONS(6229), - [anon_sym_BSLASHac] = ACTIONS(6229), - [anon_sym_BSLASHAc] = ACTIONS(6229), - [anon_sym_BSLASHacp] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6229), - [anon_sym_BSLASHcolor] = ACTIONS(6229), - [anon_sym_BSLASHcolorbox] = ACTIONS(6229), - [anon_sym_BSLASHtextcolor] = ACTIONS(6229), - [anon_sym_BSLASHpagecolor] = ACTIONS(6229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6229), - [anon_sym_BSLASHtext] = ACTIONS(6229), - [anon_sym_BSLASHintertext] = ACTIONS(6229), - [anon_sym_shortintertext] = ACTIONS(6229), - }, - [1318] = { - [sym_command_name] = ACTIONS(6225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6225), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_RBRACK] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_EQ] = ACTIONS(6227), - [anon_sym_LPAREN] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [anon_sym_BSLASHpart] = ACTIONS(6225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddpart] = ACTIONS(6225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6227), - [anon_sym_BSLASHchapter] = ACTIONS(6225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddchap] = ACTIONS(6225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsection] = ACTIONS(6225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHaddsec] = ACTIONS(6225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubsection] = ACTIONS(6225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6227), - [anon_sym_BSLASHparagraph] = ACTIONS(6225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6227), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6227), - [anon_sym_BSLASHitem] = ACTIONS(6225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6227), - [anon_sym_LBRACE] = ACTIONS(6227), - [sym_word] = ACTIONS(6225), - [sym_placeholder] = ACTIONS(6227), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(6225), - [anon_sym_GT] = ACTIONS(6225), - [anon_sym_BANG] = ACTIONS(6225), - [anon_sym_PIPE] = ACTIONS(6225), - [anon_sym_COLON] = ACTIONS(6225), - [anon_sym_SQUOTE] = ACTIONS(6225), - [anon_sym__] = ACTIONS(6227), - [anon_sym_CARET] = ACTIONS(6227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6227), - [anon_sym_DOLLAR] = ACTIONS(6225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6227), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6227), - [anon_sym_BSLASHbegin] = ACTIONS(6225), - [anon_sym_BSLASHtitle] = ACTIONS(6225), - [anon_sym_BSLASHauthor] = ACTIONS(6225), - [anon_sym_BSLASHusepackage] = ACTIONS(6225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6225), - [anon_sym_BSLASHinclude] = ACTIONS(6225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6225), - [anon_sym_BSLASHinput] = ACTIONS(6225), - [anon_sym_BSLASHsubfile] = ACTIONS(6225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6225), - [anon_sym_BSLASHbibliography] = ACTIONS(6225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6225), - [anon_sym_BSLASHincludesvg] = ACTIONS(6225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6225), - [anon_sym_BSLASHimport] = ACTIONS(6225), - [anon_sym_BSLASHsubimport] = ACTIONS(6225), - [anon_sym_BSLASHinputfrom] = ACTIONS(6225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6225), - [anon_sym_BSLASHincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHcaption] = ACTIONS(6225), - [anon_sym_BSLASHcite] = ACTIONS(6225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCite] = ACTIONS(6225), - [anon_sym_BSLASHnocite] = ACTIONS(6225), - [anon_sym_BSLASHcitet] = ACTIONS(6225), - [anon_sym_BSLASHcitep] = ACTIONS(6225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteauthor] = ACTIONS(6225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitetitle] = ACTIONS(6225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteyear] = ACTIONS(6225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitedate] = ACTIONS(6225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteurl] = ACTIONS(6225), - [anon_sym_BSLASHfullcite] = ACTIONS(6225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6225), - [anon_sym_BSLASHcitealt] = ACTIONS(6225), - [anon_sym_BSLASHcitealp] = ACTIONS(6225), - [anon_sym_BSLASHcitetext] = ACTIONS(6225), - [anon_sym_BSLASHparencite] = ACTIONS(6225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHParencite] = ACTIONS(6225), - [anon_sym_BSLASHfootcite] = ACTIONS(6225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6225), - [anon_sym_BSLASHtextcite] = ACTIONS(6225), - [anon_sym_BSLASHTextcite] = ACTIONS(6225), - [anon_sym_BSLASHsmartcite] = ACTIONS(6225), - [anon_sym_BSLASHSmartcite] = ACTIONS(6225), - [anon_sym_BSLASHsupercite] = ACTIONS(6225), - [anon_sym_BSLASHautocite] = ACTIONS(6225), - [anon_sym_BSLASHAutocite] = ACTIONS(6225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHvolcite] = ACTIONS(6225), - [anon_sym_BSLASHVolcite] = ACTIONS(6225), - [anon_sym_BSLASHpvolcite] = ACTIONS(6225), - [anon_sym_BSLASHPvolcite] = ACTIONS(6225), - [anon_sym_BSLASHfvolcite] = ACTIONS(6225), - [anon_sym_BSLASHftvolcite] = ACTIONS(6225), - [anon_sym_BSLASHsvolcite] = ACTIONS(6225), - [anon_sym_BSLASHSvolcite] = ACTIONS(6225), - [anon_sym_BSLASHtvolcite] = ACTIONS(6225), - [anon_sym_BSLASHTvolcite] = ACTIONS(6225), - [anon_sym_BSLASHavolcite] = ACTIONS(6225), - [anon_sym_BSLASHAvolcite] = ACTIONS(6225), - [anon_sym_BSLASHnotecite] = ACTIONS(6225), - [anon_sym_BSLASHNotecite] = ACTIONS(6225), - [anon_sym_BSLASHpnotecite] = ACTIONS(6225), - [anon_sym_BSLASHPnotecite] = ACTIONS(6225), - [anon_sym_BSLASHfnotecite] = ACTIONS(6225), - [anon_sym_BSLASHlabel] = ACTIONS(6225), - [anon_sym_BSLASHref] = ACTIONS(6225), - [anon_sym_BSLASHeqref] = ACTIONS(6225), - [anon_sym_BSLASHvref] = ACTIONS(6225), - [anon_sym_BSLASHVref] = ACTIONS(6225), - [anon_sym_BSLASHautoref] = ACTIONS(6225), - [anon_sym_BSLASHpageref] = ACTIONS(6225), - [anon_sym_BSLASHcref] = ACTIONS(6225), - [anon_sym_BSLASHCref] = ACTIONS(6225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnameCref] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHlabelcref] = ACTIONS(6225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCrefrange] = ACTIONS(6225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnewlabel] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6227), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHdef] = ACTIONS(6225), - [anon_sym_BSLASHlet] = ACTIONS(6225), - [anon_sym_BSLASHleft] = ACTIONS(6225), - [anon_sym_BSLASHbig] = ACTIONS(6225), - [anon_sym_BSLASHBig] = ACTIONS(6225), - [anon_sym_BSLASHbigg] = ACTIONS(6225), - [anon_sym_BSLASHBigg] = ACTIONS(6225), - [anon_sym_BSLASHbigl] = ACTIONS(6225), - [anon_sym_BSLASHBigl] = ACTIONS(6225), - [anon_sym_BSLASHbiggl] = ACTIONS(6225), - [anon_sym_BSLASHBiggl] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6225), - [anon_sym_BSLASHgls] = ACTIONS(6225), - [anon_sym_BSLASHGls] = ACTIONS(6225), - [anon_sym_BSLASHGLS] = ACTIONS(6225), - [anon_sym_BSLASHglspl] = ACTIONS(6225), - [anon_sym_BSLASHGlspl] = ACTIONS(6225), - [anon_sym_BSLASHGLSpl] = ACTIONS(6225), - [anon_sym_BSLASHglsdisp] = ACTIONS(6225), - [anon_sym_BSLASHglslink] = ACTIONS(6225), - [anon_sym_BSLASHglstext] = ACTIONS(6225), - [anon_sym_BSLASHGlstext] = ACTIONS(6225), - [anon_sym_BSLASHGLStext] = ACTIONS(6225), - [anon_sym_BSLASHglsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6225), - [anon_sym_BSLASHglsplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSplural] = ACTIONS(6225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHglsname] = ACTIONS(6225), - [anon_sym_BSLASHGlsname] = ACTIONS(6225), - [anon_sym_BSLASHGLSname] = ACTIONS(6225), - [anon_sym_BSLASHglssymbol] = ACTIONS(6225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6225), - [anon_sym_BSLASHglsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6225), - [anon_sym_BSLASHglsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6225), - [anon_sym_BSLASHglsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6225), - [anon_sym_BSLASHglsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6225), - [anon_sym_BSLASHglsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6225), - [anon_sym_BSLASHnewacronym] = ACTIONS(6225), - [anon_sym_BSLASHacrshort] = ACTIONS(6225), - [anon_sym_BSLASHAcrshort] = ACTIONS(6225), - [anon_sym_BSLASHACRshort] = ACTIONS(6225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6225), - [anon_sym_BSLASHacrlong] = ACTIONS(6225), - [anon_sym_BSLASHAcrlong] = ACTIONS(6225), - [anon_sym_BSLASHACRlong] = ACTIONS(6225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6225), - [anon_sym_BSLASHacrfull] = ACTIONS(6225), - [anon_sym_BSLASHAcrfull] = ACTIONS(6225), - [anon_sym_BSLASHACRfull] = ACTIONS(6225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6225), - [anon_sym_BSLASHacs] = ACTIONS(6225), - [anon_sym_BSLASHAcs] = ACTIONS(6225), - [anon_sym_BSLASHacsp] = ACTIONS(6225), - [anon_sym_BSLASHAcsp] = ACTIONS(6225), - [anon_sym_BSLASHacl] = ACTIONS(6225), - [anon_sym_BSLASHAcl] = ACTIONS(6225), - [anon_sym_BSLASHaclp] = ACTIONS(6225), - [anon_sym_BSLASHAclp] = ACTIONS(6225), - [anon_sym_BSLASHacf] = ACTIONS(6225), - [anon_sym_BSLASHAcf] = ACTIONS(6225), - [anon_sym_BSLASHacfp] = ACTIONS(6225), - [anon_sym_BSLASHAcfp] = ACTIONS(6225), - [anon_sym_BSLASHac] = ACTIONS(6225), - [anon_sym_BSLASHAc] = ACTIONS(6225), - [anon_sym_BSLASHacp] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6225), - [anon_sym_BSLASHcolor] = ACTIONS(6225), - [anon_sym_BSLASHcolorbox] = ACTIONS(6225), - [anon_sym_BSLASHtextcolor] = ACTIONS(6225), - [anon_sym_BSLASHpagecolor] = ACTIONS(6225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6225), - [anon_sym_BSLASHtext] = ACTIONS(6225), - [anon_sym_BSLASHintertext] = ACTIONS(6225), - [anon_sym_shortintertext] = ACTIONS(6225), - }, - [1319] = { - [sym_command_name] = ACTIONS(6493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6495), - [anon_sym_RBRACK] = ACTIONS(6495), - [anon_sym_COMMA] = ACTIONS(6495), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_LPAREN] = ACTIONS(6495), - [anon_sym_RPAREN] = ACTIONS(6495), - [anon_sym_BSLASHpart] = ACTIONS(6493), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddpart] = ACTIONS(6493), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6495), - [anon_sym_BSLASHchapter] = ACTIONS(6493), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddchap] = ACTIONS(6493), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsection] = ACTIONS(6493), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHaddsec] = ACTIONS(6493), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubsection] = ACTIONS(6493), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6493), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6495), - [anon_sym_BSLASHparagraph] = ACTIONS(6493), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6495), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6493), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6495), - [anon_sym_BSLASHitem] = ACTIONS(6493), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6495), - [anon_sym_LBRACE] = ACTIONS(6495), - [sym_word] = ACTIONS(6493), - [sym_placeholder] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6495), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6493), - [anon_sym_GT] = ACTIONS(6493), - [anon_sym_BANG] = ACTIONS(6493), - [anon_sym_PIPE] = ACTIONS(6493), - [anon_sym_COLON] = ACTIONS(6493), - [anon_sym_SQUOTE] = ACTIONS(6493), - [anon_sym__] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6495), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6495), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6495), - [anon_sym_DOLLAR] = ACTIONS(6493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6495), - [anon_sym_BSLASHbegin] = ACTIONS(6493), - [anon_sym_BSLASHtitle] = ACTIONS(6493), - [anon_sym_BSLASHauthor] = ACTIONS(6493), - [anon_sym_BSLASHusepackage] = ACTIONS(6493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6493), - [anon_sym_BSLASHinclude] = ACTIONS(6493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6493), - [anon_sym_BSLASHinput] = ACTIONS(6493), - [anon_sym_BSLASHsubfile] = ACTIONS(6493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6493), - [anon_sym_BSLASHbibliography] = ACTIONS(6493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6493), - [anon_sym_BSLASHincludesvg] = ACTIONS(6493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6493), - [anon_sym_BSLASHimport] = ACTIONS(6493), - [anon_sym_BSLASHsubimport] = ACTIONS(6493), - [anon_sym_BSLASHinputfrom] = ACTIONS(6493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6493), - [anon_sym_BSLASHincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHcaption] = ACTIONS(6493), - [anon_sym_BSLASHcite] = ACTIONS(6493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCite] = ACTIONS(6493), - [anon_sym_BSLASHnocite] = ACTIONS(6493), - [anon_sym_BSLASHcitet] = ACTIONS(6493), - [anon_sym_BSLASHcitep] = ACTIONS(6493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteauthor] = ACTIONS(6493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitetitle] = ACTIONS(6493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteyear] = ACTIONS(6493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitedate] = ACTIONS(6493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteurl] = ACTIONS(6493), - [anon_sym_BSLASHfullcite] = ACTIONS(6493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6493), - [anon_sym_BSLASHcitealt] = ACTIONS(6493), - [anon_sym_BSLASHcitealp] = ACTIONS(6493), - [anon_sym_BSLASHcitetext] = ACTIONS(6493), - [anon_sym_BSLASHparencite] = ACTIONS(6493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHParencite] = ACTIONS(6493), - [anon_sym_BSLASHfootcite] = ACTIONS(6493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6493), - [anon_sym_BSLASHtextcite] = ACTIONS(6493), - [anon_sym_BSLASHTextcite] = ACTIONS(6493), - [anon_sym_BSLASHsmartcite] = ACTIONS(6493), - [anon_sym_BSLASHSmartcite] = ACTIONS(6493), - [anon_sym_BSLASHsupercite] = ACTIONS(6493), - [anon_sym_BSLASHautocite] = ACTIONS(6493), - [anon_sym_BSLASHAutocite] = ACTIONS(6493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHvolcite] = ACTIONS(6493), - [anon_sym_BSLASHVolcite] = ACTIONS(6493), - [anon_sym_BSLASHpvolcite] = ACTIONS(6493), - [anon_sym_BSLASHPvolcite] = ACTIONS(6493), - [anon_sym_BSLASHfvolcite] = ACTIONS(6493), - [anon_sym_BSLASHftvolcite] = ACTIONS(6493), - [anon_sym_BSLASHsvolcite] = ACTIONS(6493), - [anon_sym_BSLASHSvolcite] = ACTIONS(6493), - [anon_sym_BSLASHtvolcite] = ACTIONS(6493), - [anon_sym_BSLASHTvolcite] = ACTIONS(6493), - [anon_sym_BSLASHavolcite] = ACTIONS(6493), - [anon_sym_BSLASHAvolcite] = ACTIONS(6493), - [anon_sym_BSLASHnotecite] = ACTIONS(6493), - [anon_sym_BSLASHNotecite] = ACTIONS(6493), - [anon_sym_BSLASHpnotecite] = ACTIONS(6493), - [anon_sym_BSLASHPnotecite] = ACTIONS(6493), - [anon_sym_BSLASHfnotecite] = ACTIONS(6493), - [anon_sym_BSLASHlabel] = ACTIONS(6493), - [anon_sym_BSLASHref] = ACTIONS(6493), - [anon_sym_BSLASHeqref] = ACTIONS(6493), - [anon_sym_BSLASHvref] = ACTIONS(6493), - [anon_sym_BSLASHVref] = ACTIONS(6493), - [anon_sym_BSLASHautoref] = ACTIONS(6493), - [anon_sym_BSLASHpageref] = ACTIONS(6493), - [anon_sym_BSLASHcref] = ACTIONS(6493), - [anon_sym_BSLASHCref] = ACTIONS(6493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnameCref] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHlabelcref] = ACTIONS(6493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCrefrange] = ACTIONS(6493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnewlabel] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6495), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHdef] = ACTIONS(6493), - [anon_sym_BSLASHlet] = ACTIONS(6493), - [anon_sym_BSLASHleft] = ACTIONS(6493), - [anon_sym_BSLASHbig] = ACTIONS(6493), - [anon_sym_BSLASHBig] = ACTIONS(6493), - [anon_sym_BSLASHbigg] = ACTIONS(6493), - [anon_sym_BSLASHBigg] = ACTIONS(6493), - [anon_sym_BSLASHbigl] = ACTIONS(6493), - [anon_sym_BSLASHBigl] = ACTIONS(6493), - [anon_sym_BSLASHbiggl] = ACTIONS(6493), - [anon_sym_BSLASHBiggl] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6493), - [anon_sym_BSLASHgls] = ACTIONS(6493), - [anon_sym_BSLASHGls] = ACTIONS(6493), - [anon_sym_BSLASHGLS] = ACTIONS(6493), - [anon_sym_BSLASHglspl] = ACTIONS(6493), - [anon_sym_BSLASHGlspl] = ACTIONS(6493), - [anon_sym_BSLASHGLSpl] = ACTIONS(6493), - [anon_sym_BSLASHglsdisp] = ACTIONS(6493), - [anon_sym_BSLASHglslink] = ACTIONS(6493), - [anon_sym_BSLASHglstext] = ACTIONS(6493), - [anon_sym_BSLASHGlstext] = ACTIONS(6493), - [anon_sym_BSLASHGLStext] = ACTIONS(6493), - [anon_sym_BSLASHglsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6493), - [anon_sym_BSLASHglsplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSplural] = ACTIONS(6493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHglsname] = ACTIONS(6493), - [anon_sym_BSLASHGlsname] = ACTIONS(6493), - [anon_sym_BSLASHGLSname] = ACTIONS(6493), - [anon_sym_BSLASHglssymbol] = ACTIONS(6493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6493), - [anon_sym_BSLASHglsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6493), - [anon_sym_BSLASHglsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6493), - [anon_sym_BSLASHglsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6493), - [anon_sym_BSLASHglsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6493), - [anon_sym_BSLASHglsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6493), - [anon_sym_BSLASHnewacronym] = ACTIONS(6493), - [anon_sym_BSLASHacrshort] = ACTIONS(6493), - [anon_sym_BSLASHAcrshort] = ACTIONS(6493), - [anon_sym_BSLASHACRshort] = ACTIONS(6493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6493), - [anon_sym_BSLASHacrlong] = ACTIONS(6493), - [anon_sym_BSLASHAcrlong] = ACTIONS(6493), - [anon_sym_BSLASHACRlong] = ACTIONS(6493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6493), - [anon_sym_BSLASHacrfull] = ACTIONS(6493), - [anon_sym_BSLASHAcrfull] = ACTIONS(6493), - [anon_sym_BSLASHACRfull] = ACTIONS(6493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6493), - [anon_sym_BSLASHacs] = ACTIONS(6493), - [anon_sym_BSLASHAcs] = ACTIONS(6493), - [anon_sym_BSLASHacsp] = ACTIONS(6493), - [anon_sym_BSLASHAcsp] = ACTIONS(6493), - [anon_sym_BSLASHacl] = ACTIONS(6493), - [anon_sym_BSLASHAcl] = ACTIONS(6493), - [anon_sym_BSLASHaclp] = ACTIONS(6493), - [anon_sym_BSLASHAclp] = ACTIONS(6493), - [anon_sym_BSLASHacf] = ACTIONS(6493), - [anon_sym_BSLASHAcf] = ACTIONS(6493), - [anon_sym_BSLASHacfp] = ACTIONS(6493), - [anon_sym_BSLASHAcfp] = ACTIONS(6493), - [anon_sym_BSLASHac] = ACTIONS(6493), - [anon_sym_BSLASHAc] = ACTIONS(6493), - [anon_sym_BSLASHacp] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6493), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6493), - [anon_sym_BSLASHcolor] = ACTIONS(6493), - [anon_sym_BSLASHcolorbox] = ACTIONS(6493), - [anon_sym_BSLASHtextcolor] = ACTIONS(6493), - [anon_sym_BSLASHpagecolor] = ACTIONS(6493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6493), - [anon_sym_BSLASHtext] = ACTIONS(6493), - [anon_sym_BSLASHintertext] = ACTIONS(6493), - [anon_sym_shortintertext] = ACTIONS(6493), - }, - [1320] = { - [sym_command_name] = ACTIONS(6497), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(6499), - [anon_sym_RBRACK] = ACTIONS(6499), - [anon_sym_COMMA] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(6499), - [anon_sym_LPAREN] = ACTIONS(6499), - [anon_sym_RPAREN] = ACTIONS(6499), - [anon_sym_BSLASHpart] = ACTIONS(6497), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddpart] = ACTIONS(6497), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6499), - [anon_sym_BSLASHchapter] = ACTIONS(6497), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddchap] = ACTIONS(6497), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsection] = ACTIONS(6497), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHaddsec] = ACTIONS(6497), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubsection] = ACTIONS(6497), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6497), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6499), - [anon_sym_BSLASHparagraph] = ACTIONS(6497), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6499), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6497), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6499), - [anon_sym_BSLASHitem] = ACTIONS(6497), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6499), - [anon_sym_LBRACE] = ACTIONS(6499), - [sym_word] = ACTIONS(6497), - [sym_placeholder] = ACTIONS(6499), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_STAR] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6499), - [anon_sym_LT] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6497), - [anon_sym_BANG] = ACTIONS(6497), - [anon_sym_PIPE] = ACTIONS(6497), - [anon_sym_COLON] = ACTIONS(6497), - [anon_sym_SQUOTE] = ACTIONS(6497), - [anon_sym__] = ACTIONS(6499), - [anon_sym_CARET] = ACTIONS(6499), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6499), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6499), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6499), - [anon_sym_DOLLAR] = ACTIONS(6497), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6499), - [anon_sym_BSLASHbegin] = ACTIONS(6497), - [anon_sym_BSLASHtitle] = ACTIONS(6497), - [anon_sym_BSLASHauthor] = ACTIONS(6497), - [anon_sym_BSLASHusepackage] = ACTIONS(6497), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6497), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6497), - [anon_sym_BSLASHinclude] = ACTIONS(6497), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6497), - [anon_sym_BSLASHinput] = ACTIONS(6497), - [anon_sym_BSLASHsubfile] = ACTIONS(6497), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6497), - [anon_sym_BSLASHbibliography] = ACTIONS(6497), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6497), - [anon_sym_BSLASHincludesvg] = ACTIONS(6497), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6497), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6497), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6497), - [anon_sym_BSLASHimport] = ACTIONS(6497), - [anon_sym_BSLASHsubimport] = ACTIONS(6497), - [anon_sym_BSLASHinputfrom] = ACTIONS(6497), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6497), - [anon_sym_BSLASHincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHcaption] = ACTIONS(6497), - [anon_sym_BSLASHcite] = ACTIONS(6497), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCite] = ACTIONS(6497), - [anon_sym_BSLASHnocite] = ACTIONS(6497), - [anon_sym_BSLASHcitet] = ACTIONS(6497), - [anon_sym_BSLASHcitep] = ACTIONS(6497), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteauthor] = ACTIONS(6497), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6497), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitetitle] = ACTIONS(6497), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteyear] = ACTIONS(6497), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitedate] = ACTIONS(6497), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteurl] = ACTIONS(6497), - [anon_sym_BSLASHfullcite] = ACTIONS(6497), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6497), - [anon_sym_BSLASHcitealt] = ACTIONS(6497), - [anon_sym_BSLASHcitealp] = ACTIONS(6497), - [anon_sym_BSLASHcitetext] = ACTIONS(6497), - [anon_sym_BSLASHparencite] = ACTIONS(6497), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHParencite] = ACTIONS(6497), - [anon_sym_BSLASHfootcite] = ACTIONS(6497), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6497), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6497), - [anon_sym_BSLASHtextcite] = ACTIONS(6497), - [anon_sym_BSLASHTextcite] = ACTIONS(6497), - [anon_sym_BSLASHsmartcite] = ACTIONS(6497), - [anon_sym_BSLASHSmartcite] = ACTIONS(6497), - [anon_sym_BSLASHsupercite] = ACTIONS(6497), - [anon_sym_BSLASHautocite] = ACTIONS(6497), - [anon_sym_BSLASHAutocite] = ACTIONS(6497), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHvolcite] = ACTIONS(6497), - [anon_sym_BSLASHVolcite] = ACTIONS(6497), - [anon_sym_BSLASHpvolcite] = ACTIONS(6497), - [anon_sym_BSLASHPvolcite] = ACTIONS(6497), - [anon_sym_BSLASHfvolcite] = ACTIONS(6497), - [anon_sym_BSLASHftvolcite] = ACTIONS(6497), - [anon_sym_BSLASHsvolcite] = ACTIONS(6497), - [anon_sym_BSLASHSvolcite] = ACTIONS(6497), - [anon_sym_BSLASHtvolcite] = ACTIONS(6497), - [anon_sym_BSLASHTvolcite] = ACTIONS(6497), - [anon_sym_BSLASHavolcite] = ACTIONS(6497), - [anon_sym_BSLASHAvolcite] = ACTIONS(6497), - [anon_sym_BSLASHnotecite] = ACTIONS(6497), - [anon_sym_BSLASHNotecite] = ACTIONS(6497), - [anon_sym_BSLASHpnotecite] = ACTIONS(6497), - [anon_sym_BSLASHPnotecite] = ACTIONS(6497), - [anon_sym_BSLASHfnotecite] = ACTIONS(6497), - [anon_sym_BSLASHlabel] = ACTIONS(6497), - [anon_sym_BSLASHref] = ACTIONS(6497), - [anon_sym_BSLASHeqref] = ACTIONS(6497), - [anon_sym_BSLASHvref] = ACTIONS(6497), - [anon_sym_BSLASHVref] = ACTIONS(6497), - [anon_sym_BSLASHautoref] = ACTIONS(6497), - [anon_sym_BSLASHpageref] = ACTIONS(6497), - [anon_sym_BSLASHcref] = ACTIONS(6497), - [anon_sym_BSLASHCref] = ACTIONS(6497), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnameCref] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHlabelcref] = ACTIONS(6497), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCrefrange] = ACTIONS(6497), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnewlabel] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6497), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6497), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6499), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHdef] = ACTIONS(6497), - [anon_sym_BSLASHlet] = ACTIONS(6497), - [anon_sym_BSLASHleft] = ACTIONS(6497), - [anon_sym_BSLASHbig] = ACTIONS(6497), - [anon_sym_BSLASHBig] = ACTIONS(6497), - [anon_sym_BSLASHbigg] = ACTIONS(6497), - [anon_sym_BSLASHBigg] = ACTIONS(6497), - [anon_sym_BSLASHbigl] = ACTIONS(6497), - [anon_sym_BSLASHBigl] = ACTIONS(6497), - [anon_sym_BSLASHbiggl] = ACTIONS(6497), - [anon_sym_BSLASHBiggl] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6497), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6497), - [anon_sym_BSLASHgls] = ACTIONS(6497), - [anon_sym_BSLASHGls] = ACTIONS(6497), - [anon_sym_BSLASHGLS] = ACTIONS(6497), - [anon_sym_BSLASHglspl] = ACTIONS(6497), - [anon_sym_BSLASHGlspl] = ACTIONS(6497), - [anon_sym_BSLASHGLSpl] = ACTIONS(6497), - [anon_sym_BSLASHglsdisp] = ACTIONS(6497), - [anon_sym_BSLASHglslink] = ACTIONS(6497), - [anon_sym_BSLASHglstext] = ACTIONS(6497), - [anon_sym_BSLASHGlstext] = ACTIONS(6497), - [anon_sym_BSLASHGLStext] = ACTIONS(6497), - [anon_sym_BSLASHglsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6497), - [anon_sym_BSLASHglsplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSplural] = ACTIONS(6497), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHglsname] = ACTIONS(6497), - [anon_sym_BSLASHGlsname] = ACTIONS(6497), - [anon_sym_BSLASHGLSname] = ACTIONS(6497), - [anon_sym_BSLASHglssymbol] = ACTIONS(6497), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6497), - [anon_sym_BSLASHglsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6497), - [anon_sym_BSLASHglsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6497), - [anon_sym_BSLASHglsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6497), - [anon_sym_BSLASHglsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6497), - [anon_sym_BSLASHglsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6497), - [anon_sym_BSLASHnewacronym] = ACTIONS(6497), - [anon_sym_BSLASHacrshort] = ACTIONS(6497), - [anon_sym_BSLASHAcrshort] = ACTIONS(6497), - [anon_sym_BSLASHACRshort] = ACTIONS(6497), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6497), - [anon_sym_BSLASHacrlong] = ACTIONS(6497), - [anon_sym_BSLASHAcrlong] = ACTIONS(6497), - [anon_sym_BSLASHACRlong] = ACTIONS(6497), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6497), - [anon_sym_BSLASHacrfull] = ACTIONS(6497), - [anon_sym_BSLASHAcrfull] = ACTIONS(6497), - [anon_sym_BSLASHACRfull] = ACTIONS(6497), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6497), - [anon_sym_BSLASHacs] = ACTIONS(6497), - [anon_sym_BSLASHAcs] = ACTIONS(6497), - [anon_sym_BSLASHacsp] = ACTIONS(6497), - [anon_sym_BSLASHAcsp] = ACTIONS(6497), - [anon_sym_BSLASHacl] = ACTIONS(6497), - [anon_sym_BSLASHAcl] = ACTIONS(6497), - [anon_sym_BSLASHaclp] = ACTIONS(6497), - [anon_sym_BSLASHAclp] = ACTIONS(6497), - [anon_sym_BSLASHacf] = ACTIONS(6497), - [anon_sym_BSLASHAcf] = ACTIONS(6497), - [anon_sym_BSLASHacfp] = ACTIONS(6497), - [anon_sym_BSLASHAcfp] = ACTIONS(6497), - [anon_sym_BSLASHac] = ACTIONS(6497), - [anon_sym_BSLASHAc] = ACTIONS(6497), - [anon_sym_BSLASHacp] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6497), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6497), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6497), - [anon_sym_BSLASHcolor] = ACTIONS(6497), - [anon_sym_BSLASHcolorbox] = ACTIONS(6497), - [anon_sym_BSLASHtextcolor] = ACTIONS(6497), - [anon_sym_BSLASHpagecolor] = ACTIONS(6497), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6497), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6497), - [anon_sym_BSLASHtext] = ACTIONS(6497), - [anon_sym_BSLASHintertext] = ACTIONS(6497), - [anon_sym_shortintertext] = ACTIONS(6497), - }, - [1321] = { - [sym_command_name] = ACTIONS(6217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6217), - [anon_sym_LBRACK] = ACTIONS(6219), - [anon_sym_RBRACK] = ACTIONS(6219), - [anon_sym_COMMA] = ACTIONS(6219), - [anon_sym_EQ] = ACTIONS(6219), - [anon_sym_LPAREN] = ACTIONS(6219), - [anon_sym_RPAREN] = ACTIONS(6219), - [anon_sym_BSLASHpart] = ACTIONS(6217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddpart] = ACTIONS(6217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6219), - [anon_sym_BSLASHchapter] = ACTIONS(6217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddchap] = ACTIONS(6217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsection] = ACTIONS(6217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHaddsec] = ACTIONS(6217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubsection] = ACTIONS(6217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6219), - [anon_sym_BSLASHparagraph] = ACTIONS(6217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6219), - [anon_sym_BSLASHitem] = ACTIONS(6217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6219), - [anon_sym_LBRACE] = ACTIONS(6219), - [sym_word] = ACTIONS(6217), - [sym_placeholder] = ACTIONS(6219), - [anon_sym_PLUS] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_STAR] = ACTIONS(6219), - [anon_sym_SLASH] = ACTIONS(6219), - [anon_sym_LT] = ACTIONS(6217), - [anon_sym_GT] = ACTIONS(6217), - [anon_sym_BANG] = ACTIONS(6217), - [anon_sym_PIPE] = ACTIONS(6217), - [anon_sym_COLON] = ACTIONS(6217), - [anon_sym_SQUOTE] = ACTIONS(6217), - [anon_sym__] = ACTIONS(6219), - [anon_sym_CARET] = ACTIONS(6219), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6219), - [anon_sym_DOLLAR] = ACTIONS(6217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6219), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6219), - [anon_sym_BSLASHbegin] = ACTIONS(6217), - [anon_sym_BSLASHtitle] = ACTIONS(6217), - [anon_sym_BSLASHauthor] = ACTIONS(6217), - [anon_sym_BSLASHusepackage] = ACTIONS(6217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6217), - [anon_sym_BSLASHinclude] = ACTIONS(6217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6217), - [anon_sym_BSLASHinput] = ACTIONS(6217), - [anon_sym_BSLASHsubfile] = ACTIONS(6217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6217), - [anon_sym_BSLASHbibliography] = ACTIONS(6217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6217), - [anon_sym_BSLASHincludesvg] = ACTIONS(6217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6217), - [anon_sym_BSLASHimport] = ACTIONS(6217), - [anon_sym_BSLASHsubimport] = ACTIONS(6217), - [anon_sym_BSLASHinputfrom] = ACTIONS(6217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6217), - [anon_sym_BSLASHincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHcaption] = ACTIONS(6217), - [anon_sym_BSLASHcite] = ACTIONS(6217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCite] = ACTIONS(6217), - [anon_sym_BSLASHnocite] = ACTIONS(6217), - [anon_sym_BSLASHcitet] = ACTIONS(6217), - [anon_sym_BSLASHcitep] = ACTIONS(6217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteauthor] = ACTIONS(6217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitetitle] = ACTIONS(6217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteyear] = ACTIONS(6217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitedate] = ACTIONS(6217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteurl] = ACTIONS(6217), - [anon_sym_BSLASHfullcite] = ACTIONS(6217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6217), - [anon_sym_BSLASHcitealt] = ACTIONS(6217), - [anon_sym_BSLASHcitealp] = ACTIONS(6217), - [anon_sym_BSLASHcitetext] = ACTIONS(6217), - [anon_sym_BSLASHparencite] = ACTIONS(6217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHParencite] = ACTIONS(6217), - [anon_sym_BSLASHfootcite] = ACTIONS(6217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6217), - [anon_sym_BSLASHtextcite] = ACTIONS(6217), - [anon_sym_BSLASHTextcite] = ACTIONS(6217), - [anon_sym_BSLASHsmartcite] = ACTIONS(6217), - [anon_sym_BSLASHSmartcite] = ACTIONS(6217), - [anon_sym_BSLASHsupercite] = ACTIONS(6217), - [anon_sym_BSLASHautocite] = ACTIONS(6217), - [anon_sym_BSLASHAutocite] = ACTIONS(6217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHvolcite] = ACTIONS(6217), - [anon_sym_BSLASHVolcite] = ACTIONS(6217), - [anon_sym_BSLASHpvolcite] = ACTIONS(6217), - [anon_sym_BSLASHPvolcite] = ACTIONS(6217), - [anon_sym_BSLASHfvolcite] = ACTIONS(6217), - [anon_sym_BSLASHftvolcite] = ACTIONS(6217), - [anon_sym_BSLASHsvolcite] = ACTIONS(6217), - [anon_sym_BSLASHSvolcite] = ACTIONS(6217), - [anon_sym_BSLASHtvolcite] = ACTIONS(6217), - [anon_sym_BSLASHTvolcite] = ACTIONS(6217), - [anon_sym_BSLASHavolcite] = ACTIONS(6217), - [anon_sym_BSLASHAvolcite] = ACTIONS(6217), - [anon_sym_BSLASHnotecite] = ACTIONS(6217), - [anon_sym_BSLASHNotecite] = ACTIONS(6217), - [anon_sym_BSLASHpnotecite] = ACTIONS(6217), - [anon_sym_BSLASHPnotecite] = ACTIONS(6217), - [anon_sym_BSLASHfnotecite] = ACTIONS(6217), - [anon_sym_BSLASHlabel] = ACTIONS(6217), - [anon_sym_BSLASHref] = ACTIONS(6217), - [anon_sym_BSLASHeqref] = ACTIONS(6217), - [anon_sym_BSLASHvref] = ACTIONS(6217), - [anon_sym_BSLASHVref] = ACTIONS(6217), - [anon_sym_BSLASHautoref] = ACTIONS(6217), - [anon_sym_BSLASHpageref] = ACTIONS(6217), - [anon_sym_BSLASHcref] = ACTIONS(6217), - [anon_sym_BSLASHCref] = ACTIONS(6217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnameCref] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHlabelcref] = ACTIONS(6217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCrefrange] = ACTIONS(6217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnewlabel] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6219), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHdef] = ACTIONS(6217), - [anon_sym_BSLASHlet] = ACTIONS(6217), - [anon_sym_BSLASHleft] = ACTIONS(6217), - [anon_sym_BSLASHbig] = ACTIONS(6217), - [anon_sym_BSLASHBig] = ACTIONS(6217), - [anon_sym_BSLASHbigg] = ACTIONS(6217), - [anon_sym_BSLASHBigg] = ACTIONS(6217), - [anon_sym_BSLASHbigl] = ACTIONS(6217), - [anon_sym_BSLASHBigl] = ACTIONS(6217), - [anon_sym_BSLASHbiggl] = ACTIONS(6217), - [anon_sym_BSLASHBiggl] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6217), - [anon_sym_BSLASHgls] = ACTIONS(6217), - [anon_sym_BSLASHGls] = ACTIONS(6217), - [anon_sym_BSLASHGLS] = ACTIONS(6217), - [anon_sym_BSLASHglspl] = ACTIONS(6217), - [anon_sym_BSLASHGlspl] = ACTIONS(6217), - [anon_sym_BSLASHGLSpl] = ACTIONS(6217), - [anon_sym_BSLASHglsdisp] = ACTIONS(6217), - [anon_sym_BSLASHglslink] = ACTIONS(6217), - [anon_sym_BSLASHglstext] = ACTIONS(6217), - [anon_sym_BSLASHGlstext] = ACTIONS(6217), - [anon_sym_BSLASHGLStext] = ACTIONS(6217), - [anon_sym_BSLASHglsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6217), - [anon_sym_BSLASHglsplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSplural] = ACTIONS(6217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHglsname] = ACTIONS(6217), - [anon_sym_BSLASHGlsname] = ACTIONS(6217), - [anon_sym_BSLASHGLSname] = ACTIONS(6217), - [anon_sym_BSLASHglssymbol] = ACTIONS(6217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6217), - [anon_sym_BSLASHglsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6217), - [anon_sym_BSLASHglsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6217), - [anon_sym_BSLASHglsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6217), - [anon_sym_BSLASHglsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6217), - [anon_sym_BSLASHglsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6217), - [anon_sym_BSLASHnewacronym] = ACTIONS(6217), - [anon_sym_BSLASHacrshort] = ACTIONS(6217), - [anon_sym_BSLASHAcrshort] = ACTIONS(6217), - [anon_sym_BSLASHACRshort] = ACTIONS(6217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6217), - [anon_sym_BSLASHacrlong] = ACTIONS(6217), - [anon_sym_BSLASHAcrlong] = ACTIONS(6217), - [anon_sym_BSLASHACRlong] = ACTIONS(6217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6217), - [anon_sym_BSLASHacrfull] = ACTIONS(6217), - [anon_sym_BSLASHAcrfull] = ACTIONS(6217), - [anon_sym_BSLASHACRfull] = ACTIONS(6217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6217), - [anon_sym_BSLASHacs] = ACTIONS(6217), - [anon_sym_BSLASHAcs] = ACTIONS(6217), - [anon_sym_BSLASHacsp] = ACTIONS(6217), - [anon_sym_BSLASHAcsp] = ACTIONS(6217), - [anon_sym_BSLASHacl] = ACTIONS(6217), - [anon_sym_BSLASHAcl] = ACTIONS(6217), - [anon_sym_BSLASHaclp] = ACTIONS(6217), - [anon_sym_BSLASHAclp] = ACTIONS(6217), - [anon_sym_BSLASHacf] = ACTIONS(6217), - [anon_sym_BSLASHAcf] = ACTIONS(6217), - [anon_sym_BSLASHacfp] = ACTIONS(6217), - [anon_sym_BSLASHAcfp] = ACTIONS(6217), - [anon_sym_BSLASHac] = ACTIONS(6217), - [anon_sym_BSLASHAc] = ACTIONS(6217), - [anon_sym_BSLASHacp] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6217), - [anon_sym_BSLASHcolor] = ACTIONS(6217), - [anon_sym_BSLASHcolorbox] = ACTIONS(6217), - [anon_sym_BSLASHtextcolor] = ACTIONS(6217), - [anon_sym_BSLASHpagecolor] = ACTIONS(6217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6217), - [anon_sym_BSLASHtext] = ACTIONS(6217), - [anon_sym_BSLASHintertext] = ACTIONS(6217), - [anon_sym_shortintertext] = ACTIONS(6217), - }, - [1322] = { - [sym_command_name] = ACTIONS(6213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(6215), - [anon_sym_RBRACK] = ACTIONS(6215), - [anon_sym_COMMA] = ACTIONS(6215), - [anon_sym_EQ] = ACTIONS(6215), - [anon_sym_LPAREN] = ACTIONS(6215), - [anon_sym_RPAREN] = ACTIONS(6215), - [anon_sym_BSLASHpart] = ACTIONS(6213), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddpart] = ACTIONS(6213), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6215), - [anon_sym_BSLASHchapter] = ACTIONS(6213), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddchap] = ACTIONS(6213), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsection] = ACTIONS(6213), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHaddsec] = ACTIONS(6213), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubsection] = ACTIONS(6213), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6213), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6215), - [anon_sym_BSLASHparagraph] = ACTIONS(6213), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6213), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6215), - [anon_sym_BSLASHitem] = ACTIONS(6213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6215), - [anon_sym_LBRACE] = ACTIONS(6215), - [sym_word] = ACTIONS(6213), - [sym_placeholder] = ACTIONS(6215), - [anon_sym_PLUS] = ACTIONS(6215), - [anon_sym_DASH] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6215), - [anon_sym_SLASH] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6213), - [anon_sym_GT] = ACTIONS(6213), - [anon_sym_BANG] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6213), - [anon_sym_COLON] = ACTIONS(6213), - [anon_sym_SQUOTE] = ACTIONS(6213), - [anon_sym__] = ACTIONS(6215), - [anon_sym_CARET] = ACTIONS(6215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6215), - [anon_sym_DOLLAR] = ACTIONS(6213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6215), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6215), - [anon_sym_BSLASHbegin] = ACTIONS(6213), - [anon_sym_BSLASHtitle] = ACTIONS(6213), - [anon_sym_BSLASHauthor] = ACTIONS(6213), - [anon_sym_BSLASHusepackage] = ACTIONS(6213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6213), - [anon_sym_BSLASHinclude] = ACTIONS(6213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6213), - [anon_sym_BSLASHinput] = ACTIONS(6213), - [anon_sym_BSLASHsubfile] = ACTIONS(6213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6213), - [anon_sym_BSLASHbibliography] = ACTIONS(6213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6213), - [anon_sym_BSLASHincludesvg] = ACTIONS(6213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6213), - [anon_sym_BSLASHimport] = ACTIONS(6213), - [anon_sym_BSLASHsubimport] = ACTIONS(6213), - [anon_sym_BSLASHinputfrom] = ACTIONS(6213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6213), - [anon_sym_BSLASHincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHcaption] = ACTIONS(6213), - [anon_sym_BSLASHcite] = ACTIONS(6213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCite] = ACTIONS(6213), - [anon_sym_BSLASHnocite] = ACTIONS(6213), - [anon_sym_BSLASHcitet] = ACTIONS(6213), - [anon_sym_BSLASHcitep] = ACTIONS(6213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteauthor] = ACTIONS(6213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitetitle] = ACTIONS(6213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteyear] = ACTIONS(6213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitedate] = ACTIONS(6213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteurl] = ACTIONS(6213), - [anon_sym_BSLASHfullcite] = ACTIONS(6213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6213), - [anon_sym_BSLASHcitealt] = ACTIONS(6213), - [anon_sym_BSLASHcitealp] = ACTIONS(6213), - [anon_sym_BSLASHcitetext] = ACTIONS(6213), - [anon_sym_BSLASHparencite] = ACTIONS(6213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHParencite] = ACTIONS(6213), - [anon_sym_BSLASHfootcite] = ACTIONS(6213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6213), - [anon_sym_BSLASHtextcite] = ACTIONS(6213), - [anon_sym_BSLASHTextcite] = ACTIONS(6213), - [anon_sym_BSLASHsmartcite] = ACTIONS(6213), - [anon_sym_BSLASHSmartcite] = ACTIONS(6213), - [anon_sym_BSLASHsupercite] = ACTIONS(6213), - [anon_sym_BSLASHautocite] = ACTIONS(6213), - [anon_sym_BSLASHAutocite] = ACTIONS(6213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHvolcite] = ACTIONS(6213), - [anon_sym_BSLASHVolcite] = ACTIONS(6213), - [anon_sym_BSLASHpvolcite] = ACTIONS(6213), - [anon_sym_BSLASHPvolcite] = ACTIONS(6213), - [anon_sym_BSLASHfvolcite] = ACTIONS(6213), - [anon_sym_BSLASHftvolcite] = ACTIONS(6213), - [anon_sym_BSLASHsvolcite] = ACTIONS(6213), - [anon_sym_BSLASHSvolcite] = ACTIONS(6213), - [anon_sym_BSLASHtvolcite] = ACTIONS(6213), - [anon_sym_BSLASHTvolcite] = ACTIONS(6213), - [anon_sym_BSLASHavolcite] = ACTIONS(6213), - [anon_sym_BSLASHAvolcite] = ACTIONS(6213), - [anon_sym_BSLASHnotecite] = ACTIONS(6213), - [anon_sym_BSLASHNotecite] = ACTIONS(6213), - [anon_sym_BSLASHpnotecite] = ACTIONS(6213), - [anon_sym_BSLASHPnotecite] = ACTIONS(6213), - [anon_sym_BSLASHfnotecite] = ACTIONS(6213), - [anon_sym_BSLASHlabel] = ACTIONS(6213), - [anon_sym_BSLASHref] = ACTIONS(6213), - [anon_sym_BSLASHeqref] = ACTIONS(6213), - [anon_sym_BSLASHvref] = ACTIONS(6213), - [anon_sym_BSLASHVref] = ACTIONS(6213), - [anon_sym_BSLASHautoref] = ACTIONS(6213), - [anon_sym_BSLASHpageref] = ACTIONS(6213), - [anon_sym_BSLASHcref] = ACTIONS(6213), - [anon_sym_BSLASHCref] = ACTIONS(6213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnameCref] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHlabelcref] = ACTIONS(6213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCrefrange] = ACTIONS(6213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnewlabel] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6215), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHdef] = ACTIONS(6213), - [anon_sym_BSLASHlet] = ACTIONS(6213), - [anon_sym_BSLASHleft] = ACTIONS(6213), - [anon_sym_BSLASHbig] = ACTIONS(6213), - [anon_sym_BSLASHBig] = ACTIONS(6213), - [anon_sym_BSLASHbigg] = ACTIONS(6213), - [anon_sym_BSLASHBigg] = ACTIONS(6213), - [anon_sym_BSLASHbigl] = ACTIONS(6213), - [anon_sym_BSLASHBigl] = ACTIONS(6213), - [anon_sym_BSLASHbiggl] = ACTIONS(6213), - [anon_sym_BSLASHBiggl] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6213), - [anon_sym_BSLASHgls] = ACTIONS(6213), - [anon_sym_BSLASHGls] = ACTIONS(6213), - [anon_sym_BSLASHGLS] = ACTIONS(6213), - [anon_sym_BSLASHglspl] = ACTIONS(6213), - [anon_sym_BSLASHGlspl] = ACTIONS(6213), - [anon_sym_BSLASHGLSpl] = ACTIONS(6213), - [anon_sym_BSLASHglsdisp] = ACTIONS(6213), - [anon_sym_BSLASHglslink] = ACTIONS(6213), - [anon_sym_BSLASHglstext] = ACTIONS(6213), - [anon_sym_BSLASHGlstext] = ACTIONS(6213), - [anon_sym_BSLASHGLStext] = ACTIONS(6213), - [anon_sym_BSLASHglsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6213), - [anon_sym_BSLASHglsplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSplural] = ACTIONS(6213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHglsname] = ACTIONS(6213), - [anon_sym_BSLASHGlsname] = ACTIONS(6213), - [anon_sym_BSLASHGLSname] = ACTIONS(6213), - [anon_sym_BSLASHglssymbol] = ACTIONS(6213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6213), - [anon_sym_BSLASHglsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6213), - [anon_sym_BSLASHglsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6213), - [anon_sym_BSLASHglsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6213), - [anon_sym_BSLASHglsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6213), - [anon_sym_BSLASHglsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6213), - [anon_sym_BSLASHnewacronym] = ACTIONS(6213), - [anon_sym_BSLASHacrshort] = ACTIONS(6213), - [anon_sym_BSLASHAcrshort] = ACTIONS(6213), - [anon_sym_BSLASHACRshort] = ACTIONS(6213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6213), - [anon_sym_BSLASHacrlong] = ACTIONS(6213), - [anon_sym_BSLASHAcrlong] = ACTIONS(6213), - [anon_sym_BSLASHACRlong] = ACTIONS(6213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6213), - [anon_sym_BSLASHacrfull] = ACTIONS(6213), - [anon_sym_BSLASHAcrfull] = ACTIONS(6213), - [anon_sym_BSLASHACRfull] = ACTIONS(6213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6213), - [anon_sym_BSLASHacs] = ACTIONS(6213), - [anon_sym_BSLASHAcs] = ACTIONS(6213), - [anon_sym_BSLASHacsp] = ACTIONS(6213), - [anon_sym_BSLASHAcsp] = ACTIONS(6213), - [anon_sym_BSLASHacl] = ACTIONS(6213), - [anon_sym_BSLASHAcl] = ACTIONS(6213), - [anon_sym_BSLASHaclp] = ACTIONS(6213), - [anon_sym_BSLASHAclp] = ACTIONS(6213), - [anon_sym_BSLASHacf] = ACTIONS(6213), - [anon_sym_BSLASHAcf] = ACTIONS(6213), - [anon_sym_BSLASHacfp] = ACTIONS(6213), - [anon_sym_BSLASHAcfp] = ACTIONS(6213), - [anon_sym_BSLASHac] = ACTIONS(6213), - [anon_sym_BSLASHAc] = ACTIONS(6213), - [anon_sym_BSLASHacp] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6213), - [anon_sym_BSLASHcolor] = ACTIONS(6213), - [anon_sym_BSLASHcolorbox] = ACTIONS(6213), - [anon_sym_BSLASHtextcolor] = ACTIONS(6213), - [anon_sym_BSLASHpagecolor] = ACTIONS(6213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6213), - [anon_sym_BSLASHtext] = ACTIONS(6213), - [anon_sym_BSLASHintertext] = ACTIONS(6213), - [anon_sym_shortintertext] = ACTIONS(6213), - }, - [1323] = { - [sym_command_name] = ACTIONS(6501), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6501), - [anon_sym_LBRACK] = ACTIONS(6503), - [anon_sym_RBRACK] = ACTIONS(6503), - [anon_sym_COMMA] = ACTIONS(6503), - [anon_sym_EQ] = ACTIONS(6503), - [anon_sym_LPAREN] = ACTIONS(6503), - [anon_sym_RPAREN] = ACTIONS(6503), - [anon_sym_BSLASHpart] = ACTIONS(6501), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddpart] = ACTIONS(6501), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6503), - [anon_sym_BSLASHchapter] = ACTIONS(6501), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddchap] = ACTIONS(6501), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsection] = ACTIONS(6501), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHaddsec] = ACTIONS(6501), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubsection] = ACTIONS(6501), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6501), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6503), - [anon_sym_BSLASHparagraph] = ACTIONS(6501), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6503), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6501), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6503), - [anon_sym_BSLASHitem] = ACTIONS(6501), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6503), - [anon_sym_LBRACE] = ACTIONS(6503), - [sym_word] = ACTIONS(6501), - [sym_placeholder] = ACTIONS(6503), - [anon_sym_PLUS] = ACTIONS(6503), - [anon_sym_DASH] = ACTIONS(6503), - [anon_sym_STAR] = ACTIONS(6503), - [anon_sym_SLASH] = ACTIONS(6503), - [anon_sym_LT] = ACTIONS(6501), - [anon_sym_GT] = ACTIONS(6501), - [anon_sym_BANG] = ACTIONS(6501), - [anon_sym_PIPE] = ACTIONS(6501), - [anon_sym_COLON] = ACTIONS(6501), - [anon_sym_SQUOTE] = ACTIONS(6501), - [anon_sym__] = ACTIONS(6503), - [anon_sym_CARET] = ACTIONS(6503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6503), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6503), - [anon_sym_DOLLAR] = ACTIONS(6501), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6503), - [anon_sym_BSLASHbegin] = ACTIONS(6501), - [anon_sym_BSLASHtitle] = ACTIONS(6501), - [anon_sym_BSLASHauthor] = ACTIONS(6501), - [anon_sym_BSLASHusepackage] = ACTIONS(6501), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6501), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6501), - [anon_sym_BSLASHinclude] = ACTIONS(6501), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6501), - [anon_sym_BSLASHinput] = ACTIONS(6501), - [anon_sym_BSLASHsubfile] = ACTIONS(6501), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6501), - [anon_sym_BSLASHbibliography] = ACTIONS(6501), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6501), - [anon_sym_BSLASHincludesvg] = ACTIONS(6501), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6501), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6501), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6501), - [anon_sym_BSLASHimport] = ACTIONS(6501), - [anon_sym_BSLASHsubimport] = ACTIONS(6501), - [anon_sym_BSLASHinputfrom] = ACTIONS(6501), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6501), - [anon_sym_BSLASHincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHcaption] = ACTIONS(6501), - [anon_sym_BSLASHcite] = ACTIONS(6501), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCite] = ACTIONS(6501), - [anon_sym_BSLASHnocite] = ACTIONS(6501), - [anon_sym_BSLASHcitet] = ACTIONS(6501), - [anon_sym_BSLASHcitep] = ACTIONS(6501), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteauthor] = ACTIONS(6501), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6501), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitetitle] = ACTIONS(6501), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteyear] = ACTIONS(6501), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitedate] = ACTIONS(6501), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteurl] = ACTIONS(6501), - [anon_sym_BSLASHfullcite] = ACTIONS(6501), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6501), - [anon_sym_BSLASHcitealt] = ACTIONS(6501), - [anon_sym_BSLASHcitealp] = ACTIONS(6501), - [anon_sym_BSLASHcitetext] = ACTIONS(6501), - [anon_sym_BSLASHparencite] = ACTIONS(6501), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHParencite] = ACTIONS(6501), - [anon_sym_BSLASHfootcite] = ACTIONS(6501), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6501), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6501), - [anon_sym_BSLASHtextcite] = ACTIONS(6501), - [anon_sym_BSLASHTextcite] = ACTIONS(6501), - [anon_sym_BSLASHsmartcite] = ACTIONS(6501), - [anon_sym_BSLASHSmartcite] = ACTIONS(6501), - [anon_sym_BSLASHsupercite] = ACTIONS(6501), - [anon_sym_BSLASHautocite] = ACTIONS(6501), - [anon_sym_BSLASHAutocite] = ACTIONS(6501), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHvolcite] = ACTIONS(6501), - [anon_sym_BSLASHVolcite] = ACTIONS(6501), - [anon_sym_BSLASHpvolcite] = ACTIONS(6501), - [anon_sym_BSLASHPvolcite] = ACTIONS(6501), - [anon_sym_BSLASHfvolcite] = ACTIONS(6501), - [anon_sym_BSLASHftvolcite] = ACTIONS(6501), - [anon_sym_BSLASHsvolcite] = ACTIONS(6501), - [anon_sym_BSLASHSvolcite] = ACTIONS(6501), - [anon_sym_BSLASHtvolcite] = ACTIONS(6501), - [anon_sym_BSLASHTvolcite] = ACTIONS(6501), - [anon_sym_BSLASHavolcite] = ACTIONS(6501), - [anon_sym_BSLASHAvolcite] = ACTIONS(6501), - [anon_sym_BSLASHnotecite] = ACTIONS(6501), - [anon_sym_BSLASHNotecite] = ACTIONS(6501), - [anon_sym_BSLASHpnotecite] = ACTIONS(6501), - [anon_sym_BSLASHPnotecite] = ACTIONS(6501), - [anon_sym_BSLASHfnotecite] = ACTIONS(6501), - [anon_sym_BSLASHlabel] = ACTIONS(6501), - [anon_sym_BSLASHref] = ACTIONS(6501), - [anon_sym_BSLASHeqref] = ACTIONS(6501), - [anon_sym_BSLASHvref] = ACTIONS(6501), - [anon_sym_BSLASHVref] = ACTIONS(6501), - [anon_sym_BSLASHautoref] = ACTIONS(6501), - [anon_sym_BSLASHpageref] = ACTIONS(6501), - [anon_sym_BSLASHcref] = ACTIONS(6501), - [anon_sym_BSLASHCref] = ACTIONS(6501), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnameCref] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHlabelcref] = ACTIONS(6501), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCrefrange] = ACTIONS(6501), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnewlabel] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6501), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6501), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6503), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHdef] = ACTIONS(6501), - [anon_sym_BSLASHlet] = ACTIONS(6501), - [anon_sym_BSLASHleft] = ACTIONS(6501), - [anon_sym_BSLASHbig] = ACTIONS(6501), - [anon_sym_BSLASHBig] = ACTIONS(6501), - [anon_sym_BSLASHbigg] = ACTIONS(6501), - [anon_sym_BSLASHBigg] = ACTIONS(6501), - [anon_sym_BSLASHbigl] = ACTIONS(6501), - [anon_sym_BSLASHBigl] = ACTIONS(6501), - [anon_sym_BSLASHbiggl] = ACTIONS(6501), - [anon_sym_BSLASHBiggl] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6501), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6501), - [anon_sym_BSLASHgls] = ACTIONS(6501), - [anon_sym_BSLASHGls] = ACTIONS(6501), - [anon_sym_BSLASHGLS] = ACTIONS(6501), - [anon_sym_BSLASHglspl] = ACTIONS(6501), - [anon_sym_BSLASHGlspl] = ACTIONS(6501), - [anon_sym_BSLASHGLSpl] = ACTIONS(6501), - [anon_sym_BSLASHglsdisp] = ACTIONS(6501), - [anon_sym_BSLASHglslink] = ACTIONS(6501), - [anon_sym_BSLASHglstext] = ACTIONS(6501), - [anon_sym_BSLASHGlstext] = ACTIONS(6501), - [anon_sym_BSLASHGLStext] = ACTIONS(6501), - [anon_sym_BSLASHglsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6501), - [anon_sym_BSLASHglsplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSplural] = ACTIONS(6501), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHglsname] = ACTIONS(6501), - [anon_sym_BSLASHGlsname] = ACTIONS(6501), - [anon_sym_BSLASHGLSname] = ACTIONS(6501), - [anon_sym_BSLASHglssymbol] = ACTIONS(6501), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6501), - [anon_sym_BSLASHglsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6501), - [anon_sym_BSLASHglsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6501), - [anon_sym_BSLASHglsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6501), - [anon_sym_BSLASHglsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6501), - [anon_sym_BSLASHglsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6501), - [anon_sym_BSLASHnewacronym] = ACTIONS(6501), - [anon_sym_BSLASHacrshort] = ACTIONS(6501), - [anon_sym_BSLASHAcrshort] = ACTIONS(6501), - [anon_sym_BSLASHACRshort] = ACTIONS(6501), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6501), - [anon_sym_BSLASHacrlong] = ACTIONS(6501), - [anon_sym_BSLASHAcrlong] = ACTIONS(6501), - [anon_sym_BSLASHACRlong] = ACTIONS(6501), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6501), - [anon_sym_BSLASHacrfull] = ACTIONS(6501), - [anon_sym_BSLASHAcrfull] = ACTIONS(6501), - [anon_sym_BSLASHACRfull] = ACTIONS(6501), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6501), - [anon_sym_BSLASHacs] = ACTIONS(6501), - [anon_sym_BSLASHAcs] = ACTIONS(6501), - [anon_sym_BSLASHacsp] = ACTIONS(6501), - [anon_sym_BSLASHAcsp] = ACTIONS(6501), - [anon_sym_BSLASHacl] = ACTIONS(6501), - [anon_sym_BSLASHAcl] = ACTIONS(6501), - [anon_sym_BSLASHaclp] = ACTIONS(6501), - [anon_sym_BSLASHAclp] = ACTIONS(6501), - [anon_sym_BSLASHacf] = ACTIONS(6501), - [anon_sym_BSLASHAcf] = ACTIONS(6501), - [anon_sym_BSLASHacfp] = ACTIONS(6501), - [anon_sym_BSLASHAcfp] = ACTIONS(6501), - [anon_sym_BSLASHac] = ACTIONS(6501), - [anon_sym_BSLASHAc] = ACTIONS(6501), - [anon_sym_BSLASHacp] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6501), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6501), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6501), - [anon_sym_BSLASHcolor] = ACTIONS(6501), - [anon_sym_BSLASHcolorbox] = ACTIONS(6501), - [anon_sym_BSLASHtextcolor] = ACTIONS(6501), - [anon_sym_BSLASHpagecolor] = ACTIONS(6501), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6501), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6501), - [anon_sym_BSLASHtext] = ACTIONS(6501), - [anon_sym_BSLASHintertext] = ACTIONS(6501), - [anon_sym_shortintertext] = ACTIONS(6501), - }, - [1324] = { - [sym_command_name] = ACTIONS(6209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6209), - [anon_sym_LBRACK] = ACTIONS(6211), - [anon_sym_RBRACK] = ACTIONS(6211), - [anon_sym_COMMA] = ACTIONS(6211), - [anon_sym_EQ] = ACTIONS(6211), - [anon_sym_LPAREN] = ACTIONS(6211), - [anon_sym_RPAREN] = ACTIONS(6211), - [anon_sym_BSLASHpart] = ACTIONS(6209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddpart] = ACTIONS(6209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6211), - [anon_sym_BSLASHchapter] = ACTIONS(6209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddchap] = ACTIONS(6209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsection] = ACTIONS(6209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddsec] = ACTIONS(6209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubsection] = ACTIONS(6209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHparagraph] = ACTIONS(6209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6211), - [anon_sym_BSLASHitem] = ACTIONS(6209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6211), - [anon_sym_LBRACE] = ACTIONS(6211), - [sym_word] = ACTIONS(6209), - [sym_placeholder] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6211), - [anon_sym_DASH] = ACTIONS(6211), - [anon_sym_STAR] = ACTIONS(6211), - [anon_sym_SLASH] = ACTIONS(6211), - [anon_sym_LT] = ACTIONS(6209), - [anon_sym_GT] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6209), - [anon_sym_COLON] = ACTIONS(6209), - [anon_sym_SQUOTE] = ACTIONS(6209), - [anon_sym__] = ACTIONS(6211), - [anon_sym_CARET] = ACTIONS(6211), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6211), - [anon_sym_DOLLAR] = ACTIONS(6209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6211), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6211), - [anon_sym_BSLASHbegin] = ACTIONS(6209), - [anon_sym_BSLASHtitle] = ACTIONS(6209), - [anon_sym_BSLASHauthor] = ACTIONS(6209), - [anon_sym_BSLASHusepackage] = ACTIONS(6209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), - [anon_sym_BSLASHinclude] = ACTIONS(6209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), - [anon_sym_BSLASHinput] = ACTIONS(6209), - [anon_sym_BSLASHsubfile] = ACTIONS(6209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), - [anon_sym_BSLASHbibliography] = ACTIONS(6209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), - [anon_sym_BSLASHincludesvg] = ACTIONS(6209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), - [anon_sym_BSLASHimport] = ACTIONS(6209), - [anon_sym_BSLASHsubimport] = ACTIONS(6209), - [anon_sym_BSLASHinputfrom] = ACTIONS(6209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), - [anon_sym_BSLASHincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHcaption] = ACTIONS(6209), - [anon_sym_BSLASHcite] = ACTIONS(6209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCite] = ACTIONS(6209), - [anon_sym_BSLASHnocite] = ACTIONS(6209), - [anon_sym_BSLASHcitet] = ACTIONS(6209), - [anon_sym_BSLASHcitep] = ACTIONS(6209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteauthor] = ACTIONS(6209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitetitle] = ACTIONS(6209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteyear] = ACTIONS(6209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitedate] = ACTIONS(6209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteurl] = ACTIONS(6209), - [anon_sym_BSLASHfullcite] = ACTIONS(6209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), - [anon_sym_BSLASHcitealt] = ACTIONS(6209), - [anon_sym_BSLASHcitealp] = ACTIONS(6209), - [anon_sym_BSLASHcitetext] = ACTIONS(6209), - [anon_sym_BSLASHparencite] = ACTIONS(6209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHParencite] = ACTIONS(6209), - [anon_sym_BSLASHfootcite] = ACTIONS(6209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), - [anon_sym_BSLASHtextcite] = ACTIONS(6209), - [anon_sym_BSLASHTextcite] = ACTIONS(6209), - [anon_sym_BSLASHsmartcite] = ACTIONS(6209), - [anon_sym_BSLASHSmartcite] = ACTIONS(6209), - [anon_sym_BSLASHsupercite] = ACTIONS(6209), - [anon_sym_BSLASHautocite] = ACTIONS(6209), - [anon_sym_BSLASHAutocite] = ACTIONS(6209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHvolcite] = ACTIONS(6209), - [anon_sym_BSLASHVolcite] = ACTIONS(6209), - [anon_sym_BSLASHpvolcite] = ACTIONS(6209), - [anon_sym_BSLASHPvolcite] = ACTIONS(6209), - [anon_sym_BSLASHfvolcite] = ACTIONS(6209), - [anon_sym_BSLASHftvolcite] = ACTIONS(6209), - [anon_sym_BSLASHsvolcite] = ACTIONS(6209), - [anon_sym_BSLASHSvolcite] = ACTIONS(6209), - [anon_sym_BSLASHtvolcite] = ACTIONS(6209), - [anon_sym_BSLASHTvolcite] = ACTIONS(6209), - [anon_sym_BSLASHavolcite] = ACTIONS(6209), - [anon_sym_BSLASHAvolcite] = ACTIONS(6209), - [anon_sym_BSLASHnotecite] = ACTIONS(6209), - [anon_sym_BSLASHNotecite] = ACTIONS(6209), - [anon_sym_BSLASHpnotecite] = ACTIONS(6209), - [anon_sym_BSLASHPnotecite] = ACTIONS(6209), - [anon_sym_BSLASHfnotecite] = ACTIONS(6209), - [anon_sym_BSLASHlabel] = ACTIONS(6209), - [anon_sym_BSLASHref] = ACTIONS(6209), - [anon_sym_BSLASHeqref] = ACTIONS(6209), - [anon_sym_BSLASHvref] = ACTIONS(6209), - [anon_sym_BSLASHVref] = ACTIONS(6209), - [anon_sym_BSLASHautoref] = ACTIONS(6209), - [anon_sym_BSLASHpageref] = ACTIONS(6209), - [anon_sym_BSLASHcref] = ACTIONS(6209), - [anon_sym_BSLASHCref] = ACTIONS(6209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnameCref] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHlabelcref] = ACTIONS(6209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCrefrange] = ACTIONS(6209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnewlabel] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6211), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHdef] = ACTIONS(6209), - [anon_sym_BSLASHlet] = ACTIONS(6209), - [anon_sym_BSLASHleft] = ACTIONS(6209), - [anon_sym_BSLASHbig] = ACTIONS(6209), - [anon_sym_BSLASHBig] = ACTIONS(6209), - [anon_sym_BSLASHbigg] = ACTIONS(6209), - [anon_sym_BSLASHBigg] = ACTIONS(6209), - [anon_sym_BSLASHbigl] = ACTIONS(6209), - [anon_sym_BSLASHBigl] = ACTIONS(6209), - [anon_sym_BSLASHbiggl] = ACTIONS(6209), - [anon_sym_BSLASHBiggl] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), - [anon_sym_BSLASHgls] = ACTIONS(6209), - [anon_sym_BSLASHGls] = ACTIONS(6209), - [anon_sym_BSLASHGLS] = ACTIONS(6209), - [anon_sym_BSLASHglspl] = ACTIONS(6209), - [anon_sym_BSLASHGlspl] = ACTIONS(6209), - [anon_sym_BSLASHGLSpl] = ACTIONS(6209), - [anon_sym_BSLASHglsdisp] = ACTIONS(6209), - [anon_sym_BSLASHglslink] = ACTIONS(6209), - [anon_sym_BSLASHglstext] = ACTIONS(6209), - [anon_sym_BSLASHGlstext] = ACTIONS(6209), - [anon_sym_BSLASHGLStext] = ACTIONS(6209), - [anon_sym_BSLASHglsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), - [anon_sym_BSLASHglsplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSplural] = ACTIONS(6209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHglsname] = ACTIONS(6209), - [anon_sym_BSLASHGlsname] = ACTIONS(6209), - [anon_sym_BSLASHGLSname] = ACTIONS(6209), - [anon_sym_BSLASHglssymbol] = ACTIONS(6209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), - [anon_sym_BSLASHglsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), - [anon_sym_BSLASHglsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), - [anon_sym_BSLASHglsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), - [anon_sym_BSLASHglsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), - [anon_sym_BSLASHglsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), - [anon_sym_BSLASHnewacronym] = ACTIONS(6209), - [anon_sym_BSLASHacrshort] = ACTIONS(6209), - [anon_sym_BSLASHAcrshort] = ACTIONS(6209), - [anon_sym_BSLASHACRshort] = ACTIONS(6209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), - [anon_sym_BSLASHacrlong] = ACTIONS(6209), - [anon_sym_BSLASHAcrlong] = ACTIONS(6209), - [anon_sym_BSLASHACRlong] = ACTIONS(6209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), - [anon_sym_BSLASHacrfull] = ACTIONS(6209), - [anon_sym_BSLASHAcrfull] = ACTIONS(6209), - [anon_sym_BSLASHACRfull] = ACTIONS(6209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), - [anon_sym_BSLASHacs] = ACTIONS(6209), - [anon_sym_BSLASHAcs] = ACTIONS(6209), - [anon_sym_BSLASHacsp] = ACTIONS(6209), - [anon_sym_BSLASHAcsp] = ACTIONS(6209), - [anon_sym_BSLASHacl] = ACTIONS(6209), - [anon_sym_BSLASHAcl] = ACTIONS(6209), - [anon_sym_BSLASHaclp] = ACTIONS(6209), - [anon_sym_BSLASHAclp] = ACTIONS(6209), - [anon_sym_BSLASHacf] = ACTIONS(6209), - [anon_sym_BSLASHAcf] = ACTIONS(6209), - [anon_sym_BSLASHacfp] = ACTIONS(6209), - [anon_sym_BSLASHAcfp] = ACTIONS(6209), - [anon_sym_BSLASHac] = ACTIONS(6209), - [anon_sym_BSLASHAc] = ACTIONS(6209), - [anon_sym_BSLASHacp] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), - [anon_sym_BSLASHcolor] = ACTIONS(6209), - [anon_sym_BSLASHcolorbox] = ACTIONS(6209), - [anon_sym_BSLASHtextcolor] = ACTIONS(6209), - [anon_sym_BSLASHpagecolor] = ACTIONS(6209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), - [anon_sym_BSLASHtext] = ACTIONS(6209), - [anon_sym_BSLASHintertext] = ACTIONS(6209), - [anon_sym_shortintertext] = ACTIONS(6209), - }, - [1325] = { - [sym_command_name] = ACTIONS(6205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6205), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_RBRACK] = ACTIONS(6207), - [anon_sym_COMMA] = ACTIONS(6207), - [anon_sym_EQ] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_RPAREN] = ACTIONS(6207), - [anon_sym_BSLASHpart] = ACTIONS(6205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddpart] = ACTIONS(6205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6207), - [anon_sym_BSLASHchapter] = ACTIONS(6205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddchap] = ACTIONS(6205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsection] = ACTIONS(6205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddsec] = ACTIONS(6205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubsection] = ACTIONS(6205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHparagraph] = ACTIONS(6205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6207), - [anon_sym_BSLASHitem] = ACTIONS(6205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6207), - [anon_sym_LBRACE] = ACTIONS(6207), - [sym_word] = ACTIONS(6205), - [sym_placeholder] = ACTIONS(6207), - [anon_sym_PLUS] = ACTIONS(6207), - [anon_sym_DASH] = ACTIONS(6207), - [anon_sym_STAR] = ACTIONS(6207), - [anon_sym_SLASH] = ACTIONS(6207), - [anon_sym_LT] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6205), - [anon_sym_BANG] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_COLON] = ACTIONS(6205), - [anon_sym_SQUOTE] = ACTIONS(6205), - [anon_sym__] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), - [anon_sym_DOLLAR] = ACTIONS(6205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6207), - [anon_sym_BSLASHbegin] = ACTIONS(6205), - [anon_sym_BSLASHtitle] = ACTIONS(6205), - [anon_sym_BSLASHauthor] = ACTIONS(6205), - [anon_sym_BSLASHusepackage] = ACTIONS(6205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), - [anon_sym_BSLASHinclude] = ACTIONS(6205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), - [anon_sym_BSLASHinput] = ACTIONS(6205), - [anon_sym_BSLASHsubfile] = ACTIONS(6205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), - [anon_sym_BSLASHbibliography] = ACTIONS(6205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), - [anon_sym_BSLASHincludesvg] = ACTIONS(6205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), - [anon_sym_BSLASHimport] = ACTIONS(6205), - [anon_sym_BSLASHsubimport] = ACTIONS(6205), - [anon_sym_BSLASHinputfrom] = ACTIONS(6205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), - [anon_sym_BSLASHincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHcaption] = ACTIONS(6205), - [anon_sym_BSLASHcite] = ACTIONS(6205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCite] = ACTIONS(6205), - [anon_sym_BSLASHnocite] = ACTIONS(6205), - [anon_sym_BSLASHcitet] = ACTIONS(6205), - [anon_sym_BSLASHcitep] = ACTIONS(6205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteauthor] = ACTIONS(6205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitetitle] = ACTIONS(6205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteyear] = ACTIONS(6205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitedate] = ACTIONS(6205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteurl] = ACTIONS(6205), - [anon_sym_BSLASHfullcite] = ACTIONS(6205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), - [anon_sym_BSLASHcitealt] = ACTIONS(6205), - [anon_sym_BSLASHcitealp] = ACTIONS(6205), - [anon_sym_BSLASHcitetext] = ACTIONS(6205), - [anon_sym_BSLASHparencite] = ACTIONS(6205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHParencite] = ACTIONS(6205), - [anon_sym_BSLASHfootcite] = ACTIONS(6205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), - [anon_sym_BSLASHtextcite] = ACTIONS(6205), - [anon_sym_BSLASHTextcite] = ACTIONS(6205), - [anon_sym_BSLASHsmartcite] = ACTIONS(6205), - [anon_sym_BSLASHSmartcite] = ACTIONS(6205), - [anon_sym_BSLASHsupercite] = ACTIONS(6205), - [anon_sym_BSLASHautocite] = ACTIONS(6205), - [anon_sym_BSLASHAutocite] = ACTIONS(6205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHvolcite] = ACTIONS(6205), - [anon_sym_BSLASHVolcite] = ACTIONS(6205), - [anon_sym_BSLASHpvolcite] = ACTIONS(6205), - [anon_sym_BSLASHPvolcite] = ACTIONS(6205), - [anon_sym_BSLASHfvolcite] = ACTIONS(6205), - [anon_sym_BSLASHftvolcite] = ACTIONS(6205), - [anon_sym_BSLASHsvolcite] = ACTIONS(6205), - [anon_sym_BSLASHSvolcite] = ACTIONS(6205), - [anon_sym_BSLASHtvolcite] = ACTIONS(6205), - [anon_sym_BSLASHTvolcite] = ACTIONS(6205), - [anon_sym_BSLASHavolcite] = ACTIONS(6205), - [anon_sym_BSLASHAvolcite] = ACTIONS(6205), - [anon_sym_BSLASHnotecite] = ACTIONS(6205), - [anon_sym_BSLASHNotecite] = ACTIONS(6205), - [anon_sym_BSLASHpnotecite] = ACTIONS(6205), - [anon_sym_BSLASHPnotecite] = ACTIONS(6205), - [anon_sym_BSLASHfnotecite] = ACTIONS(6205), - [anon_sym_BSLASHlabel] = ACTIONS(6205), - [anon_sym_BSLASHref] = ACTIONS(6205), - [anon_sym_BSLASHeqref] = ACTIONS(6205), - [anon_sym_BSLASHvref] = ACTIONS(6205), - [anon_sym_BSLASHVref] = ACTIONS(6205), - [anon_sym_BSLASHautoref] = ACTIONS(6205), - [anon_sym_BSLASHpageref] = ACTIONS(6205), - [anon_sym_BSLASHcref] = ACTIONS(6205), - [anon_sym_BSLASHCref] = ACTIONS(6205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnameCref] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHlabelcref] = ACTIONS(6205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCrefrange] = ACTIONS(6205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnewlabel] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHdef] = ACTIONS(6205), - [anon_sym_BSLASHlet] = ACTIONS(6205), - [anon_sym_BSLASHleft] = ACTIONS(6205), - [anon_sym_BSLASHbig] = ACTIONS(6205), - [anon_sym_BSLASHBig] = ACTIONS(6205), - [anon_sym_BSLASHbigg] = ACTIONS(6205), - [anon_sym_BSLASHBigg] = ACTIONS(6205), - [anon_sym_BSLASHbigl] = ACTIONS(6205), - [anon_sym_BSLASHBigl] = ACTIONS(6205), - [anon_sym_BSLASHbiggl] = ACTIONS(6205), - [anon_sym_BSLASHBiggl] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), - [anon_sym_BSLASHgls] = ACTIONS(6205), - [anon_sym_BSLASHGls] = ACTIONS(6205), - [anon_sym_BSLASHGLS] = ACTIONS(6205), - [anon_sym_BSLASHglspl] = ACTIONS(6205), - [anon_sym_BSLASHGlspl] = ACTIONS(6205), - [anon_sym_BSLASHGLSpl] = ACTIONS(6205), - [anon_sym_BSLASHglsdisp] = ACTIONS(6205), - [anon_sym_BSLASHglslink] = ACTIONS(6205), - [anon_sym_BSLASHglstext] = ACTIONS(6205), - [anon_sym_BSLASHGlstext] = ACTIONS(6205), - [anon_sym_BSLASHGLStext] = ACTIONS(6205), - [anon_sym_BSLASHglsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), - [anon_sym_BSLASHglsplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSplural] = ACTIONS(6205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHglsname] = ACTIONS(6205), - [anon_sym_BSLASHGlsname] = ACTIONS(6205), - [anon_sym_BSLASHGLSname] = ACTIONS(6205), - [anon_sym_BSLASHglssymbol] = ACTIONS(6205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), - [anon_sym_BSLASHglsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), - [anon_sym_BSLASHglsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), - [anon_sym_BSLASHglsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), - [anon_sym_BSLASHglsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), - [anon_sym_BSLASHglsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), - [anon_sym_BSLASHnewacronym] = ACTIONS(6205), - [anon_sym_BSLASHacrshort] = ACTIONS(6205), - [anon_sym_BSLASHAcrshort] = ACTIONS(6205), - [anon_sym_BSLASHACRshort] = ACTIONS(6205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), - [anon_sym_BSLASHacrlong] = ACTIONS(6205), - [anon_sym_BSLASHAcrlong] = ACTIONS(6205), - [anon_sym_BSLASHACRlong] = ACTIONS(6205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), - [anon_sym_BSLASHacrfull] = ACTIONS(6205), - [anon_sym_BSLASHAcrfull] = ACTIONS(6205), - [anon_sym_BSLASHACRfull] = ACTIONS(6205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), - [anon_sym_BSLASHacs] = ACTIONS(6205), - [anon_sym_BSLASHAcs] = ACTIONS(6205), - [anon_sym_BSLASHacsp] = ACTIONS(6205), - [anon_sym_BSLASHAcsp] = ACTIONS(6205), - [anon_sym_BSLASHacl] = ACTIONS(6205), - [anon_sym_BSLASHAcl] = ACTIONS(6205), - [anon_sym_BSLASHaclp] = ACTIONS(6205), - [anon_sym_BSLASHAclp] = ACTIONS(6205), - [anon_sym_BSLASHacf] = ACTIONS(6205), - [anon_sym_BSLASHAcf] = ACTIONS(6205), - [anon_sym_BSLASHacfp] = ACTIONS(6205), - [anon_sym_BSLASHAcfp] = ACTIONS(6205), - [anon_sym_BSLASHac] = ACTIONS(6205), - [anon_sym_BSLASHAc] = ACTIONS(6205), - [anon_sym_BSLASHacp] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), - [anon_sym_BSLASHcolor] = ACTIONS(6205), - [anon_sym_BSLASHcolorbox] = ACTIONS(6205), - [anon_sym_BSLASHtextcolor] = ACTIONS(6205), - [anon_sym_BSLASHpagecolor] = ACTIONS(6205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), - [anon_sym_BSLASHtext] = ACTIONS(6205), - [anon_sym_BSLASHintertext] = ACTIONS(6205), - [anon_sym_shortintertext] = ACTIONS(6205), - }, - [1326] = { - [sym_command_name] = ACTIONS(6505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(6507), - [anon_sym_RBRACK] = ACTIONS(6507), - [anon_sym_COMMA] = ACTIONS(6507), - [anon_sym_EQ] = ACTIONS(6507), - [anon_sym_LPAREN] = ACTIONS(6507), - [anon_sym_RPAREN] = ACTIONS(6507), - [anon_sym_BSLASHpart] = ACTIONS(6505), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddpart] = ACTIONS(6505), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6507), - [anon_sym_BSLASHchapter] = ACTIONS(6505), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddchap] = ACTIONS(6505), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsection] = ACTIONS(6505), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHaddsec] = ACTIONS(6505), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubsection] = ACTIONS(6505), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6505), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6507), - [anon_sym_BSLASHparagraph] = ACTIONS(6505), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6507), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6505), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6507), - [anon_sym_BSLASHitem] = ACTIONS(6505), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [sym_word] = ACTIONS(6505), - [sym_placeholder] = ACTIONS(6507), - [anon_sym_PLUS] = ACTIONS(6507), - [anon_sym_DASH] = ACTIONS(6507), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_SLASH] = ACTIONS(6507), - [anon_sym_LT] = ACTIONS(6505), - [anon_sym_GT] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6505), - [anon_sym_PIPE] = ACTIONS(6505), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6505), - [anon_sym__] = ACTIONS(6507), - [anon_sym_CARET] = ACTIONS(6507), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6507), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6507), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6507), - [anon_sym_DOLLAR] = ACTIONS(6505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6507), - [anon_sym_BSLASHbegin] = ACTIONS(6505), - [anon_sym_BSLASHtitle] = ACTIONS(6505), - [anon_sym_BSLASHauthor] = ACTIONS(6505), - [anon_sym_BSLASHusepackage] = ACTIONS(6505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6505), - [anon_sym_BSLASHinclude] = ACTIONS(6505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6505), - [anon_sym_BSLASHinput] = ACTIONS(6505), - [anon_sym_BSLASHsubfile] = ACTIONS(6505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6505), - [anon_sym_BSLASHbibliography] = ACTIONS(6505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6505), - [anon_sym_BSLASHincludesvg] = ACTIONS(6505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6505), - [anon_sym_BSLASHimport] = ACTIONS(6505), - [anon_sym_BSLASHsubimport] = ACTIONS(6505), - [anon_sym_BSLASHinputfrom] = ACTIONS(6505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6505), - [anon_sym_BSLASHincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHcaption] = ACTIONS(6505), - [anon_sym_BSLASHcite] = ACTIONS(6505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCite] = ACTIONS(6505), - [anon_sym_BSLASHnocite] = ACTIONS(6505), - [anon_sym_BSLASHcitet] = ACTIONS(6505), - [anon_sym_BSLASHcitep] = ACTIONS(6505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteauthor] = ACTIONS(6505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitetitle] = ACTIONS(6505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteyear] = ACTIONS(6505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitedate] = ACTIONS(6505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteurl] = ACTIONS(6505), - [anon_sym_BSLASHfullcite] = ACTIONS(6505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6505), - [anon_sym_BSLASHcitealt] = ACTIONS(6505), - [anon_sym_BSLASHcitealp] = ACTIONS(6505), - [anon_sym_BSLASHcitetext] = ACTIONS(6505), - [anon_sym_BSLASHparencite] = ACTIONS(6505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHParencite] = ACTIONS(6505), - [anon_sym_BSLASHfootcite] = ACTIONS(6505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6505), - [anon_sym_BSLASHtextcite] = ACTIONS(6505), - [anon_sym_BSLASHTextcite] = ACTIONS(6505), - [anon_sym_BSLASHsmartcite] = ACTIONS(6505), - [anon_sym_BSLASHSmartcite] = ACTIONS(6505), - [anon_sym_BSLASHsupercite] = ACTIONS(6505), - [anon_sym_BSLASHautocite] = ACTIONS(6505), - [anon_sym_BSLASHAutocite] = ACTIONS(6505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHvolcite] = ACTIONS(6505), - [anon_sym_BSLASHVolcite] = ACTIONS(6505), - [anon_sym_BSLASHpvolcite] = ACTIONS(6505), - [anon_sym_BSLASHPvolcite] = ACTIONS(6505), - [anon_sym_BSLASHfvolcite] = ACTIONS(6505), - [anon_sym_BSLASHftvolcite] = ACTIONS(6505), - [anon_sym_BSLASHsvolcite] = ACTIONS(6505), - [anon_sym_BSLASHSvolcite] = ACTIONS(6505), - [anon_sym_BSLASHtvolcite] = ACTIONS(6505), - [anon_sym_BSLASHTvolcite] = ACTIONS(6505), - [anon_sym_BSLASHavolcite] = ACTIONS(6505), - [anon_sym_BSLASHAvolcite] = ACTIONS(6505), - [anon_sym_BSLASHnotecite] = ACTIONS(6505), - [anon_sym_BSLASHNotecite] = ACTIONS(6505), - [anon_sym_BSLASHpnotecite] = ACTIONS(6505), - [anon_sym_BSLASHPnotecite] = ACTIONS(6505), - [anon_sym_BSLASHfnotecite] = ACTIONS(6505), - [anon_sym_BSLASHlabel] = ACTIONS(6505), - [anon_sym_BSLASHref] = ACTIONS(6505), - [anon_sym_BSLASHeqref] = ACTIONS(6505), - [anon_sym_BSLASHvref] = ACTIONS(6505), - [anon_sym_BSLASHVref] = ACTIONS(6505), - [anon_sym_BSLASHautoref] = ACTIONS(6505), - [anon_sym_BSLASHpageref] = ACTIONS(6505), - [anon_sym_BSLASHcref] = ACTIONS(6505), - [anon_sym_BSLASHCref] = ACTIONS(6505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnameCref] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHlabelcref] = ACTIONS(6505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCrefrange] = ACTIONS(6505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnewlabel] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6507), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHdef] = ACTIONS(6505), - [anon_sym_BSLASHlet] = ACTIONS(6505), - [anon_sym_BSLASHleft] = ACTIONS(6505), - [anon_sym_BSLASHbig] = ACTIONS(6505), - [anon_sym_BSLASHBig] = ACTIONS(6505), - [anon_sym_BSLASHbigg] = ACTIONS(6505), - [anon_sym_BSLASHBigg] = ACTIONS(6505), - [anon_sym_BSLASHbigl] = ACTIONS(6505), - [anon_sym_BSLASHBigl] = ACTIONS(6505), - [anon_sym_BSLASHbiggl] = ACTIONS(6505), - [anon_sym_BSLASHBiggl] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6505), - [anon_sym_BSLASHgls] = ACTIONS(6505), - [anon_sym_BSLASHGls] = ACTIONS(6505), - [anon_sym_BSLASHGLS] = ACTIONS(6505), - [anon_sym_BSLASHglspl] = ACTIONS(6505), - [anon_sym_BSLASHGlspl] = ACTIONS(6505), - [anon_sym_BSLASHGLSpl] = ACTIONS(6505), - [anon_sym_BSLASHglsdisp] = ACTIONS(6505), - [anon_sym_BSLASHglslink] = ACTIONS(6505), - [anon_sym_BSLASHglstext] = ACTIONS(6505), - [anon_sym_BSLASHGlstext] = ACTIONS(6505), - [anon_sym_BSLASHGLStext] = ACTIONS(6505), - [anon_sym_BSLASHglsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6505), - [anon_sym_BSLASHglsplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSplural] = ACTIONS(6505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHglsname] = ACTIONS(6505), - [anon_sym_BSLASHGlsname] = ACTIONS(6505), - [anon_sym_BSLASHGLSname] = ACTIONS(6505), - [anon_sym_BSLASHglssymbol] = ACTIONS(6505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6505), - [anon_sym_BSLASHglsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6505), - [anon_sym_BSLASHglsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6505), - [anon_sym_BSLASHglsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6505), - [anon_sym_BSLASHglsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6505), - [anon_sym_BSLASHglsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6505), - [anon_sym_BSLASHnewacronym] = ACTIONS(6505), - [anon_sym_BSLASHacrshort] = ACTIONS(6505), - [anon_sym_BSLASHAcrshort] = ACTIONS(6505), - [anon_sym_BSLASHACRshort] = ACTIONS(6505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6505), - [anon_sym_BSLASHacrlong] = ACTIONS(6505), - [anon_sym_BSLASHAcrlong] = ACTIONS(6505), - [anon_sym_BSLASHACRlong] = ACTIONS(6505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6505), - [anon_sym_BSLASHacrfull] = ACTIONS(6505), - [anon_sym_BSLASHAcrfull] = ACTIONS(6505), - [anon_sym_BSLASHACRfull] = ACTIONS(6505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6505), - [anon_sym_BSLASHacs] = ACTIONS(6505), - [anon_sym_BSLASHAcs] = ACTIONS(6505), - [anon_sym_BSLASHacsp] = ACTIONS(6505), - [anon_sym_BSLASHAcsp] = ACTIONS(6505), - [anon_sym_BSLASHacl] = ACTIONS(6505), - [anon_sym_BSLASHAcl] = ACTIONS(6505), - [anon_sym_BSLASHaclp] = ACTIONS(6505), - [anon_sym_BSLASHAclp] = ACTIONS(6505), - [anon_sym_BSLASHacf] = ACTIONS(6505), - [anon_sym_BSLASHAcf] = ACTIONS(6505), - [anon_sym_BSLASHacfp] = ACTIONS(6505), - [anon_sym_BSLASHAcfp] = ACTIONS(6505), - [anon_sym_BSLASHac] = ACTIONS(6505), - [anon_sym_BSLASHAc] = ACTIONS(6505), - [anon_sym_BSLASHacp] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6505), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6505), - [anon_sym_BSLASHcolor] = ACTIONS(6505), - [anon_sym_BSLASHcolorbox] = ACTIONS(6505), - [anon_sym_BSLASHtextcolor] = ACTIONS(6505), - [anon_sym_BSLASHpagecolor] = ACTIONS(6505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6505), - [anon_sym_BSLASHtext] = ACTIONS(6505), - [anon_sym_BSLASHintertext] = ACTIONS(6505), - [anon_sym_shortintertext] = ACTIONS(6505), - }, - [1327] = { - [sym_command_name] = ACTIONS(6509), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6509), - [anon_sym_LBRACK] = ACTIONS(6511), - [anon_sym_RBRACK] = ACTIONS(6511), - [anon_sym_COMMA] = ACTIONS(6511), - [anon_sym_EQ] = ACTIONS(6511), - [anon_sym_LPAREN] = ACTIONS(6511), - [anon_sym_RPAREN] = ACTIONS(6511), - [anon_sym_BSLASHpart] = ACTIONS(6509), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddpart] = ACTIONS(6509), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6511), - [anon_sym_BSLASHchapter] = ACTIONS(6509), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddchap] = ACTIONS(6509), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsection] = ACTIONS(6509), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHaddsec] = ACTIONS(6509), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubsection] = ACTIONS(6509), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6509), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6511), - [anon_sym_BSLASHparagraph] = ACTIONS(6509), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6511), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6509), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6511), - [anon_sym_BSLASHitem] = ACTIONS(6509), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6511), - [anon_sym_LBRACE] = ACTIONS(6511), - [sym_word] = ACTIONS(6509), - [sym_placeholder] = ACTIONS(6511), - [anon_sym_PLUS] = ACTIONS(6511), - [anon_sym_DASH] = ACTIONS(6511), - [anon_sym_STAR] = ACTIONS(6511), - [anon_sym_SLASH] = ACTIONS(6511), - [anon_sym_LT] = ACTIONS(6509), - [anon_sym_GT] = ACTIONS(6509), - [anon_sym_BANG] = ACTIONS(6509), - [anon_sym_PIPE] = ACTIONS(6509), - [anon_sym_COLON] = ACTIONS(6509), - [anon_sym_SQUOTE] = ACTIONS(6509), - [anon_sym__] = ACTIONS(6511), - [anon_sym_CARET] = ACTIONS(6511), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6511), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6511), - [anon_sym_DOLLAR] = ACTIONS(6509), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6511), - [anon_sym_BSLASHbegin] = ACTIONS(6509), - [anon_sym_BSLASHtitle] = ACTIONS(6509), - [anon_sym_BSLASHauthor] = ACTIONS(6509), - [anon_sym_BSLASHusepackage] = ACTIONS(6509), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6509), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6509), - [anon_sym_BSLASHinclude] = ACTIONS(6509), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6509), - [anon_sym_BSLASHinput] = ACTIONS(6509), - [anon_sym_BSLASHsubfile] = ACTIONS(6509), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6509), - [anon_sym_BSLASHbibliography] = ACTIONS(6509), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6509), - [anon_sym_BSLASHincludesvg] = ACTIONS(6509), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6509), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6509), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6509), - [anon_sym_BSLASHimport] = ACTIONS(6509), - [anon_sym_BSLASHsubimport] = ACTIONS(6509), - [anon_sym_BSLASHinputfrom] = ACTIONS(6509), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6509), - [anon_sym_BSLASHincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHcaption] = ACTIONS(6509), - [anon_sym_BSLASHcite] = ACTIONS(6509), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCite] = ACTIONS(6509), - [anon_sym_BSLASHnocite] = ACTIONS(6509), - [anon_sym_BSLASHcitet] = ACTIONS(6509), - [anon_sym_BSLASHcitep] = ACTIONS(6509), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteauthor] = ACTIONS(6509), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6509), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitetitle] = ACTIONS(6509), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteyear] = ACTIONS(6509), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitedate] = ACTIONS(6509), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteurl] = ACTIONS(6509), - [anon_sym_BSLASHfullcite] = ACTIONS(6509), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6509), - [anon_sym_BSLASHcitealt] = ACTIONS(6509), - [anon_sym_BSLASHcitealp] = ACTIONS(6509), - [anon_sym_BSLASHcitetext] = ACTIONS(6509), - [anon_sym_BSLASHparencite] = ACTIONS(6509), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHParencite] = ACTIONS(6509), - [anon_sym_BSLASHfootcite] = ACTIONS(6509), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6509), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6509), - [anon_sym_BSLASHtextcite] = ACTIONS(6509), - [anon_sym_BSLASHTextcite] = ACTIONS(6509), - [anon_sym_BSLASHsmartcite] = ACTIONS(6509), - [anon_sym_BSLASHSmartcite] = ACTIONS(6509), - [anon_sym_BSLASHsupercite] = ACTIONS(6509), - [anon_sym_BSLASHautocite] = ACTIONS(6509), - [anon_sym_BSLASHAutocite] = ACTIONS(6509), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHvolcite] = ACTIONS(6509), - [anon_sym_BSLASHVolcite] = ACTIONS(6509), - [anon_sym_BSLASHpvolcite] = ACTIONS(6509), - [anon_sym_BSLASHPvolcite] = ACTIONS(6509), - [anon_sym_BSLASHfvolcite] = ACTIONS(6509), - [anon_sym_BSLASHftvolcite] = ACTIONS(6509), - [anon_sym_BSLASHsvolcite] = ACTIONS(6509), - [anon_sym_BSLASHSvolcite] = ACTIONS(6509), - [anon_sym_BSLASHtvolcite] = ACTIONS(6509), - [anon_sym_BSLASHTvolcite] = ACTIONS(6509), - [anon_sym_BSLASHavolcite] = ACTIONS(6509), - [anon_sym_BSLASHAvolcite] = ACTIONS(6509), - [anon_sym_BSLASHnotecite] = ACTIONS(6509), - [anon_sym_BSLASHNotecite] = ACTIONS(6509), - [anon_sym_BSLASHpnotecite] = ACTIONS(6509), - [anon_sym_BSLASHPnotecite] = ACTIONS(6509), - [anon_sym_BSLASHfnotecite] = ACTIONS(6509), - [anon_sym_BSLASHlabel] = ACTIONS(6509), - [anon_sym_BSLASHref] = ACTIONS(6509), - [anon_sym_BSLASHeqref] = ACTIONS(6509), - [anon_sym_BSLASHvref] = ACTIONS(6509), - [anon_sym_BSLASHVref] = ACTIONS(6509), - [anon_sym_BSLASHautoref] = ACTIONS(6509), - [anon_sym_BSLASHpageref] = ACTIONS(6509), - [anon_sym_BSLASHcref] = ACTIONS(6509), - [anon_sym_BSLASHCref] = ACTIONS(6509), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnameCref] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHlabelcref] = ACTIONS(6509), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCrefrange] = ACTIONS(6509), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnewlabel] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6509), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6509), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6511), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHdef] = ACTIONS(6509), - [anon_sym_BSLASHlet] = ACTIONS(6509), - [anon_sym_BSLASHleft] = ACTIONS(6509), - [anon_sym_BSLASHbig] = ACTIONS(6509), - [anon_sym_BSLASHBig] = ACTIONS(6509), - [anon_sym_BSLASHbigg] = ACTIONS(6509), - [anon_sym_BSLASHBigg] = ACTIONS(6509), - [anon_sym_BSLASHbigl] = ACTIONS(6509), - [anon_sym_BSLASHBigl] = ACTIONS(6509), - [anon_sym_BSLASHbiggl] = ACTIONS(6509), - [anon_sym_BSLASHBiggl] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6509), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6509), - [anon_sym_BSLASHgls] = ACTIONS(6509), - [anon_sym_BSLASHGls] = ACTIONS(6509), - [anon_sym_BSLASHGLS] = ACTIONS(6509), - [anon_sym_BSLASHglspl] = ACTIONS(6509), - [anon_sym_BSLASHGlspl] = ACTIONS(6509), - [anon_sym_BSLASHGLSpl] = ACTIONS(6509), - [anon_sym_BSLASHglsdisp] = ACTIONS(6509), - [anon_sym_BSLASHglslink] = ACTIONS(6509), - [anon_sym_BSLASHglstext] = ACTIONS(6509), - [anon_sym_BSLASHGlstext] = ACTIONS(6509), - [anon_sym_BSLASHGLStext] = ACTIONS(6509), - [anon_sym_BSLASHglsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6509), - [anon_sym_BSLASHglsplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSplural] = ACTIONS(6509), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHglsname] = ACTIONS(6509), - [anon_sym_BSLASHGlsname] = ACTIONS(6509), - [anon_sym_BSLASHGLSname] = ACTIONS(6509), - [anon_sym_BSLASHglssymbol] = ACTIONS(6509), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6509), - [anon_sym_BSLASHglsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6509), - [anon_sym_BSLASHglsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6509), - [anon_sym_BSLASHglsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6509), - [anon_sym_BSLASHglsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6509), - [anon_sym_BSLASHglsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6509), - [anon_sym_BSLASHnewacronym] = ACTIONS(6509), - [anon_sym_BSLASHacrshort] = ACTIONS(6509), - [anon_sym_BSLASHAcrshort] = ACTIONS(6509), - [anon_sym_BSLASHACRshort] = ACTIONS(6509), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6509), - [anon_sym_BSLASHacrlong] = ACTIONS(6509), - [anon_sym_BSLASHAcrlong] = ACTIONS(6509), - [anon_sym_BSLASHACRlong] = ACTIONS(6509), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6509), - [anon_sym_BSLASHacrfull] = ACTIONS(6509), - [anon_sym_BSLASHAcrfull] = ACTIONS(6509), - [anon_sym_BSLASHACRfull] = ACTIONS(6509), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6509), - [anon_sym_BSLASHacs] = ACTIONS(6509), - [anon_sym_BSLASHAcs] = ACTIONS(6509), - [anon_sym_BSLASHacsp] = ACTIONS(6509), - [anon_sym_BSLASHAcsp] = ACTIONS(6509), - [anon_sym_BSLASHacl] = ACTIONS(6509), - [anon_sym_BSLASHAcl] = ACTIONS(6509), - [anon_sym_BSLASHaclp] = ACTIONS(6509), - [anon_sym_BSLASHAclp] = ACTIONS(6509), - [anon_sym_BSLASHacf] = ACTIONS(6509), - [anon_sym_BSLASHAcf] = ACTIONS(6509), - [anon_sym_BSLASHacfp] = ACTIONS(6509), - [anon_sym_BSLASHAcfp] = ACTIONS(6509), - [anon_sym_BSLASHac] = ACTIONS(6509), - [anon_sym_BSLASHAc] = ACTIONS(6509), - [anon_sym_BSLASHacp] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6509), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6509), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6509), - [anon_sym_BSLASHcolor] = ACTIONS(6509), - [anon_sym_BSLASHcolorbox] = ACTIONS(6509), - [anon_sym_BSLASHtextcolor] = ACTIONS(6509), - [anon_sym_BSLASHpagecolor] = ACTIONS(6509), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6509), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6509), - [anon_sym_BSLASHtext] = ACTIONS(6509), - [anon_sym_BSLASHintertext] = ACTIONS(6509), - [anon_sym_shortintertext] = ACTIONS(6509), - }, - [1328] = { - [sym_command_name] = ACTIONS(6033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6033), - [anon_sym_LBRACK] = ACTIONS(6035), - [anon_sym_RBRACK] = ACTIONS(6035), - [anon_sym_COMMA] = ACTIONS(6035), - [anon_sym_EQ] = ACTIONS(6035), - [anon_sym_LPAREN] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_BSLASHpart] = ACTIONS(6033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddpart] = ACTIONS(6033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6035), - [anon_sym_BSLASHchapter] = ACTIONS(6033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddchap] = ACTIONS(6033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsection] = ACTIONS(6033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddsec] = ACTIONS(6033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubsection] = ACTIONS(6033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHparagraph] = ACTIONS(6033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6035), - [anon_sym_BSLASHitem] = ACTIONS(6033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6035), - [anon_sym_LBRACE] = ACTIONS(6035), - [sym_word] = ACTIONS(6033), - [sym_placeholder] = ACTIONS(6035), - [anon_sym_PLUS] = ACTIONS(6035), - [anon_sym_DASH] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6035), - [anon_sym_SLASH] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_COLON] = ACTIONS(6033), - [anon_sym_SQUOTE] = ACTIONS(6033), - [anon_sym__] = ACTIONS(6035), - [anon_sym_CARET] = ACTIONS(6035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6035), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6035), - [anon_sym_BSLASHbegin] = ACTIONS(6033), - [anon_sym_BSLASHtitle] = ACTIONS(6033), - [anon_sym_BSLASHauthor] = ACTIONS(6033), - [anon_sym_BSLASHusepackage] = ACTIONS(6033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), - [anon_sym_BSLASHinclude] = ACTIONS(6033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), - [anon_sym_BSLASHinput] = ACTIONS(6033), - [anon_sym_BSLASHsubfile] = ACTIONS(6033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), - [anon_sym_BSLASHbibliography] = ACTIONS(6033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), - [anon_sym_BSLASHincludesvg] = ACTIONS(6033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), - [anon_sym_BSLASHimport] = ACTIONS(6033), - [anon_sym_BSLASHsubimport] = ACTIONS(6033), - [anon_sym_BSLASHinputfrom] = ACTIONS(6033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), - [anon_sym_BSLASHincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHcaption] = ACTIONS(6033), - [anon_sym_BSLASHcite] = ACTIONS(6033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCite] = ACTIONS(6033), - [anon_sym_BSLASHnocite] = ACTIONS(6033), - [anon_sym_BSLASHcitet] = ACTIONS(6033), - [anon_sym_BSLASHcitep] = ACTIONS(6033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteauthor] = ACTIONS(6033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitetitle] = ACTIONS(6033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteyear] = ACTIONS(6033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitedate] = ACTIONS(6033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteurl] = ACTIONS(6033), - [anon_sym_BSLASHfullcite] = ACTIONS(6033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), - [anon_sym_BSLASHcitealt] = ACTIONS(6033), - [anon_sym_BSLASHcitealp] = ACTIONS(6033), - [anon_sym_BSLASHcitetext] = ACTIONS(6033), - [anon_sym_BSLASHparencite] = ACTIONS(6033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHParencite] = ACTIONS(6033), - [anon_sym_BSLASHfootcite] = ACTIONS(6033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), - [anon_sym_BSLASHtextcite] = ACTIONS(6033), - [anon_sym_BSLASHTextcite] = ACTIONS(6033), - [anon_sym_BSLASHsmartcite] = ACTIONS(6033), - [anon_sym_BSLASHSmartcite] = ACTIONS(6033), - [anon_sym_BSLASHsupercite] = ACTIONS(6033), - [anon_sym_BSLASHautocite] = ACTIONS(6033), - [anon_sym_BSLASHAutocite] = ACTIONS(6033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHvolcite] = ACTIONS(6033), - [anon_sym_BSLASHVolcite] = ACTIONS(6033), - [anon_sym_BSLASHpvolcite] = ACTIONS(6033), - [anon_sym_BSLASHPvolcite] = ACTIONS(6033), - [anon_sym_BSLASHfvolcite] = ACTIONS(6033), - [anon_sym_BSLASHftvolcite] = ACTIONS(6033), - [anon_sym_BSLASHsvolcite] = ACTIONS(6033), - [anon_sym_BSLASHSvolcite] = ACTIONS(6033), - [anon_sym_BSLASHtvolcite] = ACTIONS(6033), - [anon_sym_BSLASHTvolcite] = ACTIONS(6033), - [anon_sym_BSLASHavolcite] = ACTIONS(6033), - [anon_sym_BSLASHAvolcite] = ACTIONS(6033), - [anon_sym_BSLASHnotecite] = ACTIONS(6033), - [anon_sym_BSLASHNotecite] = ACTIONS(6033), - [anon_sym_BSLASHpnotecite] = ACTIONS(6033), - [anon_sym_BSLASHPnotecite] = ACTIONS(6033), - [anon_sym_BSLASHfnotecite] = ACTIONS(6033), - [anon_sym_BSLASHlabel] = ACTIONS(6033), - [anon_sym_BSLASHref] = ACTIONS(6033), - [anon_sym_BSLASHeqref] = ACTIONS(6033), - [anon_sym_BSLASHvref] = ACTIONS(6033), - [anon_sym_BSLASHVref] = ACTIONS(6033), - [anon_sym_BSLASHautoref] = ACTIONS(6033), - [anon_sym_BSLASHpageref] = ACTIONS(6033), - [anon_sym_BSLASHcref] = ACTIONS(6033), - [anon_sym_BSLASHCref] = ACTIONS(6033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnameCref] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHlabelcref] = ACTIONS(6033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCrefrange] = ACTIONS(6033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnewlabel] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6035), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHdef] = ACTIONS(6033), - [anon_sym_BSLASHlet] = ACTIONS(6033), - [anon_sym_BSLASHleft] = ACTIONS(6033), - [anon_sym_BSLASHbig] = ACTIONS(6033), - [anon_sym_BSLASHBig] = ACTIONS(6033), - [anon_sym_BSLASHbigg] = ACTIONS(6033), - [anon_sym_BSLASHBigg] = ACTIONS(6033), - [anon_sym_BSLASHbigl] = ACTIONS(6033), - [anon_sym_BSLASHBigl] = ACTIONS(6033), - [anon_sym_BSLASHbiggl] = ACTIONS(6033), - [anon_sym_BSLASHBiggl] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), - [anon_sym_BSLASHgls] = ACTIONS(6033), - [anon_sym_BSLASHGls] = ACTIONS(6033), - [anon_sym_BSLASHGLS] = ACTIONS(6033), - [anon_sym_BSLASHglspl] = ACTIONS(6033), - [anon_sym_BSLASHGlspl] = ACTIONS(6033), - [anon_sym_BSLASHGLSpl] = ACTIONS(6033), - [anon_sym_BSLASHglsdisp] = ACTIONS(6033), - [anon_sym_BSLASHglslink] = ACTIONS(6033), - [anon_sym_BSLASHglstext] = ACTIONS(6033), - [anon_sym_BSLASHGlstext] = ACTIONS(6033), - [anon_sym_BSLASHGLStext] = ACTIONS(6033), - [anon_sym_BSLASHglsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), - [anon_sym_BSLASHglsplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSplural] = ACTIONS(6033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHglsname] = ACTIONS(6033), - [anon_sym_BSLASHGlsname] = ACTIONS(6033), - [anon_sym_BSLASHGLSname] = ACTIONS(6033), - [anon_sym_BSLASHglssymbol] = ACTIONS(6033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), - [anon_sym_BSLASHglsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), - [anon_sym_BSLASHglsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), - [anon_sym_BSLASHglsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), - [anon_sym_BSLASHglsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), - [anon_sym_BSLASHglsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), - [anon_sym_BSLASHnewacronym] = ACTIONS(6033), - [anon_sym_BSLASHacrshort] = ACTIONS(6033), - [anon_sym_BSLASHAcrshort] = ACTIONS(6033), - [anon_sym_BSLASHACRshort] = ACTIONS(6033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), - [anon_sym_BSLASHacrlong] = ACTIONS(6033), - [anon_sym_BSLASHAcrlong] = ACTIONS(6033), - [anon_sym_BSLASHACRlong] = ACTIONS(6033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), - [anon_sym_BSLASHacrfull] = ACTIONS(6033), - [anon_sym_BSLASHAcrfull] = ACTIONS(6033), - [anon_sym_BSLASHACRfull] = ACTIONS(6033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), - [anon_sym_BSLASHacs] = ACTIONS(6033), - [anon_sym_BSLASHAcs] = ACTIONS(6033), - [anon_sym_BSLASHacsp] = ACTIONS(6033), - [anon_sym_BSLASHAcsp] = ACTIONS(6033), - [anon_sym_BSLASHacl] = ACTIONS(6033), - [anon_sym_BSLASHAcl] = ACTIONS(6033), - [anon_sym_BSLASHaclp] = ACTIONS(6033), - [anon_sym_BSLASHAclp] = ACTIONS(6033), - [anon_sym_BSLASHacf] = ACTIONS(6033), - [anon_sym_BSLASHAcf] = ACTIONS(6033), - [anon_sym_BSLASHacfp] = ACTIONS(6033), - [anon_sym_BSLASHAcfp] = ACTIONS(6033), - [anon_sym_BSLASHac] = ACTIONS(6033), - [anon_sym_BSLASHAc] = ACTIONS(6033), - [anon_sym_BSLASHacp] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), - [anon_sym_BSLASHcolor] = ACTIONS(6033), - [anon_sym_BSLASHcolorbox] = ACTIONS(6033), - [anon_sym_BSLASHtextcolor] = ACTIONS(6033), - [anon_sym_BSLASHpagecolor] = ACTIONS(6033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), - [anon_sym_BSLASHtext] = ACTIONS(6033), - [anon_sym_BSLASHintertext] = ACTIONS(6033), - [anon_sym_shortintertext] = ACTIONS(6033), - }, - [1329] = { - [sym_command_name] = ACTIONS(6197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6197), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_RBRACK] = ACTIONS(6199), - [anon_sym_COMMA] = ACTIONS(6199), - [anon_sym_EQ] = ACTIONS(6199), - [anon_sym_LPAREN] = ACTIONS(6199), - [anon_sym_RPAREN] = ACTIONS(6199), - [anon_sym_BSLASHpart] = ACTIONS(6197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddpart] = ACTIONS(6197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6199), - [anon_sym_BSLASHchapter] = ACTIONS(6197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddchap] = ACTIONS(6197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsection] = ACTIONS(6197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddsec] = ACTIONS(6197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubsection] = ACTIONS(6197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHparagraph] = ACTIONS(6197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6199), - [anon_sym_BSLASHitem] = ACTIONS(6197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6199), - [anon_sym_LBRACE] = ACTIONS(6199), - [sym_word] = ACTIONS(6197), - [sym_placeholder] = ACTIONS(6199), - [anon_sym_PLUS] = ACTIONS(6199), - [anon_sym_DASH] = ACTIONS(6199), - [anon_sym_STAR] = ACTIONS(6199), - [anon_sym_SLASH] = ACTIONS(6199), - [anon_sym_LT] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6197), - [anon_sym_BANG] = ACTIONS(6197), - [anon_sym_PIPE] = ACTIONS(6197), - [anon_sym_COLON] = ACTIONS(6197), - [anon_sym_SQUOTE] = ACTIONS(6197), - [anon_sym__] = ACTIONS(6199), - [anon_sym_CARET] = ACTIONS(6199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), - [anon_sym_DOLLAR] = ACTIONS(6197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6199), - [anon_sym_BSLASHbegin] = ACTIONS(6197), - [anon_sym_BSLASHtitle] = ACTIONS(6197), - [anon_sym_BSLASHauthor] = ACTIONS(6197), - [anon_sym_BSLASHusepackage] = ACTIONS(6197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), - [anon_sym_BSLASHinclude] = ACTIONS(6197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), - [anon_sym_BSLASHinput] = ACTIONS(6197), - [anon_sym_BSLASHsubfile] = ACTIONS(6197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), - [anon_sym_BSLASHbibliography] = ACTIONS(6197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), - [anon_sym_BSLASHincludesvg] = ACTIONS(6197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), - [anon_sym_BSLASHimport] = ACTIONS(6197), - [anon_sym_BSLASHsubimport] = ACTIONS(6197), - [anon_sym_BSLASHinputfrom] = ACTIONS(6197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), - [anon_sym_BSLASHincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHcaption] = ACTIONS(6197), - [anon_sym_BSLASHcite] = ACTIONS(6197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCite] = ACTIONS(6197), - [anon_sym_BSLASHnocite] = ACTIONS(6197), - [anon_sym_BSLASHcitet] = ACTIONS(6197), - [anon_sym_BSLASHcitep] = ACTIONS(6197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteauthor] = ACTIONS(6197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitetitle] = ACTIONS(6197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteyear] = ACTIONS(6197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitedate] = ACTIONS(6197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteurl] = ACTIONS(6197), - [anon_sym_BSLASHfullcite] = ACTIONS(6197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), - [anon_sym_BSLASHcitealt] = ACTIONS(6197), - [anon_sym_BSLASHcitealp] = ACTIONS(6197), - [anon_sym_BSLASHcitetext] = ACTIONS(6197), - [anon_sym_BSLASHparencite] = ACTIONS(6197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHParencite] = ACTIONS(6197), - [anon_sym_BSLASHfootcite] = ACTIONS(6197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), - [anon_sym_BSLASHtextcite] = ACTIONS(6197), - [anon_sym_BSLASHTextcite] = ACTIONS(6197), - [anon_sym_BSLASHsmartcite] = ACTIONS(6197), - [anon_sym_BSLASHSmartcite] = ACTIONS(6197), - [anon_sym_BSLASHsupercite] = ACTIONS(6197), - [anon_sym_BSLASHautocite] = ACTIONS(6197), - [anon_sym_BSLASHAutocite] = ACTIONS(6197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHvolcite] = ACTIONS(6197), - [anon_sym_BSLASHVolcite] = ACTIONS(6197), - [anon_sym_BSLASHpvolcite] = ACTIONS(6197), - [anon_sym_BSLASHPvolcite] = ACTIONS(6197), - [anon_sym_BSLASHfvolcite] = ACTIONS(6197), - [anon_sym_BSLASHftvolcite] = ACTIONS(6197), - [anon_sym_BSLASHsvolcite] = ACTIONS(6197), - [anon_sym_BSLASHSvolcite] = ACTIONS(6197), - [anon_sym_BSLASHtvolcite] = ACTIONS(6197), - [anon_sym_BSLASHTvolcite] = ACTIONS(6197), - [anon_sym_BSLASHavolcite] = ACTIONS(6197), - [anon_sym_BSLASHAvolcite] = ACTIONS(6197), - [anon_sym_BSLASHnotecite] = ACTIONS(6197), - [anon_sym_BSLASHNotecite] = ACTIONS(6197), - [anon_sym_BSLASHpnotecite] = ACTIONS(6197), - [anon_sym_BSLASHPnotecite] = ACTIONS(6197), - [anon_sym_BSLASHfnotecite] = ACTIONS(6197), - [anon_sym_BSLASHlabel] = ACTIONS(6197), - [anon_sym_BSLASHref] = ACTIONS(6197), - [anon_sym_BSLASHeqref] = ACTIONS(6197), - [anon_sym_BSLASHvref] = ACTIONS(6197), - [anon_sym_BSLASHVref] = ACTIONS(6197), - [anon_sym_BSLASHautoref] = ACTIONS(6197), - [anon_sym_BSLASHpageref] = ACTIONS(6197), - [anon_sym_BSLASHcref] = ACTIONS(6197), - [anon_sym_BSLASHCref] = ACTIONS(6197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnameCref] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHlabelcref] = ACTIONS(6197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCrefrange] = ACTIONS(6197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnewlabel] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHdef] = ACTIONS(6197), - [anon_sym_BSLASHlet] = ACTIONS(6197), - [anon_sym_BSLASHleft] = ACTIONS(6197), - [anon_sym_BSLASHbig] = ACTIONS(6197), - [anon_sym_BSLASHBig] = ACTIONS(6197), - [anon_sym_BSLASHbigg] = ACTIONS(6197), - [anon_sym_BSLASHBigg] = ACTIONS(6197), - [anon_sym_BSLASHbigl] = ACTIONS(6197), - [anon_sym_BSLASHBigl] = ACTIONS(6197), - [anon_sym_BSLASHbiggl] = ACTIONS(6197), - [anon_sym_BSLASHBiggl] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), - [anon_sym_BSLASHgls] = ACTIONS(6197), - [anon_sym_BSLASHGls] = ACTIONS(6197), - [anon_sym_BSLASHGLS] = ACTIONS(6197), - [anon_sym_BSLASHglspl] = ACTIONS(6197), - [anon_sym_BSLASHGlspl] = ACTIONS(6197), - [anon_sym_BSLASHGLSpl] = ACTIONS(6197), - [anon_sym_BSLASHglsdisp] = ACTIONS(6197), - [anon_sym_BSLASHglslink] = ACTIONS(6197), - [anon_sym_BSLASHglstext] = ACTIONS(6197), - [anon_sym_BSLASHGlstext] = ACTIONS(6197), - [anon_sym_BSLASHGLStext] = ACTIONS(6197), - [anon_sym_BSLASHglsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), - [anon_sym_BSLASHglsplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSplural] = ACTIONS(6197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHglsname] = ACTIONS(6197), - [anon_sym_BSLASHGlsname] = ACTIONS(6197), - [anon_sym_BSLASHGLSname] = ACTIONS(6197), - [anon_sym_BSLASHglssymbol] = ACTIONS(6197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), - [anon_sym_BSLASHglsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), - [anon_sym_BSLASHglsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), - [anon_sym_BSLASHglsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), - [anon_sym_BSLASHglsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), - [anon_sym_BSLASHglsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), - [anon_sym_BSLASHnewacronym] = ACTIONS(6197), - [anon_sym_BSLASHacrshort] = ACTIONS(6197), - [anon_sym_BSLASHAcrshort] = ACTIONS(6197), - [anon_sym_BSLASHACRshort] = ACTIONS(6197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), - [anon_sym_BSLASHacrlong] = ACTIONS(6197), - [anon_sym_BSLASHAcrlong] = ACTIONS(6197), - [anon_sym_BSLASHACRlong] = ACTIONS(6197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), - [anon_sym_BSLASHacrfull] = ACTIONS(6197), - [anon_sym_BSLASHAcrfull] = ACTIONS(6197), - [anon_sym_BSLASHACRfull] = ACTIONS(6197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), - [anon_sym_BSLASHacs] = ACTIONS(6197), - [anon_sym_BSLASHAcs] = ACTIONS(6197), - [anon_sym_BSLASHacsp] = ACTIONS(6197), - [anon_sym_BSLASHAcsp] = ACTIONS(6197), - [anon_sym_BSLASHacl] = ACTIONS(6197), - [anon_sym_BSLASHAcl] = ACTIONS(6197), - [anon_sym_BSLASHaclp] = ACTIONS(6197), - [anon_sym_BSLASHAclp] = ACTIONS(6197), - [anon_sym_BSLASHacf] = ACTIONS(6197), - [anon_sym_BSLASHAcf] = ACTIONS(6197), - [anon_sym_BSLASHacfp] = ACTIONS(6197), - [anon_sym_BSLASHAcfp] = ACTIONS(6197), - [anon_sym_BSLASHac] = ACTIONS(6197), - [anon_sym_BSLASHAc] = ACTIONS(6197), - [anon_sym_BSLASHacp] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), - [anon_sym_BSLASHcolor] = ACTIONS(6197), - [anon_sym_BSLASHcolorbox] = ACTIONS(6197), - [anon_sym_BSLASHtextcolor] = ACTIONS(6197), - [anon_sym_BSLASHpagecolor] = ACTIONS(6197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), - [anon_sym_BSLASHtext] = ACTIONS(6197), - [anon_sym_BSLASHintertext] = ACTIONS(6197), - [anon_sym_shortintertext] = ACTIONS(6197), - }, - [1330] = { - [sym_command_name] = ACTIONS(6193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6193), - [anon_sym_LBRACK] = ACTIONS(6195), - [anon_sym_RBRACK] = ACTIONS(6195), - [anon_sym_COMMA] = ACTIONS(6195), - [anon_sym_EQ] = ACTIONS(6195), - [anon_sym_LPAREN] = ACTIONS(6195), - [anon_sym_RPAREN] = ACTIONS(6195), - [anon_sym_BSLASHpart] = ACTIONS(6193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddpart] = ACTIONS(6193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6195), - [anon_sym_BSLASHchapter] = ACTIONS(6193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddchap] = ACTIONS(6193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsection] = ACTIONS(6193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddsec] = ACTIONS(6193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubsection] = ACTIONS(6193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHparagraph] = ACTIONS(6193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6195), - [anon_sym_BSLASHitem] = ACTIONS(6193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6195), - [anon_sym_LBRACE] = ACTIONS(6195), - [sym_word] = ACTIONS(6193), - [sym_placeholder] = ACTIONS(6195), - [anon_sym_PLUS] = ACTIONS(6195), - [anon_sym_DASH] = ACTIONS(6195), - [anon_sym_STAR] = ACTIONS(6195), - [anon_sym_SLASH] = ACTIONS(6195), - [anon_sym_LT] = ACTIONS(6193), - [anon_sym_GT] = ACTIONS(6193), - [anon_sym_BANG] = ACTIONS(6193), - [anon_sym_PIPE] = ACTIONS(6193), - [anon_sym_COLON] = ACTIONS(6193), - [anon_sym_SQUOTE] = ACTIONS(6193), - [anon_sym__] = ACTIONS(6195), - [anon_sym_CARET] = ACTIONS(6195), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), - [anon_sym_DOLLAR] = ACTIONS(6193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6195), - [anon_sym_BSLASHbegin] = ACTIONS(6193), - [anon_sym_BSLASHtitle] = ACTIONS(6193), - [anon_sym_BSLASHauthor] = ACTIONS(6193), - [anon_sym_BSLASHusepackage] = ACTIONS(6193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), - [anon_sym_BSLASHinclude] = ACTIONS(6193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), - [anon_sym_BSLASHinput] = ACTIONS(6193), - [anon_sym_BSLASHsubfile] = ACTIONS(6193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), - [anon_sym_BSLASHbibliography] = ACTIONS(6193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), - [anon_sym_BSLASHincludesvg] = ACTIONS(6193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), - [anon_sym_BSLASHimport] = ACTIONS(6193), - [anon_sym_BSLASHsubimport] = ACTIONS(6193), - [anon_sym_BSLASHinputfrom] = ACTIONS(6193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), - [anon_sym_BSLASHincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHcaption] = ACTIONS(6193), - [anon_sym_BSLASHcite] = ACTIONS(6193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCite] = ACTIONS(6193), - [anon_sym_BSLASHnocite] = ACTIONS(6193), - [anon_sym_BSLASHcitet] = ACTIONS(6193), - [anon_sym_BSLASHcitep] = ACTIONS(6193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteauthor] = ACTIONS(6193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitetitle] = ACTIONS(6193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteyear] = ACTIONS(6193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitedate] = ACTIONS(6193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteurl] = ACTIONS(6193), - [anon_sym_BSLASHfullcite] = ACTIONS(6193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), - [anon_sym_BSLASHcitealt] = ACTIONS(6193), - [anon_sym_BSLASHcitealp] = ACTIONS(6193), - [anon_sym_BSLASHcitetext] = ACTIONS(6193), - [anon_sym_BSLASHparencite] = ACTIONS(6193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHParencite] = ACTIONS(6193), - [anon_sym_BSLASHfootcite] = ACTIONS(6193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), - [anon_sym_BSLASHtextcite] = ACTIONS(6193), - [anon_sym_BSLASHTextcite] = ACTIONS(6193), - [anon_sym_BSLASHsmartcite] = ACTIONS(6193), - [anon_sym_BSLASHSmartcite] = ACTIONS(6193), - [anon_sym_BSLASHsupercite] = ACTIONS(6193), - [anon_sym_BSLASHautocite] = ACTIONS(6193), - [anon_sym_BSLASHAutocite] = ACTIONS(6193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHvolcite] = ACTIONS(6193), - [anon_sym_BSLASHVolcite] = ACTIONS(6193), - [anon_sym_BSLASHpvolcite] = ACTIONS(6193), - [anon_sym_BSLASHPvolcite] = ACTIONS(6193), - [anon_sym_BSLASHfvolcite] = ACTIONS(6193), - [anon_sym_BSLASHftvolcite] = ACTIONS(6193), - [anon_sym_BSLASHsvolcite] = ACTIONS(6193), - [anon_sym_BSLASHSvolcite] = ACTIONS(6193), - [anon_sym_BSLASHtvolcite] = ACTIONS(6193), - [anon_sym_BSLASHTvolcite] = ACTIONS(6193), - [anon_sym_BSLASHavolcite] = ACTIONS(6193), - [anon_sym_BSLASHAvolcite] = ACTIONS(6193), - [anon_sym_BSLASHnotecite] = ACTIONS(6193), - [anon_sym_BSLASHNotecite] = ACTIONS(6193), - [anon_sym_BSLASHpnotecite] = ACTIONS(6193), - [anon_sym_BSLASHPnotecite] = ACTIONS(6193), - [anon_sym_BSLASHfnotecite] = ACTIONS(6193), - [anon_sym_BSLASHlabel] = ACTIONS(6193), - [anon_sym_BSLASHref] = ACTIONS(6193), - [anon_sym_BSLASHeqref] = ACTIONS(6193), - [anon_sym_BSLASHvref] = ACTIONS(6193), - [anon_sym_BSLASHVref] = ACTIONS(6193), - [anon_sym_BSLASHautoref] = ACTIONS(6193), - [anon_sym_BSLASHpageref] = ACTIONS(6193), - [anon_sym_BSLASHcref] = ACTIONS(6193), - [anon_sym_BSLASHCref] = ACTIONS(6193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnameCref] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHlabelcref] = ACTIONS(6193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCrefrange] = ACTIONS(6193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnewlabel] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHdef] = ACTIONS(6193), - [anon_sym_BSLASHlet] = ACTIONS(6193), - [anon_sym_BSLASHleft] = ACTIONS(6193), - [anon_sym_BSLASHbig] = ACTIONS(6193), - [anon_sym_BSLASHBig] = ACTIONS(6193), - [anon_sym_BSLASHbigg] = ACTIONS(6193), - [anon_sym_BSLASHBigg] = ACTIONS(6193), - [anon_sym_BSLASHbigl] = ACTIONS(6193), - [anon_sym_BSLASHBigl] = ACTIONS(6193), - [anon_sym_BSLASHbiggl] = ACTIONS(6193), - [anon_sym_BSLASHBiggl] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), - [anon_sym_BSLASHgls] = ACTIONS(6193), - [anon_sym_BSLASHGls] = ACTIONS(6193), - [anon_sym_BSLASHGLS] = ACTIONS(6193), - [anon_sym_BSLASHglspl] = ACTIONS(6193), - [anon_sym_BSLASHGlspl] = ACTIONS(6193), - [anon_sym_BSLASHGLSpl] = ACTIONS(6193), - [anon_sym_BSLASHglsdisp] = ACTIONS(6193), - [anon_sym_BSLASHglslink] = ACTIONS(6193), - [anon_sym_BSLASHglstext] = ACTIONS(6193), - [anon_sym_BSLASHGlstext] = ACTIONS(6193), - [anon_sym_BSLASHGLStext] = ACTIONS(6193), - [anon_sym_BSLASHglsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), - [anon_sym_BSLASHglsplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSplural] = ACTIONS(6193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHglsname] = ACTIONS(6193), - [anon_sym_BSLASHGlsname] = ACTIONS(6193), - [anon_sym_BSLASHGLSname] = ACTIONS(6193), - [anon_sym_BSLASHglssymbol] = ACTIONS(6193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), - [anon_sym_BSLASHglsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), - [anon_sym_BSLASHglsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), - [anon_sym_BSLASHglsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), - [anon_sym_BSLASHglsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), - [anon_sym_BSLASHglsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), - [anon_sym_BSLASHnewacronym] = ACTIONS(6193), - [anon_sym_BSLASHacrshort] = ACTIONS(6193), - [anon_sym_BSLASHAcrshort] = ACTIONS(6193), - [anon_sym_BSLASHACRshort] = ACTIONS(6193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), - [anon_sym_BSLASHacrlong] = ACTIONS(6193), - [anon_sym_BSLASHAcrlong] = ACTIONS(6193), - [anon_sym_BSLASHACRlong] = ACTIONS(6193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), - [anon_sym_BSLASHacrfull] = ACTIONS(6193), - [anon_sym_BSLASHAcrfull] = ACTIONS(6193), - [anon_sym_BSLASHACRfull] = ACTIONS(6193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), - [anon_sym_BSLASHacs] = ACTIONS(6193), - [anon_sym_BSLASHAcs] = ACTIONS(6193), - [anon_sym_BSLASHacsp] = ACTIONS(6193), - [anon_sym_BSLASHAcsp] = ACTIONS(6193), - [anon_sym_BSLASHacl] = ACTIONS(6193), - [anon_sym_BSLASHAcl] = ACTIONS(6193), - [anon_sym_BSLASHaclp] = ACTIONS(6193), - [anon_sym_BSLASHAclp] = ACTIONS(6193), - [anon_sym_BSLASHacf] = ACTIONS(6193), - [anon_sym_BSLASHAcf] = ACTIONS(6193), - [anon_sym_BSLASHacfp] = ACTIONS(6193), - [anon_sym_BSLASHAcfp] = ACTIONS(6193), - [anon_sym_BSLASHac] = ACTIONS(6193), - [anon_sym_BSLASHAc] = ACTIONS(6193), - [anon_sym_BSLASHacp] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), - [anon_sym_BSLASHcolor] = ACTIONS(6193), - [anon_sym_BSLASHcolorbox] = ACTIONS(6193), - [anon_sym_BSLASHtextcolor] = ACTIONS(6193), - [anon_sym_BSLASHpagecolor] = ACTIONS(6193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), - [anon_sym_BSLASHtext] = ACTIONS(6193), - [anon_sym_BSLASHintertext] = ACTIONS(6193), - [anon_sym_shortintertext] = ACTIONS(6193), - }, - [1331] = { - [sym_command_name] = ACTIONS(6413), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6413), - [anon_sym_LBRACK] = ACTIONS(6415), - [anon_sym_RBRACK] = ACTIONS(6415), - [anon_sym_COMMA] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(6415), - [anon_sym_LPAREN] = ACTIONS(6415), - [anon_sym_RPAREN] = ACTIONS(6415), - [anon_sym_BSLASHpart] = ACTIONS(6413), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddpart] = ACTIONS(6413), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6415), - [anon_sym_BSLASHchapter] = ACTIONS(6413), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddchap] = ACTIONS(6413), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsection] = ACTIONS(6413), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHaddsec] = ACTIONS(6413), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubsection] = ACTIONS(6413), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6413), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6415), - [anon_sym_BSLASHparagraph] = ACTIONS(6413), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6415), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6413), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6415), - [anon_sym_BSLASHitem] = ACTIONS(6413), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6415), - [anon_sym_LBRACE] = ACTIONS(6415), - [sym_word] = ACTIONS(6413), - [sym_placeholder] = ACTIONS(6415), - [anon_sym_PLUS] = ACTIONS(6415), - [anon_sym_DASH] = ACTIONS(6415), - [anon_sym_STAR] = ACTIONS(6415), - [anon_sym_SLASH] = ACTIONS(6415), - [anon_sym_LT] = ACTIONS(6413), - [anon_sym_GT] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(6413), - [anon_sym_PIPE] = ACTIONS(6413), - [anon_sym_COLON] = ACTIONS(6413), - [anon_sym_SQUOTE] = ACTIONS(6413), - [anon_sym__] = ACTIONS(6415), - [anon_sym_CARET] = ACTIONS(6415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6415), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6415), - [anon_sym_DOLLAR] = ACTIONS(6413), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6415), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6415), - [anon_sym_BSLASHbegin] = ACTIONS(6413), - [anon_sym_BSLASHtitle] = ACTIONS(6413), - [anon_sym_BSLASHauthor] = ACTIONS(6413), - [anon_sym_BSLASHusepackage] = ACTIONS(6413), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6413), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6413), - [anon_sym_BSLASHinclude] = ACTIONS(6413), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6413), - [anon_sym_BSLASHinput] = ACTIONS(6413), - [anon_sym_BSLASHsubfile] = ACTIONS(6413), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6413), - [anon_sym_BSLASHbibliography] = ACTIONS(6413), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6413), - [anon_sym_BSLASHincludesvg] = ACTIONS(6413), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6413), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6413), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6413), - [anon_sym_BSLASHimport] = ACTIONS(6413), - [anon_sym_BSLASHsubimport] = ACTIONS(6413), - [anon_sym_BSLASHinputfrom] = ACTIONS(6413), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6413), - [anon_sym_BSLASHincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHcaption] = ACTIONS(6413), - [anon_sym_BSLASHcite] = ACTIONS(6413), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCite] = ACTIONS(6413), - [anon_sym_BSLASHnocite] = ACTIONS(6413), - [anon_sym_BSLASHcitet] = ACTIONS(6413), - [anon_sym_BSLASHcitep] = ACTIONS(6413), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteauthor] = ACTIONS(6413), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6413), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitetitle] = ACTIONS(6413), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteyear] = ACTIONS(6413), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitedate] = ACTIONS(6413), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteurl] = ACTIONS(6413), - [anon_sym_BSLASHfullcite] = ACTIONS(6413), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6413), - [anon_sym_BSLASHcitealt] = ACTIONS(6413), - [anon_sym_BSLASHcitealp] = ACTIONS(6413), - [anon_sym_BSLASHcitetext] = ACTIONS(6413), - [anon_sym_BSLASHparencite] = ACTIONS(6413), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHParencite] = ACTIONS(6413), - [anon_sym_BSLASHfootcite] = ACTIONS(6413), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6413), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6413), - [anon_sym_BSLASHtextcite] = ACTIONS(6413), - [anon_sym_BSLASHTextcite] = ACTIONS(6413), - [anon_sym_BSLASHsmartcite] = ACTIONS(6413), - [anon_sym_BSLASHSmartcite] = ACTIONS(6413), - [anon_sym_BSLASHsupercite] = ACTIONS(6413), - [anon_sym_BSLASHautocite] = ACTIONS(6413), - [anon_sym_BSLASHAutocite] = ACTIONS(6413), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHvolcite] = ACTIONS(6413), - [anon_sym_BSLASHVolcite] = ACTIONS(6413), - [anon_sym_BSLASHpvolcite] = ACTIONS(6413), - [anon_sym_BSLASHPvolcite] = ACTIONS(6413), - [anon_sym_BSLASHfvolcite] = ACTIONS(6413), - [anon_sym_BSLASHftvolcite] = ACTIONS(6413), - [anon_sym_BSLASHsvolcite] = ACTIONS(6413), - [anon_sym_BSLASHSvolcite] = ACTIONS(6413), - [anon_sym_BSLASHtvolcite] = ACTIONS(6413), - [anon_sym_BSLASHTvolcite] = ACTIONS(6413), - [anon_sym_BSLASHavolcite] = ACTIONS(6413), - [anon_sym_BSLASHAvolcite] = ACTIONS(6413), - [anon_sym_BSLASHnotecite] = ACTIONS(6413), - [anon_sym_BSLASHNotecite] = ACTIONS(6413), - [anon_sym_BSLASHpnotecite] = ACTIONS(6413), - [anon_sym_BSLASHPnotecite] = ACTIONS(6413), - [anon_sym_BSLASHfnotecite] = ACTIONS(6413), - [anon_sym_BSLASHlabel] = ACTIONS(6413), - [anon_sym_BSLASHref] = ACTIONS(6413), - [anon_sym_BSLASHeqref] = ACTIONS(6413), - [anon_sym_BSLASHvref] = ACTIONS(6413), - [anon_sym_BSLASHVref] = ACTIONS(6413), - [anon_sym_BSLASHautoref] = ACTIONS(6413), - [anon_sym_BSLASHpageref] = ACTIONS(6413), - [anon_sym_BSLASHcref] = ACTIONS(6413), - [anon_sym_BSLASHCref] = ACTIONS(6413), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnameCref] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHlabelcref] = ACTIONS(6413), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCrefrange] = ACTIONS(6413), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnewlabel] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6413), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6413), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6415), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHdef] = ACTIONS(6413), - [anon_sym_BSLASHlet] = ACTIONS(6413), - [anon_sym_BSLASHleft] = ACTIONS(6413), - [anon_sym_BSLASHbig] = ACTIONS(6413), - [anon_sym_BSLASHBig] = ACTIONS(6413), - [anon_sym_BSLASHbigg] = ACTIONS(6413), - [anon_sym_BSLASHBigg] = ACTIONS(6413), - [anon_sym_BSLASHbigl] = ACTIONS(6413), - [anon_sym_BSLASHBigl] = ACTIONS(6413), - [anon_sym_BSLASHbiggl] = ACTIONS(6413), - [anon_sym_BSLASHBiggl] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6413), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6413), - [anon_sym_BSLASHgls] = ACTIONS(6413), - [anon_sym_BSLASHGls] = ACTIONS(6413), - [anon_sym_BSLASHGLS] = ACTIONS(6413), - [anon_sym_BSLASHglspl] = ACTIONS(6413), - [anon_sym_BSLASHGlspl] = ACTIONS(6413), - [anon_sym_BSLASHGLSpl] = ACTIONS(6413), - [anon_sym_BSLASHglsdisp] = ACTIONS(6413), - [anon_sym_BSLASHglslink] = ACTIONS(6413), - [anon_sym_BSLASHglstext] = ACTIONS(6413), - [anon_sym_BSLASHGlstext] = ACTIONS(6413), - [anon_sym_BSLASHGLStext] = ACTIONS(6413), - [anon_sym_BSLASHglsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6413), - [anon_sym_BSLASHglsplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSplural] = ACTIONS(6413), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHglsname] = ACTIONS(6413), - [anon_sym_BSLASHGlsname] = ACTIONS(6413), - [anon_sym_BSLASHGLSname] = ACTIONS(6413), - [anon_sym_BSLASHglssymbol] = ACTIONS(6413), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6413), - [anon_sym_BSLASHglsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6413), - [anon_sym_BSLASHglsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6413), - [anon_sym_BSLASHglsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6413), - [anon_sym_BSLASHglsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6413), - [anon_sym_BSLASHglsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6413), - [anon_sym_BSLASHnewacronym] = ACTIONS(6413), - [anon_sym_BSLASHacrshort] = ACTIONS(6413), - [anon_sym_BSLASHAcrshort] = ACTIONS(6413), - [anon_sym_BSLASHACRshort] = ACTIONS(6413), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6413), - [anon_sym_BSLASHacrlong] = ACTIONS(6413), - [anon_sym_BSLASHAcrlong] = ACTIONS(6413), - [anon_sym_BSLASHACRlong] = ACTIONS(6413), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6413), - [anon_sym_BSLASHacrfull] = ACTIONS(6413), - [anon_sym_BSLASHAcrfull] = ACTIONS(6413), - [anon_sym_BSLASHACRfull] = ACTIONS(6413), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6413), - [anon_sym_BSLASHacs] = ACTIONS(6413), - [anon_sym_BSLASHAcs] = ACTIONS(6413), - [anon_sym_BSLASHacsp] = ACTIONS(6413), - [anon_sym_BSLASHAcsp] = ACTIONS(6413), - [anon_sym_BSLASHacl] = ACTIONS(6413), - [anon_sym_BSLASHAcl] = ACTIONS(6413), - [anon_sym_BSLASHaclp] = ACTIONS(6413), - [anon_sym_BSLASHAclp] = ACTIONS(6413), - [anon_sym_BSLASHacf] = ACTIONS(6413), - [anon_sym_BSLASHAcf] = ACTIONS(6413), - [anon_sym_BSLASHacfp] = ACTIONS(6413), - [anon_sym_BSLASHAcfp] = ACTIONS(6413), - [anon_sym_BSLASHac] = ACTIONS(6413), - [anon_sym_BSLASHAc] = ACTIONS(6413), - [anon_sym_BSLASHacp] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6413), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6413), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6413), - [anon_sym_BSLASHcolor] = ACTIONS(6413), - [anon_sym_BSLASHcolorbox] = ACTIONS(6413), - [anon_sym_BSLASHtextcolor] = ACTIONS(6413), - [anon_sym_BSLASHpagecolor] = ACTIONS(6413), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6413), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6413), - [anon_sym_BSLASHtext] = ACTIONS(6413), - [anon_sym_BSLASHintertext] = ACTIONS(6413), - [anon_sym_shortintertext] = ACTIONS(6413), - }, - [1332] = { - [sym_command_name] = ACTIONS(6409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6409), - [anon_sym_LBRACK] = ACTIONS(6411), - [anon_sym_RBRACK] = ACTIONS(6411), - [anon_sym_COMMA] = ACTIONS(6411), - [anon_sym_EQ] = ACTIONS(6411), - [anon_sym_LPAREN] = ACTIONS(6411), - [anon_sym_RPAREN] = ACTIONS(6411), - [anon_sym_BSLASHpart] = ACTIONS(6409), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddpart] = ACTIONS(6409), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6411), - [anon_sym_BSLASHchapter] = ACTIONS(6409), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddchap] = ACTIONS(6409), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsection] = ACTIONS(6409), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHaddsec] = ACTIONS(6409), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubsection] = ACTIONS(6409), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6409), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6411), - [anon_sym_BSLASHparagraph] = ACTIONS(6409), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6411), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6409), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6411), - [anon_sym_BSLASHitem] = ACTIONS(6409), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6411), - [anon_sym_LBRACE] = ACTIONS(6411), - [sym_word] = ACTIONS(6409), - [sym_placeholder] = ACTIONS(6411), - [anon_sym_PLUS] = ACTIONS(6411), - [anon_sym_DASH] = ACTIONS(6411), - [anon_sym_STAR] = ACTIONS(6411), - [anon_sym_SLASH] = ACTIONS(6411), - [anon_sym_LT] = ACTIONS(6409), - [anon_sym_GT] = ACTIONS(6409), - [anon_sym_BANG] = ACTIONS(6409), - [anon_sym_PIPE] = ACTIONS(6409), - [anon_sym_COLON] = ACTIONS(6409), - [anon_sym_SQUOTE] = ACTIONS(6409), - [anon_sym__] = ACTIONS(6411), - [anon_sym_CARET] = ACTIONS(6411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6411), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6411), - [anon_sym_DOLLAR] = ACTIONS(6409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6411), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6411), - [anon_sym_BSLASHbegin] = ACTIONS(6409), - [anon_sym_BSLASHtitle] = ACTIONS(6409), - [anon_sym_BSLASHauthor] = ACTIONS(6409), - [anon_sym_BSLASHusepackage] = ACTIONS(6409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6409), - [anon_sym_BSLASHinclude] = ACTIONS(6409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6409), - [anon_sym_BSLASHinput] = ACTIONS(6409), - [anon_sym_BSLASHsubfile] = ACTIONS(6409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6409), - [anon_sym_BSLASHbibliography] = ACTIONS(6409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6409), - [anon_sym_BSLASHincludesvg] = ACTIONS(6409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6409), - [anon_sym_BSLASHimport] = ACTIONS(6409), - [anon_sym_BSLASHsubimport] = ACTIONS(6409), - [anon_sym_BSLASHinputfrom] = ACTIONS(6409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6409), - [anon_sym_BSLASHincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHcaption] = ACTIONS(6409), - [anon_sym_BSLASHcite] = ACTIONS(6409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCite] = ACTIONS(6409), - [anon_sym_BSLASHnocite] = ACTIONS(6409), - [anon_sym_BSLASHcitet] = ACTIONS(6409), - [anon_sym_BSLASHcitep] = ACTIONS(6409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteauthor] = ACTIONS(6409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitetitle] = ACTIONS(6409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteyear] = ACTIONS(6409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitedate] = ACTIONS(6409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteurl] = ACTIONS(6409), - [anon_sym_BSLASHfullcite] = ACTIONS(6409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6409), - [anon_sym_BSLASHcitealt] = ACTIONS(6409), - [anon_sym_BSLASHcitealp] = ACTIONS(6409), - [anon_sym_BSLASHcitetext] = ACTIONS(6409), - [anon_sym_BSLASHparencite] = ACTIONS(6409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHParencite] = ACTIONS(6409), - [anon_sym_BSLASHfootcite] = ACTIONS(6409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6409), - [anon_sym_BSLASHtextcite] = ACTIONS(6409), - [anon_sym_BSLASHTextcite] = ACTIONS(6409), - [anon_sym_BSLASHsmartcite] = ACTIONS(6409), - [anon_sym_BSLASHSmartcite] = ACTIONS(6409), - [anon_sym_BSLASHsupercite] = ACTIONS(6409), - [anon_sym_BSLASHautocite] = ACTIONS(6409), - [anon_sym_BSLASHAutocite] = ACTIONS(6409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHvolcite] = ACTIONS(6409), - [anon_sym_BSLASHVolcite] = ACTIONS(6409), - [anon_sym_BSLASHpvolcite] = ACTIONS(6409), - [anon_sym_BSLASHPvolcite] = ACTIONS(6409), - [anon_sym_BSLASHfvolcite] = ACTIONS(6409), - [anon_sym_BSLASHftvolcite] = ACTIONS(6409), - [anon_sym_BSLASHsvolcite] = ACTIONS(6409), - [anon_sym_BSLASHSvolcite] = ACTIONS(6409), - [anon_sym_BSLASHtvolcite] = ACTIONS(6409), - [anon_sym_BSLASHTvolcite] = ACTIONS(6409), - [anon_sym_BSLASHavolcite] = ACTIONS(6409), - [anon_sym_BSLASHAvolcite] = ACTIONS(6409), - [anon_sym_BSLASHnotecite] = ACTIONS(6409), - [anon_sym_BSLASHNotecite] = ACTIONS(6409), - [anon_sym_BSLASHpnotecite] = ACTIONS(6409), - [anon_sym_BSLASHPnotecite] = ACTIONS(6409), - [anon_sym_BSLASHfnotecite] = ACTIONS(6409), - [anon_sym_BSLASHlabel] = ACTIONS(6409), - [anon_sym_BSLASHref] = ACTIONS(6409), - [anon_sym_BSLASHeqref] = ACTIONS(6409), - [anon_sym_BSLASHvref] = ACTIONS(6409), - [anon_sym_BSLASHVref] = ACTIONS(6409), - [anon_sym_BSLASHautoref] = ACTIONS(6409), - [anon_sym_BSLASHpageref] = ACTIONS(6409), - [anon_sym_BSLASHcref] = ACTIONS(6409), - [anon_sym_BSLASHCref] = ACTIONS(6409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnameCref] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHlabelcref] = ACTIONS(6409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCrefrange] = ACTIONS(6409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnewlabel] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6411), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHdef] = ACTIONS(6409), - [anon_sym_BSLASHlet] = ACTIONS(6409), - [anon_sym_BSLASHleft] = ACTIONS(6409), - [anon_sym_BSLASHbig] = ACTIONS(6409), - [anon_sym_BSLASHBig] = ACTIONS(6409), - [anon_sym_BSLASHbigg] = ACTIONS(6409), - [anon_sym_BSLASHBigg] = ACTIONS(6409), - [anon_sym_BSLASHbigl] = ACTIONS(6409), - [anon_sym_BSLASHBigl] = ACTIONS(6409), - [anon_sym_BSLASHbiggl] = ACTIONS(6409), - [anon_sym_BSLASHBiggl] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6409), - [anon_sym_BSLASHgls] = ACTIONS(6409), - [anon_sym_BSLASHGls] = ACTIONS(6409), - [anon_sym_BSLASHGLS] = ACTIONS(6409), - [anon_sym_BSLASHglspl] = ACTIONS(6409), - [anon_sym_BSLASHGlspl] = ACTIONS(6409), - [anon_sym_BSLASHGLSpl] = ACTIONS(6409), - [anon_sym_BSLASHglsdisp] = ACTIONS(6409), - [anon_sym_BSLASHglslink] = ACTIONS(6409), - [anon_sym_BSLASHglstext] = ACTIONS(6409), - [anon_sym_BSLASHGlstext] = ACTIONS(6409), - [anon_sym_BSLASHGLStext] = ACTIONS(6409), - [anon_sym_BSLASHglsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6409), - [anon_sym_BSLASHglsplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSplural] = ACTIONS(6409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHglsname] = ACTIONS(6409), - [anon_sym_BSLASHGlsname] = ACTIONS(6409), - [anon_sym_BSLASHGLSname] = ACTIONS(6409), - [anon_sym_BSLASHglssymbol] = ACTIONS(6409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6409), - [anon_sym_BSLASHglsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6409), - [anon_sym_BSLASHglsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6409), - [anon_sym_BSLASHglsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6409), - [anon_sym_BSLASHglsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6409), - [anon_sym_BSLASHglsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6409), - [anon_sym_BSLASHnewacronym] = ACTIONS(6409), - [anon_sym_BSLASHacrshort] = ACTIONS(6409), - [anon_sym_BSLASHAcrshort] = ACTIONS(6409), - [anon_sym_BSLASHACRshort] = ACTIONS(6409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6409), - [anon_sym_BSLASHacrlong] = ACTIONS(6409), - [anon_sym_BSLASHAcrlong] = ACTIONS(6409), - [anon_sym_BSLASHACRlong] = ACTIONS(6409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6409), - [anon_sym_BSLASHacrfull] = ACTIONS(6409), - [anon_sym_BSLASHAcrfull] = ACTIONS(6409), - [anon_sym_BSLASHACRfull] = ACTIONS(6409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6409), - [anon_sym_BSLASHacs] = ACTIONS(6409), - [anon_sym_BSLASHAcs] = ACTIONS(6409), - [anon_sym_BSLASHacsp] = ACTIONS(6409), - [anon_sym_BSLASHAcsp] = ACTIONS(6409), - [anon_sym_BSLASHacl] = ACTIONS(6409), - [anon_sym_BSLASHAcl] = ACTIONS(6409), - [anon_sym_BSLASHaclp] = ACTIONS(6409), - [anon_sym_BSLASHAclp] = ACTIONS(6409), - [anon_sym_BSLASHacf] = ACTIONS(6409), - [anon_sym_BSLASHAcf] = ACTIONS(6409), - [anon_sym_BSLASHacfp] = ACTIONS(6409), - [anon_sym_BSLASHAcfp] = ACTIONS(6409), - [anon_sym_BSLASHac] = ACTIONS(6409), - [anon_sym_BSLASHAc] = ACTIONS(6409), - [anon_sym_BSLASHacp] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6409), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6409), - [anon_sym_BSLASHcolor] = ACTIONS(6409), - [anon_sym_BSLASHcolorbox] = ACTIONS(6409), - [anon_sym_BSLASHtextcolor] = ACTIONS(6409), - [anon_sym_BSLASHpagecolor] = ACTIONS(6409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6409), - [anon_sym_BSLASHtext] = ACTIONS(6409), - [anon_sym_BSLASHintertext] = ACTIONS(6409), - [anon_sym_shortintertext] = ACTIONS(6409), - }, - [1333] = { - [sym_command_name] = ACTIONS(6405), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6405), - [anon_sym_LBRACK] = ACTIONS(6407), - [anon_sym_RBRACK] = ACTIONS(6407), - [anon_sym_COMMA] = ACTIONS(6407), - [anon_sym_EQ] = ACTIONS(6407), - [anon_sym_LPAREN] = ACTIONS(6407), - [anon_sym_RPAREN] = ACTIONS(6407), - [anon_sym_BSLASHpart] = ACTIONS(6405), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddpart] = ACTIONS(6405), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6407), - [anon_sym_BSLASHchapter] = ACTIONS(6405), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddchap] = ACTIONS(6405), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsection] = ACTIONS(6405), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHaddsec] = ACTIONS(6405), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubsection] = ACTIONS(6405), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6405), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6407), - [anon_sym_BSLASHparagraph] = ACTIONS(6405), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6407), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6405), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6407), - [anon_sym_BSLASHitem] = ACTIONS(6405), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6407), - [anon_sym_LBRACE] = ACTIONS(6407), - [sym_word] = ACTIONS(6405), - [sym_placeholder] = ACTIONS(6407), - [anon_sym_PLUS] = ACTIONS(6407), - [anon_sym_DASH] = ACTIONS(6407), - [anon_sym_STAR] = ACTIONS(6407), - [anon_sym_SLASH] = ACTIONS(6407), - [anon_sym_LT] = ACTIONS(6405), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(6405), - [anon_sym_PIPE] = ACTIONS(6405), - [anon_sym_COLON] = ACTIONS(6405), - [anon_sym_SQUOTE] = ACTIONS(6405), - [anon_sym__] = ACTIONS(6407), - [anon_sym_CARET] = ACTIONS(6407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6407), - [anon_sym_DOLLAR] = ACTIONS(6405), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6407), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6407), - [anon_sym_BSLASHbegin] = ACTIONS(6405), - [anon_sym_BSLASHtitle] = ACTIONS(6405), - [anon_sym_BSLASHauthor] = ACTIONS(6405), - [anon_sym_BSLASHusepackage] = ACTIONS(6405), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6405), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6405), - [anon_sym_BSLASHinclude] = ACTIONS(6405), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6405), - [anon_sym_BSLASHinput] = ACTIONS(6405), - [anon_sym_BSLASHsubfile] = ACTIONS(6405), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6405), - [anon_sym_BSLASHbibliography] = ACTIONS(6405), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6405), - [anon_sym_BSLASHincludesvg] = ACTIONS(6405), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6405), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6405), - [anon_sym_BSLASHimport] = ACTIONS(6405), - [anon_sym_BSLASHsubimport] = ACTIONS(6405), - [anon_sym_BSLASHinputfrom] = ACTIONS(6405), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6405), - [anon_sym_BSLASHincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHcaption] = ACTIONS(6405), - [anon_sym_BSLASHcite] = ACTIONS(6405), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCite] = ACTIONS(6405), - [anon_sym_BSLASHnocite] = ACTIONS(6405), - [anon_sym_BSLASHcitet] = ACTIONS(6405), - [anon_sym_BSLASHcitep] = ACTIONS(6405), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteauthor] = ACTIONS(6405), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6405), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitetitle] = ACTIONS(6405), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteyear] = ACTIONS(6405), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitedate] = ACTIONS(6405), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteurl] = ACTIONS(6405), - [anon_sym_BSLASHfullcite] = ACTIONS(6405), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6405), - [anon_sym_BSLASHcitealt] = ACTIONS(6405), - [anon_sym_BSLASHcitealp] = ACTIONS(6405), - [anon_sym_BSLASHcitetext] = ACTIONS(6405), - [anon_sym_BSLASHparencite] = ACTIONS(6405), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHParencite] = ACTIONS(6405), - [anon_sym_BSLASHfootcite] = ACTIONS(6405), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6405), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6405), - [anon_sym_BSLASHtextcite] = ACTIONS(6405), - [anon_sym_BSLASHTextcite] = ACTIONS(6405), - [anon_sym_BSLASHsmartcite] = ACTIONS(6405), - [anon_sym_BSLASHSmartcite] = ACTIONS(6405), - [anon_sym_BSLASHsupercite] = ACTIONS(6405), - [anon_sym_BSLASHautocite] = ACTIONS(6405), - [anon_sym_BSLASHAutocite] = ACTIONS(6405), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHvolcite] = ACTIONS(6405), - [anon_sym_BSLASHVolcite] = ACTIONS(6405), - [anon_sym_BSLASHpvolcite] = ACTIONS(6405), - [anon_sym_BSLASHPvolcite] = ACTIONS(6405), - [anon_sym_BSLASHfvolcite] = ACTIONS(6405), - [anon_sym_BSLASHftvolcite] = ACTIONS(6405), - [anon_sym_BSLASHsvolcite] = ACTIONS(6405), - [anon_sym_BSLASHSvolcite] = ACTIONS(6405), - [anon_sym_BSLASHtvolcite] = ACTIONS(6405), - [anon_sym_BSLASHTvolcite] = ACTIONS(6405), - [anon_sym_BSLASHavolcite] = ACTIONS(6405), - [anon_sym_BSLASHAvolcite] = ACTIONS(6405), - [anon_sym_BSLASHnotecite] = ACTIONS(6405), - [anon_sym_BSLASHNotecite] = ACTIONS(6405), - [anon_sym_BSLASHpnotecite] = ACTIONS(6405), - [anon_sym_BSLASHPnotecite] = ACTIONS(6405), - [anon_sym_BSLASHfnotecite] = ACTIONS(6405), - [anon_sym_BSLASHlabel] = ACTIONS(6405), - [anon_sym_BSLASHref] = ACTIONS(6405), - [anon_sym_BSLASHeqref] = ACTIONS(6405), - [anon_sym_BSLASHvref] = ACTIONS(6405), - [anon_sym_BSLASHVref] = ACTIONS(6405), - [anon_sym_BSLASHautoref] = ACTIONS(6405), - [anon_sym_BSLASHpageref] = ACTIONS(6405), - [anon_sym_BSLASHcref] = ACTIONS(6405), - [anon_sym_BSLASHCref] = ACTIONS(6405), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnameCref] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHlabelcref] = ACTIONS(6405), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCrefrange] = ACTIONS(6405), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnewlabel] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6405), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6405), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6407), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHdef] = ACTIONS(6405), - [anon_sym_BSLASHlet] = ACTIONS(6405), - [anon_sym_BSLASHleft] = ACTIONS(6405), - [anon_sym_BSLASHbig] = ACTIONS(6405), - [anon_sym_BSLASHBig] = ACTIONS(6405), - [anon_sym_BSLASHbigg] = ACTIONS(6405), - [anon_sym_BSLASHBigg] = ACTIONS(6405), - [anon_sym_BSLASHbigl] = ACTIONS(6405), - [anon_sym_BSLASHBigl] = ACTIONS(6405), - [anon_sym_BSLASHbiggl] = ACTIONS(6405), - [anon_sym_BSLASHBiggl] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6405), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6405), - [anon_sym_BSLASHgls] = ACTIONS(6405), - [anon_sym_BSLASHGls] = ACTIONS(6405), - [anon_sym_BSLASHGLS] = ACTIONS(6405), - [anon_sym_BSLASHglspl] = ACTIONS(6405), - [anon_sym_BSLASHGlspl] = ACTIONS(6405), - [anon_sym_BSLASHGLSpl] = ACTIONS(6405), - [anon_sym_BSLASHglsdisp] = ACTIONS(6405), - [anon_sym_BSLASHglslink] = ACTIONS(6405), - [anon_sym_BSLASHglstext] = ACTIONS(6405), - [anon_sym_BSLASHGlstext] = ACTIONS(6405), - [anon_sym_BSLASHGLStext] = ACTIONS(6405), - [anon_sym_BSLASHglsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6405), - [anon_sym_BSLASHglsplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSplural] = ACTIONS(6405), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHglsname] = ACTIONS(6405), - [anon_sym_BSLASHGlsname] = ACTIONS(6405), - [anon_sym_BSLASHGLSname] = ACTIONS(6405), - [anon_sym_BSLASHglssymbol] = ACTIONS(6405), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6405), - [anon_sym_BSLASHglsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6405), - [anon_sym_BSLASHglsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6405), - [anon_sym_BSLASHglsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6405), - [anon_sym_BSLASHglsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6405), - [anon_sym_BSLASHglsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6405), - [anon_sym_BSLASHnewacronym] = ACTIONS(6405), - [anon_sym_BSLASHacrshort] = ACTIONS(6405), - [anon_sym_BSLASHAcrshort] = ACTIONS(6405), - [anon_sym_BSLASHACRshort] = ACTIONS(6405), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6405), - [anon_sym_BSLASHacrlong] = ACTIONS(6405), - [anon_sym_BSLASHAcrlong] = ACTIONS(6405), - [anon_sym_BSLASHACRlong] = ACTIONS(6405), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6405), - [anon_sym_BSLASHacrfull] = ACTIONS(6405), - [anon_sym_BSLASHAcrfull] = ACTIONS(6405), - [anon_sym_BSLASHACRfull] = ACTIONS(6405), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6405), - [anon_sym_BSLASHacs] = ACTIONS(6405), - [anon_sym_BSLASHAcs] = ACTIONS(6405), - [anon_sym_BSLASHacsp] = ACTIONS(6405), - [anon_sym_BSLASHAcsp] = ACTIONS(6405), - [anon_sym_BSLASHacl] = ACTIONS(6405), - [anon_sym_BSLASHAcl] = ACTIONS(6405), - [anon_sym_BSLASHaclp] = ACTIONS(6405), - [anon_sym_BSLASHAclp] = ACTIONS(6405), - [anon_sym_BSLASHacf] = ACTIONS(6405), - [anon_sym_BSLASHAcf] = ACTIONS(6405), - [anon_sym_BSLASHacfp] = ACTIONS(6405), - [anon_sym_BSLASHAcfp] = ACTIONS(6405), - [anon_sym_BSLASHac] = ACTIONS(6405), - [anon_sym_BSLASHAc] = ACTIONS(6405), - [anon_sym_BSLASHacp] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6405), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6405), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6405), - [anon_sym_BSLASHcolor] = ACTIONS(6405), - [anon_sym_BSLASHcolorbox] = ACTIONS(6405), - [anon_sym_BSLASHtextcolor] = ACTIONS(6405), - [anon_sym_BSLASHpagecolor] = ACTIONS(6405), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6405), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6405), - [anon_sym_BSLASHtext] = ACTIONS(6405), - [anon_sym_BSLASHintertext] = ACTIONS(6405), - [anon_sym_shortintertext] = ACTIONS(6405), - }, - [1334] = { - [sym_command_name] = ACTIONS(6401), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6401), - [anon_sym_LBRACK] = ACTIONS(6403), - [anon_sym_RBRACK] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(6403), - [anon_sym_EQ] = ACTIONS(6403), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(6403), - [anon_sym_BSLASHpart] = ACTIONS(6401), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddpart] = ACTIONS(6401), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6403), - [anon_sym_BSLASHchapter] = ACTIONS(6401), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddchap] = ACTIONS(6401), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsection] = ACTIONS(6401), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHaddsec] = ACTIONS(6401), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubsection] = ACTIONS(6401), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6401), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6403), - [anon_sym_BSLASHparagraph] = ACTIONS(6401), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6403), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6401), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6403), - [anon_sym_BSLASHitem] = ACTIONS(6401), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6403), - [anon_sym_LBRACE] = ACTIONS(6403), - [sym_word] = ACTIONS(6401), - [sym_placeholder] = ACTIONS(6403), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6403), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_LT] = ACTIONS(6401), - [anon_sym_GT] = ACTIONS(6401), - [anon_sym_BANG] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_SQUOTE] = ACTIONS(6401), - [anon_sym__] = ACTIONS(6403), - [anon_sym_CARET] = ACTIONS(6403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6403), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6403), - [anon_sym_DOLLAR] = ACTIONS(6401), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6403), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6403), - [anon_sym_BSLASHbegin] = ACTIONS(6401), - [anon_sym_BSLASHtitle] = ACTIONS(6401), - [anon_sym_BSLASHauthor] = ACTIONS(6401), - [anon_sym_BSLASHusepackage] = ACTIONS(6401), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6401), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6401), - [anon_sym_BSLASHinclude] = ACTIONS(6401), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6401), - [anon_sym_BSLASHinput] = ACTIONS(6401), - [anon_sym_BSLASHsubfile] = ACTIONS(6401), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6401), - [anon_sym_BSLASHbibliography] = ACTIONS(6401), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6401), - [anon_sym_BSLASHincludesvg] = ACTIONS(6401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6401), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6401), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6401), - [anon_sym_BSLASHimport] = ACTIONS(6401), - [anon_sym_BSLASHsubimport] = ACTIONS(6401), - [anon_sym_BSLASHinputfrom] = ACTIONS(6401), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6401), - [anon_sym_BSLASHincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHcaption] = ACTIONS(6401), - [anon_sym_BSLASHcite] = ACTIONS(6401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCite] = ACTIONS(6401), - [anon_sym_BSLASHnocite] = ACTIONS(6401), - [anon_sym_BSLASHcitet] = ACTIONS(6401), - [anon_sym_BSLASHcitep] = ACTIONS(6401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteauthor] = ACTIONS(6401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitetitle] = ACTIONS(6401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteyear] = ACTIONS(6401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitedate] = ACTIONS(6401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteurl] = ACTIONS(6401), - [anon_sym_BSLASHfullcite] = ACTIONS(6401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6401), - [anon_sym_BSLASHcitealt] = ACTIONS(6401), - [anon_sym_BSLASHcitealp] = ACTIONS(6401), - [anon_sym_BSLASHcitetext] = ACTIONS(6401), - [anon_sym_BSLASHparencite] = ACTIONS(6401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHParencite] = ACTIONS(6401), - [anon_sym_BSLASHfootcite] = ACTIONS(6401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6401), - [anon_sym_BSLASHtextcite] = ACTIONS(6401), - [anon_sym_BSLASHTextcite] = ACTIONS(6401), - [anon_sym_BSLASHsmartcite] = ACTIONS(6401), - [anon_sym_BSLASHSmartcite] = ACTIONS(6401), - [anon_sym_BSLASHsupercite] = ACTIONS(6401), - [anon_sym_BSLASHautocite] = ACTIONS(6401), - [anon_sym_BSLASHAutocite] = ACTIONS(6401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHvolcite] = ACTIONS(6401), - [anon_sym_BSLASHVolcite] = ACTIONS(6401), - [anon_sym_BSLASHpvolcite] = ACTIONS(6401), - [anon_sym_BSLASHPvolcite] = ACTIONS(6401), - [anon_sym_BSLASHfvolcite] = ACTIONS(6401), - [anon_sym_BSLASHftvolcite] = ACTIONS(6401), - [anon_sym_BSLASHsvolcite] = ACTIONS(6401), - [anon_sym_BSLASHSvolcite] = ACTIONS(6401), - [anon_sym_BSLASHtvolcite] = ACTIONS(6401), - [anon_sym_BSLASHTvolcite] = ACTIONS(6401), - [anon_sym_BSLASHavolcite] = ACTIONS(6401), - [anon_sym_BSLASHAvolcite] = ACTIONS(6401), - [anon_sym_BSLASHnotecite] = ACTIONS(6401), - [anon_sym_BSLASHNotecite] = ACTIONS(6401), - [anon_sym_BSLASHpnotecite] = ACTIONS(6401), - [anon_sym_BSLASHPnotecite] = ACTIONS(6401), - [anon_sym_BSLASHfnotecite] = ACTIONS(6401), - [anon_sym_BSLASHlabel] = ACTIONS(6401), - [anon_sym_BSLASHref] = ACTIONS(6401), - [anon_sym_BSLASHeqref] = ACTIONS(6401), - [anon_sym_BSLASHvref] = ACTIONS(6401), - [anon_sym_BSLASHVref] = ACTIONS(6401), - [anon_sym_BSLASHautoref] = ACTIONS(6401), - [anon_sym_BSLASHpageref] = ACTIONS(6401), - [anon_sym_BSLASHcref] = ACTIONS(6401), - [anon_sym_BSLASHCref] = ACTIONS(6401), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnameCref] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHlabelcref] = ACTIONS(6401), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCrefrange] = ACTIONS(6401), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnewlabel] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6401), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6401), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6403), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHdef] = ACTIONS(6401), - [anon_sym_BSLASHlet] = ACTIONS(6401), - [anon_sym_BSLASHleft] = ACTIONS(6401), - [anon_sym_BSLASHbig] = ACTIONS(6401), - [anon_sym_BSLASHBig] = ACTIONS(6401), - [anon_sym_BSLASHbigg] = ACTIONS(6401), - [anon_sym_BSLASHBigg] = ACTIONS(6401), - [anon_sym_BSLASHbigl] = ACTIONS(6401), - [anon_sym_BSLASHBigl] = ACTIONS(6401), - [anon_sym_BSLASHbiggl] = ACTIONS(6401), - [anon_sym_BSLASHBiggl] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6401), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6401), - [anon_sym_BSLASHgls] = ACTIONS(6401), - [anon_sym_BSLASHGls] = ACTIONS(6401), - [anon_sym_BSLASHGLS] = ACTIONS(6401), - [anon_sym_BSLASHglspl] = ACTIONS(6401), - [anon_sym_BSLASHGlspl] = ACTIONS(6401), - [anon_sym_BSLASHGLSpl] = ACTIONS(6401), - [anon_sym_BSLASHglsdisp] = ACTIONS(6401), - [anon_sym_BSLASHglslink] = ACTIONS(6401), - [anon_sym_BSLASHglstext] = ACTIONS(6401), - [anon_sym_BSLASHGlstext] = ACTIONS(6401), - [anon_sym_BSLASHGLStext] = ACTIONS(6401), - [anon_sym_BSLASHglsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6401), - [anon_sym_BSLASHglsplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSplural] = ACTIONS(6401), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHglsname] = ACTIONS(6401), - [anon_sym_BSLASHGlsname] = ACTIONS(6401), - [anon_sym_BSLASHGLSname] = ACTIONS(6401), - [anon_sym_BSLASHglssymbol] = ACTIONS(6401), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6401), - [anon_sym_BSLASHglsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6401), - [anon_sym_BSLASHglsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6401), - [anon_sym_BSLASHglsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6401), - [anon_sym_BSLASHglsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6401), - [anon_sym_BSLASHglsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6401), - [anon_sym_BSLASHnewacronym] = ACTIONS(6401), - [anon_sym_BSLASHacrshort] = ACTIONS(6401), - [anon_sym_BSLASHAcrshort] = ACTIONS(6401), - [anon_sym_BSLASHACRshort] = ACTIONS(6401), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6401), - [anon_sym_BSLASHacrlong] = ACTIONS(6401), - [anon_sym_BSLASHAcrlong] = ACTIONS(6401), - [anon_sym_BSLASHACRlong] = ACTIONS(6401), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6401), - [anon_sym_BSLASHacrfull] = ACTIONS(6401), - [anon_sym_BSLASHAcrfull] = ACTIONS(6401), - [anon_sym_BSLASHACRfull] = ACTIONS(6401), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6401), - [anon_sym_BSLASHacs] = ACTIONS(6401), - [anon_sym_BSLASHAcs] = ACTIONS(6401), - [anon_sym_BSLASHacsp] = ACTIONS(6401), - [anon_sym_BSLASHAcsp] = ACTIONS(6401), - [anon_sym_BSLASHacl] = ACTIONS(6401), - [anon_sym_BSLASHAcl] = ACTIONS(6401), - [anon_sym_BSLASHaclp] = ACTIONS(6401), - [anon_sym_BSLASHAclp] = ACTIONS(6401), - [anon_sym_BSLASHacf] = ACTIONS(6401), - [anon_sym_BSLASHAcf] = ACTIONS(6401), - [anon_sym_BSLASHacfp] = ACTIONS(6401), - [anon_sym_BSLASHAcfp] = ACTIONS(6401), - [anon_sym_BSLASHac] = ACTIONS(6401), - [anon_sym_BSLASHAc] = ACTIONS(6401), - [anon_sym_BSLASHacp] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6401), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6401), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6401), - [anon_sym_BSLASHcolor] = ACTIONS(6401), - [anon_sym_BSLASHcolorbox] = ACTIONS(6401), - [anon_sym_BSLASHtextcolor] = ACTIONS(6401), - [anon_sym_BSLASHpagecolor] = ACTIONS(6401), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6401), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6401), - [anon_sym_BSLASHtext] = ACTIONS(6401), - [anon_sym_BSLASHintertext] = ACTIONS(6401), - [anon_sym_shortintertext] = ACTIONS(6401), - }, - [1335] = { - [sym_command_name] = ACTIONS(6397), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6397), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(6399), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_LPAREN] = ACTIONS(6399), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_BSLASHpart] = ACTIONS(6397), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddpart] = ACTIONS(6397), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6399), - [anon_sym_BSLASHchapter] = ACTIONS(6397), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddchap] = ACTIONS(6397), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsection] = ACTIONS(6397), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHaddsec] = ACTIONS(6397), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubsection] = ACTIONS(6397), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6397), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6399), - [anon_sym_BSLASHparagraph] = ACTIONS(6397), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6399), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6397), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6399), - [anon_sym_BSLASHitem] = ACTIONS(6397), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6399), - [anon_sym_LBRACE] = ACTIONS(6399), - [sym_word] = ACTIONS(6397), - [sym_placeholder] = ACTIONS(6399), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_LT] = ACTIONS(6397), - [anon_sym_GT] = ACTIONS(6397), - [anon_sym_BANG] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_SQUOTE] = ACTIONS(6397), - [anon_sym__] = ACTIONS(6399), - [anon_sym_CARET] = ACTIONS(6399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6399), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6399), - [anon_sym_DOLLAR] = ACTIONS(6397), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6399), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6399), - [anon_sym_BSLASHbegin] = ACTIONS(6397), - [anon_sym_BSLASHtitle] = ACTIONS(6397), - [anon_sym_BSLASHauthor] = ACTIONS(6397), - [anon_sym_BSLASHusepackage] = ACTIONS(6397), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6397), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6397), - [anon_sym_BSLASHinclude] = ACTIONS(6397), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6397), - [anon_sym_BSLASHinput] = ACTIONS(6397), - [anon_sym_BSLASHsubfile] = ACTIONS(6397), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6397), - [anon_sym_BSLASHbibliography] = ACTIONS(6397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6397), - [anon_sym_BSLASHincludesvg] = ACTIONS(6397), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6397), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6397), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6397), - [anon_sym_BSLASHimport] = ACTIONS(6397), - [anon_sym_BSLASHsubimport] = ACTIONS(6397), - [anon_sym_BSLASHinputfrom] = ACTIONS(6397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6397), - [anon_sym_BSLASHincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHcaption] = ACTIONS(6397), - [anon_sym_BSLASHcite] = ACTIONS(6397), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCite] = ACTIONS(6397), - [anon_sym_BSLASHnocite] = ACTIONS(6397), - [anon_sym_BSLASHcitet] = ACTIONS(6397), - [anon_sym_BSLASHcitep] = ACTIONS(6397), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteauthor] = ACTIONS(6397), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6397), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitetitle] = ACTIONS(6397), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteyear] = ACTIONS(6397), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitedate] = ACTIONS(6397), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteurl] = ACTIONS(6397), - [anon_sym_BSLASHfullcite] = ACTIONS(6397), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6397), - [anon_sym_BSLASHcitealt] = ACTIONS(6397), - [anon_sym_BSLASHcitealp] = ACTIONS(6397), - [anon_sym_BSLASHcitetext] = ACTIONS(6397), - [anon_sym_BSLASHparencite] = ACTIONS(6397), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHParencite] = ACTIONS(6397), - [anon_sym_BSLASHfootcite] = ACTIONS(6397), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6397), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6397), - [anon_sym_BSLASHtextcite] = ACTIONS(6397), - [anon_sym_BSLASHTextcite] = ACTIONS(6397), - [anon_sym_BSLASHsmartcite] = ACTIONS(6397), - [anon_sym_BSLASHSmartcite] = ACTIONS(6397), - [anon_sym_BSLASHsupercite] = ACTIONS(6397), - [anon_sym_BSLASHautocite] = ACTIONS(6397), - [anon_sym_BSLASHAutocite] = ACTIONS(6397), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHvolcite] = ACTIONS(6397), - [anon_sym_BSLASHVolcite] = ACTIONS(6397), - [anon_sym_BSLASHpvolcite] = ACTIONS(6397), - [anon_sym_BSLASHPvolcite] = ACTIONS(6397), - [anon_sym_BSLASHfvolcite] = ACTIONS(6397), - [anon_sym_BSLASHftvolcite] = ACTIONS(6397), - [anon_sym_BSLASHsvolcite] = ACTIONS(6397), - [anon_sym_BSLASHSvolcite] = ACTIONS(6397), - [anon_sym_BSLASHtvolcite] = ACTIONS(6397), - [anon_sym_BSLASHTvolcite] = ACTIONS(6397), - [anon_sym_BSLASHavolcite] = ACTIONS(6397), - [anon_sym_BSLASHAvolcite] = ACTIONS(6397), - [anon_sym_BSLASHnotecite] = ACTIONS(6397), - [anon_sym_BSLASHNotecite] = ACTIONS(6397), - [anon_sym_BSLASHpnotecite] = ACTIONS(6397), - [anon_sym_BSLASHPnotecite] = ACTIONS(6397), - [anon_sym_BSLASHfnotecite] = ACTIONS(6397), - [anon_sym_BSLASHlabel] = ACTIONS(6397), - [anon_sym_BSLASHref] = ACTIONS(6397), - [anon_sym_BSLASHeqref] = ACTIONS(6397), - [anon_sym_BSLASHvref] = ACTIONS(6397), - [anon_sym_BSLASHVref] = ACTIONS(6397), - [anon_sym_BSLASHautoref] = ACTIONS(6397), - [anon_sym_BSLASHpageref] = ACTIONS(6397), - [anon_sym_BSLASHcref] = ACTIONS(6397), - [anon_sym_BSLASHCref] = ACTIONS(6397), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnameCref] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHlabelcref] = ACTIONS(6397), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCrefrange] = ACTIONS(6397), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnewlabel] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6397), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6397), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6399), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHdef] = ACTIONS(6397), - [anon_sym_BSLASHlet] = ACTIONS(6397), - [anon_sym_BSLASHleft] = ACTIONS(6397), - [anon_sym_BSLASHbig] = ACTIONS(6397), - [anon_sym_BSLASHBig] = ACTIONS(6397), - [anon_sym_BSLASHbigg] = ACTIONS(6397), - [anon_sym_BSLASHBigg] = ACTIONS(6397), - [anon_sym_BSLASHbigl] = ACTIONS(6397), - [anon_sym_BSLASHBigl] = ACTIONS(6397), - [anon_sym_BSLASHbiggl] = ACTIONS(6397), - [anon_sym_BSLASHBiggl] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6397), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6397), - [anon_sym_BSLASHgls] = ACTIONS(6397), - [anon_sym_BSLASHGls] = ACTIONS(6397), - [anon_sym_BSLASHGLS] = ACTIONS(6397), - [anon_sym_BSLASHglspl] = ACTIONS(6397), - [anon_sym_BSLASHGlspl] = ACTIONS(6397), - [anon_sym_BSLASHGLSpl] = ACTIONS(6397), - [anon_sym_BSLASHglsdisp] = ACTIONS(6397), - [anon_sym_BSLASHglslink] = ACTIONS(6397), - [anon_sym_BSLASHglstext] = ACTIONS(6397), - [anon_sym_BSLASHGlstext] = ACTIONS(6397), - [anon_sym_BSLASHGLStext] = ACTIONS(6397), - [anon_sym_BSLASHglsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6397), - [anon_sym_BSLASHglsplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSplural] = ACTIONS(6397), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHglsname] = ACTIONS(6397), - [anon_sym_BSLASHGlsname] = ACTIONS(6397), - [anon_sym_BSLASHGLSname] = ACTIONS(6397), - [anon_sym_BSLASHglssymbol] = ACTIONS(6397), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6397), - [anon_sym_BSLASHglsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6397), - [anon_sym_BSLASHglsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6397), - [anon_sym_BSLASHglsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6397), - [anon_sym_BSLASHglsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6397), - [anon_sym_BSLASHglsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6397), - [anon_sym_BSLASHnewacronym] = ACTIONS(6397), - [anon_sym_BSLASHacrshort] = ACTIONS(6397), - [anon_sym_BSLASHAcrshort] = ACTIONS(6397), - [anon_sym_BSLASHACRshort] = ACTIONS(6397), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6397), - [anon_sym_BSLASHacrlong] = ACTIONS(6397), - [anon_sym_BSLASHAcrlong] = ACTIONS(6397), - [anon_sym_BSLASHACRlong] = ACTIONS(6397), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6397), - [anon_sym_BSLASHacrfull] = ACTIONS(6397), - [anon_sym_BSLASHAcrfull] = ACTIONS(6397), - [anon_sym_BSLASHACRfull] = ACTIONS(6397), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6397), - [anon_sym_BSLASHacs] = ACTIONS(6397), - [anon_sym_BSLASHAcs] = ACTIONS(6397), - [anon_sym_BSLASHacsp] = ACTIONS(6397), - [anon_sym_BSLASHAcsp] = ACTIONS(6397), - [anon_sym_BSLASHacl] = ACTIONS(6397), - [anon_sym_BSLASHAcl] = ACTIONS(6397), - [anon_sym_BSLASHaclp] = ACTIONS(6397), - [anon_sym_BSLASHAclp] = ACTIONS(6397), - [anon_sym_BSLASHacf] = ACTIONS(6397), - [anon_sym_BSLASHAcf] = ACTIONS(6397), - [anon_sym_BSLASHacfp] = ACTIONS(6397), - [anon_sym_BSLASHAcfp] = ACTIONS(6397), - [anon_sym_BSLASHac] = ACTIONS(6397), - [anon_sym_BSLASHAc] = ACTIONS(6397), - [anon_sym_BSLASHacp] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6397), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6397), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6397), - [anon_sym_BSLASHcolor] = ACTIONS(6397), - [anon_sym_BSLASHcolorbox] = ACTIONS(6397), - [anon_sym_BSLASHtextcolor] = ACTIONS(6397), - [anon_sym_BSLASHpagecolor] = ACTIONS(6397), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6397), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6397), - [anon_sym_BSLASHtext] = ACTIONS(6397), - [anon_sym_BSLASHintertext] = ACTIONS(6397), - [anon_sym_shortintertext] = ACTIONS(6397), - }, - [1336] = { - [sym_command_name] = ACTIONS(6393), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6393), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_RBRACK] = ACTIONS(6395), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_LPAREN] = ACTIONS(6395), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_BSLASHpart] = ACTIONS(6393), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddpart] = ACTIONS(6393), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6395), - [anon_sym_BSLASHchapter] = ACTIONS(6393), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddchap] = ACTIONS(6393), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsection] = ACTIONS(6393), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHaddsec] = ACTIONS(6393), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubsection] = ACTIONS(6393), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6393), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6395), - [anon_sym_BSLASHparagraph] = ACTIONS(6393), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6395), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6393), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6395), - [anon_sym_BSLASHitem] = ACTIONS(6393), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6395), - [anon_sym_LBRACE] = ACTIONS(6395), - [sym_word] = ACTIONS(6393), - [sym_placeholder] = ACTIONS(6395), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6395), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_LT] = ACTIONS(6393), - [anon_sym_GT] = ACTIONS(6393), - [anon_sym_BANG] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_SQUOTE] = ACTIONS(6393), - [anon_sym__] = ACTIONS(6395), - [anon_sym_CARET] = ACTIONS(6395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6395), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6395), - [anon_sym_DOLLAR] = ACTIONS(6393), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6395), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6395), - [anon_sym_BSLASHbegin] = ACTIONS(6393), - [anon_sym_BSLASHtitle] = ACTIONS(6393), - [anon_sym_BSLASHauthor] = ACTIONS(6393), - [anon_sym_BSLASHusepackage] = ACTIONS(6393), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6393), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6393), - [anon_sym_BSLASHinclude] = ACTIONS(6393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6393), - [anon_sym_BSLASHinput] = ACTIONS(6393), - [anon_sym_BSLASHsubfile] = ACTIONS(6393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6393), - [anon_sym_BSLASHbibliography] = ACTIONS(6393), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6393), - [anon_sym_BSLASHincludesvg] = ACTIONS(6393), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6393), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6393), - [anon_sym_BSLASHimport] = ACTIONS(6393), - [anon_sym_BSLASHsubimport] = ACTIONS(6393), - [anon_sym_BSLASHinputfrom] = ACTIONS(6393), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6393), - [anon_sym_BSLASHincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHcaption] = ACTIONS(6393), - [anon_sym_BSLASHcite] = ACTIONS(6393), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCite] = ACTIONS(6393), - [anon_sym_BSLASHnocite] = ACTIONS(6393), - [anon_sym_BSLASHcitet] = ACTIONS(6393), - [anon_sym_BSLASHcitep] = ACTIONS(6393), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteauthor] = ACTIONS(6393), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6393), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitetitle] = ACTIONS(6393), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteyear] = ACTIONS(6393), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitedate] = ACTIONS(6393), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteurl] = ACTIONS(6393), - [anon_sym_BSLASHfullcite] = ACTIONS(6393), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6393), - [anon_sym_BSLASHcitealt] = ACTIONS(6393), - [anon_sym_BSLASHcitealp] = ACTIONS(6393), - [anon_sym_BSLASHcitetext] = ACTIONS(6393), - [anon_sym_BSLASHparencite] = ACTIONS(6393), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHParencite] = ACTIONS(6393), - [anon_sym_BSLASHfootcite] = ACTIONS(6393), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6393), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6393), - [anon_sym_BSLASHtextcite] = ACTIONS(6393), - [anon_sym_BSLASHTextcite] = ACTIONS(6393), - [anon_sym_BSLASHsmartcite] = ACTIONS(6393), - [anon_sym_BSLASHSmartcite] = ACTIONS(6393), - [anon_sym_BSLASHsupercite] = ACTIONS(6393), - [anon_sym_BSLASHautocite] = ACTIONS(6393), - [anon_sym_BSLASHAutocite] = ACTIONS(6393), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHvolcite] = ACTIONS(6393), - [anon_sym_BSLASHVolcite] = ACTIONS(6393), - [anon_sym_BSLASHpvolcite] = ACTIONS(6393), - [anon_sym_BSLASHPvolcite] = ACTIONS(6393), - [anon_sym_BSLASHfvolcite] = ACTIONS(6393), - [anon_sym_BSLASHftvolcite] = ACTIONS(6393), - [anon_sym_BSLASHsvolcite] = ACTIONS(6393), - [anon_sym_BSLASHSvolcite] = ACTIONS(6393), - [anon_sym_BSLASHtvolcite] = ACTIONS(6393), - [anon_sym_BSLASHTvolcite] = ACTIONS(6393), - [anon_sym_BSLASHavolcite] = ACTIONS(6393), - [anon_sym_BSLASHAvolcite] = ACTIONS(6393), - [anon_sym_BSLASHnotecite] = ACTIONS(6393), - [anon_sym_BSLASHNotecite] = ACTIONS(6393), - [anon_sym_BSLASHpnotecite] = ACTIONS(6393), - [anon_sym_BSLASHPnotecite] = ACTIONS(6393), - [anon_sym_BSLASHfnotecite] = ACTIONS(6393), - [anon_sym_BSLASHlabel] = ACTIONS(6393), - [anon_sym_BSLASHref] = ACTIONS(6393), - [anon_sym_BSLASHeqref] = ACTIONS(6393), - [anon_sym_BSLASHvref] = ACTIONS(6393), - [anon_sym_BSLASHVref] = ACTIONS(6393), - [anon_sym_BSLASHautoref] = ACTIONS(6393), - [anon_sym_BSLASHpageref] = ACTIONS(6393), - [anon_sym_BSLASHcref] = ACTIONS(6393), - [anon_sym_BSLASHCref] = ACTIONS(6393), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnameCref] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHlabelcref] = ACTIONS(6393), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCrefrange] = ACTIONS(6393), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnewlabel] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6393), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6393), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6395), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHdef] = ACTIONS(6393), - [anon_sym_BSLASHlet] = ACTIONS(6393), - [anon_sym_BSLASHleft] = ACTIONS(6393), - [anon_sym_BSLASHbig] = ACTIONS(6393), - [anon_sym_BSLASHBig] = ACTIONS(6393), - [anon_sym_BSLASHbigg] = ACTIONS(6393), - [anon_sym_BSLASHBigg] = ACTIONS(6393), - [anon_sym_BSLASHbigl] = ACTIONS(6393), - [anon_sym_BSLASHBigl] = ACTIONS(6393), - [anon_sym_BSLASHbiggl] = ACTIONS(6393), - [anon_sym_BSLASHBiggl] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6393), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6393), - [anon_sym_BSLASHgls] = ACTIONS(6393), - [anon_sym_BSLASHGls] = ACTIONS(6393), - [anon_sym_BSLASHGLS] = ACTIONS(6393), - [anon_sym_BSLASHglspl] = ACTIONS(6393), - [anon_sym_BSLASHGlspl] = ACTIONS(6393), - [anon_sym_BSLASHGLSpl] = ACTIONS(6393), - [anon_sym_BSLASHglsdisp] = ACTIONS(6393), - [anon_sym_BSLASHglslink] = ACTIONS(6393), - [anon_sym_BSLASHglstext] = ACTIONS(6393), - [anon_sym_BSLASHGlstext] = ACTIONS(6393), - [anon_sym_BSLASHGLStext] = ACTIONS(6393), - [anon_sym_BSLASHglsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6393), - [anon_sym_BSLASHglsplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSplural] = ACTIONS(6393), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHglsname] = ACTIONS(6393), - [anon_sym_BSLASHGlsname] = ACTIONS(6393), - [anon_sym_BSLASHGLSname] = ACTIONS(6393), - [anon_sym_BSLASHglssymbol] = ACTIONS(6393), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6393), - [anon_sym_BSLASHglsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6393), - [anon_sym_BSLASHglsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6393), - [anon_sym_BSLASHglsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6393), - [anon_sym_BSLASHglsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6393), - [anon_sym_BSLASHglsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6393), - [anon_sym_BSLASHnewacronym] = ACTIONS(6393), - [anon_sym_BSLASHacrshort] = ACTIONS(6393), - [anon_sym_BSLASHAcrshort] = ACTIONS(6393), - [anon_sym_BSLASHACRshort] = ACTIONS(6393), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6393), - [anon_sym_BSLASHacrlong] = ACTIONS(6393), - [anon_sym_BSLASHAcrlong] = ACTIONS(6393), - [anon_sym_BSLASHACRlong] = ACTIONS(6393), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6393), - [anon_sym_BSLASHacrfull] = ACTIONS(6393), - [anon_sym_BSLASHAcrfull] = ACTIONS(6393), - [anon_sym_BSLASHACRfull] = ACTIONS(6393), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6393), - [anon_sym_BSLASHacs] = ACTIONS(6393), - [anon_sym_BSLASHAcs] = ACTIONS(6393), - [anon_sym_BSLASHacsp] = ACTIONS(6393), - [anon_sym_BSLASHAcsp] = ACTIONS(6393), - [anon_sym_BSLASHacl] = ACTIONS(6393), - [anon_sym_BSLASHAcl] = ACTIONS(6393), - [anon_sym_BSLASHaclp] = ACTIONS(6393), - [anon_sym_BSLASHAclp] = ACTIONS(6393), - [anon_sym_BSLASHacf] = ACTIONS(6393), - [anon_sym_BSLASHAcf] = ACTIONS(6393), - [anon_sym_BSLASHacfp] = ACTIONS(6393), - [anon_sym_BSLASHAcfp] = ACTIONS(6393), - [anon_sym_BSLASHac] = ACTIONS(6393), - [anon_sym_BSLASHAc] = ACTIONS(6393), - [anon_sym_BSLASHacp] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6393), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6393), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6393), - [anon_sym_BSLASHcolor] = ACTIONS(6393), - [anon_sym_BSLASHcolorbox] = ACTIONS(6393), - [anon_sym_BSLASHtextcolor] = ACTIONS(6393), - [anon_sym_BSLASHpagecolor] = ACTIONS(6393), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6393), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6393), - [anon_sym_BSLASHtext] = ACTIONS(6393), - [anon_sym_BSLASHintertext] = ACTIONS(6393), - [anon_sym_shortintertext] = ACTIONS(6393), - }, - [1337] = { - [sym_command_name] = ACTIONS(6389), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(6391), - [anon_sym_RBRACK] = ACTIONS(6391), - [anon_sym_COMMA] = ACTIONS(6391), - [anon_sym_EQ] = ACTIONS(6391), - [anon_sym_LPAREN] = ACTIONS(6391), - [anon_sym_RPAREN] = ACTIONS(6391), - [anon_sym_BSLASHpart] = ACTIONS(6389), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddpart] = ACTIONS(6389), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6391), - [anon_sym_BSLASHchapter] = ACTIONS(6389), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddchap] = ACTIONS(6389), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsection] = ACTIONS(6389), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHaddsec] = ACTIONS(6389), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubsection] = ACTIONS(6389), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6389), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6391), - [anon_sym_BSLASHparagraph] = ACTIONS(6389), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6391), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6389), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6391), - [anon_sym_BSLASHitem] = ACTIONS(6389), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6391), - [anon_sym_LBRACE] = ACTIONS(6391), - [sym_word] = ACTIONS(6389), - [sym_placeholder] = ACTIONS(6391), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6391), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_LT] = ACTIONS(6389), - [anon_sym_GT] = ACTIONS(6389), - [anon_sym_BANG] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_SQUOTE] = ACTIONS(6389), - [anon_sym__] = ACTIONS(6391), - [anon_sym_CARET] = ACTIONS(6391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6391), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6391), - [anon_sym_DOLLAR] = ACTIONS(6389), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6391), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6391), - [anon_sym_BSLASHbegin] = ACTIONS(6389), - [anon_sym_BSLASHtitle] = ACTIONS(6389), - [anon_sym_BSLASHauthor] = ACTIONS(6389), - [anon_sym_BSLASHusepackage] = ACTIONS(6389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6389), - [anon_sym_BSLASHinclude] = ACTIONS(6389), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6389), - [anon_sym_BSLASHinput] = ACTIONS(6389), - [anon_sym_BSLASHsubfile] = ACTIONS(6389), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6389), - [anon_sym_BSLASHbibliography] = ACTIONS(6389), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6389), - [anon_sym_BSLASHincludesvg] = ACTIONS(6389), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6389), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6389), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6389), - [anon_sym_BSLASHimport] = ACTIONS(6389), - [anon_sym_BSLASHsubimport] = ACTIONS(6389), - [anon_sym_BSLASHinputfrom] = ACTIONS(6389), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6389), - [anon_sym_BSLASHincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHcaption] = ACTIONS(6389), - [anon_sym_BSLASHcite] = ACTIONS(6389), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCite] = ACTIONS(6389), - [anon_sym_BSLASHnocite] = ACTIONS(6389), - [anon_sym_BSLASHcitet] = ACTIONS(6389), - [anon_sym_BSLASHcitep] = ACTIONS(6389), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteauthor] = ACTIONS(6389), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6389), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitetitle] = ACTIONS(6389), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteyear] = ACTIONS(6389), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitedate] = ACTIONS(6389), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteurl] = ACTIONS(6389), - [anon_sym_BSLASHfullcite] = ACTIONS(6389), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6389), - [anon_sym_BSLASHcitealt] = ACTIONS(6389), - [anon_sym_BSLASHcitealp] = ACTIONS(6389), - [anon_sym_BSLASHcitetext] = ACTIONS(6389), - [anon_sym_BSLASHparencite] = ACTIONS(6389), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHParencite] = ACTIONS(6389), - [anon_sym_BSLASHfootcite] = ACTIONS(6389), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6389), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6389), - [anon_sym_BSLASHtextcite] = ACTIONS(6389), - [anon_sym_BSLASHTextcite] = ACTIONS(6389), - [anon_sym_BSLASHsmartcite] = ACTIONS(6389), - [anon_sym_BSLASHSmartcite] = ACTIONS(6389), - [anon_sym_BSLASHsupercite] = ACTIONS(6389), - [anon_sym_BSLASHautocite] = ACTIONS(6389), - [anon_sym_BSLASHAutocite] = ACTIONS(6389), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHvolcite] = ACTIONS(6389), - [anon_sym_BSLASHVolcite] = ACTIONS(6389), - [anon_sym_BSLASHpvolcite] = ACTIONS(6389), - [anon_sym_BSLASHPvolcite] = ACTIONS(6389), - [anon_sym_BSLASHfvolcite] = ACTIONS(6389), - [anon_sym_BSLASHftvolcite] = ACTIONS(6389), - [anon_sym_BSLASHsvolcite] = ACTIONS(6389), - [anon_sym_BSLASHSvolcite] = ACTIONS(6389), - [anon_sym_BSLASHtvolcite] = ACTIONS(6389), - [anon_sym_BSLASHTvolcite] = ACTIONS(6389), - [anon_sym_BSLASHavolcite] = ACTIONS(6389), - [anon_sym_BSLASHAvolcite] = ACTIONS(6389), - [anon_sym_BSLASHnotecite] = ACTIONS(6389), - [anon_sym_BSLASHNotecite] = ACTIONS(6389), - [anon_sym_BSLASHpnotecite] = ACTIONS(6389), - [anon_sym_BSLASHPnotecite] = ACTIONS(6389), - [anon_sym_BSLASHfnotecite] = ACTIONS(6389), - [anon_sym_BSLASHlabel] = ACTIONS(6389), - [anon_sym_BSLASHref] = ACTIONS(6389), - [anon_sym_BSLASHeqref] = ACTIONS(6389), - [anon_sym_BSLASHvref] = ACTIONS(6389), - [anon_sym_BSLASHVref] = ACTIONS(6389), - [anon_sym_BSLASHautoref] = ACTIONS(6389), - [anon_sym_BSLASHpageref] = ACTIONS(6389), - [anon_sym_BSLASHcref] = ACTIONS(6389), - [anon_sym_BSLASHCref] = ACTIONS(6389), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnameCref] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHlabelcref] = ACTIONS(6389), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCrefrange] = ACTIONS(6389), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnewlabel] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6389), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6389), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6391), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHdef] = ACTIONS(6389), - [anon_sym_BSLASHlet] = ACTIONS(6389), - [anon_sym_BSLASHleft] = ACTIONS(6389), - [anon_sym_BSLASHbig] = ACTIONS(6389), - [anon_sym_BSLASHBig] = ACTIONS(6389), - [anon_sym_BSLASHbigg] = ACTIONS(6389), - [anon_sym_BSLASHBigg] = ACTIONS(6389), - [anon_sym_BSLASHbigl] = ACTIONS(6389), - [anon_sym_BSLASHBigl] = ACTIONS(6389), - [anon_sym_BSLASHbiggl] = ACTIONS(6389), - [anon_sym_BSLASHBiggl] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6389), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6389), - [anon_sym_BSLASHgls] = ACTIONS(6389), - [anon_sym_BSLASHGls] = ACTIONS(6389), - [anon_sym_BSLASHGLS] = ACTIONS(6389), - [anon_sym_BSLASHglspl] = ACTIONS(6389), - [anon_sym_BSLASHGlspl] = ACTIONS(6389), - [anon_sym_BSLASHGLSpl] = ACTIONS(6389), - [anon_sym_BSLASHglsdisp] = ACTIONS(6389), - [anon_sym_BSLASHglslink] = ACTIONS(6389), - [anon_sym_BSLASHglstext] = ACTIONS(6389), - [anon_sym_BSLASHGlstext] = ACTIONS(6389), - [anon_sym_BSLASHGLStext] = ACTIONS(6389), - [anon_sym_BSLASHglsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6389), - [anon_sym_BSLASHglsplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSplural] = ACTIONS(6389), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHglsname] = ACTIONS(6389), - [anon_sym_BSLASHGlsname] = ACTIONS(6389), - [anon_sym_BSLASHGLSname] = ACTIONS(6389), - [anon_sym_BSLASHglssymbol] = ACTIONS(6389), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6389), - [anon_sym_BSLASHglsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6389), - [anon_sym_BSLASHglsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6389), - [anon_sym_BSLASHglsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6389), - [anon_sym_BSLASHglsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6389), - [anon_sym_BSLASHglsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6389), - [anon_sym_BSLASHnewacronym] = ACTIONS(6389), - [anon_sym_BSLASHacrshort] = ACTIONS(6389), - [anon_sym_BSLASHAcrshort] = ACTIONS(6389), - [anon_sym_BSLASHACRshort] = ACTIONS(6389), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6389), - [anon_sym_BSLASHacrlong] = ACTIONS(6389), - [anon_sym_BSLASHAcrlong] = ACTIONS(6389), - [anon_sym_BSLASHACRlong] = ACTIONS(6389), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6389), - [anon_sym_BSLASHacrfull] = ACTIONS(6389), - [anon_sym_BSLASHAcrfull] = ACTIONS(6389), - [anon_sym_BSLASHACRfull] = ACTIONS(6389), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6389), - [anon_sym_BSLASHacs] = ACTIONS(6389), - [anon_sym_BSLASHAcs] = ACTIONS(6389), - [anon_sym_BSLASHacsp] = ACTIONS(6389), - [anon_sym_BSLASHAcsp] = ACTIONS(6389), - [anon_sym_BSLASHacl] = ACTIONS(6389), - [anon_sym_BSLASHAcl] = ACTIONS(6389), - [anon_sym_BSLASHaclp] = ACTIONS(6389), - [anon_sym_BSLASHAclp] = ACTIONS(6389), - [anon_sym_BSLASHacf] = ACTIONS(6389), - [anon_sym_BSLASHAcf] = ACTIONS(6389), - [anon_sym_BSLASHacfp] = ACTIONS(6389), - [anon_sym_BSLASHAcfp] = ACTIONS(6389), - [anon_sym_BSLASHac] = ACTIONS(6389), - [anon_sym_BSLASHAc] = ACTIONS(6389), - [anon_sym_BSLASHacp] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6389), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6389), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6389), - [anon_sym_BSLASHcolor] = ACTIONS(6389), - [anon_sym_BSLASHcolorbox] = ACTIONS(6389), - [anon_sym_BSLASHtextcolor] = ACTIONS(6389), - [anon_sym_BSLASHpagecolor] = ACTIONS(6389), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6389), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6389), - [anon_sym_BSLASHtext] = ACTIONS(6389), - [anon_sym_BSLASHintertext] = ACTIONS(6389), - [anon_sym_shortintertext] = ACTIONS(6389), - }, - [1338] = { - [sym_command_name] = ACTIONS(6385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6387), - [anon_sym_RBRACK] = ACTIONS(6387), - [anon_sym_COMMA] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LPAREN] = ACTIONS(6387), - [anon_sym_RPAREN] = ACTIONS(6387), - [anon_sym_BSLASHpart] = ACTIONS(6385), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddpart] = ACTIONS(6385), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6387), - [anon_sym_BSLASHchapter] = ACTIONS(6385), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddchap] = ACTIONS(6385), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsection] = ACTIONS(6385), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHaddsec] = ACTIONS(6385), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubsection] = ACTIONS(6385), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6385), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6387), - [anon_sym_BSLASHparagraph] = ACTIONS(6385), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6387), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6385), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6387), - [anon_sym_BSLASHitem] = ACTIONS(6385), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6387), - [sym_word] = ACTIONS(6385), - [sym_placeholder] = ACTIONS(6387), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6387), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_LT] = ACTIONS(6385), - [anon_sym_GT] = ACTIONS(6385), - [anon_sym_BANG] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_SQUOTE] = ACTIONS(6385), - [anon_sym__] = ACTIONS(6387), - [anon_sym_CARET] = ACTIONS(6387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6387), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6387), - [anon_sym_DOLLAR] = ACTIONS(6385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6387), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6387), - [anon_sym_BSLASHbegin] = ACTIONS(6385), - [anon_sym_BSLASHtitle] = ACTIONS(6385), - [anon_sym_BSLASHauthor] = ACTIONS(6385), - [anon_sym_BSLASHusepackage] = ACTIONS(6385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6385), - [anon_sym_BSLASHinclude] = ACTIONS(6385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6385), - [anon_sym_BSLASHinput] = ACTIONS(6385), - [anon_sym_BSLASHsubfile] = ACTIONS(6385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6385), - [anon_sym_BSLASHbibliography] = ACTIONS(6385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6385), - [anon_sym_BSLASHincludesvg] = ACTIONS(6385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6385), - [anon_sym_BSLASHimport] = ACTIONS(6385), - [anon_sym_BSLASHsubimport] = ACTIONS(6385), - [anon_sym_BSLASHinputfrom] = ACTIONS(6385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6385), - [anon_sym_BSLASHincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHcaption] = ACTIONS(6385), - [anon_sym_BSLASHcite] = ACTIONS(6385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCite] = ACTIONS(6385), - [anon_sym_BSLASHnocite] = ACTIONS(6385), - [anon_sym_BSLASHcitet] = ACTIONS(6385), - [anon_sym_BSLASHcitep] = ACTIONS(6385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteauthor] = ACTIONS(6385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitetitle] = ACTIONS(6385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteyear] = ACTIONS(6385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitedate] = ACTIONS(6385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteurl] = ACTIONS(6385), - [anon_sym_BSLASHfullcite] = ACTIONS(6385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6385), - [anon_sym_BSLASHcitealt] = ACTIONS(6385), - [anon_sym_BSLASHcitealp] = ACTIONS(6385), - [anon_sym_BSLASHcitetext] = ACTIONS(6385), - [anon_sym_BSLASHparencite] = ACTIONS(6385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHParencite] = ACTIONS(6385), - [anon_sym_BSLASHfootcite] = ACTIONS(6385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6385), - [anon_sym_BSLASHtextcite] = ACTIONS(6385), - [anon_sym_BSLASHTextcite] = ACTIONS(6385), - [anon_sym_BSLASHsmartcite] = ACTIONS(6385), - [anon_sym_BSLASHSmartcite] = ACTIONS(6385), - [anon_sym_BSLASHsupercite] = ACTIONS(6385), - [anon_sym_BSLASHautocite] = ACTIONS(6385), - [anon_sym_BSLASHAutocite] = ACTIONS(6385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHvolcite] = ACTIONS(6385), - [anon_sym_BSLASHVolcite] = ACTIONS(6385), - [anon_sym_BSLASHpvolcite] = ACTIONS(6385), - [anon_sym_BSLASHPvolcite] = ACTIONS(6385), - [anon_sym_BSLASHfvolcite] = ACTIONS(6385), - [anon_sym_BSLASHftvolcite] = ACTIONS(6385), - [anon_sym_BSLASHsvolcite] = ACTIONS(6385), - [anon_sym_BSLASHSvolcite] = ACTIONS(6385), - [anon_sym_BSLASHtvolcite] = ACTIONS(6385), - [anon_sym_BSLASHTvolcite] = ACTIONS(6385), - [anon_sym_BSLASHavolcite] = ACTIONS(6385), - [anon_sym_BSLASHAvolcite] = ACTIONS(6385), - [anon_sym_BSLASHnotecite] = ACTIONS(6385), - [anon_sym_BSLASHNotecite] = ACTIONS(6385), - [anon_sym_BSLASHpnotecite] = ACTIONS(6385), - [anon_sym_BSLASHPnotecite] = ACTIONS(6385), - [anon_sym_BSLASHfnotecite] = ACTIONS(6385), - [anon_sym_BSLASHlabel] = ACTIONS(6385), - [anon_sym_BSLASHref] = ACTIONS(6385), - [anon_sym_BSLASHeqref] = ACTIONS(6385), - [anon_sym_BSLASHvref] = ACTIONS(6385), - [anon_sym_BSLASHVref] = ACTIONS(6385), - [anon_sym_BSLASHautoref] = ACTIONS(6385), - [anon_sym_BSLASHpageref] = ACTIONS(6385), - [anon_sym_BSLASHcref] = ACTIONS(6385), - [anon_sym_BSLASHCref] = ACTIONS(6385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnameCref] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHlabelcref] = ACTIONS(6385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCrefrange] = ACTIONS(6385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnewlabel] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6387), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHdef] = ACTIONS(6385), - [anon_sym_BSLASHlet] = ACTIONS(6385), - [anon_sym_BSLASHleft] = ACTIONS(6385), - [anon_sym_BSLASHbig] = ACTIONS(6385), - [anon_sym_BSLASHBig] = ACTIONS(6385), - [anon_sym_BSLASHbigg] = ACTIONS(6385), - [anon_sym_BSLASHBigg] = ACTIONS(6385), - [anon_sym_BSLASHbigl] = ACTIONS(6385), - [anon_sym_BSLASHBigl] = ACTIONS(6385), - [anon_sym_BSLASHbiggl] = ACTIONS(6385), - [anon_sym_BSLASHBiggl] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6385), - [anon_sym_BSLASHgls] = ACTIONS(6385), - [anon_sym_BSLASHGls] = ACTIONS(6385), - [anon_sym_BSLASHGLS] = ACTIONS(6385), - [anon_sym_BSLASHglspl] = ACTIONS(6385), - [anon_sym_BSLASHGlspl] = ACTIONS(6385), - [anon_sym_BSLASHGLSpl] = ACTIONS(6385), - [anon_sym_BSLASHglsdisp] = ACTIONS(6385), - [anon_sym_BSLASHglslink] = ACTIONS(6385), - [anon_sym_BSLASHglstext] = ACTIONS(6385), - [anon_sym_BSLASHGlstext] = ACTIONS(6385), - [anon_sym_BSLASHGLStext] = ACTIONS(6385), - [anon_sym_BSLASHglsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6385), - [anon_sym_BSLASHglsplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSplural] = ACTIONS(6385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHglsname] = ACTIONS(6385), - [anon_sym_BSLASHGlsname] = ACTIONS(6385), - [anon_sym_BSLASHGLSname] = ACTIONS(6385), - [anon_sym_BSLASHglssymbol] = ACTIONS(6385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6385), - [anon_sym_BSLASHglsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6385), - [anon_sym_BSLASHglsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6385), - [anon_sym_BSLASHglsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6385), - [anon_sym_BSLASHglsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6385), - [anon_sym_BSLASHglsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6385), - [anon_sym_BSLASHnewacronym] = ACTIONS(6385), - [anon_sym_BSLASHacrshort] = ACTIONS(6385), - [anon_sym_BSLASHAcrshort] = ACTIONS(6385), - [anon_sym_BSLASHACRshort] = ACTIONS(6385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6385), - [anon_sym_BSLASHacrlong] = ACTIONS(6385), - [anon_sym_BSLASHAcrlong] = ACTIONS(6385), - [anon_sym_BSLASHACRlong] = ACTIONS(6385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6385), - [anon_sym_BSLASHacrfull] = ACTIONS(6385), - [anon_sym_BSLASHAcrfull] = ACTIONS(6385), - [anon_sym_BSLASHACRfull] = ACTIONS(6385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6385), - [anon_sym_BSLASHacs] = ACTIONS(6385), - [anon_sym_BSLASHAcs] = ACTIONS(6385), - [anon_sym_BSLASHacsp] = ACTIONS(6385), - [anon_sym_BSLASHAcsp] = ACTIONS(6385), - [anon_sym_BSLASHacl] = ACTIONS(6385), - [anon_sym_BSLASHAcl] = ACTIONS(6385), - [anon_sym_BSLASHaclp] = ACTIONS(6385), - [anon_sym_BSLASHAclp] = ACTIONS(6385), - [anon_sym_BSLASHacf] = ACTIONS(6385), - [anon_sym_BSLASHAcf] = ACTIONS(6385), - [anon_sym_BSLASHacfp] = ACTIONS(6385), - [anon_sym_BSLASHAcfp] = ACTIONS(6385), - [anon_sym_BSLASHac] = ACTIONS(6385), - [anon_sym_BSLASHAc] = ACTIONS(6385), - [anon_sym_BSLASHacp] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6385), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6385), - [anon_sym_BSLASHcolor] = ACTIONS(6385), - [anon_sym_BSLASHcolorbox] = ACTIONS(6385), - [anon_sym_BSLASHtextcolor] = ACTIONS(6385), - [anon_sym_BSLASHpagecolor] = ACTIONS(6385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6385), - [anon_sym_BSLASHtext] = ACTIONS(6385), - [anon_sym_BSLASHintertext] = ACTIONS(6385), - [anon_sym_shortintertext] = ACTIONS(6385), - }, - [1339] = { - [sym_command_name] = ACTIONS(6129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(6131), - [anon_sym_RBRACK] = ACTIONS(6131), - [anon_sym_COMMA] = ACTIONS(6131), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_LPAREN] = ACTIONS(6131), - [anon_sym_RPAREN] = ACTIONS(6131), - [anon_sym_BSLASHpart] = ACTIONS(6129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddpart] = ACTIONS(6129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6131), - [anon_sym_BSLASHchapter] = ACTIONS(6129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddchap] = ACTIONS(6129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsection] = ACTIONS(6129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddsec] = ACTIONS(6129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubsection] = ACTIONS(6129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHparagraph] = ACTIONS(6129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6131), - [anon_sym_BSLASHitem] = ACTIONS(6129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(6131), - [sym_word] = ACTIONS(6129), - [sym_placeholder] = ACTIONS(6131), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_BANG] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_SQUOTE] = ACTIONS(6129), - [anon_sym__] = ACTIONS(6131), - [anon_sym_CARET] = ACTIONS(6131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6131), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6131), - [anon_sym_DOLLAR] = ACTIONS(6129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6131), - [anon_sym_BSLASHbegin] = ACTIONS(6129), - [anon_sym_BSLASHtitle] = ACTIONS(6129), - [anon_sym_BSLASHauthor] = ACTIONS(6129), - [anon_sym_BSLASHusepackage] = ACTIONS(6129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6129), - [anon_sym_BSLASHinclude] = ACTIONS(6129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6129), - [anon_sym_BSLASHinput] = ACTIONS(6129), - [anon_sym_BSLASHsubfile] = ACTIONS(6129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6129), - [anon_sym_BSLASHbibliography] = ACTIONS(6129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6129), - [anon_sym_BSLASHincludesvg] = ACTIONS(6129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6129), - [anon_sym_BSLASHimport] = ACTIONS(6129), - [anon_sym_BSLASHsubimport] = ACTIONS(6129), - [anon_sym_BSLASHinputfrom] = ACTIONS(6129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6129), - [anon_sym_BSLASHincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHcaption] = ACTIONS(6129), - [anon_sym_BSLASHcite] = ACTIONS(6129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCite] = ACTIONS(6129), - [anon_sym_BSLASHnocite] = ACTIONS(6129), - [anon_sym_BSLASHcitet] = ACTIONS(6129), - [anon_sym_BSLASHcitep] = ACTIONS(6129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteauthor] = ACTIONS(6129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitetitle] = ACTIONS(6129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteyear] = ACTIONS(6129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitedate] = ACTIONS(6129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteurl] = ACTIONS(6129), - [anon_sym_BSLASHfullcite] = ACTIONS(6129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6129), - [anon_sym_BSLASHcitealt] = ACTIONS(6129), - [anon_sym_BSLASHcitealp] = ACTIONS(6129), - [anon_sym_BSLASHcitetext] = ACTIONS(6129), - [anon_sym_BSLASHparencite] = ACTIONS(6129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHParencite] = ACTIONS(6129), - [anon_sym_BSLASHfootcite] = ACTIONS(6129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6129), - [anon_sym_BSLASHtextcite] = ACTIONS(6129), - [anon_sym_BSLASHTextcite] = ACTIONS(6129), - [anon_sym_BSLASHsmartcite] = ACTIONS(6129), - [anon_sym_BSLASHSmartcite] = ACTIONS(6129), - [anon_sym_BSLASHsupercite] = ACTIONS(6129), - [anon_sym_BSLASHautocite] = ACTIONS(6129), - [anon_sym_BSLASHAutocite] = ACTIONS(6129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHvolcite] = ACTIONS(6129), - [anon_sym_BSLASHVolcite] = ACTIONS(6129), - [anon_sym_BSLASHpvolcite] = ACTIONS(6129), - [anon_sym_BSLASHPvolcite] = ACTIONS(6129), - [anon_sym_BSLASHfvolcite] = ACTIONS(6129), - [anon_sym_BSLASHftvolcite] = ACTIONS(6129), - [anon_sym_BSLASHsvolcite] = ACTIONS(6129), - [anon_sym_BSLASHSvolcite] = ACTIONS(6129), - [anon_sym_BSLASHtvolcite] = ACTIONS(6129), - [anon_sym_BSLASHTvolcite] = ACTIONS(6129), - [anon_sym_BSLASHavolcite] = ACTIONS(6129), - [anon_sym_BSLASHAvolcite] = ACTIONS(6129), - [anon_sym_BSLASHnotecite] = ACTIONS(6129), - [anon_sym_BSLASHNotecite] = ACTIONS(6129), - [anon_sym_BSLASHpnotecite] = ACTIONS(6129), - [anon_sym_BSLASHPnotecite] = ACTIONS(6129), - [anon_sym_BSLASHfnotecite] = ACTIONS(6129), - [anon_sym_BSLASHlabel] = ACTIONS(6129), - [anon_sym_BSLASHref] = ACTIONS(6129), - [anon_sym_BSLASHeqref] = ACTIONS(6129), - [anon_sym_BSLASHvref] = ACTIONS(6129), - [anon_sym_BSLASHVref] = ACTIONS(6129), - [anon_sym_BSLASHautoref] = ACTIONS(6129), - [anon_sym_BSLASHpageref] = ACTIONS(6129), - [anon_sym_BSLASHcref] = ACTIONS(6129), - [anon_sym_BSLASHCref] = ACTIONS(6129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnameCref] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHlabelcref] = ACTIONS(6129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCrefrange] = ACTIONS(6129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnewlabel] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6131), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHdef] = ACTIONS(6129), - [anon_sym_BSLASHlet] = ACTIONS(6129), - [anon_sym_BSLASHleft] = ACTIONS(6129), - [anon_sym_BSLASHbig] = ACTIONS(6129), - [anon_sym_BSLASHBig] = ACTIONS(6129), - [anon_sym_BSLASHbigg] = ACTIONS(6129), - [anon_sym_BSLASHBigg] = ACTIONS(6129), - [anon_sym_BSLASHbigl] = ACTIONS(6129), - [anon_sym_BSLASHBigl] = ACTIONS(6129), - [anon_sym_BSLASHbiggl] = ACTIONS(6129), - [anon_sym_BSLASHBiggl] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6129), - [anon_sym_BSLASHgls] = ACTIONS(6129), - [anon_sym_BSLASHGls] = ACTIONS(6129), - [anon_sym_BSLASHGLS] = ACTIONS(6129), - [anon_sym_BSLASHglspl] = ACTIONS(6129), - [anon_sym_BSLASHGlspl] = ACTIONS(6129), - [anon_sym_BSLASHGLSpl] = ACTIONS(6129), - [anon_sym_BSLASHglsdisp] = ACTIONS(6129), - [anon_sym_BSLASHglslink] = ACTIONS(6129), - [anon_sym_BSLASHglstext] = ACTIONS(6129), - [anon_sym_BSLASHGlstext] = ACTIONS(6129), - [anon_sym_BSLASHGLStext] = ACTIONS(6129), - [anon_sym_BSLASHglsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6129), - [anon_sym_BSLASHglsplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSplural] = ACTIONS(6129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHglsname] = ACTIONS(6129), - [anon_sym_BSLASHGlsname] = ACTIONS(6129), - [anon_sym_BSLASHGLSname] = ACTIONS(6129), - [anon_sym_BSLASHglssymbol] = ACTIONS(6129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6129), - [anon_sym_BSLASHglsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6129), - [anon_sym_BSLASHglsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6129), - [anon_sym_BSLASHglsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6129), - [anon_sym_BSLASHglsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6129), - [anon_sym_BSLASHglsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6129), - [anon_sym_BSLASHnewacronym] = ACTIONS(6129), - [anon_sym_BSLASHacrshort] = ACTIONS(6129), - [anon_sym_BSLASHAcrshort] = ACTIONS(6129), - [anon_sym_BSLASHACRshort] = ACTIONS(6129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6129), - [anon_sym_BSLASHacrlong] = ACTIONS(6129), - [anon_sym_BSLASHAcrlong] = ACTIONS(6129), - [anon_sym_BSLASHACRlong] = ACTIONS(6129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6129), - [anon_sym_BSLASHacrfull] = ACTIONS(6129), - [anon_sym_BSLASHAcrfull] = ACTIONS(6129), - [anon_sym_BSLASHACRfull] = ACTIONS(6129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6129), - [anon_sym_BSLASHacs] = ACTIONS(6129), - [anon_sym_BSLASHAcs] = ACTIONS(6129), - [anon_sym_BSLASHacsp] = ACTIONS(6129), - [anon_sym_BSLASHAcsp] = ACTIONS(6129), - [anon_sym_BSLASHacl] = ACTIONS(6129), - [anon_sym_BSLASHAcl] = ACTIONS(6129), - [anon_sym_BSLASHaclp] = ACTIONS(6129), - [anon_sym_BSLASHAclp] = ACTIONS(6129), - [anon_sym_BSLASHacf] = ACTIONS(6129), - [anon_sym_BSLASHAcf] = ACTIONS(6129), - [anon_sym_BSLASHacfp] = ACTIONS(6129), - [anon_sym_BSLASHAcfp] = ACTIONS(6129), - [anon_sym_BSLASHac] = ACTIONS(6129), - [anon_sym_BSLASHAc] = ACTIONS(6129), - [anon_sym_BSLASHacp] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6129), - [anon_sym_BSLASHcolor] = ACTIONS(6129), - [anon_sym_BSLASHcolorbox] = ACTIONS(6129), - [anon_sym_BSLASHtextcolor] = ACTIONS(6129), - [anon_sym_BSLASHpagecolor] = ACTIONS(6129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6129), - [anon_sym_BSLASHtext] = ACTIONS(6129), - [anon_sym_BSLASHintertext] = ACTIONS(6129), - [anon_sym_shortintertext] = ACTIONS(6129), - }, - [1340] = { - [sym_command_name] = ACTIONS(6133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6133), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_EQ] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_BSLASHpart] = ACTIONS(6133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddpart] = ACTIONS(6133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6135), - [anon_sym_BSLASHchapter] = ACTIONS(6133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddchap] = ACTIONS(6133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsection] = ACTIONS(6133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddsec] = ACTIONS(6133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubsection] = ACTIONS(6133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHparagraph] = ACTIONS(6133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6135), - [anon_sym_BSLASHitem] = ACTIONS(6133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6135), - [anon_sym_LBRACE] = ACTIONS(6135), - [sym_word] = ACTIONS(6133), - [sym_placeholder] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6135), - [anon_sym_DASH] = ACTIONS(6135), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6133), - [anon_sym_GT] = ACTIONS(6133), - [anon_sym_BANG] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6133), - [anon_sym_COLON] = ACTIONS(6133), - [anon_sym_SQUOTE] = ACTIONS(6133), - [anon_sym__] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6135), - [anon_sym_DOLLAR] = ACTIONS(6133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6135), - [anon_sym_BSLASHbegin] = ACTIONS(6133), - [anon_sym_BSLASHtitle] = ACTIONS(6133), - [anon_sym_BSLASHauthor] = ACTIONS(6133), - [anon_sym_BSLASHusepackage] = ACTIONS(6133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6133), - [anon_sym_BSLASHinclude] = ACTIONS(6133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6133), - [anon_sym_BSLASHinput] = ACTIONS(6133), - [anon_sym_BSLASHsubfile] = ACTIONS(6133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6133), - [anon_sym_BSLASHbibliography] = ACTIONS(6133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6133), - [anon_sym_BSLASHincludesvg] = ACTIONS(6133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6133), - [anon_sym_BSLASHimport] = ACTIONS(6133), - [anon_sym_BSLASHsubimport] = ACTIONS(6133), - [anon_sym_BSLASHinputfrom] = ACTIONS(6133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6133), - [anon_sym_BSLASHincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHcaption] = ACTIONS(6133), - [anon_sym_BSLASHcite] = ACTIONS(6133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCite] = ACTIONS(6133), - [anon_sym_BSLASHnocite] = ACTIONS(6133), - [anon_sym_BSLASHcitet] = ACTIONS(6133), - [anon_sym_BSLASHcitep] = ACTIONS(6133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteauthor] = ACTIONS(6133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitetitle] = ACTIONS(6133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteyear] = ACTIONS(6133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitedate] = ACTIONS(6133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteurl] = ACTIONS(6133), - [anon_sym_BSLASHfullcite] = ACTIONS(6133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6133), - [anon_sym_BSLASHcitealt] = ACTIONS(6133), - [anon_sym_BSLASHcitealp] = ACTIONS(6133), - [anon_sym_BSLASHcitetext] = ACTIONS(6133), - [anon_sym_BSLASHparencite] = ACTIONS(6133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHParencite] = ACTIONS(6133), - [anon_sym_BSLASHfootcite] = ACTIONS(6133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6133), - [anon_sym_BSLASHtextcite] = ACTIONS(6133), - [anon_sym_BSLASHTextcite] = ACTIONS(6133), - [anon_sym_BSLASHsmartcite] = ACTIONS(6133), - [anon_sym_BSLASHSmartcite] = ACTIONS(6133), - [anon_sym_BSLASHsupercite] = ACTIONS(6133), - [anon_sym_BSLASHautocite] = ACTIONS(6133), - [anon_sym_BSLASHAutocite] = ACTIONS(6133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHvolcite] = ACTIONS(6133), - [anon_sym_BSLASHVolcite] = ACTIONS(6133), - [anon_sym_BSLASHpvolcite] = ACTIONS(6133), - [anon_sym_BSLASHPvolcite] = ACTIONS(6133), - [anon_sym_BSLASHfvolcite] = ACTIONS(6133), - [anon_sym_BSLASHftvolcite] = ACTIONS(6133), - [anon_sym_BSLASHsvolcite] = ACTIONS(6133), - [anon_sym_BSLASHSvolcite] = ACTIONS(6133), - [anon_sym_BSLASHtvolcite] = ACTIONS(6133), - [anon_sym_BSLASHTvolcite] = ACTIONS(6133), - [anon_sym_BSLASHavolcite] = ACTIONS(6133), - [anon_sym_BSLASHAvolcite] = ACTIONS(6133), - [anon_sym_BSLASHnotecite] = ACTIONS(6133), - [anon_sym_BSLASHNotecite] = ACTIONS(6133), - [anon_sym_BSLASHpnotecite] = ACTIONS(6133), - [anon_sym_BSLASHPnotecite] = ACTIONS(6133), - [anon_sym_BSLASHfnotecite] = ACTIONS(6133), - [anon_sym_BSLASHlabel] = ACTIONS(6133), - [anon_sym_BSLASHref] = ACTIONS(6133), - [anon_sym_BSLASHeqref] = ACTIONS(6133), - [anon_sym_BSLASHvref] = ACTIONS(6133), - [anon_sym_BSLASHVref] = ACTIONS(6133), - [anon_sym_BSLASHautoref] = ACTIONS(6133), - [anon_sym_BSLASHpageref] = ACTIONS(6133), - [anon_sym_BSLASHcref] = ACTIONS(6133), - [anon_sym_BSLASHCref] = ACTIONS(6133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnameCref] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHlabelcref] = ACTIONS(6133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCrefrange] = ACTIONS(6133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnewlabel] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6135), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHdef] = ACTIONS(6133), - [anon_sym_BSLASHlet] = ACTIONS(6133), - [anon_sym_BSLASHleft] = ACTIONS(6133), - [anon_sym_BSLASHbig] = ACTIONS(6133), - [anon_sym_BSLASHBig] = ACTIONS(6133), - [anon_sym_BSLASHbigg] = ACTIONS(6133), - [anon_sym_BSLASHBigg] = ACTIONS(6133), - [anon_sym_BSLASHbigl] = ACTIONS(6133), - [anon_sym_BSLASHBigl] = ACTIONS(6133), - [anon_sym_BSLASHbiggl] = ACTIONS(6133), - [anon_sym_BSLASHBiggl] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6133), - [anon_sym_BSLASHgls] = ACTIONS(6133), - [anon_sym_BSLASHGls] = ACTIONS(6133), - [anon_sym_BSLASHGLS] = ACTIONS(6133), - [anon_sym_BSLASHglspl] = ACTIONS(6133), - [anon_sym_BSLASHGlspl] = ACTIONS(6133), - [anon_sym_BSLASHGLSpl] = ACTIONS(6133), - [anon_sym_BSLASHglsdisp] = ACTIONS(6133), - [anon_sym_BSLASHglslink] = ACTIONS(6133), - [anon_sym_BSLASHglstext] = ACTIONS(6133), - [anon_sym_BSLASHGlstext] = ACTIONS(6133), - [anon_sym_BSLASHGLStext] = ACTIONS(6133), - [anon_sym_BSLASHglsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6133), - [anon_sym_BSLASHglsplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSplural] = ACTIONS(6133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHglsname] = ACTIONS(6133), - [anon_sym_BSLASHGlsname] = ACTIONS(6133), - [anon_sym_BSLASHGLSname] = ACTIONS(6133), - [anon_sym_BSLASHglssymbol] = ACTIONS(6133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6133), - [anon_sym_BSLASHglsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6133), - [anon_sym_BSLASHglsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6133), - [anon_sym_BSLASHglsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6133), - [anon_sym_BSLASHglsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6133), - [anon_sym_BSLASHglsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6133), - [anon_sym_BSLASHnewacronym] = ACTIONS(6133), - [anon_sym_BSLASHacrshort] = ACTIONS(6133), - [anon_sym_BSLASHAcrshort] = ACTIONS(6133), - [anon_sym_BSLASHACRshort] = ACTIONS(6133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6133), - [anon_sym_BSLASHacrlong] = ACTIONS(6133), - [anon_sym_BSLASHAcrlong] = ACTIONS(6133), - [anon_sym_BSLASHACRlong] = ACTIONS(6133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6133), - [anon_sym_BSLASHacrfull] = ACTIONS(6133), - [anon_sym_BSLASHAcrfull] = ACTIONS(6133), - [anon_sym_BSLASHACRfull] = ACTIONS(6133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6133), - [anon_sym_BSLASHacs] = ACTIONS(6133), - [anon_sym_BSLASHAcs] = ACTIONS(6133), - [anon_sym_BSLASHacsp] = ACTIONS(6133), - [anon_sym_BSLASHAcsp] = ACTIONS(6133), - [anon_sym_BSLASHacl] = ACTIONS(6133), - [anon_sym_BSLASHAcl] = ACTIONS(6133), - [anon_sym_BSLASHaclp] = ACTIONS(6133), - [anon_sym_BSLASHAclp] = ACTIONS(6133), - [anon_sym_BSLASHacf] = ACTIONS(6133), - [anon_sym_BSLASHAcf] = ACTIONS(6133), - [anon_sym_BSLASHacfp] = ACTIONS(6133), - [anon_sym_BSLASHAcfp] = ACTIONS(6133), - [anon_sym_BSLASHac] = ACTIONS(6133), - [anon_sym_BSLASHAc] = ACTIONS(6133), - [anon_sym_BSLASHacp] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6133), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6133), - [anon_sym_BSLASHcolor] = ACTIONS(6133), - [anon_sym_BSLASHcolorbox] = ACTIONS(6133), - [anon_sym_BSLASHtextcolor] = ACTIONS(6133), - [anon_sym_BSLASHpagecolor] = ACTIONS(6133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6133), - [anon_sym_BSLASHtext] = ACTIONS(6133), - [anon_sym_BSLASHintertext] = ACTIONS(6133), - [anon_sym_shortintertext] = ACTIONS(6133), - }, - [1341] = { - [sym_command_name] = ACTIONS(6381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(6383), - [anon_sym_RBRACK] = ACTIONS(6383), - [anon_sym_COMMA] = ACTIONS(6383), - [anon_sym_EQ] = ACTIONS(6383), - [anon_sym_LPAREN] = ACTIONS(6383), - [anon_sym_RPAREN] = ACTIONS(6383), - [anon_sym_BSLASHpart] = ACTIONS(6381), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddpart] = ACTIONS(6381), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6383), - [anon_sym_BSLASHchapter] = ACTIONS(6381), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddchap] = ACTIONS(6381), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsection] = ACTIONS(6381), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHaddsec] = ACTIONS(6381), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubsection] = ACTIONS(6381), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6381), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6383), - [anon_sym_BSLASHparagraph] = ACTIONS(6381), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6383), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6381), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6383), - [anon_sym_BSLASHitem] = ACTIONS(6381), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6383), - [anon_sym_LBRACE] = ACTIONS(6383), - [sym_word] = ACTIONS(6381), - [sym_placeholder] = ACTIONS(6383), - [anon_sym_PLUS] = ACTIONS(6383), - [anon_sym_DASH] = ACTIONS(6383), - [anon_sym_STAR] = ACTIONS(6383), - [anon_sym_SLASH] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_COLON] = ACTIONS(6381), - [anon_sym_SQUOTE] = ACTIONS(6381), - [anon_sym__] = ACTIONS(6383), - [anon_sym_CARET] = ACTIONS(6383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6383), - [anon_sym_DOLLAR] = ACTIONS(6381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6383), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6383), - [anon_sym_BSLASHbegin] = ACTIONS(6381), - [anon_sym_BSLASHtitle] = ACTIONS(6381), - [anon_sym_BSLASHauthor] = ACTIONS(6381), - [anon_sym_BSLASHusepackage] = ACTIONS(6381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6381), - [anon_sym_BSLASHinclude] = ACTIONS(6381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6381), - [anon_sym_BSLASHinput] = ACTIONS(6381), - [anon_sym_BSLASHsubfile] = ACTIONS(6381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6381), - [anon_sym_BSLASHbibliography] = ACTIONS(6381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6381), - [anon_sym_BSLASHincludesvg] = ACTIONS(6381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6381), - [anon_sym_BSLASHimport] = ACTIONS(6381), - [anon_sym_BSLASHsubimport] = ACTIONS(6381), - [anon_sym_BSLASHinputfrom] = ACTIONS(6381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6381), - [anon_sym_BSLASHincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHcaption] = ACTIONS(6381), - [anon_sym_BSLASHcite] = ACTIONS(6381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCite] = ACTIONS(6381), - [anon_sym_BSLASHnocite] = ACTIONS(6381), - [anon_sym_BSLASHcitet] = ACTIONS(6381), - [anon_sym_BSLASHcitep] = ACTIONS(6381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteauthor] = ACTIONS(6381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitetitle] = ACTIONS(6381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteyear] = ACTIONS(6381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitedate] = ACTIONS(6381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteurl] = ACTIONS(6381), - [anon_sym_BSLASHfullcite] = ACTIONS(6381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6381), - [anon_sym_BSLASHcitealt] = ACTIONS(6381), - [anon_sym_BSLASHcitealp] = ACTIONS(6381), - [anon_sym_BSLASHcitetext] = ACTIONS(6381), - [anon_sym_BSLASHparencite] = ACTIONS(6381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHParencite] = ACTIONS(6381), - [anon_sym_BSLASHfootcite] = ACTIONS(6381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6381), - [anon_sym_BSLASHtextcite] = ACTIONS(6381), - [anon_sym_BSLASHTextcite] = ACTIONS(6381), - [anon_sym_BSLASHsmartcite] = ACTIONS(6381), - [anon_sym_BSLASHSmartcite] = ACTIONS(6381), - [anon_sym_BSLASHsupercite] = ACTIONS(6381), - [anon_sym_BSLASHautocite] = ACTIONS(6381), - [anon_sym_BSLASHAutocite] = ACTIONS(6381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHvolcite] = ACTIONS(6381), - [anon_sym_BSLASHVolcite] = ACTIONS(6381), - [anon_sym_BSLASHpvolcite] = ACTIONS(6381), - [anon_sym_BSLASHPvolcite] = ACTIONS(6381), - [anon_sym_BSLASHfvolcite] = ACTIONS(6381), - [anon_sym_BSLASHftvolcite] = ACTIONS(6381), - [anon_sym_BSLASHsvolcite] = ACTIONS(6381), - [anon_sym_BSLASHSvolcite] = ACTIONS(6381), - [anon_sym_BSLASHtvolcite] = ACTIONS(6381), - [anon_sym_BSLASHTvolcite] = ACTIONS(6381), - [anon_sym_BSLASHavolcite] = ACTIONS(6381), - [anon_sym_BSLASHAvolcite] = ACTIONS(6381), - [anon_sym_BSLASHnotecite] = ACTIONS(6381), - [anon_sym_BSLASHNotecite] = ACTIONS(6381), - [anon_sym_BSLASHpnotecite] = ACTIONS(6381), - [anon_sym_BSLASHPnotecite] = ACTIONS(6381), - [anon_sym_BSLASHfnotecite] = ACTIONS(6381), - [anon_sym_BSLASHlabel] = ACTIONS(6381), - [anon_sym_BSLASHref] = ACTIONS(6381), - [anon_sym_BSLASHeqref] = ACTIONS(6381), - [anon_sym_BSLASHvref] = ACTIONS(6381), - [anon_sym_BSLASHVref] = ACTIONS(6381), - [anon_sym_BSLASHautoref] = ACTIONS(6381), - [anon_sym_BSLASHpageref] = ACTIONS(6381), - [anon_sym_BSLASHcref] = ACTIONS(6381), - [anon_sym_BSLASHCref] = ACTIONS(6381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnameCref] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHlabelcref] = ACTIONS(6381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCrefrange] = ACTIONS(6381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnewlabel] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6383), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHdef] = ACTIONS(6381), - [anon_sym_BSLASHlet] = ACTIONS(6381), - [anon_sym_BSLASHleft] = ACTIONS(6381), - [anon_sym_BSLASHbig] = ACTIONS(6381), - [anon_sym_BSLASHBig] = ACTIONS(6381), - [anon_sym_BSLASHbigg] = ACTIONS(6381), - [anon_sym_BSLASHBigg] = ACTIONS(6381), - [anon_sym_BSLASHbigl] = ACTIONS(6381), - [anon_sym_BSLASHBigl] = ACTIONS(6381), - [anon_sym_BSLASHbiggl] = ACTIONS(6381), - [anon_sym_BSLASHBiggl] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6381), - [anon_sym_BSLASHgls] = ACTIONS(6381), - [anon_sym_BSLASHGls] = ACTIONS(6381), - [anon_sym_BSLASHGLS] = ACTIONS(6381), - [anon_sym_BSLASHglspl] = ACTIONS(6381), - [anon_sym_BSLASHGlspl] = ACTIONS(6381), - [anon_sym_BSLASHGLSpl] = ACTIONS(6381), - [anon_sym_BSLASHglsdisp] = ACTIONS(6381), - [anon_sym_BSLASHglslink] = ACTIONS(6381), - [anon_sym_BSLASHglstext] = ACTIONS(6381), - [anon_sym_BSLASHGlstext] = ACTIONS(6381), - [anon_sym_BSLASHGLStext] = ACTIONS(6381), - [anon_sym_BSLASHglsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6381), - [anon_sym_BSLASHglsplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSplural] = ACTIONS(6381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHglsname] = ACTIONS(6381), - [anon_sym_BSLASHGlsname] = ACTIONS(6381), - [anon_sym_BSLASHGLSname] = ACTIONS(6381), - [anon_sym_BSLASHglssymbol] = ACTIONS(6381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6381), - [anon_sym_BSLASHglsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6381), - [anon_sym_BSLASHglsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6381), - [anon_sym_BSLASHglsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6381), - [anon_sym_BSLASHglsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6381), - [anon_sym_BSLASHglsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6381), - [anon_sym_BSLASHnewacronym] = ACTIONS(6381), - [anon_sym_BSLASHacrshort] = ACTIONS(6381), - [anon_sym_BSLASHAcrshort] = ACTIONS(6381), - [anon_sym_BSLASHACRshort] = ACTIONS(6381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6381), - [anon_sym_BSLASHacrlong] = ACTIONS(6381), - [anon_sym_BSLASHAcrlong] = ACTIONS(6381), - [anon_sym_BSLASHACRlong] = ACTIONS(6381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6381), - [anon_sym_BSLASHacrfull] = ACTIONS(6381), - [anon_sym_BSLASHAcrfull] = ACTIONS(6381), - [anon_sym_BSLASHACRfull] = ACTIONS(6381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6381), - [anon_sym_BSLASHacs] = ACTIONS(6381), - [anon_sym_BSLASHAcs] = ACTIONS(6381), - [anon_sym_BSLASHacsp] = ACTIONS(6381), - [anon_sym_BSLASHAcsp] = ACTIONS(6381), - [anon_sym_BSLASHacl] = ACTIONS(6381), - [anon_sym_BSLASHAcl] = ACTIONS(6381), - [anon_sym_BSLASHaclp] = ACTIONS(6381), - [anon_sym_BSLASHAclp] = ACTIONS(6381), - [anon_sym_BSLASHacf] = ACTIONS(6381), - [anon_sym_BSLASHAcf] = ACTIONS(6381), - [anon_sym_BSLASHacfp] = ACTIONS(6381), - [anon_sym_BSLASHAcfp] = ACTIONS(6381), - [anon_sym_BSLASHac] = ACTIONS(6381), - [anon_sym_BSLASHAc] = ACTIONS(6381), - [anon_sym_BSLASHacp] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6381), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6381), - [anon_sym_BSLASHcolor] = ACTIONS(6381), - [anon_sym_BSLASHcolorbox] = ACTIONS(6381), - [anon_sym_BSLASHtextcolor] = ACTIONS(6381), - [anon_sym_BSLASHpagecolor] = ACTIONS(6381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6381), - [anon_sym_BSLASHtext] = ACTIONS(6381), - [anon_sym_BSLASHintertext] = ACTIONS(6381), - [anon_sym_shortintertext] = ACTIONS(6381), - }, - [1342] = { - [sym_command_name] = ACTIONS(6377), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6379), - [anon_sym_RBRACK] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_EQ] = ACTIONS(6379), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_BSLASHpart] = ACTIONS(6377), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddpart] = ACTIONS(6377), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6379), - [anon_sym_BSLASHchapter] = ACTIONS(6377), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddchap] = ACTIONS(6377), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsection] = ACTIONS(6377), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHaddsec] = ACTIONS(6377), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubsection] = ACTIONS(6377), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6377), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6379), - [anon_sym_BSLASHparagraph] = ACTIONS(6377), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6379), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6377), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6379), - [anon_sym_BSLASHitem] = ACTIONS(6377), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6379), - [anon_sym_LBRACE] = ACTIONS(6379), - [sym_word] = ACTIONS(6377), - [sym_placeholder] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_SQUOTE] = ACTIONS(6377), - [anon_sym__] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6379), - [anon_sym_DOLLAR] = ACTIONS(6377), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6379), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6379), - [anon_sym_BSLASHbegin] = ACTIONS(6377), - [anon_sym_BSLASHtitle] = ACTIONS(6377), - [anon_sym_BSLASHauthor] = ACTIONS(6377), - [anon_sym_BSLASHusepackage] = ACTIONS(6377), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6377), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6377), - [anon_sym_BSLASHinclude] = ACTIONS(6377), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6377), - [anon_sym_BSLASHinput] = ACTIONS(6377), - [anon_sym_BSLASHsubfile] = ACTIONS(6377), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6377), - [anon_sym_BSLASHbibliography] = ACTIONS(6377), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6377), - [anon_sym_BSLASHincludesvg] = ACTIONS(6377), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6377), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6377), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6377), - [anon_sym_BSLASHimport] = ACTIONS(6377), - [anon_sym_BSLASHsubimport] = ACTIONS(6377), - [anon_sym_BSLASHinputfrom] = ACTIONS(6377), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6377), - [anon_sym_BSLASHincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHcaption] = ACTIONS(6377), - [anon_sym_BSLASHcite] = ACTIONS(6377), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCite] = ACTIONS(6377), - [anon_sym_BSLASHnocite] = ACTIONS(6377), - [anon_sym_BSLASHcitet] = ACTIONS(6377), - [anon_sym_BSLASHcitep] = ACTIONS(6377), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteauthor] = ACTIONS(6377), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6377), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitetitle] = ACTIONS(6377), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteyear] = ACTIONS(6377), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitedate] = ACTIONS(6377), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteurl] = ACTIONS(6377), - [anon_sym_BSLASHfullcite] = ACTIONS(6377), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6377), - [anon_sym_BSLASHcitealt] = ACTIONS(6377), - [anon_sym_BSLASHcitealp] = ACTIONS(6377), - [anon_sym_BSLASHcitetext] = ACTIONS(6377), - [anon_sym_BSLASHparencite] = ACTIONS(6377), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHParencite] = ACTIONS(6377), - [anon_sym_BSLASHfootcite] = ACTIONS(6377), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6377), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6377), - [anon_sym_BSLASHtextcite] = ACTIONS(6377), - [anon_sym_BSLASHTextcite] = ACTIONS(6377), - [anon_sym_BSLASHsmartcite] = ACTIONS(6377), - [anon_sym_BSLASHSmartcite] = ACTIONS(6377), - [anon_sym_BSLASHsupercite] = ACTIONS(6377), - [anon_sym_BSLASHautocite] = ACTIONS(6377), - [anon_sym_BSLASHAutocite] = ACTIONS(6377), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHvolcite] = ACTIONS(6377), - [anon_sym_BSLASHVolcite] = ACTIONS(6377), - [anon_sym_BSLASHpvolcite] = ACTIONS(6377), - [anon_sym_BSLASHPvolcite] = ACTIONS(6377), - [anon_sym_BSLASHfvolcite] = ACTIONS(6377), - [anon_sym_BSLASHftvolcite] = ACTIONS(6377), - [anon_sym_BSLASHsvolcite] = ACTIONS(6377), - [anon_sym_BSLASHSvolcite] = ACTIONS(6377), - [anon_sym_BSLASHtvolcite] = ACTIONS(6377), - [anon_sym_BSLASHTvolcite] = ACTIONS(6377), - [anon_sym_BSLASHavolcite] = ACTIONS(6377), - [anon_sym_BSLASHAvolcite] = ACTIONS(6377), - [anon_sym_BSLASHnotecite] = ACTIONS(6377), - [anon_sym_BSLASHNotecite] = ACTIONS(6377), - [anon_sym_BSLASHpnotecite] = ACTIONS(6377), - [anon_sym_BSLASHPnotecite] = ACTIONS(6377), - [anon_sym_BSLASHfnotecite] = ACTIONS(6377), - [anon_sym_BSLASHlabel] = ACTIONS(6377), - [anon_sym_BSLASHref] = ACTIONS(6377), - [anon_sym_BSLASHeqref] = ACTIONS(6377), - [anon_sym_BSLASHvref] = ACTIONS(6377), - [anon_sym_BSLASHVref] = ACTIONS(6377), - [anon_sym_BSLASHautoref] = ACTIONS(6377), - [anon_sym_BSLASHpageref] = ACTIONS(6377), - [anon_sym_BSLASHcref] = ACTIONS(6377), - [anon_sym_BSLASHCref] = ACTIONS(6377), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnameCref] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHlabelcref] = ACTIONS(6377), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCrefrange] = ACTIONS(6377), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnewlabel] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6377), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6377), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6379), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHdef] = ACTIONS(6377), - [anon_sym_BSLASHlet] = ACTIONS(6377), - [anon_sym_BSLASHleft] = ACTIONS(6377), - [anon_sym_BSLASHbig] = ACTIONS(6377), - [anon_sym_BSLASHBig] = ACTIONS(6377), - [anon_sym_BSLASHbigg] = ACTIONS(6377), - [anon_sym_BSLASHBigg] = ACTIONS(6377), - [anon_sym_BSLASHbigl] = ACTIONS(6377), - [anon_sym_BSLASHBigl] = ACTIONS(6377), - [anon_sym_BSLASHbiggl] = ACTIONS(6377), - [anon_sym_BSLASHBiggl] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6377), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6377), - [anon_sym_BSLASHgls] = ACTIONS(6377), - [anon_sym_BSLASHGls] = ACTIONS(6377), - [anon_sym_BSLASHGLS] = ACTIONS(6377), - [anon_sym_BSLASHglspl] = ACTIONS(6377), - [anon_sym_BSLASHGlspl] = ACTIONS(6377), - [anon_sym_BSLASHGLSpl] = ACTIONS(6377), - [anon_sym_BSLASHglsdisp] = ACTIONS(6377), - [anon_sym_BSLASHglslink] = ACTIONS(6377), - [anon_sym_BSLASHglstext] = ACTIONS(6377), - [anon_sym_BSLASHGlstext] = ACTIONS(6377), - [anon_sym_BSLASHGLStext] = ACTIONS(6377), - [anon_sym_BSLASHglsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6377), - [anon_sym_BSLASHglsplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSplural] = ACTIONS(6377), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHglsname] = ACTIONS(6377), - [anon_sym_BSLASHGlsname] = ACTIONS(6377), - [anon_sym_BSLASHGLSname] = ACTIONS(6377), - [anon_sym_BSLASHglssymbol] = ACTIONS(6377), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6377), - [anon_sym_BSLASHglsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6377), - [anon_sym_BSLASHglsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6377), - [anon_sym_BSLASHglsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6377), - [anon_sym_BSLASHglsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6377), - [anon_sym_BSLASHglsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6377), - [anon_sym_BSLASHnewacronym] = ACTIONS(6377), - [anon_sym_BSLASHacrshort] = ACTIONS(6377), - [anon_sym_BSLASHAcrshort] = ACTIONS(6377), - [anon_sym_BSLASHACRshort] = ACTIONS(6377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6377), - [anon_sym_BSLASHacrlong] = ACTIONS(6377), - [anon_sym_BSLASHAcrlong] = ACTIONS(6377), - [anon_sym_BSLASHACRlong] = ACTIONS(6377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6377), - [anon_sym_BSLASHacrfull] = ACTIONS(6377), - [anon_sym_BSLASHAcrfull] = ACTIONS(6377), - [anon_sym_BSLASHACRfull] = ACTIONS(6377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6377), - [anon_sym_BSLASHacs] = ACTIONS(6377), - [anon_sym_BSLASHAcs] = ACTIONS(6377), - [anon_sym_BSLASHacsp] = ACTIONS(6377), - [anon_sym_BSLASHAcsp] = ACTIONS(6377), - [anon_sym_BSLASHacl] = ACTIONS(6377), - [anon_sym_BSLASHAcl] = ACTIONS(6377), - [anon_sym_BSLASHaclp] = ACTIONS(6377), - [anon_sym_BSLASHAclp] = ACTIONS(6377), - [anon_sym_BSLASHacf] = ACTIONS(6377), - [anon_sym_BSLASHAcf] = ACTIONS(6377), - [anon_sym_BSLASHacfp] = ACTIONS(6377), - [anon_sym_BSLASHAcfp] = ACTIONS(6377), - [anon_sym_BSLASHac] = ACTIONS(6377), - [anon_sym_BSLASHAc] = ACTIONS(6377), - [anon_sym_BSLASHacp] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6377), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6377), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6377), - [anon_sym_BSLASHcolor] = ACTIONS(6377), - [anon_sym_BSLASHcolorbox] = ACTIONS(6377), - [anon_sym_BSLASHtextcolor] = ACTIONS(6377), - [anon_sym_BSLASHpagecolor] = ACTIONS(6377), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6377), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6377), - [anon_sym_BSLASHtext] = ACTIONS(6377), - [anon_sym_BSLASHintertext] = ACTIONS(6377), - [anon_sym_shortintertext] = ACTIONS(6377), - }, - [1343] = { - [sym_command_name] = ACTIONS(6373), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6375), - [anon_sym_RBRACK] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_EQ] = ACTIONS(6375), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_RPAREN] = ACTIONS(6375), - [anon_sym_BSLASHpart] = ACTIONS(6373), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddpart] = ACTIONS(6373), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6375), - [anon_sym_BSLASHchapter] = ACTIONS(6373), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddchap] = ACTIONS(6373), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsection] = ACTIONS(6373), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHaddsec] = ACTIONS(6373), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubsection] = ACTIONS(6373), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6373), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6375), - [anon_sym_BSLASHparagraph] = ACTIONS(6373), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6375), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6373), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6375), - [anon_sym_BSLASHitem] = ACTIONS(6373), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6375), - [anon_sym_LBRACE] = ACTIONS(6375), - [sym_word] = ACTIONS(6373), - [sym_placeholder] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6373), - [anon_sym_GT] = ACTIONS(6373), - [anon_sym_BANG] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_SQUOTE] = ACTIONS(6373), - [anon_sym__] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6375), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6375), - [anon_sym_DOLLAR] = ACTIONS(6373), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6375), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6375), - [anon_sym_BSLASHbegin] = ACTIONS(6373), - [anon_sym_BSLASHtitle] = ACTIONS(6373), - [anon_sym_BSLASHauthor] = ACTIONS(6373), - [anon_sym_BSLASHusepackage] = ACTIONS(6373), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6373), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6373), - [anon_sym_BSLASHinclude] = ACTIONS(6373), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6373), - [anon_sym_BSLASHinput] = ACTIONS(6373), - [anon_sym_BSLASHsubfile] = ACTIONS(6373), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6373), - [anon_sym_BSLASHbibliography] = ACTIONS(6373), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6373), - [anon_sym_BSLASHincludesvg] = ACTIONS(6373), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6373), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6373), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6373), - [anon_sym_BSLASHimport] = ACTIONS(6373), - [anon_sym_BSLASHsubimport] = ACTIONS(6373), - [anon_sym_BSLASHinputfrom] = ACTIONS(6373), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6373), - [anon_sym_BSLASHincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHcaption] = ACTIONS(6373), - [anon_sym_BSLASHcite] = ACTIONS(6373), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCite] = ACTIONS(6373), - [anon_sym_BSLASHnocite] = ACTIONS(6373), - [anon_sym_BSLASHcitet] = ACTIONS(6373), - [anon_sym_BSLASHcitep] = ACTIONS(6373), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteauthor] = ACTIONS(6373), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6373), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitetitle] = ACTIONS(6373), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteyear] = ACTIONS(6373), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitedate] = ACTIONS(6373), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteurl] = ACTIONS(6373), - [anon_sym_BSLASHfullcite] = ACTIONS(6373), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6373), - [anon_sym_BSLASHcitealt] = ACTIONS(6373), - [anon_sym_BSLASHcitealp] = ACTIONS(6373), - [anon_sym_BSLASHcitetext] = ACTIONS(6373), - [anon_sym_BSLASHparencite] = ACTIONS(6373), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHParencite] = ACTIONS(6373), - [anon_sym_BSLASHfootcite] = ACTIONS(6373), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6373), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6373), - [anon_sym_BSLASHtextcite] = ACTIONS(6373), - [anon_sym_BSLASHTextcite] = ACTIONS(6373), - [anon_sym_BSLASHsmartcite] = ACTIONS(6373), - [anon_sym_BSLASHSmartcite] = ACTIONS(6373), - [anon_sym_BSLASHsupercite] = ACTIONS(6373), - [anon_sym_BSLASHautocite] = ACTIONS(6373), - [anon_sym_BSLASHAutocite] = ACTIONS(6373), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHvolcite] = ACTIONS(6373), - [anon_sym_BSLASHVolcite] = ACTIONS(6373), - [anon_sym_BSLASHpvolcite] = ACTIONS(6373), - [anon_sym_BSLASHPvolcite] = ACTIONS(6373), - [anon_sym_BSLASHfvolcite] = ACTIONS(6373), - [anon_sym_BSLASHftvolcite] = ACTIONS(6373), - [anon_sym_BSLASHsvolcite] = ACTIONS(6373), - [anon_sym_BSLASHSvolcite] = ACTIONS(6373), - [anon_sym_BSLASHtvolcite] = ACTIONS(6373), - [anon_sym_BSLASHTvolcite] = ACTIONS(6373), - [anon_sym_BSLASHavolcite] = ACTIONS(6373), - [anon_sym_BSLASHAvolcite] = ACTIONS(6373), - [anon_sym_BSLASHnotecite] = ACTIONS(6373), - [anon_sym_BSLASHNotecite] = ACTIONS(6373), - [anon_sym_BSLASHpnotecite] = ACTIONS(6373), - [anon_sym_BSLASHPnotecite] = ACTIONS(6373), - [anon_sym_BSLASHfnotecite] = ACTIONS(6373), - [anon_sym_BSLASHlabel] = ACTIONS(6373), - [anon_sym_BSLASHref] = ACTIONS(6373), - [anon_sym_BSLASHeqref] = ACTIONS(6373), - [anon_sym_BSLASHvref] = ACTIONS(6373), - [anon_sym_BSLASHVref] = ACTIONS(6373), - [anon_sym_BSLASHautoref] = ACTIONS(6373), - [anon_sym_BSLASHpageref] = ACTIONS(6373), - [anon_sym_BSLASHcref] = ACTIONS(6373), - [anon_sym_BSLASHCref] = ACTIONS(6373), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnameCref] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHlabelcref] = ACTIONS(6373), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCrefrange] = ACTIONS(6373), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnewlabel] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6373), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6373), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6375), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHdef] = ACTIONS(6373), - [anon_sym_BSLASHlet] = ACTIONS(6373), - [anon_sym_BSLASHleft] = ACTIONS(6373), - [anon_sym_BSLASHbig] = ACTIONS(6373), - [anon_sym_BSLASHBig] = ACTIONS(6373), - [anon_sym_BSLASHbigg] = ACTIONS(6373), - [anon_sym_BSLASHBigg] = ACTIONS(6373), - [anon_sym_BSLASHbigl] = ACTIONS(6373), - [anon_sym_BSLASHBigl] = ACTIONS(6373), - [anon_sym_BSLASHbiggl] = ACTIONS(6373), - [anon_sym_BSLASHBiggl] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6373), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6373), - [anon_sym_BSLASHgls] = ACTIONS(6373), - [anon_sym_BSLASHGls] = ACTIONS(6373), - [anon_sym_BSLASHGLS] = ACTIONS(6373), - [anon_sym_BSLASHglspl] = ACTIONS(6373), - [anon_sym_BSLASHGlspl] = ACTIONS(6373), - [anon_sym_BSLASHGLSpl] = ACTIONS(6373), - [anon_sym_BSLASHglsdisp] = ACTIONS(6373), - [anon_sym_BSLASHglslink] = ACTIONS(6373), - [anon_sym_BSLASHglstext] = ACTIONS(6373), - [anon_sym_BSLASHGlstext] = ACTIONS(6373), - [anon_sym_BSLASHGLStext] = ACTIONS(6373), - [anon_sym_BSLASHglsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6373), - [anon_sym_BSLASHglsplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSplural] = ACTIONS(6373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHglsname] = ACTIONS(6373), - [anon_sym_BSLASHGlsname] = ACTIONS(6373), - [anon_sym_BSLASHGLSname] = ACTIONS(6373), - [anon_sym_BSLASHglssymbol] = ACTIONS(6373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6373), - [anon_sym_BSLASHglsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6373), - [anon_sym_BSLASHglsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6373), - [anon_sym_BSLASHglsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6373), - [anon_sym_BSLASHglsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6373), - [anon_sym_BSLASHglsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6373), - [anon_sym_BSLASHnewacronym] = ACTIONS(6373), - [anon_sym_BSLASHacrshort] = ACTIONS(6373), - [anon_sym_BSLASHAcrshort] = ACTIONS(6373), - [anon_sym_BSLASHACRshort] = ACTIONS(6373), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6373), - [anon_sym_BSLASHacrlong] = ACTIONS(6373), - [anon_sym_BSLASHAcrlong] = ACTIONS(6373), - [anon_sym_BSLASHACRlong] = ACTIONS(6373), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6373), - [anon_sym_BSLASHacrfull] = ACTIONS(6373), - [anon_sym_BSLASHAcrfull] = ACTIONS(6373), - [anon_sym_BSLASHACRfull] = ACTIONS(6373), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6373), - [anon_sym_BSLASHacs] = ACTIONS(6373), - [anon_sym_BSLASHAcs] = ACTIONS(6373), - [anon_sym_BSLASHacsp] = ACTIONS(6373), - [anon_sym_BSLASHAcsp] = ACTIONS(6373), - [anon_sym_BSLASHacl] = ACTIONS(6373), - [anon_sym_BSLASHAcl] = ACTIONS(6373), - [anon_sym_BSLASHaclp] = ACTIONS(6373), - [anon_sym_BSLASHAclp] = ACTIONS(6373), - [anon_sym_BSLASHacf] = ACTIONS(6373), - [anon_sym_BSLASHAcf] = ACTIONS(6373), - [anon_sym_BSLASHacfp] = ACTIONS(6373), - [anon_sym_BSLASHAcfp] = ACTIONS(6373), - [anon_sym_BSLASHac] = ACTIONS(6373), - [anon_sym_BSLASHAc] = ACTIONS(6373), - [anon_sym_BSLASHacp] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6373), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6373), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6373), - [anon_sym_BSLASHcolor] = ACTIONS(6373), - [anon_sym_BSLASHcolorbox] = ACTIONS(6373), - [anon_sym_BSLASHtextcolor] = ACTIONS(6373), - [anon_sym_BSLASHpagecolor] = ACTIONS(6373), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6373), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6373), - [anon_sym_BSLASHtext] = ACTIONS(6373), - [anon_sym_BSLASHintertext] = ACTIONS(6373), - [anon_sym_shortintertext] = ACTIONS(6373), - }, - [1344] = { - [sym_command_name] = ACTIONS(6369), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6371), - [anon_sym_RBRACK] = ACTIONS(6371), - [anon_sym_COMMA] = ACTIONS(6371), - [anon_sym_EQ] = ACTIONS(6371), - [anon_sym_LPAREN] = ACTIONS(6371), - [anon_sym_RPAREN] = ACTIONS(6371), - [anon_sym_BSLASHpart] = ACTIONS(6369), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddpart] = ACTIONS(6369), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6371), - [anon_sym_BSLASHchapter] = ACTIONS(6369), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddchap] = ACTIONS(6369), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsection] = ACTIONS(6369), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHaddsec] = ACTIONS(6369), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubsection] = ACTIONS(6369), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6369), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6371), - [anon_sym_BSLASHparagraph] = ACTIONS(6369), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6371), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6369), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6371), - [anon_sym_BSLASHitem] = ACTIONS(6369), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6371), - [anon_sym_LBRACE] = ACTIONS(6371), - [sym_word] = ACTIONS(6369), - [sym_placeholder] = ACTIONS(6371), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6371), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_LT] = ACTIONS(6369), - [anon_sym_GT] = ACTIONS(6369), - [anon_sym_BANG] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_SQUOTE] = ACTIONS(6369), - [anon_sym__] = ACTIONS(6371), - [anon_sym_CARET] = ACTIONS(6371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6371), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6371), - [anon_sym_DOLLAR] = ACTIONS(6369), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6371), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6371), - [anon_sym_BSLASHbegin] = ACTIONS(6369), - [anon_sym_BSLASHtitle] = ACTIONS(6369), - [anon_sym_BSLASHauthor] = ACTIONS(6369), - [anon_sym_BSLASHusepackage] = ACTIONS(6369), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6369), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6369), - [anon_sym_BSLASHinclude] = ACTIONS(6369), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6369), - [anon_sym_BSLASHinput] = ACTIONS(6369), - [anon_sym_BSLASHsubfile] = ACTIONS(6369), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6369), - [anon_sym_BSLASHbibliography] = ACTIONS(6369), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6369), - [anon_sym_BSLASHincludesvg] = ACTIONS(6369), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6369), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6369), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6369), - [anon_sym_BSLASHimport] = ACTIONS(6369), - [anon_sym_BSLASHsubimport] = ACTIONS(6369), - [anon_sym_BSLASHinputfrom] = ACTIONS(6369), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6369), - [anon_sym_BSLASHincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHcaption] = ACTIONS(6369), - [anon_sym_BSLASHcite] = ACTIONS(6369), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCite] = ACTIONS(6369), - [anon_sym_BSLASHnocite] = ACTIONS(6369), - [anon_sym_BSLASHcitet] = ACTIONS(6369), - [anon_sym_BSLASHcitep] = ACTIONS(6369), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteauthor] = ACTIONS(6369), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6369), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitetitle] = ACTIONS(6369), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteyear] = ACTIONS(6369), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitedate] = ACTIONS(6369), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteurl] = ACTIONS(6369), - [anon_sym_BSLASHfullcite] = ACTIONS(6369), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6369), - [anon_sym_BSLASHcitealt] = ACTIONS(6369), - [anon_sym_BSLASHcitealp] = ACTIONS(6369), - [anon_sym_BSLASHcitetext] = ACTIONS(6369), - [anon_sym_BSLASHparencite] = ACTIONS(6369), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHParencite] = ACTIONS(6369), - [anon_sym_BSLASHfootcite] = ACTIONS(6369), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6369), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6369), - [anon_sym_BSLASHtextcite] = ACTIONS(6369), - [anon_sym_BSLASHTextcite] = ACTIONS(6369), - [anon_sym_BSLASHsmartcite] = ACTIONS(6369), - [anon_sym_BSLASHSmartcite] = ACTIONS(6369), - [anon_sym_BSLASHsupercite] = ACTIONS(6369), - [anon_sym_BSLASHautocite] = ACTIONS(6369), - [anon_sym_BSLASHAutocite] = ACTIONS(6369), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHvolcite] = ACTIONS(6369), - [anon_sym_BSLASHVolcite] = ACTIONS(6369), - [anon_sym_BSLASHpvolcite] = ACTIONS(6369), - [anon_sym_BSLASHPvolcite] = ACTIONS(6369), - [anon_sym_BSLASHfvolcite] = ACTIONS(6369), - [anon_sym_BSLASHftvolcite] = ACTIONS(6369), - [anon_sym_BSLASHsvolcite] = ACTIONS(6369), - [anon_sym_BSLASHSvolcite] = ACTIONS(6369), - [anon_sym_BSLASHtvolcite] = ACTIONS(6369), - [anon_sym_BSLASHTvolcite] = ACTIONS(6369), - [anon_sym_BSLASHavolcite] = ACTIONS(6369), - [anon_sym_BSLASHAvolcite] = ACTIONS(6369), - [anon_sym_BSLASHnotecite] = ACTIONS(6369), - [anon_sym_BSLASHNotecite] = ACTIONS(6369), - [anon_sym_BSLASHpnotecite] = ACTIONS(6369), - [anon_sym_BSLASHPnotecite] = ACTIONS(6369), - [anon_sym_BSLASHfnotecite] = ACTIONS(6369), - [anon_sym_BSLASHlabel] = ACTIONS(6369), - [anon_sym_BSLASHref] = ACTIONS(6369), - [anon_sym_BSLASHeqref] = ACTIONS(6369), - [anon_sym_BSLASHvref] = ACTIONS(6369), - [anon_sym_BSLASHVref] = ACTIONS(6369), - [anon_sym_BSLASHautoref] = ACTIONS(6369), - [anon_sym_BSLASHpageref] = ACTIONS(6369), - [anon_sym_BSLASHcref] = ACTIONS(6369), - [anon_sym_BSLASHCref] = ACTIONS(6369), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnameCref] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHlabelcref] = ACTIONS(6369), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCrefrange] = ACTIONS(6369), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnewlabel] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6369), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6369), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6371), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHdef] = ACTIONS(6369), - [anon_sym_BSLASHlet] = ACTIONS(6369), - [anon_sym_BSLASHleft] = ACTIONS(6369), - [anon_sym_BSLASHbig] = ACTIONS(6369), - [anon_sym_BSLASHBig] = ACTIONS(6369), - [anon_sym_BSLASHbigg] = ACTIONS(6369), - [anon_sym_BSLASHBigg] = ACTIONS(6369), - [anon_sym_BSLASHbigl] = ACTIONS(6369), - [anon_sym_BSLASHBigl] = ACTIONS(6369), - [anon_sym_BSLASHbiggl] = ACTIONS(6369), - [anon_sym_BSLASHBiggl] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6369), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6369), - [anon_sym_BSLASHgls] = ACTIONS(6369), - [anon_sym_BSLASHGls] = ACTIONS(6369), - [anon_sym_BSLASHGLS] = ACTIONS(6369), - [anon_sym_BSLASHglspl] = ACTIONS(6369), - [anon_sym_BSLASHGlspl] = ACTIONS(6369), - [anon_sym_BSLASHGLSpl] = ACTIONS(6369), - [anon_sym_BSLASHglsdisp] = ACTIONS(6369), - [anon_sym_BSLASHglslink] = ACTIONS(6369), - [anon_sym_BSLASHglstext] = ACTIONS(6369), - [anon_sym_BSLASHGlstext] = ACTIONS(6369), - [anon_sym_BSLASHGLStext] = ACTIONS(6369), - [anon_sym_BSLASHglsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6369), - [anon_sym_BSLASHglsplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSplural] = ACTIONS(6369), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHglsname] = ACTIONS(6369), - [anon_sym_BSLASHGlsname] = ACTIONS(6369), - [anon_sym_BSLASHGLSname] = ACTIONS(6369), - [anon_sym_BSLASHglssymbol] = ACTIONS(6369), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6369), - [anon_sym_BSLASHglsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6369), - [anon_sym_BSLASHglsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6369), - [anon_sym_BSLASHglsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6369), - [anon_sym_BSLASHglsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6369), - [anon_sym_BSLASHglsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6369), - [anon_sym_BSLASHnewacronym] = ACTIONS(6369), - [anon_sym_BSLASHacrshort] = ACTIONS(6369), - [anon_sym_BSLASHAcrshort] = ACTIONS(6369), - [anon_sym_BSLASHACRshort] = ACTIONS(6369), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6369), - [anon_sym_BSLASHacrlong] = ACTIONS(6369), - [anon_sym_BSLASHAcrlong] = ACTIONS(6369), - [anon_sym_BSLASHACRlong] = ACTIONS(6369), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6369), - [anon_sym_BSLASHacrfull] = ACTIONS(6369), - [anon_sym_BSLASHAcrfull] = ACTIONS(6369), - [anon_sym_BSLASHACRfull] = ACTIONS(6369), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6369), - [anon_sym_BSLASHacs] = ACTIONS(6369), - [anon_sym_BSLASHAcs] = ACTIONS(6369), - [anon_sym_BSLASHacsp] = ACTIONS(6369), - [anon_sym_BSLASHAcsp] = ACTIONS(6369), - [anon_sym_BSLASHacl] = ACTIONS(6369), - [anon_sym_BSLASHAcl] = ACTIONS(6369), - [anon_sym_BSLASHaclp] = ACTIONS(6369), - [anon_sym_BSLASHAclp] = ACTIONS(6369), - [anon_sym_BSLASHacf] = ACTIONS(6369), - [anon_sym_BSLASHAcf] = ACTIONS(6369), - [anon_sym_BSLASHacfp] = ACTIONS(6369), - [anon_sym_BSLASHAcfp] = ACTIONS(6369), - [anon_sym_BSLASHac] = ACTIONS(6369), - [anon_sym_BSLASHAc] = ACTIONS(6369), - [anon_sym_BSLASHacp] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6369), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6369), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6369), - [anon_sym_BSLASHcolor] = ACTIONS(6369), - [anon_sym_BSLASHcolorbox] = ACTIONS(6369), - [anon_sym_BSLASHtextcolor] = ACTIONS(6369), - [anon_sym_BSLASHpagecolor] = ACTIONS(6369), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6369), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6369), - [anon_sym_BSLASHtext] = ACTIONS(6369), - [anon_sym_BSLASHintertext] = ACTIONS(6369), - [anon_sym_shortintertext] = ACTIONS(6369), - }, - [1345] = { - [sym_command_name] = ACTIONS(6365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6367), - [anon_sym_RBRACK] = ACTIONS(6367), - [anon_sym_COMMA] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(6367), - [anon_sym_LPAREN] = ACTIONS(6367), - [anon_sym_RPAREN] = ACTIONS(6367), - [anon_sym_BSLASHpart] = ACTIONS(6365), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddpart] = ACTIONS(6365), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6367), - [anon_sym_BSLASHchapter] = ACTIONS(6365), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddchap] = ACTIONS(6365), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsection] = ACTIONS(6365), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHaddsec] = ACTIONS(6365), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubsection] = ACTIONS(6365), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6365), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6367), - [anon_sym_BSLASHparagraph] = ACTIONS(6365), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6367), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6365), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6367), - [anon_sym_BSLASHitem] = ACTIONS(6365), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6367), - [anon_sym_LBRACE] = ACTIONS(6367), - [sym_word] = ACTIONS(6365), - [sym_placeholder] = ACTIONS(6367), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6367), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_LT] = ACTIONS(6365), - [anon_sym_GT] = ACTIONS(6365), - [anon_sym_BANG] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_SQUOTE] = ACTIONS(6365), - [anon_sym__] = ACTIONS(6367), - [anon_sym_CARET] = ACTIONS(6367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6367), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6367), - [anon_sym_DOLLAR] = ACTIONS(6365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6367), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6367), - [anon_sym_BSLASHbegin] = ACTIONS(6365), - [anon_sym_BSLASHtitle] = ACTIONS(6365), - [anon_sym_BSLASHauthor] = ACTIONS(6365), - [anon_sym_BSLASHusepackage] = ACTIONS(6365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6365), - [anon_sym_BSLASHinclude] = ACTIONS(6365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6365), - [anon_sym_BSLASHinput] = ACTIONS(6365), - [anon_sym_BSLASHsubfile] = ACTIONS(6365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6365), - [anon_sym_BSLASHbibliography] = ACTIONS(6365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6365), - [anon_sym_BSLASHincludesvg] = ACTIONS(6365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6365), - [anon_sym_BSLASHimport] = ACTIONS(6365), - [anon_sym_BSLASHsubimport] = ACTIONS(6365), - [anon_sym_BSLASHinputfrom] = ACTIONS(6365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6365), - [anon_sym_BSLASHincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHcaption] = ACTIONS(6365), - [anon_sym_BSLASHcite] = ACTIONS(6365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCite] = ACTIONS(6365), - [anon_sym_BSLASHnocite] = ACTIONS(6365), - [anon_sym_BSLASHcitet] = ACTIONS(6365), - [anon_sym_BSLASHcitep] = ACTIONS(6365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteauthor] = ACTIONS(6365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitetitle] = ACTIONS(6365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteyear] = ACTIONS(6365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitedate] = ACTIONS(6365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteurl] = ACTIONS(6365), - [anon_sym_BSLASHfullcite] = ACTIONS(6365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6365), - [anon_sym_BSLASHcitealt] = ACTIONS(6365), - [anon_sym_BSLASHcitealp] = ACTIONS(6365), - [anon_sym_BSLASHcitetext] = ACTIONS(6365), - [anon_sym_BSLASHparencite] = ACTIONS(6365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHParencite] = ACTIONS(6365), - [anon_sym_BSLASHfootcite] = ACTIONS(6365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6365), - [anon_sym_BSLASHtextcite] = ACTIONS(6365), - [anon_sym_BSLASHTextcite] = ACTIONS(6365), - [anon_sym_BSLASHsmartcite] = ACTIONS(6365), - [anon_sym_BSLASHSmartcite] = ACTIONS(6365), - [anon_sym_BSLASHsupercite] = ACTIONS(6365), - [anon_sym_BSLASHautocite] = ACTIONS(6365), - [anon_sym_BSLASHAutocite] = ACTIONS(6365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHvolcite] = ACTIONS(6365), - [anon_sym_BSLASHVolcite] = ACTIONS(6365), - [anon_sym_BSLASHpvolcite] = ACTIONS(6365), - [anon_sym_BSLASHPvolcite] = ACTIONS(6365), - [anon_sym_BSLASHfvolcite] = ACTIONS(6365), - [anon_sym_BSLASHftvolcite] = ACTIONS(6365), - [anon_sym_BSLASHsvolcite] = ACTIONS(6365), - [anon_sym_BSLASHSvolcite] = ACTIONS(6365), - [anon_sym_BSLASHtvolcite] = ACTIONS(6365), - [anon_sym_BSLASHTvolcite] = ACTIONS(6365), - [anon_sym_BSLASHavolcite] = ACTIONS(6365), - [anon_sym_BSLASHAvolcite] = ACTIONS(6365), - [anon_sym_BSLASHnotecite] = ACTIONS(6365), - [anon_sym_BSLASHNotecite] = ACTIONS(6365), - [anon_sym_BSLASHpnotecite] = ACTIONS(6365), - [anon_sym_BSLASHPnotecite] = ACTIONS(6365), - [anon_sym_BSLASHfnotecite] = ACTIONS(6365), - [anon_sym_BSLASHlabel] = ACTIONS(6365), - [anon_sym_BSLASHref] = ACTIONS(6365), - [anon_sym_BSLASHeqref] = ACTIONS(6365), - [anon_sym_BSLASHvref] = ACTIONS(6365), - [anon_sym_BSLASHVref] = ACTIONS(6365), - [anon_sym_BSLASHautoref] = ACTIONS(6365), - [anon_sym_BSLASHpageref] = ACTIONS(6365), - [anon_sym_BSLASHcref] = ACTIONS(6365), - [anon_sym_BSLASHCref] = ACTIONS(6365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnameCref] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHlabelcref] = ACTIONS(6365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCrefrange] = ACTIONS(6365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnewlabel] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6367), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHdef] = ACTIONS(6365), - [anon_sym_BSLASHlet] = ACTIONS(6365), - [anon_sym_BSLASHleft] = ACTIONS(6365), - [anon_sym_BSLASHbig] = ACTIONS(6365), - [anon_sym_BSLASHBig] = ACTIONS(6365), - [anon_sym_BSLASHbigg] = ACTIONS(6365), - [anon_sym_BSLASHBigg] = ACTIONS(6365), - [anon_sym_BSLASHbigl] = ACTIONS(6365), - [anon_sym_BSLASHBigl] = ACTIONS(6365), - [anon_sym_BSLASHbiggl] = ACTIONS(6365), - [anon_sym_BSLASHBiggl] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6365), - [anon_sym_BSLASHgls] = ACTIONS(6365), - [anon_sym_BSLASHGls] = ACTIONS(6365), - [anon_sym_BSLASHGLS] = ACTIONS(6365), - [anon_sym_BSLASHglspl] = ACTIONS(6365), - [anon_sym_BSLASHGlspl] = ACTIONS(6365), - [anon_sym_BSLASHGLSpl] = ACTIONS(6365), - [anon_sym_BSLASHglsdisp] = ACTIONS(6365), - [anon_sym_BSLASHglslink] = ACTIONS(6365), - [anon_sym_BSLASHglstext] = ACTIONS(6365), - [anon_sym_BSLASHGlstext] = ACTIONS(6365), - [anon_sym_BSLASHGLStext] = ACTIONS(6365), - [anon_sym_BSLASHglsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6365), - [anon_sym_BSLASHglsplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSplural] = ACTIONS(6365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHglsname] = ACTIONS(6365), - [anon_sym_BSLASHGlsname] = ACTIONS(6365), - [anon_sym_BSLASHGLSname] = ACTIONS(6365), - [anon_sym_BSLASHglssymbol] = ACTIONS(6365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6365), - [anon_sym_BSLASHglsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6365), - [anon_sym_BSLASHglsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6365), - [anon_sym_BSLASHglsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6365), - [anon_sym_BSLASHglsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6365), - [anon_sym_BSLASHglsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6365), - [anon_sym_BSLASHnewacronym] = ACTIONS(6365), - [anon_sym_BSLASHacrshort] = ACTIONS(6365), - [anon_sym_BSLASHAcrshort] = ACTIONS(6365), - [anon_sym_BSLASHACRshort] = ACTIONS(6365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6365), - [anon_sym_BSLASHacrlong] = ACTIONS(6365), - [anon_sym_BSLASHAcrlong] = ACTIONS(6365), - [anon_sym_BSLASHACRlong] = ACTIONS(6365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6365), - [anon_sym_BSLASHacrfull] = ACTIONS(6365), - [anon_sym_BSLASHAcrfull] = ACTIONS(6365), - [anon_sym_BSLASHACRfull] = ACTIONS(6365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6365), - [anon_sym_BSLASHacs] = ACTIONS(6365), - [anon_sym_BSLASHAcs] = ACTIONS(6365), - [anon_sym_BSLASHacsp] = ACTIONS(6365), - [anon_sym_BSLASHAcsp] = ACTIONS(6365), - [anon_sym_BSLASHacl] = ACTIONS(6365), - [anon_sym_BSLASHAcl] = ACTIONS(6365), - [anon_sym_BSLASHaclp] = ACTIONS(6365), - [anon_sym_BSLASHAclp] = ACTIONS(6365), - [anon_sym_BSLASHacf] = ACTIONS(6365), - [anon_sym_BSLASHAcf] = ACTIONS(6365), - [anon_sym_BSLASHacfp] = ACTIONS(6365), - [anon_sym_BSLASHAcfp] = ACTIONS(6365), - [anon_sym_BSLASHac] = ACTIONS(6365), - [anon_sym_BSLASHAc] = ACTIONS(6365), - [anon_sym_BSLASHacp] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6365), - [anon_sym_BSLASHcolor] = ACTIONS(6365), - [anon_sym_BSLASHcolorbox] = ACTIONS(6365), - [anon_sym_BSLASHtextcolor] = ACTIONS(6365), - [anon_sym_BSLASHpagecolor] = ACTIONS(6365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6365), - [anon_sym_BSLASHtext] = ACTIONS(6365), - [anon_sym_BSLASHintertext] = ACTIONS(6365), - [anon_sym_shortintertext] = ACTIONS(6365), - }, - [1346] = { - [sym_command_name] = ACTIONS(6361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6363), - [anon_sym_RBRACK] = ACTIONS(6363), - [anon_sym_COMMA] = ACTIONS(6363), - [anon_sym_EQ] = ACTIONS(6363), - [anon_sym_LPAREN] = ACTIONS(6363), - [anon_sym_RPAREN] = ACTIONS(6363), - [anon_sym_BSLASHpart] = ACTIONS(6361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddpart] = ACTIONS(6361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6363), - [anon_sym_BSLASHchapter] = ACTIONS(6361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddchap] = ACTIONS(6361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsection] = ACTIONS(6361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHaddsec] = ACTIONS(6361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubsection] = ACTIONS(6361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6363), - [anon_sym_BSLASHparagraph] = ACTIONS(6361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6363), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6363), - [anon_sym_BSLASHitem] = ACTIONS(6361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6363), - [anon_sym_LBRACE] = ACTIONS(6363), - [sym_word] = ACTIONS(6361), - [sym_placeholder] = ACTIONS(6363), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_LT] = ACTIONS(6361), - [anon_sym_GT] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6361), - [anon_sym__] = ACTIONS(6363), - [anon_sym_CARET] = ACTIONS(6363), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6363), - [anon_sym_DOLLAR] = ACTIONS(6361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6363), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6363), - [anon_sym_BSLASHbegin] = ACTIONS(6361), - [anon_sym_BSLASHtitle] = ACTIONS(6361), - [anon_sym_BSLASHauthor] = ACTIONS(6361), - [anon_sym_BSLASHusepackage] = ACTIONS(6361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6361), - [anon_sym_BSLASHinclude] = ACTIONS(6361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6361), - [anon_sym_BSLASHinput] = ACTIONS(6361), - [anon_sym_BSLASHsubfile] = ACTIONS(6361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6361), - [anon_sym_BSLASHbibliography] = ACTIONS(6361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6361), - [anon_sym_BSLASHincludesvg] = ACTIONS(6361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6361), - [anon_sym_BSLASHimport] = ACTIONS(6361), - [anon_sym_BSLASHsubimport] = ACTIONS(6361), - [anon_sym_BSLASHinputfrom] = ACTIONS(6361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6361), - [anon_sym_BSLASHincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHcaption] = ACTIONS(6361), - [anon_sym_BSLASHcite] = ACTIONS(6361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCite] = ACTIONS(6361), - [anon_sym_BSLASHnocite] = ACTIONS(6361), - [anon_sym_BSLASHcitet] = ACTIONS(6361), - [anon_sym_BSLASHcitep] = ACTIONS(6361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteauthor] = ACTIONS(6361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitetitle] = ACTIONS(6361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteyear] = ACTIONS(6361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitedate] = ACTIONS(6361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteurl] = ACTIONS(6361), - [anon_sym_BSLASHfullcite] = ACTIONS(6361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6361), - [anon_sym_BSLASHcitealt] = ACTIONS(6361), - [anon_sym_BSLASHcitealp] = ACTIONS(6361), - [anon_sym_BSLASHcitetext] = ACTIONS(6361), - [anon_sym_BSLASHparencite] = ACTIONS(6361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHParencite] = ACTIONS(6361), - [anon_sym_BSLASHfootcite] = ACTIONS(6361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6361), - [anon_sym_BSLASHtextcite] = ACTIONS(6361), - [anon_sym_BSLASHTextcite] = ACTIONS(6361), - [anon_sym_BSLASHsmartcite] = ACTIONS(6361), - [anon_sym_BSLASHSmartcite] = ACTIONS(6361), - [anon_sym_BSLASHsupercite] = ACTIONS(6361), - [anon_sym_BSLASHautocite] = ACTIONS(6361), - [anon_sym_BSLASHAutocite] = ACTIONS(6361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHvolcite] = ACTIONS(6361), - [anon_sym_BSLASHVolcite] = ACTIONS(6361), - [anon_sym_BSLASHpvolcite] = ACTIONS(6361), - [anon_sym_BSLASHPvolcite] = ACTIONS(6361), - [anon_sym_BSLASHfvolcite] = ACTIONS(6361), - [anon_sym_BSLASHftvolcite] = ACTIONS(6361), - [anon_sym_BSLASHsvolcite] = ACTIONS(6361), - [anon_sym_BSLASHSvolcite] = ACTIONS(6361), - [anon_sym_BSLASHtvolcite] = ACTIONS(6361), - [anon_sym_BSLASHTvolcite] = ACTIONS(6361), - [anon_sym_BSLASHavolcite] = ACTIONS(6361), - [anon_sym_BSLASHAvolcite] = ACTIONS(6361), - [anon_sym_BSLASHnotecite] = ACTIONS(6361), - [anon_sym_BSLASHNotecite] = ACTIONS(6361), - [anon_sym_BSLASHpnotecite] = ACTIONS(6361), - [anon_sym_BSLASHPnotecite] = ACTIONS(6361), - [anon_sym_BSLASHfnotecite] = ACTIONS(6361), - [anon_sym_BSLASHlabel] = ACTIONS(6361), - [anon_sym_BSLASHref] = ACTIONS(6361), - [anon_sym_BSLASHeqref] = ACTIONS(6361), - [anon_sym_BSLASHvref] = ACTIONS(6361), - [anon_sym_BSLASHVref] = ACTIONS(6361), - [anon_sym_BSLASHautoref] = ACTIONS(6361), - [anon_sym_BSLASHpageref] = ACTIONS(6361), - [anon_sym_BSLASHcref] = ACTIONS(6361), - [anon_sym_BSLASHCref] = ACTIONS(6361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnameCref] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHlabelcref] = ACTIONS(6361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCrefrange] = ACTIONS(6361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnewlabel] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6363), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHdef] = ACTIONS(6361), - [anon_sym_BSLASHlet] = ACTIONS(6361), - [anon_sym_BSLASHleft] = ACTIONS(6361), - [anon_sym_BSLASHbig] = ACTIONS(6361), - [anon_sym_BSLASHBig] = ACTIONS(6361), - [anon_sym_BSLASHbigg] = ACTIONS(6361), - [anon_sym_BSLASHBigg] = ACTIONS(6361), - [anon_sym_BSLASHbigl] = ACTIONS(6361), - [anon_sym_BSLASHBigl] = ACTIONS(6361), - [anon_sym_BSLASHbiggl] = ACTIONS(6361), - [anon_sym_BSLASHBiggl] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6361), - [anon_sym_BSLASHgls] = ACTIONS(6361), - [anon_sym_BSLASHGls] = ACTIONS(6361), - [anon_sym_BSLASHGLS] = ACTIONS(6361), - [anon_sym_BSLASHglspl] = ACTIONS(6361), - [anon_sym_BSLASHGlspl] = ACTIONS(6361), - [anon_sym_BSLASHGLSpl] = ACTIONS(6361), - [anon_sym_BSLASHglsdisp] = ACTIONS(6361), - [anon_sym_BSLASHglslink] = ACTIONS(6361), - [anon_sym_BSLASHglstext] = ACTIONS(6361), - [anon_sym_BSLASHGlstext] = ACTIONS(6361), - [anon_sym_BSLASHGLStext] = ACTIONS(6361), - [anon_sym_BSLASHglsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6361), - [anon_sym_BSLASHglsplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSplural] = ACTIONS(6361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHglsname] = ACTIONS(6361), - [anon_sym_BSLASHGlsname] = ACTIONS(6361), - [anon_sym_BSLASHGLSname] = ACTIONS(6361), - [anon_sym_BSLASHglssymbol] = ACTIONS(6361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6361), - [anon_sym_BSLASHglsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6361), - [anon_sym_BSLASHglsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6361), - [anon_sym_BSLASHglsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6361), - [anon_sym_BSLASHglsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6361), - [anon_sym_BSLASHglsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6361), - [anon_sym_BSLASHnewacronym] = ACTIONS(6361), - [anon_sym_BSLASHacrshort] = ACTIONS(6361), - [anon_sym_BSLASHAcrshort] = ACTIONS(6361), - [anon_sym_BSLASHACRshort] = ACTIONS(6361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6361), - [anon_sym_BSLASHacrlong] = ACTIONS(6361), - [anon_sym_BSLASHAcrlong] = ACTIONS(6361), - [anon_sym_BSLASHACRlong] = ACTIONS(6361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6361), - [anon_sym_BSLASHacrfull] = ACTIONS(6361), - [anon_sym_BSLASHAcrfull] = ACTIONS(6361), - [anon_sym_BSLASHACRfull] = ACTIONS(6361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6361), - [anon_sym_BSLASHacs] = ACTIONS(6361), - [anon_sym_BSLASHAcs] = ACTIONS(6361), - [anon_sym_BSLASHacsp] = ACTIONS(6361), - [anon_sym_BSLASHAcsp] = ACTIONS(6361), - [anon_sym_BSLASHacl] = ACTIONS(6361), - [anon_sym_BSLASHAcl] = ACTIONS(6361), - [anon_sym_BSLASHaclp] = ACTIONS(6361), - [anon_sym_BSLASHAclp] = ACTIONS(6361), - [anon_sym_BSLASHacf] = ACTIONS(6361), - [anon_sym_BSLASHAcf] = ACTIONS(6361), - [anon_sym_BSLASHacfp] = ACTIONS(6361), - [anon_sym_BSLASHAcfp] = ACTIONS(6361), - [anon_sym_BSLASHac] = ACTIONS(6361), - [anon_sym_BSLASHAc] = ACTIONS(6361), - [anon_sym_BSLASHacp] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6361), - [anon_sym_BSLASHcolor] = ACTIONS(6361), - [anon_sym_BSLASHcolorbox] = ACTIONS(6361), - [anon_sym_BSLASHtextcolor] = ACTIONS(6361), - [anon_sym_BSLASHpagecolor] = ACTIONS(6361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6361), - [anon_sym_BSLASHtext] = ACTIONS(6361), - [anon_sym_BSLASHintertext] = ACTIONS(6361), - [anon_sym_shortintertext] = ACTIONS(6361), - }, - [1347] = { - [sym_command_name] = ACTIONS(6357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(6359), - [anon_sym_RBRACK] = ACTIONS(6359), - [anon_sym_COMMA] = ACTIONS(6359), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LPAREN] = ACTIONS(6359), - [anon_sym_RPAREN] = ACTIONS(6359), - [anon_sym_BSLASHpart] = ACTIONS(6357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddpart] = ACTIONS(6357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6359), - [anon_sym_BSLASHchapter] = ACTIONS(6357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddchap] = ACTIONS(6357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsection] = ACTIONS(6357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHaddsec] = ACTIONS(6357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubsection] = ACTIONS(6357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6359), - [anon_sym_BSLASHparagraph] = ACTIONS(6357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6359), - [anon_sym_BSLASHitem] = ACTIONS(6357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6359), - [sym_word] = ACTIONS(6357), - [sym_placeholder] = ACTIONS(6359), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6359), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_LT] = ACTIONS(6357), - [anon_sym_GT] = ACTIONS(6357), - [anon_sym_BANG] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_SQUOTE] = ACTIONS(6357), - [anon_sym__] = ACTIONS(6359), - [anon_sym_CARET] = ACTIONS(6359), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6359), - [anon_sym_DOLLAR] = ACTIONS(6357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6359), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6359), - [anon_sym_BSLASHbegin] = ACTIONS(6357), - [anon_sym_BSLASHtitle] = ACTIONS(6357), - [anon_sym_BSLASHauthor] = ACTIONS(6357), - [anon_sym_BSLASHusepackage] = ACTIONS(6357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6357), - [anon_sym_BSLASHinclude] = ACTIONS(6357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6357), - [anon_sym_BSLASHinput] = ACTIONS(6357), - [anon_sym_BSLASHsubfile] = ACTIONS(6357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6357), - [anon_sym_BSLASHbibliography] = ACTIONS(6357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6357), - [anon_sym_BSLASHincludesvg] = ACTIONS(6357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6357), - [anon_sym_BSLASHimport] = ACTIONS(6357), - [anon_sym_BSLASHsubimport] = ACTIONS(6357), - [anon_sym_BSLASHinputfrom] = ACTIONS(6357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6357), - [anon_sym_BSLASHincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHcaption] = ACTIONS(6357), - [anon_sym_BSLASHcite] = ACTIONS(6357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCite] = ACTIONS(6357), - [anon_sym_BSLASHnocite] = ACTIONS(6357), - [anon_sym_BSLASHcitet] = ACTIONS(6357), - [anon_sym_BSLASHcitep] = ACTIONS(6357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteauthor] = ACTIONS(6357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitetitle] = ACTIONS(6357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteyear] = ACTIONS(6357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitedate] = ACTIONS(6357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteurl] = ACTIONS(6357), - [anon_sym_BSLASHfullcite] = ACTIONS(6357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6357), - [anon_sym_BSLASHcitealt] = ACTIONS(6357), - [anon_sym_BSLASHcitealp] = ACTIONS(6357), - [anon_sym_BSLASHcitetext] = ACTIONS(6357), - [anon_sym_BSLASHparencite] = ACTIONS(6357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHParencite] = ACTIONS(6357), - [anon_sym_BSLASHfootcite] = ACTIONS(6357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6357), - [anon_sym_BSLASHtextcite] = ACTIONS(6357), - [anon_sym_BSLASHTextcite] = ACTIONS(6357), - [anon_sym_BSLASHsmartcite] = ACTIONS(6357), - [anon_sym_BSLASHSmartcite] = ACTIONS(6357), - [anon_sym_BSLASHsupercite] = ACTIONS(6357), - [anon_sym_BSLASHautocite] = ACTIONS(6357), - [anon_sym_BSLASHAutocite] = ACTIONS(6357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHvolcite] = ACTIONS(6357), - [anon_sym_BSLASHVolcite] = ACTIONS(6357), - [anon_sym_BSLASHpvolcite] = ACTIONS(6357), - [anon_sym_BSLASHPvolcite] = ACTIONS(6357), - [anon_sym_BSLASHfvolcite] = ACTIONS(6357), - [anon_sym_BSLASHftvolcite] = ACTIONS(6357), - [anon_sym_BSLASHsvolcite] = ACTIONS(6357), - [anon_sym_BSLASHSvolcite] = ACTIONS(6357), - [anon_sym_BSLASHtvolcite] = ACTIONS(6357), - [anon_sym_BSLASHTvolcite] = ACTIONS(6357), - [anon_sym_BSLASHavolcite] = ACTIONS(6357), - [anon_sym_BSLASHAvolcite] = ACTIONS(6357), - [anon_sym_BSLASHnotecite] = ACTIONS(6357), - [anon_sym_BSLASHNotecite] = ACTIONS(6357), - [anon_sym_BSLASHpnotecite] = ACTIONS(6357), - [anon_sym_BSLASHPnotecite] = ACTIONS(6357), - [anon_sym_BSLASHfnotecite] = ACTIONS(6357), - [anon_sym_BSLASHlabel] = ACTIONS(6357), - [anon_sym_BSLASHref] = ACTIONS(6357), - [anon_sym_BSLASHeqref] = ACTIONS(6357), - [anon_sym_BSLASHvref] = ACTIONS(6357), - [anon_sym_BSLASHVref] = ACTIONS(6357), - [anon_sym_BSLASHautoref] = ACTIONS(6357), - [anon_sym_BSLASHpageref] = ACTIONS(6357), - [anon_sym_BSLASHcref] = ACTIONS(6357), - [anon_sym_BSLASHCref] = ACTIONS(6357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnameCref] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHlabelcref] = ACTIONS(6357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCrefrange] = ACTIONS(6357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnewlabel] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6359), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHdef] = ACTIONS(6357), - [anon_sym_BSLASHlet] = ACTIONS(6357), - [anon_sym_BSLASHleft] = ACTIONS(6357), - [anon_sym_BSLASHbig] = ACTIONS(6357), - [anon_sym_BSLASHBig] = ACTIONS(6357), - [anon_sym_BSLASHbigg] = ACTIONS(6357), - [anon_sym_BSLASHBigg] = ACTIONS(6357), - [anon_sym_BSLASHbigl] = ACTIONS(6357), - [anon_sym_BSLASHBigl] = ACTIONS(6357), - [anon_sym_BSLASHbiggl] = ACTIONS(6357), - [anon_sym_BSLASHBiggl] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6357), - [anon_sym_BSLASHgls] = ACTIONS(6357), - [anon_sym_BSLASHGls] = ACTIONS(6357), - [anon_sym_BSLASHGLS] = ACTIONS(6357), - [anon_sym_BSLASHglspl] = ACTIONS(6357), - [anon_sym_BSLASHGlspl] = ACTIONS(6357), - [anon_sym_BSLASHGLSpl] = ACTIONS(6357), - [anon_sym_BSLASHglsdisp] = ACTIONS(6357), - [anon_sym_BSLASHglslink] = ACTIONS(6357), - [anon_sym_BSLASHglstext] = ACTIONS(6357), - [anon_sym_BSLASHGlstext] = ACTIONS(6357), - [anon_sym_BSLASHGLStext] = ACTIONS(6357), - [anon_sym_BSLASHglsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6357), - [anon_sym_BSLASHglsplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSplural] = ACTIONS(6357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHglsname] = ACTIONS(6357), - [anon_sym_BSLASHGlsname] = ACTIONS(6357), - [anon_sym_BSLASHGLSname] = ACTIONS(6357), - [anon_sym_BSLASHglssymbol] = ACTIONS(6357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6357), - [anon_sym_BSLASHglsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6357), - [anon_sym_BSLASHglsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6357), - [anon_sym_BSLASHglsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6357), - [anon_sym_BSLASHglsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6357), - [anon_sym_BSLASHglsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6357), - [anon_sym_BSLASHnewacronym] = ACTIONS(6357), - [anon_sym_BSLASHacrshort] = ACTIONS(6357), - [anon_sym_BSLASHAcrshort] = ACTIONS(6357), - [anon_sym_BSLASHACRshort] = ACTIONS(6357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6357), - [anon_sym_BSLASHacrlong] = ACTIONS(6357), - [anon_sym_BSLASHAcrlong] = ACTIONS(6357), - [anon_sym_BSLASHACRlong] = ACTIONS(6357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6357), - [anon_sym_BSLASHacrfull] = ACTIONS(6357), - [anon_sym_BSLASHAcrfull] = ACTIONS(6357), - [anon_sym_BSLASHACRfull] = ACTIONS(6357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6357), - [anon_sym_BSLASHacs] = ACTIONS(6357), - [anon_sym_BSLASHAcs] = ACTIONS(6357), - [anon_sym_BSLASHacsp] = ACTIONS(6357), - [anon_sym_BSLASHAcsp] = ACTIONS(6357), - [anon_sym_BSLASHacl] = ACTIONS(6357), - [anon_sym_BSLASHAcl] = ACTIONS(6357), - [anon_sym_BSLASHaclp] = ACTIONS(6357), - [anon_sym_BSLASHAclp] = ACTIONS(6357), - [anon_sym_BSLASHacf] = ACTIONS(6357), - [anon_sym_BSLASHAcf] = ACTIONS(6357), - [anon_sym_BSLASHacfp] = ACTIONS(6357), - [anon_sym_BSLASHAcfp] = ACTIONS(6357), - [anon_sym_BSLASHac] = ACTIONS(6357), - [anon_sym_BSLASHAc] = ACTIONS(6357), - [anon_sym_BSLASHacp] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6357), - [anon_sym_BSLASHcolor] = ACTIONS(6357), - [anon_sym_BSLASHcolorbox] = ACTIONS(6357), - [anon_sym_BSLASHtextcolor] = ACTIONS(6357), - [anon_sym_BSLASHpagecolor] = ACTIONS(6357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6357), - [anon_sym_BSLASHtext] = ACTIONS(6357), - [anon_sym_BSLASHintertext] = ACTIONS(6357), - [anon_sym_shortintertext] = ACTIONS(6357), - }, - [1348] = { - [sym_command_name] = ACTIONS(6353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6353), - [anon_sym_LBRACK] = ACTIONS(6355), - [anon_sym_RBRACK] = ACTIONS(6355), - [anon_sym_COMMA] = ACTIONS(6355), - [anon_sym_EQ] = ACTIONS(6355), - [anon_sym_LPAREN] = ACTIONS(6355), - [anon_sym_RPAREN] = ACTIONS(6355), - [anon_sym_BSLASHpart] = ACTIONS(6353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddpart] = ACTIONS(6353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6355), - [anon_sym_BSLASHchapter] = ACTIONS(6353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddchap] = ACTIONS(6353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsection] = ACTIONS(6353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHaddsec] = ACTIONS(6353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubsection] = ACTIONS(6353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6355), - [anon_sym_BSLASHparagraph] = ACTIONS(6353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6355), - [anon_sym_BSLASHitem] = ACTIONS(6353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6355), - [anon_sym_LBRACE] = ACTIONS(6355), - [sym_word] = ACTIONS(6353), - [sym_placeholder] = ACTIONS(6355), - [anon_sym_PLUS] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [anon_sym_STAR] = ACTIONS(6355), - [anon_sym_SLASH] = ACTIONS(6355), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_COLON] = ACTIONS(6353), - [anon_sym_SQUOTE] = ACTIONS(6353), - [anon_sym__] = ACTIONS(6355), - [anon_sym_CARET] = ACTIONS(6355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6355), - [anon_sym_DOLLAR] = ACTIONS(6353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6355), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6355), - [anon_sym_BSLASHbegin] = ACTIONS(6353), - [anon_sym_BSLASHtitle] = ACTIONS(6353), - [anon_sym_BSLASHauthor] = ACTIONS(6353), - [anon_sym_BSLASHusepackage] = ACTIONS(6353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6353), - [anon_sym_BSLASHinclude] = ACTIONS(6353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6353), - [anon_sym_BSLASHinput] = ACTIONS(6353), - [anon_sym_BSLASHsubfile] = ACTIONS(6353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6353), - [anon_sym_BSLASHbibliography] = ACTIONS(6353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6353), - [anon_sym_BSLASHincludesvg] = ACTIONS(6353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6353), - [anon_sym_BSLASHimport] = ACTIONS(6353), - [anon_sym_BSLASHsubimport] = ACTIONS(6353), - [anon_sym_BSLASHinputfrom] = ACTIONS(6353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6353), - [anon_sym_BSLASHincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHcaption] = ACTIONS(6353), - [anon_sym_BSLASHcite] = ACTIONS(6353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCite] = ACTIONS(6353), - [anon_sym_BSLASHnocite] = ACTIONS(6353), - [anon_sym_BSLASHcitet] = ACTIONS(6353), - [anon_sym_BSLASHcitep] = ACTIONS(6353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteauthor] = ACTIONS(6353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitetitle] = ACTIONS(6353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteyear] = ACTIONS(6353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitedate] = ACTIONS(6353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteurl] = ACTIONS(6353), - [anon_sym_BSLASHfullcite] = ACTIONS(6353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6353), - [anon_sym_BSLASHcitealt] = ACTIONS(6353), - [anon_sym_BSLASHcitealp] = ACTIONS(6353), - [anon_sym_BSLASHcitetext] = ACTIONS(6353), - [anon_sym_BSLASHparencite] = ACTIONS(6353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHParencite] = ACTIONS(6353), - [anon_sym_BSLASHfootcite] = ACTIONS(6353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6353), - [anon_sym_BSLASHtextcite] = ACTIONS(6353), - [anon_sym_BSLASHTextcite] = ACTIONS(6353), - [anon_sym_BSLASHsmartcite] = ACTIONS(6353), - [anon_sym_BSLASHSmartcite] = ACTIONS(6353), - [anon_sym_BSLASHsupercite] = ACTIONS(6353), - [anon_sym_BSLASHautocite] = ACTIONS(6353), - [anon_sym_BSLASHAutocite] = ACTIONS(6353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHvolcite] = ACTIONS(6353), - [anon_sym_BSLASHVolcite] = ACTIONS(6353), - [anon_sym_BSLASHpvolcite] = ACTIONS(6353), - [anon_sym_BSLASHPvolcite] = ACTIONS(6353), - [anon_sym_BSLASHfvolcite] = ACTIONS(6353), - [anon_sym_BSLASHftvolcite] = ACTIONS(6353), - [anon_sym_BSLASHsvolcite] = ACTIONS(6353), - [anon_sym_BSLASHSvolcite] = ACTIONS(6353), - [anon_sym_BSLASHtvolcite] = ACTIONS(6353), - [anon_sym_BSLASHTvolcite] = ACTIONS(6353), - [anon_sym_BSLASHavolcite] = ACTIONS(6353), - [anon_sym_BSLASHAvolcite] = ACTIONS(6353), - [anon_sym_BSLASHnotecite] = ACTIONS(6353), - [anon_sym_BSLASHNotecite] = ACTIONS(6353), - [anon_sym_BSLASHpnotecite] = ACTIONS(6353), - [anon_sym_BSLASHPnotecite] = ACTIONS(6353), - [anon_sym_BSLASHfnotecite] = ACTIONS(6353), - [anon_sym_BSLASHlabel] = ACTIONS(6353), - [anon_sym_BSLASHref] = ACTIONS(6353), - [anon_sym_BSLASHeqref] = ACTIONS(6353), - [anon_sym_BSLASHvref] = ACTIONS(6353), - [anon_sym_BSLASHVref] = ACTIONS(6353), - [anon_sym_BSLASHautoref] = ACTIONS(6353), - [anon_sym_BSLASHpageref] = ACTIONS(6353), - [anon_sym_BSLASHcref] = ACTIONS(6353), - [anon_sym_BSLASHCref] = ACTIONS(6353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnameCref] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHlabelcref] = ACTIONS(6353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCrefrange] = ACTIONS(6353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnewlabel] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6355), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHdef] = ACTIONS(6353), - [anon_sym_BSLASHlet] = ACTIONS(6353), - [anon_sym_BSLASHleft] = ACTIONS(6353), - [anon_sym_BSLASHbig] = ACTIONS(6353), - [anon_sym_BSLASHBig] = ACTIONS(6353), - [anon_sym_BSLASHbigg] = ACTIONS(6353), - [anon_sym_BSLASHBigg] = ACTIONS(6353), - [anon_sym_BSLASHbigl] = ACTIONS(6353), - [anon_sym_BSLASHBigl] = ACTIONS(6353), - [anon_sym_BSLASHbiggl] = ACTIONS(6353), - [anon_sym_BSLASHBiggl] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6353), - [anon_sym_BSLASHgls] = ACTIONS(6353), - [anon_sym_BSLASHGls] = ACTIONS(6353), - [anon_sym_BSLASHGLS] = ACTIONS(6353), - [anon_sym_BSLASHglspl] = ACTIONS(6353), - [anon_sym_BSLASHGlspl] = ACTIONS(6353), - [anon_sym_BSLASHGLSpl] = ACTIONS(6353), - [anon_sym_BSLASHglsdisp] = ACTIONS(6353), - [anon_sym_BSLASHglslink] = ACTIONS(6353), - [anon_sym_BSLASHglstext] = ACTIONS(6353), - [anon_sym_BSLASHGlstext] = ACTIONS(6353), - [anon_sym_BSLASHGLStext] = ACTIONS(6353), - [anon_sym_BSLASHglsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6353), - [anon_sym_BSLASHglsplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSplural] = ACTIONS(6353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHglsname] = ACTIONS(6353), - [anon_sym_BSLASHGlsname] = ACTIONS(6353), - [anon_sym_BSLASHGLSname] = ACTIONS(6353), - [anon_sym_BSLASHglssymbol] = ACTIONS(6353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6353), - [anon_sym_BSLASHglsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6353), - [anon_sym_BSLASHglsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6353), - [anon_sym_BSLASHglsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6353), - [anon_sym_BSLASHglsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6353), - [anon_sym_BSLASHglsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6353), - [anon_sym_BSLASHnewacronym] = ACTIONS(6353), - [anon_sym_BSLASHacrshort] = ACTIONS(6353), - [anon_sym_BSLASHAcrshort] = ACTIONS(6353), - [anon_sym_BSLASHACRshort] = ACTIONS(6353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6353), - [anon_sym_BSLASHacrlong] = ACTIONS(6353), - [anon_sym_BSLASHAcrlong] = ACTIONS(6353), - [anon_sym_BSLASHACRlong] = ACTIONS(6353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6353), - [anon_sym_BSLASHacrfull] = ACTIONS(6353), - [anon_sym_BSLASHAcrfull] = ACTIONS(6353), - [anon_sym_BSLASHACRfull] = ACTIONS(6353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6353), - [anon_sym_BSLASHacs] = ACTIONS(6353), - [anon_sym_BSLASHAcs] = ACTIONS(6353), - [anon_sym_BSLASHacsp] = ACTIONS(6353), - [anon_sym_BSLASHAcsp] = ACTIONS(6353), - [anon_sym_BSLASHacl] = ACTIONS(6353), - [anon_sym_BSLASHAcl] = ACTIONS(6353), - [anon_sym_BSLASHaclp] = ACTIONS(6353), - [anon_sym_BSLASHAclp] = ACTIONS(6353), - [anon_sym_BSLASHacf] = ACTIONS(6353), - [anon_sym_BSLASHAcf] = ACTIONS(6353), - [anon_sym_BSLASHacfp] = ACTIONS(6353), - [anon_sym_BSLASHAcfp] = ACTIONS(6353), - [anon_sym_BSLASHac] = ACTIONS(6353), - [anon_sym_BSLASHAc] = ACTIONS(6353), - [anon_sym_BSLASHacp] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6353), - [anon_sym_BSLASHcolor] = ACTIONS(6353), - [anon_sym_BSLASHcolorbox] = ACTIONS(6353), - [anon_sym_BSLASHtextcolor] = ACTIONS(6353), - [anon_sym_BSLASHpagecolor] = ACTIONS(6353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6353), - [anon_sym_BSLASHtext] = ACTIONS(6353), - [anon_sym_BSLASHintertext] = ACTIONS(6353), - [anon_sym_shortintertext] = ACTIONS(6353), - }, - [1349] = { - [sym_command_name] = ACTIONS(6349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6349), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_EQ] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_BSLASHpart] = ACTIONS(6349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddpart] = ACTIONS(6349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6351), - [anon_sym_BSLASHchapter] = ACTIONS(6349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddchap] = ACTIONS(6349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsection] = ACTIONS(6349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHaddsec] = ACTIONS(6349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubsection] = ACTIONS(6349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6351), - [anon_sym_BSLASHparagraph] = ACTIONS(6349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6351), - [anon_sym_BSLASHitem] = ACTIONS(6349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6351), - [anon_sym_LBRACE] = ACTIONS(6351), - [sym_word] = ACTIONS(6349), - [sym_placeholder] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6351), - [anon_sym_DASH] = ACTIONS(6351), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_SQUOTE] = ACTIONS(6349), - [anon_sym__] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6351), - [anon_sym_DOLLAR] = ACTIONS(6349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6351), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6351), - [anon_sym_BSLASHbegin] = ACTIONS(6349), - [anon_sym_BSLASHtitle] = ACTIONS(6349), - [anon_sym_BSLASHauthor] = ACTIONS(6349), - [anon_sym_BSLASHusepackage] = ACTIONS(6349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6349), - [anon_sym_BSLASHinclude] = ACTIONS(6349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6349), - [anon_sym_BSLASHinput] = ACTIONS(6349), - [anon_sym_BSLASHsubfile] = ACTIONS(6349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6349), - [anon_sym_BSLASHbibliography] = ACTIONS(6349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6349), - [anon_sym_BSLASHincludesvg] = ACTIONS(6349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6349), - [anon_sym_BSLASHimport] = ACTIONS(6349), - [anon_sym_BSLASHsubimport] = ACTIONS(6349), - [anon_sym_BSLASHinputfrom] = ACTIONS(6349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6349), - [anon_sym_BSLASHincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHcaption] = ACTIONS(6349), - [anon_sym_BSLASHcite] = ACTIONS(6349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCite] = ACTIONS(6349), - [anon_sym_BSLASHnocite] = ACTIONS(6349), - [anon_sym_BSLASHcitet] = ACTIONS(6349), - [anon_sym_BSLASHcitep] = ACTIONS(6349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteauthor] = ACTIONS(6349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitetitle] = ACTIONS(6349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteyear] = ACTIONS(6349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitedate] = ACTIONS(6349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteurl] = ACTIONS(6349), - [anon_sym_BSLASHfullcite] = ACTIONS(6349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6349), - [anon_sym_BSLASHcitealt] = ACTIONS(6349), - [anon_sym_BSLASHcitealp] = ACTIONS(6349), - [anon_sym_BSLASHcitetext] = ACTIONS(6349), - [anon_sym_BSLASHparencite] = ACTIONS(6349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHParencite] = ACTIONS(6349), - [anon_sym_BSLASHfootcite] = ACTIONS(6349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6349), - [anon_sym_BSLASHtextcite] = ACTIONS(6349), - [anon_sym_BSLASHTextcite] = ACTIONS(6349), - [anon_sym_BSLASHsmartcite] = ACTIONS(6349), - [anon_sym_BSLASHSmartcite] = ACTIONS(6349), - [anon_sym_BSLASHsupercite] = ACTIONS(6349), - [anon_sym_BSLASHautocite] = ACTIONS(6349), - [anon_sym_BSLASHAutocite] = ACTIONS(6349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHvolcite] = ACTIONS(6349), - [anon_sym_BSLASHVolcite] = ACTIONS(6349), - [anon_sym_BSLASHpvolcite] = ACTIONS(6349), - [anon_sym_BSLASHPvolcite] = ACTIONS(6349), - [anon_sym_BSLASHfvolcite] = ACTIONS(6349), - [anon_sym_BSLASHftvolcite] = ACTIONS(6349), - [anon_sym_BSLASHsvolcite] = ACTIONS(6349), - [anon_sym_BSLASHSvolcite] = ACTIONS(6349), - [anon_sym_BSLASHtvolcite] = ACTIONS(6349), - [anon_sym_BSLASHTvolcite] = ACTIONS(6349), - [anon_sym_BSLASHavolcite] = ACTIONS(6349), - [anon_sym_BSLASHAvolcite] = ACTIONS(6349), - [anon_sym_BSLASHnotecite] = ACTIONS(6349), - [anon_sym_BSLASHNotecite] = ACTIONS(6349), - [anon_sym_BSLASHpnotecite] = ACTIONS(6349), - [anon_sym_BSLASHPnotecite] = ACTIONS(6349), - [anon_sym_BSLASHfnotecite] = ACTIONS(6349), - [anon_sym_BSLASHlabel] = ACTIONS(6349), - [anon_sym_BSLASHref] = ACTIONS(6349), - [anon_sym_BSLASHeqref] = ACTIONS(6349), - [anon_sym_BSLASHvref] = ACTIONS(6349), - [anon_sym_BSLASHVref] = ACTIONS(6349), - [anon_sym_BSLASHautoref] = ACTIONS(6349), - [anon_sym_BSLASHpageref] = ACTIONS(6349), - [anon_sym_BSLASHcref] = ACTIONS(6349), - [anon_sym_BSLASHCref] = ACTIONS(6349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnameCref] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHlabelcref] = ACTIONS(6349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCrefrange] = ACTIONS(6349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnewlabel] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6351), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHdef] = ACTIONS(6349), - [anon_sym_BSLASHlet] = ACTIONS(6349), - [anon_sym_BSLASHleft] = ACTIONS(6349), - [anon_sym_BSLASHbig] = ACTIONS(6349), - [anon_sym_BSLASHBig] = ACTIONS(6349), - [anon_sym_BSLASHbigg] = ACTIONS(6349), - [anon_sym_BSLASHBigg] = ACTIONS(6349), - [anon_sym_BSLASHbigl] = ACTIONS(6349), - [anon_sym_BSLASHBigl] = ACTIONS(6349), - [anon_sym_BSLASHbiggl] = ACTIONS(6349), - [anon_sym_BSLASHBiggl] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6349), - [anon_sym_BSLASHgls] = ACTIONS(6349), - [anon_sym_BSLASHGls] = ACTIONS(6349), - [anon_sym_BSLASHGLS] = ACTIONS(6349), - [anon_sym_BSLASHglspl] = ACTIONS(6349), - [anon_sym_BSLASHGlspl] = ACTIONS(6349), - [anon_sym_BSLASHGLSpl] = ACTIONS(6349), - [anon_sym_BSLASHglsdisp] = ACTIONS(6349), - [anon_sym_BSLASHglslink] = ACTIONS(6349), - [anon_sym_BSLASHglstext] = ACTIONS(6349), - [anon_sym_BSLASHGlstext] = ACTIONS(6349), - [anon_sym_BSLASHGLStext] = ACTIONS(6349), - [anon_sym_BSLASHglsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6349), - [anon_sym_BSLASHglsplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSplural] = ACTIONS(6349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHglsname] = ACTIONS(6349), - [anon_sym_BSLASHGlsname] = ACTIONS(6349), - [anon_sym_BSLASHGLSname] = ACTIONS(6349), - [anon_sym_BSLASHglssymbol] = ACTIONS(6349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6349), - [anon_sym_BSLASHglsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6349), - [anon_sym_BSLASHglsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6349), - [anon_sym_BSLASHglsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6349), - [anon_sym_BSLASHglsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6349), - [anon_sym_BSLASHglsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6349), - [anon_sym_BSLASHnewacronym] = ACTIONS(6349), - [anon_sym_BSLASHacrshort] = ACTIONS(6349), - [anon_sym_BSLASHAcrshort] = ACTIONS(6349), - [anon_sym_BSLASHACRshort] = ACTIONS(6349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6349), - [anon_sym_BSLASHacrlong] = ACTIONS(6349), - [anon_sym_BSLASHAcrlong] = ACTIONS(6349), - [anon_sym_BSLASHACRlong] = ACTIONS(6349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6349), - [anon_sym_BSLASHacrfull] = ACTIONS(6349), - [anon_sym_BSLASHAcrfull] = ACTIONS(6349), - [anon_sym_BSLASHACRfull] = ACTIONS(6349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6349), - [anon_sym_BSLASHacs] = ACTIONS(6349), - [anon_sym_BSLASHAcs] = ACTIONS(6349), - [anon_sym_BSLASHacsp] = ACTIONS(6349), - [anon_sym_BSLASHAcsp] = ACTIONS(6349), - [anon_sym_BSLASHacl] = ACTIONS(6349), - [anon_sym_BSLASHAcl] = ACTIONS(6349), - [anon_sym_BSLASHaclp] = ACTIONS(6349), - [anon_sym_BSLASHAclp] = ACTIONS(6349), - [anon_sym_BSLASHacf] = ACTIONS(6349), - [anon_sym_BSLASHAcf] = ACTIONS(6349), - [anon_sym_BSLASHacfp] = ACTIONS(6349), - [anon_sym_BSLASHAcfp] = ACTIONS(6349), - [anon_sym_BSLASHac] = ACTIONS(6349), - [anon_sym_BSLASHAc] = ACTIONS(6349), - [anon_sym_BSLASHacp] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6349), - [anon_sym_BSLASHcolor] = ACTIONS(6349), - [anon_sym_BSLASHcolorbox] = ACTIONS(6349), - [anon_sym_BSLASHtextcolor] = ACTIONS(6349), - [anon_sym_BSLASHpagecolor] = ACTIONS(6349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6349), - [anon_sym_BSLASHtext] = ACTIONS(6349), - [anon_sym_BSLASHintertext] = ACTIONS(6349), - [anon_sym_shortintertext] = ACTIONS(6349), - }, - [1350] = { - [sym_command_name] = ACTIONS(6345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6345), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_EQ] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_BSLASHpart] = ACTIONS(6345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddpart] = ACTIONS(6345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6347), - [anon_sym_BSLASHchapter] = ACTIONS(6345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddchap] = ACTIONS(6345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsection] = ACTIONS(6345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHaddsec] = ACTIONS(6345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubsection] = ACTIONS(6345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6347), - [anon_sym_BSLASHparagraph] = ACTIONS(6345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6347), - [anon_sym_BSLASHitem] = ACTIONS(6345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6347), - [anon_sym_LBRACE] = ACTIONS(6347), - [sym_word] = ACTIONS(6345), - [sym_placeholder] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6345), - [anon_sym_GT] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(6345), - [anon_sym_PIPE] = ACTIONS(6345), - [anon_sym_COLON] = ACTIONS(6345), - [anon_sym_SQUOTE] = ACTIONS(6345), - [anon_sym__] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6347), - [anon_sym_DOLLAR] = ACTIONS(6345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6347), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6347), - [anon_sym_BSLASHbegin] = ACTIONS(6345), - [anon_sym_BSLASHtitle] = ACTIONS(6345), - [anon_sym_BSLASHauthor] = ACTIONS(6345), - [anon_sym_BSLASHusepackage] = ACTIONS(6345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6345), - [anon_sym_BSLASHinclude] = ACTIONS(6345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6345), - [anon_sym_BSLASHinput] = ACTIONS(6345), - [anon_sym_BSLASHsubfile] = ACTIONS(6345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6345), - [anon_sym_BSLASHbibliography] = ACTIONS(6345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6345), - [anon_sym_BSLASHincludesvg] = ACTIONS(6345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6345), - [anon_sym_BSLASHimport] = ACTIONS(6345), - [anon_sym_BSLASHsubimport] = ACTIONS(6345), - [anon_sym_BSLASHinputfrom] = ACTIONS(6345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6345), - [anon_sym_BSLASHincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHcaption] = ACTIONS(6345), - [anon_sym_BSLASHcite] = ACTIONS(6345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCite] = ACTIONS(6345), - [anon_sym_BSLASHnocite] = ACTIONS(6345), - [anon_sym_BSLASHcitet] = ACTIONS(6345), - [anon_sym_BSLASHcitep] = ACTIONS(6345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteauthor] = ACTIONS(6345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitetitle] = ACTIONS(6345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteyear] = ACTIONS(6345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitedate] = ACTIONS(6345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteurl] = ACTIONS(6345), - [anon_sym_BSLASHfullcite] = ACTIONS(6345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6345), - [anon_sym_BSLASHcitealt] = ACTIONS(6345), - [anon_sym_BSLASHcitealp] = ACTIONS(6345), - [anon_sym_BSLASHcitetext] = ACTIONS(6345), - [anon_sym_BSLASHparencite] = ACTIONS(6345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHParencite] = ACTIONS(6345), - [anon_sym_BSLASHfootcite] = ACTIONS(6345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6345), - [anon_sym_BSLASHtextcite] = ACTIONS(6345), - [anon_sym_BSLASHTextcite] = ACTIONS(6345), - [anon_sym_BSLASHsmartcite] = ACTIONS(6345), - [anon_sym_BSLASHSmartcite] = ACTIONS(6345), - [anon_sym_BSLASHsupercite] = ACTIONS(6345), - [anon_sym_BSLASHautocite] = ACTIONS(6345), - [anon_sym_BSLASHAutocite] = ACTIONS(6345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHvolcite] = ACTIONS(6345), - [anon_sym_BSLASHVolcite] = ACTIONS(6345), - [anon_sym_BSLASHpvolcite] = ACTIONS(6345), - [anon_sym_BSLASHPvolcite] = ACTIONS(6345), - [anon_sym_BSLASHfvolcite] = ACTIONS(6345), - [anon_sym_BSLASHftvolcite] = ACTIONS(6345), - [anon_sym_BSLASHsvolcite] = ACTIONS(6345), - [anon_sym_BSLASHSvolcite] = ACTIONS(6345), - [anon_sym_BSLASHtvolcite] = ACTIONS(6345), - [anon_sym_BSLASHTvolcite] = ACTIONS(6345), - [anon_sym_BSLASHavolcite] = ACTIONS(6345), - [anon_sym_BSLASHAvolcite] = ACTIONS(6345), - [anon_sym_BSLASHnotecite] = ACTIONS(6345), - [anon_sym_BSLASHNotecite] = ACTIONS(6345), - [anon_sym_BSLASHpnotecite] = ACTIONS(6345), - [anon_sym_BSLASHPnotecite] = ACTIONS(6345), - [anon_sym_BSLASHfnotecite] = ACTIONS(6345), - [anon_sym_BSLASHlabel] = ACTIONS(6345), - [anon_sym_BSLASHref] = ACTIONS(6345), - [anon_sym_BSLASHeqref] = ACTIONS(6345), - [anon_sym_BSLASHvref] = ACTIONS(6345), - [anon_sym_BSLASHVref] = ACTIONS(6345), - [anon_sym_BSLASHautoref] = ACTIONS(6345), - [anon_sym_BSLASHpageref] = ACTIONS(6345), - [anon_sym_BSLASHcref] = ACTIONS(6345), - [anon_sym_BSLASHCref] = ACTIONS(6345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnameCref] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHlabelcref] = ACTIONS(6345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCrefrange] = ACTIONS(6345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnewlabel] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6347), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHdef] = ACTIONS(6345), - [anon_sym_BSLASHlet] = ACTIONS(6345), - [anon_sym_BSLASHleft] = ACTIONS(6345), - [anon_sym_BSLASHbig] = ACTIONS(6345), - [anon_sym_BSLASHBig] = ACTIONS(6345), - [anon_sym_BSLASHbigg] = ACTIONS(6345), - [anon_sym_BSLASHBigg] = ACTIONS(6345), - [anon_sym_BSLASHbigl] = ACTIONS(6345), - [anon_sym_BSLASHBigl] = ACTIONS(6345), - [anon_sym_BSLASHbiggl] = ACTIONS(6345), - [anon_sym_BSLASHBiggl] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6345), - [anon_sym_BSLASHgls] = ACTIONS(6345), - [anon_sym_BSLASHGls] = ACTIONS(6345), - [anon_sym_BSLASHGLS] = ACTIONS(6345), - [anon_sym_BSLASHglspl] = ACTIONS(6345), - [anon_sym_BSLASHGlspl] = ACTIONS(6345), - [anon_sym_BSLASHGLSpl] = ACTIONS(6345), - [anon_sym_BSLASHglsdisp] = ACTIONS(6345), - [anon_sym_BSLASHglslink] = ACTIONS(6345), - [anon_sym_BSLASHglstext] = ACTIONS(6345), - [anon_sym_BSLASHGlstext] = ACTIONS(6345), - [anon_sym_BSLASHGLStext] = ACTIONS(6345), - [anon_sym_BSLASHglsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6345), - [anon_sym_BSLASHglsplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSplural] = ACTIONS(6345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHglsname] = ACTIONS(6345), - [anon_sym_BSLASHGlsname] = ACTIONS(6345), - [anon_sym_BSLASHGLSname] = ACTIONS(6345), - [anon_sym_BSLASHglssymbol] = ACTIONS(6345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6345), - [anon_sym_BSLASHglsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6345), - [anon_sym_BSLASHglsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6345), - [anon_sym_BSLASHglsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6345), - [anon_sym_BSLASHglsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6345), - [anon_sym_BSLASHglsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6345), - [anon_sym_BSLASHnewacronym] = ACTIONS(6345), - [anon_sym_BSLASHacrshort] = ACTIONS(6345), - [anon_sym_BSLASHAcrshort] = ACTIONS(6345), - [anon_sym_BSLASHACRshort] = ACTIONS(6345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6345), - [anon_sym_BSLASHacrlong] = ACTIONS(6345), - [anon_sym_BSLASHAcrlong] = ACTIONS(6345), - [anon_sym_BSLASHACRlong] = ACTIONS(6345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6345), - [anon_sym_BSLASHacrfull] = ACTIONS(6345), - [anon_sym_BSLASHAcrfull] = ACTIONS(6345), - [anon_sym_BSLASHACRfull] = ACTIONS(6345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6345), - [anon_sym_BSLASHacs] = ACTIONS(6345), - [anon_sym_BSLASHAcs] = ACTIONS(6345), - [anon_sym_BSLASHacsp] = ACTIONS(6345), - [anon_sym_BSLASHAcsp] = ACTIONS(6345), - [anon_sym_BSLASHacl] = ACTIONS(6345), - [anon_sym_BSLASHAcl] = ACTIONS(6345), - [anon_sym_BSLASHaclp] = ACTIONS(6345), - [anon_sym_BSLASHAclp] = ACTIONS(6345), - [anon_sym_BSLASHacf] = ACTIONS(6345), - [anon_sym_BSLASHAcf] = ACTIONS(6345), - [anon_sym_BSLASHacfp] = ACTIONS(6345), - [anon_sym_BSLASHAcfp] = ACTIONS(6345), - [anon_sym_BSLASHac] = ACTIONS(6345), - [anon_sym_BSLASHAc] = ACTIONS(6345), - [anon_sym_BSLASHacp] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6345), - [anon_sym_BSLASHcolor] = ACTIONS(6345), - [anon_sym_BSLASHcolorbox] = ACTIONS(6345), - [anon_sym_BSLASHtextcolor] = ACTIONS(6345), - [anon_sym_BSLASHpagecolor] = ACTIONS(6345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6345), - [anon_sym_BSLASHtext] = ACTIONS(6345), - [anon_sym_BSLASHintertext] = ACTIONS(6345), - [anon_sym_shortintertext] = ACTIONS(6345), - }, - [1351] = { - [sym_command_name] = ACTIONS(6341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(6343), - [anon_sym_RBRACK] = ACTIONS(6343), - [anon_sym_COMMA] = ACTIONS(6343), - [anon_sym_EQ] = ACTIONS(6343), - [anon_sym_LPAREN] = ACTIONS(6343), - [anon_sym_RPAREN] = ACTIONS(6343), - [anon_sym_BSLASHpart] = ACTIONS(6341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddpart] = ACTIONS(6341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6343), - [anon_sym_BSLASHchapter] = ACTIONS(6341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddchap] = ACTIONS(6341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsection] = ACTIONS(6341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHaddsec] = ACTIONS(6341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubsection] = ACTIONS(6341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6343), - [anon_sym_BSLASHparagraph] = ACTIONS(6341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6343), - [anon_sym_BSLASHitem] = ACTIONS(6341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6343), - [anon_sym_LBRACE] = ACTIONS(6343), - [sym_word] = ACTIONS(6341), - [sym_placeholder] = ACTIONS(6343), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_LT] = ACTIONS(6341), - [anon_sym_GT] = ACTIONS(6341), - [anon_sym_BANG] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_SQUOTE] = ACTIONS(6341), - [anon_sym__] = ACTIONS(6343), - [anon_sym_CARET] = ACTIONS(6343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6343), - [anon_sym_DOLLAR] = ACTIONS(6341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6343), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6343), - [anon_sym_BSLASHbegin] = ACTIONS(6341), - [anon_sym_BSLASHtitle] = ACTIONS(6341), - [anon_sym_BSLASHauthor] = ACTIONS(6341), - [anon_sym_BSLASHusepackage] = ACTIONS(6341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6341), - [anon_sym_BSLASHinclude] = ACTIONS(6341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6341), - [anon_sym_BSLASHinput] = ACTIONS(6341), - [anon_sym_BSLASHsubfile] = ACTIONS(6341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6341), - [anon_sym_BSLASHbibliography] = ACTIONS(6341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6341), - [anon_sym_BSLASHincludesvg] = ACTIONS(6341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6341), - [anon_sym_BSLASHimport] = ACTIONS(6341), - [anon_sym_BSLASHsubimport] = ACTIONS(6341), - [anon_sym_BSLASHinputfrom] = ACTIONS(6341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6341), - [anon_sym_BSLASHincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHcaption] = ACTIONS(6341), - [anon_sym_BSLASHcite] = ACTIONS(6341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCite] = ACTIONS(6341), - [anon_sym_BSLASHnocite] = ACTIONS(6341), - [anon_sym_BSLASHcitet] = ACTIONS(6341), - [anon_sym_BSLASHcitep] = ACTIONS(6341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteauthor] = ACTIONS(6341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitetitle] = ACTIONS(6341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteyear] = ACTIONS(6341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitedate] = ACTIONS(6341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteurl] = ACTIONS(6341), - [anon_sym_BSLASHfullcite] = ACTIONS(6341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6341), - [anon_sym_BSLASHcitealt] = ACTIONS(6341), - [anon_sym_BSLASHcitealp] = ACTIONS(6341), - [anon_sym_BSLASHcitetext] = ACTIONS(6341), - [anon_sym_BSLASHparencite] = ACTIONS(6341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHParencite] = ACTIONS(6341), - [anon_sym_BSLASHfootcite] = ACTIONS(6341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6341), - [anon_sym_BSLASHtextcite] = ACTIONS(6341), - [anon_sym_BSLASHTextcite] = ACTIONS(6341), - [anon_sym_BSLASHsmartcite] = ACTIONS(6341), - [anon_sym_BSLASHSmartcite] = ACTIONS(6341), - [anon_sym_BSLASHsupercite] = ACTIONS(6341), - [anon_sym_BSLASHautocite] = ACTIONS(6341), - [anon_sym_BSLASHAutocite] = ACTIONS(6341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHvolcite] = ACTIONS(6341), - [anon_sym_BSLASHVolcite] = ACTIONS(6341), - [anon_sym_BSLASHpvolcite] = ACTIONS(6341), - [anon_sym_BSLASHPvolcite] = ACTIONS(6341), - [anon_sym_BSLASHfvolcite] = ACTIONS(6341), - [anon_sym_BSLASHftvolcite] = ACTIONS(6341), - [anon_sym_BSLASHsvolcite] = ACTIONS(6341), - [anon_sym_BSLASHSvolcite] = ACTIONS(6341), - [anon_sym_BSLASHtvolcite] = ACTIONS(6341), - [anon_sym_BSLASHTvolcite] = ACTIONS(6341), - [anon_sym_BSLASHavolcite] = ACTIONS(6341), - [anon_sym_BSLASHAvolcite] = ACTIONS(6341), - [anon_sym_BSLASHnotecite] = ACTIONS(6341), - [anon_sym_BSLASHNotecite] = ACTIONS(6341), - [anon_sym_BSLASHpnotecite] = ACTIONS(6341), - [anon_sym_BSLASHPnotecite] = ACTIONS(6341), - [anon_sym_BSLASHfnotecite] = ACTIONS(6341), - [anon_sym_BSLASHlabel] = ACTIONS(6341), - [anon_sym_BSLASHref] = ACTIONS(6341), - [anon_sym_BSLASHeqref] = ACTIONS(6341), - [anon_sym_BSLASHvref] = ACTIONS(6341), - [anon_sym_BSLASHVref] = ACTIONS(6341), - [anon_sym_BSLASHautoref] = ACTIONS(6341), - [anon_sym_BSLASHpageref] = ACTIONS(6341), - [anon_sym_BSLASHcref] = ACTIONS(6341), - [anon_sym_BSLASHCref] = ACTIONS(6341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnameCref] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHlabelcref] = ACTIONS(6341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCrefrange] = ACTIONS(6341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnewlabel] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6343), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHdef] = ACTIONS(6341), - [anon_sym_BSLASHlet] = ACTIONS(6341), - [anon_sym_BSLASHleft] = ACTIONS(6341), - [anon_sym_BSLASHbig] = ACTIONS(6341), - [anon_sym_BSLASHBig] = ACTIONS(6341), - [anon_sym_BSLASHbigg] = ACTIONS(6341), - [anon_sym_BSLASHBigg] = ACTIONS(6341), - [anon_sym_BSLASHbigl] = ACTIONS(6341), - [anon_sym_BSLASHBigl] = ACTIONS(6341), - [anon_sym_BSLASHbiggl] = ACTIONS(6341), - [anon_sym_BSLASHBiggl] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6341), - [anon_sym_BSLASHgls] = ACTIONS(6341), - [anon_sym_BSLASHGls] = ACTIONS(6341), - [anon_sym_BSLASHGLS] = ACTIONS(6341), - [anon_sym_BSLASHglspl] = ACTIONS(6341), - [anon_sym_BSLASHGlspl] = ACTIONS(6341), - [anon_sym_BSLASHGLSpl] = ACTIONS(6341), - [anon_sym_BSLASHglsdisp] = ACTIONS(6341), - [anon_sym_BSLASHglslink] = ACTIONS(6341), - [anon_sym_BSLASHglstext] = ACTIONS(6341), - [anon_sym_BSLASHGlstext] = ACTIONS(6341), - [anon_sym_BSLASHGLStext] = ACTIONS(6341), - [anon_sym_BSLASHglsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6341), - [anon_sym_BSLASHglsplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSplural] = ACTIONS(6341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHglsname] = ACTIONS(6341), - [anon_sym_BSLASHGlsname] = ACTIONS(6341), - [anon_sym_BSLASHGLSname] = ACTIONS(6341), - [anon_sym_BSLASHglssymbol] = ACTIONS(6341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6341), - [anon_sym_BSLASHglsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6341), - [anon_sym_BSLASHglsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6341), - [anon_sym_BSLASHglsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6341), - [anon_sym_BSLASHglsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6341), - [anon_sym_BSLASHglsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6341), - [anon_sym_BSLASHnewacronym] = ACTIONS(6341), - [anon_sym_BSLASHacrshort] = ACTIONS(6341), - [anon_sym_BSLASHAcrshort] = ACTIONS(6341), - [anon_sym_BSLASHACRshort] = ACTIONS(6341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6341), - [anon_sym_BSLASHacrlong] = ACTIONS(6341), - [anon_sym_BSLASHAcrlong] = ACTIONS(6341), - [anon_sym_BSLASHACRlong] = ACTIONS(6341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6341), - [anon_sym_BSLASHacrfull] = ACTIONS(6341), - [anon_sym_BSLASHAcrfull] = ACTIONS(6341), - [anon_sym_BSLASHACRfull] = ACTIONS(6341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6341), - [anon_sym_BSLASHacs] = ACTIONS(6341), - [anon_sym_BSLASHAcs] = ACTIONS(6341), - [anon_sym_BSLASHacsp] = ACTIONS(6341), - [anon_sym_BSLASHAcsp] = ACTIONS(6341), - [anon_sym_BSLASHacl] = ACTIONS(6341), - [anon_sym_BSLASHAcl] = ACTIONS(6341), - [anon_sym_BSLASHaclp] = ACTIONS(6341), - [anon_sym_BSLASHAclp] = ACTIONS(6341), - [anon_sym_BSLASHacf] = ACTIONS(6341), - [anon_sym_BSLASHAcf] = ACTIONS(6341), - [anon_sym_BSLASHacfp] = ACTIONS(6341), - [anon_sym_BSLASHAcfp] = ACTIONS(6341), - [anon_sym_BSLASHac] = ACTIONS(6341), - [anon_sym_BSLASHAc] = ACTIONS(6341), - [anon_sym_BSLASHacp] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6341), - [anon_sym_BSLASHcolor] = ACTIONS(6341), - [anon_sym_BSLASHcolorbox] = ACTIONS(6341), - [anon_sym_BSLASHtextcolor] = ACTIONS(6341), - [anon_sym_BSLASHpagecolor] = ACTIONS(6341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6341), - [anon_sym_BSLASHtext] = ACTIONS(6341), - [anon_sym_BSLASHintertext] = ACTIONS(6341), - [anon_sym_shortintertext] = ACTIONS(6341), - }, - [1352] = { - [sym_command_name] = ACTIONS(6337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6337), - [anon_sym_LBRACK] = ACTIONS(6339), - [anon_sym_RBRACK] = ACTIONS(6339), - [anon_sym_COMMA] = ACTIONS(6339), - [anon_sym_EQ] = ACTIONS(6339), - [anon_sym_LPAREN] = ACTIONS(6339), - [anon_sym_RPAREN] = ACTIONS(6339), - [anon_sym_BSLASHpart] = ACTIONS(6337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddpart] = ACTIONS(6337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6339), - [anon_sym_BSLASHchapter] = ACTIONS(6337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddchap] = ACTIONS(6337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsection] = ACTIONS(6337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHaddsec] = ACTIONS(6337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubsection] = ACTIONS(6337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6339), - [anon_sym_BSLASHparagraph] = ACTIONS(6337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6339), - [anon_sym_BSLASHitem] = ACTIONS(6337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6339), - [anon_sym_LBRACE] = ACTIONS(6339), - [sym_word] = ACTIONS(6337), - [sym_placeholder] = ACTIONS(6339), - [anon_sym_PLUS] = ACTIONS(6339), - [anon_sym_DASH] = ACTIONS(6339), - [anon_sym_STAR] = ACTIONS(6339), - [anon_sym_SLASH] = ACTIONS(6339), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_COLON] = ACTIONS(6337), - [anon_sym_SQUOTE] = ACTIONS(6337), - [anon_sym__] = ACTIONS(6339), - [anon_sym_CARET] = ACTIONS(6339), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6339), - [anon_sym_DOLLAR] = ACTIONS(6337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6339), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6339), - [anon_sym_BSLASHbegin] = ACTIONS(6337), - [anon_sym_BSLASHtitle] = ACTIONS(6337), - [anon_sym_BSLASHauthor] = ACTIONS(6337), - [anon_sym_BSLASHusepackage] = ACTIONS(6337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6337), - [anon_sym_BSLASHinclude] = ACTIONS(6337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6337), - [anon_sym_BSLASHinput] = ACTIONS(6337), - [anon_sym_BSLASHsubfile] = ACTIONS(6337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6337), - [anon_sym_BSLASHbibliography] = ACTIONS(6337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6337), - [anon_sym_BSLASHincludesvg] = ACTIONS(6337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6337), - [anon_sym_BSLASHimport] = ACTIONS(6337), - [anon_sym_BSLASHsubimport] = ACTIONS(6337), - [anon_sym_BSLASHinputfrom] = ACTIONS(6337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6337), - [anon_sym_BSLASHincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHcaption] = ACTIONS(6337), - [anon_sym_BSLASHcite] = ACTIONS(6337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCite] = ACTIONS(6337), - [anon_sym_BSLASHnocite] = ACTIONS(6337), - [anon_sym_BSLASHcitet] = ACTIONS(6337), - [anon_sym_BSLASHcitep] = ACTIONS(6337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteauthor] = ACTIONS(6337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitetitle] = ACTIONS(6337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteyear] = ACTIONS(6337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitedate] = ACTIONS(6337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteurl] = ACTIONS(6337), - [anon_sym_BSLASHfullcite] = ACTIONS(6337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6337), - [anon_sym_BSLASHcitealt] = ACTIONS(6337), - [anon_sym_BSLASHcitealp] = ACTIONS(6337), - [anon_sym_BSLASHcitetext] = ACTIONS(6337), - [anon_sym_BSLASHparencite] = ACTIONS(6337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHParencite] = ACTIONS(6337), - [anon_sym_BSLASHfootcite] = ACTIONS(6337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6337), - [anon_sym_BSLASHtextcite] = ACTIONS(6337), - [anon_sym_BSLASHTextcite] = ACTIONS(6337), - [anon_sym_BSLASHsmartcite] = ACTIONS(6337), - [anon_sym_BSLASHSmartcite] = ACTIONS(6337), - [anon_sym_BSLASHsupercite] = ACTIONS(6337), - [anon_sym_BSLASHautocite] = ACTIONS(6337), - [anon_sym_BSLASHAutocite] = ACTIONS(6337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHvolcite] = ACTIONS(6337), - [anon_sym_BSLASHVolcite] = ACTIONS(6337), - [anon_sym_BSLASHpvolcite] = ACTIONS(6337), - [anon_sym_BSLASHPvolcite] = ACTIONS(6337), - [anon_sym_BSLASHfvolcite] = ACTIONS(6337), - [anon_sym_BSLASHftvolcite] = ACTIONS(6337), - [anon_sym_BSLASHsvolcite] = ACTIONS(6337), - [anon_sym_BSLASHSvolcite] = ACTIONS(6337), - [anon_sym_BSLASHtvolcite] = ACTIONS(6337), - [anon_sym_BSLASHTvolcite] = ACTIONS(6337), - [anon_sym_BSLASHavolcite] = ACTIONS(6337), - [anon_sym_BSLASHAvolcite] = ACTIONS(6337), - [anon_sym_BSLASHnotecite] = ACTIONS(6337), - [anon_sym_BSLASHNotecite] = ACTIONS(6337), - [anon_sym_BSLASHpnotecite] = ACTIONS(6337), - [anon_sym_BSLASHPnotecite] = ACTIONS(6337), - [anon_sym_BSLASHfnotecite] = ACTIONS(6337), - [anon_sym_BSLASHlabel] = ACTIONS(6337), - [anon_sym_BSLASHref] = ACTIONS(6337), - [anon_sym_BSLASHeqref] = ACTIONS(6337), - [anon_sym_BSLASHvref] = ACTIONS(6337), - [anon_sym_BSLASHVref] = ACTIONS(6337), - [anon_sym_BSLASHautoref] = ACTIONS(6337), - [anon_sym_BSLASHpageref] = ACTIONS(6337), - [anon_sym_BSLASHcref] = ACTIONS(6337), - [anon_sym_BSLASHCref] = ACTIONS(6337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnameCref] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHlabelcref] = ACTIONS(6337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCrefrange] = ACTIONS(6337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnewlabel] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6339), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHdef] = ACTIONS(6337), - [anon_sym_BSLASHlet] = ACTIONS(6337), - [anon_sym_BSLASHleft] = ACTIONS(6337), - [anon_sym_BSLASHbig] = ACTIONS(6337), - [anon_sym_BSLASHBig] = ACTIONS(6337), - [anon_sym_BSLASHbigg] = ACTIONS(6337), - [anon_sym_BSLASHBigg] = ACTIONS(6337), - [anon_sym_BSLASHbigl] = ACTIONS(6337), - [anon_sym_BSLASHBigl] = ACTIONS(6337), - [anon_sym_BSLASHbiggl] = ACTIONS(6337), - [anon_sym_BSLASHBiggl] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6337), - [anon_sym_BSLASHgls] = ACTIONS(6337), - [anon_sym_BSLASHGls] = ACTIONS(6337), - [anon_sym_BSLASHGLS] = ACTIONS(6337), - [anon_sym_BSLASHglspl] = ACTIONS(6337), - [anon_sym_BSLASHGlspl] = ACTIONS(6337), - [anon_sym_BSLASHGLSpl] = ACTIONS(6337), - [anon_sym_BSLASHglsdisp] = ACTIONS(6337), - [anon_sym_BSLASHglslink] = ACTIONS(6337), - [anon_sym_BSLASHglstext] = ACTIONS(6337), - [anon_sym_BSLASHGlstext] = ACTIONS(6337), - [anon_sym_BSLASHGLStext] = ACTIONS(6337), - [anon_sym_BSLASHglsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6337), - [anon_sym_BSLASHglsplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSplural] = ACTIONS(6337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHglsname] = ACTIONS(6337), - [anon_sym_BSLASHGlsname] = ACTIONS(6337), - [anon_sym_BSLASHGLSname] = ACTIONS(6337), - [anon_sym_BSLASHglssymbol] = ACTIONS(6337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6337), - [anon_sym_BSLASHglsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6337), - [anon_sym_BSLASHglsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6337), - [anon_sym_BSLASHglsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6337), - [anon_sym_BSLASHglsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6337), - [anon_sym_BSLASHglsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6337), - [anon_sym_BSLASHnewacronym] = ACTIONS(6337), - [anon_sym_BSLASHacrshort] = ACTIONS(6337), - [anon_sym_BSLASHAcrshort] = ACTIONS(6337), - [anon_sym_BSLASHACRshort] = ACTIONS(6337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6337), - [anon_sym_BSLASHacrlong] = ACTIONS(6337), - [anon_sym_BSLASHAcrlong] = ACTIONS(6337), - [anon_sym_BSLASHACRlong] = ACTIONS(6337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6337), - [anon_sym_BSLASHacrfull] = ACTIONS(6337), - [anon_sym_BSLASHAcrfull] = ACTIONS(6337), - [anon_sym_BSLASHACRfull] = ACTIONS(6337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6337), - [anon_sym_BSLASHacs] = ACTIONS(6337), - [anon_sym_BSLASHAcs] = ACTIONS(6337), - [anon_sym_BSLASHacsp] = ACTIONS(6337), - [anon_sym_BSLASHAcsp] = ACTIONS(6337), - [anon_sym_BSLASHacl] = ACTIONS(6337), - [anon_sym_BSLASHAcl] = ACTIONS(6337), - [anon_sym_BSLASHaclp] = ACTIONS(6337), - [anon_sym_BSLASHAclp] = ACTIONS(6337), - [anon_sym_BSLASHacf] = ACTIONS(6337), - [anon_sym_BSLASHAcf] = ACTIONS(6337), - [anon_sym_BSLASHacfp] = ACTIONS(6337), - [anon_sym_BSLASHAcfp] = ACTIONS(6337), - [anon_sym_BSLASHac] = ACTIONS(6337), - [anon_sym_BSLASHAc] = ACTIONS(6337), - [anon_sym_BSLASHacp] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6337), - [anon_sym_BSLASHcolor] = ACTIONS(6337), - [anon_sym_BSLASHcolorbox] = ACTIONS(6337), - [anon_sym_BSLASHtextcolor] = ACTIONS(6337), - [anon_sym_BSLASHpagecolor] = ACTIONS(6337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6337), - [anon_sym_BSLASHtext] = ACTIONS(6337), - [anon_sym_BSLASHintertext] = ACTIONS(6337), - [anon_sym_shortintertext] = ACTIONS(6337), - }, - [1353] = { - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHpart] = ACTIONS(195), - [anon_sym_BSLASHpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddpart] = ACTIONS(195), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(197), - [anon_sym_BSLASHchapter] = ACTIONS(195), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddchap] = ACTIONS(195), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), - [anon_sym_BSLASHsection] = ACTIONS(195), - [anon_sym_BSLASHsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHaddsec] = ACTIONS(195), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubsubsection] = ACTIONS(195), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(197), - [anon_sym_BSLASHparagraph] = ACTIONS(195), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHsubparagraph] = ACTIONS(195), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(197), - [anon_sym_BSLASHitem] = ACTIONS(195), - [anon_sym_BSLASHitem_STAR] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASH_RPAREN] = ACTIONS(197), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [1354] = { - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHpart] = ACTIONS(199), - [anon_sym_BSLASHpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddpart] = ACTIONS(199), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(201), - [anon_sym_BSLASHchapter] = ACTIONS(199), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddchap] = ACTIONS(199), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(201), - [anon_sym_BSLASHsection] = ACTIONS(199), - [anon_sym_BSLASHsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHaddsec] = ACTIONS(199), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(201), - [anon_sym_BSLASHparagraph] = ACTIONS(199), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHsubparagraph] = ACTIONS(199), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(201), - [anon_sym_BSLASHitem] = ACTIONS(199), - [anon_sym_BSLASHitem_STAR] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASH_RPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [1355] = { - [sym_command_name] = ACTIONS(6157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_EQ] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_BSLASHpart] = ACTIONS(6157), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddpart] = ACTIONS(6157), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6159), - [anon_sym_BSLASHchapter] = ACTIONS(6157), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddchap] = ACTIONS(6157), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsection] = ACTIONS(6157), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHaddsec] = ACTIONS(6157), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubsection] = ACTIONS(6157), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6157), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6159), - [anon_sym_BSLASHparagraph] = ACTIONS(6157), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6159), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6157), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6159), - [anon_sym_BSLASHitem] = ACTIONS(6157), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6159), - [anon_sym_LBRACE] = ACTIONS(6159), - [sym_word] = ACTIONS(6157), - [sym_placeholder] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6157), - [anon_sym_GT] = ACTIONS(6157), - [anon_sym_BANG] = ACTIONS(6157), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_SQUOTE] = ACTIONS(6157), - [anon_sym__] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6159), - [anon_sym_DOLLAR] = ACTIONS(6157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6159), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6159), - [anon_sym_BSLASHbegin] = ACTIONS(6157), - [anon_sym_BSLASHtitle] = ACTIONS(6157), - [anon_sym_BSLASHauthor] = ACTIONS(6157), - [anon_sym_BSLASHusepackage] = ACTIONS(6157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6157), - [anon_sym_BSLASHinclude] = ACTIONS(6157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6157), - [anon_sym_BSLASHinput] = ACTIONS(6157), - [anon_sym_BSLASHsubfile] = ACTIONS(6157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6157), - [anon_sym_BSLASHbibliography] = ACTIONS(6157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6157), - [anon_sym_BSLASHincludesvg] = ACTIONS(6157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6157), - [anon_sym_BSLASHimport] = ACTIONS(6157), - [anon_sym_BSLASHsubimport] = ACTIONS(6157), - [anon_sym_BSLASHinputfrom] = ACTIONS(6157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6157), - [anon_sym_BSLASHincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHcaption] = ACTIONS(6157), - [anon_sym_BSLASHcite] = ACTIONS(6157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCite] = ACTIONS(6157), - [anon_sym_BSLASHnocite] = ACTIONS(6157), - [anon_sym_BSLASHcitet] = ACTIONS(6157), - [anon_sym_BSLASHcitep] = ACTIONS(6157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteauthor] = ACTIONS(6157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitetitle] = ACTIONS(6157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteyear] = ACTIONS(6157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitedate] = ACTIONS(6157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteurl] = ACTIONS(6157), - [anon_sym_BSLASHfullcite] = ACTIONS(6157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6157), - [anon_sym_BSLASHcitealt] = ACTIONS(6157), - [anon_sym_BSLASHcitealp] = ACTIONS(6157), - [anon_sym_BSLASHcitetext] = ACTIONS(6157), - [anon_sym_BSLASHparencite] = ACTIONS(6157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHParencite] = ACTIONS(6157), - [anon_sym_BSLASHfootcite] = ACTIONS(6157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6157), - [anon_sym_BSLASHtextcite] = ACTIONS(6157), - [anon_sym_BSLASHTextcite] = ACTIONS(6157), - [anon_sym_BSLASHsmartcite] = ACTIONS(6157), - [anon_sym_BSLASHSmartcite] = ACTIONS(6157), - [anon_sym_BSLASHsupercite] = ACTIONS(6157), - [anon_sym_BSLASHautocite] = ACTIONS(6157), - [anon_sym_BSLASHAutocite] = ACTIONS(6157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHvolcite] = ACTIONS(6157), - [anon_sym_BSLASHVolcite] = ACTIONS(6157), - [anon_sym_BSLASHpvolcite] = ACTIONS(6157), - [anon_sym_BSLASHPvolcite] = ACTIONS(6157), - [anon_sym_BSLASHfvolcite] = ACTIONS(6157), - [anon_sym_BSLASHftvolcite] = ACTIONS(6157), - [anon_sym_BSLASHsvolcite] = ACTIONS(6157), - [anon_sym_BSLASHSvolcite] = ACTIONS(6157), - [anon_sym_BSLASHtvolcite] = ACTIONS(6157), - [anon_sym_BSLASHTvolcite] = ACTIONS(6157), - [anon_sym_BSLASHavolcite] = ACTIONS(6157), - [anon_sym_BSLASHAvolcite] = ACTIONS(6157), - [anon_sym_BSLASHnotecite] = ACTIONS(6157), - [anon_sym_BSLASHNotecite] = ACTIONS(6157), - [anon_sym_BSLASHpnotecite] = ACTIONS(6157), - [anon_sym_BSLASHPnotecite] = ACTIONS(6157), - [anon_sym_BSLASHfnotecite] = ACTIONS(6157), - [anon_sym_BSLASHlabel] = ACTIONS(6157), - [anon_sym_BSLASHref] = ACTIONS(6157), - [anon_sym_BSLASHeqref] = ACTIONS(6157), - [anon_sym_BSLASHvref] = ACTIONS(6157), - [anon_sym_BSLASHVref] = ACTIONS(6157), - [anon_sym_BSLASHautoref] = ACTIONS(6157), - [anon_sym_BSLASHpageref] = ACTIONS(6157), - [anon_sym_BSLASHcref] = ACTIONS(6157), - [anon_sym_BSLASHCref] = ACTIONS(6157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnameCref] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHlabelcref] = ACTIONS(6157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCrefrange] = ACTIONS(6157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnewlabel] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6159), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHdef] = ACTIONS(6157), - [anon_sym_BSLASHlet] = ACTIONS(6157), - [anon_sym_BSLASHleft] = ACTIONS(6157), - [anon_sym_BSLASHbig] = ACTIONS(6157), - [anon_sym_BSLASHBig] = ACTIONS(6157), - [anon_sym_BSLASHbigg] = ACTIONS(6157), - [anon_sym_BSLASHBigg] = ACTIONS(6157), - [anon_sym_BSLASHbigl] = ACTIONS(6157), - [anon_sym_BSLASHBigl] = ACTIONS(6157), - [anon_sym_BSLASHbiggl] = ACTIONS(6157), - [anon_sym_BSLASHBiggl] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6157), - [anon_sym_BSLASHgls] = ACTIONS(6157), - [anon_sym_BSLASHGls] = ACTIONS(6157), - [anon_sym_BSLASHGLS] = ACTIONS(6157), - [anon_sym_BSLASHglspl] = ACTIONS(6157), - [anon_sym_BSLASHGlspl] = ACTIONS(6157), - [anon_sym_BSLASHGLSpl] = ACTIONS(6157), - [anon_sym_BSLASHglsdisp] = ACTIONS(6157), - [anon_sym_BSLASHglslink] = ACTIONS(6157), - [anon_sym_BSLASHglstext] = ACTIONS(6157), - [anon_sym_BSLASHGlstext] = ACTIONS(6157), - [anon_sym_BSLASHGLStext] = ACTIONS(6157), - [anon_sym_BSLASHglsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6157), - [anon_sym_BSLASHglsplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSplural] = ACTIONS(6157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHglsname] = ACTIONS(6157), - [anon_sym_BSLASHGlsname] = ACTIONS(6157), - [anon_sym_BSLASHGLSname] = ACTIONS(6157), - [anon_sym_BSLASHglssymbol] = ACTIONS(6157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6157), - [anon_sym_BSLASHglsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6157), - [anon_sym_BSLASHglsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6157), - [anon_sym_BSLASHglsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6157), - [anon_sym_BSLASHglsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6157), - [anon_sym_BSLASHglsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6157), - [anon_sym_BSLASHnewacronym] = ACTIONS(6157), - [anon_sym_BSLASHacrshort] = ACTIONS(6157), - [anon_sym_BSLASHAcrshort] = ACTIONS(6157), - [anon_sym_BSLASHACRshort] = ACTIONS(6157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6157), - [anon_sym_BSLASHacrlong] = ACTIONS(6157), - [anon_sym_BSLASHAcrlong] = ACTIONS(6157), - [anon_sym_BSLASHACRlong] = ACTIONS(6157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6157), - [anon_sym_BSLASHacrfull] = ACTIONS(6157), - [anon_sym_BSLASHAcrfull] = ACTIONS(6157), - [anon_sym_BSLASHACRfull] = ACTIONS(6157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6157), - [anon_sym_BSLASHacs] = ACTIONS(6157), - [anon_sym_BSLASHAcs] = ACTIONS(6157), - [anon_sym_BSLASHacsp] = ACTIONS(6157), - [anon_sym_BSLASHAcsp] = ACTIONS(6157), - [anon_sym_BSLASHacl] = ACTIONS(6157), - [anon_sym_BSLASHAcl] = ACTIONS(6157), - [anon_sym_BSLASHaclp] = ACTIONS(6157), - [anon_sym_BSLASHAclp] = ACTIONS(6157), - [anon_sym_BSLASHacf] = ACTIONS(6157), - [anon_sym_BSLASHAcf] = ACTIONS(6157), - [anon_sym_BSLASHacfp] = ACTIONS(6157), - [anon_sym_BSLASHAcfp] = ACTIONS(6157), - [anon_sym_BSLASHac] = ACTIONS(6157), - [anon_sym_BSLASHAc] = ACTIONS(6157), - [anon_sym_BSLASHacp] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6157), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6157), - [anon_sym_BSLASHcolor] = ACTIONS(6157), - [anon_sym_BSLASHcolorbox] = ACTIONS(6157), - [anon_sym_BSLASHtextcolor] = ACTIONS(6157), - [anon_sym_BSLASHpagecolor] = ACTIONS(6157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6157), - [anon_sym_BSLASHtext] = ACTIONS(6157), - [anon_sym_BSLASHintertext] = ACTIONS(6157), - [anon_sym_shortintertext] = ACTIONS(6157), - }, - [1356] = { - [sym_command_name] = ACTIONS(6137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6137), - [anon_sym_LBRACK] = ACTIONS(6139), - [anon_sym_RBRACK] = ACTIONS(6139), - [anon_sym_COMMA] = ACTIONS(6139), - [anon_sym_EQ] = ACTIONS(6139), - [anon_sym_LPAREN] = ACTIONS(6139), - [anon_sym_RPAREN] = ACTIONS(6139), - [anon_sym_BSLASHpart] = ACTIONS(6137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddpart] = ACTIONS(6137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6139), - [anon_sym_BSLASHchapter] = ACTIONS(6137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddchap] = ACTIONS(6137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsection] = ACTIONS(6137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHaddsec] = ACTIONS(6137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubsection] = ACTIONS(6137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6139), - [anon_sym_BSLASHparagraph] = ACTIONS(6137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6139), - [anon_sym_BSLASHitem] = ACTIONS(6137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6139), - [anon_sym_LBRACE] = ACTIONS(6139), - [sym_word] = ACTIONS(6137), - [sym_placeholder] = ACTIONS(6139), - [anon_sym_PLUS] = ACTIONS(6139), - [anon_sym_DASH] = ACTIONS(6139), - [anon_sym_STAR] = ACTIONS(6139), - [anon_sym_SLASH] = ACTIONS(6139), - [anon_sym_LT] = ACTIONS(6137), - [anon_sym_GT] = ACTIONS(6137), - [anon_sym_BANG] = ACTIONS(6137), - [anon_sym_PIPE] = ACTIONS(6137), - [anon_sym_COLON] = ACTIONS(6137), - [anon_sym_SQUOTE] = ACTIONS(6137), - [anon_sym__] = ACTIONS(6139), - [anon_sym_CARET] = ACTIONS(6139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6139), - [anon_sym_DOLLAR] = ACTIONS(6137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6139), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6139), - [anon_sym_BSLASHbegin] = ACTIONS(6137), - [anon_sym_BSLASHtitle] = ACTIONS(6137), - [anon_sym_BSLASHauthor] = ACTIONS(6137), - [anon_sym_BSLASHusepackage] = ACTIONS(6137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6137), - [anon_sym_BSLASHinclude] = ACTIONS(6137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6137), - [anon_sym_BSLASHinput] = ACTIONS(6137), - [anon_sym_BSLASHsubfile] = ACTIONS(6137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6137), - [anon_sym_BSLASHbibliography] = ACTIONS(6137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6137), - [anon_sym_BSLASHincludesvg] = ACTIONS(6137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6137), - [anon_sym_BSLASHimport] = ACTIONS(6137), - [anon_sym_BSLASHsubimport] = ACTIONS(6137), - [anon_sym_BSLASHinputfrom] = ACTIONS(6137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6137), - [anon_sym_BSLASHincludefrom] = ACTIONS(6137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6137), - [anon_sym_BSLASHcaption] = ACTIONS(6137), - [anon_sym_BSLASHcite] = ACTIONS(6137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCite] = ACTIONS(6137), - [anon_sym_BSLASHnocite] = ACTIONS(6137), - [anon_sym_BSLASHcitet] = ACTIONS(6137), - [anon_sym_BSLASHcitep] = ACTIONS(6137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteauthor] = ACTIONS(6137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitetitle] = ACTIONS(6137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteyear] = ACTIONS(6137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6139), - [anon_sym_BSLASHcitedate] = ACTIONS(6137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6139), - [anon_sym_BSLASHciteurl] = ACTIONS(6137), - [anon_sym_BSLASHfullcite] = ACTIONS(6137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6137), - [anon_sym_BSLASHcitealt] = ACTIONS(6137), - [anon_sym_BSLASHcitealp] = ACTIONS(6137), - [anon_sym_BSLASHcitetext] = ACTIONS(6137), - [anon_sym_BSLASHparencite] = ACTIONS(6137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHParencite] = ACTIONS(6137), - [anon_sym_BSLASHfootcite] = ACTIONS(6137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6137), - [anon_sym_BSLASHtextcite] = ACTIONS(6137), - [anon_sym_BSLASHTextcite] = ACTIONS(6137), - [anon_sym_BSLASHsmartcite] = ACTIONS(6137), - [anon_sym_BSLASHSmartcite] = ACTIONS(6137), - [anon_sym_BSLASHsupercite] = ACTIONS(6137), - [anon_sym_BSLASHautocite] = ACTIONS(6137), - [anon_sym_BSLASHAutocite] = ACTIONS(6137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6139), - [anon_sym_BSLASHvolcite] = ACTIONS(6137), - [anon_sym_BSLASHVolcite] = ACTIONS(6137), - [anon_sym_BSLASHpvolcite] = ACTIONS(6137), - [anon_sym_BSLASHPvolcite] = ACTIONS(6137), - [anon_sym_BSLASHfvolcite] = ACTIONS(6137), - [anon_sym_BSLASHftvolcite] = ACTIONS(6137), - [anon_sym_BSLASHsvolcite] = ACTIONS(6137), - [anon_sym_BSLASHSvolcite] = ACTIONS(6137), - [anon_sym_BSLASHtvolcite] = ACTIONS(6137), - [anon_sym_BSLASHTvolcite] = ACTIONS(6137), - [anon_sym_BSLASHavolcite] = ACTIONS(6137), - [anon_sym_BSLASHAvolcite] = ACTIONS(6137), - [anon_sym_BSLASHnotecite] = ACTIONS(6137), - [anon_sym_BSLASHNotecite] = ACTIONS(6137), - [anon_sym_BSLASHpnotecite] = ACTIONS(6137), - [anon_sym_BSLASHPnotecite] = ACTIONS(6137), - [anon_sym_BSLASHfnotecite] = ACTIONS(6137), - [anon_sym_BSLASHlabel] = ACTIONS(6137), - [anon_sym_BSLASHref] = ACTIONS(6137), - [anon_sym_BSLASHeqref] = ACTIONS(6137), - [anon_sym_BSLASHvref] = ACTIONS(6137), - [anon_sym_BSLASHVref] = ACTIONS(6137), - [anon_sym_BSLASHautoref] = ACTIONS(6137), - [anon_sym_BSLASHpageref] = ACTIONS(6137), - [anon_sym_BSLASHcref] = ACTIONS(6137), - [anon_sym_BSLASHCref] = ACTIONS(6137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6139), - [anon_sym_BSLASHnamecref] = ACTIONS(6137), - [anon_sym_BSLASHnameCref] = ACTIONS(6137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6137), - [anon_sym_BSLASHlabelcref] = ACTIONS(6137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6137), - [anon_sym_BSLASHcrefrange] = ACTIONS(6137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6139), - [anon_sym_BSLASHCrefrange] = ACTIONS(6137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6139), - [anon_sym_BSLASHnewlabel] = ACTIONS(6137), - [anon_sym_BSLASHnewcommand] = ACTIONS(6137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6139), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6137), - [anon_sym_BSLASHdef] = ACTIONS(6137), - [anon_sym_BSLASHlet] = ACTIONS(6137), - [anon_sym_BSLASHleft] = ACTIONS(6137), - [anon_sym_BSLASHbig] = ACTIONS(6137), - [anon_sym_BSLASHBig] = ACTIONS(6137), - [anon_sym_BSLASHbigg] = ACTIONS(6137), - [anon_sym_BSLASHBigg] = ACTIONS(6137), - [anon_sym_BSLASHbigl] = ACTIONS(6137), - [anon_sym_BSLASHBigl] = ACTIONS(6137), - [anon_sym_BSLASHbiggl] = ACTIONS(6137), - [anon_sym_BSLASHBiggl] = ACTIONS(6137), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6137), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6137), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6137), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6137), - [anon_sym_BSLASHgls] = ACTIONS(6137), - [anon_sym_BSLASHGls] = ACTIONS(6137), - [anon_sym_BSLASHGLS] = ACTIONS(6137), - [anon_sym_BSLASHglspl] = ACTIONS(6137), - [anon_sym_BSLASHGlspl] = ACTIONS(6137), - [anon_sym_BSLASHGLSpl] = ACTIONS(6137), - [anon_sym_BSLASHglsdisp] = ACTIONS(6137), - [anon_sym_BSLASHglslink] = ACTIONS(6137), - [anon_sym_BSLASHglstext] = ACTIONS(6137), - [anon_sym_BSLASHGlstext] = ACTIONS(6137), - [anon_sym_BSLASHGLStext] = ACTIONS(6137), - [anon_sym_BSLASHglsfirst] = ACTIONS(6137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6137), - [anon_sym_BSLASHglsplural] = ACTIONS(6137), - [anon_sym_BSLASHGlsplural] = ACTIONS(6137), - [anon_sym_BSLASHGLSplural] = ACTIONS(6137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6137), - [anon_sym_BSLASHglsname] = ACTIONS(6137), - [anon_sym_BSLASHGlsname] = ACTIONS(6137), - [anon_sym_BSLASHGLSname] = ACTIONS(6137), - [anon_sym_BSLASHglssymbol] = ACTIONS(6137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6137), - [anon_sym_BSLASHglsdesc] = ACTIONS(6137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6137), - [anon_sym_BSLASHglsuseri] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6137), - [anon_sym_BSLASHglsuserii] = ACTIONS(6137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6137), - [anon_sym_BSLASHglsuserv] = ACTIONS(6137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6137), - [anon_sym_BSLASHglsuservi] = ACTIONS(6137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6137), - [anon_sym_BSLASHnewacronym] = ACTIONS(6137), - [anon_sym_BSLASHacrshort] = ACTIONS(6137), - [anon_sym_BSLASHAcrshort] = ACTIONS(6137), - [anon_sym_BSLASHACRshort] = ACTIONS(6137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6137), - [anon_sym_BSLASHacrlong] = ACTIONS(6137), - [anon_sym_BSLASHAcrlong] = ACTIONS(6137), - [anon_sym_BSLASHACRlong] = ACTIONS(6137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6137), - [anon_sym_BSLASHacrfull] = ACTIONS(6137), - [anon_sym_BSLASHAcrfull] = ACTIONS(6137), - [anon_sym_BSLASHACRfull] = ACTIONS(6137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6137), - [anon_sym_BSLASHacs] = ACTIONS(6137), - [anon_sym_BSLASHAcs] = ACTIONS(6137), - [anon_sym_BSLASHacsp] = ACTIONS(6137), - [anon_sym_BSLASHAcsp] = ACTIONS(6137), - [anon_sym_BSLASHacl] = ACTIONS(6137), - [anon_sym_BSLASHAcl] = ACTIONS(6137), - [anon_sym_BSLASHaclp] = ACTIONS(6137), - [anon_sym_BSLASHAclp] = ACTIONS(6137), - [anon_sym_BSLASHacf] = ACTIONS(6137), - [anon_sym_BSLASHAcf] = ACTIONS(6137), - [anon_sym_BSLASHacfp] = ACTIONS(6137), - [anon_sym_BSLASHAcfp] = ACTIONS(6137), - [anon_sym_BSLASHac] = ACTIONS(6137), - [anon_sym_BSLASHAc] = ACTIONS(6137), - [anon_sym_BSLASHacp] = ACTIONS(6137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6137), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6137), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6137), - [anon_sym_BSLASHcolor] = ACTIONS(6137), - [anon_sym_BSLASHcolorbox] = ACTIONS(6137), - [anon_sym_BSLASHtextcolor] = ACTIONS(6137), - [anon_sym_BSLASHpagecolor] = ACTIONS(6137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6137), - [anon_sym_BSLASHtext] = ACTIONS(6137), - [anon_sym_BSLASHintertext] = ACTIONS(6137), - [anon_sym_shortintertext] = ACTIONS(6137), - }, - [1357] = { - [sym_command_name] = ACTIONS(6333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6333), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_BSLASHpart] = ACTIONS(6333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddpart] = ACTIONS(6333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6335), - [anon_sym_BSLASHchapter] = ACTIONS(6333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddchap] = ACTIONS(6333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsection] = ACTIONS(6333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHaddsec] = ACTIONS(6333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubsection] = ACTIONS(6333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6335), - [anon_sym_BSLASHparagraph] = ACTIONS(6333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6335), - [anon_sym_BSLASHitem] = ACTIONS(6333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6335), - [anon_sym_LBRACE] = ACTIONS(6335), - [sym_word] = ACTIONS(6333), - [sym_placeholder] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6335), - [anon_sym_DASH] = ACTIONS(6335), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6333), - [anon_sym_GT] = ACTIONS(6333), - [anon_sym_BANG] = ACTIONS(6333), - [anon_sym_PIPE] = ACTIONS(6333), - [anon_sym_COLON] = ACTIONS(6333), - [anon_sym_SQUOTE] = ACTIONS(6333), - [anon_sym__] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6335), - [anon_sym_DOLLAR] = ACTIONS(6333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6335), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6335), - [anon_sym_BSLASHbegin] = ACTIONS(6333), - [anon_sym_BSLASHtitle] = ACTIONS(6333), - [anon_sym_BSLASHauthor] = ACTIONS(6333), - [anon_sym_BSLASHusepackage] = ACTIONS(6333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6333), - [anon_sym_BSLASHinclude] = ACTIONS(6333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6333), - [anon_sym_BSLASHinput] = ACTIONS(6333), - [anon_sym_BSLASHsubfile] = ACTIONS(6333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6333), - [anon_sym_BSLASHbibliography] = ACTIONS(6333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6333), - [anon_sym_BSLASHincludesvg] = ACTIONS(6333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6333), - [anon_sym_BSLASHimport] = ACTIONS(6333), - [anon_sym_BSLASHsubimport] = ACTIONS(6333), - [anon_sym_BSLASHinputfrom] = ACTIONS(6333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6333), - [anon_sym_BSLASHincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHcaption] = ACTIONS(6333), - [anon_sym_BSLASHcite] = ACTIONS(6333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCite] = ACTIONS(6333), - [anon_sym_BSLASHnocite] = ACTIONS(6333), - [anon_sym_BSLASHcitet] = ACTIONS(6333), - [anon_sym_BSLASHcitep] = ACTIONS(6333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteauthor] = ACTIONS(6333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitetitle] = ACTIONS(6333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteyear] = ACTIONS(6333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitedate] = ACTIONS(6333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteurl] = ACTIONS(6333), - [anon_sym_BSLASHfullcite] = ACTIONS(6333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6333), - [anon_sym_BSLASHcitealt] = ACTIONS(6333), - [anon_sym_BSLASHcitealp] = ACTIONS(6333), - [anon_sym_BSLASHcitetext] = ACTIONS(6333), - [anon_sym_BSLASHparencite] = ACTIONS(6333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHParencite] = ACTIONS(6333), - [anon_sym_BSLASHfootcite] = ACTIONS(6333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6333), - [anon_sym_BSLASHtextcite] = ACTIONS(6333), - [anon_sym_BSLASHTextcite] = ACTIONS(6333), - [anon_sym_BSLASHsmartcite] = ACTIONS(6333), - [anon_sym_BSLASHSmartcite] = ACTIONS(6333), - [anon_sym_BSLASHsupercite] = ACTIONS(6333), - [anon_sym_BSLASHautocite] = ACTIONS(6333), - [anon_sym_BSLASHAutocite] = ACTIONS(6333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHvolcite] = ACTIONS(6333), - [anon_sym_BSLASHVolcite] = ACTIONS(6333), - [anon_sym_BSLASHpvolcite] = ACTIONS(6333), - [anon_sym_BSLASHPvolcite] = ACTIONS(6333), - [anon_sym_BSLASHfvolcite] = ACTIONS(6333), - [anon_sym_BSLASHftvolcite] = ACTIONS(6333), - [anon_sym_BSLASHsvolcite] = ACTIONS(6333), - [anon_sym_BSLASHSvolcite] = ACTIONS(6333), - [anon_sym_BSLASHtvolcite] = ACTIONS(6333), - [anon_sym_BSLASHTvolcite] = ACTIONS(6333), - [anon_sym_BSLASHavolcite] = ACTIONS(6333), - [anon_sym_BSLASHAvolcite] = ACTIONS(6333), - [anon_sym_BSLASHnotecite] = ACTIONS(6333), - [anon_sym_BSLASHNotecite] = ACTIONS(6333), - [anon_sym_BSLASHpnotecite] = ACTIONS(6333), - [anon_sym_BSLASHPnotecite] = ACTIONS(6333), - [anon_sym_BSLASHfnotecite] = ACTIONS(6333), - [anon_sym_BSLASHlabel] = ACTIONS(6333), - [anon_sym_BSLASHref] = ACTIONS(6333), - [anon_sym_BSLASHeqref] = ACTIONS(6333), - [anon_sym_BSLASHvref] = ACTIONS(6333), - [anon_sym_BSLASHVref] = ACTIONS(6333), - [anon_sym_BSLASHautoref] = ACTIONS(6333), - [anon_sym_BSLASHpageref] = ACTIONS(6333), - [anon_sym_BSLASHcref] = ACTIONS(6333), - [anon_sym_BSLASHCref] = ACTIONS(6333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnameCref] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHlabelcref] = ACTIONS(6333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCrefrange] = ACTIONS(6333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnewlabel] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6335), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHdef] = ACTIONS(6333), - [anon_sym_BSLASHlet] = ACTIONS(6333), - [anon_sym_BSLASHleft] = ACTIONS(6333), - [anon_sym_BSLASHbig] = ACTIONS(6333), - [anon_sym_BSLASHBig] = ACTIONS(6333), - [anon_sym_BSLASHbigg] = ACTIONS(6333), - [anon_sym_BSLASHBigg] = ACTIONS(6333), - [anon_sym_BSLASHbigl] = ACTIONS(6333), - [anon_sym_BSLASHBigl] = ACTIONS(6333), - [anon_sym_BSLASHbiggl] = ACTIONS(6333), - [anon_sym_BSLASHBiggl] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6333), - [anon_sym_BSLASHgls] = ACTIONS(6333), - [anon_sym_BSLASHGls] = ACTIONS(6333), - [anon_sym_BSLASHGLS] = ACTIONS(6333), - [anon_sym_BSLASHglspl] = ACTIONS(6333), - [anon_sym_BSLASHGlspl] = ACTIONS(6333), - [anon_sym_BSLASHGLSpl] = ACTIONS(6333), - [anon_sym_BSLASHglsdisp] = ACTIONS(6333), - [anon_sym_BSLASHglslink] = ACTIONS(6333), - [anon_sym_BSLASHglstext] = ACTIONS(6333), - [anon_sym_BSLASHGlstext] = ACTIONS(6333), - [anon_sym_BSLASHGLStext] = ACTIONS(6333), - [anon_sym_BSLASHglsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6333), - [anon_sym_BSLASHglsplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSplural] = ACTIONS(6333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHglsname] = ACTIONS(6333), - [anon_sym_BSLASHGlsname] = ACTIONS(6333), - [anon_sym_BSLASHGLSname] = ACTIONS(6333), - [anon_sym_BSLASHglssymbol] = ACTIONS(6333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6333), - [anon_sym_BSLASHglsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6333), - [anon_sym_BSLASHglsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6333), - [anon_sym_BSLASHglsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6333), - [anon_sym_BSLASHglsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6333), - [anon_sym_BSLASHglsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6333), - [anon_sym_BSLASHnewacronym] = ACTIONS(6333), - [anon_sym_BSLASHacrshort] = ACTIONS(6333), - [anon_sym_BSLASHAcrshort] = ACTIONS(6333), - [anon_sym_BSLASHACRshort] = ACTIONS(6333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6333), - [anon_sym_BSLASHacrlong] = ACTIONS(6333), - [anon_sym_BSLASHAcrlong] = ACTIONS(6333), - [anon_sym_BSLASHACRlong] = ACTIONS(6333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6333), - [anon_sym_BSLASHacrfull] = ACTIONS(6333), - [anon_sym_BSLASHAcrfull] = ACTIONS(6333), - [anon_sym_BSLASHACRfull] = ACTIONS(6333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6333), - [anon_sym_BSLASHacs] = ACTIONS(6333), - [anon_sym_BSLASHAcs] = ACTIONS(6333), - [anon_sym_BSLASHacsp] = ACTIONS(6333), - [anon_sym_BSLASHAcsp] = ACTIONS(6333), - [anon_sym_BSLASHacl] = ACTIONS(6333), - [anon_sym_BSLASHAcl] = ACTIONS(6333), - [anon_sym_BSLASHaclp] = ACTIONS(6333), - [anon_sym_BSLASHAclp] = ACTIONS(6333), - [anon_sym_BSLASHacf] = ACTIONS(6333), - [anon_sym_BSLASHAcf] = ACTIONS(6333), - [anon_sym_BSLASHacfp] = ACTIONS(6333), - [anon_sym_BSLASHAcfp] = ACTIONS(6333), - [anon_sym_BSLASHac] = ACTIONS(6333), - [anon_sym_BSLASHAc] = ACTIONS(6333), - [anon_sym_BSLASHacp] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6333), - [anon_sym_BSLASHcolor] = ACTIONS(6333), - [anon_sym_BSLASHcolorbox] = ACTIONS(6333), - [anon_sym_BSLASHtextcolor] = ACTIONS(6333), - [anon_sym_BSLASHpagecolor] = ACTIONS(6333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6333), - [anon_sym_BSLASHtext] = ACTIONS(6333), - [anon_sym_BSLASHintertext] = ACTIONS(6333), - [anon_sym_shortintertext] = ACTIONS(6333), - }, - [1358] = { - [sym_command_name] = ACTIONS(6173), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6173), - [anon_sym_LBRACK] = ACTIONS(6175), - [anon_sym_RBRACK] = ACTIONS(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_EQ] = ACTIONS(6175), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_BSLASHpart] = ACTIONS(6173), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddpart] = ACTIONS(6173), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6175), - [anon_sym_BSLASHchapter] = ACTIONS(6173), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddchap] = ACTIONS(6173), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsection] = ACTIONS(6173), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHaddsec] = ACTIONS(6173), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubsection] = ACTIONS(6173), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6173), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6175), - [anon_sym_BSLASHparagraph] = ACTIONS(6173), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6175), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6173), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6175), - [anon_sym_BSLASHitem] = ACTIONS(6173), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6175), - [anon_sym_LBRACE] = ACTIONS(6175), - [sym_word] = ACTIONS(6173), - [sym_placeholder] = ACTIONS(6175), - [anon_sym_PLUS] = ACTIONS(6175), - [anon_sym_DASH] = ACTIONS(6175), - [anon_sym_STAR] = ACTIONS(6175), - [anon_sym_SLASH] = ACTIONS(6175), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_BANG] = ACTIONS(6173), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_COLON] = ACTIONS(6173), - [anon_sym_SQUOTE] = ACTIONS(6173), - [anon_sym__] = ACTIONS(6175), - [anon_sym_CARET] = ACTIONS(6175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6175), - [anon_sym_DOLLAR] = ACTIONS(6173), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6175), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6175), - [anon_sym_BSLASHbegin] = ACTIONS(6173), - [anon_sym_BSLASHtitle] = ACTIONS(6173), - [anon_sym_BSLASHauthor] = ACTIONS(6173), - [anon_sym_BSLASHusepackage] = ACTIONS(6173), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6173), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6173), - [anon_sym_BSLASHinclude] = ACTIONS(6173), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6173), - [anon_sym_BSLASHinput] = ACTIONS(6173), - [anon_sym_BSLASHsubfile] = ACTIONS(6173), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6173), - [anon_sym_BSLASHbibliography] = ACTIONS(6173), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6173), - [anon_sym_BSLASHincludesvg] = ACTIONS(6173), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6173), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6173), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6173), - [anon_sym_BSLASHimport] = ACTIONS(6173), - [anon_sym_BSLASHsubimport] = ACTIONS(6173), - [anon_sym_BSLASHinputfrom] = ACTIONS(6173), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6173), - [anon_sym_BSLASHincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHcaption] = ACTIONS(6173), - [anon_sym_BSLASHcite] = ACTIONS(6173), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCite] = ACTIONS(6173), - [anon_sym_BSLASHnocite] = ACTIONS(6173), - [anon_sym_BSLASHcitet] = ACTIONS(6173), - [anon_sym_BSLASHcitep] = ACTIONS(6173), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteauthor] = ACTIONS(6173), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6173), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitetitle] = ACTIONS(6173), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteyear] = ACTIONS(6173), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitedate] = ACTIONS(6173), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteurl] = ACTIONS(6173), - [anon_sym_BSLASHfullcite] = ACTIONS(6173), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6173), - [anon_sym_BSLASHcitealt] = ACTIONS(6173), - [anon_sym_BSLASHcitealp] = ACTIONS(6173), - [anon_sym_BSLASHcitetext] = ACTIONS(6173), - [anon_sym_BSLASHparencite] = ACTIONS(6173), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHParencite] = ACTIONS(6173), - [anon_sym_BSLASHfootcite] = ACTIONS(6173), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6173), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6173), - [anon_sym_BSLASHtextcite] = ACTIONS(6173), - [anon_sym_BSLASHTextcite] = ACTIONS(6173), - [anon_sym_BSLASHsmartcite] = ACTIONS(6173), - [anon_sym_BSLASHSmartcite] = ACTIONS(6173), - [anon_sym_BSLASHsupercite] = ACTIONS(6173), - [anon_sym_BSLASHautocite] = ACTIONS(6173), - [anon_sym_BSLASHAutocite] = ACTIONS(6173), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHvolcite] = ACTIONS(6173), - [anon_sym_BSLASHVolcite] = ACTIONS(6173), - [anon_sym_BSLASHpvolcite] = ACTIONS(6173), - [anon_sym_BSLASHPvolcite] = ACTIONS(6173), - [anon_sym_BSLASHfvolcite] = ACTIONS(6173), - [anon_sym_BSLASHftvolcite] = ACTIONS(6173), - [anon_sym_BSLASHsvolcite] = ACTIONS(6173), - [anon_sym_BSLASHSvolcite] = ACTIONS(6173), - [anon_sym_BSLASHtvolcite] = ACTIONS(6173), - [anon_sym_BSLASHTvolcite] = ACTIONS(6173), - [anon_sym_BSLASHavolcite] = ACTIONS(6173), - [anon_sym_BSLASHAvolcite] = ACTIONS(6173), - [anon_sym_BSLASHnotecite] = ACTIONS(6173), - [anon_sym_BSLASHNotecite] = ACTIONS(6173), - [anon_sym_BSLASHpnotecite] = ACTIONS(6173), - [anon_sym_BSLASHPnotecite] = ACTIONS(6173), - [anon_sym_BSLASHfnotecite] = ACTIONS(6173), - [anon_sym_BSLASHlabel] = ACTIONS(6173), - [anon_sym_BSLASHref] = ACTIONS(6173), - [anon_sym_BSLASHeqref] = ACTIONS(6173), - [anon_sym_BSLASHvref] = ACTIONS(6173), - [anon_sym_BSLASHVref] = ACTIONS(6173), - [anon_sym_BSLASHautoref] = ACTIONS(6173), - [anon_sym_BSLASHpageref] = ACTIONS(6173), - [anon_sym_BSLASHcref] = ACTIONS(6173), - [anon_sym_BSLASHCref] = ACTIONS(6173), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnameCref] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHlabelcref] = ACTIONS(6173), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCrefrange] = ACTIONS(6173), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnewlabel] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6173), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6173), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6175), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHdef] = ACTIONS(6173), - [anon_sym_BSLASHlet] = ACTIONS(6173), - [anon_sym_BSLASHleft] = ACTIONS(6173), - [anon_sym_BSLASHbig] = ACTIONS(6173), - [anon_sym_BSLASHBig] = ACTIONS(6173), - [anon_sym_BSLASHbigg] = ACTIONS(6173), - [anon_sym_BSLASHBigg] = ACTIONS(6173), - [anon_sym_BSLASHbigl] = ACTIONS(6173), - [anon_sym_BSLASHBigl] = ACTIONS(6173), - [anon_sym_BSLASHbiggl] = ACTIONS(6173), - [anon_sym_BSLASHBiggl] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6173), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6173), - [anon_sym_BSLASHgls] = ACTIONS(6173), - [anon_sym_BSLASHGls] = ACTIONS(6173), - [anon_sym_BSLASHGLS] = ACTIONS(6173), - [anon_sym_BSLASHglspl] = ACTIONS(6173), - [anon_sym_BSLASHGlspl] = ACTIONS(6173), - [anon_sym_BSLASHGLSpl] = ACTIONS(6173), - [anon_sym_BSLASHglsdisp] = ACTIONS(6173), - [anon_sym_BSLASHglslink] = ACTIONS(6173), - [anon_sym_BSLASHglstext] = ACTIONS(6173), - [anon_sym_BSLASHGlstext] = ACTIONS(6173), - [anon_sym_BSLASHGLStext] = ACTIONS(6173), - [anon_sym_BSLASHglsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6173), - [anon_sym_BSLASHglsplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSplural] = ACTIONS(6173), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHglsname] = ACTIONS(6173), - [anon_sym_BSLASHGlsname] = ACTIONS(6173), - [anon_sym_BSLASHGLSname] = ACTIONS(6173), - [anon_sym_BSLASHglssymbol] = ACTIONS(6173), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6173), - [anon_sym_BSLASHglsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6173), - [anon_sym_BSLASHglsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6173), - [anon_sym_BSLASHglsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6173), - [anon_sym_BSLASHglsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6173), - [anon_sym_BSLASHglsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6173), - [anon_sym_BSLASHnewacronym] = ACTIONS(6173), - [anon_sym_BSLASHacrshort] = ACTIONS(6173), - [anon_sym_BSLASHAcrshort] = ACTIONS(6173), - [anon_sym_BSLASHACRshort] = ACTIONS(6173), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6173), - [anon_sym_BSLASHacrlong] = ACTIONS(6173), - [anon_sym_BSLASHAcrlong] = ACTIONS(6173), - [anon_sym_BSLASHACRlong] = ACTIONS(6173), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6173), - [anon_sym_BSLASHacrfull] = ACTIONS(6173), - [anon_sym_BSLASHAcrfull] = ACTIONS(6173), - [anon_sym_BSLASHACRfull] = ACTIONS(6173), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6173), - [anon_sym_BSLASHacs] = ACTIONS(6173), - [anon_sym_BSLASHAcs] = ACTIONS(6173), - [anon_sym_BSLASHacsp] = ACTIONS(6173), - [anon_sym_BSLASHAcsp] = ACTIONS(6173), - [anon_sym_BSLASHacl] = ACTIONS(6173), - [anon_sym_BSLASHAcl] = ACTIONS(6173), - [anon_sym_BSLASHaclp] = ACTIONS(6173), - [anon_sym_BSLASHAclp] = ACTIONS(6173), - [anon_sym_BSLASHacf] = ACTIONS(6173), - [anon_sym_BSLASHAcf] = ACTIONS(6173), - [anon_sym_BSLASHacfp] = ACTIONS(6173), - [anon_sym_BSLASHAcfp] = ACTIONS(6173), - [anon_sym_BSLASHac] = ACTIONS(6173), - [anon_sym_BSLASHAc] = ACTIONS(6173), - [anon_sym_BSLASHacp] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6173), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6173), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6173), - [anon_sym_BSLASHcolor] = ACTIONS(6173), - [anon_sym_BSLASHcolorbox] = ACTIONS(6173), - [anon_sym_BSLASHtextcolor] = ACTIONS(6173), - [anon_sym_BSLASHpagecolor] = ACTIONS(6173), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6173), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6173), - [anon_sym_BSLASHtext] = ACTIONS(6173), - [anon_sym_BSLASHintertext] = ACTIONS(6173), - [anon_sym_shortintertext] = ACTIONS(6173), - }, - [1359] = { - [sym_command_name] = ACTIONS(6229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6229), - [anon_sym_LBRACK] = ACTIONS(6231), - [anon_sym_RBRACK] = ACTIONS(6231), - [anon_sym_COMMA] = ACTIONS(6231), - [anon_sym_EQ] = ACTIONS(6231), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_RPAREN] = ACTIONS(6231), - [anon_sym_BSLASHpart] = ACTIONS(6229), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddpart] = ACTIONS(6229), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6231), - [anon_sym_BSLASHchapter] = ACTIONS(6229), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddchap] = ACTIONS(6229), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsection] = ACTIONS(6229), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHaddsec] = ACTIONS(6229), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubsection] = ACTIONS(6229), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6229), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6231), - [anon_sym_BSLASHparagraph] = ACTIONS(6229), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6231), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6229), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6231), - [anon_sym_BSLASHitem] = ACTIONS(6229), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6231), - [anon_sym_LBRACE] = ACTIONS(6231), - [sym_word] = ACTIONS(6229), - [sym_placeholder] = ACTIONS(6231), - [anon_sym_PLUS] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_SLASH] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(6229), - [anon_sym_GT] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [anon_sym_PIPE] = ACTIONS(6229), - [anon_sym_COLON] = ACTIONS(6229), - [anon_sym_SQUOTE] = ACTIONS(6229), - [anon_sym__] = ACTIONS(6231), - [anon_sym_CARET] = ACTIONS(6231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6231), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6231), - [anon_sym_DOLLAR] = ACTIONS(6229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6231), - [anon_sym_BSLASHbegin] = ACTIONS(6229), - [anon_sym_BSLASHtitle] = ACTIONS(6229), - [anon_sym_BSLASHauthor] = ACTIONS(6229), - [anon_sym_BSLASHusepackage] = ACTIONS(6229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6229), - [anon_sym_BSLASHinclude] = ACTIONS(6229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6229), - [anon_sym_BSLASHinput] = ACTIONS(6229), - [anon_sym_BSLASHsubfile] = ACTIONS(6229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6229), - [anon_sym_BSLASHbibliography] = ACTIONS(6229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6229), - [anon_sym_BSLASHincludesvg] = ACTIONS(6229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6229), - [anon_sym_BSLASHimport] = ACTIONS(6229), - [anon_sym_BSLASHsubimport] = ACTIONS(6229), - [anon_sym_BSLASHinputfrom] = ACTIONS(6229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6229), - [anon_sym_BSLASHincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHcaption] = ACTIONS(6229), - [anon_sym_BSLASHcite] = ACTIONS(6229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCite] = ACTIONS(6229), - [anon_sym_BSLASHnocite] = ACTIONS(6229), - [anon_sym_BSLASHcitet] = ACTIONS(6229), - [anon_sym_BSLASHcitep] = ACTIONS(6229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteauthor] = ACTIONS(6229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitetitle] = ACTIONS(6229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteyear] = ACTIONS(6229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitedate] = ACTIONS(6229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteurl] = ACTIONS(6229), - [anon_sym_BSLASHfullcite] = ACTIONS(6229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6229), - [anon_sym_BSLASHcitealt] = ACTIONS(6229), - [anon_sym_BSLASHcitealp] = ACTIONS(6229), - [anon_sym_BSLASHcitetext] = ACTIONS(6229), - [anon_sym_BSLASHparencite] = ACTIONS(6229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHParencite] = ACTIONS(6229), - [anon_sym_BSLASHfootcite] = ACTIONS(6229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6229), - [anon_sym_BSLASHtextcite] = ACTIONS(6229), - [anon_sym_BSLASHTextcite] = ACTIONS(6229), - [anon_sym_BSLASHsmartcite] = ACTIONS(6229), - [anon_sym_BSLASHSmartcite] = ACTIONS(6229), - [anon_sym_BSLASHsupercite] = ACTIONS(6229), - [anon_sym_BSLASHautocite] = ACTIONS(6229), - [anon_sym_BSLASHAutocite] = ACTIONS(6229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHvolcite] = ACTIONS(6229), - [anon_sym_BSLASHVolcite] = ACTIONS(6229), - [anon_sym_BSLASHpvolcite] = ACTIONS(6229), - [anon_sym_BSLASHPvolcite] = ACTIONS(6229), - [anon_sym_BSLASHfvolcite] = ACTIONS(6229), - [anon_sym_BSLASHftvolcite] = ACTIONS(6229), - [anon_sym_BSLASHsvolcite] = ACTIONS(6229), - [anon_sym_BSLASHSvolcite] = ACTIONS(6229), - [anon_sym_BSLASHtvolcite] = ACTIONS(6229), - [anon_sym_BSLASHTvolcite] = ACTIONS(6229), - [anon_sym_BSLASHavolcite] = ACTIONS(6229), - [anon_sym_BSLASHAvolcite] = ACTIONS(6229), - [anon_sym_BSLASHnotecite] = ACTIONS(6229), - [anon_sym_BSLASHNotecite] = ACTIONS(6229), - [anon_sym_BSLASHpnotecite] = ACTIONS(6229), - [anon_sym_BSLASHPnotecite] = ACTIONS(6229), - [anon_sym_BSLASHfnotecite] = ACTIONS(6229), - [anon_sym_BSLASHlabel] = ACTIONS(6229), - [anon_sym_BSLASHref] = ACTIONS(6229), - [anon_sym_BSLASHeqref] = ACTIONS(6229), - [anon_sym_BSLASHvref] = ACTIONS(6229), - [anon_sym_BSLASHVref] = ACTIONS(6229), - [anon_sym_BSLASHautoref] = ACTIONS(6229), - [anon_sym_BSLASHpageref] = ACTIONS(6229), - [anon_sym_BSLASHcref] = ACTIONS(6229), - [anon_sym_BSLASHCref] = ACTIONS(6229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnameCref] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHlabelcref] = ACTIONS(6229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCrefrange] = ACTIONS(6229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnewlabel] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6231), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHdef] = ACTIONS(6229), - [anon_sym_BSLASHlet] = ACTIONS(6229), - [anon_sym_BSLASHleft] = ACTIONS(6229), - [anon_sym_BSLASHbig] = ACTIONS(6229), - [anon_sym_BSLASHBig] = ACTIONS(6229), - [anon_sym_BSLASHbigg] = ACTIONS(6229), - [anon_sym_BSLASHBigg] = ACTIONS(6229), - [anon_sym_BSLASHbigl] = ACTIONS(6229), - [anon_sym_BSLASHBigl] = ACTIONS(6229), - [anon_sym_BSLASHbiggl] = ACTIONS(6229), - [anon_sym_BSLASHBiggl] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6229), - [anon_sym_BSLASHgls] = ACTIONS(6229), - [anon_sym_BSLASHGls] = ACTIONS(6229), - [anon_sym_BSLASHGLS] = ACTIONS(6229), - [anon_sym_BSLASHglspl] = ACTIONS(6229), - [anon_sym_BSLASHGlspl] = ACTIONS(6229), - [anon_sym_BSLASHGLSpl] = ACTIONS(6229), - [anon_sym_BSLASHglsdisp] = ACTIONS(6229), - [anon_sym_BSLASHglslink] = ACTIONS(6229), - [anon_sym_BSLASHglstext] = ACTIONS(6229), - [anon_sym_BSLASHGlstext] = ACTIONS(6229), - [anon_sym_BSLASHGLStext] = ACTIONS(6229), - [anon_sym_BSLASHglsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6229), - [anon_sym_BSLASHglsplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSplural] = ACTIONS(6229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHglsname] = ACTIONS(6229), - [anon_sym_BSLASHGlsname] = ACTIONS(6229), - [anon_sym_BSLASHGLSname] = ACTIONS(6229), - [anon_sym_BSLASHglssymbol] = ACTIONS(6229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6229), - [anon_sym_BSLASHglsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6229), - [anon_sym_BSLASHglsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6229), - [anon_sym_BSLASHglsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6229), - [anon_sym_BSLASHglsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6229), - [anon_sym_BSLASHglsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6229), - [anon_sym_BSLASHnewacronym] = ACTIONS(6229), - [anon_sym_BSLASHacrshort] = ACTIONS(6229), - [anon_sym_BSLASHAcrshort] = ACTIONS(6229), - [anon_sym_BSLASHACRshort] = ACTIONS(6229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6229), - [anon_sym_BSLASHacrlong] = ACTIONS(6229), - [anon_sym_BSLASHAcrlong] = ACTIONS(6229), - [anon_sym_BSLASHACRlong] = ACTIONS(6229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6229), - [anon_sym_BSLASHacrfull] = ACTIONS(6229), - [anon_sym_BSLASHAcrfull] = ACTIONS(6229), - [anon_sym_BSLASHACRfull] = ACTIONS(6229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6229), - [anon_sym_BSLASHacs] = ACTIONS(6229), - [anon_sym_BSLASHAcs] = ACTIONS(6229), - [anon_sym_BSLASHacsp] = ACTIONS(6229), - [anon_sym_BSLASHAcsp] = ACTIONS(6229), - [anon_sym_BSLASHacl] = ACTIONS(6229), - [anon_sym_BSLASHAcl] = ACTIONS(6229), - [anon_sym_BSLASHaclp] = ACTIONS(6229), - [anon_sym_BSLASHAclp] = ACTIONS(6229), - [anon_sym_BSLASHacf] = ACTIONS(6229), - [anon_sym_BSLASHAcf] = ACTIONS(6229), - [anon_sym_BSLASHacfp] = ACTIONS(6229), - [anon_sym_BSLASHAcfp] = ACTIONS(6229), - [anon_sym_BSLASHac] = ACTIONS(6229), - [anon_sym_BSLASHAc] = ACTIONS(6229), - [anon_sym_BSLASHacp] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6229), - [anon_sym_BSLASHcolor] = ACTIONS(6229), - [anon_sym_BSLASHcolorbox] = ACTIONS(6229), - [anon_sym_BSLASHtextcolor] = ACTIONS(6229), - [anon_sym_BSLASHpagecolor] = ACTIONS(6229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6229), - [anon_sym_BSLASHtext] = ACTIONS(6229), - [anon_sym_BSLASHintertext] = ACTIONS(6229), - [anon_sym_shortintertext] = ACTIONS(6229), - }, - [1360] = { - [sym_command_name] = ACTIONS(6125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6127), - [anon_sym_RBRACK] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6127), - [anon_sym_EQ] = ACTIONS(6127), - [anon_sym_LPAREN] = ACTIONS(6127), - [anon_sym_RPAREN] = ACTIONS(6127), - [anon_sym_BSLASHpart] = ACTIONS(6125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddpart] = ACTIONS(6125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6127), - [anon_sym_BSLASHchapter] = ACTIONS(6125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddchap] = ACTIONS(6125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsection] = ACTIONS(6125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHaddsec] = ACTIONS(6125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubsection] = ACTIONS(6125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6127), - [anon_sym_BSLASHparagraph] = ACTIONS(6125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6127), - [anon_sym_BSLASHitem] = ACTIONS(6125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6127), - [anon_sym_LBRACE] = ACTIONS(6127), - [sym_word] = ACTIONS(6125), - [sym_placeholder] = ACTIONS(6127), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_LT] = ACTIONS(6125), - [anon_sym_GT] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_SQUOTE] = ACTIONS(6125), - [anon_sym__] = ACTIONS(6127), - [anon_sym_CARET] = ACTIONS(6127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6127), - [anon_sym_DOLLAR] = ACTIONS(6125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6127), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6127), - [anon_sym_BSLASHbegin] = ACTIONS(6125), - [anon_sym_BSLASHtitle] = ACTIONS(6125), - [anon_sym_BSLASHauthor] = ACTIONS(6125), - [anon_sym_BSLASHusepackage] = ACTIONS(6125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6125), - [anon_sym_BSLASHinclude] = ACTIONS(6125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6125), - [anon_sym_BSLASHinput] = ACTIONS(6125), - [anon_sym_BSLASHsubfile] = ACTIONS(6125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6125), - [anon_sym_BSLASHbibliography] = ACTIONS(6125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6125), - [anon_sym_BSLASHincludesvg] = ACTIONS(6125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6125), - [anon_sym_BSLASHimport] = ACTIONS(6125), - [anon_sym_BSLASHsubimport] = ACTIONS(6125), - [anon_sym_BSLASHinputfrom] = ACTIONS(6125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6125), - [anon_sym_BSLASHincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHcaption] = ACTIONS(6125), - [anon_sym_BSLASHcite] = ACTIONS(6125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCite] = ACTIONS(6125), - [anon_sym_BSLASHnocite] = ACTIONS(6125), - [anon_sym_BSLASHcitet] = ACTIONS(6125), - [anon_sym_BSLASHcitep] = ACTIONS(6125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteauthor] = ACTIONS(6125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitetitle] = ACTIONS(6125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteyear] = ACTIONS(6125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitedate] = ACTIONS(6125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteurl] = ACTIONS(6125), - [anon_sym_BSLASHfullcite] = ACTIONS(6125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6125), - [anon_sym_BSLASHcitealt] = ACTIONS(6125), - [anon_sym_BSLASHcitealp] = ACTIONS(6125), - [anon_sym_BSLASHcitetext] = ACTIONS(6125), - [anon_sym_BSLASHparencite] = ACTIONS(6125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHParencite] = ACTIONS(6125), - [anon_sym_BSLASHfootcite] = ACTIONS(6125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6125), - [anon_sym_BSLASHtextcite] = ACTIONS(6125), - [anon_sym_BSLASHTextcite] = ACTIONS(6125), - [anon_sym_BSLASHsmartcite] = ACTIONS(6125), - [anon_sym_BSLASHSmartcite] = ACTIONS(6125), - [anon_sym_BSLASHsupercite] = ACTIONS(6125), - [anon_sym_BSLASHautocite] = ACTIONS(6125), - [anon_sym_BSLASHAutocite] = ACTIONS(6125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHvolcite] = ACTIONS(6125), - [anon_sym_BSLASHVolcite] = ACTIONS(6125), - [anon_sym_BSLASHpvolcite] = ACTIONS(6125), - [anon_sym_BSLASHPvolcite] = ACTIONS(6125), - [anon_sym_BSLASHfvolcite] = ACTIONS(6125), - [anon_sym_BSLASHftvolcite] = ACTIONS(6125), - [anon_sym_BSLASHsvolcite] = ACTIONS(6125), - [anon_sym_BSLASHSvolcite] = ACTIONS(6125), - [anon_sym_BSLASHtvolcite] = ACTIONS(6125), - [anon_sym_BSLASHTvolcite] = ACTIONS(6125), - [anon_sym_BSLASHavolcite] = ACTIONS(6125), - [anon_sym_BSLASHAvolcite] = ACTIONS(6125), - [anon_sym_BSLASHnotecite] = ACTIONS(6125), - [anon_sym_BSLASHNotecite] = ACTIONS(6125), - [anon_sym_BSLASHpnotecite] = ACTIONS(6125), - [anon_sym_BSLASHPnotecite] = ACTIONS(6125), - [anon_sym_BSLASHfnotecite] = ACTIONS(6125), - [anon_sym_BSLASHlabel] = ACTIONS(6125), - [anon_sym_BSLASHref] = ACTIONS(6125), - [anon_sym_BSLASHeqref] = ACTIONS(6125), - [anon_sym_BSLASHvref] = ACTIONS(6125), - [anon_sym_BSLASHVref] = ACTIONS(6125), - [anon_sym_BSLASHautoref] = ACTIONS(6125), - [anon_sym_BSLASHpageref] = ACTIONS(6125), - [anon_sym_BSLASHcref] = ACTIONS(6125), - [anon_sym_BSLASHCref] = ACTIONS(6125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnameCref] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHlabelcref] = ACTIONS(6125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCrefrange] = ACTIONS(6125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnewlabel] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6127), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHdef] = ACTIONS(6125), - [anon_sym_BSLASHlet] = ACTIONS(6125), - [anon_sym_BSLASHleft] = ACTIONS(6125), - [anon_sym_BSLASHbig] = ACTIONS(6125), - [anon_sym_BSLASHBig] = ACTIONS(6125), - [anon_sym_BSLASHbigg] = ACTIONS(6125), - [anon_sym_BSLASHBigg] = ACTIONS(6125), - [anon_sym_BSLASHbigl] = ACTIONS(6125), - [anon_sym_BSLASHBigl] = ACTIONS(6125), - [anon_sym_BSLASHbiggl] = ACTIONS(6125), - [anon_sym_BSLASHBiggl] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6125), - [anon_sym_BSLASHgls] = ACTIONS(6125), - [anon_sym_BSLASHGls] = ACTIONS(6125), - [anon_sym_BSLASHGLS] = ACTIONS(6125), - [anon_sym_BSLASHglspl] = ACTIONS(6125), - [anon_sym_BSLASHGlspl] = ACTIONS(6125), - [anon_sym_BSLASHGLSpl] = ACTIONS(6125), - [anon_sym_BSLASHglsdisp] = ACTIONS(6125), - [anon_sym_BSLASHglslink] = ACTIONS(6125), - [anon_sym_BSLASHglstext] = ACTIONS(6125), - [anon_sym_BSLASHGlstext] = ACTIONS(6125), - [anon_sym_BSLASHGLStext] = ACTIONS(6125), - [anon_sym_BSLASHglsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6125), - [anon_sym_BSLASHglsplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSplural] = ACTIONS(6125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHglsname] = ACTIONS(6125), - [anon_sym_BSLASHGlsname] = ACTIONS(6125), - [anon_sym_BSLASHGLSname] = ACTIONS(6125), - [anon_sym_BSLASHglssymbol] = ACTIONS(6125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6125), - [anon_sym_BSLASHglsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6125), - [anon_sym_BSLASHglsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6125), - [anon_sym_BSLASHglsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6125), - [anon_sym_BSLASHglsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6125), - [anon_sym_BSLASHglsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6125), - [anon_sym_BSLASHnewacronym] = ACTIONS(6125), - [anon_sym_BSLASHacrshort] = ACTIONS(6125), - [anon_sym_BSLASHAcrshort] = ACTIONS(6125), - [anon_sym_BSLASHACRshort] = ACTIONS(6125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6125), - [anon_sym_BSLASHacrlong] = ACTIONS(6125), - [anon_sym_BSLASHAcrlong] = ACTIONS(6125), - [anon_sym_BSLASHACRlong] = ACTIONS(6125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6125), - [anon_sym_BSLASHacrfull] = ACTIONS(6125), - [anon_sym_BSLASHAcrfull] = ACTIONS(6125), - [anon_sym_BSLASHACRfull] = ACTIONS(6125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6125), - [anon_sym_BSLASHacs] = ACTIONS(6125), - [anon_sym_BSLASHAcs] = ACTIONS(6125), - [anon_sym_BSLASHacsp] = ACTIONS(6125), - [anon_sym_BSLASHAcsp] = ACTIONS(6125), - [anon_sym_BSLASHacl] = ACTIONS(6125), - [anon_sym_BSLASHAcl] = ACTIONS(6125), - [anon_sym_BSLASHaclp] = ACTIONS(6125), - [anon_sym_BSLASHAclp] = ACTIONS(6125), - [anon_sym_BSLASHacf] = ACTIONS(6125), - [anon_sym_BSLASHAcf] = ACTIONS(6125), - [anon_sym_BSLASHacfp] = ACTIONS(6125), - [anon_sym_BSLASHAcfp] = ACTIONS(6125), - [anon_sym_BSLASHac] = ACTIONS(6125), - [anon_sym_BSLASHAc] = ACTIONS(6125), - [anon_sym_BSLASHacp] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6125), - [anon_sym_BSLASHcolor] = ACTIONS(6125), - [anon_sym_BSLASHcolorbox] = ACTIONS(6125), - [anon_sym_BSLASHtextcolor] = ACTIONS(6125), - [anon_sym_BSLASHpagecolor] = ACTIONS(6125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6125), - [anon_sym_BSLASHtext] = ACTIONS(6125), - [anon_sym_BSLASHintertext] = ACTIONS(6125), - [anon_sym_shortintertext] = ACTIONS(6125), - }, - [1361] = { - [sym_command_name] = ACTIONS(6329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6329), - [anon_sym_LBRACK] = ACTIONS(6331), - [anon_sym_RBRACK] = ACTIONS(6331), - [anon_sym_COMMA] = ACTIONS(6331), - [anon_sym_EQ] = ACTIONS(6331), - [anon_sym_LPAREN] = ACTIONS(6331), - [anon_sym_RPAREN] = ACTIONS(6331), - [anon_sym_BSLASHpart] = ACTIONS(6329), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddpart] = ACTIONS(6329), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6331), - [anon_sym_BSLASHchapter] = ACTIONS(6329), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddchap] = ACTIONS(6329), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsection] = ACTIONS(6329), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHaddsec] = ACTIONS(6329), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubsection] = ACTIONS(6329), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6329), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6331), - [anon_sym_BSLASHparagraph] = ACTIONS(6329), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6329), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6331), - [anon_sym_BSLASHitem] = ACTIONS(6329), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6331), - [sym_word] = ACTIONS(6329), - [sym_placeholder] = ACTIONS(6331), - [anon_sym_PLUS] = ACTIONS(6331), - [anon_sym_DASH] = ACTIONS(6331), - [anon_sym_STAR] = ACTIONS(6331), - [anon_sym_SLASH] = ACTIONS(6331), - [anon_sym_LT] = ACTIONS(6329), - [anon_sym_GT] = ACTIONS(6329), - [anon_sym_BANG] = ACTIONS(6329), - [anon_sym_PIPE] = ACTIONS(6329), - [anon_sym_COLON] = ACTIONS(6329), - [anon_sym_SQUOTE] = ACTIONS(6329), - [anon_sym__] = ACTIONS(6331), - [anon_sym_CARET] = ACTIONS(6331), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6331), - [anon_sym_DOLLAR] = ACTIONS(6329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6331), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6331), - [anon_sym_BSLASHbegin] = ACTIONS(6329), - [anon_sym_BSLASHtitle] = ACTIONS(6329), - [anon_sym_BSLASHauthor] = ACTIONS(6329), - [anon_sym_BSLASHusepackage] = ACTIONS(6329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6329), - [anon_sym_BSLASHinclude] = ACTIONS(6329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6329), - [anon_sym_BSLASHinput] = ACTIONS(6329), - [anon_sym_BSLASHsubfile] = ACTIONS(6329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6329), - [anon_sym_BSLASHbibliography] = ACTIONS(6329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6329), - [anon_sym_BSLASHincludesvg] = ACTIONS(6329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6329), - [anon_sym_BSLASHimport] = ACTIONS(6329), - [anon_sym_BSLASHsubimport] = ACTIONS(6329), - [anon_sym_BSLASHinputfrom] = ACTIONS(6329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6329), - [anon_sym_BSLASHincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHcaption] = ACTIONS(6329), - [anon_sym_BSLASHcite] = ACTIONS(6329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCite] = ACTIONS(6329), - [anon_sym_BSLASHnocite] = ACTIONS(6329), - [anon_sym_BSLASHcitet] = ACTIONS(6329), - [anon_sym_BSLASHcitep] = ACTIONS(6329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteauthor] = ACTIONS(6329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitetitle] = ACTIONS(6329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteyear] = ACTIONS(6329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitedate] = ACTIONS(6329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteurl] = ACTIONS(6329), - [anon_sym_BSLASHfullcite] = ACTIONS(6329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6329), - [anon_sym_BSLASHcitealt] = ACTIONS(6329), - [anon_sym_BSLASHcitealp] = ACTIONS(6329), - [anon_sym_BSLASHcitetext] = ACTIONS(6329), - [anon_sym_BSLASHparencite] = ACTIONS(6329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHParencite] = ACTIONS(6329), - [anon_sym_BSLASHfootcite] = ACTIONS(6329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6329), - [anon_sym_BSLASHtextcite] = ACTIONS(6329), - [anon_sym_BSLASHTextcite] = ACTIONS(6329), - [anon_sym_BSLASHsmartcite] = ACTIONS(6329), - [anon_sym_BSLASHSmartcite] = ACTIONS(6329), - [anon_sym_BSLASHsupercite] = ACTIONS(6329), - [anon_sym_BSLASHautocite] = ACTIONS(6329), - [anon_sym_BSLASHAutocite] = ACTIONS(6329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHvolcite] = ACTIONS(6329), - [anon_sym_BSLASHVolcite] = ACTIONS(6329), - [anon_sym_BSLASHpvolcite] = ACTIONS(6329), - [anon_sym_BSLASHPvolcite] = ACTIONS(6329), - [anon_sym_BSLASHfvolcite] = ACTIONS(6329), - [anon_sym_BSLASHftvolcite] = ACTIONS(6329), - [anon_sym_BSLASHsvolcite] = ACTIONS(6329), - [anon_sym_BSLASHSvolcite] = ACTIONS(6329), - [anon_sym_BSLASHtvolcite] = ACTIONS(6329), - [anon_sym_BSLASHTvolcite] = ACTIONS(6329), - [anon_sym_BSLASHavolcite] = ACTIONS(6329), - [anon_sym_BSLASHAvolcite] = ACTIONS(6329), - [anon_sym_BSLASHnotecite] = ACTIONS(6329), - [anon_sym_BSLASHNotecite] = ACTIONS(6329), - [anon_sym_BSLASHpnotecite] = ACTIONS(6329), - [anon_sym_BSLASHPnotecite] = ACTIONS(6329), - [anon_sym_BSLASHfnotecite] = ACTIONS(6329), - [anon_sym_BSLASHlabel] = ACTIONS(6329), - [anon_sym_BSLASHref] = ACTIONS(6329), - [anon_sym_BSLASHeqref] = ACTIONS(6329), - [anon_sym_BSLASHvref] = ACTIONS(6329), - [anon_sym_BSLASHVref] = ACTIONS(6329), - [anon_sym_BSLASHautoref] = ACTIONS(6329), - [anon_sym_BSLASHpageref] = ACTIONS(6329), - [anon_sym_BSLASHcref] = ACTIONS(6329), - [anon_sym_BSLASHCref] = ACTIONS(6329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnameCref] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHlabelcref] = ACTIONS(6329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCrefrange] = ACTIONS(6329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnewlabel] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6331), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHdef] = ACTIONS(6329), - [anon_sym_BSLASHlet] = ACTIONS(6329), - [anon_sym_BSLASHleft] = ACTIONS(6329), - [anon_sym_BSLASHbig] = ACTIONS(6329), - [anon_sym_BSLASHBig] = ACTIONS(6329), - [anon_sym_BSLASHbigg] = ACTIONS(6329), - [anon_sym_BSLASHBigg] = ACTIONS(6329), - [anon_sym_BSLASHbigl] = ACTIONS(6329), - [anon_sym_BSLASHBigl] = ACTIONS(6329), - [anon_sym_BSLASHbiggl] = ACTIONS(6329), - [anon_sym_BSLASHBiggl] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6329), - [anon_sym_BSLASHgls] = ACTIONS(6329), - [anon_sym_BSLASHGls] = ACTIONS(6329), - [anon_sym_BSLASHGLS] = ACTIONS(6329), - [anon_sym_BSLASHglspl] = ACTIONS(6329), - [anon_sym_BSLASHGlspl] = ACTIONS(6329), - [anon_sym_BSLASHGLSpl] = ACTIONS(6329), - [anon_sym_BSLASHglsdisp] = ACTIONS(6329), - [anon_sym_BSLASHglslink] = ACTIONS(6329), - [anon_sym_BSLASHglstext] = ACTIONS(6329), - [anon_sym_BSLASHGlstext] = ACTIONS(6329), - [anon_sym_BSLASHGLStext] = ACTIONS(6329), - [anon_sym_BSLASHglsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6329), - [anon_sym_BSLASHglsplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSplural] = ACTIONS(6329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHglsname] = ACTIONS(6329), - [anon_sym_BSLASHGlsname] = ACTIONS(6329), - [anon_sym_BSLASHGLSname] = ACTIONS(6329), - [anon_sym_BSLASHglssymbol] = ACTIONS(6329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6329), - [anon_sym_BSLASHglsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6329), - [anon_sym_BSLASHglsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6329), - [anon_sym_BSLASHglsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6329), - [anon_sym_BSLASHglsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6329), - [anon_sym_BSLASHglsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6329), - [anon_sym_BSLASHnewacronym] = ACTIONS(6329), - [anon_sym_BSLASHacrshort] = ACTIONS(6329), - [anon_sym_BSLASHAcrshort] = ACTIONS(6329), - [anon_sym_BSLASHACRshort] = ACTIONS(6329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6329), - [anon_sym_BSLASHacrlong] = ACTIONS(6329), - [anon_sym_BSLASHAcrlong] = ACTIONS(6329), - [anon_sym_BSLASHACRlong] = ACTIONS(6329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6329), - [anon_sym_BSLASHacrfull] = ACTIONS(6329), - [anon_sym_BSLASHAcrfull] = ACTIONS(6329), - [anon_sym_BSLASHACRfull] = ACTIONS(6329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6329), - [anon_sym_BSLASHacs] = ACTIONS(6329), - [anon_sym_BSLASHAcs] = ACTIONS(6329), - [anon_sym_BSLASHacsp] = ACTIONS(6329), - [anon_sym_BSLASHAcsp] = ACTIONS(6329), - [anon_sym_BSLASHacl] = ACTIONS(6329), - [anon_sym_BSLASHAcl] = ACTIONS(6329), - [anon_sym_BSLASHaclp] = ACTIONS(6329), - [anon_sym_BSLASHAclp] = ACTIONS(6329), - [anon_sym_BSLASHacf] = ACTIONS(6329), - [anon_sym_BSLASHAcf] = ACTIONS(6329), - [anon_sym_BSLASHacfp] = ACTIONS(6329), - [anon_sym_BSLASHAcfp] = ACTIONS(6329), - [anon_sym_BSLASHac] = ACTIONS(6329), - [anon_sym_BSLASHAc] = ACTIONS(6329), - [anon_sym_BSLASHacp] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6329), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6329), - [anon_sym_BSLASHcolor] = ACTIONS(6329), - [anon_sym_BSLASHcolorbox] = ACTIONS(6329), - [anon_sym_BSLASHtextcolor] = ACTIONS(6329), - [anon_sym_BSLASHpagecolor] = ACTIONS(6329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6329), - [anon_sym_BSLASHtext] = ACTIONS(6329), - [anon_sym_BSLASHintertext] = ACTIONS(6329), - [anon_sym_shortintertext] = ACTIONS(6329), - }, - [1362] = { - [sym_command_name] = ACTIONS(6321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(6323), - [anon_sym_RBRACK] = ACTIONS(6323), - [anon_sym_COMMA] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(6323), - [anon_sym_LPAREN] = ACTIONS(6323), - [anon_sym_RPAREN] = ACTIONS(6323), - [anon_sym_BSLASHpart] = ACTIONS(6321), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddpart] = ACTIONS(6321), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6323), - [anon_sym_BSLASHchapter] = ACTIONS(6321), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddchap] = ACTIONS(6321), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsection] = ACTIONS(6321), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHaddsec] = ACTIONS(6321), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubsection] = ACTIONS(6321), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6321), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6323), - [anon_sym_BSLASHparagraph] = ACTIONS(6321), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6323), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6321), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6323), - [anon_sym_BSLASHitem] = ACTIONS(6321), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6323), - [anon_sym_LBRACE] = ACTIONS(6323), - [sym_word] = ACTIONS(6321), - [sym_placeholder] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6323), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_LT] = ACTIONS(6321), - [anon_sym_GT] = ACTIONS(6321), - [anon_sym_BANG] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_SQUOTE] = ACTIONS(6321), - [anon_sym__] = ACTIONS(6323), - [anon_sym_CARET] = ACTIONS(6323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6323), - [anon_sym_DOLLAR] = ACTIONS(6321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6323), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6323), - [anon_sym_BSLASHbegin] = ACTIONS(6321), - [anon_sym_BSLASHtitle] = ACTIONS(6321), - [anon_sym_BSLASHauthor] = ACTIONS(6321), - [anon_sym_BSLASHusepackage] = ACTIONS(6321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6321), - [anon_sym_BSLASHinclude] = ACTIONS(6321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6321), - [anon_sym_BSLASHinput] = ACTIONS(6321), - [anon_sym_BSLASHsubfile] = ACTIONS(6321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6321), - [anon_sym_BSLASHbibliography] = ACTIONS(6321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6321), - [anon_sym_BSLASHincludesvg] = ACTIONS(6321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6321), - [anon_sym_BSLASHimport] = ACTIONS(6321), - [anon_sym_BSLASHsubimport] = ACTIONS(6321), - [anon_sym_BSLASHinputfrom] = ACTIONS(6321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6321), - [anon_sym_BSLASHincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHcaption] = ACTIONS(6321), - [anon_sym_BSLASHcite] = ACTIONS(6321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCite] = ACTIONS(6321), - [anon_sym_BSLASHnocite] = ACTIONS(6321), - [anon_sym_BSLASHcitet] = ACTIONS(6321), - [anon_sym_BSLASHcitep] = ACTIONS(6321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteauthor] = ACTIONS(6321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitetitle] = ACTIONS(6321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteyear] = ACTIONS(6321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitedate] = ACTIONS(6321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteurl] = ACTIONS(6321), - [anon_sym_BSLASHfullcite] = ACTIONS(6321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6321), - [anon_sym_BSLASHcitealt] = ACTIONS(6321), - [anon_sym_BSLASHcitealp] = ACTIONS(6321), - [anon_sym_BSLASHcitetext] = ACTIONS(6321), - [anon_sym_BSLASHparencite] = ACTIONS(6321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHParencite] = ACTIONS(6321), - [anon_sym_BSLASHfootcite] = ACTIONS(6321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6321), - [anon_sym_BSLASHtextcite] = ACTIONS(6321), - [anon_sym_BSLASHTextcite] = ACTIONS(6321), - [anon_sym_BSLASHsmartcite] = ACTIONS(6321), - [anon_sym_BSLASHSmartcite] = ACTIONS(6321), - [anon_sym_BSLASHsupercite] = ACTIONS(6321), - [anon_sym_BSLASHautocite] = ACTIONS(6321), - [anon_sym_BSLASHAutocite] = ACTIONS(6321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHvolcite] = ACTIONS(6321), - [anon_sym_BSLASHVolcite] = ACTIONS(6321), - [anon_sym_BSLASHpvolcite] = ACTIONS(6321), - [anon_sym_BSLASHPvolcite] = ACTIONS(6321), - [anon_sym_BSLASHfvolcite] = ACTIONS(6321), - [anon_sym_BSLASHftvolcite] = ACTIONS(6321), - [anon_sym_BSLASHsvolcite] = ACTIONS(6321), - [anon_sym_BSLASHSvolcite] = ACTIONS(6321), - [anon_sym_BSLASHtvolcite] = ACTIONS(6321), - [anon_sym_BSLASHTvolcite] = ACTIONS(6321), - [anon_sym_BSLASHavolcite] = ACTIONS(6321), - [anon_sym_BSLASHAvolcite] = ACTIONS(6321), - [anon_sym_BSLASHnotecite] = ACTIONS(6321), - [anon_sym_BSLASHNotecite] = ACTIONS(6321), - [anon_sym_BSLASHpnotecite] = ACTIONS(6321), - [anon_sym_BSLASHPnotecite] = ACTIONS(6321), - [anon_sym_BSLASHfnotecite] = ACTIONS(6321), - [anon_sym_BSLASHlabel] = ACTIONS(6321), - [anon_sym_BSLASHref] = ACTIONS(6321), - [anon_sym_BSLASHeqref] = ACTIONS(6321), - [anon_sym_BSLASHvref] = ACTIONS(6321), - [anon_sym_BSLASHVref] = ACTIONS(6321), - [anon_sym_BSLASHautoref] = ACTIONS(6321), - [anon_sym_BSLASHpageref] = ACTIONS(6321), - [anon_sym_BSLASHcref] = ACTIONS(6321), - [anon_sym_BSLASHCref] = ACTIONS(6321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnameCref] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHlabelcref] = ACTIONS(6321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCrefrange] = ACTIONS(6321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnewlabel] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6323), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHdef] = ACTIONS(6321), - [anon_sym_BSLASHlet] = ACTIONS(6321), - [anon_sym_BSLASHleft] = ACTIONS(6321), - [anon_sym_BSLASHbig] = ACTIONS(6321), - [anon_sym_BSLASHBig] = ACTIONS(6321), - [anon_sym_BSLASHbigg] = ACTIONS(6321), - [anon_sym_BSLASHBigg] = ACTIONS(6321), - [anon_sym_BSLASHbigl] = ACTIONS(6321), - [anon_sym_BSLASHBigl] = ACTIONS(6321), - [anon_sym_BSLASHbiggl] = ACTIONS(6321), - [anon_sym_BSLASHBiggl] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6321), - [anon_sym_BSLASHgls] = ACTIONS(6321), - [anon_sym_BSLASHGls] = ACTIONS(6321), - [anon_sym_BSLASHGLS] = ACTIONS(6321), - [anon_sym_BSLASHglspl] = ACTIONS(6321), - [anon_sym_BSLASHGlspl] = ACTIONS(6321), - [anon_sym_BSLASHGLSpl] = ACTIONS(6321), - [anon_sym_BSLASHglsdisp] = ACTIONS(6321), - [anon_sym_BSLASHglslink] = ACTIONS(6321), - [anon_sym_BSLASHglstext] = ACTIONS(6321), - [anon_sym_BSLASHGlstext] = ACTIONS(6321), - [anon_sym_BSLASHGLStext] = ACTIONS(6321), - [anon_sym_BSLASHglsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6321), - [anon_sym_BSLASHglsplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSplural] = ACTIONS(6321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHglsname] = ACTIONS(6321), - [anon_sym_BSLASHGlsname] = ACTIONS(6321), - [anon_sym_BSLASHGLSname] = ACTIONS(6321), - [anon_sym_BSLASHglssymbol] = ACTIONS(6321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6321), - [anon_sym_BSLASHglsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6321), - [anon_sym_BSLASHglsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6321), - [anon_sym_BSLASHglsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6321), - [anon_sym_BSLASHglsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6321), - [anon_sym_BSLASHglsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6321), - [anon_sym_BSLASHnewacronym] = ACTIONS(6321), - [anon_sym_BSLASHacrshort] = ACTIONS(6321), - [anon_sym_BSLASHAcrshort] = ACTIONS(6321), - [anon_sym_BSLASHACRshort] = ACTIONS(6321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6321), - [anon_sym_BSLASHacrlong] = ACTIONS(6321), - [anon_sym_BSLASHAcrlong] = ACTIONS(6321), - [anon_sym_BSLASHACRlong] = ACTIONS(6321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6321), - [anon_sym_BSLASHacrfull] = ACTIONS(6321), - [anon_sym_BSLASHAcrfull] = ACTIONS(6321), - [anon_sym_BSLASHACRfull] = ACTIONS(6321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6321), - [anon_sym_BSLASHacs] = ACTIONS(6321), - [anon_sym_BSLASHAcs] = ACTIONS(6321), - [anon_sym_BSLASHacsp] = ACTIONS(6321), - [anon_sym_BSLASHAcsp] = ACTIONS(6321), - [anon_sym_BSLASHacl] = ACTIONS(6321), - [anon_sym_BSLASHAcl] = ACTIONS(6321), - [anon_sym_BSLASHaclp] = ACTIONS(6321), - [anon_sym_BSLASHAclp] = ACTIONS(6321), - [anon_sym_BSLASHacf] = ACTIONS(6321), - [anon_sym_BSLASHAcf] = ACTIONS(6321), - [anon_sym_BSLASHacfp] = ACTIONS(6321), - [anon_sym_BSLASHAcfp] = ACTIONS(6321), - [anon_sym_BSLASHac] = ACTIONS(6321), - [anon_sym_BSLASHAc] = ACTIONS(6321), - [anon_sym_BSLASHacp] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6321), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6321), - [anon_sym_BSLASHcolor] = ACTIONS(6321), - [anon_sym_BSLASHcolorbox] = ACTIONS(6321), - [anon_sym_BSLASHtextcolor] = ACTIONS(6321), - [anon_sym_BSLASHpagecolor] = ACTIONS(6321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6321), - [anon_sym_BSLASHtext] = ACTIONS(6321), - [anon_sym_BSLASHintertext] = ACTIONS(6321), - [anon_sym_shortintertext] = ACTIONS(6321), - }, - [1363] = { - [sym_command_name] = ACTIONS(6513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6513), - [anon_sym_LBRACK] = ACTIONS(6515), - [anon_sym_RBRACK] = ACTIONS(6515), - [anon_sym_COMMA] = ACTIONS(6515), - [anon_sym_EQ] = ACTIONS(6515), - [anon_sym_LPAREN] = ACTIONS(6515), - [anon_sym_RPAREN] = ACTIONS(6515), - [anon_sym_BSLASHpart] = ACTIONS(6513), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddpart] = ACTIONS(6513), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6515), - [anon_sym_BSLASHchapter] = ACTIONS(6513), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddchap] = ACTIONS(6513), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsection] = ACTIONS(6513), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHaddsec] = ACTIONS(6513), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubsection] = ACTIONS(6513), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6513), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6515), - [anon_sym_BSLASHparagraph] = ACTIONS(6513), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6515), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6513), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6515), - [anon_sym_BSLASHitem] = ACTIONS(6513), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(6515), - [sym_word] = ACTIONS(6513), - [sym_placeholder] = ACTIONS(6515), - [anon_sym_PLUS] = ACTIONS(6515), - [anon_sym_DASH] = ACTIONS(6515), - [anon_sym_STAR] = ACTIONS(6515), - [anon_sym_SLASH] = ACTIONS(6515), - [anon_sym_LT] = ACTIONS(6513), - [anon_sym_GT] = ACTIONS(6513), - [anon_sym_BANG] = ACTIONS(6513), - [anon_sym_PIPE] = ACTIONS(6513), - [anon_sym_COLON] = ACTIONS(6513), - [anon_sym_SQUOTE] = ACTIONS(6513), - [anon_sym__] = ACTIONS(6515), - [anon_sym_CARET] = ACTIONS(6515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6515), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6515), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6515), - [anon_sym_DOLLAR] = ACTIONS(6513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6515), - [anon_sym_BSLASHbegin] = ACTIONS(6513), - [anon_sym_BSLASHtitle] = ACTIONS(6513), - [anon_sym_BSLASHauthor] = ACTIONS(6513), - [anon_sym_BSLASHusepackage] = ACTIONS(6513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6513), - [anon_sym_BSLASHinclude] = ACTIONS(6513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6513), - [anon_sym_BSLASHinput] = ACTIONS(6513), - [anon_sym_BSLASHsubfile] = ACTIONS(6513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6513), - [anon_sym_BSLASHbibliography] = ACTIONS(6513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6513), - [anon_sym_BSLASHincludesvg] = ACTIONS(6513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6513), - [anon_sym_BSLASHimport] = ACTIONS(6513), - [anon_sym_BSLASHsubimport] = ACTIONS(6513), - [anon_sym_BSLASHinputfrom] = ACTIONS(6513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6513), - [anon_sym_BSLASHincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHcaption] = ACTIONS(6513), - [anon_sym_BSLASHcite] = ACTIONS(6513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCite] = ACTIONS(6513), - [anon_sym_BSLASHnocite] = ACTIONS(6513), - [anon_sym_BSLASHcitet] = ACTIONS(6513), - [anon_sym_BSLASHcitep] = ACTIONS(6513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteauthor] = ACTIONS(6513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitetitle] = ACTIONS(6513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteyear] = ACTIONS(6513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitedate] = ACTIONS(6513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteurl] = ACTIONS(6513), - [anon_sym_BSLASHfullcite] = ACTIONS(6513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6513), - [anon_sym_BSLASHcitealt] = ACTIONS(6513), - [anon_sym_BSLASHcitealp] = ACTIONS(6513), - [anon_sym_BSLASHcitetext] = ACTIONS(6513), - [anon_sym_BSLASHparencite] = ACTIONS(6513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHParencite] = ACTIONS(6513), - [anon_sym_BSLASHfootcite] = ACTIONS(6513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6513), - [anon_sym_BSLASHtextcite] = ACTIONS(6513), - [anon_sym_BSLASHTextcite] = ACTIONS(6513), - [anon_sym_BSLASHsmartcite] = ACTIONS(6513), - [anon_sym_BSLASHSmartcite] = ACTIONS(6513), - [anon_sym_BSLASHsupercite] = ACTIONS(6513), - [anon_sym_BSLASHautocite] = ACTIONS(6513), - [anon_sym_BSLASHAutocite] = ACTIONS(6513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHvolcite] = ACTIONS(6513), - [anon_sym_BSLASHVolcite] = ACTIONS(6513), - [anon_sym_BSLASHpvolcite] = ACTIONS(6513), - [anon_sym_BSLASHPvolcite] = ACTIONS(6513), - [anon_sym_BSLASHfvolcite] = ACTIONS(6513), - [anon_sym_BSLASHftvolcite] = ACTIONS(6513), - [anon_sym_BSLASHsvolcite] = ACTIONS(6513), - [anon_sym_BSLASHSvolcite] = ACTIONS(6513), - [anon_sym_BSLASHtvolcite] = ACTIONS(6513), - [anon_sym_BSLASHTvolcite] = ACTIONS(6513), - [anon_sym_BSLASHavolcite] = ACTIONS(6513), - [anon_sym_BSLASHAvolcite] = ACTIONS(6513), - [anon_sym_BSLASHnotecite] = ACTIONS(6513), - [anon_sym_BSLASHNotecite] = ACTIONS(6513), - [anon_sym_BSLASHpnotecite] = ACTIONS(6513), - [anon_sym_BSLASHPnotecite] = ACTIONS(6513), - [anon_sym_BSLASHfnotecite] = ACTIONS(6513), - [anon_sym_BSLASHlabel] = ACTIONS(6513), - [anon_sym_BSLASHref] = ACTIONS(6513), - [anon_sym_BSLASHeqref] = ACTIONS(6513), - [anon_sym_BSLASHvref] = ACTIONS(6513), - [anon_sym_BSLASHVref] = ACTIONS(6513), - [anon_sym_BSLASHautoref] = ACTIONS(6513), - [anon_sym_BSLASHpageref] = ACTIONS(6513), - [anon_sym_BSLASHcref] = ACTIONS(6513), - [anon_sym_BSLASHCref] = ACTIONS(6513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnameCref] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHlabelcref] = ACTIONS(6513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCrefrange] = ACTIONS(6513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnewlabel] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6515), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHdef] = ACTIONS(6513), - [anon_sym_BSLASHlet] = ACTIONS(6513), - [anon_sym_BSLASHleft] = ACTIONS(6513), - [anon_sym_BSLASHbig] = ACTIONS(6513), - [anon_sym_BSLASHBig] = ACTIONS(6513), - [anon_sym_BSLASHbigg] = ACTIONS(6513), - [anon_sym_BSLASHBigg] = ACTIONS(6513), - [anon_sym_BSLASHbigl] = ACTIONS(6513), - [anon_sym_BSLASHBigl] = ACTIONS(6513), - [anon_sym_BSLASHbiggl] = ACTIONS(6513), - [anon_sym_BSLASHBiggl] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6513), - [anon_sym_BSLASHgls] = ACTIONS(6513), - [anon_sym_BSLASHGls] = ACTIONS(6513), - [anon_sym_BSLASHGLS] = ACTIONS(6513), - [anon_sym_BSLASHglspl] = ACTIONS(6513), - [anon_sym_BSLASHGlspl] = ACTIONS(6513), - [anon_sym_BSLASHGLSpl] = ACTIONS(6513), - [anon_sym_BSLASHglsdisp] = ACTIONS(6513), - [anon_sym_BSLASHglslink] = ACTIONS(6513), - [anon_sym_BSLASHglstext] = ACTIONS(6513), - [anon_sym_BSLASHGlstext] = ACTIONS(6513), - [anon_sym_BSLASHGLStext] = ACTIONS(6513), - [anon_sym_BSLASHglsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6513), - [anon_sym_BSLASHglsplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSplural] = ACTIONS(6513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHglsname] = ACTIONS(6513), - [anon_sym_BSLASHGlsname] = ACTIONS(6513), - [anon_sym_BSLASHGLSname] = ACTIONS(6513), - [anon_sym_BSLASHglssymbol] = ACTIONS(6513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6513), - [anon_sym_BSLASHglsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6513), - [anon_sym_BSLASHglsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6513), - [anon_sym_BSLASHglsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6513), - [anon_sym_BSLASHglsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6513), - [anon_sym_BSLASHglsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6513), - [anon_sym_BSLASHnewacronym] = ACTIONS(6513), - [anon_sym_BSLASHacrshort] = ACTIONS(6513), - [anon_sym_BSLASHAcrshort] = ACTIONS(6513), - [anon_sym_BSLASHACRshort] = ACTIONS(6513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6513), - [anon_sym_BSLASHacrlong] = ACTIONS(6513), - [anon_sym_BSLASHAcrlong] = ACTIONS(6513), - [anon_sym_BSLASHACRlong] = ACTIONS(6513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6513), - [anon_sym_BSLASHacrfull] = ACTIONS(6513), - [anon_sym_BSLASHAcrfull] = ACTIONS(6513), - [anon_sym_BSLASHACRfull] = ACTIONS(6513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6513), - [anon_sym_BSLASHacs] = ACTIONS(6513), - [anon_sym_BSLASHAcs] = ACTIONS(6513), - [anon_sym_BSLASHacsp] = ACTIONS(6513), - [anon_sym_BSLASHAcsp] = ACTIONS(6513), - [anon_sym_BSLASHacl] = ACTIONS(6513), - [anon_sym_BSLASHAcl] = ACTIONS(6513), - [anon_sym_BSLASHaclp] = ACTIONS(6513), - [anon_sym_BSLASHAclp] = ACTIONS(6513), - [anon_sym_BSLASHacf] = ACTIONS(6513), - [anon_sym_BSLASHAcf] = ACTIONS(6513), - [anon_sym_BSLASHacfp] = ACTIONS(6513), - [anon_sym_BSLASHAcfp] = ACTIONS(6513), - [anon_sym_BSLASHac] = ACTIONS(6513), - [anon_sym_BSLASHAc] = ACTIONS(6513), - [anon_sym_BSLASHacp] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6513), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6513), - [anon_sym_BSLASHcolor] = ACTIONS(6513), - [anon_sym_BSLASHcolorbox] = ACTIONS(6513), - [anon_sym_BSLASHtextcolor] = ACTIONS(6513), - [anon_sym_BSLASHpagecolor] = ACTIONS(6513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6513), - [anon_sym_BSLASHtext] = ACTIONS(6513), - [anon_sym_BSLASHintertext] = ACTIONS(6513), - [anon_sym_shortintertext] = ACTIONS(6513), - }, - [1364] = { - [sym_command_name] = ACTIONS(6293), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(6295), - [anon_sym_RBRACK] = ACTIONS(6295), - [anon_sym_COMMA] = ACTIONS(6295), - [anon_sym_EQ] = ACTIONS(6295), - [anon_sym_LPAREN] = ACTIONS(6295), - [anon_sym_RPAREN] = ACTIONS(6295), - [anon_sym_BSLASHpart] = ACTIONS(6293), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddpart] = ACTIONS(6293), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6295), - [anon_sym_BSLASHchapter] = ACTIONS(6293), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddchap] = ACTIONS(6293), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsection] = ACTIONS(6293), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHaddsec] = ACTIONS(6293), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubsection] = ACTIONS(6293), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6293), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6295), - [anon_sym_BSLASHparagraph] = ACTIONS(6293), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6295), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6293), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6295), - [anon_sym_BSLASHitem] = ACTIONS(6293), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6295), - [anon_sym_LBRACE] = ACTIONS(6295), - [sym_word] = ACTIONS(6293), - [sym_placeholder] = ACTIONS(6295), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6295), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_LT] = ACTIONS(6293), - [anon_sym_GT] = ACTIONS(6293), - [anon_sym_BANG] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_SQUOTE] = ACTIONS(6293), - [anon_sym__] = ACTIONS(6295), - [anon_sym_CARET] = ACTIONS(6295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6295), - [anon_sym_DOLLAR] = ACTIONS(6293), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6295), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6295), - [anon_sym_BSLASHbegin] = ACTIONS(6293), - [anon_sym_BSLASHtitle] = ACTIONS(6293), - [anon_sym_BSLASHauthor] = ACTIONS(6293), - [anon_sym_BSLASHusepackage] = ACTIONS(6293), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6293), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6293), - [anon_sym_BSLASHinclude] = ACTIONS(6293), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6293), - [anon_sym_BSLASHinput] = ACTIONS(6293), - [anon_sym_BSLASHsubfile] = ACTIONS(6293), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6293), - [anon_sym_BSLASHbibliography] = ACTIONS(6293), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6293), - [anon_sym_BSLASHincludesvg] = ACTIONS(6293), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6293), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6293), - [anon_sym_BSLASHimport] = ACTIONS(6293), - [anon_sym_BSLASHsubimport] = ACTIONS(6293), - [anon_sym_BSLASHinputfrom] = ACTIONS(6293), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6293), - [anon_sym_BSLASHincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHcaption] = ACTIONS(6293), - [anon_sym_BSLASHcite] = ACTIONS(6293), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCite] = ACTIONS(6293), - [anon_sym_BSLASHnocite] = ACTIONS(6293), - [anon_sym_BSLASHcitet] = ACTIONS(6293), - [anon_sym_BSLASHcitep] = ACTIONS(6293), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteauthor] = ACTIONS(6293), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6293), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitetitle] = ACTIONS(6293), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteyear] = ACTIONS(6293), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitedate] = ACTIONS(6293), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteurl] = ACTIONS(6293), - [anon_sym_BSLASHfullcite] = ACTIONS(6293), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6293), - [anon_sym_BSLASHcitealt] = ACTIONS(6293), - [anon_sym_BSLASHcitealp] = ACTIONS(6293), - [anon_sym_BSLASHcitetext] = ACTIONS(6293), - [anon_sym_BSLASHparencite] = ACTIONS(6293), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHParencite] = ACTIONS(6293), - [anon_sym_BSLASHfootcite] = ACTIONS(6293), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6293), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6293), - [anon_sym_BSLASHtextcite] = ACTIONS(6293), - [anon_sym_BSLASHTextcite] = ACTIONS(6293), - [anon_sym_BSLASHsmartcite] = ACTIONS(6293), - [anon_sym_BSLASHSmartcite] = ACTIONS(6293), - [anon_sym_BSLASHsupercite] = ACTIONS(6293), - [anon_sym_BSLASHautocite] = ACTIONS(6293), - [anon_sym_BSLASHAutocite] = ACTIONS(6293), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHvolcite] = ACTIONS(6293), - [anon_sym_BSLASHVolcite] = ACTIONS(6293), - [anon_sym_BSLASHpvolcite] = ACTIONS(6293), - [anon_sym_BSLASHPvolcite] = ACTIONS(6293), - [anon_sym_BSLASHfvolcite] = ACTIONS(6293), - [anon_sym_BSLASHftvolcite] = ACTIONS(6293), - [anon_sym_BSLASHsvolcite] = ACTIONS(6293), - [anon_sym_BSLASHSvolcite] = ACTIONS(6293), - [anon_sym_BSLASHtvolcite] = ACTIONS(6293), - [anon_sym_BSLASHTvolcite] = ACTIONS(6293), - [anon_sym_BSLASHavolcite] = ACTIONS(6293), - [anon_sym_BSLASHAvolcite] = ACTIONS(6293), - [anon_sym_BSLASHnotecite] = ACTIONS(6293), - [anon_sym_BSLASHNotecite] = ACTIONS(6293), - [anon_sym_BSLASHpnotecite] = ACTIONS(6293), - [anon_sym_BSLASHPnotecite] = ACTIONS(6293), - [anon_sym_BSLASHfnotecite] = ACTIONS(6293), - [anon_sym_BSLASHlabel] = ACTIONS(6293), - [anon_sym_BSLASHref] = ACTIONS(6293), - [anon_sym_BSLASHeqref] = ACTIONS(6293), - [anon_sym_BSLASHvref] = ACTIONS(6293), - [anon_sym_BSLASHVref] = ACTIONS(6293), - [anon_sym_BSLASHautoref] = ACTIONS(6293), - [anon_sym_BSLASHpageref] = ACTIONS(6293), - [anon_sym_BSLASHcref] = ACTIONS(6293), - [anon_sym_BSLASHCref] = ACTIONS(6293), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnameCref] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHlabelcref] = ACTIONS(6293), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCrefrange] = ACTIONS(6293), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnewlabel] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6293), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6293), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6295), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHdef] = ACTIONS(6293), - [anon_sym_BSLASHlet] = ACTIONS(6293), - [anon_sym_BSLASHleft] = ACTIONS(6293), - [anon_sym_BSLASHbig] = ACTIONS(6293), - [anon_sym_BSLASHBig] = ACTIONS(6293), - [anon_sym_BSLASHbigg] = ACTIONS(6293), - [anon_sym_BSLASHBigg] = ACTIONS(6293), - [anon_sym_BSLASHbigl] = ACTIONS(6293), - [anon_sym_BSLASHBigl] = ACTIONS(6293), - [anon_sym_BSLASHbiggl] = ACTIONS(6293), - [anon_sym_BSLASHBiggl] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6293), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6293), - [anon_sym_BSLASHgls] = ACTIONS(6293), - [anon_sym_BSLASHGls] = ACTIONS(6293), - [anon_sym_BSLASHGLS] = ACTIONS(6293), - [anon_sym_BSLASHglspl] = ACTIONS(6293), - [anon_sym_BSLASHGlspl] = ACTIONS(6293), - [anon_sym_BSLASHGLSpl] = ACTIONS(6293), - [anon_sym_BSLASHglsdisp] = ACTIONS(6293), - [anon_sym_BSLASHglslink] = ACTIONS(6293), - [anon_sym_BSLASHglstext] = ACTIONS(6293), - [anon_sym_BSLASHGlstext] = ACTIONS(6293), - [anon_sym_BSLASHGLStext] = ACTIONS(6293), - [anon_sym_BSLASHglsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6293), - [anon_sym_BSLASHglsplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSplural] = ACTIONS(6293), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHglsname] = ACTIONS(6293), - [anon_sym_BSLASHGlsname] = ACTIONS(6293), - [anon_sym_BSLASHGLSname] = ACTIONS(6293), - [anon_sym_BSLASHglssymbol] = ACTIONS(6293), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6293), - [anon_sym_BSLASHglsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6293), - [anon_sym_BSLASHglsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6293), - [anon_sym_BSLASHglsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6293), - [anon_sym_BSLASHglsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6293), - [anon_sym_BSLASHglsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6293), - [anon_sym_BSLASHnewacronym] = ACTIONS(6293), - [anon_sym_BSLASHacrshort] = ACTIONS(6293), - [anon_sym_BSLASHAcrshort] = ACTIONS(6293), - [anon_sym_BSLASHACRshort] = ACTIONS(6293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6293), - [anon_sym_BSLASHacrlong] = ACTIONS(6293), - [anon_sym_BSLASHAcrlong] = ACTIONS(6293), - [anon_sym_BSLASHACRlong] = ACTIONS(6293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6293), - [anon_sym_BSLASHacrfull] = ACTIONS(6293), - [anon_sym_BSLASHAcrfull] = ACTIONS(6293), - [anon_sym_BSLASHACRfull] = ACTIONS(6293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6293), - [anon_sym_BSLASHacs] = ACTIONS(6293), - [anon_sym_BSLASHAcs] = ACTIONS(6293), - [anon_sym_BSLASHacsp] = ACTIONS(6293), - [anon_sym_BSLASHAcsp] = ACTIONS(6293), - [anon_sym_BSLASHacl] = ACTIONS(6293), - [anon_sym_BSLASHAcl] = ACTIONS(6293), - [anon_sym_BSLASHaclp] = ACTIONS(6293), - [anon_sym_BSLASHAclp] = ACTIONS(6293), - [anon_sym_BSLASHacf] = ACTIONS(6293), - [anon_sym_BSLASHAcf] = ACTIONS(6293), - [anon_sym_BSLASHacfp] = ACTIONS(6293), - [anon_sym_BSLASHAcfp] = ACTIONS(6293), - [anon_sym_BSLASHac] = ACTIONS(6293), - [anon_sym_BSLASHAc] = ACTIONS(6293), - [anon_sym_BSLASHacp] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6293), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6293), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6293), - [anon_sym_BSLASHcolor] = ACTIONS(6293), - [anon_sym_BSLASHcolorbox] = ACTIONS(6293), - [anon_sym_BSLASHtextcolor] = ACTIONS(6293), - [anon_sym_BSLASHpagecolor] = ACTIONS(6293), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6293), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6293), - [anon_sym_BSLASHtext] = ACTIONS(6293), - [anon_sym_BSLASHintertext] = ACTIONS(6293), - [anon_sym_shortintertext] = ACTIONS(6293), - }, - [1365] = { - [sym_command_name] = ACTIONS(6517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6517), - [anon_sym_LBRACK] = ACTIONS(6519), - [anon_sym_RBRACK] = ACTIONS(6519), - [anon_sym_COMMA] = ACTIONS(6519), - [anon_sym_EQ] = ACTIONS(6519), - [anon_sym_LPAREN] = ACTIONS(6519), - [anon_sym_RPAREN] = ACTIONS(6519), - [anon_sym_BSLASHpart] = ACTIONS(6517), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddpart] = ACTIONS(6517), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6519), - [anon_sym_BSLASHchapter] = ACTIONS(6517), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddchap] = ACTIONS(6517), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsection] = ACTIONS(6517), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHaddsec] = ACTIONS(6517), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubsection] = ACTIONS(6517), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6517), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6519), - [anon_sym_BSLASHparagraph] = ACTIONS(6517), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6519), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6517), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6519), - [anon_sym_BSLASHitem] = ACTIONS(6517), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6519), - [anon_sym_LBRACE] = ACTIONS(6519), - [sym_word] = ACTIONS(6517), - [sym_placeholder] = ACTIONS(6519), - [anon_sym_PLUS] = ACTIONS(6519), - [anon_sym_DASH] = ACTIONS(6519), - [anon_sym_STAR] = ACTIONS(6519), - [anon_sym_SLASH] = ACTIONS(6519), - [anon_sym_LT] = ACTIONS(6517), - [anon_sym_GT] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(6517), - [anon_sym_PIPE] = ACTIONS(6517), - [anon_sym_COLON] = ACTIONS(6517), - [anon_sym_SQUOTE] = ACTIONS(6517), - [anon_sym__] = ACTIONS(6519), - [anon_sym_CARET] = ACTIONS(6519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6519), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6519), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6519), - [anon_sym_DOLLAR] = ACTIONS(6517), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6519), - [anon_sym_BSLASHbegin] = ACTIONS(6517), - [anon_sym_BSLASHtitle] = ACTIONS(6517), - [anon_sym_BSLASHauthor] = ACTIONS(6517), - [anon_sym_BSLASHusepackage] = ACTIONS(6517), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6517), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6517), - [anon_sym_BSLASHinclude] = ACTIONS(6517), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6517), - [anon_sym_BSLASHinput] = ACTIONS(6517), - [anon_sym_BSLASHsubfile] = ACTIONS(6517), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6517), - [anon_sym_BSLASHbibliography] = ACTIONS(6517), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6517), - [anon_sym_BSLASHincludesvg] = ACTIONS(6517), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6517), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6517), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6517), - [anon_sym_BSLASHimport] = ACTIONS(6517), - [anon_sym_BSLASHsubimport] = ACTIONS(6517), - [anon_sym_BSLASHinputfrom] = ACTIONS(6517), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6517), - [anon_sym_BSLASHincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHcaption] = ACTIONS(6517), - [anon_sym_BSLASHcite] = ACTIONS(6517), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCite] = ACTIONS(6517), - [anon_sym_BSLASHnocite] = ACTIONS(6517), - [anon_sym_BSLASHcitet] = ACTIONS(6517), - [anon_sym_BSLASHcitep] = ACTIONS(6517), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteauthor] = ACTIONS(6517), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6517), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitetitle] = ACTIONS(6517), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteyear] = ACTIONS(6517), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitedate] = ACTIONS(6517), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteurl] = ACTIONS(6517), - [anon_sym_BSLASHfullcite] = ACTIONS(6517), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6517), - [anon_sym_BSLASHcitealt] = ACTIONS(6517), - [anon_sym_BSLASHcitealp] = ACTIONS(6517), - [anon_sym_BSLASHcitetext] = ACTIONS(6517), - [anon_sym_BSLASHparencite] = ACTIONS(6517), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHParencite] = ACTIONS(6517), - [anon_sym_BSLASHfootcite] = ACTIONS(6517), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6517), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6517), - [anon_sym_BSLASHtextcite] = ACTIONS(6517), - [anon_sym_BSLASHTextcite] = ACTIONS(6517), - [anon_sym_BSLASHsmartcite] = ACTIONS(6517), - [anon_sym_BSLASHSmartcite] = ACTIONS(6517), - [anon_sym_BSLASHsupercite] = ACTIONS(6517), - [anon_sym_BSLASHautocite] = ACTIONS(6517), - [anon_sym_BSLASHAutocite] = ACTIONS(6517), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHvolcite] = ACTIONS(6517), - [anon_sym_BSLASHVolcite] = ACTIONS(6517), - [anon_sym_BSLASHpvolcite] = ACTIONS(6517), - [anon_sym_BSLASHPvolcite] = ACTIONS(6517), - [anon_sym_BSLASHfvolcite] = ACTIONS(6517), - [anon_sym_BSLASHftvolcite] = ACTIONS(6517), - [anon_sym_BSLASHsvolcite] = ACTIONS(6517), - [anon_sym_BSLASHSvolcite] = ACTIONS(6517), - [anon_sym_BSLASHtvolcite] = ACTIONS(6517), - [anon_sym_BSLASHTvolcite] = ACTIONS(6517), - [anon_sym_BSLASHavolcite] = ACTIONS(6517), - [anon_sym_BSLASHAvolcite] = ACTIONS(6517), - [anon_sym_BSLASHnotecite] = ACTIONS(6517), - [anon_sym_BSLASHNotecite] = ACTIONS(6517), - [anon_sym_BSLASHpnotecite] = ACTIONS(6517), - [anon_sym_BSLASHPnotecite] = ACTIONS(6517), - [anon_sym_BSLASHfnotecite] = ACTIONS(6517), - [anon_sym_BSLASHlabel] = ACTIONS(6517), - [anon_sym_BSLASHref] = ACTIONS(6517), - [anon_sym_BSLASHeqref] = ACTIONS(6517), - [anon_sym_BSLASHvref] = ACTIONS(6517), - [anon_sym_BSLASHVref] = ACTIONS(6517), - [anon_sym_BSLASHautoref] = ACTIONS(6517), - [anon_sym_BSLASHpageref] = ACTIONS(6517), - [anon_sym_BSLASHcref] = ACTIONS(6517), - [anon_sym_BSLASHCref] = ACTIONS(6517), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnameCref] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHlabelcref] = ACTIONS(6517), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCrefrange] = ACTIONS(6517), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnewlabel] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6517), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6517), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6519), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHdef] = ACTIONS(6517), - [anon_sym_BSLASHlet] = ACTIONS(6517), - [anon_sym_BSLASHleft] = ACTIONS(6517), - [anon_sym_BSLASHbig] = ACTIONS(6517), - [anon_sym_BSLASHBig] = ACTIONS(6517), - [anon_sym_BSLASHbigg] = ACTIONS(6517), - [anon_sym_BSLASHBigg] = ACTIONS(6517), - [anon_sym_BSLASHbigl] = ACTIONS(6517), - [anon_sym_BSLASHBigl] = ACTIONS(6517), - [anon_sym_BSLASHbiggl] = ACTIONS(6517), - [anon_sym_BSLASHBiggl] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6517), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6517), - [anon_sym_BSLASHgls] = ACTIONS(6517), - [anon_sym_BSLASHGls] = ACTIONS(6517), - [anon_sym_BSLASHGLS] = ACTIONS(6517), - [anon_sym_BSLASHglspl] = ACTIONS(6517), - [anon_sym_BSLASHGlspl] = ACTIONS(6517), - [anon_sym_BSLASHGLSpl] = ACTIONS(6517), - [anon_sym_BSLASHglsdisp] = ACTIONS(6517), - [anon_sym_BSLASHglslink] = ACTIONS(6517), - [anon_sym_BSLASHglstext] = ACTIONS(6517), - [anon_sym_BSLASHGlstext] = ACTIONS(6517), - [anon_sym_BSLASHGLStext] = ACTIONS(6517), - [anon_sym_BSLASHglsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6517), - [anon_sym_BSLASHglsplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSplural] = ACTIONS(6517), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHglsname] = ACTIONS(6517), - [anon_sym_BSLASHGlsname] = ACTIONS(6517), - [anon_sym_BSLASHGLSname] = ACTIONS(6517), - [anon_sym_BSLASHglssymbol] = ACTIONS(6517), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6517), - [anon_sym_BSLASHglsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6517), - [anon_sym_BSLASHglsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6517), - [anon_sym_BSLASHglsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6517), - [anon_sym_BSLASHglsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6517), - [anon_sym_BSLASHglsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6517), - [anon_sym_BSLASHnewacronym] = ACTIONS(6517), - [anon_sym_BSLASHacrshort] = ACTIONS(6517), - [anon_sym_BSLASHAcrshort] = ACTIONS(6517), - [anon_sym_BSLASHACRshort] = ACTIONS(6517), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6517), - [anon_sym_BSLASHacrlong] = ACTIONS(6517), - [anon_sym_BSLASHAcrlong] = ACTIONS(6517), - [anon_sym_BSLASHACRlong] = ACTIONS(6517), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6517), - [anon_sym_BSLASHacrfull] = ACTIONS(6517), - [anon_sym_BSLASHAcrfull] = ACTIONS(6517), - [anon_sym_BSLASHACRfull] = ACTIONS(6517), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6517), - [anon_sym_BSLASHacs] = ACTIONS(6517), - [anon_sym_BSLASHAcs] = ACTIONS(6517), - [anon_sym_BSLASHacsp] = ACTIONS(6517), - [anon_sym_BSLASHAcsp] = ACTIONS(6517), - [anon_sym_BSLASHacl] = ACTIONS(6517), - [anon_sym_BSLASHAcl] = ACTIONS(6517), - [anon_sym_BSLASHaclp] = ACTIONS(6517), - [anon_sym_BSLASHAclp] = ACTIONS(6517), - [anon_sym_BSLASHacf] = ACTIONS(6517), - [anon_sym_BSLASHAcf] = ACTIONS(6517), - [anon_sym_BSLASHacfp] = ACTIONS(6517), - [anon_sym_BSLASHAcfp] = ACTIONS(6517), - [anon_sym_BSLASHac] = ACTIONS(6517), - [anon_sym_BSLASHAc] = ACTIONS(6517), - [anon_sym_BSLASHacp] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6517), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6517), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6517), - [anon_sym_BSLASHcolor] = ACTIONS(6517), - [anon_sym_BSLASHcolorbox] = ACTIONS(6517), - [anon_sym_BSLASHtextcolor] = ACTIONS(6517), - [anon_sym_BSLASHpagecolor] = ACTIONS(6517), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6517), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6517), - [anon_sym_BSLASHtext] = ACTIONS(6517), - [anon_sym_BSLASHintertext] = ACTIONS(6517), - [anon_sym_shortintertext] = ACTIONS(6517), - }, - [1366] = { - [sym_command_name] = ACTIONS(6289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(6291), - [anon_sym_RBRACK] = ACTIONS(6291), - [anon_sym_COMMA] = ACTIONS(6291), - [anon_sym_EQ] = ACTIONS(6291), - [anon_sym_LPAREN] = ACTIONS(6291), - [anon_sym_RPAREN] = ACTIONS(6291), - [anon_sym_BSLASHpart] = ACTIONS(6289), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddpart] = ACTIONS(6289), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6291), - [anon_sym_BSLASHchapter] = ACTIONS(6289), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddchap] = ACTIONS(6289), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsection] = ACTIONS(6289), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHaddsec] = ACTIONS(6289), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubsection] = ACTIONS(6289), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6289), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6291), - [anon_sym_BSLASHparagraph] = ACTIONS(6289), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6291), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6289), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6291), - [anon_sym_BSLASHitem] = ACTIONS(6289), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6291), - [anon_sym_LBRACE] = ACTIONS(6291), - [sym_word] = ACTIONS(6289), - [sym_placeholder] = ACTIONS(6291), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6291), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_LT] = ACTIONS(6289), - [anon_sym_GT] = ACTIONS(6289), - [anon_sym_BANG] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_SQUOTE] = ACTIONS(6289), - [anon_sym__] = ACTIONS(6291), - [anon_sym_CARET] = ACTIONS(6291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6291), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6291), - [anon_sym_DOLLAR] = ACTIONS(6289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6291), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6291), - [anon_sym_BSLASHbegin] = ACTIONS(6289), - [anon_sym_BSLASHtitle] = ACTIONS(6289), - [anon_sym_BSLASHauthor] = ACTIONS(6289), - [anon_sym_BSLASHusepackage] = ACTIONS(6289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), - [anon_sym_BSLASHinclude] = ACTIONS(6289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), - [anon_sym_BSLASHinput] = ACTIONS(6289), - [anon_sym_BSLASHsubfile] = ACTIONS(6289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), - [anon_sym_BSLASHbibliography] = ACTIONS(6289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), - [anon_sym_BSLASHincludesvg] = ACTIONS(6289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), - [anon_sym_BSLASHimport] = ACTIONS(6289), - [anon_sym_BSLASHsubimport] = ACTIONS(6289), - [anon_sym_BSLASHinputfrom] = ACTIONS(6289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), - [anon_sym_BSLASHincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHcaption] = ACTIONS(6289), - [anon_sym_BSLASHcite] = ACTIONS(6289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCite] = ACTIONS(6289), - [anon_sym_BSLASHnocite] = ACTIONS(6289), - [anon_sym_BSLASHcitet] = ACTIONS(6289), - [anon_sym_BSLASHcitep] = ACTIONS(6289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteauthor] = ACTIONS(6289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitetitle] = ACTIONS(6289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteyear] = ACTIONS(6289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitedate] = ACTIONS(6289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteurl] = ACTIONS(6289), - [anon_sym_BSLASHfullcite] = ACTIONS(6289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), - [anon_sym_BSLASHcitealt] = ACTIONS(6289), - [anon_sym_BSLASHcitealp] = ACTIONS(6289), - [anon_sym_BSLASHcitetext] = ACTIONS(6289), - [anon_sym_BSLASHparencite] = ACTIONS(6289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHParencite] = ACTIONS(6289), - [anon_sym_BSLASHfootcite] = ACTIONS(6289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), - [anon_sym_BSLASHtextcite] = ACTIONS(6289), - [anon_sym_BSLASHTextcite] = ACTIONS(6289), - [anon_sym_BSLASHsmartcite] = ACTIONS(6289), - [anon_sym_BSLASHSmartcite] = ACTIONS(6289), - [anon_sym_BSLASHsupercite] = ACTIONS(6289), - [anon_sym_BSLASHautocite] = ACTIONS(6289), - [anon_sym_BSLASHAutocite] = ACTIONS(6289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHvolcite] = ACTIONS(6289), - [anon_sym_BSLASHVolcite] = ACTIONS(6289), - [anon_sym_BSLASHpvolcite] = ACTIONS(6289), - [anon_sym_BSLASHPvolcite] = ACTIONS(6289), - [anon_sym_BSLASHfvolcite] = ACTIONS(6289), - [anon_sym_BSLASHftvolcite] = ACTIONS(6289), - [anon_sym_BSLASHsvolcite] = ACTIONS(6289), - [anon_sym_BSLASHSvolcite] = ACTIONS(6289), - [anon_sym_BSLASHtvolcite] = ACTIONS(6289), - [anon_sym_BSLASHTvolcite] = ACTIONS(6289), - [anon_sym_BSLASHavolcite] = ACTIONS(6289), - [anon_sym_BSLASHAvolcite] = ACTIONS(6289), - [anon_sym_BSLASHnotecite] = ACTIONS(6289), - [anon_sym_BSLASHNotecite] = ACTIONS(6289), - [anon_sym_BSLASHpnotecite] = ACTIONS(6289), - [anon_sym_BSLASHPnotecite] = ACTIONS(6289), - [anon_sym_BSLASHfnotecite] = ACTIONS(6289), - [anon_sym_BSLASHlabel] = ACTIONS(6289), - [anon_sym_BSLASHref] = ACTIONS(6289), - [anon_sym_BSLASHeqref] = ACTIONS(6289), - [anon_sym_BSLASHvref] = ACTIONS(6289), - [anon_sym_BSLASHVref] = ACTIONS(6289), - [anon_sym_BSLASHautoref] = ACTIONS(6289), - [anon_sym_BSLASHpageref] = ACTIONS(6289), - [anon_sym_BSLASHcref] = ACTIONS(6289), - [anon_sym_BSLASHCref] = ACTIONS(6289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnameCref] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHlabelcref] = ACTIONS(6289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCrefrange] = ACTIONS(6289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnewlabel] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHdef] = ACTIONS(6289), - [anon_sym_BSLASHlet] = ACTIONS(6289), - [anon_sym_BSLASHleft] = ACTIONS(6289), - [anon_sym_BSLASHbig] = ACTIONS(6289), - [anon_sym_BSLASHBig] = ACTIONS(6289), - [anon_sym_BSLASHbigg] = ACTIONS(6289), - [anon_sym_BSLASHBigg] = ACTIONS(6289), - [anon_sym_BSLASHbigl] = ACTIONS(6289), - [anon_sym_BSLASHBigl] = ACTIONS(6289), - [anon_sym_BSLASHbiggl] = ACTIONS(6289), - [anon_sym_BSLASHBiggl] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), - [anon_sym_BSLASHgls] = ACTIONS(6289), - [anon_sym_BSLASHGls] = ACTIONS(6289), - [anon_sym_BSLASHGLS] = ACTIONS(6289), - [anon_sym_BSLASHglspl] = ACTIONS(6289), - [anon_sym_BSLASHGlspl] = ACTIONS(6289), - [anon_sym_BSLASHGLSpl] = ACTIONS(6289), - [anon_sym_BSLASHglsdisp] = ACTIONS(6289), - [anon_sym_BSLASHglslink] = ACTIONS(6289), - [anon_sym_BSLASHglstext] = ACTIONS(6289), - [anon_sym_BSLASHGlstext] = ACTIONS(6289), - [anon_sym_BSLASHGLStext] = ACTIONS(6289), - [anon_sym_BSLASHglsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), - [anon_sym_BSLASHglsplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSplural] = ACTIONS(6289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHglsname] = ACTIONS(6289), - [anon_sym_BSLASHGlsname] = ACTIONS(6289), - [anon_sym_BSLASHGLSname] = ACTIONS(6289), - [anon_sym_BSLASHglssymbol] = ACTIONS(6289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), - [anon_sym_BSLASHglsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), - [anon_sym_BSLASHglsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), - [anon_sym_BSLASHglsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), - [anon_sym_BSLASHglsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), - [anon_sym_BSLASHglsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), - [anon_sym_BSLASHnewacronym] = ACTIONS(6289), - [anon_sym_BSLASHacrshort] = ACTIONS(6289), - [anon_sym_BSLASHAcrshort] = ACTIONS(6289), - [anon_sym_BSLASHACRshort] = ACTIONS(6289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), - [anon_sym_BSLASHacrlong] = ACTIONS(6289), - [anon_sym_BSLASHAcrlong] = ACTIONS(6289), - [anon_sym_BSLASHACRlong] = ACTIONS(6289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), - [anon_sym_BSLASHacrfull] = ACTIONS(6289), - [anon_sym_BSLASHAcrfull] = ACTIONS(6289), - [anon_sym_BSLASHACRfull] = ACTIONS(6289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), - [anon_sym_BSLASHacs] = ACTIONS(6289), - [anon_sym_BSLASHAcs] = ACTIONS(6289), - [anon_sym_BSLASHacsp] = ACTIONS(6289), - [anon_sym_BSLASHAcsp] = ACTIONS(6289), - [anon_sym_BSLASHacl] = ACTIONS(6289), - [anon_sym_BSLASHAcl] = ACTIONS(6289), - [anon_sym_BSLASHaclp] = ACTIONS(6289), - [anon_sym_BSLASHAclp] = ACTIONS(6289), - [anon_sym_BSLASHacf] = ACTIONS(6289), - [anon_sym_BSLASHAcf] = ACTIONS(6289), - [anon_sym_BSLASHacfp] = ACTIONS(6289), - [anon_sym_BSLASHAcfp] = ACTIONS(6289), - [anon_sym_BSLASHac] = ACTIONS(6289), - [anon_sym_BSLASHAc] = ACTIONS(6289), - [anon_sym_BSLASHacp] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), - [anon_sym_BSLASHcolor] = ACTIONS(6289), - [anon_sym_BSLASHcolorbox] = ACTIONS(6289), - [anon_sym_BSLASHtextcolor] = ACTIONS(6289), - [anon_sym_BSLASHpagecolor] = ACTIONS(6289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), - [anon_sym_BSLASHtext] = ACTIONS(6289), - [anon_sym_BSLASHintertext] = ACTIONS(6289), - [anon_sym_shortintertext] = ACTIONS(6289), - }, - [1367] = { - [sym_command_name] = ACTIONS(6273), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6273), - [anon_sym_LBRACK] = ACTIONS(6275), - [anon_sym_RBRACK] = ACTIONS(6275), - [anon_sym_COMMA] = ACTIONS(6275), - [anon_sym_EQ] = ACTIONS(6275), - [anon_sym_LPAREN] = ACTIONS(6275), - [anon_sym_RPAREN] = ACTIONS(6275), - [anon_sym_BSLASHpart] = ACTIONS(6273), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddpart] = ACTIONS(6273), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6275), - [anon_sym_BSLASHchapter] = ACTIONS(6273), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddchap] = ACTIONS(6273), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsection] = ACTIONS(6273), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHaddsec] = ACTIONS(6273), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubsection] = ACTIONS(6273), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6273), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6275), - [anon_sym_BSLASHparagraph] = ACTIONS(6273), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6275), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6273), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6275), - [anon_sym_BSLASHitem] = ACTIONS(6273), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6275), - [anon_sym_LBRACE] = ACTIONS(6275), - [sym_word] = ACTIONS(6273), - [sym_placeholder] = ACTIONS(6275), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_SQUOTE] = ACTIONS(6273), - [anon_sym__] = ACTIONS(6275), - [anon_sym_CARET] = ACTIONS(6275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6275), - [anon_sym_DOLLAR] = ACTIONS(6273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6275), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6275), - [anon_sym_BSLASHbegin] = ACTIONS(6273), - [anon_sym_BSLASHtitle] = ACTIONS(6273), - [anon_sym_BSLASHauthor] = ACTIONS(6273), - [anon_sym_BSLASHusepackage] = ACTIONS(6273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6273), - [anon_sym_BSLASHinclude] = ACTIONS(6273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6273), - [anon_sym_BSLASHinput] = ACTIONS(6273), - [anon_sym_BSLASHsubfile] = ACTIONS(6273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6273), - [anon_sym_BSLASHbibliography] = ACTIONS(6273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6273), - [anon_sym_BSLASHincludesvg] = ACTIONS(6273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6273), - [anon_sym_BSLASHimport] = ACTIONS(6273), - [anon_sym_BSLASHsubimport] = ACTIONS(6273), - [anon_sym_BSLASHinputfrom] = ACTIONS(6273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6273), - [anon_sym_BSLASHincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHcaption] = ACTIONS(6273), - [anon_sym_BSLASHcite] = ACTIONS(6273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCite] = ACTIONS(6273), - [anon_sym_BSLASHnocite] = ACTIONS(6273), - [anon_sym_BSLASHcitet] = ACTIONS(6273), - [anon_sym_BSLASHcitep] = ACTIONS(6273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteauthor] = ACTIONS(6273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitetitle] = ACTIONS(6273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteyear] = ACTIONS(6273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitedate] = ACTIONS(6273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteurl] = ACTIONS(6273), - [anon_sym_BSLASHfullcite] = ACTIONS(6273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6273), - [anon_sym_BSLASHcitealt] = ACTIONS(6273), - [anon_sym_BSLASHcitealp] = ACTIONS(6273), - [anon_sym_BSLASHcitetext] = ACTIONS(6273), - [anon_sym_BSLASHparencite] = ACTIONS(6273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHParencite] = ACTIONS(6273), - [anon_sym_BSLASHfootcite] = ACTIONS(6273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6273), - [anon_sym_BSLASHtextcite] = ACTIONS(6273), - [anon_sym_BSLASHTextcite] = ACTIONS(6273), - [anon_sym_BSLASHsmartcite] = ACTIONS(6273), - [anon_sym_BSLASHSmartcite] = ACTIONS(6273), - [anon_sym_BSLASHsupercite] = ACTIONS(6273), - [anon_sym_BSLASHautocite] = ACTIONS(6273), - [anon_sym_BSLASHAutocite] = ACTIONS(6273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHvolcite] = ACTIONS(6273), - [anon_sym_BSLASHVolcite] = ACTIONS(6273), - [anon_sym_BSLASHpvolcite] = ACTIONS(6273), - [anon_sym_BSLASHPvolcite] = ACTIONS(6273), - [anon_sym_BSLASHfvolcite] = ACTIONS(6273), - [anon_sym_BSLASHftvolcite] = ACTIONS(6273), - [anon_sym_BSLASHsvolcite] = ACTIONS(6273), - [anon_sym_BSLASHSvolcite] = ACTIONS(6273), - [anon_sym_BSLASHtvolcite] = ACTIONS(6273), - [anon_sym_BSLASHTvolcite] = ACTIONS(6273), - [anon_sym_BSLASHavolcite] = ACTIONS(6273), - [anon_sym_BSLASHAvolcite] = ACTIONS(6273), - [anon_sym_BSLASHnotecite] = ACTIONS(6273), - [anon_sym_BSLASHNotecite] = ACTIONS(6273), - [anon_sym_BSLASHpnotecite] = ACTIONS(6273), - [anon_sym_BSLASHPnotecite] = ACTIONS(6273), - [anon_sym_BSLASHfnotecite] = ACTIONS(6273), - [anon_sym_BSLASHlabel] = ACTIONS(6273), - [anon_sym_BSLASHref] = ACTIONS(6273), - [anon_sym_BSLASHeqref] = ACTIONS(6273), - [anon_sym_BSLASHvref] = ACTIONS(6273), - [anon_sym_BSLASHVref] = ACTIONS(6273), - [anon_sym_BSLASHautoref] = ACTIONS(6273), - [anon_sym_BSLASHpageref] = ACTIONS(6273), - [anon_sym_BSLASHcref] = ACTIONS(6273), - [anon_sym_BSLASHCref] = ACTIONS(6273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnameCref] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHlabelcref] = ACTIONS(6273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCrefrange] = ACTIONS(6273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnewlabel] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6275), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHdef] = ACTIONS(6273), - [anon_sym_BSLASHlet] = ACTIONS(6273), - [anon_sym_BSLASHleft] = ACTIONS(6273), - [anon_sym_BSLASHbig] = ACTIONS(6273), - [anon_sym_BSLASHBig] = ACTIONS(6273), - [anon_sym_BSLASHbigg] = ACTIONS(6273), - [anon_sym_BSLASHBigg] = ACTIONS(6273), - [anon_sym_BSLASHbigl] = ACTIONS(6273), - [anon_sym_BSLASHBigl] = ACTIONS(6273), - [anon_sym_BSLASHbiggl] = ACTIONS(6273), - [anon_sym_BSLASHBiggl] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6273), - [anon_sym_BSLASHgls] = ACTIONS(6273), - [anon_sym_BSLASHGls] = ACTIONS(6273), - [anon_sym_BSLASHGLS] = ACTIONS(6273), - [anon_sym_BSLASHglspl] = ACTIONS(6273), - [anon_sym_BSLASHGlspl] = ACTIONS(6273), - [anon_sym_BSLASHGLSpl] = ACTIONS(6273), - [anon_sym_BSLASHglsdisp] = ACTIONS(6273), - [anon_sym_BSLASHglslink] = ACTIONS(6273), - [anon_sym_BSLASHglstext] = ACTIONS(6273), - [anon_sym_BSLASHGlstext] = ACTIONS(6273), - [anon_sym_BSLASHGLStext] = ACTIONS(6273), - [anon_sym_BSLASHglsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6273), - [anon_sym_BSLASHglsplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSplural] = ACTIONS(6273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHglsname] = ACTIONS(6273), - [anon_sym_BSLASHGlsname] = ACTIONS(6273), - [anon_sym_BSLASHGLSname] = ACTIONS(6273), - [anon_sym_BSLASHglssymbol] = ACTIONS(6273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6273), - [anon_sym_BSLASHglsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6273), - [anon_sym_BSLASHglsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6273), - [anon_sym_BSLASHglsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6273), - [anon_sym_BSLASHglsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6273), - [anon_sym_BSLASHglsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6273), - [anon_sym_BSLASHnewacronym] = ACTIONS(6273), - [anon_sym_BSLASHacrshort] = ACTIONS(6273), - [anon_sym_BSLASHAcrshort] = ACTIONS(6273), - [anon_sym_BSLASHACRshort] = ACTIONS(6273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6273), - [anon_sym_BSLASHacrlong] = ACTIONS(6273), - [anon_sym_BSLASHAcrlong] = ACTIONS(6273), - [anon_sym_BSLASHACRlong] = ACTIONS(6273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6273), - [anon_sym_BSLASHacrfull] = ACTIONS(6273), - [anon_sym_BSLASHAcrfull] = ACTIONS(6273), - [anon_sym_BSLASHACRfull] = ACTIONS(6273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6273), - [anon_sym_BSLASHacs] = ACTIONS(6273), - [anon_sym_BSLASHAcs] = ACTIONS(6273), - [anon_sym_BSLASHacsp] = ACTIONS(6273), - [anon_sym_BSLASHAcsp] = ACTIONS(6273), - [anon_sym_BSLASHacl] = ACTIONS(6273), - [anon_sym_BSLASHAcl] = ACTIONS(6273), - [anon_sym_BSLASHaclp] = ACTIONS(6273), - [anon_sym_BSLASHAclp] = ACTIONS(6273), - [anon_sym_BSLASHacf] = ACTIONS(6273), - [anon_sym_BSLASHAcf] = ACTIONS(6273), - [anon_sym_BSLASHacfp] = ACTIONS(6273), - [anon_sym_BSLASHAcfp] = ACTIONS(6273), - [anon_sym_BSLASHac] = ACTIONS(6273), - [anon_sym_BSLASHAc] = ACTIONS(6273), - [anon_sym_BSLASHacp] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6273), - [anon_sym_BSLASHcolor] = ACTIONS(6273), - [anon_sym_BSLASHcolorbox] = ACTIONS(6273), - [anon_sym_BSLASHtextcolor] = ACTIONS(6273), - [anon_sym_BSLASHpagecolor] = ACTIONS(6273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6273), - [anon_sym_BSLASHtext] = ACTIONS(6273), - [anon_sym_BSLASHintertext] = ACTIONS(6273), - [anon_sym_shortintertext] = ACTIONS(6273), - }, - [1368] = { - [sym_command_name] = ACTIONS(6153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6153), - [anon_sym_LBRACK] = ACTIONS(6155), - [anon_sym_RBRACK] = ACTIONS(6155), - [anon_sym_COMMA] = ACTIONS(6155), - [anon_sym_EQ] = ACTIONS(6155), - [anon_sym_LPAREN] = ACTIONS(6155), - [anon_sym_RPAREN] = ACTIONS(6155), - [anon_sym_BSLASHpart] = ACTIONS(6153), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddpart] = ACTIONS(6153), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6155), - [anon_sym_BSLASHchapter] = ACTIONS(6153), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddchap] = ACTIONS(6153), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsection] = ACTIONS(6153), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHaddsec] = ACTIONS(6153), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubsection] = ACTIONS(6153), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6153), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6155), - [anon_sym_BSLASHparagraph] = ACTIONS(6153), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6155), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6153), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6155), - [anon_sym_BSLASHitem] = ACTIONS(6153), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6155), - [anon_sym_LBRACE] = ACTIONS(6155), - [sym_word] = ACTIONS(6153), - [sym_placeholder] = ACTIONS(6155), - [anon_sym_PLUS] = ACTIONS(6155), - [anon_sym_DASH] = ACTIONS(6155), - [anon_sym_STAR] = ACTIONS(6155), - [anon_sym_SLASH] = ACTIONS(6155), - [anon_sym_LT] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6153), - [anon_sym_BANG] = ACTIONS(6153), - [anon_sym_PIPE] = ACTIONS(6153), - [anon_sym_COLON] = ACTIONS(6153), - [anon_sym_SQUOTE] = ACTIONS(6153), - [anon_sym__] = ACTIONS(6155), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6155), - [anon_sym_DOLLAR] = ACTIONS(6153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6155), - [anon_sym_BSLASHbegin] = ACTIONS(6153), - [anon_sym_BSLASHend] = ACTIONS(6153), - [anon_sym_BSLASHtitle] = ACTIONS(6153), - [anon_sym_BSLASHauthor] = ACTIONS(6153), - [anon_sym_BSLASHusepackage] = ACTIONS(6153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6153), - [anon_sym_BSLASHinclude] = ACTIONS(6153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6153), - [anon_sym_BSLASHinput] = ACTIONS(6153), - [anon_sym_BSLASHsubfile] = ACTIONS(6153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6153), - [anon_sym_BSLASHbibliography] = ACTIONS(6153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6153), - [anon_sym_BSLASHincludesvg] = ACTIONS(6153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6153), - [anon_sym_BSLASHimport] = ACTIONS(6153), - [anon_sym_BSLASHsubimport] = ACTIONS(6153), - [anon_sym_BSLASHinputfrom] = ACTIONS(6153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6153), - [anon_sym_BSLASHincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHcaption] = ACTIONS(6153), - [anon_sym_BSLASHcite] = ACTIONS(6153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCite] = ACTIONS(6153), - [anon_sym_BSLASHnocite] = ACTIONS(6153), - [anon_sym_BSLASHcitet] = ACTIONS(6153), - [anon_sym_BSLASHcitep] = ACTIONS(6153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteauthor] = ACTIONS(6153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitetitle] = ACTIONS(6153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteyear] = ACTIONS(6153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitedate] = ACTIONS(6153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteurl] = ACTIONS(6153), - [anon_sym_BSLASHfullcite] = ACTIONS(6153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6153), - [anon_sym_BSLASHcitealt] = ACTIONS(6153), - [anon_sym_BSLASHcitealp] = ACTIONS(6153), - [anon_sym_BSLASHcitetext] = ACTIONS(6153), - [anon_sym_BSLASHparencite] = ACTIONS(6153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHParencite] = ACTIONS(6153), - [anon_sym_BSLASHfootcite] = ACTIONS(6153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6153), - [anon_sym_BSLASHtextcite] = ACTIONS(6153), - [anon_sym_BSLASHTextcite] = ACTIONS(6153), - [anon_sym_BSLASHsmartcite] = ACTIONS(6153), - [anon_sym_BSLASHSmartcite] = ACTIONS(6153), - [anon_sym_BSLASHsupercite] = ACTIONS(6153), - [anon_sym_BSLASHautocite] = ACTIONS(6153), - [anon_sym_BSLASHAutocite] = ACTIONS(6153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHvolcite] = ACTIONS(6153), - [anon_sym_BSLASHVolcite] = ACTIONS(6153), - [anon_sym_BSLASHpvolcite] = ACTIONS(6153), - [anon_sym_BSLASHPvolcite] = ACTIONS(6153), - [anon_sym_BSLASHfvolcite] = ACTIONS(6153), - [anon_sym_BSLASHftvolcite] = ACTIONS(6153), - [anon_sym_BSLASHsvolcite] = ACTIONS(6153), - [anon_sym_BSLASHSvolcite] = ACTIONS(6153), - [anon_sym_BSLASHtvolcite] = ACTIONS(6153), - [anon_sym_BSLASHTvolcite] = ACTIONS(6153), - [anon_sym_BSLASHavolcite] = ACTIONS(6153), - [anon_sym_BSLASHAvolcite] = ACTIONS(6153), - [anon_sym_BSLASHnotecite] = ACTIONS(6153), - [anon_sym_BSLASHNotecite] = ACTIONS(6153), - [anon_sym_BSLASHpnotecite] = ACTIONS(6153), - [anon_sym_BSLASHPnotecite] = ACTIONS(6153), - [anon_sym_BSLASHfnotecite] = ACTIONS(6153), - [anon_sym_BSLASHlabel] = ACTIONS(6153), - [anon_sym_BSLASHref] = ACTIONS(6153), - [anon_sym_BSLASHeqref] = ACTIONS(6153), - [anon_sym_BSLASHvref] = ACTIONS(6153), - [anon_sym_BSLASHVref] = ACTIONS(6153), - [anon_sym_BSLASHautoref] = ACTIONS(6153), - [anon_sym_BSLASHpageref] = ACTIONS(6153), - [anon_sym_BSLASHcref] = ACTIONS(6153), - [anon_sym_BSLASHCref] = ACTIONS(6153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnameCref] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHlabelcref] = ACTIONS(6153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCrefrange] = ACTIONS(6153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnewlabel] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6155), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHdef] = ACTIONS(6153), - [anon_sym_BSLASHlet] = ACTIONS(6153), - [anon_sym_BSLASHleft] = ACTIONS(6153), - [anon_sym_BSLASHbig] = ACTIONS(6153), - [anon_sym_BSLASHBig] = ACTIONS(6153), - [anon_sym_BSLASHbigg] = ACTIONS(6153), - [anon_sym_BSLASHBigg] = ACTIONS(6153), - [anon_sym_BSLASHbigl] = ACTIONS(6153), - [anon_sym_BSLASHBigl] = ACTIONS(6153), - [anon_sym_BSLASHbiggl] = ACTIONS(6153), - [anon_sym_BSLASHBiggl] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6153), - [anon_sym_BSLASHgls] = ACTIONS(6153), - [anon_sym_BSLASHGls] = ACTIONS(6153), - [anon_sym_BSLASHGLS] = ACTIONS(6153), - [anon_sym_BSLASHglspl] = ACTIONS(6153), - [anon_sym_BSLASHGlspl] = ACTIONS(6153), - [anon_sym_BSLASHGLSpl] = ACTIONS(6153), - [anon_sym_BSLASHglsdisp] = ACTIONS(6153), - [anon_sym_BSLASHglslink] = ACTIONS(6153), - [anon_sym_BSLASHglstext] = ACTIONS(6153), - [anon_sym_BSLASHGlstext] = ACTIONS(6153), - [anon_sym_BSLASHGLStext] = ACTIONS(6153), - [anon_sym_BSLASHglsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6153), - [anon_sym_BSLASHglsplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSplural] = ACTIONS(6153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHglsname] = ACTIONS(6153), - [anon_sym_BSLASHGlsname] = ACTIONS(6153), - [anon_sym_BSLASHGLSname] = ACTIONS(6153), - [anon_sym_BSLASHglssymbol] = ACTIONS(6153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6153), - [anon_sym_BSLASHglsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6153), - [anon_sym_BSLASHglsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6153), - [anon_sym_BSLASHglsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6153), - [anon_sym_BSLASHglsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6153), - [anon_sym_BSLASHglsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6153), - [anon_sym_BSLASHnewacronym] = ACTIONS(6153), - [anon_sym_BSLASHacrshort] = ACTIONS(6153), - [anon_sym_BSLASHAcrshort] = ACTIONS(6153), - [anon_sym_BSLASHACRshort] = ACTIONS(6153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6153), - [anon_sym_BSLASHacrlong] = ACTIONS(6153), - [anon_sym_BSLASHAcrlong] = ACTIONS(6153), - [anon_sym_BSLASHACRlong] = ACTIONS(6153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6153), - [anon_sym_BSLASHacrfull] = ACTIONS(6153), - [anon_sym_BSLASHAcrfull] = ACTIONS(6153), - [anon_sym_BSLASHACRfull] = ACTIONS(6153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6153), - [anon_sym_BSLASHacs] = ACTIONS(6153), - [anon_sym_BSLASHAcs] = ACTIONS(6153), - [anon_sym_BSLASHacsp] = ACTIONS(6153), - [anon_sym_BSLASHAcsp] = ACTIONS(6153), - [anon_sym_BSLASHacl] = ACTIONS(6153), - [anon_sym_BSLASHAcl] = ACTIONS(6153), - [anon_sym_BSLASHaclp] = ACTIONS(6153), - [anon_sym_BSLASHAclp] = ACTIONS(6153), - [anon_sym_BSLASHacf] = ACTIONS(6153), - [anon_sym_BSLASHAcf] = ACTIONS(6153), - [anon_sym_BSLASHacfp] = ACTIONS(6153), - [anon_sym_BSLASHAcfp] = ACTIONS(6153), - [anon_sym_BSLASHac] = ACTIONS(6153), - [anon_sym_BSLASHAc] = ACTIONS(6153), - [anon_sym_BSLASHacp] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6153), - [anon_sym_BSLASHcolor] = ACTIONS(6153), - [anon_sym_BSLASHcolorbox] = ACTIONS(6153), - [anon_sym_BSLASHtextcolor] = ACTIONS(6153), - [anon_sym_BSLASHpagecolor] = ACTIONS(6153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6153), - [anon_sym_BSLASHtext] = ACTIONS(6153), - [anon_sym_BSLASHintertext] = ACTIONS(6153), - [anon_sym_shortintertext] = ACTIONS(6153), - }, - [1369] = { - [sym_command_name] = ACTIONS(6149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6149), - [anon_sym_LBRACK] = ACTIONS(6151), - [anon_sym_RBRACK] = ACTIONS(6151), - [anon_sym_COMMA] = ACTIONS(6151), - [anon_sym_EQ] = ACTIONS(6151), - [anon_sym_LPAREN] = ACTIONS(6151), - [anon_sym_RPAREN] = ACTIONS(6151), - [anon_sym_BSLASHpart] = ACTIONS(6149), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddpart] = ACTIONS(6149), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6151), - [anon_sym_BSLASHchapter] = ACTIONS(6149), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddchap] = ACTIONS(6149), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsection] = ACTIONS(6149), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHaddsec] = ACTIONS(6149), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubsection] = ACTIONS(6149), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6149), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6151), - [anon_sym_BSLASHparagraph] = ACTIONS(6149), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6151), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6149), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6151), - [anon_sym_BSLASHitem] = ACTIONS(6149), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6151), - [anon_sym_LBRACE] = ACTIONS(6151), - [sym_word] = ACTIONS(6149), - [sym_placeholder] = ACTIONS(6151), - [anon_sym_PLUS] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6151), - [anon_sym_STAR] = ACTIONS(6151), - [anon_sym_SLASH] = ACTIONS(6151), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_BANG] = ACTIONS(6149), - [anon_sym_PIPE] = ACTIONS(6149), - [anon_sym_COLON] = ACTIONS(6149), - [anon_sym_SQUOTE] = ACTIONS(6149), - [anon_sym__] = ACTIONS(6151), - [anon_sym_CARET] = ACTIONS(6151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6151), - [anon_sym_DOLLAR] = ACTIONS(6149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6151), - [anon_sym_BSLASHbegin] = ACTIONS(6149), - [anon_sym_BSLASHend] = ACTIONS(6149), - [anon_sym_BSLASHtitle] = ACTIONS(6149), - [anon_sym_BSLASHauthor] = ACTIONS(6149), - [anon_sym_BSLASHusepackage] = ACTIONS(6149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6149), - [anon_sym_BSLASHinclude] = ACTIONS(6149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6149), - [anon_sym_BSLASHinput] = ACTIONS(6149), - [anon_sym_BSLASHsubfile] = ACTIONS(6149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6149), - [anon_sym_BSLASHbibliography] = ACTIONS(6149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6149), - [anon_sym_BSLASHincludesvg] = ACTIONS(6149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6149), - [anon_sym_BSLASHimport] = ACTIONS(6149), - [anon_sym_BSLASHsubimport] = ACTIONS(6149), - [anon_sym_BSLASHinputfrom] = ACTIONS(6149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6149), - [anon_sym_BSLASHincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHcaption] = ACTIONS(6149), - [anon_sym_BSLASHcite] = ACTIONS(6149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCite] = ACTIONS(6149), - [anon_sym_BSLASHnocite] = ACTIONS(6149), - [anon_sym_BSLASHcitet] = ACTIONS(6149), - [anon_sym_BSLASHcitep] = ACTIONS(6149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteauthor] = ACTIONS(6149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitetitle] = ACTIONS(6149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteyear] = ACTIONS(6149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitedate] = ACTIONS(6149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteurl] = ACTIONS(6149), - [anon_sym_BSLASHfullcite] = ACTIONS(6149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6149), - [anon_sym_BSLASHcitealt] = ACTIONS(6149), - [anon_sym_BSLASHcitealp] = ACTIONS(6149), - [anon_sym_BSLASHcitetext] = ACTIONS(6149), - [anon_sym_BSLASHparencite] = ACTIONS(6149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHParencite] = ACTIONS(6149), - [anon_sym_BSLASHfootcite] = ACTIONS(6149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6149), - [anon_sym_BSLASHtextcite] = ACTIONS(6149), - [anon_sym_BSLASHTextcite] = ACTIONS(6149), - [anon_sym_BSLASHsmartcite] = ACTIONS(6149), - [anon_sym_BSLASHSmartcite] = ACTIONS(6149), - [anon_sym_BSLASHsupercite] = ACTIONS(6149), - [anon_sym_BSLASHautocite] = ACTIONS(6149), - [anon_sym_BSLASHAutocite] = ACTIONS(6149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHvolcite] = ACTIONS(6149), - [anon_sym_BSLASHVolcite] = ACTIONS(6149), - [anon_sym_BSLASHpvolcite] = ACTIONS(6149), - [anon_sym_BSLASHPvolcite] = ACTIONS(6149), - [anon_sym_BSLASHfvolcite] = ACTIONS(6149), - [anon_sym_BSLASHftvolcite] = ACTIONS(6149), - [anon_sym_BSLASHsvolcite] = ACTIONS(6149), - [anon_sym_BSLASHSvolcite] = ACTIONS(6149), - [anon_sym_BSLASHtvolcite] = ACTIONS(6149), - [anon_sym_BSLASHTvolcite] = ACTIONS(6149), - [anon_sym_BSLASHavolcite] = ACTIONS(6149), - [anon_sym_BSLASHAvolcite] = ACTIONS(6149), - [anon_sym_BSLASHnotecite] = ACTIONS(6149), - [anon_sym_BSLASHNotecite] = ACTIONS(6149), - [anon_sym_BSLASHpnotecite] = ACTIONS(6149), - [anon_sym_BSLASHPnotecite] = ACTIONS(6149), - [anon_sym_BSLASHfnotecite] = ACTIONS(6149), - [anon_sym_BSLASHlabel] = ACTIONS(6149), - [anon_sym_BSLASHref] = ACTIONS(6149), - [anon_sym_BSLASHeqref] = ACTIONS(6149), - [anon_sym_BSLASHvref] = ACTIONS(6149), - [anon_sym_BSLASHVref] = ACTIONS(6149), - [anon_sym_BSLASHautoref] = ACTIONS(6149), - [anon_sym_BSLASHpageref] = ACTIONS(6149), - [anon_sym_BSLASHcref] = ACTIONS(6149), - [anon_sym_BSLASHCref] = ACTIONS(6149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnameCref] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHlabelcref] = ACTIONS(6149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCrefrange] = ACTIONS(6149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnewlabel] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6151), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHdef] = ACTIONS(6149), - [anon_sym_BSLASHlet] = ACTIONS(6149), - [anon_sym_BSLASHleft] = ACTIONS(6149), - [anon_sym_BSLASHbig] = ACTIONS(6149), - [anon_sym_BSLASHBig] = ACTIONS(6149), - [anon_sym_BSLASHbigg] = ACTIONS(6149), - [anon_sym_BSLASHBigg] = ACTIONS(6149), - [anon_sym_BSLASHbigl] = ACTIONS(6149), - [anon_sym_BSLASHBigl] = ACTIONS(6149), - [anon_sym_BSLASHbiggl] = ACTIONS(6149), - [anon_sym_BSLASHBiggl] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6149), - [anon_sym_BSLASHgls] = ACTIONS(6149), - [anon_sym_BSLASHGls] = ACTIONS(6149), - [anon_sym_BSLASHGLS] = ACTIONS(6149), - [anon_sym_BSLASHglspl] = ACTIONS(6149), - [anon_sym_BSLASHGlspl] = ACTIONS(6149), - [anon_sym_BSLASHGLSpl] = ACTIONS(6149), - [anon_sym_BSLASHglsdisp] = ACTIONS(6149), - [anon_sym_BSLASHglslink] = ACTIONS(6149), - [anon_sym_BSLASHglstext] = ACTIONS(6149), - [anon_sym_BSLASHGlstext] = ACTIONS(6149), - [anon_sym_BSLASHGLStext] = ACTIONS(6149), - [anon_sym_BSLASHglsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6149), - [anon_sym_BSLASHglsplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSplural] = ACTIONS(6149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHglsname] = ACTIONS(6149), - [anon_sym_BSLASHGlsname] = ACTIONS(6149), - [anon_sym_BSLASHGLSname] = ACTIONS(6149), - [anon_sym_BSLASHglssymbol] = ACTIONS(6149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6149), - [anon_sym_BSLASHglsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6149), - [anon_sym_BSLASHglsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6149), - [anon_sym_BSLASHglsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6149), - [anon_sym_BSLASHglsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6149), - [anon_sym_BSLASHglsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6149), - [anon_sym_BSLASHnewacronym] = ACTIONS(6149), - [anon_sym_BSLASHacrshort] = ACTIONS(6149), - [anon_sym_BSLASHAcrshort] = ACTIONS(6149), - [anon_sym_BSLASHACRshort] = ACTIONS(6149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6149), - [anon_sym_BSLASHacrlong] = ACTIONS(6149), - [anon_sym_BSLASHAcrlong] = ACTIONS(6149), - [anon_sym_BSLASHACRlong] = ACTIONS(6149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6149), - [anon_sym_BSLASHacrfull] = ACTIONS(6149), - [anon_sym_BSLASHAcrfull] = ACTIONS(6149), - [anon_sym_BSLASHACRfull] = ACTIONS(6149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6149), - [anon_sym_BSLASHacs] = ACTIONS(6149), - [anon_sym_BSLASHAcs] = ACTIONS(6149), - [anon_sym_BSLASHacsp] = ACTIONS(6149), - [anon_sym_BSLASHAcsp] = ACTIONS(6149), - [anon_sym_BSLASHacl] = ACTIONS(6149), - [anon_sym_BSLASHAcl] = ACTIONS(6149), - [anon_sym_BSLASHaclp] = ACTIONS(6149), - [anon_sym_BSLASHAclp] = ACTIONS(6149), - [anon_sym_BSLASHacf] = ACTIONS(6149), - [anon_sym_BSLASHAcf] = ACTIONS(6149), - [anon_sym_BSLASHacfp] = ACTIONS(6149), - [anon_sym_BSLASHAcfp] = ACTIONS(6149), - [anon_sym_BSLASHac] = ACTIONS(6149), - [anon_sym_BSLASHAc] = ACTIONS(6149), - [anon_sym_BSLASHacp] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6149), - [anon_sym_BSLASHcolor] = ACTIONS(6149), - [anon_sym_BSLASHcolorbox] = ACTIONS(6149), - [anon_sym_BSLASHtextcolor] = ACTIONS(6149), - [anon_sym_BSLASHpagecolor] = ACTIONS(6149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6149), - [anon_sym_BSLASHtext] = ACTIONS(6149), - [anon_sym_BSLASHintertext] = ACTIONS(6149), - [anon_sym_shortintertext] = ACTIONS(6149), - }, - [1370] = { - [sym_command_name] = ACTIONS(6145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6145), - [anon_sym_LBRACK] = ACTIONS(6147), - [anon_sym_RBRACK] = ACTIONS(6147), - [anon_sym_COMMA] = ACTIONS(6147), - [anon_sym_EQ] = ACTIONS(6147), - [anon_sym_LPAREN] = ACTIONS(6147), - [anon_sym_RPAREN] = ACTIONS(6147), - [anon_sym_BSLASHpart] = ACTIONS(6145), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddpart] = ACTIONS(6145), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6147), - [anon_sym_BSLASHchapter] = ACTIONS(6145), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddchap] = ACTIONS(6145), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsection] = ACTIONS(6145), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHaddsec] = ACTIONS(6145), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubsection] = ACTIONS(6145), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6145), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6147), - [anon_sym_BSLASHparagraph] = ACTIONS(6145), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6147), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6145), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6147), - [anon_sym_BSLASHitem] = ACTIONS(6145), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6147), - [anon_sym_LBRACE] = ACTIONS(6147), - [sym_word] = ACTIONS(6145), - [sym_placeholder] = ACTIONS(6147), - [anon_sym_PLUS] = ACTIONS(6147), - [anon_sym_DASH] = ACTIONS(6147), - [anon_sym_STAR] = ACTIONS(6147), - [anon_sym_SLASH] = ACTIONS(6147), - [anon_sym_LT] = ACTIONS(6145), - [anon_sym_GT] = ACTIONS(6145), - [anon_sym_BANG] = ACTIONS(6145), - [anon_sym_PIPE] = ACTIONS(6145), - [anon_sym_COLON] = ACTIONS(6145), - [anon_sym_SQUOTE] = ACTIONS(6145), - [anon_sym__] = ACTIONS(6147), - [anon_sym_CARET] = ACTIONS(6147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6147), - [anon_sym_DOLLAR] = ACTIONS(6145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6147), - [anon_sym_BSLASHbegin] = ACTIONS(6145), - [anon_sym_BSLASHend] = ACTIONS(6145), - [anon_sym_BSLASHtitle] = ACTIONS(6145), - [anon_sym_BSLASHauthor] = ACTIONS(6145), - [anon_sym_BSLASHusepackage] = ACTIONS(6145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6145), - [anon_sym_BSLASHinclude] = ACTIONS(6145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6145), - [anon_sym_BSLASHinput] = ACTIONS(6145), - [anon_sym_BSLASHsubfile] = ACTIONS(6145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6145), - [anon_sym_BSLASHbibliography] = ACTIONS(6145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6145), - [anon_sym_BSLASHincludesvg] = ACTIONS(6145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6145), - [anon_sym_BSLASHimport] = ACTIONS(6145), - [anon_sym_BSLASHsubimport] = ACTIONS(6145), - [anon_sym_BSLASHinputfrom] = ACTIONS(6145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6145), - [anon_sym_BSLASHincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHcaption] = ACTIONS(6145), - [anon_sym_BSLASHcite] = ACTIONS(6145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCite] = ACTIONS(6145), - [anon_sym_BSLASHnocite] = ACTIONS(6145), - [anon_sym_BSLASHcitet] = ACTIONS(6145), - [anon_sym_BSLASHcitep] = ACTIONS(6145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteauthor] = ACTIONS(6145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitetitle] = ACTIONS(6145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteyear] = ACTIONS(6145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitedate] = ACTIONS(6145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteurl] = ACTIONS(6145), - [anon_sym_BSLASHfullcite] = ACTIONS(6145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6145), - [anon_sym_BSLASHcitealt] = ACTIONS(6145), - [anon_sym_BSLASHcitealp] = ACTIONS(6145), - [anon_sym_BSLASHcitetext] = ACTIONS(6145), - [anon_sym_BSLASHparencite] = ACTIONS(6145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHParencite] = ACTIONS(6145), - [anon_sym_BSLASHfootcite] = ACTIONS(6145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6145), - [anon_sym_BSLASHtextcite] = ACTIONS(6145), - [anon_sym_BSLASHTextcite] = ACTIONS(6145), - [anon_sym_BSLASHsmartcite] = ACTIONS(6145), - [anon_sym_BSLASHSmartcite] = ACTIONS(6145), - [anon_sym_BSLASHsupercite] = ACTIONS(6145), - [anon_sym_BSLASHautocite] = ACTIONS(6145), - [anon_sym_BSLASHAutocite] = ACTIONS(6145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHvolcite] = ACTIONS(6145), - [anon_sym_BSLASHVolcite] = ACTIONS(6145), - [anon_sym_BSLASHpvolcite] = ACTIONS(6145), - [anon_sym_BSLASHPvolcite] = ACTIONS(6145), - [anon_sym_BSLASHfvolcite] = ACTIONS(6145), - [anon_sym_BSLASHftvolcite] = ACTIONS(6145), - [anon_sym_BSLASHsvolcite] = ACTIONS(6145), - [anon_sym_BSLASHSvolcite] = ACTIONS(6145), - [anon_sym_BSLASHtvolcite] = ACTIONS(6145), - [anon_sym_BSLASHTvolcite] = ACTIONS(6145), - [anon_sym_BSLASHavolcite] = ACTIONS(6145), - [anon_sym_BSLASHAvolcite] = ACTIONS(6145), - [anon_sym_BSLASHnotecite] = ACTIONS(6145), - [anon_sym_BSLASHNotecite] = ACTIONS(6145), - [anon_sym_BSLASHpnotecite] = ACTIONS(6145), - [anon_sym_BSLASHPnotecite] = ACTIONS(6145), - [anon_sym_BSLASHfnotecite] = ACTIONS(6145), - [anon_sym_BSLASHlabel] = ACTIONS(6145), - [anon_sym_BSLASHref] = ACTIONS(6145), - [anon_sym_BSLASHeqref] = ACTIONS(6145), - [anon_sym_BSLASHvref] = ACTIONS(6145), - [anon_sym_BSLASHVref] = ACTIONS(6145), - [anon_sym_BSLASHautoref] = ACTIONS(6145), - [anon_sym_BSLASHpageref] = ACTIONS(6145), - [anon_sym_BSLASHcref] = ACTIONS(6145), - [anon_sym_BSLASHCref] = ACTIONS(6145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnameCref] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHlabelcref] = ACTIONS(6145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCrefrange] = ACTIONS(6145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnewlabel] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6147), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHdef] = ACTIONS(6145), - [anon_sym_BSLASHlet] = ACTIONS(6145), - [anon_sym_BSLASHleft] = ACTIONS(6145), - [anon_sym_BSLASHbig] = ACTIONS(6145), - [anon_sym_BSLASHBig] = ACTIONS(6145), - [anon_sym_BSLASHbigg] = ACTIONS(6145), - [anon_sym_BSLASHBigg] = ACTIONS(6145), - [anon_sym_BSLASHbigl] = ACTIONS(6145), - [anon_sym_BSLASHBigl] = ACTIONS(6145), - [anon_sym_BSLASHbiggl] = ACTIONS(6145), - [anon_sym_BSLASHBiggl] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6145), - [anon_sym_BSLASHgls] = ACTIONS(6145), - [anon_sym_BSLASHGls] = ACTIONS(6145), - [anon_sym_BSLASHGLS] = ACTIONS(6145), - [anon_sym_BSLASHglspl] = ACTIONS(6145), - [anon_sym_BSLASHGlspl] = ACTIONS(6145), - [anon_sym_BSLASHGLSpl] = ACTIONS(6145), - [anon_sym_BSLASHglsdisp] = ACTIONS(6145), - [anon_sym_BSLASHglslink] = ACTIONS(6145), - [anon_sym_BSLASHglstext] = ACTIONS(6145), - [anon_sym_BSLASHGlstext] = ACTIONS(6145), - [anon_sym_BSLASHGLStext] = ACTIONS(6145), - [anon_sym_BSLASHglsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6145), - [anon_sym_BSLASHglsplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSplural] = ACTIONS(6145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHglsname] = ACTIONS(6145), - [anon_sym_BSLASHGlsname] = ACTIONS(6145), - [anon_sym_BSLASHGLSname] = ACTIONS(6145), - [anon_sym_BSLASHglssymbol] = ACTIONS(6145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6145), - [anon_sym_BSLASHglsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6145), - [anon_sym_BSLASHglsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6145), - [anon_sym_BSLASHglsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6145), - [anon_sym_BSLASHglsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6145), - [anon_sym_BSLASHglsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6145), - [anon_sym_BSLASHnewacronym] = ACTIONS(6145), - [anon_sym_BSLASHacrshort] = ACTIONS(6145), - [anon_sym_BSLASHAcrshort] = ACTIONS(6145), - [anon_sym_BSLASHACRshort] = ACTIONS(6145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6145), - [anon_sym_BSLASHacrlong] = ACTIONS(6145), - [anon_sym_BSLASHAcrlong] = ACTIONS(6145), - [anon_sym_BSLASHACRlong] = ACTIONS(6145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6145), - [anon_sym_BSLASHacrfull] = ACTIONS(6145), - [anon_sym_BSLASHAcrfull] = ACTIONS(6145), - [anon_sym_BSLASHACRfull] = ACTIONS(6145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6145), - [anon_sym_BSLASHacs] = ACTIONS(6145), - [anon_sym_BSLASHAcs] = ACTIONS(6145), - [anon_sym_BSLASHacsp] = ACTIONS(6145), - [anon_sym_BSLASHAcsp] = ACTIONS(6145), - [anon_sym_BSLASHacl] = ACTIONS(6145), - [anon_sym_BSLASHAcl] = ACTIONS(6145), - [anon_sym_BSLASHaclp] = ACTIONS(6145), - [anon_sym_BSLASHAclp] = ACTIONS(6145), - [anon_sym_BSLASHacf] = ACTIONS(6145), - [anon_sym_BSLASHAcf] = ACTIONS(6145), - [anon_sym_BSLASHacfp] = ACTIONS(6145), - [anon_sym_BSLASHAcfp] = ACTIONS(6145), - [anon_sym_BSLASHac] = ACTIONS(6145), - [anon_sym_BSLASHAc] = ACTIONS(6145), - [anon_sym_BSLASHacp] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6145), - [anon_sym_BSLASHcolor] = ACTIONS(6145), - [anon_sym_BSLASHcolorbox] = ACTIONS(6145), - [anon_sym_BSLASHtextcolor] = ACTIONS(6145), - [anon_sym_BSLASHpagecolor] = ACTIONS(6145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6145), - [anon_sym_BSLASHtext] = ACTIONS(6145), - [anon_sym_BSLASHintertext] = ACTIONS(6145), - [anon_sym_shortintertext] = ACTIONS(6145), - }, - [1371] = { - [sym_command_name] = ACTIONS(6029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6029), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_EQ] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_BSLASHpart] = ACTIONS(6029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddpart] = ACTIONS(6029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6031), - [anon_sym_BSLASHchapter] = ACTIONS(6029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddchap] = ACTIONS(6029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsection] = ACTIONS(6029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHaddsec] = ACTIONS(6029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubsection] = ACTIONS(6029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6031), - [anon_sym_BSLASHparagraph] = ACTIONS(6029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6031), - [anon_sym_BSLASHitem] = ACTIONS(6029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6031), - [anon_sym_LBRACE] = ACTIONS(6031), - [sym_word] = ACTIONS(6029), - [sym_placeholder] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6031), - [anon_sym_DASH] = ACTIONS(6031), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6029), - [anon_sym_GT] = ACTIONS(6029), - [anon_sym_BANG] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_COLON] = ACTIONS(6029), - [anon_sym_SQUOTE] = ACTIONS(6029), - [anon_sym__] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6031), - [anon_sym_BSLASHbegin] = ACTIONS(6029), - [anon_sym_BSLASHtitle] = ACTIONS(6029), - [anon_sym_BSLASHauthor] = ACTIONS(6029), - [anon_sym_BSLASHusepackage] = ACTIONS(6029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), - [anon_sym_BSLASHinclude] = ACTIONS(6029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), - [anon_sym_BSLASHinput] = ACTIONS(6029), - [anon_sym_BSLASHsubfile] = ACTIONS(6029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), - [anon_sym_BSLASHbibliography] = ACTIONS(6029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), - [anon_sym_BSLASHincludesvg] = ACTIONS(6029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), - [anon_sym_BSLASHimport] = ACTIONS(6029), - [anon_sym_BSLASHsubimport] = ACTIONS(6029), - [anon_sym_BSLASHinputfrom] = ACTIONS(6029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), - [anon_sym_BSLASHincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHcaption] = ACTIONS(6029), - [anon_sym_BSLASHcite] = ACTIONS(6029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCite] = ACTIONS(6029), - [anon_sym_BSLASHnocite] = ACTIONS(6029), - [anon_sym_BSLASHcitet] = ACTIONS(6029), - [anon_sym_BSLASHcitep] = ACTIONS(6029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteauthor] = ACTIONS(6029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitetitle] = ACTIONS(6029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteyear] = ACTIONS(6029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitedate] = ACTIONS(6029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteurl] = ACTIONS(6029), - [anon_sym_BSLASHfullcite] = ACTIONS(6029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), - [anon_sym_BSLASHcitealt] = ACTIONS(6029), - [anon_sym_BSLASHcitealp] = ACTIONS(6029), - [anon_sym_BSLASHcitetext] = ACTIONS(6029), - [anon_sym_BSLASHparencite] = ACTIONS(6029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHParencite] = ACTIONS(6029), - [anon_sym_BSLASHfootcite] = ACTIONS(6029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), - [anon_sym_BSLASHtextcite] = ACTIONS(6029), - [anon_sym_BSLASHTextcite] = ACTIONS(6029), - [anon_sym_BSLASHsmartcite] = ACTIONS(6029), - [anon_sym_BSLASHSmartcite] = ACTIONS(6029), - [anon_sym_BSLASHsupercite] = ACTIONS(6029), - [anon_sym_BSLASHautocite] = ACTIONS(6029), - [anon_sym_BSLASHAutocite] = ACTIONS(6029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHvolcite] = ACTIONS(6029), - [anon_sym_BSLASHVolcite] = ACTIONS(6029), - [anon_sym_BSLASHpvolcite] = ACTIONS(6029), - [anon_sym_BSLASHPvolcite] = ACTIONS(6029), - [anon_sym_BSLASHfvolcite] = ACTIONS(6029), - [anon_sym_BSLASHftvolcite] = ACTIONS(6029), - [anon_sym_BSLASHsvolcite] = ACTIONS(6029), - [anon_sym_BSLASHSvolcite] = ACTIONS(6029), - [anon_sym_BSLASHtvolcite] = ACTIONS(6029), - [anon_sym_BSLASHTvolcite] = ACTIONS(6029), - [anon_sym_BSLASHavolcite] = ACTIONS(6029), - [anon_sym_BSLASHAvolcite] = ACTIONS(6029), - [anon_sym_BSLASHnotecite] = ACTIONS(6029), - [anon_sym_BSLASHNotecite] = ACTIONS(6029), - [anon_sym_BSLASHpnotecite] = ACTIONS(6029), - [anon_sym_BSLASHPnotecite] = ACTIONS(6029), - [anon_sym_BSLASHfnotecite] = ACTIONS(6029), - [anon_sym_BSLASHlabel] = ACTIONS(6029), - [anon_sym_BSLASHref] = ACTIONS(6029), - [anon_sym_BSLASHeqref] = ACTIONS(6029), - [anon_sym_BSLASHvref] = ACTIONS(6029), - [anon_sym_BSLASHVref] = ACTIONS(6029), - [anon_sym_BSLASHautoref] = ACTIONS(6029), - [anon_sym_BSLASHpageref] = ACTIONS(6029), - [anon_sym_BSLASHcref] = ACTIONS(6029), - [anon_sym_BSLASHCref] = ACTIONS(6029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnameCref] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHlabelcref] = ACTIONS(6029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCrefrange] = ACTIONS(6029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnewlabel] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHdef] = ACTIONS(6029), - [anon_sym_BSLASHlet] = ACTIONS(6029), - [anon_sym_BSLASHleft] = ACTIONS(6029), - [anon_sym_BSLASHbig] = ACTIONS(6029), - [anon_sym_BSLASHBig] = ACTIONS(6029), - [anon_sym_BSLASHbigg] = ACTIONS(6029), - [anon_sym_BSLASHBigg] = ACTIONS(6029), - [anon_sym_BSLASHbigl] = ACTIONS(6029), - [anon_sym_BSLASHBigl] = ACTIONS(6029), - [anon_sym_BSLASHbiggl] = ACTIONS(6029), - [anon_sym_BSLASHBiggl] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), - [anon_sym_BSLASHgls] = ACTIONS(6029), - [anon_sym_BSLASHGls] = ACTIONS(6029), - [anon_sym_BSLASHGLS] = ACTIONS(6029), - [anon_sym_BSLASHglspl] = ACTIONS(6029), - [anon_sym_BSLASHGlspl] = ACTIONS(6029), - [anon_sym_BSLASHGLSpl] = ACTIONS(6029), - [anon_sym_BSLASHglsdisp] = ACTIONS(6029), - [anon_sym_BSLASHglslink] = ACTIONS(6029), - [anon_sym_BSLASHglstext] = ACTIONS(6029), - [anon_sym_BSLASHGlstext] = ACTIONS(6029), - [anon_sym_BSLASHGLStext] = ACTIONS(6029), - [anon_sym_BSLASHglsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), - [anon_sym_BSLASHglsplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSplural] = ACTIONS(6029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHglsname] = ACTIONS(6029), - [anon_sym_BSLASHGlsname] = ACTIONS(6029), - [anon_sym_BSLASHGLSname] = ACTIONS(6029), - [anon_sym_BSLASHglssymbol] = ACTIONS(6029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), - [anon_sym_BSLASHglsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), - [anon_sym_BSLASHglsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), - [anon_sym_BSLASHglsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), - [anon_sym_BSLASHglsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), - [anon_sym_BSLASHglsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), - [anon_sym_BSLASHnewacronym] = ACTIONS(6029), - [anon_sym_BSLASHacrshort] = ACTIONS(6029), - [anon_sym_BSLASHAcrshort] = ACTIONS(6029), - [anon_sym_BSLASHACRshort] = ACTIONS(6029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), - [anon_sym_BSLASHacrlong] = ACTIONS(6029), - [anon_sym_BSLASHAcrlong] = ACTIONS(6029), - [anon_sym_BSLASHACRlong] = ACTIONS(6029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), - [anon_sym_BSLASHacrfull] = ACTIONS(6029), - [anon_sym_BSLASHAcrfull] = ACTIONS(6029), - [anon_sym_BSLASHACRfull] = ACTIONS(6029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), - [anon_sym_BSLASHacs] = ACTIONS(6029), - [anon_sym_BSLASHAcs] = ACTIONS(6029), - [anon_sym_BSLASHacsp] = ACTIONS(6029), - [anon_sym_BSLASHAcsp] = ACTIONS(6029), - [anon_sym_BSLASHacl] = ACTIONS(6029), - [anon_sym_BSLASHAcl] = ACTIONS(6029), - [anon_sym_BSLASHaclp] = ACTIONS(6029), - [anon_sym_BSLASHAclp] = ACTIONS(6029), - [anon_sym_BSLASHacf] = ACTIONS(6029), - [anon_sym_BSLASHAcf] = ACTIONS(6029), - [anon_sym_BSLASHacfp] = ACTIONS(6029), - [anon_sym_BSLASHAcfp] = ACTIONS(6029), - [anon_sym_BSLASHac] = ACTIONS(6029), - [anon_sym_BSLASHAc] = ACTIONS(6029), - [anon_sym_BSLASHacp] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), - [anon_sym_BSLASHcolor] = ACTIONS(6029), - [anon_sym_BSLASHcolorbox] = ACTIONS(6029), - [anon_sym_BSLASHtextcolor] = ACTIONS(6029), - [anon_sym_BSLASHpagecolor] = ACTIONS(6029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), - [anon_sym_BSLASHtext] = ACTIONS(6029), - [anon_sym_BSLASHintertext] = ACTIONS(6029), - [anon_sym_shortintertext] = ACTIONS(6029), - }, - [1372] = { - [sym_command_name] = ACTIONS(6141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6141), - [anon_sym_LBRACK] = ACTIONS(6143), - [anon_sym_RBRACK] = ACTIONS(6143), - [anon_sym_COMMA] = ACTIONS(6143), - [anon_sym_EQ] = ACTIONS(6143), - [anon_sym_LPAREN] = ACTIONS(6143), - [anon_sym_RPAREN] = ACTIONS(6143), - [anon_sym_BSLASHpart] = ACTIONS(6141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddpart] = ACTIONS(6141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6143), - [anon_sym_BSLASHchapter] = ACTIONS(6141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddchap] = ACTIONS(6141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsection] = ACTIONS(6141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHaddsec] = ACTIONS(6141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubsection] = ACTIONS(6141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6143), - [anon_sym_BSLASHparagraph] = ACTIONS(6141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6143), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6143), - [anon_sym_BSLASHitem] = ACTIONS(6141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6143), - [anon_sym_LBRACE] = ACTIONS(6143), - [sym_word] = ACTIONS(6141), - [sym_placeholder] = ACTIONS(6143), - [anon_sym_PLUS] = ACTIONS(6143), - [anon_sym_DASH] = ACTIONS(6143), - [anon_sym_STAR] = ACTIONS(6143), - [anon_sym_SLASH] = ACTIONS(6143), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_GT] = ACTIONS(6141), - [anon_sym_BANG] = ACTIONS(6141), - [anon_sym_PIPE] = ACTIONS(6141), - [anon_sym_COLON] = ACTIONS(6141), - [anon_sym_SQUOTE] = ACTIONS(6141), - [anon_sym__] = ACTIONS(6143), - [anon_sym_CARET] = ACTIONS(6143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6143), - [anon_sym_DOLLAR] = ACTIONS(6141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6143), - [anon_sym_BSLASHbegin] = ACTIONS(6141), - [anon_sym_BSLASHend] = ACTIONS(6141), - [anon_sym_BSLASHtitle] = ACTIONS(6141), - [anon_sym_BSLASHauthor] = ACTIONS(6141), - [anon_sym_BSLASHusepackage] = ACTIONS(6141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6141), - [anon_sym_BSLASHinclude] = ACTIONS(6141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6141), - [anon_sym_BSLASHinput] = ACTIONS(6141), - [anon_sym_BSLASHsubfile] = ACTIONS(6141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6141), - [anon_sym_BSLASHbibliography] = ACTIONS(6141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6141), - [anon_sym_BSLASHincludesvg] = ACTIONS(6141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6141), - [anon_sym_BSLASHimport] = ACTIONS(6141), - [anon_sym_BSLASHsubimport] = ACTIONS(6141), - [anon_sym_BSLASHinputfrom] = ACTIONS(6141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6141), - [anon_sym_BSLASHincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHcaption] = ACTIONS(6141), - [anon_sym_BSLASHcite] = ACTIONS(6141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCite] = ACTIONS(6141), - [anon_sym_BSLASHnocite] = ACTIONS(6141), - [anon_sym_BSLASHcitet] = ACTIONS(6141), - [anon_sym_BSLASHcitep] = ACTIONS(6141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteauthor] = ACTIONS(6141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitetitle] = ACTIONS(6141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteyear] = ACTIONS(6141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitedate] = ACTIONS(6141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteurl] = ACTIONS(6141), - [anon_sym_BSLASHfullcite] = ACTIONS(6141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6141), - [anon_sym_BSLASHcitealt] = ACTIONS(6141), - [anon_sym_BSLASHcitealp] = ACTIONS(6141), - [anon_sym_BSLASHcitetext] = ACTIONS(6141), - [anon_sym_BSLASHparencite] = ACTIONS(6141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHParencite] = ACTIONS(6141), - [anon_sym_BSLASHfootcite] = ACTIONS(6141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6141), - [anon_sym_BSLASHtextcite] = ACTIONS(6141), - [anon_sym_BSLASHTextcite] = ACTIONS(6141), - [anon_sym_BSLASHsmartcite] = ACTIONS(6141), - [anon_sym_BSLASHSmartcite] = ACTIONS(6141), - [anon_sym_BSLASHsupercite] = ACTIONS(6141), - [anon_sym_BSLASHautocite] = ACTIONS(6141), - [anon_sym_BSLASHAutocite] = ACTIONS(6141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHvolcite] = ACTIONS(6141), - [anon_sym_BSLASHVolcite] = ACTIONS(6141), - [anon_sym_BSLASHpvolcite] = ACTIONS(6141), - [anon_sym_BSLASHPvolcite] = ACTIONS(6141), - [anon_sym_BSLASHfvolcite] = ACTIONS(6141), - [anon_sym_BSLASHftvolcite] = ACTIONS(6141), - [anon_sym_BSLASHsvolcite] = ACTIONS(6141), - [anon_sym_BSLASHSvolcite] = ACTIONS(6141), - [anon_sym_BSLASHtvolcite] = ACTIONS(6141), - [anon_sym_BSLASHTvolcite] = ACTIONS(6141), - [anon_sym_BSLASHavolcite] = ACTIONS(6141), - [anon_sym_BSLASHAvolcite] = ACTIONS(6141), - [anon_sym_BSLASHnotecite] = ACTIONS(6141), - [anon_sym_BSLASHNotecite] = ACTIONS(6141), - [anon_sym_BSLASHpnotecite] = ACTIONS(6141), - [anon_sym_BSLASHPnotecite] = ACTIONS(6141), - [anon_sym_BSLASHfnotecite] = ACTIONS(6141), - [anon_sym_BSLASHlabel] = ACTIONS(6141), - [anon_sym_BSLASHref] = ACTIONS(6141), - [anon_sym_BSLASHeqref] = ACTIONS(6141), - [anon_sym_BSLASHvref] = ACTIONS(6141), - [anon_sym_BSLASHVref] = ACTIONS(6141), - [anon_sym_BSLASHautoref] = ACTIONS(6141), - [anon_sym_BSLASHpageref] = ACTIONS(6141), - [anon_sym_BSLASHcref] = ACTIONS(6141), - [anon_sym_BSLASHCref] = ACTIONS(6141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnameCref] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHlabelcref] = ACTIONS(6141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCrefrange] = ACTIONS(6141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnewlabel] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6143), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHdef] = ACTIONS(6141), - [anon_sym_BSLASHlet] = ACTIONS(6141), - [anon_sym_BSLASHleft] = ACTIONS(6141), - [anon_sym_BSLASHbig] = ACTIONS(6141), - [anon_sym_BSLASHBig] = ACTIONS(6141), - [anon_sym_BSLASHbigg] = ACTIONS(6141), - [anon_sym_BSLASHBigg] = ACTIONS(6141), - [anon_sym_BSLASHbigl] = ACTIONS(6141), - [anon_sym_BSLASHBigl] = ACTIONS(6141), - [anon_sym_BSLASHbiggl] = ACTIONS(6141), - [anon_sym_BSLASHBiggl] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6141), - [anon_sym_BSLASHgls] = ACTIONS(6141), - [anon_sym_BSLASHGls] = ACTIONS(6141), - [anon_sym_BSLASHGLS] = ACTIONS(6141), - [anon_sym_BSLASHglspl] = ACTIONS(6141), - [anon_sym_BSLASHGlspl] = ACTIONS(6141), - [anon_sym_BSLASHGLSpl] = ACTIONS(6141), - [anon_sym_BSLASHglsdisp] = ACTIONS(6141), - [anon_sym_BSLASHglslink] = ACTIONS(6141), - [anon_sym_BSLASHglstext] = ACTIONS(6141), - [anon_sym_BSLASHGlstext] = ACTIONS(6141), - [anon_sym_BSLASHGLStext] = ACTIONS(6141), - [anon_sym_BSLASHglsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6141), - [anon_sym_BSLASHglsplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSplural] = ACTIONS(6141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHglsname] = ACTIONS(6141), - [anon_sym_BSLASHGlsname] = ACTIONS(6141), - [anon_sym_BSLASHGLSname] = ACTIONS(6141), - [anon_sym_BSLASHglssymbol] = ACTIONS(6141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6141), - [anon_sym_BSLASHglsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6141), - [anon_sym_BSLASHglsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6141), - [anon_sym_BSLASHglsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6141), - [anon_sym_BSLASHglsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6141), - [anon_sym_BSLASHglsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6141), - [anon_sym_BSLASHnewacronym] = ACTIONS(6141), - [anon_sym_BSLASHacrshort] = ACTIONS(6141), - [anon_sym_BSLASHAcrshort] = ACTIONS(6141), - [anon_sym_BSLASHACRshort] = ACTIONS(6141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6141), - [anon_sym_BSLASHacrlong] = ACTIONS(6141), - [anon_sym_BSLASHAcrlong] = ACTIONS(6141), - [anon_sym_BSLASHACRlong] = ACTIONS(6141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6141), - [anon_sym_BSLASHacrfull] = ACTIONS(6141), - [anon_sym_BSLASHAcrfull] = ACTIONS(6141), - [anon_sym_BSLASHACRfull] = ACTIONS(6141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6141), - [anon_sym_BSLASHacs] = ACTIONS(6141), - [anon_sym_BSLASHAcs] = ACTIONS(6141), - [anon_sym_BSLASHacsp] = ACTIONS(6141), - [anon_sym_BSLASHAcsp] = ACTIONS(6141), - [anon_sym_BSLASHacl] = ACTIONS(6141), - [anon_sym_BSLASHAcl] = ACTIONS(6141), - [anon_sym_BSLASHaclp] = ACTIONS(6141), - [anon_sym_BSLASHAclp] = ACTIONS(6141), - [anon_sym_BSLASHacf] = ACTIONS(6141), - [anon_sym_BSLASHAcf] = ACTIONS(6141), - [anon_sym_BSLASHacfp] = ACTIONS(6141), - [anon_sym_BSLASHAcfp] = ACTIONS(6141), - [anon_sym_BSLASHac] = ACTIONS(6141), - [anon_sym_BSLASHAc] = ACTIONS(6141), - [anon_sym_BSLASHacp] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6141), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6141), - [anon_sym_BSLASHcolor] = ACTIONS(6141), - [anon_sym_BSLASHcolorbox] = ACTIONS(6141), - [anon_sym_BSLASHtextcolor] = ACTIONS(6141), - [anon_sym_BSLASHpagecolor] = ACTIONS(6141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6141), - [anon_sym_BSLASHtext] = ACTIONS(6141), - [anon_sym_BSLASHintertext] = ACTIONS(6141), - [anon_sym_shortintertext] = ACTIONS(6141), - }, - [1373] = { - [sym_command_name] = ACTIONS(6301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6301), - [anon_sym_LBRACK] = ACTIONS(6303), - [anon_sym_RBRACK] = ACTIONS(6303), - [anon_sym_COMMA] = ACTIONS(6303), - [anon_sym_EQ] = ACTIONS(6303), - [anon_sym_LPAREN] = ACTIONS(6303), - [anon_sym_RPAREN] = ACTIONS(6303), - [anon_sym_BSLASHpart] = ACTIONS(6301), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddpart] = ACTIONS(6301), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6303), - [anon_sym_BSLASHchapter] = ACTIONS(6301), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddchap] = ACTIONS(6301), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsection] = ACTIONS(6301), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHaddsec] = ACTIONS(6301), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubsection] = ACTIONS(6301), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6301), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6303), - [anon_sym_BSLASHparagraph] = ACTIONS(6301), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6301), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6303), - [anon_sym_BSLASHitem] = ACTIONS(6301), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6303), - [anon_sym_LBRACE] = ACTIONS(6303), - [sym_word] = ACTIONS(6301), - [sym_placeholder] = ACTIONS(6303), - [anon_sym_PLUS] = ACTIONS(6303), - [anon_sym_DASH] = ACTIONS(6303), - [anon_sym_STAR] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6303), - [anon_sym_LT] = ACTIONS(6301), - [anon_sym_GT] = ACTIONS(6301), - [anon_sym_BANG] = ACTIONS(6301), - [anon_sym_PIPE] = ACTIONS(6301), - [anon_sym_COLON] = ACTIONS(6301), - [anon_sym_SQUOTE] = ACTIONS(6301), - [anon_sym__] = ACTIONS(6303), - [anon_sym_CARET] = ACTIONS(6303), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6303), - [anon_sym_DOLLAR] = ACTIONS(6301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6303), - [anon_sym_BSLASHbegin] = ACTIONS(6301), - [anon_sym_BSLASHend] = ACTIONS(6301), - [anon_sym_BSLASHtitle] = ACTIONS(6301), - [anon_sym_BSLASHauthor] = ACTIONS(6301), - [anon_sym_BSLASHusepackage] = ACTIONS(6301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6301), - [anon_sym_BSLASHinclude] = ACTIONS(6301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6301), - [anon_sym_BSLASHinput] = ACTIONS(6301), - [anon_sym_BSLASHsubfile] = ACTIONS(6301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6301), - [anon_sym_BSLASHbibliography] = ACTIONS(6301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6301), - [anon_sym_BSLASHincludesvg] = ACTIONS(6301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6301), - [anon_sym_BSLASHimport] = ACTIONS(6301), - [anon_sym_BSLASHsubimport] = ACTIONS(6301), - [anon_sym_BSLASHinputfrom] = ACTIONS(6301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6301), - [anon_sym_BSLASHincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHcaption] = ACTIONS(6301), - [anon_sym_BSLASHcite] = ACTIONS(6301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCite] = ACTIONS(6301), - [anon_sym_BSLASHnocite] = ACTIONS(6301), - [anon_sym_BSLASHcitet] = ACTIONS(6301), - [anon_sym_BSLASHcitep] = ACTIONS(6301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteauthor] = ACTIONS(6301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitetitle] = ACTIONS(6301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteyear] = ACTIONS(6301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitedate] = ACTIONS(6301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteurl] = ACTIONS(6301), - [anon_sym_BSLASHfullcite] = ACTIONS(6301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6301), - [anon_sym_BSLASHcitealt] = ACTIONS(6301), - [anon_sym_BSLASHcitealp] = ACTIONS(6301), - [anon_sym_BSLASHcitetext] = ACTIONS(6301), - [anon_sym_BSLASHparencite] = ACTIONS(6301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHParencite] = ACTIONS(6301), - [anon_sym_BSLASHfootcite] = ACTIONS(6301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6301), - [anon_sym_BSLASHtextcite] = ACTIONS(6301), - [anon_sym_BSLASHTextcite] = ACTIONS(6301), - [anon_sym_BSLASHsmartcite] = ACTIONS(6301), - [anon_sym_BSLASHSmartcite] = ACTIONS(6301), - [anon_sym_BSLASHsupercite] = ACTIONS(6301), - [anon_sym_BSLASHautocite] = ACTIONS(6301), - [anon_sym_BSLASHAutocite] = ACTIONS(6301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHvolcite] = ACTIONS(6301), - [anon_sym_BSLASHVolcite] = ACTIONS(6301), - [anon_sym_BSLASHpvolcite] = ACTIONS(6301), - [anon_sym_BSLASHPvolcite] = ACTIONS(6301), - [anon_sym_BSLASHfvolcite] = ACTIONS(6301), - [anon_sym_BSLASHftvolcite] = ACTIONS(6301), - [anon_sym_BSLASHsvolcite] = ACTIONS(6301), - [anon_sym_BSLASHSvolcite] = ACTIONS(6301), - [anon_sym_BSLASHtvolcite] = ACTIONS(6301), - [anon_sym_BSLASHTvolcite] = ACTIONS(6301), - [anon_sym_BSLASHavolcite] = ACTIONS(6301), - [anon_sym_BSLASHAvolcite] = ACTIONS(6301), - [anon_sym_BSLASHnotecite] = ACTIONS(6301), - [anon_sym_BSLASHNotecite] = ACTIONS(6301), - [anon_sym_BSLASHpnotecite] = ACTIONS(6301), - [anon_sym_BSLASHPnotecite] = ACTIONS(6301), - [anon_sym_BSLASHfnotecite] = ACTIONS(6301), - [anon_sym_BSLASHlabel] = ACTIONS(6301), - [anon_sym_BSLASHref] = ACTIONS(6301), - [anon_sym_BSLASHeqref] = ACTIONS(6301), - [anon_sym_BSLASHvref] = ACTIONS(6301), - [anon_sym_BSLASHVref] = ACTIONS(6301), - [anon_sym_BSLASHautoref] = ACTIONS(6301), - [anon_sym_BSLASHpageref] = ACTIONS(6301), - [anon_sym_BSLASHcref] = ACTIONS(6301), - [anon_sym_BSLASHCref] = ACTIONS(6301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnameCref] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHlabelcref] = ACTIONS(6301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCrefrange] = ACTIONS(6301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnewlabel] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6303), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHdef] = ACTIONS(6301), - [anon_sym_BSLASHlet] = ACTIONS(6301), - [anon_sym_BSLASHleft] = ACTIONS(6301), - [anon_sym_BSLASHbig] = ACTIONS(6301), - [anon_sym_BSLASHBig] = ACTIONS(6301), - [anon_sym_BSLASHbigg] = ACTIONS(6301), - [anon_sym_BSLASHBigg] = ACTIONS(6301), - [anon_sym_BSLASHbigl] = ACTIONS(6301), - [anon_sym_BSLASHBigl] = ACTIONS(6301), - [anon_sym_BSLASHbiggl] = ACTIONS(6301), - [anon_sym_BSLASHBiggl] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6301), - [anon_sym_BSLASHgls] = ACTIONS(6301), - [anon_sym_BSLASHGls] = ACTIONS(6301), - [anon_sym_BSLASHGLS] = ACTIONS(6301), - [anon_sym_BSLASHglspl] = ACTIONS(6301), - [anon_sym_BSLASHGlspl] = ACTIONS(6301), - [anon_sym_BSLASHGLSpl] = ACTIONS(6301), - [anon_sym_BSLASHglsdisp] = ACTIONS(6301), - [anon_sym_BSLASHglslink] = ACTIONS(6301), - [anon_sym_BSLASHglstext] = ACTIONS(6301), - [anon_sym_BSLASHGlstext] = ACTIONS(6301), - [anon_sym_BSLASHGLStext] = ACTIONS(6301), - [anon_sym_BSLASHglsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6301), - [anon_sym_BSLASHglsplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSplural] = ACTIONS(6301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHglsname] = ACTIONS(6301), - [anon_sym_BSLASHGlsname] = ACTIONS(6301), - [anon_sym_BSLASHGLSname] = ACTIONS(6301), - [anon_sym_BSLASHglssymbol] = ACTIONS(6301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6301), - [anon_sym_BSLASHglsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6301), - [anon_sym_BSLASHglsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6301), - [anon_sym_BSLASHglsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6301), - [anon_sym_BSLASHglsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6301), - [anon_sym_BSLASHglsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6301), - [anon_sym_BSLASHnewacronym] = ACTIONS(6301), - [anon_sym_BSLASHacrshort] = ACTIONS(6301), - [anon_sym_BSLASHAcrshort] = ACTIONS(6301), - [anon_sym_BSLASHACRshort] = ACTIONS(6301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6301), - [anon_sym_BSLASHacrlong] = ACTIONS(6301), - [anon_sym_BSLASHAcrlong] = ACTIONS(6301), - [anon_sym_BSLASHACRlong] = ACTIONS(6301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6301), - [anon_sym_BSLASHacrfull] = ACTIONS(6301), - [anon_sym_BSLASHAcrfull] = ACTIONS(6301), - [anon_sym_BSLASHACRfull] = ACTIONS(6301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6301), - [anon_sym_BSLASHacs] = ACTIONS(6301), - [anon_sym_BSLASHAcs] = ACTIONS(6301), - [anon_sym_BSLASHacsp] = ACTIONS(6301), - [anon_sym_BSLASHAcsp] = ACTIONS(6301), - [anon_sym_BSLASHacl] = ACTIONS(6301), - [anon_sym_BSLASHAcl] = ACTIONS(6301), - [anon_sym_BSLASHaclp] = ACTIONS(6301), - [anon_sym_BSLASHAclp] = ACTIONS(6301), - [anon_sym_BSLASHacf] = ACTIONS(6301), - [anon_sym_BSLASHAcf] = ACTIONS(6301), - [anon_sym_BSLASHacfp] = ACTIONS(6301), - [anon_sym_BSLASHAcfp] = ACTIONS(6301), - [anon_sym_BSLASHac] = ACTIONS(6301), - [anon_sym_BSLASHAc] = ACTIONS(6301), - [anon_sym_BSLASHacp] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6301), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6301), - [anon_sym_BSLASHcolor] = ACTIONS(6301), - [anon_sym_BSLASHcolorbox] = ACTIONS(6301), - [anon_sym_BSLASHtextcolor] = ACTIONS(6301), - [anon_sym_BSLASHpagecolor] = ACTIONS(6301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6301), - [anon_sym_BSLASHtext] = ACTIONS(6301), - [anon_sym_BSLASHintertext] = ACTIONS(6301), - [anon_sym_shortintertext] = ACTIONS(6301), - }, - [1374] = { - [sym_command_name] = ACTIONS(6241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6241), - [anon_sym_LBRACK] = ACTIONS(6243), - [anon_sym_RBRACK] = ACTIONS(6243), - [anon_sym_COMMA] = ACTIONS(6243), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_LPAREN] = ACTIONS(6243), - [anon_sym_RPAREN] = ACTIONS(6243), - [anon_sym_BSLASHpart] = ACTIONS(6241), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddpart] = ACTIONS(6241), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6243), - [anon_sym_BSLASHchapter] = ACTIONS(6241), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddchap] = ACTIONS(6241), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsection] = ACTIONS(6241), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHaddsec] = ACTIONS(6241), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubsection] = ACTIONS(6241), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6241), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6243), - [anon_sym_BSLASHparagraph] = ACTIONS(6241), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6243), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6241), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6243), - [anon_sym_BSLASHitem] = ACTIONS(6241), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6243), - [anon_sym_LBRACE] = ACTIONS(6243), - [sym_word] = ACTIONS(6241), - [sym_placeholder] = ACTIONS(6243), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6243), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(6241), - [anon_sym_GT] = ACTIONS(6241), - [anon_sym_BANG] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_SQUOTE] = ACTIONS(6241), - [anon_sym__] = ACTIONS(6243), - [anon_sym_CARET] = ACTIONS(6243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), - [anon_sym_DOLLAR] = ACTIONS(6241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6243), - [anon_sym_BSLASHbegin] = ACTIONS(6241), - [anon_sym_BSLASHtitle] = ACTIONS(6241), - [anon_sym_BSLASHauthor] = ACTIONS(6241), - [anon_sym_BSLASHusepackage] = ACTIONS(6241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), - [anon_sym_BSLASHinclude] = ACTIONS(6241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), - [anon_sym_BSLASHinput] = ACTIONS(6241), - [anon_sym_BSLASHsubfile] = ACTIONS(6241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), - [anon_sym_BSLASHbibliography] = ACTIONS(6241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), - [anon_sym_BSLASHincludesvg] = ACTIONS(6241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), - [anon_sym_BSLASHimport] = ACTIONS(6241), - [anon_sym_BSLASHsubimport] = ACTIONS(6241), - [anon_sym_BSLASHinputfrom] = ACTIONS(6241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), - [anon_sym_BSLASHincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHcaption] = ACTIONS(6241), - [anon_sym_BSLASHcite] = ACTIONS(6241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCite] = ACTIONS(6241), - [anon_sym_BSLASHnocite] = ACTIONS(6241), - [anon_sym_BSLASHcitet] = ACTIONS(6241), - [anon_sym_BSLASHcitep] = ACTIONS(6241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteauthor] = ACTIONS(6241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitetitle] = ACTIONS(6241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteyear] = ACTIONS(6241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitedate] = ACTIONS(6241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteurl] = ACTIONS(6241), - [anon_sym_BSLASHfullcite] = ACTIONS(6241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), - [anon_sym_BSLASHcitealt] = ACTIONS(6241), - [anon_sym_BSLASHcitealp] = ACTIONS(6241), - [anon_sym_BSLASHcitetext] = ACTIONS(6241), - [anon_sym_BSLASHparencite] = ACTIONS(6241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHParencite] = ACTIONS(6241), - [anon_sym_BSLASHfootcite] = ACTIONS(6241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), - [anon_sym_BSLASHtextcite] = ACTIONS(6241), - [anon_sym_BSLASHTextcite] = ACTIONS(6241), - [anon_sym_BSLASHsmartcite] = ACTIONS(6241), - [anon_sym_BSLASHSmartcite] = ACTIONS(6241), - [anon_sym_BSLASHsupercite] = ACTIONS(6241), - [anon_sym_BSLASHautocite] = ACTIONS(6241), - [anon_sym_BSLASHAutocite] = ACTIONS(6241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHvolcite] = ACTIONS(6241), - [anon_sym_BSLASHVolcite] = ACTIONS(6241), - [anon_sym_BSLASHpvolcite] = ACTIONS(6241), - [anon_sym_BSLASHPvolcite] = ACTIONS(6241), - [anon_sym_BSLASHfvolcite] = ACTIONS(6241), - [anon_sym_BSLASHftvolcite] = ACTIONS(6241), - [anon_sym_BSLASHsvolcite] = ACTIONS(6241), - [anon_sym_BSLASHSvolcite] = ACTIONS(6241), - [anon_sym_BSLASHtvolcite] = ACTIONS(6241), - [anon_sym_BSLASHTvolcite] = ACTIONS(6241), - [anon_sym_BSLASHavolcite] = ACTIONS(6241), - [anon_sym_BSLASHAvolcite] = ACTIONS(6241), - [anon_sym_BSLASHnotecite] = ACTIONS(6241), - [anon_sym_BSLASHNotecite] = ACTIONS(6241), - [anon_sym_BSLASHpnotecite] = ACTIONS(6241), - [anon_sym_BSLASHPnotecite] = ACTIONS(6241), - [anon_sym_BSLASHfnotecite] = ACTIONS(6241), - [anon_sym_BSLASHlabel] = ACTIONS(6241), - [anon_sym_BSLASHref] = ACTIONS(6241), - [anon_sym_BSLASHeqref] = ACTIONS(6241), - [anon_sym_BSLASHvref] = ACTIONS(6241), - [anon_sym_BSLASHVref] = ACTIONS(6241), - [anon_sym_BSLASHautoref] = ACTIONS(6241), - [anon_sym_BSLASHpageref] = ACTIONS(6241), - [anon_sym_BSLASHcref] = ACTIONS(6241), - [anon_sym_BSLASHCref] = ACTIONS(6241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnameCref] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHlabelcref] = ACTIONS(6241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCrefrange] = ACTIONS(6241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnewlabel] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHdef] = ACTIONS(6241), - [anon_sym_BSLASHlet] = ACTIONS(6241), - [anon_sym_BSLASHleft] = ACTIONS(6241), - [anon_sym_BSLASHbig] = ACTIONS(6241), - [anon_sym_BSLASHBig] = ACTIONS(6241), - [anon_sym_BSLASHbigg] = ACTIONS(6241), - [anon_sym_BSLASHBigg] = ACTIONS(6241), - [anon_sym_BSLASHbigl] = ACTIONS(6241), - [anon_sym_BSLASHBigl] = ACTIONS(6241), - [anon_sym_BSLASHbiggl] = ACTIONS(6241), - [anon_sym_BSLASHBiggl] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), - [anon_sym_BSLASHgls] = ACTIONS(6241), - [anon_sym_BSLASHGls] = ACTIONS(6241), - [anon_sym_BSLASHGLS] = ACTIONS(6241), - [anon_sym_BSLASHglspl] = ACTIONS(6241), - [anon_sym_BSLASHGlspl] = ACTIONS(6241), - [anon_sym_BSLASHGLSpl] = ACTIONS(6241), - [anon_sym_BSLASHglsdisp] = ACTIONS(6241), - [anon_sym_BSLASHglslink] = ACTIONS(6241), - [anon_sym_BSLASHglstext] = ACTIONS(6241), - [anon_sym_BSLASHGlstext] = ACTIONS(6241), - [anon_sym_BSLASHGLStext] = ACTIONS(6241), - [anon_sym_BSLASHglsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), - [anon_sym_BSLASHglsplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSplural] = ACTIONS(6241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHglsname] = ACTIONS(6241), - [anon_sym_BSLASHGlsname] = ACTIONS(6241), - [anon_sym_BSLASHGLSname] = ACTIONS(6241), - [anon_sym_BSLASHglssymbol] = ACTIONS(6241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), - [anon_sym_BSLASHglsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), - [anon_sym_BSLASHglsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), - [anon_sym_BSLASHglsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), - [anon_sym_BSLASHglsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), - [anon_sym_BSLASHglsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), - [anon_sym_BSLASHnewacronym] = ACTIONS(6241), - [anon_sym_BSLASHacrshort] = ACTIONS(6241), - [anon_sym_BSLASHAcrshort] = ACTIONS(6241), - [anon_sym_BSLASHACRshort] = ACTIONS(6241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), - [anon_sym_BSLASHacrlong] = ACTIONS(6241), - [anon_sym_BSLASHAcrlong] = ACTIONS(6241), - [anon_sym_BSLASHACRlong] = ACTIONS(6241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), - [anon_sym_BSLASHacrfull] = ACTIONS(6241), - [anon_sym_BSLASHAcrfull] = ACTIONS(6241), - [anon_sym_BSLASHACRfull] = ACTIONS(6241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), - [anon_sym_BSLASHacs] = ACTIONS(6241), - [anon_sym_BSLASHAcs] = ACTIONS(6241), - [anon_sym_BSLASHacsp] = ACTIONS(6241), - [anon_sym_BSLASHAcsp] = ACTIONS(6241), - [anon_sym_BSLASHacl] = ACTIONS(6241), - [anon_sym_BSLASHAcl] = ACTIONS(6241), - [anon_sym_BSLASHaclp] = ACTIONS(6241), - [anon_sym_BSLASHAclp] = ACTIONS(6241), - [anon_sym_BSLASHacf] = ACTIONS(6241), - [anon_sym_BSLASHAcf] = ACTIONS(6241), - [anon_sym_BSLASHacfp] = ACTIONS(6241), - [anon_sym_BSLASHAcfp] = ACTIONS(6241), - [anon_sym_BSLASHac] = ACTIONS(6241), - [anon_sym_BSLASHAc] = ACTIONS(6241), - [anon_sym_BSLASHacp] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), - [anon_sym_BSLASHcolor] = ACTIONS(6241), - [anon_sym_BSLASHcolorbox] = ACTIONS(6241), - [anon_sym_BSLASHtextcolor] = ACTIONS(6241), - [anon_sym_BSLASHpagecolor] = ACTIONS(6241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), - [anon_sym_BSLASHtext] = ACTIONS(6241), - [anon_sym_BSLASHintertext] = ACTIONS(6241), - [anon_sym_shortintertext] = ACTIONS(6241), - }, - [1375] = { - [sym_command_name] = ACTIONS(6521), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6521), - [anon_sym_LBRACK] = ACTIONS(6523), - [anon_sym_RBRACK] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_EQ] = ACTIONS(6523), - [anon_sym_LPAREN] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_BSLASHpart] = ACTIONS(6521), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddpart] = ACTIONS(6521), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6523), - [anon_sym_BSLASHchapter] = ACTIONS(6521), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddchap] = ACTIONS(6521), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsection] = ACTIONS(6521), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHaddsec] = ACTIONS(6521), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubsection] = ACTIONS(6521), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6521), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6523), - [anon_sym_BSLASHparagraph] = ACTIONS(6521), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6523), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6521), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6523), - [anon_sym_BSLASHitem] = ACTIONS(6521), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6523), - [anon_sym_LBRACE] = ACTIONS(6523), - [sym_word] = ACTIONS(6521), - [sym_placeholder] = ACTIONS(6523), - [anon_sym_PLUS] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6523), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_BANG] = ACTIONS(6521), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6521), - [anon_sym_SQUOTE] = ACTIONS(6521), - [anon_sym__] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6523), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6523), - [anon_sym_DOLLAR] = ACTIONS(6521), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6523), - [anon_sym_BSLASHbegin] = ACTIONS(6521), - [anon_sym_BSLASHtitle] = ACTIONS(6521), - [anon_sym_BSLASHauthor] = ACTIONS(6521), - [anon_sym_BSLASHusepackage] = ACTIONS(6521), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6521), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6521), - [anon_sym_BSLASHinclude] = ACTIONS(6521), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6521), - [anon_sym_BSLASHinput] = ACTIONS(6521), - [anon_sym_BSLASHsubfile] = ACTIONS(6521), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6521), - [anon_sym_BSLASHbibliography] = ACTIONS(6521), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6521), - [anon_sym_BSLASHincludesvg] = ACTIONS(6521), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6521), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6521), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6521), - [anon_sym_BSLASHimport] = ACTIONS(6521), - [anon_sym_BSLASHsubimport] = ACTIONS(6521), - [anon_sym_BSLASHinputfrom] = ACTIONS(6521), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6521), - [anon_sym_BSLASHincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHcaption] = ACTIONS(6521), - [anon_sym_BSLASHcite] = ACTIONS(6521), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCite] = ACTIONS(6521), - [anon_sym_BSLASHnocite] = ACTIONS(6521), - [anon_sym_BSLASHcitet] = ACTIONS(6521), - [anon_sym_BSLASHcitep] = ACTIONS(6521), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteauthor] = ACTIONS(6521), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6521), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitetitle] = ACTIONS(6521), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteyear] = ACTIONS(6521), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitedate] = ACTIONS(6521), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteurl] = ACTIONS(6521), - [anon_sym_BSLASHfullcite] = ACTIONS(6521), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6521), - [anon_sym_BSLASHcitealt] = ACTIONS(6521), - [anon_sym_BSLASHcitealp] = ACTIONS(6521), - [anon_sym_BSLASHcitetext] = ACTIONS(6521), - [anon_sym_BSLASHparencite] = ACTIONS(6521), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHParencite] = ACTIONS(6521), - [anon_sym_BSLASHfootcite] = ACTIONS(6521), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6521), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6521), - [anon_sym_BSLASHtextcite] = ACTIONS(6521), - [anon_sym_BSLASHTextcite] = ACTIONS(6521), - [anon_sym_BSLASHsmartcite] = ACTIONS(6521), - [anon_sym_BSLASHSmartcite] = ACTIONS(6521), - [anon_sym_BSLASHsupercite] = ACTIONS(6521), - [anon_sym_BSLASHautocite] = ACTIONS(6521), - [anon_sym_BSLASHAutocite] = ACTIONS(6521), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHvolcite] = ACTIONS(6521), - [anon_sym_BSLASHVolcite] = ACTIONS(6521), - [anon_sym_BSLASHpvolcite] = ACTIONS(6521), - [anon_sym_BSLASHPvolcite] = ACTIONS(6521), - [anon_sym_BSLASHfvolcite] = ACTIONS(6521), - [anon_sym_BSLASHftvolcite] = ACTIONS(6521), - [anon_sym_BSLASHsvolcite] = ACTIONS(6521), - [anon_sym_BSLASHSvolcite] = ACTIONS(6521), - [anon_sym_BSLASHtvolcite] = ACTIONS(6521), - [anon_sym_BSLASHTvolcite] = ACTIONS(6521), - [anon_sym_BSLASHavolcite] = ACTIONS(6521), - [anon_sym_BSLASHAvolcite] = ACTIONS(6521), - [anon_sym_BSLASHnotecite] = ACTIONS(6521), - [anon_sym_BSLASHNotecite] = ACTIONS(6521), - [anon_sym_BSLASHpnotecite] = ACTIONS(6521), - [anon_sym_BSLASHPnotecite] = ACTIONS(6521), - [anon_sym_BSLASHfnotecite] = ACTIONS(6521), - [anon_sym_BSLASHlabel] = ACTIONS(6521), - [anon_sym_BSLASHref] = ACTIONS(6521), - [anon_sym_BSLASHeqref] = ACTIONS(6521), - [anon_sym_BSLASHvref] = ACTIONS(6521), - [anon_sym_BSLASHVref] = ACTIONS(6521), - [anon_sym_BSLASHautoref] = ACTIONS(6521), - [anon_sym_BSLASHpageref] = ACTIONS(6521), - [anon_sym_BSLASHcref] = ACTIONS(6521), - [anon_sym_BSLASHCref] = ACTIONS(6521), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnameCref] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHlabelcref] = ACTIONS(6521), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCrefrange] = ACTIONS(6521), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnewlabel] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6521), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6521), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6523), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHdef] = ACTIONS(6521), - [anon_sym_BSLASHlet] = ACTIONS(6521), - [anon_sym_BSLASHleft] = ACTIONS(6521), - [anon_sym_BSLASHbig] = ACTIONS(6521), - [anon_sym_BSLASHBig] = ACTIONS(6521), - [anon_sym_BSLASHbigg] = ACTIONS(6521), - [anon_sym_BSLASHBigg] = ACTIONS(6521), - [anon_sym_BSLASHbigl] = ACTIONS(6521), - [anon_sym_BSLASHBigl] = ACTIONS(6521), - [anon_sym_BSLASHbiggl] = ACTIONS(6521), - [anon_sym_BSLASHBiggl] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6521), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6521), - [anon_sym_BSLASHgls] = ACTIONS(6521), - [anon_sym_BSLASHGls] = ACTIONS(6521), - [anon_sym_BSLASHGLS] = ACTIONS(6521), - [anon_sym_BSLASHglspl] = ACTIONS(6521), - [anon_sym_BSLASHGlspl] = ACTIONS(6521), - [anon_sym_BSLASHGLSpl] = ACTIONS(6521), - [anon_sym_BSLASHglsdisp] = ACTIONS(6521), - [anon_sym_BSLASHglslink] = ACTIONS(6521), - [anon_sym_BSLASHglstext] = ACTIONS(6521), - [anon_sym_BSLASHGlstext] = ACTIONS(6521), - [anon_sym_BSLASHGLStext] = ACTIONS(6521), - [anon_sym_BSLASHglsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6521), - [anon_sym_BSLASHglsplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSplural] = ACTIONS(6521), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHglsname] = ACTIONS(6521), - [anon_sym_BSLASHGlsname] = ACTIONS(6521), - [anon_sym_BSLASHGLSname] = ACTIONS(6521), - [anon_sym_BSLASHglssymbol] = ACTIONS(6521), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6521), - [anon_sym_BSLASHglsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6521), - [anon_sym_BSLASHglsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6521), - [anon_sym_BSLASHglsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6521), - [anon_sym_BSLASHglsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6521), - [anon_sym_BSLASHglsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6521), - [anon_sym_BSLASHnewacronym] = ACTIONS(6521), - [anon_sym_BSLASHacrshort] = ACTIONS(6521), - [anon_sym_BSLASHAcrshort] = ACTIONS(6521), - [anon_sym_BSLASHACRshort] = ACTIONS(6521), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6521), - [anon_sym_BSLASHacrlong] = ACTIONS(6521), - [anon_sym_BSLASHAcrlong] = ACTIONS(6521), - [anon_sym_BSLASHACRlong] = ACTIONS(6521), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6521), - [anon_sym_BSLASHacrfull] = ACTIONS(6521), - [anon_sym_BSLASHAcrfull] = ACTIONS(6521), - [anon_sym_BSLASHACRfull] = ACTIONS(6521), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6521), - [anon_sym_BSLASHacs] = ACTIONS(6521), - [anon_sym_BSLASHAcs] = ACTIONS(6521), - [anon_sym_BSLASHacsp] = ACTIONS(6521), - [anon_sym_BSLASHAcsp] = ACTIONS(6521), - [anon_sym_BSLASHacl] = ACTIONS(6521), - [anon_sym_BSLASHAcl] = ACTIONS(6521), - [anon_sym_BSLASHaclp] = ACTIONS(6521), - [anon_sym_BSLASHAclp] = ACTIONS(6521), - [anon_sym_BSLASHacf] = ACTIONS(6521), - [anon_sym_BSLASHAcf] = ACTIONS(6521), - [anon_sym_BSLASHacfp] = ACTIONS(6521), - [anon_sym_BSLASHAcfp] = ACTIONS(6521), - [anon_sym_BSLASHac] = ACTIONS(6521), - [anon_sym_BSLASHAc] = ACTIONS(6521), - [anon_sym_BSLASHacp] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6521), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6521), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6521), - [anon_sym_BSLASHcolor] = ACTIONS(6521), - [anon_sym_BSLASHcolorbox] = ACTIONS(6521), - [anon_sym_BSLASHtextcolor] = ACTIONS(6521), - [anon_sym_BSLASHpagecolor] = ACTIONS(6521), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6521), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6521), - [anon_sym_BSLASHtext] = ACTIONS(6521), - [anon_sym_BSLASHintertext] = ACTIONS(6521), - [anon_sym_shortintertext] = ACTIONS(6521), - }, - [1376] = { - [sym_command_name] = ACTIONS(6525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6527), - [anon_sym_LPAREN] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_BSLASHpart] = ACTIONS(6525), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddpart] = ACTIONS(6525), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6527), - [anon_sym_BSLASHchapter] = ACTIONS(6525), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddchap] = ACTIONS(6525), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsection] = ACTIONS(6525), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHaddsec] = ACTIONS(6525), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubsection] = ACTIONS(6525), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6525), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6527), - [anon_sym_BSLASHparagraph] = ACTIONS(6525), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6527), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6525), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6527), - [anon_sym_BSLASHitem] = ACTIONS(6525), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6527), - [anon_sym_LBRACE] = ACTIONS(6527), - [sym_word] = ACTIONS(6525), - [sym_placeholder] = ACTIONS(6527), - [anon_sym_PLUS] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6527), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6527), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_BANG] = ACTIONS(6525), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_SQUOTE] = ACTIONS(6525), - [anon_sym__] = ACTIONS(6527), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6527), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6527), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6527), - [anon_sym_DOLLAR] = ACTIONS(6525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6527), - [anon_sym_BSLASHbegin] = ACTIONS(6525), - [anon_sym_BSLASHtitle] = ACTIONS(6525), - [anon_sym_BSLASHauthor] = ACTIONS(6525), - [anon_sym_BSLASHusepackage] = ACTIONS(6525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6525), - [anon_sym_BSLASHinclude] = ACTIONS(6525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6525), - [anon_sym_BSLASHinput] = ACTIONS(6525), - [anon_sym_BSLASHsubfile] = ACTIONS(6525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6525), - [anon_sym_BSLASHbibliography] = ACTIONS(6525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6525), - [anon_sym_BSLASHincludesvg] = ACTIONS(6525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6525), - [anon_sym_BSLASHimport] = ACTIONS(6525), - [anon_sym_BSLASHsubimport] = ACTIONS(6525), - [anon_sym_BSLASHinputfrom] = ACTIONS(6525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6525), - [anon_sym_BSLASHincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHcaption] = ACTIONS(6525), - [anon_sym_BSLASHcite] = ACTIONS(6525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCite] = ACTIONS(6525), - [anon_sym_BSLASHnocite] = ACTIONS(6525), - [anon_sym_BSLASHcitet] = ACTIONS(6525), - [anon_sym_BSLASHcitep] = ACTIONS(6525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteauthor] = ACTIONS(6525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitetitle] = ACTIONS(6525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteyear] = ACTIONS(6525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitedate] = ACTIONS(6525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteurl] = ACTIONS(6525), - [anon_sym_BSLASHfullcite] = ACTIONS(6525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6525), - [anon_sym_BSLASHcitealt] = ACTIONS(6525), - [anon_sym_BSLASHcitealp] = ACTIONS(6525), - [anon_sym_BSLASHcitetext] = ACTIONS(6525), - [anon_sym_BSLASHparencite] = ACTIONS(6525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHParencite] = ACTIONS(6525), - [anon_sym_BSLASHfootcite] = ACTIONS(6525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6525), - [anon_sym_BSLASHtextcite] = ACTIONS(6525), - [anon_sym_BSLASHTextcite] = ACTIONS(6525), - [anon_sym_BSLASHsmartcite] = ACTIONS(6525), - [anon_sym_BSLASHSmartcite] = ACTIONS(6525), - [anon_sym_BSLASHsupercite] = ACTIONS(6525), - [anon_sym_BSLASHautocite] = ACTIONS(6525), - [anon_sym_BSLASHAutocite] = ACTIONS(6525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHvolcite] = ACTIONS(6525), - [anon_sym_BSLASHVolcite] = ACTIONS(6525), - [anon_sym_BSLASHpvolcite] = ACTIONS(6525), - [anon_sym_BSLASHPvolcite] = ACTIONS(6525), - [anon_sym_BSLASHfvolcite] = ACTIONS(6525), - [anon_sym_BSLASHftvolcite] = ACTIONS(6525), - [anon_sym_BSLASHsvolcite] = ACTIONS(6525), - [anon_sym_BSLASHSvolcite] = ACTIONS(6525), - [anon_sym_BSLASHtvolcite] = ACTIONS(6525), - [anon_sym_BSLASHTvolcite] = ACTIONS(6525), - [anon_sym_BSLASHavolcite] = ACTIONS(6525), - [anon_sym_BSLASHAvolcite] = ACTIONS(6525), - [anon_sym_BSLASHnotecite] = ACTIONS(6525), - [anon_sym_BSLASHNotecite] = ACTIONS(6525), - [anon_sym_BSLASHpnotecite] = ACTIONS(6525), - [anon_sym_BSLASHPnotecite] = ACTIONS(6525), - [anon_sym_BSLASHfnotecite] = ACTIONS(6525), - [anon_sym_BSLASHlabel] = ACTIONS(6525), - [anon_sym_BSLASHref] = ACTIONS(6525), - [anon_sym_BSLASHeqref] = ACTIONS(6525), - [anon_sym_BSLASHvref] = ACTIONS(6525), - [anon_sym_BSLASHVref] = ACTIONS(6525), - [anon_sym_BSLASHautoref] = ACTIONS(6525), - [anon_sym_BSLASHpageref] = ACTIONS(6525), - [anon_sym_BSLASHcref] = ACTIONS(6525), - [anon_sym_BSLASHCref] = ACTIONS(6525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnameCref] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHlabelcref] = ACTIONS(6525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCrefrange] = ACTIONS(6525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnewlabel] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6527), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHdef] = ACTIONS(6525), - [anon_sym_BSLASHlet] = ACTIONS(6525), - [anon_sym_BSLASHleft] = ACTIONS(6525), - [anon_sym_BSLASHbig] = ACTIONS(6525), - [anon_sym_BSLASHBig] = ACTIONS(6525), - [anon_sym_BSLASHbigg] = ACTIONS(6525), - [anon_sym_BSLASHBigg] = ACTIONS(6525), - [anon_sym_BSLASHbigl] = ACTIONS(6525), - [anon_sym_BSLASHBigl] = ACTIONS(6525), - [anon_sym_BSLASHbiggl] = ACTIONS(6525), - [anon_sym_BSLASHBiggl] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6525), - [anon_sym_BSLASHgls] = ACTIONS(6525), - [anon_sym_BSLASHGls] = ACTIONS(6525), - [anon_sym_BSLASHGLS] = ACTIONS(6525), - [anon_sym_BSLASHglspl] = ACTIONS(6525), - [anon_sym_BSLASHGlspl] = ACTIONS(6525), - [anon_sym_BSLASHGLSpl] = ACTIONS(6525), - [anon_sym_BSLASHglsdisp] = ACTIONS(6525), - [anon_sym_BSLASHglslink] = ACTIONS(6525), - [anon_sym_BSLASHglstext] = ACTIONS(6525), - [anon_sym_BSLASHGlstext] = ACTIONS(6525), - [anon_sym_BSLASHGLStext] = ACTIONS(6525), - [anon_sym_BSLASHglsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6525), - [anon_sym_BSLASHglsplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSplural] = ACTIONS(6525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHglsname] = ACTIONS(6525), - [anon_sym_BSLASHGlsname] = ACTIONS(6525), - [anon_sym_BSLASHGLSname] = ACTIONS(6525), - [anon_sym_BSLASHglssymbol] = ACTIONS(6525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6525), - [anon_sym_BSLASHglsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6525), - [anon_sym_BSLASHglsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6525), - [anon_sym_BSLASHglsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6525), - [anon_sym_BSLASHglsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6525), - [anon_sym_BSLASHglsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6525), - [anon_sym_BSLASHnewacronym] = ACTIONS(6525), - [anon_sym_BSLASHacrshort] = ACTIONS(6525), - [anon_sym_BSLASHAcrshort] = ACTIONS(6525), - [anon_sym_BSLASHACRshort] = ACTIONS(6525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6525), - [anon_sym_BSLASHacrlong] = ACTIONS(6525), - [anon_sym_BSLASHAcrlong] = ACTIONS(6525), - [anon_sym_BSLASHACRlong] = ACTIONS(6525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6525), - [anon_sym_BSLASHacrfull] = ACTIONS(6525), - [anon_sym_BSLASHAcrfull] = ACTIONS(6525), - [anon_sym_BSLASHACRfull] = ACTIONS(6525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6525), - [anon_sym_BSLASHacs] = ACTIONS(6525), - [anon_sym_BSLASHAcs] = ACTIONS(6525), - [anon_sym_BSLASHacsp] = ACTIONS(6525), - [anon_sym_BSLASHAcsp] = ACTIONS(6525), - [anon_sym_BSLASHacl] = ACTIONS(6525), - [anon_sym_BSLASHAcl] = ACTIONS(6525), - [anon_sym_BSLASHaclp] = ACTIONS(6525), - [anon_sym_BSLASHAclp] = ACTIONS(6525), - [anon_sym_BSLASHacf] = ACTIONS(6525), - [anon_sym_BSLASHAcf] = ACTIONS(6525), - [anon_sym_BSLASHacfp] = ACTIONS(6525), - [anon_sym_BSLASHAcfp] = ACTIONS(6525), - [anon_sym_BSLASHac] = ACTIONS(6525), - [anon_sym_BSLASHAc] = ACTIONS(6525), - [anon_sym_BSLASHacp] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6525), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6525), - [anon_sym_BSLASHcolor] = ACTIONS(6525), - [anon_sym_BSLASHcolorbox] = ACTIONS(6525), - [anon_sym_BSLASHtextcolor] = ACTIONS(6525), - [anon_sym_BSLASHpagecolor] = ACTIONS(6525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6525), - [anon_sym_BSLASHtext] = ACTIONS(6525), - [anon_sym_BSLASHintertext] = ACTIONS(6525), - [anon_sym_shortintertext] = ACTIONS(6525), - }, - [1377] = { - [sym_command_name] = ACTIONS(6237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6237), - [anon_sym_LBRACK] = ACTIONS(6239), - [anon_sym_RBRACK] = ACTIONS(6239), - [anon_sym_COMMA] = ACTIONS(6239), - [anon_sym_EQ] = ACTIONS(6239), - [anon_sym_LPAREN] = ACTIONS(6239), - [anon_sym_RPAREN] = ACTIONS(6239), - [anon_sym_BSLASHpart] = ACTIONS(6237), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddpart] = ACTIONS(6237), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6239), - [anon_sym_BSLASHchapter] = ACTIONS(6237), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddchap] = ACTIONS(6237), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsection] = ACTIONS(6237), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHaddsec] = ACTIONS(6237), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubsection] = ACTIONS(6237), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6237), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6239), - [anon_sym_BSLASHparagraph] = ACTIONS(6237), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6239), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6237), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6239), - [anon_sym_BSLASHitem] = ACTIONS(6237), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6239), - [sym_word] = ACTIONS(6237), - [sym_placeholder] = ACTIONS(6239), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6239), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_BANG] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_SQUOTE] = ACTIONS(6237), - [anon_sym__] = ACTIONS(6239), - [anon_sym_CARET] = ACTIONS(6239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), - [anon_sym_DOLLAR] = ACTIONS(6237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6239), - [anon_sym_BSLASHbegin] = ACTIONS(6237), - [anon_sym_BSLASHtitle] = ACTIONS(6237), - [anon_sym_BSLASHauthor] = ACTIONS(6237), - [anon_sym_BSLASHusepackage] = ACTIONS(6237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6237), - [anon_sym_BSLASHinclude] = ACTIONS(6237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6237), - [anon_sym_BSLASHinput] = ACTIONS(6237), - [anon_sym_BSLASHsubfile] = ACTIONS(6237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6237), - [anon_sym_BSLASHbibliography] = ACTIONS(6237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6237), - [anon_sym_BSLASHincludesvg] = ACTIONS(6237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6237), - [anon_sym_BSLASHimport] = ACTIONS(6237), - [anon_sym_BSLASHsubimport] = ACTIONS(6237), - [anon_sym_BSLASHinputfrom] = ACTIONS(6237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6237), - [anon_sym_BSLASHincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHcaption] = ACTIONS(6237), - [anon_sym_BSLASHcite] = ACTIONS(6237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCite] = ACTIONS(6237), - [anon_sym_BSLASHnocite] = ACTIONS(6237), - [anon_sym_BSLASHcitet] = ACTIONS(6237), - [anon_sym_BSLASHcitep] = ACTIONS(6237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteauthor] = ACTIONS(6237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitetitle] = ACTIONS(6237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteyear] = ACTIONS(6237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitedate] = ACTIONS(6237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteurl] = ACTIONS(6237), - [anon_sym_BSLASHfullcite] = ACTIONS(6237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6237), - [anon_sym_BSLASHcitealt] = ACTIONS(6237), - [anon_sym_BSLASHcitealp] = ACTIONS(6237), - [anon_sym_BSLASHcitetext] = ACTIONS(6237), - [anon_sym_BSLASHparencite] = ACTIONS(6237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHParencite] = ACTIONS(6237), - [anon_sym_BSLASHfootcite] = ACTIONS(6237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6237), - [anon_sym_BSLASHtextcite] = ACTIONS(6237), - [anon_sym_BSLASHTextcite] = ACTIONS(6237), - [anon_sym_BSLASHsmartcite] = ACTIONS(6237), - [anon_sym_BSLASHSmartcite] = ACTIONS(6237), - [anon_sym_BSLASHsupercite] = ACTIONS(6237), - [anon_sym_BSLASHautocite] = ACTIONS(6237), - [anon_sym_BSLASHAutocite] = ACTIONS(6237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHvolcite] = ACTIONS(6237), - [anon_sym_BSLASHVolcite] = ACTIONS(6237), - [anon_sym_BSLASHpvolcite] = ACTIONS(6237), - [anon_sym_BSLASHPvolcite] = ACTIONS(6237), - [anon_sym_BSLASHfvolcite] = ACTIONS(6237), - [anon_sym_BSLASHftvolcite] = ACTIONS(6237), - [anon_sym_BSLASHsvolcite] = ACTIONS(6237), - [anon_sym_BSLASHSvolcite] = ACTIONS(6237), - [anon_sym_BSLASHtvolcite] = ACTIONS(6237), - [anon_sym_BSLASHTvolcite] = ACTIONS(6237), - [anon_sym_BSLASHavolcite] = ACTIONS(6237), - [anon_sym_BSLASHAvolcite] = ACTIONS(6237), - [anon_sym_BSLASHnotecite] = ACTIONS(6237), - [anon_sym_BSLASHNotecite] = ACTIONS(6237), - [anon_sym_BSLASHpnotecite] = ACTIONS(6237), - [anon_sym_BSLASHPnotecite] = ACTIONS(6237), - [anon_sym_BSLASHfnotecite] = ACTIONS(6237), - [anon_sym_BSLASHlabel] = ACTIONS(6237), - [anon_sym_BSLASHref] = ACTIONS(6237), - [anon_sym_BSLASHeqref] = ACTIONS(6237), - [anon_sym_BSLASHvref] = ACTIONS(6237), - [anon_sym_BSLASHVref] = ACTIONS(6237), - [anon_sym_BSLASHautoref] = ACTIONS(6237), - [anon_sym_BSLASHpageref] = ACTIONS(6237), - [anon_sym_BSLASHcref] = ACTIONS(6237), - [anon_sym_BSLASHCref] = ACTIONS(6237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnameCref] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHlabelcref] = ACTIONS(6237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCrefrange] = ACTIONS(6237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnewlabel] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHdef] = ACTIONS(6237), - [anon_sym_BSLASHlet] = ACTIONS(6237), - [anon_sym_BSLASHleft] = ACTIONS(6237), - [anon_sym_BSLASHbig] = ACTIONS(6237), - [anon_sym_BSLASHBig] = ACTIONS(6237), - [anon_sym_BSLASHbigg] = ACTIONS(6237), - [anon_sym_BSLASHBigg] = ACTIONS(6237), - [anon_sym_BSLASHbigl] = ACTIONS(6237), - [anon_sym_BSLASHBigl] = ACTIONS(6237), - [anon_sym_BSLASHbiggl] = ACTIONS(6237), - [anon_sym_BSLASHBiggl] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6237), - [anon_sym_BSLASHgls] = ACTIONS(6237), - [anon_sym_BSLASHGls] = ACTIONS(6237), - [anon_sym_BSLASHGLS] = ACTIONS(6237), - [anon_sym_BSLASHglspl] = ACTIONS(6237), - [anon_sym_BSLASHGlspl] = ACTIONS(6237), - [anon_sym_BSLASHGLSpl] = ACTIONS(6237), - [anon_sym_BSLASHglsdisp] = ACTIONS(6237), - [anon_sym_BSLASHglslink] = ACTIONS(6237), - [anon_sym_BSLASHglstext] = ACTIONS(6237), - [anon_sym_BSLASHGlstext] = ACTIONS(6237), - [anon_sym_BSLASHGLStext] = ACTIONS(6237), - [anon_sym_BSLASHglsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6237), - [anon_sym_BSLASHglsplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSplural] = ACTIONS(6237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHglsname] = ACTIONS(6237), - [anon_sym_BSLASHGlsname] = ACTIONS(6237), - [anon_sym_BSLASHGLSname] = ACTIONS(6237), - [anon_sym_BSLASHglssymbol] = ACTIONS(6237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6237), - [anon_sym_BSLASHglsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6237), - [anon_sym_BSLASHglsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6237), - [anon_sym_BSLASHglsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6237), - [anon_sym_BSLASHglsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6237), - [anon_sym_BSLASHglsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6237), - [anon_sym_BSLASHnewacronym] = ACTIONS(6237), - [anon_sym_BSLASHacrshort] = ACTIONS(6237), - [anon_sym_BSLASHAcrshort] = ACTIONS(6237), - [anon_sym_BSLASHACRshort] = ACTIONS(6237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6237), - [anon_sym_BSLASHacrlong] = ACTIONS(6237), - [anon_sym_BSLASHAcrlong] = ACTIONS(6237), - [anon_sym_BSLASHACRlong] = ACTIONS(6237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6237), - [anon_sym_BSLASHacrfull] = ACTIONS(6237), - [anon_sym_BSLASHAcrfull] = ACTIONS(6237), - [anon_sym_BSLASHACRfull] = ACTIONS(6237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6237), - [anon_sym_BSLASHacs] = ACTIONS(6237), - [anon_sym_BSLASHAcs] = ACTIONS(6237), - [anon_sym_BSLASHacsp] = ACTIONS(6237), - [anon_sym_BSLASHAcsp] = ACTIONS(6237), - [anon_sym_BSLASHacl] = ACTIONS(6237), - [anon_sym_BSLASHAcl] = ACTIONS(6237), - [anon_sym_BSLASHaclp] = ACTIONS(6237), - [anon_sym_BSLASHAclp] = ACTIONS(6237), - [anon_sym_BSLASHacf] = ACTIONS(6237), - [anon_sym_BSLASHAcf] = ACTIONS(6237), - [anon_sym_BSLASHacfp] = ACTIONS(6237), - [anon_sym_BSLASHAcfp] = ACTIONS(6237), - [anon_sym_BSLASHac] = ACTIONS(6237), - [anon_sym_BSLASHAc] = ACTIONS(6237), - [anon_sym_BSLASHacp] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6237), - [anon_sym_BSLASHcolor] = ACTIONS(6237), - [anon_sym_BSLASHcolorbox] = ACTIONS(6237), - [anon_sym_BSLASHtextcolor] = ACTIONS(6237), - [anon_sym_BSLASHpagecolor] = ACTIONS(6237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6237), - [anon_sym_BSLASHtext] = ACTIONS(6237), - [anon_sym_BSLASHintertext] = ACTIONS(6237), - [anon_sym_shortintertext] = ACTIONS(6237), - }, - [1378] = { - [sym_command_name] = ACTIONS(6221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6221), - [anon_sym_LBRACK] = ACTIONS(6223), - [anon_sym_RBRACK] = ACTIONS(6223), - [anon_sym_COMMA] = ACTIONS(6223), - [anon_sym_EQ] = ACTIONS(6223), - [anon_sym_LPAREN] = ACTIONS(6223), - [anon_sym_RPAREN] = ACTIONS(6223), - [anon_sym_BSLASHpart] = ACTIONS(6221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddpart] = ACTIONS(6221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6223), - [anon_sym_BSLASHchapter] = ACTIONS(6221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddchap] = ACTIONS(6221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsection] = ACTIONS(6221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHaddsec] = ACTIONS(6221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubsection] = ACTIONS(6221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6223), - [anon_sym_BSLASHparagraph] = ACTIONS(6221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6223), - [anon_sym_BSLASHitem] = ACTIONS(6221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6223), - [anon_sym_LBRACE] = ACTIONS(6223), - [sym_word] = ACTIONS(6221), - [sym_placeholder] = ACTIONS(6223), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6223), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_LT] = ACTIONS(6221), - [anon_sym_GT] = ACTIONS(6221), - [anon_sym_BANG] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_SQUOTE] = ACTIONS(6221), - [anon_sym__] = ACTIONS(6223), - [anon_sym_CARET] = ACTIONS(6223), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6223), - [anon_sym_DOLLAR] = ACTIONS(6221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6223), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6223), - [anon_sym_BSLASHbegin] = ACTIONS(6221), - [anon_sym_BSLASHtitle] = ACTIONS(6221), - [anon_sym_BSLASHauthor] = ACTIONS(6221), - [anon_sym_BSLASHusepackage] = ACTIONS(6221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6221), - [anon_sym_BSLASHinclude] = ACTIONS(6221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6221), - [anon_sym_BSLASHinput] = ACTIONS(6221), - [anon_sym_BSLASHsubfile] = ACTIONS(6221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6221), - [anon_sym_BSLASHbibliography] = ACTIONS(6221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6221), - [anon_sym_BSLASHincludesvg] = ACTIONS(6221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6221), - [anon_sym_BSLASHimport] = ACTIONS(6221), - [anon_sym_BSLASHsubimport] = ACTIONS(6221), - [anon_sym_BSLASHinputfrom] = ACTIONS(6221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6221), - [anon_sym_BSLASHincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHcaption] = ACTIONS(6221), - [anon_sym_BSLASHcite] = ACTIONS(6221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCite] = ACTIONS(6221), - [anon_sym_BSLASHnocite] = ACTIONS(6221), - [anon_sym_BSLASHcitet] = ACTIONS(6221), - [anon_sym_BSLASHcitep] = ACTIONS(6221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteauthor] = ACTIONS(6221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitetitle] = ACTIONS(6221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteyear] = ACTIONS(6221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitedate] = ACTIONS(6221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteurl] = ACTIONS(6221), - [anon_sym_BSLASHfullcite] = ACTIONS(6221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6221), - [anon_sym_BSLASHcitealt] = ACTIONS(6221), - [anon_sym_BSLASHcitealp] = ACTIONS(6221), - [anon_sym_BSLASHcitetext] = ACTIONS(6221), - [anon_sym_BSLASHparencite] = ACTIONS(6221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHParencite] = ACTIONS(6221), - [anon_sym_BSLASHfootcite] = ACTIONS(6221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6221), - [anon_sym_BSLASHtextcite] = ACTIONS(6221), - [anon_sym_BSLASHTextcite] = ACTIONS(6221), - [anon_sym_BSLASHsmartcite] = ACTIONS(6221), - [anon_sym_BSLASHSmartcite] = ACTIONS(6221), - [anon_sym_BSLASHsupercite] = ACTIONS(6221), - [anon_sym_BSLASHautocite] = ACTIONS(6221), - [anon_sym_BSLASHAutocite] = ACTIONS(6221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHvolcite] = ACTIONS(6221), - [anon_sym_BSLASHVolcite] = ACTIONS(6221), - [anon_sym_BSLASHpvolcite] = ACTIONS(6221), - [anon_sym_BSLASHPvolcite] = ACTIONS(6221), - [anon_sym_BSLASHfvolcite] = ACTIONS(6221), - [anon_sym_BSLASHftvolcite] = ACTIONS(6221), - [anon_sym_BSLASHsvolcite] = ACTIONS(6221), - [anon_sym_BSLASHSvolcite] = ACTIONS(6221), - [anon_sym_BSLASHtvolcite] = ACTIONS(6221), - [anon_sym_BSLASHTvolcite] = ACTIONS(6221), - [anon_sym_BSLASHavolcite] = ACTIONS(6221), - [anon_sym_BSLASHAvolcite] = ACTIONS(6221), - [anon_sym_BSLASHnotecite] = ACTIONS(6221), - [anon_sym_BSLASHNotecite] = ACTIONS(6221), - [anon_sym_BSLASHpnotecite] = ACTIONS(6221), - [anon_sym_BSLASHPnotecite] = ACTIONS(6221), - [anon_sym_BSLASHfnotecite] = ACTIONS(6221), - [anon_sym_BSLASHlabel] = ACTIONS(6221), - [anon_sym_BSLASHref] = ACTIONS(6221), - [anon_sym_BSLASHeqref] = ACTIONS(6221), - [anon_sym_BSLASHvref] = ACTIONS(6221), - [anon_sym_BSLASHVref] = ACTIONS(6221), - [anon_sym_BSLASHautoref] = ACTIONS(6221), - [anon_sym_BSLASHpageref] = ACTIONS(6221), - [anon_sym_BSLASHcref] = ACTIONS(6221), - [anon_sym_BSLASHCref] = ACTIONS(6221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnameCref] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHlabelcref] = ACTIONS(6221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCrefrange] = ACTIONS(6221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnewlabel] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6223), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHdef] = ACTIONS(6221), - [anon_sym_BSLASHlet] = ACTIONS(6221), - [anon_sym_BSLASHleft] = ACTIONS(6221), - [anon_sym_BSLASHbig] = ACTIONS(6221), - [anon_sym_BSLASHBig] = ACTIONS(6221), - [anon_sym_BSLASHbigg] = ACTIONS(6221), - [anon_sym_BSLASHBigg] = ACTIONS(6221), - [anon_sym_BSLASHbigl] = ACTIONS(6221), - [anon_sym_BSLASHBigl] = ACTIONS(6221), - [anon_sym_BSLASHbiggl] = ACTIONS(6221), - [anon_sym_BSLASHBiggl] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6221), - [anon_sym_BSLASHgls] = ACTIONS(6221), - [anon_sym_BSLASHGls] = ACTIONS(6221), - [anon_sym_BSLASHGLS] = ACTIONS(6221), - [anon_sym_BSLASHglspl] = ACTIONS(6221), - [anon_sym_BSLASHGlspl] = ACTIONS(6221), - [anon_sym_BSLASHGLSpl] = ACTIONS(6221), - [anon_sym_BSLASHglsdisp] = ACTIONS(6221), - [anon_sym_BSLASHglslink] = ACTIONS(6221), - [anon_sym_BSLASHglstext] = ACTIONS(6221), - [anon_sym_BSLASHGlstext] = ACTIONS(6221), - [anon_sym_BSLASHGLStext] = ACTIONS(6221), - [anon_sym_BSLASHglsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6221), - [anon_sym_BSLASHglsplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSplural] = ACTIONS(6221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHglsname] = ACTIONS(6221), - [anon_sym_BSLASHGlsname] = ACTIONS(6221), - [anon_sym_BSLASHGLSname] = ACTIONS(6221), - [anon_sym_BSLASHglssymbol] = ACTIONS(6221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6221), - [anon_sym_BSLASHglsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6221), - [anon_sym_BSLASHglsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6221), - [anon_sym_BSLASHglsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6221), - [anon_sym_BSLASHglsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6221), - [anon_sym_BSLASHglsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6221), - [anon_sym_BSLASHnewacronym] = ACTIONS(6221), - [anon_sym_BSLASHacrshort] = ACTIONS(6221), - [anon_sym_BSLASHAcrshort] = ACTIONS(6221), - [anon_sym_BSLASHACRshort] = ACTIONS(6221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6221), - [anon_sym_BSLASHacrlong] = ACTIONS(6221), - [anon_sym_BSLASHAcrlong] = ACTIONS(6221), - [anon_sym_BSLASHACRlong] = ACTIONS(6221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6221), - [anon_sym_BSLASHacrfull] = ACTIONS(6221), - [anon_sym_BSLASHAcrfull] = ACTIONS(6221), - [anon_sym_BSLASHACRfull] = ACTIONS(6221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6221), - [anon_sym_BSLASHacs] = ACTIONS(6221), - [anon_sym_BSLASHAcs] = ACTIONS(6221), - [anon_sym_BSLASHacsp] = ACTIONS(6221), - [anon_sym_BSLASHAcsp] = ACTIONS(6221), - [anon_sym_BSLASHacl] = ACTIONS(6221), - [anon_sym_BSLASHAcl] = ACTIONS(6221), - [anon_sym_BSLASHaclp] = ACTIONS(6221), - [anon_sym_BSLASHAclp] = ACTIONS(6221), - [anon_sym_BSLASHacf] = ACTIONS(6221), - [anon_sym_BSLASHAcf] = ACTIONS(6221), - [anon_sym_BSLASHacfp] = ACTIONS(6221), - [anon_sym_BSLASHAcfp] = ACTIONS(6221), - [anon_sym_BSLASHac] = ACTIONS(6221), - [anon_sym_BSLASHAc] = ACTIONS(6221), - [anon_sym_BSLASHacp] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6221), - [anon_sym_BSLASHcolor] = ACTIONS(6221), - [anon_sym_BSLASHcolorbox] = ACTIONS(6221), - [anon_sym_BSLASHtextcolor] = ACTIONS(6221), - [anon_sym_BSLASHpagecolor] = ACTIONS(6221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6221), - [anon_sym_BSLASHtext] = ACTIONS(6221), - [anon_sym_BSLASHintertext] = ACTIONS(6221), - [anon_sym_shortintertext] = ACTIONS(6221), - }, - [1379] = { - [sym_command_name] = ACTIONS(6201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6201), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_EQ] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_BSLASHpart] = ACTIONS(6201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddpart] = ACTIONS(6201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6203), - [anon_sym_BSLASHchapter] = ACTIONS(6201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddchap] = ACTIONS(6201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsection] = ACTIONS(6201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHaddsec] = ACTIONS(6201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubsection] = ACTIONS(6201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6203), - [anon_sym_BSLASHparagraph] = ACTIONS(6201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6203), - [anon_sym_BSLASHitem] = ACTIONS(6201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6203), - [sym_word] = ACTIONS(6201), - [sym_placeholder] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_SQUOTE] = ACTIONS(6201), - [anon_sym__] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), - [anon_sym_DOLLAR] = ACTIONS(6201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6203), - [anon_sym_BSLASHbegin] = ACTIONS(6201), - [anon_sym_BSLASHtitle] = ACTIONS(6201), - [anon_sym_BSLASHauthor] = ACTIONS(6201), - [anon_sym_BSLASHusepackage] = ACTIONS(6201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), - [anon_sym_BSLASHinclude] = ACTIONS(6201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), - [anon_sym_BSLASHinput] = ACTIONS(6201), - [anon_sym_BSLASHsubfile] = ACTIONS(6201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), - [anon_sym_BSLASHbibliography] = ACTIONS(6201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), - [anon_sym_BSLASHincludesvg] = ACTIONS(6201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), - [anon_sym_BSLASHimport] = ACTIONS(6201), - [anon_sym_BSLASHsubimport] = ACTIONS(6201), - [anon_sym_BSLASHinputfrom] = ACTIONS(6201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), - [anon_sym_BSLASHincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHcaption] = ACTIONS(6201), - [anon_sym_BSLASHcite] = ACTIONS(6201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCite] = ACTIONS(6201), - [anon_sym_BSLASHnocite] = ACTIONS(6201), - [anon_sym_BSLASHcitet] = ACTIONS(6201), - [anon_sym_BSLASHcitep] = ACTIONS(6201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteauthor] = ACTIONS(6201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitetitle] = ACTIONS(6201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteyear] = ACTIONS(6201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitedate] = ACTIONS(6201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteurl] = ACTIONS(6201), - [anon_sym_BSLASHfullcite] = ACTIONS(6201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), - [anon_sym_BSLASHcitealt] = ACTIONS(6201), - [anon_sym_BSLASHcitealp] = ACTIONS(6201), - [anon_sym_BSLASHcitetext] = ACTIONS(6201), - [anon_sym_BSLASHparencite] = ACTIONS(6201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHParencite] = ACTIONS(6201), - [anon_sym_BSLASHfootcite] = ACTIONS(6201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), - [anon_sym_BSLASHtextcite] = ACTIONS(6201), - [anon_sym_BSLASHTextcite] = ACTIONS(6201), - [anon_sym_BSLASHsmartcite] = ACTIONS(6201), - [anon_sym_BSLASHSmartcite] = ACTIONS(6201), - [anon_sym_BSLASHsupercite] = ACTIONS(6201), - [anon_sym_BSLASHautocite] = ACTIONS(6201), - [anon_sym_BSLASHAutocite] = ACTIONS(6201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHvolcite] = ACTIONS(6201), - [anon_sym_BSLASHVolcite] = ACTIONS(6201), - [anon_sym_BSLASHpvolcite] = ACTIONS(6201), - [anon_sym_BSLASHPvolcite] = ACTIONS(6201), - [anon_sym_BSLASHfvolcite] = ACTIONS(6201), - [anon_sym_BSLASHftvolcite] = ACTIONS(6201), - [anon_sym_BSLASHsvolcite] = ACTIONS(6201), - [anon_sym_BSLASHSvolcite] = ACTIONS(6201), - [anon_sym_BSLASHtvolcite] = ACTIONS(6201), - [anon_sym_BSLASHTvolcite] = ACTIONS(6201), - [anon_sym_BSLASHavolcite] = ACTIONS(6201), - [anon_sym_BSLASHAvolcite] = ACTIONS(6201), - [anon_sym_BSLASHnotecite] = ACTIONS(6201), - [anon_sym_BSLASHNotecite] = ACTIONS(6201), - [anon_sym_BSLASHpnotecite] = ACTIONS(6201), - [anon_sym_BSLASHPnotecite] = ACTIONS(6201), - [anon_sym_BSLASHfnotecite] = ACTIONS(6201), - [anon_sym_BSLASHlabel] = ACTIONS(6201), - [anon_sym_BSLASHref] = ACTIONS(6201), - [anon_sym_BSLASHeqref] = ACTIONS(6201), - [anon_sym_BSLASHvref] = ACTIONS(6201), - [anon_sym_BSLASHVref] = ACTIONS(6201), - [anon_sym_BSLASHautoref] = ACTIONS(6201), - [anon_sym_BSLASHpageref] = ACTIONS(6201), - [anon_sym_BSLASHcref] = ACTIONS(6201), - [anon_sym_BSLASHCref] = ACTIONS(6201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnameCref] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHlabelcref] = ACTIONS(6201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCrefrange] = ACTIONS(6201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnewlabel] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHdef] = ACTIONS(6201), - [anon_sym_BSLASHlet] = ACTIONS(6201), - [anon_sym_BSLASHleft] = ACTIONS(6201), - [anon_sym_BSLASHbig] = ACTIONS(6201), - [anon_sym_BSLASHBig] = ACTIONS(6201), - [anon_sym_BSLASHbigg] = ACTIONS(6201), - [anon_sym_BSLASHBigg] = ACTIONS(6201), - [anon_sym_BSLASHbigl] = ACTIONS(6201), - [anon_sym_BSLASHBigl] = ACTIONS(6201), - [anon_sym_BSLASHbiggl] = ACTIONS(6201), - [anon_sym_BSLASHBiggl] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), - [anon_sym_BSLASHgls] = ACTIONS(6201), - [anon_sym_BSLASHGls] = ACTIONS(6201), - [anon_sym_BSLASHGLS] = ACTIONS(6201), - [anon_sym_BSLASHglspl] = ACTIONS(6201), - [anon_sym_BSLASHGlspl] = ACTIONS(6201), - [anon_sym_BSLASHGLSpl] = ACTIONS(6201), - [anon_sym_BSLASHglsdisp] = ACTIONS(6201), - [anon_sym_BSLASHglslink] = ACTIONS(6201), - [anon_sym_BSLASHglstext] = ACTIONS(6201), - [anon_sym_BSLASHGlstext] = ACTIONS(6201), - [anon_sym_BSLASHGLStext] = ACTIONS(6201), - [anon_sym_BSLASHglsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), - [anon_sym_BSLASHglsplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSplural] = ACTIONS(6201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHglsname] = ACTIONS(6201), - [anon_sym_BSLASHGlsname] = ACTIONS(6201), - [anon_sym_BSLASHGLSname] = ACTIONS(6201), - [anon_sym_BSLASHglssymbol] = ACTIONS(6201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), - [anon_sym_BSLASHglsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), - [anon_sym_BSLASHglsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), - [anon_sym_BSLASHglsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), - [anon_sym_BSLASHglsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), - [anon_sym_BSLASHglsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), - [anon_sym_BSLASHnewacronym] = ACTIONS(6201), - [anon_sym_BSLASHacrshort] = ACTIONS(6201), - [anon_sym_BSLASHAcrshort] = ACTIONS(6201), - [anon_sym_BSLASHACRshort] = ACTIONS(6201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), - [anon_sym_BSLASHacrlong] = ACTIONS(6201), - [anon_sym_BSLASHAcrlong] = ACTIONS(6201), - [anon_sym_BSLASHACRlong] = ACTIONS(6201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), - [anon_sym_BSLASHacrfull] = ACTIONS(6201), - [anon_sym_BSLASHAcrfull] = ACTIONS(6201), - [anon_sym_BSLASHACRfull] = ACTIONS(6201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), - [anon_sym_BSLASHacs] = ACTIONS(6201), - [anon_sym_BSLASHAcs] = ACTIONS(6201), - [anon_sym_BSLASHacsp] = ACTIONS(6201), - [anon_sym_BSLASHAcsp] = ACTIONS(6201), - [anon_sym_BSLASHacl] = ACTIONS(6201), - [anon_sym_BSLASHAcl] = ACTIONS(6201), - [anon_sym_BSLASHaclp] = ACTIONS(6201), - [anon_sym_BSLASHAclp] = ACTIONS(6201), - [anon_sym_BSLASHacf] = ACTIONS(6201), - [anon_sym_BSLASHAcf] = ACTIONS(6201), - [anon_sym_BSLASHacfp] = ACTIONS(6201), - [anon_sym_BSLASHAcfp] = ACTIONS(6201), - [anon_sym_BSLASHac] = ACTIONS(6201), - [anon_sym_BSLASHAc] = ACTIONS(6201), - [anon_sym_BSLASHacp] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), - [anon_sym_BSLASHcolor] = ACTIONS(6201), - [anon_sym_BSLASHcolorbox] = ACTIONS(6201), - [anon_sym_BSLASHtextcolor] = ACTIONS(6201), - [anon_sym_BSLASHpagecolor] = ACTIONS(6201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), - [anon_sym_BSLASHtext] = ACTIONS(6201), - [anon_sym_BSLASHintertext] = ACTIONS(6201), - [anon_sym_shortintertext] = ACTIONS(6201), - }, - [1380] = { - [sym_command_name] = ACTIONS(6181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6181), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_EQ] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_BSLASHpart] = ACTIONS(6181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddpart] = ACTIONS(6181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6183), - [anon_sym_BSLASHchapter] = ACTIONS(6181), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddchap] = ACTIONS(6181), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsection] = ACTIONS(6181), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHaddsec] = ACTIONS(6181), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubsection] = ACTIONS(6181), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6181), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6183), - [anon_sym_BSLASHparagraph] = ACTIONS(6181), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6181), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6183), - [anon_sym_BSLASHitem] = ACTIONS(6181), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6183), - [anon_sym_LBRACE] = ACTIONS(6183), - [sym_word] = ACTIONS(6181), - [sym_placeholder] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6183), - [anon_sym_DASH] = ACTIONS(6183), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_COLON] = ACTIONS(6181), - [anon_sym_SQUOTE] = ACTIONS(6181), - [anon_sym__] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6183), - [anon_sym_BSLASHbegin] = ACTIONS(6181), - [anon_sym_BSLASHtitle] = ACTIONS(6181), - [anon_sym_BSLASHauthor] = ACTIONS(6181), - [anon_sym_BSLASHusepackage] = ACTIONS(6181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), - [anon_sym_BSLASHinclude] = ACTIONS(6181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), - [anon_sym_BSLASHinput] = ACTIONS(6181), - [anon_sym_BSLASHsubfile] = ACTIONS(6181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), - [anon_sym_BSLASHbibliography] = ACTIONS(6181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), - [anon_sym_BSLASHincludesvg] = ACTIONS(6181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), - [anon_sym_BSLASHimport] = ACTIONS(6181), - [anon_sym_BSLASHsubimport] = ACTIONS(6181), - [anon_sym_BSLASHinputfrom] = ACTIONS(6181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), - [anon_sym_BSLASHincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHcaption] = ACTIONS(6181), - [anon_sym_BSLASHcite] = ACTIONS(6181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCite] = ACTIONS(6181), - [anon_sym_BSLASHnocite] = ACTIONS(6181), - [anon_sym_BSLASHcitet] = ACTIONS(6181), - [anon_sym_BSLASHcitep] = ACTIONS(6181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteauthor] = ACTIONS(6181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitetitle] = ACTIONS(6181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteyear] = ACTIONS(6181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitedate] = ACTIONS(6181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteurl] = ACTIONS(6181), - [anon_sym_BSLASHfullcite] = ACTIONS(6181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), - [anon_sym_BSLASHcitealt] = ACTIONS(6181), - [anon_sym_BSLASHcitealp] = ACTIONS(6181), - [anon_sym_BSLASHcitetext] = ACTIONS(6181), - [anon_sym_BSLASHparencite] = ACTIONS(6181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHParencite] = ACTIONS(6181), - [anon_sym_BSLASHfootcite] = ACTIONS(6181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), - [anon_sym_BSLASHtextcite] = ACTIONS(6181), - [anon_sym_BSLASHTextcite] = ACTIONS(6181), - [anon_sym_BSLASHsmartcite] = ACTIONS(6181), - [anon_sym_BSLASHSmartcite] = ACTIONS(6181), - [anon_sym_BSLASHsupercite] = ACTIONS(6181), - [anon_sym_BSLASHautocite] = ACTIONS(6181), - [anon_sym_BSLASHAutocite] = ACTIONS(6181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHvolcite] = ACTIONS(6181), - [anon_sym_BSLASHVolcite] = ACTIONS(6181), - [anon_sym_BSLASHpvolcite] = ACTIONS(6181), - [anon_sym_BSLASHPvolcite] = ACTIONS(6181), - [anon_sym_BSLASHfvolcite] = ACTIONS(6181), - [anon_sym_BSLASHftvolcite] = ACTIONS(6181), - [anon_sym_BSLASHsvolcite] = ACTIONS(6181), - [anon_sym_BSLASHSvolcite] = ACTIONS(6181), - [anon_sym_BSLASHtvolcite] = ACTIONS(6181), - [anon_sym_BSLASHTvolcite] = ACTIONS(6181), - [anon_sym_BSLASHavolcite] = ACTIONS(6181), - [anon_sym_BSLASHAvolcite] = ACTIONS(6181), - [anon_sym_BSLASHnotecite] = ACTIONS(6181), - [anon_sym_BSLASHNotecite] = ACTIONS(6181), - [anon_sym_BSLASHpnotecite] = ACTIONS(6181), - [anon_sym_BSLASHPnotecite] = ACTIONS(6181), - [anon_sym_BSLASHfnotecite] = ACTIONS(6181), - [anon_sym_BSLASHlabel] = ACTIONS(6181), - [anon_sym_BSLASHref] = ACTIONS(6181), - [anon_sym_BSLASHeqref] = ACTIONS(6181), - [anon_sym_BSLASHvref] = ACTIONS(6181), - [anon_sym_BSLASHVref] = ACTIONS(6181), - [anon_sym_BSLASHautoref] = ACTIONS(6181), - [anon_sym_BSLASHpageref] = ACTIONS(6181), - [anon_sym_BSLASHcref] = ACTIONS(6181), - [anon_sym_BSLASHCref] = ACTIONS(6181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnameCref] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHlabelcref] = ACTIONS(6181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCrefrange] = ACTIONS(6181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnewlabel] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHdef] = ACTIONS(6181), - [anon_sym_BSLASHlet] = ACTIONS(6181), - [anon_sym_BSLASHleft] = ACTIONS(6181), - [anon_sym_BSLASHbig] = ACTIONS(6181), - [anon_sym_BSLASHBig] = ACTIONS(6181), - [anon_sym_BSLASHbigg] = ACTIONS(6181), - [anon_sym_BSLASHBigg] = ACTIONS(6181), - [anon_sym_BSLASHbigl] = ACTIONS(6181), - [anon_sym_BSLASHBigl] = ACTIONS(6181), - [anon_sym_BSLASHbiggl] = ACTIONS(6181), - [anon_sym_BSLASHBiggl] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), - [anon_sym_BSLASHgls] = ACTIONS(6181), - [anon_sym_BSLASHGls] = ACTIONS(6181), - [anon_sym_BSLASHGLS] = ACTIONS(6181), - [anon_sym_BSLASHglspl] = ACTIONS(6181), - [anon_sym_BSLASHGlspl] = ACTIONS(6181), - [anon_sym_BSLASHGLSpl] = ACTIONS(6181), - [anon_sym_BSLASHglsdisp] = ACTIONS(6181), - [anon_sym_BSLASHglslink] = ACTIONS(6181), - [anon_sym_BSLASHglstext] = ACTIONS(6181), - [anon_sym_BSLASHGlstext] = ACTIONS(6181), - [anon_sym_BSLASHGLStext] = ACTIONS(6181), - [anon_sym_BSLASHglsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), - [anon_sym_BSLASHglsplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSplural] = ACTIONS(6181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHglsname] = ACTIONS(6181), - [anon_sym_BSLASHGlsname] = ACTIONS(6181), - [anon_sym_BSLASHGLSname] = ACTIONS(6181), - [anon_sym_BSLASHglssymbol] = ACTIONS(6181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), - [anon_sym_BSLASHglsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), - [anon_sym_BSLASHglsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), - [anon_sym_BSLASHglsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), - [anon_sym_BSLASHglsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), - [anon_sym_BSLASHglsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), - [anon_sym_BSLASHnewacronym] = ACTIONS(6181), - [anon_sym_BSLASHacrshort] = ACTIONS(6181), - [anon_sym_BSLASHAcrshort] = ACTIONS(6181), - [anon_sym_BSLASHACRshort] = ACTIONS(6181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), - [anon_sym_BSLASHacrlong] = ACTIONS(6181), - [anon_sym_BSLASHAcrlong] = ACTIONS(6181), - [anon_sym_BSLASHACRlong] = ACTIONS(6181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), - [anon_sym_BSLASHacrfull] = ACTIONS(6181), - [anon_sym_BSLASHAcrfull] = ACTIONS(6181), - [anon_sym_BSLASHACRfull] = ACTIONS(6181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), - [anon_sym_BSLASHacs] = ACTIONS(6181), - [anon_sym_BSLASHAcs] = ACTIONS(6181), - [anon_sym_BSLASHacsp] = ACTIONS(6181), - [anon_sym_BSLASHAcsp] = ACTIONS(6181), - [anon_sym_BSLASHacl] = ACTIONS(6181), - [anon_sym_BSLASHAcl] = ACTIONS(6181), - [anon_sym_BSLASHaclp] = ACTIONS(6181), - [anon_sym_BSLASHAclp] = ACTIONS(6181), - [anon_sym_BSLASHacf] = ACTIONS(6181), - [anon_sym_BSLASHAcf] = ACTIONS(6181), - [anon_sym_BSLASHacfp] = ACTIONS(6181), - [anon_sym_BSLASHAcfp] = ACTIONS(6181), - [anon_sym_BSLASHac] = ACTIONS(6181), - [anon_sym_BSLASHAc] = ACTIONS(6181), - [anon_sym_BSLASHacp] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), - [anon_sym_BSLASHcolor] = ACTIONS(6181), - [anon_sym_BSLASHcolorbox] = ACTIONS(6181), - [anon_sym_BSLASHtextcolor] = ACTIONS(6181), - [anon_sym_BSLASHpagecolor] = ACTIONS(6181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), - [anon_sym_BSLASHtext] = ACTIONS(6181), - [anon_sym_BSLASHintertext] = ACTIONS(6181), - [anon_sym_shortintertext] = ACTIONS(6181), - }, - [1381] = { - [sym_command_name] = ACTIONS(6529), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6529), - [anon_sym_LBRACK] = ACTIONS(6531), - [anon_sym_RBRACK] = ACTIONS(6531), - [anon_sym_COMMA] = ACTIONS(6531), - [anon_sym_EQ] = ACTIONS(6531), - [anon_sym_LPAREN] = ACTIONS(6531), - [anon_sym_RPAREN] = ACTIONS(6531), - [anon_sym_BSLASHpart] = ACTIONS(6529), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddpart] = ACTIONS(6529), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6531), - [anon_sym_BSLASHchapter] = ACTIONS(6529), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddchap] = ACTIONS(6529), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsection] = ACTIONS(6529), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHaddsec] = ACTIONS(6529), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubsection] = ACTIONS(6529), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6529), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6531), - [anon_sym_BSLASHparagraph] = ACTIONS(6529), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6531), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6529), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6531), - [anon_sym_BSLASHitem] = ACTIONS(6529), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6531), - [anon_sym_LBRACE] = ACTIONS(6531), - [sym_word] = ACTIONS(6529), - [sym_placeholder] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6531), - [anon_sym_DASH] = ACTIONS(6531), - [anon_sym_STAR] = ACTIONS(6531), - [anon_sym_SLASH] = ACTIONS(6531), - [anon_sym_LT] = ACTIONS(6529), - [anon_sym_GT] = ACTIONS(6529), - [anon_sym_BANG] = ACTIONS(6529), - [anon_sym_PIPE] = ACTIONS(6529), - [anon_sym_COLON] = ACTIONS(6529), - [anon_sym_SQUOTE] = ACTIONS(6529), - [anon_sym__] = ACTIONS(6531), - [anon_sym_CARET] = ACTIONS(6531), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6531), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6531), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6531), - [anon_sym_DOLLAR] = ACTIONS(6529), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6531), - [anon_sym_BSLASHbegin] = ACTIONS(6529), - [anon_sym_BSLASHtitle] = ACTIONS(6529), - [anon_sym_BSLASHauthor] = ACTIONS(6529), - [anon_sym_BSLASHusepackage] = ACTIONS(6529), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6529), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6529), - [anon_sym_BSLASHinclude] = ACTIONS(6529), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6529), - [anon_sym_BSLASHinput] = ACTIONS(6529), - [anon_sym_BSLASHsubfile] = ACTIONS(6529), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6529), - [anon_sym_BSLASHbibliography] = ACTIONS(6529), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6529), - [anon_sym_BSLASHincludesvg] = ACTIONS(6529), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6529), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6529), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6529), - [anon_sym_BSLASHimport] = ACTIONS(6529), - [anon_sym_BSLASHsubimport] = ACTIONS(6529), - [anon_sym_BSLASHinputfrom] = ACTIONS(6529), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6529), - [anon_sym_BSLASHincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHcaption] = ACTIONS(6529), - [anon_sym_BSLASHcite] = ACTIONS(6529), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCite] = ACTIONS(6529), - [anon_sym_BSLASHnocite] = ACTIONS(6529), - [anon_sym_BSLASHcitet] = ACTIONS(6529), - [anon_sym_BSLASHcitep] = ACTIONS(6529), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteauthor] = ACTIONS(6529), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6529), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitetitle] = ACTIONS(6529), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteyear] = ACTIONS(6529), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitedate] = ACTIONS(6529), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteurl] = ACTIONS(6529), - [anon_sym_BSLASHfullcite] = ACTIONS(6529), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6529), - [anon_sym_BSLASHcitealt] = ACTIONS(6529), - [anon_sym_BSLASHcitealp] = ACTIONS(6529), - [anon_sym_BSLASHcitetext] = ACTIONS(6529), - [anon_sym_BSLASHparencite] = ACTIONS(6529), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHParencite] = ACTIONS(6529), - [anon_sym_BSLASHfootcite] = ACTIONS(6529), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6529), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6529), - [anon_sym_BSLASHtextcite] = ACTIONS(6529), - [anon_sym_BSLASHTextcite] = ACTIONS(6529), - [anon_sym_BSLASHsmartcite] = ACTIONS(6529), - [anon_sym_BSLASHSmartcite] = ACTIONS(6529), - [anon_sym_BSLASHsupercite] = ACTIONS(6529), - [anon_sym_BSLASHautocite] = ACTIONS(6529), - [anon_sym_BSLASHAutocite] = ACTIONS(6529), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHvolcite] = ACTIONS(6529), - [anon_sym_BSLASHVolcite] = ACTIONS(6529), - [anon_sym_BSLASHpvolcite] = ACTIONS(6529), - [anon_sym_BSLASHPvolcite] = ACTIONS(6529), - [anon_sym_BSLASHfvolcite] = ACTIONS(6529), - [anon_sym_BSLASHftvolcite] = ACTIONS(6529), - [anon_sym_BSLASHsvolcite] = ACTIONS(6529), - [anon_sym_BSLASHSvolcite] = ACTIONS(6529), - [anon_sym_BSLASHtvolcite] = ACTIONS(6529), - [anon_sym_BSLASHTvolcite] = ACTIONS(6529), - [anon_sym_BSLASHavolcite] = ACTIONS(6529), - [anon_sym_BSLASHAvolcite] = ACTIONS(6529), - [anon_sym_BSLASHnotecite] = ACTIONS(6529), - [anon_sym_BSLASHNotecite] = ACTIONS(6529), - [anon_sym_BSLASHpnotecite] = ACTIONS(6529), - [anon_sym_BSLASHPnotecite] = ACTIONS(6529), - [anon_sym_BSLASHfnotecite] = ACTIONS(6529), - [anon_sym_BSLASHlabel] = ACTIONS(6529), - [anon_sym_BSLASHref] = ACTIONS(6529), - [anon_sym_BSLASHeqref] = ACTIONS(6529), - [anon_sym_BSLASHvref] = ACTIONS(6529), - [anon_sym_BSLASHVref] = ACTIONS(6529), - [anon_sym_BSLASHautoref] = ACTIONS(6529), - [anon_sym_BSLASHpageref] = ACTIONS(6529), - [anon_sym_BSLASHcref] = ACTIONS(6529), - [anon_sym_BSLASHCref] = ACTIONS(6529), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnameCref] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHlabelcref] = ACTIONS(6529), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCrefrange] = ACTIONS(6529), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnewlabel] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6529), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6529), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6531), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHdef] = ACTIONS(6529), - [anon_sym_BSLASHlet] = ACTIONS(6529), - [anon_sym_BSLASHleft] = ACTIONS(6529), - [anon_sym_BSLASHbig] = ACTIONS(6529), - [anon_sym_BSLASHBig] = ACTIONS(6529), - [anon_sym_BSLASHbigg] = ACTIONS(6529), - [anon_sym_BSLASHBigg] = ACTIONS(6529), - [anon_sym_BSLASHbigl] = ACTIONS(6529), - [anon_sym_BSLASHBigl] = ACTIONS(6529), - [anon_sym_BSLASHbiggl] = ACTIONS(6529), - [anon_sym_BSLASHBiggl] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6529), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6529), - [anon_sym_BSLASHgls] = ACTIONS(6529), - [anon_sym_BSLASHGls] = ACTIONS(6529), - [anon_sym_BSLASHGLS] = ACTIONS(6529), - [anon_sym_BSLASHglspl] = ACTIONS(6529), - [anon_sym_BSLASHGlspl] = ACTIONS(6529), - [anon_sym_BSLASHGLSpl] = ACTIONS(6529), - [anon_sym_BSLASHglsdisp] = ACTIONS(6529), - [anon_sym_BSLASHglslink] = ACTIONS(6529), - [anon_sym_BSLASHglstext] = ACTIONS(6529), - [anon_sym_BSLASHGlstext] = ACTIONS(6529), - [anon_sym_BSLASHGLStext] = ACTIONS(6529), - [anon_sym_BSLASHglsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6529), - [anon_sym_BSLASHglsplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSplural] = ACTIONS(6529), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHglsname] = ACTIONS(6529), - [anon_sym_BSLASHGlsname] = ACTIONS(6529), - [anon_sym_BSLASHGLSname] = ACTIONS(6529), - [anon_sym_BSLASHglssymbol] = ACTIONS(6529), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6529), - [anon_sym_BSLASHglsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6529), - [anon_sym_BSLASHglsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6529), - [anon_sym_BSLASHglsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6529), - [anon_sym_BSLASHglsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6529), - [anon_sym_BSLASHglsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6529), - [anon_sym_BSLASHnewacronym] = ACTIONS(6529), - [anon_sym_BSLASHacrshort] = ACTIONS(6529), - [anon_sym_BSLASHAcrshort] = ACTIONS(6529), - [anon_sym_BSLASHACRshort] = ACTIONS(6529), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6529), - [anon_sym_BSLASHacrlong] = ACTIONS(6529), - [anon_sym_BSLASHAcrlong] = ACTIONS(6529), - [anon_sym_BSLASHACRlong] = ACTIONS(6529), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6529), - [anon_sym_BSLASHacrfull] = ACTIONS(6529), - [anon_sym_BSLASHAcrfull] = ACTIONS(6529), - [anon_sym_BSLASHACRfull] = ACTIONS(6529), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6529), - [anon_sym_BSLASHacs] = ACTIONS(6529), - [anon_sym_BSLASHAcs] = ACTIONS(6529), - [anon_sym_BSLASHacsp] = ACTIONS(6529), - [anon_sym_BSLASHAcsp] = ACTIONS(6529), - [anon_sym_BSLASHacl] = ACTIONS(6529), - [anon_sym_BSLASHAcl] = ACTIONS(6529), - [anon_sym_BSLASHaclp] = ACTIONS(6529), - [anon_sym_BSLASHAclp] = ACTIONS(6529), - [anon_sym_BSLASHacf] = ACTIONS(6529), - [anon_sym_BSLASHAcf] = ACTIONS(6529), - [anon_sym_BSLASHacfp] = ACTIONS(6529), - [anon_sym_BSLASHAcfp] = ACTIONS(6529), - [anon_sym_BSLASHac] = ACTIONS(6529), - [anon_sym_BSLASHAc] = ACTIONS(6529), - [anon_sym_BSLASHacp] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6529), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6529), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6529), - [anon_sym_BSLASHcolor] = ACTIONS(6529), - [anon_sym_BSLASHcolorbox] = ACTIONS(6529), - [anon_sym_BSLASHtextcolor] = ACTIONS(6529), - [anon_sym_BSLASHpagecolor] = ACTIONS(6529), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6529), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6529), - [anon_sym_BSLASHtext] = ACTIONS(6529), - [anon_sym_BSLASHintertext] = ACTIONS(6529), - [anon_sym_shortintertext] = ACTIONS(6529), - }, - [1382] = { - [sym_command_name] = ACTIONS(6249), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_RBRACK] = ACTIONS(6251), - [anon_sym_COMMA] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(6251), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_BSLASHpart] = ACTIONS(6249), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddpart] = ACTIONS(6249), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6251), - [anon_sym_BSLASHchapter] = ACTIONS(6249), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddchap] = ACTIONS(6249), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsection] = ACTIONS(6249), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHaddsec] = ACTIONS(6249), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubsection] = ACTIONS(6249), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6249), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6251), - [anon_sym_BSLASHparagraph] = ACTIONS(6249), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6251), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6249), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6251), - [anon_sym_BSLASHitem] = ACTIONS(6249), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6251), - [anon_sym_LBRACE] = ACTIONS(6251), - [sym_word] = ACTIONS(6249), - [sym_placeholder] = ACTIONS(6251), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6251), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_LT] = ACTIONS(6249), - [anon_sym_GT] = ACTIONS(6249), - [anon_sym_BANG] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_SQUOTE] = ACTIONS(6249), - [anon_sym__] = ACTIONS(6251), - [anon_sym_CARET] = ACTIONS(6251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), - [anon_sym_DOLLAR] = ACTIONS(6249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6251), - [anon_sym_BSLASHbegin] = ACTIONS(6249), - [anon_sym_BSLASHtitle] = ACTIONS(6249), - [anon_sym_BSLASHauthor] = ACTIONS(6249), - [anon_sym_BSLASHusepackage] = ACTIONS(6249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), - [anon_sym_BSLASHinclude] = ACTIONS(6249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), - [anon_sym_BSLASHinput] = ACTIONS(6249), - [anon_sym_BSLASHsubfile] = ACTIONS(6249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), - [anon_sym_BSLASHbibliography] = ACTIONS(6249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), - [anon_sym_BSLASHincludesvg] = ACTIONS(6249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), - [anon_sym_BSLASHimport] = ACTIONS(6249), - [anon_sym_BSLASHsubimport] = ACTIONS(6249), - [anon_sym_BSLASHinputfrom] = ACTIONS(6249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), - [anon_sym_BSLASHincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHcaption] = ACTIONS(6249), - [anon_sym_BSLASHcite] = ACTIONS(6249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCite] = ACTIONS(6249), - [anon_sym_BSLASHnocite] = ACTIONS(6249), - [anon_sym_BSLASHcitet] = ACTIONS(6249), - [anon_sym_BSLASHcitep] = ACTIONS(6249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteauthor] = ACTIONS(6249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitetitle] = ACTIONS(6249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteyear] = ACTIONS(6249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitedate] = ACTIONS(6249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteurl] = ACTIONS(6249), - [anon_sym_BSLASHfullcite] = ACTIONS(6249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), - [anon_sym_BSLASHcitealt] = ACTIONS(6249), - [anon_sym_BSLASHcitealp] = ACTIONS(6249), - [anon_sym_BSLASHcitetext] = ACTIONS(6249), - [anon_sym_BSLASHparencite] = ACTIONS(6249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHParencite] = ACTIONS(6249), - [anon_sym_BSLASHfootcite] = ACTIONS(6249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), - [anon_sym_BSLASHtextcite] = ACTIONS(6249), - [anon_sym_BSLASHTextcite] = ACTIONS(6249), - [anon_sym_BSLASHsmartcite] = ACTIONS(6249), - [anon_sym_BSLASHSmartcite] = ACTIONS(6249), - [anon_sym_BSLASHsupercite] = ACTIONS(6249), - [anon_sym_BSLASHautocite] = ACTIONS(6249), - [anon_sym_BSLASHAutocite] = ACTIONS(6249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHvolcite] = ACTIONS(6249), - [anon_sym_BSLASHVolcite] = ACTIONS(6249), - [anon_sym_BSLASHpvolcite] = ACTIONS(6249), - [anon_sym_BSLASHPvolcite] = ACTIONS(6249), - [anon_sym_BSLASHfvolcite] = ACTIONS(6249), - [anon_sym_BSLASHftvolcite] = ACTIONS(6249), - [anon_sym_BSLASHsvolcite] = ACTIONS(6249), - [anon_sym_BSLASHSvolcite] = ACTIONS(6249), - [anon_sym_BSLASHtvolcite] = ACTIONS(6249), - [anon_sym_BSLASHTvolcite] = ACTIONS(6249), - [anon_sym_BSLASHavolcite] = ACTIONS(6249), - [anon_sym_BSLASHAvolcite] = ACTIONS(6249), - [anon_sym_BSLASHnotecite] = ACTIONS(6249), - [anon_sym_BSLASHNotecite] = ACTIONS(6249), - [anon_sym_BSLASHpnotecite] = ACTIONS(6249), - [anon_sym_BSLASHPnotecite] = ACTIONS(6249), - [anon_sym_BSLASHfnotecite] = ACTIONS(6249), - [anon_sym_BSLASHlabel] = ACTIONS(6249), - [anon_sym_BSLASHref] = ACTIONS(6249), - [anon_sym_BSLASHeqref] = ACTIONS(6249), - [anon_sym_BSLASHvref] = ACTIONS(6249), - [anon_sym_BSLASHVref] = ACTIONS(6249), - [anon_sym_BSLASHautoref] = ACTIONS(6249), - [anon_sym_BSLASHpageref] = ACTIONS(6249), - [anon_sym_BSLASHcref] = ACTIONS(6249), - [anon_sym_BSLASHCref] = ACTIONS(6249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnameCref] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHlabelcref] = ACTIONS(6249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCrefrange] = ACTIONS(6249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnewlabel] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHdef] = ACTIONS(6249), - [anon_sym_BSLASHlet] = ACTIONS(6249), - [anon_sym_BSLASHleft] = ACTIONS(6249), - [anon_sym_BSLASHbig] = ACTIONS(6249), - [anon_sym_BSLASHBig] = ACTIONS(6249), - [anon_sym_BSLASHbigg] = ACTIONS(6249), - [anon_sym_BSLASHBigg] = ACTIONS(6249), - [anon_sym_BSLASHbigl] = ACTIONS(6249), - [anon_sym_BSLASHBigl] = ACTIONS(6249), - [anon_sym_BSLASHbiggl] = ACTIONS(6249), - [anon_sym_BSLASHBiggl] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), - [anon_sym_BSLASHgls] = ACTIONS(6249), - [anon_sym_BSLASHGls] = ACTIONS(6249), - [anon_sym_BSLASHGLS] = ACTIONS(6249), - [anon_sym_BSLASHglspl] = ACTIONS(6249), - [anon_sym_BSLASHGlspl] = ACTIONS(6249), - [anon_sym_BSLASHGLSpl] = ACTIONS(6249), - [anon_sym_BSLASHglsdisp] = ACTIONS(6249), - [anon_sym_BSLASHglslink] = ACTIONS(6249), - [anon_sym_BSLASHglstext] = ACTIONS(6249), - [anon_sym_BSLASHGlstext] = ACTIONS(6249), - [anon_sym_BSLASHGLStext] = ACTIONS(6249), - [anon_sym_BSLASHglsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), - [anon_sym_BSLASHglsplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSplural] = ACTIONS(6249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHglsname] = ACTIONS(6249), - [anon_sym_BSLASHGlsname] = ACTIONS(6249), - [anon_sym_BSLASHGLSname] = ACTIONS(6249), - [anon_sym_BSLASHglssymbol] = ACTIONS(6249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), - [anon_sym_BSLASHglsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), - [anon_sym_BSLASHglsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), - [anon_sym_BSLASHglsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), - [anon_sym_BSLASHglsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), - [anon_sym_BSLASHglsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), - [anon_sym_BSLASHnewacronym] = ACTIONS(6249), - [anon_sym_BSLASHacrshort] = ACTIONS(6249), - [anon_sym_BSLASHAcrshort] = ACTIONS(6249), - [anon_sym_BSLASHACRshort] = ACTIONS(6249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), - [anon_sym_BSLASHacrlong] = ACTIONS(6249), - [anon_sym_BSLASHAcrlong] = ACTIONS(6249), - [anon_sym_BSLASHACRlong] = ACTIONS(6249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), - [anon_sym_BSLASHacrfull] = ACTIONS(6249), - [anon_sym_BSLASHAcrfull] = ACTIONS(6249), - [anon_sym_BSLASHACRfull] = ACTIONS(6249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), - [anon_sym_BSLASHacs] = ACTIONS(6249), - [anon_sym_BSLASHAcs] = ACTIONS(6249), - [anon_sym_BSLASHacsp] = ACTIONS(6249), - [anon_sym_BSLASHAcsp] = ACTIONS(6249), - [anon_sym_BSLASHacl] = ACTIONS(6249), - [anon_sym_BSLASHAcl] = ACTIONS(6249), - [anon_sym_BSLASHaclp] = ACTIONS(6249), - [anon_sym_BSLASHAclp] = ACTIONS(6249), - [anon_sym_BSLASHacf] = ACTIONS(6249), - [anon_sym_BSLASHAcf] = ACTIONS(6249), - [anon_sym_BSLASHacfp] = ACTIONS(6249), - [anon_sym_BSLASHAcfp] = ACTIONS(6249), - [anon_sym_BSLASHac] = ACTIONS(6249), - [anon_sym_BSLASHAc] = ACTIONS(6249), - [anon_sym_BSLASHacp] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), - [anon_sym_BSLASHcolor] = ACTIONS(6249), - [anon_sym_BSLASHcolorbox] = ACTIONS(6249), - [anon_sym_BSLASHtextcolor] = ACTIONS(6249), - [anon_sym_BSLASHpagecolor] = ACTIONS(6249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), - [anon_sym_BSLASHtext] = ACTIONS(6249), - [anon_sym_BSLASHintertext] = ACTIONS(6249), - [anon_sym_shortintertext] = ACTIONS(6249), - }, - [1383] = { - [sym_command_name] = ACTIONS(6169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6169), - [anon_sym_LBRACK] = ACTIONS(6171), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_EQ] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_BSLASHpart] = ACTIONS(6169), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddpart] = ACTIONS(6169), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6171), - [anon_sym_BSLASHchapter] = ACTIONS(6169), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddchap] = ACTIONS(6169), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsection] = ACTIONS(6169), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHaddsec] = ACTIONS(6169), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubsection] = ACTIONS(6169), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6169), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6171), - [anon_sym_BSLASHparagraph] = ACTIONS(6169), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6171), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6169), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6171), - [anon_sym_BSLASHitem] = ACTIONS(6169), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6171), - [anon_sym_LBRACE] = ACTIONS(6171), - [sym_word] = ACTIONS(6169), - [sym_placeholder] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6171), - [anon_sym_DASH] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_COLON] = ACTIONS(6169), - [anon_sym_SQUOTE] = ACTIONS(6169), - [anon_sym__] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6171), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6171), - [anon_sym_DOLLAR] = ACTIONS(6169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6171), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6171), - [anon_sym_BSLASHbegin] = ACTIONS(6169), - [anon_sym_BSLASHtitle] = ACTIONS(6169), - [anon_sym_BSLASHauthor] = ACTIONS(6169), - [anon_sym_BSLASHusepackage] = ACTIONS(6169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6169), - [anon_sym_BSLASHinclude] = ACTIONS(6169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6169), - [anon_sym_BSLASHinput] = ACTIONS(6169), - [anon_sym_BSLASHsubfile] = ACTIONS(6169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6169), - [anon_sym_BSLASHbibliography] = ACTIONS(6169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6169), - [anon_sym_BSLASHincludesvg] = ACTIONS(6169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6169), - [anon_sym_BSLASHimport] = ACTIONS(6169), - [anon_sym_BSLASHsubimport] = ACTIONS(6169), - [anon_sym_BSLASHinputfrom] = ACTIONS(6169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6169), - [anon_sym_BSLASHincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHcaption] = ACTIONS(6169), - [anon_sym_BSLASHcite] = ACTIONS(6169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCite] = ACTIONS(6169), - [anon_sym_BSLASHnocite] = ACTIONS(6169), - [anon_sym_BSLASHcitet] = ACTIONS(6169), - [anon_sym_BSLASHcitep] = ACTIONS(6169), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteauthor] = ACTIONS(6169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitetitle] = ACTIONS(6169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteyear] = ACTIONS(6169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitedate] = ACTIONS(6169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteurl] = ACTIONS(6169), - [anon_sym_BSLASHfullcite] = ACTIONS(6169), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6169), - [anon_sym_BSLASHcitealt] = ACTIONS(6169), - [anon_sym_BSLASHcitealp] = ACTIONS(6169), - [anon_sym_BSLASHcitetext] = ACTIONS(6169), - [anon_sym_BSLASHparencite] = ACTIONS(6169), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHParencite] = ACTIONS(6169), - [anon_sym_BSLASHfootcite] = ACTIONS(6169), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6169), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6169), - [anon_sym_BSLASHtextcite] = ACTIONS(6169), - [anon_sym_BSLASHTextcite] = ACTIONS(6169), - [anon_sym_BSLASHsmartcite] = ACTIONS(6169), - [anon_sym_BSLASHSmartcite] = ACTIONS(6169), - [anon_sym_BSLASHsupercite] = ACTIONS(6169), - [anon_sym_BSLASHautocite] = ACTIONS(6169), - [anon_sym_BSLASHAutocite] = ACTIONS(6169), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHvolcite] = ACTIONS(6169), - [anon_sym_BSLASHVolcite] = ACTIONS(6169), - [anon_sym_BSLASHpvolcite] = ACTIONS(6169), - [anon_sym_BSLASHPvolcite] = ACTIONS(6169), - [anon_sym_BSLASHfvolcite] = ACTIONS(6169), - [anon_sym_BSLASHftvolcite] = ACTIONS(6169), - [anon_sym_BSLASHsvolcite] = ACTIONS(6169), - [anon_sym_BSLASHSvolcite] = ACTIONS(6169), - [anon_sym_BSLASHtvolcite] = ACTIONS(6169), - [anon_sym_BSLASHTvolcite] = ACTIONS(6169), - [anon_sym_BSLASHavolcite] = ACTIONS(6169), - [anon_sym_BSLASHAvolcite] = ACTIONS(6169), - [anon_sym_BSLASHnotecite] = ACTIONS(6169), - [anon_sym_BSLASHNotecite] = ACTIONS(6169), - [anon_sym_BSLASHpnotecite] = ACTIONS(6169), - [anon_sym_BSLASHPnotecite] = ACTIONS(6169), - [anon_sym_BSLASHfnotecite] = ACTIONS(6169), - [anon_sym_BSLASHlabel] = ACTIONS(6169), - [anon_sym_BSLASHref] = ACTIONS(6169), - [anon_sym_BSLASHeqref] = ACTIONS(6169), - [anon_sym_BSLASHvref] = ACTIONS(6169), - [anon_sym_BSLASHVref] = ACTIONS(6169), - [anon_sym_BSLASHautoref] = ACTIONS(6169), - [anon_sym_BSLASHpageref] = ACTIONS(6169), - [anon_sym_BSLASHcref] = ACTIONS(6169), - [anon_sym_BSLASHCref] = ACTIONS(6169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnameCref] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHlabelcref] = ACTIONS(6169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCrefrange] = ACTIONS(6169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnewlabel] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6171), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHdef] = ACTIONS(6169), - [anon_sym_BSLASHlet] = ACTIONS(6169), - [anon_sym_BSLASHleft] = ACTIONS(6169), - [anon_sym_BSLASHbig] = ACTIONS(6169), - [anon_sym_BSLASHBig] = ACTIONS(6169), - [anon_sym_BSLASHbigg] = ACTIONS(6169), - [anon_sym_BSLASHBigg] = ACTIONS(6169), - [anon_sym_BSLASHbigl] = ACTIONS(6169), - [anon_sym_BSLASHBigl] = ACTIONS(6169), - [anon_sym_BSLASHbiggl] = ACTIONS(6169), - [anon_sym_BSLASHBiggl] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6169), - [anon_sym_BSLASHgls] = ACTIONS(6169), - [anon_sym_BSLASHGls] = ACTIONS(6169), - [anon_sym_BSLASHGLS] = ACTIONS(6169), - [anon_sym_BSLASHglspl] = ACTIONS(6169), - [anon_sym_BSLASHGlspl] = ACTIONS(6169), - [anon_sym_BSLASHGLSpl] = ACTIONS(6169), - [anon_sym_BSLASHglsdisp] = ACTIONS(6169), - [anon_sym_BSLASHglslink] = ACTIONS(6169), - [anon_sym_BSLASHglstext] = ACTIONS(6169), - [anon_sym_BSLASHGlstext] = ACTIONS(6169), - [anon_sym_BSLASHGLStext] = ACTIONS(6169), - [anon_sym_BSLASHglsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6169), - [anon_sym_BSLASHglsplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSplural] = ACTIONS(6169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHglsname] = ACTIONS(6169), - [anon_sym_BSLASHGlsname] = ACTIONS(6169), - [anon_sym_BSLASHGLSname] = ACTIONS(6169), - [anon_sym_BSLASHglssymbol] = ACTIONS(6169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6169), - [anon_sym_BSLASHglsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6169), - [anon_sym_BSLASHglsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6169), - [anon_sym_BSLASHglsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6169), - [anon_sym_BSLASHglsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6169), - [anon_sym_BSLASHglsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6169), - [anon_sym_BSLASHnewacronym] = ACTIONS(6169), - [anon_sym_BSLASHacrshort] = ACTIONS(6169), - [anon_sym_BSLASHAcrshort] = ACTIONS(6169), - [anon_sym_BSLASHACRshort] = ACTIONS(6169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6169), - [anon_sym_BSLASHacrlong] = ACTIONS(6169), - [anon_sym_BSLASHAcrlong] = ACTIONS(6169), - [anon_sym_BSLASHACRlong] = ACTIONS(6169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6169), - [anon_sym_BSLASHacrfull] = ACTIONS(6169), - [anon_sym_BSLASHAcrfull] = ACTIONS(6169), - [anon_sym_BSLASHACRfull] = ACTIONS(6169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6169), - [anon_sym_BSLASHacs] = ACTIONS(6169), - [anon_sym_BSLASHAcs] = ACTIONS(6169), - [anon_sym_BSLASHacsp] = ACTIONS(6169), - [anon_sym_BSLASHAcsp] = ACTIONS(6169), - [anon_sym_BSLASHacl] = ACTIONS(6169), - [anon_sym_BSLASHAcl] = ACTIONS(6169), - [anon_sym_BSLASHaclp] = ACTIONS(6169), - [anon_sym_BSLASHAclp] = ACTIONS(6169), - [anon_sym_BSLASHacf] = ACTIONS(6169), - [anon_sym_BSLASHAcf] = ACTIONS(6169), - [anon_sym_BSLASHacfp] = ACTIONS(6169), - [anon_sym_BSLASHAcfp] = ACTIONS(6169), - [anon_sym_BSLASHac] = ACTIONS(6169), - [anon_sym_BSLASHAc] = ACTIONS(6169), - [anon_sym_BSLASHacp] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6169), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6169), - [anon_sym_BSLASHcolor] = ACTIONS(6169), - [anon_sym_BSLASHcolorbox] = ACTIONS(6169), - [anon_sym_BSLASHtextcolor] = ACTIONS(6169), - [anon_sym_BSLASHpagecolor] = ACTIONS(6169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6169), - [anon_sym_BSLASHtext] = ACTIONS(6169), - [anon_sym_BSLASHintertext] = ACTIONS(6169), - [anon_sym_shortintertext] = ACTIONS(6169), - }, - [1384] = { - [sym_command_name] = ACTIONS(6185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_RBRACK] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_EQ] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_BSLASHpart] = ACTIONS(6185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddpart] = ACTIONS(6185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6187), - [anon_sym_BSLASHchapter] = ACTIONS(6185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddchap] = ACTIONS(6185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsection] = ACTIONS(6185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHaddsec] = ACTIONS(6185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubsection] = ACTIONS(6185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6187), - [anon_sym_BSLASHparagraph] = ACTIONS(6185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6187), - [anon_sym_BSLASHitem] = ACTIONS(6185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6187), - [anon_sym_LBRACE] = ACTIONS(6187), - [sym_word] = ACTIONS(6185), - [sym_placeholder] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6187), - [anon_sym_DASH] = ACTIONS(6187), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_SQUOTE] = ACTIONS(6185), - [anon_sym__] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), - [anon_sym_DOLLAR] = ACTIONS(6185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), - [anon_sym_BSLASHbegin] = ACTIONS(6185), - [anon_sym_BSLASHend] = ACTIONS(6185), - [anon_sym_BSLASHtitle] = ACTIONS(6185), - [anon_sym_BSLASHauthor] = ACTIONS(6185), - [anon_sym_BSLASHusepackage] = ACTIONS(6185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), - [anon_sym_BSLASHinclude] = ACTIONS(6185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), - [anon_sym_BSLASHinput] = ACTIONS(6185), - [anon_sym_BSLASHsubfile] = ACTIONS(6185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), - [anon_sym_BSLASHbibliography] = ACTIONS(6185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), - [anon_sym_BSLASHincludesvg] = ACTIONS(6185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), - [anon_sym_BSLASHimport] = ACTIONS(6185), - [anon_sym_BSLASHsubimport] = ACTIONS(6185), - [anon_sym_BSLASHinputfrom] = ACTIONS(6185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), - [anon_sym_BSLASHincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHcaption] = ACTIONS(6185), - [anon_sym_BSLASHcite] = ACTIONS(6185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCite] = ACTIONS(6185), - [anon_sym_BSLASHnocite] = ACTIONS(6185), - [anon_sym_BSLASHcitet] = ACTIONS(6185), - [anon_sym_BSLASHcitep] = ACTIONS(6185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteauthor] = ACTIONS(6185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitetitle] = ACTIONS(6185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteyear] = ACTIONS(6185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitedate] = ACTIONS(6185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteurl] = ACTIONS(6185), - [anon_sym_BSLASHfullcite] = ACTIONS(6185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), - [anon_sym_BSLASHcitealt] = ACTIONS(6185), - [anon_sym_BSLASHcitealp] = ACTIONS(6185), - [anon_sym_BSLASHcitetext] = ACTIONS(6185), - [anon_sym_BSLASHparencite] = ACTIONS(6185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHParencite] = ACTIONS(6185), - [anon_sym_BSLASHfootcite] = ACTIONS(6185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), - [anon_sym_BSLASHtextcite] = ACTIONS(6185), - [anon_sym_BSLASHTextcite] = ACTIONS(6185), - [anon_sym_BSLASHsmartcite] = ACTIONS(6185), - [anon_sym_BSLASHSmartcite] = ACTIONS(6185), - [anon_sym_BSLASHsupercite] = ACTIONS(6185), - [anon_sym_BSLASHautocite] = ACTIONS(6185), - [anon_sym_BSLASHAutocite] = ACTIONS(6185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHvolcite] = ACTIONS(6185), - [anon_sym_BSLASHVolcite] = ACTIONS(6185), - [anon_sym_BSLASHpvolcite] = ACTIONS(6185), - [anon_sym_BSLASHPvolcite] = ACTIONS(6185), - [anon_sym_BSLASHfvolcite] = ACTIONS(6185), - [anon_sym_BSLASHftvolcite] = ACTIONS(6185), - [anon_sym_BSLASHsvolcite] = ACTIONS(6185), - [anon_sym_BSLASHSvolcite] = ACTIONS(6185), - [anon_sym_BSLASHtvolcite] = ACTIONS(6185), - [anon_sym_BSLASHTvolcite] = ACTIONS(6185), - [anon_sym_BSLASHavolcite] = ACTIONS(6185), - [anon_sym_BSLASHAvolcite] = ACTIONS(6185), - [anon_sym_BSLASHnotecite] = ACTIONS(6185), - [anon_sym_BSLASHNotecite] = ACTIONS(6185), - [anon_sym_BSLASHpnotecite] = ACTIONS(6185), - [anon_sym_BSLASHPnotecite] = ACTIONS(6185), - [anon_sym_BSLASHfnotecite] = ACTIONS(6185), - [anon_sym_BSLASHlabel] = ACTIONS(6185), - [anon_sym_BSLASHref] = ACTIONS(6185), - [anon_sym_BSLASHeqref] = ACTIONS(6185), - [anon_sym_BSLASHvref] = ACTIONS(6185), - [anon_sym_BSLASHVref] = ACTIONS(6185), - [anon_sym_BSLASHautoref] = ACTIONS(6185), - [anon_sym_BSLASHpageref] = ACTIONS(6185), - [anon_sym_BSLASHcref] = ACTIONS(6185), - [anon_sym_BSLASHCref] = ACTIONS(6185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnameCref] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHlabelcref] = ACTIONS(6185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCrefrange] = ACTIONS(6185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnewlabel] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHdef] = ACTIONS(6185), - [anon_sym_BSLASHlet] = ACTIONS(6185), - [anon_sym_BSLASHleft] = ACTIONS(6185), - [anon_sym_BSLASHbig] = ACTIONS(6185), - [anon_sym_BSLASHBig] = ACTIONS(6185), - [anon_sym_BSLASHbigg] = ACTIONS(6185), - [anon_sym_BSLASHBigg] = ACTIONS(6185), - [anon_sym_BSLASHbigl] = ACTIONS(6185), - [anon_sym_BSLASHBigl] = ACTIONS(6185), - [anon_sym_BSLASHbiggl] = ACTIONS(6185), - [anon_sym_BSLASHBiggl] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), - [anon_sym_BSLASHgls] = ACTIONS(6185), - [anon_sym_BSLASHGls] = ACTIONS(6185), - [anon_sym_BSLASHGLS] = ACTIONS(6185), - [anon_sym_BSLASHglspl] = ACTIONS(6185), - [anon_sym_BSLASHGlspl] = ACTIONS(6185), - [anon_sym_BSLASHGLSpl] = ACTIONS(6185), - [anon_sym_BSLASHglsdisp] = ACTIONS(6185), - [anon_sym_BSLASHglslink] = ACTIONS(6185), - [anon_sym_BSLASHglstext] = ACTIONS(6185), - [anon_sym_BSLASHGlstext] = ACTIONS(6185), - [anon_sym_BSLASHGLStext] = ACTIONS(6185), - [anon_sym_BSLASHglsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), - [anon_sym_BSLASHglsplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSplural] = ACTIONS(6185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHglsname] = ACTIONS(6185), - [anon_sym_BSLASHGlsname] = ACTIONS(6185), - [anon_sym_BSLASHGLSname] = ACTIONS(6185), - [anon_sym_BSLASHglssymbol] = ACTIONS(6185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), - [anon_sym_BSLASHglsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), - [anon_sym_BSLASHglsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), - [anon_sym_BSLASHglsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), - [anon_sym_BSLASHglsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), - [anon_sym_BSLASHglsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), - [anon_sym_BSLASHnewacronym] = ACTIONS(6185), - [anon_sym_BSLASHacrshort] = ACTIONS(6185), - [anon_sym_BSLASHAcrshort] = ACTIONS(6185), - [anon_sym_BSLASHACRshort] = ACTIONS(6185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), - [anon_sym_BSLASHacrlong] = ACTIONS(6185), - [anon_sym_BSLASHAcrlong] = ACTIONS(6185), - [anon_sym_BSLASHACRlong] = ACTIONS(6185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), - [anon_sym_BSLASHacrfull] = ACTIONS(6185), - [anon_sym_BSLASHAcrfull] = ACTIONS(6185), - [anon_sym_BSLASHACRfull] = ACTIONS(6185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), - [anon_sym_BSLASHacs] = ACTIONS(6185), - [anon_sym_BSLASHAcs] = ACTIONS(6185), - [anon_sym_BSLASHacsp] = ACTIONS(6185), - [anon_sym_BSLASHAcsp] = ACTIONS(6185), - [anon_sym_BSLASHacl] = ACTIONS(6185), - [anon_sym_BSLASHAcl] = ACTIONS(6185), - [anon_sym_BSLASHaclp] = ACTIONS(6185), - [anon_sym_BSLASHAclp] = ACTIONS(6185), - [anon_sym_BSLASHacf] = ACTIONS(6185), - [anon_sym_BSLASHAcf] = ACTIONS(6185), - [anon_sym_BSLASHacfp] = ACTIONS(6185), - [anon_sym_BSLASHAcfp] = ACTIONS(6185), - [anon_sym_BSLASHac] = ACTIONS(6185), - [anon_sym_BSLASHAc] = ACTIONS(6185), - [anon_sym_BSLASHacp] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), - [anon_sym_BSLASHcolor] = ACTIONS(6185), - [anon_sym_BSLASHcolorbox] = ACTIONS(6185), - [anon_sym_BSLASHtextcolor] = ACTIONS(6185), - [anon_sym_BSLASHpagecolor] = ACTIONS(6185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), - [anon_sym_BSLASHtext] = ACTIONS(6185), - [anon_sym_BSLASHintertext] = ACTIONS(6185), - [anon_sym_shortintertext] = ACTIONS(6185), - }, - [1385] = { - [sym_command_name] = ACTIONS(6133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6133), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_EQ] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_BSLASHpart] = ACTIONS(6133), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddpart] = ACTIONS(6133), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6135), - [anon_sym_BSLASHchapter] = ACTIONS(6133), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddchap] = ACTIONS(6133), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsection] = ACTIONS(6133), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHaddsec] = ACTIONS(6133), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubsection] = ACTIONS(6133), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6133), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6135), - [anon_sym_BSLASHparagraph] = ACTIONS(6133), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6133), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6135), - [anon_sym_BSLASHitem] = ACTIONS(6133), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6135), - [anon_sym_LBRACE] = ACTIONS(6135), - [sym_word] = ACTIONS(6133), - [sym_placeholder] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6135), - [anon_sym_DASH] = ACTIONS(6135), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6133), - [anon_sym_GT] = ACTIONS(6133), - [anon_sym_BANG] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6133), - [anon_sym_COLON] = ACTIONS(6133), - [anon_sym_SQUOTE] = ACTIONS(6133), - [anon_sym__] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6135), - [anon_sym_DOLLAR] = ACTIONS(6133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6135), - [anon_sym_BSLASHbegin] = ACTIONS(6133), - [anon_sym_BSLASHtitle] = ACTIONS(6133), - [anon_sym_BSLASHauthor] = ACTIONS(6133), - [anon_sym_BSLASHusepackage] = ACTIONS(6133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6133), - [anon_sym_BSLASHinclude] = ACTIONS(6133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6133), - [anon_sym_BSLASHinput] = ACTIONS(6133), - [anon_sym_BSLASHsubfile] = ACTIONS(6133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6133), - [anon_sym_BSLASHbibliography] = ACTIONS(6133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6133), - [anon_sym_BSLASHincludesvg] = ACTIONS(6133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6133), - [anon_sym_BSLASHimport] = ACTIONS(6133), - [anon_sym_BSLASHsubimport] = ACTIONS(6133), - [anon_sym_BSLASHinputfrom] = ACTIONS(6133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6133), - [anon_sym_BSLASHincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHcaption] = ACTIONS(6133), - [anon_sym_BSLASHcite] = ACTIONS(6133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCite] = ACTIONS(6133), - [anon_sym_BSLASHnocite] = ACTIONS(6133), - [anon_sym_BSLASHcitet] = ACTIONS(6133), - [anon_sym_BSLASHcitep] = ACTIONS(6133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteauthor] = ACTIONS(6133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitetitle] = ACTIONS(6133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteyear] = ACTIONS(6133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitedate] = ACTIONS(6133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteurl] = ACTIONS(6133), - [anon_sym_BSLASHfullcite] = ACTIONS(6133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6133), - [anon_sym_BSLASHcitealt] = ACTIONS(6133), - [anon_sym_BSLASHcitealp] = ACTIONS(6133), - [anon_sym_BSLASHcitetext] = ACTIONS(6133), - [anon_sym_BSLASHparencite] = ACTIONS(6133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHParencite] = ACTIONS(6133), - [anon_sym_BSLASHfootcite] = ACTIONS(6133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6133), - [anon_sym_BSLASHtextcite] = ACTIONS(6133), - [anon_sym_BSLASHTextcite] = ACTIONS(6133), - [anon_sym_BSLASHsmartcite] = ACTIONS(6133), - [anon_sym_BSLASHSmartcite] = ACTIONS(6133), - [anon_sym_BSLASHsupercite] = ACTIONS(6133), - [anon_sym_BSLASHautocite] = ACTIONS(6133), - [anon_sym_BSLASHAutocite] = ACTIONS(6133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHvolcite] = ACTIONS(6133), - [anon_sym_BSLASHVolcite] = ACTIONS(6133), - [anon_sym_BSLASHpvolcite] = ACTIONS(6133), - [anon_sym_BSLASHPvolcite] = ACTIONS(6133), - [anon_sym_BSLASHfvolcite] = ACTIONS(6133), - [anon_sym_BSLASHftvolcite] = ACTIONS(6133), - [anon_sym_BSLASHsvolcite] = ACTIONS(6133), - [anon_sym_BSLASHSvolcite] = ACTIONS(6133), - [anon_sym_BSLASHtvolcite] = ACTIONS(6133), - [anon_sym_BSLASHTvolcite] = ACTIONS(6133), - [anon_sym_BSLASHavolcite] = ACTIONS(6133), - [anon_sym_BSLASHAvolcite] = ACTIONS(6133), - [anon_sym_BSLASHnotecite] = ACTIONS(6133), - [anon_sym_BSLASHNotecite] = ACTIONS(6133), - [anon_sym_BSLASHpnotecite] = ACTIONS(6133), - [anon_sym_BSLASHPnotecite] = ACTIONS(6133), - [anon_sym_BSLASHfnotecite] = ACTIONS(6133), - [anon_sym_BSLASHlabel] = ACTIONS(6133), - [anon_sym_BSLASHref] = ACTIONS(6133), - [anon_sym_BSLASHeqref] = ACTIONS(6133), - [anon_sym_BSLASHvref] = ACTIONS(6133), - [anon_sym_BSLASHVref] = ACTIONS(6133), - [anon_sym_BSLASHautoref] = ACTIONS(6133), - [anon_sym_BSLASHpageref] = ACTIONS(6133), - [anon_sym_BSLASHcref] = ACTIONS(6133), - [anon_sym_BSLASHCref] = ACTIONS(6133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnameCref] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHlabelcref] = ACTIONS(6133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCrefrange] = ACTIONS(6133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnewlabel] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6135), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHdef] = ACTIONS(6133), - [anon_sym_BSLASHlet] = ACTIONS(6133), - [anon_sym_BSLASHleft] = ACTIONS(6133), - [anon_sym_BSLASHbig] = ACTIONS(6133), - [anon_sym_BSLASHBig] = ACTIONS(6133), - [anon_sym_BSLASHbigg] = ACTIONS(6133), - [anon_sym_BSLASHBigg] = ACTIONS(6133), - [anon_sym_BSLASHbigl] = ACTIONS(6133), - [anon_sym_BSLASHBigl] = ACTIONS(6133), - [anon_sym_BSLASHbiggl] = ACTIONS(6133), - [anon_sym_BSLASHBiggl] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6133), - [anon_sym_BSLASHgls] = ACTIONS(6133), - [anon_sym_BSLASHGls] = ACTIONS(6133), - [anon_sym_BSLASHGLS] = ACTIONS(6133), - [anon_sym_BSLASHglspl] = ACTIONS(6133), - [anon_sym_BSLASHGlspl] = ACTIONS(6133), - [anon_sym_BSLASHGLSpl] = ACTIONS(6133), - [anon_sym_BSLASHglsdisp] = ACTIONS(6133), - [anon_sym_BSLASHglslink] = ACTIONS(6133), - [anon_sym_BSLASHglstext] = ACTIONS(6133), - [anon_sym_BSLASHGlstext] = ACTIONS(6133), - [anon_sym_BSLASHGLStext] = ACTIONS(6133), - [anon_sym_BSLASHglsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6133), - [anon_sym_BSLASHglsplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSplural] = ACTIONS(6133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHglsname] = ACTIONS(6133), - [anon_sym_BSLASHGlsname] = ACTIONS(6133), - [anon_sym_BSLASHGLSname] = ACTIONS(6133), - [anon_sym_BSLASHglssymbol] = ACTIONS(6133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6133), - [anon_sym_BSLASHglsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6133), - [anon_sym_BSLASHglsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6133), - [anon_sym_BSLASHglsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6133), - [anon_sym_BSLASHglsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6133), - [anon_sym_BSLASHglsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6133), - [anon_sym_BSLASHnewacronym] = ACTIONS(6133), - [anon_sym_BSLASHacrshort] = ACTIONS(6133), - [anon_sym_BSLASHAcrshort] = ACTIONS(6133), - [anon_sym_BSLASHACRshort] = ACTIONS(6133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6133), - [anon_sym_BSLASHacrlong] = ACTIONS(6133), - [anon_sym_BSLASHAcrlong] = ACTIONS(6133), - [anon_sym_BSLASHACRlong] = ACTIONS(6133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6133), - [anon_sym_BSLASHacrfull] = ACTIONS(6133), - [anon_sym_BSLASHAcrfull] = ACTIONS(6133), - [anon_sym_BSLASHACRfull] = ACTIONS(6133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6133), - [anon_sym_BSLASHacs] = ACTIONS(6133), - [anon_sym_BSLASHAcs] = ACTIONS(6133), - [anon_sym_BSLASHacsp] = ACTIONS(6133), - [anon_sym_BSLASHAcsp] = ACTIONS(6133), - [anon_sym_BSLASHacl] = ACTIONS(6133), - [anon_sym_BSLASHAcl] = ACTIONS(6133), - [anon_sym_BSLASHaclp] = ACTIONS(6133), - [anon_sym_BSLASHAclp] = ACTIONS(6133), - [anon_sym_BSLASHacf] = ACTIONS(6133), - [anon_sym_BSLASHAcf] = ACTIONS(6133), - [anon_sym_BSLASHacfp] = ACTIONS(6133), - [anon_sym_BSLASHAcfp] = ACTIONS(6133), - [anon_sym_BSLASHac] = ACTIONS(6133), - [anon_sym_BSLASHAc] = ACTIONS(6133), - [anon_sym_BSLASHacp] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6133), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6133), - [anon_sym_BSLASHcolor] = ACTIONS(6133), - [anon_sym_BSLASHcolorbox] = ACTIONS(6133), - [anon_sym_BSLASHtextcolor] = ACTIONS(6133), - [anon_sym_BSLASHpagecolor] = ACTIONS(6133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6133), - [anon_sym_BSLASHtext] = ACTIONS(6133), - [anon_sym_BSLASHintertext] = ACTIONS(6133), - [anon_sym_shortintertext] = ACTIONS(6133), - }, - [1386] = { - [sym_command_name] = ACTIONS(6117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6117), - [anon_sym_LBRACK] = ACTIONS(6119), - [anon_sym_RBRACK] = ACTIONS(6119), - [anon_sym_COMMA] = ACTIONS(6119), - [anon_sym_EQ] = ACTIONS(6119), - [anon_sym_LPAREN] = ACTIONS(6119), - [anon_sym_RPAREN] = ACTIONS(6119), - [anon_sym_BSLASHpart] = ACTIONS(6117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddpart] = ACTIONS(6117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6119), - [anon_sym_BSLASHchapter] = ACTIONS(6117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddchap] = ACTIONS(6117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsection] = ACTIONS(6117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHaddsec] = ACTIONS(6117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubsection] = ACTIONS(6117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6119), - [anon_sym_BSLASHparagraph] = ACTIONS(6117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6119), - [anon_sym_BSLASHitem] = ACTIONS(6117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6119), - [anon_sym_LBRACE] = ACTIONS(6119), - [sym_word] = ACTIONS(6117), - [sym_placeholder] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6119), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_LT] = ACTIONS(6117), - [anon_sym_GT] = ACTIONS(6117), - [anon_sym_BANG] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_SQUOTE] = ACTIONS(6117), - [anon_sym__] = ACTIONS(6119), - [anon_sym_CARET] = ACTIONS(6119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6119), - [anon_sym_DOLLAR] = ACTIONS(6117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6119), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6119), - [anon_sym_BSLASHbegin] = ACTIONS(6117), - [anon_sym_BSLASHtitle] = ACTIONS(6117), - [anon_sym_BSLASHauthor] = ACTIONS(6117), - [anon_sym_BSLASHusepackage] = ACTIONS(6117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6117), - [anon_sym_BSLASHinclude] = ACTIONS(6117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6117), - [anon_sym_BSLASHinput] = ACTIONS(6117), - [anon_sym_BSLASHsubfile] = ACTIONS(6117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6117), - [anon_sym_BSLASHbibliography] = ACTIONS(6117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6117), - [anon_sym_BSLASHincludesvg] = ACTIONS(6117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6117), - [anon_sym_BSLASHimport] = ACTIONS(6117), - [anon_sym_BSLASHsubimport] = ACTIONS(6117), - [anon_sym_BSLASHinputfrom] = ACTIONS(6117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6117), - [anon_sym_BSLASHincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHcaption] = ACTIONS(6117), - [anon_sym_BSLASHcite] = ACTIONS(6117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCite] = ACTIONS(6117), - [anon_sym_BSLASHnocite] = ACTIONS(6117), - [anon_sym_BSLASHcitet] = ACTIONS(6117), - [anon_sym_BSLASHcitep] = ACTIONS(6117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteauthor] = ACTIONS(6117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitetitle] = ACTIONS(6117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteyear] = ACTIONS(6117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitedate] = ACTIONS(6117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteurl] = ACTIONS(6117), - [anon_sym_BSLASHfullcite] = ACTIONS(6117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6117), - [anon_sym_BSLASHcitealt] = ACTIONS(6117), - [anon_sym_BSLASHcitealp] = ACTIONS(6117), - [anon_sym_BSLASHcitetext] = ACTIONS(6117), - [anon_sym_BSLASHparencite] = ACTIONS(6117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHParencite] = ACTIONS(6117), - [anon_sym_BSLASHfootcite] = ACTIONS(6117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6117), - [anon_sym_BSLASHtextcite] = ACTIONS(6117), - [anon_sym_BSLASHTextcite] = ACTIONS(6117), - [anon_sym_BSLASHsmartcite] = ACTIONS(6117), - [anon_sym_BSLASHSmartcite] = ACTIONS(6117), - [anon_sym_BSLASHsupercite] = ACTIONS(6117), - [anon_sym_BSLASHautocite] = ACTIONS(6117), - [anon_sym_BSLASHAutocite] = ACTIONS(6117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHvolcite] = ACTIONS(6117), - [anon_sym_BSLASHVolcite] = ACTIONS(6117), - [anon_sym_BSLASHpvolcite] = ACTIONS(6117), - [anon_sym_BSLASHPvolcite] = ACTIONS(6117), - [anon_sym_BSLASHfvolcite] = ACTIONS(6117), - [anon_sym_BSLASHftvolcite] = ACTIONS(6117), - [anon_sym_BSLASHsvolcite] = ACTIONS(6117), - [anon_sym_BSLASHSvolcite] = ACTIONS(6117), - [anon_sym_BSLASHtvolcite] = ACTIONS(6117), - [anon_sym_BSLASHTvolcite] = ACTIONS(6117), - [anon_sym_BSLASHavolcite] = ACTIONS(6117), - [anon_sym_BSLASHAvolcite] = ACTIONS(6117), - [anon_sym_BSLASHnotecite] = ACTIONS(6117), - [anon_sym_BSLASHNotecite] = ACTIONS(6117), - [anon_sym_BSLASHpnotecite] = ACTIONS(6117), - [anon_sym_BSLASHPnotecite] = ACTIONS(6117), - [anon_sym_BSLASHfnotecite] = ACTIONS(6117), - [anon_sym_BSLASHlabel] = ACTIONS(6117), - [anon_sym_BSLASHref] = ACTIONS(6117), - [anon_sym_BSLASHeqref] = ACTIONS(6117), - [anon_sym_BSLASHvref] = ACTIONS(6117), - [anon_sym_BSLASHVref] = ACTIONS(6117), - [anon_sym_BSLASHautoref] = ACTIONS(6117), - [anon_sym_BSLASHpageref] = ACTIONS(6117), - [anon_sym_BSLASHcref] = ACTIONS(6117), - [anon_sym_BSLASHCref] = ACTIONS(6117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnameCref] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHlabelcref] = ACTIONS(6117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCrefrange] = ACTIONS(6117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnewlabel] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6119), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHdef] = ACTIONS(6117), - [anon_sym_BSLASHlet] = ACTIONS(6117), - [anon_sym_BSLASHleft] = ACTIONS(6117), - [anon_sym_BSLASHbig] = ACTIONS(6117), - [anon_sym_BSLASHBig] = ACTIONS(6117), - [anon_sym_BSLASHbigg] = ACTIONS(6117), - [anon_sym_BSLASHBigg] = ACTIONS(6117), - [anon_sym_BSLASHbigl] = ACTIONS(6117), - [anon_sym_BSLASHBigl] = ACTIONS(6117), - [anon_sym_BSLASHbiggl] = ACTIONS(6117), - [anon_sym_BSLASHBiggl] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6117), - [anon_sym_BSLASHgls] = ACTIONS(6117), - [anon_sym_BSLASHGls] = ACTIONS(6117), - [anon_sym_BSLASHGLS] = ACTIONS(6117), - [anon_sym_BSLASHglspl] = ACTIONS(6117), - [anon_sym_BSLASHGlspl] = ACTIONS(6117), - [anon_sym_BSLASHGLSpl] = ACTIONS(6117), - [anon_sym_BSLASHglsdisp] = ACTIONS(6117), - [anon_sym_BSLASHglslink] = ACTIONS(6117), - [anon_sym_BSLASHglstext] = ACTIONS(6117), - [anon_sym_BSLASHGlstext] = ACTIONS(6117), - [anon_sym_BSLASHGLStext] = ACTIONS(6117), - [anon_sym_BSLASHglsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6117), - [anon_sym_BSLASHglsplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSplural] = ACTIONS(6117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHglsname] = ACTIONS(6117), - [anon_sym_BSLASHGlsname] = ACTIONS(6117), - [anon_sym_BSLASHGLSname] = ACTIONS(6117), - [anon_sym_BSLASHglssymbol] = ACTIONS(6117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6117), - [anon_sym_BSLASHglsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6117), - [anon_sym_BSLASHglsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6117), - [anon_sym_BSLASHglsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6117), - [anon_sym_BSLASHglsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6117), - [anon_sym_BSLASHglsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6117), - [anon_sym_BSLASHnewacronym] = ACTIONS(6117), - [anon_sym_BSLASHacrshort] = ACTIONS(6117), - [anon_sym_BSLASHAcrshort] = ACTIONS(6117), - [anon_sym_BSLASHACRshort] = ACTIONS(6117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6117), - [anon_sym_BSLASHacrlong] = ACTIONS(6117), - [anon_sym_BSLASHAcrlong] = ACTIONS(6117), - [anon_sym_BSLASHACRlong] = ACTIONS(6117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6117), - [anon_sym_BSLASHacrfull] = ACTIONS(6117), - [anon_sym_BSLASHAcrfull] = ACTIONS(6117), - [anon_sym_BSLASHACRfull] = ACTIONS(6117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6117), - [anon_sym_BSLASHacs] = ACTIONS(6117), - [anon_sym_BSLASHAcs] = ACTIONS(6117), - [anon_sym_BSLASHacsp] = ACTIONS(6117), - [anon_sym_BSLASHAcsp] = ACTIONS(6117), - [anon_sym_BSLASHacl] = ACTIONS(6117), - [anon_sym_BSLASHAcl] = ACTIONS(6117), - [anon_sym_BSLASHaclp] = ACTIONS(6117), - [anon_sym_BSLASHAclp] = ACTIONS(6117), - [anon_sym_BSLASHacf] = ACTIONS(6117), - [anon_sym_BSLASHAcf] = ACTIONS(6117), - [anon_sym_BSLASHacfp] = ACTIONS(6117), - [anon_sym_BSLASHAcfp] = ACTIONS(6117), - [anon_sym_BSLASHac] = ACTIONS(6117), - [anon_sym_BSLASHAc] = ACTIONS(6117), - [anon_sym_BSLASHacp] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6117), - [anon_sym_BSLASHcolor] = ACTIONS(6117), - [anon_sym_BSLASHcolorbox] = ACTIONS(6117), - [anon_sym_BSLASHtextcolor] = ACTIONS(6117), - [anon_sym_BSLASHpagecolor] = ACTIONS(6117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6117), - [anon_sym_BSLASHtext] = ACTIONS(6117), - [anon_sym_BSLASHintertext] = ACTIONS(6117), - [anon_sym_shortintertext] = ACTIONS(6117), - }, - [1387] = { - [sym_command_name] = ACTIONS(6113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6115), - [anon_sym_RBRACK] = ACTIONS(6115), - [anon_sym_COMMA] = ACTIONS(6115), - [anon_sym_EQ] = ACTIONS(6115), - [anon_sym_LPAREN] = ACTIONS(6115), - [anon_sym_RPAREN] = ACTIONS(6115), - [anon_sym_BSLASHpart] = ACTIONS(6113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddpart] = ACTIONS(6113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6115), - [anon_sym_BSLASHchapter] = ACTIONS(6113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddchap] = ACTIONS(6113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsection] = ACTIONS(6113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHaddsec] = ACTIONS(6113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubsection] = ACTIONS(6113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6115), - [anon_sym_BSLASHparagraph] = ACTIONS(6113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6115), - [anon_sym_BSLASHitem] = ACTIONS(6113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6115), - [anon_sym_LBRACE] = ACTIONS(6115), - [sym_word] = ACTIONS(6113), - [sym_placeholder] = ACTIONS(6115), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_LT] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6113), - [anon_sym_BANG] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_SQUOTE] = ACTIONS(6113), - [anon_sym__] = ACTIONS(6115), - [anon_sym_CARET] = ACTIONS(6115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6115), - [anon_sym_DOLLAR] = ACTIONS(6113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6115), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6115), - [anon_sym_BSLASHbegin] = ACTIONS(6113), - [anon_sym_BSLASHtitle] = ACTIONS(6113), - [anon_sym_BSLASHauthor] = ACTIONS(6113), - [anon_sym_BSLASHusepackage] = ACTIONS(6113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), - [anon_sym_BSLASHinclude] = ACTIONS(6113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), - [anon_sym_BSLASHinput] = ACTIONS(6113), - [anon_sym_BSLASHsubfile] = ACTIONS(6113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), - [anon_sym_BSLASHbibliography] = ACTIONS(6113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), - [anon_sym_BSLASHincludesvg] = ACTIONS(6113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), - [anon_sym_BSLASHimport] = ACTIONS(6113), - [anon_sym_BSLASHsubimport] = ACTIONS(6113), - [anon_sym_BSLASHinputfrom] = ACTIONS(6113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), - [anon_sym_BSLASHincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHcaption] = ACTIONS(6113), - [anon_sym_BSLASHcite] = ACTIONS(6113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCite] = ACTIONS(6113), - [anon_sym_BSLASHnocite] = ACTIONS(6113), - [anon_sym_BSLASHcitet] = ACTIONS(6113), - [anon_sym_BSLASHcitep] = ACTIONS(6113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteauthor] = ACTIONS(6113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitetitle] = ACTIONS(6113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteyear] = ACTIONS(6113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitedate] = ACTIONS(6113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteurl] = ACTIONS(6113), - [anon_sym_BSLASHfullcite] = ACTIONS(6113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), - [anon_sym_BSLASHcitealt] = ACTIONS(6113), - [anon_sym_BSLASHcitealp] = ACTIONS(6113), - [anon_sym_BSLASHcitetext] = ACTIONS(6113), - [anon_sym_BSLASHparencite] = ACTIONS(6113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHParencite] = ACTIONS(6113), - [anon_sym_BSLASHfootcite] = ACTIONS(6113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), - [anon_sym_BSLASHtextcite] = ACTIONS(6113), - [anon_sym_BSLASHTextcite] = ACTIONS(6113), - [anon_sym_BSLASHsmartcite] = ACTIONS(6113), - [anon_sym_BSLASHSmartcite] = ACTIONS(6113), - [anon_sym_BSLASHsupercite] = ACTIONS(6113), - [anon_sym_BSLASHautocite] = ACTIONS(6113), - [anon_sym_BSLASHAutocite] = ACTIONS(6113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHvolcite] = ACTIONS(6113), - [anon_sym_BSLASHVolcite] = ACTIONS(6113), - [anon_sym_BSLASHpvolcite] = ACTIONS(6113), - [anon_sym_BSLASHPvolcite] = ACTIONS(6113), - [anon_sym_BSLASHfvolcite] = ACTIONS(6113), - [anon_sym_BSLASHftvolcite] = ACTIONS(6113), - [anon_sym_BSLASHsvolcite] = ACTIONS(6113), - [anon_sym_BSLASHSvolcite] = ACTIONS(6113), - [anon_sym_BSLASHtvolcite] = ACTIONS(6113), - [anon_sym_BSLASHTvolcite] = ACTIONS(6113), - [anon_sym_BSLASHavolcite] = ACTIONS(6113), - [anon_sym_BSLASHAvolcite] = ACTIONS(6113), - [anon_sym_BSLASHnotecite] = ACTIONS(6113), - [anon_sym_BSLASHNotecite] = ACTIONS(6113), - [anon_sym_BSLASHpnotecite] = ACTIONS(6113), - [anon_sym_BSLASHPnotecite] = ACTIONS(6113), - [anon_sym_BSLASHfnotecite] = ACTIONS(6113), - [anon_sym_BSLASHlabel] = ACTIONS(6113), - [anon_sym_BSLASHref] = ACTIONS(6113), - [anon_sym_BSLASHeqref] = ACTIONS(6113), - [anon_sym_BSLASHvref] = ACTIONS(6113), - [anon_sym_BSLASHVref] = ACTIONS(6113), - [anon_sym_BSLASHautoref] = ACTIONS(6113), - [anon_sym_BSLASHpageref] = ACTIONS(6113), - [anon_sym_BSLASHcref] = ACTIONS(6113), - [anon_sym_BSLASHCref] = ACTIONS(6113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnameCref] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHlabelcref] = ACTIONS(6113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCrefrange] = ACTIONS(6113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnewlabel] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6115), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHdef] = ACTIONS(6113), - [anon_sym_BSLASHlet] = ACTIONS(6113), - [anon_sym_BSLASHleft] = ACTIONS(6113), - [anon_sym_BSLASHbig] = ACTIONS(6113), - [anon_sym_BSLASHBig] = ACTIONS(6113), - [anon_sym_BSLASHbigg] = ACTIONS(6113), - [anon_sym_BSLASHBigg] = ACTIONS(6113), - [anon_sym_BSLASHbigl] = ACTIONS(6113), - [anon_sym_BSLASHBigl] = ACTIONS(6113), - [anon_sym_BSLASHbiggl] = ACTIONS(6113), - [anon_sym_BSLASHBiggl] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), - [anon_sym_BSLASHgls] = ACTIONS(6113), - [anon_sym_BSLASHGls] = ACTIONS(6113), - [anon_sym_BSLASHGLS] = ACTIONS(6113), - [anon_sym_BSLASHglspl] = ACTIONS(6113), - [anon_sym_BSLASHGlspl] = ACTIONS(6113), - [anon_sym_BSLASHGLSpl] = ACTIONS(6113), - [anon_sym_BSLASHglsdisp] = ACTIONS(6113), - [anon_sym_BSLASHglslink] = ACTIONS(6113), - [anon_sym_BSLASHglstext] = ACTIONS(6113), - [anon_sym_BSLASHGlstext] = ACTIONS(6113), - [anon_sym_BSLASHGLStext] = ACTIONS(6113), - [anon_sym_BSLASHglsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), - [anon_sym_BSLASHglsplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSplural] = ACTIONS(6113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHglsname] = ACTIONS(6113), - [anon_sym_BSLASHGlsname] = ACTIONS(6113), - [anon_sym_BSLASHGLSname] = ACTIONS(6113), - [anon_sym_BSLASHglssymbol] = ACTIONS(6113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), - [anon_sym_BSLASHglsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), - [anon_sym_BSLASHglsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), - [anon_sym_BSLASHglsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), - [anon_sym_BSLASHglsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), - [anon_sym_BSLASHglsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), - [anon_sym_BSLASHnewacronym] = ACTIONS(6113), - [anon_sym_BSLASHacrshort] = ACTIONS(6113), - [anon_sym_BSLASHAcrshort] = ACTIONS(6113), - [anon_sym_BSLASHACRshort] = ACTIONS(6113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), - [anon_sym_BSLASHacrlong] = ACTIONS(6113), - [anon_sym_BSLASHAcrlong] = ACTIONS(6113), - [anon_sym_BSLASHACRlong] = ACTIONS(6113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), - [anon_sym_BSLASHacrfull] = ACTIONS(6113), - [anon_sym_BSLASHAcrfull] = ACTIONS(6113), - [anon_sym_BSLASHACRfull] = ACTIONS(6113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), - [anon_sym_BSLASHacs] = ACTIONS(6113), - [anon_sym_BSLASHAcs] = ACTIONS(6113), - [anon_sym_BSLASHacsp] = ACTIONS(6113), - [anon_sym_BSLASHAcsp] = ACTIONS(6113), - [anon_sym_BSLASHacl] = ACTIONS(6113), - [anon_sym_BSLASHAcl] = ACTIONS(6113), - [anon_sym_BSLASHaclp] = ACTIONS(6113), - [anon_sym_BSLASHAclp] = ACTIONS(6113), - [anon_sym_BSLASHacf] = ACTIONS(6113), - [anon_sym_BSLASHAcf] = ACTIONS(6113), - [anon_sym_BSLASHacfp] = ACTIONS(6113), - [anon_sym_BSLASHAcfp] = ACTIONS(6113), - [anon_sym_BSLASHac] = ACTIONS(6113), - [anon_sym_BSLASHAc] = ACTIONS(6113), - [anon_sym_BSLASHacp] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), - [anon_sym_BSLASHcolor] = ACTIONS(6113), - [anon_sym_BSLASHcolorbox] = ACTIONS(6113), - [anon_sym_BSLASHtextcolor] = ACTIONS(6113), - [anon_sym_BSLASHpagecolor] = ACTIONS(6113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), - [anon_sym_BSLASHtext] = ACTIONS(6113), - [anon_sym_BSLASHintertext] = ACTIONS(6113), - [anon_sym_shortintertext] = ACTIONS(6113), - }, - [1388] = { - [sym_command_name] = ACTIONS(6109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6109), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_RBRACK] = ACTIONS(6111), - [anon_sym_COMMA] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_LPAREN] = ACTIONS(6111), - [anon_sym_RPAREN] = ACTIONS(6111), - [anon_sym_BSLASHpart] = ACTIONS(6109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddpart] = ACTIONS(6109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6111), - [anon_sym_BSLASHchapter] = ACTIONS(6109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddchap] = ACTIONS(6109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsection] = ACTIONS(6109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHaddsec] = ACTIONS(6109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubsection] = ACTIONS(6109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6111), - [anon_sym_BSLASHparagraph] = ACTIONS(6109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6111), - [anon_sym_BSLASHitem] = ACTIONS(6109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6111), - [anon_sym_LBRACE] = ACTIONS(6111), - [sym_word] = ACTIONS(6109), - [sym_placeholder] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6109), - [anon_sym_GT] = ACTIONS(6109), - [anon_sym_BANG] = ACTIONS(6109), - [anon_sym_PIPE] = ACTIONS(6109), - [anon_sym_COLON] = ACTIONS(6109), - [anon_sym_SQUOTE] = ACTIONS(6109), - [anon_sym__] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), - [anon_sym_DOLLAR] = ACTIONS(6109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6111), - [anon_sym_BSLASHbegin] = ACTIONS(6109), - [anon_sym_BSLASHtitle] = ACTIONS(6109), - [anon_sym_BSLASHauthor] = ACTIONS(6109), - [anon_sym_BSLASHusepackage] = ACTIONS(6109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), - [anon_sym_BSLASHinclude] = ACTIONS(6109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), - [anon_sym_BSLASHinput] = ACTIONS(6109), - [anon_sym_BSLASHsubfile] = ACTIONS(6109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), - [anon_sym_BSLASHbibliography] = ACTIONS(6109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), - [anon_sym_BSLASHincludesvg] = ACTIONS(6109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), - [anon_sym_BSLASHimport] = ACTIONS(6109), - [anon_sym_BSLASHsubimport] = ACTIONS(6109), - [anon_sym_BSLASHinputfrom] = ACTIONS(6109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), - [anon_sym_BSLASHincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHcaption] = ACTIONS(6109), - [anon_sym_BSLASHcite] = ACTIONS(6109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCite] = ACTIONS(6109), - [anon_sym_BSLASHnocite] = ACTIONS(6109), - [anon_sym_BSLASHcitet] = ACTIONS(6109), - [anon_sym_BSLASHcitep] = ACTIONS(6109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteauthor] = ACTIONS(6109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitetitle] = ACTIONS(6109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteyear] = ACTIONS(6109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitedate] = ACTIONS(6109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteurl] = ACTIONS(6109), - [anon_sym_BSLASHfullcite] = ACTIONS(6109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), - [anon_sym_BSLASHcitealt] = ACTIONS(6109), - [anon_sym_BSLASHcitealp] = ACTIONS(6109), - [anon_sym_BSLASHcitetext] = ACTIONS(6109), - [anon_sym_BSLASHparencite] = ACTIONS(6109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHParencite] = ACTIONS(6109), - [anon_sym_BSLASHfootcite] = ACTIONS(6109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), - [anon_sym_BSLASHtextcite] = ACTIONS(6109), - [anon_sym_BSLASHTextcite] = ACTIONS(6109), - [anon_sym_BSLASHsmartcite] = ACTIONS(6109), - [anon_sym_BSLASHSmartcite] = ACTIONS(6109), - [anon_sym_BSLASHsupercite] = ACTIONS(6109), - [anon_sym_BSLASHautocite] = ACTIONS(6109), - [anon_sym_BSLASHAutocite] = ACTIONS(6109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHvolcite] = ACTIONS(6109), - [anon_sym_BSLASHVolcite] = ACTIONS(6109), - [anon_sym_BSLASHpvolcite] = ACTIONS(6109), - [anon_sym_BSLASHPvolcite] = ACTIONS(6109), - [anon_sym_BSLASHfvolcite] = ACTIONS(6109), - [anon_sym_BSLASHftvolcite] = ACTIONS(6109), - [anon_sym_BSLASHsvolcite] = ACTIONS(6109), - [anon_sym_BSLASHSvolcite] = ACTIONS(6109), - [anon_sym_BSLASHtvolcite] = ACTIONS(6109), - [anon_sym_BSLASHTvolcite] = ACTIONS(6109), - [anon_sym_BSLASHavolcite] = ACTIONS(6109), - [anon_sym_BSLASHAvolcite] = ACTIONS(6109), - [anon_sym_BSLASHnotecite] = ACTIONS(6109), - [anon_sym_BSLASHNotecite] = ACTIONS(6109), - [anon_sym_BSLASHpnotecite] = ACTIONS(6109), - [anon_sym_BSLASHPnotecite] = ACTIONS(6109), - [anon_sym_BSLASHfnotecite] = ACTIONS(6109), - [anon_sym_BSLASHlabel] = ACTIONS(6109), - [anon_sym_BSLASHref] = ACTIONS(6109), - [anon_sym_BSLASHeqref] = ACTIONS(6109), - [anon_sym_BSLASHvref] = ACTIONS(6109), - [anon_sym_BSLASHVref] = ACTIONS(6109), - [anon_sym_BSLASHautoref] = ACTIONS(6109), - [anon_sym_BSLASHpageref] = ACTIONS(6109), - [anon_sym_BSLASHcref] = ACTIONS(6109), - [anon_sym_BSLASHCref] = ACTIONS(6109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnameCref] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHlabelcref] = ACTIONS(6109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCrefrange] = ACTIONS(6109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnewlabel] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHdef] = ACTIONS(6109), - [anon_sym_BSLASHlet] = ACTIONS(6109), - [anon_sym_BSLASHleft] = ACTIONS(6109), - [anon_sym_BSLASHbig] = ACTIONS(6109), - [anon_sym_BSLASHBig] = ACTIONS(6109), - [anon_sym_BSLASHbigg] = ACTIONS(6109), - [anon_sym_BSLASHBigg] = ACTIONS(6109), - [anon_sym_BSLASHbigl] = ACTIONS(6109), - [anon_sym_BSLASHBigl] = ACTIONS(6109), - [anon_sym_BSLASHbiggl] = ACTIONS(6109), - [anon_sym_BSLASHBiggl] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), - [anon_sym_BSLASHgls] = ACTIONS(6109), - [anon_sym_BSLASHGls] = ACTIONS(6109), - [anon_sym_BSLASHGLS] = ACTIONS(6109), - [anon_sym_BSLASHglspl] = ACTIONS(6109), - [anon_sym_BSLASHGlspl] = ACTIONS(6109), - [anon_sym_BSLASHGLSpl] = ACTIONS(6109), - [anon_sym_BSLASHglsdisp] = ACTIONS(6109), - [anon_sym_BSLASHglslink] = ACTIONS(6109), - [anon_sym_BSLASHglstext] = ACTIONS(6109), - [anon_sym_BSLASHGlstext] = ACTIONS(6109), - [anon_sym_BSLASHGLStext] = ACTIONS(6109), - [anon_sym_BSLASHglsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), - [anon_sym_BSLASHglsplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSplural] = ACTIONS(6109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHglsname] = ACTIONS(6109), - [anon_sym_BSLASHGlsname] = ACTIONS(6109), - [anon_sym_BSLASHGLSname] = ACTIONS(6109), - [anon_sym_BSLASHglssymbol] = ACTIONS(6109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), - [anon_sym_BSLASHglsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), - [anon_sym_BSLASHglsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), - [anon_sym_BSLASHglsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), - [anon_sym_BSLASHglsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), - [anon_sym_BSLASHglsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), - [anon_sym_BSLASHnewacronym] = ACTIONS(6109), - [anon_sym_BSLASHacrshort] = ACTIONS(6109), - [anon_sym_BSLASHAcrshort] = ACTIONS(6109), - [anon_sym_BSLASHACRshort] = ACTIONS(6109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), - [anon_sym_BSLASHacrlong] = ACTIONS(6109), - [anon_sym_BSLASHAcrlong] = ACTIONS(6109), - [anon_sym_BSLASHACRlong] = ACTIONS(6109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), - [anon_sym_BSLASHacrfull] = ACTIONS(6109), - [anon_sym_BSLASHAcrfull] = ACTIONS(6109), - [anon_sym_BSLASHACRfull] = ACTIONS(6109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), - [anon_sym_BSLASHacs] = ACTIONS(6109), - [anon_sym_BSLASHAcs] = ACTIONS(6109), - [anon_sym_BSLASHacsp] = ACTIONS(6109), - [anon_sym_BSLASHAcsp] = ACTIONS(6109), - [anon_sym_BSLASHacl] = ACTIONS(6109), - [anon_sym_BSLASHAcl] = ACTIONS(6109), - [anon_sym_BSLASHaclp] = ACTIONS(6109), - [anon_sym_BSLASHAclp] = ACTIONS(6109), - [anon_sym_BSLASHacf] = ACTIONS(6109), - [anon_sym_BSLASHAcf] = ACTIONS(6109), - [anon_sym_BSLASHacfp] = ACTIONS(6109), - [anon_sym_BSLASHAcfp] = ACTIONS(6109), - [anon_sym_BSLASHac] = ACTIONS(6109), - [anon_sym_BSLASHAc] = ACTIONS(6109), - [anon_sym_BSLASHacp] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), - [anon_sym_BSLASHcolor] = ACTIONS(6109), - [anon_sym_BSLASHcolorbox] = ACTIONS(6109), - [anon_sym_BSLASHtextcolor] = ACTIONS(6109), - [anon_sym_BSLASHpagecolor] = ACTIONS(6109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), - [anon_sym_BSLASHtext] = ACTIONS(6109), - [anon_sym_BSLASHintertext] = ACTIONS(6109), - [anon_sym_shortintertext] = ACTIONS(6109), - }, - [1389] = { - [sym_command_name] = ACTIONS(6129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(6131), - [anon_sym_RBRACK] = ACTIONS(6131), - [anon_sym_COMMA] = ACTIONS(6131), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_LPAREN] = ACTIONS(6131), - [anon_sym_RPAREN] = ACTIONS(6131), - [anon_sym_BSLASHpart] = ACTIONS(6129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddpart] = ACTIONS(6129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6131), - [anon_sym_BSLASHchapter] = ACTIONS(6129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddchap] = ACTIONS(6129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsection] = ACTIONS(6129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHaddsec] = ACTIONS(6129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubsection] = ACTIONS(6129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6131), - [anon_sym_BSLASHparagraph] = ACTIONS(6129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6131), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6131), - [anon_sym_BSLASHitem] = ACTIONS(6129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(6131), - [sym_word] = ACTIONS(6129), - [sym_placeholder] = ACTIONS(6131), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_BANG] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_SQUOTE] = ACTIONS(6129), - [anon_sym__] = ACTIONS(6131), - [anon_sym_CARET] = ACTIONS(6131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6131), - [anon_sym_DOLLAR] = ACTIONS(6129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6131), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6131), - [anon_sym_BSLASHbegin] = ACTIONS(6129), - [anon_sym_BSLASHtitle] = ACTIONS(6129), - [anon_sym_BSLASHauthor] = ACTIONS(6129), - [anon_sym_BSLASHusepackage] = ACTIONS(6129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6129), - [anon_sym_BSLASHinclude] = ACTIONS(6129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6129), - [anon_sym_BSLASHinput] = ACTIONS(6129), - [anon_sym_BSLASHsubfile] = ACTIONS(6129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6129), - [anon_sym_BSLASHbibliography] = ACTIONS(6129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6129), - [anon_sym_BSLASHincludesvg] = ACTIONS(6129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6129), - [anon_sym_BSLASHimport] = ACTIONS(6129), - [anon_sym_BSLASHsubimport] = ACTIONS(6129), - [anon_sym_BSLASHinputfrom] = ACTIONS(6129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6129), - [anon_sym_BSLASHincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHcaption] = ACTIONS(6129), - [anon_sym_BSLASHcite] = ACTIONS(6129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCite] = ACTIONS(6129), - [anon_sym_BSLASHnocite] = ACTIONS(6129), - [anon_sym_BSLASHcitet] = ACTIONS(6129), - [anon_sym_BSLASHcitep] = ACTIONS(6129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteauthor] = ACTIONS(6129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitetitle] = ACTIONS(6129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteyear] = ACTIONS(6129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitedate] = ACTIONS(6129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteurl] = ACTIONS(6129), - [anon_sym_BSLASHfullcite] = ACTIONS(6129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6129), - [anon_sym_BSLASHcitealt] = ACTIONS(6129), - [anon_sym_BSLASHcitealp] = ACTIONS(6129), - [anon_sym_BSLASHcitetext] = ACTIONS(6129), - [anon_sym_BSLASHparencite] = ACTIONS(6129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHParencite] = ACTIONS(6129), - [anon_sym_BSLASHfootcite] = ACTIONS(6129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6129), - [anon_sym_BSLASHtextcite] = ACTIONS(6129), - [anon_sym_BSLASHTextcite] = ACTIONS(6129), - [anon_sym_BSLASHsmartcite] = ACTIONS(6129), - [anon_sym_BSLASHSmartcite] = ACTIONS(6129), - [anon_sym_BSLASHsupercite] = ACTIONS(6129), - [anon_sym_BSLASHautocite] = ACTIONS(6129), - [anon_sym_BSLASHAutocite] = ACTIONS(6129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHvolcite] = ACTIONS(6129), - [anon_sym_BSLASHVolcite] = ACTIONS(6129), - [anon_sym_BSLASHpvolcite] = ACTIONS(6129), - [anon_sym_BSLASHPvolcite] = ACTIONS(6129), - [anon_sym_BSLASHfvolcite] = ACTIONS(6129), - [anon_sym_BSLASHftvolcite] = ACTIONS(6129), - [anon_sym_BSLASHsvolcite] = ACTIONS(6129), - [anon_sym_BSLASHSvolcite] = ACTIONS(6129), - [anon_sym_BSLASHtvolcite] = ACTIONS(6129), - [anon_sym_BSLASHTvolcite] = ACTIONS(6129), - [anon_sym_BSLASHavolcite] = ACTIONS(6129), - [anon_sym_BSLASHAvolcite] = ACTIONS(6129), - [anon_sym_BSLASHnotecite] = ACTIONS(6129), - [anon_sym_BSLASHNotecite] = ACTIONS(6129), - [anon_sym_BSLASHpnotecite] = ACTIONS(6129), - [anon_sym_BSLASHPnotecite] = ACTIONS(6129), - [anon_sym_BSLASHfnotecite] = ACTIONS(6129), - [anon_sym_BSLASHlabel] = ACTIONS(6129), - [anon_sym_BSLASHref] = ACTIONS(6129), - [anon_sym_BSLASHeqref] = ACTIONS(6129), - [anon_sym_BSLASHvref] = ACTIONS(6129), - [anon_sym_BSLASHVref] = ACTIONS(6129), - [anon_sym_BSLASHautoref] = ACTIONS(6129), - [anon_sym_BSLASHpageref] = ACTIONS(6129), - [anon_sym_BSLASHcref] = ACTIONS(6129), - [anon_sym_BSLASHCref] = ACTIONS(6129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnameCref] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHlabelcref] = ACTIONS(6129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCrefrange] = ACTIONS(6129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnewlabel] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6131), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHdef] = ACTIONS(6129), - [anon_sym_BSLASHlet] = ACTIONS(6129), - [anon_sym_BSLASHleft] = ACTIONS(6129), - [anon_sym_BSLASHbig] = ACTIONS(6129), - [anon_sym_BSLASHBig] = ACTIONS(6129), - [anon_sym_BSLASHbigg] = ACTIONS(6129), - [anon_sym_BSLASHBigg] = ACTIONS(6129), - [anon_sym_BSLASHbigl] = ACTIONS(6129), - [anon_sym_BSLASHBigl] = ACTIONS(6129), - [anon_sym_BSLASHbiggl] = ACTIONS(6129), - [anon_sym_BSLASHBiggl] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6129), - [anon_sym_BSLASHgls] = ACTIONS(6129), - [anon_sym_BSLASHGls] = ACTIONS(6129), - [anon_sym_BSLASHGLS] = ACTIONS(6129), - [anon_sym_BSLASHglspl] = ACTIONS(6129), - [anon_sym_BSLASHGlspl] = ACTIONS(6129), - [anon_sym_BSLASHGLSpl] = ACTIONS(6129), - [anon_sym_BSLASHglsdisp] = ACTIONS(6129), - [anon_sym_BSLASHglslink] = ACTIONS(6129), - [anon_sym_BSLASHglstext] = ACTIONS(6129), - [anon_sym_BSLASHGlstext] = ACTIONS(6129), - [anon_sym_BSLASHGLStext] = ACTIONS(6129), - [anon_sym_BSLASHglsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6129), - [anon_sym_BSLASHglsplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSplural] = ACTIONS(6129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHglsname] = ACTIONS(6129), - [anon_sym_BSLASHGlsname] = ACTIONS(6129), - [anon_sym_BSLASHGLSname] = ACTIONS(6129), - [anon_sym_BSLASHglssymbol] = ACTIONS(6129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6129), - [anon_sym_BSLASHglsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6129), - [anon_sym_BSLASHglsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6129), - [anon_sym_BSLASHglsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6129), - [anon_sym_BSLASHglsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6129), - [anon_sym_BSLASHglsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6129), - [anon_sym_BSLASHnewacronym] = ACTIONS(6129), - [anon_sym_BSLASHacrshort] = ACTIONS(6129), - [anon_sym_BSLASHAcrshort] = ACTIONS(6129), - [anon_sym_BSLASHACRshort] = ACTIONS(6129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6129), - [anon_sym_BSLASHacrlong] = ACTIONS(6129), - [anon_sym_BSLASHAcrlong] = ACTIONS(6129), - [anon_sym_BSLASHACRlong] = ACTIONS(6129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6129), - [anon_sym_BSLASHacrfull] = ACTIONS(6129), - [anon_sym_BSLASHAcrfull] = ACTIONS(6129), - [anon_sym_BSLASHACRfull] = ACTIONS(6129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6129), - [anon_sym_BSLASHacs] = ACTIONS(6129), - [anon_sym_BSLASHAcs] = ACTIONS(6129), - [anon_sym_BSLASHacsp] = ACTIONS(6129), - [anon_sym_BSLASHAcsp] = ACTIONS(6129), - [anon_sym_BSLASHacl] = ACTIONS(6129), - [anon_sym_BSLASHAcl] = ACTIONS(6129), - [anon_sym_BSLASHaclp] = ACTIONS(6129), - [anon_sym_BSLASHAclp] = ACTIONS(6129), - [anon_sym_BSLASHacf] = ACTIONS(6129), - [anon_sym_BSLASHAcf] = ACTIONS(6129), - [anon_sym_BSLASHacfp] = ACTIONS(6129), - [anon_sym_BSLASHAcfp] = ACTIONS(6129), - [anon_sym_BSLASHac] = ACTIONS(6129), - [anon_sym_BSLASHAc] = ACTIONS(6129), - [anon_sym_BSLASHacp] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6129), - [anon_sym_BSLASHcolor] = ACTIONS(6129), - [anon_sym_BSLASHcolorbox] = ACTIONS(6129), - [anon_sym_BSLASHtextcolor] = ACTIONS(6129), - [anon_sym_BSLASHpagecolor] = ACTIONS(6129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6129), - [anon_sym_BSLASHtext] = ACTIONS(6129), - [anon_sym_BSLASHintertext] = ACTIONS(6129), - [anon_sym_shortintertext] = ACTIONS(6129), - }, - [1390] = { - [sym_command_name] = ACTIONS(6057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6057), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_BSLASHpart] = ACTIONS(6057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddpart] = ACTIONS(6057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6059), - [anon_sym_BSLASHchapter] = ACTIONS(6057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddchap] = ACTIONS(6057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsection] = ACTIONS(6057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHaddsec] = ACTIONS(6057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubsection] = ACTIONS(6057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6059), - [anon_sym_BSLASHparagraph] = ACTIONS(6057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6059), - [anon_sym_BSLASHitem] = ACTIONS(6057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6059), - [sym_word] = ACTIONS(6057), - [sym_placeholder] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_BANG] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_SQUOTE] = ACTIONS(6057), - [anon_sym__] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6059), - [anon_sym_BSLASHbegin] = ACTIONS(6057), - [anon_sym_BSLASHtitle] = ACTIONS(6057), - [anon_sym_BSLASHauthor] = ACTIONS(6057), - [anon_sym_BSLASHusepackage] = ACTIONS(6057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), - [anon_sym_BSLASHinclude] = ACTIONS(6057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), - [anon_sym_BSLASHinput] = ACTIONS(6057), - [anon_sym_BSLASHsubfile] = ACTIONS(6057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), - [anon_sym_BSLASHbibliography] = ACTIONS(6057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), - [anon_sym_BSLASHincludesvg] = ACTIONS(6057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), - [anon_sym_BSLASHimport] = ACTIONS(6057), - [anon_sym_BSLASHsubimport] = ACTIONS(6057), - [anon_sym_BSLASHinputfrom] = ACTIONS(6057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), - [anon_sym_BSLASHincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHcaption] = ACTIONS(6057), - [anon_sym_BSLASHcite] = ACTIONS(6057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCite] = ACTIONS(6057), - [anon_sym_BSLASHnocite] = ACTIONS(6057), - [anon_sym_BSLASHcitet] = ACTIONS(6057), - [anon_sym_BSLASHcitep] = ACTIONS(6057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteauthor] = ACTIONS(6057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitetitle] = ACTIONS(6057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteyear] = ACTIONS(6057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitedate] = ACTIONS(6057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteurl] = ACTIONS(6057), - [anon_sym_BSLASHfullcite] = ACTIONS(6057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), - [anon_sym_BSLASHcitealt] = ACTIONS(6057), - [anon_sym_BSLASHcitealp] = ACTIONS(6057), - [anon_sym_BSLASHcitetext] = ACTIONS(6057), - [anon_sym_BSLASHparencite] = ACTIONS(6057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHParencite] = ACTIONS(6057), - [anon_sym_BSLASHfootcite] = ACTIONS(6057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), - [anon_sym_BSLASHtextcite] = ACTIONS(6057), - [anon_sym_BSLASHTextcite] = ACTIONS(6057), - [anon_sym_BSLASHsmartcite] = ACTIONS(6057), - [anon_sym_BSLASHSmartcite] = ACTIONS(6057), - [anon_sym_BSLASHsupercite] = ACTIONS(6057), - [anon_sym_BSLASHautocite] = ACTIONS(6057), - [anon_sym_BSLASHAutocite] = ACTIONS(6057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHvolcite] = ACTIONS(6057), - [anon_sym_BSLASHVolcite] = ACTIONS(6057), - [anon_sym_BSLASHpvolcite] = ACTIONS(6057), - [anon_sym_BSLASHPvolcite] = ACTIONS(6057), - [anon_sym_BSLASHfvolcite] = ACTIONS(6057), - [anon_sym_BSLASHftvolcite] = ACTIONS(6057), - [anon_sym_BSLASHsvolcite] = ACTIONS(6057), - [anon_sym_BSLASHSvolcite] = ACTIONS(6057), - [anon_sym_BSLASHtvolcite] = ACTIONS(6057), - [anon_sym_BSLASHTvolcite] = ACTIONS(6057), - [anon_sym_BSLASHavolcite] = ACTIONS(6057), - [anon_sym_BSLASHAvolcite] = ACTIONS(6057), - [anon_sym_BSLASHnotecite] = ACTIONS(6057), - [anon_sym_BSLASHNotecite] = ACTIONS(6057), - [anon_sym_BSLASHpnotecite] = ACTIONS(6057), - [anon_sym_BSLASHPnotecite] = ACTIONS(6057), - [anon_sym_BSLASHfnotecite] = ACTIONS(6057), - [anon_sym_BSLASHlabel] = ACTIONS(6057), - [anon_sym_BSLASHref] = ACTIONS(6057), - [anon_sym_BSLASHeqref] = ACTIONS(6057), - [anon_sym_BSLASHvref] = ACTIONS(6057), - [anon_sym_BSLASHVref] = ACTIONS(6057), - [anon_sym_BSLASHautoref] = ACTIONS(6057), - [anon_sym_BSLASHpageref] = ACTIONS(6057), - [anon_sym_BSLASHcref] = ACTIONS(6057), - [anon_sym_BSLASHCref] = ACTIONS(6057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnameCref] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHlabelcref] = ACTIONS(6057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCrefrange] = ACTIONS(6057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnewlabel] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHdef] = ACTIONS(6057), - [anon_sym_BSLASHlet] = ACTIONS(6057), - [anon_sym_BSLASHleft] = ACTIONS(6057), - [anon_sym_BSLASHbig] = ACTIONS(6057), - [anon_sym_BSLASHBig] = ACTIONS(6057), - [anon_sym_BSLASHbigg] = ACTIONS(6057), - [anon_sym_BSLASHBigg] = ACTIONS(6057), - [anon_sym_BSLASHbigl] = ACTIONS(6057), - [anon_sym_BSLASHBigl] = ACTIONS(6057), - [anon_sym_BSLASHbiggl] = ACTIONS(6057), - [anon_sym_BSLASHBiggl] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), - [anon_sym_BSLASHgls] = ACTIONS(6057), - [anon_sym_BSLASHGls] = ACTIONS(6057), - [anon_sym_BSLASHGLS] = ACTIONS(6057), - [anon_sym_BSLASHglspl] = ACTIONS(6057), - [anon_sym_BSLASHGlspl] = ACTIONS(6057), - [anon_sym_BSLASHGLSpl] = ACTIONS(6057), - [anon_sym_BSLASHglsdisp] = ACTIONS(6057), - [anon_sym_BSLASHglslink] = ACTIONS(6057), - [anon_sym_BSLASHglstext] = ACTIONS(6057), - [anon_sym_BSLASHGlstext] = ACTIONS(6057), - [anon_sym_BSLASHGLStext] = ACTIONS(6057), - [anon_sym_BSLASHglsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), - [anon_sym_BSLASHglsplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSplural] = ACTIONS(6057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHglsname] = ACTIONS(6057), - [anon_sym_BSLASHGlsname] = ACTIONS(6057), - [anon_sym_BSLASHGLSname] = ACTIONS(6057), - [anon_sym_BSLASHglssymbol] = ACTIONS(6057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), - [anon_sym_BSLASHglsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), - [anon_sym_BSLASHglsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), - [anon_sym_BSLASHglsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), - [anon_sym_BSLASHglsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), - [anon_sym_BSLASHglsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), - [anon_sym_BSLASHnewacronym] = ACTIONS(6057), - [anon_sym_BSLASHacrshort] = ACTIONS(6057), - [anon_sym_BSLASHAcrshort] = ACTIONS(6057), - [anon_sym_BSLASHACRshort] = ACTIONS(6057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), - [anon_sym_BSLASHacrlong] = ACTIONS(6057), - [anon_sym_BSLASHAcrlong] = ACTIONS(6057), - [anon_sym_BSLASHACRlong] = ACTIONS(6057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), - [anon_sym_BSLASHacrfull] = ACTIONS(6057), - [anon_sym_BSLASHAcrfull] = ACTIONS(6057), - [anon_sym_BSLASHACRfull] = ACTIONS(6057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), - [anon_sym_BSLASHacs] = ACTIONS(6057), - [anon_sym_BSLASHAcs] = ACTIONS(6057), - [anon_sym_BSLASHacsp] = ACTIONS(6057), - [anon_sym_BSLASHAcsp] = ACTIONS(6057), - [anon_sym_BSLASHacl] = ACTIONS(6057), - [anon_sym_BSLASHAcl] = ACTIONS(6057), - [anon_sym_BSLASHaclp] = ACTIONS(6057), - [anon_sym_BSLASHAclp] = ACTIONS(6057), - [anon_sym_BSLASHacf] = ACTIONS(6057), - [anon_sym_BSLASHAcf] = ACTIONS(6057), - [anon_sym_BSLASHacfp] = ACTIONS(6057), - [anon_sym_BSLASHAcfp] = ACTIONS(6057), - [anon_sym_BSLASHac] = ACTIONS(6057), - [anon_sym_BSLASHAc] = ACTIONS(6057), - [anon_sym_BSLASHacp] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), - [anon_sym_BSLASHcolor] = ACTIONS(6057), - [anon_sym_BSLASHcolorbox] = ACTIONS(6057), - [anon_sym_BSLASHtextcolor] = ACTIONS(6057), - [anon_sym_BSLASHpagecolor] = ACTIONS(6057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), - [anon_sym_BSLASHtext] = ACTIONS(6057), - [anon_sym_BSLASHintertext] = ACTIONS(6057), - [anon_sym_shortintertext] = ACTIONS(6057), - }, - [1391] = { - [sym_command_name] = ACTIONS(6209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6209), - [anon_sym_LBRACK] = ACTIONS(6211), - [anon_sym_RBRACK] = ACTIONS(6211), - [anon_sym_COMMA] = ACTIONS(6211), - [anon_sym_EQ] = ACTIONS(6211), - [anon_sym_LPAREN] = ACTIONS(6211), - [anon_sym_RPAREN] = ACTIONS(6211), - [anon_sym_BSLASHpart] = ACTIONS(6209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddpart] = ACTIONS(6209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6211), - [anon_sym_BSLASHchapter] = ACTIONS(6209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddchap] = ACTIONS(6209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsection] = ACTIONS(6209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHaddsec] = ACTIONS(6209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubsection] = ACTIONS(6209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6211), - [anon_sym_BSLASHparagraph] = ACTIONS(6209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6211), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6211), - [anon_sym_BSLASHitem] = ACTIONS(6209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6211), - [anon_sym_LBRACE] = ACTIONS(6211), - [sym_word] = ACTIONS(6209), - [sym_placeholder] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6211), - [anon_sym_DASH] = ACTIONS(6211), - [anon_sym_STAR] = ACTIONS(6211), - [anon_sym_SLASH] = ACTIONS(6211), - [anon_sym_LT] = ACTIONS(6209), - [anon_sym_GT] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6209), - [anon_sym_COLON] = ACTIONS(6209), - [anon_sym_SQUOTE] = ACTIONS(6209), - [anon_sym__] = ACTIONS(6211), - [anon_sym_CARET] = ACTIONS(6211), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6211), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6211), - [anon_sym_DOLLAR] = ACTIONS(6209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6211), - [anon_sym_BSLASHbegin] = ACTIONS(6209), - [anon_sym_BSLASHtitle] = ACTIONS(6209), - [anon_sym_BSLASHauthor] = ACTIONS(6209), - [anon_sym_BSLASHusepackage] = ACTIONS(6209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), - [anon_sym_BSLASHinclude] = ACTIONS(6209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), - [anon_sym_BSLASHinput] = ACTIONS(6209), - [anon_sym_BSLASHsubfile] = ACTIONS(6209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), - [anon_sym_BSLASHbibliography] = ACTIONS(6209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), - [anon_sym_BSLASHincludesvg] = ACTIONS(6209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), - [anon_sym_BSLASHimport] = ACTIONS(6209), - [anon_sym_BSLASHsubimport] = ACTIONS(6209), - [anon_sym_BSLASHinputfrom] = ACTIONS(6209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), - [anon_sym_BSLASHincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHcaption] = ACTIONS(6209), - [anon_sym_BSLASHcite] = ACTIONS(6209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCite] = ACTIONS(6209), - [anon_sym_BSLASHnocite] = ACTIONS(6209), - [anon_sym_BSLASHcitet] = ACTIONS(6209), - [anon_sym_BSLASHcitep] = ACTIONS(6209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteauthor] = ACTIONS(6209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitetitle] = ACTIONS(6209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteyear] = ACTIONS(6209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitedate] = ACTIONS(6209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteurl] = ACTIONS(6209), - [anon_sym_BSLASHfullcite] = ACTIONS(6209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), - [anon_sym_BSLASHcitealt] = ACTIONS(6209), - [anon_sym_BSLASHcitealp] = ACTIONS(6209), - [anon_sym_BSLASHcitetext] = ACTIONS(6209), - [anon_sym_BSLASHparencite] = ACTIONS(6209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHParencite] = ACTIONS(6209), - [anon_sym_BSLASHfootcite] = ACTIONS(6209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), - [anon_sym_BSLASHtextcite] = ACTIONS(6209), - [anon_sym_BSLASHTextcite] = ACTIONS(6209), - [anon_sym_BSLASHsmartcite] = ACTIONS(6209), - [anon_sym_BSLASHSmartcite] = ACTIONS(6209), - [anon_sym_BSLASHsupercite] = ACTIONS(6209), - [anon_sym_BSLASHautocite] = ACTIONS(6209), - [anon_sym_BSLASHAutocite] = ACTIONS(6209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHvolcite] = ACTIONS(6209), - [anon_sym_BSLASHVolcite] = ACTIONS(6209), - [anon_sym_BSLASHpvolcite] = ACTIONS(6209), - [anon_sym_BSLASHPvolcite] = ACTIONS(6209), - [anon_sym_BSLASHfvolcite] = ACTIONS(6209), - [anon_sym_BSLASHftvolcite] = ACTIONS(6209), - [anon_sym_BSLASHsvolcite] = ACTIONS(6209), - [anon_sym_BSLASHSvolcite] = ACTIONS(6209), - [anon_sym_BSLASHtvolcite] = ACTIONS(6209), - [anon_sym_BSLASHTvolcite] = ACTIONS(6209), - [anon_sym_BSLASHavolcite] = ACTIONS(6209), - [anon_sym_BSLASHAvolcite] = ACTIONS(6209), - [anon_sym_BSLASHnotecite] = ACTIONS(6209), - [anon_sym_BSLASHNotecite] = ACTIONS(6209), - [anon_sym_BSLASHpnotecite] = ACTIONS(6209), - [anon_sym_BSLASHPnotecite] = ACTIONS(6209), - [anon_sym_BSLASHfnotecite] = ACTIONS(6209), - [anon_sym_BSLASHlabel] = ACTIONS(6209), - [anon_sym_BSLASHref] = ACTIONS(6209), - [anon_sym_BSLASHeqref] = ACTIONS(6209), - [anon_sym_BSLASHvref] = ACTIONS(6209), - [anon_sym_BSLASHVref] = ACTIONS(6209), - [anon_sym_BSLASHautoref] = ACTIONS(6209), - [anon_sym_BSLASHpageref] = ACTIONS(6209), - [anon_sym_BSLASHcref] = ACTIONS(6209), - [anon_sym_BSLASHCref] = ACTIONS(6209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnameCref] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHlabelcref] = ACTIONS(6209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCrefrange] = ACTIONS(6209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnewlabel] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6211), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHdef] = ACTIONS(6209), - [anon_sym_BSLASHlet] = ACTIONS(6209), - [anon_sym_BSLASHleft] = ACTIONS(6209), - [anon_sym_BSLASHbig] = ACTIONS(6209), - [anon_sym_BSLASHBig] = ACTIONS(6209), - [anon_sym_BSLASHbigg] = ACTIONS(6209), - [anon_sym_BSLASHBigg] = ACTIONS(6209), - [anon_sym_BSLASHbigl] = ACTIONS(6209), - [anon_sym_BSLASHBigl] = ACTIONS(6209), - [anon_sym_BSLASHbiggl] = ACTIONS(6209), - [anon_sym_BSLASHBiggl] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), - [anon_sym_BSLASHgls] = ACTIONS(6209), - [anon_sym_BSLASHGls] = ACTIONS(6209), - [anon_sym_BSLASHGLS] = ACTIONS(6209), - [anon_sym_BSLASHglspl] = ACTIONS(6209), - [anon_sym_BSLASHGlspl] = ACTIONS(6209), - [anon_sym_BSLASHGLSpl] = ACTIONS(6209), - [anon_sym_BSLASHglsdisp] = ACTIONS(6209), - [anon_sym_BSLASHglslink] = ACTIONS(6209), - [anon_sym_BSLASHglstext] = ACTIONS(6209), - [anon_sym_BSLASHGlstext] = ACTIONS(6209), - [anon_sym_BSLASHGLStext] = ACTIONS(6209), - [anon_sym_BSLASHglsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), - [anon_sym_BSLASHglsplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSplural] = ACTIONS(6209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHglsname] = ACTIONS(6209), - [anon_sym_BSLASHGlsname] = ACTIONS(6209), - [anon_sym_BSLASHGLSname] = ACTIONS(6209), - [anon_sym_BSLASHglssymbol] = ACTIONS(6209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), - [anon_sym_BSLASHglsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), - [anon_sym_BSLASHglsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), - [anon_sym_BSLASHglsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), - [anon_sym_BSLASHglsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), - [anon_sym_BSLASHglsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), - [anon_sym_BSLASHnewacronym] = ACTIONS(6209), - [anon_sym_BSLASHacrshort] = ACTIONS(6209), - [anon_sym_BSLASHAcrshort] = ACTIONS(6209), - [anon_sym_BSLASHACRshort] = ACTIONS(6209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), - [anon_sym_BSLASHacrlong] = ACTIONS(6209), - [anon_sym_BSLASHAcrlong] = ACTIONS(6209), - [anon_sym_BSLASHACRlong] = ACTIONS(6209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), - [anon_sym_BSLASHacrfull] = ACTIONS(6209), - [anon_sym_BSLASHAcrfull] = ACTIONS(6209), - [anon_sym_BSLASHACRfull] = ACTIONS(6209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), - [anon_sym_BSLASHacs] = ACTIONS(6209), - [anon_sym_BSLASHAcs] = ACTIONS(6209), - [anon_sym_BSLASHacsp] = ACTIONS(6209), - [anon_sym_BSLASHAcsp] = ACTIONS(6209), - [anon_sym_BSLASHacl] = ACTIONS(6209), - [anon_sym_BSLASHAcl] = ACTIONS(6209), - [anon_sym_BSLASHaclp] = ACTIONS(6209), - [anon_sym_BSLASHAclp] = ACTIONS(6209), - [anon_sym_BSLASHacf] = ACTIONS(6209), - [anon_sym_BSLASHAcf] = ACTIONS(6209), - [anon_sym_BSLASHacfp] = ACTIONS(6209), - [anon_sym_BSLASHAcfp] = ACTIONS(6209), - [anon_sym_BSLASHac] = ACTIONS(6209), - [anon_sym_BSLASHAc] = ACTIONS(6209), - [anon_sym_BSLASHacp] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), - [anon_sym_BSLASHcolor] = ACTIONS(6209), - [anon_sym_BSLASHcolorbox] = ACTIONS(6209), - [anon_sym_BSLASHtextcolor] = ACTIONS(6209), - [anon_sym_BSLASHpagecolor] = ACTIONS(6209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), - [anon_sym_BSLASHtext] = ACTIONS(6209), - [anon_sym_BSLASHintertext] = ACTIONS(6209), - [anon_sym_shortintertext] = ACTIONS(6209), - }, - [1392] = { - [sym_command_name] = ACTIONS(6053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6053), - [anon_sym_LBRACK] = ACTIONS(6055), - [anon_sym_RBRACK] = ACTIONS(6055), - [anon_sym_COMMA] = ACTIONS(6055), - [anon_sym_EQ] = ACTIONS(6055), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_BSLASHpart] = ACTIONS(6053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddpart] = ACTIONS(6053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6055), - [anon_sym_BSLASHchapter] = ACTIONS(6053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddchap] = ACTIONS(6053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsection] = ACTIONS(6053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHaddsec] = ACTIONS(6053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubsection] = ACTIONS(6053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6055), - [anon_sym_BSLASHparagraph] = ACTIONS(6053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6055), - [anon_sym_BSLASHitem] = ACTIONS(6053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6055), - [anon_sym_LBRACE] = ACTIONS(6055), - [sym_word] = ACTIONS(6053), - [sym_placeholder] = ACTIONS(6055), - [anon_sym_PLUS] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(6055), - [anon_sym_STAR] = ACTIONS(6055), - [anon_sym_SLASH] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_COLON] = ACTIONS(6053), - [anon_sym_SQUOTE] = ACTIONS(6053), - [anon_sym__] = ACTIONS(6055), - [anon_sym_CARET] = ACTIONS(6055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6055), - [anon_sym_BSLASHbegin] = ACTIONS(6053), - [anon_sym_BSLASHtitle] = ACTIONS(6053), - [anon_sym_BSLASHauthor] = ACTIONS(6053), - [anon_sym_BSLASHusepackage] = ACTIONS(6053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), - [anon_sym_BSLASHinclude] = ACTIONS(6053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), - [anon_sym_BSLASHinput] = ACTIONS(6053), - [anon_sym_BSLASHsubfile] = ACTIONS(6053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), - [anon_sym_BSLASHbibliography] = ACTIONS(6053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), - [anon_sym_BSLASHincludesvg] = ACTIONS(6053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), - [anon_sym_BSLASHimport] = ACTIONS(6053), - [anon_sym_BSLASHsubimport] = ACTIONS(6053), - [anon_sym_BSLASHinputfrom] = ACTIONS(6053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), - [anon_sym_BSLASHincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHcaption] = ACTIONS(6053), - [anon_sym_BSLASHcite] = ACTIONS(6053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCite] = ACTIONS(6053), - [anon_sym_BSLASHnocite] = ACTIONS(6053), - [anon_sym_BSLASHcitet] = ACTIONS(6053), - [anon_sym_BSLASHcitep] = ACTIONS(6053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteauthor] = ACTIONS(6053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitetitle] = ACTIONS(6053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteyear] = ACTIONS(6053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitedate] = ACTIONS(6053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteurl] = ACTIONS(6053), - [anon_sym_BSLASHfullcite] = ACTIONS(6053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), - [anon_sym_BSLASHcitealt] = ACTIONS(6053), - [anon_sym_BSLASHcitealp] = ACTIONS(6053), - [anon_sym_BSLASHcitetext] = ACTIONS(6053), - [anon_sym_BSLASHparencite] = ACTIONS(6053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHParencite] = ACTIONS(6053), - [anon_sym_BSLASHfootcite] = ACTIONS(6053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), - [anon_sym_BSLASHtextcite] = ACTIONS(6053), - [anon_sym_BSLASHTextcite] = ACTIONS(6053), - [anon_sym_BSLASHsmartcite] = ACTIONS(6053), - [anon_sym_BSLASHSmartcite] = ACTIONS(6053), - [anon_sym_BSLASHsupercite] = ACTIONS(6053), - [anon_sym_BSLASHautocite] = ACTIONS(6053), - [anon_sym_BSLASHAutocite] = ACTIONS(6053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHvolcite] = ACTIONS(6053), - [anon_sym_BSLASHVolcite] = ACTIONS(6053), - [anon_sym_BSLASHpvolcite] = ACTIONS(6053), - [anon_sym_BSLASHPvolcite] = ACTIONS(6053), - [anon_sym_BSLASHfvolcite] = ACTIONS(6053), - [anon_sym_BSLASHftvolcite] = ACTIONS(6053), - [anon_sym_BSLASHsvolcite] = ACTIONS(6053), - [anon_sym_BSLASHSvolcite] = ACTIONS(6053), - [anon_sym_BSLASHtvolcite] = ACTIONS(6053), - [anon_sym_BSLASHTvolcite] = ACTIONS(6053), - [anon_sym_BSLASHavolcite] = ACTIONS(6053), - [anon_sym_BSLASHAvolcite] = ACTIONS(6053), - [anon_sym_BSLASHnotecite] = ACTIONS(6053), - [anon_sym_BSLASHNotecite] = ACTIONS(6053), - [anon_sym_BSLASHpnotecite] = ACTIONS(6053), - [anon_sym_BSLASHPnotecite] = ACTIONS(6053), - [anon_sym_BSLASHfnotecite] = ACTIONS(6053), - [anon_sym_BSLASHlabel] = ACTIONS(6053), - [anon_sym_BSLASHref] = ACTIONS(6053), - [anon_sym_BSLASHeqref] = ACTIONS(6053), - [anon_sym_BSLASHvref] = ACTIONS(6053), - [anon_sym_BSLASHVref] = ACTIONS(6053), - [anon_sym_BSLASHautoref] = ACTIONS(6053), - [anon_sym_BSLASHpageref] = ACTIONS(6053), - [anon_sym_BSLASHcref] = ACTIONS(6053), - [anon_sym_BSLASHCref] = ACTIONS(6053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnameCref] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHlabelcref] = ACTIONS(6053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCrefrange] = ACTIONS(6053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnewlabel] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHdef] = ACTIONS(6053), - [anon_sym_BSLASHlet] = ACTIONS(6053), - [anon_sym_BSLASHleft] = ACTIONS(6053), - [anon_sym_BSLASHbig] = ACTIONS(6053), - [anon_sym_BSLASHBig] = ACTIONS(6053), - [anon_sym_BSLASHbigg] = ACTIONS(6053), - [anon_sym_BSLASHBigg] = ACTIONS(6053), - [anon_sym_BSLASHbigl] = ACTIONS(6053), - [anon_sym_BSLASHBigl] = ACTIONS(6053), - [anon_sym_BSLASHbiggl] = ACTIONS(6053), - [anon_sym_BSLASHBiggl] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), - [anon_sym_BSLASHgls] = ACTIONS(6053), - [anon_sym_BSLASHGls] = ACTIONS(6053), - [anon_sym_BSLASHGLS] = ACTIONS(6053), - [anon_sym_BSLASHglspl] = ACTIONS(6053), - [anon_sym_BSLASHGlspl] = ACTIONS(6053), - [anon_sym_BSLASHGLSpl] = ACTIONS(6053), - [anon_sym_BSLASHglsdisp] = ACTIONS(6053), - [anon_sym_BSLASHglslink] = ACTIONS(6053), - [anon_sym_BSLASHglstext] = ACTIONS(6053), - [anon_sym_BSLASHGlstext] = ACTIONS(6053), - [anon_sym_BSLASHGLStext] = ACTIONS(6053), - [anon_sym_BSLASHglsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), - [anon_sym_BSLASHglsplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSplural] = ACTIONS(6053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHglsname] = ACTIONS(6053), - [anon_sym_BSLASHGlsname] = ACTIONS(6053), - [anon_sym_BSLASHGLSname] = ACTIONS(6053), - [anon_sym_BSLASHglssymbol] = ACTIONS(6053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), - [anon_sym_BSLASHglsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), - [anon_sym_BSLASHglsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), - [anon_sym_BSLASHglsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), - [anon_sym_BSLASHglsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), - [anon_sym_BSLASHglsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), - [anon_sym_BSLASHnewacronym] = ACTIONS(6053), - [anon_sym_BSLASHacrshort] = ACTIONS(6053), - [anon_sym_BSLASHAcrshort] = ACTIONS(6053), - [anon_sym_BSLASHACRshort] = ACTIONS(6053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), - [anon_sym_BSLASHacrlong] = ACTIONS(6053), - [anon_sym_BSLASHAcrlong] = ACTIONS(6053), - [anon_sym_BSLASHACRlong] = ACTIONS(6053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), - [anon_sym_BSLASHacrfull] = ACTIONS(6053), - [anon_sym_BSLASHAcrfull] = ACTIONS(6053), - [anon_sym_BSLASHACRfull] = ACTIONS(6053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), - [anon_sym_BSLASHacs] = ACTIONS(6053), - [anon_sym_BSLASHAcs] = ACTIONS(6053), - [anon_sym_BSLASHacsp] = ACTIONS(6053), - [anon_sym_BSLASHAcsp] = ACTIONS(6053), - [anon_sym_BSLASHacl] = ACTIONS(6053), - [anon_sym_BSLASHAcl] = ACTIONS(6053), - [anon_sym_BSLASHaclp] = ACTIONS(6053), - [anon_sym_BSLASHAclp] = ACTIONS(6053), - [anon_sym_BSLASHacf] = ACTIONS(6053), - [anon_sym_BSLASHAcf] = ACTIONS(6053), - [anon_sym_BSLASHacfp] = ACTIONS(6053), - [anon_sym_BSLASHAcfp] = ACTIONS(6053), - [anon_sym_BSLASHac] = ACTIONS(6053), - [anon_sym_BSLASHAc] = ACTIONS(6053), - [anon_sym_BSLASHacp] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), - [anon_sym_BSLASHcolor] = ACTIONS(6053), - [anon_sym_BSLASHcolorbox] = ACTIONS(6053), - [anon_sym_BSLASHtextcolor] = ACTIONS(6053), - [anon_sym_BSLASHpagecolor] = ACTIONS(6053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), - [anon_sym_BSLASHtext] = ACTIONS(6053), - [anon_sym_BSLASHintertext] = ACTIONS(6053), - [anon_sym_shortintertext] = ACTIONS(6053), - }, - [1393] = { - [sym_command_name] = ACTIONS(6049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6049), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_BSLASHpart] = ACTIONS(6049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddpart] = ACTIONS(6049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6051), - [anon_sym_BSLASHchapter] = ACTIONS(6049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddchap] = ACTIONS(6049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsection] = ACTIONS(6049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHaddsec] = ACTIONS(6049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubsection] = ACTIONS(6049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6051), - [anon_sym_BSLASHparagraph] = ACTIONS(6049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6051), - [anon_sym_BSLASHitem] = ACTIONS(6049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6051), - [anon_sym_LBRACE] = ACTIONS(6051), - [sym_word] = ACTIONS(6049), - [sym_placeholder] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6051), - [anon_sym_DASH] = ACTIONS(6051), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6049), - [anon_sym_GT] = ACTIONS(6049), - [anon_sym_BANG] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6049), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_SQUOTE] = ACTIONS(6049), - [anon_sym__] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6051), - [anon_sym_BSLASHbegin] = ACTIONS(6049), - [anon_sym_BSLASHtitle] = ACTIONS(6049), - [anon_sym_BSLASHauthor] = ACTIONS(6049), - [anon_sym_BSLASHusepackage] = ACTIONS(6049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6049), - [anon_sym_BSLASHinclude] = ACTIONS(6049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6049), - [anon_sym_BSLASHinput] = ACTIONS(6049), - [anon_sym_BSLASHsubfile] = ACTIONS(6049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6049), - [anon_sym_BSLASHbibliography] = ACTIONS(6049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6049), - [anon_sym_BSLASHincludesvg] = ACTIONS(6049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6049), - [anon_sym_BSLASHimport] = ACTIONS(6049), - [anon_sym_BSLASHsubimport] = ACTIONS(6049), - [anon_sym_BSLASHinputfrom] = ACTIONS(6049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6049), - [anon_sym_BSLASHincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHcaption] = ACTIONS(6049), - [anon_sym_BSLASHcite] = ACTIONS(6049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCite] = ACTIONS(6049), - [anon_sym_BSLASHnocite] = ACTIONS(6049), - [anon_sym_BSLASHcitet] = ACTIONS(6049), - [anon_sym_BSLASHcitep] = ACTIONS(6049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteauthor] = ACTIONS(6049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitetitle] = ACTIONS(6049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteyear] = ACTIONS(6049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitedate] = ACTIONS(6049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteurl] = ACTIONS(6049), - [anon_sym_BSLASHfullcite] = ACTIONS(6049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6049), - [anon_sym_BSLASHcitealt] = ACTIONS(6049), - [anon_sym_BSLASHcitealp] = ACTIONS(6049), - [anon_sym_BSLASHcitetext] = ACTIONS(6049), - [anon_sym_BSLASHparencite] = ACTIONS(6049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHParencite] = ACTIONS(6049), - [anon_sym_BSLASHfootcite] = ACTIONS(6049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6049), - [anon_sym_BSLASHtextcite] = ACTIONS(6049), - [anon_sym_BSLASHTextcite] = ACTIONS(6049), - [anon_sym_BSLASHsmartcite] = ACTIONS(6049), - [anon_sym_BSLASHSmartcite] = ACTIONS(6049), - [anon_sym_BSLASHsupercite] = ACTIONS(6049), - [anon_sym_BSLASHautocite] = ACTIONS(6049), - [anon_sym_BSLASHAutocite] = ACTIONS(6049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHvolcite] = ACTIONS(6049), - [anon_sym_BSLASHVolcite] = ACTIONS(6049), - [anon_sym_BSLASHpvolcite] = ACTIONS(6049), - [anon_sym_BSLASHPvolcite] = ACTIONS(6049), - [anon_sym_BSLASHfvolcite] = ACTIONS(6049), - [anon_sym_BSLASHftvolcite] = ACTIONS(6049), - [anon_sym_BSLASHsvolcite] = ACTIONS(6049), - [anon_sym_BSLASHSvolcite] = ACTIONS(6049), - [anon_sym_BSLASHtvolcite] = ACTIONS(6049), - [anon_sym_BSLASHTvolcite] = ACTIONS(6049), - [anon_sym_BSLASHavolcite] = ACTIONS(6049), - [anon_sym_BSLASHAvolcite] = ACTIONS(6049), - [anon_sym_BSLASHnotecite] = ACTIONS(6049), - [anon_sym_BSLASHNotecite] = ACTIONS(6049), - [anon_sym_BSLASHpnotecite] = ACTIONS(6049), - [anon_sym_BSLASHPnotecite] = ACTIONS(6049), - [anon_sym_BSLASHfnotecite] = ACTIONS(6049), - [anon_sym_BSLASHlabel] = ACTIONS(6049), - [anon_sym_BSLASHref] = ACTIONS(6049), - [anon_sym_BSLASHeqref] = ACTIONS(6049), - [anon_sym_BSLASHvref] = ACTIONS(6049), - [anon_sym_BSLASHVref] = ACTIONS(6049), - [anon_sym_BSLASHautoref] = ACTIONS(6049), - [anon_sym_BSLASHpageref] = ACTIONS(6049), - [anon_sym_BSLASHcref] = ACTIONS(6049), - [anon_sym_BSLASHCref] = ACTIONS(6049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnameCref] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHlabelcref] = ACTIONS(6049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCrefrange] = ACTIONS(6049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnewlabel] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHdef] = ACTIONS(6049), - [anon_sym_BSLASHlet] = ACTIONS(6049), - [anon_sym_BSLASHleft] = ACTIONS(6049), - [anon_sym_BSLASHbig] = ACTIONS(6049), - [anon_sym_BSLASHBig] = ACTIONS(6049), - [anon_sym_BSLASHbigg] = ACTIONS(6049), - [anon_sym_BSLASHBigg] = ACTIONS(6049), - [anon_sym_BSLASHbigl] = ACTIONS(6049), - [anon_sym_BSLASHBigl] = ACTIONS(6049), - [anon_sym_BSLASHbiggl] = ACTIONS(6049), - [anon_sym_BSLASHBiggl] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6049), - [anon_sym_BSLASHgls] = ACTIONS(6049), - [anon_sym_BSLASHGls] = ACTIONS(6049), - [anon_sym_BSLASHGLS] = ACTIONS(6049), - [anon_sym_BSLASHglspl] = ACTIONS(6049), - [anon_sym_BSLASHGlspl] = ACTIONS(6049), - [anon_sym_BSLASHGLSpl] = ACTIONS(6049), - [anon_sym_BSLASHglsdisp] = ACTIONS(6049), - [anon_sym_BSLASHglslink] = ACTIONS(6049), - [anon_sym_BSLASHglstext] = ACTIONS(6049), - [anon_sym_BSLASHGlstext] = ACTIONS(6049), - [anon_sym_BSLASHGLStext] = ACTIONS(6049), - [anon_sym_BSLASHglsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6049), - [anon_sym_BSLASHglsplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSplural] = ACTIONS(6049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHglsname] = ACTIONS(6049), - [anon_sym_BSLASHGlsname] = ACTIONS(6049), - [anon_sym_BSLASHGLSname] = ACTIONS(6049), - [anon_sym_BSLASHglssymbol] = ACTIONS(6049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6049), - [anon_sym_BSLASHglsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6049), - [anon_sym_BSLASHglsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6049), - [anon_sym_BSLASHglsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6049), - [anon_sym_BSLASHglsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6049), - [anon_sym_BSLASHglsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6049), - [anon_sym_BSLASHnewacronym] = ACTIONS(6049), - [anon_sym_BSLASHacrshort] = ACTIONS(6049), - [anon_sym_BSLASHAcrshort] = ACTIONS(6049), - [anon_sym_BSLASHACRshort] = ACTIONS(6049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6049), - [anon_sym_BSLASHacrlong] = ACTIONS(6049), - [anon_sym_BSLASHAcrlong] = ACTIONS(6049), - [anon_sym_BSLASHACRlong] = ACTIONS(6049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6049), - [anon_sym_BSLASHacrfull] = ACTIONS(6049), - [anon_sym_BSLASHAcrfull] = ACTIONS(6049), - [anon_sym_BSLASHACRfull] = ACTIONS(6049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6049), - [anon_sym_BSLASHacs] = ACTIONS(6049), - [anon_sym_BSLASHAcs] = ACTIONS(6049), - [anon_sym_BSLASHacsp] = ACTIONS(6049), - [anon_sym_BSLASHAcsp] = ACTIONS(6049), - [anon_sym_BSLASHacl] = ACTIONS(6049), - [anon_sym_BSLASHAcl] = ACTIONS(6049), - [anon_sym_BSLASHaclp] = ACTIONS(6049), - [anon_sym_BSLASHAclp] = ACTIONS(6049), - [anon_sym_BSLASHacf] = ACTIONS(6049), - [anon_sym_BSLASHAcf] = ACTIONS(6049), - [anon_sym_BSLASHacfp] = ACTIONS(6049), - [anon_sym_BSLASHAcfp] = ACTIONS(6049), - [anon_sym_BSLASHac] = ACTIONS(6049), - [anon_sym_BSLASHAc] = ACTIONS(6049), - [anon_sym_BSLASHacp] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6049), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6049), - [anon_sym_BSLASHcolor] = ACTIONS(6049), - [anon_sym_BSLASHcolorbox] = ACTIONS(6049), - [anon_sym_BSLASHtextcolor] = ACTIONS(6049), - [anon_sym_BSLASHpagecolor] = ACTIONS(6049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6049), - [anon_sym_BSLASHtext] = ACTIONS(6049), - [anon_sym_BSLASHintertext] = ACTIONS(6049), - [anon_sym_shortintertext] = ACTIONS(6049), - }, - [1394] = { - [sym_command_name] = ACTIONS(6045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6045), - [anon_sym_LBRACK] = ACTIONS(6047), - [anon_sym_RBRACK] = ACTIONS(6047), - [anon_sym_COMMA] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(6047), - [anon_sym_LPAREN] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_BSLASHpart] = ACTIONS(6045), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddpart] = ACTIONS(6045), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6047), - [anon_sym_BSLASHchapter] = ACTIONS(6045), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddchap] = ACTIONS(6045), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsection] = ACTIONS(6045), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHaddsec] = ACTIONS(6045), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubsection] = ACTIONS(6045), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6045), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6047), - [anon_sym_BSLASHparagraph] = ACTIONS(6045), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6045), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6047), - [anon_sym_BSLASHitem] = ACTIONS(6045), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6047), - [anon_sym_LBRACE] = ACTIONS(6047), - [sym_word] = ACTIONS(6045), - [sym_placeholder] = ACTIONS(6047), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6047), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_BANG] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_SQUOTE] = ACTIONS(6045), - [anon_sym__] = ACTIONS(6047), - [anon_sym_CARET] = ACTIONS(6047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6047), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6047), - [anon_sym_BSLASHbegin] = ACTIONS(6045), - [anon_sym_BSLASHtitle] = ACTIONS(6045), - [anon_sym_BSLASHauthor] = ACTIONS(6045), - [anon_sym_BSLASHusepackage] = ACTIONS(6045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6045), - [anon_sym_BSLASHinclude] = ACTIONS(6045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6045), - [anon_sym_BSLASHinput] = ACTIONS(6045), - [anon_sym_BSLASHsubfile] = ACTIONS(6045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6045), - [anon_sym_BSLASHbibliography] = ACTIONS(6045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6045), - [anon_sym_BSLASHincludesvg] = ACTIONS(6045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6045), - [anon_sym_BSLASHimport] = ACTIONS(6045), - [anon_sym_BSLASHsubimport] = ACTIONS(6045), - [anon_sym_BSLASHinputfrom] = ACTIONS(6045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6045), - [anon_sym_BSLASHincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHcaption] = ACTIONS(6045), - [anon_sym_BSLASHcite] = ACTIONS(6045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCite] = ACTIONS(6045), - [anon_sym_BSLASHnocite] = ACTIONS(6045), - [anon_sym_BSLASHcitet] = ACTIONS(6045), - [anon_sym_BSLASHcitep] = ACTIONS(6045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteauthor] = ACTIONS(6045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitetitle] = ACTIONS(6045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteyear] = ACTIONS(6045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitedate] = ACTIONS(6045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteurl] = ACTIONS(6045), - [anon_sym_BSLASHfullcite] = ACTIONS(6045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6045), - [anon_sym_BSLASHcitealt] = ACTIONS(6045), - [anon_sym_BSLASHcitealp] = ACTIONS(6045), - [anon_sym_BSLASHcitetext] = ACTIONS(6045), - [anon_sym_BSLASHparencite] = ACTIONS(6045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHParencite] = ACTIONS(6045), - [anon_sym_BSLASHfootcite] = ACTIONS(6045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6045), - [anon_sym_BSLASHtextcite] = ACTIONS(6045), - [anon_sym_BSLASHTextcite] = ACTIONS(6045), - [anon_sym_BSLASHsmartcite] = ACTIONS(6045), - [anon_sym_BSLASHSmartcite] = ACTIONS(6045), - [anon_sym_BSLASHsupercite] = ACTIONS(6045), - [anon_sym_BSLASHautocite] = ACTIONS(6045), - [anon_sym_BSLASHAutocite] = ACTIONS(6045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHvolcite] = ACTIONS(6045), - [anon_sym_BSLASHVolcite] = ACTIONS(6045), - [anon_sym_BSLASHpvolcite] = ACTIONS(6045), - [anon_sym_BSLASHPvolcite] = ACTIONS(6045), - [anon_sym_BSLASHfvolcite] = ACTIONS(6045), - [anon_sym_BSLASHftvolcite] = ACTIONS(6045), - [anon_sym_BSLASHsvolcite] = ACTIONS(6045), - [anon_sym_BSLASHSvolcite] = ACTIONS(6045), - [anon_sym_BSLASHtvolcite] = ACTIONS(6045), - [anon_sym_BSLASHTvolcite] = ACTIONS(6045), - [anon_sym_BSLASHavolcite] = ACTIONS(6045), - [anon_sym_BSLASHAvolcite] = ACTIONS(6045), - [anon_sym_BSLASHnotecite] = ACTIONS(6045), - [anon_sym_BSLASHNotecite] = ACTIONS(6045), - [anon_sym_BSLASHpnotecite] = ACTIONS(6045), - [anon_sym_BSLASHPnotecite] = ACTIONS(6045), - [anon_sym_BSLASHfnotecite] = ACTIONS(6045), - [anon_sym_BSLASHlabel] = ACTIONS(6045), - [anon_sym_BSLASHref] = ACTIONS(6045), - [anon_sym_BSLASHeqref] = ACTIONS(6045), - [anon_sym_BSLASHvref] = ACTIONS(6045), - [anon_sym_BSLASHVref] = ACTIONS(6045), - [anon_sym_BSLASHautoref] = ACTIONS(6045), - [anon_sym_BSLASHpageref] = ACTIONS(6045), - [anon_sym_BSLASHcref] = ACTIONS(6045), - [anon_sym_BSLASHCref] = ACTIONS(6045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnameCref] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHlabelcref] = ACTIONS(6045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCrefrange] = ACTIONS(6045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnewlabel] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6047), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHdef] = ACTIONS(6045), - [anon_sym_BSLASHlet] = ACTIONS(6045), - [anon_sym_BSLASHleft] = ACTIONS(6045), - [anon_sym_BSLASHbig] = ACTIONS(6045), - [anon_sym_BSLASHBig] = ACTIONS(6045), - [anon_sym_BSLASHbigg] = ACTIONS(6045), - [anon_sym_BSLASHBigg] = ACTIONS(6045), - [anon_sym_BSLASHbigl] = ACTIONS(6045), - [anon_sym_BSLASHBigl] = ACTIONS(6045), - [anon_sym_BSLASHbiggl] = ACTIONS(6045), - [anon_sym_BSLASHBiggl] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6045), - [anon_sym_BSLASHgls] = ACTIONS(6045), - [anon_sym_BSLASHGls] = ACTIONS(6045), - [anon_sym_BSLASHGLS] = ACTIONS(6045), - [anon_sym_BSLASHglspl] = ACTIONS(6045), - [anon_sym_BSLASHGlspl] = ACTIONS(6045), - [anon_sym_BSLASHGLSpl] = ACTIONS(6045), - [anon_sym_BSLASHglsdisp] = ACTIONS(6045), - [anon_sym_BSLASHglslink] = ACTIONS(6045), - [anon_sym_BSLASHglstext] = ACTIONS(6045), - [anon_sym_BSLASHGlstext] = ACTIONS(6045), - [anon_sym_BSLASHGLStext] = ACTIONS(6045), - [anon_sym_BSLASHglsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6045), - [anon_sym_BSLASHglsplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSplural] = ACTIONS(6045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHglsname] = ACTIONS(6045), - [anon_sym_BSLASHGlsname] = ACTIONS(6045), - [anon_sym_BSLASHGLSname] = ACTIONS(6045), - [anon_sym_BSLASHglssymbol] = ACTIONS(6045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6045), - [anon_sym_BSLASHglsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6045), - [anon_sym_BSLASHglsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6045), - [anon_sym_BSLASHglsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6045), - [anon_sym_BSLASHglsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6045), - [anon_sym_BSLASHglsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6045), - [anon_sym_BSLASHnewacronym] = ACTIONS(6045), - [anon_sym_BSLASHacrshort] = ACTIONS(6045), - [anon_sym_BSLASHAcrshort] = ACTIONS(6045), - [anon_sym_BSLASHACRshort] = ACTIONS(6045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6045), - [anon_sym_BSLASHacrlong] = ACTIONS(6045), - [anon_sym_BSLASHAcrlong] = ACTIONS(6045), - [anon_sym_BSLASHACRlong] = ACTIONS(6045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6045), - [anon_sym_BSLASHacrfull] = ACTIONS(6045), - [anon_sym_BSLASHAcrfull] = ACTIONS(6045), - [anon_sym_BSLASHACRfull] = ACTIONS(6045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6045), - [anon_sym_BSLASHacs] = ACTIONS(6045), - [anon_sym_BSLASHAcs] = ACTIONS(6045), - [anon_sym_BSLASHacsp] = ACTIONS(6045), - [anon_sym_BSLASHAcsp] = ACTIONS(6045), - [anon_sym_BSLASHacl] = ACTIONS(6045), - [anon_sym_BSLASHAcl] = ACTIONS(6045), - [anon_sym_BSLASHaclp] = ACTIONS(6045), - [anon_sym_BSLASHAclp] = ACTIONS(6045), - [anon_sym_BSLASHacf] = ACTIONS(6045), - [anon_sym_BSLASHAcf] = ACTIONS(6045), - [anon_sym_BSLASHacfp] = ACTIONS(6045), - [anon_sym_BSLASHAcfp] = ACTIONS(6045), - [anon_sym_BSLASHac] = ACTIONS(6045), - [anon_sym_BSLASHAc] = ACTIONS(6045), - [anon_sym_BSLASHacp] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6045), - [anon_sym_BSLASHcolor] = ACTIONS(6045), - [anon_sym_BSLASHcolorbox] = ACTIONS(6045), - [anon_sym_BSLASHtextcolor] = ACTIONS(6045), - [anon_sym_BSLASHpagecolor] = ACTIONS(6045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6045), - [anon_sym_BSLASHtext] = ACTIONS(6045), - [anon_sym_BSLASHintertext] = ACTIONS(6045), - [anon_sym_shortintertext] = ACTIONS(6045), - }, - [1395] = { - [sym_command_name] = ACTIONS(6025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6025), - [anon_sym_LBRACK] = ACTIONS(6027), - [anon_sym_RBRACK] = ACTIONS(6027), - [anon_sym_COMMA] = ACTIONS(6027), - [anon_sym_EQ] = ACTIONS(6027), - [anon_sym_LPAREN] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_BSLASHpart] = ACTIONS(6025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddpart] = ACTIONS(6025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6027), - [anon_sym_BSLASHchapter] = ACTIONS(6025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddchap] = ACTIONS(6025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsection] = ACTIONS(6025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHaddsec] = ACTIONS(6025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubsection] = ACTIONS(6025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6027), - [anon_sym_BSLASHparagraph] = ACTIONS(6025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6027), - [anon_sym_BSLASHitem] = ACTIONS(6025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6027), - [anon_sym_LBRACE] = ACTIONS(6027), - [sym_word] = ACTIONS(6025), - [sym_placeholder] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6025), - [anon_sym_GT] = ACTIONS(6025), - [anon_sym_BANG] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_SQUOTE] = ACTIONS(6025), - [anon_sym__] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6027), - [anon_sym_BSLASHbegin] = ACTIONS(6025), - [anon_sym_BSLASHtitle] = ACTIONS(6025), - [anon_sym_BSLASHauthor] = ACTIONS(6025), - [anon_sym_BSLASHusepackage] = ACTIONS(6025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), - [anon_sym_BSLASHinclude] = ACTIONS(6025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), - [anon_sym_BSLASHinput] = ACTIONS(6025), - [anon_sym_BSLASHsubfile] = ACTIONS(6025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), - [anon_sym_BSLASHbibliography] = ACTIONS(6025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), - [anon_sym_BSLASHincludesvg] = ACTIONS(6025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), - [anon_sym_BSLASHimport] = ACTIONS(6025), - [anon_sym_BSLASHsubimport] = ACTIONS(6025), - [anon_sym_BSLASHinputfrom] = ACTIONS(6025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), - [anon_sym_BSLASHincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHcaption] = ACTIONS(6025), - [anon_sym_BSLASHcite] = ACTIONS(6025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCite] = ACTIONS(6025), - [anon_sym_BSLASHnocite] = ACTIONS(6025), - [anon_sym_BSLASHcitet] = ACTIONS(6025), - [anon_sym_BSLASHcitep] = ACTIONS(6025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteauthor] = ACTIONS(6025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitetitle] = ACTIONS(6025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteyear] = ACTIONS(6025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitedate] = ACTIONS(6025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteurl] = ACTIONS(6025), - [anon_sym_BSLASHfullcite] = ACTIONS(6025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), - [anon_sym_BSLASHcitealt] = ACTIONS(6025), - [anon_sym_BSLASHcitealp] = ACTIONS(6025), - [anon_sym_BSLASHcitetext] = ACTIONS(6025), - [anon_sym_BSLASHparencite] = ACTIONS(6025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHParencite] = ACTIONS(6025), - [anon_sym_BSLASHfootcite] = ACTIONS(6025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), - [anon_sym_BSLASHtextcite] = ACTIONS(6025), - [anon_sym_BSLASHTextcite] = ACTIONS(6025), - [anon_sym_BSLASHsmartcite] = ACTIONS(6025), - [anon_sym_BSLASHSmartcite] = ACTIONS(6025), - [anon_sym_BSLASHsupercite] = ACTIONS(6025), - [anon_sym_BSLASHautocite] = ACTIONS(6025), - [anon_sym_BSLASHAutocite] = ACTIONS(6025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHvolcite] = ACTIONS(6025), - [anon_sym_BSLASHVolcite] = ACTIONS(6025), - [anon_sym_BSLASHpvolcite] = ACTIONS(6025), - [anon_sym_BSLASHPvolcite] = ACTIONS(6025), - [anon_sym_BSLASHfvolcite] = ACTIONS(6025), - [anon_sym_BSLASHftvolcite] = ACTIONS(6025), - [anon_sym_BSLASHsvolcite] = ACTIONS(6025), - [anon_sym_BSLASHSvolcite] = ACTIONS(6025), - [anon_sym_BSLASHtvolcite] = ACTIONS(6025), - [anon_sym_BSLASHTvolcite] = ACTIONS(6025), - [anon_sym_BSLASHavolcite] = ACTIONS(6025), - [anon_sym_BSLASHAvolcite] = ACTIONS(6025), - [anon_sym_BSLASHnotecite] = ACTIONS(6025), - [anon_sym_BSLASHNotecite] = ACTIONS(6025), - [anon_sym_BSLASHpnotecite] = ACTIONS(6025), - [anon_sym_BSLASHPnotecite] = ACTIONS(6025), - [anon_sym_BSLASHfnotecite] = ACTIONS(6025), - [anon_sym_BSLASHlabel] = ACTIONS(6025), - [anon_sym_BSLASHref] = ACTIONS(6025), - [anon_sym_BSLASHeqref] = ACTIONS(6025), - [anon_sym_BSLASHvref] = ACTIONS(6025), - [anon_sym_BSLASHVref] = ACTIONS(6025), - [anon_sym_BSLASHautoref] = ACTIONS(6025), - [anon_sym_BSLASHpageref] = ACTIONS(6025), - [anon_sym_BSLASHcref] = ACTIONS(6025), - [anon_sym_BSLASHCref] = ACTIONS(6025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnameCref] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHlabelcref] = ACTIONS(6025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCrefrange] = ACTIONS(6025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnewlabel] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHdef] = ACTIONS(6025), - [anon_sym_BSLASHlet] = ACTIONS(6025), - [anon_sym_BSLASHleft] = ACTIONS(6025), - [anon_sym_BSLASHbig] = ACTIONS(6025), - [anon_sym_BSLASHBig] = ACTIONS(6025), - [anon_sym_BSLASHbigg] = ACTIONS(6025), - [anon_sym_BSLASHBigg] = ACTIONS(6025), - [anon_sym_BSLASHbigl] = ACTIONS(6025), - [anon_sym_BSLASHBigl] = ACTIONS(6025), - [anon_sym_BSLASHbiggl] = ACTIONS(6025), - [anon_sym_BSLASHBiggl] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), - [anon_sym_BSLASHgls] = ACTIONS(6025), - [anon_sym_BSLASHGls] = ACTIONS(6025), - [anon_sym_BSLASHGLS] = ACTIONS(6025), - [anon_sym_BSLASHglspl] = ACTIONS(6025), - [anon_sym_BSLASHGlspl] = ACTIONS(6025), - [anon_sym_BSLASHGLSpl] = ACTIONS(6025), - [anon_sym_BSLASHglsdisp] = ACTIONS(6025), - [anon_sym_BSLASHglslink] = ACTIONS(6025), - [anon_sym_BSLASHglstext] = ACTIONS(6025), - [anon_sym_BSLASHGlstext] = ACTIONS(6025), - [anon_sym_BSLASHGLStext] = ACTIONS(6025), - [anon_sym_BSLASHglsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), - [anon_sym_BSLASHglsplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSplural] = ACTIONS(6025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHglsname] = ACTIONS(6025), - [anon_sym_BSLASHGlsname] = ACTIONS(6025), - [anon_sym_BSLASHGLSname] = ACTIONS(6025), - [anon_sym_BSLASHglssymbol] = ACTIONS(6025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), - [anon_sym_BSLASHglsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), - [anon_sym_BSLASHglsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), - [anon_sym_BSLASHglsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), - [anon_sym_BSLASHglsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), - [anon_sym_BSLASHglsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), - [anon_sym_BSLASHnewacronym] = ACTIONS(6025), - [anon_sym_BSLASHacrshort] = ACTIONS(6025), - [anon_sym_BSLASHAcrshort] = ACTIONS(6025), - [anon_sym_BSLASHACRshort] = ACTIONS(6025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), - [anon_sym_BSLASHacrlong] = ACTIONS(6025), - [anon_sym_BSLASHAcrlong] = ACTIONS(6025), - [anon_sym_BSLASHACRlong] = ACTIONS(6025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), - [anon_sym_BSLASHacrfull] = ACTIONS(6025), - [anon_sym_BSLASHAcrfull] = ACTIONS(6025), - [anon_sym_BSLASHACRfull] = ACTIONS(6025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), - [anon_sym_BSLASHacs] = ACTIONS(6025), - [anon_sym_BSLASHAcs] = ACTIONS(6025), - [anon_sym_BSLASHacsp] = ACTIONS(6025), - [anon_sym_BSLASHAcsp] = ACTIONS(6025), - [anon_sym_BSLASHacl] = ACTIONS(6025), - [anon_sym_BSLASHAcl] = ACTIONS(6025), - [anon_sym_BSLASHaclp] = ACTIONS(6025), - [anon_sym_BSLASHAclp] = ACTIONS(6025), - [anon_sym_BSLASHacf] = ACTIONS(6025), - [anon_sym_BSLASHAcf] = ACTIONS(6025), - [anon_sym_BSLASHacfp] = ACTIONS(6025), - [anon_sym_BSLASHAcfp] = ACTIONS(6025), - [anon_sym_BSLASHac] = ACTIONS(6025), - [anon_sym_BSLASHAc] = ACTIONS(6025), - [anon_sym_BSLASHacp] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), - [anon_sym_BSLASHcolor] = ACTIONS(6025), - [anon_sym_BSLASHcolorbox] = ACTIONS(6025), - [anon_sym_BSLASHtextcolor] = ACTIONS(6025), - [anon_sym_BSLASHpagecolor] = ACTIONS(6025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), - [anon_sym_BSLASHtext] = ACTIONS(6025), - [anon_sym_BSLASHintertext] = ACTIONS(6025), - [anon_sym_shortintertext] = ACTIONS(6025), - }, - [1396] = { - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHpart] = ACTIONS(189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddpart] = ACTIONS(189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(191), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddsec] = ACTIONS(189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(191), - [anon_sym_BSLASHparagraph] = ACTIONS(189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(191), - [anon_sym_BSLASHitem] = ACTIONS(189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(191), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [1397] = { - [sym_command_name] = ACTIONS(6205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6205), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_RBRACK] = ACTIONS(6207), - [anon_sym_COMMA] = ACTIONS(6207), - [anon_sym_EQ] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_RPAREN] = ACTIONS(6207), - [anon_sym_BSLASHpart] = ACTIONS(6205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddpart] = ACTIONS(6205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6207), - [anon_sym_BSLASHchapter] = ACTIONS(6205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddchap] = ACTIONS(6205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsection] = ACTIONS(6205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHaddsec] = ACTIONS(6205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubsection] = ACTIONS(6205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6207), - [anon_sym_BSLASHparagraph] = ACTIONS(6205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6207), - [anon_sym_BSLASHitem] = ACTIONS(6205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6207), - [anon_sym_LBRACE] = ACTIONS(6207), - [sym_word] = ACTIONS(6205), - [sym_placeholder] = ACTIONS(6207), - [anon_sym_PLUS] = ACTIONS(6207), - [anon_sym_DASH] = ACTIONS(6207), - [anon_sym_STAR] = ACTIONS(6207), - [anon_sym_SLASH] = ACTIONS(6207), - [anon_sym_LT] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6205), - [anon_sym_BANG] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_COLON] = ACTIONS(6205), - [anon_sym_SQUOTE] = ACTIONS(6205), - [anon_sym__] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6207), - [anon_sym_DOLLAR] = ACTIONS(6205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), - [anon_sym_BSLASHbegin] = ACTIONS(6205), - [anon_sym_BSLASHtitle] = ACTIONS(6205), - [anon_sym_BSLASHauthor] = ACTIONS(6205), - [anon_sym_BSLASHusepackage] = ACTIONS(6205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), - [anon_sym_BSLASHinclude] = ACTIONS(6205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), - [anon_sym_BSLASHinput] = ACTIONS(6205), - [anon_sym_BSLASHsubfile] = ACTIONS(6205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), - [anon_sym_BSLASHbibliography] = ACTIONS(6205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), - [anon_sym_BSLASHincludesvg] = ACTIONS(6205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), - [anon_sym_BSLASHimport] = ACTIONS(6205), - [anon_sym_BSLASHsubimport] = ACTIONS(6205), - [anon_sym_BSLASHinputfrom] = ACTIONS(6205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), - [anon_sym_BSLASHincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHcaption] = ACTIONS(6205), - [anon_sym_BSLASHcite] = ACTIONS(6205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCite] = ACTIONS(6205), - [anon_sym_BSLASHnocite] = ACTIONS(6205), - [anon_sym_BSLASHcitet] = ACTIONS(6205), - [anon_sym_BSLASHcitep] = ACTIONS(6205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteauthor] = ACTIONS(6205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitetitle] = ACTIONS(6205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteyear] = ACTIONS(6205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitedate] = ACTIONS(6205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteurl] = ACTIONS(6205), - [anon_sym_BSLASHfullcite] = ACTIONS(6205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), - [anon_sym_BSLASHcitealt] = ACTIONS(6205), - [anon_sym_BSLASHcitealp] = ACTIONS(6205), - [anon_sym_BSLASHcitetext] = ACTIONS(6205), - [anon_sym_BSLASHparencite] = ACTIONS(6205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHParencite] = ACTIONS(6205), - [anon_sym_BSLASHfootcite] = ACTIONS(6205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), - [anon_sym_BSLASHtextcite] = ACTIONS(6205), - [anon_sym_BSLASHTextcite] = ACTIONS(6205), - [anon_sym_BSLASHsmartcite] = ACTIONS(6205), - [anon_sym_BSLASHSmartcite] = ACTIONS(6205), - [anon_sym_BSLASHsupercite] = ACTIONS(6205), - [anon_sym_BSLASHautocite] = ACTIONS(6205), - [anon_sym_BSLASHAutocite] = ACTIONS(6205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHvolcite] = ACTIONS(6205), - [anon_sym_BSLASHVolcite] = ACTIONS(6205), - [anon_sym_BSLASHpvolcite] = ACTIONS(6205), - [anon_sym_BSLASHPvolcite] = ACTIONS(6205), - [anon_sym_BSLASHfvolcite] = ACTIONS(6205), - [anon_sym_BSLASHftvolcite] = ACTIONS(6205), - [anon_sym_BSLASHsvolcite] = ACTIONS(6205), - [anon_sym_BSLASHSvolcite] = ACTIONS(6205), - [anon_sym_BSLASHtvolcite] = ACTIONS(6205), - [anon_sym_BSLASHTvolcite] = ACTIONS(6205), - [anon_sym_BSLASHavolcite] = ACTIONS(6205), - [anon_sym_BSLASHAvolcite] = ACTIONS(6205), - [anon_sym_BSLASHnotecite] = ACTIONS(6205), - [anon_sym_BSLASHNotecite] = ACTIONS(6205), - [anon_sym_BSLASHpnotecite] = ACTIONS(6205), - [anon_sym_BSLASHPnotecite] = ACTIONS(6205), - [anon_sym_BSLASHfnotecite] = ACTIONS(6205), - [anon_sym_BSLASHlabel] = ACTIONS(6205), - [anon_sym_BSLASHref] = ACTIONS(6205), - [anon_sym_BSLASHeqref] = ACTIONS(6205), - [anon_sym_BSLASHvref] = ACTIONS(6205), - [anon_sym_BSLASHVref] = ACTIONS(6205), - [anon_sym_BSLASHautoref] = ACTIONS(6205), - [anon_sym_BSLASHpageref] = ACTIONS(6205), - [anon_sym_BSLASHcref] = ACTIONS(6205), - [anon_sym_BSLASHCref] = ACTIONS(6205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnameCref] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHlabelcref] = ACTIONS(6205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCrefrange] = ACTIONS(6205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnewlabel] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHdef] = ACTIONS(6205), - [anon_sym_BSLASHlet] = ACTIONS(6205), - [anon_sym_BSLASHleft] = ACTIONS(6205), - [anon_sym_BSLASHbig] = ACTIONS(6205), - [anon_sym_BSLASHBig] = ACTIONS(6205), - [anon_sym_BSLASHbigg] = ACTIONS(6205), - [anon_sym_BSLASHBigg] = ACTIONS(6205), - [anon_sym_BSLASHbigl] = ACTIONS(6205), - [anon_sym_BSLASHBigl] = ACTIONS(6205), - [anon_sym_BSLASHbiggl] = ACTIONS(6205), - [anon_sym_BSLASHBiggl] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), - [anon_sym_BSLASHgls] = ACTIONS(6205), - [anon_sym_BSLASHGls] = ACTIONS(6205), - [anon_sym_BSLASHGLS] = ACTIONS(6205), - [anon_sym_BSLASHglspl] = ACTIONS(6205), - [anon_sym_BSLASHGlspl] = ACTIONS(6205), - [anon_sym_BSLASHGLSpl] = ACTIONS(6205), - [anon_sym_BSLASHglsdisp] = ACTIONS(6205), - [anon_sym_BSLASHglslink] = ACTIONS(6205), - [anon_sym_BSLASHglstext] = ACTIONS(6205), - [anon_sym_BSLASHGlstext] = ACTIONS(6205), - [anon_sym_BSLASHGLStext] = ACTIONS(6205), - [anon_sym_BSLASHglsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), - [anon_sym_BSLASHglsplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSplural] = ACTIONS(6205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHglsname] = ACTIONS(6205), - [anon_sym_BSLASHGlsname] = ACTIONS(6205), - [anon_sym_BSLASHGLSname] = ACTIONS(6205), - [anon_sym_BSLASHglssymbol] = ACTIONS(6205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), - [anon_sym_BSLASHglsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), - [anon_sym_BSLASHglsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), - [anon_sym_BSLASHglsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), - [anon_sym_BSLASHglsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), - [anon_sym_BSLASHglsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), - [anon_sym_BSLASHnewacronym] = ACTIONS(6205), - [anon_sym_BSLASHacrshort] = ACTIONS(6205), - [anon_sym_BSLASHAcrshort] = ACTIONS(6205), - [anon_sym_BSLASHACRshort] = ACTIONS(6205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), - [anon_sym_BSLASHacrlong] = ACTIONS(6205), - [anon_sym_BSLASHAcrlong] = ACTIONS(6205), - [anon_sym_BSLASHACRlong] = ACTIONS(6205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), - [anon_sym_BSLASHacrfull] = ACTIONS(6205), - [anon_sym_BSLASHAcrfull] = ACTIONS(6205), - [anon_sym_BSLASHACRfull] = ACTIONS(6205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), - [anon_sym_BSLASHacs] = ACTIONS(6205), - [anon_sym_BSLASHAcs] = ACTIONS(6205), - [anon_sym_BSLASHacsp] = ACTIONS(6205), - [anon_sym_BSLASHAcsp] = ACTIONS(6205), - [anon_sym_BSLASHacl] = ACTIONS(6205), - [anon_sym_BSLASHAcl] = ACTIONS(6205), - [anon_sym_BSLASHaclp] = ACTIONS(6205), - [anon_sym_BSLASHAclp] = ACTIONS(6205), - [anon_sym_BSLASHacf] = ACTIONS(6205), - [anon_sym_BSLASHAcf] = ACTIONS(6205), - [anon_sym_BSLASHacfp] = ACTIONS(6205), - [anon_sym_BSLASHAcfp] = ACTIONS(6205), - [anon_sym_BSLASHac] = ACTIONS(6205), - [anon_sym_BSLASHAc] = ACTIONS(6205), - [anon_sym_BSLASHacp] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), - [anon_sym_BSLASHcolor] = ACTIONS(6205), - [anon_sym_BSLASHcolorbox] = ACTIONS(6205), - [anon_sym_BSLASHtextcolor] = ACTIONS(6205), - [anon_sym_BSLASHpagecolor] = ACTIONS(6205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), - [anon_sym_BSLASHtext] = ACTIONS(6205), - [anon_sym_BSLASHintertext] = ACTIONS(6205), - [anon_sym_shortintertext] = ACTIONS(6205), - }, - [1398] = { - [sym_command_name] = ACTIONS(6197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6197), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_RBRACK] = ACTIONS(6199), - [anon_sym_COMMA] = ACTIONS(6199), - [anon_sym_EQ] = ACTIONS(6199), - [anon_sym_LPAREN] = ACTIONS(6199), - [anon_sym_RPAREN] = ACTIONS(6199), - [anon_sym_BSLASHpart] = ACTIONS(6197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddpart] = ACTIONS(6197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6199), - [anon_sym_BSLASHchapter] = ACTIONS(6197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddchap] = ACTIONS(6197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsection] = ACTIONS(6197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHaddsec] = ACTIONS(6197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubsection] = ACTIONS(6197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6199), - [anon_sym_BSLASHparagraph] = ACTIONS(6197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6199), - [anon_sym_BSLASHitem] = ACTIONS(6197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6199), - [anon_sym_LBRACE] = ACTIONS(6199), - [sym_word] = ACTIONS(6197), - [sym_placeholder] = ACTIONS(6199), - [anon_sym_PLUS] = ACTIONS(6199), - [anon_sym_DASH] = ACTIONS(6199), - [anon_sym_STAR] = ACTIONS(6199), - [anon_sym_SLASH] = ACTIONS(6199), - [anon_sym_LT] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6197), - [anon_sym_BANG] = ACTIONS(6197), - [anon_sym_PIPE] = ACTIONS(6197), - [anon_sym_COLON] = ACTIONS(6197), - [anon_sym_SQUOTE] = ACTIONS(6197), - [anon_sym__] = ACTIONS(6199), - [anon_sym_CARET] = ACTIONS(6199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6199), - [anon_sym_DOLLAR] = ACTIONS(6197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), - [anon_sym_BSLASHbegin] = ACTIONS(6197), - [anon_sym_BSLASHtitle] = ACTIONS(6197), - [anon_sym_BSLASHauthor] = ACTIONS(6197), - [anon_sym_BSLASHusepackage] = ACTIONS(6197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), - [anon_sym_BSLASHinclude] = ACTIONS(6197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), - [anon_sym_BSLASHinput] = ACTIONS(6197), - [anon_sym_BSLASHsubfile] = ACTIONS(6197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), - [anon_sym_BSLASHbibliography] = ACTIONS(6197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), - [anon_sym_BSLASHincludesvg] = ACTIONS(6197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), - [anon_sym_BSLASHimport] = ACTIONS(6197), - [anon_sym_BSLASHsubimport] = ACTIONS(6197), - [anon_sym_BSLASHinputfrom] = ACTIONS(6197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), - [anon_sym_BSLASHincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHcaption] = ACTIONS(6197), - [anon_sym_BSLASHcite] = ACTIONS(6197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCite] = ACTIONS(6197), - [anon_sym_BSLASHnocite] = ACTIONS(6197), - [anon_sym_BSLASHcitet] = ACTIONS(6197), - [anon_sym_BSLASHcitep] = ACTIONS(6197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteauthor] = ACTIONS(6197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitetitle] = ACTIONS(6197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteyear] = ACTIONS(6197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitedate] = ACTIONS(6197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteurl] = ACTIONS(6197), - [anon_sym_BSLASHfullcite] = ACTIONS(6197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), - [anon_sym_BSLASHcitealt] = ACTIONS(6197), - [anon_sym_BSLASHcitealp] = ACTIONS(6197), - [anon_sym_BSLASHcitetext] = ACTIONS(6197), - [anon_sym_BSLASHparencite] = ACTIONS(6197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHParencite] = ACTIONS(6197), - [anon_sym_BSLASHfootcite] = ACTIONS(6197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), - [anon_sym_BSLASHtextcite] = ACTIONS(6197), - [anon_sym_BSLASHTextcite] = ACTIONS(6197), - [anon_sym_BSLASHsmartcite] = ACTIONS(6197), - [anon_sym_BSLASHSmartcite] = ACTIONS(6197), - [anon_sym_BSLASHsupercite] = ACTIONS(6197), - [anon_sym_BSLASHautocite] = ACTIONS(6197), - [anon_sym_BSLASHAutocite] = ACTIONS(6197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHvolcite] = ACTIONS(6197), - [anon_sym_BSLASHVolcite] = ACTIONS(6197), - [anon_sym_BSLASHpvolcite] = ACTIONS(6197), - [anon_sym_BSLASHPvolcite] = ACTIONS(6197), - [anon_sym_BSLASHfvolcite] = ACTIONS(6197), - [anon_sym_BSLASHftvolcite] = ACTIONS(6197), - [anon_sym_BSLASHsvolcite] = ACTIONS(6197), - [anon_sym_BSLASHSvolcite] = ACTIONS(6197), - [anon_sym_BSLASHtvolcite] = ACTIONS(6197), - [anon_sym_BSLASHTvolcite] = ACTIONS(6197), - [anon_sym_BSLASHavolcite] = ACTIONS(6197), - [anon_sym_BSLASHAvolcite] = ACTIONS(6197), - [anon_sym_BSLASHnotecite] = ACTIONS(6197), - [anon_sym_BSLASHNotecite] = ACTIONS(6197), - [anon_sym_BSLASHpnotecite] = ACTIONS(6197), - [anon_sym_BSLASHPnotecite] = ACTIONS(6197), - [anon_sym_BSLASHfnotecite] = ACTIONS(6197), - [anon_sym_BSLASHlabel] = ACTIONS(6197), - [anon_sym_BSLASHref] = ACTIONS(6197), - [anon_sym_BSLASHeqref] = ACTIONS(6197), - [anon_sym_BSLASHvref] = ACTIONS(6197), - [anon_sym_BSLASHVref] = ACTIONS(6197), - [anon_sym_BSLASHautoref] = ACTIONS(6197), - [anon_sym_BSLASHpageref] = ACTIONS(6197), - [anon_sym_BSLASHcref] = ACTIONS(6197), - [anon_sym_BSLASHCref] = ACTIONS(6197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnameCref] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHlabelcref] = ACTIONS(6197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCrefrange] = ACTIONS(6197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnewlabel] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHdef] = ACTIONS(6197), - [anon_sym_BSLASHlet] = ACTIONS(6197), - [anon_sym_BSLASHleft] = ACTIONS(6197), - [anon_sym_BSLASHbig] = ACTIONS(6197), - [anon_sym_BSLASHBig] = ACTIONS(6197), - [anon_sym_BSLASHbigg] = ACTIONS(6197), - [anon_sym_BSLASHBigg] = ACTIONS(6197), - [anon_sym_BSLASHbigl] = ACTIONS(6197), - [anon_sym_BSLASHBigl] = ACTIONS(6197), - [anon_sym_BSLASHbiggl] = ACTIONS(6197), - [anon_sym_BSLASHBiggl] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), - [anon_sym_BSLASHgls] = ACTIONS(6197), - [anon_sym_BSLASHGls] = ACTIONS(6197), - [anon_sym_BSLASHGLS] = ACTIONS(6197), - [anon_sym_BSLASHglspl] = ACTIONS(6197), - [anon_sym_BSLASHGlspl] = ACTIONS(6197), - [anon_sym_BSLASHGLSpl] = ACTIONS(6197), - [anon_sym_BSLASHglsdisp] = ACTIONS(6197), - [anon_sym_BSLASHglslink] = ACTIONS(6197), - [anon_sym_BSLASHglstext] = ACTIONS(6197), - [anon_sym_BSLASHGlstext] = ACTIONS(6197), - [anon_sym_BSLASHGLStext] = ACTIONS(6197), - [anon_sym_BSLASHglsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), - [anon_sym_BSLASHglsplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSplural] = ACTIONS(6197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHglsname] = ACTIONS(6197), - [anon_sym_BSLASHGlsname] = ACTIONS(6197), - [anon_sym_BSLASHGLSname] = ACTIONS(6197), - [anon_sym_BSLASHglssymbol] = ACTIONS(6197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), - [anon_sym_BSLASHglsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), - [anon_sym_BSLASHglsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), - [anon_sym_BSLASHglsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), - [anon_sym_BSLASHglsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), - [anon_sym_BSLASHglsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), - [anon_sym_BSLASHnewacronym] = ACTIONS(6197), - [anon_sym_BSLASHacrshort] = ACTIONS(6197), - [anon_sym_BSLASHAcrshort] = ACTIONS(6197), - [anon_sym_BSLASHACRshort] = ACTIONS(6197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), - [anon_sym_BSLASHacrlong] = ACTIONS(6197), - [anon_sym_BSLASHAcrlong] = ACTIONS(6197), - [anon_sym_BSLASHACRlong] = ACTIONS(6197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), - [anon_sym_BSLASHacrfull] = ACTIONS(6197), - [anon_sym_BSLASHAcrfull] = ACTIONS(6197), - [anon_sym_BSLASHACRfull] = ACTIONS(6197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), - [anon_sym_BSLASHacs] = ACTIONS(6197), - [anon_sym_BSLASHAcs] = ACTIONS(6197), - [anon_sym_BSLASHacsp] = ACTIONS(6197), - [anon_sym_BSLASHAcsp] = ACTIONS(6197), - [anon_sym_BSLASHacl] = ACTIONS(6197), - [anon_sym_BSLASHAcl] = ACTIONS(6197), - [anon_sym_BSLASHaclp] = ACTIONS(6197), - [anon_sym_BSLASHAclp] = ACTIONS(6197), - [anon_sym_BSLASHacf] = ACTIONS(6197), - [anon_sym_BSLASHAcf] = ACTIONS(6197), - [anon_sym_BSLASHacfp] = ACTIONS(6197), - [anon_sym_BSLASHAcfp] = ACTIONS(6197), - [anon_sym_BSLASHac] = ACTIONS(6197), - [anon_sym_BSLASHAc] = ACTIONS(6197), - [anon_sym_BSLASHacp] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), - [anon_sym_BSLASHcolor] = ACTIONS(6197), - [anon_sym_BSLASHcolorbox] = ACTIONS(6197), - [anon_sym_BSLASHtextcolor] = ACTIONS(6197), - [anon_sym_BSLASHpagecolor] = ACTIONS(6197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), - [anon_sym_BSLASHtext] = ACTIONS(6197), - [anon_sym_BSLASHintertext] = ACTIONS(6197), - [anon_sym_shortintertext] = ACTIONS(6197), - }, - [1399] = { - [sym_command_name] = ACTIONS(6733), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6733), - [anon_sym_LBRACK] = ACTIONS(6735), - [anon_sym_RBRACK] = ACTIONS(6735), - [anon_sym_COMMA] = ACTIONS(6735), - [anon_sym_EQ] = ACTIONS(6735), - [anon_sym_LPAREN] = ACTIONS(6735), - [anon_sym_RPAREN] = ACTIONS(6735), - [anon_sym_BSLASHpart] = ACTIONS(6733), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6735), - [anon_sym_BSLASHaddpart] = ACTIONS(6733), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6735), - [anon_sym_BSLASHchapter] = ACTIONS(6733), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6735), - [anon_sym_BSLASHaddchap] = ACTIONS(6733), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6735), - [anon_sym_BSLASHsection] = ACTIONS(6733), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6735), - [anon_sym_BSLASHaddsec] = ACTIONS(6733), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6735), - [anon_sym_BSLASHsubsection] = ACTIONS(6733), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6735), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6733), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6735), - [anon_sym_BSLASHparagraph] = ACTIONS(6733), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6735), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6733), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6735), - [anon_sym_BSLASHitem] = ACTIONS(6733), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6735), - [anon_sym_LBRACE] = ACTIONS(6735), - [sym_word] = ACTIONS(6733), - [sym_placeholder] = ACTIONS(6735), - [anon_sym_PLUS] = ACTIONS(6735), - [anon_sym_DASH] = ACTIONS(6735), - [anon_sym_STAR] = ACTIONS(6735), - [anon_sym_SLASH] = ACTIONS(6735), - [anon_sym_LT] = ACTIONS(6733), - [anon_sym_GT] = ACTIONS(6733), - [anon_sym_BANG] = ACTIONS(6733), - [anon_sym_PIPE] = ACTIONS(6733), - [anon_sym_COLON] = ACTIONS(6733), - [anon_sym_SQUOTE] = ACTIONS(6733), - [anon_sym__] = ACTIONS(6735), - [anon_sym_CARET] = ACTIONS(6735), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6735), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6735), - [anon_sym_DOLLAR] = ACTIONS(6733), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6735), - [anon_sym_BSLASHbegin] = ACTIONS(6733), - [anon_sym_BSLASHend] = ACTIONS(6733), - [anon_sym_BSLASHtitle] = ACTIONS(6733), - [anon_sym_BSLASHauthor] = ACTIONS(6733), - [anon_sym_BSLASHusepackage] = ACTIONS(6733), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6733), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6733), - [anon_sym_BSLASHinclude] = ACTIONS(6733), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6733), - [anon_sym_BSLASHinput] = ACTIONS(6733), - [anon_sym_BSLASHsubfile] = ACTIONS(6733), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6733), - [anon_sym_BSLASHbibliography] = ACTIONS(6733), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6733), - [anon_sym_BSLASHincludesvg] = ACTIONS(6733), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6733), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6733), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6733), - [anon_sym_BSLASHimport] = ACTIONS(6733), - [anon_sym_BSLASHsubimport] = ACTIONS(6733), - [anon_sym_BSLASHinputfrom] = ACTIONS(6733), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6733), - [anon_sym_BSLASHincludefrom] = ACTIONS(6733), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6733), - [anon_sym_BSLASHcaption] = ACTIONS(6733), - [anon_sym_BSLASHcite] = ACTIONS(6733), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6735), - [anon_sym_BSLASHCite] = ACTIONS(6733), - [anon_sym_BSLASHnocite] = ACTIONS(6733), - [anon_sym_BSLASHcitet] = ACTIONS(6733), - [anon_sym_BSLASHcitep] = ACTIONS(6733), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6735), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6735), - [anon_sym_BSLASHciteauthor] = ACTIONS(6733), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6735), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6733), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6735), - [anon_sym_BSLASHcitetitle] = ACTIONS(6733), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6735), - [anon_sym_BSLASHciteyear] = ACTIONS(6733), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6735), - [anon_sym_BSLASHcitedate] = ACTIONS(6733), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6735), - [anon_sym_BSLASHciteurl] = ACTIONS(6733), - [anon_sym_BSLASHfullcite] = ACTIONS(6733), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6733), - [anon_sym_BSLASHcitealt] = ACTIONS(6733), - [anon_sym_BSLASHcitealp] = ACTIONS(6733), - [anon_sym_BSLASHcitetext] = ACTIONS(6733), - [anon_sym_BSLASHparencite] = ACTIONS(6733), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6735), - [anon_sym_BSLASHParencite] = ACTIONS(6733), - [anon_sym_BSLASHfootcite] = ACTIONS(6733), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6733), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6733), - [anon_sym_BSLASHtextcite] = ACTIONS(6733), - [anon_sym_BSLASHTextcite] = ACTIONS(6733), - [anon_sym_BSLASHsmartcite] = ACTIONS(6733), - [anon_sym_BSLASHSmartcite] = ACTIONS(6733), - [anon_sym_BSLASHsupercite] = ACTIONS(6733), - [anon_sym_BSLASHautocite] = ACTIONS(6733), - [anon_sym_BSLASHAutocite] = ACTIONS(6733), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6735), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6735), - [anon_sym_BSLASHvolcite] = ACTIONS(6733), - [anon_sym_BSLASHVolcite] = ACTIONS(6733), - [anon_sym_BSLASHpvolcite] = ACTIONS(6733), - [anon_sym_BSLASHPvolcite] = ACTIONS(6733), - [anon_sym_BSLASHfvolcite] = ACTIONS(6733), - [anon_sym_BSLASHftvolcite] = ACTIONS(6733), - [anon_sym_BSLASHsvolcite] = ACTIONS(6733), - [anon_sym_BSLASHSvolcite] = ACTIONS(6733), - [anon_sym_BSLASHtvolcite] = ACTIONS(6733), - [anon_sym_BSLASHTvolcite] = ACTIONS(6733), - [anon_sym_BSLASHavolcite] = ACTIONS(6733), - [anon_sym_BSLASHAvolcite] = ACTIONS(6733), - [anon_sym_BSLASHnotecite] = ACTIONS(6733), - [anon_sym_BSLASHNotecite] = ACTIONS(6733), - [anon_sym_BSLASHpnotecite] = ACTIONS(6733), - [anon_sym_BSLASHPnotecite] = ACTIONS(6733), - [anon_sym_BSLASHfnotecite] = ACTIONS(6733), - [anon_sym_BSLASHlabel] = ACTIONS(6733), - [anon_sym_BSLASHref] = ACTIONS(6733), - [anon_sym_BSLASHeqref] = ACTIONS(6733), - [anon_sym_BSLASHvref] = ACTIONS(6733), - [anon_sym_BSLASHVref] = ACTIONS(6733), - [anon_sym_BSLASHautoref] = ACTIONS(6733), - [anon_sym_BSLASHpageref] = ACTIONS(6733), - [anon_sym_BSLASHcref] = ACTIONS(6733), - [anon_sym_BSLASHCref] = ACTIONS(6733), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6735), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6735), - [anon_sym_BSLASHnamecref] = ACTIONS(6733), - [anon_sym_BSLASHnameCref] = ACTIONS(6733), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6733), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6733), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6733), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6733), - [anon_sym_BSLASHlabelcref] = ACTIONS(6733), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6733), - [anon_sym_BSLASHcrefrange] = ACTIONS(6733), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6735), - [anon_sym_BSLASHCrefrange] = ACTIONS(6733), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6735), - [anon_sym_BSLASHnewlabel] = ACTIONS(6733), - [anon_sym_BSLASHnewcommand] = ACTIONS(6733), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6735), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6733), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6735), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6733), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6735), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6733), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6735), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6733), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6733), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6733), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6733), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6733), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6733), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6733), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6733), - [anon_sym_BSLASHdef] = ACTIONS(6733), - [anon_sym_BSLASHlet] = ACTIONS(6733), - [anon_sym_BSLASHleft] = ACTIONS(6733), - [anon_sym_BSLASHbig] = ACTIONS(6733), - [anon_sym_BSLASHBig] = ACTIONS(6733), - [anon_sym_BSLASHbigg] = ACTIONS(6733), - [anon_sym_BSLASHBigg] = ACTIONS(6733), - [anon_sym_BSLASHbigl] = ACTIONS(6733), - [anon_sym_BSLASHBigl] = ACTIONS(6733), - [anon_sym_BSLASHbiggl] = ACTIONS(6733), - [anon_sym_BSLASHBiggl] = ACTIONS(6733), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6733), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6733), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6733), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6733), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6733), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6733), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6733), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6733), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6733), - [anon_sym_BSLASHgls] = ACTIONS(6733), - [anon_sym_BSLASHGls] = ACTIONS(6733), - [anon_sym_BSLASHGLS] = ACTIONS(6733), - [anon_sym_BSLASHglspl] = ACTIONS(6733), - [anon_sym_BSLASHGlspl] = ACTIONS(6733), - [anon_sym_BSLASHGLSpl] = ACTIONS(6733), - [anon_sym_BSLASHglsdisp] = ACTIONS(6733), - [anon_sym_BSLASHglslink] = ACTIONS(6733), - [anon_sym_BSLASHglstext] = ACTIONS(6733), - [anon_sym_BSLASHGlstext] = ACTIONS(6733), - [anon_sym_BSLASHGLStext] = ACTIONS(6733), - [anon_sym_BSLASHglsfirst] = ACTIONS(6733), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6733), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6733), - [anon_sym_BSLASHglsplural] = ACTIONS(6733), - [anon_sym_BSLASHGlsplural] = ACTIONS(6733), - [anon_sym_BSLASHGLSplural] = ACTIONS(6733), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6733), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6733), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6733), - [anon_sym_BSLASHglsname] = ACTIONS(6733), - [anon_sym_BSLASHGlsname] = ACTIONS(6733), - [anon_sym_BSLASHGLSname] = ACTIONS(6733), - [anon_sym_BSLASHglssymbol] = ACTIONS(6733), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6733), - [anon_sym_BSLASHglsdesc] = ACTIONS(6733), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6733), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6733), - [anon_sym_BSLASHglsuseri] = ACTIONS(6733), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6733), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6733), - [anon_sym_BSLASHglsuserii] = ACTIONS(6733), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6733), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6733), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6733), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6733), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6733), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6733), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6733), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6733), - [anon_sym_BSLASHglsuserv] = ACTIONS(6733), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6733), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6733), - [anon_sym_BSLASHglsuservi] = ACTIONS(6733), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6733), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6733), - [anon_sym_BSLASHnewacronym] = ACTIONS(6733), - [anon_sym_BSLASHacrshort] = ACTIONS(6733), - [anon_sym_BSLASHAcrshort] = ACTIONS(6733), - [anon_sym_BSLASHACRshort] = ACTIONS(6733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6733), - [anon_sym_BSLASHacrlong] = ACTIONS(6733), - [anon_sym_BSLASHAcrlong] = ACTIONS(6733), - [anon_sym_BSLASHACRlong] = ACTIONS(6733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6733), - [anon_sym_BSLASHacrfull] = ACTIONS(6733), - [anon_sym_BSLASHAcrfull] = ACTIONS(6733), - [anon_sym_BSLASHACRfull] = ACTIONS(6733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6733), - [anon_sym_BSLASHacs] = ACTIONS(6733), - [anon_sym_BSLASHAcs] = ACTIONS(6733), - [anon_sym_BSLASHacsp] = ACTIONS(6733), - [anon_sym_BSLASHAcsp] = ACTIONS(6733), - [anon_sym_BSLASHacl] = ACTIONS(6733), - [anon_sym_BSLASHAcl] = ACTIONS(6733), - [anon_sym_BSLASHaclp] = ACTIONS(6733), - [anon_sym_BSLASHAclp] = ACTIONS(6733), - [anon_sym_BSLASHacf] = ACTIONS(6733), - [anon_sym_BSLASHAcf] = ACTIONS(6733), - [anon_sym_BSLASHacfp] = ACTIONS(6733), - [anon_sym_BSLASHAcfp] = ACTIONS(6733), - [anon_sym_BSLASHac] = ACTIONS(6733), - [anon_sym_BSLASHAc] = ACTIONS(6733), - [anon_sym_BSLASHacp] = ACTIONS(6733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6733), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6733), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6733), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6733), - [anon_sym_BSLASHcolor] = ACTIONS(6733), - [anon_sym_BSLASHcolorbox] = ACTIONS(6733), - [anon_sym_BSLASHtextcolor] = ACTIONS(6733), - [anon_sym_BSLASHpagecolor] = ACTIONS(6733), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6733), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6733), - [anon_sym_BSLASHtext] = ACTIONS(6733), - [anon_sym_BSLASHintertext] = ACTIONS(6733), - [anon_sym_shortintertext] = ACTIONS(6733), - }, - [1400] = { - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHpart] = ACTIONS(205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddpart] = ACTIONS(205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(207), - [anon_sym_BSLASHchapter] = ACTIONS(205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddchap] = ACTIONS(205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(207), - [anon_sym_BSLASHsection] = ACTIONS(205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHaddsec] = ACTIONS(205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(207), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHitem] = ACTIONS(205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASH_RPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [1401] = { - [sym_command_name] = ACTIONS(6041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6041), - [anon_sym_LBRACK] = ACTIONS(6043), - [anon_sym_RBRACK] = ACTIONS(6043), - [anon_sym_COMMA] = ACTIONS(6043), - [anon_sym_EQ] = ACTIONS(6043), - [anon_sym_LPAREN] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_BSLASHpart] = ACTIONS(6041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddpart] = ACTIONS(6041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6043), - [anon_sym_BSLASHchapter] = ACTIONS(6041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddchap] = ACTIONS(6041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsection] = ACTIONS(6041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHaddsec] = ACTIONS(6041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubsection] = ACTIONS(6041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6043), - [anon_sym_BSLASHparagraph] = ACTIONS(6041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6043), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6043), - [anon_sym_BSLASHitem] = ACTIONS(6041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6043), - [anon_sym_LBRACE] = ACTIONS(6043), - [sym_word] = ACTIONS(6041), - [sym_placeholder] = ACTIONS(6043), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6043), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6041), - [anon_sym_GT] = ACTIONS(6041), - [anon_sym_BANG] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_SQUOTE] = ACTIONS(6041), - [anon_sym__] = ACTIONS(6043), - [anon_sym_CARET] = ACTIONS(6043), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6043), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6043), - [anon_sym_BSLASHbegin] = ACTIONS(6041), - [anon_sym_BSLASHtitle] = ACTIONS(6041), - [anon_sym_BSLASHauthor] = ACTIONS(6041), - [anon_sym_BSLASHusepackage] = ACTIONS(6041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6041), - [anon_sym_BSLASHinclude] = ACTIONS(6041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6041), - [anon_sym_BSLASHinput] = ACTIONS(6041), - [anon_sym_BSLASHsubfile] = ACTIONS(6041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6041), - [anon_sym_BSLASHbibliography] = ACTIONS(6041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6041), - [anon_sym_BSLASHincludesvg] = ACTIONS(6041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6041), - [anon_sym_BSLASHimport] = ACTIONS(6041), - [anon_sym_BSLASHsubimport] = ACTIONS(6041), - [anon_sym_BSLASHinputfrom] = ACTIONS(6041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6041), - [anon_sym_BSLASHincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHcaption] = ACTIONS(6041), - [anon_sym_BSLASHcite] = ACTIONS(6041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCite] = ACTIONS(6041), - [anon_sym_BSLASHnocite] = ACTIONS(6041), - [anon_sym_BSLASHcitet] = ACTIONS(6041), - [anon_sym_BSLASHcitep] = ACTIONS(6041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteauthor] = ACTIONS(6041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitetitle] = ACTIONS(6041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteyear] = ACTIONS(6041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitedate] = ACTIONS(6041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteurl] = ACTIONS(6041), - [anon_sym_BSLASHfullcite] = ACTIONS(6041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6041), - [anon_sym_BSLASHcitealt] = ACTIONS(6041), - [anon_sym_BSLASHcitealp] = ACTIONS(6041), - [anon_sym_BSLASHcitetext] = ACTIONS(6041), - [anon_sym_BSLASHparencite] = ACTIONS(6041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHParencite] = ACTIONS(6041), - [anon_sym_BSLASHfootcite] = ACTIONS(6041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6041), - [anon_sym_BSLASHtextcite] = ACTIONS(6041), - [anon_sym_BSLASHTextcite] = ACTIONS(6041), - [anon_sym_BSLASHsmartcite] = ACTIONS(6041), - [anon_sym_BSLASHSmartcite] = ACTIONS(6041), - [anon_sym_BSLASHsupercite] = ACTIONS(6041), - [anon_sym_BSLASHautocite] = ACTIONS(6041), - [anon_sym_BSLASHAutocite] = ACTIONS(6041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHvolcite] = ACTIONS(6041), - [anon_sym_BSLASHVolcite] = ACTIONS(6041), - [anon_sym_BSLASHpvolcite] = ACTIONS(6041), - [anon_sym_BSLASHPvolcite] = ACTIONS(6041), - [anon_sym_BSLASHfvolcite] = ACTIONS(6041), - [anon_sym_BSLASHftvolcite] = ACTIONS(6041), - [anon_sym_BSLASHsvolcite] = ACTIONS(6041), - [anon_sym_BSLASHSvolcite] = ACTIONS(6041), - [anon_sym_BSLASHtvolcite] = ACTIONS(6041), - [anon_sym_BSLASHTvolcite] = ACTIONS(6041), - [anon_sym_BSLASHavolcite] = ACTIONS(6041), - [anon_sym_BSLASHAvolcite] = ACTIONS(6041), - [anon_sym_BSLASHnotecite] = ACTIONS(6041), - [anon_sym_BSLASHNotecite] = ACTIONS(6041), - [anon_sym_BSLASHpnotecite] = ACTIONS(6041), - [anon_sym_BSLASHPnotecite] = ACTIONS(6041), - [anon_sym_BSLASHfnotecite] = ACTIONS(6041), - [anon_sym_BSLASHlabel] = ACTIONS(6041), - [anon_sym_BSLASHref] = ACTIONS(6041), - [anon_sym_BSLASHeqref] = ACTIONS(6041), - [anon_sym_BSLASHvref] = ACTIONS(6041), - [anon_sym_BSLASHVref] = ACTIONS(6041), - [anon_sym_BSLASHautoref] = ACTIONS(6041), - [anon_sym_BSLASHpageref] = ACTIONS(6041), - [anon_sym_BSLASHcref] = ACTIONS(6041), - [anon_sym_BSLASHCref] = ACTIONS(6041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnameCref] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHlabelcref] = ACTIONS(6041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCrefrange] = ACTIONS(6041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnewlabel] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6043), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHdef] = ACTIONS(6041), - [anon_sym_BSLASHlet] = ACTIONS(6041), - [anon_sym_BSLASHleft] = ACTIONS(6041), - [anon_sym_BSLASHbig] = ACTIONS(6041), - [anon_sym_BSLASHBig] = ACTIONS(6041), - [anon_sym_BSLASHbigg] = ACTIONS(6041), - [anon_sym_BSLASHBigg] = ACTIONS(6041), - [anon_sym_BSLASHbigl] = ACTIONS(6041), - [anon_sym_BSLASHBigl] = ACTIONS(6041), - [anon_sym_BSLASHbiggl] = ACTIONS(6041), - [anon_sym_BSLASHBiggl] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6041), - [anon_sym_BSLASHgls] = ACTIONS(6041), - [anon_sym_BSLASHGls] = ACTIONS(6041), - [anon_sym_BSLASHGLS] = ACTIONS(6041), - [anon_sym_BSLASHglspl] = ACTIONS(6041), - [anon_sym_BSLASHGlspl] = ACTIONS(6041), - [anon_sym_BSLASHGLSpl] = ACTIONS(6041), - [anon_sym_BSLASHglsdisp] = ACTIONS(6041), - [anon_sym_BSLASHglslink] = ACTIONS(6041), - [anon_sym_BSLASHglstext] = ACTIONS(6041), - [anon_sym_BSLASHGlstext] = ACTIONS(6041), - [anon_sym_BSLASHGLStext] = ACTIONS(6041), - [anon_sym_BSLASHglsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6041), - [anon_sym_BSLASHglsplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSplural] = ACTIONS(6041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHglsname] = ACTIONS(6041), - [anon_sym_BSLASHGlsname] = ACTIONS(6041), - [anon_sym_BSLASHGLSname] = ACTIONS(6041), - [anon_sym_BSLASHglssymbol] = ACTIONS(6041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6041), - [anon_sym_BSLASHglsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6041), - [anon_sym_BSLASHglsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6041), - [anon_sym_BSLASHglsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6041), - [anon_sym_BSLASHglsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6041), - [anon_sym_BSLASHglsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6041), - [anon_sym_BSLASHnewacronym] = ACTIONS(6041), - [anon_sym_BSLASHacrshort] = ACTIONS(6041), - [anon_sym_BSLASHAcrshort] = ACTIONS(6041), - [anon_sym_BSLASHACRshort] = ACTIONS(6041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6041), - [anon_sym_BSLASHacrlong] = ACTIONS(6041), - [anon_sym_BSLASHAcrlong] = ACTIONS(6041), - [anon_sym_BSLASHACRlong] = ACTIONS(6041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6041), - [anon_sym_BSLASHacrfull] = ACTIONS(6041), - [anon_sym_BSLASHAcrfull] = ACTIONS(6041), - [anon_sym_BSLASHACRfull] = ACTIONS(6041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6041), - [anon_sym_BSLASHacs] = ACTIONS(6041), - [anon_sym_BSLASHAcs] = ACTIONS(6041), - [anon_sym_BSLASHacsp] = ACTIONS(6041), - [anon_sym_BSLASHAcsp] = ACTIONS(6041), - [anon_sym_BSLASHacl] = ACTIONS(6041), - [anon_sym_BSLASHAcl] = ACTIONS(6041), - [anon_sym_BSLASHaclp] = ACTIONS(6041), - [anon_sym_BSLASHAclp] = ACTIONS(6041), - [anon_sym_BSLASHacf] = ACTIONS(6041), - [anon_sym_BSLASHAcf] = ACTIONS(6041), - [anon_sym_BSLASHacfp] = ACTIONS(6041), - [anon_sym_BSLASHAcfp] = ACTIONS(6041), - [anon_sym_BSLASHac] = ACTIONS(6041), - [anon_sym_BSLASHAc] = ACTIONS(6041), - [anon_sym_BSLASHacp] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6041), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6041), - [anon_sym_BSLASHcolor] = ACTIONS(6041), - [anon_sym_BSLASHcolorbox] = ACTIONS(6041), - [anon_sym_BSLASHtextcolor] = ACTIONS(6041), - [anon_sym_BSLASHpagecolor] = ACTIONS(6041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6041), - [anon_sym_BSLASHtext] = ACTIONS(6041), - [anon_sym_BSLASHintertext] = ACTIONS(6041), - [anon_sym_shortintertext] = ACTIONS(6041), - }, - [1402] = { - [sym_command_name] = ACTIONS(6037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6037), - [anon_sym_LBRACK] = ACTIONS(6039), - [anon_sym_RBRACK] = ACTIONS(6039), - [anon_sym_COMMA] = ACTIONS(6039), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_LPAREN] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_BSLASHpart] = ACTIONS(6037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddpart] = ACTIONS(6037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6039), - [anon_sym_BSLASHchapter] = ACTIONS(6037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddchap] = ACTIONS(6037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsection] = ACTIONS(6037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHaddsec] = ACTIONS(6037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubsection] = ACTIONS(6037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6039), - [anon_sym_BSLASHparagraph] = ACTIONS(6037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6039), - [anon_sym_BSLASHitem] = ACTIONS(6037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6039), - [anon_sym_LBRACE] = ACTIONS(6039), - [sym_word] = ACTIONS(6037), - [sym_placeholder] = ACTIONS(6039), - [anon_sym_PLUS] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [anon_sym_STAR] = ACTIONS(6039), - [anon_sym_SLASH] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6037), - [anon_sym_GT] = ACTIONS(6037), - [anon_sym_BANG] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_COLON] = ACTIONS(6037), - [anon_sym_SQUOTE] = ACTIONS(6037), - [anon_sym__] = ACTIONS(6039), - [anon_sym_CARET] = ACTIONS(6039), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6039), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6039), - [anon_sym_BSLASHbegin] = ACTIONS(6037), - [anon_sym_BSLASHtitle] = ACTIONS(6037), - [anon_sym_BSLASHauthor] = ACTIONS(6037), - [anon_sym_BSLASHusepackage] = ACTIONS(6037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6037), - [anon_sym_BSLASHinclude] = ACTIONS(6037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6037), - [anon_sym_BSLASHinput] = ACTIONS(6037), - [anon_sym_BSLASHsubfile] = ACTIONS(6037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6037), - [anon_sym_BSLASHbibliography] = ACTIONS(6037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6037), - [anon_sym_BSLASHincludesvg] = ACTIONS(6037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6037), - [anon_sym_BSLASHimport] = ACTIONS(6037), - [anon_sym_BSLASHsubimport] = ACTIONS(6037), - [anon_sym_BSLASHinputfrom] = ACTIONS(6037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6037), - [anon_sym_BSLASHincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHcaption] = ACTIONS(6037), - [anon_sym_BSLASHcite] = ACTIONS(6037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCite] = ACTIONS(6037), - [anon_sym_BSLASHnocite] = ACTIONS(6037), - [anon_sym_BSLASHcitet] = ACTIONS(6037), - [anon_sym_BSLASHcitep] = ACTIONS(6037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteauthor] = ACTIONS(6037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitetitle] = ACTIONS(6037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteyear] = ACTIONS(6037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitedate] = ACTIONS(6037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteurl] = ACTIONS(6037), - [anon_sym_BSLASHfullcite] = ACTIONS(6037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6037), - [anon_sym_BSLASHcitealt] = ACTIONS(6037), - [anon_sym_BSLASHcitealp] = ACTIONS(6037), - [anon_sym_BSLASHcitetext] = ACTIONS(6037), - [anon_sym_BSLASHparencite] = ACTIONS(6037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHParencite] = ACTIONS(6037), - [anon_sym_BSLASHfootcite] = ACTIONS(6037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6037), - [anon_sym_BSLASHtextcite] = ACTIONS(6037), - [anon_sym_BSLASHTextcite] = ACTIONS(6037), - [anon_sym_BSLASHsmartcite] = ACTIONS(6037), - [anon_sym_BSLASHSmartcite] = ACTIONS(6037), - [anon_sym_BSLASHsupercite] = ACTIONS(6037), - [anon_sym_BSLASHautocite] = ACTIONS(6037), - [anon_sym_BSLASHAutocite] = ACTIONS(6037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHvolcite] = ACTIONS(6037), - [anon_sym_BSLASHVolcite] = ACTIONS(6037), - [anon_sym_BSLASHpvolcite] = ACTIONS(6037), - [anon_sym_BSLASHPvolcite] = ACTIONS(6037), - [anon_sym_BSLASHfvolcite] = ACTIONS(6037), - [anon_sym_BSLASHftvolcite] = ACTIONS(6037), - [anon_sym_BSLASHsvolcite] = ACTIONS(6037), - [anon_sym_BSLASHSvolcite] = ACTIONS(6037), - [anon_sym_BSLASHtvolcite] = ACTIONS(6037), - [anon_sym_BSLASHTvolcite] = ACTIONS(6037), - [anon_sym_BSLASHavolcite] = ACTIONS(6037), - [anon_sym_BSLASHAvolcite] = ACTIONS(6037), - [anon_sym_BSLASHnotecite] = ACTIONS(6037), - [anon_sym_BSLASHNotecite] = ACTIONS(6037), - [anon_sym_BSLASHpnotecite] = ACTIONS(6037), - [anon_sym_BSLASHPnotecite] = ACTIONS(6037), - [anon_sym_BSLASHfnotecite] = ACTIONS(6037), - [anon_sym_BSLASHlabel] = ACTIONS(6037), - [anon_sym_BSLASHref] = ACTIONS(6037), - [anon_sym_BSLASHeqref] = ACTIONS(6037), - [anon_sym_BSLASHvref] = ACTIONS(6037), - [anon_sym_BSLASHVref] = ACTIONS(6037), - [anon_sym_BSLASHautoref] = ACTIONS(6037), - [anon_sym_BSLASHpageref] = ACTIONS(6037), - [anon_sym_BSLASHcref] = ACTIONS(6037), - [anon_sym_BSLASHCref] = ACTIONS(6037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnameCref] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHlabelcref] = ACTIONS(6037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCrefrange] = ACTIONS(6037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnewlabel] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6039), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHdef] = ACTIONS(6037), - [anon_sym_BSLASHlet] = ACTIONS(6037), - [anon_sym_BSLASHleft] = ACTIONS(6037), - [anon_sym_BSLASHbig] = ACTIONS(6037), - [anon_sym_BSLASHBig] = ACTIONS(6037), - [anon_sym_BSLASHbigg] = ACTIONS(6037), - [anon_sym_BSLASHBigg] = ACTIONS(6037), - [anon_sym_BSLASHbigl] = ACTIONS(6037), - [anon_sym_BSLASHBigl] = ACTIONS(6037), - [anon_sym_BSLASHbiggl] = ACTIONS(6037), - [anon_sym_BSLASHBiggl] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6037), - [anon_sym_BSLASHgls] = ACTIONS(6037), - [anon_sym_BSLASHGls] = ACTIONS(6037), - [anon_sym_BSLASHGLS] = ACTIONS(6037), - [anon_sym_BSLASHglspl] = ACTIONS(6037), - [anon_sym_BSLASHGlspl] = ACTIONS(6037), - [anon_sym_BSLASHGLSpl] = ACTIONS(6037), - [anon_sym_BSLASHglsdisp] = ACTIONS(6037), - [anon_sym_BSLASHglslink] = ACTIONS(6037), - [anon_sym_BSLASHglstext] = ACTIONS(6037), - [anon_sym_BSLASHGlstext] = ACTIONS(6037), - [anon_sym_BSLASHGLStext] = ACTIONS(6037), - [anon_sym_BSLASHglsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6037), - [anon_sym_BSLASHglsplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSplural] = ACTIONS(6037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHglsname] = ACTIONS(6037), - [anon_sym_BSLASHGlsname] = ACTIONS(6037), - [anon_sym_BSLASHGLSname] = ACTIONS(6037), - [anon_sym_BSLASHglssymbol] = ACTIONS(6037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6037), - [anon_sym_BSLASHglsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6037), - [anon_sym_BSLASHglsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6037), - [anon_sym_BSLASHglsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6037), - [anon_sym_BSLASHglsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6037), - [anon_sym_BSLASHglsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6037), - [anon_sym_BSLASHnewacronym] = ACTIONS(6037), - [anon_sym_BSLASHacrshort] = ACTIONS(6037), - [anon_sym_BSLASHAcrshort] = ACTIONS(6037), - [anon_sym_BSLASHACRshort] = ACTIONS(6037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6037), - [anon_sym_BSLASHacrlong] = ACTIONS(6037), - [anon_sym_BSLASHAcrlong] = ACTIONS(6037), - [anon_sym_BSLASHACRlong] = ACTIONS(6037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6037), - [anon_sym_BSLASHacrfull] = ACTIONS(6037), - [anon_sym_BSLASHAcrfull] = ACTIONS(6037), - [anon_sym_BSLASHACRfull] = ACTIONS(6037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6037), - [anon_sym_BSLASHacs] = ACTIONS(6037), - [anon_sym_BSLASHAcs] = ACTIONS(6037), - [anon_sym_BSLASHacsp] = ACTIONS(6037), - [anon_sym_BSLASHAcsp] = ACTIONS(6037), - [anon_sym_BSLASHacl] = ACTIONS(6037), - [anon_sym_BSLASHAcl] = ACTIONS(6037), - [anon_sym_BSLASHaclp] = ACTIONS(6037), - [anon_sym_BSLASHAclp] = ACTIONS(6037), - [anon_sym_BSLASHacf] = ACTIONS(6037), - [anon_sym_BSLASHAcf] = ACTIONS(6037), - [anon_sym_BSLASHacfp] = ACTIONS(6037), - [anon_sym_BSLASHAcfp] = ACTIONS(6037), - [anon_sym_BSLASHac] = ACTIONS(6037), - [anon_sym_BSLASHAc] = ACTIONS(6037), - [anon_sym_BSLASHacp] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6037), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6037), - [anon_sym_BSLASHcolor] = ACTIONS(6037), - [anon_sym_BSLASHcolorbox] = ACTIONS(6037), - [anon_sym_BSLASHtextcolor] = ACTIONS(6037), - [anon_sym_BSLASHpagecolor] = ACTIONS(6037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6037), - [anon_sym_BSLASHtext] = ACTIONS(6037), - [anon_sym_BSLASHintertext] = ACTIONS(6037), - [anon_sym_shortintertext] = ACTIONS(6037), - }, - [1403] = { - [sym_command_name] = ACTIONS(6161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_EQ] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_BSLASHpart] = ACTIONS(6161), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddpart] = ACTIONS(6161), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6163), - [anon_sym_BSLASHchapter] = ACTIONS(6161), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddchap] = ACTIONS(6161), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsection] = ACTIONS(6161), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHaddsec] = ACTIONS(6161), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubsection] = ACTIONS(6161), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6161), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6163), - [anon_sym_BSLASHparagraph] = ACTIONS(6161), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6163), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6161), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6163), - [anon_sym_BSLASHitem] = ACTIONS(6161), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6163), - [anon_sym_LBRACE] = ACTIONS(6163), - [sym_word] = ACTIONS(6161), - [sym_placeholder] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6163), - [anon_sym_DASH] = ACTIONS(6163), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_COLON] = ACTIONS(6161), - [anon_sym_SQUOTE] = ACTIONS(6161), - [anon_sym__] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6163), - [anon_sym_DOLLAR] = ACTIONS(6161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6163), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6163), - [anon_sym_BSLASHbegin] = ACTIONS(6161), - [anon_sym_BSLASHtitle] = ACTIONS(6161), - [anon_sym_BSLASHauthor] = ACTIONS(6161), - [anon_sym_BSLASHusepackage] = ACTIONS(6161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6161), - [anon_sym_BSLASHinclude] = ACTIONS(6161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6161), - [anon_sym_BSLASHinput] = ACTIONS(6161), - [anon_sym_BSLASHsubfile] = ACTIONS(6161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6161), - [anon_sym_BSLASHbibliography] = ACTIONS(6161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6161), - [anon_sym_BSLASHincludesvg] = ACTIONS(6161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6161), - [anon_sym_BSLASHimport] = ACTIONS(6161), - [anon_sym_BSLASHsubimport] = ACTIONS(6161), - [anon_sym_BSLASHinputfrom] = ACTIONS(6161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6161), - [anon_sym_BSLASHincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHcaption] = ACTIONS(6161), - [anon_sym_BSLASHcite] = ACTIONS(6161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCite] = ACTIONS(6161), - [anon_sym_BSLASHnocite] = ACTIONS(6161), - [anon_sym_BSLASHcitet] = ACTIONS(6161), - [anon_sym_BSLASHcitep] = ACTIONS(6161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteauthor] = ACTIONS(6161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitetitle] = ACTIONS(6161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteyear] = ACTIONS(6161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitedate] = ACTIONS(6161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteurl] = ACTIONS(6161), - [anon_sym_BSLASHfullcite] = ACTIONS(6161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6161), - [anon_sym_BSLASHcitealt] = ACTIONS(6161), - [anon_sym_BSLASHcitealp] = ACTIONS(6161), - [anon_sym_BSLASHcitetext] = ACTIONS(6161), - [anon_sym_BSLASHparencite] = ACTIONS(6161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHParencite] = ACTIONS(6161), - [anon_sym_BSLASHfootcite] = ACTIONS(6161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6161), - [anon_sym_BSLASHtextcite] = ACTIONS(6161), - [anon_sym_BSLASHTextcite] = ACTIONS(6161), - [anon_sym_BSLASHsmartcite] = ACTIONS(6161), - [anon_sym_BSLASHSmartcite] = ACTIONS(6161), - [anon_sym_BSLASHsupercite] = ACTIONS(6161), - [anon_sym_BSLASHautocite] = ACTIONS(6161), - [anon_sym_BSLASHAutocite] = ACTIONS(6161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHvolcite] = ACTIONS(6161), - [anon_sym_BSLASHVolcite] = ACTIONS(6161), - [anon_sym_BSLASHpvolcite] = ACTIONS(6161), - [anon_sym_BSLASHPvolcite] = ACTIONS(6161), - [anon_sym_BSLASHfvolcite] = ACTIONS(6161), - [anon_sym_BSLASHftvolcite] = ACTIONS(6161), - [anon_sym_BSLASHsvolcite] = ACTIONS(6161), - [anon_sym_BSLASHSvolcite] = ACTIONS(6161), - [anon_sym_BSLASHtvolcite] = ACTIONS(6161), - [anon_sym_BSLASHTvolcite] = ACTIONS(6161), - [anon_sym_BSLASHavolcite] = ACTIONS(6161), - [anon_sym_BSLASHAvolcite] = ACTIONS(6161), - [anon_sym_BSLASHnotecite] = ACTIONS(6161), - [anon_sym_BSLASHNotecite] = ACTIONS(6161), - [anon_sym_BSLASHpnotecite] = ACTIONS(6161), - [anon_sym_BSLASHPnotecite] = ACTIONS(6161), - [anon_sym_BSLASHfnotecite] = ACTIONS(6161), - [anon_sym_BSLASHlabel] = ACTIONS(6161), - [anon_sym_BSLASHref] = ACTIONS(6161), - [anon_sym_BSLASHeqref] = ACTIONS(6161), - [anon_sym_BSLASHvref] = ACTIONS(6161), - [anon_sym_BSLASHVref] = ACTIONS(6161), - [anon_sym_BSLASHautoref] = ACTIONS(6161), - [anon_sym_BSLASHpageref] = ACTIONS(6161), - [anon_sym_BSLASHcref] = ACTIONS(6161), - [anon_sym_BSLASHCref] = ACTIONS(6161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnameCref] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHlabelcref] = ACTIONS(6161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCrefrange] = ACTIONS(6161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnewlabel] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6163), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHdef] = ACTIONS(6161), - [anon_sym_BSLASHlet] = ACTIONS(6161), - [anon_sym_BSLASHleft] = ACTIONS(6161), - [anon_sym_BSLASHbig] = ACTIONS(6161), - [anon_sym_BSLASHBig] = ACTIONS(6161), - [anon_sym_BSLASHbigg] = ACTIONS(6161), - [anon_sym_BSLASHBigg] = ACTIONS(6161), - [anon_sym_BSLASHbigl] = ACTIONS(6161), - [anon_sym_BSLASHBigl] = ACTIONS(6161), - [anon_sym_BSLASHbiggl] = ACTIONS(6161), - [anon_sym_BSLASHBiggl] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6161), - [anon_sym_BSLASHgls] = ACTIONS(6161), - [anon_sym_BSLASHGls] = ACTIONS(6161), - [anon_sym_BSLASHGLS] = ACTIONS(6161), - [anon_sym_BSLASHglspl] = ACTIONS(6161), - [anon_sym_BSLASHGlspl] = ACTIONS(6161), - [anon_sym_BSLASHGLSpl] = ACTIONS(6161), - [anon_sym_BSLASHglsdisp] = ACTIONS(6161), - [anon_sym_BSLASHglslink] = ACTIONS(6161), - [anon_sym_BSLASHglstext] = ACTIONS(6161), - [anon_sym_BSLASHGlstext] = ACTIONS(6161), - [anon_sym_BSLASHGLStext] = ACTIONS(6161), - [anon_sym_BSLASHglsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6161), - [anon_sym_BSLASHglsplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSplural] = ACTIONS(6161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHglsname] = ACTIONS(6161), - [anon_sym_BSLASHGlsname] = ACTIONS(6161), - [anon_sym_BSLASHGLSname] = ACTIONS(6161), - [anon_sym_BSLASHglssymbol] = ACTIONS(6161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6161), - [anon_sym_BSLASHglsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6161), - [anon_sym_BSLASHglsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6161), - [anon_sym_BSLASHglsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6161), - [anon_sym_BSLASHglsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6161), - [anon_sym_BSLASHglsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6161), - [anon_sym_BSLASHnewacronym] = ACTIONS(6161), - [anon_sym_BSLASHacrshort] = ACTIONS(6161), - [anon_sym_BSLASHAcrshort] = ACTIONS(6161), - [anon_sym_BSLASHACRshort] = ACTIONS(6161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6161), - [anon_sym_BSLASHacrlong] = ACTIONS(6161), - [anon_sym_BSLASHAcrlong] = ACTIONS(6161), - [anon_sym_BSLASHACRlong] = ACTIONS(6161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6161), - [anon_sym_BSLASHacrfull] = ACTIONS(6161), - [anon_sym_BSLASHAcrfull] = ACTIONS(6161), - [anon_sym_BSLASHACRfull] = ACTIONS(6161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6161), - [anon_sym_BSLASHacs] = ACTIONS(6161), - [anon_sym_BSLASHAcs] = ACTIONS(6161), - [anon_sym_BSLASHacsp] = ACTIONS(6161), - [anon_sym_BSLASHAcsp] = ACTIONS(6161), - [anon_sym_BSLASHacl] = ACTIONS(6161), - [anon_sym_BSLASHAcl] = ACTIONS(6161), - [anon_sym_BSLASHaclp] = ACTIONS(6161), - [anon_sym_BSLASHAclp] = ACTIONS(6161), - [anon_sym_BSLASHacf] = ACTIONS(6161), - [anon_sym_BSLASHAcf] = ACTIONS(6161), - [anon_sym_BSLASHacfp] = ACTIONS(6161), - [anon_sym_BSLASHAcfp] = ACTIONS(6161), - [anon_sym_BSLASHac] = ACTIONS(6161), - [anon_sym_BSLASHAc] = ACTIONS(6161), - [anon_sym_BSLASHacp] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6161), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6161), - [anon_sym_BSLASHcolor] = ACTIONS(6161), - [anon_sym_BSLASHcolorbox] = ACTIONS(6161), - [anon_sym_BSLASHtextcolor] = ACTIONS(6161), - [anon_sym_BSLASHpagecolor] = ACTIONS(6161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6161), - [anon_sym_BSLASHtext] = ACTIONS(6161), - [anon_sym_BSLASHintertext] = ACTIONS(6161), - [anon_sym_shortintertext] = ACTIONS(6161), - }, - [1404] = { - [sym_command_name] = ACTIONS(6165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6165), - [anon_sym_LBRACK] = ACTIONS(6167), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_EQ] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_BSLASHpart] = ACTIONS(6165), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddpart] = ACTIONS(6165), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6167), - [anon_sym_BSLASHchapter] = ACTIONS(6165), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddchap] = ACTIONS(6165), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsection] = ACTIONS(6165), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHaddsec] = ACTIONS(6165), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubsection] = ACTIONS(6165), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6165), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6167), - [anon_sym_BSLASHparagraph] = ACTIONS(6165), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6167), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6165), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6167), - [anon_sym_BSLASHitem] = ACTIONS(6165), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6167), - [anon_sym_LBRACE] = ACTIONS(6167), - [sym_word] = ACTIONS(6165), - [sym_placeholder] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6167), - [anon_sym_DASH] = ACTIONS(6167), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_COLON] = ACTIONS(6165), - [anon_sym_SQUOTE] = ACTIONS(6165), - [anon_sym__] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6167), - [anon_sym_BSLASHbegin] = ACTIONS(6165), - [anon_sym_BSLASHend] = ACTIONS(6165), - [anon_sym_BSLASHtitle] = ACTIONS(6165), - [anon_sym_BSLASHauthor] = ACTIONS(6165), - [anon_sym_BSLASHusepackage] = ACTIONS(6165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6165), - [anon_sym_BSLASHinclude] = ACTIONS(6165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6165), - [anon_sym_BSLASHinput] = ACTIONS(6165), - [anon_sym_BSLASHsubfile] = ACTIONS(6165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6165), - [anon_sym_BSLASHbibliography] = ACTIONS(6165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6165), - [anon_sym_BSLASHincludesvg] = ACTIONS(6165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6165), - [anon_sym_BSLASHimport] = ACTIONS(6165), - [anon_sym_BSLASHsubimport] = ACTIONS(6165), - [anon_sym_BSLASHinputfrom] = ACTIONS(6165), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6165), - [anon_sym_BSLASHincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHcaption] = ACTIONS(6165), - [anon_sym_BSLASHcite] = ACTIONS(6165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCite] = ACTIONS(6165), - [anon_sym_BSLASHnocite] = ACTIONS(6165), - [anon_sym_BSLASHcitet] = ACTIONS(6165), - [anon_sym_BSLASHcitep] = ACTIONS(6165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteauthor] = ACTIONS(6165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitetitle] = ACTIONS(6165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteyear] = ACTIONS(6165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitedate] = ACTIONS(6165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteurl] = ACTIONS(6165), - [anon_sym_BSLASHfullcite] = ACTIONS(6165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6165), - [anon_sym_BSLASHcitealt] = ACTIONS(6165), - [anon_sym_BSLASHcitealp] = ACTIONS(6165), - [anon_sym_BSLASHcitetext] = ACTIONS(6165), - [anon_sym_BSLASHparencite] = ACTIONS(6165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHParencite] = ACTIONS(6165), - [anon_sym_BSLASHfootcite] = ACTIONS(6165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6165), - [anon_sym_BSLASHtextcite] = ACTIONS(6165), - [anon_sym_BSLASHTextcite] = ACTIONS(6165), - [anon_sym_BSLASHsmartcite] = ACTIONS(6165), - [anon_sym_BSLASHSmartcite] = ACTIONS(6165), - [anon_sym_BSLASHsupercite] = ACTIONS(6165), - [anon_sym_BSLASHautocite] = ACTIONS(6165), - [anon_sym_BSLASHAutocite] = ACTIONS(6165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHvolcite] = ACTIONS(6165), - [anon_sym_BSLASHVolcite] = ACTIONS(6165), - [anon_sym_BSLASHpvolcite] = ACTIONS(6165), - [anon_sym_BSLASHPvolcite] = ACTIONS(6165), - [anon_sym_BSLASHfvolcite] = ACTIONS(6165), - [anon_sym_BSLASHftvolcite] = ACTIONS(6165), - [anon_sym_BSLASHsvolcite] = ACTIONS(6165), - [anon_sym_BSLASHSvolcite] = ACTIONS(6165), - [anon_sym_BSLASHtvolcite] = ACTIONS(6165), - [anon_sym_BSLASHTvolcite] = ACTIONS(6165), - [anon_sym_BSLASHavolcite] = ACTIONS(6165), - [anon_sym_BSLASHAvolcite] = ACTIONS(6165), - [anon_sym_BSLASHnotecite] = ACTIONS(6165), - [anon_sym_BSLASHNotecite] = ACTIONS(6165), - [anon_sym_BSLASHpnotecite] = ACTIONS(6165), - [anon_sym_BSLASHPnotecite] = ACTIONS(6165), - [anon_sym_BSLASHfnotecite] = ACTIONS(6165), - [anon_sym_BSLASHlabel] = ACTIONS(6165), - [anon_sym_BSLASHref] = ACTIONS(6165), - [anon_sym_BSLASHeqref] = ACTIONS(6165), - [anon_sym_BSLASHvref] = ACTIONS(6165), - [anon_sym_BSLASHVref] = ACTIONS(6165), - [anon_sym_BSLASHautoref] = ACTIONS(6165), - [anon_sym_BSLASHpageref] = ACTIONS(6165), - [anon_sym_BSLASHcref] = ACTIONS(6165), - [anon_sym_BSLASHCref] = ACTIONS(6165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnameCref] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHlabelcref] = ACTIONS(6165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCrefrange] = ACTIONS(6165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnewlabel] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6167), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHdef] = ACTIONS(6165), - [anon_sym_BSLASHlet] = ACTIONS(6165), - [anon_sym_BSLASHleft] = ACTIONS(6165), - [anon_sym_BSLASHbig] = ACTIONS(6165), - [anon_sym_BSLASHBig] = ACTIONS(6165), - [anon_sym_BSLASHbigg] = ACTIONS(6165), - [anon_sym_BSLASHBigg] = ACTIONS(6165), - [anon_sym_BSLASHbigl] = ACTIONS(6165), - [anon_sym_BSLASHBigl] = ACTIONS(6165), - [anon_sym_BSLASHbiggl] = ACTIONS(6165), - [anon_sym_BSLASHBiggl] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6165), - [anon_sym_BSLASHgls] = ACTIONS(6165), - [anon_sym_BSLASHGls] = ACTIONS(6165), - [anon_sym_BSLASHGLS] = ACTIONS(6165), - [anon_sym_BSLASHglspl] = ACTIONS(6165), - [anon_sym_BSLASHGlspl] = ACTIONS(6165), - [anon_sym_BSLASHGLSpl] = ACTIONS(6165), - [anon_sym_BSLASHglsdisp] = ACTIONS(6165), - [anon_sym_BSLASHglslink] = ACTIONS(6165), - [anon_sym_BSLASHglstext] = ACTIONS(6165), - [anon_sym_BSLASHGlstext] = ACTIONS(6165), - [anon_sym_BSLASHGLStext] = ACTIONS(6165), - [anon_sym_BSLASHglsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6165), - [anon_sym_BSLASHglsplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSplural] = ACTIONS(6165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHglsname] = ACTIONS(6165), - [anon_sym_BSLASHGlsname] = ACTIONS(6165), - [anon_sym_BSLASHGLSname] = ACTIONS(6165), - [anon_sym_BSLASHglssymbol] = ACTIONS(6165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6165), - [anon_sym_BSLASHglsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6165), - [anon_sym_BSLASHglsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6165), - [anon_sym_BSLASHglsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6165), - [anon_sym_BSLASHglsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6165), - [anon_sym_BSLASHglsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6165), - [anon_sym_BSLASHnewacronym] = ACTIONS(6165), - [anon_sym_BSLASHacrshort] = ACTIONS(6165), - [anon_sym_BSLASHAcrshort] = ACTIONS(6165), - [anon_sym_BSLASHACRshort] = ACTIONS(6165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6165), - [anon_sym_BSLASHacrlong] = ACTIONS(6165), - [anon_sym_BSLASHAcrlong] = ACTIONS(6165), - [anon_sym_BSLASHACRlong] = ACTIONS(6165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6165), - [anon_sym_BSLASHacrfull] = ACTIONS(6165), - [anon_sym_BSLASHAcrfull] = ACTIONS(6165), - [anon_sym_BSLASHACRfull] = ACTIONS(6165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6165), - [anon_sym_BSLASHacs] = ACTIONS(6165), - [anon_sym_BSLASHAcs] = ACTIONS(6165), - [anon_sym_BSLASHacsp] = ACTIONS(6165), - [anon_sym_BSLASHAcsp] = ACTIONS(6165), - [anon_sym_BSLASHacl] = ACTIONS(6165), - [anon_sym_BSLASHAcl] = ACTIONS(6165), - [anon_sym_BSLASHaclp] = ACTIONS(6165), - [anon_sym_BSLASHAclp] = ACTIONS(6165), - [anon_sym_BSLASHacf] = ACTIONS(6165), - [anon_sym_BSLASHAcf] = ACTIONS(6165), - [anon_sym_BSLASHacfp] = ACTIONS(6165), - [anon_sym_BSLASHAcfp] = ACTIONS(6165), - [anon_sym_BSLASHac] = ACTIONS(6165), - [anon_sym_BSLASHAc] = ACTIONS(6165), - [anon_sym_BSLASHacp] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6165), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6165), - [anon_sym_BSLASHcolor] = ACTIONS(6165), - [anon_sym_BSLASHcolorbox] = ACTIONS(6165), - [anon_sym_BSLASHtextcolor] = ACTIONS(6165), - [anon_sym_BSLASHpagecolor] = ACTIONS(6165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6165), - [anon_sym_BSLASHtext] = ACTIONS(6165), - [anon_sym_BSLASHintertext] = ACTIONS(6165), - [anon_sym_shortintertext] = ACTIONS(6165), - }, - [1405] = { - [sym_command_name] = ACTIONS(6245), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6247), - [anon_sym_RBRACK] = ACTIONS(6247), - [anon_sym_COMMA] = ACTIONS(6247), - [anon_sym_EQ] = ACTIONS(6247), - [anon_sym_LPAREN] = ACTIONS(6247), - [anon_sym_RPAREN] = ACTIONS(6247), - [anon_sym_BSLASHpart] = ACTIONS(6245), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddpart] = ACTIONS(6245), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6247), - [anon_sym_BSLASHchapter] = ACTIONS(6245), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddchap] = ACTIONS(6245), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsection] = ACTIONS(6245), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHaddsec] = ACTIONS(6245), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubsection] = ACTIONS(6245), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6245), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6247), - [anon_sym_BSLASHparagraph] = ACTIONS(6245), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6247), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6245), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6247), - [anon_sym_BSLASHitem] = ACTIONS(6245), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6247), - [sym_word] = ACTIONS(6245), - [sym_placeholder] = ACTIONS(6247), - [anon_sym_PLUS] = ACTIONS(6247), - [anon_sym_DASH] = ACTIONS(6247), - [anon_sym_STAR] = ACTIONS(6247), - [anon_sym_SLASH] = ACTIONS(6247), - [anon_sym_LT] = ACTIONS(6245), - [anon_sym_GT] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6245), - [anon_sym_PIPE] = ACTIONS(6245), - [anon_sym_COLON] = ACTIONS(6245), - [anon_sym_SQUOTE] = ACTIONS(6245), - [anon_sym__] = ACTIONS(6247), - [anon_sym_CARET] = ACTIONS(6247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6247), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6247), - [anon_sym_DOLLAR] = ACTIONS(6245), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6247), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6247), - [anon_sym_BSLASHbegin] = ACTIONS(6245), - [anon_sym_BSLASHtitle] = ACTIONS(6245), - [anon_sym_BSLASHauthor] = ACTIONS(6245), - [anon_sym_BSLASHusepackage] = ACTIONS(6245), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6245), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6245), - [anon_sym_BSLASHinclude] = ACTIONS(6245), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6245), - [anon_sym_BSLASHinput] = ACTIONS(6245), - [anon_sym_BSLASHsubfile] = ACTIONS(6245), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6245), - [anon_sym_BSLASHbibliography] = ACTIONS(6245), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6245), - [anon_sym_BSLASHincludesvg] = ACTIONS(6245), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6245), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6245), - [anon_sym_BSLASHimport] = ACTIONS(6245), - [anon_sym_BSLASHsubimport] = ACTIONS(6245), - [anon_sym_BSLASHinputfrom] = ACTIONS(6245), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6245), - [anon_sym_BSLASHincludefrom] = ACTIONS(6245), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6245), - [anon_sym_BSLASHcaption] = ACTIONS(6245), - [anon_sym_BSLASHcite] = ACTIONS(6245), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCite] = ACTIONS(6245), - [anon_sym_BSLASHnocite] = ACTIONS(6245), - [anon_sym_BSLASHcitet] = ACTIONS(6245), - [anon_sym_BSLASHcitep] = ACTIONS(6245), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteauthor] = ACTIONS(6245), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6245), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitetitle] = ACTIONS(6245), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteyear] = ACTIONS(6245), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6247), - [anon_sym_BSLASHcitedate] = ACTIONS(6245), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6247), - [anon_sym_BSLASHciteurl] = ACTIONS(6245), - [anon_sym_BSLASHfullcite] = ACTIONS(6245), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6245), - [anon_sym_BSLASHcitealt] = ACTIONS(6245), - [anon_sym_BSLASHcitealp] = ACTIONS(6245), - [anon_sym_BSLASHcitetext] = ACTIONS(6245), - [anon_sym_BSLASHparencite] = ACTIONS(6245), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHParencite] = ACTIONS(6245), - [anon_sym_BSLASHfootcite] = ACTIONS(6245), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6245), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6245), - [anon_sym_BSLASHtextcite] = ACTIONS(6245), - [anon_sym_BSLASHTextcite] = ACTIONS(6245), - [anon_sym_BSLASHsmartcite] = ACTIONS(6245), - [anon_sym_BSLASHSmartcite] = ACTIONS(6245), - [anon_sym_BSLASHsupercite] = ACTIONS(6245), - [anon_sym_BSLASHautocite] = ACTIONS(6245), - [anon_sym_BSLASHAutocite] = ACTIONS(6245), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6247), - [anon_sym_BSLASHvolcite] = ACTIONS(6245), - [anon_sym_BSLASHVolcite] = ACTIONS(6245), - [anon_sym_BSLASHpvolcite] = ACTIONS(6245), - [anon_sym_BSLASHPvolcite] = ACTIONS(6245), - [anon_sym_BSLASHfvolcite] = ACTIONS(6245), - [anon_sym_BSLASHftvolcite] = ACTIONS(6245), - [anon_sym_BSLASHsvolcite] = ACTIONS(6245), - [anon_sym_BSLASHSvolcite] = ACTIONS(6245), - [anon_sym_BSLASHtvolcite] = ACTIONS(6245), - [anon_sym_BSLASHTvolcite] = ACTIONS(6245), - [anon_sym_BSLASHavolcite] = ACTIONS(6245), - [anon_sym_BSLASHAvolcite] = ACTIONS(6245), - [anon_sym_BSLASHnotecite] = ACTIONS(6245), - [anon_sym_BSLASHNotecite] = ACTIONS(6245), - [anon_sym_BSLASHpnotecite] = ACTIONS(6245), - [anon_sym_BSLASHPnotecite] = ACTIONS(6245), - [anon_sym_BSLASHfnotecite] = ACTIONS(6245), - [anon_sym_BSLASHlabel] = ACTIONS(6245), - [anon_sym_BSLASHref] = ACTIONS(6245), - [anon_sym_BSLASHeqref] = ACTIONS(6245), - [anon_sym_BSLASHvref] = ACTIONS(6245), - [anon_sym_BSLASHVref] = ACTIONS(6245), - [anon_sym_BSLASHautoref] = ACTIONS(6245), - [anon_sym_BSLASHpageref] = ACTIONS(6245), - [anon_sym_BSLASHcref] = ACTIONS(6245), - [anon_sym_BSLASHCref] = ACTIONS(6245), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6247), - [anon_sym_BSLASHnamecref] = ACTIONS(6245), - [anon_sym_BSLASHnameCref] = ACTIONS(6245), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6245), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6245), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6245), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6245), - [anon_sym_BSLASHlabelcref] = ACTIONS(6245), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6245), - [anon_sym_BSLASHcrefrange] = ACTIONS(6245), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6247), - [anon_sym_BSLASHCrefrange] = ACTIONS(6245), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6247), - [anon_sym_BSLASHnewlabel] = ACTIONS(6245), - [anon_sym_BSLASHnewcommand] = ACTIONS(6245), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6245), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6247), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6245), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6247), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6245), - [anon_sym_BSLASHdef] = ACTIONS(6245), - [anon_sym_BSLASHlet] = ACTIONS(6245), - [anon_sym_BSLASHleft] = ACTIONS(6245), - [anon_sym_BSLASHbig] = ACTIONS(6245), - [anon_sym_BSLASHBig] = ACTIONS(6245), - [anon_sym_BSLASHbigg] = ACTIONS(6245), - [anon_sym_BSLASHBigg] = ACTIONS(6245), - [anon_sym_BSLASHbigl] = ACTIONS(6245), - [anon_sym_BSLASHBigl] = ACTIONS(6245), - [anon_sym_BSLASHbiggl] = ACTIONS(6245), - [anon_sym_BSLASHBiggl] = ACTIONS(6245), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6245), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6245), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6245), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6245), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6245), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6245), - [anon_sym_BSLASHgls] = ACTIONS(6245), - [anon_sym_BSLASHGls] = ACTIONS(6245), - [anon_sym_BSLASHGLS] = ACTIONS(6245), - [anon_sym_BSLASHglspl] = ACTIONS(6245), - [anon_sym_BSLASHGlspl] = ACTIONS(6245), - [anon_sym_BSLASHGLSpl] = ACTIONS(6245), - [anon_sym_BSLASHglsdisp] = ACTIONS(6245), - [anon_sym_BSLASHglslink] = ACTIONS(6245), - [anon_sym_BSLASHglstext] = ACTIONS(6245), - [anon_sym_BSLASHGlstext] = ACTIONS(6245), - [anon_sym_BSLASHGLStext] = ACTIONS(6245), - [anon_sym_BSLASHglsfirst] = ACTIONS(6245), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6245), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6245), - [anon_sym_BSLASHglsplural] = ACTIONS(6245), - [anon_sym_BSLASHGlsplural] = ACTIONS(6245), - [anon_sym_BSLASHGLSplural] = ACTIONS(6245), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6245), - [anon_sym_BSLASHglsname] = ACTIONS(6245), - [anon_sym_BSLASHGlsname] = ACTIONS(6245), - [anon_sym_BSLASHGLSname] = ACTIONS(6245), - [anon_sym_BSLASHglssymbol] = ACTIONS(6245), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6245), - [anon_sym_BSLASHglsdesc] = ACTIONS(6245), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6245), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6245), - [anon_sym_BSLASHglsuseri] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6245), - [anon_sym_BSLASHglsuserii] = ACTIONS(6245), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6245), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6245), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6245), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6245), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6245), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6245), - [anon_sym_BSLASHglsuserv] = ACTIONS(6245), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6245), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6245), - [anon_sym_BSLASHglsuservi] = ACTIONS(6245), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6245), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6245), - [anon_sym_BSLASHnewacronym] = ACTIONS(6245), - [anon_sym_BSLASHacrshort] = ACTIONS(6245), - [anon_sym_BSLASHAcrshort] = ACTIONS(6245), - [anon_sym_BSLASHACRshort] = ACTIONS(6245), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6245), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6245), - [anon_sym_BSLASHacrlong] = ACTIONS(6245), - [anon_sym_BSLASHAcrlong] = ACTIONS(6245), - [anon_sym_BSLASHACRlong] = ACTIONS(6245), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6245), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6245), - [anon_sym_BSLASHacrfull] = ACTIONS(6245), - [anon_sym_BSLASHAcrfull] = ACTIONS(6245), - [anon_sym_BSLASHACRfull] = ACTIONS(6245), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6245), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6245), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6245), - [anon_sym_BSLASHacs] = ACTIONS(6245), - [anon_sym_BSLASHAcs] = ACTIONS(6245), - [anon_sym_BSLASHacsp] = ACTIONS(6245), - [anon_sym_BSLASHAcsp] = ACTIONS(6245), - [anon_sym_BSLASHacl] = ACTIONS(6245), - [anon_sym_BSLASHAcl] = ACTIONS(6245), - [anon_sym_BSLASHaclp] = ACTIONS(6245), - [anon_sym_BSLASHAclp] = ACTIONS(6245), - [anon_sym_BSLASHacf] = ACTIONS(6245), - [anon_sym_BSLASHAcf] = ACTIONS(6245), - [anon_sym_BSLASHacfp] = ACTIONS(6245), - [anon_sym_BSLASHAcfp] = ACTIONS(6245), - [anon_sym_BSLASHac] = ACTIONS(6245), - [anon_sym_BSLASHAc] = ACTIONS(6245), - [anon_sym_BSLASHacp] = ACTIONS(6245), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6245), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6245), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6245), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6245), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6245), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6245), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6245), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6245), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6245), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6245), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6245), - [anon_sym_BSLASHcolor] = ACTIONS(6245), - [anon_sym_BSLASHcolorbox] = ACTIONS(6245), - [anon_sym_BSLASHtextcolor] = ACTIONS(6245), - [anon_sym_BSLASHpagecolor] = ACTIONS(6245), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6245), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6245), - [anon_sym_BSLASHtext] = ACTIONS(6245), - [anon_sym_BSLASHintertext] = ACTIONS(6245), - [anon_sym_shortintertext] = ACTIONS(6245), - }, - [1406] = { - [sym_command_name] = ACTIONS(6193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6193), - [anon_sym_LBRACK] = ACTIONS(6195), - [anon_sym_RBRACK] = ACTIONS(6195), - [anon_sym_COMMA] = ACTIONS(6195), - [anon_sym_EQ] = ACTIONS(6195), - [anon_sym_LPAREN] = ACTIONS(6195), - [anon_sym_RPAREN] = ACTIONS(6195), - [anon_sym_BSLASHpart] = ACTIONS(6193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddpart] = ACTIONS(6193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6195), - [anon_sym_BSLASHchapter] = ACTIONS(6193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddchap] = ACTIONS(6193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsection] = ACTIONS(6193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHaddsec] = ACTIONS(6193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubsection] = ACTIONS(6193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6195), - [anon_sym_BSLASHparagraph] = ACTIONS(6193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6195), - [anon_sym_BSLASHitem] = ACTIONS(6193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6195), - [anon_sym_LBRACE] = ACTIONS(6195), - [sym_word] = ACTIONS(6193), - [sym_placeholder] = ACTIONS(6195), - [anon_sym_PLUS] = ACTIONS(6195), - [anon_sym_DASH] = ACTIONS(6195), - [anon_sym_STAR] = ACTIONS(6195), - [anon_sym_SLASH] = ACTIONS(6195), - [anon_sym_LT] = ACTIONS(6193), - [anon_sym_GT] = ACTIONS(6193), - [anon_sym_BANG] = ACTIONS(6193), - [anon_sym_PIPE] = ACTIONS(6193), - [anon_sym_COLON] = ACTIONS(6193), - [anon_sym_SQUOTE] = ACTIONS(6193), - [anon_sym__] = ACTIONS(6195), - [anon_sym_CARET] = ACTIONS(6195), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), - [anon_sym_BSLASH_RBRACK] = ACTIONS(6195), - [anon_sym_DOLLAR] = ACTIONS(6193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), - [anon_sym_BSLASHbegin] = ACTIONS(6193), - [anon_sym_BSLASHtitle] = ACTIONS(6193), - [anon_sym_BSLASHauthor] = ACTIONS(6193), - [anon_sym_BSLASHusepackage] = ACTIONS(6193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), - [anon_sym_BSLASHinclude] = ACTIONS(6193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), - [anon_sym_BSLASHinput] = ACTIONS(6193), - [anon_sym_BSLASHsubfile] = ACTIONS(6193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), - [anon_sym_BSLASHbibliography] = ACTIONS(6193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), - [anon_sym_BSLASHincludesvg] = ACTIONS(6193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), - [anon_sym_BSLASHimport] = ACTIONS(6193), - [anon_sym_BSLASHsubimport] = ACTIONS(6193), - [anon_sym_BSLASHinputfrom] = ACTIONS(6193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), - [anon_sym_BSLASHincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHcaption] = ACTIONS(6193), - [anon_sym_BSLASHcite] = ACTIONS(6193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCite] = ACTIONS(6193), - [anon_sym_BSLASHnocite] = ACTIONS(6193), - [anon_sym_BSLASHcitet] = ACTIONS(6193), - [anon_sym_BSLASHcitep] = ACTIONS(6193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteauthor] = ACTIONS(6193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitetitle] = ACTIONS(6193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteyear] = ACTIONS(6193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitedate] = ACTIONS(6193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteurl] = ACTIONS(6193), - [anon_sym_BSLASHfullcite] = ACTIONS(6193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), - [anon_sym_BSLASHcitealt] = ACTIONS(6193), - [anon_sym_BSLASHcitealp] = ACTIONS(6193), - [anon_sym_BSLASHcitetext] = ACTIONS(6193), - [anon_sym_BSLASHparencite] = ACTIONS(6193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHParencite] = ACTIONS(6193), - [anon_sym_BSLASHfootcite] = ACTIONS(6193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), - [anon_sym_BSLASHtextcite] = ACTIONS(6193), - [anon_sym_BSLASHTextcite] = ACTIONS(6193), - [anon_sym_BSLASHsmartcite] = ACTIONS(6193), - [anon_sym_BSLASHSmartcite] = ACTIONS(6193), - [anon_sym_BSLASHsupercite] = ACTIONS(6193), - [anon_sym_BSLASHautocite] = ACTIONS(6193), - [anon_sym_BSLASHAutocite] = ACTIONS(6193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHvolcite] = ACTIONS(6193), - [anon_sym_BSLASHVolcite] = ACTIONS(6193), - [anon_sym_BSLASHpvolcite] = ACTIONS(6193), - [anon_sym_BSLASHPvolcite] = ACTIONS(6193), - [anon_sym_BSLASHfvolcite] = ACTIONS(6193), - [anon_sym_BSLASHftvolcite] = ACTIONS(6193), - [anon_sym_BSLASHsvolcite] = ACTIONS(6193), - [anon_sym_BSLASHSvolcite] = ACTIONS(6193), - [anon_sym_BSLASHtvolcite] = ACTIONS(6193), - [anon_sym_BSLASHTvolcite] = ACTIONS(6193), - [anon_sym_BSLASHavolcite] = ACTIONS(6193), - [anon_sym_BSLASHAvolcite] = ACTIONS(6193), - [anon_sym_BSLASHnotecite] = ACTIONS(6193), - [anon_sym_BSLASHNotecite] = ACTIONS(6193), - [anon_sym_BSLASHpnotecite] = ACTIONS(6193), - [anon_sym_BSLASHPnotecite] = ACTIONS(6193), - [anon_sym_BSLASHfnotecite] = ACTIONS(6193), - [anon_sym_BSLASHlabel] = ACTIONS(6193), - [anon_sym_BSLASHref] = ACTIONS(6193), - [anon_sym_BSLASHeqref] = ACTIONS(6193), - [anon_sym_BSLASHvref] = ACTIONS(6193), - [anon_sym_BSLASHVref] = ACTIONS(6193), - [anon_sym_BSLASHautoref] = ACTIONS(6193), - [anon_sym_BSLASHpageref] = ACTIONS(6193), - [anon_sym_BSLASHcref] = ACTIONS(6193), - [anon_sym_BSLASHCref] = ACTIONS(6193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnameCref] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHlabelcref] = ACTIONS(6193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCrefrange] = ACTIONS(6193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnewlabel] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHdef] = ACTIONS(6193), - [anon_sym_BSLASHlet] = ACTIONS(6193), - [anon_sym_BSLASHleft] = ACTIONS(6193), - [anon_sym_BSLASHbig] = ACTIONS(6193), - [anon_sym_BSLASHBig] = ACTIONS(6193), - [anon_sym_BSLASHbigg] = ACTIONS(6193), - [anon_sym_BSLASHBigg] = ACTIONS(6193), - [anon_sym_BSLASHbigl] = ACTIONS(6193), - [anon_sym_BSLASHBigl] = ACTIONS(6193), - [anon_sym_BSLASHbiggl] = ACTIONS(6193), - [anon_sym_BSLASHBiggl] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), - [anon_sym_BSLASHgls] = ACTIONS(6193), - [anon_sym_BSLASHGls] = ACTIONS(6193), - [anon_sym_BSLASHGLS] = ACTIONS(6193), - [anon_sym_BSLASHglspl] = ACTIONS(6193), - [anon_sym_BSLASHGlspl] = ACTIONS(6193), - [anon_sym_BSLASHGLSpl] = ACTIONS(6193), - [anon_sym_BSLASHglsdisp] = ACTIONS(6193), - [anon_sym_BSLASHglslink] = ACTIONS(6193), - [anon_sym_BSLASHglstext] = ACTIONS(6193), - [anon_sym_BSLASHGlstext] = ACTIONS(6193), - [anon_sym_BSLASHGLStext] = ACTIONS(6193), - [anon_sym_BSLASHglsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), - [anon_sym_BSLASHglsplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSplural] = ACTIONS(6193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHglsname] = ACTIONS(6193), - [anon_sym_BSLASHGlsname] = ACTIONS(6193), - [anon_sym_BSLASHGLSname] = ACTIONS(6193), - [anon_sym_BSLASHglssymbol] = ACTIONS(6193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), - [anon_sym_BSLASHglsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), - [anon_sym_BSLASHglsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), - [anon_sym_BSLASHglsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), - [anon_sym_BSLASHglsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), - [anon_sym_BSLASHglsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), - [anon_sym_BSLASHnewacronym] = ACTIONS(6193), - [anon_sym_BSLASHacrshort] = ACTIONS(6193), - [anon_sym_BSLASHAcrshort] = ACTIONS(6193), - [anon_sym_BSLASHACRshort] = ACTIONS(6193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), - [anon_sym_BSLASHacrlong] = ACTIONS(6193), - [anon_sym_BSLASHAcrlong] = ACTIONS(6193), - [anon_sym_BSLASHACRlong] = ACTIONS(6193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), - [anon_sym_BSLASHacrfull] = ACTIONS(6193), - [anon_sym_BSLASHAcrfull] = ACTIONS(6193), - [anon_sym_BSLASHACRfull] = ACTIONS(6193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), - [anon_sym_BSLASHacs] = ACTIONS(6193), - [anon_sym_BSLASHAcs] = ACTIONS(6193), - [anon_sym_BSLASHacsp] = ACTIONS(6193), - [anon_sym_BSLASHAcsp] = ACTIONS(6193), - [anon_sym_BSLASHacl] = ACTIONS(6193), - [anon_sym_BSLASHAcl] = ACTIONS(6193), - [anon_sym_BSLASHaclp] = ACTIONS(6193), - [anon_sym_BSLASHAclp] = ACTIONS(6193), - [anon_sym_BSLASHacf] = ACTIONS(6193), - [anon_sym_BSLASHAcf] = ACTIONS(6193), - [anon_sym_BSLASHacfp] = ACTIONS(6193), - [anon_sym_BSLASHAcfp] = ACTIONS(6193), - [anon_sym_BSLASHac] = ACTIONS(6193), - [anon_sym_BSLASHAc] = ACTIONS(6193), - [anon_sym_BSLASHacp] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), - [anon_sym_BSLASHcolor] = ACTIONS(6193), - [anon_sym_BSLASHcolorbox] = ACTIONS(6193), - [anon_sym_BSLASHtextcolor] = ACTIONS(6193), - [anon_sym_BSLASHpagecolor] = ACTIONS(6193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), - [anon_sym_BSLASHtext] = ACTIONS(6193), - [anon_sym_BSLASHintertext] = ACTIONS(6193), - [anon_sym_shortintertext] = ACTIONS(6193), - }, - [1407] = { - [sym_command_name] = ACTIONS(6253), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6253), - [anon_sym_LBRACK] = ACTIONS(6255), - [anon_sym_RBRACK] = ACTIONS(6255), - [anon_sym_COMMA] = ACTIONS(6255), - [anon_sym_EQ] = ACTIONS(6255), - [anon_sym_LPAREN] = ACTIONS(6255), - [anon_sym_RPAREN] = ACTIONS(6255), - [anon_sym_BSLASHpart] = ACTIONS(6253), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddpart] = ACTIONS(6253), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6255), - [anon_sym_BSLASHchapter] = ACTIONS(6253), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddchap] = ACTIONS(6253), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsection] = ACTIONS(6253), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHaddsec] = ACTIONS(6253), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubsection] = ACTIONS(6253), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6253), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6255), - [anon_sym_BSLASHparagraph] = ACTIONS(6253), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6255), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6253), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6255), - [anon_sym_BSLASHitem] = ACTIONS(6253), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6255), - [anon_sym_LBRACE] = ACTIONS(6255), - [sym_word] = ACTIONS(6253), - [sym_placeholder] = ACTIONS(6255), - [anon_sym_PLUS] = ACTIONS(6255), - [anon_sym_DASH] = ACTIONS(6255), - [anon_sym_STAR] = ACTIONS(6255), - [anon_sym_SLASH] = ACTIONS(6255), - [anon_sym_LT] = ACTIONS(6253), - [anon_sym_GT] = ACTIONS(6253), - [anon_sym_BANG] = ACTIONS(6253), - [anon_sym_PIPE] = ACTIONS(6253), - [anon_sym_COLON] = ACTIONS(6253), - [anon_sym_SQUOTE] = ACTIONS(6253), - [anon_sym__] = ACTIONS(6255), - [anon_sym_CARET] = ACTIONS(6255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6255), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6255), - [anon_sym_DOLLAR] = ACTIONS(6253), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6255), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6255), - [anon_sym_BSLASHbegin] = ACTIONS(6253), - [anon_sym_BSLASHtitle] = ACTIONS(6253), - [anon_sym_BSLASHauthor] = ACTIONS(6253), - [anon_sym_BSLASHusepackage] = ACTIONS(6253), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6253), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6253), - [anon_sym_BSLASHinclude] = ACTIONS(6253), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6253), - [anon_sym_BSLASHinput] = ACTIONS(6253), - [anon_sym_BSLASHsubfile] = ACTIONS(6253), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6253), - [anon_sym_BSLASHbibliography] = ACTIONS(6253), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6253), - [anon_sym_BSLASHincludesvg] = ACTIONS(6253), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6253), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6253), - [anon_sym_BSLASHimport] = ACTIONS(6253), - [anon_sym_BSLASHsubimport] = ACTIONS(6253), - [anon_sym_BSLASHinputfrom] = ACTIONS(6253), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6253), - [anon_sym_BSLASHincludefrom] = ACTIONS(6253), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6253), - [anon_sym_BSLASHcaption] = ACTIONS(6253), - [anon_sym_BSLASHcite] = ACTIONS(6253), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCite] = ACTIONS(6253), - [anon_sym_BSLASHnocite] = ACTIONS(6253), - [anon_sym_BSLASHcitet] = ACTIONS(6253), - [anon_sym_BSLASHcitep] = ACTIONS(6253), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteauthor] = ACTIONS(6253), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6253), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitetitle] = ACTIONS(6253), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteyear] = ACTIONS(6253), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6255), - [anon_sym_BSLASHcitedate] = ACTIONS(6253), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6255), - [anon_sym_BSLASHciteurl] = ACTIONS(6253), - [anon_sym_BSLASHfullcite] = ACTIONS(6253), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6253), - [anon_sym_BSLASHcitealt] = ACTIONS(6253), - [anon_sym_BSLASHcitealp] = ACTIONS(6253), - [anon_sym_BSLASHcitetext] = ACTIONS(6253), - [anon_sym_BSLASHparencite] = ACTIONS(6253), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHParencite] = ACTIONS(6253), - [anon_sym_BSLASHfootcite] = ACTIONS(6253), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6253), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6253), - [anon_sym_BSLASHtextcite] = ACTIONS(6253), - [anon_sym_BSLASHTextcite] = ACTIONS(6253), - [anon_sym_BSLASHsmartcite] = ACTIONS(6253), - [anon_sym_BSLASHSmartcite] = ACTIONS(6253), - [anon_sym_BSLASHsupercite] = ACTIONS(6253), - [anon_sym_BSLASHautocite] = ACTIONS(6253), - [anon_sym_BSLASHAutocite] = ACTIONS(6253), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6255), - [anon_sym_BSLASHvolcite] = ACTIONS(6253), - [anon_sym_BSLASHVolcite] = ACTIONS(6253), - [anon_sym_BSLASHpvolcite] = ACTIONS(6253), - [anon_sym_BSLASHPvolcite] = ACTIONS(6253), - [anon_sym_BSLASHfvolcite] = ACTIONS(6253), - [anon_sym_BSLASHftvolcite] = ACTIONS(6253), - [anon_sym_BSLASHsvolcite] = ACTIONS(6253), - [anon_sym_BSLASHSvolcite] = ACTIONS(6253), - [anon_sym_BSLASHtvolcite] = ACTIONS(6253), - [anon_sym_BSLASHTvolcite] = ACTIONS(6253), - [anon_sym_BSLASHavolcite] = ACTIONS(6253), - [anon_sym_BSLASHAvolcite] = ACTIONS(6253), - [anon_sym_BSLASHnotecite] = ACTIONS(6253), - [anon_sym_BSLASHNotecite] = ACTIONS(6253), - [anon_sym_BSLASHpnotecite] = ACTIONS(6253), - [anon_sym_BSLASHPnotecite] = ACTIONS(6253), - [anon_sym_BSLASHfnotecite] = ACTIONS(6253), - [anon_sym_BSLASHlabel] = ACTIONS(6253), - [anon_sym_BSLASHref] = ACTIONS(6253), - [anon_sym_BSLASHeqref] = ACTIONS(6253), - [anon_sym_BSLASHvref] = ACTIONS(6253), - [anon_sym_BSLASHVref] = ACTIONS(6253), - [anon_sym_BSLASHautoref] = ACTIONS(6253), - [anon_sym_BSLASHpageref] = ACTIONS(6253), - [anon_sym_BSLASHcref] = ACTIONS(6253), - [anon_sym_BSLASHCref] = ACTIONS(6253), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6255), - [anon_sym_BSLASHnamecref] = ACTIONS(6253), - [anon_sym_BSLASHnameCref] = ACTIONS(6253), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6253), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6253), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6253), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6253), - [anon_sym_BSLASHlabelcref] = ACTIONS(6253), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6253), - [anon_sym_BSLASHcrefrange] = ACTIONS(6253), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6255), - [anon_sym_BSLASHCrefrange] = ACTIONS(6253), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6255), - [anon_sym_BSLASHnewlabel] = ACTIONS(6253), - [anon_sym_BSLASHnewcommand] = ACTIONS(6253), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6253), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6255), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6253), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6255), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6253), - [anon_sym_BSLASHdef] = ACTIONS(6253), - [anon_sym_BSLASHlet] = ACTIONS(6253), - [anon_sym_BSLASHleft] = ACTIONS(6253), - [anon_sym_BSLASHbig] = ACTIONS(6253), - [anon_sym_BSLASHBig] = ACTIONS(6253), - [anon_sym_BSLASHbigg] = ACTIONS(6253), - [anon_sym_BSLASHBigg] = ACTIONS(6253), - [anon_sym_BSLASHbigl] = ACTIONS(6253), - [anon_sym_BSLASHBigl] = ACTIONS(6253), - [anon_sym_BSLASHbiggl] = ACTIONS(6253), - [anon_sym_BSLASHBiggl] = ACTIONS(6253), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6253), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6253), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6253), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6253), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6253), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6253), - [anon_sym_BSLASHgls] = ACTIONS(6253), - [anon_sym_BSLASHGls] = ACTIONS(6253), - [anon_sym_BSLASHGLS] = ACTIONS(6253), - [anon_sym_BSLASHglspl] = ACTIONS(6253), - [anon_sym_BSLASHGlspl] = ACTIONS(6253), - [anon_sym_BSLASHGLSpl] = ACTIONS(6253), - [anon_sym_BSLASHglsdisp] = ACTIONS(6253), - [anon_sym_BSLASHglslink] = ACTIONS(6253), - [anon_sym_BSLASHglstext] = ACTIONS(6253), - [anon_sym_BSLASHGlstext] = ACTIONS(6253), - [anon_sym_BSLASHGLStext] = ACTIONS(6253), - [anon_sym_BSLASHglsfirst] = ACTIONS(6253), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6253), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6253), - [anon_sym_BSLASHglsplural] = ACTIONS(6253), - [anon_sym_BSLASHGlsplural] = ACTIONS(6253), - [anon_sym_BSLASHGLSplural] = ACTIONS(6253), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6253), - [anon_sym_BSLASHglsname] = ACTIONS(6253), - [anon_sym_BSLASHGlsname] = ACTIONS(6253), - [anon_sym_BSLASHGLSname] = ACTIONS(6253), - [anon_sym_BSLASHglssymbol] = ACTIONS(6253), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6253), - [anon_sym_BSLASHglsdesc] = ACTIONS(6253), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6253), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6253), - [anon_sym_BSLASHglsuseri] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6253), - [anon_sym_BSLASHglsuserii] = ACTIONS(6253), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6253), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6253), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6253), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6253), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6253), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6253), - [anon_sym_BSLASHglsuserv] = ACTIONS(6253), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6253), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6253), - [anon_sym_BSLASHglsuservi] = ACTIONS(6253), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6253), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6253), - [anon_sym_BSLASHnewacronym] = ACTIONS(6253), - [anon_sym_BSLASHacrshort] = ACTIONS(6253), - [anon_sym_BSLASHAcrshort] = ACTIONS(6253), - [anon_sym_BSLASHACRshort] = ACTIONS(6253), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6253), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6253), - [anon_sym_BSLASHacrlong] = ACTIONS(6253), - [anon_sym_BSLASHAcrlong] = ACTIONS(6253), - [anon_sym_BSLASHACRlong] = ACTIONS(6253), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6253), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6253), - [anon_sym_BSLASHacrfull] = ACTIONS(6253), - [anon_sym_BSLASHAcrfull] = ACTIONS(6253), - [anon_sym_BSLASHACRfull] = ACTIONS(6253), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6253), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6253), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6253), - [anon_sym_BSLASHacs] = ACTIONS(6253), - [anon_sym_BSLASHAcs] = ACTIONS(6253), - [anon_sym_BSLASHacsp] = ACTIONS(6253), - [anon_sym_BSLASHAcsp] = ACTIONS(6253), - [anon_sym_BSLASHacl] = ACTIONS(6253), - [anon_sym_BSLASHAcl] = ACTIONS(6253), - [anon_sym_BSLASHaclp] = ACTIONS(6253), - [anon_sym_BSLASHAclp] = ACTIONS(6253), - [anon_sym_BSLASHacf] = ACTIONS(6253), - [anon_sym_BSLASHAcf] = ACTIONS(6253), - [anon_sym_BSLASHacfp] = ACTIONS(6253), - [anon_sym_BSLASHAcfp] = ACTIONS(6253), - [anon_sym_BSLASHac] = ACTIONS(6253), - [anon_sym_BSLASHAc] = ACTIONS(6253), - [anon_sym_BSLASHacp] = ACTIONS(6253), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6253), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6253), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6253), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6253), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6253), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6253), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6253), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6253), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6253), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6253), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6253), - [anon_sym_BSLASHcolor] = ACTIONS(6253), - [anon_sym_BSLASHcolorbox] = ACTIONS(6253), - [anon_sym_BSLASHtextcolor] = ACTIONS(6253), - [anon_sym_BSLASHpagecolor] = ACTIONS(6253), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6253), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6253), - [anon_sym_BSLASHtext] = ACTIONS(6253), - [anon_sym_BSLASHintertext] = ACTIONS(6253), - [anon_sym_shortintertext] = ACTIONS(6253), - }, - [1408] = { - [sym_command_name] = ACTIONS(6257), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6257), - [anon_sym_LBRACK] = ACTIONS(6259), - [anon_sym_RBRACK] = ACTIONS(6259), - [anon_sym_COMMA] = ACTIONS(6259), - [anon_sym_EQ] = ACTIONS(6259), - [anon_sym_LPAREN] = ACTIONS(6259), - [anon_sym_RPAREN] = ACTIONS(6259), - [anon_sym_BSLASHpart] = ACTIONS(6257), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddpart] = ACTIONS(6257), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6259), - [anon_sym_BSLASHchapter] = ACTIONS(6257), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddchap] = ACTIONS(6257), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsection] = ACTIONS(6257), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHaddsec] = ACTIONS(6257), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubsection] = ACTIONS(6257), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6257), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6259), - [anon_sym_BSLASHparagraph] = ACTIONS(6257), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6259), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6257), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6259), - [anon_sym_BSLASHitem] = ACTIONS(6257), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6259), - [anon_sym_LBRACE] = ACTIONS(6259), - [sym_word] = ACTIONS(6257), - [sym_placeholder] = ACTIONS(6259), - [anon_sym_PLUS] = ACTIONS(6259), - [anon_sym_DASH] = ACTIONS(6259), - [anon_sym_STAR] = ACTIONS(6259), - [anon_sym_SLASH] = ACTIONS(6259), - [anon_sym_LT] = ACTIONS(6257), - [anon_sym_GT] = ACTIONS(6257), - [anon_sym_BANG] = ACTIONS(6257), - [anon_sym_PIPE] = ACTIONS(6257), - [anon_sym_COLON] = ACTIONS(6257), - [anon_sym_SQUOTE] = ACTIONS(6257), - [anon_sym__] = ACTIONS(6259), - [anon_sym_CARET] = ACTIONS(6259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6259), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6259), - [anon_sym_DOLLAR] = ACTIONS(6257), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6259), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6259), - [anon_sym_BSLASHbegin] = ACTIONS(6257), - [anon_sym_BSLASHtitle] = ACTIONS(6257), - [anon_sym_BSLASHauthor] = ACTIONS(6257), - [anon_sym_BSLASHusepackage] = ACTIONS(6257), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6257), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6257), - [anon_sym_BSLASHinclude] = ACTIONS(6257), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6257), - [anon_sym_BSLASHinput] = ACTIONS(6257), - [anon_sym_BSLASHsubfile] = ACTIONS(6257), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6257), - [anon_sym_BSLASHbibliography] = ACTIONS(6257), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6257), - [anon_sym_BSLASHincludesvg] = ACTIONS(6257), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6257), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6257), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6257), - [anon_sym_BSLASHimport] = ACTIONS(6257), - [anon_sym_BSLASHsubimport] = ACTIONS(6257), - [anon_sym_BSLASHinputfrom] = ACTIONS(6257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6257), - [anon_sym_BSLASHincludefrom] = ACTIONS(6257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6257), - [anon_sym_BSLASHcaption] = ACTIONS(6257), - [anon_sym_BSLASHcite] = ACTIONS(6257), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCite] = ACTIONS(6257), - [anon_sym_BSLASHnocite] = ACTIONS(6257), - [anon_sym_BSLASHcitet] = ACTIONS(6257), - [anon_sym_BSLASHcitep] = ACTIONS(6257), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteauthor] = ACTIONS(6257), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6257), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitetitle] = ACTIONS(6257), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteyear] = ACTIONS(6257), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6259), - [anon_sym_BSLASHcitedate] = ACTIONS(6257), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6259), - [anon_sym_BSLASHciteurl] = ACTIONS(6257), - [anon_sym_BSLASHfullcite] = ACTIONS(6257), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6257), - [anon_sym_BSLASHcitealt] = ACTIONS(6257), - [anon_sym_BSLASHcitealp] = ACTIONS(6257), - [anon_sym_BSLASHcitetext] = ACTIONS(6257), - [anon_sym_BSLASHparencite] = ACTIONS(6257), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHParencite] = ACTIONS(6257), - [anon_sym_BSLASHfootcite] = ACTIONS(6257), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6257), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6257), - [anon_sym_BSLASHtextcite] = ACTIONS(6257), - [anon_sym_BSLASHTextcite] = ACTIONS(6257), - [anon_sym_BSLASHsmartcite] = ACTIONS(6257), - [anon_sym_BSLASHSmartcite] = ACTIONS(6257), - [anon_sym_BSLASHsupercite] = ACTIONS(6257), - [anon_sym_BSLASHautocite] = ACTIONS(6257), - [anon_sym_BSLASHAutocite] = ACTIONS(6257), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6259), - [anon_sym_BSLASHvolcite] = ACTIONS(6257), - [anon_sym_BSLASHVolcite] = ACTIONS(6257), - [anon_sym_BSLASHpvolcite] = ACTIONS(6257), - [anon_sym_BSLASHPvolcite] = ACTIONS(6257), - [anon_sym_BSLASHfvolcite] = ACTIONS(6257), - [anon_sym_BSLASHftvolcite] = ACTIONS(6257), - [anon_sym_BSLASHsvolcite] = ACTIONS(6257), - [anon_sym_BSLASHSvolcite] = ACTIONS(6257), - [anon_sym_BSLASHtvolcite] = ACTIONS(6257), - [anon_sym_BSLASHTvolcite] = ACTIONS(6257), - [anon_sym_BSLASHavolcite] = ACTIONS(6257), - [anon_sym_BSLASHAvolcite] = ACTIONS(6257), - [anon_sym_BSLASHnotecite] = ACTIONS(6257), - [anon_sym_BSLASHNotecite] = ACTIONS(6257), - [anon_sym_BSLASHpnotecite] = ACTIONS(6257), - [anon_sym_BSLASHPnotecite] = ACTIONS(6257), - [anon_sym_BSLASHfnotecite] = ACTIONS(6257), - [anon_sym_BSLASHlabel] = ACTIONS(6257), - [anon_sym_BSLASHref] = ACTIONS(6257), - [anon_sym_BSLASHeqref] = ACTIONS(6257), - [anon_sym_BSLASHvref] = ACTIONS(6257), - [anon_sym_BSLASHVref] = ACTIONS(6257), - [anon_sym_BSLASHautoref] = ACTIONS(6257), - [anon_sym_BSLASHpageref] = ACTIONS(6257), - [anon_sym_BSLASHcref] = ACTIONS(6257), - [anon_sym_BSLASHCref] = ACTIONS(6257), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6259), - [anon_sym_BSLASHnamecref] = ACTIONS(6257), - [anon_sym_BSLASHnameCref] = ACTIONS(6257), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6257), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6257), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6257), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6257), - [anon_sym_BSLASHlabelcref] = ACTIONS(6257), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6257), - [anon_sym_BSLASHcrefrange] = ACTIONS(6257), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6259), - [anon_sym_BSLASHCrefrange] = ACTIONS(6257), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6259), - [anon_sym_BSLASHnewlabel] = ACTIONS(6257), - [anon_sym_BSLASHnewcommand] = ACTIONS(6257), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6257), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6259), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6257), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6259), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6257), - [anon_sym_BSLASHdef] = ACTIONS(6257), - [anon_sym_BSLASHlet] = ACTIONS(6257), - [anon_sym_BSLASHleft] = ACTIONS(6257), - [anon_sym_BSLASHbig] = ACTIONS(6257), - [anon_sym_BSLASHBig] = ACTIONS(6257), - [anon_sym_BSLASHbigg] = ACTIONS(6257), - [anon_sym_BSLASHBigg] = ACTIONS(6257), - [anon_sym_BSLASHbigl] = ACTIONS(6257), - [anon_sym_BSLASHBigl] = ACTIONS(6257), - [anon_sym_BSLASHbiggl] = ACTIONS(6257), - [anon_sym_BSLASHBiggl] = ACTIONS(6257), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6257), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6257), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6257), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6257), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6257), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6257), - [anon_sym_BSLASHgls] = ACTIONS(6257), - [anon_sym_BSLASHGls] = ACTIONS(6257), - [anon_sym_BSLASHGLS] = ACTIONS(6257), - [anon_sym_BSLASHglspl] = ACTIONS(6257), - [anon_sym_BSLASHGlspl] = ACTIONS(6257), - [anon_sym_BSLASHGLSpl] = ACTIONS(6257), - [anon_sym_BSLASHglsdisp] = ACTIONS(6257), - [anon_sym_BSLASHglslink] = ACTIONS(6257), - [anon_sym_BSLASHglstext] = ACTIONS(6257), - [anon_sym_BSLASHGlstext] = ACTIONS(6257), - [anon_sym_BSLASHGLStext] = ACTIONS(6257), - [anon_sym_BSLASHglsfirst] = ACTIONS(6257), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6257), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6257), - [anon_sym_BSLASHglsplural] = ACTIONS(6257), - [anon_sym_BSLASHGlsplural] = ACTIONS(6257), - [anon_sym_BSLASHGLSplural] = ACTIONS(6257), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6257), - [anon_sym_BSLASHglsname] = ACTIONS(6257), - [anon_sym_BSLASHGlsname] = ACTIONS(6257), - [anon_sym_BSLASHGLSname] = ACTIONS(6257), - [anon_sym_BSLASHglssymbol] = ACTIONS(6257), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6257), - [anon_sym_BSLASHglsdesc] = ACTIONS(6257), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6257), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6257), - [anon_sym_BSLASHglsuseri] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6257), - [anon_sym_BSLASHglsuserii] = ACTIONS(6257), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6257), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6257), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6257), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6257), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6257), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6257), - [anon_sym_BSLASHglsuserv] = ACTIONS(6257), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6257), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6257), - [anon_sym_BSLASHglsuservi] = ACTIONS(6257), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6257), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6257), - [anon_sym_BSLASHnewacronym] = ACTIONS(6257), - [anon_sym_BSLASHacrshort] = ACTIONS(6257), - [anon_sym_BSLASHAcrshort] = ACTIONS(6257), - [anon_sym_BSLASHACRshort] = ACTIONS(6257), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6257), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6257), - [anon_sym_BSLASHacrlong] = ACTIONS(6257), - [anon_sym_BSLASHAcrlong] = ACTIONS(6257), - [anon_sym_BSLASHACRlong] = ACTIONS(6257), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6257), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6257), - [anon_sym_BSLASHacrfull] = ACTIONS(6257), - [anon_sym_BSLASHAcrfull] = ACTIONS(6257), - [anon_sym_BSLASHACRfull] = ACTIONS(6257), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6257), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6257), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6257), - [anon_sym_BSLASHacs] = ACTIONS(6257), - [anon_sym_BSLASHAcs] = ACTIONS(6257), - [anon_sym_BSLASHacsp] = ACTIONS(6257), - [anon_sym_BSLASHAcsp] = ACTIONS(6257), - [anon_sym_BSLASHacl] = ACTIONS(6257), - [anon_sym_BSLASHAcl] = ACTIONS(6257), - [anon_sym_BSLASHaclp] = ACTIONS(6257), - [anon_sym_BSLASHAclp] = ACTIONS(6257), - [anon_sym_BSLASHacf] = ACTIONS(6257), - [anon_sym_BSLASHAcf] = ACTIONS(6257), - [anon_sym_BSLASHacfp] = ACTIONS(6257), - [anon_sym_BSLASHAcfp] = ACTIONS(6257), - [anon_sym_BSLASHac] = ACTIONS(6257), - [anon_sym_BSLASHAc] = ACTIONS(6257), - [anon_sym_BSLASHacp] = ACTIONS(6257), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6257), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6257), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6257), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6257), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6257), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6257), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6257), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6257), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6257), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6257), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6257), - [anon_sym_BSLASHcolor] = ACTIONS(6257), - [anon_sym_BSLASHcolorbox] = ACTIONS(6257), - [anon_sym_BSLASHtextcolor] = ACTIONS(6257), - [anon_sym_BSLASHpagecolor] = ACTIONS(6257), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6257), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6257), - [anon_sym_BSLASHtext] = ACTIONS(6257), - [anon_sym_BSLASHintertext] = ACTIONS(6257), - [anon_sym_shortintertext] = ACTIONS(6257), - }, - [1409] = { - [sym_command_name] = ACTIONS(6261), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(6263), - [anon_sym_RBRACK] = ACTIONS(6263), - [anon_sym_COMMA] = ACTIONS(6263), - [anon_sym_EQ] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6263), - [anon_sym_RPAREN] = ACTIONS(6263), - [anon_sym_BSLASHpart] = ACTIONS(6261), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddpart] = ACTIONS(6261), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6263), - [anon_sym_BSLASHchapter] = ACTIONS(6261), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddchap] = ACTIONS(6261), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsection] = ACTIONS(6261), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHaddsec] = ACTIONS(6261), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubsection] = ACTIONS(6261), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6261), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6263), - [anon_sym_BSLASHparagraph] = ACTIONS(6261), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6263), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6261), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6263), - [anon_sym_BSLASHitem] = ACTIONS(6261), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6263), - [anon_sym_LBRACE] = ACTIONS(6263), - [sym_word] = ACTIONS(6261), - [sym_placeholder] = ACTIONS(6263), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_STAR] = ACTIONS(6263), - [anon_sym_SLASH] = ACTIONS(6263), - [anon_sym_LT] = ACTIONS(6261), - [anon_sym_GT] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_PIPE] = ACTIONS(6261), - [anon_sym_COLON] = ACTIONS(6261), - [anon_sym_SQUOTE] = ACTIONS(6261), - [anon_sym__] = ACTIONS(6263), - [anon_sym_CARET] = ACTIONS(6263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6263), - [anon_sym_DOLLAR] = ACTIONS(6261), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6263), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6263), - [anon_sym_BSLASHbegin] = ACTIONS(6261), - [anon_sym_BSLASHtitle] = ACTIONS(6261), - [anon_sym_BSLASHauthor] = ACTIONS(6261), - [anon_sym_BSLASHusepackage] = ACTIONS(6261), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6261), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6261), - [anon_sym_BSLASHinclude] = ACTIONS(6261), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6261), - [anon_sym_BSLASHinput] = ACTIONS(6261), - [anon_sym_BSLASHsubfile] = ACTIONS(6261), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6261), - [anon_sym_BSLASHbibliography] = ACTIONS(6261), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6261), - [anon_sym_BSLASHincludesvg] = ACTIONS(6261), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6261), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6261), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6261), - [anon_sym_BSLASHimport] = ACTIONS(6261), - [anon_sym_BSLASHsubimport] = ACTIONS(6261), - [anon_sym_BSLASHinputfrom] = ACTIONS(6261), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6261), - [anon_sym_BSLASHincludefrom] = ACTIONS(6261), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6261), - [anon_sym_BSLASHcaption] = ACTIONS(6261), - [anon_sym_BSLASHcite] = ACTIONS(6261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCite] = ACTIONS(6261), - [anon_sym_BSLASHnocite] = ACTIONS(6261), - [anon_sym_BSLASHcitet] = ACTIONS(6261), - [anon_sym_BSLASHcitep] = ACTIONS(6261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteauthor] = ACTIONS(6261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitetitle] = ACTIONS(6261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteyear] = ACTIONS(6261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6263), - [anon_sym_BSLASHcitedate] = ACTIONS(6261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6263), - [anon_sym_BSLASHciteurl] = ACTIONS(6261), - [anon_sym_BSLASHfullcite] = ACTIONS(6261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6261), - [anon_sym_BSLASHcitealt] = ACTIONS(6261), - [anon_sym_BSLASHcitealp] = ACTIONS(6261), - [anon_sym_BSLASHcitetext] = ACTIONS(6261), - [anon_sym_BSLASHparencite] = ACTIONS(6261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHParencite] = ACTIONS(6261), - [anon_sym_BSLASHfootcite] = ACTIONS(6261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6261), - [anon_sym_BSLASHtextcite] = ACTIONS(6261), - [anon_sym_BSLASHTextcite] = ACTIONS(6261), - [anon_sym_BSLASHsmartcite] = ACTIONS(6261), - [anon_sym_BSLASHSmartcite] = ACTIONS(6261), - [anon_sym_BSLASHsupercite] = ACTIONS(6261), - [anon_sym_BSLASHautocite] = ACTIONS(6261), - [anon_sym_BSLASHAutocite] = ACTIONS(6261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6263), - [anon_sym_BSLASHvolcite] = ACTIONS(6261), - [anon_sym_BSLASHVolcite] = ACTIONS(6261), - [anon_sym_BSLASHpvolcite] = ACTIONS(6261), - [anon_sym_BSLASHPvolcite] = ACTIONS(6261), - [anon_sym_BSLASHfvolcite] = ACTIONS(6261), - [anon_sym_BSLASHftvolcite] = ACTIONS(6261), - [anon_sym_BSLASHsvolcite] = ACTIONS(6261), - [anon_sym_BSLASHSvolcite] = ACTIONS(6261), - [anon_sym_BSLASHtvolcite] = ACTIONS(6261), - [anon_sym_BSLASHTvolcite] = ACTIONS(6261), - [anon_sym_BSLASHavolcite] = ACTIONS(6261), - [anon_sym_BSLASHAvolcite] = ACTIONS(6261), - [anon_sym_BSLASHnotecite] = ACTIONS(6261), - [anon_sym_BSLASHNotecite] = ACTIONS(6261), - [anon_sym_BSLASHpnotecite] = ACTIONS(6261), - [anon_sym_BSLASHPnotecite] = ACTIONS(6261), - [anon_sym_BSLASHfnotecite] = ACTIONS(6261), - [anon_sym_BSLASHlabel] = ACTIONS(6261), - [anon_sym_BSLASHref] = ACTIONS(6261), - [anon_sym_BSLASHeqref] = ACTIONS(6261), - [anon_sym_BSLASHvref] = ACTIONS(6261), - [anon_sym_BSLASHVref] = ACTIONS(6261), - [anon_sym_BSLASHautoref] = ACTIONS(6261), - [anon_sym_BSLASHpageref] = ACTIONS(6261), - [anon_sym_BSLASHcref] = ACTIONS(6261), - [anon_sym_BSLASHCref] = ACTIONS(6261), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6263), - [anon_sym_BSLASHnamecref] = ACTIONS(6261), - [anon_sym_BSLASHnameCref] = ACTIONS(6261), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6261), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6261), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6261), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6261), - [anon_sym_BSLASHlabelcref] = ACTIONS(6261), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6261), - [anon_sym_BSLASHcrefrange] = ACTIONS(6261), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6263), - [anon_sym_BSLASHCrefrange] = ACTIONS(6261), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6263), - [anon_sym_BSLASHnewlabel] = ACTIONS(6261), - [anon_sym_BSLASHnewcommand] = ACTIONS(6261), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6261), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6263), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6261), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6263), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6261), - [anon_sym_BSLASHdef] = ACTIONS(6261), - [anon_sym_BSLASHlet] = ACTIONS(6261), - [anon_sym_BSLASHleft] = ACTIONS(6261), - [anon_sym_BSLASHbig] = ACTIONS(6261), - [anon_sym_BSLASHBig] = ACTIONS(6261), - [anon_sym_BSLASHbigg] = ACTIONS(6261), - [anon_sym_BSLASHBigg] = ACTIONS(6261), - [anon_sym_BSLASHbigl] = ACTIONS(6261), - [anon_sym_BSLASHBigl] = ACTIONS(6261), - [anon_sym_BSLASHbiggl] = ACTIONS(6261), - [anon_sym_BSLASHBiggl] = ACTIONS(6261), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6261), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6261), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6261), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6261), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6261), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6261), - [anon_sym_BSLASHgls] = ACTIONS(6261), - [anon_sym_BSLASHGls] = ACTIONS(6261), - [anon_sym_BSLASHGLS] = ACTIONS(6261), - [anon_sym_BSLASHglspl] = ACTIONS(6261), - [anon_sym_BSLASHGlspl] = ACTIONS(6261), - [anon_sym_BSLASHGLSpl] = ACTIONS(6261), - [anon_sym_BSLASHglsdisp] = ACTIONS(6261), - [anon_sym_BSLASHglslink] = ACTIONS(6261), - [anon_sym_BSLASHglstext] = ACTIONS(6261), - [anon_sym_BSLASHGlstext] = ACTIONS(6261), - [anon_sym_BSLASHGLStext] = ACTIONS(6261), - [anon_sym_BSLASHglsfirst] = ACTIONS(6261), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6261), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6261), - [anon_sym_BSLASHglsplural] = ACTIONS(6261), - [anon_sym_BSLASHGlsplural] = ACTIONS(6261), - [anon_sym_BSLASHGLSplural] = ACTIONS(6261), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6261), - [anon_sym_BSLASHglsname] = ACTIONS(6261), - [anon_sym_BSLASHGlsname] = ACTIONS(6261), - [anon_sym_BSLASHGLSname] = ACTIONS(6261), - [anon_sym_BSLASHglssymbol] = ACTIONS(6261), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6261), - [anon_sym_BSLASHglsdesc] = ACTIONS(6261), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6261), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6261), - [anon_sym_BSLASHglsuseri] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6261), - [anon_sym_BSLASHglsuserii] = ACTIONS(6261), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6261), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6261), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6261), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6261), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6261), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6261), - [anon_sym_BSLASHglsuserv] = ACTIONS(6261), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6261), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6261), - [anon_sym_BSLASHglsuservi] = ACTIONS(6261), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6261), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6261), - [anon_sym_BSLASHnewacronym] = ACTIONS(6261), - [anon_sym_BSLASHacrshort] = ACTIONS(6261), - [anon_sym_BSLASHAcrshort] = ACTIONS(6261), - [anon_sym_BSLASHACRshort] = ACTIONS(6261), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6261), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6261), - [anon_sym_BSLASHacrlong] = ACTIONS(6261), - [anon_sym_BSLASHAcrlong] = ACTIONS(6261), - [anon_sym_BSLASHACRlong] = ACTIONS(6261), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6261), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6261), - [anon_sym_BSLASHacrfull] = ACTIONS(6261), - [anon_sym_BSLASHAcrfull] = ACTIONS(6261), - [anon_sym_BSLASHACRfull] = ACTIONS(6261), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6261), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6261), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6261), - [anon_sym_BSLASHacs] = ACTIONS(6261), - [anon_sym_BSLASHAcs] = ACTIONS(6261), - [anon_sym_BSLASHacsp] = ACTIONS(6261), - [anon_sym_BSLASHAcsp] = ACTIONS(6261), - [anon_sym_BSLASHacl] = ACTIONS(6261), - [anon_sym_BSLASHAcl] = ACTIONS(6261), - [anon_sym_BSLASHaclp] = ACTIONS(6261), - [anon_sym_BSLASHAclp] = ACTIONS(6261), - [anon_sym_BSLASHacf] = ACTIONS(6261), - [anon_sym_BSLASHAcf] = ACTIONS(6261), - [anon_sym_BSLASHacfp] = ACTIONS(6261), - [anon_sym_BSLASHAcfp] = ACTIONS(6261), - [anon_sym_BSLASHac] = ACTIONS(6261), - [anon_sym_BSLASHAc] = ACTIONS(6261), - [anon_sym_BSLASHacp] = ACTIONS(6261), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6261), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6261), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6261), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6261), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6261), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6261), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6261), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6261), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6261), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6261), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6261), - [anon_sym_BSLASHcolor] = ACTIONS(6261), - [anon_sym_BSLASHcolorbox] = ACTIONS(6261), - [anon_sym_BSLASHtextcolor] = ACTIONS(6261), - [anon_sym_BSLASHpagecolor] = ACTIONS(6261), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6261), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6261), - [anon_sym_BSLASHtext] = ACTIONS(6261), - [anon_sym_BSLASHintertext] = ACTIONS(6261), - [anon_sym_shortintertext] = ACTIONS(6261), - }, - [1410] = { - [sym_command_name] = ACTIONS(6265), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6265), - [anon_sym_LBRACK] = ACTIONS(6267), - [anon_sym_RBRACK] = ACTIONS(6267), - [anon_sym_COMMA] = ACTIONS(6267), - [anon_sym_EQ] = ACTIONS(6267), - [anon_sym_LPAREN] = ACTIONS(6267), - [anon_sym_RPAREN] = ACTIONS(6267), - [anon_sym_BSLASHpart] = ACTIONS(6265), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddpart] = ACTIONS(6265), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6267), - [anon_sym_BSLASHchapter] = ACTIONS(6265), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddchap] = ACTIONS(6265), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsection] = ACTIONS(6265), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHaddsec] = ACTIONS(6265), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubsection] = ACTIONS(6265), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6265), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6267), - [anon_sym_BSLASHparagraph] = ACTIONS(6265), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6267), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6265), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6267), - [anon_sym_BSLASHitem] = ACTIONS(6265), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6267), - [anon_sym_LBRACE] = ACTIONS(6267), - [sym_word] = ACTIONS(6265), - [sym_placeholder] = ACTIONS(6267), - [anon_sym_PLUS] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(6267), - [anon_sym_STAR] = ACTIONS(6267), - [anon_sym_SLASH] = ACTIONS(6267), - [anon_sym_LT] = ACTIONS(6265), - [anon_sym_GT] = ACTIONS(6265), - [anon_sym_BANG] = ACTIONS(6265), - [anon_sym_PIPE] = ACTIONS(6265), - [anon_sym_COLON] = ACTIONS(6265), - [anon_sym_SQUOTE] = ACTIONS(6265), - [anon_sym__] = ACTIONS(6267), - [anon_sym_CARET] = ACTIONS(6267), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6267), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6267), - [anon_sym_DOLLAR] = ACTIONS(6265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6267), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6267), - [anon_sym_BSLASHbegin] = ACTIONS(6265), - [anon_sym_BSLASHtitle] = ACTIONS(6265), - [anon_sym_BSLASHauthor] = ACTIONS(6265), - [anon_sym_BSLASHusepackage] = ACTIONS(6265), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6265), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6265), - [anon_sym_BSLASHinclude] = ACTIONS(6265), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6265), - [anon_sym_BSLASHinput] = ACTIONS(6265), - [anon_sym_BSLASHsubfile] = ACTIONS(6265), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6265), - [anon_sym_BSLASHbibliography] = ACTIONS(6265), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6265), - [anon_sym_BSLASHincludesvg] = ACTIONS(6265), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6265), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6265), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6265), - [anon_sym_BSLASHimport] = ACTIONS(6265), - [anon_sym_BSLASHsubimport] = ACTIONS(6265), - [anon_sym_BSLASHinputfrom] = ACTIONS(6265), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6265), - [anon_sym_BSLASHincludefrom] = ACTIONS(6265), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6265), - [anon_sym_BSLASHcaption] = ACTIONS(6265), - [anon_sym_BSLASHcite] = ACTIONS(6265), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCite] = ACTIONS(6265), - [anon_sym_BSLASHnocite] = ACTIONS(6265), - [anon_sym_BSLASHcitet] = ACTIONS(6265), - [anon_sym_BSLASHcitep] = ACTIONS(6265), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteauthor] = ACTIONS(6265), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6265), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitetitle] = ACTIONS(6265), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteyear] = ACTIONS(6265), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6267), - [anon_sym_BSLASHcitedate] = ACTIONS(6265), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6267), - [anon_sym_BSLASHciteurl] = ACTIONS(6265), - [anon_sym_BSLASHfullcite] = ACTIONS(6265), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6265), - [anon_sym_BSLASHcitealt] = ACTIONS(6265), - [anon_sym_BSLASHcitealp] = ACTIONS(6265), - [anon_sym_BSLASHcitetext] = ACTIONS(6265), - [anon_sym_BSLASHparencite] = ACTIONS(6265), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHParencite] = ACTIONS(6265), - [anon_sym_BSLASHfootcite] = ACTIONS(6265), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6265), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6265), - [anon_sym_BSLASHtextcite] = ACTIONS(6265), - [anon_sym_BSLASHTextcite] = ACTIONS(6265), - [anon_sym_BSLASHsmartcite] = ACTIONS(6265), - [anon_sym_BSLASHSmartcite] = ACTIONS(6265), - [anon_sym_BSLASHsupercite] = ACTIONS(6265), - [anon_sym_BSLASHautocite] = ACTIONS(6265), - [anon_sym_BSLASHAutocite] = ACTIONS(6265), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6267), - [anon_sym_BSLASHvolcite] = ACTIONS(6265), - [anon_sym_BSLASHVolcite] = ACTIONS(6265), - [anon_sym_BSLASHpvolcite] = ACTIONS(6265), - [anon_sym_BSLASHPvolcite] = ACTIONS(6265), - [anon_sym_BSLASHfvolcite] = ACTIONS(6265), - [anon_sym_BSLASHftvolcite] = ACTIONS(6265), - [anon_sym_BSLASHsvolcite] = ACTIONS(6265), - [anon_sym_BSLASHSvolcite] = ACTIONS(6265), - [anon_sym_BSLASHtvolcite] = ACTIONS(6265), - [anon_sym_BSLASHTvolcite] = ACTIONS(6265), - [anon_sym_BSLASHavolcite] = ACTIONS(6265), - [anon_sym_BSLASHAvolcite] = ACTIONS(6265), - [anon_sym_BSLASHnotecite] = ACTIONS(6265), - [anon_sym_BSLASHNotecite] = ACTIONS(6265), - [anon_sym_BSLASHpnotecite] = ACTIONS(6265), - [anon_sym_BSLASHPnotecite] = ACTIONS(6265), - [anon_sym_BSLASHfnotecite] = ACTIONS(6265), - [anon_sym_BSLASHlabel] = ACTIONS(6265), - [anon_sym_BSLASHref] = ACTIONS(6265), - [anon_sym_BSLASHeqref] = ACTIONS(6265), - [anon_sym_BSLASHvref] = ACTIONS(6265), - [anon_sym_BSLASHVref] = ACTIONS(6265), - [anon_sym_BSLASHautoref] = ACTIONS(6265), - [anon_sym_BSLASHpageref] = ACTIONS(6265), - [anon_sym_BSLASHcref] = ACTIONS(6265), - [anon_sym_BSLASHCref] = ACTIONS(6265), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6267), - [anon_sym_BSLASHnamecref] = ACTIONS(6265), - [anon_sym_BSLASHnameCref] = ACTIONS(6265), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6265), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6265), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6265), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6265), - [anon_sym_BSLASHlabelcref] = ACTIONS(6265), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6265), - [anon_sym_BSLASHcrefrange] = ACTIONS(6265), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6267), - [anon_sym_BSLASHCrefrange] = ACTIONS(6265), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6267), - [anon_sym_BSLASHnewlabel] = ACTIONS(6265), - [anon_sym_BSLASHnewcommand] = ACTIONS(6265), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6265), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6267), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6265), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6267), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6265), - [anon_sym_BSLASHdef] = ACTIONS(6265), - [anon_sym_BSLASHlet] = ACTIONS(6265), - [anon_sym_BSLASHleft] = ACTIONS(6265), - [anon_sym_BSLASHbig] = ACTIONS(6265), - [anon_sym_BSLASHBig] = ACTIONS(6265), - [anon_sym_BSLASHbigg] = ACTIONS(6265), - [anon_sym_BSLASHBigg] = ACTIONS(6265), - [anon_sym_BSLASHbigl] = ACTIONS(6265), - [anon_sym_BSLASHBigl] = ACTIONS(6265), - [anon_sym_BSLASHbiggl] = ACTIONS(6265), - [anon_sym_BSLASHBiggl] = ACTIONS(6265), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6265), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6265), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6265), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6265), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6265), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6265), - [anon_sym_BSLASHgls] = ACTIONS(6265), - [anon_sym_BSLASHGls] = ACTIONS(6265), - [anon_sym_BSLASHGLS] = ACTIONS(6265), - [anon_sym_BSLASHglspl] = ACTIONS(6265), - [anon_sym_BSLASHGlspl] = ACTIONS(6265), - [anon_sym_BSLASHGLSpl] = ACTIONS(6265), - [anon_sym_BSLASHglsdisp] = ACTIONS(6265), - [anon_sym_BSLASHglslink] = ACTIONS(6265), - [anon_sym_BSLASHglstext] = ACTIONS(6265), - [anon_sym_BSLASHGlstext] = ACTIONS(6265), - [anon_sym_BSLASHGLStext] = ACTIONS(6265), - [anon_sym_BSLASHglsfirst] = ACTIONS(6265), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6265), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6265), - [anon_sym_BSLASHglsplural] = ACTIONS(6265), - [anon_sym_BSLASHGlsplural] = ACTIONS(6265), - [anon_sym_BSLASHGLSplural] = ACTIONS(6265), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6265), - [anon_sym_BSLASHglsname] = ACTIONS(6265), - [anon_sym_BSLASHGlsname] = ACTIONS(6265), - [anon_sym_BSLASHGLSname] = ACTIONS(6265), - [anon_sym_BSLASHglssymbol] = ACTIONS(6265), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6265), - [anon_sym_BSLASHglsdesc] = ACTIONS(6265), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6265), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6265), - [anon_sym_BSLASHglsuseri] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6265), - [anon_sym_BSLASHglsuserii] = ACTIONS(6265), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6265), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6265), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6265), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6265), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6265), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6265), - [anon_sym_BSLASHglsuserv] = ACTIONS(6265), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6265), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6265), - [anon_sym_BSLASHglsuservi] = ACTIONS(6265), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6265), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6265), - [anon_sym_BSLASHnewacronym] = ACTIONS(6265), - [anon_sym_BSLASHacrshort] = ACTIONS(6265), - [anon_sym_BSLASHAcrshort] = ACTIONS(6265), - [anon_sym_BSLASHACRshort] = ACTIONS(6265), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6265), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6265), - [anon_sym_BSLASHacrlong] = ACTIONS(6265), - [anon_sym_BSLASHAcrlong] = ACTIONS(6265), - [anon_sym_BSLASHACRlong] = ACTIONS(6265), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6265), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6265), - [anon_sym_BSLASHacrfull] = ACTIONS(6265), - [anon_sym_BSLASHAcrfull] = ACTIONS(6265), - [anon_sym_BSLASHACRfull] = ACTIONS(6265), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6265), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6265), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6265), - [anon_sym_BSLASHacs] = ACTIONS(6265), - [anon_sym_BSLASHAcs] = ACTIONS(6265), - [anon_sym_BSLASHacsp] = ACTIONS(6265), - [anon_sym_BSLASHAcsp] = ACTIONS(6265), - [anon_sym_BSLASHacl] = ACTIONS(6265), - [anon_sym_BSLASHAcl] = ACTIONS(6265), - [anon_sym_BSLASHaclp] = ACTIONS(6265), - [anon_sym_BSLASHAclp] = ACTIONS(6265), - [anon_sym_BSLASHacf] = ACTIONS(6265), - [anon_sym_BSLASHAcf] = ACTIONS(6265), - [anon_sym_BSLASHacfp] = ACTIONS(6265), - [anon_sym_BSLASHAcfp] = ACTIONS(6265), - [anon_sym_BSLASHac] = ACTIONS(6265), - [anon_sym_BSLASHAc] = ACTIONS(6265), - [anon_sym_BSLASHacp] = ACTIONS(6265), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6265), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6265), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6265), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6265), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6265), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6265), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6265), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6265), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6265), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6265), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6265), - [anon_sym_BSLASHcolor] = ACTIONS(6265), - [anon_sym_BSLASHcolorbox] = ACTIONS(6265), - [anon_sym_BSLASHtextcolor] = ACTIONS(6265), - [anon_sym_BSLASHpagecolor] = ACTIONS(6265), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6265), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6265), - [anon_sym_BSLASHtext] = ACTIONS(6265), - [anon_sym_BSLASHintertext] = ACTIONS(6265), - [anon_sym_shortintertext] = ACTIONS(6265), - }, - [1411] = { - [sym_command_name] = ACTIONS(6269), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6269), - [anon_sym_LBRACK] = ACTIONS(6271), - [anon_sym_RBRACK] = ACTIONS(6271), - [anon_sym_COMMA] = ACTIONS(6271), - [anon_sym_EQ] = ACTIONS(6271), - [anon_sym_LPAREN] = ACTIONS(6271), - [anon_sym_RPAREN] = ACTIONS(6271), - [anon_sym_BSLASHpart] = ACTIONS(6269), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddpart] = ACTIONS(6269), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6271), - [anon_sym_BSLASHchapter] = ACTIONS(6269), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddchap] = ACTIONS(6269), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsection] = ACTIONS(6269), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHaddsec] = ACTIONS(6269), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubsection] = ACTIONS(6269), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6269), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6271), - [anon_sym_BSLASHparagraph] = ACTIONS(6269), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6271), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6269), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6271), - [anon_sym_BSLASHitem] = ACTIONS(6269), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6271), - [anon_sym_LBRACE] = ACTIONS(6271), - [sym_word] = ACTIONS(6269), - [sym_placeholder] = ACTIONS(6271), - [anon_sym_PLUS] = ACTIONS(6271), - [anon_sym_DASH] = ACTIONS(6271), - [anon_sym_STAR] = ACTIONS(6271), - [anon_sym_SLASH] = ACTIONS(6271), - [anon_sym_LT] = ACTIONS(6269), - [anon_sym_GT] = ACTIONS(6269), - [anon_sym_BANG] = ACTIONS(6269), - [anon_sym_PIPE] = ACTIONS(6269), - [anon_sym_COLON] = ACTIONS(6269), - [anon_sym_SQUOTE] = ACTIONS(6269), - [anon_sym__] = ACTIONS(6271), - [anon_sym_CARET] = ACTIONS(6271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6271), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6271), - [anon_sym_DOLLAR] = ACTIONS(6269), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6271), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6271), - [anon_sym_BSLASHbegin] = ACTIONS(6269), - [anon_sym_BSLASHtitle] = ACTIONS(6269), - [anon_sym_BSLASHauthor] = ACTIONS(6269), - [anon_sym_BSLASHusepackage] = ACTIONS(6269), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6269), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6269), - [anon_sym_BSLASHinclude] = ACTIONS(6269), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6269), - [anon_sym_BSLASHinput] = ACTIONS(6269), - [anon_sym_BSLASHsubfile] = ACTIONS(6269), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6269), - [anon_sym_BSLASHbibliography] = ACTIONS(6269), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6269), - [anon_sym_BSLASHincludesvg] = ACTIONS(6269), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6269), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6269), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6269), - [anon_sym_BSLASHimport] = ACTIONS(6269), - [anon_sym_BSLASHsubimport] = ACTIONS(6269), - [anon_sym_BSLASHinputfrom] = ACTIONS(6269), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6269), - [anon_sym_BSLASHincludefrom] = ACTIONS(6269), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6269), - [anon_sym_BSLASHcaption] = ACTIONS(6269), - [anon_sym_BSLASHcite] = ACTIONS(6269), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCite] = ACTIONS(6269), - [anon_sym_BSLASHnocite] = ACTIONS(6269), - [anon_sym_BSLASHcitet] = ACTIONS(6269), - [anon_sym_BSLASHcitep] = ACTIONS(6269), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteauthor] = ACTIONS(6269), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6269), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitetitle] = ACTIONS(6269), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteyear] = ACTIONS(6269), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6271), - [anon_sym_BSLASHcitedate] = ACTIONS(6269), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6271), - [anon_sym_BSLASHciteurl] = ACTIONS(6269), - [anon_sym_BSLASHfullcite] = ACTIONS(6269), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6269), - [anon_sym_BSLASHcitealt] = ACTIONS(6269), - [anon_sym_BSLASHcitealp] = ACTIONS(6269), - [anon_sym_BSLASHcitetext] = ACTIONS(6269), - [anon_sym_BSLASHparencite] = ACTIONS(6269), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHParencite] = ACTIONS(6269), - [anon_sym_BSLASHfootcite] = ACTIONS(6269), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6269), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6269), - [anon_sym_BSLASHtextcite] = ACTIONS(6269), - [anon_sym_BSLASHTextcite] = ACTIONS(6269), - [anon_sym_BSLASHsmartcite] = ACTIONS(6269), - [anon_sym_BSLASHSmartcite] = ACTIONS(6269), - [anon_sym_BSLASHsupercite] = ACTIONS(6269), - [anon_sym_BSLASHautocite] = ACTIONS(6269), - [anon_sym_BSLASHAutocite] = ACTIONS(6269), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6271), - [anon_sym_BSLASHvolcite] = ACTIONS(6269), - [anon_sym_BSLASHVolcite] = ACTIONS(6269), - [anon_sym_BSLASHpvolcite] = ACTIONS(6269), - [anon_sym_BSLASHPvolcite] = ACTIONS(6269), - [anon_sym_BSLASHfvolcite] = ACTIONS(6269), - [anon_sym_BSLASHftvolcite] = ACTIONS(6269), - [anon_sym_BSLASHsvolcite] = ACTIONS(6269), - [anon_sym_BSLASHSvolcite] = ACTIONS(6269), - [anon_sym_BSLASHtvolcite] = ACTIONS(6269), - [anon_sym_BSLASHTvolcite] = ACTIONS(6269), - [anon_sym_BSLASHavolcite] = ACTIONS(6269), - [anon_sym_BSLASHAvolcite] = ACTIONS(6269), - [anon_sym_BSLASHnotecite] = ACTIONS(6269), - [anon_sym_BSLASHNotecite] = ACTIONS(6269), - [anon_sym_BSLASHpnotecite] = ACTIONS(6269), - [anon_sym_BSLASHPnotecite] = ACTIONS(6269), - [anon_sym_BSLASHfnotecite] = ACTIONS(6269), - [anon_sym_BSLASHlabel] = ACTIONS(6269), - [anon_sym_BSLASHref] = ACTIONS(6269), - [anon_sym_BSLASHeqref] = ACTIONS(6269), - [anon_sym_BSLASHvref] = ACTIONS(6269), - [anon_sym_BSLASHVref] = ACTIONS(6269), - [anon_sym_BSLASHautoref] = ACTIONS(6269), - [anon_sym_BSLASHpageref] = ACTIONS(6269), - [anon_sym_BSLASHcref] = ACTIONS(6269), - [anon_sym_BSLASHCref] = ACTIONS(6269), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6271), - [anon_sym_BSLASHnamecref] = ACTIONS(6269), - [anon_sym_BSLASHnameCref] = ACTIONS(6269), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6269), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6269), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6269), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6269), - [anon_sym_BSLASHlabelcref] = ACTIONS(6269), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6269), - [anon_sym_BSLASHcrefrange] = ACTIONS(6269), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6271), - [anon_sym_BSLASHCrefrange] = ACTIONS(6269), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6271), - [anon_sym_BSLASHnewlabel] = ACTIONS(6269), - [anon_sym_BSLASHnewcommand] = ACTIONS(6269), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6269), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6271), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6269), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6271), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6269), - [anon_sym_BSLASHdef] = ACTIONS(6269), - [anon_sym_BSLASHlet] = ACTIONS(6269), - [anon_sym_BSLASHleft] = ACTIONS(6269), - [anon_sym_BSLASHbig] = ACTIONS(6269), - [anon_sym_BSLASHBig] = ACTIONS(6269), - [anon_sym_BSLASHbigg] = ACTIONS(6269), - [anon_sym_BSLASHBigg] = ACTIONS(6269), - [anon_sym_BSLASHbigl] = ACTIONS(6269), - [anon_sym_BSLASHBigl] = ACTIONS(6269), - [anon_sym_BSLASHbiggl] = ACTIONS(6269), - [anon_sym_BSLASHBiggl] = ACTIONS(6269), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6269), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6269), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6269), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6269), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6269), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6269), - [anon_sym_BSLASHgls] = ACTIONS(6269), - [anon_sym_BSLASHGls] = ACTIONS(6269), - [anon_sym_BSLASHGLS] = ACTIONS(6269), - [anon_sym_BSLASHglspl] = ACTIONS(6269), - [anon_sym_BSLASHGlspl] = ACTIONS(6269), - [anon_sym_BSLASHGLSpl] = ACTIONS(6269), - [anon_sym_BSLASHglsdisp] = ACTIONS(6269), - [anon_sym_BSLASHglslink] = ACTIONS(6269), - [anon_sym_BSLASHglstext] = ACTIONS(6269), - [anon_sym_BSLASHGlstext] = ACTIONS(6269), - [anon_sym_BSLASHGLStext] = ACTIONS(6269), - [anon_sym_BSLASHglsfirst] = ACTIONS(6269), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6269), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6269), - [anon_sym_BSLASHglsplural] = ACTIONS(6269), - [anon_sym_BSLASHGlsplural] = ACTIONS(6269), - [anon_sym_BSLASHGLSplural] = ACTIONS(6269), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6269), - [anon_sym_BSLASHglsname] = ACTIONS(6269), - [anon_sym_BSLASHGlsname] = ACTIONS(6269), - [anon_sym_BSLASHGLSname] = ACTIONS(6269), - [anon_sym_BSLASHglssymbol] = ACTIONS(6269), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6269), - [anon_sym_BSLASHglsdesc] = ACTIONS(6269), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6269), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6269), - [anon_sym_BSLASHglsuseri] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6269), - [anon_sym_BSLASHglsuserii] = ACTIONS(6269), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6269), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6269), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6269), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6269), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6269), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6269), - [anon_sym_BSLASHglsuserv] = ACTIONS(6269), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6269), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6269), - [anon_sym_BSLASHglsuservi] = ACTIONS(6269), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6269), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6269), - [anon_sym_BSLASHnewacronym] = ACTIONS(6269), - [anon_sym_BSLASHacrshort] = ACTIONS(6269), - [anon_sym_BSLASHAcrshort] = ACTIONS(6269), - [anon_sym_BSLASHACRshort] = ACTIONS(6269), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6269), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6269), - [anon_sym_BSLASHacrlong] = ACTIONS(6269), - [anon_sym_BSLASHAcrlong] = ACTIONS(6269), - [anon_sym_BSLASHACRlong] = ACTIONS(6269), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6269), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6269), - [anon_sym_BSLASHacrfull] = ACTIONS(6269), - [anon_sym_BSLASHAcrfull] = ACTIONS(6269), - [anon_sym_BSLASHACRfull] = ACTIONS(6269), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6269), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6269), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6269), - [anon_sym_BSLASHacs] = ACTIONS(6269), - [anon_sym_BSLASHAcs] = ACTIONS(6269), - [anon_sym_BSLASHacsp] = ACTIONS(6269), - [anon_sym_BSLASHAcsp] = ACTIONS(6269), - [anon_sym_BSLASHacl] = ACTIONS(6269), - [anon_sym_BSLASHAcl] = ACTIONS(6269), - [anon_sym_BSLASHaclp] = ACTIONS(6269), - [anon_sym_BSLASHAclp] = ACTIONS(6269), - [anon_sym_BSLASHacf] = ACTIONS(6269), - [anon_sym_BSLASHAcf] = ACTIONS(6269), - [anon_sym_BSLASHacfp] = ACTIONS(6269), - [anon_sym_BSLASHAcfp] = ACTIONS(6269), - [anon_sym_BSLASHac] = ACTIONS(6269), - [anon_sym_BSLASHAc] = ACTIONS(6269), - [anon_sym_BSLASHacp] = ACTIONS(6269), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6269), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6269), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6269), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6269), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6269), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6269), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6269), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6269), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6269), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6269), - [anon_sym_BSLASHcolor] = ACTIONS(6269), - [anon_sym_BSLASHcolorbox] = ACTIONS(6269), - [anon_sym_BSLASHtextcolor] = ACTIONS(6269), - [anon_sym_BSLASHpagecolor] = ACTIONS(6269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6269), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6269), - [anon_sym_BSLASHtext] = ACTIONS(6269), - [anon_sym_BSLASHintertext] = ACTIONS(6269), - [anon_sym_shortintertext] = ACTIONS(6269), - }, - [1412] = { - [sym_command_name] = ACTIONS(6277), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6277), - [anon_sym_LBRACK] = ACTIONS(6279), - [anon_sym_RBRACK] = ACTIONS(6279), - [anon_sym_COMMA] = ACTIONS(6279), - [anon_sym_EQ] = ACTIONS(6279), - [anon_sym_LPAREN] = ACTIONS(6279), - [anon_sym_RPAREN] = ACTIONS(6279), - [anon_sym_BSLASHpart] = ACTIONS(6277), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddpart] = ACTIONS(6277), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6279), - [anon_sym_BSLASHchapter] = ACTIONS(6277), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddchap] = ACTIONS(6277), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsection] = ACTIONS(6277), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHaddsec] = ACTIONS(6277), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubsection] = ACTIONS(6277), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6277), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6279), - [anon_sym_BSLASHparagraph] = ACTIONS(6277), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6279), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6277), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6279), - [anon_sym_BSLASHitem] = ACTIONS(6277), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6279), - [anon_sym_LBRACE] = ACTIONS(6279), - [sym_word] = ACTIONS(6277), - [sym_placeholder] = ACTIONS(6279), - [anon_sym_PLUS] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6279), - [anon_sym_STAR] = ACTIONS(6279), - [anon_sym_SLASH] = ACTIONS(6279), - [anon_sym_LT] = ACTIONS(6277), - [anon_sym_GT] = ACTIONS(6277), - [anon_sym_BANG] = ACTIONS(6277), - [anon_sym_PIPE] = ACTIONS(6277), - [anon_sym_COLON] = ACTIONS(6277), - [anon_sym_SQUOTE] = ACTIONS(6277), - [anon_sym__] = ACTIONS(6279), - [anon_sym_CARET] = ACTIONS(6279), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6279), - [anon_sym_DOLLAR] = ACTIONS(6277), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6279), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6279), - [anon_sym_BSLASHbegin] = ACTIONS(6277), - [anon_sym_BSLASHtitle] = ACTIONS(6277), - [anon_sym_BSLASHauthor] = ACTIONS(6277), - [anon_sym_BSLASHusepackage] = ACTIONS(6277), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6277), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6277), - [anon_sym_BSLASHinclude] = ACTIONS(6277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6277), - [anon_sym_BSLASHinput] = ACTIONS(6277), - [anon_sym_BSLASHsubfile] = ACTIONS(6277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6277), - [anon_sym_BSLASHbibliography] = ACTIONS(6277), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6277), - [anon_sym_BSLASHincludesvg] = ACTIONS(6277), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6277), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6277), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6277), - [anon_sym_BSLASHimport] = ACTIONS(6277), - [anon_sym_BSLASHsubimport] = ACTIONS(6277), - [anon_sym_BSLASHinputfrom] = ACTIONS(6277), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6277), - [anon_sym_BSLASHincludefrom] = ACTIONS(6277), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6277), - [anon_sym_BSLASHcaption] = ACTIONS(6277), - [anon_sym_BSLASHcite] = ACTIONS(6277), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCite] = ACTIONS(6277), - [anon_sym_BSLASHnocite] = ACTIONS(6277), - [anon_sym_BSLASHcitet] = ACTIONS(6277), - [anon_sym_BSLASHcitep] = ACTIONS(6277), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteauthor] = ACTIONS(6277), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6277), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitetitle] = ACTIONS(6277), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteyear] = ACTIONS(6277), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6279), - [anon_sym_BSLASHcitedate] = ACTIONS(6277), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6279), - [anon_sym_BSLASHciteurl] = ACTIONS(6277), - [anon_sym_BSLASHfullcite] = ACTIONS(6277), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6277), - [anon_sym_BSLASHcitealt] = ACTIONS(6277), - [anon_sym_BSLASHcitealp] = ACTIONS(6277), - [anon_sym_BSLASHcitetext] = ACTIONS(6277), - [anon_sym_BSLASHparencite] = ACTIONS(6277), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHParencite] = ACTIONS(6277), - [anon_sym_BSLASHfootcite] = ACTIONS(6277), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6277), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6277), - [anon_sym_BSLASHtextcite] = ACTIONS(6277), - [anon_sym_BSLASHTextcite] = ACTIONS(6277), - [anon_sym_BSLASHsmartcite] = ACTIONS(6277), - [anon_sym_BSLASHSmartcite] = ACTIONS(6277), - [anon_sym_BSLASHsupercite] = ACTIONS(6277), - [anon_sym_BSLASHautocite] = ACTIONS(6277), - [anon_sym_BSLASHAutocite] = ACTIONS(6277), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6279), - [anon_sym_BSLASHvolcite] = ACTIONS(6277), - [anon_sym_BSLASHVolcite] = ACTIONS(6277), - [anon_sym_BSLASHpvolcite] = ACTIONS(6277), - [anon_sym_BSLASHPvolcite] = ACTIONS(6277), - [anon_sym_BSLASHfvolcite] = ACTIONS(6277), - [anon_sym_BSLASHftvolcite] = ACTIONS(6277), - [anon_sym_BSLASHsvolcite] = ACTIONS(6277), - [anon_sym_BSLASHSvolcite] = ACTIONS(6277), - [anon_sym_BSLASHtvolcite] = ACTIONS(6277), - [anon_sym_BSLASHTvolcite] = ACTIONS(6277), - [anon_sym_BSLASHavolcite] = ACTIONS(6277), - [anon_sym_BSLASHAvolcite] = ACTIONS(6277), - [anon_sym_BSLASHnotecite] = ACTIONS(6277), - [anon_sym_BSLASHNotecite] = ACTIONS(6277), - [anon_sym_BSLASHpnotecite] = ACTIONS(6277), - [anon_sym_BSLASHPnotecite] = ACTIONS(6277), - [anon_sym_BSLASHfnotecite] = ACTIONS(6277), - [anon_sym_BSLASHlabel] = ACTIONS(6277), - [anon_sym_BSLASHref] = ACTIONS(6277), - [anon_sym_BSLASHeqref] = ACTIONS(6277), - [anon_sym_BSLASHvref] = ACTIONS(6277), - [anon_sym_BSLASHVref] = ACTIONS(6277), - [anon_sym_BSLASHautoref] = ACTIONS(6277), - [anon_sym_BSLASHpageref] = ACTIONS(6277), - [anon_sym_BSLASHcref] = ACTIONS(6277), - [anon_sym_BSLASHCref] = ACTIONS(6277), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6279), - [anon_sym_BSLASHnamecref] = ACTIONS(6277), - [anon_sym_BSLASHnameCref] = ACTIONS(6277), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6277), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6277), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6277), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6277), - [anon_sym_BSLASHlabelcref] = ACTIONS(6277), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6277), - [anon_sym_BSLASHcrefrange] = ACTIONS(6277), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6279), - [anon_sym_BSLASHCrefrange] = ACTIONS(6277), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6279), - [anon_sym_BSLASHnewlabel] = ACTIONS(6277), - [anon_sym_BSLASHnewcommand] = ACTIONS(6277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6279), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6277), - [anon_sym_BSLASHdef] = ACTIONS(6277), - [anon_sym_BSLASHlet] = ACTIONS(6277), - [anon_sym_BSLASHleft] = ACTIONS(6277), - [anon_sym_BSLASHbig] = ACTIONS(6277), - [anon_sym_BSLASHBig] = ACTIONS(6277), - [anon_sym_BSLASHbigg] = ACTIONS(6277), - [anon_sym_BSLASHBigg] = ACTIONS(6277), - [anon_sym_BSLASHbigl] = ACTIONS(6277), - [anon_sym_BSLASHBigl] = ACTIONS(6277), - [anon_sym_BSLASHbiggl] = ACTIONS(6277), - [anon_sym_BSLASHBiggl] = ACTIONS(6277), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6277), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6277), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6277), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6277), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6277), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6277), - [anon_sym_BSLASHgls] = ACTIONS(6277), - [anon_sym_BSLASHGls] = ACTIONS(6277), - [anon_sym_BSLASHGLS] = ACTIONS(6277), - [anon_sym_BSLASHglspl] = ACTIONS(6277), - [anon_sym_BSLASHGlspl] = ACTIONS(6277), - [anon_sym_BSLASHGLSpl] = ACTIONS(6277), - [anon_sym_BSLASHglsdisp] = ACTIONS(6277), - [anon_sym_BSLASHglslink] = ACTIONS(6277), - [anon_sym_BSLASHglstext] = ACTIONS(6277), - [anon_sym_BSLASHGlstext] = ACTIONS(6277), - [anon_sym_BSLASHGLStext] = ACTIONS(6277), - [anon_sym_BSLASHglsfirst] = ACTIONS(6277), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6277), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6277), - [anon_sym_BSLASHglsplural] = ACTIONS(6277), - [anon_sym_BSLASHGlsplural] = ACTIONS(6277), - [anon_sym_BSLASHGLSplural] = ACTIONS(6277), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6277), - [anon_sym_BSLASHglsname] = ACTIONS(6277), - [anon_sym_BSLASHGlsname] = ACTIONS(6277), - [anon_sym_BSLASHGLSname] = ACTIONS(6277), - [anon_sym_BSLASHglssymbol] = ACTIONS(6277), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6277), - [anon_sym_BSLASHglsdesc] = ACTIONS(6277), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6277), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6277), - [anon_sym_BSLASHglsuseri] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6277), - [anon_sym_BSLASHglsuserii] = ACTIONS(6277), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6277), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6277), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6277), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6277), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6277), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6277), - [anon_sym_BSLASHglsuserv] = ACTIONS(6277), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6277), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6277), - [anon_sym_BSLASHglsuservi] = ACTIONS(6277), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6277), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6277), - [anon_sym_BSLASHnewacronym] = ACTIONS(6277), - [anon_sym_BSLASHacrshort] = ACTIONS(6277), - [anon_sym_BSLASHAcrshort] = ACTIONS(6277), - [anon_sym_BSLASHACRshort] = ACTIONS(6277), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6277), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6277), - [anon_sym_BSLASHacrlong] = ACTIONS(6277), - [anon_sym_BSLASHAcrlong] = ACTIONS(6277), - [anon_sym_BSLASHACRlong] = ACTIONS(6277), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6277), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6277), - [anon_sym_BSLASHacrfull] = ACTIONS(6277), - [anon_sym_BSLASHAcrfull] = ACTIONS(6277), - [anon_sym_BSLASHACRfull] = ACTIONS(6277), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6277), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6277), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6277), - [anon_sym_BSLASHacs] = ACTIONS(6277), - [anon_sym_BSLASHAcs] = ACTIONS(6277), - [anon_sym_BSLASHacsp] = ACTIONS(6277), - [anon_sym_BSLASHAcsp] = ACTIONS(6277), - [anon_sym_BSLASHacl] = ACTIONS(6277), - [anon_sym_BSLASHAcl] = ACTIONS(6277), - [anon_sym_BSLASHaclp] = ACTIONS(6277), - [anon_sym_BSLASHAclp] = ACTIONS(6277), - [anon_sym_BSLASHacf] = ACTIONS(6277), - [anon_sym_BSLASHAcf] = ACTIONS(6277), - [anon_sym_BSLASHacfp] = ACTIONS(6277), - [anon_sym_BSLASHAcfp] = ACTIONS(6277), - [anon_sym_BSLASHac] = ACTIONS(6277), - [anon_sym_BSLASHAc] = ACTIONS(6277), - [anon_sym_BSLASHacp] = ACTIONS(6277), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6277), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6277), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6277), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6277), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6277), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6277), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6277), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6277), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6279), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6277), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6279), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6277), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6277), - [anon_sym_BSLASHcolor] = ACTIONS(6277), - [anon_sym_BSLASHcolorbox] = ACTIONS(6277), - [anon_sym_BSLASHtextcolor] = ACTIONS(6277), - [anon_sym_BSLASHpagecolor] = ACTIONS(6277), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6277), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6277), - [anon_sym_BSLASHtext] = ACTIONS(6277), - [anon_sym_BSLASHintertext] = ACTIONS(6277), - [anon_sym_shortintertext] = ACTIONS(6277), - }, - [1413] = { - [sym_command_name] = ACTIONS(6281), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6281), - [anon_sym_LBRACK] = ACTIONS(6283), - [anon_sym_RBRACK] = ACTIONS(6283), - [anon_sym_COMMA] = ACTIONS(6283), - [anon_sym_EQ] = ACTIONS(6283), - [anon_sym_LPAREN] = ACTIONS(6283), - [anon_sym_RPAREN] = ACTIONS(6283), - [anon_sym_BSLASHpart] = ACTIONS(6281), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddpart] = ACTIONS(6281), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6283), - [anon_sym_BSLASHchapter] = ACTIONS(6281), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddchap] = ACTIONS(6281), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsection] = ACTIONS(6281), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHaddsec] = ACTIONS(6281), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubsection] = ACTIONS(6281), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6281), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6283), - [anon_sym_BSLASHparagraph] = ACTIONS(6281), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6283), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6281), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6283), - [anon_sym_BSLASHitem] = ACTIONS(6281), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6283), - [anon_sym_LBRACE] = ACTIONS(6283), - [sym_word] = ACTIONS(6281), - [sym_placeholder] = ACTIONS(6283), - [anon_sym_PLUS] = ACTIONS(6283), - [anon_sym_DASH] = ACTIONS(6283), - [anon_sym_STAR] = ACTIONS(6283), - [anon_sym_SLASH] = ACTIONS(6283), - [anon_sym_LT] = ACTIONS(6281), - [anon_sym_GT] = ACTIONS(6281), - [anon_sym_BANG] = ACTIONS(6281), - [anon_sym_PIPE] = ACTIONS(6281), - [anon_sym_COLON] = ACTIONS(6281), - [anon_sym_SQUOTE] = ACTIONS(6281), - [anon_sym__] = ACTIONS(6283), - [anon_sym_CARET] = ACTIONS(6283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6283), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6283), - [anon_sym_DOLLAR] = ACTIONS(6281), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6283), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6283), - [anon_sym_BSLASHbegin] = ACTIONS(6281), - [anon_sym_BSLASHtitle] = ACTIONS(6281), - [anon_sym_BSLASHauthor] = ACTIONS(6281), - [anon_sym_BSLASHusepackage] = ACTIONS(6281), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6281), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6281), - [anon_sym_BSLASHinclude] = ACTIONS(6281), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6281), - [anon_sym_BSLASHinput] = ACTIONS(6281), - [anon_sym_BSLASHsubfile] = ACTIONS(6281), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6281), - [anon_sym_BSLASHbibliography] = ACTIONS(6281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6281), - [anon_sym_BSLASHincludesvg] = ACTIONS(6281), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6281), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6281), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6281), - [anon_sym_BSLASHimport] = ACTIONS(6281), - [anon_sym_BSLASHsubimport] = ACTIONS(6281), - [anon_sym_BSLASHinputfrom] = ACTIONS(6281), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6281), - [anon_sym_BSLASHincludefrom] = ACTIONS(6281), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6281), - [anon_sym_BSLASHcaption] = ACTIONS(6281), - [anon_sym_BSLASHcite] = ACTIONS(6281), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCite] = ACTIONS(6281), - [anon_sym_BSLASHnocite] = ACTIONS(6281), - [anon_sym_BSLASHcitet] = ACTIONS(6281), - [anon_sym_BSLASHcitep] = ACTIONS(6281), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteauthor] = ACTIONS(6281), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6281), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitetitle] = ACTIONS(6281), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteyear] = ACTIONS(6281), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6283), - [anon_sym_BSLASHcitedate] = ACTIONS(6281), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6283), - [anon_sym_BSLASHciteurl] = ACTIONS(6281), - [anon_sym_BSLASHfullcite] = ACTIONS(6281), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6281), - [anon_sym_BSLASHcitealt] = ACTIONS(6281), - [anon_sym_BSLASHcitealp] = ACTIONS(6281), - [anon_sym_BSLASHcitetext] = ACTIONS(6281), - [anon_sym_BSLASHparencite] = ACTIONS(6281), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHParencite] = ACTIONS(6281), - [anon_sym_BSLASHfootcite] = ACTIONS(6281), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6281), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6281), - [anon_sym_BSLASHtextcite] = ACTIONS(6281), - [anon_sym_BSLASHTextcite] = ACTIONS(6281), - [anon_sym_BSLASHsmartcite] = ACTIONS(6281), - [anon_sym_BSLASHSmartcite] = ACTIONS(6281), - [anon_sym_BSLASHsupercite] = ACTIONS(6281), - [anon_sym_BSLASHautocite] = ACTIONS(6281), - [anon_sym_BSLASHAutocite] = ACTIONS(6281), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6283), - [anon_sym_BSLASHvolcite] = ACTIONS(6281), - [anon_sym_BSLASHVolcite] = ACTIONS(6281), - [anon_sym_BSLASHpvolcite] = ACTIONS(6281), - [anon_sym_BSLASHPvolcite] = ACTIONS(6281), - [anon_sym_BSLASHfvolcite] = ACTIONS(6281), - [anon_sym_BSLASHftvolcite] = ACTIONS(6281), - [anon_sym_BSLASHsvolcite] = ACTIONS(6281), - [anon_sym_BSLASHSvolcite] = ACTIONS(6281), - [anon_sym_BSLASHtvolcite] = ACTIONS(6281), - [anon_sym_BSLASHTvolcite] = ACTIONS(6281), - [anon_sym_BSLASHavolcite] = ACTIONS(6281), - [anon_sym_BSLASHAvolcite] = ACTIONS(6281), - [anon_sym_BSLASHnotecite] = ACTIONS(6281), - [anon_sym_BSLASHNotecite] = ACTIONS(6281), - [anon_sym_BSLASHpnotecite] = ACTIONS(6281), - [anon_sym_BSLASHPnotecite] = ACTIONS(6281), - [anon_sym_BSLASHfnotecite] = ACTIONS(6281), - [anon_sym_BSLASHlabel] = ACTIONS(6281), - [anon_sym_BSLASHref] = ACTIONS(6281), - [anon_sym_BSLASHeqref] = ACTIONS(6281), - [anon_sym_BSLASHvref] = ACTIONS(6281), - [anon_sym_BSLASHVref] = ACTIONS(6281), - [anon_sym_BSLASHautoref] = ACTIONS(6281), - [anon_sym_BSLASHpageref] = ACTIONS(6281), - [anon_sym_BSLASHcref] = ACTIONS(6281), - [anon_sym_BSLASHCref] = ACTIONS(6281), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6283), - [anon_sym_BSLASHnamecref] = ACTIONS(6281), - [anon_sym_BSLASHnameCref] = ACTIONS(6281), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6281), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6281), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6281), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6281), - [anon_sym_BSLASHlabelcref] = ACTIONS(6281), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6281), - [anon_sym_BSLASHcrefrange] = ACTIONS(6281), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6283), - [anon_sym_BSLASHCrefrange] = ACTIONS(6281), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6283), - [anon_sym_BSLASHnewlabel] = ACTIONS(6281), - [anon_sym_BSLASHnewcommand] = ACTIONS(6281), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6281), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6283), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6281), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6283), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6281), - [anon_sym_BSLASHdef] = ACTIONS(6281), - [anon_sym_BSLASHlet] = ACTIONS(6281), - [anon_sym_BSLASHleft] = ACTIONS(6281), - [anon_sym_BSLASHbig] = ACTIONS(6281), - [anon_sym_BSLASHBig] = ACTIONS(6281), - [anon_sym_BSLASHbigg] = ACTIONS(6281), - [anon_sym_BSLASHBigg] = ACTIONS(6281), - [anon_sym_BSLASHbigl] = ACTIONS(6281), - [anon_sym_BSLASHBigl] = ACTIONS(6281), - [anon_sym_BSLASHbiggl] = ACTIONS(6281), - [anon_sym_BSLASHBiggl] = ACTIONS(6281), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6281), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6281), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6281), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6281), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6281), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6281), - [anon_sym_BSLASHgls] = ACTIONS(6281), - [anon_sym_BSLASHGls] = ACTIONS(6281), - [anon_sym_BSLASHGLS] = ACTIONS(6281), - [anon_sym_BSLASHglspl] = ACTIONS(6281), - [anon_sym_BSLASHGlspl] = ACTIONS(6281), - [anon_sym_BSLASHGLSpl] = ACTIONS(6281), - [anon_sym_BSLASHglsdisp] = ACTIONS(6281), - [anon_sym_BSLASHglslink] = ACTIONS(6281), - [anon_sym_BSLASHglstext] = ACTIONS(6281), - [anon_sym_BSLASHGlstext] = ACTIONS(6281), - [anon_sym_BSLASHGLStext] = ACTIONS(6281), - [anon_sym_BSLASHglsfirst] = ACTIONS(6281), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6281), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6281), - [anon_sym_BSLASHglsplural] = ACTIONS(6281), - [anon_sym_BSLASHGlsplural] = ACTIONS(6281), - [anon_sym_BSLASHGLSplural] = ACTIONS(6281), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6281), - [anon_sym_BSLASHglsname] = ACTIONS(6281), - [anon_sym_BSLASHGlsname] = ACTIONS(6281), - [anon_sym_BSLASHGLSname] = ACTIONS(6281), - [anon_sym_BSLASHglssymbol] = ACTIONS(6281), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6281), - [anon_sym_BSLASHglsdesc] = ACTIONS(6281), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6281), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6281), - [anon_sym_BSLASHglsuseri] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6281), - [anon_sym_BSLASHglsuserii] = ACTIONS(6281), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6281), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6281), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6281), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6281), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6281), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6281), - [anon_sym_BSLASHglsuserv] = ACTIONS(6281), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6281), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6281), - [anon_sym_BSLASHglsuservi] = ACTIONS(6281), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6281), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6281), - [anon_sym_BSLASHnewacronym] = ACTIONS(6281), - [anon_sym_BSLASHacrshort] = ACTIONS(6281), - [anon_sym_BSLASHAcrshort] = ACTIONS(6281), - [anon_sym_BSLASHACRshort] = ACTIONS(6281), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6281), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6281), - [anon_sym_BSLASHacrlong] = ACTIONS(6281), - [anon_sym_BSLASHAcrlong] = ACTIONS(6281), - [anon_sym_BSLASHACRlong] = ACTIONS(6281), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6281), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6281), - [anon_sym_BSLASHacrfull] = ACTIONS(6281), - [anon_sym_BSLASHAcrfull] = ACTIONS(6281), - [anon_sym_BSLASHACRfull] = ACTIONS(6281), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6281), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6281), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6281), - [anon_sym_BSLASHacs] = ACTIONS(6281), - [anon_sym_BSLASHAcs] = ACTIONS(6281), - [anon_sym_BSLASHacsp] = ACTIONS(6281), - [anon_sym_BSLASHAcsp] = ACTIONS(6281), - [anon_sym_BSLASHacl] = ACTIONS(6281), - [anon_sym_BSLASHAcl] = ACTIONS(6281), - [anon_sym_BSLASHaclp] = ACTIONS(6281), - [anon_sym_BSLASHAclp] = ACTIONS(6281), - [anon_sym_BSLASHacf] = ACTIONS(6281), - [anon_sym_BSLASHAcf] = ACTIONS(6281), - [anon_sym_BSLASHacfp] = ACTIONS(6281), - [anon_sym_BSLASHAcfp] = ACTIONS(6281), - [anon_sym_BSLASHac] = ACTIONS(6281), - [anon_sym_BSLASHAc] = ACTIONS(6281), - [anon_sym_BSLASHacp] = ACTIONS(6281), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6281), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6281), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6281), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6281), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6281), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6281), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6281), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6281), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6283), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6281), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6283), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6281), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6281), - [anon_sym_BSLASHcolor] = ACTIONS(6281), - [anon_sym_BSLASHcolorbox] = ACTIONS(6281), - [anon_sym_BSLASHtextcolor] = ACTIONS(6281), - [anon_sym_BSLASHpagecolor] = ACTIONS(6281), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6281), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6281), - [anon_sym_BSLASHtext] = ACTIONS(6281), - [anon_sym_BSLASHintertext] = ACTIONS(6281), - [anon_sym_shortintertext] = ACTIONS(6281), - }, - [1414] = { - [sym_command_name] = ACTIONS(6285), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6285), - [anon_sym_LBRACK] = ACTIONS(6287), - [anon_sym_RBRACK] = ACTIONS(6287), - [anon_sym_COMMA] = ACTIONS(6287), - [anon_sym_EQ] = ACTIONS(6287), - [anon_sym_LPAREN] = ACTIONS(6287), - [anon_sym_RPAREN] = ACTIONS(6287), - [anon_sym_BSLASHpart] = ACTIONS(6285), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddpart] = ACTIONS(6285), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6287), - [anon_sym_BSLASHchapter] = ACTIONS(6285), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddchap] = ACTIONS(6285), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsection] = ACTIONS(6285), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHaddsec] = ACTIONS(6285), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubsection] = ACTIONS(6285), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6285), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6287), - [anon_sym_BSLASHparagraph] = ACTIONS(6285), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6287), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6285), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6287), - [anon_sym_BSLASHitem] = ACTIONS(6285), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6287), - [anon_sym_LBRACE] = ACTIONS(6287), - [sym_word] = ACTIONS(6285), - [sym_placeholder] = ACTIONS(6287), - [anon_sym_PLUS] = ACTIONS(6287), - [anon_sym_DASH] = ACTIONS(6287), - [anon_sym_STAR] = ACTIONS(6287), - [anon_sym_SLASH] = ACTIONS(6287), - [anon_sym_LT] = ACTIONS(6285), - [anon_sym_GT] = ACTIONS(6285), - [anon_sym_BANG] = ACTIONS(6285), - [anon_sym_PIPE] = ACTIONS(6285), - [anon_sym_COLON] = ACTIONS(6285), - [anon_sym_SQUOTE] = ACTIONS(6285), - [anon_sym__] = ACTIONS(6287), - [anon_sym_CARET] = ACTIONS(6287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6287), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6287), - [anon_sym_DOLLAR] = ACTIONS(6285), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6287), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6287), - [anon_sym_BSLASHbegin] = ACTIONS(6285), - [anon_sym_BSLASHtitle] = ACTIONS(6285), - [anon_sym_BSLASHauthor] = ACTIONS(6285), - [anon_sym_BSLASHusepackage] = ACTIONS(6285), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6285), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6285), - [anon_sym_BSLASHinclude] = ACTIONS(6285), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6285), - [anon_sym_BSLASHinput] = ACTIONS(6285), - [anon_sym_BSLASHsubfile] = ACTIONS(6285), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6285), - [anon_sym_BSLASHbibliography] = ACTIONS(6285), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6285), - [anon_sym_BSLASHincludesvg] = ACTIONS(6285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6285), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6285), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6285), - [anon_sym_BSLASHimport] = ACTIONS(6285), - [anon_sym_BSLASHsubimport] = ACTIONS(6285), - [anon_sym_BSLASHinputfrom] = ACTIONS(6285), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6285), - [anon_sym_BSLASHincludefrom] = ACTIONS(6285), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6285), - [anon_sym_BSLASHcaption] = ACTIONS(6285), - [anon_sym_BSLASHcite] = ACTIONS(6285), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCite] = ACTIONS(6285), - [anon_sym_BSLASHnocite] = ACTIONS(6285), - [anon_sym_BSLASHcitet] = ACTIONS(6285), - [anon_sym_BSLASHcitep] = ACTIONS(6285), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteauthor] = ACTIONS(6285), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6285), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitetitle] = ACTIONS(6285), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteyear] = ACTIONS(6285), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6287), - [anon_sym_BSLASHcitedate] = ACTIONS(6285), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6287), - [anon_sym_BSLASHciteurl] = ACTIONS(6285), - [anon_sym_BSLASHfullcite] = ACTIONS(6285), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6285), - [anon_sym_BSLASHcitealt] = ACTIONS(6285), - [anon_sym_BSLASHcitealp] = ACTIONS(6285), - [anon_sym_BSLASHcitetext] = ACTIONS(6285), - [anon_sym_BSLASHparencite] = ACTIONS(6285), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHParencite] = ACTIONS(6285), - [anon_sym_BSLASHfootcite] = ACTIONS(6285), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6285), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6285), - [anon_sym_BSLASHtextcite] = ACTIONS(6285), - [anon_sym_BSLASHTextcite] = ACTIONS(6285), - [anon_sym_BSLASHsmartcite] = ACTIONS(6285), - [anon_sym_BSLASHSmartcite] = ACTIONS(6285), - [anon_sym_BSLASHsupercite] = ACTIONS(6285), - [anon_sym_BSLASHautocite] = ACTIONS(6285), - [anon_sym_BSLASHAutocite] = ACTIONS(6285), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6287), - [anon_sym_BSLASHvolcite] = ACTIONS(6285), - [anon_sym_BSLASHVolcite] = ACTIONS(6285), - [anon_sym_BSLASHpvolcite] = ACTIONS(6285), - [anon_sym_BSLASHPvolcite] = ACTIONS(6285), - [anon_sym_BSLASHfvolcite] = ACTIONS(6285), - [anon_sym_BSLASHftvolcite] = ACTIONS(6285), - [anon_sym_BSLASHsvolcite] = ACTIONS(6285), - [anon_sym_BSLASHSvolcite] = ACTIONS(6285), - [anon_sym_BSLASHtvolcite] = ACTIONS(6285), - [anon_sym_BSLASHTvolcite] = ACTIONS(6285), - [anon_sym_BSLASHavolcite] = ACTIONS(6285), - [anon_sym_BSLASHAvolcite] = ACTIONS(6285), - [anon_sym_BSLASHnotecite] = ACTIONS(6285), - [anon_sym_BSLASHNotecite] = ACTIONS(6285), - [anon_sym_BSLASHpnotecite] = ACTIONS(6285), - [anon_sym_BSLASHPnotecite] = ACTIONS(6285), - [anon_sym_BSLASHfnotecite] = ACTIONS(6285), - [anon_sym_BSLASHlabel] = ACTIONS(6285), - [anon_sym_BSLASHref] = ACTIONS(6285), - [anon_sym_BSLASHeqref] = ACTIONS(6285), - [anon_sym_BSLASHvref] = ACTIONS(6285), - [anon_sym_BSLASHVref] = ACTIONS(6285), - [anon_sym_BSLASHautoref] = ACTIONS(6285), - [anon_sym_BSLASHpageref] = ACTIONS(6285), - [anon_sym_BSLASHcref] = ACTIONS(6285), - [anon_sym_BSLASHCref] = ACTIONS(6285), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6287), - [anon_sym_BSLASHnamecref] = ACTIONS(6285), - [anon_sym_BSLASHnameCref] = ACTIONS(6285), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6285), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6285), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6285), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6285), - [anon_sym_BSLASHlabelcref] = ACTIONS(6285), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6285), - [anon_sym_BSLASHcrefrange] = ACTIONS(6285), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6287), - [anon_sym_BSLASHCrefrange] = ACTIONS(6285), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6287), - [anon_sym_BSLASHnewlabel] = ACTIONS(6285), - [anon_sym_BSLASHnewcommand] = ACTIONS(6285), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6285), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6287), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6285), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6287), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6285), - [anon_sym_BSLASHdef] = ACTIONS(6285), - [anon_sym_BSLASHlet] = ACTIONS(6285), - [anon_sym_BSLASHleft] = ACTIONS(6285), - [anon_sym_BSLASHbig] = ACTIONS(6285), - [anon_sym_BSLASHBig] = ACTIONS(6285), - [anon_sym_BSLASHbigg] = ACTIONS(6285), - [anon_sym_BSLASHBigg] = ACTIONS(6285), - [anon_sym_BSLASHbigl] = ACTIONS(6285), - [anon_sym_BSLASHBigl] = ACTIONS(6285), - [anon_sym_BSLASHbiggl] = ACTIONS(6285), - [anon_sym_BSLASHBiggl] = ACTIONS(6285), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6285), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6285), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6285), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6285), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6285), - [anon_sym_BSLASHgls] = ACTIONS(6285), - [anon_sym_BSLASHGls] = ACTIONS(6285), - [anon_sym_BSLASHGLS] = ACTIONS(6285), - [anon_sym_BSLASHglspl] = ACTIONS(6285), - [anon_sym_BSLASHGlspl] = ACTIONS(6285), - [anon_sym_BSLASHGLSpl] = ACTIONS(6285), - [anon_sym_BSLASHglsdisp] = ACTIONS(6285), - [anon_sym_BSLASHglslink] = ACTIONS(6285), - [anon_sym_BSLASHglstext] = ACTIONS(6285), - [anon_sym_BSLASHGlstext] = ACTIONS(6285), - [anon_sym_BSLASHGLStext] = ACTIONS(6285), - [anon_sym_BSLASHglsfirst] = ACTIONS(6285), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6285), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6285), - [anon_sym_BSLASHglsplural] = ACTIONS(6285), - [anon_sym_BSLASHGlsplural] = ACTIONS(6285), - [anon_sym_BSLASHGLSplural] = ACTIONS(6285), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6285), - [anon_sym_BSLASHglsname] = ACTIONS(6285), - [anon_sym_BSLASHGlsname] = ACTIONS(6285), - [anon_sym_BSLASHGLSname] = ACTIONS(6285), - [anon_sym_BSLASHglssymbol] = ACTIONS(6285), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6285), - [anon_sym_BSLASHglsdesc] = ACTIONS(6285), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6285), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6285), - [anon_sym_BSLASHglsuseri] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6285), - [anon_sym_BSLASHglsuserii] = ACTIONS(6285), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6285), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6285), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6285), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6285), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6285), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6285), - [anon_sym_BSLASHglsuserv] = ACTIONS(6285), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6285), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6285), - [anon_sym_BSLASHglsuservi] = ACTIONS(6285), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6285), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6285), - [anon_sym_BSLASHnewacronym] = ACTIONS(6285), - [anon_sym_BSLASHacrshort] = ACTIONS(6285), - [anon_sym_BSLASHAcrshort] = ACTIONS(6285), - [anon_sym_BSLASHACRshort] = ACTIONS(6285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6285), - [anon_sym_BSLASHacrlong] = ACTIONS(6285), - [anon_sym_BSLASHAcrlong] = ACTIONS(6285), - [anon_sym_BSLASHACRlong] = ACTIONS(6285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6285), - [anon_sym_BSLASHacrfull] = ACTIONS(6285), - [anon_sym_BSLASHAcrfull] = ACTIONS(6285), - [anon_sym_BSLASHACRfull] = ACTIONS(6285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6285), - [anon_sym_BSLASHacs] = ACTIONS(6285), - [anon_sym_BSLASHAcs] = ACTIONS(6285), - [anon_sym_BSLASHacsp] = ACTIONS(6285), - [anon_sym_BSLASHAcsp] = ACTIONS(6285), - [anon_sym_BSLASHacl] = ACTIONS(6285), - [anon_sym_BSLASHAcl] = ACTIONS(6285), - [anon_sym_BSLASHaclp] = ACTIONS(6285), - [anon_sym_BSLASHAclp] = ACTIONS(6285), - [anon_sym_BSLASHacf] = ACTIONS(6285), - [anon_sym_BSLASHAcf] = ACTIONS(6285), - [anon_sym_BSLASHacfp] = ACTIONS(6285), - [anon_sym_BSLASHAcfp] = ACTIONS(6285), - [anon_sym_BSLASHac] = ACTIONS(6285), - [anon_sym_BSLASHAc] = ACTIONS(6285), - [anon_sym_BSLASHacp] = ACTIONS(6285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6285), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6287), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6285), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6287), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6285), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6285), - [anon_sym_BSLASHcolor] = ACTIONS(6285), - [anon_sym_BSLASHcolorbox] = ACTIONS(6285), - [anon_sym_BSLASHtextcolor] = ACTIONS(6285), - [anon_sym_BSLASHpagecolor] = ACTIONS(6285), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6285), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6285), - [anon_sym_BSLASHtext] = ACTIONS(6285), - [anon_sym_BSLASHintertext] = ACTIONS(6285), - [anon_sym_shortintertext] = ACTIONS(6285), - }, - [1415] = { - [sym_command_name] = ACTIONS(6033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6033), - [anon_sym_LBRACK] = ACTIONS(6035), - [anon_sym_RBRACK] = ACTIONS(6035), - [anon_sym_COMMA] = ACTIONS(6035), - [anon_sym_EQ] = ACTIONS(6035), - [anon_sym_LPAREN] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_BSLASHpart] = ACTIONS(6033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddpart] = ACTIONS(6033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(6035), - [anon_sym_BSLASHchapter] = ACTIONS(6033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddchap] = ACTIONS(6033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsection] = ACTIONS(6033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHaddsec] = ACTIONS(6033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubsection] = ACTIONS(6033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(6033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(6035), - [anon_sym_BSLASHparagraph] = ACTIONS(6033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(6035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(6033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(6035), - [anon_sym_BSLASHitem] = ACTIONS(6033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(6035), - [anon_sym_LBRACE] = ACTIONS(6035), - [sym_word] = ACTIONS(6033), - [sym_placeholder] = ACTIONS(6035), - [anon_sym_PLUS] = ACTIONS(6035), - [anon_sym_DASH] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6035), - [anon_sym_SLASH] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_COLON] = ACTIONS(6033), - [anon_sym_SQUOTE] = ACTIONS(6033), - [anon_sym__] = ACTIONS(6035), - [anon_sym_CARET] = ACTIONS(6035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6035), - [anon_sym_BSLASH_RPAREN] = ACTIONS(6035), - [anon_sym_BSLASHbegin] = ACTIONS(6033), - [anon_sym_BSLASHtitle] = ACTIONS(6033), - [anon_sym_BSLASHauthor] = ACTIONS(6033), - [anon_sym_BSLASHusepackage] = ACTIONS(6033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), - [anon_sym_BSLASHinclude] = ACTIONS(6033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), - [anon_sym_BSLASHinput] = ACTIONS(6033), - [anon_sym_BSLASHsubfile] = ACTIONS(6033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), - [anon_sym_BSLASHbibliography] = ACTIONS(6033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), - [anon_sym_BSLASHincludesvg] = ACTIONS(6033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), - [anon_sym_BSLASHimport] = ACTIONS(6033), - [anon_sym_BSLASHsubimport] = ACTIONS(6033), - [anon_sym_BSLASHinputfrom] = ACTIONS(6033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), - [anon_sym_BSLASHincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHcaption] = ACTIONS(6033), - [anon_sym_BSLASHcite] = ACTIONS(6033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCite] = ACTIONS(6033), - [anon_sym_BSLASHnocite] = ACTIONS(6033), - [anon_sym_BSLASHcitet] = ACTIONS(6033), - [anon_sym_BSLASHcitep] = ACTIONS(6033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteauthor] = ACTIONS(6033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitetitle] = ACTIONS(6033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteyear] = ACTIONS(6033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitedate] = ACTIONS(6033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteurl] = ACTIONS(6033), - [anon_sym_BSLASHfullcite] = ACTIONS(6033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), - [anon_sym_BSLASHcitealt] = ACTIONS(6033), - [anon_sym_BSLASHcitealp] = ACTIONS(6033), - [anon_sym_BSLASHcitetext] = ACTIONS(6033), - [anon_sym_BSLASHparencite] = ACTIONS(6033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHParencite] = ACTIONS(6033), - [anon_sym_BSLASHfootcite] = ACTIONS(6033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), - [anon_sym_BSLASHtextcite] = ACTIONS(6033), - [anon_sym_BSLASHTextcite] = ACTIONS(6033), - [anon_sym_BSLASHsmartcite] = ACTIONS(6033), - [anon_sym_BSLASHSmartcite] = ACTIONS(6033), - [anon_sym_BSLASHsupercite] = ACTIONS(6033), - [anon_sym_BSLASHautocite] = ACTIONS(6033), - [anon_sym_BSLASHAutocite] = ACTIONS(6033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHvolcite] = ACTIONS(6033), - [anon_sym_BSLASHVolcite] = ACTIONS(6033), - [anon_sym_BSLASHpvolcite] = ACTIONS(6033), - [anon_sym_BSLASHPvolcite] = ACTIONS(6033), - [anon_sym_BSLASHfvolcite] = ACTIONS(6033), - [anon_sym_BSLASHftvolcite] = ACTIONS(6033), - [anon_sym_BSLASHsvolcite] = ACTIONS(6033), - [anon_sym_BSLASHSvolcite] = ACTIONS(6033), - [anon_sym_BSLASHtvolcite] = ACTIONS(6033), - [anon_sym_BSLASHTvolcite] = ACTIONS(6033), - [anon_sym_BSLASHavolcite] = ACTIONS(6033), - [anon_sym_BSLASHAvolcite] = ACTIONS(6033), - [anon_sym_BSLASHnotecite] = ACTIONS(6033), - [anon_sym_BSLASHNotecite] = ACTIONS(6033), - [anon_sym_BSLASHpnotecite] = ACTIONS(6033), - [anon_sym_BSLASHPnotecite] = ACTIONS(6033), - [anon_sym_BSLASHfnotecite] = ACTIONS(6033), - [anon_sym_BSLASHlabel] = ACTIONS(6033), - [anon_sym_BSLASHref] = ACTIONS(6033), - [anon_sym_BSLASHeqref] = ACTIONS(6033), - [anon_sym_BSLASHvref] = ACTIONS(6033), - [anon_sym_BSLASHVref] = ACTIONS(6033), - [anon_sym_BSLASHautoref] = ACTIONS(6033), - [anon_sym_BSLASHpageref] = ACTIONS(6033), - [anon_sym_BSLASHcref] = ACTIONS(6033), - [anon_sym_BSLASHCref] = ACTIONS(6033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnameCref] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHlabelcref] = ACTIONS(6033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCrefrange] = ACTIONS(6033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnewlabel] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6035), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHdef] = ACTIONS(6033), - [anon_sym_BSLASHlet] = ACTIONS(6033), - [anon_sym_BSLASHleft] = ACTIONS(6033), - [anon_sym_BSLASHbig] = ACTIONS(6033), - [anon_sym_BSLASHBig] = ACTIONS(6033), - [anon_sym_BSLASHbigg] = ACTIONS(6033), - [anon_sym_BSLASHBigg] = ACTIONS(6033), - [anon_sym_BSLASHbigl] = ACTIONS(6033), - [anon_sym_BSLASHBigl] = ACTIONS(6033), - [anon_sym_BSLASHbiggl] = ACTIONS(6033), - [anon_sym_BSLASHBiggl] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), - [anon_sym_BSLASHgls] = ACTIONS(6033), - [anon_sym_BSLASHGls] = ACTIONS(6033), - [anon_sym_BSLASHGLS] = ACTIONS(6033), - [anon_sym_BSLASHglspl] = ACTIONS(6033), - [anon_sym_BSLASHGlspl] = ACTIONS(6033), - [anon_sym_BSLASHGLSpl] = ACTIONS(6033), - [anon_sym_BSLASHglsdisp] = ACTIONS(6033), - [anon_sym_BSLASHglslink] = ACTIONS(6033), - [anon_sym_BSLASHglstext] = ACTIONS(6033), - [anon_sym_BSLASHGlstext] = ACTIONS(6033), - [anon_sym_BSLASHGLStext] = ACTIONS(6033), - [anon_sym_BSLASHglsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), - [anon_sym_BSLASHglsplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSplural] = ACTIONS(6033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHglsname] = ACTIONS(6033), - [anon_sym_BSLASHGlsname] = ACTIONS(6033), - [anon_sym_BSLASHGLSname] = ACTIONS(6033), - [anon_sym_BSLASHglssymbol] = ACTIONS(6033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), - [anon_sym_BSLASHglsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), - [anon_sym_BSLASHglsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), - [anon_sym_BSLASHglsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), - [anon_sym_BSLASHglsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), - [anon_sym_BSLASHglsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), - [anon_sym_BSLASHnewacronym] = ACTIONS(6033), - [anon_sym_BSLASHacrshort] = ACTIONS(6033), - [anon_sym_BSLASHAcrshort] = ACTIONS(6033), - [anon_sym_BSLASHACRshort] = ACTIONS(6033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), - [anon_sym_BSLASHacrlong] = ACTIONS(6033), - [anon_sym_BSLASHAcrlong] = ACTIONS(6033), - [anon_sym_BSLASHACRlong] = ACTIONS(6033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), - [anon_sym_BSLASHacrfull] = ACTIONS(6033), - [anon_sym_BSLASHAcrfull] = ACTIONS(6033), - [anon_sym_BSLASHACRfull] = ACTIONS(6033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), - [anon_sym_BSLASHacs] = ACTIONS(6033), - [anon_sym_BSLASHAcs] = ACTIONS(6033), - [anon_sym_BSLASHacsp] = ACTIONS(6033), - [anon_sym_BSLASHAcsp] = ACTIONS(6033), - [anon_sym_BSLASHacl] = ACTIONS(6033), - [anon_sym_BSLASHAcl] = ACTIONS(6033), - [anon_sym_BSLASHaclp] = ACTIONS(6033), - [anon_sym_BSLASHAclp] = ACTIONS(6033), - [anon_sym_BSLASHacf] = ACTIONS(6033), - [anon_sym_BSLASHAcf] = ACTIONS(6033), - [anon_sym_BSLASHacfp] = ACTIONS(6033), - [anon_sym_BSLASHAcfp] = ACTIONS(6033), - [anon_sym_BSLASHac] = ACTIONS(6033), - [anon_sym_BSLASHAc] = ACTIONS(6033), - [anon_sym_BSLASHacp] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), - [anon_sym_BSLASHcolor] = ACTIONS(6033), - [anon_sym_BSLASHcolorbox] = ACTIONS(6033), - [anon_sym_BSLASHtextcolor] = ACTIONS(6033), - [anon_sym_BSLASHpagecolor] = ACTIONS(6033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), - [anon_sym_BSLASHtext] = ACTIONS(6033), - [anon_sym_BSLASHintertext] = ACTIONS(6033), - [anon_sym_shortintertext] = ACTIONS(6033), - }, - [1416] = { - [sym_block_comment] = STATE(2004), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1417), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3079), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1417] = { - [sym_block_comment] = STATE(2004), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1417), - [sym_command_name] = ACTIONS(6737), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6740), - [anon_sym_RBRACK] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [sym_word] = ACTIONS(6743), - [sym_placeholder] = ACTIONS(6746), - [anon_sym_PLUS] = ACTIONS(6749), - [anon_sym_DASH] = ACTIONS(6749), - [anon_sym_STAR] = ACTIONS(6749), - [anon_sym_SLASH] = ACTIONS(6749), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_BANG] = ACTIONS(6752), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_COLON] = ACTIONS(6752), - [anon_sym_SQUOTE] = ACTIONS(6752), - [anon_sym__] = ACTIONS(6755), - [anon_sym_CARET] = ACTIONS(6758), - [anon_sym_BSLASHtitle] = ACTIONS(6761), - [anon_sym_BSLASHauthor] = ACTIONS(6764), - [anon_sym_BSLASHusepackage] = ACTIONS(6767), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6767), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6770), - [anon_sym_BSLASHinclude] = ACTIONS(6773), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6773), - [anon_sym_BSLASHinput] = ACTIONS(6773), - [anon_sym_BSLASHsubfile] = ACTIONS(6773), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6776), - [anon_sym_BSLASHbibliography] = ACTIONS(6779), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6782), - [anon_sym_BSLASHincludesvg] = ACTIONS(6785), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6788), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6791), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6791), - [anon_sym_BSLASHimport] = ACTIONS(6794), - [anon_sym_BSLASHsubimport] = ACTIONS(6794), - [anon_sym_BSLASHinputfrom] = ACTIONS(6794), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6794), - [anon_sym_BSLASHincludefrom] = ACTIONS(6794), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6794), - [anon_sym_BSLASHcaption] = ACTIONS(6797), - [anon_sym_BSLASHcite] = ACTIONS(6800), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6803), - [anon_sym_BSLASHCite] = ACTIONS(6800), - [anon_sym_BSLASHnocite] = ACTIONS(6800), - [anon_sym_BSLASHcitet] = ACTIONS(6800), - [anon_sym_BSLASHcitep] = ACTIONS(6800), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6803), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6803), - [anon_sym_BSLASHciteauthor] = ACTIONS(6800), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6803), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6800), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6803), - [anon_sym_BSLASHcitetitle] = ACTIONS(6800), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6803), - [anon_sym_BSLASHciteyear] = ACTIONS(6800), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6803), - [anon_sym_BSLASHcitedate] = ACTIONS(6800), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6803), - [anon_sym_BSLASHciteurl] = ACTIONS(6800), - [anon_sym_BSLASHfullcite] = ACTIONS(6800), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6800), - [anon_sym_BSLASHcitealt] = ACTIONS(6800), - [anon_sym_BSLASHcitealp] = ACTIONS(6800), - [anon_sym_BSLASHcitetext] = ACTIONS(6800), - [anon_sym_BSLASHparencite] = ACTIONS(6800), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6803), - [anon_sym_BSLASHParencite] = ACTIONS(6800), - [anon_sym_BSLASHfootcite] = ACTIONS(6800), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6800), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6800), - [anon_sym_BSLASHtextcite] = ACTIONS(6800), - [anon_sym_BSLASHTextcite] = ACTIONS(6800), - [anon_sym_BSLASHsmartcite] = ACTIONS(6800), - [anon_sym_BSLASHSmartcite] = ACTIONS(6800), - [anon_sym_BSLASHsupercite] = ACTIONS(6800), - [anon_sym_BSLASHautocite] = ACTIONS(6800), - [anon_sym_BSLASHAutocite] = ACTIONS(6800), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6803), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6803), - [anon_sym_BSLASHvolcite] = ACTIONS(6800), - [anon_sym_BSLASHVolcite] = ACTIONS(6800), - [anon_sym_BSLASHpvolcite] = ACTIONS(6800), - [anon_sym_BSLASHPvolcite] = ACTIONS(6800), - [anon_sym_BSLASHfvolcite] = ACTIONS(6800), - [anon_sym_BSLASHftvolcite] = ACTIONS(6800), - [anon_sym_BSLASHsvolcite] = ACTIONS(6800), - [anon_sym_BSLASHSvolcite] = ACTIONS(6800), - [anon_sym_BSLASHtvolcite] = ACTIONS(6800), - [anon_sym_BSLASHTvolcite] = ACTIONS(6800), - [anon_sym_BSLASHavolcite] = ACTIONS(6800), - [anon_sym_BSLASHAvolcite] = ACTIONS(6800), - [anon_sym_BSLASHnotecite] = ACTIONS(6800), - [anon_sym_BSLASHNotecite] = ACTIONS(6800), - [anon_sym_BSLASHpnotecite] = ACTIONS(6800), - [anon_sym_BSLASHPnotecite] = ACTIONS(6800), - [anon_sym_BSLASHfnotecite] = ACTIONS(6800), - [anon_sym_BSLASHlabel] = ACTIONS(6806), - [anon_sym_BSLASHref] = ACTIONS(6809), - [anon_sym_BSLASHeqref] = ACTIONS(6809), - [anon_sym_BSLASHvref] = ACTIONS(6809), - [anon_sym_BSLASHVref] = ACTIONS(6809), - [anon_sym_BSLASHautoref] = ACTIONS(6809), - [anon_sym_BSLASHpageref] = ACTIONS(6809), - [anon_sym_BSLASHcref] = ACTIONS(6809), - [anon_sym_BSLASHCref] = ACTIONS(6809), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6812), - [anon_sym_BSLASHnamecref] = ACTIONS(6809), - [anon_sym_BSLASHnameCref] = ACTIONS(6809), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6809), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6809), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6809), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6809), - [anon_sym_BSLASHlabelcref] = ACTIONS(6809), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6809), - [anon_sym_BSLASHcrefrange] = ACTIONS(6815), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6818), - [anon_sym_BSLASHCrefrange] = ACTIONS(6815), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6818), - [anon_sym_BSLASHnewlabel] = ACTIONS(6821), - [anon_sym_BSLASHnewcommand] = ACTIONS(6824), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6827), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6824), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6827), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6824), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6827), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6824), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6827), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6824), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6824), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6824), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6824), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6824), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6824), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6824), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6824), - [anon_sym_BSLASHdef] = ACTIONS(6830), - [anon_sym_BSLASHlet] = ACTIONS(6833), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6836), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6836), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6839), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6839), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6839), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6839), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6839), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6839), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6842), - [anon_sym_BSLASHgls] = ACTIONS(6845), - [anon_sym_BSLASHGls] = ACTIONS(6845), - [anon_sym_BSLASHGLS] = ACTIONS(6845), - [anon_sym_BSLASHglspl] = ACTIONS(6845), - [anon_sym_BSLASHGlspl] = ACTIONS(6845), - [anon_sym_BSLASHGLSpl] = ACTIONS(6845), - [anon_sym_BSLASHglsdisp] = ACTIONS(6845), - [anon_sym_BSLASHglslink] = ACTIONS(6845), - [anon_sym_BSLASHglstext] = ACTIONS(6845), - [anon_sym_BSLASHGlstext] = ACTIONS(6845), - [anon_sym_BSLASHGLStext] = ACTIONS(6845), - [anon_sym_BSLASHglsfirst] = ACTIONS(6845), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6845), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6845), - [anon_sym_BSLASHglsplural] = ACTIONS(6845), - [anon_sym_BSLASHGlsplural] = ACTIONS(6845), - [anon_sym_BSLASHGLSplural] = ACTIONS(6845), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6845), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6845), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6845), - [anon_sym_BSLASHglsname] = ACTIONS(6845), - [anon_sym_BSLASHGlsname] = ACTIONS(6845), - [anon_sym_BSLASHGLSname] = ACTIONS(6845), - [anon_sym_BSLASHglssymbol] = ACTIONS(6845), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6845), - [anon_sym_BSLASHglsdesc] = ACTIONS(6845), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6845), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6845), - [anon_sym_BSLASHglsuseri] = ACTIONS(6845), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6845), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6845), - [anon_sym_BSLASHglsuserii] = ACTIONS(6845), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6845), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6845), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6845), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6845), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6845), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6845), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6845), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6845), - [anon_sym_BSLASHglsuserv] = ACTIONS(6845), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6845), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6845), - [anon_sym_BSLASHglsuservi] = ACTIONS(6845), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6845), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6845), - [anon_sym_BSLASHnewacronym] = ACTIONS(6848), - [anon_sym_BSLASHacrshort] = ACTIONS(6851), - [anon_sym_BSLASHAcrshort] = ACTIONS(6851), - [anon_sym_BSLASHACRshort] = ACTIONS(6851), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6851), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6851), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6851), - [anon_sym_BSLASHacrlong] = ACTIONS(6851), - [anon_sym_BSLASHAcrlong] = ACTIONS(6851), - [anon_sym_BSLASHACRlong] = ACTIONS(6851), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6851), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6851), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6851), - [anon_sym_BSLASHacrfull] = ACTIONS(6851), - [anon_sym_BSLASHAcrfull] = ACTIONS(6851), - [anon_sym_BSLASHACRfull] = ACTIONS(6851), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6851), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6851), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6851), - [anon_sym_BSLASHacs] = ACTIONS(6851), - [anon_sym_BSLASHAcs] = ACTIONS(6851), - [anon_sym_BSLASHacsp] = ACTIONS(6851), - [anon_sym_BSLASHAcsp] = ACTIONS(6851), - [anon_sym_BSLASHacl] = ACTIONS(6851), - [anon_sym_BSLASHAcl] = ACTIONS(6851), - [anon_sym_BSLASHaclp] = ACTIONS(6851), - [anon_sym_BSLASHAclp] = ACTIONS(6851), - [anon_sym_BSLASHacf] = ACTIONS(6851), - [anon_sym_BSLASHAcf] = ACTIONS(6851), - [anon_sym_BSLASHacfp] = ACTIONS(6851), - [anon_sym_BSLASHAcfp] = ACTIONS(6851), - [anon_sym_BSLASHac] = ACTIONS(6851), - [anon_sym_BSLASHAc] = ACTIONS(6851), - [anon_sym_BSLASHacp] = ACTIONS(6851), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6851), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6851), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6851), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6851), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6851), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6851), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6851), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6851), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6851), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6851), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6854), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6857), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6854), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6857), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6860), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6863), - [anon_sym_BSLASHcolor] = ACTIONS(6866), - [anon_sym_BSLASHcolorbox] = ACTIONS(6866), - [anon_sym_BSLASHtextcolor] = ACTIONS(6866), - [anon_sym_BSLASHpagecolor] = ACTIONS(6866), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6869), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6869), - }, - [1418] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2357), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2374), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6872), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1419] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2357), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2396), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6874), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1420] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2352), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2355), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACK] = ACTIONS(6876), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1421] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2357), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2386), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6878), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1422] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2357), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2316), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6880), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1423] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2357), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2345), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6882), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1424] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2357), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2346), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6884), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1425] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2357), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2412), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6886), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1426] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2357), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2388), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6888), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1427] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2357), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2319), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6890), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1428] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2357), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2334), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6892), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1429] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2361), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6894), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1430] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2339), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6896), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1431] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2323), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6898), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1432] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2356), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6900), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1433] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2401), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6902), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1434] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2352), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2349), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1435] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2368), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6904), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1436] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2380), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6906), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1437] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2305), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6908), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1438] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2357), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym_key_value_pair] = STATE(2349), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1439] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2317), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6910), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1440] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(2395), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [anon_sym_RBRACE] = ACTIONS(6912), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1441] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3197), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1442] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3161), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1443] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3211), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1444] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3172), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1445] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3135), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1446] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3298), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1447] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3218), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1448] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3285), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1449] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3284), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1450] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3267), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1451] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3183), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1452] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3184), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1453] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3266), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1454] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3254), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1455] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3297), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1456] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3253), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1457] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3232), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1458] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3069), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1459] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3231), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1460] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3198), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1461] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3210), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1462] = { - [sym_block_comment] = STATE(2004), - [sym_text] = STATE(3209), - [sym_operator] = STATE(2004), - [sym_subscript] = STATE(2004), - [sym_superscript] = STATE(2004), - [sym__command] = STATE(2004), - [sym_generic_command] = STATE(2004), - [sym_title_declaration] = STATE(2004), - [sym_author_declaration] = STATE(2004), - [sym_package_include] = STATE(2004), - [sym_class_include] = STATE(2004), - [sym_latex_include] = STATE(2004), - [sym_biblatex_include] = STATE(2004), - [sym_bibtex_include] = STATE(2004), - [sym_graphics_include] = STATE(2004), - [sym_svg_include] = STATE(2004), - [sym_inkscape_include] = STATE(2004), - [sym_verbatim_include] = STATE(2004), - [sym_import_include] = STATE(2004), - [sym_caption] = STATE(2004), - [sym_citation] = STATE(2004), - [sym_label_definition] = STATE(2004), - [sym_label_reference] = STATE(2004), - [sym_label_reference_range] = STATE(2004), - [sym_label_number] = STATE(2004), - [sym_new_command_definition] = STATE(2004), - [sym_old_command_definition] = STATE(2004), - [sym_let_command_definition] = STATE(2004), - [sym_paired_delimiter_definition] = STATE(2004), - [sym_environment_definition] = STATE(2004), - [sym_glossary_entry_definition] = STATE(2004), - [sym_glossary_entry_reference] = STATE(2004), - [sym_acronym_definition] = STATE(2004), - [sym_acronym_reference] = STATE(2004), - [sym_theorem_definition] = STATE(2004), - [sym_color_definition] = STATE(2004), - [sym_color_set_definition] = STATE(2004), - [sym_color_reference] = STATE(2004), - [sym_tikz_library_import] = STATE(2004), - [aux_sym_text_repeat1] = STATE(1416), - [sym_command_name] = ACTIONS(4452), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4454), - [sym_word] = ACTIONS(4456), - [sym_placeholder] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4460), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_COLON] = ACTIONS(4462), - [anon_sym_SQUOTE] = ACTIONS(4462), - [anon_sym__] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4466), - [anon_sym_BSLASHtitle] = ACTIONS(4482), - [anon_sym_BSLASHauthor] = ACTIONS(4484), - [anon_sym_BSLASHusepackage] = ACTIONS(4486), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4486), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4488), - [anon_sym_BSLASHinclude] = ACTIONS(4490), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4490), - [anon_sym_BSLASHinput] = ACTIONS(4490), - [anon_sym_BSLASHsubfile] = ACTIONS(4490), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4492), - [anon_sym_BSLASHbibliography] = ACTIONS(4494), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4496), - [anon_sym_BSLASHincludesvg] = ACTIONS(4498), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4500), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4502), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4502), - [anon_sym_BSLASHimport] = ACTIONS(4504), - [anon_sym_BSLASHsubimport] = ACTIONS(4504), - [anon_sym_BSLASHinputfrom] = ACTIONS(4504), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4504), - [anon_sym_BSLASHincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4504), - [anon_sym_BSLASHcaption] = ACTIONS(4506), - [anon_sym_BSLASHcite] = ACTIONS(4508), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCite] = ACTIONS(4508), - [anon_sym_BSLASHnocite] = ACTIONS(4508), - [anon_sym_BSLASHcitet] = ACTIONS(4508), - [anon_sym_BSLASHcitep] = ACTIONS(4508), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteauthor] = ACTIONS(4508), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4508), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitetitle] = ACTIONS(4508), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteyear] = ACTIONS(4508), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4510), - [anon_sym_BSLASHcitedate] = ACTIONS(4508), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4510), - [anon_sym_BSLASHciteurl] = ACTIONS(4508), - [anon_sym_BSLASHfullcite] = ACTIONS(4508), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4508), - [anon_sym_BSLASHcitealt] = ACTIONS(4508), - [anon_sym_BSLASHcitealp] = ACTIONS(4508), - [anon_sym_BSLASHcitetext] = ACTIONS(4508), - [anon_sym_BSLASHparencite] = ACTIONS(4508), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHParencite] = ACTIONS(4508), - [anon_sym_BSLASHfootcite] = ACTIONS(4508), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4508), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4508), - [anon_sym_BSLASHtextcite] = ACTIONS(4508), - [anon_sym_BSLASHTextcite] = ACTIONS(4508), - [anon_sym_BSLASHsmartcite] = ACTIONS(4508), - [anon_sym_BSLASHSmartcite] = ACTIONS(4508), - [anon_sym_BSLASHsupercite] = ACTIONS(4508), - [anon_sym_BSLASHautocite] = ACTIONS(4508), - [anon_sym_BSLASHAutocite] = ACTIONS(4508), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4510), - [anon_sym_BSLASHvolcite] = ACTIONS(4508), - [anon_sym_BSLASHVolcite] = ACTIONS(4508), - [anon_sym_BSLASHpvolcite] = ACTIONS(4508), - [anon_sym_BSLASHPvolcite] = ACTIONS(4508), - [anon_sym_BSLASHfvolcite] = ACTIONS(4508), - [anon_sym_BSLASHftvolcite] = ACTIONS(4508), - [anon_sym_BSLASHsvolcite] = ACTIONS(4508), - [anon_sym_BSLASHSvolcite] = ACTIONS(4508), - [anon_sym_BSLASHtvolcite] = ACTIONS(4508), - [anon_sym_BSLASHTvolcite] = ACTIONS(4508), - [anon_sym_BSLASHavolcite] = ACTIONS(4508), - [anon_sym_BSLASHAvolcite] = ACTIONS(4508), - [anon_sym_BSLASHnotecite] = ACTIONS(4508), - [anon_sym_BSLASHNotecite] = ACTIONS(4508), - [anon_sym_BSLASHpnotecite] = ACTIONS(4508), - [anon_sym_BSLASHPnotecite] = ACTIONS(4508), - [anon_sym_BSLASHfnotecite] = ACTIONS(4508), - [anon_sym_BSLASHlabel] = ACTIONS(4512), - [anon_sym_BSLASHref] = ACTIONS(4514), - [anon_sym_BSLASHeqref] = ACTIONS(4514), - [anon_sym_BSLASHvref] = ACTIONS(4514), - [anon_sym_BSLASHVref] = ACTIONS(4514), - [anon_sym_BSLASHautoref] = ACTIONS(4514), - [anon_sym_BSLASHpageref] = ACTIONS(4514), - [anon_sym_BSLASHcref] = ACTIONS(4514), - [anon_sym_BSLASHCref] = ACTIONS(4514), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4516), - [anon_sym_BSLASHnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnameCref] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4514), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4514), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4514), - [anon_sym_BSLASHlabelcref] = ACTIONS(4514), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4514), - [anon_sym_BSLASHcrefrange] = ACTIONS(4518), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHCrefrange] = ACTIONS(4518), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4520), - [anon_sym_BSLASHnewlabel] = ACTIONS(4522), - [anon_sym_BSLASHnewcommand] = ACTIONS(4524), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4524), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4526), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4524), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4526), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(4524), - [anon_sym_BSLASHdef] = ACTIONS(4528), - [anon_sym_BSLASHlet] = ACTIONS(4530), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(4532), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(4532), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(4534), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(4534), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4536), - [anon_sym_BSLASHgls] = ACTIONS(4538), - [anon_sym_BSLASHGls] = ACTIONS(4538), - [anon_sym_BSLASHGLS] = ACTIONS(4538), - [anon_sym_BSLASHglspl] = ACTIONS(4538), - [anon_sym_BSLASHGlspl] = ACTIONS(4538), - [anon_sym_BSLASHGLSpl] = ACTIONS(4538), - [anon_sym_BSLASHglsdisp] = ACTIONS(4538), - [anon_sym_BSLASHglslink] = ACTIONS(4538), - [anon_sym_BSLASHglstext] = ACTIONS(4538), - [anon_sym_BSLASHGlstext] = ACTIONS(4538), - [anon_sym_BSLASHGLStext] = ACTIONS(4538), - [anon_sym_BSLASHglsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4538), - [anon_sym_BSLASHglsplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSplural] = ACTIONS(4538), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4538), - [anon_sym_BSLASHglsname] = ACTIONS(4538), - [anon_sym_BSLASHGlsname] = ACTIONS(4538), - [anon_sym_BSLASHGLSname] = ACTIONS(4538), - [anon_sym_BSLASHglssymbol] = ACTIONS(4538), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4538), - [anon_sym_BSLASHglsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4538), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4538), - [anon_sym_BSLASHglsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4538), - [anon_sym_BSLASHglsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4538), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4538), - [anon_sym_BSLASHglsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4538), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4538), - [anon_sym_BSLASHglsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4538), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4538), - [anon_sym_BSLASHnewacronym] = ACTIONS(4540), - [anon_sym_BSLASHacrshort] = ACTIONS(4542), - [anon_sym_BSLASHAcrshort] = ACTIONS(4542), - [anon_sym_BSLASHACRshort] = ACTIONS(4542), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4542), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4542), - [anon_sym_BSLASHacrlong] = ACTIONS(4542), - [anon_sym_BSLASHAcrlong] = ACTIONS(4542), - [anon_sym_BSLASHACRlong] = ACTIONS(4542), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4542), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4542), - [anon_sym_BSLASHacrfull] = ACTIONS(4542), - [anon_sym_BSLASHAcrfull] = ACTIONS(4542), - [anon_sym_BSLASHACRfull] = ACTIONS(4542), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4542), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4542), - [anon_sym_BSLASHacs] = ACTIONS(4542), - [anon_sym_BSLASHAcs] = ACTIONS(4542), - [anon_sym_BSLASHacsp] = ACTIONS(4542), - [anon_sym_BSLASHAcsp] = ACTIONS(4542), - [anon_sym_BSLASHacl] = ACTIONS(4542), - [anon_sym_BSLASHAcl] = ACTIONS(4542), - [anon_sym_BSLASHaclp] = ACTIONS(4542), - [anon_sym_BSLASHAclp] = ACTIONS(4542), - [anon_sym_BSLASHacf] = ACTIONS(4542), - [anon_sym_BSLASHAcf] = ACTIONS(4542), - [anon_sym_BSLASHacfp] = ACTIONS(4542), - [anon_sym_BSLASHAcfp] = ACTIONS(4542), - [anon_sym_BSLASHac] = ACTIONS(4542), - [anon_sym_BSLASHAc] = ACTIONS(4542), - [anon_sym_BSLASHacp] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4542), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4542), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4542), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4542), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4544), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4544), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(4546), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4548), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4550), - [anon_sym_BSLASHcolor] = ACTIONS(4552), - [anon_sym_BSLASHcolorbox] = ACTIONS(4552), - [anon_sym_BSLASHtextcolor] = ACTIONS(4552), - [anon_sym_BSLASHpagecolor] = ACTIONS(4552), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4554), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4554), - }, - [1463] = { - [sym_curly_group] = STATE(1497), - [aux_sym_generic_command_repeat1] = STATE(1467), - [sym_command_name] = ACTIONS(5964), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5964), - [anon_sym_LBRACK] = ACTIONS(5966), - [anon_sym_RBRACK] = ACTIONS(5966), - [anon_sym_COMMA] = ACTIONS(5966), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_LPAREN] = ACTIONS(5966), - [anon_sym_RPAREN] = ACTIONS(5966), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(5964), - [sym_placeholder] = ACTIONS(5966), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5966), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_SQUOTE] = ACTIONS(5964), - [anon_sym__] = ACTIONS(5966), - [anon_sym_CARET] = ACTIONS(5966), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5966), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5966), - [anon_sym_DOLLAR] = ACTIONS(5964), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5966), - [anon_sym_BSLASHbegin] = ACTIONS(5964), - [anon_sym_BSLASHend] = ACTIONS(5964), - [anon_sym_BSLASHtitle] = ACTIONS(5964), - [anon_sym_BSLASHauthor] = ACTIONS(5964), - [anon_sym_BSLASHusepackage] = ACTIONS(5964), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5964), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5964), - [anon_sym_BSLASHinclude] = ACTIONS(5964), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5964), - [anon_sym_BSLASHinput] = ACTIONS(5964), - [anon_sym_BSLASHsubfile] = ACTIONS(5964), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5964), - [anon_sym_BSLASHbibliography] = ACTIONS(5964), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5964), - [anon_sym_BSLASHincludesvg] = ACTIONS(5964), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5964), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5964), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5964), - [anon_sym_BSLASHimport] = ACTIONS(5964), - [anon_sym_BSLASHsubimport] = ACTIONS(5964), - [anon_sym_BSLASHinputfrom] = ACTIONS(5964), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5964), - [anon_sym_BSLASHincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHcaption] = ACTIONS(5964), - [anon_sym_BSLASHcite] = ACTIONS(5964), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCite] = ACTIONS(5964), - [anon_sym_BSLASHnocite] = ACTIONS(5964), - [anon_sym_BSLASHcitet] = ACTIONS(5964), - [anon_sym_BSLASHcitep] = ACTIONS(5964), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteauthor] = ACTIONS(5964), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5964), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitetitle] = ACTIONS(5964), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteyear] = ACTIONS(5964), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitedate] = ACTIONS(5964), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteurl] = ACTIONS(5964), - [anon_sym_BSLASHfullcite] = ACTIONS(5964), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5964), - [anon_sym_BSLASHcitealt] = ACTIONS(5964), - [anon_sym_BSLASHcitealp] = ACTIONS(5964), - [anon_sym_BSLASHcitetext] = ACTIONS(5964), - [anon_sym_BSLASHparencite] = ACTIONS(5964), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHParencite] = ACTIONS(5964), - [anon_sym_BSLASHfootcite] = ACTIONS(5964), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5964), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5964), - [anon_sym_BSLASHtextcite] = ACTIONS(5964), - [anon_sym_BSLASHTextcite] = ACTIONS(5964), - [anon_sym_BSLASHsmartcite] = ACTIONS(5964), - [anon_sym_BSLASHSmartcite] = ACTIONS(5964), - [anon_sym_BSLASHsupercite] = ACTIONS(5964), - [anon_sym_BSLASHautocite] = ACTIONS(5964), - [anon_sym_BSLASHAutocite] = ACTIONS(5964), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHvolcite] = ACTIONS(5964), - [anon_sym_BSLASHVolcite] = ACTIONS(5964), - [anon_sym_BSLASHpvolcite] = ACTIONS(5964), - [anon_sym_BSLASHPvolcite] = ACTIONS(5964), - [anon_sym_BSLASHfvolcite] = ACTIONS(5964), - [anon_sym_BSLASHftvolcite] = ACTIONS(5964), - [anon_sym_BSLASHsvolcite] = ACTIONS(5964), - [anon_sym_BSLASHSvolcite] = ACTIONS(5964), - [anon_sym_BSLASHtvolcite] = ACTIONS(5964), - [anon_sym_BSLASHTvolcite] = ACTIONS(5964), - [anon_sym_BSLASHavolcite] = ACTIONS(5964), - [anon_sym_BSLASHAvolcite] = ACTIONS(5964), - [anon_sym_BSLASHnotecite] = ACTIONS(5964), - [anon_sym_BSLASHNotecite] = ACTIONS(5964), - [anon_sym_BSLASHpnotecite] = ACTIONS(5964), - [anon_sym_BSLASHPnotecite] = ACTIONS(5964), - [anon_sym_BSLASHfnotecite] = ACTIONS(5964), - [anon_sym_BSLASHlabel] = ACTIONS(5964), - [anon_sym_BSLASHref] = ACTIONS(5964), - [anon_sym_BSLASHeqref] = ACTIONS(5964), - [anon_sym_BSLASHvref] = ACTIONS(5964), - [anon_sym_BSLASHVref] = ACTIONS(5964), - [anon_sym_BSLASHautoref] = ACTIONS(5964), - [anon_sym_BSLASHpageref] = ACTIONS(5964), - [anon_sym_BSLASHcref] = ACTIONS(5964), - [anon_sym_BSLASHCref] = ACTIONS(5964), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnameCref] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHlabelcref] = ACTIONS(5964), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCrefrange] = ACTIONS(5964), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnewlabel] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5964), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5964), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5966), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHdef] = ACTIONS(5964), - [anon_sym_BSLASHlet] = ACTIONS(5964), - [anon_sym_BSLASHleft] = ACTIONS(5964), - [anon_sym_BSLASHbig] = ACTIONS(5964), - [anon_sym_BSLASHBig] = ACTIONS(5964), - [anon_sym_BSLASHbigg] = ACTIONS(5964), - [anon_sym_BSLASHBigg] = ACTIONS(5964), - [anon_sym_BSLASHbigl] = ACTIONS(5964), - [anon_sym_BSLASHBigl] = ACTIONS(5964), - [anon_sym_BSLASHbiggl] = ACTIONS(5964), - [anon_sym_BSLASHBiggl] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5964), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5964), - [anon_sym_BSLASHgls] = ACTIONS(5964), - [anon_sym_BSLASHGls] = ACTIONS(5964), - [anon_sym_BSLASHGLS] = ACTIONS(5964), - [anon_sym_BSLASHglspl] = ACTIONS(5964), - [anon_sym_BSLASHGlspl] = ACTIONS(5964), - [anon_sym_BSLASHGLSpl] = ACTIONS(5964), - [anon_sym_BSLASHglsdisp] = ACTIONS(5964), - [anon_sym_BSLASHglslink] = ACTIONS(5964), - [anon_sym_BSLASHglstext] = ACTIONS(5964), - [anon_sym_BSLASHGlstext] = ACTIONS(5964), - [anon_sym_BSLASHGLStext] = ACTIONS(5964), - [anon_sym_BSLASHglsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5964), - [anon_sym_BSLASHglsplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSplural] = ACTIONS(5964), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHglsname] = ACTIONS(5964), - [anon_sym_BSLASHGlsname] = ACTIONS(5964), - [anon_sym_BSLASHGLSname] = ACTIONS(5964), - [anon_sym_BSLASHglssymbol] = ACTIONS(5964), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5964), - [anon_sym_BSLASHglsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5964), - [anon_sym_BSLASHglsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5964), - [anon_sym_BSLASHglsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5964), - [anon_sym_BSLASHglsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5964), - [anon_sym_BSLASHglsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5964), - [anon_sym_BSLASHnewacronym] = ACTIONS(5964), - [anon_sym_BSLASHacrshort] = ACTIONS(5964), - [anon_sym_BSLASHAcrshort] = ACTIONS(5964), - [anon_sym_BSLASHACRshort] = ACTIONS(5964), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5964), - [anon_sym_BSLASHacrlong] = ACTIONS(5964), - [anon_sym_BSLASHAcrlong] = ACTIONS(5964), - [anon_sym_BSLASHACRlong] = ACTIONS(5964), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5964), - [anon_sym_BSLASHacrfull] = ACTIONS(5964), - [anon_sym_BSLASHAcrfull] = ACTIONS(5964), - [anon_sym_BSLASHACRfull] = ACTIONS(5964), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5964), - [anon_sym_BSLASHacs] = ACTIONS(5964), - [anon_sym_BSLASHAcs] = ACTIONS(5964), - [anon_sym_BSLASHacsp] = ACTIONS(5964), - [anon_sym_BSLASHAcsp] = ACTIONS(5964), - [anon_sym_BSLASHacl] = ACTIONS(5964), - [anon_sym_BSLASHAcl] = ACTIONS(5964), - [anon_sym_BSLASHaclp] = ACTIONS(5964), - [anon_sym_BSLASHAclp] = ACTIONS(5964), - [anon_sym_BSLASHacf] = ACTIONS(5964), - [anon_sym_BSLASHAcf] = ACTIONS(5964), - [anon_sym_BSLASHacfp] = ACTIONS(5964), - [anon_sym_BSLASHAcfp] = ACTIONS(5964), - [anon_sym_BSLASHac] = ACTIONS(5964), - [anon_sym_BSLASHAc] = ACTIONS(5964), - [anon_sym_BSLASHacp] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5964), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5964), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5964), - [anon_sym_BSLASHcolor] = ACTIONS(5964), - [anon_sym_BSLASHcolorbox] = ACTIONS(5964), - [anon_sym_BSLASHtextcolor] = ACTIONS(5964), - [anon_sym_BSLASHpagecolor] = ACTIONS(5964), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5964), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5964), - [anon_sym_BSLASHtext] = ACTIONS(5964), - [anon_sym_BSLASHintertext] = ACTIONS(5964), - [anon_sym_shortintertext] = ACTIONS(5964), - }, - [1464] = { - [sym_command_name] = ACTIONS(5968), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5968), - [anon_sym_BSLASHfi] = ACTIONS(6914), - [anon_sym_LBRACK] = ACTIONS(5972), - [anon_sym_RBRACK] = ACTIONS(5972), - [anon_sym_COMMA] = ACTIONS(5972), - [anon_sym_EQ] = ACTIONS(5972), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_RPAREN] = ACTIONS(5972), - [anon_sym_LBRACE] = ACTIONS(5972), - [sym_word] = ACTIONS(5968), - [sym_placeholder] = ACTIONS(5972), - [anon_sym_PLUS] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5972), - [anon_sym_STAR] = ACTIONS(5972), - [anon_sym_SLASH] = ACTIONS(5972), - [anon_sym_LT] = ACTIONS(5968), - [anon_sym_GT] = ACTIONS(5968), - [anon_sym_BANG] = ACTIONS(5968), - [anon_sym_PIPE] = ACTIONS(5968), - [anon_sym_COLON] = ACTIONS(5968), - [anon_sym_SQUOTE] = ACTIONS(5968), - [anon_sym__] = ACTIONS(5972), - [anon_sym_CARET] = ACTIONS(5972), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5972), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5972), - [anon_sym_DOLLAR] = ACTIONS(5968), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5972), - [anon_sym_BSLASHbegin] = ACTIONS(5968), - [anon_sym_BSLASHend] = ACTIONS(5968), - [anon_sym_BSLASHtitle] = ACTIONS(5968), - [anon_sym_BSLASHauthor] = ACTIONS(5968), - [anon_sym_BSLASHusepackage] = ACTIONS(5968), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5968), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5968), - [anon_sym_BSLASHinclude] = ACTIONS(5968), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5968), - [anon_sym_BSLASHinput] = ACTIONS(5968), - [anon_sym_BSLASHsubfile] = ACTIONS(5968), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5968), - [anon_sym_BSLASHbibliography] = ACTIONS(5968), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5968), - [anon_sym_BSLASHincludesvg] = ACTIONS(5968), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5968), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5968), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5968), - [anon_sym_BSLASHimport] = ACTIONS(5968), - [anon_sym_BSLASHsubimport] = ACTIONS(5968), - [anon_sym_BSLASHinputfrom] = ACTIONS(5968), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5968), - [anon_sym_BSLASHincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHcaption] = ACTIONS(5968), - [anon_sym_BSLASHcite] = ACTIONS(5968), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCite] = ACTIONS(5968), - [anon_sym_BSLASHnocite] = ACTIONS(5968), - [anon_sym_BSLASHcitet] = ACTIONS(5968), - [anon_sym_BSLASHcitep] = ACTIONS(5968), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteauthor] = ACTIONS(5968), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5968), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitetitle] = ACTIONS(5968), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteyear] = ACTIONS(5968), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitedate] = ACTIONS(5968), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteurl] = ACTIONS(5968), - [anon_sym_BSLASHfullcite] = ACTIONS(5968), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5968), - [anon_sym_BSLASHcitealt] = ACTIONS(5968), - [anon_sym_BSLASHcitealp] = ACTIONS(5968), - [anon_sym_BSLASHcitetext] = ACTIONS(5968), - [anon_sym_BSLASHparencite] = ACTIONS(5968), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHParencite] = ACTIONS(5968), - [anon_sym_BSLASHfootcite] = ACTIONS(5968), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5968), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5968), - [anon_sym_BSLASHtextcite] = ACTIONS(5968), - [anon_sym_BSLASHTextcite] = ACTIONS(5968), - [anon_sym_BSLASHsmartcite] = ACTIONS(5968), - [anon_sym_BSLASHSmartcite] = ACTIONS(5968), - [anon_sym_BSLASHsupercite] = ACTIONS(5968), - [anon_sym_BSLASHautocite] = ACTIONS(5968), - [anon_sym_BSLASHAutocite] = ACTIONS(5968), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHvolcite] = ACTIONS(5968), - [anon_sym_BSLASHVolcite] = ACTIONS(5968), - [anon_sym_BSLASHpvolcite] = ACTIONS(5968), - [anon_sym_BSLASHPvolcite] = ACTIONS(5968), - [anon_sym_BSLASHfvolcite] = ACTIONS(5968), - [anon_sym_BSLASHftvolcite] = ACTIONS(5968), - [anon_sym_BSLASHsvolcite] = ACTIONS(5968), - [anon_sym_BSLASHSvolcite] = ACTIONS(5968), - [anon_sym_BSLASHtvolcite] = ACTIONS(5968), - [anon_sym_BSLASHTvolcite] = ACTIONS(5968), - [anon_sym_BSLASHavolcite] = ACTIONS(5968), - [anon_sym_BSLASHAvolcite] = ACTIONS(5968), - [anon_sym_BSLASHnotecite] = ACTIONS(5968), - [anon_sym_BSLASHNotecite] = ACTIONS(5968), - [anon_sym_BSLASHpnotecite] = ACTIONS(5968), - [anon_sym_BSLASHPnotecite] = ACTIONS(5968), - [anon_sym_BSLASHfnotecite] = ACTIONS(5968), - [anon_sym_BSLASHlabel] = ACTIONS(5968), - [anon_sym_BSLASHref] = ACTIONS(5968), - [anon_sym_BSLASHeqref] = ACTIONS(5968), - [anon_sym_BSLASHvref] = ACTIONS(5968), - [anon_sym_BSLASHVref] = ACTIONS(5968), - [anon_sym_BSLASHautoref] = ACTIONS(5968), - [anon_sym_BSLASHpageref] = ACTIONS(5968), - [anon_sym_BSLASHcref] = ACTIONS(5968), - [anon_sym_BSLASHCref] = ACTIONS(5968), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnameCref] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHlabelcref] = ACTIONS(5968), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCrefrange] = ACTIONS(5968), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnewlabel] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5968), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5968), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5972), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHdef] = ACTIONS(5968), - [anon_sym_BSLASHlet] = ACTIONS(5968), - [anon_sym_BSLASHleft] = ACTIONS(5968), - [anon_sym_BSLASHbig] = ACTIONS(5968), - [anon_sym_BSLASHBig] = ACTIONS(5968), - [anon_sym_BSLASHbigg] = ACTIONS(5968), - [anon_sym_BSLASHBigg] = ACTIONS(5968), - [anon_sym_BSLASHbigl] = ACTIONS(5968), - [anon_sym_BSLASHBigl] = ACTIONS(5968), - [anon_sym_BSLASHbiggl] = ACTIONS(5968), - [anon_sym_BSLASHBiggl] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5968), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5968), - [anon_sym_BSLASHgls] = ACTIONS(5968), - [anon_sym_BSLASHGls] = ACTIONS(5968), - [anon_sym_BSLASHGLS] = ACTIONS(5968), - [anon_sym_BSLASHglspl] = ACTIONS(5968), - [anon_sym_BSLASHGlspl] = ACTIONS(5968), - [anon_sym_BSLASHGLSpl] = ACTIONS(5968), - [anon_sym_BSLASHglsdisp] = ACTIONS(5968), - [anon_sym_BSLASHglslink] = ACTIONS(5968), - [anon_sym_BSLASHglstext] = ACTIONS(5968), - [anon_sym_BSLASHGlstext] = ACTIONS(5968), - [anon_sym_BSLASHGLStext] = ACTIONS(5968), - [anon_sym_BSLASHglsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5968), - [anon_sym_BSLASHglsplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSplural] = ACTIONS(5968), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHglsname] = ACTIONS(5968), - [anon_sym_BSLASHGlsname] = ACTIONS(5968), - [anon_sym_BSLASHGLSname] = ACTIONS(5968), - [anon_sym_BSLASHglssymbol] = ACTIONS(5968), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5968), - [anon_sym_BSLASHglsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5968), - [anon_sym_BSLASHglsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5968), - [anon_sym_BSLASHglsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5968), - [anon_sym_BSLASHglsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5968), - [anon_sym_BSLASHglsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5968), - [anon_sym_BSLASHnewacronym] = ACTIONS(5968), - [anon_sym_BSLASHacrshort] = ACTIONS(5968), - [anon_sym_BSLASHAcrshort] = ACTIONS(5968), - [anon_sym_BSLASHACRshort] = ACTIONS(5968), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5968), - [anon_sym_BSLASHacrlong] = ACTIONS(5968), - [anon_sym_BSLASHAcrlong] = ACTIONS(5968), - [anon_sym_BSLASHACRlong] = ACTIONS(5968), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5968), - [anon_sym_BSLASHacrfull] = ACTIONS(5968), - [anon_sym_BSLASHAcrfull] = ACTIONS(5968), - [anon_sym_BSLASHACRfull] = ACTIONS(5968), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5968), - [anon_sym_BSLASHacs] = ACTIONS(5968), - [anon_sym_BSLASHAcs] = ACTIONS(5968), - [anon_sym_BSLASHacsp] = ACTIONS(5968), - [anon_sym_BSLASHAcsp] = ACTIONS(5968), - [anon_sym_BSLASHacl] = ACTIONS(5968), - [anon_sym_BSLASHAcl] = ACTIONS(5968), - [anon_sym_BSLASHaclp] = ACTIONS(5968), - [anon_sym_BSLASHAclp] = ACTIONS(5968), - [anon_sym_BSLASHacf] = ACTIONS(5968), - [anon_sym_BSLASHAcf] = ACTIONS(5968), - [anon_sym_BSLASHacfp] = ACTIONS(5968), - [anon_sym_BSLASHAcfp] = ACTIONS(5968), - [anon_sym_BSLASHac] = ACTIONS(5968), - [anon_sym_BSLASHAc] = ACTIONS(5968), - [anon_sym_BSLASHacp] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5968), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5968), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5968), - [anon_sym_BSLASHcolor] = ACTIONS(5968), - [anon_sym_BSLASHcolorbox] = ACTIONS(5968), - [anon_sym_BSLASHtextcolor] = ACTIONS(5968), - [anon_sym_BSLASHpagecolor] = ACTIONS(5968), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5968), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5968), - [anon_sym_BSLASHtext] = ACTIONS(5968), - [anon_sym_BSLASHintertext] = ACTIONS(5968), - [anon_sym_shortintertext] = ACTIONS(5968), - [sym__trivia_raw_fi] = ACTIONS(6916), - }, - [1465] = { - [sym_curly_group] = STATE(1476), - [sym_brack_group_text] = STATE(2461), - [sym_command_name] = ACTIONS(5993), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5995), - [anon_sym_COMMA] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(5995), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(5993), - [sym_placeholder] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_BANG] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_SQUOTE] = ACTIONS(5993), - [anon_sym__] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5993), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5995), - [anon_sym_BSLASHbegin] = ACTIONS(5993), - [anon_sym_BSLASHend] = ACTIONS(5993), - [anon_sym_BSLASHtitle] = ACTIONS(5993), - [anon_sym_BSLASHauthor] = ACTIONS(5993), - [anon_sym_BSLASHusepackage] = ACTIONS(5993), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5993), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5993), - [anon_sym_BSLASHinclude] = ACTIONS(5993), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5993), - [anon_sym_BSLASHinput] = ACTIONS(5993), - [anon_sym_BSLASHsubfile] = ACTIONS(5993), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5993), - [anon_sym_BSLASHbibliography] = ACTIONS(5993), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5993), - [anon_sym_BSLASHincludesvg] = ACTIONS(5993), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5993), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5993), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5993), - [anon_sym_BSLASHimport] = ACTIONS(5993), - [anon_sym_BSLASHsubimport] = ACTIONS(5993), - [anon_sym_BSLASHinputfrom] = ACTIONS(5993), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5993), - [anon_sym_BSLASHincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHcaption] = ACTIONS(5993), - [anon_sym_BSLASHcite] = ACTIONS(5993), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCite] = ACTIONS(5993), - [anon_sym_BSLASHnocite] = ACTIONS(5993), - [anon_sym_BSLASHcitet] = ACTIONS(5993), - [anon_sym_BSLASHcitep] = ACTIONS(5993), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteauthor] = ACTIONS(5993), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5993), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitetitle] = ACTIONS(5993), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteyear] = ACTIONS(5993), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitedate] = ACTIONS(5993), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteurl] = ACTIONS(5993), - [anon_sym_BSLASHfullcite] = ACTIONS(5993), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5993), - [anon_sym_BSLASHcitealt] = ACTIONS(5993), - [anon_sym_BSLASHcitealp] = ACTIONS(5993), - [anon_sym_BSLASHcitetext] = ACTIONS(5993), - [anon_sym_BSLASHparencite] = ACTIONS(5993), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHParencite] = ACTIONS(5993), - [anon_sym_BSLASHfootcite] = ACTIONS(5993), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5993), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5993), - [anon_sym_BSLASHtextcite] = ACTIONS(5993), - [anon_sym_BSLASHTextcite] = ACTIONS(5993), - [anon_sym_BSLASHsmartcite] = ACTIONS(5993), - [anon_sym_BSLASHSmartcite] = ACTIONS(5993), - [anon_sym_BSLASHsupercite] = ACTIONS(5993), - [anon_sym_BSLASHautocite] = ACTIONS(5993), - [anon_sym_BSLASHAutocite] = ACTIONS(5993), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHvolcite] = ACTIONS(5993), - [anon_sym_BSLASHVolcite] = ACTIONS(5993), - [anon_sym_BSLASHpvolcite] = ACTIONS(5993), - [anon_sym_BSLASHPvolcite] = ACTIONS(5993), - [anon_sym_BSLASHfvolcite] = ACTIONS(5993), - [anon_sym_BSLASHftvolcite] = ACTIONS(5993), - [anon_sym_BSLASHsvolcite] = ACTIONS(5993), - [anon_sym_BSLASHSvolcite] = ACTIONS(5993), - [anon_sym_BSLASHtvolcite] = ACTIONS(5993), - [anon_sym_BSLASHTvolcite] = ACTIONS(5993), - [anon_sym_BSLASHavolcite] = ACTIONS(5993), - [anon_sym_BSLASHAvolcite] = ACTIONS(5993), - [anon_sym_BSLASHnotecite] = ACTIONS(5993), - [anon_sym_BSLASHNotecite] = ACTIONS(5993), - [anon_sym_BSLASHpnotecite] = ACTIONS(5993), - [anon_sym_BSLASHPnotecite] = ACTIONS(5993), - [anon_sym_BSLASHfnotecite] = ACTIONS(5993), - [anon_sym_BSLASHlabel] = ACTIONS(5993), - [anon_sym_BSLASHref] = ACTIONS(5993), - [anon_sym_BSLASHeqref] = ACTIONS(5993), - [anon_sym_BSLASHvref] = ACTIONS(5993), - [anon_sym_BSLASHVref] = ACTIONS(5993), - [anon_sym_BSLASHautoref] = ACTIONS(5993), - [anon_sym_BSLASHpageref] = ACTIONS(5993), - [anon_sym_BSLASHcref] = ACTIONS(5993), - [anon_sym_BSLASHCref] = ACTIONS(5993), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnameCref] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHlabelcref] = ACTIONS(5993), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCrefrange] = ACTIONS(5993), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnewlabel] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5993), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5993), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5995), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHdef] = ACTIONS(5993), - [anon_sym_BSLASHlet] = ACTIONS(5993), - [anon_sym_BSLASHleft] = ACTIONS(5993), - [anon_sym_BSLASHbig] = ACTIONS(5993), - [anon_sym_BSLASHBig] = ACTIONS(5993), - [anon_sym_BSLASHbigg] = ACTIONS(5993), - [anon_sym_BSLASHBigg] = ACTIONS(5993), - [anon_sym_BSLASHbigl] = ACTIONS(5993), - [anon_sym_BSLASHBigl] = ACTIONS(5993), - [anon_sym_BSLASHbiggl] = ACTIONS(5993), - [anon_sym_BSLASHBiggl] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5993), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5993), - [anon_sym_BSLASHgls] = ACTIONS(5993), - [anon_sym_BSLASHGls] = ACTIONS(5993), - [anon_sym_BSLASHGLS] = ACTIONS(5993), - [anon_sym_BSLASHglspl] = ACTIONS(5993), - [anon_sym_BSLASHGlspl] = ACTIONS(5993), - [anon_sym_BSLASHGLSpl] = ACTIONS(5993), - [anon_sym_BSLASHglsdisp] = ACTIONS(5993), - [anon_sym_BSLASHglslink] = ACTIONS(5993), - [anon_sym_BSLASHglstext] = ACTIONS(5993), - [anon_sym_BSLASHGlstext] = ACTIONS(5993), - [anon_sym_BSLASHGLStext] = ACTIONS(5993), - [anon_sym_BSLASHglsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5993), - [anon_sym_BSLASHglsplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSplural] = ACTIONS(5993), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHglsname] = ACTIONS(5993), - [anon_sym_BSLASHGlsname] = ACTIONS(5993), - [anon_sym_BSLASHGLSname] = ACTIONS(5993), - [anon_sym_BSLASHglssymbol] = ACTIONS(5993), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5993), - [anon_sym_BSLASHglsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5993), - [anon_sym_BSLASHglsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5993), - [anon_sym_BSLASHglsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5993), - [anon_sym_BSLASHglsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5993), - [anon_sym_BSLASHglsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5993), - [anon_sym_BSLASHnewacronym] = ACTIONS(5993), - [anon_sym_BSLASHacrshort] = ACTIONS(5993), - [anon_sym_BSLASHAcrshort] = ACTIONS(5993), - [anon_sym_BSLASHACRshort] = ACTIONS(5993), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5993), - [anon_sym_BSLASHacrlong] = ACTIONS(5993), - [anon_sym_BSLASHAcrlong] = ACTIONS(5993), - [anon_sym_BSLASHACRlong] = ACTIONS(5993), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5993), - [anon_sym_BSLASHacrfull] = ACTIONS(5993), - [anon_sym_BSLASHAcrfull] = ACTIONS(5993), - [anon_sym_BSLASHACRfull] = ACTIONS(5993), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5993), - [anon_sym_BSLASHacs] = ACTIONS(5993), - [anon_sym_BSLASHAcs] = ACTIONS(5993), - [anon_sym_BSLASHacsp] = ACTIONS(5993), - [anon_sym_BSLASHAcsp] = ACTIONS(5993), - [anon_sym_BSLASHacl] = ACTIONS(5993), - [anon_sym_BSLASHAcl] = ACTIONS(5993), - [anon_sym_BSLASHaclp] = ACTIONS(5993), - [anon_sym_BSLASHAclp] = ACTIONS(5993), - [anon_sym_BSLASHacf] = ACTIONS(5993), - [anon_sym_BSLASHAcf] = ACTIONS(5993), - [anon_sym_BSLASHacfp] = ACTIONS(5993), - [anon_sym_BSLASHAcfp] = ACTIONS(5993), - [anon_sym_BSLASHac] = ACTIONS(5993), - [anon_sym_BSLASHAc] = ACTIONS(5993), - [anon_sym_BSLASHacp] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5993), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5993), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5993), - [anon_sym_BSLASHcolor] = ACTIONS(5993), - [anon_sym_BSLASHcolorbox] = ACTIONS(5993), - [anon_sym_BSLASHtextcolor] = ACTIONS(5993), - [anon_sym_BSLASHpagecolor] = ACTIONS(5993), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5993), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5993), - [anon_sym_BSLASHtext] = ACTIONS(5993), - [anon_sym_BSLASHintertext] = ACTIONS(5993), - [anon_sym_shortintertext] = ACTIONS(5993), - }, - [1466] = { - [sym_curly_group] = STATE(1497), - [aux_sym_generic_command_repeat1] = STATE(1463), - [sym_command_name] = ACTIONS(5983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5983), - [anon_sym_LBRACK] = ACTIONS(5985), - [anon_sym_RBRACK] = ACTIONS(5985), - [anon_sym_COMMA] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(5985), - [anon_sym_LPAREN] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(5983), - [sym_placeholder] = ACTIONS(5985), - [anon_sym_PLUS] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(5985), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_SLASH] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(5983), - [anon_sym_GT] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5983), - [anon_sym_PIPE] = ACTIONS(5983), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_SQUOTE] = ACTIONS(5983), - [anon_sym__] = ACTIONS(5985), - [anon_sym_CARET] = ACTIONS(5985), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(5983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), - [anon_sym_BSLASHbegin] = ACTIONS(5983), - [anon_sym_BSLASHend] = ACTIONS(5983), - [anon_sym_BSLASHtitle] = ACTIONS(5983), - [anon_sym_BSLASHauthor] = ACTIONS(5983), - [anon_sym_BSLASHusepackage] = ACTIONS(5983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), - [anon_sym_BSLASHinclude] = ACTIONS(5983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), - [anon_sym_BSLASHinput] = ACTIONS(5983), - [anon_sym_BSLASHsubfile] = ACTIONS(5983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), - [anon_sym_BSLASHbibliography] = ACTIONS(5983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), - [anon_sym_BSLASHincludesvg] = ACTIONS(5983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), - [anon_sym_BSLASHimport] = ACTIONS(5983), - [anon_sym_BSLASHsubimport] = ACTIONS(5983), - [anon_sym_BSLASHinputfrom] = ACTIONS(5983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), - [anon_sym_BSLASHincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHcaption] = ACTIONS(5983), - [anon_sym_BSLASHcite] = ACTIONS(5983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCite] = ACTIONS(5983), - [anon_sym_BSLASHnocite] = ACTIONS(5983), - [anon_sym_BSLASHcitet] = ACTIONS(5983), - [anon_sym_BSLASHcitep] = ACTIONS(5983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteauthor] = ACTIONS(5983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitetitle] = ACTIONS(5983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteyear] = ACTIONS(5983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitedate] = ACTIONS(5983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteurl] = ACTIONS(5983), - [anon_sym_BSLASHfullcite] = ACTIONS(5983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), - [anon_sym_BSLASHcitealt] = ACTIONS(5983), - [anon_sym_BSLASHcitealp] = ACTIONS(5983), - [anon_sym_BSLASHcitetext] = ACTIONS(5983), - [anon_sym_BSLASHparencite] = ACTIONS(5983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHParencite] = ACTIONS(5983), - [anon_sym_BSLASHfootcite] = ACTIONS(5983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), - [anon_sym_BSLASHtextcite] = ACTIONS(5983), - [anon_sym_BSLASHTextcite] = ACTIONS(5983), - [anon_sym_BSLASHsmartcite] = ACTIONS(5983), - [anon_sym_BSLASHSmartcite] = ACTIONS(5983), - [anon_sym_BSLASHsupercite] = ACTIONS(5983), - [anon_sym_BSLASHautocite] = ACTIONS(5983), - [anon_sym_BSLASHAutocite] = ACTIONS(5983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHvolcite] = ACTIONS(5983), - [anon_sym_BSLASHVolcite] = ACTIONS(5983), - [anon_sym_BSLASHpvolcite] = ACTIONS(5983), - [anon_sym_BSLASHPvolcite] = ACTIONS(5983), - [anon_sym_BSLASHfvolcite] = ACTIONS(5983), - [anon_sym_BSLASHftvolcite] = ACTIONS(5983), - [anon_sym_BSLASHsvolcite] = ACTIONS(5983), - [anon_sym_BSLASHSvolcite] = ACTIONS(5983), - [anon_sym_BSLASHtvolcite] = ACTIONS(5983), - [anon_sym_BSLASHTvolcite] = ACTIONS(5983), - [anon_sym_BSLASHavolcite] = ACTIONS(5983), - [anon_sym_BSLASHAvolcite] = ACTIONS(5983), - [anon_sym_BSLASHnotecite] = ACTIONS(5983), - [anon_sym_BSLASHNotecite] = ACTIONS(5983), - [anon_sym_BSLASHpnotecite] = ACTIONS(5983), - [anon_sym_BSLASHPnotecite] = ACTIONS(5983), - [anon_sym_BSLASHfnotecite] = ACTIONS(5983), - [anon_sym_BSLASHlabel] = ACTIONS(5983), - [anon_sym_BSLASHref] = ACTIONS(5983), - [anon_sym_BSLASHeqref] = ACTIONS(5983), - [anon_sym_BSLASHvref] = ACTIONS(5983), - [anon_sym_BSLASHVref] = ACTIONS(5983), - [anon_sym_BSLASHautoref] = ACTIONS(5983), - [anon_sym_BSLASHpageref] = ACTIONS(5983), - [anon_sym_BSLASHcref] = ACTIONS(5983), - [anon_sym_BSLASHCref] = ACTIONS(5983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnameCref] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHlabelcref] = ACTIONS(5983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCrefrange] = ACTIONS(5983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnewlabel] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHdef] = ACTIONS(5983), - [anon_sym_BSLASHlet] = ACTIONS(5983), - [anon_sym_BSLASHleft] = ACTIONS(5983), - [anon_sym_BSLASHbig] = ACTIONS(5983), - [anon_sym_BSLASHBig] = ACTIONS(5983), - [anon_sym_BSLASHbigg] = ACTIONS(5983), - [anon_sym_BSLASHBigg] = ACTIONS(5983), - [anon_sym_BSLASHbigl] = ACTIONS(5983), - [anon_sym_BSLASHBigl] = ACTIONS(5983), - [anon_sym_BSLASHbiggl] = ACTIONS(5983), - [anon_sym_BSLASHBiggl] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), - [anon_sym_BSLASHgls] = ACTIONS(5983), - [anon_sym_BSLASHGls] = ACTIONS(5983), - [anon_sym_BSLASHGLS] = ACTIONS(5983), - [anon_sym_BSLASHglspl] = ACTIONS(5983), - [anon_sym_BSLASHGlspl] = ACTIONS(5983), - [anon_sym_BSLASHGLSpl] = ACTIONS(5983), - [anon_sym_BSLASHglsdisp] = ACTIONS(5983), - [anon_sym_BSLASHglslink] = ACTIONS(5983), - [anon_sym_BSLASHglstext] = ACTIONS(5983), - [anon_sym_BSLASHGlstext] = ACTIONS(5983), - [anon_sym_BSLASHGLStext] = ACTIONS(5983), - [anon_sym_BSLASHglsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), - [anon_sym_BSLASHglsplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSplural] = ACTIONS(5983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHglsname] = ACTIONS(5983), - [anon_sym_BSLASHGlsname] = ACTIONS(5983), - [anon_sym_BSLASHGLSname] = ACTIONS(5983), - [anon_sym_BSLASHglssymbol] = ACTIONS(5983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), - [anon_sym_BSLASHglsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), - [anon_sym_BSLASHglsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), - [anon_sym_BSLASHglsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), - [anon_sym_BSLASHglsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), - [anon_sym_BSLASHglsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), - [anon_sym_BSLASHnewacronym] = ACTIONS(5983), - [anon_sym_BSLASHacrshort] = ACTIONS(5983), - [anon_sym_BSLASHAcrshort] = ACTIONS(5983), - [anon_sym_BSLASHACRshort] = ACTIONS(5983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), - [anon_sym_BSLASHacrlong] = ACTIONS(5983), - [anon_sym_BSLASHAcrlong] = ACTIONS(5983), - [anon_sym_BSLASHACRlong] = ACTIONS(5983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), - [anon_sym_BSLASHacrfull] = ACTIONS(5983), - [anon_sym_BSLASHAcrfull] = ACTIONS(5983), - [anon_sym_BSLASHACRfull] = ACTIONS(5983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), - [anon_sym_BSLASHacs] = ACTIONS(5983), - [anon_sym_BSLASHAcs] = ACTIONS(5983), - [anon_sym_BSLASHacsp] = ACTIONS(5983), - [anon_sym_BSLASHAcsp] = ACTIONS(5983), - [anon_sym_BSLASHacl] = ACTIONS(5983), - [anon_sym_BSLASHAcl] = ACTIONS(5983), - [anon_sym_BSLASHaclp] = ACTIONS(5983), - [anon_sym_BSLASHAclp] = ACTIONS(5983), - [anon_sym_BSLASHacf] = ACTIONS(5983), - [anon_sym_BSLASHAcf] = ACTIONS(5983), - [anon_sym_BSLASHacfp] = ACTIONS(5983), - [anon_sym_BSLASHAcfp] = ACTIONS(5983), - [anon_sym_BSLASHac] = ACTIONS(5983), - [anon_sym_BSLASHAc] = ACTIONS(5983), - [anon_sym_BSLASHacp] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), - [anon_sym_BSLASHcolor] = ACTIONS(5983), - [anon_sym_BSLASHcolorbox] = ACTIONS(5983), - [anon_sym_BSLASHtextcolor] = ACTIONS(5983), - [anon_sym_BSLASHpagecolor] = ACTIONS(5983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), - [anon_sym_BSLASHtext] = ACTIONS(5983), - [anon_sym_BSLASHintertext] = ACTIONS(5983), - [anon_sym_shortintertext] = ACTIONS(5983), - }, - [1467] = { - [sym_curly_group] = STATE(1497), - [aux_sym_generic_command_repeat1] = STATE(1467), - [sym_command_name] = ACTIONS(5976), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5976), - [anon_sym_LBRACK] = ACTIONS(5978), - [anon_sym_RBRACK] = ACTIONS(5978), - [anon_sym_COMMA] = ACTIONS(5978), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LPAREN] = ACTIONS(5978), - [anon_sym_RPAREN] = ACTIONS(5978), - [anon_sym_LBRACE] = ACTIONS(6918), - [sym_word] = ACTIONS(5976), - [sym_placeholder] = ACTIONS(5978), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_STAR] = ACTIONS(5978), - [anon_sym_SLASH] = ACTIONS(5978), - [anon_sym_LT] = ACTIONS(5976), - [anon_sym_GT] = ACTIONS(5976), - [anon_sym_BANG] = ACTIONS(5976), - [anon_sym_PIPE] = ACTIONS(5976), - [anon_sym_COLON] = ACTIONS(5976), - [anon_sym_SQUOTE] = ACTIONS(5976), - [anon_sym__] = ACTIONS(5978), - [anon_sym_CARET] = ACTIONS(5978), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5978), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5978), - [anon_sym_DOLLAR] = ACTIONS(5976), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5978), - [anon_sym_BSLASHbegin] = ACTIONS(5976), - [anon_sym_BSLASHend] = ACTIONS(5976), - [anon_sym_BSLASHtitle] = ACTIONS(5976), - [anon_sym_BSLASHauthor] = ACTIONS(5976), - [anon_sym_BSLASHusepackage] = ACTIONS(5976), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5976), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5976), - [anon_sym_BSLASHinclude] = ACTIONS(5976), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5976), - [anon_sym_BSLASHinput] = ACTIONS(5976), - [anon_sym_BSLASHsubfile] = ACTIONS(5976), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5976), - [anon_sym_BSLASHbibliography] = ACTIONS(5976), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5976), - [anon_sym_BSLASHincludesvg] = ACTIONS(5976), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5976), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5976), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5976), - [anon_sym_BSLASHimport] = ACTIONS(5976), - [anon_sym_BSLASHsubimport] = ACTIONS(5976), - [anon_sym_BSLASHinputfrom] = ACTIONS(5976), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5976), - [anon_sym_BSLASHincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHcaption] = ACTIONS(5976), - [anon_sym_BSLASHcite] = ACTIONS(5976), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCite] = ACTIONS(5976), - [anon_sym_BSLASHnocite] = ACTIONS(5976), - [anon_sym_BSLASHcitet] = ACTIONS(5976), - [anon_sym_BSLASHcitep] = ACTIONS(5976), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteauthor] = ACTIONS(5976), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5976), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitetitle] = ACTIONS(5976), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteyear] = ACTIONS(5976), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitedate] = ACTIONS(5976), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteurl] = ACTIONS(5976), - [anon_sym_BSLASHfullcite] = ACTIONS(5976), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5976), - [anon_sym_BSLASHcitealt] = ACTIONS(5976), - [anon_sym_BSLASHcitealp] = ACTIONS(5976), - [anon_sym_BSLASHcitetext] = ACTIONS(5976), - [anon_sym_BSLASHparencite] = ACTIONS(5976), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHParencite] = ACTIONS(5976), - [anon_sym_BSLASHfootcite] = ACTIONS(5976), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5976), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5976), - [anon_sym_BSLASHtextcite] = ACTIONS(5976), - [anon_sym_BSLASHTextcite] = ACTIONS(5976), - [anon_sym_BSLASHsmartcite] = ACTIONS(5976), - [anon_sym_BSLASHSmartcite] = ACTIONS(5976), - [anon_sym_BSLASHsupercite] = ACTIONS(5976), - [anon_sym_BSLASHautocite] = ACTIONS(5976), - [anon_sym_BSLASHAutocite] = ACTIONS(5976), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHvolcite] = ACTIONS(5976), - [anon_sym_BSLASHVolcite] = ACTIONS(5976), - [anon_sym_BSLASHpvolcite] = ACTIONS(5976), - [anon_sym_BSLASHPvolcite] = ACTIONS(5976), - [anon_sym_BSLASHfvolcite] = ACTIONS(5976), - [anon_sym_BSLASHftvolcite] = ACTIONS(5976), - [anon_sym_BSLASHsvolcite] = ACTIONS(5976), - [anon_sym_BSLASHSvolcite] = ACTIONS(5976), - [anon_sym_BSLASHtvolcite] = ACTIONS(5976), - [anon_sym_BSLASHTvolcite] = ACTIONS(5976), - [anon_sym_BSLASHavolcite] = ACTIONS(5976), - [anon_sym_BSLASHAvolcite] = ACTIONS(5976), - [anon_sym_BSLASHnotecite] = ACTIONS(5976), - [anon_sym_BSLASHNotecite] = ACTIONS(5976), - [anon_sym_BSLASHpnotecite] = ACTIONS(5976), - [anon_sym_BSLASHPnotecite] = ACTIONS(5976), - [anon_sym_BSLASHfnotecite] = ACTIONS(5976), - [anon_sym_BSLASHlabel] = ACTIONS(5976), - [anon_sym_BSLASHref] = ACTIONS(5976), - [anon_sym_BSLASHeqref] = ACTIONS(5976), - [anon_sym_BSLASHvref] = ACTIONS(5976), - [anon_sym_BSLASHVref] = ACTIONS(5976), - [anon_sym_BSLASHautoref] = ACTIONS(5976), - [anon_sym_BSLASHpageref] = ACTIONS(5976), - [anon_sym_BSLASHcref] = ACTIONS(5976), - [anon_sym_BSLASHCref] = ACTIONS(5976), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnameCref] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHlabelcref] = ACTIONS(5976), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCrefrange] = ACTIONS(5976), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnewlabel] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5976), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5976), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5978), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHdef] = ACTIONS(5976), - [anon_sym_BSLASHlet] = ACTIONS(5976), - [anon_sym_BSLASHleft] = ACTIONS(5976), - [anon_sym_BSLASHbig] = ACTIONS(5976), - [anon_sym_BSLASHBig] = ACTIONS(5976), - [anon_sym_BSLASHbigg] = ACTIONS(5976), - [anon_sym_BSLASHBigg] = ACTIONS(5976), - [anon_sym_BSLASHbigl] = ACTIONS(5976), - [anon_sym_BSLASHBigl] = ACTIONS(5976), - [anon_sym_BSLASHbiggl] = ACTIONS(5976), - [anon_sym_BSLASHBiggl] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5976), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5976), - [anon_sym_BSLASHgls] = ACTIONS(5976), - [anon_sym_BSLASHGls] = ACTIONS(5976), - [anon_sym_BSLASHGLS] = ACTIONS(5976), - [anon_sym_BSLASHglspl] = ACTIONS(5976), - [anon_sym_BSLASHGlspl] = ACTIONS(5976), - [anon_sym_BSLASHGLSpl] = ACTIONS(5976), - [anon_sym_BSLASHglsdisp] = ACTIONS(5976), - [anon_sym_BSLASHglslink] = ACTIONS(5976), - [anon_sym_BSLASHglstext] = ACTIONS(5976), - [anon_sym_BSLASHGlstext] = ACTIONS(5976), - [anon_sym_BSLASHGLStext] = ACTIONS(5976), - [anon_sym_BSLASHglsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5976), - [anon_sym_BSLASHglsplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSplural] = ACTIONS(5976), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHglsname] = ACTIONS(5976), - [anon_sym_BSLASHGlsname] = ACTIONS(5976), - [anon_sym_BSLASHGLSname] = ACTIONS(5976), - [anon_sym_BSLASHglssymbol] = ACTIONS(5976), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5976), - [anon_sym_BSLASHglsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5976), - [anon_sym_BSLASHglsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5976), - [anon_sym_BSLASHglsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5976), - [anon_sym_BSLASHglsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5976), - [anon_sym_BSLASHglsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5976), - [anon_sym_BSLASHnewacronym] = ACTIONS(5976), - [anon_sym_BSLASHacrshort] = ACTIONS(5976), - [anon_sym_BSLASHAcrshort] = ACTIONS(5976), - [anon_sym_BSLASHACRshort] = ACTIONS(5976), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5976), - [anon_sym_BSLASHacrlong] = ACTIONS(5976), - [anon_sym_BSLASHAcrlong] = ACTIONS(5976), - [anon_sym_BSLASHACRlong] = ACTIONS(5976), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5976), - [anon_sym_BSLASHacrfull] = ACTIONS(5976), - [anon_sym_BSLASHAcrfull] = ACTIONS(5976), - [anon_sym_BSLASHACRfull] = ACTIONS(5976), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5976), - [anon_sym_BSLASHacs] = ACTIONS(5976), - [anon_sym_BSLASHAcs] = ACTIONS(5976), - [anon_sym_BSLASHacsp] = ACTIONS(5976), - [anon_sym_BSLASHAcsp] = ACTIONS(5976), - [anon_sym_BSLASHacl] = ACTIONS(5976), - [anon_sym_BSLASHAcl] = ACTIONS(5976), - [anon_sym_BSLASHaclp] = ACTIONS(5976), - [anon_sym_BSLASHAclp] = ACTIONS(5976), - [anon_sym_BSLASHacf] = ACTIONS(5976), - [anon_sym_BSLASHAcf] = ACTIONS(5976), - [anon_sym_BSLASHacfp] = ACTIONS(5976), - [anon_sym_BSLASHAcfp] = ACTIONS(5976), - [anon_sym_BSLASHac] = ACTIONS(5976), - [anon_sym_BSLASHAc] = ACTIONS(5976), - [anon_sym_BSLASHacp] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5976), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5976), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5976), - [anon_sym_BSLASHcolor] = ACTIONS(5976), - [anon_sym_BSLASHcolorbox] = ACTIONS(5976), - [anon_sym_BSLASHtextcolor] = ACTIONS(5976), - [anon_sym_BSLASHpagecolor] = ACTIONS(5976), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5976), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5976), - [anon_sym_BSLASHtext] = ACTIONS(5976), - [anon_sym_BSLASHintertext] = ACTIONS(5976), - [anon_sym_shortintertext] = ACTIONS(5976), - }, - [1468] = { - [sym_curly_group] = STATE(1469), - [sym_brack_group_text] = STATE(2443), - [sym_command_name] = ACTIONS(5987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5991), - [anon_sym_COMMA] = ACTIONS(5991), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_LPAREN] = ACTIONS(5991), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(5987), - [sym_placeholder] = ACTIONS(5991), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_SQUOTE] = ACTIONS(5987), - [anon_sym__] = ACTIONS(5991), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5991), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(5987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5991), - [anon_sym_BSLASHbegin] = ACTIONS(5987), - [anon_sym_BSLASHend] = ACTIONS(5987), - [anon_sym_BSLASHtitle] = ACTIONS(5987), - [anon_sym_BSLASHauthor] = ACTIONS(5987), - [anon_sym_BSLASHusepackage] = ACTIONS(5987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), - [anon_sym_BSLASHinclude] = ACTIONS(5987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), - [anon_sym_BSLASHinput] = ACTIONS(5987), - [anon_sym_BSLASHsubfile] = ACTIONS(5987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), - [anon_sym_BSLASHbibliography] = ACTIONS(5987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), - [anon_sym_BSLASHincludesvg] = ACTIONS(5987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), - [anon_sym_BSLASHimport] = ACTIONS(5987), - [anon_sym_BSLASHsubimport] = ACTIONS(5987), - [anon_sym_BSLASHinputfrom] = ACTIONS(5987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), - [anon_sym_BSLASHincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHcaption] = ACTIONS(5987), - [anon_sym_BSLASHcite] = ACTIONS(5987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCite] = ACTIONS(5987), - [anon_sym_BSLASHnocite] = ACTIONS(5987), - [anon_sym_BSLASHcitet] = ACTIONS(5987), - [anon_sym_BSLASHcitep] = ACTIONS(5987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteauthor] = ACTIONS(5987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitetitle] = ACTIONS(5987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteyear] = ACTIONS(5987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitedate] = ACTIONS(5987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteurl] = ACTIONS(5987), - [anon_sym_BSLASHfullcite] = ACTIONS(5987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), - [anon_sym_BSLASHcitealt] = ACTIONS(5987), - [anon_sym_BSLASHcitealp] = ACTIONS(5987), - [anon_sym_BSLASHcitetext] = ACTIONS(5987), - [anon_sym_BSLASHparencite] = ACTIONS(5987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHParencite] = ACTIONS(5987), - [anon_sym_BSLASHfootcite] = ACTIONS(5987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), - [anon_sym_BSLASHtextcite] = ACTIONS(5987), - [anon_sym_BSLASHTextcite] = ACTIONS(5987), - [anon_sym_BSLASHsmartcite] = ACTIONS(5987), - [anon_sym_BSLASHSmartcite] = ACTIONS(5987), - [anon_sym_BSLASHsupercite] = ACTIONS(5987), - [anon_sym_BSLASHautocite] = ACTIONS(5987), - [anon_sym_BSLASHAutocite] = ACTIONS(5987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHvolcite] = ACTIONS(5987), - [anon_sym_BSLASHVolcite] = ACTIONS(5987), - [anon_sym_BSLASHpvolcite] = ACTIONS(5987), - [anon_sym_BSLASHPvolcite] = ACTIONS(5987), - [anon_sym_BSLASHfvolcite] = ACTIONS(5987), - [anon_sym_BSLASHftvolcite] = ACTIONS(5987), - [anon_sym_BSLASHsvolcite] = ACTIONS(5987), - [anon_sym_BSLASHSvolcite] = ACTIONS(5987), - [anon_sym_BSLASHtvolcite] = ACTIONS(5987), - [anon_sym_BSLASHTvolcite] = ACTIONS(5987), - [anon_sym_BSLASHavolcite] = ACTIONS(5987), - [anon_sym_BSLASHAvolcite] = ACTIONS(5987), - [anon_sym_BSLASHnotecite] = ACTIONS(5987), - [anon_sym_BSLASHNotecite] = ACTIONS(5987), - [anon_sym_BSLASHpnotecite] = ACTIONS(5987), - [anon_sym_BSLASHPnotecite] = ACTIONS(5987), - [anon_sym_BSLASHfnotecite] = ACTIONS(5987), - [anon_sym_BSLASHlabel] = ACTIONS(5987), - [anon_sym_BSLASHref] = ACTIONS(5987), - [anon_sym_BSLASHeqref] = ACTIONS(5987), - [anon_sym_BSLASHvref] = ACTIONS(5987), - [anon_sym_BSLASHVref] = ACTIONS(5987), - [anon_sym_BSLASHautoref] = ACTIONS(5987), - [anon_sym_BSLASHpageref] = ACTIONS(5987), - [anon_sym_BSLASHcref] = ACTIONS(5987), - [anon_sym_BSLASHCref] = ACTIONS(5987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnameCref] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHlabelcref] = ACTIONS(5987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCrefrange] = ACTIONS(5987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnewlabel] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5991), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHdef] = ACTIONS(5987), - [anon_sym_BSLASHlet] = ACTIONS(5987), - [anon_sym_BSLASHleft] = ACTIONS(5987), - [anon_sym_BSLASHbig] = ACTIONS(5987), - [anon_sym_BSLASHBig] = ACTIONS(5987), - [anon_sym_BSLASHbigg] = ACTIONS(5987), - [anon_sym_BSLASHBigg] = ACTIONS(5987), - [anon_sym_BSLASHbigl] = ACTIONS(5987), - [anon_sym_BSLASHBigl] = ACTIONS(5987), - [anon_sym_BSLASHbiggl] = ACTIONS(5987), - [anon_sym_BSLASHBiggl] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), - [anon_sym_BSLASHgls] = ACTIONS(5987), - [anon_sym_BSLASHGls] = ACTIONS(5987), - [anon_sym_BSLASHGLS] = ACTIONS(5987), - [anon_sym_BSLASHglspl] = ACTIONS(5987), - [anon_sym_BSLASHGlspl] = ACTIONS(5987), - [anon_sym_BSLASHGLSpl] = ACTIONS(5987), - [anon_sym_BSLASHglsdisp] = ACTIONS(5987), - [anon_sym_BSLASHglslink] = ACTIONS(5987), - [anon_sym_BSLASHglstext] = ACTIONS(5987), - [anon_sym_BSLASHGlstext] = ACTIONS(5987), - [anon_sym_BSLASHGLStext] = ACTIONS(5987), - [anon_sym_BSLASHglsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), - [anon_sym_BSLASHglsplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSplural] = ACTIONS(5987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHglsname] = ACTIONS(5987), - [anon_sym_BSLASHGlsname] = ACTIONS(5987), - [anon_sym_BSLASHGLSname] = ACTIONS(5987), - [anon_sym_BSLASHglssymbol] = ACTIONS(5987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), - [anon_sym_BSLASHglsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), - [anon_sym_BSLASHglsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), - [anon_sym_BSLASHglsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), - [anon_sym_BSLASHglsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), - [anon_sym_BSLASHglsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), - [anon_sym_BSLASHnewacronym] = ACTIONS(5987), - [anon_sym_BSLASHacrshort] = ACTIONS(5987), - [anon_sym_BSLASHAcrshort] = ACTIONS(5987), - [anon_sym_BSLASHACRshort] = ACTIONS(5987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), - [anon_sym_BSLASHacrlong] = ACTIONS(5987), - [anon_sym_BSLASHAcrlong] = ACTIONS(5987), - [anon_sym_BSLASHACRlong] = ACTIONS(5987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), - [anon_sym_BSLASHacrfull] = ACTIONS(5987), - [anon_sym_BSLASHAcrfull] = ACTIONS(5987), - [anon_sym_BSLASHACRfull] = ACTIONS(5987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), - [anon_sym_BSLASHacs] = ACTIONS(5987), - [anon_sym_BSLASHAcs] = ACTIONS(5987), - [anon_sym_BSLASHacsp] = ACTIONS(5987), - [anon_sym_BSLASHAcsp] = ACTIONS(5987), - [anon_sym_BSLASHacl] = ACTIONS(5987), - [anon_sym_BSLASHAcl] = ACTIONS(5987), - [anon_sym_BSLASHaclp] = ACTIONS(5987), - [anon_sym_BSLASHAclp] = ACTIONS(5987), - [anon_sym_BSLASHacf] = ACTIONS(5987), - [anon_sym_BSLASHAcf] = ACTIONS(5987), - [anon_sym_BSLASHacfp] = ACTIONS(5987), - [anon_sym_BSLASHAcfp] = ACTIONS(5987), - [anon_sym_BSLASHac] = ACTIONS(5987), - [anon_sym_BSLASHAc] = ACTIONS(5987), - [anon_sym_BSLASHacp] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), - [anon_sym_BSLASHcolor] = ACTIONS(5987), - [anon_sym_BSLASHcolorbox] = ACTIONS(5987), - [anon_sym_BSLASHtextcolor] = ACTIONS(5987), - [anon_sym_BSLASHpagecolor] = ACTIONS(5987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), - [anon_sym_BSLASHtext] = ACTIONS(5987), - [anon_sym_BSLASHintertext] = ACTIONS(5987), - [anon_sym_shortintertext] = ACTIONS(5987), - }, - [1469] = { - [sym_brack_group_text] = STATE(1579), - [sym_command_name] = ACTIONS(6009), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6921), - [anon_sym_RBRACK] = ACTIONS(6011), - [anon_sym_COMMA] = ACTIONS(6011), - [anon_sym_EQ] = ACTIONS(6011), - [anon_sym_LPAREN] = ACTIONS(6011), - [anon_sym_RPAREN] = ACTIONS(6011), - [anon_sym_LBRACE] = ACTIONS(6011), - [sym_word] = ACTIONS(6009), - [sym_placeholder] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_SQUOTE] = ACTIONS(6009), - [anon_sym__] = ACTIONS(6011), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6011), - [anon_sym_DOLLAR] = ACTIONS(6009), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6011), - [anon_sym_BSLASHbegin] = ACTIONS(6009), - [anon_sym_BSLASHend] = ACTIONS(6009), - [anon_sym_BSLASHtitle] = ACTIONS(6009), - [anon_sym_BSLASHauthor] = ACTIONS(6009), - [anon_sym_BSLASHusepackage] = ACTIONS(6009), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6009), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6009), - [anon_sym_BSLASHinclude] = ACTIONS(6009), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6009), - [anon_sym_BSLASHinput] = ACTIONS(6009), - [anon_sym_BSLASHsubfile] = ACTIONS(6009), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6009), - [anon_sym_BSLASHbibliography] = ACTIONS(6009), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6009), - [anon_sym_BSLASHincludesvg] = ACTIONS(6009), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6009), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6009), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6009), - [anon_sym_BSLASHimport] = ACTIONS(6009), - [anon_sym_BSLASHsubimport] = ACTIONS(6009), - [anon_sym_BSLASHinputfrom] = ACTIONS(6009), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6009), - [anon_sym_BSLASHincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHcaption] = ACTIONS(6009), - [anon_sym_BSLASHcite] = ACTIONS(6009), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCite] = ACTIONS(6009), - [anon_sym_BSLASHnocite] = ACTIONS(6009), - [anon_sym_BSLASHcitet] = ACTIONS(6009), - [anon_sym_BSLASHcitep] = ACTIONS(6009), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteauthor] = ACTIONS(6009), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6009), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitetitle] = ACTIONS(6009), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteyear] = ACTIONS(6009), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitedate] = ACTIONS(6009), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteurl] = ACTIONS(6009), - [anon_sym_BSLASHfullcite] = ACTIONS(6009), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6009), - [anon_sym_BSLASHcitealt] = ACTIONS(6009), - [anon_sym_BSLASHcitealp] = ACTIONS(6009), - [anon_sym_BSLASHcitetext] = ACTIONS(6009), - [anon_sym_BSLASHparencite] = ACTIONS(6009), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHParencite] = ACTIONS(6009), - [anon_sym_BSLASHfootcite] = ACTIONS(6009), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6009), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6009), - [anon_sym_BSLASHtextcite] = ACTIONS(6009), - [anon_sym_BSLASHTextcite] = ACTIONS(6009), - [anon_sym_BSLASHsmartcite] = ACTIONS(6009), - [anon_sym_BSLASHSmartcite] = ACTIONS(6009), - [anon_sym_BSLASHsupercite] = ACTIONS(6009), - [anon_sym_BSLASHautocite] = ACTIONS(6009), - [anon_sym_BSLASHAutocite] = ACTIONS(6009), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHvolcite] = ACTIONS(6009), - [anon_sym_BSLASHVolcite] = ACTIONS(6009), - [anon_sym_BSLASHpvolcite] = ACTIONS(6009), - [anon_sym_BSLASHPvolcite] = ACTIONS(6009), - [anon_sym_BSLASHfvolcite] = ACTIONS(6009), - [anon_sym_BSLASHftvolcite] = ACTIONS(6009), - [anon_sym_BSLASHsvolcite] = ACTIONS(6009), - [anon_sym_BSLASHSvolcite] = ACTIONS(6009), - [anon_sym_BSLASHtvolcite] = ACTIONS(6009), - [anon_sym_BSLASHTvolcite] = ACTIONS(6009), - [anon_sym_BSLASHavolcite] = ACTIONS(6009), - [anon_sym_BSLASHAvolcite] = ACTIONS(6009), - [anon_sym_BSLASHnotecite] = ACTIONS(6009), - [anon_sym_BSLASHNotecite] = ACTIONS(6009), - [anon_sym_BSLASHpnotecite] = ACTIONS(6009), - [anon_sym_BSLASHPnotecite] = ACTIONS(6009), - [anon_sym_BSLASHfnotecite] = ACTIONS(6009), - [anon_sym_BSLASHlabel] = ACTIONS(6009), - [anon_sym_BSLASHref] = ACTIONS(6009), - [anon_sym_BSLASHeqref] = ACTIONS(6009), - [anon_sym_BSLASHvref] = ACTIONS(6009), - [anon_sym_BSLASHVref] = ACTIONS(6009), - [anon_sym_BSLASHautoref] = ACTIONS(6009), - [anon_sym_BSLASHpageref] = ACTIONS(6009), - [anon_sym_BSLASHcref] = ACTIONS(6009), - [anon_sym_BSLASHCref] = ACTIONS(6009), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnameCref] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHlabelcref] = ACTIONS(6009), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCrefrange] = ACTIONS(6009), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnewlabel] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6009), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6009), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6011), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHdef] = ACTIONS(6009), - [anon_sym_BSLASHlet] = ACTIONS(6009), - [anon_sym_BSLASHleft] = ACTIONS(6009), - [anon_sym_BSLASHbig] = ACTIONS(6009), - [anon_sym_BSLASHBig] = ACTIONS(6009), - [anon_sym_BSLASHbigg] = ACTIONS(6009), - [anon_sym_BSLASHBigg] = ACTIONS(6009), - [anon_sym_BSLASHbigl] = ACTIONS(6009), - [anon_sym_BSLASHBigl] = ACTIONS(6009), - [anon_sym_BSLASHbiggl] = ACTIONS(6009), - [anon_sym_BSLASHBiggl] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6009), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6009), - [anon_sym_BSLASHgls] = ACTIONS(6009), - [anon_sym_BSLASHGls] = ACTIONS(6009), - [anon_sym_BSLASHGLS] = ACTIONS(6009), - [anon_sym_BSLASHglspl] = ACTIONS(6009), - [anon_sym_BSLASHGlspl] = ACTIONS(6009), - [anon_sym_BSLASHGLSpl] = ACTIONS(6009), - [anon_sym_BSLASHglsdisp] = ACTIONS(6009), - [anon_sym_BSLASHglslink] = ACTIONS(6009), - [anon_sym_BSLASHglstext] = ACTIONS(6009), - [anon_sym_BSLASHGlstext] = ACTIONS(6009), - [anon_sym_BSLASHGLStext] = ACTIONS(6009), - [anon_sym_BSLASHglsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6009), - [anon_sym_BSLASHglsplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSplural] = ACTIONS(6009), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHglsname] = ACTIONS(6009), - [anon_sym_BSLASHGlsname] = ACTIONS(6009), - [anon_sym_BSLASHGLSname] = ACTIONS(6009), - [anon_sym_BSLASHglssymbol] = ACTIONS(6009), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6009), - [anon_sym_BSLASHglsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6009), - [anon_sym_BSLASHglsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6009), - [anon_sym_BSLASHglsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6009), - [anon_sym_BSLASHglsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6009), - [anon_sym_BSLASHglsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6009), - [anon_sym_BSLASHnewacronym] = ACTIONS(6009), - [anon_sym_BSLASHacrshort] = ACTIONS(6009), - [anon_sym_BSLASHAcrshort] = ACTIONS(6009), - [anon_sym_BSLASHACRshort] = ACTIONS(6009), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6009), - [anon_sym_BSLASHacrlong] = ACTIONS(6009), - [anon_sym_BSLASHAcrlong] = ACTIONS(6009), - [anon_sym_BSLASHACRlong] = ACTIONS(6009), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6009), - [anon_sym_BSLASHacrfull] = ACTIONS(6009), - [anon_sym_BSLASHAcrfull] = ACTIONS(6009), - [anon_sym_BSLASHACRfull] = ACTIONS(6009), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6009), - [anon_sym_BSLASHacs] = ACTIONS(6009), - [anon_sym_BSLASHAcs] = ACTIONS(6009), - [anon_sym_BSLASHacsp] = ACTIONS(6009), - [anon_sym_BSLASHAcsp] = ACTIONS(6009), - [anon_sym_BSLASHacl] = ACTIONS(6009), - [anon_sym_BSLASHAcl] = ACTIONS(6009), - [anon_sym_BSLASHaclp] = ACTIONS(6009), - [anon_sym_BSLASHAclp] = ACTIONS(6009), - [anon_sym_BSLASHacf] = ACTIONS(6009), - [anon_sym_BSLASHAcf] = ACTIONS(6009), - [anon_sym_BSLASHacfp] = ACTIONS(6009), - [anon_sym_BSLASHAcfp] = ACTIONS(6009), - [anon_sym_BSLASHac] = ACTIONS(6009), - [anon_sym_BSLASHAc] = ACTIONS(6009), - [anon_sym_BSLASHacp] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6009), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6009), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6009), - [anon_sym_BSLASHcolor] = ACTIONS(6009), - [anon_sym_BSLASHcolorbox] = ACTIONS(6009), - [anon_sym_BSLASHtextcolor] = ACTIONS(6009), - [anon_sym_BSLASHpagecolor] = ACTIONS(6009), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6009), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6009), - [anon_sym_BSLASHtext] = ACTIONS(6009), - [anon_sym_BSLASHintertext] = ACTIONS(6009), - [anon_sym_shortintertext] = ACTIONS(6009), - }, - [1470] = { - [sym_curly_group] = STATE(1596), - [sym_brack_group_text] = STATE(2935), - [sym_command_name] = ACTIONS(5993), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5995), - [anon_sym_COMMA] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(5995), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(5995), - [sym_word] = ACTIONS(5993), - [sym_placeholder] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_BANG] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_SQUOTE] = ACTIONS(5993), - [anon_sym__] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5993), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5995), - [anon_sym_BSLASHtitle] = ACTIONS(5993), - [anon_sym_BSLASHauthor] = ACTIONS(5993), - [anon_sym_BSLASHusepackage] = ACTIONS(5993), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5993), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5993), - [anon_sym_BSLASHinclude] = ACTIONS(5993), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5993), - [anon_sym_BSLASHinput] = ACTIONS(5993), - [anon_sym_BSLASHsubfile] = ACTIONS(5993), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5993), - [anon_sym_BSLASHbibliography] = ACTIONS(5993), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5993), - [anon_sym_BSLASHincludesvg] = ACTIONS(5993), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5993), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5993), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5993), - [anon_sym_BSLASHimport] = ACTIONS(5993), - [anon_sym_BSLASHsubimport] = ACTIONS(5993), - [anon_sym_BSLASHinputfrom] = ACTIONS(5993), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5993), - [anon_sym_BSLASHincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHcaption] = ACTIONS(5993), - [anon_sym_BSLASHcite] = ACTIONS(5993), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCite] = ACTIONS(5993), - [anon_sym_BSLASHnocite] = ACTIONS(5993), - [anon_sym_BSLASHcitet] = ACTIONS(5993), - [anon_sym_BSLASHcitep] = ACTIONS(5993), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteauthor] = ACTIONS(5993), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5993), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitetitle] = ACTIONS(5993), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteyear] = ACTIONS(5993), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitedate] = ACTIONS(5993), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteurl] = ACTIONS(5993), - [anon_sym_BSLASHfullcite] = ACTIONS(5993), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5993), - [anon_sym_BSLASHcitealt] = ACTIONS(5993), - [anon_sym_BSLASHcitealp] = ACTIONS(5993), - [anon_sym_BSLASHcitetext] = ACTIONS(5993), - [anon_sym_BSLASHparencite] = ACTIONS(5993), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHParencite] = ACTIONS(5993), - [anon_sym_BSLASHfootcite] = ACTIONS(5993), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5993), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5993), - [anon_sym_BSLASHtextcite] = ACTIONS(5993), - [anon_sym_BSLASHTextcite] = ACTIONS(5993), - [anon_sym_BSLASHsmartcite] = ACTIONS(5993), - [anon_sym_BSLASHSmartcite] = ACTIONS(5993), - [anon_sym_BSLASHsupercite] = ACTIONS(5993), - [anon_sym_BSLASHautocite] = ACTIONS(5993), - [anon_sym_BSLASHAutocite] = ACTIONS(5993), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHvolcite] = ACTIONS(5993), - [anon_sym_BSLASHVolcite] = ACTIONS(5993), - [anon_sym_BSLASHpvolcite] = ACTIONS(5993), - [anon_sym_BSLASHPvolcite] = ACTIONS(5993), - [anon_sym_BSLASHfvolcite] = ACTIONS(5993), - [anon_sym_BSLASHftvolcite] = ACTIONS(5993), - [anon_sym_BSLASHsvolcite] = ACTIONS(5993), - [anon_sym_BSLASHSvolcite] = ACTIONS(5993), - [anon_sym_BSLASHtvolcite] = ACTIONS(5993), - [anon_sym_BSLASHTvolcite] = ACTIONS(5993), - [anon_sym_BSLASHavolcite] = ACTIONS(5993), - [anon_sym_BSLASHAvolcite] = ACTIONS(5993), - [anon_sym_BSLASHnotecite] = ACTIONS(5993), - [anon_sym_BSLASHNotecite] = ACTIONS(5993), - [anon_sym_BSLASHpnotecite] = ACTIONS(5993), - [anon_sym_BSLASHPnotecite] = ACTIONS(5993), - [anon_sym_BSLASHfnotecite] = ACTIONS(5993), - [anon_sym_BSLASHlabel] = ACTIONS(5993), - [anon_sym_BSLASHref] = ACTIONS(5993), - [anon_sym_BSLASHeqref] = ACTIONS(5993), - [anon_sym_BSLASHvref] = ACTIONS(5993), - [anon_sym_BSLASHVref] = ACTIONS(5993), - [anon_sym_BSLASHautoref] = ACTIONS(5993), - [anon_sym_BSLASHpageref] = ACTIONS(5993), - [anon_sym_BSLASHcref] = ACTIONS(5993), - [anon_sym_BSLASHCref] = ACTIONS(5993), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnameCref] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHlabelcref] = ACTIONS(5993), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCrefrange] = ACTIONS(5993), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnewlabel] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5993), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5993), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5995), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHdef] = ACTIONS(5993), - [anon_sym_BSLASHlet] = ACTIONS(5993), - [anon_sym_BSLASHleft] = ACTIONS(5993), - [anon_sym_BSLASHbig] = ACTIONS(5993), - [anon_sym_BSLASHBig] = ACTIONS(5993), - [anon_sym_BSLASHbigg] = ACTIONS(5993), - [anon_sym_BSLASHBigg] = ACTIONS(5993), - [anon_sym_BSLASHbigl] = ACTIONS(5993), - [anon_sym_BSLASHBigl] = ACTIONS(5993), - [anon_sym_BSLASHbiggl] = ACTIONS(5993), - [anon_sym_BSLASHBiggl] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5993), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5993), - [anon_sym_BSLASHgls] = ACTIONS(5993), - [anon_sym_BSLASHGls] = ACTIONS(5993), - [anon_sym_BSLASHGLS] = ACTIONS(5993), - [anon_sym_BSLASHglspl] = ACTIONS(5993), - [anon_sym_BSLASHGlspl] = ACTIONS(5993), - [anon_sym_BSLASHGLSpl] = ACTIONS(5993), - [anon_sym_BSLASHglsdisp] = ACTIONS(5993), - [anon_sym_BSLASHglslink] = ACTIONS(5993), - [anon_sym_BSLASHglstext] = ACTIONS(5993), - [anon_sym_BSLASHGlstext] = ACTIONS(5993), - [anon_sym_BSLASHGLStext] = ACTIONS(5993), - [anon_sym_BSLASHglsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5993), - [anon_sym_BSLASHglsplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSplural] = ACTIONS(5993), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHglsname] = ACTIONS(5993), - [anon_sym_BSLASHGlsname] = ACTIONS(5993), - [anon_sym_BSLASHGLSname] = ACTIONS(5993), - [anon_sym_BSLASHglssymbol] = ACTIONS(5993), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5993), - [anon_sym_BSLASHglsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5993), - [anon_sym_BSLASHglsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5993), - [anon_sym_BSLASHglsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5993), - [anon_sym_BSLASHglsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5993), - [anon_sym_BSLASHglsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5993), - [anon_sym_BSLASHnewacronym] = ACTIONS(5993), - [anon_sym_BSLASHacrshort] = ACTIONS(5993), - [anon_sym_BSLASHAcrshort] = ACTIONS(5993), - [anon_sym_BSLASHACRshort] = ACTIONS(5993), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5993), - [anon_sym_BSLASHacrlong] = ACTIONS(5993), - [anon_sym_BSLASHAcrlong] = ACTIONS(5993), - [anon_sym_BSLASHACRlong] = ACTIONS(5993), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5993), - [anon_sym_BSLASHacrfull] = ACTIONS(5993), - [anon_sym_BSLASHAcrfull] = ACTIONS(5993), - [anon_sym_BSLASHACRfull] = ACTIONS(5993), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5993), - [anon_sym_BSLASHacs] = ACTIONS(5993), - [anon_sym_BSLASHAcs] = ACTIONS(5993), - [anon_sym_BSLASHacsp] = ACTIONS(5993), - [anon_sym_BSLASHAcsp] = ACTIONS(5993), - [anon_sym_BSLASHacl] = ACTIONS(5993), - [anon_sym_BSLASHAcl] = ACTIONS(5993), - [anon_sym_BSLASHaclp] = ACTIONS(5993), - [anon_sym_BSLASHAclp] = ACTIONS(5993), - [anon_sym_BSLASHacf] = ACTIONS(5993), - [anon_sym_BSLASHAcf] = ACTIONS(5993), - [anon_sym_BSLASHacfp] = ACTIONS(5993), - [anon_sym_BSLASHAcfp] = ACTIONS(5993), - [anon_sym_BSLASHac] = ACTIONS(5993), - [anon_sym_BSLASHAc] = ACTIONS(5993), - [anon_sym_BSLASHacp] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5993), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5993), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5993), - [anon_sym_BSLASHcolor] = ACTIONS(5993), - [anon_sym_BSLASHcolorbox] = ACTIONS(5993), - [anon_sym_BSLASHtextcolor] = ACTIONS(5993), - [anon_sym_BSLASHpagecolor] = ACTIONS(5993), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5993), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5993), - [anon_sym_BSLASHtext] = ACTIONS(5993), - [anon_sym_BSLASHintertext] = ACTIONS(5993), - [anon_sym_shortintertext] = ACTIONS(5993), - }, - [1471] = { - [sym_command_name] = ACTIONS(5968), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5968), - [anon_sym_BSLASHfi] = ACTIONS(6923), - [anon_sym_LBRACK] = ACTIONS(5972), - [anon_sym_RBRACK] = ACTIONS(5972), - [anon_sym_COMMA] = ACTIONS(5972), - [anon_sym_EQ] = ACTIONS(5972), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_RPAREN] = ACTIONS(5972), - [anon_sym_LBRACE] = ACTIONS(5972), - [sym_word] = ACTIONS(5968), - [sym_placeholder] = ACTIONS(5972), - [anon_sym_PLUS] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5972), - [anon_sym_STAR] = ACTIONS(5972), - [anon_sym_SLASH] = ACTIONS(5972), - [anon_sym_LT] = ACTIONS(5968), - [anon_sym_GT] = ACTIONS(5968), - [anon_sym_BANG] = ACTIONS(5968), - [anon_sym_PIPE] = ACTIONS(5968), - [anon_sym_COLON] = ACTIONS(5968), - [anon_sym_SQUOTE] = ACTIONS(5968), - [anon_sym__] = ACTIONS(5972), - [anon_sym_CARET] = ACTIONS(5972), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5972), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5972), - [anon_sym_DOLLAR] = ACTIONS(5968), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5972), - [anon_sym_BSLASHbegin] = ACTIONS(5968), - [anon_sym_BSLASHtitle] = ACTIONS(5968), - [anon_sym_BSLASHauthor] = ACTIONS(5968), - [anon_sym_BSLASHusepackage] = ACTIONS(5968), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5968), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5968), - [anon_sym_BSLASHinclude] = ACTIONS(5968), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5968), - [anon_sym_BSLASHinput] = ACTIONS(5968), - [anon_sym_BSLASHsubfile] = ACTIONS(5968), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5968), - [anon_sym_BSLASHbibliography] = ACTIONS(5968), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5968), - [anon_sym_BSLASHincludesvg] = ACTIONS(5968), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5968), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5968), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5968), - [anon_sym_BSLASHimport] = ACTIONS(5968), - [anon_sym_BSLASHsubimport] = ACTIONS(5968), - [anon_sym_BSLASHinputfrom] = ACTIONS(5968), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5968), - [anon_sym_BSLASHincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHcaption] = ACTIONS(5968), - [anon_sym_BSLASHcite] = ACTIONS(5968), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCite] = ACTIONS(5968), - [anon_sym_BSLASHnocite] = ACTIONS(5968), - [anon_sym_BSLASHcitet] = ACTIONS(5968), - [anon_sym_BSLASHcitep] = ACTIONS(5968), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteauthor] = ACTIONS(5968), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5968), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitetitle] = ACTIONS(5968), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteyear] = ACTIONS(5968), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitedate] = ACTIONS(5968), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteurl] = ACTIONS(5968), - [anon_sym_BSLASHfullcite] = ACTIONS(5968), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5968), - [anon_sym_BSLASHcitealt] = ACTIONS(5968), - [anon_sym_BSLASHcitealp] = ACTIONS(5968), - [anon_sym_BSLASHcitetext] = ACTIONS(5968), - [anon_sym_BSLASHparencite] = ACTIONS(5968), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHParencite] = ACTIONS(5968), - [anon_sym_BSLASHfootcite] = ACTIONS(5968), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5968), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5968), - [anon_sym_BSLASHtextcite] = ACTIONS(5968), - [anon_sym_BSLASHTextcite] = ACTIONS(5968), - [anon_sym_BSLASHsmartcite] = ACTIONS(5968), - [anon_sym_BSLASHSmartcite] = ACTIONS(5968), - [anon_sym_BSLASHsupercite] = ACTIONS(5968), - [anon_sym_BSLASHautocite] = ACTIONS(5968), - [anon_sym_BSLASHAutocite] = ACTIONS(5968), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHvolcite] = ACTIONS(5968), - [anon_sym_BSLASHVolcite] = ACTIONS(5968), - [anon_sym_BSLASHpvolcite] = ACTIONS(5968), - [anon_sym_BSLASHPvolcite] = ACTIONS(5968), - [anon_sym_BSLASHfvolcite] = ACTIONS(5968), - [anon_sym_BSLASHftvolcite] = ACTIONS(5968), - [anon_sym_BSLASHsvolcite] = ACTIONS(5968), - [anon_sym_BSLASHSvolcite] = ACTIONS(5968), - [anon_sym_BSLASHtvolcite] = ACTIONS(5968), - [anon_sym_BSLASHTvolcite] = ACTIONS(5968), - [anon_sym_BSLASHavolcite] = ACTIONS(5968), - [anon_sym_BSLASHAvolcite] = ACTIONS(5968), - [anon_sym_BSLASHnotecite] = ACTIONS(5968), - [anon_sym_BSLASHNotecite] = ACTIONS(5968), - [anon_sym_BSLASHpnotecite] = ACTIONS(5968), - [anon_sym_BSLASHPnotecite] = ACTIONS(5968), - [anon_sym_BSLASHfnotecite] = ACTIONS(5968), - [anon_sym_BSLASHlabel] = ACTIONS(5968), - [anon_sym_BSLASHref] = ACTIONS(5968), - [anon_sym_BSLASHeqref] = ACTIONS(5968), - [anon_sym_BSLASHvref] = ACTIONS(5968), - [anon_sym_BSLASHVref] = ACTIONS(5968), - [anon_sym_BSLASHautoref] = ACTIONS(5968), - [anon_sym_BSLASHpageref] = ACTIONS(5968), - [anon_sym_BSLASHcref] = ACTIONS(5968), - [anon_sym_BSLASHCref] = ACTIONS(5968), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnameCref] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHlabelcref] = ACTIONS(5968), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCrefrange] = ACTIONS(5968), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnewlabel] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5968), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5968), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5972), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHdef] = ACTIONS(5968), - [anon_sym_BSLASHlet] = ACTIONS(5968), - [anon_sym_BSLASHleft] = ACTIONS(5968), - [anon_sym_BSLASHbig] = ACTIONS(5968), - [anon_sym_BSLASHBig] = ACTIONS(5968), - [anon_sym_BSLASHbigg] = ACTIONS(5968), - [anon_sym_BSLASHBigg] = ACTIONS(5968), - [anon_sym_BSLASHbigl] = ACTIONS(5968), - [anon_sym_BSLASHBigl] = ACTIONS(5968), - [anon_sym_BSLASHbiggl] = ACTIONS(5968), - [anon_sym_BSLASHBiggl] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5968), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5968), - [anon_sym_BSLASHgls] = ACTIONS(5968), - [anon_sym_BSLASHGls] = ACTIONS(5968), - [anon_sym_BSLASHGLS] = ACTIONS(5968), - [anon_sym_BSLASHglspl] = ACTIONS(5968), - [anon_sym_BSLASHGlspl] = ACTIONS(5968), - [anon_sym_BSLASHGLSpl] = ACTIONS(5968), - [anon_sym_BSLASHglsdisp] = ACTIONS(5968), - [anon_sym_BSLASHglslink] = ACTIONS(5968), - [anon_sym_BSLASHglstext] = ACTIONS(5968), - [anon_sym_BSLASHGlstext] = ACTIONS(5968), - [anon_sym_BSLASHGLStext] = ACTIONS(5968), - [anon_sym_BSLASHglsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5968), - [anon_sym_BSLASHglsplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSplural] = ACTIONS(5968), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHglsname] = ACTIONS(5968), - [anon_sym_BSLASHGlsname] = ACTIONS(5968), - [anon_sym_BSLASHGLSname] = ACTIONS(5968), - [anon_sym_BSLASHglssymbol] = ACTIONS(5968), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5968), - [anon_sym_BSLASHglsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5968), - [anon_sym_BSLASHglsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5968), - [anon_sym_BSLASHglsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5968), - [anon_sym_BSLASHglsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5968), - [anon_sym_BSLASHglsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5968), - [anon_sym_BSLASHnewacronym] = ACTIONS(5968), - [anon_sym_BSLASHacrshort] = ACTIONS(5968), - [anon_sym_BSLASHAcrshort] = ACTIONS(5968), - [anon_sym_BSLASHACRshort] = ACTIONS(5968), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5968), - [anon_sym_BSLASHacrlong] = ACTIONS(5968), - [anon_sym_BSLASHAcrlong] = ACTIONS(5968), - [anon_sym_BSLASHACRlong] = ACTIONS(5968), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5968), - [anon_sym_BSLASHacrfull] = ACTIONS(5968), - [anon_sym_BSLASHAcrfull] = ACTIONS(5968), - [anon_sym_BSLASHACRfull] = ACTIONS(5968), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5968), - [anon_sym_BSLASHacs] = ACTIONS(5968), - [anon_sym_BSLASHAcs] = ACTIONS(5968), - [anon_sym_BSLASHacsp] = ACTIONS(5968), - [anon_sym_BSLASHAcsp] = ACTIONS(5968), - [anon_sym_BSLASHacl] = ACTIONS(5968), - [anon_sym_BSLASHAcl] = ACTIONS(5968), - [anon_sym_BSLASHaclp] = ACTIONS(5968), - [anon_sym_BSLASHAclp] = ACTIONS(5968), - [anon_sym_BSLASHacf] = ACTIONS(5968), - [anon_sym_BSLASHAcf] = ACTIONS(5968), - [anon_sym_BSLASHacfp] = ACTIONS(5968), - [anon_sym_BSLASHAcfp] = ACTIONS(5968), - [anon_sym_BSLASHac] = ACTIONS(5968), - [anon_sym_BSLASHAc] = ACTIONS(5968), - [anon_sym_BSLASHacp] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5968), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5968), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5968), - [anon_sym_BSLASHcolor] = ACTIONS(5968), - [anon_sym_BSLASHcolorbox] = ACTIONS(5968), - [anon_sym_BSLASHtextcolor] = ACTIONS(5968), - [anon_sym_BSLASHpagecolor] = ACTIONS(5968), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5968), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5968), - [anon_sym_BSLASHtext] = ACTIONS(5968), - [anon_sym_BSLASHintertext] = ACTIONS(5968), - [anon_sym_shortintertext] = ACTIONS(5968), - [sym__trivia_raw_fi] = ACTIONS(6925), - }, - [1472] = { - [sym_curly_group] = STATE(1592), - [sym_command_name] = ACTIONS(6013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6013), - [anon_sym_LBRACK] = ACTIONS(6015), - [anon_sym_RBRACK] = ACTIONS(6015), - [anon_sym_COMMA] = ACTIONS(6015), - [anon_sym_EQ] = ACTIONS(6015), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_RPAREN] = ACTIONS(6015), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(6013), - [sym_placeholder] = ACTIONS(6015), - [anon_sym_PLUS] = ACTIONS(6015), - [anon_sym_DASH] = ACTIONS(6015), - [anon_sym_STAR] = ACTIONS(6015), - [anon_sym_SLASH] = ACTIONS(6015), - [anon_sym_LT] = ACTIONS(6013), - [anon_sym_GT] = ACTIONS(6013), - [anon_sym_BANG] = ACTIONS(6013), - [anon_sym_PIPE] = ACTIONS(6013), - [anon_sym_COLON] = ACTIONS(6013), - [anon_sym_SQUOTE] = ACTIONS(6013), - [anon_sym__] = ACTIONS(6015), - [anon_sym_CARET] = ACTIONS(6015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), - [anon_sym_DOLLAR] = ACTIONS(6013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), - [anon_sym_BSLASHbegin] = ACTIONS(6013), - [anon_sym_BSLASHend] = ACTIONS(6013), - [anon_sym_BSLASHtitle] = ACTIONS(6013), - [anon_sym_BSLASHauthor] = ACTIONS(6013), - [anon_sym_BSLASHusepackage] = ACTIONS(6013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6013), - [anon_sym_BSLASHinclude] = ACTIONS(6013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6013), - [anon_sym_BSLASHinput] = ACTIONS(6013), - [anon_sym_BSLASHsubfile] = ACTIONS(6013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6013), - [anon_sym_BSLASHbibliography] = ACTIONS(6013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6013), - [anon_sym_BSLASHincludesvg] = ACTIONS(6013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6013), - [anon_sym_BSLASHimport] = ACTIONS(6013), - [anon_sym_BSLASHsubimport] = ACTIONS(6013), - [anon_sym_BSLASHinputfrom] = ACTIONS(6013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6013), - [anon_sym_BSLASHincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHcaption] = ACTIONS(6013), - [anon_sym_BSLASHcite] = ACTIONS(6013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCite] = ACTIONS(6013), - [anon_sym_BSLASHnocite] = ACTIONS(6013), - [anon_sym_BSLASHcitet] = ACTIONS(6013), - [anon_sym_BSLASHcitep] = ACTIONS(6013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteauthor] = ACTIONS(6013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitetitle] = ACTIONS(6013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteyear] = ACTIONS(6013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitedate] = ACTIONS(6013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteurl] = ACTIONS(6013), - [anon_sym_BSLASHfullcite] = ACTIONS(6013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6013), - [anon_sym_BSLASHcitealt] = ACTIONS(6013), - [anon_sym_BSLASHcitealp] = ACTIONS(6013), - [anon_sym_BSLASHcitetext] = ACTIONS(6013), - [anon_sym_BSLASHparencite] = ACTIONS(6013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHParencite] = ACTIONS(6013), - [anon_sym_BSLASHfootcite] = ACTIONS(6013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6013), - [anon_sym_BSLASHtextcite] = ACTIONS(6013), - [anon_sym_BSLASHTextcite] = ACTIONS(6013), - [anon_sym_BSLASHsmartcite] = ACTIONS(6013), - [anon_sym_BSLASHSmartcite] = ACTIONS(6013), - [anon_sym_BSLASHsupercite] = ACTIONS(6013), - [anon_sym_BSLASHautocite] = ACTIONS(6013), - [anon_sym_BSLASHAutocite] = ACTIONS(6013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHvolcite] = ACTIONS(6013), - [anon_sym_BSLASHVolcite] = ACTIONS(6013), - [anon_sym_BSLASHpvolcite] = ACTIONS(6013), - [anon_sym_BSLASHPvolcite] = ACTIONS(6013), - [anon_sym_BSLASHfvolcite] = ACTIONS(6013), - [anon_sym_BSLASHftvolcite] = ACTIONS(6013), - [anon_sym_BSLASHsvolcite] = ACTIONS(6013), - [anon_sym_BSLASHSvolcite] = ACTIONS(6013), - [anon_sym_BSLASHtvolcite] = ACTIONS(6013), - [anon_sym_BSLASHTvolcite] = ACTIONS(6013), - [anon_sym_BSLASHavolcite] = ACTIONS(6013), - [anon_sym_BSLASHAvolcite] = ACTIONS(6013), - [anon_sym_BSLASHnotecite] = ACTIONS(6013), - [anon_sym_BSLASHNotecite] = ACTIONS(6013), - [anon_sym_BSLASHpnotecite] = ACTIONS(6013), - [anon_sym_BSLASHPnotecite] = ACTIONS(6013), - [anon_sym_BSLASHfnotecite] = ACTIONS(6013), - [anon_sym_BSLASHlabel] = ACTIONS(6013), - [anon_sym_BSLASHref] = ACTIONS(6013), - [anon_sym_BSLASHeqref] = ACTIONS(6013), - [anon_sym_BSLASHvref] = ACTIONS(6013), - [anon_sym_BSLASHVref] = ACTIONS(6013), - [anon_sym_BSLASHautoref] = ACTIONS(6013), - [anon_sym_BSLASHpageref] = ACTIONS(6013), - [anon_sym_BSLASHcref] = ACTIONS(6013), - [anon_sym_BSLASHCref] = ACTIONS(6013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnameCref] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHlabelcref] = ACTIONS(6013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCrefrange] = ACTIONS(6013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnewlabel] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHdef] = ACTIONS(6013), - [anon_sym_BSLASHlet] = ACTIONS(6013), - [anon_sym_BSLASHleft] = ACTIONS(6013), - [anon_sym_BSLASHbig] = ACTIONS(6013), - [anon_sym_BSLASHBig] = ACTIONS(6013), - [anon_sym_BSLASHbigg] = ACTIONS(6013), - [anon_sym_BSLASHBigg] = ACTIONS(6013), - [anon_sym_BSLASHbigl] = ACTIONS(6013), - [anon_sym_BSLASHBigl] = ACTIONS(6013), - [anon_sym_BSLASHbiggl] = ACTIONS(6013), - [anon_sym_BSLASHBiggl] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6013), - [anon_sym_BSLASHgls] = ACTIONS(6013), - [anon_sym_BSLASHGls] = ACTIONS(6013), - [anon_sym_BSLASHGLS] = ACTIONS(6013), - [anon_sym_BSLASHglspl] = ACTIONS(6013), - [anon_sym_BSLASHGlspl] = ACTIONS(6013), - [anon_sym_BSLASHGLSpl] = ACTIONS(6013), - [anon_sym_BSLASHglsdisp] = ACTIONS(6013), - [anon_sym_BSLASHglslink] = ACTIONS(6013), - [anon_sym_BSLASHglstext] = ACTIONS(6013), - [anon_sym_BSLASHGlstext] = ACTIONS(6013), - [anon_sym_BSLASHGLStext] = ACTIONS(6013), - [anon_sym_BSLASHglsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6013), - [anon_sym_BSLASHglsplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSplural] = ACTIONS(6013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHglsname] = ACTIONS(6013), - [anon_sym_BSLASHGlsname] = ACTIONS(6013), - [anon_sym_BSLASHGLSname] = ACTIONS(6013), - [anon_sym_BSLASHglssymbol] = ACTIONS(6013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6013), - [anon_sym_BSLASHglsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6013), - [anon_sym_BSLASHglsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6013), - [anon_sym_BSLASHglsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6013), - [anon_sym_BSLASHglsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6013), - [anon_sym_BSLASHglsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6013), - [anon_sym_BSLASHnewacronym] = ACTIONS(6013), - [anon_sym_BSLASHacrshort] = ACTIONS(6013), - [anon_sym_BSLASHAcrshort] = ACTIONS(6013), - [anon_sym_BSLASHACRshort] = ACTIONS(6013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6013), - [anon_sym_BSLASHacrlong] = ACTIONS(6013), - [anon_sym_BSLASHAcrlong] = ACTIONS(6013), - [anon_sym_BSLASHACRlong] = ACTIONS(6013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6013), - [anon_sym_BSLASHacrfull] = ACTIONS(6013), - [anon_sym_BSLASHAcrfull] = ACTIONS(6013), - [anon_sym_BSLASHACRfull] = ACTIONS(6013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6013), - [anon_sym_BSLASHacs] = ACTIONS(6013), - [anon_sym_BSLASHAcs] = ACTIONS(6013), - [anon_sym_BSLASHacsp] = ACTIONS(6013), - [anon_sym_BSLASHAcsp] = ACTIONS(6013), - [anon_sym_BSLASHacl] = ACTIONS(6013), - [anon_sym_BSLASHAcl] = ACTIONS(6013), - [anon_sym_BSLASHaclp] = ACTIONS(6013), - [anon_sym_BSLASHAclp] = ACTIONS(6013), - [anon_sym_BSLASHacf] = ACTIONS(6013), - [anon_sym_BSLASHAcf] = ACTIONS(6013), - [anon_sym_BSLASHacfp] = ACTIONS(6013), - [anon_sym_BSLASHAcfp] = ACTIONS(6013), - [anon_sym_BSLASHac] = ACTIONS(6013), - [anon_sym_BSLASHAc] = ACTIONS(6013), - [anon_sym_BSLASHacp] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6013), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6013), - [anon_sym_BSLASHcolor] = ACTIONS(6013), - [anon_sym_BSLASHcolorbox] = ACTIONS(6013), - [anon_sym_BSLASHtextcolor] = ACTIONS(6013), - [anon_sym_BSLASHpagecolor] = ACTIONS(6013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6013), - [anon_sym_BSLASHtext] = ACTIONS(6013), - [anon_sym_BSLASHintertext] = ACTIONS(6013), - [anon_sym_shortintertext] = ACTIONS(6013), - }, - [1473] = { - [sym_curly_group] = STATE(1495), - [sym_brack_group_text] = STATE(2556), - [sym_command_name] = ACTIONS(5987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5991), - [anon_sym_COMMA] = ACTIONS(5991), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_LPAREN] = ACTIONS(5991), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_LBRACE] = ACTIONS(3520), - [sym_word] = ACTIONS(5987), - [sym_placeholder] = ACTIONS(5991), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_SQUOTE] = ACTIONS(5987), - [anon_sym__] = ACTIONS(5991), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5991), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(5987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5991), - [anon_sym_BSLASHbegin] = ACTIONS(5987), - [anon_sym_BSLASHtitle] = ACTIONS(5987), - [anon_sym_BSLASHauthor] = ACTIONS(5987), - [anon_sym_BSLASHusepackage] = ACTIONS(5987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), - [anon_sym_BSLASHinclude] = ACTIONS(5987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), - [anon_sym_BSLASHinput] = ACTIONS(5987), - [anon_sym_BSLASHsubfile] = ACTIONS(5987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), - [anon_sym_BSLASHbibliography] = ACTIONS(5987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), - [anon_sym_BSLASHincludesvg] = ACTIONS(5987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), - [anon_sym_BSLASHimport] = ACTIONS(5987), - [anon_sym_BSLASHsubimport] = ACTIONS(5987), - [anon_sym_BSLASHinputfrom] = ACTIONS(5987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), - [anon_sym_BSLASHincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHcaption] = ACTIONS(5987), - [anon_sym_BSLASHcite] = ACTIONS(5987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCite] = ACTIONS(5987), - [anon_sym_BSLASHnocite] = ACTIONS(5987), - [anon_sym_BSLASHcitet] = ACTIONS(5987), - [anon_sym_BSLASHcitep] = ACTIONS(5987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteauthor] = ACTIONS(5987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitetitle] = ACTIONS(5987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteyear] = ACTIONS(5987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitedate] = ACTIONS(5987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteurl] = ACTIONS(5987), - [anon_sym_BSLASHfullcite] = ACTIONS(5987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), - [anon_sym_BSLASHcitealt] = ACTIONS(5987), - [anon_sym_BSLASHcitealp] = ACTIONS(5987), - [anon_sym_BSLASHcitetext] = ACTIONS(5987), - [anon_sym_BSLASHparencite] = ACTIONS(5987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHParencite] = ACTIONS(5987), - [anon_sym_BSLASHfootcite] = ACTIONS(5987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), - [anon_sym_BSLASHtextcite] = ACTIONS(5987), - [anon_sym_BSLASHTextcite] = ACTIONS(5987), - [anon_sym_BSLASHsmartcite] = ACTIONS(5987), - [anon_sym_BSLASHSmartcite] = ACTIONS(5987), - [anon_sym_BSLASHsupercite] = ACTIONS(5987), - [anon_sym_BSLASHautocite] = ACTIONS(5987), - [anon_sym_BSLASHAutocite] = ACTIONS(5987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHvolcite] = ACTIONS(5987), - [anon_sym_BSLASHVolcite] = ACTIONS(5987), - [anon_sym_BSLASHpvolcite] = ACTIONS(5987), - [anon_sym_BSLASHPvolcite] = ACTIONS(5987), - [anon_sym_BSLASHfvolcite] = ACTIONS(5987), - [anon_sym_BSLASHftvolcite] = ACTIONS(5987), - [anon_sym_BSLASHsvolcite] = ACTIONS(5987), - [anon_sym_BSLASHSvolcite] = ACTIONS(5987), - [anon_sym_BSLASHtvolcite] = ACTIONS(5987), - [anon_sym_BSLASHTvolcite] = ACTIONS(5987), - [anon_sym_BSLASHavolcite] = ACTIONS(5987), - [anon_sym_BSLASHAvolcite] = ACTIONS(5987), - [anon_sym_BSLASHnotecite] = ACTIONS(5987), - [anon_sym_BSLASHNotecite] = ACTIONS(5987), - [anon_sym_BSLASHpnotecite] = ACTIONS(5987), - [anon_sym_BSLASHPnotecite] = ACTIONS(5987), - [anon_sym_BSLASHfnotecite] = ACTIONS(5987), - [anon_sym_BSLASHlabel] = ACTIONS(5987), - [anon_sym_BSLASHref] = ACTIONS(5987), - [anon_sym_BSLASHeqref] = ACTIONS(5987), - [anon_sym_BSLASHvref] = ACTIONS(5987), - [anon_sym_BSLASHVref] = ACTIONS(5987), - [anon_sym_BSLASHautoref] = ACTIONS(5987), - [anon_sym_BSLASHpageref] = ACTIONS(5987), - [anon_sym_BSLASHcref] = ACTIONS(5987), - [anon_sym_BSLASHCref] = ACTIONS(5987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnameCref] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHlabelcref] = ACTIONS(5987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCrefrange] = ACTIONS(5987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnewlabel] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5991), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHdef] = ACTIONS(5987), - [anon_sym_BSLASHlet] = ACTIONS(5987), - [anon_sym_BSLASHleft] = ACTIONS(5987), - [anon_sym_BSLASHbig] = ACTIONS(5987), - [anon_sym_BSLASHBig] = ACTIONS(5987), - [anon_sym_BSLASHbigg] = ACTIONS(5987), - [anon_sym_BSLASHBigg] = ACTIONS(5987), - [anon_sym_BSLASHbigl] = ACTIONS(5987), - [anon_sym_BSLASHBigl] = ACTIONS(5987), - [anon_sym_BSLASHbiggl] = ACTIONS(5987), - [anon_sym_BSLASHBiggl] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), - [anon_sym_BSLASHgls] = ACTIONS(5987), - [anon_sym_BSLASHGls] = ACTIONS(5987), - [anon_sym_BSLASHGLS] = ACTIONS(5987), - [anon_sym_BSLASHglspl] = ACTIONS(5987), - [anon_sym_BSLASHGlspl] = ACTIONS(5987), - [anon_sym_BSLASHGLSpl] = ACTIONS(5987), - [anon_sym_BSLASHglsdisp] = ACTIONS(5987), - [anon_sym_BSLASHglslink] = ACTIONS(5987), - [anon_sym_BSLASHglstext] = ACTIONS(5987), - [anon_sym_BSLASHGlstext] = ACTIONS(5987), - [anon_sym_BSLASHGLStext] = ACTIONS(5987), - [anon_sym_BSLASHglsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), - [anon_sym_BSLASHglsplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSplural] = ACTIONS(5987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHglsname] = ACTIONS(5987), - [anon_sym_BSLASHGlsname] = ACTIONS(5987), - [anon_sym_BSLASHGLSname] = ACTIONS(5987), - [anon_sym_BSLASHglssymbol] = ACTIONS(5987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), - [anon_sym_BSLASHglsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), - [anon_sym_BSLASHglsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), - [anon_sym_BSLASHglsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), - [anon_sym_BSLASHglsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), - [anon_sym_BSLASHglsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), - [anon_sym_BSLASHnewacronym] = ACTIONS(5987), - [anon_sym_BSLASHacrshort] = ACTIONS(5987), - [anon_sym_BSLASHAcrshort] = ACTIONS(5987), - [anon_sym_BSLASHACRshort] = ACTIONS(5987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), - [anon_sym_BSLASHacrlong] = ACTIONS(5987), - [anon_sym_BSLASHAcrlong] = ACTIONS(5987), - [anon_sym_BSLASHACRlong] = ACTIONS(5987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), - [anon_sym_BSLASHacrfull] = ACTIONS(5987), - [anon_sym_BSLASHAcrfull] = ACTIONS(5987), - [anon_sym_BSLASHACRfull] = ACTIONS(5987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), - [anon_sym_BSLASHacs] = ACTIONS(5987), - [anon_sym_BSLASHAcs] = ACTIONS(5987), - [anon_sym_BSLASHacsp] = ACTIONS(5987), - [anon_sym_BSLASHAcsp] = ACTIONS(5987), - [anon_sym_BSLASHacl] = ACTIONS(5987), - [anon_sym_BSLASHAcl] = ACTIONS(5987), - [anon_sym_BSLASHaclp] = ACTIONS(5987), - [anon_sym_BSLASHAclp] = ACTIONS(5987), - [anon_sym_BSLASHacf] = ACTIONS(5987), - [anon_sym_BSLASHAcf] = ACTIONS(5987), - [anon_sym_BSLASHacfp] = ACTIONS(5987), - [anon_sym_BSLASHAcfp] = ACTIONS(5987), - [anon_sym_BSLASHac] = ACTIONS(5987), - [anon_sym_BSLASHAc] = ACTIONS(5987), - [anon_sym_BSLASHacp] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), - [anon_sym_BSLASHcolor] = ACTIONS(5987), - [anon_sym_BSLASHcolorbox] = ACTIONS(5987), - [anon_sym_BSLASHtextcolor] = ACTIONS(5987), - [anon_sym_BSLASHpagecolor] = ACTIONS(5987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), - [anon_sym_BSLASHtext] = ACTIONS(5987), - [anon_sym_BSLASHintertext] = ACTIONS(5987), - [anon_sym_shortintertext] = ACTIONS(5987), - }, - [1474] = { - [sym_curly_group] = STATE(1696), - [aux_sym_generic_command_repeat1] = STATE(1474), - [sym_command_name] = ACTIONS(5976), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5976), - [anon_sym_LBRACK] = ACTIONS(5978), - [anon_sym_RBRACK] = ACTIONS(5978), - [anon_sym_COMMA] = ACTIONS(5978), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LPAREN] = ACTIONS(5978), - [anon_sym_RPAREN] = ACTIONS(5978), - [anon_sym_LBRACE] = ACTIONS(6927), - [anon_sym_RBRACE] = ACTIONS(5978), - [sym_word] = ACTIONS(5976), - [sym_placeholder] = ACTIONS(5978), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_STAR] = ACTIONS(5978), - [anon_sym_SLASH] = ACTIONS(5978), - [anon_sym_LT] = ACTIONS(5976), - [anon_sym_GT] = ACTIONS(5976), - [anon_sym_BANG] = ACTIONS(5976), - [anon_sym_PIPE] = ACTIONS(5976), - [anon_sym_COLON] = ACTIONS(5976), - [anon_sym_SQUOTE] = ACTIONS(5976), - [anon_sym__] = ACTIONS(5978), - [anon_sym_CARET] = ACTIONS(5978), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5978), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5978), - [anon_sym_DOLLAR] = ACTIONS(5976), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5978), - [anon_sym_BSLASHtitle] = ACTIONS(5976), - [anon_sym_BSLASHauthor] = ACTIONS(5976), - [anon_sym_BSLASHusepackage] = ACTIONS(5976), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5976), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5976), - [anon_sym_BSLASHinclude] = ACTIONS(5976), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5976), - [anon_sym_BSLASHinput] = ACTIONS(5976), - [anon_sym_BSLASHsubfile] = ACTIONS(5976), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5976), - [anon_sym_BSLASHbibliography] = ACTIONS(5976), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5976), - [anon_sym_BSLASHincludesvg] = ACTIONS(5976), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5976), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5976), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5976), - [anon_sym_BSLASHimport] = ACTIONS(5976), - [anon_sym_BSLASHsubimport] = ACTIONS(5976), - [anon_sym_BSLASHinputfrom] = ACTIONS(5976), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5976), - [anon_sym_BSLASHincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHcaption] = ACTIONS(5976), - [anon_sym_BSLASHcite] = ACTIONS(5976), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCite] = ACTIONS(5976), - [anon_sym_BSLASHnocite] = ACTIONS(5976), - [anon_sym_BSLASHcitet] = ACTIONS(5976), - [anon_sym_BSLASHcitep] = ACTIONS(5976), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteauthor] = ACTIONS(5976), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5976), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitetitle] = ACTIONS(5976), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteyear] = ACTIONS(5976), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitedate] = ACTIONS(5976), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteurl] = ACTIONS(5976), - [anon_sym_BSLASHfullcite] = ACTIONS(5976), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5976), - [anon_sym_BSLASHcitealt] = ACTIONS(5976), - [anon_sym_BSLASHcitealp] = ACTIONS(5976), - [anon_sym_BSLASHcitetext] = ACTIONS(5976), - [anon_sym_BSLASHparencite] = ACTIONS(5976), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHParencite] = ACTIONS(5976), - [anon_sym_BSLASHfootcite] = ACTIONS(5976), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5976), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5976), - [anon_sym_BSLASHtextcite] = ACTIONS(5976), - [anon_sym_BSLASHTextcite] = ACTIONS(5976), - [anon_sym_BSLASHsmartcite] = ACTIONS(5976), - [anon_sym_BSLASHSmartcite] = ACTIONS(5976), - [anon_sym_BSLASHsupercite] = ACTIONS(5976), - [anon_sym_BSLASHautocite] = ACTIONS(5976), - [anon_sym_BSLASHAutocite] = ACTIONS(5976), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHvolcite] = ACTIONS(5976), - [anon_sym_BSLASHVolcite] = ACTIONS(5976), - [anon_sym_BSLASHpvolcite] = ACTIONS(5976), - [anon_sym_BSLASHPvolcite] = ACTIONS(5976), - [anon_sym_BSLASHfvolcite] = ACTIONS(5976), - [anon_sym_BSLASHftvolcite] = ACTIONS(5976), - [anon_sym_BSLASHsvolcite] = ACTIONS(5976), - [anon_sym_BSLASHSvolcite] = ACTIONS(5976), - [anon_sym_BSLASHtvolcite] = ACTIONS(5976), - [anon_sym_BSLASHTvolcite] = ACTIONS(5976), - [anon_sym_BSLASHavolcite] = ACTIONS(5976), - [anon_sym_BSLASHAvolcite] = ACTIONS(5976), - [anon_sym_BSLASHnotecite] = ACTIONS(5976), - [anon_sym_BSLASHNotecite] = ACTIONS(5976), - [anon_sym_BSLASHpnotecite] = ACTIONS(5976), - [anon_sym_BSLASHPnotecite] = ACTIONS(5976), - [anon_sym_BSLASHfnotecite] = ACTIONS(5976), - [anon_sym_BSLASHlabel] = ACTIONS(5976), - [anon_sym_BSLASHref] = ACTIONS(5976), - [anon_sym_BSLASHeqref] = ACTIONS(5976), - [anon_sym_BSLASHvref] = ACTIONS(5976), - [anon_sym_BSLASHVref] = ACTIONS(5976), - [anon_sym_BSLASHautoref] = ACTIONS(5976), - [anon_sym_BSLASHpageref] = ACTIONS(5976), - [anon_sym_BSLASHcref] = ACTIONS(5976), - [anon_sym_BSLASHCref] = ACTIONS(5976), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnameCref] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHlabelcref] = ACTIONS(5976), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCrefrange] = ACTIONS(5976), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnewlabel] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5976), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5976), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5978), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHdef] = ACTIONS(5976), - [anon_sym_BSLASHlet] = ACTIONS(5976), - [anon_sym_BSLASHleft] = ACTIONS(5976), - [anon_sym_BSLASHbig] = ACTIONS(5976), - [anon_sym_BSLASHBig] = ACTIONS(5976), - [anon_sym_BSLASHbigg] = ACTIONS(5976), - [anon_sym_BSLASHBigg] = ACTIONS(5976), - [anon_sym_BSLASHbigl] = ACTIONS(5976), - [anon_sym_BSLASHBigl] = ACTIONS(5976), - [anon_sym_BSLASHbiggl] = ACTIONS(5976), - [anon_sym_BSLASHBiggl] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5976), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5976), - [anon_sym_BSLASHgls] = ACTIONS(5976), - [anon_sym_BSLASHGls] = ACTIONS(5976), - [anon_sym_BSLASHGLS] = ACTIONS(5976), - [anon_sym_BSLASHglspl] = ACTIONS(5976), - [anon_sym_BSLASHGlspl] = ACTIONS(5976), - [anon_sym_BSLASHGLSpl] = ACTIONS(5976), - [anon_sym_BSLASHglsdisp] = ACTIONS(5976), - [anon_sym_BSLASHglslink] = ACTIONS(5976), - [anon_sym_BSLASHglstext] = ACTIONS(5976), - [anon_sym_BSLASHGlstext] = ACTIONS(5976), - [anon_sym_BSLASHGLStext] = ACTIONS(5976), - [anon_sym_BSLASHglsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5976), - [anon_sym_BSLASHglsplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSplural] = ACTIONS(5976), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHglsname] = ACTIONS(5976), - [anon_sym_BSLASHGlsname] = ACTIONS(5976), - [anon_sym_BSLASHGLSname] = ACTIONS(5976), - [anon_sym_BSLASHglssymbol] = ACTIONS(5976), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5976), - [anon_sym_BSLASHglsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5976), - [anon_sym_BSLASHglsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5976), - [anon_sym_BSLASHglsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5976), - [anon_sym_BSLASHglsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5976), - [anon_sym_BSLASHglsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5976), - [anon_sym_BSLASHnewacronym] = ACTIONS(5976), - [anon_sym_BSLASHacrshort] = ACTIONS(5976), - [anon_sym_BSLASHAcrshort] = ACTIONS(5976), - [anon_sym_BSLASHACRshort] = ACTIONS(5976), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5976), - [anon_sym_BSLASHacrlong] = ACTIONS(5976), - [anon_sym_BSLASHAcrlong] = ACTIONS(5976), - [anon_sym_BSLASHACRlong] = ACTIONS(5976), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5976), - [anon_sym_BSLASHacrfull] = ACTIONS(5976), - [anon_sym_BSLASHAcrfull] = ACTIONS(5976), - [anon_sym_BSLASHACRfull] = ACTIONS(5976), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5976), - [anon_sym_BSLASHacs] = ACTIONS(5976), - [anon_sym_BSLASHAcs] = ACTIONS(5976), - [anon_sym_BSLASHacsp] = ACTIONS(5976), - [anon_sym_BSLASHAcsp] = ACTIONS(5976), - [anon_sym_BSLASHacl] = ACTIONS(5976), - [anon_sym_BSLASHAcl] = ACTIONS(5976), - [anon_sym_BSLASHaclp] = ACTIONS(5976), - [anon_sym_BSLASHAclp] = ACTIONS(5976), - [anon_sym_BSLASHacf] = ACTIONS(5976), - [anon_sym_BSLASHAcf] = ACTIONS(5976), - [anon_sym_BSLASHacfp] = ACTIONS(5976), - [anon_sym_BSLASHAcfp] = ACTIONS(5976), - [anon_sym_BSLASHac] = ACTIONS(5976), - [anon_sym_BSLASHAc] = ACTIONS(5976), - [anon_sym_BSLASHacp] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5976), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5976), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5976), - [anon_sym_BSLASHcolor] = ACTIONS(5976), - [anon_sym_BSLASHcolorbox] = ACTIONS(5976), - [anon_sym_BSLASHtextcolor] = ACTIONS(5976), - [anon_sym_BSLASHpagecolor] = ACTIONS(5976), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5976), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5976), - [anon_sym_BSLASHtext] = ACTIONS(5976), - [anon_sym_BSLASHintertext] = ACTIONS(5976), - [anon_sym_shortintertext] = ACTIONS(5976), - }, - [1475] = { - [sym_curly_group] = STATE(1715), - [aux_sym_generic_command_repeat1] = STATE(1475), - [sym_command_name] = ACTIONS(5976), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5976), - [anon_sym_LBRACK] = ACTIONS(5978), - [anon_sym_RBRACK] = ACTIONS(5978), - [anon_sym_COMMA] = ACTIONS(5978), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LPAREN] = ACTIONS(5978), - [anon_sym_RPAREN] = ACTIONS(5978), - [anon_sym_LBRACE] = ACTIONS(6930), - [sym_word] = ACTIONS(5976), - [sym_placeholder] = ACTIONS(5978), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_STAR] = ACTIONS(5978), - [anon_sym_SLASH] = ACTIONS(5978), - [anon_sym_LT] = ACTIONS(5976), - [anon_sym_GT] = ACTIONS(5976), - [anon_sym_BANG] = ACTIONS(5976), - [anon_sym_PIPE] = ACTIONS(5976), - [anon_sym_COLON] = ACTIONS(5976), - [anon_sym_SQUOTE] = ACTIONS(5976), - [anon_sym__] = ACTIONS(5978), - [anon_sym_CARET] = ACTIONS(5978), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5978), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5978), - [anon_sym_DOLLAR] = ACTIONS(5976), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5978), - [anon_sym_BSLASHbegin] = ACTIONS(5976), - [anon_sym_BSLASHtitle] = ACTIONS(5976), - [anon_sym_BSLASHauthor] = ACTIONS(5976), - [anon_sym_BSLASHusepackage] = ACTIONS(5976), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5976), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5976), - [anon_sym_BSLASHinclude] = ACTIONS(5976), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5976), - [anon_sym_BSLASHinput] = ACTIONS(5976), - [anon_sym_BSLASHsubfile] = ACTIONS(5976), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5976), - [anon_sym_BSLASHbibliography] = ACTIONS(5976), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5976), - [anon_sym_BSLASHincludesvg] = ACTIONS(5976), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5976), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5976), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5976), - [anon_sym_BSLASHimport] = ACTIONS(5976), - [anon_sym_BSLASHsubimport] = ACTIONS(5976), - [anon_sym_BSLASHinputfrom] = ACTIONS(5976), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5976), - [anon_sym_BSLASHincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHcaption] = ACTIONS(5976), - [anon_sym_BSLASHcite] = ACTIONS(5976), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCite] = ACTIONS(5976), - [anon_sym_BSLASHnocite] = ACTIONS(5976), - [anon_sym_BSLASHcitet] = ACTIONS(5976), - [anon_sym_BSLASHcitep] = ACTIONS(5976), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteauthor] = ACTIONS(5976), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5976), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitetitle] = ACTIONS(5976), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteyear] = ACTIONS(5976), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitedate] = ACTIONS(5976), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteurl] = ACTIONS(5976), - [anon_sym_BSLASHfullcite] = ACTIONS(5976), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5976), - [anon_sym_BSLASHcitealt] = ACTIONS(5976), - [anon_sym_BSLASHcitealp] = ACTIONS(5976), - [anon_sym_BSLASHcitetext] = ACTIONS(5976), - [anon_sym_BSLASHparencite] = ACTIONS(5976), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHParencite] = ACTIONS(5976), - [anon_sym_BSLASHfootcite] = ACTIONS(5976), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5976), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5976), - [anon_sym_BSLASHtextcite] = ACTIONS(5976), - [anon_sym_BSLASHTextcite] = ACTIONS(5976), - [anon_sym_BSLASHsmartcite] = ACTIONS(5976), - [anon_sym_BSLASHSmartcite] = ACTIONS(5976), - [anon_sym_BSLASHsupercite] = ACTIONS(5976), - [anon_sym_BSLASHautocite] = ACTIONS(5976), - [anon_sym_BSLASHAutocite] = ACTIONS(5976), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHvolcite] = ACTIONS(5976), - [anon_sym_BSLASHVolcite] = ACTIONS(5976), - [anon_sym_BSLASHpvolcite] = ACTIONS(5976), - [anon_sym_BSLASHPvolcite] = ACTIONS(5976), - [anon_sym_BSLASHfvolcite] = ACTIONS(5976), - [anon_sym_BSLASHftvolcite] = ACTIONS(5976), - [anon_sym_BSLASHsvolcite] = ACTIONS(5976), - [anon_sym_BSLASHSvolcite] = ACTIONS(5976), - [anon_sym_BSLASHtvolcite] = ACTIONS(5976), - [anon_sym_BSLASHTvolcite] = ACTIONS(5976), - [anon_sym_BSLASHavolcite] = ACTIONS(5976), - [anon_sym_BSLASHAvolcite] = ACTIONS(5976), - [anon_sym_BSLASHnotecite] = ACTIONS(5976), - [anon_sym_BSLASHNotecite] = ACTIONS(5976), - [anon_sym_BSLASHpnotecite] = ACTIONS(5976), - [anon_sym_BSLASHPnotecite] = ACTIONS(5976), - [anon_sym_BSLASHfnotecite] = ACTIONS(5976), - [anon_sym_BSLASHlabel] = ACTIONS(5976), - [anon_sym_BSLASHref] = ACTIONS(5976), - [anon_sym_BSLASHeqref] = ACTIONS(5976), - [anon_sym_BSLASHvref] = ACTIONS(5976), - [anon_sym_BSLASHVref] = ACTIONS(5976), - [anon_sym_BSLASHautoref] = ACTIONS(5976), - [anon_sym_BSLASHpageref] = ACTIONS(5976), - [anon_sym_BSLASHcref] = ACTIONS(5976), - [anon_sym_BSLASHCref] = ACTIONS(5976), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnameCref] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHlabelcref] = ACTIONS(5976), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCrefrange] = ACTIONS(5976), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnewlabel] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5976), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5976), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5978), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHdef] = ACTIONS(5976), - [anon_sym_BSLASHlet] = ACTIONS(5976), - [anon_sym_BSLASHleft] = ACTIONS(5976), - [anon_sym_BSLASHbig] = ACTIONS(5976), - [anon_sym_BSLASHBig] = ACTIONS(5976), - [anon_sym_BSLASHbigg] = ACTIONS(5976), - [anon_sym_BSLASHBigg] = ACTIONS(5976), - [anon_sym_BSLASHbigl] = ACTIONS(5976), - [anon_sym_BSLASHBigl] = ACTIONS(5976), - [anon_sym_BSLASHbiggl] = ACTIONS(5976), - [anon_sym_BSLASHBiggl] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5976), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5976), - [anon_sym_BSLASHgls] = ACTIONS(5976), - [anon_sym_BSLASHGls] = ACTIONS(5976), - [anon_sym_BSLASHGLS] = ACTIONS(5976), - [anon_sym_BSLASHglspl] = ACTIONS(5976), - [anon_sym_BSLASHGlspl] = ACTIONS(5976), - [anon_sym_BSLASHGLSpl] = ACTIONS(5976), - [anon_sym_BSLASHglsdisp] = ACTIONS(5976), - [anon_sym_BSLASHglslink] = ACTIONS(5976), - [anon_sym_BSLASHglstext] = ACTIONS(5976), - [anon_sym_BSLASHGlstext] = ACTIONS(5976), - [anon_sym_BSLASHGLStext] = ACTIONS(5976), - [anon_sym_BSLASHglsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5976), - [anon_sym_BSLASHglsplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSplural] = ACTIONS(5976), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHglsname] = ACTIONS(5976), - [anon_sym_BSLASHGlsname] = ACTIONS(5976), - [anon_sym_BSLASHGLSname] = ACTIONS(5976), - [anon_sym_BSLASHglssymbol] = ACTIONS(5976), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5976), - [anon_sym_BSLASHglsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5976), - [anon_sym_BSLASHglsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5976), - [anon_sym_BSLASHglsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5976), - [anon_sym_BSLASHglsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5976), - [anon_sym_BSLASHglsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5976), - [anon_sym_BSLASHnewacronym] = ACTIONS(5976), - [anon_sym_BSLASHacrshort] = ACTIONS(5976), - [anon_sym_BSLASHAcrshort] = ACTIONS(5976), - [anon_sym_BSLASHACRshort] = ACTIONS(5976), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5976), - [anon_sym_BSLASHacrlong] = ACTIONS(5976), - [anon_sym_BSLASHAcrlong] = ACTIONS(5976), - [anon_sym_BSLASHACRlong] = ACTIONS(5976), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5976), - [anon_sym_BSLASHacrfull] = ACTIONS(5976), - [anon_sym_BSLASHAcrfull] = ACTIONS(5976), - [anon_sym_BSLASHACRfull] = ACTIONS(5976), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5976), - [anon_sym_BSLASHacs] = ACTIONS(5976), - [anon_sym_BSLASHAcs] = ACTIONS(5976), - [anon_sym_BSLASHacsp] = ACTIONS(5976), - [anon_sym_BSLASHAcsp] = ACTIONS(5976), - [anon_sym_BSLASHacl] = ACTIONS(5976), - [anon_sym_BSLASHAcl] = ACTIONS(5976), - [anon_sym_BSLASHaclp] = ACTIONS(5976), - [anon_sym_BSLASHAclp] = ACTIONS(5976), - [anon_sym_BSLASHacf] = ACTIONS(5976), - [anon_sym_BSLASHAcf] = ACTIONS(5976), - [anon_sym_BSLASHacfp] = ACTIONS(5976), - [anon_sym_BSLASHAcfp] = ACTIONS(5976), - [anon_sym_BSLASHac] = ACTIONS(5976), - [anon_sym_BSLASHAc] = ACTIONS(5976), - [anon_sym_BSLASHacp] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5976), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5976), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5976), - [anon_sym_BSLASHcolor] = ACTIONS(5976), - [anon_sym_BSLASHcolorbox] = ACTIONS(5976), - [anon_sym_BSLASHtextcolor] = ACTIONS(5976), - [anon_sym_BSLASHpagecolor] = ACTIONS(5976), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5976), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5976), - [anon_sym_BSLASHtext] = ACTIONS(5976), - [anon_sym_BSLASHintertext] = ACTIONS(5976), - [anon_sym_shortintertext] = ACTIONS(5976), - }, - [1476] = { - [sym_brack_group_text] = STATE(1597), - [sym_command_name] = ACTIONS(6017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6017), - [anon_sym_LBRACK] = ACTIONS(6921), - [anon_sym_RBRACK] = ACTIONS(6019), - [anon_sym_COMMA] = ACTIONS(6019), - [anon_sym_EQ] = ACTIONS(6019), - [anon_sym_LPAREN] = ACTIONS(6019), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_LBRACE] = ACTIONS(6019), - [sym_word] = ACTIONS(6017), - [sym_placeholder] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(6017), - [anon_sym_PIPE] = ACTIONS(6017), - [anon_sym_COLON] = ACTIONS(6017), - [anon_sym_SQUOTE] = ACTIONS(6017), - [anon_sym__] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), - [anon_sym_DOLLAR] = ACTIONS(6017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), - [anon_sym_BSLASHbegin] = ACTIONS(6017), - [anon_sym_BSLASHend] = ACTIONS(6017), - [anon_sym_BSLASHtitle] = ACTIONS(6017), - [anon_sym_BSLASHauthor] = ACTIONS(6017), - [anon_sym_BSLASHusepackage] = ACTIONS(6017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), - [anon_sym_BSLASHinclude] = ACTIONS(6017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), - [anon_sym_BSLASHinput] = ACTIONS(6017), - [anon_sym_BSLASHsubfile] = ACTIONS(6017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), - [anon_sym_BSLASHbibliography] = ACTIONS(6017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), - [anon_sym_BSLASHincludesvg] = ACTIONS(6017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), - [anon_sym_BSLASHimport] = ACTIONS(6017), - [anon_sym_BSLASHsubimport] = ACTIONS(6017), - [anon_sym_BSLASHinputfrom] = ACTIONS(6017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), - [anon_sym_BSLASHincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHcaption] = ACTIONS(6017), - [anon_sym_BSLASHcite] = ACTIONS(6017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCite] = ACTIONS(6017), - [anon_sym_BSLASHnocite] = ACTIONS(6017), - [anon_sym_BSLASHcitet] = ACTIONS(6017), - [anon_sym_BSLASHcitep] = ACTIONS(6017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteauthor] = ACTIONS(6017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitetitle] = ACTIONS(6017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteyear] = ACTIONS(6017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitedate] = ACTIONS(6017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteurl] = ACTIONS(6017), - [anon_sym_BSLASHfullcite] = ACTIONS(6017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), - [anon_sym_BSLASHcitealt] = ACTIONS(6017), - [anon_sym_BSLASHcitealp] = ACTIONS(6017), - [anon_sym_BSLASHcitetext] = ACTIONS(6017), - [anon_sym_BSLASHparencite] = ACTIONS(6017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHParencite] = ACTIONS(6017), - [anon_sym_BSLASHfootcite] = ACTIONS(6017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), - [anon_sym_BSLASHtextcite] = ACTIONS(6017), - [anon_sym_BSLASHTextcite] = ACTIONS(6017), - [anon_sym_BSLASHsmartcite] = ACTIONS(6017), - [anon_sym_BSLASHSmartcite] = ACTIONS(6017), - [anon_sym_BSLASHsupercite] = ACTIONS(6017), - [anon_sym_BSLASHautocite] = ACTIONS(6017), - [anon_sym_BSLASHAutocite] = ACTIONS(6017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHvolcite] = ACTIONS(6017), - [anon_sym_BSLASHVolcite] = ACTIONS(6017), - [anon_sym_BSLASHpvolcite] = ACTIONS(6017), - [anon_sym_BSLASHPvolcite] = ACTIONS(6017), - [anon_sym_BSLASHfvolcite] = ACTIONS(6017), - [anon_sym_BSLASHftvolcite] = ACTIONS(6017), - [anon_sym_BSLASHsvolcite] = ACTIONS(6017), - [anon_sym_BSLASHSvolcite] = ACTIONS(6017), - [anon_sym_BSLASHtvolcite] = ACTIONS(6017), - [anon_sym_BSLASHTvolcite] = ACTIONS(6017), - [anon_sym_BSLASHavolcite] = ACTIONS(6017), - [anon_sym_BSLASHAvolcite] = ACTIONS(6017), - [anon_sym_BSLASHnotecite] = ACTIONS(6017), - [anon_sym_BSLASHNotecite] = ACTIONS(6017), - [anon_sym_BSLASHpnotecite] = ACTIONS(6017), - [anon_sym_BSLASHPnotecite] = ACTIONS(6017), - [anon_sym_BSLASHfnotecite] = ACTIONS(6017), - [anon_sym_BSLASHlabel] = ACTIONS(6017), - [anon_sym_BSLASHref] = ACTIONS(6017), - [anon_sym_BSLASHeqref] = ACTIONS(6017), - [anon_sym_BSLASHvref] = ACTIONS(6017), - [anon_sym_BSLASHVref] = ACTIONS(6017), - [anon_sym_BSLASHautoref] = ACTIONS(6017), - [anon_sym_BSLASHpageref] = ACTIONS(6017), - [anon_sym_BSLASHcref] = ACTIONS(6017), - [anon_sym_BSLASHCref] = ACTIONS(6017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnameCref] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHlabelcref] = ACTIONS(6017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCrefrange] = ACTIONS(6017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnewlabel] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHdef] = ACTIONS(6017), - [anon_sym_BSLASHlet] = ACTIONS(6017), - [anon_sym_BSLASHleft] = ACTIONS(6017), - [anon_sym_BSLASHbig] = ACTIONS(6017), - [anon_sym_BSLASHBig] = ACTIONS(6017), - [anon_sym_BSLASHbigg] = ACTIONS(6017), - [anon_sym_BSLASHBigg] = ACTIONS(6017), - [anon_sym_BSLASHbigl] = ACTIONS(6017), - [anon_sym_BSLASHBigl] = ACTIONS(6017), - [anon_sym_BSLASHbiggl] = ACTIONS(6017), - [anon_sym_BSLASHBiggl] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), - [anon_sym_BSLASHgls] = ACTIONS(6017), - [anon_sym_BSLASHGls] = ACTIONS(6017), - [anon_sym_BSLASHGLS] = ACTIONS(6017), - [anon_sym_BSLASHglspl] = ACTIONS(6017), - [anon_sym_BSLASHGlspl] = ACTIONS(6017), - [anon_sym_BSLASHGLSpl] = ACTIONS(6017), - [anon_sym_BSLASHglsdisp] = ACTIONS(6017), - [anon_sym_BSLASHglslink] = ACTIONS(6017), - [anon_sym_BSLASHglstext] = ACTIONS(6017), - [anon_sym_BSLASHGlstext] = ACTIONS(6017), - [anon_sym_BSLASHGLStext] = ACTIONS(6017), - [anon_sym_BSLASHglsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), - [anon_sym_BSLASHglsplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSplural] = ACTIONS(6017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHglsname] = ACTIONS(6017), - [anon_sym_BSLASHGlsname] = ACTIONS(6017), - [anon_sym_BSLASHGLSname] = ACTIONS(6017), - [anon_sym_BSLASHglssymbol] = ACTIONS(6017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), - [anon_sym_BSLASHglsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), - [anon_sym_BSLASHglsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), - [anon_sym_BSLASHglsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), - [anon_sym_BSLASHglsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), - [anon_sym_BSLASHglsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), - [anon_sym_BSLASHnewacronym] = ACTIONS(6017), - [anon_sym_BSLASHacrshort] = ACTIONS(6017), - [anon_sym_BSLASHAcrshort] = ACTIONS(6017), - [anon_sym_BSLASHACRshort] = ACTIONS(6017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), - [anon_sym_BSLASHacrlong] = ACTIONS(6017), - [anon_sym_BSLASHAcrlong] = ACTIONS(6017), - [anon_sym_BSLASHACRlong] = ACTIONS(6017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), - [anon_sym_BSLASHacrfull] = ACTIONS(6017), - [anon_sym_BSLASHAcrfull] = ACTIONS(6017), - [anon_sym_BSLASHACRfull] = ACTIONS(6017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), - [anon_sym_BSLASHacs] = ACTIONS(6017), - [anon_sym_BSLASHAcs] = ACTIONS(6017), - [anon_sym_BSLASHacsp] = ACTIONS(6017), - [anon_sym_BSLASHAcsp] = ACTIONS(6017), - [anon_sym_BSLASHacl] = ACTIONS(6017), - [anon_sym_BSLASHAcl] = ACTIONS(6017), - [anon_sym_BSLASHaclp] = ACTIONS(6017), - [anon_sym_BSLASHAclp] = ACTIONS(6017), - [anon_sym_BSLASHacf] = ACTIONS(6017), - [anon_sym_BSLASHAcf] = ACTIONS(6017), - [anon_sym_BSLASHacfp] = ACTIONS(6017), - [anon_sym_BSLASHAcfp] = ACTIONS(6017), - [anon_sym_BSLASHac] = ACTIONS(6017), - [anon_sym_BSLASHAc] = ACTIONS(6017), - [anon_sym_BSLASHacp] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), - [anon_sym_BSLASHcolor] = ACTIONS(6017), - [anon_sym_BSLASHcolorbox] = ACTIONS(6017), - [anon_sym_BSLASHtextcolor] = ACTIONS(6017), - [anon_sym_BSLASHpagecolor] = ACTIONS(6017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), - [anon_sym_BSLASHtext] = ACTIONS(6017), - [anon_sym_BSLASHintertext] = ACTIONS(6017), - [anon_sym_shortintertext] = ACTIONS(6017), - }, - [1477] = { - [sym_command_name] = ACTIONS(5968), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5968), - [anon_sym_BSLASHfi] = ACTIONS(6933), - [anon_sym_LBRACK] = ACTIONS(5972), - [anon_sym_RBRACK] = ACTIONS(5972), - [anon_sym_COMMA] = ACTIONS(5972), - [anon_sym_EQ] = ACTIONS(5972), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_RPAREN] = ACTIONS(5972), - [anon_sym_LBRACE] = ACTIONS(5972), - [anon_sym_RBRACE] = ACTIONS(5972), - [sym_word] = ACTIONS(5968), - [sym_placeholder] = ACTIONS(5972), - [anon_sym_PLUS] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5972), - [anon_sym_STAR] = ACTIONS(5972), - [anon_sym_SLASH] = ACTIONS(5972), - [anon_sym_LT] = ACTIONS(5968), - [anon_sym_GT] = ACTIONS(5968), - [anon_sym_BANG] = ACTIONS(5968), - [anon_sym_PIPE] = ACTIONS(5968), - [anon_sym_COLON] = ACTIONS(5968), - [anon_sym_SQUOTE] = ACTIONS(5968), - [anon_sym__] = ACTIONS(5972), - [anon_sym_CARET] = ACTIONS(5972), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5972), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5972), - [anon_sym_DOLLAR] = ACTIONS(5968), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5972), - [anon_sym_BSLASHtitle] = ACTIONS(5968), - [anon_sym_BSLASHauthor] = ACTIONS(5968), - [anon_sym_BSLASHusepackage] = ACTIONS(5968), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5968), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5968), - [anon_sym_BSLASHinclude] = ACTIONS(5968), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5968), - [anon_sym_BSLASHinput] = ACTIONS(5968), - [anon_sym_BSLASHsubfile] = ACTIONS(5968), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5968), - [anon_sym_BSLASHbibliography] = ACTIONS(5968), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5968), - [anon_sym_BSLASHincludesvg] = ACTIONS(5968), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5968), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5968), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5968), - [anon_sym_BSLASHimport] = ACTIONS(5968), - [anon_sym_BSLASHsubimport] = ACTIONS(5968), - [anon_sym_BSLASHinputfrom] = ACTIONS(5968), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5968), - [anon_sym_BSLASHincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHcaption] = ACTIONS(5968), - [anon_sym_BSLASHcite] = ACTIONS(5968), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCite] = ACTIONS(5968), - [anon_sym_BSLASHnocite] = ACTIONS(5968), - [anon_sym_BSLASHcitet] = ACTIONS(5968), - [anon_sym_BSLASHcitep] = ACTIONS(5968), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteauthor] = ACTIONS(5968), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5968), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitetitle] = ACTIONS(5968), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteyear] = ACTIONS(5968), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitedate] = ACTIONS(5968), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteurl] = ACTIONS(5968), - [anon_sym_BSLASHfullcite] = ACTIONS(5968), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5968), - [anon_sym_BSLASHcitealt] = ACTIONS(5968), - [anon_sym_BSLASHcitealp] = ACTIONS(5968), - [anon_sym_BSLASHcitetext] = ACTIONS(5968), - [anon_sym_BSLASHparencite] = ACTIONS(5968), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHParencite] = ACTIONS(5968), - [anon_sym_BSLASHfootcite] = ACTIONS(5968), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5968), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5968), - [anon_sym_BSLASHtextcite] = ACTIONS(5968), - [anon_sym_BSLASHTextcite] = ACTIONS(5968), - [anon_sym_BSLASHsmartcite] = ACTIONS(5968), - [anon_sym_BSLASHSmartcite] = ACTIONS(5968), - [anon_sym_BSLASHsupercite] = ACTIONS(5968), - [anon_sym_BSLASHautocite] = ACTIONS(5968), - [anon_sym_BSLASHAutocite] = ACTIONS(5968), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHvolcite] = ACTIONS(5968), - [anon_sym_BSLASHVolcite] = ACTIONS(5968), - [anon_sym_BSLASHpvolcite] = ACTIONS(5968), - [anon_sym_BSLASHPvolcite] = ACTIONS(5968), - [anon_sym_BSLASHfvolcite] = ACTIONS(5968), - [anon_sym_BSLASHftvolcite] = ACTIONS(5968), - [anon_sym_BSLASHsvolcite] = ACTIONS(5968), - [anon_sym_BSLASHSvolcite] = ACTIONS(5968), - [anon_sym_BSLASHtvolcite] = ACTIONS(5968), - [anon_sym_BSLASHTvolcite] = ACTIONS(5968), - [anon_sym_BSLASHavolcite] = ACTIONS(5968), - [anon_sym_BSLASHAvolcite] = ACTIONS(5968), - [anon_sym_BSLASHnotecite] = ACTIONS(5968), - [anon_sym_BSLASHNotecite] = ACTIONS(5968), - [anon_sym_BSLASHpnotecite] = ACTIONS(5968), - [anon_sym_BSLASHPnotecite] = ACTIONS(5968), - [anon_sym_BSLASHfnotecite] = ACTIONS(5968), - [anon_sym_BSLASHlabel] = ACTIONS(5968), - [anon_sym_BSLASHref] = ACTIONS(5968), - [anon_sym_BSLASHeqref] = ACTIONS(5968), - [anon_sym_BSLASHvref] = ACTIONS(5968), - [anon_sym_BSLASHVref] = ACTIONS(5968), - [anon_sym_BSLASHautoref] = ACTIONS(5968), - [anon_sym_BSLASHpageref] = ACTIONS(5968), - [anon_sym_BSLASHcref] = ACTIONS(5968), - [anon_sym_BSLASHCref] = ACTIONS(5968), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnameCref] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHlabelcref] = ACTIONS(5968), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCrefrange] = ACTIONS(5968), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnewlabel] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5968), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5968), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5972), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHdef] = ACTIONS(5968), - [anon_sym_BSLASHlet] = ACTIONS(5968), - [anon_sym_BSLASHleft] = ACTIONS(5968), - [anon_sym_BSLASHbig] = ACTIONS(5968), - [anon_sym_BSLASHBig] = ACTIONS(5968), - [anon_sym_BSLASHbigg] = ACTIONS(5968), - [anon_sym_BSLASHBigg] = ACTIONS(5968), - [anon_sym_BSLASHbigl] = ACTIONS(5968), - [anon_sym_BSLASHBigl] = ACTIONS(5968), - [anon_sym_BSLASHbiggl] = ACTIONS(5968), - [anon_sym_BSLASHBiggl] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5968), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5968), - [anon_sym_BSLASHgls] = ACTIONS(5968), - [anon_sym_BSLASHGls] = ACTIONS(5968), - [anon_sym_BSLASHGLS] = ACTIONS(5968), - [anon_sym_BSLASHglspl] = ACTIONS(5968), - [anon_sym_BSLASHGlspl] = ACTIONS(5968), - [anon_sym_BSLASHGLSpl] = ACTIONS(5968), - [anon_sym_BSLASHglsdisp] = ACTIONS(5968), - [anon_sym_BSLASHglslink] = ACTIONS(5968), - [anon_sym_BSLASHglstext] = ACTIONS(5968), - [anon_sym_BSLASHGlstext] = ACTIONS(5968), - [anon_sym_BSLASHGLStext] = ACTIONS(5968), - [anon_sym_BSLASHglsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5968), - [anon_sym_BSLASHglsplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSplural] = ACTIONS(5968), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHglsname] = ACTIONS(5968), - [anon_sym_BSLASHGlsname] = ACTIONS(5968), - [anon_sym_BSLASHGLSname] = ACTIONS(5968), - [anon_sym_BSLASHglssymbol] = ACTIONS(5968), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5968), - [anon_sym_BSLASHglsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5968), - [anon_sym_BSLASHglsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5968), - [anon_sym_BSLASHglsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5968), - [anon_sym_BSLASHglsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5968), - [anon_sym_BSLASHglsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5968), - [anon_sym_BSLASHnewacronym] = ACTIONS(5968), - [anon_sym_BSLASHacrshort] = ACTIONS(5968), - [anon_sym_BSLASHAcrshort] = ACTIONS(5968), - [anon_sym_BSLASHACRshort] = ACTIONS(5968), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5968), - [anon_sym_BSLASHacrlong] = ACTIONS(5968), - [anon_sym_BSLASHAcrlong] = ACTIONS(5968), - [anon_sym_BSLASHACRlong] = ACTIONS(5968), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5968), - [anon_sym_BSLASHacrfull] = ACTIONS(5968), - [anon_sym_BSLASHAcrfull] = ACTIONS(5968), - [anon_sym_BSLASHACRfull] = ACTIONS(5968), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5968), - [anon_sym_BSLASHacs] = ACTIONS(5968), - [anon_sym_BSLASHAcs] = ACTIONS(5968), - [anon_sym_BSLASHacsp] = ACTIONS(5968), - [anon_sym_BSLASHAcsp] = ACTIONS(5968), - [anon_sym_BSLASHacl] = ACTIONS(5968), - [anon_sym_BSLASHAcl] = ACTIONS(5968), - [anon_sym_BSLASHaclp] = ACTIONS(5968), - [anon_sym_BSLASHAclp] = ACTIONS(5968), - [anon_sym_BSLASHacf] = ACTIONS(5968), - [anon_sym_BSLASHAcf] = ACTIONS(5968), - [anon_sym_BSLASHacfp] = ACTIONS(5968), - [anon_sym_BSLASHAcfp] = ACTIONS(5968), - [anon_sym_BSLASHac] = ACTIONS(5968), - [anon_sym_BSLASHAc] = ACTIONS(5968), - [anon_sym_BSLASHacp] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5968), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5968), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5968), - [anon_sym_BSLASHcolor] = ACTIONS(5968), - [anon_sym_BSLASHcolorbox] = ACTIONS(5968), - [anon_sym_BSLASHtextcolor] = ACTIONS(5968), - [anon_sym_BSLASHpagecolor] = ACTIONS(5968), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5968), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5968), - [anon_sym_BSLASHtext] = ACTIONS(5968), - [anon_sym_BSLASHintertext] = ACTIONS(5968), - [anon_sym_shortintertext] = ACTIONS(5968), - [sym__trivia_raw_fi] = ACTIONS(6935), - }, - [1478] = { - [sym_curly_group] = STATE(1715), - [aux_sym_generic_command_repeat1] = STATE(1481), - [sym_command_name] = ACTIONS(5983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5983), - [anon_sym_LBRACK] = ACTIONS(5985), - [anon_sym_RBRACK] = ACTIONS(5985), - [anon_sym_COMMA] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(5985), - [anon_sym_LPAREN] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(3520), - [sym_word] = ACTIONS(5983), - [sym_placeholder] = ACTIONS(5985), - [anon_sym_PLUS] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(5985), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_SLASH] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(5983), - [anon_sym_GT] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5983), - [anon_sym_PIPE] = ACTIONS(5983), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_SQUOTE] = ACTIONS(5983), - [anon_sym__] = ACTIONS(5985), - [anon_sym_CARET] = ACTIONS(5985), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(5983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), - [anon_sym_BSLASHbegin] = ACTIONS(5983), - [anon_sym_BSLASHtitle] = ACTIONS(5983), - [anon_sym_BSLASHauthor] = ACTIONS(5983), - [anon_sym_BSLASHusepackage] = ACTIONS(5983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), - [anon_sym_BSLASHinclude] = ACTIONS(5983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), - [anon_sym_BSLASHinput] = ACTIONS(5983), - [anon_sym_BSLASHsubfile] = ACTIONS(5983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), - [anon_sym_BSLASHbibliography] = ACTIONS(5983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), - [anon_sym_BSLASHincludesvg] = ACTIONS(5983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), - [anon_sym_BSLASHimport] = ACTIONS(5983), - [anon_sym_BSLASHsubimport] = ACTIONS(5983), - [anon_sym_BSLASHinputfrom] = ACTIONS(5983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), - [anon_sym_BSLASHincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHcaption] = ACTIONS(5983), - [anon_sym_BSLASHcite] = ACTIONS(5983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCite] = ACTIONS(5983), - [anon_sym_BSLASHnocite] = ACTIONS(5983), - [anon_sym_BSLASHcitet] = ACTIONS(5983), - [anon_sym_BSLASHcitep] = ACTIONS(5983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteauthor] = ACTIONS(5983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitetitle] = ACTIONS(5983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteyear] = ACTIONS(5983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitedate] = ACTIONS(5983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteurl] = ACTIONS(5983), - [anon_sym_BSLASHfullcite] = ACTIONS(5983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), - [anon_sym_BSLASHcitealt] = ACTIONS(5983), - [anon_sym_BSLASHcitealp] = ACTIONS(5983), - [anon_sym_BSLASHcitetext] = ACTIONS(5983), - [anon_sym_BSLASHparencite] = ACTIONS(5983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHParencite] = ACTIONS(5983), - [anon_sym_BSLASHfootcite] = ACTIONS(5983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), - [anon_sym_BSLASHtextcite] = ACTIONS(5983), - [anon_sym_BSLASHTextcite] = ACTIONS(5983), - [anon_sym_BSLASHsmartcite] = ACTIONS(5983), - [anon_sym_BSLASHSmartcite] = ACTIONS(5983), - [anon_sym_BSLASHsupercite] = ACTIONS(5983), - [anon_sym_BSLASHautocite] = ACTIONS(5983), - [anon_sym_BSLASHAutocite] = ACTIONS(5983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHvolcite] = ACTIONS(5983), - [anon_sym_BSLASHVolcite] = ACTIONS(5983), - [anon_sym_BSLASHpvolcite] = ACTIONS(5983), - [anon_sym_BSLASHPvolcite] = ACTIONS(5983), - [anon_sym_BSLASHfvolcite] = ACTIONS(5983), - [anon_sym_BSLASHftvolcite] = ACTIONS(5983), - [anon_sym_BSLASHsvolcite] = ACTIONS(5983), - [anon_sym_BSLASHSvolcite] = ACTIONS(5983), - [anon_sym_BSLASHtvolcite] = ACTIONS(5983), - [anon_sym_BSLASHTvolcite] = ACTIONS(5983), - [anon_sym_BSLASHavolcite] = ACTIONS(5983), - [anon_sym_BSLASHAvolcite] = ACTIONS(5983), - [anon_sym_BSLASHnotecite] = ACTIONS(5983), - [anon_sym_BSLASHNotecite] = ACTIONS(5983), - [anon_sym_BSLASHpnotecite] = ACTIONS(5983), - [anon_sym_BSLASHPnotecite] = ACTIONS(5983), - [anon_sym_BSLASHfnotecite] = ACTIONS(5983), - [anon_sym_BSLASHlabel] = ACTIONS(5983), - [anon_sym_BSLASHref] = ACTIONS(5983), - [anon_sym_BSLASHeqref] = ACTIONS(5983), - [anon_sym_BSLASHvref] = ACTIONS(5983), - [anon_sym_BSLASHVref] = ACTIONS(5983), - [anon_sym_BSLASHautoref] = ACTIONS(5983), - [anon_sym_BSLASHpageref] = ACTIONS(5983), - [anon_sym_BSLASHcref] = ACTIONS(5983), - [anon_sym_BSLASHCref] = ACTIONS(5983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnameCref] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHlabelcref] = ACTIONS(5983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCrefrange] = ACTIONS(5983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnewlabel] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHdef] = ACTIONS(5983), - [anon_sym_BSLASHlet] = ACTIONS(5983), - [anon_sym_BSLASHleft] = ACTIONS(5983), - [anon_sym_BSLASHbig] = ACTIONS(5983), - [anon_sym_BSLASHBig] = ACTIONS(5983), - [anon_sym_BSLASHbigg] = ACTIONS(5983), - [anon_sym_BSLASHBigg] = ACTIONS(5983), - [anon_sym_BSLASHbigl] = ACTIONS(5983), - [anon_sym_BSLASHBigl] = ACTIONS(5983), - [anon_sym_BSLASHbiggl] = ACTIONS(5983), - [anon_sym_BSLASHBiggl] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), - [anon_sym_BSLASHgls] = ACTIONS(5983), - [anon_sym_BSLASHGls] = ACTIONS(5983), - [anon_sym_BSLASHGLS] = ACTIONS(5983), - [anon_sym_BSLASHglspl] = ACTIONS(5983), - [anon_sym_BSLASHGlspl] = ACTIONS(5983), - [anon_sym_BSLASHGLSpl] = ACTIONS(5983), - [anon_sym_BSLASHglsdisp] = ACTIONS(5983), - [anon_sym_BSLASHglslink] = ACTIONS(5983), - [anon_sym_BSLASHglstext] = ACTIONS(5983), - [anon_sym_BSLASHGlstext] = ACTIONS(5983), - [anon_sym_BSLASHGLStext] = ACTIONS(5983), - [anon_sym_BSLASHglsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), - [anon_sym_BSLASHglsplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSplural] = ACTIONS(5983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHglsname] = ACTIONS(5983), - [anon_sym_BSLASHGlsname] = ACTIONS(5983), - [anon_sym_BSLASHGLSname] = ACTIONS(5983), - [anon_sym_BSLASHglssymbol] = ACTIONS(5983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), - [anon_sym_BSLASHglsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), - [anon_sym_BSLASHglsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), - [anon_sym_BSLASHglsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), - [anon_sym_BSLASHglsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), - [anon_sym_BSLASHglsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), - [anon_sym_BSLASHnewacronym] = ACTIONS(5983), - [anon_sym_BSLASHacrshort] = ACTIONS(5983), - [anon_sym_BSLASHAcrshort] = ACTIONS(5983), - [anon_sym_BSLASHACRshort] = ACTIONS(5983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), - [anon_sym_BSLASHacrlong] = ACTIONS(5983), - [anon_sym_BSLASHAcrlong] = ACTIONS(5983), - [anon_sym_BSLASHACRlong] = ACTIONS(5983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), - [anon_sym_BSLASHacrfull] = ACTIONS(5983), - [anon_sym_BSLASHAcrfull] = ACTIONS(5983), - [anon_sym_BSLASHACRfull] = ACTIONS(5983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), - [anon_sym_BSLASHacs] = ACTIONS(5983), - [anon_sym_BSLASHAcs] = ACTIONS(5983), - [anon_sym_BSLASHacsp] = ACTIONS(5983), - [anon_sym_BSLASHAcsp] = ACTIONS(5983), - [anon_sym_BSLASHacl] = ACTIONS(5983), - [anon_sym_BSLASHAcl] = ACTIONS(5983), - [anon_sym_BSLASHaclp] = ACTIONS(5983), - [anon_sym_BSLASHAclp] = ACTIONS(5983), - [anon_sym_BSLASHacf] = ACTIONS(5983), - [anon_sym_BSLASHAcf] = ACTIONS(5983), - [anon_sym_BSLASHacfp] = ACTIONS(5983), - [anon_sym_BSLASHAcfp] = ACTIONS(5983), - [anon_sym_BSLASHac] = ACTIONS(5983), - [anon_sym_BSLASHAc] = ACTIONS(5983), - [anon_sym_BSLASHacp] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), - [anon_sym_BSLASHcolor] = ACTIONS(5983), - [anon_sym_BSLASHcolorbox] = ACTIONS(5983), - [anon_sym_BSLASHtextcolor] = ACTIONS(5983), - [anon_sym_BSLASHpagecolor] = ACTIONS(5983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), - [anon_sym_BSLASHtext] = ACTIONS(5983), - [anon_sym_BSLASHintertext] = ACTIONS(5983), - [anon_sym_shortintertext] = ACTIONS(5983), - }, - [1479] = { - [sym_command_name] = ACTIONS(5997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5997), - [anon_sym_BSLASHfi] = ACTIONS(6937), - [anon_sym_LBRACK] = ACTIONS(6001), - [anon_sym_RBRACK] = ACTIONS(6001), - [anon_sym_COMMA] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(6001), - [anon_sym_LPAREN] = ACTIONS(6001), - [anon_sym_RPAREN] = ACTIONS(6001), - [anon_sym_LBRACE] = ACTIONS(6001), - [sym_word] = ACTIONS(5997), - [sym_placeholder] = ACTIONS(6001), - [anon_sym_PLUS] = ACTIONS(6001), - [anon_sym_DASH] = ACTIONS(6001), - [anon_sym_STAR] = ACTIONS(6001), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_COLON] = ACTIONS(5997), - [anon_sym_SQUOTE] = ACTIONS(5997), - [anon_sym__] = ACTIONS(6001), - [anon_sym_CARET] = ACTIONS(6001), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), - [anon_sym_BSLASHbegin] = ACTIONS(5997), - [anon_sym_BSLASHend] = ACTIONS(5997), - [anon_sym_BSLASHtitle] = ACTIONS(5997), - [anon_sym_BSLASHauthor] = ACTIONS(5997), - [anon_sym_BSLASHusepackage] = ACTIONS(5997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5997), - [anon_sym_BSLASHinclude] = ACTIONS(5997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5997), - [anon_sym_BSLASHinput] = ACTIONS(5997), - [anon_sym_BSLASHsubfile] = ACTIONS(5997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5997), - [anon_sym_BSLASHbibliography] = ACTIONS(5997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5997), - [anon_sym_BSLASHincludesvg] = ACTIONS(5997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5997), - [anon_sym_BSLASHimport] = ACTIONS(5997), - [anon_sym_BSLASHsubimport] = ACTIONS(5997), - [anon_sym_BSLASHinputfrom] = ACTIONS(5997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5997), - [anon_sym_BSLASHincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHcaption] = ACTIONS(5997), - [anon_sym_BSLASHcite] = ACTIONS(5997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCite] = ACTIONS(5997), - [anon_sym_BSLASHnocite] = ACTIONS(5997), - [anon_sym_BSLASHcitet] = ACTIONS(5997), - [anon_sym_BSLASHcitep] = ACTIONS(5997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteyear] = ACTIONS(5997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitedate] = ACTIONS(5997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteurl] = ACTIONS(5997), - [anon_sym_BSLASHfullcite] = ACTIONS(5997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5997), - [anon_sym_BSLASHcitealt] = ACTIONS(5997), - [anon_sym_BSLASHcitealp] = ACTIONS(5997), - [anon_sym_BSLASHcitetext] = ACTIONS(5997), - [anon_sym_BSLASHparencite] = ACTIONS(5997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHParencite] = ACTIONS(5997), - [anon_sym_BSLASHfootcite] = ACTIONS(5997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5997), - [anon_sym_BSLASHtextcite] = ACTIONS(5997), - [anon_sym_BSLASHTextcite] = ACTIONS(5997), - [anon_sym_BSLASHsmartcite] = ACTIONS(5997), - [anon_sym_BSLASHSmartcite] = ACTIONS(5997), - [anon_sym_BSLASHsupercite] = ACTIONS(5997), - [anon_sym_BSLASHautocite] = ACTIONS(5997), - [anon_sym_BSLASHAutocite] = ACTIONS(5997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHvolcite] = ACTIONS(5997), - [anon_sym_BSLASHVolcite] = ACTIONS(5997), - [anon_sym_BSLASHpvolcite] = ACTIONS(5997), - [anon_sym_BSLASHPvolcite] = ACTIONS(5997), - [anon_sym_BSLASHfvolcite] = ACTIONS(5997), - [anon_sym_BSLASHftvolcite] = ACTIONS(5997), - [anon_sym_BSLASHsvolcite] = ACTIONS(5997), - [anon_sym_BSLASHSvolcite] = ACTIONS(5997), - [anon_sym_BSLASHtvolcite] = ACTIONS(5997), - [anon_sym_BSLASHTvolcite] = ACTIONS(5997), - [anon_sym_BSLASHavolcite] = ACTIONS(5997), - [anon_sym_BSLASHAvolcite] = ACTIONS(5997), - [anon_sym_BSLASHnotecite] = ACTIONS(5997), - [anon_sym_BSLASHNotecite] = ACTIONS(5997), - [anon_sym_BSLASHpnotecite] = ACTIONS(5997), - [anon_sym_BSLASHPnotecite] = ACTIONS(5997), - [anon_sym_BSLASHfnotecite] = ACTIONS(5997), - [anon_sym_BSLASHlabel] = ACTIONS(5997), - [anon_sym_BSLASHref] = ACTIONS(5997), - [anon_sym_BSLASHeqref] = ACTIONS(5997), - [anon_sym_BSLASHvref] = ACTIONS(5997), - [anon_sym_BSLASHVref] = ACTIONS(5997), - [anon_sym_BSLASHautoref] = ACTIONS(5997), - [anon_sym_BSLASHpageref] = ACTIONS(5997), - [anon_sym_BSLASHcref] = ACTIONS(5997), - [anon_sym_BSLASHCref] = ACTIONS(5997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnameCref] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHlabelcref] = ACTIONS(5997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHdef] = ACTIONS(5997), - [anon_sym_BSLASHlet] = ACTIONS(5997), - [anon_sym_BSLASHleft] = ACTIONS(5997), - [anon_sym_BSLASHbig] = ACTIONS(5997), - [anon_sym_BSLASHBig] = ACTIONS(5997), - [anon_sym_BSLASHbigg] = ACTIONS(5997), - [anon_sym_BSLASHBigg] = ACTIONS(5997), - [anon_sym_BSLASHbigl] = ACTIONS(5997), - [anon_sym_BSLASHBigl] = ACTIONS(5997), - [anon_sym_BSLASHbiggl] = ACTIONS(5997), - [anon_sym_BSLASHBiggl] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5997), - [anon_sym_BSLASHgls] = ACTIONS(5997), - [anon_sym_BSLASHGls] = ACTIONS(5997), - [anon_sym_BSLASHGLS] = ACTIONS(5997), - [anon_sym_BSLASHglspl] = ACTIONS(5997), - [anon_sym_BSLASHGlspl] = ACTIONS(5997), - [anon_sym_BSLASHGLSpl] = ACTIONS(5997), - [anon_sym_BSLASHglsdisp] = ACTIONS(5997), - [anon_sym_BSLASHglslink] = ACTIONS(5997), - [anon_sym_BSLASHglstext] = ACTIONS(5997), - [anon_sym_BSLASHGlstext] = ACTIONS(5997), - [anon_sym_BSLASHGLStext] = ACTIONS(5997), - [anon_sym_BSLASHglsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5997), - [anon_sym_BSLASHglsplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSplural] = ACTIONS(5997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHglsname] = ACTIONS(5997), - [anon_sym_BSLASHGlsname] = ACTIONS(5997), - [anon_sym_BSLASHGLSname] = ACTIONS(5997), - [anon_sym_BSLASHglssymbol] = ACTIONS(5997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5997), - [anon_sym_BSLASHglsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5997), - [anon_sym_BSLASHglsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5997), - [anon_sym_BSLASHglsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5997), - [anon_sym_BSLASHglsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5997), - [anon_sym_BSLASHglsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5997), - [anon_sym_BSLASHnewacronym] = ACTIONS(5997), - [anon_sym_BSLASHacrshort] = ACTIONS(5997), - [anon_sym_BSLASHAcrshort] = ACTIONS(5997), - [anon_sym_BSLASHACRshort] = ACTIONS(5997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5997), - [anon_sym_BSLASHacrlong] = ACTIONS(5997), - [anon_sym_BSLASHAcrlong] = ACTIONS(5997), - [anon_sym_BSLASHACRlong] = ACTIONS(5997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5997), - [anon_sym_BSLASHacrfull] = ACTIONS(5997), - [anon_sym_BSLASHAcrfull] = ACTIONS(5997), - [anon_sym_BSLASHACRfull] = ACTIONS(5997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5997), - [anon_sym_BSLASHacs] = ACTIONS(5997), - [anon_sym_BSLASHAcs] = ACTIONS(5997), - [anon_sym_BSLASHacsp] = ACTIONS(5997), - [anon_sym_BSLASHAcsp] = ACTIONS(5997), - [anon_sym_BSLASHacl] = ACTIONS(5997), - [anon_sym_BSLASHAcl] = ACTIONS(5997), - [anon_sym_BSLASHaclp] = ACTIONS(5997), - [anon_sym_BSLASHAclp] = ACTIONS(5997), - [anon_sym_BSLASHacf] = ACTIONS(5997), - [anon_sym_BSLASHAcf] = ACTIONS(5997), - [anon_sym_BSLASHacfp] = ACTIONS(5997), - [anon_sym_BSLASHAcfp] = ACTIONS(5997), - [anon_sym_BSLASHac] = ACTIONS(5997), - [anon_sym_BSLASHAc] = ACTIONS(5997), - [anon_sym_BSLASHacp] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5997), - [anon_sym_BSLASHcolor] = ACTIONS(5997), - [anon_sym_BSLASHcolorbox] = ACTIONS(5997), - [anon_sym_BSLASHtextcolor] = ACTIONS(5997), - [anon_sym_BSLASHpagecolor] = ACTIONS(5997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5997), - [anon_sym_BSLASHtext] = ACTIONS(5997), - [anon_sym_BSLASHintertext] = ACTIONS(5997), - [anon_sym_shortintertext] = ACTIONS(5997), - }, - [1480] = { - [sym_curly_group] = STATE(1607), - [sym_brack_group_text] = STATE(2924), - [sym_command_name] = ACTIONS(5987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5991), - [anon_sym_COMMA] = ACTIONS(5991), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_LPAREN] = ACTIONS(5991), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(5991), - [sym_word] = ACTIONS(5987), - [sym_placeholder] = ACTIONS(5991), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_SQUOTE] = ACTIONS(5987), - [anon_sym__] = ACTIONS(5991), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5991), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(5987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5991), - [anon_sym_BSLASHtitle] = ACTIONS(5987), - [anon_sym_BSLASHauthor] = ACTIONS(5987), - [anon_sym_BSLASHusepackage] = ACTIONS(5987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), - [anon_sym_BSLASHinclude] = ACTIONS(5987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), - [anon_sym_BSLASHinput] = ACTIONS(5987), - [anon_sym_BSLASHsubfile] = ACTIONS(5987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), - [anon_sym_BSLASHbibliography] = ACTIONS(5987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), - [anon_sym_BSLASHincludesvg] = ACTIONS(5987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), - [anon_sym_BSLASHimport] = ACTIONS(5987), - [anon_sym_BSLASHsubimport] = ACTIONS(5987), - [anon_sym_BSLASHinputfrom] = ACTIONS(5987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), - [anon_sym_BSLASHincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHcaption] = ACTIONS(5987), - [anon_sym_BSLASHcite] = ACTIONS(5987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCite] = ACTIONS(5987), - [anon_sym_BSLASHnocite] = ACTIONS(5987), - [anon_sym_BSLASHcitet] = ACTIONS(5987), - [anon_sym_BSLASHcitep] = ACTIONS(5987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteauthor] = ACTIONS(5987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitetitle] = ACTIONS(5987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteyear] = ACTIONS(5987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitedate] = ACTIONS(5987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteurl] = ACTIONS(5987), - [anon_sym_BSLASHfullcite] = ACTIONS(5987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), - [anon_sym_BSLASHcitealt] = ACTIONS(5987), - [anon_sym_BSLASHcitealp] = ACTIONS(5987), - [anon_sym_BSLASHcitetext] = ACTIONS(5987), - [anon_sym_BSLASHparencite] = ACTIONS(5987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHParencite] = ACTIONS(5987), - [anon_sym_BSLASHfootcite] = ACTIONS(5987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), - [anon_sym_BSLASHtextcite] = ACTIONS(5987), - [anon_sym_BSLASHTextcite] = ACTIONS(5987), - [anon_sym_BSLASHsmartcite] = ACTIONS(5987), - [anon_sym_BSLASHSmartcite] = ACTIONS(5987), - [anon_sym_BSLASHsupercite] = ACTIONS(5987), - [anon_sym_BSLASHautocite] = ACTIONS(5987), - [anon_sym_BSLASHAutocite] = ACTIONS(5987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHvolcite] = ACTIONS(5987), - [anon_sym_BSLASHVolcite] = ACTIONS(5987), - [anon_sym_BSLASHpvolcite] = ACTIONS(5987), - [anon_sym_BSLASHPvolcite] = ACTIONS(5987), - [anon_sym_BSLASHfvolcite] = ACTIONS(5987), - [anon_sym_BSLASHftvolcite] = ACTIONS(5987), - [anon_sym_BSLASHsvolcite] = ACTIONS(5987), - [anon_sym_BSLASHSvolcite] = ACTIONS(5987), - [anon_sym_BSLASHtvolcite] = ACTIONS(5987), - [anon_sym_BSLASHTvolcite] = ACTIONS(5987), - [anon_sym_BSLASHavolcite] = ACTIONS(5987), - [anon_sym_BSLASHAvolcite] = ACTIONS(5987), - [anon_sym_BSLASHnotecite] = ACTIONS(5987), - [anon_sym_BSLASHNotecite] = ACTIONS(5987), - [anon_sym_BSLASHpnotecite] = ACTIONS(5987), - [anon_sym_BSLASHPnotecite] = ACTIONS(5987), - [anon_sym_BSLASHfnotecite] = ACTIONS(5987), - [anon_sym_BSLASHlabel] = ACTIONS(5987), - [anon_sym_BSLASHref] = ACTIONS(5987), - [anon_sym_BSLASHeqref] = ACTIONS(5987), - [anon_sym_BSLASHvref] = ACTIONS(5987), - [anon_sym_BSLASHVref] = ACTIONS(5987), - [anon_sym_BSLASHautoref] = ACTIONS(5987), - [anon_sym_BSLASHpageref] = ACTIONS(5987), - [anon_sym_BSLASHcref] = ACTIONS(5987), - [anon_sym_BSLASHCref] = ACTIONS(5987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnameCref] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHlabelcref] = ACTIONS(5987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCrefrange] = ACTIONS(5987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnewlabel] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5991), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHdef] = ACTIONS(5987), - [anon_sym_BSLASHlet] = ACTIONS(5987), - [anon_sym_BSLASHleft] = ACTIONS(5987), - [anon_sym_BSLASHbig] = ACTIONS(5987), - [anon_sym_BSLASHBig] = ACTIONS(5987), - [anon_sym_BSLASHbigg] = ACTIONS(5987), - [anon_sym_BSLASHBigg] = ACTIONS(5987), - [anon_sym_BSLASHbigl] = ACTIONS(5987), - [anon_sym_BSLASHBigl] = ACTIONS(5987), - [anon_sym_BSLASHbiggl] = ACTIONS(5987), - [anon_sym_BSLASHBiggl] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), - [anon_sym_BSLASHgls] = ACTIONS(5987), - [anon_sym_BSLASHGls] = ACTIONS(5987), - [anon_sym_BSLASHGLS] = ACTIONS(5987), - [anon_sym_BSLASHglspl] = ACTIONS(5987), - [anon_sym_BSLASHGlspl] = ACTIONS(5987), - [anon_sym_BSLASHGLSpl] = ACTIONS(5987), - [anon_sym_BSLASHglsdisp] = ACTIONS(5987), - [anon_sym_BSLASHglslink] = ACTIONS(5987), - [anon_sym_BSLASHglstext] = ACTIONS(5987), - [anon_sym_BSLASHGlstext] = ACTIONS(5987), - [anon_sym_BSLASHGLStext] = ACTIONS(5987), - [anon_sym_BSLASHglsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), - [anon_sym_BSLASHglsplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSplural] = ACTIONS(5987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHglsname] = ACTIONS(5987), - [anon_sym_BSLASHGlsname] = ACTIONS(5987), - [anon_sym_BSLASHGLSname] = ACTIONS(5987), - [anon_sym_BSLASHglssymbol] = ACTIONS(5987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), - [anon_sym_BSLASHglsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), - [anon_sym_BSLASHglsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), - [anon_sym_BSLASHglsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), - [anon_sym_BSLASHglsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), - [anon_sym_BSLASHglsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), - [anon_sym_BSLASHnewacronym] = ACTIONS(5987), - [anon_sym_BSLASHacrshort] = ACTIONS(5987), - [anon_sym_BSLASHAcrshort] = ACTIONS(5987), - [anon_sym_BSLASHACRshort] = ACTIONS(5987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), - [anon_sym_BSLASHacrlong] = ACTIONS(5987), - [anon_sym_BSLASHAcrlong] = ACTIONS(5987), - [anon_sym_BSLASHACRlong] = ACTIONS(5987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), - [anon_sym_BSLASHacrfull] = ACTIONS(5987), - [anon_sym_BSLASHAcrfull] = ACTIONS(5987), - [anon_sym_BSLASHACRfull] = ACTIONS(5987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), - [anon_sym_BSLASHacs] = ACTIONS(5987), - [anon_sym_BSLASHAcs] = ACTIONS(5987), - [anon_sym_BSLASHacsp] = ACTIONS(5987), - [anon_sym_BSLASHAcsp] = ACTIONS(5987), - [anon_sym_BSLASHacl] = ACTIONS(5987), - [anon_sym_BSLASHAcl] = ACTIONS(5987), - [anon_sym_BSLASHaclp] = ACTIONS(5987), - [anon_sym_BSLASHAclp] = ACTIONS(5987), - [anon_sym_BSLASHacf] = ACTIONS(5987), - [anon_sym_BSLASHAcf] = ACTIONS(5987), - [anon_sym_BSLASHacfp] = ACTIONS(5987), - [anon_sym_BSLASHAcfp] = ACTIONS(5987), - [anon_sym_BSLASHac] = ACTIONS(5987), - [anon_sym_BSLASHAc] = ACTIONS(5987), - [anon_sym_BSLASHacp] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), - [anon_sym_BSLASHcolor] = ACTIONS(5987), - [anon_sym_BSLASHcolorbox] = ACTIONS(5987), - [anon_sym_BSLASHtextcolor] = ACTIONS(5987), - [anon_sym_BSLASHpagecolor] = ACTIONS(5987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), - [anon_sym_BSLASHtext] = ACTIONS(5987), - [anon_sym_BSLASHintertext] = ACTIONS(5987), - [anon_sym_shortintertext] = ACTIONS(5987), - }, - [1481] = { - [sym_curly_group] = STATE(1715), - [aux_sym_generic_command_repeat1] = STATE(1475), - [sym_command_name] = ACTIONS(5964), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5964), - [anon_sym_LBRACK] = ACTIONS(5966), - [anon_sym_RBRACK] = ACTIONS(5966), - [anon_sym_COMMA] = ACTIONS(5966), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_LPAREN] = ACTIONS(5966), - [anon_sym_RPAREN] = ACTIONS(5966), - [anon_sym_LBRACE] = ACTIONS(3520), - [sym_word] = ACTIONS(5964), - [sym_placeholder] = ACTIONS(5966), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5966), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_SQUOTE] = ACTIONS(5964), - [anon_sym__] = ACTIONS(5966), - [anon_sym_CARET] = ACTIONS(5966), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5966), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5966), - [anon_sym_DOLLAR] = ACTIONS(5964), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5966), - [anon_sym_BSLASHbegin] = ACTIONS(5964), - [anon_sym_BSLASHtitle] = ACTIONS(5964), - [anon_sym_BSLASHauthor] = ACTIONS(5964), - [anon_sym_BSLASHusepackage] = ACTIONS(5964), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5964), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5964), - [anon_sym_BSLASHinclude] = ACTIONS(5964), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5964), - [anon_sym_BSLASHinput] = ACTIONS(5964), - [anon_sym_BSLASHsubfile] = ACTIONS(5964), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5964), - [anon_sym_BSLASHbibliography] = ACTIONS(5964), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5964), - [anon_sym_BSLASHincludesvg] = ACTIONS(5964), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5964), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5964), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5964), - [anon_sym_BSLASHimport] = ACTIONS(5964), - [anon_sym_BSLASHsubimport] = ACTIONS(5964), - [anon_sym_BSLASHinputfrom] = ACTIONS(5964), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5964), - [anon_sym_BSLASHincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHcaption] = ACTIONS(5964), - [anon_sym_BSLASHcite] = ACTIONS(5964), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCite] = ACTIONS(5964), - [anon_sym_BSLASHnocite] = ACTIONS(5964), - [anon_sym_BSLASHcitet] = ACTIONS(5964), - [anon_sym_BSLASHcitep] = ACTIONS(5964), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteauthor] = ACTIONS(5964), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5964), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitetitle] = ACTIONS(5964), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteyear] = ACTIONS(5964), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitedate] = ACTIONS(5964), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteurl] = ACTIONS(5964), - [anon_sym_BSLASHfullcite] = ACTIONS(5964), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5964), - [anon_sym_BSLASHcitealt] = ACTIONS(5964), - [anon_sym_BSLASHcitealp] = ACTIONS(5964), - [anon_sym_BSLASHcitetext] = ACTIONS(5964), - [anon_sym_BSLASHparencite] = ACTIONS(5964), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHParencite] = ACTIONS(5964), - [anon_sym_BSLASHfootcite] = ACTIONS(5964), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5964), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5964), - [anon_sym_BSLASHtextcite] = ACTIONS(5964), - [anon_sym_BSLASHTextcite] = ACTIONS(5964), - [anon_sym_BSLASHsmartcite] = ACTIONS(5964), - [anon_sym_BSLASHSmartcite] = ACTIONS(5964), - [anon_sym_BSLASHsupercite] = ACTIONS(5964), - [anon_sym_BSLASHautocite] = ACTIONS(5964), - [anon_sym_BSLASHAutocite] = ACTIONS(5964), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHvolcite] = ACTIONS(5964), - [anon_sym_BSLASHVolcite] = ACTIONS(5964), - [anon_sym_BSLASHpvolcite] = ACTIONS(5964), - [anon_sym_BSLASHPvolcite] = ACTIONS(5964), - [anon_sym_BSLASHfvolcite] = ACTIONS(5964), - [anon_sym_BSLASHftvolcite] = ACTIONS(5964), - [anon_sym_BSLASHsvolcite] = ACTIONS(5964), - [anon_sym_BSLASHSvolcite] = ACTIONS(5964), - [anon_sym_BSLASHtvolcite] = ACTIONS(5964), - [anon_sym_BSLASHTvolcite] = ACTIONS(5964), - [anon_sym_BSLASHavolcite] = ACTIONS(5964), - [anon_sym_BSLASHAvolcite] = ACTIONS(5964), - [anon_sym_BSLASHnotecite] = ACTIONS(5964), - [anon_sym_BSLASHNotecite] = ACTIONS(5964), - [anon_sym_BSLASHpnotecite] = ACTIONS(5964), - [anon_sym_BSLASHPnotecite] = ACTIONS(5964), - [anon_sym_BSLASHfnotecite] = ACTIONS(5964), - [anon_sym_BSLASHlabel] = ACTIONS(5964), - [anon_sym_BSLASHref] = ACTIONS(5964), - [anon_sym_BSLASHeqref] = ACTIONS(5964), - [anon_sym_BSLASHvref] = ACTIONS(5964), - [anon_sym_BSLASHVref] = ACTIONS(5964), - [anon_sym_BSLASHautoref] = ACTIONS(5964), - [anon_sym_BSLASHpageref] = ACTIONS(5964), - [anon_sym_BSLASHcref] = ACTIONS(5964), - [anon_sym_BSLASHCref] = ACTIONS(5964), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnameCref] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHlabelcref] = ACTIONS(5964), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCrefrange] = ACTIONS(5964), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnewlabel] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5964), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5964), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5966), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHdef] = ACTIONS(5964), - [anon_sym_BSLASHlet] = ACTIONS(5964), - [anon_sym_BSLASHleft] = ACTIONS(5964), - [anon_sym_BSLASHbig] = ACTIONS(5964), - [anon_sym_BSLASHBig] = ACTIONS(5964), - [anon_sym_BSLASHbigg] = ACTIONS(5964), - [anon_sym_BSLASHBigg] = ACTIONS(5964), - [anon_sym_BSLASHbigl] = ACTIONS(5964), - [anon_sym_BSLASHBigl] = ACTIONS(5964), - [anon_sym_BSLASHbiggl] = ACTIONS(5964), - [anon_sym_BSLASHBiggl] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5964), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5964), - [anon_sym_BSLASHgls] = ACTIONS(5964), - [anon_sym_BSLASHGls] = ACTIONS(5964), - [anon_sym_BSLASHGLS] = ACTIONS(5964), - [anon_sym_BSLASHglspl] = ACTIONS(5964), - [anon_sym_BSLASHGlspl] = ACTIONS(5964), - [anon_sym_BSLASHGLSpl] = ACTIONS(5964), - [anon_sym_BSLASHglsdisp] = ACTIONS(5964), - [anon_sym_BSLASHglslink] = ACTIONS(5964), - [anon_sym_BSLASHglstext] = ACTIONS(5964), - [anon_sym_BSLASHGlstext] = ACTIONS(5964), - [anon_sym_BSLASHGLStext] = ACTIONS(5964), - [anon_sym_BSLASHglsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5964), - [anon_sym_BSLASHglsplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSplural] = ACTIONS(5964), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHglsname] = ACTIONS(5964), - [anon_sym_BSLASHGlsname] = ACTIONS(5964), - [anon_sym_BSLASHGLSname] = ACTIONS(5964), - [anon_sym_BSLASHglssymbol] = ACTIONS(5964), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5964), - [anon_sym_BSLASHglsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5964), - [anon_sym_BSLASHglsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5964), - [anon_sym_BSLASHglsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5964), - [anon_sym_BSLASHglsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5964), - [anon_sym_BSLASHglsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5964), - [anon_sym_BSLASHnewacronym] = ACTIONS(5964), - [anon_sym_BSLASHacrshort] = ACTIONS(5964), - [anon_sym_BSLASHAcrshort] = ACTIONS(5964), - [anon_sym_BSLASHACRshort] = ACTIONS(5964), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5964), - [anon_sym_BSLASHacrlong] = ACTIONS(5964), - [anon_sym_BSLASHAcrlong] = ACTIONS(5964), - [anon_sym_BSLASHACRlong] = ACTIONS(5964), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5964), - [anon_sym_BSLASHacrfull] = ACTIONS(5964), - [anon_sym_BSLASHAcrfull] = ACTIONS(5964), - [anon_sym_BSLASHACRfull] = ACTIONS(5964), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5964), - [anon_sym_BSLASHacs] = ACTIONS(5964), - [anon_sym_BSLASHAcs] = ACTIONS(5964), - [anon_sym_BSLASHacsp] = ACTIONS(5964), - [anon_sym_BSLASHAcsp] = ACTIONS(5964), - [anon_sym_BSLASHacl] = ACTIONS(5964), - [anon_sym_BSLASHAcl] = ACTIONS(5964), - [anon_sym_BSLASHaclp] = ACTIONS(5964), - [anon_sym_BSLASHAclp] = ACTIONS(5964), - [anon_sym_BSLASHacf] = ACTIONS(5964), - [anon_sym_BSLASHAcf] = ACTIONS(5964), - [anon_sym_BSLASHacfp] = ACTIONS(5964), - [anon_sym_BSLASHAcfp] = ACTIONS(5964), - [anon_sym_BSLASHac] = ACTIONS(5964), - [anon_sym_BSLASHAc] = ACTIONS(5964), - [anon_sym_BSLASHacp] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5964), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5964), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5964), - [anon_sym_BSLASHcolor] = ACTIONS(5964), - [anon_sym_BSLASHcolorbox] = ACTIONS(5964), - [anon_sym_BSLASHtextcolor] = ACTIONS(5964), - [anon_sym_BSLASHpagecolor] = ACTIONS(5964), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5964), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5964), - [anon_sym_BSLASHtext] = ACTIONS(5964), - [anon_sym_BSLASHintertext] = ACTIONS(5964), - [anon_sym_shortintertext] = ACTIONS(5964), - }, - [1482] = { - [sym_curly_group] = STATE(1696), - [aux_sym_generic_command_repeat1] = STATE(1484), - [sym_command_name] = ACTIONS(5983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5983), - [anon_sym_LBRACK] = ACTIONS(5985), - [anon_sym_RBRACK] = ACTIONS(5985), - [anon_sym_COMMA] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(5985), - [anon_sym_LPAREN] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(5985), - [sym_word] = ACTIONS(5983), - [sym_placeholder] = ACTIONS(5985), - [anon_sym_PLUS] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(5985), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_SLASH] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(5983), - [anon_sym_GT] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5983), - [anon_sym_PIPE] = ACTIONS(5983), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_SQUOTE] = ACTIONS(5983), - [anon_sym__] = ACTIONS(5985), - [anon_sym_CARET] = ACTIONS(5985), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(5983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), - [anon_sym_BSLASHtitle] = ACTIONS(5983), - [anon_sym_BSLASHauthor] = ACTIONS(5983), - [anon_sym_BSLASHusepackage] = ACTIONS(5983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), - [anon_sym_BSLASHinclude] = ACTIONS(5983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), - [anon_sym_BSLASHinput] = ACTIONS(5983), - [anon_sym_BSLASHsubfile] = ACTIONS(5983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), - [anon_sym_BSLASHbibliography] = ACTIONS(5983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), - [anon_sym_BSLASHincludesvg] = ACTIONS(5983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), - [anon_sym_BSLASHimport] = ACTIONS(5983), - [anon_sym_BSLASHsubimport] = ACTIONS(5983), - [anon_sym_BSLASHinputfrom] = ACTIONS(5983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), - [anon_sym_BSLASHincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHcaption] = ACTIONS(5983), - [anon_sym_BSLASHcite] = ACTIONS(5983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCite] = ACTIONS(5983), - [anon_sym_BSLASHnocite] = ACTIONS(5983), - [anon_sym_BSLASHcitet] = ACTIONS(5983), - [anon_sym_BSLASHcitep] = ACTIONS(5983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteauthor] = ACTIONS(5983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitetitle] = ACTIONS(5983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteyear] = ACTIONS(5983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitedate] = ACTIONS(5983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteurl] = ACTIONS(5983), - [anon_sym_BSLASHfullcite] = ACTIONS(5983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), - [anon_sym_BSLASHcitealt] = ACTIONS(5983), - [anon_sym_BSLASHcitealp] = ACTIONS(5983), - [anon_sym_BSLASHcitetext] = ACTIONS(5983), - [anon_sym_BSLASHparencite] = ACTIONS(5983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHParencite] = ACTIONS(5983), - [anon_sym_BSLASHfootcite] = ACTIONS(5983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), - [anon_sym_BSLASHtextcite] = ACTIONS(5983), - [anon_sym_BSLASHTextcite] = ACTIONS(5983), - [anon_sym_BSLASHsmartcite] = ACTIONS(5983), - [anon_sym_BSLASHSmartcite] = ACTIONS(5983), - [anon_sym_BSLASHsupercite] = ACTIONS(5983), - [anon_sym_BSLASHautocite] = ACTIONS(5983), - [anon_sym_BSLASHAutocite] = ACTIONS(5983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHvolcite] = ACTIONS(5983), - [anon_sym_BSLASHVolcite] = ACTIONS(5983), - [anon_sym_BSLASHpvolcite] = ACTIONS(5983), - [anon_sym_BSLASHPvolcite] = ACTIONS(5983), - [anon_sym_BSLASHfvolcite] = ACTIONS(5983), - [anon_sym_BSLASHftvolcite] = ACTIONS(5983), - [anon_sym_BSLASHsvolcite] = ACTIONS(5983), - [anon_sym_BSLASHSvolcite] = ACTIONS(5983), - [anon_sym_BSLASHtvolcite] = ACTIONS(5983), - [anon_sym_BSLASHTvolcite] = ACTIONS(5983), - [anon_sym_BSLASHavolcite] = ACTIONS(5983), - [anon_sym_BSLASHAvolcite] = ACTIONS(5983), - [anon_sym_BSLASHnotecite] = ACTIONS(5983), - [anon_sym_BSLASHNotecite] = ACTIONS(5983), - [anon_sym_BSLASHpnotecite] = ACTIONS(5983), - [anon_sym_BSLASHPnotecite] = ACTIONS(5983), - [anon_sym_BSLASHfnotecite] = ACTIONS(5983), - [anon_sym_BSLASHlabel] = ACTIONS(5983), - [anon_sym_BSLASHref] = ACTIONS(5983), - [anon_sym_BSLASHeqref] = ACTIONS(5983), - [anon_sym_BSLASHvref] = ACTIONS(5983), - [anon_sym_BSLASHVref] = ACTIONS(5983), - [anon_sym_BSLASHautoref] = ACTIONS(5983), - [anon_sym_BSLASHpageref] = ACTIONS(5983), - [anon_sym_BSLASHcref] = ACTIONS(5983), - [anon_sym_BSLASHCref] = ACTIONS(5983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnameCref] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHlabelcref] = ACTIONS(5983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCrefrange] = ACTIONS(5983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnewlabel] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHdef] = ACTIONS(5983), - [anon_sym_BSLASHlet] = ACTIONS(5983), - [anon_sym_BSLASHleft] = ACTIONS(5983), - [anon_sym_BSLASHbig] = ACTIONS(5983), - [anon_sym_BSLASHBig] = ACTIONS(5983), - [anon_sym_BSLASHbigg] = ACTIONS(5983), - [anon_sym_BSLASHBigg] = ACTIONS(5983), - [anon_sym_BSLASHbigl] = ACTIONS(5983), - [anon_sym_BSLASHBigl] = ACTIONS(5983), - [anon_sym_BSLASHbiggl] = ACTIONS(5983), - [anon_sym_BSLASHBiggl] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), - [anon_sym_BSLASHgls] = ACTIONS(5983), - [anon_sym_BSLASHGls] = ACTIONS(5983), - [anon_sym_BSLASHGLS] = ACTIONS(5983), - [anon_sym_BSLASHglspl] = ACTIONS(5983), - [anon_sym_BSLASHGlspl] = ACTIONS(5983), - [anon_sym_BSLASHGLSpl] = ACTIONS(5983), - [anon_sym_BSLASHglsdisp] = ACTIONS(5983), - [anon_sym_BSLASHglslink] = ACTIONS(5983), - [anon_sym_BSLASHglstext] = ACTIONS(5983), - [anon_sym_BSLASHGlstext] = ACTIONS(5983), - [anon_sym_BSLASHGLStext] = ACTIONS(5983), - [anon_sym_BSLASHglsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), - [anon_sym_BSLASHglsplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSplural] = ACTIONS(5983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHglsname] = ACTIONS(5983), - [anon_sym_BSLASHGlsname] = ACTIONS(5983), - [anon_sym_BSLASHGLSname] = ACTIONS(5983), - [anon_sym_BSLASHglssymbol] = ACTIONS(5983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), - [anon_sym_BSLASHglsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), - [anon_sym_BSLASHglsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), - [anon_sym_BSLASHglsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), - [anon_sym_BSLASHglsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), - [anon_sym_BSLASHglsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), - [anon_sym_BSLASHnewacronym] = ACTIONS(5983), - [anon_sym_BSLASHacrshort] = ACTIONS(5983), - [anon_sym_BSLASHAcrshort] = ACTIONS(5983), - [anon_sym_BSLASHACRshort] = ACTIONS(5983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), - [anon_sym_BSLASHacrlong] = ACTIONS(5983), - [anon_sym_BSLASHAcrlong] = ACTIONS(5983), - [anon_sym_BSLASHACRlong] = ACTIONS(5983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), - [anon_sym_BSLASHacrfull] = ACTIONS(5983), - [anon_sym_BSLASHAcrfull] = ACTIONS(5983), - [anon_sym_BSLASHACRfull] = ACTIONS(5983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), - [anon_sym_BSLASHacs] = ACTIONS(5983), - [anon_sym_BSLASHAcs] = ACTIONS(5983), - [anon_sym_BSLASHacsp] = ACTIONS(5983), - [anon_sym_BSLASHAcsp] = ACTIONS(5983), - [anon_sym_BSLASHacl] = ACTIONS(5983), - [anon_sym_BSLASHAcl] = ACTIONS(5983), - [anon_sym_BSLASHaclp] = ACTIONS(5983), - [anon_sym_BSLASHAclp] = ACTIONS(5983), - [anon_sym_BSLASHacf] = ACTIONS(5983), - [anon_sym_BSLASHAcf] = ACTIONS(5983), - [anon_sym_BSLASHacfp] = ACTIONS(5983), - [anon_sym_BSLASHAcfp] = ACTIONS(5983), - [anon_sym_BSLASHac] = ACTIONS(5983), - [anon_sym_BSLASHAc] = ACTIONS(5983), - [anon_sym_BSLASHacp] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), - [anon_sym_BSLASHcolor] = ACTIONS(5983), - [anon_sym_BSLASHcolorbox] = ACTIONS(5983), - [anon_sym_BSLASHtextcolor] = ACTIONS(5983), - [anon_sym_BSLASHpagecolor] = ACTIONS(5983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), - [anon_sym_BSLASHtext] = ACTIONS(5983), - [anon_sym_BSLASHintertext] = ACTIONS(5983), - [anon_sym_shortintertext] = ACTIONS(5983), - }, - [1483] = { - [sym_curly_group] = STATE(1601), - [sym_command_name] = ACTIONS(6021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6021), - [anon_sym_LBRACK] = ACTIONS(6023), - [anon_sym_RBRACK] = ACTIONS(6023), - [anon_sym_COMMA] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(6023), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_RPAREN] = ACTIONS(6023), - [anon_sym_LBRACE] = ACTIONS(3228), - [sym_word] = ACTIONS(6021), - [sym_placeholder] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6023), - [anon_sym_DASH] = ACTIONS(6023), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6023), - [anon_sym_LT] = ACTIONS(6021), - [anon_sym_GT] = ACTIONS(6021), - [anon_sym_BANG] = ACTIONS(6021), - [anon_sym_PIPE] = ACTIONS(6021), - [anon_sym_COLON] = ACTIONS(6021), - [anon_sym_SQUOTE] = ACTIONS(6021), - [anon_sym__] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), - [anon_sym_BSLASHbegin] = ACTIONS(6021), - [anon_sym_BSLASHend] = ACTIONS(6021), - [anon_sym_BSLASHtitle] = ACTIONS(6021), - [anon_sym_BSLASHauthor] = ACTIONS(6021), - [anon_sym_BSLASHusepackage] = ACTIONS(6021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), - [anon_sym_BSLASHinclude] = ACTIONS(6021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), - [anon_sym_BSLASHinput] = ACTIONS(6021), - [anon_sym_BSLASHsubfile] = ACTIONS(6021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), - [anon_sym_BSLASHbibliography] = ACTIONS(6021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), - [anon_sym_BSLASHincludesvg] = ACTIONS(6021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), - [anon_sym_BSLASHimport] = ACTIONS(6021), - [anon_sym_BSLASHsubimport] = ACTIONS(6021), - [anon_sym_BSLASHinputfrom] = ACTIONS(6021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), - [anon_sym_BSLASHincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHcaption] = ACTIONS(6021), - [anon_sym_BSLASHcite] = ACTIONS(6021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCite] = ACTIONS(6021), - [anon_sym_BSLASHnocite] = ACTIONS(6021), - [anon_sym_BSLASHcitet] = ACTIONS(6021), - [anon_sym_BSLASHcitep] = ACTIONS(6021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteauthor] = ACTIONS(6021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitetitle] = ACTIONS(6021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteyear] = ACTIONS(6021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitedate] = ACTIONS(6021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteurl] = ACTIONS(6021), - [anon_sym_BSLASHfullcite] = ACTIONS(6021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), - [anon_sym_BSLASHcitealt] = ACTIONS(6021), - [anon_sym_BSLASHcitealp] = ACTIONS(6021), - [anon_sym_BSLASHcitetext] = ACTIONS(6021), - [anon_sym_BSLASHparencite] = ACTIONS(6021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHParencite] = ACTIONS(6021), - [anon_sym_BSLASHfootcite] = ACTIONS(6021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), - [anon_sym_BSLASHtextcite] = ACTIONS(6021), - [anon_sym_BSLASHTextcite] = ACTIONS(6021), - [anon_sym_BSLASHsmartcite] = ACTIONS(6021), - [anon_sym_BSLASHSmartcite] = ACTIONS(6021), - [anon_sym_BSLASHsupercite] = ACTIONS(6021), - [anon_sym_BSLASHautocite] = ACTIONS(6021), - [anon_sym_BSLASHAutocite] = ACTIONS(6021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHvolcite] = ACTIONS(6021), - [anon_sym_BSLASHVolcite] = ACTIONS(6021), - [anon_sym_BSLASHpvolcite] = ACTIONS(6021), - [anon_sym_BSLASHPvolcite] = ACTIONS(6021), - [anon_sym_BSLASHfvolcite] = ACTIONS(6021), - [anon_sym_BSLASHftvolcite] = ACTIONS(6021), - [anon_sym_BSLASHsvolcite] = ACTIONS(6021), - [anon_sym_BSLASHSvolcite] = ACTIONS(6021), - [anon_sym_BSLASHtvolcite] = ACTIONS(6021), - [anon_sym_BSLASHTvolcite] = ACTIONS(6021), - [anon_sym_BSLASHavolcite] = ACTIONS(6021), - [anon_sym_BSLASHAvolcite] = ACTIONS(6021), - [anon_sym_BSLASHnotecite] = ACTIONS(6021), - [anon_sym_BSLASHNotecite] = ACTIONS(6021), - [anon_sym_BSLASHpnotecite] = ACTIONS(6021), - [anon_sym_BSLASHPnotecite] = ACTIONS(6021), - [anon_sym_BSLASHfnotecite] = ACTIONS(6021), - [anon_sym_BSLASHlabel] = ACTIONS(6021), - [anon_sym_BSLASHref] = ACTIONS(6021), - [anon_sym_BSLASHeqref] = ACTIONS(6021), - [anon_sym_BSLASHvref] = ACTIONS(6021), - [anon_sym_BSLASHVref] = ACTIONS(6021), - [anon_sym_BSLASHautoref] = ACTIONS(6021), - [anon_sym_BSLASHpageref] = ACTIONS(6021), - [anon_sym_BSLASHcref] = ACTIONS(6021), - [anon_sym_BSLASHCref] = ACTIONS(6021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnameCref] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHlabelcref] = ACTIONS(6021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCrefrange] = ACTIONS(6021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnewlabel] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHdef] = ACTIONS(6021), - [anon_sym_BSLASHlet] = ACTIONS(6021), - [anon_sym_BSLASHleft] = ACTIONS(6021), - [anon_sym_BSLASHbig] = ACTIONS(6021), - [anon_sym_BSLASHBig] = ACTIONS(6021), - [anon_sym_BSLASHbigg] = ACTIONS(6021), - [anon_sym_BSLASHBigg] = ACTIONS(6021), - [anon_sym_BSLASHbigl] = ACTIONS(6021), - [anon_sym_BSLASHBigl] = ACTIONS(6021), - [anon_sym_BSLASHbiggl] = ACTIONS(6021), - [anon_sym_BSLASHBiggl] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), - [anon_sym_BSLASHgls] = ACTIONS(6021), - [anon_sym_BSLASHGls] = ACTIONS(6021), - [anon_sym_BSLASHGLS] = ACTIONS(6021), - [anon_sym_BSLASHglspl] = ACTIONS(6021), - [anon_sym_BSLASHGlspl] = ACTIONS(6021), - [anon_sym_BSLASHGLSpl] = ACTIONS(6021), - [anon_sym_BSLASHglsdisp] = ACTIONS(6021), - [anon_sym_BSLASHglslink] = ACTIONS(6021), - [anon_sym_BSLASHglstext] = ACTIONS(6021), - [anon_sym_BSLASHGlstext] = ACTIONS(6021), - [anon_sym_BSLASHGLStext] = ACTIONS(6021), - [anon_sym_BSLASHglsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), - [anon_sym_BSLASHglsplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSplural] = ACTIONS(6021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHglsname] = ACTIONS(6021), - [anon_sym_BSLASHGlsname] = ACTIONS(6021), - [anon_sym_BSLASHGLSname] = ACTIONS(6021), - [anon_sym_BSLASHglssymbol] = ACTIONS(6021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), - [anon_sym_BSLASHglsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), - [anon_sym_BSLASHglsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), - [anon_sym_BSLASHglsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), - [anon_sym_BSLASHglsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), - [anon_sym_BSLASHglsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), - [anon_sym_BSLASHnewacronym] = ACTIONS(6021), - [anon_sym_BSLASHacrshort] = ACTIONS(6021), - [anon_sym_BSLASHAcrshort] = ACTIONS(6021), - [anon_sym_BSLASHACRshort] = ACTIONS(6021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), - [anon_sym_BSLASHacrlong] = ACTIONS(6021), - [anon_sym_BSLASHAcrlong] = ACTIONS(6021), - [anon_sym_BSLASHACRlong] = ACTIONS(6021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), - [anon_sym_BSLASHacrfull] = ACTIONS(6021), - [anon_sym_BSLASHAcrfull] = ACTIONS(6021), - [anon_sym_BSLASHACRfull] = ACTIONS(6021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), - [anon_sym_BSLASHacs] = ACTIONS(6021), - [anon_sym_BSLASHAcs] = ACTIONS(6021), - [anon_sym_BSLASHacsp] = ACTIONS(6021), - [anon_sym_BSLASHAcsp] = ACTIONS(6021), - [anon_sym_BSLASHacl] = ACTIONS(6021), - [anon_sym_BSLASHAcl] = ACTIONS(6021), - [anon_sym_BSLASHaclp] = ACTIONS(6021), - [anon_sym_BSLASHAclp] = ACTIONS(6021), - [anon_sym_BSLASHacf] = ACTIONS(6021), - [anon_sym_BSLASHAcf] = ACTIONS(6021), - [anon_sym_BSLASHacfp] = ACTIONS(6021), - [anon_sym_BSLASHAcfp] = ACTIONS(6021), - [anon_sym_BSLASHac] = ACTIONS(6021), - [anon_sym_BSLASHAc] = ACTIONS(6021), - [anon_sym_BSLASHacp] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), - [anon_sym_BSLASHcolor] = ACTIONS(6021), - [anon_sym_BSLASHcolorbox] = ACTIONS(6021), - [anon_sym_BSLASHtextcolor] = ACTIONS(6021), - [anon_sym_BSLASHpagecolor] = ACTIONS(6021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), - [anon_sym_BSLASHtext] = ACTIONS(6021), - [anon_sym_BSLASHintertext] = ACTIONS(6021), - [anon_sym_shortintertext] = ACTIONS(6021), - }, - [1484] = { - [sym_curly_group] = STATE(1696), - [aux_sym_generic_command_repeat1] = STATE(1474), - [sym_command_name] = ACTIONS(5964), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5964), - [anon_sym_LBRACK] = ACTIONS(5966), - [anon_sym_RBRACK] = ACTIONS(5966), - [anon_sym_COMMA] = ACTIONS(5966), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_LPAREN] = ACTIONS(5966), - [anon_sym_RPAREN] = ACTIONS(5966), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(5966), - [sym_word] = ACTIONS(5964), - [sym_placeholder] = ACTIONS(5966), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5966), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_SQUOTE] = ACTIONS(5964), - [anon_sym__] = ACTIONS(5966), - [anon_sym_CARET] = ACTIONS(5966), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5966), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5966), - [anon_sym_DOLLAR] = ACTIONS(5964), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5966), - [anon_sym_BSLASHtitle] = ACTIONS(5964), - [anon_sym_BSLASHauthor] = ACTIONS(5964), - [anon_sym_BSLASHusepackage] = ACTIONS(5964), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5964), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5964), - [anon_sym_BSLASHinclude] = ACTIONS(5964), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5964), - [anon_sym_BSLASHinput] = ACTIONS(5964), - [anon_sym_BSLASHsubfile] = ACTIONS(5964), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5964), - [anon_sym_BSLASHbibliography] = ACTIONS(5964), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5964), - [anon_sym_BSLASHincludesvg] = ACTIONS(5964), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5964), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5964), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5964), - [anon_sym_BSLASHimport] = ACTIONS(5964), - [anon_sym_BSLASHsubimport] = ACTIONS(5964), - [anon_sym_BSLASHinputfrom] = ACTIONS(5964), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5964), - [anon_sym_BSLASHincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHcaption] = ACTIONS(5964), - [anon_sym_BSLASHcite] = ACTIONS(5964), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCite] = ACTIONS(5964), - [anon_sym_BSLASHnocite] = ACTIONS(5964), - [anon_sym_BSLASHcitet] = ACTIONS(5964), - [anon_sym_BSLASHcitep] = ACTIONS(5964), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteauthor] = ACTIONS(5964), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5964), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitetitle] = ACTIONS(5964), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteyear] = ACTIONS(5964), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitedate] = ACTIONS(5964), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteurl] = ACTIONS(5964), - [anon_sym_BSLASHfullcite] = ACTIONS(5964), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5964), - [anon_sym_BSLASHcitealt] = ACTIONS(5964), - [anon_sym_BSLASHcitealp] = ACTIONS(5964), - [anon_sym_BSLASHcitetext] = ACTIONS(5964), - [anon_sym_BSLASHparencite] = ACTIONS(5964), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHParencite] = ACTIONS(5964), - [anon_sym_BSLASHfootcite] = ACTIONS(5964), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5964), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5964), - [anon_sym_BSLASHtextcite] = ACTIONS(5964), - [anon_sym_BSLASHTextcite] = ACTIONS(5964), - [anon_sym_BSLASHsmartcite] = ACTIONS(5964), - [anon_sym_BSLASHSmartcite] = ACTIONS(5964), - [anon_sym_BSLASHsupercite] = ACTIONS(5964), - [anon_sym_BSLASHautocite] = ACTIONS(5964), - [anon_sym_BSLASHAutocite] = ACTIONS(5964), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHvolcite] = ACTIONS(5964), - [anon_sym_BSLASHVolcite] = ACTIONS(5964), - [anon_sym_BSLASHpvolcite] = ACTIONS(5964), - [anon_sym_BSLASHPvolcite] = ACTIONS(5964), - [anon_sym_BSLASHfvolcite] = ACTIONS(5964), - [anon_sym_BSLASHftvolcite] = ACTIONS(5964), - [anon_sym_BSLASHsvolcite] = ACTIONS(5964), - [anon_sym_BSLASHSvolcite] = ACTIONS(5964), - [anon_sym_BSLASHtvolcite] = ACTIONS(5964), - [anon_sym_BSLASHTvolcite] = ACTIONS(5964), - [anon_sym_BSLASHavolcite] = ACTIONS(5964), - [anon_sym_BSLASHAvolcite] = ACTIONS(5964), - [anon_sym_BSLASHnotecite] = ACTIONS(5964), - [anon_sym_BSLASHNotecite] = ACTIONS(5964), - [anon_sym_BSLASHpnotecite] = ACTIONS(5964), - [anon_sym_BSLASHPnotecite] = ACTIONS(5964), - [anon_sym_BSLASHfnotecite] = ACTIONS(5964), - [anon_sym_BSLASHlabel] = ACTIONS(5964), - [anon_sym_BSLASHref] = ACTIONS(5964), - [anon_sym_BSLASHeqref] = ACTIONS(5964), - [anon_sym_BSLASHvref] = ACTIONS(5964), - [anon_sym_BSLASHVref] = ACTIONS(5964), - [anon_sym_BSLASHautoref] = ACTIONS(5964), - [anon_sym_BSLASHpageref] = ACTIONS(5964), - [anon_sym_BSLASHcref] = ACTIONS(5964), - [anon_sym_BSLASHCref] = ACTIONS(5964), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnameCref] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHlabelcref] = ACTIONS(5964), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCrefrange] = ACTIONS(5964), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnewlabel] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5964), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5964), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5966), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHdef] = ACTIONS(5964), - [anon_sym_BSLASHlet] = ACTIONS(5964), - [anon_sym_BSLASHleft] = ACTIONS(5964), - [anon_sym_BSLASHbig] = ACTIONS(5964), - [anon_sym_BSLASHBig] = ACTIONS(5964), - [anon_sym_BSLASHbigg] = ACTIONS(5964), - [anon_sym_BSLASHBigg] = ACTIONS(5964), - [anon_sym_BSLASHbigl] = ACTIONS(5964), - [anon_sym_BSLASHBigl] = ACTIONS(5964), - [anon_sym_BSLASHbiggl] = ACTIONS(5964), - [anon_sym_BSLASHBiggl] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5964), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5964), - [anon_sym_BSLASHgls] = ACTIONS(5964), - [anon_sym_BSLASHGls] = ACTIONS(5964), - [anon_sym_BSLASHGLS] = ACTIONS(5964), - [anon_sym_BSLASHglspl] = ACTIONS(5964), - [anon_sym_BSLASHGlspl] = ACTIONS(5964), - [anon_sym_BSLASHGLSpl] = ACTIONS(5964), - [anon_sym_BSLASHglsdisp] = ACTIONS(5964), - [anon_sym_BSLASHglslink] = ACTIONS(5964), - [anon_sym_BSLASHglstext] = ACTIONS(5964), - [anon_sym_BSLASHGlstext] = ACTIONS(5964), - [anon_sym_BSLASHGLStext] = ACTIONS(5964), - [anon_sym_BSLASHglsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5964), - [anon_sym_BSLASHglsplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSplural] = ACTIONS(5964), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHglsname] = ACTIONS(5964), - [anon_sym_BSLASHGlsname] = ACTIONS(5964), - [anon_sym_BSLASHGLSname] = ACTIONS(5964), - [anon_sym_BSLASHglssymbol] = ACTIONS(5964), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5964), - [anon_sym_BSLASHglsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5964), - [anon_sym_BSLASHglsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5964), - [anon_sym_BSLASHglsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5964), - [anon_sym_BSLASHglsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5964), - [anon_sym_BSLASHglsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5964), - [anon_sym_BSLASHnewacronym] = ACTIONS(5964), - [anon_sym_BSLASHacrshort] = ACTIONS(5964), - [anon_sym_BSLASHAcrshort] = ACTIONS(5964), - [anon_sym_BSLASHACRshort] = ACTIONS(5964), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5964), - [anon_sym_BSLASHacrlong] = ACTIONS(5964), - [anon_sym_BSLASHAcrlong] = ACTIONS(5964), - [anon_sym_BSLASHACRlong] = ACTIONS(5964), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5964), - [anon_sym_BSLASHacrfull] = ACTIONS(5964), - [anon_sym_BSLASHAcrfull] = ACTIONS(5964), - [anon_sym_BSLASHACRfull] = ACTIONS(5964), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5964), - [anon_sym_BSLASHacs] = ACTIONS(5964), - [anon_sym_BSLASHAcs] = ACTIONS(5964), - [anon_sym_BSLASHacsp] = ACTIONS(5964), - [anon_sym_BSLASHAcsp] = ACTIONS(5964), - [anon_sym_BSLASHacl] = ACTIONS(5964), - [anon_sym_BSLASHAcl] = ACTIONS(5964), - [anon_sym_BSLASHaclp] = ACTIONS(5964), - [anon_sym_BSLASHAclp] = ACTIONS(5964), - [anon_sym_BSLASHacf] = ACTIONS(5964), - [anon_sym_BSLASHAcf] = ACTIONS(5964), - [anon_sym_BSLASHacfp] = ACTIONS(5964), - [anon_sym_BSLASHAcfp] = ACTIONS(5964), - [anon_sym_BSLASHac] = ACTIONS(5964), - [anon_sym_BSLASHAc] = ACTIONS(5964), - [anon_sym_BSLASHacp] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5964), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5964), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5964), - [anon_sym_BSLASHcolor] = ACTIONS(5964), - [anon_sym_BSLASHcolorbox] = ACTIONS(5964), - [anon_sym_BSLASHtextcolor] = ACTIONS(5964), - [anon_sym_BSLASHpagecolor] = ACTIONS(5964), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5964), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5964), - [anon_sym_BSLASHtext] = ACTIONS(5964), - [anon_sym_BSLASHintertext] = ACTIONS(5964), - [anon_sym_shortintertext] = ACTIONS(5964), - }, - [1485] = { - [sym_curly_group] = STATE(1529), - [sym_brack_group_text] = STATE(2574), - [sym_command_name] = ACTIONS(5993), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5995), - [anon_sym_COMMA] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(5995), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_LBRACE] = ACTIONS(3520), - [sym_word] = ACTIONS(5993), - [sym_placeholder] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_BANG] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_SQUOTE] = ACTIONS(5993), - [anon_sym__] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5993), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5995), - [anon_sym_BSLASHbegin] = ACTIONS(5993), - [anon_sym_BSLASHtitle] = ACTIONS(5993), - [anon_sym_BSLASHauthor] = ACTIONS(5993), - [anon_sym_BSLASHusepackage] = ACTIONS(5993), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5993), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5993), - [anon_sym_BSLASHinclude] = ACTIONS(5993), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5993), - [anon_sym_BSLASHinput] = ACTIONS(5993), - [anon_sym_BSLASHsubfile] = ACTIONS(5993), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5993), - [anon_sym_BSLASHbibliography] = ACTIONS(5993), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5993), - [anon_sym_BSLASHincludesvg] = ACTIONS(5993), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5993), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5993), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5993), - [anon_sym_BSLASHimport] = ACTIONS(5993), - [anon_sym_BSLASHsubimport] = ACTIONS(5993), - [anon_sym_BSLASHinputfrom] = ACTIONS(5993), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5993), - [anon_sym_BSLASHincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHcaption] = ACTIONS(5993), - [anon_sym_BSLASHcite] = ACTIONS(5993), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCite] = ACTIONS(5993), - [anon_sym_BSLASHnocite] = ACTIONS(5993), - [anon_sym_BSLASHcitet] = ACTIONS(5993), - [anon_sym_BSLASHcitep] = ACTIONS(5993), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteauthor] = ACTIONS(5993), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5993), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitetitle] = ACTIONS(5993), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteyear] = ACTIONS(5993), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitedate] = ACTIONS(5993), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteurl] = ACTIONS(5993), - [anon_sym_BSLASHfullcite] = ACTIONS(5993), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5993), - [anon_sym_BSLASHcitealt] = ACTIONS(5993), - [anon_sym_BSLASHcitealp] = ACTIONS(5993), - [anon_sym_BSLASHcitetext] = ACTIONS(5993), - [anon_sym_BSLASHparencite] = ACTIONS(5993), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHParencite] = ACTIONS(5993), - [anon_sym_BSLASHfootcite] = ACTIONS(5993), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5993), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5993), - [anon_sym_BSLASHtextcite] = ACTIONS(5993), - [anon_sym_BSLASHTextcite] = ACTIONS(5993), - [anon_sym_BSLASHsmartcite] = ACTIONS(5993), - [anon_sym_BSLASHSmartcite] = ACTIONS(5993), - [anon_sym_BSLASHsupercite] = ACTIONS(5993), - [anon_sym_BSLASHautocite] = ACTIONS(5993), - [anon_sym_BSLASHAutocite] = ACTIONS(5993), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHvolcite] = ACTIONS(5993), - [anon_sym_BSLASHVolcite] = ACTIONS(5993), - [anon_sym_BSLASHpvolcite] = ACTIONS(5993), - [anon_sym_BSLASHPvolcite] = ACTIONS(5993), - [anon_sym_BSLASHfvolcite] = ACTIONS(5993), - [anon_sym_BSLASHftvolcite] = ACTIONS(5993), - [anon_sym_BSLASHsvolcite] = ACTIONS(5993), - [anon_sym_BSLASHSvolcite] = ACTIONS(5993), - [anon_sym_BSLASHtvolcite] = ACTIONS(5993), - [anon_sym_BSLASHTvolcite] = ACTIONS(5993), - [anon_sym_BSLASHavolcite] = ACTIONS(5993), - [anon_sym_BSLASHAvolcite] = ACTIONS(5993), - [anon_sym_BSLASHnotecite] = ACTIONS(5993), - [anon_sym_BSLASHNotecite] = ACTIONS(5993), - [anon_sym_BSLASHpnotecite] = ACTIONS(5993), - [anon_sym_BSLASHPnotecite] = ACTIONS(5993), - [anon_sym_BSLASHfnotecite] = ACTIONS(5993), - [anon_sym_BSLASHlabel] = ACTIONS(5993), - [anon_sym_BSLASHref] = ACTIONS(5993), - [anon_sym_BSLASHeqref] = ACTIONS(5993), - [anon_sym_BSLASHvref] = ACTIONS(5993), - [anon_sym_BSLASHVref] = ACTIONS(5993), - [anon_sym_BSLASHautoref] = ACTIONS(5993), - [anon_sym_BSLASHpageref] = ACTIONS(5993), - [anon_sym_BSLASHcref] = ACTIONS(5993), - [anon_sym_BSLASHCref] = ACTIONS(5993), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnameCref] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHlabelcref] = ACTIONS(5993), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCrefrange] = ACTIONS(5993), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnewlabel] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5993), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5993), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5995), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHdef] = ACTIONS(5993), - [anon_sym_BSLASHlet] = ACTIONS(5993), - [anon_sym_BSLASHleft] = ACTIONS(5993), - [anon_sym_BSLASHbig] = ACTIONS(5993), - [anon_sym_BSLASHBig] = ACTIONS(5993), - [anon_sym_BSLASHbigg] = ACTIONS(5993), - [anon_sym_BSLASHBigg] = ACTIONS(5993), - [anon_sym_BSLASHbigl] = ACTIONS(5993), - [anon_sym_BSLASHBigl] = ACTIONS(5993), - [anon_sym_BSLASHbiggl] = ACTIONS(5993), - [anon_sym_BSLASHBiggl] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5993), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5993), - [anon_sym_BSLASHgls] = ACTIONS(5993), - [anon_sym_BSLASHGls] = ACTIONS(5993), - [anon_sym_BSLASHGLS] = ACTIONS(5993), - [anon_sym_BSLASHglspl] = ACTIONS(5993), - [anon_sym_BSLASHGlspl] = ACTIONS(5993), - [anon_sym_BSLASHGLSpl] = ACTIONS(5993), - [anon_sym_BSLASHglsdisp] = ACTIONS(5993), - [anon_sym_BSLASHglslink] = ACTIONS(5993), - [anon_sym_BSLASHglstext] = ACTIONS(5993), - [anon_sym_BSLASHGlstext] = ACTIONS(5993), - [anon_sym_BSLASHGLStext] = ACTIONS(5993), - [anon_sym_BSLASHglsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5993), - [anon_sym_BSLASHglsplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSplural] = ACTIONS(5993), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHglsname] = ACTIONS(5993), - [anon_sym_BSLASHGlsname] = ACTIONS(5993), - [anon_sym_BSLASHGLSname] = ACTIONS(5993), - [anon_sym_BSLASHglssymbol] = ACTIONS(5993), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5993), - [anon_sym_BSLASHglsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5993), - [anon_sym_BSLASHglsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5993), - [anon_sym_BSLASHglsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5993), - [anon_sym_BSLASHglsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5993), - [anon_sym_BSLASHglsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5993), - [anon_sym_BSLASHnewacronym] = ACTIONS(5993), - [anon_sym_BSLASHacrshort] = ACTIONS(5993), - [anon_sym_BSLASHAcrshort] = ACTIONS(5993), - [anon_sym_BSLASHACRshort] = ACTIONS(5993), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5993), - [anon_sym_BSLASHacrlong] = ACTIONS(5993), - [anon_sym_BSLASHAcrlong] = ACTIONS(5993), - [anon_sym_BSLASHACRlong] = ACTIONS(5993), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5993), - [anon_sym_BSLASHacrfull] = ACTIONS(5993), - [anon_sym_BSLASHAcrfull] = ACTIONS(5993), - [anon_sym_BSLASHACRfull] = ACTIONS(5993), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5993), - [anon_sym_BSLASHacs] = ACTIONS(5993), - [anon_sym_BSLASHAcs] = ACTIONS(5993), - [anon_sym_BSLASHacsp] = ACTIONS(5993), - [anon_sym_BSLASHAcsp] = ACTIONS(5993), - [anon_sym_BSLASHacl] = ACTIONS(5993), - [anon_sym_BSLASHAcl] = ACTIONS(5993), - [anon_sym_BSLASHaclp] = ACTIONS(5993), - [anon_sym_BSLASHAclp] = ACTIONS(5993), - [anon_sym_BSLASHacf] = ACTIONS(5993), - [anon_sym_BSLASHAcf] = ACTIONS(5993), - [anon_sym_BSLASHacfp] = ACTIONS(5993), - [anon_sym_BSLASHAcfp] = ACTIONS(5993), - [anon_sym_BSLASHac] = ACTIONS(5993), - [anon_sym_BSLASHAc] = ACTIONS(5993), - [anon_sym_BSLASHacp] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5993), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5993), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5993), - [anon_sym_BSLASHcolor] = ACTIONS(5993), - [anon_sym_BSLASHcolorbox] = ACTIONS(5993), - [anon_sym_BSLASHtextcolor] = ACTIONS(5993), - [anon_sym_BSLASHpagecolor] = ACTIONS(5993), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5993), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5993), - [anon_sym_BSLASHtext] = ACTIONS(5993), - [anon_sym_BSLASHintertext] = ACTIONS(5993), - [anon_sym_shortintertext] = ACTIONS(5993), - }, - [1486] = { - [sym_command_name] = ACTIONS(6173), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6173), - [anon_sym_LBRACK] = ACTIONS(6175), - [anon_sym_RBRACK] = ACTIONS(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_EQ] = ACTIONS(6175), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_LBRACE] = ACTIONS(6175), - [sym_word] = ACTIONS(6173), - [sym_placeholder] = ACTIONS(6175), - [anon_sym_PLUS] = ACTIONS(6175), - [anon_sym_DASH] = ACTIONS(6175), - [anon_sym_STAR] = ACTIONS(6175), - [anon_sym_SLASH] = ACTIONS(6175), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_BANG] = ACTIONS(6173), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_COLON] = ACTIONS(6173), - [anon_sym_SQUOTE] = ACTIONS(6173), - [anon_sym__] = ACTIONS(6175), - [anon_sym_CARET] = ACTIONS(6175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6175), - [anon_sym_DOLLAR] = ACTIONS(6173), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6175), - [anon_sym_BSLASHbegin] = ACTIONS(6173), - [anon_sym_BSLASHend] = ACTIONS(6173), - [anon_sym_BSLASHtitle] = ACTIONS(6173), - [anon_sym_BSLASHauthor] = ACTIONS(6173), - [anon_sym_BSLASHusepackage] = ACTIONS(6173), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6173), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6173), - [anon_sym_BSLASHinclude] = ACTIONS(6173), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6173), - [anon_sym_BSLASHinput] = ACTIONS(6173), - [anon_sym_BSLASHsubfile] = ACTIONS(6173), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6173), - [anon_sym_BSLASHbibliography] = ACTIONS(6173), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6173), - [anon_sym_BSLASHincludesvg] = ACTIONS(6173), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6173), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6173), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6173), - [anon_sym_BSLASHimport] = ACTIONS(6173), - [anon_sym_BSLASHsubimport] = ACTIONS(6173), - [anon_sym_BSLASHinputfrom] = ACTIONS(6173), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6173), - [anon_sym_BSLASHincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHcaption] = ACTIONS(6173), - [anon_sym_BSLASHcite] = ACTIONS(6173), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCite] = ACTIONS(6173), - [anon_sym_BSLASHnocite] = ACTIONS(6173), - [anon_sym_BSLASHcitet] = ACTIONS(6173), - [anon_sym_BSLASHcitep] = ACTIONS(6173), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteauthor] = ACTIONS(6173), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6173), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitetitle] = ACTIONS(6173), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteyear] = ACTIONS(6173), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitedate] = ACTIONS(6173), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteurl] = ACTIONS(6173), - [anon_sym_BSLASHfullcite] = ACTIONS(6173), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6173), - [anon_sym_BSLASHcitealt] = ACTIONS(6173), - [anon_sym_BSLASHcitealp] = ACTIONS(6173), - [anon_sym_BSLASHcitetext] = ACTIONS(6173), - [anon_sym_BSLASHparencite] = ACTIONS(6173), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHParencite] = ACTIONS(6173), - [anon_sym_BSLASHfootcite] = ACTIONS(6173), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6173), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6173), - [anon_sym_BSLASHtextcite] = ACTIONS(6173), - [anon_sym_BSLASHTextcite] = ACTIONS(6173), - [anon_sym_BSLASHsmartcite] = ACTIONS(6173), - [anon_sym_BSLASHSmartcite] = ACTIONS(6173), - [anon_sym_BSLASHsupercite] = ACTIONS(6173), - [anon_sym_BSLASHautocite] = ACTIONS(6173), - [anon_sym_BSLASHAutocite] = ACTIONS(6173), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHvolcite] = ACTIONS(6173), - [anon_sym_BSLASHVolcite] = ACTIONS(6173), - [anon_sym_BSLASHpvolcite] = ACTIONS(6173), - [anon_sym_BSLASHPvolcite] = ACTIONS(6173), - [anon_sym_BSLASHfvolcite] = ACTIONS(6173), - [anon_sym_BSLASHftvolcite] = ACTIONS(6173), - [anon_sym_BSLASHsvolcite] = ACTIONS(6173), - [anon_sym_BSLASHSvolcite] = ACTIONS(6173), - [anon_sym_BSLASHtvolcite] = ACTIONS(6173), - [anon_sym_BSLASHTvolcite] = ACTIONS(6173), - [anon_sym_BSLASHavolcite] = ACTIONS(6173), - [anon_sym_BSLASHAvolcite] = ACTIONS(6173), - [anon_sym_BSLASHnotecite] = ACTIONS(6173), - [anon_sym_BSLASHNotecite] = ACTIONS(6173), - [anon_sym_BSLASHpnotecite] = ACTIONS(6173), - [anon_sym_BSLASHPnotecite] = ACTIONS(6173), - [anon_sym_BSLASHfnotecite] = ACTIONS(6173), - [anon_sym_BSLASHlabel] = ACTIONS(6173), - [anon_sym_BSLASHref] = ACTIONS(6173), - [anon_sym_BSLASHeqref] = ACTIONS(6173), - [anon_sym_BSLASHvref] = ACTIONS(6173), - [anon_sym_BSLASHVref] = ACTIONS(6173), - [anon_sym_BSLASHautoref] = ACTIONS(6173), - [anon_sym_BSLASHpageref] = ACTIONS(6173), - [anon_sym_BSLASHcref] = ACTIONS(6173), - [anon_sym_BSLASHCref] = ACTIONS(6173), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnameCref] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHlabelcref] = ACTIONS(6173), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCrefrange] = ACTIONS(6173), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnewlabel] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6173), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6173), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6175), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHdef] = ACTIONS(6173), - [anon_sym_BSLASHlet] = ACTIONS(6173), - [anon_sym_BSLASHleft] = ACTIONS(6173), - [anon_sym_BSLASHbig] = ACTIONS(6173), - [anon_sym_BSLASHBig] = ACTIONS(6173), - [anon_sym_BSLASHbigg] = ACTIONS(6173), - [anon_sym_BSLASHBigg] = ACTIONS(6173), - [anon_sym_BSLASHbigl] = ACTIONS(6173), - [anon_sym_BSLASHBigl] = ACTIONS(6173), - [anon_sym_BSLASHbiggl] = ACTIONS(6173), - [anon_sym_BSLASHBiggl] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6173), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6173), - [anon_sym_BSLASHgls] = ACTIONS(6173), - [anon_sym_BSLASHGls] = ACTIONS(6173), - [anon_sym_BSLASHGLS] = ACTIONS(6173), - [anon_sym_BSLASHglspl] = ACTIONS(6173), - [anon_sym_BSLASHGlspl] = ACTIONS(6173), - [anon_sym_BSLASHGLSpl] = ACTIONS(6173), - [anon_sym_BSLASHglsdisp] = ACTIONS(6173), - [anon_sym_BSLASHglslink] = ACTIONS(6173), - [anon_sym_BSLASHglstext] = ACTIONS(6173), - [anon_sym_BSLASHGlstext] = ACTIONS(6173), - [anon_sym_BSLASHGLStext] = ACTIONS(6173), - [anon_sym_BSLASHglsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6173), - [anon_sym_BSLASHglsplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSplural] = ACTIONS(6173), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHglsname] = ACTIONS(6173), - [anon_sym_BSLASHGlsname] = ACTIONS(6173), - [anon_sym_BSLASHGLSname] = ACTIONS(6173), - [anon_sym_BSLASHglssymbol] = ACTIONS(6173), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6173), - [anon_sym_BSLASHglsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6173), - [anon_sym_BSLASHglsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6173), - [anon_sym_BSLASHglsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6173), - [anon_sym_BSLASHglsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6173), - [anon_sym_BSLASHglsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6173), - [anon_sym_BSLASHnewacronym] = ACTIONS(6173), - [anon_sym_BSLASHacrshort] = ACTIONS(6173), - [anon_sym_BSLASHAcrshort] = ACTIONS(6173), - [anon_sym_BSLASHACRshort] = ACTIONS(6173), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6173), - [anon_sym_BSLASHacrlong] = ACTIONS(6173), - [anon_sym_BSLASHAcrlong] = ACTIONS(6173), - [anon_sym_BSLASHACRlong] = ACTIONS(6173), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6173), - [anon_sym_BSLASHacrfull] = ACTIONS(6173), - [anon_sym_BSLASHAcrfull] = ACTIONS(6173), - [anon_sym_BSLASHACRfull] = ACTIONS(6173), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6173), - [anon_sym_BSLASHacs] = ACTIONS(6173), - [anon_sym_BSLASHAcs] = ACTIONS(6173), - [anon_sym_BSLASHacsp] = ACTIONS(6173), - [anon_sym_BSLASHAcsp] = ACTIONS(6173), - [anon_sym_BSLASHacl] = ACTIONS(6173), - [anon_sym_BSLASHAcl] = ACTIONS(6173), - [anon_sym_BSLASHaclp] = ACTIONS(6173), - [anon_sym_BSLASHAclp] = ACTIONS(6173), - [anon_sym_BSLASHacf] = ACTIONS(6173), - [anon_sym_BSLASHAcf] = ACTIONS(6173), - [anon_sym_BSLASHacfp] = ACTIONS(6173), - [anon_sym_BSLASHAcfp] = ACTIONS(6173), - [anon_sym_BSLASHac] = ACTIONS(6173), - [anon_sym_BSLASHAc] = ACTIONS(6173), - [anon_sym_BSLASHacp] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6173), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6173), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6173), - [anon_sym_BSLASHcolor] = ACTIONS(6173), - [anon_sym_BSLASHcolorbox] = ACTIONS(6173), - [anon_sym_BSLASHtextcolor] = ACTIONS(6173), - [anon_sym_BSLASHpagecolor] = ACTIONS(6173), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6173), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6173), - [anon_sym_BSLASHtext] = ACTIONS(6173), - [anon_sym_BSLASHintertext] = ACTIONS(6173), - [anon_sym_shortintertext] = ACTIONS(6173), - }, - [1487] = { - [sym_command_name] = ACTIONS(6301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6301), - [anon_sym_LBRACK] = ACTIONS(6303), - [anon_sym_RBRACK] = ACTIONS(6303), - [anon_sym_COMMA] = ACTIONS(6303), - [anon_sym_EQ] = ACTIONS(6303), - [anon_sym_LPAREN] = ACTIONS(6303), - [anon_sym_RPAREN] = ACTIONS(6303), - [anon_sym_LBRACE] = ACTIONS(6303), - [sym_word] = ACTIONS(6301), - [sym_placeholder] = ACTIONS(6303), - [anon_sym_PLUS] = ACTIONS(6303), - [anon_sym_DASH] = ACTIONS(6303), - [anon_sym_STAR] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6303), - [anon_sym_LT] = ACTIONS(6301), - [anon_sym_GT] = ACTIONS(6301), - [anon_sym_BANG] = ACTIONS(6301), - [anon_sym_PIPE] = ACTIONS(6301), - [anon_sym_COLON] = ACTIONS(6301), - [anon_sym_SQUOTE] = ACTIONS(6301), - [anon_sym__] = ACTIONS(6303), - [anon_sym_CARET] = ACTIONS(6303), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6303), - [anon_sym_DOLLAR] = ACTIONS(6301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6303), - [anon_sym_BSLASHbegin] = ACTIONS(6301), - [anon_sym_BSLASHend] = ACTIONS(6301), - [anon_sym_BSLASHtitle] = ACTIONS(6301), - [anon_sym_BSLASHauthor] = ACTIONS(6301), - [anon_sym_BSLASHusepackage] = ACTIONS(6301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6301), - [anon_sym_BSLASHinclude] = ACTIONS(6301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6301), - [anon_sym_BSLASHinput] = ACTIONS(6301), - [anon_sym_BSLASHsubfile] = ACTIONS(6301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6301), - [anon_sym_BSLASHbibliography] = ACTIONS(6301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6301), - [anon_sym_BSLASHincludesvg] = ACTIONS(6301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6301), - [anon_sym_BSLASHimport] = ACTIONS(6301), - [anon_sym_BSLASHsubimport] = ACTIONS(6301), - [anon_sym_BSLASHinputfrom] = ACTIONS(6301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6301), - [anon_sym_BSLASHincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHcaption] = ACTIONS(6301), - [anon_sym_BSLASHcite] = ACTIONS(6301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCite] = ACTIONS(6301), - [anon_sym_BSLASHnocite] = ACTIONS(6301), - [anon_sym_BSLASHcitet] = ACTIONS(6301), - [anon_sym_BSLASHcitep] = ACTIONS(6301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteauthor] = ACTIONS(6301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitetitle] = ACTIONS(6301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteyear] = ACTIONS(6301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitedate] = ACTIONS(6301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteurl] = ACTIONS(6301), - [anon_sym_BSLASHfullcite] = ACTIONS(6301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6301), - [anon_sym_BSLASHcitealt] = ACTIONS(6301), - [anon_sym_BSLASHcitealp] = ACTIONS(6301), - [anon_sym_BSLASHcitetext] = ACTIONS(6301), - [anon_sym_BSLASHparencite] = ACTIONS(6301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHParencite] = ACTIONS(6301), - [anon_sym_BSLASHfootcite] = ACTIONS(6301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6301), - [anon_sym_BSLASHtextcite] = ACTIONS(6301), - [anon_sym_BSLASHTextcite] = ACTIONS(6301), - [anon_sym_BSLASHsmartcite] = ACTIONS(6301), - [anon_sym_BSLASHSmartcite] = ACTIONS(6301), - [anon_sym_BSLASHsupercite] = ACTIONS(6301), - [anon_sym_BSLASHautocite] = ACTIONS(6301), - [anon_sym_BSLASHAutocite] = ACTIONS(6301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHvolcite] = ACTIONS(6301), - [anon_sym_BSLASHVolcite] = ACTIONS(6301), - [anon_sym_BSLASHpvolcite] = ACTIONS(6301), - [anon_sym_BSLASHPvolcite] = ACTIONS(6301), - [anon_sym_BSLASHfvolcite] = ACTIONS(6301), - [anon_sym_BSLASHftvolcite] = ACTIONS(6301), - [anon_sym_BSLASHsvolcite] = ACTIONS(6301), - [anon_sym_BSLASHSvolcite] = ACTIONS(6301), - [anon_sym_BSLASHtvolcite] = ACTIONS(6301), - [anon_sym_BSLASHTvolcite] = ACTIONS(6301), - [anon_sym_BSLASHavolcite] = ACTIONS(6301), - [anon_sym_BSLASHAvolcite] = ACTIONS(6301), - [anon_sym_BSLASHnotecite] = ACTIONS(6301), - [anon_sym_BSLASHNotecite] = ACTIONS(6301), - [anon_sym_BSLASHpnotecite] = ACTIONS(6301), - [anon_sym_BSLASHPnotecite] = ACTIONS(6301), - [anon_sym_BSLASHfnotecite] = ACTIONS(6301), - [anon_sym_BSLASHlabel] = ACTIONS(6301), - [anon_sym_BSLASHref] = ACTIONS(6301), - [anon_sym_BSLASHeqref] = ACTIONS(6301), - [anon_sym_BSLASHvref] = ACTIONS(6301), - [anon_sym_BSLASHVref] = ACTIONS(6301), - [anon_sym_BSLASHautoref] = ACTIONS(6301), - [anon_sym_BSLASHpageref] = ACTIONS(6301), - [anon_sym_BSLASHcref] = ACTIONS(6301), - [anon_sym_BSLASHCref] = ACTIONS(6301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnameCref] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHlabelcref] = ACTIONS(6301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCrefrange] = ACTIONS(6301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnewlabel] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6303), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHdef] = ACTIONS(6301), - [anon_sym_BSLASHlet] = ACTIONS(6301), - [anon_sym_BSLASHleft] = ACTIONS(6301), - [anon_sym_BSLASHbig] = ACTIONS(6301), - [anon_sym_BSLASHBig] = ACTIONS(6301), - [anon_sym_BSLASHbigg] = ACTIONS(6301), - [anon_sym_BSLASHBigg] = ACTIONS(6301), - [anon_sym_BSLASHbigl] = ACTIONS(6301), - [anon_sym_BSLASHBigl] = ACTIONS(6301), - [anon_sym_BSLASHbiggl] = ACTIONS(6301), - [anon_sym_BSLASHBiggl] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6301), - [anon_sym_BSLASHgls] = ACTIONS(6301), - [anon_sym_BSLASHGls] = ACTIONS(6301), - [anon_sym_BSLASHGLS] = ACTIONS(6301), - [anon_sym_BSLASHglspl] = ACTIONS(6301), - [anon_sym_BSLASHGlspl] = ACTIONS(6301), - [anon_sym_BSLASHGLSpl] = ACTIONS(6301), - [anon_sym_BSLASHglsdisp] = ACTIONS(6301), - [anon_sym_BSLASHglslink] = ACTIONS(6301), - [anon_sym_BSLASHglstext] = ACTIONS(6301), - [anon_sym_BSLASHGlstext] = ACTIONS(6301), - [anon_sym_BSLASHGLStext] = ACTIONS(6301), - [anon_sym_BSLASHglsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6301), - [anon_sym_BSLASHglsplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSplural] = ACTIONS(6301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHglsname] = ACTIONS(6301), - [anon_sym_BSLASHGlsname] = ACTIONS(6301), - [anon_sym_BSLASHGLSname] = ACTIONS(6301), - [anon_sym_BSLASHglssymbol] = ACTIONS(6301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6301), - [anon_sym_BSLASHglsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6301), - [anon_sym_BSLASHglsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6301), - [anon_sym_BSLASHglsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6301), - [anon_sym_BSLASHglsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6301), - [anon_sym_BSLASHglsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6301), - [anon_sym_BSLASHnewacronym] = ACTIONS(6301), - [anon_sym_BSLASHacrshort] = ACTIONS(6301), - [anon_sym_BSLASHAcrshort] = ACTIONS(6301), - [anon_sym_BSLASHACRshort] = ACTIONS(6301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6301), - [anon_sym_BSLASHacrlong] = ACTIONS(6301), - [anon_sym_BSLASHAcrlong] = ACTIONS(6301), - [anon_sym_BSLASHACRlong] = ACTIONS(6301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6301), - [anon_sym_BSLASHacrfull] = ACTIONS(6301), - [anon_sym_BSLASHAcrfull] = ACTIONS(6301), - [anon_sym_BSLASHACRfull] = ACTIONS(6301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6301), - [anon_sym_BSLASHacs] = ACTIONS(6301), - [anon_sym_BSLASHAcs] = ACTIONS(6301), - [anon_sym_BSLASHacsp] = ACTIONS(6301), - [anon_sym_BSLASHAcsp] = ACTIONS(6301), - [anon_sym_BSLASHacl] = ACTIONS(6301), - [anon_sym_BSLASHAcl] = ACTIONS(6301), - [anon_sym_BSLASHaclp] = ACTIONS(6301), - [anon_sym_BSLASHAclp] = ACTIONS(6301), - [anon_sym_BSLASHacf] = ACTIONS(6301), - [anon_sym_BSLASHAcf] = ACTIONS(6301), - [anon_sym_BSLASHacfp] = ACTIONS(6301), - [anon_sym_BSLASHAcfp] = ACTIONS(6301), - [anon_sym_BSLASHac] = ACTIONS(6301), - [anon_sym_BSLASHAc] = ACTIONS(6301), - [anon_sym_BSLASHacp] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6301), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6301), - [anon_sym_BSLASHcolor] = ACTIONS(6301), - [anon_sym_BSLASHcolorbox] = ACTIONS(6301), - [anon_sym_BSLASHtextcolor] = ACTIONS(6301), - [anon_sym_BSLASHpagecolor] = ACTIONS(6301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6301), - [anon_sym_BSLASHtext] = ACTIONS(6301), - [anon_sym_BSLASHintertext] = ACTIONS(6301), - [anon_sym_shortintertext] = ACTIONS(6301), - }, - [1488] = { - [sym_command_name] = ACTIONS(5997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5997), - [anon_sym_BSLASHfi] = ACTIONS(6939), - [anon_sym_LBRACK] = ACTIONS(6001), - [anon_sym_RBRACK] = ACTIONS(6001), - [anon_sym_COMMA] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(6001), - [anon_sym_LPAREN] = ACTIONS(6001), - [anon_sym_RPAREN] = ACTIONS(6001), - [anon_sym_LBRACE] = ACTIONS(6001), - [anon_sym_RBRACE] = ACTIONS(6001), - [sym_word] = ACTIONS(5997), - [sym_placeholder] = ACTIONS(6001), - [anon_sym_PLUS] = ACTIONS(6001), - [anon_sym_DASH] = ACTIONS(6001), - [anon_sym_STAR] = ACTIONS(6001), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_COLON] = ACTIONS(5997), - [anon_sym_SQUOTE] = ACTIONS(5997), - [anon_sym__] = ACTIONS(6001), - [anon_sym_CARET] = ACTIONS(6001), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), - [anon_sym_BSLASHtitle] = ACTIONS(5997), - [anon_sym_BSLASHauthor] = ACTIONS(5997), - [anon_sym_BSLASHusepackage] = ACTIONS(5997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5997), - [anon_sym_BSLASHinclude] = ACTIONS(5997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5997), - [anon_sym_BSLASHinput] = ACTIONS(5997), - [anon_sym_BSLASHsubfile] = ACTIONS(5997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5997), - [anon_sym_BSLASHbibliography] = ACTIONS(5997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5997), - [anon_sym_BSLASHincludesvg] = ACTIONS(5997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5997), - [anon_sym_BSLASHimport] = ACTIONS(5997), - [anon_sym_BSLASHsubimport] = ACTIONS(5997), - [anon_sym_BSLASHinputfrom] = ACTIONS(5997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5997), - [anon_sym_BSLASHincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHcaption] = ACTIONS(5997), - [anon_sym_BSLASHcite] = ACTIONS(5997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCite] = ACTIONS(5997), - [anon_sym_BSLASHnocite] = ACTIONS(5997), - [anon_sym_BSLASHcitet] = ACTIONS(5997), - [anon_sym_BSLASHcitep] = ACTIONS(5997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteyear] = ACTIONS(5997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitedate] = ACTIONS(5997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteurl] = ACTIONS(5997), - [anon_sym_BSLASHfullcite] = ACTIONS(5997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5997), - [anon_sym_BSLASHcitealt] = ACTIONS(5997), - [anon_sym_BSLASHcitealp] = ACTIONS(5997), - [anon_sym_BSLASHcitetext] = ACTIONS(5997), - [anon_sym_BSLASHparencite] = ACTIONS(5997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHParencite] = ACTIONS(5997), - [anon_sym_BSLASHfootcite] = ACTIONS(5997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5997), - [anon_sym_BSLASHtextcite] = ACTIONS(5997), - [anon_sym_BSLASHTextcite] = ACTIONS(5997), - [anon_sym_BSLASHsmartcite] = ACTIONS(5997), - [anon_sym_BSLASHSmartcite] = ACTIONS(5997), - [anon_sym_BSLASHsupercite] = ACTIONS(5997), - [anon_sym_BSLASHautocite] = ACTIONS(5997), - [anon_sym_BSLASHAutocite] = ACTIONS(5997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHvolcite] = ACTIONS(5997), - [anon_sym_BSLASHVolcite] = ACTIONS(5997), - [anon_sym_BSLASHpvolcite] = ACTIONS(5997), - [anon_sym_BSLASHPvolcite] = ACTIONS(5997), - [anon_sym_BSLASHfvolcite] = ACTIONS(5997), - [anon_sym_BSLASHftvolcite] = ACTIONS(5997), - [anon_sym_BSLASHsvolcite] = ACTIONS(5997), - [anon_sym_BSLASHSvolcite] = ACTIONS(5997), - [anon_sym_BSLASHtvolcite] = ACTIONS(5997), - [anon_sym_BSLASHTvolcite] = ACTIONS(5997), - [anon_sym_BSLASHavolcite] = ACTIONS(5997), - [anon_sym_BSLASHAvolcite] = ACTIONS(5997), - [anon_sym_BSLASHnotecite] = ACTIONS(5997), - [anon_sym_BSLASHNotecite] = ACTIONS(5997), - [anon_sym_BSLASHpnotecite] = ACTIONS(5997), - [anon_sym_BSLASHPnotecite] = ACTIONS(5997), - [anon_sym_BSLASHfnotecite] = ACTIONS(5997), - [anon_sym_BSLASHlabel] = ACTIONS(5997), - [anon_sym_BSLASHref] = ACTIONS(5997), - [anon_sym_BSLASHeqref] = ACTIONS(5997), - [anon_sym_BSLASHvref] = ACTIONS(5997), - [anon_sym_BSLASHVref] = ACTIONS(5997), - [anon_sym_BSLASHautoref] = ACTIONS(5997), - [anon_sym_BSLASHpageref] = ACTIONS(5997), - [anon_sym_BSLASHcref] = ACTIONS(5997), - [anon_sym_BSLASHCref] = ACTIONS(5997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnameCref] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHlabelcref] = ACTIONS(5997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHdef] = ACTIONS(5997), - [anon_sym_BSLASHlet] = ACTIONS(5997), - [anon_sym_BSLASHleft] = ACTIONS(5997), - [anon_sym_BSLASHbig] = ACTIONS(5997), - [anon_sym_BSLASHBig] = ACTIONS(5997), - [anon_sym_BSLASHbigg] = ACTIONS(5997), - [anon_sym_BSLASHBigg] = ACTIONS(5997), - [anon_sym_BSLASHbigl] = ACTIONS(5997), - [anon_sym_BSLASHBigl] = ACTIONS(5997), - [anon_sym_BSLASHbiggl] = ACTIONS(5997), - [anon_sym_BSLASHBiggl] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5997), - [anon_sym_BSLASHgls] = ACTIONS(5997), - [anon_sym_BSLASHGls] = ACTIONS(5997), - [anon_sym_BSLASHGLS] = ACTIONS(5997), - [anon_sym_BSLASHglspl] = ACTIONS(5997), - [anon_sym_BSLASHGlspl] = ACTIONS(5997), - [anon_sym_BSLASHGLSpl] = ACTIONS(5997), - [anon_sym_BSLASHglsdisp] = ACTIONS(5997), - [anon_sym_BSLASHglslink] = ACTIONS(5997), - [anon_sym_BSLASHglstext] = ACTIONS(5997), - [anon_sym_BSLASHGlstext] = ACTIONS(5997), - [anon_sym_BSLASHGLStext] = ACTIONS(5997), - [anon_sym_BSLASHglsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5997), - [anon_sym_BSLASHglsplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSplural] = ACTIONS(5997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHglsname] = ACTIONS(5997), - [anon_sym_BSLASHGlsname] = ACTIONS(5997), - [anon_sym_BSLASHGLSname] = ACTIONS(5997), - [anon_sym_BSLASHglssymbol] = ACTIONS(5997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5997), - [anon_sym_BSLASHglsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5997), - [anon_sym_BSLASHglsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5997), - [anon_sym_BSLASHglsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5997), - [anon_sym_BSLASHglsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5997), - [anon_sym_BSLASHglsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5997), - [anon_sym_BSLASHnewacronym] = ACTIONS(5997), - [anon_sym_BSLASHacrshort] = ACTIONS(5997), - [anon_sym_BSLASHAcrshort] = ACTIONS(5997), - [anon_sym_BSLASHACRshort] = ACTIONS(5997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5997), - [anon_sym_BSLASHacrlong] = ACTIONS(5997), - [anon_sym_BSLASHAcrlong] = ACTIONS(5997), - [anon_sym_BSLASHACRlong] = ACTIONS(5997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5997), - [anon_sym_BSLASHacrfull] = ACTIONS(5997), - [anon_sym_BSLASHAcrfull] = ACTIONS(5997), - [anon_sym_BSLASHACRfull] = ACTIONS(5997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5997), - [anon_sym_BSLASHacs] = ACTIONS(5997), - [anon_sym_BSLASHAcs] = ACTIONS(5997), - [anon_sym_BSLASHacsp] = ACTIONS(5997), - [anon_sym_BSLASHAcsp] = ACTIONS(5997), - [anon_sym_BSLASHacl] = ACTIONS(5997), - [anon_sym_BSLASHAcl] = ACTIONS(5997), - [anon_sym_BSLASHaclp] = ACTIONS(5997), - [anon_sym_BSLASHAclp] = ACTIONS(5997), - [anon_sym_BSLASHacf] = ACTIONS(5997), - [anon_sym_BSLASHAcf] = ACTIONS(5997), - [anon_sym_BSLASHacfp] = ACTIONS(5997), - [anon_sym_BSLASHAcfp] = ACTIONS(5997), - [anon_sym_BSLASHac] = ACTIONS(5997), - [anon_sym_BSLASHAc] = ACTIONS(5997), - [anon_sym_BSLASHacp] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5997), - [anon_sym_BSLASHcolor] = ACTIONS(5997), - [anon_sym_BSLASHcolorbox] = ACTIONS(5997), - [anon_sym_BSLASHtextcolor] = ACTIONS(5997), - [anon_sym_BSLASHpagecolor] = ACTIONS(5997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5997), - [anon_sym_BSLASHtext] = ACTIONS(5997), - [anon_sym_BSLASHintertext] = ACTIONS(5997), - [anon_sym_shortintertext] = ACTIONS(5997), - }, - [1489] = { - [sym_command_name] = ACTIONS(6129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(6131), - [anon_sym_RBRACK] = ACTIONS(6131), - [anon_sym_COMMA] = ACTIONS(6131), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_LPAREN] = ACTIONS(6131), - [anon_sym_RPAREN] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(6131), - [sym_word] = ACTIONS(6129), - [sym_placeholder] = ACTIONS(6131), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_BANG] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_SQUOTE] = ACTIONS(6129), - [anon_sym__] = ACTIONS(6131), - [anon_sym_CARET] = ACTIONS(6131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6131), - [anon_sym_DOLLAR] = ACTIONS(6129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6131), - [anon_sym_BSLASHbegin] = ACTIONS(6129), - [anon_sym_BSLASHend] = ACTIONS(6129), - [anon_sym_BSLASHtitle] = ACTIONS(6129), - [anon_sym_BSLASHauthor] = ACTIONS(6129), - [anon_sym_BSLASHusepackage] = ACTIONS(6129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6129), - [anon_sym_BSLASHinclude] = ACTIONS(6129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6129), - [anon_sym_BSLASHinput] = ACTIONS(6129), - [anon_sym_BSLASHsubfile] = ACTIONS(6129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6129), - [anon_sym_BSLASHbibliography] = ACTIONS(6129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6129), - [anon_sym_BSLASHincludesvg] = ACTIONS(6129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6129), - [anon_sym_BSLASHimport] = ACTIONS(6129), - [anon_sym_BSLASHsubimport] = ACTIONS(6129), - [anon_sym_BSLASHinputfrom] = ACTIONS(6129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6129), - [anon_sym_BSLASHincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHcaption] = ACTIONS(6129), - [anon_sym_BSLASHcite] = ACTIONS(6129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCite] = ACTIONS(6129), - [anon_sym_BSLASHnocite] = ACTIONS(6129), - [anon_sym_BSLASHcitet] = ACTIONS(6129), - [anon_sym_BSLASHcitep] = ACTIONS(6129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteauthor] = ACTIONS(6129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitetitle] = ACTIONS(6129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteyear] = ACTIONS(6129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitedate] = ACTIONS(6129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteurl] = ACTIONS(6129), - [anon_sym_BSLASHfullcite] = ACTIONS(6129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6129), - [anon_sym_BSLASHcitealt] = ACTIONS(6129), - [anon_sym_BSLASHcitealp] = ACTIONS(6129), - [anon_sym_BSLASHcitetext] = ACTIONS(6129), - [anon_sym_BSLASHparencite] = ACTIONS(6129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHParencite] = ACTIONS(6129), - [anon_sym_BSLASHfootcite] = ACTIONS(6129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6129), - [anon_sym_BSLASHtextcite] = ACTIONS(6129), - [anon_sym_BSLASHTextcite] = ACTIONS(6129), - [anon_sym_BSLASHsmartcite] = ACTIONS(6129), - [anon_sym_BSLASHSmartcite] = ACTIONS(6129), - [anon_sym_BSLASHsupercite] = ACTIONS(6129), - [anon_sym_BSLASHautocite] = ACTIONS(6129), - [anon_sym_BSLASHAutocite] = ACTIONS(6129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHvolcite] = ACTIONS(6129), - [anon_sym_BSLASHVolcite] = ACTIONS(6129), - [anon_sym_BSLASHpvolcite] = ACTIONS(6129), - [anon_sym_BSLASHPvolcite] = ACTIONS(6129), - [anon_sym_BSLASHfvolcite] = ACTIONS(6129), - [anon_sym_BSLASHftvolcite] = ACTIONS(6129), - [anon_sym_BSLASHsvolcite] = ACTIONS(6129), - [anon_sym_BSLASHSvolcite] = ACTIONS(6129), - [anon_sym_BSLASHtvolcite] = ACTIONS(6129), - [anon_sym_BSLASHTvolcite] = ACTIONS(6129), - [anon_sym_BSLASHavolcite] = ACTIONS(6129), - [anon_sym_BSLASHAvolcite] = ACTIONS(6129), - [anon_sym_BSLASHnotecite] = ACTIONS(6129), - [anon_sym_BSLASHNotecite] = ACTIONS(6129), - [anon_sym_BSLASHpnotecite] = ACTIONS(6129), - [anon_sym_BSLASHPnotecite] = ACTIONS(6129), - [anon_sym_BSLASHfnotecite] = ACTIONS(6129), - [anon_sym_BSLASHlabel] = ACTIONS(6129), - [anon_sym_BSLASHref] = ACTIONS(6129), - [anon_sym_BSLASHeqref] = ACTIONS(6129), - [anon_sym_BSLASHvref] = ACTIONS(6129), - [anon_sym_BSLASHVref] = ACTIONS(6129), - [anon_sym_BSLASHautoref] = ACTIONS(6129), - [anon_sym_BSLASHpageref] = ACTIONS(6129), - [anon_sym_BSLASHcref] = ACTIONS(6129), - [anon_sym_BSLASHCref] = ACTIONS(6129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnameCref] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHlabelcref] = ACTIONS(6129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCrefrange] = ACTIONS(6129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnewlabel] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6131), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHdef] = ACTIONS(6129), - [anon_sym_BSLASHlet] = ACTIONS(6129), - [anon_sym_BSLASHleft] = ACTIONS(6129), - [anon_sym_BSLASHbig] = ACTIONS(6129), - [anon_sym_BSLASHBig] = ACTIONS(6129), - [anon_sym_BSLASHbigg] = ACTIONS(6129), - [anon_sym_BSLASHBigg] = ACTIONS(6129), - [anon_sym_BSLASHbigl] = ACTIONS(6129), - [anon_sym_BSLASHBigl] = ACTIONS(6129), - [anon_sym_BSLASHbiggl] = ACTIONS(6129), - [anon_sym_BSLASHBiggl] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6129), - [anon_sym_BSLASHgls] = ACTIONS(6129), - [anon_sym_BSLASHGls] = ACTIONS(6129), - [anon_sym_BSLASHGLS] = ACTIONS(6129), - [anon_sym_BSLASHglspl] = ACTIONS(6129), - [anon_sym_BSLASHGlspl] = ACTIONS(6129), - [anon_sym_BSLASHGLSpl] = ACTIONS(6129), - [anon_sym_BSLASHglsdisp] = ACTIONS(6129), - [anon_sym_BSLASHglslink] = ACTIONS(6129), - [anon_sym_BSLASHglstext] = ACTIONS(6129), - [anon_sym_BSLASHGlstext] = ACTIONS(6129), - [anon_sym_BSLASHGLStext] = ACTIONS(6129), - [anon_sym_BSLASHglsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6129), - [anon_sym_BSLASHglsplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSplural] = ACTIONS(6129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHglsname] = ACTIONS(6129), - [anon_sym_BSLASHGlsname] = ACTIONS(6129), - [anon_sym_BSLASHGLSname] = ACTIONS(6129), - [anon_sym_BSLASHglssymbol] = ACTIONS(6129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6129), - [anon_sym_BSLASHglsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6129), - [anon_sym_BSLASHglsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6129), - [anon_sym_BSLASHglsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6129), - [anon_sym_BSLASHglsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6129), - [anon_sym_BSLASHglsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6129), - [anon_sym_BSLASHnewacronym] = ACTIONS(6129), - [anon_sym_BSLASHacrshort] = ACTIONS(6129), - [anon_sym_BSLASHAcrshort] = ACTIONS(6129), - [anon_sym_BSLASHACRshort] = ACTIONS(6129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6129), - [anon_sym_BSLASHacrlong] = ACTIONS(6129), - [anon_sym_BSLASHAcrlong] = ACTIONS(6129), - [anon_sym_BSLASHACRlong] = ACTIONS(6129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6129), - [anon_sym_BSLASHacrfull] = ACTIONS(6129), - [anon_sym_BSLASHAcrfull] = ACTIONS(6129), - [anon_sym_BSLASHACRfull] = ACTIONS(6129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6129), - [anon_sym_BSLASHacs] = ACTIONS(6129), - [anon_sym_BSLASHAcs] = ACTIONS(6129), - [anon_sym_BSLASHacsp] = ACTIONS(6129), - [anon_sym_BSLASHAcsp] = ACTIONS(6129), - [anon_sym_BSLASHacl] = ACTIONS(6129), - [anon_sym_BSLASHAcl] = ACTIONS(6129), - [anon_sym_BSLASHaclp] = ACTIONS(6129), - [anon_sym_BSLASHAclp] = ACTIONS(6129), - [anon_sym_BSLASHacf] = ACTIONS(6129), - [anon_sym_BSLASHAcf] = ACTIONS(6129), - [anon_sym_BSLASHacfp] = ACTIONS(6129), - [anon_sym_BSLASHAcfp] = ACTIONS(6129), - [anon_sym_BSLASHac] = ACTIONS(6129), - [anon_sym_BSLASHAc] = ACTIONS(6129), - [anon_sym_BSLASHacp] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6129), - [anon_sym_BSLASHcolor] = ACTIONS(6129), - [anon_sym_BSLASHcolorbox] = ACTIONS(6129), - [anon_sym_BSLASHtextcolor] = ACTIONS(6129), - [anon_sym_BSLASHpagecolor] = ACTIONS(6129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6129), - [anon_sym_BSLASHtext] = ACTIONS(6129), - [anon_sym_BSLASHintertext] = ACTIONS(6129), - [anon_sym_shortintertext] = ACTIONS(6129), - }, - [1490] = { - [sym_command_name] = ACTIONS(6033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6033), - [anon_sym_LBRACK] = ACTIONS(6035), - [anon_sym_RBRACK] = ACTIONS(6035), - [anon_sym_COMMA] = ACTIONS(6035), - [anon_sym_EQ] = ACTIONS(6035), - [anon_sym_LPAREN] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_LBRACE] = ACTIONS(6035), - [sym_word] = ACTIONS(6033), - [sym_placeholder] = ACTIONS(6035), - [anon_sym_PLUS] = ACTIONS(6035), - [anon_sym_DASH] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6035), - [anon_sym_SLASH] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_COLON] = ACTIONS(6033), - [anon_sym_SQUOTE] = ACTIONS(6033), - [anon_sym__] = ACTIONS(6035), - [anon_sym_CARET] = ACTIONS(6035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6035), - [anon_sym_BSLASHbegin] = ACTIONS(6033), - [anon_sym_BSLASHend] = ACTIONS(6033), - [anon_sym_BSLASHtitle] = ACTIONS(6033), - [anon_sym_BSLASHauthor] = ACTIONS(6033), - [anon_sym_BSLASHusepackage] = ACTIONS(6033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), - [anon_sym_BSLASHinclude] = ACTIONS(6033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), - [anon_sym_BSLASHinput] = ACTIONS(6033), - [anon_sym_BSLASHsubfile] = ACTIONS(6033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), - [anon_sym_BSLASHbibliography] = ACTIONS(6033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), - [anon_sym_BSLASHincludesvg] = ACTIONS(6033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), - [anon_sym_BSLASHimport] = ACTIONS(6033), - [anon_sym_BSLASHsubimport] = ACTIONS(6033), - [anon_sym_BSLASHinputfrom] = ACTIONS(6033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), - [anon_sym_BSLASHincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHcaption] = ACTIONS(6033), - [anon_sym_BSLASHcite] = ACTIONS(6033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCite] = ACTIONS(6033), - [anon_sym_BSLASHnocite] = ACTIONS(6033), - [anon_sym_BSLASHcitet] = ACTIONS(6033), - [anon_sym_BSLASHcitep] = ACTIONS(6033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteauthor] = ACTIONS(6033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitetitle] = ACTIONS(6033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteyear] = ACTIONS(6033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitedate] = ACTIONS(6033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteurl] = ACTIONS(6033), - [anon_sym_BSLASHfullcite] = ACTIONS(6033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), - [anon_sym_BSLASHcitealt] = ACTIONS(6033), - [anon_sym_BSLASHcitealp] = ACTIONS(6033), - [anon_sym_BSLASHcitetext] = ACTIONS(6033), - [anon_sym_BSLASHparencite] = ACTIONS(6033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHParencite] = ACTIONS(6033), - [anon_sym_BSLASHfootcite] = ACTIONS(6033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), - [anon_sym_BSLASHtextcite] = ACTIONS(6033), - [anon_sym_BSLASHTextcite] = ACTIONS(6033), - [anon_sym_BSLASHsmartcite] = ACTIONS(6033), - [anon_sym_BSLASHSmartcite] = ACTIONS(6033), - [anon_sym_BSLASHsupercite] = ACTIONS(6033), - [anon_sym_BSLASHautocite] = ACTIONS(6033), - [anon_sym_BSLASHAutocite] = ACTIONS(6033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHvolcite] = ACTIONS(6033), - [anon_sym_BSLASHVolcite] = ACTIONS(6033), - [anon_sym_BSLASHpvolcite] = ACTIONS(6033), - [anon_sym_BSLASHPvolcite] = ACTIONS(6033), - [anon_sym_BSLASHfvolcite] = ACTIONS(6033), - [anon_sym_BSLASHftvolcite] = ACTIONS(6033), - [anon_sym_BSLASHsvolcite] = ACTIONS(6033), - [anon_sym_BSLASHSvolcite] = ACTIONS(6033), - [anon_sym_BSLASHtvolcite] = ACTIONS(6033), - [anon_sym_BSLASHTvolcite] = ACTIONS(6033), - [anon_sym_BSLASHavolcite] = ACTIONS(6033), - [anon_sym_BSLASHAvolcite] = ACTIONS(6033), - [anon_sym_BSLASHnotecite] = ACTIONS(6033), - [anon_sym_BSLASHNotecite] = ACTIONS(6033), - [anon_sym_BSLASHpnotecite] = ACTIONS(6033), - [anon_sym_BSLASHPnotecite] = ACTIONS(6033), - [anon_sym_BSLASHfnotecite] = ACTIONS(6033), - [anon_sym_BSLASHlabel] = ACTIONS(6033), - [anon_sym_BSLASHref] = ACTIONS(6033), - [anon_sym_BSLASHeqref] = ACTIONS(6033), - [anon_sym_BSLASHvref] = ACTIONS(6033), - [anon_sym_BSLASHVref] = ACTIONS(6033), - [anon_sym_BSLASHautoref] = ACTIONS(6033), - [anon_sym_BSLASHpageref] = ACTIONS(6033), - [anon_sym_BSLASHcref] = ACTIONS(6033), - [anon_sym_BSLASHCref] = ACTIONS(6033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnameCref] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHlabelcref] = ACTIONS(6033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCrefrange] = ACTIONS(6033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnewlabel] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6035), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHdef] = ACTIONS(6033), - [anon_sym_BSLASHlet] = ACTIONS(6033), - [anon_sym_BSLASHleft] = ACTIONS(6033), - [anon_sym_BSLASHbig] = ACTIONS(6033), - [anon_sym_BSLASHBig] = ACTIONS(6033), - [anon_sym_BSLASHbigg] = ACTIONS(6033), - [anon_sym_BSLASHBigg] = ACTIONS(6033), - [anon_sym_BSLASHbigl] = ACTIONS(6033), - [anon_sym_BSLASHBigl] = ACTIONS(6033), - [anon_sym_BSLASHbiggl] = ACTIONS(6033), - [anon_sym_BSLASHBiggl] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), - [anon_sym_BSLASHgls] = ACTIONS(6033), - [anon_sym_BSLASHGls] = ACTIONS(6033), - [anon_sym_BSLASHGLS] = ACTIONS(6033), - [anon_sym_BSLASHglspl] = ACTIONS(6033), - [anon_sym_BSLASHGlspl] = ACTIONS(6033), - [anon_sym_BSLASHGLSpl] = ACTIONS(6033), - [anon_sym_BSLASHglsdisp] = ACTIONS(6033), - [anon_sym_BSLASHglslink] = ACTIONS(6033), - [anon_sym_BSLASHglstext] = ACTIONS(6033), - [anon_sym_BSLASHGlstext] = ACTIONS(6033), - [anon_sym_BSLASHGLStext] = ACTIONS(6033), - [anon_sym_BSLASHglsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), - [anon_sym_BSLASHglsplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSplural] = ACTIONS(6033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHglsname] = ACTIONS(6033), - [anon_sym_BSLASHGlsname] = ACTIONS(6033), - [anon_sym_BSLASHGLSname] = ACTIONS(6033), - [anon_sym_BSLASHglssymbol] = ACTIONS(6033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), - [anon_sym_BSLASHglsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), - [anon_sym_BSLASHglsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), - [anon_sym_BSLASHglsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), - [anon_sym_BSLASHglsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), - [anon_sym_BSLASHglsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), - [anon_sym_BSLASHnewacronym] = ACTIONS(6033), - [anon_sym_BSLASHacrshort] = ACTIONS(6033), - [anon_sym_BSLASHAcrshort] = ACTIONS(6033), - [anon_sym_BSLASHACRshort] = ACTIONS(6033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), - [anon_sym_BSLASHacrlong] = ACTIONS(6033), - [anon_sym_BSLASHAcrlong] = ACTIONS(6033), - [anon_sym_BSLASHACRlong] = ACTIONS(6033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), - [anon_sym_BSLASHacrfull] = ACTIONS(6033), - [anon_sym_BSLASHAcrfull] = ACTIONS(6033), - [anon_sym_BSLASHACRfull] = ACTIONS(6033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), - [anon_sym_BSLASHacs] = ACTIONS(6033), - [anon_sym_BSLASHAcs] = ACTIONS(6033), - [anon_sym_BSLASHacsp] = ACTIONS(6033), - [anon_sym_BSLASHAcsp] = ACTIONS(6033), - [anon_sym_BSLASHacl] = ACTIONS(6033), - [anon_sym_BSLASHAcl] = ACTIONS(6033), - [anon_sym_BSLASHaclp] = ACTIONS(6033), - [anon_sym_BSLASHAclp] = ACTIONS(6033), - [anon_sym_BSLASHacf] = ACTIONS(6033), - [anon_sym_BSLASHAcf] = ACTIONS(6033), - [anon_sym_BSLASHacfp] = ACTIONS(6033), - [anon_sym_BSLASHAcfp] = ACTIONS(6033), - [anon_sym_BSLASHac] = ACTIONS(6033), - [anon_sym_BSLASHAc] = ACTIONS(6033), - [anon_sym_BSLASHacp] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), - [anon_sym_BSLASHcolor] = ACTIONS(6033), - [anon_sym_BSLASHcolorbox] = ACTIONS(6033), - [anon_sym_BSLASHtextcolor] = ACTIONS(6033), - [anon_sym_BSLASHpagecolor] = ACTIONS(6033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), - [anon_sym_BSLASHtext] = ACTIONS(6033), - [anon_sym_BSLASHintertext] = ACTIONS(6033), - [anon_sym_shortintertext] = ACTIONS(6033), - }, - [1491] = { - [sym_command_name] = ACTIONS(6161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_EQ] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_LBRACE] = ACTIONS(6163), - [sym_word] = ACTIONS(6161), - [sym_placeholder] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6163), - [anon_sym_DASH] = ACTIONS(6163), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_COLON] = ACTIONS(6161), - [anon_sym_SQUOTE] = ACTIONS(6161), - [anon_sym__] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6163), - [anon_sym_DOLLAR] = ACTIONS(6161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6163), - [anon_sym_BSLASHbegin] = ACTIONS(6161), - [anon_sym_BSLASHend] = ACTIONS(6161), - [anon_sym_BSLASHtitle] = ACTIONS(6161), - [anon_sym_BSLASHauthor] = ACTIONS(6161), - [anon_sym_BSLASHusepackage] = ACTIONS(6161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6161), - [anon_sym_BSLASHinclude] = ACTIONS(6161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6161), - [anon_sym_BSLASHinput] = ACTIONS(6161), - [anon_sym_BSLASHsubfile] = ACTIONS(6161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6161), - [anon_sym_BSLASHbibliography] = ACTIONS(6161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6161), - [anon_sym_BSLASHincludesvg] = ACTIONS(6161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6161), - [anon_sym_BSLASHimport] = ACTIONS(6161), - [anon_sym_BSLASHsubimport] = ACTIONS(6161), - [anon_sym_BSLASHinputfrom] = ACTIONS(6161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6161), - [anon_sym_BSLASHincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHcaption] = ACTIONS(6161), - [anon_sym_BSLASHcite] = ACTIONS(6161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCite] = ACTIONS(6161), - [anon_sym_BSLASHnocite] = ACTIONS(6161), - [anon_sym_BSLASHcitet] = ACTIONS(6161), - [anon_sym_BSLASHcitep] = ACTIONS(6161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteauthor] = ACTIONS(6161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitetitle] = ACTIONS(6161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteyear] = ACTIONS(6161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitedate] = ACTIONS(6161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteurl] = ACTIONS(6161), - [anon_sym_BSLASHfullcite] = ACTIONS(6161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6161), - [anon_sym_BSLASHcitealt] = ACTIONS(6161), - [anon_sym_BSLASHcitealp] = ACTIONS(6161), - [anon_sym_BSLASHcitetext] = ACTIONS(6161), - [anon_sym_BSLASHparencite] = ACTIONS(6161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHParencite] = ACTIONS(6161), - [anon_sym_BSLASHfootcite] = ACTIONS(6161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6161), - [anon_sym_BSLASHtextcite] = ACTIONS(6161), - [anon_sym_BSLASHTextcite] = ACTIONS(6161), - [anon_sym_BSLASHsmartcite] = ACTIONS(6161), - [anon_sym_BSLASHSmartcite] = ACTIONS(6161), - [anon_sym_BSLASHsupercite] = ACTIONS(6161), - [anon_sym_BSLASHautocite] = ACTIONS(6161), - [anon_sym_BSLASHAutocite] = ACTIONS(6161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHvolcite] = ACTIONS(6161), - [anon_sym_BSLASHVolcite] = ACTIONS(6161), - [anon_sym_BSLASHpvolcite] = ACTIONS(6161), - [anon_sym_BSLASHPvolcite] = ACTIONS(6161), - [anon_sym_BSLASHfvolcite] = ACTIONS(6161), - [anon_sym_BSLASHftvolcite] = ACTIONS(6161), - [anon_sym_BSLASHsvolcite] = ACTIONS(6161), - [anon_sym_BSLASHSvolcite] = ACTIONS(6161), - [anon_sym_BSLASHtvolcite] = ACTIONS(6161), - [anon_sym_BSLASHTvolcite] = ACTIONS(6161), - [anon_sym_BSLASHavolcite] = ACTIONS(6161), - [anon_sym_BSLASHAvolcite] = ACTIONS(6161), - [anon_sym_BSLASHnotecite] = ACTIONS(6161), - [anon_sym_BSLASHNotecite] = ACTIONS(6161), - [anon_sym_BSLASHpnotecite] = ACTIONS(6161), - [anon_sym_BSLASHPnotecite] = ACTIONS(6161), - [anon_sym_BSLASHfnotecite] = ACTIONS(6161), - [anon_sym_BSLASHlabel] = ACTIONS(6161), - [anon_sym_BSLASHref] = ACTIONS(6161), - [anon_sym_BSLASHeqref] = ACTIONS(6161), - [anon_sym_BSLASHvref] = ACTIONS(6161), - [anon_sym_BSLASHVref] = ACTIONS(6161), - [anon_sym_BSLASHautoref] = ACTIONS(6161), - [anon_sym_BSLASHpageref] = ACTIONS(6161), - [anon_sym_BSLASHcref] = ACTIONS(6161), - [anon_sym_BSLASHCref] = ACTIONS(6161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnameCref] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHlabelcref] = ACTIONS(6161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCrefrange] = ACTIONS(6161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnewlabel] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6163), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHdef] = ACTIONS(6161), - [anon_sym_BSLASHlet] = ACTIONS(6161), - [anon_sym_BSLASHleft] = ACTIONS(6161), - [anon_sym_BSLASHbig] = ACTIONS(6161), - [anon_sym_BSLASHBig] = ACTIONS(6161), - [anon_sym_BSLASHbigg] = ACTIONS(6161), - [anon_sym_BSLASHBigg] = ACTIONS(6161), - [anon_sym_BSLASHbigl] = ACTIONS(6161), - [anon_sym_BSLASHBigl] = ACTIONS(6161), - [anon_sym_BSLASHbiggl] = ACTIONS(6161), - [anon_sym_BSLASHBiggl] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6161), - [anon_sym_BSLASHgls] = ACTIONS(6161), - [anon_sym_BSLASHGls] = ACTIONS(6161), - [anon_sym_BSLASHGLS] = ACTIONS(6161), - [anon_sym_BSLASHglspl] = ACTIONS(6161), - [anon_sym_BSLASHGlspl] = ACTIONS(6161), - [anon_sym_BSLASHGLSpl] = ACTIONS(6161), - [anon_sym_BSLASHglsdisp] = ACTIONS(6161), - [anon_sym_BSLASHglslink] = ACTIONS(6161), - [anon_sym_BSLASHglstext] = ACTIONS(6161), - [anon_sym_BSLASHGlstext] = ACTIONS(6161), - [anon_sym_BSLASHGLStext] = ACTIONS(6161), - [anon_sym_BSLASHglsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6161), - [anon_sym_BSLASHglsplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSplural] = ACTIONS(6161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHglsname] = ACTIONS(6161), - [anon_sym_BSLASHGlsname] = ACTIONS(6161), - [anon_sym_BSLASHGLSname] = ACTIONS(6161), - [anon_sym_BSLASHglssymbol] = ACTIONS(6161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6161), - [anon_sym_BSLASHglsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6161), - [anon_sym_BSLASHglsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6161), - [anon_sym_BSLASHglsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6161), - [anon_sym_BSLASHglsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6161), - [anon_sym_BSLASHglsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6161), - [anon_sym_BSLASHnewacronym] = ACTIONS(6161), - [anon_sym_BSLASHacrshort] = ACTIONS(6161), - [anon_sym_BSLASHAcrshort] = ACTIONS(6161), - [anon_sym_BSLASHACRshort] = ACTIONS(6161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6161), - [anon_sym_BSLASHacrlong] = ACTIONS(6161), - [anon_sym_BSLASHAcrlong] = ACTIONS(6161), - [anon_sym_BSLASHACRlong] = ACTIONS(6161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6161), - [anon_sym_BSLASHacrfull] = ACTIONS(6161), - [anon_sym_BSLASHAcrfull] = ACTIONS(6161), - [anon_sym_BSLASHACRfull] = ACTIONS(6161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6161), - [anon_sym_BSLASHacs] = ACTIONS(6161), - [anon_sym_BSLASHAcs] = ACTIONS(6161), - [anon_sym_BSLASHacsp] = ACTIONS(6161), - [anon_sym_BSLASHAcsp] = ACTIONS(6161), - [anon_sym_BSLASHacl] = ACTIONS(6161), - [anon_sym_BSLASHAcl] = ACTIONS(6161), - [anon_sym_BSLASHaclp] = ACTIONS(6161), - [anon_sym_BSLASHAclp] = ACTIONS(6161), - [anon_sym_BSLASHacf] = ACTIONS(6161), - [anon_sym_BSLASHAcf] = ACTIONS(6161), - [anon_sym_BSLASHacfp] = ACTIONS(6161), - [anon_sym_BSLASHAcfp] = ACTIONS(6161), - [anon_sym_BSLASHac] = ACTIONS(6161), - [anon_sym_BSLASHAc] = ACTIONS(6161), - [anon_sym_BSLASHacp] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6161), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6161), - [anon_sym_BSLASHcolor] = ACTIONS(6161), - [anon_sym_BSLASHcolorbox] = ACTIONS(6161), - [anon_sym_BSLASHtextcolor] = ACTIONS(6161), - [anon_sym_BSLASHpagecolor] = ACTIONS(6161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6161), - [anon_sym_BSLASHtext] = ACTIONS(6161), - [anon_sym_BSLASHintertext] = ACTIONS(6161), - [anon_sym_shortintertext] = ACTIONS(6161), - }, - [1492] = { - [sym_command_name] = ACTIONS(6037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6037), - [anon_sym_LBRACK] = ACTIONS(6039), - [anon_sym_RBRACK] = ACTIONS(6039), - [anon_sym_COMMA] = ACTIONS(6039), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_LPAREN] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_LBRACE] = ACTIONS(6039), - [sym_word] = ACTIONS(6037), - [sym_placeholder] = ACTIONS(6039), - [anon_sym_PLUS] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [anon_sym_STAR] = ACTIONS(6039), - [anon_sym_SLASH] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6037), - [anon_sym_GT] = ACTIONS(6037), - [anon_sym_BANG] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_COLON] = ACTIONS(6037), - [anon_sym_SQUOTE] = ACTIONS(6037), - [anon_sym__] = ACTIONS(6039), - [anon_sym_CARET] = ACTIONS(6039), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6039), - [anon_sym_BSLASHbegin] = ACTIONS(6037), - [anon_sym_BSLASHend] = ACTIONS(6037), - [anon_sym_BSLASHtitle] = ACTIONS(6037), - [anon_sym_BSLASHauthor] = ACTIONS(6037), - [anon_sym_BSLASHusepackage] = ACTIONS(6037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6037), - [anon_sym_BSLASHinclude] = ACTIONS(6037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6037), - [anon_sym_BSLASHinput] = ACTIONS(6037), - [anon_sym_BSLASHsubfile] = ACTIONS(6037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6037), - [anon_sym_BSLASHbibliography] = ACTIONS(6037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6037), - [anon_sym_BSLASHincludesvg] = ACTIONS(6037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6037), - [anon_sym_BSLASHimport] = ACTIONS(6037), - [anon_sym_BSLASHsubimport] = ACTIONS(6037), - [anon_sym_BSLASHinputfrom] = ACTIONS(6037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6037), - [anon_sym_BSLASHincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHcaption] = ACTIONS(6037), - [anon_sym_BSLASHcite] = ACTIONS(6037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCite] = ACTIONS(6037), - [anon_sym_BSLASHnocite] = ACTIONS(6037), - [anon_sym_BSLASHcitet] = ACTIONS(6037), - [anon_sym_BSLASHcitep] = ACTIONS(6037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteauthor] = ACTIONS(6037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitetitle] = ACTIONS(6037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteyear] = ACTIONS(6037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitedate] = ACTIONS(6037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteurl] = ACTIONS(6037), - [anon_sym_BSLASHfullcite] = ACTIONS(6037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6037), - [anon_sym_BSLASHcitealt] = ACTIONS(6037), - [anon_sym_BSLASHcitealp] = ACTIONS(6037), - [anon_sym_BSLASHcitetext] = ACTIONS(6037), - [anon_sym_BSLASHparencite] = ACTIONS(6037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHParencite] = ACTIONS(6037), - [anon_sym_BSLASHfootcite] = ACTIONS(6037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6037), - [anon_sym_BSLASHtextcite] = ACTIONS(6037), - [anon_sym_BSLASHTextcite] = ACTIONS(6037), - [anon_sym_BSLASHsmartcite] = ACTIONS(6037), - [anon_sym_BSLASHSmartcite] = ACTIONS(6037), - [anon_sym_BSLASHsupercite] = ACTIONS(6037), - [anon_sym_BSLASHautocite] = ACTIONS(6037), - [anon_sym_BSLASHAutocite] = ACTIONS(6037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHvolcite] = ACTIONS(6037), - [anon_sym_BSLASHVolcite] = ACTIONS(6037), - [anon_sym_BSLASHpvolcite] = ACTIONS(6037), - [anon_sym_BSLASHPvolcite] = ACTIONS(6037), - [anon_sym_BSLASHfvolcite] = ACTIONS(6037), - [anon_sym_BSLASHftvolcite] = ACTIONS(6037), - [anon_sym_BSLASHsvolcite] = ACTIONS(6037), - [anon_sym_BSLASHSvolcite] = ACTIONS(6037), - [anon_sym_BSLASHtvolcite] = ACTIONS(6037), - [anon_sym_BSLASHTvolcite] = ACTIONS(6037), - [anon_sym_BSLASHavolcite] = ACTIONS(6037), - [anon_sym_BSLASHAvolcite] = ACTIONS(6037), - [anon_sym_BSLASHnotecite] = ACTIONS(6037), - [anon_sym_BSLASHNotecite] = ACTIONS(6037), - [anon_sym_BSLASHpnotecite] = ACTIONS(6037), - [anon_sym_BSLASHPnotecite] = ACTIONS(6037), - [anon_sym_BSLASHfnotecite] = ACTIONS(6037), - [anon_sym_BSLASHlabel] = ACTIONS(6037), - [anon_sym_BSLASHref] = ACTIONS(6037), - [anon_sym_BSLASHeqref] = ACTIONS(6037), - [anon_sym_BSLASHvref] = ACTIONS(6037), - [anon_sym_BSLASHVref] = ACTIONS(6037), - [anon_sym_BSLASHautoref] = ACTIONS(6037), - [anon_sym_BSLASHpageref] = ACTIONS(6037), - [anon_sym_BSLASHcref] = ACTIONS(6037), - [anon_sym_BSLASHCref] = ACTIONS(6037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnameCref] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHlabelcref] = ACTIONS(6037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCrefrange] = ACTIONS(6037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnewlabel] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6039), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHdef] = ACTIONS(6037), - [anon_sym_BSLASHlet] = ACTIONS(6037), - [anon_sym_BSLASHleft] = ACTIONS(6037), - [anon_sym_BSLASHbig] = ACTIONS(6037), - [anon_sym_BSLASHBig] = ACTIONS(6037), - [anon_sym_BSLASHbigg] = ACTIONS(6037), - [anon_sym_BSLASHBigg] = ACTIONS(6037), - [anon_sym_BSLASHbigl] = ACTIONS(6037), - [anon_sym_BSLASHBigl] = ACTIONS(6037), - [anon_sym_BSLASHbiggl] = ACTIONS(6037), - [anon_sym_BSLASHBiggl] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6037), - [anon_sym_BSLASHgls] = ACTIONS(6037), - [anon_sym_BSLASHGls] = ACTIONS(6037), - [anon_sym_BSLASHGLS] = ACTIONS(6037), - [anon_sym_BSLASHglspl] = ACTIONS(6037), - [anon_sym_BSLASHGlspl] = ACTIONS(6037), - [anon_sym_BSLASHGLSpl] = ACTIONS(6037), - [anon_sym_BSLASHglsdisp] = ACTIONS(6037), - [anon_sym_BSLASHglslink] = ACTIONS(6037), - [anon_sym_BSLASHglstext] = ACTIONS(6037), - [anon_sym_BSLASHGlstext] = ACTIONS(6037), - [anon_sym_BSLASHGLStext] = ACTIONS(6037), - [anon_sym_BSLASHglsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6037), - [anon_sym_BSLASHglsplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSplural] = ACTIONS(6037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHglsname] = ACTIONS(6037), - [anon_sym_BSLASHGlsname] = ACTIONS(6037), - [anon_sym_BSLASHGLSname] = ACTIONS(6037), - [anon_sym_BSLASHglssymbol] = ACTIONS(6037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6037), - [anon_sym_BSLASHglsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6037), - [anon_sym_BSLASHglsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6037), - [anon_sym_BSLASHglsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6037), - [anon_sym_BSLASHglsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6037), - [anon_sym_BSLASHglsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6037), - [anon_sym_BSLASHnewacronym] = ACTIONS(6037), - [anon_sym_BSLASHacrshort] = ACTIONS(6037), - [anon_sym_BSLASHAcrshort] = ACTIONS(6037), - [anon_sym_BSLASHACRshort] = ACTIONS(6037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6037), - [anon_sym_BSLASHacrlong] = ACTIONS(6037), - [anon_sym_BSLASHAcrlong] = ACTIONS(6037), - [anon_sym_BSLASHACRlong] = ACTIONS(6037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6037), - [anon_sym_BSLASHacrfull] = ACTIONS(6037), - [anon_sym_BSLASHAcrfull] = ACTIONS(6037), - [anon_sym_BSLASHACRfull] = ACTIONS(6037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6037), - [anon_sym_BSLASHacs] = ACTIONS(6037), - [anon_sym_BSLASHAcs] = ACTIONS(6037), - [anon_sym_BSLASHacsp] = ACTIONS(6037), - [anon_sym_BSLASHAcsp] = ACTIONS(6037), - [anon_sym_BSLASHacl] = ACTIONS(6037), - [anon_sym_BSLASHAcl] = ACTIONS(6037), - [anon_sym_BSLASHaclp] = ACTIONS(6037), - [anon_sym_BSLASHAclp] = ACTIONS(6037), - [anon_sym_BSLASHacf] = ACTIONS(6037), - [anon_sym_BSLASHAcf] = ACTIONS(6037), - [anon_sym_BSLASHacfp] = ACTIONS(6037), - [anon_sym_BSLASHAcfp] = ACTIONS(6037), - [anon_sym_BSLASHac] = ACTIONS(6037), - [anon_sym_BSLASHAc] = ACTIONS(6037), - [anon_sym_BSLASHacp] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6037), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6037), - [anon_sym_BSLASHcolor] = ACTIONS(6037), - [anon_sym_BSLASHcolorbox] = ACTIONS(6037), - [anon_sym_BSLASHtextcolor] = ACTIONS(6037), - [anon_sym_BSLASHpagecolor] = ACTIONS(6037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6037), - [anon_sym_BSLASHtext] = ACTIONS(6037), - [anon_sym_BSLASHintertext] = ACTIONS(6037), - [anon_sym_shortintertext] = ACTIONS(6037), - }, - [1493] = { - [sym_command_name] = ACTIONS(6041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6041), - [anon_sym_LBRACK] = ACTIONS(6043), - [anon_sym_RBRACK] = ACTIONS(6043), - [anon_sym_COMMA] = ACTIONS(6043), - [anon_sym_EQ] = ACTIONS(6043), - [anon_sym_LPAREN] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_LBRACE] = ACTIONS(6043), - [sym_word] = ACTIONS(6041), - [sym_placeholder] = ACTIONS(6043), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6043), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6041), - [anon_sym_GT] = ACTIONS(6041), - [anon_sym_BANG] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_SQUOTE] = ACTIONS(6041), - [anon_sym__] = ACTIONS(6043), - [anon_sym_CARET] = ACTIONS(6043), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6043), - [anon_sym_BSLASHbegin] = ACTIONS(6041), - [anon_sym_BSLASHend] = ACTIONS(6041), - [anon_sym_BSLASHtitle] = ACTIONS(6041), - [anon_sym_BSLASHauthor] = ACTIONS(6041), - [anon_sym_BSLASHusepackage] = ACTIONS(6041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6041), - [anon_sym_BSLASHinclude] = ACTIONS(6041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6041), - [anon_sym_BSLASHinput] = ACTIONS(6041), - [anon_sym_BSLASHsubfile] = ACTIONS(6041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6041), - [anon_sym_BSLASHbibliography] = ACTIONS(6041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6041), - [anon_sym_BSLASHincludesvg] = ACTIONS(6041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6041), - [anon_sym_BSLASHimport] = ACTIONS(6041), - [anon_sym_BSLASHsubimport] = ACTIONS(6041), - [anon_sym_BSLASHinputfrom] = ACTIONS(6041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6041), - [anon_sym_BSLASHincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHcaption] = ACTIONS(6041), - [anon_sym_BSLASHcite] = ACTIONS(6041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCite] = ACTIONS(6041), - [anon_sym_BSLASHnocite] = ACTIONS(6041), - [anon_sym_BSLASHcitet] = ACTIONS(6041), - [anon_sym_BSLASHcitep] = ACTIONS(6041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteauthor] = ACTIONS(6041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitetitle] = ACTIONS(6041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteyear] = ACTIONS(6041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitedate] = ACTIONS(6041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteurl] = ACTIONS(6041), - [anon_sym_BSLASHfullcite] = ACTIONS(6041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6041), - [anon_sym_BSLASHcitealt] = ACTIONS(6041), - [anon_sym_BSLASHcitealp] = ACTIONS(6041), - [anon_sym_BSLASHcitetext] = ACTIONS(6041), - [anon_sym_BSLASHparencite] = ACTIONS(6041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHParencite] = ACTIONS(6041), - [anon_sym_BSLASHfootcite] = ACTIONS(6041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6041), - [anon_sym_BSLASHtextcite] = ACTIONS(6041), - [anon_sym_BSLASHTextcite] = ACTIONS(6041), - [anon_sym_BSLASHsmartcite] = ACTIONS(6041), - [anon_sym_BSLASHSmartcite] = ACTIONS(6041), - [anon_sym_BSLASHsupercite] = ACTIONS(6041), - [anon_sym_BSLASHautocite] = ACTIONS(6041), - [anon_sym_BSLASHAutocite] = ACTIONS(6041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHvolcite] = ACTIONS(6041), - [anon_sym_BSLASHVolcite] = ACTIONS(6041), - [anon_sym_BSLASHpvolcite] = ACTIONS(6041), - [anon_sym_BSLASHPvolcite] = ACTIONS(6041), - [anon_sym_BSLASHfvolcite] = ACTIONS(6041), - [anon_sym_BSLASHftvolcite] = ACTIONS(6041), - [anon_sym_BSLASHsvolcite] = ACTIONS(6041), - [anon_sym_BSLASHSvolcite] = ACTIONS(6041), - [anon_sym_BSLASHtvolcite] = ACTIONS(6041), - [anon_sym_BSLASHTvolcite] = ACTIONS(6041), - [anon_sym_BSLASHavolcite] = ACTIONS(6041), - [anon_sym_BSLASHAvolcite] = ACTIONS(6041), - [anon_sym_BSLASHnotecite] = ACTIONS(6041), - [anon_sym_BSLASHNotecite] = ACTIONS(6041), - [anon_sym_BSLASHpnotecite] = ACTIONS(6041), - [anon_sym_BSLASHPnotecite] = ACTIONS(6041), - [anon_sym_BSLASHfnotecite] = ACTIONS(6041), - [anon_sym_BSLASHlabel] = ACTIONS(6041), - [anon_sym_BSLASHref] = ACTIONS(6041), - [anon_sym_BSLASHeqref] = ACTIONS(6041), - [anon_sym_BSLASHvref] = ACTIONS(6041), - [anon_sym_BSLASHVref] = ACTIONS(6041), - [anon_sym_BSLASHautoref] = ACTIONS(6041), - [anon_sym_BSLASHpageref] = ACTIONS(6041), - [anon_sym_BSLASHcref] = ACTIONS(6041), - [anon_sym_BSLASHCref] = ACTIONS(6041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnameCref] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHlabelcref] = ACTIONS(6041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCrefrange] = ACTIONS(6041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnewlabel] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6043), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHdef] = ACTIONS(6041), - [anon_sym_BSLASHlet] = ACTIONS(6041), - [anon_sym_BSLASHleft] = ACTIONS(6041), - [anon_sym_BSLASHbig] = ACTIONS(6041), - [anon_sym_BSLASHBig] = ACTIONS(6041), - [anon_sym_BSLASHbigg] = ACTIONS(6041), - [anon_sym_BSLASHBigg] = ACTIONS(6041), - [anon_sym_BSLASHbigl] = ACTIONS(6041), - [anon_sym_BSLASHBigl] = ACTIONS(6041), - [anon_sym_BSLASHbiggl] = ACTIONS(6041), - [anon_sym_BSLASHBiggl] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6041), - [anon_sym_BSLASHgls] = ACTIONS(6041), - [anon_sym_BSLASHGls] = ACTIONS(6041), - [anon_sym_BSLASHGLS] = ACTIONS(6041), - [anon_sym_BSLASHglspl] = ACTIONS(6041), - [anon_sym_BSLASHGlspl] = ACTIONS(6041), - [anon_sym_BSLASHGLSpl] = ACTIONS(6041), - [anon_sym_BSLASHglsdisp] = ACTIONS(6041), - [anon_sym_BSLASHglslink] = ACTIONS(6041), - [anon_sym_BSLASHglstext] = ACTIONS(6041), - [anon_sym_BSLASHGlstext] = ACTIONS(6041), - [anon_sym_BSLASHGLStext] = ACTIONS(6041), - [anon_sym_BSLASHglsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6041), - [anon_sym_BSLASHglsplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSplural] = ACTIONS(6041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHglsname] = ACTIONS(6041), - [anon_sym_BSLASHGlsname] = ACTIONS(6041), - [anon_sym_BSLASHGLSname] = ACTIONS(6041), - [anon_sym_BSLASHglssymbol] = ACTIONS(6041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6041), - [anon_sym_BSLASHglsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6041), - [anon_sym_BSLASHglsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6041), - [anon_sym_BSLASHglsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6041), - [anon_sym_BSLASHglsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6041), - [anon_sym_BSLASHglsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6041), - [anon_sym_BSLASHnewacronym] = ACTIONS(6041), - [anon_sym_BSLASHacrshort] = ACTIONS(6041), - [anon_sym_BSLASHAcrshort] = ACTIONS(6041), - [anon_sym_BSLASHACRshort] = ACTIONS(6041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6041), - [anon_sym_BSLASHacrlong] = ACTIONS(6041), - [anon_sym_BSLASHAcrlong] = ACTIONS(6041), - [anon_sym_BSLASHACRlong] = ACTIONS(6041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6041), - [anon_sym_BSLASHacrfull] = ACTIONS(6041), - [anon_sym_BSLASHAcrfull] = ACTIONS(6041), - [anon_sym_BSLASHACRfull] = ACTIONS(6041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6041), - [anon_sym_BSLASHacs] = ACTIONS(6041), - [anon_sym_BSLASHAcs] = ACTIONS(6041), - [anon_sym_BSLASHacsp] = ACTIONS(6041), - [anon_sym_BSLASHAcsp] = ACTIONS(6041), - [anon_sym_BSLASHacl] = ACTIONS(6041), - [anon_sym_BSLASHAcl] = ACTIONS(6041), - [anon_sym_BSLASHaclp] = ACTIONS(6041), - [anon_sym_BSLASHAclp] = ACTIONS(6041), - [anon_sym_BSLASHacf] = ACTIONS(6041), - [anon_sym_BSLASHAcf] = ACTIONS(6041), - [anon_sym_BSLASHacfp] = ACTIONS(6041), - [anon_sym_BSLASHAcfp] = ACTIONS(6041), - [anon_sym_BSLASHac] = ACTIONS(6041), - [anon_sym_BSLASHAc] = ACTIONS(6041), - [anon_sym_BSLASHacp] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6041), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6041), - [anon_sym_BSLASHcolor] = ACTIONS(6041), - [anon_sym_BSLASHcolorbox] = ACTIONS(6041), - [anon_sym_BSLASHtextcolor] = ACTIONS(6041), - [anon_sym_BSLASHpagecolor] = ACTIONS(6041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6041), - [anon_sym_BSLASHtext] = ACTIONS(6041), - [anon_sym_BSLASHintertext] = ACTIONS(6041), - [anon_sym_shortintertext] = ACTIONS(6041), - }, - [1494] = { - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHend] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [1495] = { - [sym_brack_group_text] = STATE(1742), - [sym_command_name] = ACTIONS(6009), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6941), - [anon_sym_RBRACK] = ACTIONS(6011), - [anon_sym_COMMA] = ACTIONS(6011), - [anon_sym_EQ] = ACTIONS(6011), - [anon_sym_LPAREN] = ACTIONS(6011), - [anon_sym_RPAREN] = ACTIONS(6011), - [anon_sym_LBRACE] = ACTIONS(6011), - [sym_word] = ACTIONS(6009), - [sym_placeholder] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_SQUOTE] = ACTIONS(6009), - [anon_sym__] = ACTIONS(6011), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6011), - [anon_sym_DOLLAR] = ACTIONS(6009), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6011), - [anon_sym_BSLASHbegin] = ACTIONS(6009), - [anon_sym_BSLASHtitle] = ACTIONS(6009), - [anon_sym_BSLASHauthor] = ACTIONS(6009), - [anon_sym_BSLASHusepackage] = ACTIONS(6009), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6009), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6009), - [anon_sym_BSLASHinclude] = ACTIONS(6009), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6009), - [anon_sym_BSLASHinput] = ACTIONS(6009), - [anon_sym_BSLASHsubfile] = ACTIONS(6009), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6009), - [anon_sym_BSLASHbibliography] = ACTIONS(6009), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6009), - [anon_sym_BSLASHincludesvg] = ACTIONS(6009), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6009), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6009), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6009), - [anon_sym_BSLASHimport] = ACTIONS(6009), - [anon_sym_BSLASHsubimport] = ACTIONS(6009), - [anon_sym_BSLASHinputfrom] = ACTIONS(6009), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6009), - [anon_sym_BSLASHincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHcaption] = ACTIONS(6009), - [anon_sym_BSLASHcite] = ACTIONS(6009), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCite] = ACTIONS(6009), - [anon_sym_BSLASHnocite] = ACTIONS(6009), - [anon_sym_BSLASHcitet] = ACTIONS(6009), - [anon_sym_BSLASHcitep] = ACTIONS(6009), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteauthor] = ACTIONS(6009), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6009), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitetitle] = ACTIONS(6009), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteyear] = ACTIONS(6009), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitedate] = ACTIONS(6009), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteurl] = ACTIONS(6009), - [anon_sym_BSLASHfullcite] = ACTIONS(6009), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6009), - [anon_sym_BSLASHcitealt] = ACTIONS(6009), - [anon_sym_BSLASHcitealp] = ACTIONS(6009), - [anon_sym_BSLASHcitetext] = ACTIONS(6009), - [anon_sym_BSLASHparencite] = ACTIONS(6009), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHParencite] = ACTIONS(6009), - [anon_sym_BSLASHfootcite] = ACTIONS(6009), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6009), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6009), - [anon_sym_BSLASHtextcite] = ACTIONS(6009), - [anon_sym_BSLASHTextcite] = ACTIONS(6009), - [anon_sym_BSLASHsmartcite] = ACTIONS(6009), - [anon_sym_BSLASHSmartcite] = ACTIONS(6009), - [anon_sym_BSLASHsupercite] = ACTIONS(6009), - [anon_sym_BSLASHautocite] = ACTIONS(6009), - [anon_sym_BSLASHAutocite] = ACTIONS(6009), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHvolcite] = ACTIONS(6009), - [anon_sym_BSLASHVolcite] = ACTIONS(6009), - [anon_sym_BSLASHpvolcite] = ACTIONS(6009), - [anon_sym_BSLASHPvolcite] = ACTIONS(6009), - [anon_sym_BSLASHfvolcite] = ACTIONS(6009), - [anon_sym_BSLASHftvolcite] = ACTIONS(6009), - [anon_sym_BSLASHsvolcite] = ACTIONS(6009), - [anon_sym_BSLASHSvolcite] = ACTIONS(6009), - [anon_sym_BSLASHtvolcite] = ACTIONS(6009), - [anon_sym_BSLASHTvolcite] = ACTIONS(6009), - [anon_sym_BSLASHavolcite] = ACTIONS(6009), - [anon_sym_BSLASHAvolcite] = ACTIONS(6009), - [anon_sym_BSLASHnotecite] = ACTIONS(6009), - [anon_sym_BSLASHNotecite] = ACTIONS(6009), - [anon_sym_BSLASHpnotecite] = ACTIONS(6009), - [anon_sym_BSLASHPnotecite] = ACTIONS(6009), - [anon_sym_BSLASHfnotecite] = ACTIONS(6009), - [anon_sym_BSLASHlabel] = ACTIONS(6009), - [anon_sym_BSLASHref] = ACTIONS(6009), - [anon_sym_BSLASHeqref] = ACTIONS(6009), - [anon_sym_BSLASHvref] = ACTIONS(6009), - [anon_sym_BSLASHVref] = ACTIONS(6009), - [anon_sym_BSLASHautoref] = ACTIONS(6009), - [anon_sym_BSLASHpageref] = ACTIONS(6009), - [anon_sym_BSLASHcref] = ACTIONS(6009), - [anon_sym_BSLASHCref] = ACTIONS(6009), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnameCref] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHlabelcref] = ACTIONS(6009), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCrefrange] = ACTIONS(6009), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnewlabel] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6009), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6009), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6011), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHdef] = ACTIONS(6009), - [anon_sym_BSLASHlet] = ACTIONS(6009), - [anon_sym_BSLASHleft] = ACTIONS(6009), - [anon_sym_BSLASHbig] = ACTIONS(6009), - [anon_sym_BSLASHBig] = ACTIONS(6009), - [anon_sym_BSLASHbigg] = ACTIONS(6009), - [anon_sym_BSLASHBigg] = ACTIONS(6009), - [anon_sym_BSLASHbigl] = ACTIONS(6009), - [anon_sym_BSLASHBigl] = ACTIONS(6009), - [anon_sym_BSLASHbiggl] = ACTIONS(6009), - [anon_sym_BSLASHBiggl] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6009), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6009), - [anon_sym_BSLASHgls] = ACTIONS(6009), - [anon_sym_BSLASHGls] = ACTIONS(6009), - [anon_sym_BSLASHGLS] = ACTIONS(6009), - [anon_sym_BSLASHglspl] = ACTIONS(6009), - [anon_sym_BSLASHGlspl] = ACTIONS(6009), - [anon_sym_BSLASHGLSpl] = ACTIONS(6009), - [anon_sym_BSLASHglsdisp] = ACTIONS(6009), - [anon_sym_BSLASHglslink] = ACTIONS(6009), - [anon_sym_BSLASHglstext] = ACTIONS(6009), - [anon_sym_BSLASHGlstext] = ACTIONS(6009), - [anon_sym_BSLASHGLStext] = ACTIONS(6009), - [anon_sym_BSLASHglsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6009), - [anon_sym_BSLASHglsplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSplural] = ACTIONS(6009), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHglsname] = ACTIONS(6009), - [anon_sym_BSLASHGlsname] = ACTIONS(6009), - [anon_sym_BSLASHGLSname] = ACTIONS(6009), - [anon_sym_BSLASHglssymbol] = ACTIONS(6009), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6009), - [anon_sym_BSLASHglsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6009), - [anon_sym_BSLASHglsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6009), - [anon_sym_BSLASHglsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6009), - [anon_sym_BSLASHglsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6009), - [anon_sym_BSLASHglsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6009), - [anon_sym_BSLASHnewacronym] = ACTIONS(6009), - [anon_sym_BSLASHacrshort] = ACTIONS(6009), - [anon_sym_BSLASHAcrshort] = ACTIONS(6009), - [anon_sym_BSLASHACRshort] = ACTIONS(6009), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6009), - [anon_sym_BSLASHacrlong] = ACTIONS(6009), - [anon_sym_BSLASHAcrlong] = ACTIONS(6009), - [anon_sym_BSLASHACRlong] = ACTIONS(6009), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6009), - [anon_sym_BSLASHacrfull] = ACTIONS(6009), - [anon_sym_BSLASHAcrfull] = ACTIONS(6009), - [anon_sym_BSLASHACRfull] = ACTIONS(6009), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6009), - [anon_sym_BSLASHacs] = ACTIONS(6009), - [anon_sym_BSLASHAcs] = ACTIONS(6009), - [anon_sym_BSLASHacsp] = ACTIONS(6009), - [anon_sym_BSLASHAcsp] = ACTIONS(6009), - [anon_sym_BSLASHacl] = ACTIONS(6009), - [anon_sym_BSLASHAcl] = ACTIONS(6009), - [anon_sym_BSLASHaclp] = ACTIONS(6009), - [anon_sym_BSLASHAclp] = ACTIONS(6009), - [anon_sym_BSLASHacf] = ACTIONS(6009), - [anon_sym_BSLASHAcf] = ACTIONS(6009), - [anon_sym_BSLASHacfp] = ACTIONS(6009), - [anon_sym_BSLASHAcfp] = ACTIONS(6009), - [anon_sym_BSLASHac] = ACTIONS(6009), - [anon_sym_BSLASHAc] = ACTIONS(6009), - [anon_sym_BSLASHacp] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6009), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6009), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6009), - [anon_sym_BSLASHcolor] = ACTIONS(6009), - [anon_sym_BSLASHcolorbox] = ACTIONS(6009), - [anon_sym_BSLASHtextcolor] = ACTIONS(6009), - [anon_sym_BSLASHpagecolor] = ACTIONS(6009), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6009), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6009), - [anon_sym_BSLASHtext] = ACTIONS(6009), - [anon_sym_BSLASHintertext] = ACTIONS(6009), - [anon_sym_shortintertext] = ACTIONS(6009), - }, - [1496] = { - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHend] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [1497] = { - [sym_command_name] = ACTIONS(6025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6025), - [anon_sym_LBRACK] = ACTIONS(6027), - [anon_sym_RBRACK] = ACTIONS(6027), - [anon_sym_COMMA] = ACTIONS(6027), - [anon_sym_EQ] = ACTIONS(6027), - [anon_sym_LPAREN] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_LBRACE] = ACTIONS(6027), - [sym_word] = ACTIONS(6025), - [sym_placeholder] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6025), - [anon_sym_GT] = ACTIONS(6025), - [anon_sym_BANG] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_SQUOTE] = ACTIONS(6025), - [anon_sym__] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), - [anon_sym_BSLASHbegin] = ACTIONS(6025), - [anon_sym_BSLASHend] = ACTIONS(6025), - [anon_sym_BSLASHtitle] = ACTIONS(6025), - [anon_sym_BSLASHauthor] = ACTIONS(6025), - [anon_sym_BSLASHusepackage] = ACTIONS(6025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), - [anon_sym_BSLASHinclude] = ACTIONS(6025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), - [anon_sym_BSLASHinput] = ACTIONS(6025), - [anon_sym_BSLASHsubfile] = ACTIONS(6025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), - [anon_sym_BSLASHbibliography] = ACTIONS(6025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), - [anon_sym_BSLASHincludesvg] = ACTIONS(6025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), - [anon_sym_BSLASHimport] = ACTIONS(6025), - [anon_sym_BSLASHsubimport] = ACTIONS(6025), - [anon_sym_BSLASHinputfrom] = ACTIONS(6025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), - [anon_sym_BSLASHincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHcaption] = ACTIONS(6025), - [anon_sym_BSLASHcite] = ACTIONS(6025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCite] = ACTIONS(6025), - [anon_sym_BSLASHnocite] = ACTIONS(6025), - [anon_sym_BSLASHcitet] = ACTIONS(6025), - [anon_sym_BSLASHcitep] = ACTIONS(6025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteauthor] = ACTIONS(6025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitetitle] = ACTIONS(6025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteyear] = ACTIONS(6025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitedate] = ACTIONS(6025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteurl] = ACTIONS(6025), - [anon_sym_BSLASHfullcite] = ACTIONS(6025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), - [anon_sym_BSLASHcitealt] = ACTIONS(6025), - [anon_sym_BSLASHcitealp] = ACTIONS(6025), - [anon_sym_BSLASHcitetext] = ACTIONS(6025), - [anon_sym_BSLASHparencite] = ACTIONS(6025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHParencite] = ACTIONS(6025), - [anon_sym_BSLASHfootcite] = ACTIONS(6025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), - [anon_sym_BSLASHtextcite] = ACTIONS(6025), - [anon_sym_BSLASHTextcite] = ACTIONS(6025), - [anon_sym_BSLASHsmartcite] = ACTIONS(6025), - [anon_sym_BSLASHSmartcite] = ACTIONS(6025), - [anon_sym_BSLASHsupercite] = ACTIONS(6025), - [anon_sym_BSLASHautocite] = ACTIONS(6025), - [anon_sym_BSLASHAutocite] = ACTIONS(6025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHvolcite] = ACTIONS(6025), - [anon_sym_BSLASHVolcite] = ACTIONS(6025), - [anon_sym_BSLASHpvolcite] = ACTIONS(6025), - [anon_sym_BSLASHPvolcite] = ACTIONS(6025), - [anon_sym_BSLASHfvolcite] = ACTIONS(6025), - [anon_sym_BSLASHftvolcite] = ACTIONS(6025), - [anon_sym_BSLASHsvolcite] = ACTIONS(6025), - [anon_sym_BSLASHSvolcite] = ACTIONS(6025), - [anon_sym_BSLASHtvolcite] = ACTIONS(6025), - [anon_sym_BSLASHTvolcite] = ACTIONS(6025), - [anon_sym_BSLASHavolcite] = ACTIONS(6025), - [anon_sym_BSLASHAvolcite] = ACTIONS(6025), - [anon_sym_BSLASHnotecite] = ACTIONS(6025), - [anon_sym_BSLASHNotecite] = ACTIONS(6025), - [anon_sym_BSLASHpnotecite] = ACTIONS(6025), - [anon_sym_BSLASHPnotecite] = ACTIONS(6025), - [anon_sym_BSLASHfnotecite] = ACTIONS(6025), - [anon_sym_BSLASHlabel] = ACTIONS(6025), - [anon_sym_BSLASHref] = ACTIONS(6025), - [anon_sym_BSLASHeqref] = ACTIONS(6025), - [anon_sym_BSLASHvref] = ACTIONS(6025), - [anon_sym_BSLASHVref] = ACTIONS(6025), - [anon_sym_BSLASHautoref] = ACTIONS(6025), - [anon_sym_BSLASHpageref] = ACTIONS(6025), - [anon_sym_BSLASHcref] = ACTIONS(6025), - [anon_sym_BSLASHCref] = ACTIONS(6025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnameCref] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHlabelcref] = ACTIONS(6025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCrefrange] = ACTIONS(6025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnewlabel] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHdef] = ACTIONS(6025), - [anon_sym_BSLASHlet] = ACTIONS(6025), - [anon_sym_BSLASHleft] = ACTIONS(6025), - [anon_sym_BSLASHbig] = ACTIONS(6025), - [anon_sym_BSLASHBig] = ACTIONS(6025), - [anon_sym_BSLASHbigg] = ACTIONS(6025), - [anon_sym_BSLASHBigg] = ACTIONS(6025), - [anon_sym_BSLASHbigl] = ACTIONS(6025), - [anon_sym_BSLASHBigl] = ACTIONS(6025), - [anon_sym_BSLASHbiggl] = ACTIONS(6025), - [anon_sym_BSLASHBiggl] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), - [anon_sym_BSLASHgls] = ACTIONS(6025), - [anon_sym_BSLASHGls] = ACTIONS(6025), - [anon_sym_BSLASHGLS] = ACTIONS(6025), - [anon_sym_BSLASHglspl] = ACTIONS(6025), - [anon_sym_BSLASHGlspl] = ACTIONS(6025), - [anon_sym_BSLASHGLSpl] = ACTIONS(6025), - [anon_sym_BSLASHglsdisp] = ACTIONS(6025), - [anon_sym_BSLASHglslink] = ACTIONS(6025), - [anon_sym_BSLASHglstext] = ACTIONS(6025), - [anon_sym_BSLASHGlstext] = ACTIONS(6025), - [anon_sym_BSLASHGLStext] = ACTIONS(6025), - [anon_sym_BSLASHglsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), - [anon_sym_BSLASHglsplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSplural] = ACTIONS(6025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHglsname] = ACTIONS(6025), - [anon_sym_BSLASHGlsname] = ACTIONS(6025), - [anon_sym_BSLASHGLSname] = ACTIONS(6025), - [anon_sym_BSLASHglssymbol] = ACTIONS(6025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), - [anon_sym_BSLASHglsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), - [anon_sym_BSLASHglsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), - [anon_sym_BSLASHglsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), - [anon_sym_BSLASHglsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), - [anon_sym_BSLASHglsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), - [anon_sym_BSLASHnewacronym] = ACTIONS(6025), - [anon_sym_BSLASHacrshort] = ACTIONS(6025), - [anon_sym_BSLASHAcrshort] = ACTIONS(6025), - [anon_sym_BSLASHACRshort] = ACTIONS(6025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), - [anon_sym_BSLASHacrlong] = ACTIONS(6025), - [anon_sym_BSLASHAcrlong] = ACTIONS(6025), - [anon_sym_BSLASHACRlong] = ACTIONS(6025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), - [anon_sym_BSLASHacrfull] = ACTIONS(6025), - [anon_sym_BSLASHAcrfull] = ACTIONS(6025), - [anon_sym_BSLASHACRfull] = ACTIONS(6025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), - [anon_sym_BSLASHacs] = ACTIONS(6025), - [anon_sym_BSLASHAcs] = ACTIONS(6025), - [anon_sym_BSLASHacsp] = ACTIONS(6025), - [anon_sym_BSLASHAcsp] = ACTIONS(6025), - [anon_sym_BSLASHacl] = ACTIONS(6025), - [anon_sym_BSLASHAcl] = ACTIONS(6025), - [anon_sym_BSLASHaclp] = ACTIONS(6025), - [anon_sym_BSLASHAclp] = ACTIONS(6025), - [anon_sym_BSLASHacf] = ACTIONS(6025), - [anon_sym_BSLASHAcf] = ACTIONS(6025), - [anon_sym_BSLASHacfp] = ACTIONS(6025), - [anon_sym_BSLASHAcfp] = ACTIONS(6025), - [anon_sym_BSLASHac] = ACTIONS(6025), - [anon_sym_BSLASHAc] = ACTIONS(6025), - [anon_sym_BSLASHacp] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), - [anon_sym_BSLASHcolor] = ACTIONS(6025), - [anon_sym_BSLASHcolorbox] = ACTIONS(6025), - [anon_sym_BSLASHtextcolor] = ACTIONS(6025), - [anon_sym_BSLASHpagecolor] = ACTIONS(6025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), - [anon_sym_BSLASHtext] = ACTIONS(6025), - [anon_sym_BSLASHintertext] = ACTIONS(6025), - [anon_sym_shortintertext] = ACTIONS(6025), - }, - [1498] = { - [sym_command_name] = ACTIONS(6045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6045), - [anon_sym_LBRACK] = ACTIONS(6047), - [anon_sym_RBRACK] = ACTIONS(6047), - [anon_sym_COMMA] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(6047), - [anon_sym_LPAREN] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_LBRACE] = ACTIONS(6047), - [sym_word] = ACTIONS(6045), - [sym_placeholder] = ACTIONS(6047), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6047), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_BANG] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_SQUOTE] = ACTIONS(6045), - [anon_sym__] = ACTIONS(6047), - [anon_sym_CARET] = ACTIONS(6047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6047), - [anon_sym_BSLASHbegin] = ACTIONS(6045), - [anon_sym_BSLASHend] = ACTIONS(6045), - [anon_sym_BSLASHtitle] = ACTIONS(6045), - [anon_sym_BSLASHauthor] = ACTIONS(6045), - [anon_sym_BSLASHusepackage] = ACTIONS(6045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6045), - [anon_sym_BSLASHinclude] = ACTIONS(6045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6045), - [anon_sym_BSLASHinput] = ACTIONS(6045), - [anon_sym_BSLASHsubfile] = ACTIONS(6045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6045), - [anon_sym_BSLASHbibliography] = ACTIONS(6045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6045), - [anon_sym_BSLASHincludesvg] = ACTIONS(6045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6045), - [anon_sym_BSLASHimport] = ACTIONS(6045), - [anon_sym_BSLASHsubimport] = ACTIONS(6045), - [anon_sym_BSLASHinputfrom] = ACTIONS(6045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6045), - [anon_sym_BSLASHincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHcaption] = ACTIONS(6045), - [anon_sym_BSLASHcite] = ACTIONS(6045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCite] = ACTIONS(6045), - [anon_sym_BSLASHnocite] = ACTIONS(6045), - [anon_sym_BSLASHcitet] = ACTIONS(6045), - [anon_sym_BSLASHcitep] = ACTIONS(6045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteauthor] = ACTIONS(6045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitetitle] = ACTIONS(6045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteyear] = ACTIONS(6045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitedate] = ACTIONS(6045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteurl] = ACTIONS(6045), - [anon_sym_BSLASHfullcite] = ACTIONS(6045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6045), - [anon_sym_BSLASHcitealt] = ACTIONS(6045), - [anon_sym_BSLASHcitealp] = ACTIONS(6045), - [anon_sym_BSLASHcitetext] = ACTIONS(6045), - [anon_sym_BSLASHparencite] = ACTIONS(6045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHParencite] = ACTIONS(6045), - [anon_sym_BSLASHfootcite] = ACTIONS(6045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6045), - [anon_sym_BSLASHtextcite] = ACTIONS(6045), - [anon_sym_BSLASHTextcite] = ACTIONS(6045), - [anon_sym_BSLASHsmartcite] = ACTIONS(6045), - [anon_sym_BSLASHSmartcite] = ACTIONS(6045), - [anon_sym_BSLASHsupercite] = ACTIONS(6045), - [anon_sym_BSLASHautocite] = ACTIONS(6045), - [anon_sym_BSLASHAutocite] = ACTIONS(6045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHvolcite] = ACTIONS(6045), - [anon_sym_BSLASHVolcite] = ACTIONS(6045), - [anon_sym_BSLASHpvolcite] = ACTIONS(6045), - [anon_sym_BSLASHPvolcite] = ACTIONS(6045), - [anon_sym_BSLASHfvolcite] = ACTIONS(6045), - [anon_sym_BSLASHftvolcite] = ACTIONS(6045), - [anon_sym_BSLASHsvolcite] = ACTIONS(6045), - [anon_sym_BSLASHSvolcite] = ACTIONS(6045), - [anon_sym_BSLASHtvolcite] = ACTIONS(6045), - [anon_sym_BSLASHTvolcite] = ACTIONS(6045), - [anon_sym_BSLASHavolcite] = ACTIONS(6045), - [anon_sym_BSLASHAvolcite] = ACTIONS(6045), - [anon_sym_BSLASHnotecite] = ACTIONS(6045), - [anon_sym_BSLASHNotecite] = ACTIONS(6045), - [anon_sym_BSLASHpnotecite] = ACTIONS(6045), - [anon_sym_BSLASHPnotecite] = ACTIONS(6045), - [anon_sym_BSLASHfnotecite] = ACTIONS(6045), - [anon_sym_BSLASHlabel] = ACTIONS(6045), - [anon_sym_BSLASHref] = ACTIONS(6045), - [anon_sym_BSLASHeqref] = ACTIONS(6045), - [anon_sym_BSLASHvref] = ACTIONS(6045), - [anon_sym_BSLASHVref] = ACTIONS(6045), - [anon_sym_BSLASHautoref] = ACTIONS(6045), - [anon_sym_BSLASHpageref] = ACTIONS(6045), - [anon_sym_BSLASHcref] = ACTIONS(6045), - [anon_sym_BSLASHCref] = ACTIONS(6045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnameCref] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHlabelcref] = ACTIONS(6045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCrefrange] = ACTIONS(6045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnewlabel] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6047), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHdef] = ACTIONS(6045), - [anon_sym_BSLASHlet] = ACTIONS(6045), - [anon_sym_BSLASHleft] = ACTIONS(6045), - [anon_sym_BSLASHbig] = ACTIONS(6045), - [anon_sym_BSLASHBig] = ACTIONS(6045), - [anon_sym_BSLASHbigg] = ACTIONS(6045), - [anon_sym_BSLASHBigg] = ACTIONS(6045), - [anon_sym_BSLASHbigl] = ACTIONS(6045), - [anon_sym_BSLASHBigl] = ACTIONS(6045), - [anon_sym_BSLASHbiggl] = ACTIONS(6045), - [anon_sym_BSLASHBiggl] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6045), - [anon_sym_BSLASHgls] = ACTIONS(6045), - [anon_sym_BSLASHGls] = ACTIONS(6045), - [anon_sym_BSLASHGLS] = ACTIONS(6045), - [anon_sym_BSLASHglspl] = ACTIONS(6045), - [anon_sym_BSLASHGlspl] = ACTIONS(6045), - [anon_sym_BSLASHGLSpl] = ACTIONS(6045), - [anon_sym_BSLASHglsdisp] = ACTIONS(6045), - [anon_sym_BSLASHglslink] = ACTIONS(6045), - [anon_sym_BSLASHglstext] = ACTIONS(6045), - [anon_sym_BSLASHGlstext] = ACTIONS(6045), - [anon_sym_BSLASHGLStext] = ACTIONS(6045), - [anon_sym_BSLASHglsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6045), - [anon_sym_BSLASHglsplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSplural] = ACTIONS(6045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHglsname] = ACTIONS(6045), - [anon_sym_BSLASHGlsname] = ACTIONS(6045), - [anon_sym_BSLASHGLSname] = ACTIONS(6045), - [anon_sym_BSLASHglssymbol] = ACTIONS(6045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6045), - [anon_sym_BSLASHglsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6045), - [anon_sym_BSLASHglsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6045), - [anon_sym_BSLASHglsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6045), - [anon_sym_BSLASHglsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6045), - [anon_sym_BSLASHglsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6045), - [anon_sym_BSLASHnewacronym] = ACTIONS(6045), - [anon_sym_BSLASHacrshort] = ACTIONS(6045), - [anon_sym_BSLASHAcrshort] = ACTIONS(6045), - [anon_sym_BSLASHACRshort] = ACTIONS(6045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6045), - [anon_sym_BSLASHacrlong] = ACTIONS(6045), - [anon_sym_BSLASHAcrlong] = ACTIONS(6045), - [anon_sym_BSLASHACRlong] = ACTIONS(6045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6045), - [anon_sym_BSLASHacrfull] = ACTIONS(6045), - [anon_sym_BSLASHAcrfull] = ACTIONS(6045), - [anon_sym_BSLASHACRfull] = ACTIONS(6045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6045), - [anon_sym_BSLASHacs] = ACTIONS(6045), - [anon_sym_BSLASHAcs] = ACTIONS(6045), - [anon_sym_BSLASHacsp] = ACTIONS(6045), - [anon_sym_BSLASHAcsp] = ACTIONS(6045), - [anon_sym_BSLASHacl] = ACTIONS(6045), - [anon_sym_BSLASHAcl] = ACTIONS(6045), - [anon_sym_BSLASHaclp] = ACTIONS(6045), - [anon_sym_BSLASHAclp] = ACTIONS(6045), - [anon_sym_BSLASHacf] = ACTIONS(6045), - [anon_sym_BSLASHAcf] = ACTIONS(6045), - [anon_sym_BSLASHacfp] = ACTIONS(6045), - [anon_sym_BSLASHAcfp] = ACTIONS(6045), - [anon_sym_BSLASHac] = ACTIONS(6045), - [anon_sym_BSLASHAc] = ACTIONS(6045), - [anon_sym_BSLASHacp] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6045), - [anon_sym_BSLASHcolor] = ACTIONS(6045), - [anon_sym_BSLASHcolorbox] = ACTIONS(6045), - [anon_sym_BSLASHtextcolor] = ACTIONS(6045), - [anon_sym_BSLASHpagecolor] = ACTIONS(6045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6045), - [anon_sym_BSLASHtext] = ACTIONS(6045), - [anon_sym_BSLASHintertext] = ACTIONS(6045), - [anon_sym_shortintertext] = ACTIONS(6045), - }, - [1499] = { - [sym_command_name] = ACTIONS(6049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6049), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_LBRACE] = ACTIONS(6051), - [sym_word] = ACTIONS(6049), - [sym_placeholder] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6051), - [anon_sym_DASH] = ACTIONS(6051), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6049), - [anon_sym_GT] = ACTIONS(6049), - [anon_sym_BANG] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6049), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_SQUOTE] = ACTIONS(6049), - [anon_sym__] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), - [anon_sym_BSLASHbegin] = ACTIONS(6049), - [anon_sym_BSLASHend] = ACTIONS(6049), - [anon_sym_BSLASHtitle] = ACTIONS(6049), - [anon_sym_BSLASHauthor] = ACTIONS(6049), - [anon_sym_BSLASHusepackage] = ACTIONS(6049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6049), - [anon_sym_BSLASHinclude] = ACTIONS(6049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6049), - [anon_sym_BSLASHinput] = ACTIONS(6049), - [anon_sym_BSLASHsubfile] = ACTIONS(6049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6049), - [anon_sym_BSLASHbibliography] = ACTIONS(6049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6049), - [anon_sym_BSLASHincludesvg] = ACTIONS(6049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6049), - [anon_sym_BSLASHimport] = ACTIONS(6049), - [anon_sym_BSLASHsubimport] = ACTIONS(6049), - [anon_sym_BSLASHinputfrom] = ACTIONS(6049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6049), - [anon_sym_BSLASHincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHcaption] = ACTIONS(6049), - [anon_sym_BSLASHcite] = ACTIONS(6049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCite] = ACTIONS(6049), - [anon_sym_BSLASHnocite] = ACTIONS(6049), - [anon_sym_BSLASHcitet] = ACTIONS(6049), - [anon_sym_BSLASHcitep] = ACTIONS(6049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteauthor] = ACTIONS(6049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitetitle] = ACTIONS(6049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteyear] = ACTIONS(6049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitedate] = ACTIONS(6049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteurl] = ACTIONS(6049), - [anon_sym_BSLASHfullcite] = ACTIONS(6049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6049), - [anon_sym_BSLASHcitealt] = ACTIONS(6049), - [anon_sym_BSLASHcitealp] = ACTIONS(6049), - [anon_sym_BSLASHcitetext] = ACTIONS(6049), - [anon_sym_BSLASHparencite] = ACTIONS(6049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHParencite] = ACTIONS(6049), - [anon_sym_BSLASHfootcite] = ACTIONS(6049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6049), - [anon_sym_BSLASHtextcite] = ACTIONS(6049), - [anon_sym_BSLASHTextcite] = ACTIONS(6049), - [anon_sym_BSLASHsmartcite] = ACTIONS(6049), - [anon_sym_BSLASHSmartcite] = ACTIONS(6049), - [anon_sym_BSLASHsupercite] = ACTIONS(6049), - [anon_sym_BSLASHautocite] = ACTIONS(6049), - [anon_sym_BSLASHAutocite] = ACTIONS(6049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHvolcite] = ACTIONS(6049), - [anon_sym_BSLASHVolcite] = ACTIONS(6049), - [anon_sym_BSLASHpvolcite] = ACTIONS(6049), - [anon_sym_BSLASHPvolcite] = ACTIONS(6049), - [anon_sym_BSLASHfvolcite] = ACTIONS(6049), - [anon_sym_BSLASHftvolcite] = ACTIONS(6049), - [anon_sym_BSLASHsvolcite] = ACTIONS(6049), - [anon_sym_BSLASHSvolcite] = ACTIONS(6049), - [anon_sym_BSLASHtvolcite] = ACTIONS(6049), - [anon_sym_BSLASHTvolcite] = ACTIONS(6049), - [anon_sym_BSLASHavolcite] = ACTIONS(6049), - [anon_sym_BSLASHAvolcite] = ACTIONS(6049), - [anon_sym_BSLASHnotecite] = ACTIONS(6049), - [anon_sym_BSLASHNotecite] = ACTIONS(6049), - [anon_sym_BSLASHpnotecite] = ACTIONS(6049), - [anon_sym_BSLASHPnotecite] = ACTIONS(6049), - [anon_sym_BSLASHfnotecite] = ACTIONS(6049), - [anon_sym_BSLASHlabel] = ACTIONS(6049), - [anon_sym_BSLASHref] = ACTIONS(6049), - [anon_sym_BSLASHeqref] = ACTIONS(6049), - [anon_sym_BSLASHvref] = ACTIONS(6049), - [anon_sym_BSLASHVref] = ACTIONS(6049), - [anon_sym_BSLASHautoref] = ACTIONS(6049), - [anon_sym_BSLASHpageref] = ACTIONS(6049), - [anon_sym_BSLASHcref] = ACTIONS(6049), - [anon_sym_BSLASHCref] = ACTIONS(6049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnameCref] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHlabelcref] = ACTIONS(6049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCrefrange] = ACTIONS(6049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnewlabel] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHdef] = ACTIONS(6049), - [anon_sym_BSLASHlet] = ACTIONS(6049), - [anon_sym_BSLASHleft] = ACTIONS(6049), - [anon_sym_BSLASHbig] = ACTIONS(6049), - [anon_sym_BSLASHBig] = ACTIONS(6049), - [anon_sym_BSLASHbigg] = ACTIONS(6049), - [anon_sym_BSLASHBigg] = ACTIONS(6049), - [anon_sym_BSLASHbigl] = ACTIONS(6049), - [anon_sym_BSLASHBigl] = ACTIONS(6049), - [anon_sym_BSLASHbiggl] = ACTIONS(6049), - [anon_sym_BSLASHBiggl] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6049), - [anon_sym_BSLASHgls] = ACTIONS(6049), - [anon_sym_BSLASHGls] = ACTIONS(6049), - [anon_sym_BSLASHGLS] = ACTIONS(6049), - [anon_sym_BSLASHglspl] = ACTIONS(6049), - [anon_sym_BSLASHGlspl] = ACTIONS(6049), - [anon_sym_BSLASHGLSpl] = ACTIONS(6049), - [anon_sym_BSLASHglsdisp] = ACTIONS(6049), - [anon_sym_BSLASHglslink] = ACTIONS(6049), - [anon_sym_BSLASHglstext] = ACTIONS(6049), - [anon_sym_BSLASHGlstext] = ACTIONS(6049), - [anon_sym_BSLASHGLStext] = ACTIONS(6049), - [anon_sym_BSLASHglsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6049), - [anon_sym_BSLASHglsplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSplural] = ACTIONS(6049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHglsname] = ACTIONS(6049), - [anon_sym_BSLASHGlsname] = ACTIONS(6049), - [anon_sym_BSLASHGLSname] = ACTIONS(6049), - [anon_sym_BSLASHglssymbol] = ACTIONS(6049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6049), - [anon_sym_BSLASHglsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6049), - [anon_sym_BSLASHglsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6049), - [anon_sym_BSLASHglsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6049), - [anon_sym_BSLASHglsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6049), - [anon_sym_BSLASHglsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6049), - [anon_sym_BSLASHnewacronym] = ACTIONS(6049), - [anon_sym_BSLASHacrshort] = ACTIONS(6049), - [anon_sym_BSLASHAcrshort] = ACTIONS(6049), - [anon_sym_BSLASHACRshort] = ACTIONS(6049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6049), - [anon_sym_BSLASHacrlong] = ACTIONS(6049), - [anon_sym_BSLASHAcrlong] = ACTIONS(6049), - [anon_sym_BSLASHACRlong] = ACTIONS(6049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6049), - [anon_sym_BSLASHacrfull] = ACTIONS(6049), - [anon_sym_BSLASHAcrfull] = ACTIONS(6049), - [anon_sym_BSLASHACRfull] = ACTIONS(6049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6049), - [anon_sym_BSLASHacs] = ACTIONS(6049), - [anon_sym_BSLASHAcs] = ACTIONS(6049), - [anon_sym_BSLASHacsp] = ACTIONS(6049), - [anon_sym_BSLASHAcsp] = ACTIONS(6049), - [anon_sym_BSLASHacl] = ACTIONS(6049), - [anon_sym_BSLASHAcl] = ACTIONS(6049), - [anon_sym_BSLASHaclp] = ACTIONS(6049), - [anon_sym_BSLASHAclp] = ACTIONS(6049), - [anon_sym_BSLASHacf] = ACTIONS(6049), - [anon_sym_BSLASHAcf] = ACTIONS(6049), - [anon_sym_BSLASHacfp] = ACTIONS(6049), - [anon_sym_BSLASHAcfp] = ACTIONS(6049), - [anon_sym_BSLASHac] = ACTIONS(6049), - [anon_sym_BSLASHAc] = ACTIONS(6049), - [anon_sym_BSLASHacp] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6049), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6049), - [anon_sym_BSLASHcolor] = ACTIONS(6049), - [anon_sym_BSLASHcolorbox] = ACTIONS(6049), - [anon_sym_BSLASHtextcolor] = ACTIONS(6049), - [anon_sym_BSLASHpagecolor] = ACTIONS(6049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6049), - [anon_sym_BSLASHtext] = ACTIONS(6049), - [anon_sym_BSLASHintertext] = ACTIONS(6049), - [anon_sym_shortintertext] = ACTIONS(6049), - }, - [1500] = { - [sym_command_name] = ACTIONS(6053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6053), - [anon_sym_LBRACK] = ACTIONS(6055), - [anon_sym_RBRACK] = ACTIONS(6055), - [anon_sym_COMMA] = ACTIONS(6055), - [anon_sym_EQ] = ACTIONS(6055), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_LBRACE] = ACTIONS(6055), - [sym_word] = ACTIONS(6053), - [sym_placeholder] = ACTIONS(6055), - [anon_sym_PLUS] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(6055), - [anon_sym_STAR] = ACTIONS(6055), - [anon_sym_SLASH] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_COLON] = ACTIONS(6053), - [anon_sym_SQUOTE] = ACTIONS(6053), - [anon_sym__] = ACTIONS(6055), - [anon_sym_CARET] = ACTIONS(6055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), - [anon_sym_BSLASHbegin] = ACTIONS(6053), - [anon_sym_BSLASHend] = ACTIONS(6053), - [anon_sym_BSLASHtitle] = ACTIONS(6053), - [anon_sym_BSLASHauthor] = ACTIONS(6053), - [anon_sym_BSLASHusepackage] = ACTIONS(6053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), - [anon_sym_BSLASHinclude] = ACTIONS(6053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), - [anon_sym_BSLASHinput] = ACTIONS(6053), - [anon_sym_BSLASHsubfile] = ACTIONS(6053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), - [anon_sym_BSLASHbibliography] = ACTIONS(6053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), - [anon_sym_BSLASHincludesvg] = ACTIONS(6053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), - [anon_sym_BSLASHimport] = ACTIONS(6053), - [anon_sym_BSLASHsubimport] = ACTIONS(6053), - [anon_sym_BSLASHinputfrom] = ACTIONS(6053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), - [anon_sym_BSLASHincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHcaption] = ACTIONS(6053), - [anon_sym_BSLASHcite] = ACTIONS(6053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCite] = ACTIONS(6053), - [anon_sym_BSLASHnocite] = ACTIONS(6053), - [anon_sym_BSLASHcitet] = ACTIONS(6053), - [anon_sym_BSLASHcitep] = ACTIONS(6053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteauthor] = ACTIONS(6053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitetitle] = ACTIONS(6053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteyear] = ACTIONS(6053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitedate] = ACTIONS(6053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteurl] = ACTIONS(6053), - [anon_sym_BSLASHfullcite] = ACTIONS(6053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), - [anon_sym_BSLASHcitealt] = ACTIONS(6053), - [anon_sym_BSLASHcitealp] = ACTIONS(6053), - [anon_sym_BSLASHcitetext] = ACTIONS(6053), - [anon_sym_BSLASHparencite] = ACTIONS(6053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHParencite] = ACTIONS(6053), - [anon_sym_BSLASHfootcite] = ACTIONS(6053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), - [anon_sym_BSLASHtextcite] = ACTIONS(6053), - [anon_sym_BSLASHTextcite] = ACTIONS(6053), - [anon_sym_BSLASHsmartcite] = ACTIONS(6053), - [anon_sym_BSLASHSmartcite] = ACTIONS(6053), - [anon_sym_BSLASHsupercite] = ACTIONS(6053), - [anon_sym_BSLASHautocite] = ACTIONS(6053), - [anon_sym_BSLASHAutocite] = ACTIONS(6053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHvolcite] = ACTIONS(6053), - [anon_sym_BSLASHVolcite] = ACTIONS(6053), - [anon_sym_BSLASHpvolcite] = ACTIONS(6053), - [anon_sym_BSLASHPvolcite] = ACTIONS(6053), - [anon_sym_BSLASHfvolcite] = ACTIONS(6053), - [anon_sym_BSLASHftvolcite] = ACTIONS(6053), - [anon_sym_BSLASHsvolcite] = ACTIONS(6053), - [anon_sym_BSLASHSvolcite] = ACTIONS(6053), - [anon_sym_BSLASHtvolcite] = ACTIONS(6053), - [anon_sym_BSLASHTvolcite] = ACTIONS(6053), - [anon_sym_BSLASHavolcite] = ACTIONS(6053), - [anon_sym_BSLASHAvolcite] = ACTIONS(6053), - [anon_sym_BSLASHnotecite] = ACTIONS(6053), - [anon_sym_BSLASHNotecite] = ACTIONS(6053), - [anon_sym_BSLASHpnotecite] = ACTIONS(6053), - [anon_sym_BSLASHPnotecite] = ACTIONS(6053), - [anon_sym_BSLASHfnotecite] = ACTIONS(6053), - [anon_sym_BSLASHlabel] = ACTIONS(6053), - [anon_sym_BSLASHref] = ACTIONS(6053), - [anon_sym_BSLASHeqref] = ACTIONS(6053), - [anon_sym_BSLASHvref] = ACTIONS(6053), - [anon_sym_BSLASHVref] = ACTIONS(6053), - [anon_sym_BSLASHautoref] = ACTIONS(6053), - [anon_sym_BSLASHpageref] = ACTIONS(6053), - [anon_sym_BSLASHcref] = ACTIONS(6053), - [anon_sym_BSLASHCref] = ACTIONS(6053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnameCref] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHlabelcref] = ACTIONS(6053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCrefrange] = ACTIONS(6053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnewlabel] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHdef] = ACTIONS(6053), - [anon_sym_BSLASHlet] = ACTIONS(6053), - [anon_sym_BSLASHleft] = ACTIONS(6053), - [anon_sym_BSLASHbig] = ACTIONS(6053), - [anon_sym_BSLASHBig] = ACTIONS(6053), - [anon_sym_BSLASHbigg] = ACTIONS(6053), - [anon_sym_BSLASHBigg] = ACTIONS(6053), - [anon_sym_BSLASHbigl] = ACTIONS(6053), - [anon_sym_BSLASHBigl] = ACTIONS(6053), - [anon_sym_BSLASHbiggl] = ACTIONS(6053), - [anon_sym_BSLASHBiggl] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), - [anon_sym_BSLASHgls] = ACTIONS(6053), - [anon_sym_BSLASHGls] = ACTIONS(6053), - [anon_sym_BSLASHGLS] = ACTIONS(6053), - [anon_sym_BSLASHglspl] = ACTIONS(6053), - [anon_sym_BSLASHGlspl] = ACTIONS(6053), - [anon_sym_BSLASHGLSpl] = ACTIONS(6053), - [anon_sym_BSLASHglsdisp] = ACTIONS(6053), - [anon_sym_BSLASHglslink] = ACTIONS(6053), - [anon_sym_BSLASHglstext] = ACTIONS(6053), - [anon_sym_BSLASHGlstext] = ACTIONS(6053), - [anon_sym_BSLASHGLStext] = ACTIONS(6053), - [anon_sym_BSLASHglsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), - [anon_sym_BSLASHglsplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSplural] = ACTIONS(6053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHglsname] = ACTIONS(6053), - [anon_sym_BSLASHGlsname] = ACTIONS(6053), - [anon_sym_BSLASHGLSname] = ACTIONS(6053), - [anon_sym_BSLASHglssymbol] = ACTIONS(6053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), - [anon_sym_BSLASHglsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), - [anon_sym_BSLASHglsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), - [anon_sym_BSLASHglsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), - [anon_sym_BSLASHglsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), - [anon_sym_BSLASHglsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), - [anon_sym_BSLASHnewacronym] = ACTIONS(6053), - [anon_sym_BSLASHacrshort] = ACTIONS(6053), - [anon_sym_BSLASHAcrshort] = ACTIONS(6053), - [anon_sym_BSLASHACRshort] = ACTIONS(6053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), - [anon_sym_BSLASHacrlong] = ACTIONS(6053), - [anon_sym_BSLASHAcrlong] = ACTIONS(6053), - [anon_sym_BSLASHACRlong] = ACTIONS(6053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), - [anon_sym_BSLASHacrfull] = ACTIONS(6053), - [anon_sym_BSLASHAcrfull] = ACTIONS(6053), - [anon_sym_BSLASHACRfull] = ACTIONS(6053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), - [anon_sym_BSLASHacs] = ACTIONS(6053), - [anon_sym_BSLASHAcs] = ACTIONS(6053), - [anon_sym_BSLASHacsp] = ACTIONS(6053), - [anon_sym_BSLASHAcsp] = ACTIONS(6053), - [anon_sym_BSLASHacl] = ACTIONS(6053), - [anon_sym_BSLASHAcl] = ACTIONS(6053), - [anon_sym_BSLASHaclp] = ACTIONS(6053), - [anon_sym_BSLASHAclp] = ACTIONS(6053), - [anon_sym_BSLASHacf] = ACTIONS(6053), - [anon_sym_BSLASHAcf] = ACTIONS(6053), - [anon_sym_BSLASHacfp] = ACTIONS(6053), - [anon_sym_BSLASHAcfp] = ACTIONS(6053), - [anon_sym_BSLASHac] = ACTIONS(6053), - [anon_sym_BSLASHAc] = ACTIONS(6053), - [anon_sym_BSLASHacp] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), - [anon_sym_BSLASHcolor] = ACTIONS(6053), - [anon_sym_BSLASHcolorbox] = ACTIONS(6053), - [anon_sym_BSLASHtextcolor] = ACTIONS(6053), - [anon_sym_BSLASHpagecolor] = ACTIONS(6053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), - [anon_sym_BSLASHtext] = ACTIONS(6053), - [anon_sym_BSLASHintertext] = ACTIONS(6053), - [anon_sym_shortintertext] = ACTIONS(6053), - }, - [1501] = { - [sym_command_name] = ACTIONS(6057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6057), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6059), - [sym_word] = ACTIONS(6057), - [sym_placeholder] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_BANG] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_SQUOTE] = ACTIONS(6057), - [anon_sym__] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), - [anon_sym_BSLASHbegin] = ACTIONS(6057), - [anon_sym_BSLASHend] = ACTIONS(6057), - [anon_sym_BSLASHtitle] = ACTIONS(6057), - [anon_sym_BSLASHauthor] = ACTIONS(6057), - [anon_sym_BSLASHusepackage] = ACTIONS(6057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), - [anon_sym_BSLASHinclude] = ACTIONS(6057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), - [anon_sym_BSLASHinput] = ACTIONS(6057), - [anon_sym_BSLASHsubfile] = ACTIONS(6057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), - [anon_sym_BSLASHbibliography] = ACTIONS(6057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), - [anon_sym_BSLASHincludesvg] = ACTIONS(6057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), - [anon_sym_BSLASHimport] = ACTIONS(6057), - [anon_sym_BSLASHsubimport] = ACTIONS(6057), - [anon_sym_BSLASHinputfrom] = ACTIONS(6057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), - [anon_sym_BSLASHincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHcaption] = ACTIONS(6057), - [anon_sym_BSLASHcite] = ACTIONS(6057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCite] = ACTIONS(6057), - [anon_sym_BSLASHnocite] = ACTIONS(6057), - [anon_sym_BSLASHcitet] = ACTIONS(6057), - [anon_sym_BSLASHcitep] = ACTIONS(6057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteauthor] = ACTIONS(6057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitetitle] = ACTIONS(6057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteyear] = ACTIONS(6057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitedate] = ACTIONS(6057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteurl] = ACTIONS(6057), - [anon_sym_BSLASHfullcite] = ACTIONS(6057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), - [anon_sym_BSLASHcitealt] = ACTIONS(6057), - [anon_sym_BSLASHcitealp] = ACTIONS(6057), - [anon_sym_BSLASHcitetext] = ACTIONS(6057), - [anon_sym_BSLASHparencite] = ACTIONS(6057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHParencite] = ACTIONS(6057), - [anon_sym_BSLASHfootcite] = ACTIONS(6057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), - [anon_sym_BSLASHtextcite] = ACTIONS(6057), - [anon_sym_BSLASHTextcite] = ACTIONS(6057), - [anon_sym_BSLASHsmartcite] = ACTIONS(6057), - [anon_sym_BSLASHSmartcite] = ACTIONS(6057), - [anon_sym_BSLASHsupercite] = ACTIONS(6057), - [anon_sym_BSLASHautocite] = ACTIONS(6057), - [anon_sym_BSLASHAutocite] = ACTIONS(6057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHvolcite] = ACTIONS(6057), - [anon_sym_BSLASHVolcite] = ACTIONS(6057), - [anon_sym_BSLASHpvolcite] = ACTIONS(6057), - [anon_sym_BSLASHPvolcite] = ACTIONS(6057), - [anon_sym_BSLASHfvolcite] = ACTIONS(6057), - [anon_sym_BSLASHftvolcite] = ACTIONS(6057), - [anon_sym_BSLASHsvolcite] = ACTIONS(6057), - [anon_sym_BSLASHSvolcite] = ACTIONS(6057), - [anon_sym_BSLASHtvolcite] = ACTIONS(6057), - [anon_sym_BSLASHTvolcite] = ACTIONS(6057), - [anon_sym_BSLASHavolcite] = ACTIONS(6057), - [anon_sym_BSLASHAvolcite] = ACTIONS(6057), - [anon_sym_BSLASHnotecite] = ACTIONS(6057), - [anon_sym_BSLASHNotecite] = ACTIONS(6057), - [anon_sym_BSLASHpnotecite] = ACTIONS(6057), - [anon_sym_BSLASHPnotecite] = ACTIONS(6057), - [anon_sym_BSLASHfnotecite] = ACTIONS(6057), - [anon_sym_BSLASHlabel] = ACTIONS(6057), - [anon_sym_BSLASHref] = ACTIONS(6057), - [anon_sym_BSLASHeqref] = ACTIONS(6057), - [anon_sym_BSLASHvref] = ACTIONS(6057), - [anon_sym_BSLASHVref] = ACTIONS(6057), - [anon_sym_BSLASHautoref] = ACTIONS(6057), - [anon_sym_BSLASHpageref] = ACTIONS(6057), - [anon_sym_BSLASHcref] = ACTIONS(6057), - [anon_sym_BSLASHCref] = ACTIONS(6057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnameCref] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHlabelcref] = ACTIONS(6057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCrefrange] = ACTIONS(6057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnewlabel] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHdef] = ACTIONS(6057), - [anon_sym_BSLASHlet] = ACTIONS(6057), - [anon_sym_BSLASHleft] = ACTIONS(6057), - [anon_sym_BSLASHbig] = ACTIONS(6057), - [anon_sym_BSLASHBig] = ACTIONS(6057), - [anon_sym_BSLASHbigg] = ACTIONS(6057), - [anon_sym_BSLASHBigg] = ACTIONS(6057), - [anon_sym_BSLASHbigl] = ACTIONS(6057), - [anon_sym_BSLASHBigl] = ACTIONS(6057), - [anon_sym_BSLASHbiggl] = ACTIONS(6057), - [anon_sym_BSLASHBiggl] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), - [anon_sym_BSLASHgls] = ACTIONS(6057), - [anon_sym_BSLASHGls] = ACTIONS(6057), - [anon_sym_BSLASHGLS] = ACTIONS(6057), - [anon_sym_BSLASHglspl] = ACTIONS(6057), - [anon_sym_BSLASHGlspl] = ACTIONS(6057), - [anon_sym_BSLASHGLSpl] = ACTIONS(6057), - [anon_sym_BSLASHglsdisp] = ACTIONS(6057), - [anon_sym_BSLASHglslink] = ACTIONS(6057), - [anon_sym_BSLASHglstext] = ACTIONS(6057), - [anon_sym_BSLASHGlstext] = ACTIONS(6057), - [anon_sym_BSLASHGLStext] = ACTIONS(6057), - [anon_sym_BSLASHglsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), - [anon_sym_BSLASHglsplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSplural] = ACTIONS(6057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHglsname] = ACTIONS(6057), - [anon_sym_BSLASHGlsname] = ACTIONS(6057), - [anon_sym_BSLASHGLSname] = ACTIONS(6057), - [anon_sym_BSLASHglssymbol] = ACTIONS(6057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), - [anon_sym_BSLASHglsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), - [anon_sym_BSLASHglsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), - [anon_sym_BSLASHglsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), - [anon_sym_BSLASHglsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), - [anon_sym_BSLASHglsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), - [anon_sym_BSLASHnewacronym] = ACTIONS(6057), - [anon_sym_BSLASHacrshort] = ACTIONS(6057), - [anon_sym_BSLASHAcrshort] = ACTIONS(6057), - [anon_sym_BSLASHACRshort] = ACTIONS(6057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), - [anon_sym_BSLASHacrlong] = ACTIONS(6057), - [anon_sym_BSLASHAcrlong] = ACTIONS(6057), - [anon_sym_BSLASHACRlong] = ACTIONS(6057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), - [anon_sym_BSLASHacrfull] = ACTIONS(6057), - [anon_sym_BSLASHAcrfull] = ACTIONS(6057), - [anon_sym_BSLASHACRfull] = ACTIONS(6057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), - [anon_sym_BSLASHacs] = ACTIONS(6057), - [anon_sym_BSLASHAcs] = ACTIONS(6057), - [anon_sym_BSLASHacsp] = ACTIONS(6057), - [anon_sym_BSLASHAcsp] = ACTIONS(6057), - [anon_sym_BSLASHacl] = ACTIONS(6057), - [anon_sym_BSLASHAcl] = ACTIONS(6057), - [anon_sym_BSLASHaclp] = ACTIONS(6057), - [anon_sym_BSLASHAclp] = ACTIONS(6057), - [anon_sym_BSLASHacf] = ACTIONS(6057), - [anon_sym_BSLASHAcf] = ACTIONS(6057), - [anon_sym_BSLASHacfp] = ACTIONS(6057), - [anon_sym_BSLASHAcfp] = ACTIONS(6057), - [anon_sym_BSLASHac] = ACTIONS(6057), - [anon_sym_BSLASHAc] = ACTIONS(6057), - [anon_sym_BSLASHacp] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), - [anon_sym_BSLASHcolor] = ACTIONS(6057), - [anon_sym_BSLASHcolorbox] = ACTIONS(6057), - [anon_sym_BSLASHtextcolor] = ACTIONS(6057), - [anon_sym_BSLASHpagecolor] = ACTIONS(6057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), - [anon_sym_BSLASHtext] = ACTIONS(6057), - [anon_sym_BSLASHintertext] = ACTIONS(6057), - [anon_sym_shortintertext] = ACTIONS(6057), - }, - [1502] = { - [sym_command_name] = ACTIONS(6109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6109), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_RBRACK] = ACTIONS(6111), - [anon_sym_COMMA] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_LPAREN] = ACTIONS(6111), - [anon_sym_RPAREN] = ACTIONS(6111), - [anon_sym_LBRACE] = ACTIONS(6111), - [sym_word] = ACTIONS(6109), - [sym_placeholder] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6109), - [anon_sym_GT] = ACTIONS(6109), - [anon_sym_BANG] = ACTIONS(6109), - [anon_sym_PIPE] = ACTIONS(6109), - [anon_sym_COLON] = ACTIONS(6109), - [anon_sym_SQUOTE] = ACTIONS(6109), - [anon_sym__] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), - [anon_sym_DOLLAR] = ACTIONS(6109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), - [anon_sym_BSLASHbegin] = ACTIONS(6109), - [anon_sym_BSLASHend] = ACTIONS(6109), - [anon_sym_BSLASHtitle] = ACTIONS(6109), - [anon_sym_BSLASHauthor] = ACTIONS(6109), - [anon_sym_BSLASHusepackage] = ACTIONS(6109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), - [anon_sym_BSLASHinclude] = ACTIONS(6109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), - [anon_sym_BSLASHinput] = ACTIONS(6109), - [anon_sym_BSLASHsubfile] = ACTIONS(6109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), - [anon_sym_BSLASHbibliography] = ACTIONS(6109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), - [anon_sym_BSLASHincludesvg] = ACTIONS(6109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), - [anon_sym_BSLASHimport] = ACTIONS(6109), - [anon_sym_BSLASHsubimport] = ACTIONS(6109), - [anon_sym_BSLASHinputfrom] = ACTIONS(6109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), - [anon_sym_BSLASHincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHcaption] = ACTIONS(6109), - [anon_sym_BSLASHcite] = ACTIONS(6109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCite] = ACTIONS(6109), - [anon_sym_BSLASHnocite] = ACTIONS(6109), - [anon_sym_BSLASHcitet] = ACTIONS(6109), - [anon_sym_BSLASHcitep] = ACTIONS(6109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteauthor] = ACTIONS(6109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitetitle] = ACTIONS(6109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteyear] = ACTIONS(6109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitedate] = ACTIONS(6109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteurl] = ACTIONS(6109), - [anon_sym_BSLASHfullcite] = ACTIONS(6109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), - [anon_sym_BSLASHcitealt] = ACTIONS(6109), - [anon_sym_BSLASHcitealp] = ACTIONS(6109), - [anon_sym_BSLASHcitetext] = ACTIONS(6109), - [anon_sym_BSLASHparencite] = ACTIONS(6109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHParencite] = ACTIONS(6109), - [anon_sym_BSLASHfootcite] = ACTIONS(6109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), - [anon_sym_BSLASHtextcite] = ACTIONS(6109), - [anon_sym_BSLASHTextcite] = ACTIONS(6109), - [anon_sym_BSLASHsmartcite] = ACTIONS(6109), - [anon_sym_BSLASHSmartcite] = ACTIONS(6109), - [anon_sym_BSLASHsupercite] = ACTIONS(6109), - [anon_sym_BSLASHautocite] = ACTIONS(6109), - [anon_sym_BSLASHAutocite] = ACTIONS(6109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHvolcite] = ACTIONS(6109), - [anon_sym_BSLASHVolcite] = ACTIONS(6109), - [anon_sym_BSLASHpvolcite] = ACTIONS(6109), - [anon_sym_BSLASHPvolcite] = ACTIONS(6109), - [anon_sym_BSLASHfvolcite] = ACTIONS(6109), - [anon_sym_BSLASHftvolcite] = ACTIONS(6109), - [anon_sym_BSLASHsvolcite] = ACTIONS(6109), - [anon_sym_BSLASHSvolcite] = ACTIONS(6109), - [anon_sym_BSLASHtvolcite] = ACTIONS(6109), - [anon_sym_BSLASHTvolcite] = ACTIONS(6109), - [anon_sym_BSLASHavolcite] = ACTIONS(6109), - [anon_sym_BSLASHAvolcite] = ACTIONS(6109), - [anon_sym_BSLASHnotecite] = ACTIONS(6109), - [anon_sym_BSLASHNotecite] = ACTIONS(6109), - [anon_sym_BSLASHpnotecite] = ACTIONS(6109), - [anon_sym_BSLASHPnotecite] = ACTIONS(6109), - [anon_sym_BSLASHfnotecite] = ACTIONS(6109), - [anon_sym_BSLASHlabel] = ACTIONS(6109), - [anon_sym_BSLASHref] = ACTIONS(6109), - [anon_sym_BSLASHeqref] = ACTIONS(6109), - [anon_sym_BSLASHvref] = ACTIONS(6109), - [anon_sym_BSLASHVref] = ACTIONS(6109), - [anon_sym_BSLASHautoref] = ACTIONS(6109), - [anon_sym_BSLASHpageref] = ACTIONS(6109), - [anon_sym_BSLASHcref] = ACTIONS(6109), - [anon_sym_BSLASHCref] = ACTIONS(6109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnameCref] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHlabelcref] = ACTIONS(6109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCrefrange] = ACTIONS(6109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnewlabel] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHdef] = ACTIONS(6109), - [anon_sym_BSLASHlet] = ACTIONS(6109), - [anon_sym_BSLASHleft] = ACTIONS(6109), - [anon_sym_BSLASHbig] = ACTIONS(6109), - [anon_sym_BSLASHBig] = ACTIONS(6109), - [anon_sym_BSLASHbigg] = ACTIONS(6109), - [anon_sym_BSLASHBigg] = ACTIONS(6109), - [anon_sym_BSLASHbigl] = ACTIONS(6109), - [anon_sym_BSLASHBigl] = ACTIONS(6109), - [anon_sym_BSLASHbiggl] = ACTIONS(6109), - [anon_sym_BSLASHBiggl] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), - [anon_sym_BSLASHgls] = ACTIONS(6109), - [anon_sym_BSLASHGls] = ACTIONS(6109), - [anon_sym_BSLASHGLS] = ACTIONS(6109), - [anon_sym_BSLASHglspl] = ACTIONS(6109), - [anon_sym_BSLASHGlspl] = ACTIONS(6109), - [anon_sym_BSLASHGLSpl] = ACTIONS(6109), - [anon_sym_BSLASHglsdisp] = ACTIONS(6109), - [anon_sym_BSLASHglslink] = ACTIONS(6109), - [anon_sym_BSLASHglstext] = ACTIONS(6109), - [anon_sym_BSLASHGlstext] = ACTIONS(6109), - [anon_sym_BSLASHGLStext] = ACTIONS(6109), - [anon_sym_BSLASHglsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), - [anon_sym_BSLASHglsplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSplural] = ACTIONS(6109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHglsname] = ACTIONS(6109), - [anon_sym_BSLASHGlsname] = ACTIONS(6109), - [anon_sym_BSLASHGLSname] = ACTIONS(6109), - [anon_sym_BSLASHglssymbol] = ACTIONS(6109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), - [anon_sym_BSLASHglsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), - [anon_sym_BSLASHglsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), - [anon_sym_BSLASHglsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), - [anon_sym_BSLASHglsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), - [anon_sym_BSLASHglsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), - [anon_sym_BSLASHnewacronym] = ACTIONS(6109), - [anon_sym_BSLASHacrshort] = ACTIONS(6109), - [anon_sym_BSLASHAcrshort] = ACTIONS(6109), - [anon_sym_BSLASHACRshort] = ACTIONS(6109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), - [anon_sym_BSLASHacrlong] = ACTIONS(6109), - [anon_sym_BSLASHAcrlong] = ACTIONS(6109), - [anon_sym_BSLASHACRlong] = ACTIONS(6109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), - [anon_sym_BSLASHacrfull] = ACTIONS(6109), - [anon_sym_BSLASHAcrfull] = ACTIONS(6109), - [anon_sym_BSLASHACRfull] = ACTIONS(6109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), - [anon_sym_BSLASHacs] = ACTIONS(6109), - [anon_sym_BSLASHAcs] = ACTIONS(6109), - [anon_sym_BSLASHacsp] = ACTIONS(6109), - [anon_sym_BSLASHAcsp] = ACTIONS(6109), - [anon_sym_BSLASHacl] = ACTIONS(6109), - [anon_sym_BSLASHAcl] = ACTIONS(6109), - [anon_sym_BSLASHaclp] = ACTIONS(6109), - [anon_sym_BSLASHAclp] = ACTIONS(6109), - [anon_sym_BSLASHacf] = ACTIONS(6109), - [anon_sym_BSLASHAcf] = ACTIONS(6109), - [anon_sym_BSLASHacfp] = ACTIONS(6109), - [anon_sym_BSLASHAcfp] = ACTIONS(6109), - [anon_sym_BSLASHac] = ACTIONS(6109), - [anon_sym_BSLASHAc] = ACTIONS(6109), - [anon_sym_BSLASHacp] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), - [anon_sym_BSLASHcolor] = ACTIONS(6109), - [anon_sym_BSLASHcolorbox] = ACTIONS(6109), - [anon_sym_BSLASHtextcolor] = ACTIONS(6109), - [anon_sym_BSLASHpagecolor] = ACTIONS(6109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), - [anon_sym_BSLASHtext] = ACTIONS(6109), - [anon_sym_BSLASHintertext] = ACTIONS(6109), - [anon_sym_shortintertext] = ACTIONS(6109), - }, - [1503] = { - [sym_command_name] = ACTIONS(6113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6115), - [anon_sym_RBRACK] = ACTIONS(6115), - [anon_sym_COMMA] = ACTIONS(6115), - [anon_sym_EQ] = ACTIONS(6115), - [anon_sym_LPAREN] = ACTIONS(6115), - [anon_sym_RPAREN] = ACTIONS(6115), - [anon_sym_LBRACE] = ACTIONS(6115), - [sym_word] = ACTIONS(6113), - [sym_placeholder] = ACTIONS(6115), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_LT] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6113), - [anon_sym_BANG] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_SQUOTE] = ACTIONS(6113), - [anon_sym__] = ACTIONS(6115), - [anon_sym_CARET] = ACTIONS(6115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6115), - [anon_sym_DOLLAR] = ACTIONS(6113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6115), - [anon_sym_BSLASHbegin] = ACTIONS(6113), - [anon_sym_BSLASHend] = ACTIONS(6113), - [anon_sym_BSLASHtitle] = ACTIONS(6113), - [anon_sym_BSLASHauthor] = ACTIONS(6113), - [anon_sym_BSLASHusepackage] = ACTIONS(6113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), - [anon_sym_BSLASHinclude] = ACTIONS(6113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), - [anon_sym_BSLASHinput] = ACTIONS(6113), - [anon_sym_BSLASHsubfile] = ACTIONS(6113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), - [anon_sym_BSLASHbibliography] = ACTIONS(6113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), - [anon_sym_BSLASHincludesvg] = ACTIONS(6113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), - [anon_sym_BSLASHimport] = ACTIONS(6113), - [anon_sym_BSLASHsubimport] = ACTIONS(6113), - [anon_sym_BSLASHinputfrom] = ACTIONS(6113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), - [anon_sym_BSLASHincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHcaption] = ACTIONS(6113), - [anon_sym_BSLASHcite] = ACTIONS(6113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCite] = ACTIONS(6113), - [anon_sym_BSLASHnocite] = ACTIONS(6113), - [anon_sym_BSLASHcitet] = ACTIONS(6113), - [anon_sym_BSLASHcitep] = ACTIONS(6113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteauthor] = ACTIONS(6113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitetitle] = ACTIONS(6113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteyear] = ACTIONS(6113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitedate] = ACTIONS(6113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteurl] = ACTIONS(6113), - [anon_sym_BSLASHfullcite] = ACTIONS(6113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), - [anon_sym_BSLASHcitealt] = ACTIONS(6113), - [anon_sym_BSLASHcitealp] = ACTIONS(6113), - [anon_sym_BSLASHcitetext] = ACTIONS(6113), - [anon_sym_BSLASHparencite] = ACTIONS(6113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHParencite] = ACTIONS(6113), - [anon_sym_BSLASHfootcite] = ACTIONS(6113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), - [anon_sym_BSLASHtextcite] = ACTIONS(6113), - [anon_sym_BSLASHTextcite] = ACTIONS(6113), - [anon_sym_BSLASHsmartcite] = ACTIONS(6113), - [anon_sym_BSLASHSmartcite] = ACTIONS(6113), - [anon_sym_BSLASHsupercite] = ACTIONS(6113), - [anon_sym_BSLASHautocite] = ACTIONS(6113), - [anon_sym_BSLASHAutocite] = ACTIONS(6113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHvolcite] = ACTIONS(6113), - [anon_sym_BSLASHVolcite] = ACTIONS(6113), - [anon_sym_BSLASHpvolcite] = ACTIONS(6113), - [anon_sym_BSLASHPvolcite] = ACTIONS(6113), - [anon_sym_BSLASHfvolcite] = ACTIONS(6113), - [anon_sym_BSLASHftvolcite] = ACTIONS(6113), - [anon_sym_BSLASHsvolcite] = ACTIONS(6113), - [anon_sym_BSLASHSvolcite] = ACTIONS(6113), - [anon_sym_BSLASHtvolcite] = ACTIONS(6113), - [anon_sym_BSLASHTvolcite] = ACTIONS(6113), - [anon_sym_BSLASHavolcite] = ACTIONS(6113), - [anon_sym_BSLASHAvolcite] = ACTIONS(6113), - [anon_sym_BSLASHnotecite] = ACTIONS(6113), - [anon_sym_BSLASHNotecite] = ACTIONS(6113), - [anon_sym_BSLASHpnotecite] = ACTIONS(6113), - [anon_sym_BSLASHPnotecite] = ACTIONS(6113), - [anon_sym_BSLASHfnotecite] = ACTIONS(6113), - [anon_sym_BSLASHlabel] = ACTIONS(6113), - [anon_sym_BSLASHref] = ACTIONS(6113), - [anon_sym_BSLASHeqref] = ACTIONS(6113), - [anon_sym_BSLASHvref] = ACTIONS(6113), - [anon_sym_BSLASHVref] = ACTIONS(6113), - [anon_sym_BSLASHautoref] = ACTIONS(6113), - [anon_sym_BSLASHpageref] = ACTIONS(6113), - [anon_sym_BSLASHcref] = ACTIONS(6113), - [anon_sym_BSLASHCref] = ACTIONS(6113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnameCref] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHlabelcref] = ACTIONS(6113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCrefrange] = ACTIONS(6113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnewlabel] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6115), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHdef] = ACTIONS(6113), - [anon_sym_BSLASHlet] = ACTIONS(6113), - [anon_sym_BSLASHleft] = ACTIONS(6113), - [anon_sym_BSLASHbig] = ACTIONS(6113), - [anon_sym_BSLASHBig] = ACTIONS(6113), - [anon_sym_BSLASHbigg] = ACTIONS(6113), - [anon_sym_BSLASHBigg] = ACTIONS(6113), - [anon_sym_BSLASHbigl] = ACTIONS(6113), - [anon_sym_BSLASHBigl] = ACTIONS(6113), - [anon_sym_BSLASHbiggl] = ACTIONS(6113), - [anon_sym_BSLASHBiggl] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), - [anon_sym_BSLASHgls] = ACTIONS(6113), - [anon_sym_BSLASHGls] = ACTIONS(6113), - [anon_sym_BSLASHGLS] = ACTIONS(6113), - [anon_sym_BSLASHglspl] = ACTIONS(6113), - [anon_sym_BSLASHGlspl] = ACTIONS(6113), - [anon_sym_BSLASHGLSpl] = ACTIONS(6113), - [anon_sym_BSLASHglsdisp] = ACTIONS(6113), - [anon_sym_BSLASHglslink] = ACTIONS(6113), - [anon_sym_BSLASHglstext] = ACTIONS(6113), - [anon_sym_BSLASHGlstext] = ACTIONS(6113), - [anon_sym_BSLASHGLStext] = ACTIONS(6113), - [anon_sym_BSLASHglsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), - [anon_sym_BSLASHglsplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSplural] = ACTIONS(6113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHglsname] = ACTIONS(6113), - [anon_sym_BSLASHGlsname] = ACTIONS(6113), - [anon_sym_BSLASHGLSname] = ACTIONS(6113), - [anon_sym_BSLASHglssymbol] = ACTIONS(6113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), - [anon_sym_BSLASHglsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), - [anon_sym_BSLASHglsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), - [anon_sym_BSLASHglsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), - [anon_sym_BSLASHglsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), - [anon_sym_BSLASHglsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), - [anon_sym_BSLASHnewacronym] = ACTIONS(6113), - [anon_sym_BSLASHacrshort] = ACTIONS(6113), - [anon_sym_BSLASHAcrshort] = ACTIONS(6113), - [anon_sym_BSLASHACRshort] = ACTIONS(6113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), - [anon_sym_BSLASHacrlong] = ACTIONS(6113), - [anon_sym_BSLASHAcrlong] = ACTIONS(6113), - [anon_sym_BSLASHACRlong] = ACTIONS(6113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), - [anon_sym_BSLASHacrfull] = ACTIONS(6113), - [anon_sym_BSLASHAcrfull] = ACTIONS(6113), - [anon_sym_BSLASHACRfull] = ACTIONS(6113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), - [anon_sym_BSLASHacs] = ACTIONS(6113), - [anon_sym_BSLASHAcs] = ACTIONS(6113), - [anon_sym_BSLASHacsp] = ACTIONS(6113), - [anon_sym_BSLASHAcsp] = ACTIONS(6113), - [anon_sym_BSLASHacl] = ACTIONS(6113), - [anon_sym_BSLASHAcl] = ACTIONS(6113), - [anon_sym_BSLASHaclp] = ACTIONS(6113), - [anon_sym_BSLASHAclp] = ACTIONS(6113), - [anon_sym_BSLASHacf] = ACTIONS(6113), - [anon_sym_BSLASHAcf] = ACTIONS(6113), - [anon_sym_BSLASHacfp] = ACTIONS(6113), - [anon_sym_BSLASHAcfp] = ACTIONS(6113), - [anon_sym_BSLASHac] = ACTIONS(6113), - [anon_sym_BSLASHAc] = ACTIONS(6113), - [anon_sym_BSLASHacp] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), - [anon_sym_BSLASHcolor] = ACTIONS(6113), - [anon_sym_BSLASHcolorbox] = ACTIONS(6113), - [anon_sym_BSLASHtextcolor] = ACTIONS(6113), - [anon_sym_BSLASHpagecolor] = ACTIONS(6113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), - [anon_sym_BSLASHtext] = ACTIONS(6113), - [anon_sym_BSLASHintertext] = ACTIONS(6113), - [anon_sym_shortintertext] = ACTIONS(6113), - }, - [1504] = { - [sym_command_name] = ACTIONS(6117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6117), - [anon_sym_LBRACK] = ACTIONS(6119), - [anon_sym_RBRACK] = ACTIONS(6119), - [anon_sym_COMMA] = ACTIONS(6119), - [anon_sym_EQ] = ACTIONS(6119), - [anon_sym_LPAREN] = ACTIONS(6119), - [anon_sym_RPAREN] = ACTIONS(6119), - [anon_sym_LBRACE] = ACTIONS(6119), - [sym_word] = ACTIONS(6117), - [sym_placeholder] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6119), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_LT] = ACTIONS(6117), - [anon_sym_GT] = ACTIONS(6117), - [anon_sym_BANG] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_SQUOTE] = ACTIONS(6117), - [anon_sym__] = ACTIONS(6119), - [anon_sym_CARET] = ACTIONS(6119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6119), - [anon_sym_DOLLAR] = ACTIONS(6117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6119), - [anon_sym_BSLASHbegin] = ACTIONS(6117), - [anon_sym_BSLASHend] = ACTIONS(6117), - [anon_sym_BSLASHtitle] = ACTIONS(6117), - [anon_sym_BSLASHauthor] = ACTIONS(6117), - [anon_sym_BSLASHusepackage] = ACTIONS(6117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6117), - [anon_sym_BSLASHinclude] = ACTIONS(6117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6117), - [anon_sym_BSLASHinput] = ACTIONS(6117), - [anon_sym_BSLASHsubfile] = ACTIONS(6117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6117), - [anon_sym_BSLASHbibliography] = ACTIONS(6117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6117), - [anon_sym_BSLASHincludesvg] = ACTIONS(6117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6117), - [anon_sym_BSLASHimport] = ACTIONS(6117), - [anon_sym_BSLASHsubimport] = ACTIONS(6117), - [anon_sym_BSLASHinputfrom] = ACTIONS(6117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6117), - [anon_sym_BSLASHincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHcaption] = ACTIONS(6117), - [anon_sym_BSLASHcite] = ACTIONS(6117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCite] = ACTIONS(6117), - [anon_sym_BSLASHnocite] = ACTIONS(6117), - [anon_sym_BSLASHcitet] = ACTIONS(6117), - [anon_sym_BSLASHcitep] = ACTIONS(6117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteauthor] = ACTIONS(6117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitetitle] = ACTIONS(6117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteyear] = ACTIONS(6117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitedate] = ACTIONS(6117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteurl] = ACTIONS(6117), - [anon_sym_BSLASHfullcite] = ACTIONS(6117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6117), - [anon_sym_BSLASHcitealt] = ACTIONS(6117), - [anon_sym_BSLASHcitealp] = ACTIONS(6117), - [anon_sym_BSLASHcitetext] = ACTIONS(6117), - [anon_sym_BSLASHparencite] = ACTIONS(6117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHParencite] = ACTIONS(6117), - [anon_sym_BSLASHfootcite] = ACTIONS(6117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6117), - [anon_sym_BSLASHtextcite] = ACTIONS(6117), - [anon_sym_BSLASHTextcite] = ACTIONS(6117), - [anon_sym_BSLASHsmartcite] = ACTIONS(6117), - [anon_sym_BSLASHSmartcite] = ACTIONS(6117), - [anon_sym_BSLASHsupercite] = ACTIONS(6117), - [anon_sym_BSLASHautocite] = ACTIONS(6117), - [anon_sym_BSLASHAutocite] = ACTIONS(6117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHvolcite] = ACTIONS(6117), - [anon_sym_BSLASHVolcite] = ACTIONS(6117), - [anon_sym_BSLASHpvolcite] = ACTIONS(6117), - [anon_sym_BSLASHPvolcite] = ACTIONS(6117), - [anon_sym_BSLASHfvolcite] = ACTIONS(6117), - [anon_sym_BSLASHftvolcite] = ACTIONS(6117), - [anon_sym_BSLASHsvolcite] = ACTIONS(6117), - [anon_sym_BSLASHSvolcite] = ACTIONS(6117), - [anon_sym_BSLASHtvolcite] = ACTIONS(6117), - [anon_sym_BSLASHTvolcite] = ACTIONS(6117), - [anon_sym_BSLASHavolcite] = ACTIONS(6117), - [anon_sym_BSLASHAvolcite] = ACTIONS(6117), - [anon_sym_BSLASHnotecite] = ACTIONS(6117), - [anon_sym_BSLASHNotecite] = ACTIONS(6117), - [anon_sym_BSLASHpnotecite] = ACTIONS(6117), - [anon_sym_BSLASHPnotecite] = ACTIONS(6117), - [anon_sym_BSLASHfnotecite] = ACTIONS(6117), - [anon_sym_BSLASHlabel] = ACTIONS(6117), - [anon_sym_BSLASHref] = ACTIONS(6117), - [anon_sym_BSLASHeqref] = ACTIONS(6117), - [anon_sym_BSLASHvref] = ACTIONS(6117), - [anon_sym_BSLASHVref] = ACTIONS(6117), - [anon_sym_BSLASHautoref] = ACTIONS(6117), - [anon_sym_BSLASHpageref] = ACTIONS(6117), - [anon_sym_BSLASHcref] = ACTIONS(6117), - [anon_sym_BSLASHCref] = ACTIONS(6117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnameCref] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHlabelcref] = ACTIONS(6117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCrefrange] = ACTIONS(6117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnewlabel] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6119), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHdef] = ACTIONS(6117), - [anon_sym_BSLASHlet] = ACTIONS(6117), - [anon_sym_BSLASHleft] = ACTIONS(6117), - [anon_sym_BSLASHbig] = ACTIONS(6117), - [anon_sym_BSLASHBig] = ACTIONS(6117), - [anon_sym_BSLASHbigg] = ACTIONS(6117), - [anon_sym_BSLASHBigg] = ACTIONS(6117), - [anon_sym_BSLASHbigl] = ACTIONS(6117), - [anon_sym_BSLASHBigl] = ACTIONS(6117), - [anon_sym_BSLASHbiggl] = ACTIONS(6117), - [anon_sym_BSLASHBiggl] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6117), - [anon_sym_BSLASHgls] = ACTIONS(6117), - [anon_sym_BSLASHGls] = ACTIONS(6117), - [anon_sym_BSLASHGLS] = ACTIONS(6117), - [anon_sym_BSLASHglspl] = ACTIONS(6117), - [anon_sym_BSLASHGlspl] = ACTIONS(6117), - [anon_sym_BSLASHGLSpl] = ACTIONS(6117), - [anon_sym_BSLASHglsdisp] = ACTIONS(6117), - [anon_sym_BSLASHglslink] = ACTIONS(6117), - [anon_sym_BSLASHglstext] = ACTIONS(6117), - [anon_sym_BSLASHGlstext] = ACTIONS(6117), - [anon_sym_BSLASHGLStext] = ACTIONS(6117), - [anon_sym_BSLASHglsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6117), - [anon_sym_BSLASHglsplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSplural] = ACTIONS(6117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHglsname] = ACTIONS(6117), - [anon_sym_BSLASHGlsname] = ACTIONS(6117), - [anon_sym_BSLASHGLSname] = ACTIONS(6117), - [anon_sym_BSLASHglssymbol] = ACTIONS(6117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6117), - [anon_sym_BSLASHglsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6117), - [anon_sym_BSLASHglsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6117), - [anon_sym_BSLASHglsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6117), - [anon_sym_BSLASHglsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6117), - [anon_sym_BSLASHglsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6117), - [anon_sym_BSLASHnewacronym] = ACTIONS(6117), - [anon_sym_BSLASHacrshort] = ACTIONS(6117), - [anon_sym_BSLASHAcrshort] = ACTIONS(6117), - [anon_sym_BSLASHACRshort] = ACTIONS(6117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6117), - [anon_sym_BSLASHacrlong] = ACTIONS(6117), - [anon_sym_BSLASHAcrlong] = ACTIONS(6117), - [anon_sym_BSLASHACRlong] = ACTIONS(6117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6117), - [anon_sym_BSLASHacrfull] = ACTIONS(6117), - [anon_sym_BSLASHAcrfull] = ACTIONS(6117), - [anon_sym_BSLASHACRfull] = ACTIONS(6117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6117), - [anon_sym_BSLASHacs] = ACTIONS(6117), - [anon_sym_BSLASHAcs] = ACTIONS(6117), - [anon_sym_BSLASHacsp] = ACTIONS(6117), - [anon_sym_BSLASHAcsp] = ACTIONS(6117), - [anon_sym_BSLASHacl] = ACTIONS(6117), - [anon_sym_BSLASHAcl] = ACTIONS(6117), - [anon_sym_BSLASHaclp] = ACTIONS(6117), - [anon_sym_BSLASHAclp] = ACTIONS(6117), - [anon_sym_BSLASHacf] = ACTIONS(6117), - [anon_sym_BSLASHAcf] = ACTIONS(6117), - [anon_sym_BSLASHacfp] = ACTIONS(6117), - [anon_sym_BSLASHAcfp] = ACTIONS(6117), - [anon_sym_BSLASHac] = ACTIONS(6117), - [anon_sym_BSLASHAc] = ACTIONS(6117), - [anon_sym_BSLASHacp] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6117), - [anon_sym_BSLASHcolor] = ACTIONS(6117), - [anon_sym_BSLASHcolorbox] = ACTIONS(6117), - [anon_sym_BSLASHtextcolor] = ACTIONS(6117), - [anon_sym_BSLASHpagecolor] = ACTIONS(6117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6117), - [anon_sym_BSLASHtext] = ACTIONS(6117), - [anon_sym_BSLASHintertext] = ACTIONS(6117), - [anon_sym_shortintertext] = ACTIONS(6117), - }, - [1505] = { - [sym_command_name] = ACTIONS(6121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6121), - [anon_sym_LBRACK] = ACTIONS(6123), - [anon_sym_RBRACK] = ACTIONS(6123), - [anon_sym_COMMA] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(6123), - [anon_sym_LPAREN] = ACTIONS(6123), - [anon_sym_RPAREN] = ACTIONS(6123), - [anon_sym_LBRACE] = ACTIONS(6123), - [sym_word] = ACTIONS(6121), - [sym_placeholder] = ACTIONS(6123), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6123), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_LT] = ACTIONS(6121), - [anon_sym_GT] = ACTIONS(6121), - [anon_sym_BANG] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_SQUOTE] = ACTIONS(6121), - [anon_sym__] = ACTIONS(6123), - [anon_sym_CARET] = ACTIONS(6123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6123), - [anon_sym_DOLLAR] = ACTIONS(6121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6123), - [anon_sym_BSLASHbegin] = ACTIONS(6121), - [anon_sym_BSLASHend] = ACTIONS(6121), - [anon_sym_BSLASHtitle] = ACTIONS(6121), - [anon_sym_BSLASHauthor] = ACTIONS(6121), - [anon_sym_BSLASHusepackage] = ACTIONS(6121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6121), - [anon_sym_BSLASHinclude] = ACTIONS(6121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6121), - [anon_sym_BSLASHinput] = ACTIONS(6121), - [anon_sym_BSLASHsubfile] = ACTIONS(6121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6121), - [anon_sym_BSLASHbibliography] = ACTIONS(6121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6121), - [anon_sym_BSLASHincludesvg] = ACTIONS(6121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6121), - [anon_sym_BSLASHimport] = ACTIONS(6121), - [anon_sym_BSLASHsubimport] = ACTIONS(6121), - [anon_sym_BSLASHinputfrom] = ACTIONS(6121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6121), - [anon_sym_BSLASHincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHcaption] = ACTIONS(6121), - [anon_sym_BSLASHcite] = ACTIONS(6121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCite] = ACTIONS(6121), - [anon_sym_BSLASHnocite] = ACTIONS(6121), - [anon_sym_BSLASHcitet] = ACTIONS(6121), - [anon_sym_BSLASHcitep] = ACTIONS(6121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteauthor] = ACTIONS(6121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitetitle] = ACTIONS(6121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteyear] = ACTIONS(6121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitedate] = ACTIONS(6121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteurl] = ACTIONS(6121), - [anon_sym_BSLASHfullcite] = ACTIONS(6121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6121), - [anon_sym_BSLASHcitealt] = ACTIONS(6121), - [anon_sym_BSLASHcitealp] = ACTIONS(6121), - [anon_sym_BSLASHcitetext] = ACTIONS(6121), - [anon_sym_BSLASHparencite] = ACTIONS(6121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHParencite] = ACTIONS(6121), - [anon_sym_BSLASHfootcite] = ACTIONS(6121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6121), - [anon_sym_BSLASHtextcite] = ACTIONS(6121), - [anon_sym_BSLASHTextcite] = ACTIONS(6121), - [anon_sym_BSLASHsmartcite] = ACTIONS(6121), - [anon_sym_BSLASHSmartcite] = ACTIONS(6121), - [anon_sym_BSLASHsupercite] = ACTIONS(6121), - [anon_sym_BSLASHautocite] = ACTIONS(6121), - [anon_sym_BSLASHAutocite] = ACTIONS(6121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHvolcite] = ACTIONS(6121), - [anon_sym_BSLASHVolcite] = ACTIONS(6121), - [anon_sym_BSLASHpvolcite] = ACTIONS(6121), - [anon_sym_BSLASHPvolcite] = ACTIONS(6121), - [anon_sym_BSLASHfvolcite] = ACTIONS(6121), - [anon_sym_BSLASHftvolcite] = ACTIONS(6121), - [anon_sym_BSLASHsvolcite] = ACTIONS(6121), - [anon_sym_BSLASHSvolcite] = ACTIONS(6121), - [anon_sym_BSLASHtvolcite] = ACTIONS(6121), - [anon_sym_BSLASHTvolcite] = ACTIONS(6121), - [anon_sym_BSLASHavolcite] = ACTIONS(6121), - [anon_sym_BSLASHAvolcite] = ACTIONS(6121), - [anon_sym_BSLASHnotecite] = ACTIONS(6121), - [anon_sym_BSLASHNotecite] = ACTIONS(6121), - [anon_sym_BSLASHpnotecite] = ACTIONS(6121), - [anon_sym_BSLASHPnotecite] = ACTIONS(6121), - [anon_sym_BSLASHfnotecite] = ACTIONS(6121), - [anon_sym_BSLASHlabel] = ACTIONS(6121), - [anon_sym_BSLASHref] = ACTIONS(6121), - [anon_sym_BSLASHeqref] = ACTIONS(6121), - [anon_sym_BSLASHvref] = ACTIONS(6121), - [anon_sym_BSLASHVref] = ACTIONS(6121), - [anon_sym_BSLASHautoref] = ACTIONS(6121), - [anon_sym_BSLASHpageref] = ACTIONS(6121), - [anon_sym_BSLASHcref] = ACTIONS(6121), - [anon_sym_BSLASHCref] = ACTIONS(6121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnameCref] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHlabelcref] = ACTIONS(6121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCrefrange] = ACTIONS(6121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnewlabel] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6123), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHdef] = ACTIONS(6121), - [anon_sym_BSLASHlet] = ACTIONS(6121), - [anon_sym_BSLASHleft] = ACTIONS(6121), - [anon_sym_BSLASHbig] = ACTIONS(6121), - [anon_sym_BSLASHBig] = ACTIONS(6121), - [anon_sym_BSLASHbigg] = ACTIONS(6121), - [anon_sym_BSLASHBigg] = ACTIONS(6121), - [anon_sym_BSLASHbigl] = ACTIONS(6121), - [anon_sym_BSLASHBigl] = ACTIONS(6121), - [anon_sym_BSLASHbiggl] = ACTIONS(6121), - [anon_sym_BSLASHBiggl] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6121), - [anon_sym_BSLASHgls] = ACTIONS(6121), - [anon_sym_BSLASHGls] = ACTIONS(6121), - [anon_sym_BSLASHGLS] = ACTIONS(6121), - [anon_sym_BSLASHglspl] = ACTIONS(6121), - [anon_sym_BSLASHGlspl] = ACTIONS(6121), - [anon_sym_BSLASHGLSpl] = ACTIONS(6121), - [anon_sym_BSLASHglsdisp] = ACTIONS(6121), - [anon_sym_BSLASHglslink] = ACTIONS(6121), - [anon_sym_BSLASHglstext] = ACTIONS(6121), - [anon_sym_BSLASHGlstext] = ACTIONS(6121), - [anon_sym_BSLASHGLStext] = ACTIONS(6121), - [anon_sym_BSLASHglsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6121), - [anon_sym_BSLASHglsplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSplural] = ACTIONS(6121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHglsname] = ACTIONS(6121), - [anon_sym_BSLASHGlsname] = ACTIONS(6121), - [anon_sym_BSLASHGLSname] = ACTIONS(6121), - [anon_sym_BSLASHglssymbol] = ACTIONS(6121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6121), - [anon_sym_BSLASHglsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6121), - [anon_sym_BSLASHglsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6121), - [anon_sym_BSLASHglsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6121), - [anon_sym_BSLASHglsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6121), - [anon_sym_BSLASHglsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6121), - [anon_sym_BSLASHnewacronym] = ACTIONS(6121), - [anon_sym_BSLASHacrshort] = ACTIONS(6121), - [anon_sym_BSLASHAcrshort] = ACTIONS(6121), - [anon_sym_BSLASHACRshort] = ACTIONS(6121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6121), - [anon_sym_BSLASHacrlong] = ACTIONS(6121), - [anon_sym_BSLASHAcrlong] = ACTIONS(6121), - [anon_sym_BSLASHACRlong] = ACTIONS(6121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6121), - [anon_sym_BSLASHacrfull] = ACTIONS(6121), - [anon_sym_BSLASHAcrfull] = ACTIONS(6121), - [anon_sym_BSLASHACRfull] = ACTIONS(6121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6121), - [anon_sym_BSLASHacs] = ACTIONS(6121), - [anon_sym_BSLASHAcs] = ACTIONS(6121), - [anon_sym_BSLASHacsp] = ACTIONS(6121), - [anon_sym_BSLASHAcsp] = ACTIONS(6121), - [anon_sym_BSLASHacl] = ACTIONS(6121), - [anon_sym_BSLASHAcl] = ACTIONS(6121), - [anon_sym_BSLASHaclp] = ACTIONS(6121), - [anon_sym_BSLASHAclp] = ACTIONS(6121), - [anon_sym_BSLASHacf] = ACTIONS(6121), - [anon_sym_BSLASHAcf] = ACTIONS(6121), - [anon_sym_BSLASHacfp] = ACTIONS(6121), - [anon_sym_BSLASHAcfp] = ACTIONS(6121), - [anon_sym_BSLASHac] = ACTIONS(6121), - [anon_sym_BSLASHAc] = ACTIONS(6121), - [anon_sym_BSLASHacp] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6121), - [anon_sym_BSLASHcolor] = ACTIONS(6121), - [anon_sym_BSLASHcolorbox] = ACTIONS(6121), - [anon_sym_BSLASHtextcolor] = ACTIONS(6121), - [anon_sym_BSLASHpagecolor] = ACTIONS(6121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6121), - [anon_sym_BSLASHtext] = ACTIONS(6121), - [anon_sym_BSLASHintertext] = ACTIONS(6121), - [anon_sym_shortintertext] = ACTIONS(6121), - }, - [1506] = { - [sym_command_name] = ACTIONS(6189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6189), - [anon_sym_LBRACK] = ACTIONS(6191), - [anon_sym_RBRACK] = ACTIONS(6191), - [anon_sym_COMMA] = ACTIONS(6191), - [anon_sym_EQ] = ACTIONS(6191), - [anon_sym_LPAREN] = ACTIONS(6191), - [anon_sym_RPAREN] = ACTIONS(6191), - [anon_sym_LBRACE] = ACTIONS(6191), - [sym_word] = ACTIONS(6189), - [sym_placeholder] = ACTIONS(6191), - [anon_sym_PLUS] = ACTIONS(6191), - [anon_sym_DASH] = ACTIONS(6191), - [anon_sym_STAR] = ACTIONS(6191), - [anon_sym_SLASH] = ACTIONS(6191), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_COLON] = ACTIONS(6189), - [anon_sym_SQUOTE] = ACTIONS(6189), - [anon_sym__] = ACTIONS(6191), - [anon_sym_CARET] = ACTIONS(6191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), - [anon_sym_DOLLAR] = ACTIONS(6189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), - [anon_sym_BSLASHbegin] = ACTIONS(6189), - [anon_sym_BSLASHend] = ACTIONS(6189), - [anon_sym_BSLASHtitle] = ACTIONS(6189), - [anon_sym_BSLASHauthor] = ACTIONS(6189), - [anon_sym_BSLASHusepackage] = ACTIONS(6189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), - [anon_sym_BSLASHinclude] = ACTIONS(6189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), - [anon_sym_BSLASHinput] = ACTIONS(6189), - [anon_sym_BSLASHsubfile] = ACTIONS(6189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), - [anon_sym_BSLASHbibliography] = ACTIONS(6189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), - [anon_sym_BSLASHincludesvg] = ACTIONS(6189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), - [anon_sym_BSLASHimport] = ACTIONS(6189), - [anon_sym_BSLASHsubimport] = ACTIONS(6189), - [anon_sym_BSLASHinputfrom] = ACTIONS(6189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), - [anon_sym_BSLASHincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHcaption] = ACTIONS(6189), - [anon_sym_BSLASHcite] = ACTIONS(6189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCite] = ACTIONS(6189), - [anon_sym_BSLASHnocite] = ACTIONS(6189), - [anon_sym_BSLASHcitet] = ACTIONS(6189), - [anon_sym_BSLASHcitep] = ACTIONS(6189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteauthor] = ACTIONS(6189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitetitle] = ACTIONS(6189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteyear] = ACTIONS(6189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitedate] = ACTIONS(6189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteurl] = ACTIONS(6189), - [anon_sym_BSLASHfullcite] = ACTIONS(6189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), - [anon_sym_BSLASHcitealt] = ACTIONS(6189), - [anon_sym_BSLASHcitealp] = ACTIONS(6189), - [anon_sym_BSLASHcitetext] = ACTIONS(6189), - [anon_sym_BSLASHparencite] = ACTIONS(6189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHParencite] = ACTIONS(6189), - [anon_sym_BSLASHfootcite] = ACTIONS(6189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), - [anon_sym_BSLASHtextcite] = ACTIONS(6189), - [anon_sym_BSLASHTextcite] = ACTIONS(6189), - [anon_sym_BSLASHsmartcite] = ACTIONS(6189), - [anon_sym_BSLASHSmartcite] = ACTIONS(6189), - [anon_sym_BSLASHsupercite] = ACTIONS(6189), - [anon_sym_BSLASHautocite] = ACTIONS(6189), - [anon_sym_BSLASHAutocite] = ACTIONS(6189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHvolcite] = ACTIONS(6189), - [anon_sym_BSLASHVolcite] = ACTIONS(6189), - [anon_sym_BSLASHpvolcite] = ACTIONS(6189), - [anon_sym_BSLASHPvolcite] = ACTIONS(6189), - [anon_sym_BSLASHfvolcite] = ACTIONS(6189), - [anon_sym_BSLASHftvolcite] = ACTIONS(6189), - [anon_sym_BSLASHsvolcite] = ACTIONS(6189), - [anon_sym_BSLASHSvolcite] = ACTIONS(6189), - [anon_sym_BSLASHtvolcite] = ACTIONS(6189), - [anon_sym_BSLASHTvolcite] = ACTIONS(6189), - [anon_sym_BSLASHavolcite] = ACTIONS(6189), - [anon_sym_BSLASHAvolcite] = ACTIONS(6189), - [anon_sym_BSLASHnotecite] = ACTIONS(6189), - [anon_sym_BSLASHNotecite] = ACTIONS(6189), - [anon_sym_BSLASHpnotecite] = ACTIONS(6189), - [anon_sym_BSLASHPnotecite] = ACTIONS(6189), - [anon_sym_BSLASHfnotecite] = ACTIONS(6189), - [anon_sym_BSLASHlabel] = ACTIONS(6189), - [anon_sym_BSLASHref] = ACTIONS(6189), - [anon_sym_BSLASHeqref] = ACTIONS(6189), - [anon_sym_BSLASHvref] = ACTIONS(6189), - [anon_sym_BSLASHVref] = ACTIONS(6189), - [anon_sym_BSLASHautoref] = ACTIONS(6189), - [anon_sym_BSLASHpageref] = ACTIONS(6189), - [anon_sym_BSLASHcref] = ACTIONS(6189), - [anon_sym_BSLASHCref] = ACTIONS(6189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnameCref] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHlabelcref] = ACTIONS(6189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCrefrange] = ACTIONS(6189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnewlabel] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHdef] = ACTIONS(6189), - [anon_sym_BSLASHlet] = ACTIONS(6189), - [anon_sym_BSLASHleft] = ACTIONS(6189), - [anon_sym_BSLASHbig] = ACTIONS(6189), - [anon_sym_BSLASHBig] = ACTIONS(6189), - [anon_sym_BSLASHbigg] = ACTIONS(6189), - [anon_sym_BSLASHBigg] = ACTIONS(6189), - [anon_sym_BSLASHbigl] = ACTIONS(6189), - [anon_sym_BSLASHBigl] = ACTIONS(6189), - [anon_sym_BSLASHbiggl] = ACTIONS(6189), - [anon_sym_BSLASHBiggl] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), - [anon_sym_BSLASHgls] = ACTIONS(6189), - [anon_sym_BSLASHGls] = ACTIONS(6189), - [anon_sym_BSLASHGLS] = ACTIONS(6189), - [anon_sym_BSLASHglspl] = ACTIONS(6189), - [anon_sym_BSLASHGlspl] = ACTIONS(6189), - [anon_sym_BSLASHGLSpl] = ACTIONS(6189), - [anon_sym_BSLASHglsdisp] = ACTIONS(6189), - [anon_sym_BSLASHglslink] = ACTIONS(6189), - [anon_sym_BSLASHglstext] = ACTIONS(6189), - [anon_sym_BSLASHGlstext] = ACTIONS(6189), - [anon_sym_BSLASHGLStext] = ACTIONS(6189), - [anon_sym_BSLASHglsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), - [anon_sym_BSLASHglsplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSplural] = ACTIONS(6189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHglsname] = ACTIONS(6189), - [anon_sym_BSLASHGlsname] = ACTIONS(6189), - [anon_sym_BSLASHGLSname] = ACTIONS(6189), - [anon_sym_BSLASHglssymbol] = ACTIONS(6189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), - [anon_sym_BSLASHglsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), - [anon_sym_BSLASHglsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), - [anon_sym_BSLASHglsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), - [anon_sym_BSLASHglsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), - [anon_sym_BSLASHglsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), - [anon_sym_BSLASHnewacronym] = ACTIONS(6189), - [anon_sym_BSLASHacrshort] = ACTIONS(6189), - [anon_sym_BSLASHAcrshort] = ACTIONS(6189), - [anon_sym_BSLASHACRshort] = ACTIONS(6189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), - [anon_sym_BSLASHacrlong] = ACTIONS(6189), - [anon_sym_BSLASHAcrlong] = ACTIONS(6189), - [anon_sym_BSLASHACRlong] = ACTIONS(6189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), - [anon_sym_BSLASHacrfull] = ACTIONS(6189), - [anon_sym_BSLASHAcrfull] = ACTIONS(6189), - [anon_sym_BSLASHACRfull] = ACTIONS(6189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), - [anon_sym_BSLASHacs] = ACTIONS(6189), - [anon_sym_BSLASHAcs] = ACTIONS(6189), - [anon_sym_BSLASHacsp] = ACTIONS(6189), - [anon_sym_BSLASHAcsp] = ACTIONS(6189), - [anon_sym_BSLASHacl] = ACTIONS(6189), - [anon_sym_BSLASHAcl] = ACTIONS(6189), - [anon_sym_BSLASHaclp] = ACTIONS(6189), - [anon_sym_BSLASHAclp] = ACTIONS(6189), - [anon_sym_BSLASHacf] = ACTIONS(6189), - [anon_sym_BSLASHAcf] = ACTIONS(6189), - [anon_sym_BSLASHacfp] = ACTIONS(6189), - [anon_sym_BSLASHAcfp] = ACTIONS(6189), - [anon_sym_BSLASHac] = ACTIONS(6189), - [anon_sym_BSLASHAc] = ACTIONS(6189), - [anon_sym_BSLASHacp] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), - [anon_sym_BSLASHcolor] = ACTIONS(6189), - [anon_sym_BSLASHcolorbox] = ACTIONS(6189), - [anon_sym_BSLASHtextcolor] = ACTIONS(6189), - [anon_sym_BSLASHpagecolor] = ACTIONS(6189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), - [anon_sym_BSLASHtext] = ACTIONS(6189), - [anon_sym_BSLASHintertext] = ACTIONS(6189), - [anon_sym_shortintertext] = ACTIONS(6189), - }, - [1507] = { - [sym_command_name] = ACTIONS(6153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6153), - [anon_sym_LBRACK] = ACTIONS(6155), - [anon_sym_RBRACK] = ACTIONS(6155), - [anon_sym_COMMA] = ACTIONS(6155), - [anon_sym_EQ] = ACTIONS(6155), - [anon_sym_LPAREN] = ACTIONS(6155), - [anon_sym_RPAREN] = ACTIONS(6155), - [anon_sym_LBRACE] = ACTIONS(6155), - [sym_word] = ACTIONS(6153), - [sym_placeholder] = ACTIONS(6155), - [anon_sym_PLUS] = ACTIONS(6155), - [anon_sym_DASH] = ACTIONS(6155), - [anon_sym_STAR] = ACTIONS(6155), - [anon_sym_SLASH] = ACTIONS(6155), - [anon_sym_LT] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6153), - [anon_sym_BANG] = ACTIONS(6153), - [anon_sym_PIPE] = ACTIONS(6153), - [anon_sym_COLON] = ACTIONS(6153), - [anon_sym_SQUOTE] = ACTIONS(6153), - [anon_sym__] = ACTIONS(6155), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6155), - [anon_sym_DOLLAR] = ACTIONS(6153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6155), - [anon_sym_BSLASHbegin] = ACTIONS(6153), - [anon_sym_BSLASHend] = ACTIONS(6153), - [anon_sym_BSLASHtitle] = ACTIONS(6153), - [anon_sym_BSLASHauthor] = ACTIONS(6153), - [anon_sym_BSLASHusepackage] = ACTIONS(6153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6153), - [anon_sym_BSLASHinclude] = ACTIONS(6153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6153), - [anon_sym_BSLASHinput] = ACTIONS(6153), - [anon_sym_BSLASHsubfile] = ACTIONS(6153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6153), - [anon_sym_BSLASHbibliography] = ACTIONS(6153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6153), - [anon_sym_BSLASHincludesvg] = ACTIONS(6153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6153), - [anon_sym_BSLASHimport] = ACTIONS(6153), - [anon_sym_BSLASHsubimport] = ACTIONS(6153), - [anon_sym_BSLASHinputfrom] = ACTIONS(6153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6153), - [anon_sym_BSLASHincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHcaption] = ACTIONS(6153), - [anon_sym_BSLASHcite] = ACTIONS(6153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCite] = ACTIONS(6153), - [anon_sym_BSLASHnocite] = ACTIONS(6153), - [anon_sym_BSLASHcitet] = ACTIONS(6153), - [anon_sym_BSLASHcitep] = ACTIONS(6153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteauthor] = ACTIONS(6153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitetitle] = ACTIONS(6153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteyear] = ACTIONS(6153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitedate] = ACTIONS(6153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteurl] = ACTIONS(6153), - [anon_sym_BSLASHfullcite] = ACTIONS(6153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6153), - [anon_sym_BSLASHcitealt] = ACTIONS(6153), - [anon_sym_BSLASHcitealp] = ACTIONS(6153), - [anon_sym_BSLASHcitetext] = ACTIONS(6153), - [anon_sym_BSLASHparencite] = ACTIONS(6153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHParencite] = ACTIONS(6153), - [anon_sym_BSLASHfootcite] = ACTIONS(6153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6153), - [anon_sym_BSLASHtextcite] = ACTIONS(6153), - [anon_sym_BSLASHTextcite] = ACTIONS(6153), - [anon_sym_BSLASHsmartcite] = ACTIONS(6153), - [anon_sym_BSLASHSmartcite] = ACTIONS(6153), - [anon_sym_BSLASHsupercite] = ACTIONS(6153), - [anon_sym_BSLASHautocite] = ACTIONS(6153), - [anon_sym_BSLASHAutocite] = ACTIONS(6153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHvolcite] = ACTIONS(6153), - [anon_sym_BSLASHVolcite] = ACTIONS(6153), - [anon_sym_BSLASHpvolcite] = ACTIONS(6153), - [anon_sym_BSLASHPvolcite] = ACTIONS(6153), - [anon_sym_BSLASHfvolcite] = ACTIONS(6153), - [anon_sym_BSLASHftvolcite] = ACTIONS(6153), - [anon_sym_BSLASHsvolcite] = ACTIONS(6153), - [anon_sym_BSLASHSvolcite] = ACTIONS(6153), - [anon_sym_BSLASHtvolcite] = ACTIONS(6153), - [anon_sym_BSLASHTvolcite] = ACTIONS(6153), - [anon_sym_BSLASHavolcite] = ACTIONS(6153), - [anon_sym_BSLASHAvolcite] = ACTIONS(6153), - [anon_sym_BSLASHnotecite] = ACTIONS(6153), - [anon_sym_BSLASHNotecite] = ACTIONS(6153), - [anon_sym_BSLASHpnotecite] = ACTIONS(6153), - [anon_sym_BSLASHPnotecite] = ACTIONS(6153), - [anon_sym_BSLASHfnotecite] = ACTIONS(6153), - [anon_sym_BSLASHlabel] = ACTIONS(6153), - [anon_sym_BSLASHref] = ACTIONS(6153), - [anon_sym_BSLASHeqref] = ACTIONS(6153), - [anon_sym_BSLASHvref] = ACTIONS(6153), - [anon_sym_BSLASHVref] = ACTIONS(6153), - [anon_sym_BSLASHautoref] = ACTIONS(6153), - [anon_sym_BSLASHpageref] = ACTIONS(6153), - [anon_sym_BSLASHcref] = ACTIONS(6153), - [anon_sym_BSLASHCref] = ACTIONS(6153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnameCref] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHlabelcref] = ACTIONS(6153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCrefrange] = ACTIONS(6153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnewlabel] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6155), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHdef] = ACTIONS(6153), - [anon_sym_BSLASHlet] = ACTIONS(6153), - [anon_sym_BSLASHleft] = ACTIONS(6153), - [anon_sym_BSLASHbig] = ACTIONS(6153), - [anon_sym_BSLASHBig] = ACTIONS(6153), - [anon_sym_BSLASHbigg] = ACTIONS(6153), - [anon_sym_BSLASHBigg] = ACTIONS(6153), - [anon_sym_BSLASHbigl] = ACTIONS(6153), - [anon_sym_BSLASHBigl] = ACTIONS(6153), - [anon_sym_BSLASHbiggl] = ACTIONS(6153), - [anon_sym_BSLASHBiggl] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6153), - [anon_sym_BSLASHgls] = ACTIONS(6153), - [anon_sym_BSLASHGls] = ACTIONS(6153), - [anon_sym_BSLASHGLS] = ACTIONS(6153), - [anon_sym_BSLASHglspl] = ACTIONS(6153), - [anon_sym_BSLASHGlspl] = ACTIONS(6153), - [anon_sym_BSLASHGLSpl] = ACTIONS(6153), - [anon_sym_BSLASHglsdisp] = ACTIONS(6153), - [anon_sym_BSLASHglslink] = ACTIONS(6153), - [anon_sym_BSLASHglstext] = ACTIONS(6153), - [anon_sym_BSLASHGlstext] = ACTIONS(6153), - [anon_sym_BSLASHGLStext] = ACTIONS(6153), - [anon_sym_BSLASHglsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6153), - [anon_sym_BSLASHglsplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSplural] = ACTIONS(6153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHglsname] = ACTIONS(6153), - [anon_sym_BSLASHGlsname] = ACTIONS(6153), - [anon_sym_BSLASHGLSname] = ACTIONS(6153), - [anon_sym_BSLASHglssymbol] = ACTIONS(6153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6153), - [anon_sym_BSLASHglsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6153), - [anon_sym_BSLASHglsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6153), - [anon_sym_BSLASHglsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6153), - [anon_sym_BSLASHglsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6153), - [anon_sym_BSLASHglsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6153), - [anon_sym_BSLASHnewacronym] = ACTIONS(6153), - [anon_sym_BSLASHacrshort] = ACTIONS(6153), - [anon_sym_BSLASHAcrshort] = ACTIONS(6153), - [anon_sym_BSLASHACRshort] = ACTIONS(6153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6153), - [anon_sym_BSLASHacrlong] = ACTIONS(6153), - [anon_sym_BSLASHAcrlong] = ACTIONS(6153), - [anon_sym_BSLASHACRlong] = ACTIONS(6153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6153), - [anon_sym_BSLASHacrfull] = ACTIONS(6153), - [anon_sym_BSLASHAcrfull] = ACTIONS(6153), - [anon_sym_BSLASHACRfull] = ACTIONS(6153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6153), - [anon_sym_BSLASHacs] = ACTIONS(6153), - [anon_sym_BSLASHAcs] = ACTIONS(6153), - [anon_sym_BSLASHacsp] = ACTIONS(6153), - [anon_sym_BSLASHAcsp] = ACTIONS(6153), - [anon_sym_BSLASHacl] = ACTIONS(6153), - [anon_sym_BSLASHAcl] = ACTIONS(6153), - [anon_sym_BSLASHaclp] = ACTIONS(6153), - [anon_sym_BSLASHAclp] = ACTIONS(6153), - [anon_sym_BSLASHacf] = ACTIONS(6153), - [anon_sym_BSLASHAcf] = ACTIONS(6153), - [anon_sym_BSLASHacfp] = ACTIONS(6153), - [anon_sym_BSLASHAcfp] = ACTIONS(6153), - [anon_sym_BSLASHac] = ACTIONS(6153), - [anon_sym_BSLASHAc] = ACTIONS(6153), - [anon_sym_BSLASHacp] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6153), - [anon_sym_BSLASHcolor] = ACTIONS(6153), - [anon_sym_BSLASHcolorbox] = ACTIONS(6153), - [anon_sym_BSLASHtextcolor] = ACTIONS(6153), - [anon_sym_BSLASHpagecolor] = ACTIONS(6153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6153), - [anon_sym_BSLASHtext] = ACTIONS(6153), - [anon_sym_BSLASHintertext] = ACTIONS(6153), - [anon_sym_shortintertext] = ACTIONS(6153), - }, - [1508] = { - [sym_command_name] = ACTIONS(6149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6149), - [anon_sym_LBRACK] = ACTIONS(6151), - [anon_sym_RBRACK] = ACTIONS(6151), - [anon_sym_COMMA] = ACTIONS(6151), - [anon_sym_EQ] = ACTIONS(6151), - [anon_sym_LPAREN] = ACTIONS(6151), - [anon_sym_RPAREN] = ACTIONS(6151), - [anon_sym_LBRACE] = ACTIONS(6151), - [sym_word] = ACTIONS(6149), - [sym_placeholder] = ACTIONS(6151), - [anon_sym_PLUS] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6151), - [anon_sym_STAR] = ACTIONS(6151), - [anon_sym_SLASH] = ACTIONS(6151), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_BANG] = ACTIONS(6149), - [anon_sym_PIPE] = ACTIONS(6149), - [anon_sym_COLON] = ACTIONS(6149), - [anon_sym_SQUOTE] = ACTIONS(6149), - [anon_sym__] = ACTIONS(6151), - [anon_sym_CARET] = ACTIONS(6151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6151), - [anon_sym_DOLLAR] = ACTIONS(6149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6151), - [anon_sym_BSLASHbegin] = ACTIONS(6149), - [anon_sym_BSLASHend] = ACTIONS(6149), - [anon_sym_BSLASHtitle] = ACTIONS(6149), - [anon_sym_BSLASHauthor] = ACTIONS(6149), - [anon_sym_BSLASHusepackage] = ACTIONS(6149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6149), - [anon_sym_BSLASHinclude] = ACTIONS(6149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6149), - [anon_sym_BSLASHinput] = ACTIONS(6149), - [anon_sym_BSLASHsubfile] = ACTIONS(6149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6149), - [anon_sym_BSLASHbibliography] = ACTIONS(6149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6149), - [anon_sym_BSLASHincludesvg] = ACTIONS(6149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6149), - [anon_sym_BSLASHimport] = ACTIONS(6149), - [anon_sym_BSLASHsubimport] = ACTIONS(6149), - [anon_sym_BSLASHinputfrom] = ACTIONS(6149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6149), - [anon_sym_BSLASHincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHcaption] = ACTIONS(6149), - [anon_sym_BSLASHcite] = ACTIONS(6149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCite] = ACTIONS(6149), - [anon_sym_BSLASHnocite] = ACTIONS(6149), - [anon_sym_BSLASHcitet] = ACTIONS(6149), - [anon_sym_BSLASHcitep] = ACTIONS(6149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteauthor] = ACTIONS(6149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitetitle] = ACTIONS(6149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteyear] = ACTIONS(6149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitedate] = ACTIONS(6149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteurl] = ACTIONS(6149), - [anon_sym_BSLASHfullcite] = ACTIONS(6149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6149), - [anon_sym_BSLASHcitealt] = ACTIONS(6149), - [anon_sym_BSLASHcitealp] = ACTIONS(6149), - [anon_sym_BSLASHcitetext] = ACTIONS(6149), - [anon_sym_BSLASHparencite] = ACTIONS(6149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHParencite] = ACTIONS(6149), - [anon_sym_BSLASHfootcite] = ACTIONS(6149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6149), - [anon_sym_BSLASHtextcite] = ACTIONS(6149), - [anon_sym_BSLASHTextcite] = ACTIONS(6149), - [anon_sym_BSLASHsmartcite] = ACTIONS(6149), - [anon_sym_BSLASHSmartcite] = ACTIONS(6149), - [anon_sym_BSLASHsupercite] = ACTIONS(6149), - [anon_sym_BSLASHautocite] = ACTIONS(6149), - [anon_sym_BSLASHAutocite] = ACTIONS(6149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHvolcite] = ACTIONS(6149), - [anon_sym_BSLASHVolcite] = ACTIONS(6149), - [anon_sym_BSLASHpvolcite] = ACTIONS(6149), - [anon_sym_BSLASHPvolcite] = ACTIONS(6149), - [anon_sym_BSLASHfvolcite] = ACTIONS(6149), - [anon_sym_BSLASHftvolcite] = ACTIONS(6149), - [anon_sym_BSLASHsvolcite] = ACTIONS(6149), - [anon_sym_BSLASHSvolcite] = ACTIONS(6149), - [anon_sym_BSLASHtvolcite] = ACTIONS(6149), - [anon_sym_BSLASHTvolcite] = ACTIONS(6149), - [anon_sym_BSLASHavolcite] = ACTIONS(6149), - [anon_sym_BSLASHAvolcite] = ACTIONS(6149), - [anon_sym_BSLASHnotecite] = ACTIONS(6149), - [anon_sym_BSLASHNotecite] = ACTIONS(6149), - [anon_sym_BSLASHpnotecite] = ACTIONS(6149), - [anon_sym_BSLASHPnotecite] = ACTIONS(6149), - [anon_sym_BSLASHfnotecite] = ACTIONS(6149), - [anon_sym_BSLASHlabel] = ACTIONS(6149), - [anon_sym_BSLASHref] = ACTIONS(6149), - [anon_sym_BSLASHeqref] = ACTIONS(6149), - [anon_sym_BSLASHvref] = ACTIONS(6149), - [anon_sym_BSLASHVref] = ACTIONS(6149), - [anon_sym_BSLASHautoref] = ACTIONS(6149), - [anon_sym_BSLASHpageref] = ACTIONS(6149), - [anon_sym_BSLASHcref] = ACTIONS(6149), - [anon_sym_BSLASHCref] = ACTIONS(6149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnameCref] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHlabelcref] = ACTIONS(6149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCrefrange] = ACTIONS(6149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnewlabel] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6151), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHdef] = ACTIONS(6149), - [anon_sym_BSLASHlet] = ACTIONS(6149), - [anon_sym_BSLASHleft] = ACTIONS(6149), - [anon_sym_BSLASHbig] = ACTIONS(6149), - [anon_sym_BSLASHBig] = ACTIONS(6149), - [anon_sym_BSLASHbigg] = ACTIONS(6149), - [anon_sym_BSLASHBigg] = ACTIONS(6149), - [anon_sym_BSLASHbigl] = ACTIONS(6149), - [anon_sym_BSLASHBigl] = ACTIONS(6149), - [anon_sym_BSLASHbiggl] = ACTIONS(6149), - [anon_sym_BSLASHBiggl] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6149), - [anon_sym_BSLASHgls] = ACTIONS(6149), - [anon_sym_BSLASHGls] = ACTIONS(6149), - [anon_sym_BSLASHGLS] = ACTIONS(6149), - [anon_sym_BSLASHglspl] = ACTIONS(6149), - [anon_sym_BSLASHGlspl] = ACTIONS(6149), - [anon_sym_BSLASHGLSpl] = ACTIONS(6149), - [anon_sym_BSLASHglsdisp] = ACTIONS(6149), - [anon_sym_BSLASHglslink] = ACTIONS(6149), - [anon_sym_BSLASHglstext] = ACTIONS(6149), - [anon_sym_BSLASHGlstext] = ACTIONS(6149), - [anon_sym_BSLASHGLStext] = ACTIONS(6149), - [anon_sym_BSLASHglsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6149), - [anon_sym_BSLASHglsplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSplural] = ACTIONS(6149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHglsname] = ACTIONS(6149), - [anon_sym_BSLASHGlsname] = ACTIONS(6149), - [anon_sym_BSLASHGLSname] = ACTIONS(6149), - [anon_sym_BSLASHglssymbol] = ACTIONS(6149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6149), - [anon_sym_BSLASHglsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6149), - [anon_sym_BSLASHglsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6149), - [anon_sym_BSLASHglsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6149), - [anon_sym_BSLASHglsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6149), - [anon_sym_BSLASHglsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6149), - [anon_sym_BSLASHnewacronym] = ACTIONS(6149), - [anon_sym_BSLASHacrshort] = ACTIONS(6149), - [anon_sym_BSLASHAcrshort] = ACTIONS(6149), - [anon_sym_BSLASHACRshort] = ACTIONS(6149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6149), - [anon_sym_BSLASHacrlong] = ACTIONS(6149), - [anon_sym_BSLASHAcrlong] = ACTIONS(6149), - [anon_sym_BSLASHACRlong] = ACTIONS(6149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6149), - [anon_sym_BSLASHacrfull] = ACTIONS(6149), - [anon_sym_BSLASHAcrfull] = ACTIONS(6149), - [anon_sym_BSLASHACRfull] = ACTIONS(6149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6149), - [anon_sym_BSLASHacs] = ACTIONS(6149), - [anon_sym_BSLASHAcs] = ACTIONS(6149), - [anon_sym_BSLASHacsp] = ACTIONS(6149), - [anon_sym_BSLASHAcsp] = ACTIONS(6149), - [anon_sym_BSLASHacl] = ACTIONS(6149), - [anon_sym_BSLASHAcl] = ACTIONS(6149), - [anon_sym_BSLASHaclp] = ACTIONS(6149), - [anon_sym_BSLASHAclp] = ACTIONS(6149), - [anon_sym_BSLASHacf] = ACTIONS(6149), - [anon_sym_BSLASHAcf] = ACTIONS(6149), - [anon_sym_BSLASHacfp] = ACTIONS(6149), - [anon_sym_BSLASHAcfp] = ACTIONS(6149), - [anon_sym_BSLASHac] = ACTIONS(6149), - [anon_sym_BSLASHAc] = ACTIONS(6149), - [anon_sym_BSLASHacp] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6149), - [anon_sym_BSLASHcolor] = ACTIONS(6149), - [anon_sym_BSLASHcolorbox] = ACTIONS(6149), - [anon_sym_BSLASHtextcolor] = ACTIONS(6149), - [anon_sym_BSLASHpagecolor] = ACTIONS(6149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6149), - [anon_sym_BSLASHtext] = ACTIONS(6149), - [anon_sym_BSLASHintertext] = ACTIONS(6149), - [anon_sym_shortintertext] = ACTIONS(6149), - }, - [1509] = { - [sym_command_name] = ACTIONS(6145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6145), - [anon_sym_LBRACK] = ACTIONS(6147), - [anon_sym_RBRACK] = ACTIONS(6147), - [anon_sym_COMMA] = ACTIONS(6147), - [anon_sym_EQ] = ACTIONS(6147), - [anon_sym_LPAREN] = ACTIONS(6147), - [anon_sym_RPAREN] = ACTIONS(6147), - [anon_sym_LBRACE] = ACTIONS(6147), - [sym_word] = ACTIONS(6145), - [sym_placeholder] = ACTIONS(6147), - [anon_sym_PLUS] = ACTIONS(6147), - [anon_sym_DASH] = ACTIONS(6147), - [anon_sym_STAR] = ACTIONS(6147), - [anon_sym_SLASH] = ACTIONS(6147), - [anon_sym_LT] = ACTIONS(6145), - [anon_sym_GT] = ACTIONS(6145), - [anon_sym_BANG] = ACTIONS(6145), - [anon_sym_PIPE] = ACTIONS(6145), - [anon_sym_COLON] = ACTIONS(6145), - [anon_sym_SQUOTE] = ACTIONS(6145), - [anon_sym__] = ACTIONS(6147), - [anon_sym_CARET] = ACTIONS(6147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6147), - [anon_sym_DOLLAR] = ACTIONS(6145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6147), - [anon_sym_BSLASHbegin] = ACTIONS(6145), - [anon_sym_BSLASHend] = ACTIONS(6145), - [anon_sym_BSLASHtitle] = ACTIONS(6145), - [anon_sym_BSLASHauthor] = ACTIONS(6145), - [anon_sym_BSLASHusepackage] = ACTIONS(6145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6145), - [anon_sym_BSLASHinclude] = ACTIONS(6145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6145), - [anon_sym_BSLASHinput] = ACTIONS(6145), - [anon_sym_BSLASHsubfile] = ACTIONS(6145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6145), - [anon_sym_BSLASHbibliography] = ACTIONS(6145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6145), - [anon_sym_BSLASHincludesvg] = ACTIONS(6145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6145), - [anon_sym_BSLASHimport] = ACTIONS(6145), - [anon_sym_BSLASHsubimport] = ACTIONS(6145), - [anon_sym_BSLASHinputfrom] = ACTIONS(6145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6145), - [anon_sym_BSLASHincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHcaption] = ACTIONS(6145), - [anon_sym_BSLASHcite] = ACTIONS(6145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCite] = ACTIONS(6145), - [anon_sym_BSLASHnocite] = ACTIONS(6145), - [anon_sym_BSLASHcitet] = ACTIONS(6145), - [anon_sym_BSLASHcitep] = ACTIONS(6145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteauthor] = ACTIONS(6145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitetitle] = ACTIONS(6145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteyear] = ACTIONS(6145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitedate] = ACTIONS(6145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteurl] = ACTIONS(6145), - [anon_sym_BSLASHfullcite] = ACTIONS(6145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6145), - [anon_sym_BSLASHcitealt] = ACTIONS(6145), - [anon_sym_BSLASHcitealp] = ACTIONS(6145), - [anon_sym_BSLASHcitetext] = ACTIONS(6145), - [anon_sym_BSLASHparencite] = ACTIONS(6145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHParencite] = ACTIONS(6145), - [anon_sym_BSLASHfootcite] = ACTIONS(6145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6145), - [anon_sym_BSLASHtextcite] = ACTIONS(6145), - [anon_sym_BSLASHTextcite] = ACTIONS(6145), - [anon_sym_BSLASHsmartcite] = ACTIONS(6145), - [anon_sym_BSLASHSmartcite] = ACTIONS(6145), - [anon_sym_BSLASHsupercite] = ACTIONS(6145), - [anon_sym_BSLASHautocite] = ACTIONS(6145), - [anon_sym_BSLASHAutocite] = ACTIONS(6145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHvolcite] = ACTIONS(6145), - [anon_sym_BSLASHVolcite] = ACTIONS(6145), - [anon_sym_BSLASHpvolcite] = ACTIONS(6145), - [anon_sym_BSLASHPvolcite] = ACTIONS(6145), - [anon_sym_BSLASHfvolcite] = ACTIONS(6145), - [anon_sym_BSLASHftvolcite] = ACTIONS(6145), - [anon_sym_BSLASHsvolcite] = ACTIONS(6145), - [anon_sym_BSLASHSvolcite] = ACTIONS(6145), - [anon_sym_BSLASHtvolcite] = ACTIONS(6145), - [anon_sym_BSLASHTvolcite] = ACTIONS(6145), - [anon_sym_BSLASHavolcite] = ACTIONS(6145), - [anon_sym_BSLASHAvolcite] = ACTIONS(6145), - [anon_sym_BSLASHnotecite] = ACTIONS(6145), - [anon_sym_BSLASHNotecite] = ACTIONS(6145), - [anon_sym_BSLASHpnotecite] = ACTIONS(6145), - [anon_sym_BSLASHPnotecite] = ACTIONS(6145), - [anon_sym_BSLASHfnotecite] = ACTIONS(6145), - [anon_sym_BSLASHlabel] = ACTIONS(6145), - [anon_sym_BSLASHref] = ACTIONS(6145), - [anon_sym_BSLASHeqref] = ACTIONS(6145), - [anon_sym_BSLASHvref] = ACTIONS(6145), - [anon_sym_BSLASHVref] = ACTIONS(6145), - [anon_sym_BSLASHautoref] = ACTIONS(6145), - [anon_sym_BSLASHpageref] = ACTIONS(6145), - [anon_sym_BSLASHcref] = ACTIONS(6145), - [anon_sym_BSLASHCref] = ACTIONS(6145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnameCref] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHlabelcref] = ACTIONS(6145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCrefrange] = ACTIONS(6145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnewlabel] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6147), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHdef] = ACTIONS(6145), - [anon_sym_BSLASHlet] = ACTIONS(6145), - [anon_sym_BSLASHleft] = ACTIONS(6145), - [anon_sym_BSLASHbig] = ACTIONS(6145), - [anon_sym_BSLASHBig] = ACTIONS(6145), - [anon_sym_BSLASHbigg] = ACTIONS(6145), - [anon_sym_BSLASHBigg] = ACTIONS(6145), - [anon_sym_BSLASHbigl] = ACTIONS(6145), - [anon_sym_BSLASHBigl] = ACTIONS(6145), - [anon_sym_BSLASHbiggl] = ACTIONS(6145), - [anon_sym_BSLASHBiggl] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6145), - [anon_sym_BSLASHgls] = ACTIONS(6145), - [anon_sym_BSLASHGls] = ACTIONS(6145), - [anon_sym_BSLASHGLS] = ACTIONS(6145), - [anon_sym_BSLASHglspl] = ACTIONS(6145), - [anon_sym_BSLASHGlspl] = ACTIONS(6145), - [anon_sym_BSLASHGLSpl] = ACTIONS(6145), - [anon_sym_BSLASHglsdisp] = ACTIONS(6145), - [anon_sym_BSLASHglslink] = ACTIONS(6145), - [anon_sym_BSLASHglstext] = ACTIONS(6145), - [anon_sym_BSLASHGlstext] = ACTIONS(6145), - [anon_sym_BSLASHGLStext] = ACTIONS(6145), - [anon_sym_BSLASHglsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6145), - [anon_sym_BSLASHglsplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSplural] = ACTIONS(6145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHglsname] = ACTIONS(6145), - [anon_sym_BSLASHGlsname] = ACTIONS(6145), - [anon_sym_BSLASHGLSname] = ACTIONS(6145), - [anon_sym_BSLASHglssymbol] = ACTIONS(6145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6145), - [anon_sym_BSLASHglsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6145), - [anon_sym_BSLASHglsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6145), - [anon_sym_BSLASHglsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6145), - [anon_sym_BSLASHglsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6145), - [anon_sym_BSLASHglsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6145), - [anon_sym_BSLASHnewacronym] = ACTIONS(6145), - [anon_sym_BSLASHacrshort] = ACTIONS(6145), - [anon_sym_BSLASHAcrshort] = ACTIONS(6145), - [anon_sym_BSLASHACRshort] = ACTIONS(6145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6145), - [anon_sym_BSLASHacrlong] = ACTIONS(6145), - [anon_sym_BSLASHAcrlong] = ACTIONS(6145), - [anon_sym_BSLASHACRlong] = ACTIONS(6145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6145), - [anon_sym_BSLASHacrfull] = ACTIONS(6145), - [anon_sym_BSLASHAcrfull] = ACTIONS(6145), - [anon_sym_BSLASHACRfull] = ACTIONS(6145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6145), - [anon_sym_BSLASHacs] = ACTIONS(6145), - [anon_sym_BSLASHAcs] = ACTIONS(6145), - [anon_sym_BSLASHacsp] = ACTIONS(6145), - [anon_sym_BSLASHAcsp] = ACTIONS(6145), - [anon_sym_BSLASHacl] = ACTIONS(6145), - [anon_sym_BSLASHAcl] = ACTIONS(6145), - [anon_sym_BSLASHaclp] = ACTIONS(6145), - [anon_sym_BSLASHAclp] = ACTIONS(6145), - [anon_sym_BSLASHacf] = ACTIONS(6145), - [anon_sym_BSLASHAcf] = ACTIONS(6145), - [anon_sym_BSLASHacfp] = ACTIONS(6145), - [anon_sym_BSLASHAcfp] = ACTIONS(6145), - [anon_sym_BSLASHac] = ACTIONS(6145), - [anon_sym_BSLASHAc] = ACTIONS(6145), - [anon_sym_BSLASHacp] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6145), - [anon_sym_BSLASHcolor] = ACTIONS(6145), - [anon_sym_BSLASHcolorbox] = ACTIONS(6145), - [anon_sym_BSLASHtextcolor] = ACTIONS(6145), - [anon_sym_BSLASHpagecolor] = ACTIONS(6145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6145), - [anon_sym_BSLASHtext] = ACTIONS(6145), - [anon_sym_BSLASHintertext] = ACTIONS(6145), - [anon_sym_shortintertext] = ACTIONS(6145), - }, - [1510] = { - [sym_command_name] = ACTIONS(6169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6169), - [anon_sym_LBRACK] = ACTIONS(6171), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_EQ] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_LBRACE] = ACTIONS(6171), - [sym_word] = ACTIONS(6169), - [sym_placeholder] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6171), - [anon_sym_DASH] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_COLON] = ACTIONS(6169), - [anon_sym_SQUOTE] = ACTIONS(6169), - [anon_sym__] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6171), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6171), - [anon_sym_DOLLAR] = ACTIONS(6169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6171), - [anon_sym_BSLASHbegin] = ACTIONS(6169), - [anon_sym_BSLASHend] = ACTIONS(6169), - [anon_sym_BSLASHtitle] = ACTIONS(6169), - [anon_sym_BSLASHauthor] = ACTIONS(6169), - [anon_sym_BSLASHusepackage] = ACTIONS(6169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6169), - [anon_sym_BSLASHinclude] = ACTIONS(6169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6169), - [anon_sym_BSLASHinput] = ACTIONS(6169), - [anon_sym_BSLASHsubfile] = ACTIONS(6169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6169), - [anon_sym_BSLASHbibliography] = ACTIONS(6169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6169), - [anon_sym_BSLASHincludesvg] = ACTIONS(6169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6169), - [anon_sym_BSLASHimport] = ACTIONS(6169), - [anon_sym_BSLASHsubimport] = ACTIONS(6169), - [anon_sym_BSLASHinputfrom] = ACTIONS(6169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6169), - [anon_sym_BSLASHincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHcaption] = ACTIONS(6169), - [anon_sym_BSLASHcite] = ACTIONS(6169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCite] = ACTIONS(6169), - [anon_sym_BSLASHnocite] = ACTIONS(6169), - [anon_sym_BSLASHcitet] = ACTIONS(6169), - [anon_sym_BSLASHcitep] = ACTIONS(6169), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteauthor] = ACTIONS(6169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitetitle] = ACTIONS(6169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteyear] = ACTIONS(6169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitedate] = ACTIONS(6169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteurl] = ACTIONS(6169), - [anon_sym_BSLASHfullcite] = ACTIONS(6169), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6169), - [anon_sym_BSLASHcitealt] = ACTIONS(6169), - [anon_sym_BSLASHcitealp] = ACTIONS(6169), - [anon_sym_BSLASHcitetext] = ACTIONS(6169), - [anon_sym_BSLASHparencite] = ACTIONS(6169), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHParencite] = ACTIONS(6169), - [anon_sym_BSLASHfootcite] = ACTIONS(6169), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6169), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6169), - [anon_sym_BSLASHtextcite] = ACTIONS(6169), - [anon_sym_BSLASHTextcite] = ACTIONS(6169), - [anon_sym_BSLASHsmartcite] = ACTIONS(6169), - [anon_sym_BSLASHSmartcite] = ACTIONS(6169), - [anon_sym_BSLASHsupercite] = ACTIONS(6169), - [anon_sym_BSLASHautocite] = ACTIONS(6169), - [anon_sym_BSLASHAutocite] = ACTIONS(6169), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHvolcite] = ACTIONS(6169), - [anon_sym_BSLASHVolcite] = ACTIONS(6169), - [anon_sym_BSLASHpvolcite] = ACTIONS(6169), - [anon_sym_BSLASHPvolcite] = ACTIONS(6169), - [anon_sym_BSLASHfvolcite] = ACTIONS(6169), - [anon_sym_BSLASHftvolcite] = ACTIONS(6169), - [anon_sym_BSLASHsvolcite] = ACTIONS(6169), - [anon_sym_BSLASHSvolcite] = ACTIONS(6169), - [anon_sym_BSLASHtvolcite] = ACTIONS(6169), - [anon_sym_BSLASHTvolcite] = ACTIONS(6169), - [anon_sym_BSLASHavolcite] = ACTIONS(6169), - [anon_sym_BSLASHAvolcite] = ACTIONS(6169), - [anon_sym_BSLASHnotecite] = ACTIONS(6169), - [anon_sym_BSLASHNotecite] = ACTIONS(6169), - [anon_sym_BSLASHpnotecite] = ACTIONS(6169), - [anon_sym_BSLASHPnotecite] = ACTIONS(6169), - [anon_sym_BSLASHfnotecite] = ACTIONS(6169), - [anon_sym_BSLASHlabel] = ACTIONS(6169), - [anon_sym_BSLASHref] = ACTIONS(6169), - [anon_sym_BSLASHeqref] = ACTIONS(6169), - [anon_sym_BSLASHvref] = ACTIONS(6169), - [anon_sym_BSLASHVref] = ACTIONS(6169), - [anon_sym_BSLASHautoref] = ACTIONS(6169), - [anon_sym_BSLASHpageref] = ACTIONS(6169), - [anon_sym_BSLASHcref] = ACTIONS(6169), - [anon_sym_BSLASHCref] = ACTIONS(6169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnameCref] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHlabelcref] = ACTIONS(6169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCrefrange] = ACTIONS(6169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnewlabel] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6171), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHdef] = ACTIONS(6169), - [anon_sym_BSLASHlet] = ACTIONS(6169), - [anon_sym_BSLASHleft] = ACTIONS(6169), - [anon_sym_BSLASHbig] = ACTIONS(6169), - [anon_sym_BSLASHBig] = ACTIONS(6169), - [anon_sym_BSLASHbigg] = ACTIONS(6169), - [anon_sym_BSLASHBigg] = ACTIONS(6169), - [anon_sym_BSLASHbigl] = ACTIONS(6169), - [anon_sym_BSLASHBigl] = ACTIONS(6169), - [anon_sym_BSLASHbiggl] = ACTIONS(6169), - [anon_sym_BSLASHBiggl] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6169), - [anon_sym_BSLASHgls] = ACTIONS(6169), - [anon_sym_BSLASHGls] = ACTIONS(6169), - [anon_sym_BSLASHGLS] = ACTIONS(6169), - [anon_sym_BSLASHglspl] = ACTIONS(6169), - [anon_sym_BSLASHGlspl] = ACTIONS(6169), - [anon_sym_BSLASHGLSpl] = ACTIONS(6169), - [anon_sym_BSLASHglsdisp] = ACTIONS(6169), - [anon_sym_BSLASHglslink] = ACTIONS(6169), - [anon_sym_BSLASHglstext] = ACTIONS(6169), - [anon_sym_BSLASHGlstext] = ACTIONS(6169), - [anon_sym_BSLASHGLStext] = ACTIONS(6169), - [anon_sym_BSLASHglsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6169), - [anon_sym_BSLASHglsplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSplural] = ACTIONS(6169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHglsname] = ACTIONS(6169), - [anon_sym_BSLASHGlsname] = ACTIONS(6169), - [anon_sym_BSLASHGLSname] = ACTIONS(6169), - [anon_sym_BSLASHglssymbol] = ACTIONS(6169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6169), - [anon_sym_BSLASHglsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6169), - [anon_sym_BSLASHglsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6169), - [anon_sym_BSLASHglsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6169), - [anon_sym_BSLASHglsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6169), - [anon_sym_BSLASHglsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6169), - [anon_sym_BSLASHnewacronym] = ACTIONS(6169), - [anon_sym_BSLASHacrshort] = ACTIONS(6169), - [anon_sym_BSLASHAcrshort] = ACTIONS(6169), - [anon_sym_BSLASHACRshort] = ACTIONS(6169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6169), - [anon_sym_BSLASHacrlong] = ACTIONS(6169), - [anon_sym_BSLASHAcrlong] = ACTIONS(6169), - [anon_sym_BSLASHACRlong] = ACTIONS(6169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6169), - [anon_sym_BSLASHacrfull] = ACTIONS(6169), - [anon_sym_BSLASHAcrfull] = ACTIONS(6169), - [anon_sym_BSLASHACRfull] = ACTIONS(6169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6169), - [anon_sym_BSLASHacs] = ACTIONS(6169), - [anon_sym_BSLASHAcs] = ACTIONS(6169), - [anon_sym_BSLASHacsp] = ACTIONS(6169), - [anon_sym_BSLASHAcsp] = ACTIONS(6169), - [anon_sym_BSLASHacl] = ACTIONS(6169), - [anon_sym_BSLASHAcl] = ACTIONS(6169), - [anon_sym_BSLASHaclp] = ACTIONS(6169), - [anon_sym_BSLASHAclp] = ACTIONS(6169), - [anon_sym_BSLASHacf] = ACTIONS(6169), - [anon_sym_BSLASHAcf] = ACTIONS(6169), - [anon_sym_BSLASHacfp] = ACTIONS(6169), - [anon_sym_BSLASHAcfp] = ACTIONS(6169), - [anon_sym_BSLASHac] = ACTIONS(6169), - [anon_sym_BSLASHAc] = ACTIONS(6169), - [anon_sym_BSLASHacp] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6169), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6169), - [anon_sym_BSLASHcolor] = ACTIONS(6169), - [anon_sym_BSLASHcolorbox] = ACTIONS(6169), - [anon_sym_BSLASHtextcolor] = ACTIONS(6169), - [anon_sym_BSLASHpagecolor] = ACTIONS(6169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6169), - [anon_sym_BSLASHtext] = ACTIONS(6169), - [anon_sym_BSLASHintertext] = ACTIONS(6169), - [anon_sym_shortintertext] = ACTIONS(6169), - }, - [1511] = { - [sym_command_name] = ACTIONS(6141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6141), - [anon_sym_LBRACK] = ACTIONS(6143), - [anon_sym_RBRACK] = ACTIONS(6143), - [anon_sym_COMMA] = ACTIONS(6143), - [anon_sym_EQ] = ACTIONS(6143), - [anon_sym_LPAREN] = ACTIONS(6143), - [anon_sym_RPAREN] = ACTIONS(6143), - [anon_sym_LBRACE] = ACTIONS(6143), - [sym_word] = ACTIONS(6141), - [sym_placeholder] = ACTIONS(6143), - [anon_sym_PLUS] = ACTIONS(6143), - [anon_sym_DASH] = ACTIONS(6143), - [anon_sym_STAR] = ACTIONS(6143), - [anon_sym_SLASH] = ACTIONS(6143), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_GT] = ACTIONS(6141), - [anon_sym_BANG] = ACTIONS(6141), - [anon_sym_PIPE] = ACTIONS(6141), - [anon_sym_COLON] = ACTIONS(6141), - [anon_sym_SQUOTE] = ACTIONS(6141), - [anon_sym__] = ACTIONS(6143), - [anon_sym_CARET] = ACTIONS(6143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6143), - [anon_sym_DOLLAR] = ACTIONS(6141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6143), - [anon_sym_BSLASHbegin] = ACTIONS(6141), - [anon_sym_BSLASHend] = ACTIONS(6141), - [anon_sym_BSLASHtitle] = ACTIONS(6141), - [anon_sym_BSLASHauthor] = ACTIONS(6141), - [anon_sym_BSLASHusepackage] = ACTIONS(6141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6141), - [anon_sym_BSLASHinclude] = ACTIONS(6141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6141), - [anon_sym_BSLASHinput] = ACTIONS(6141), - [anon_sym_BSLASHsubfile] = ACTIONS(6141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6141), - [anon_sym_BSLASHbibliography] = ACTIONS(6141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6141), - [anon_sym_BSLASHincludesvg] = ACTIONS(6141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6141), - [anon_sym_BSLASHimport] = ACTIONS(6141), - [anon_sym_BSLASHsubimport] = ACTIONS(6141), - [anon_sym_BSLASHinputfrom] = ACTIONS(6141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6141), - [anon_sym_BSLASHincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHcaption] = ACTIONS(6141), - [anon_sym_BSLASHcite] = ACTIONS(6141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCite] = ACTIONS(6141), - [anon_sym_BSLASHnocite] = ACTIONS(6141), - [anon_sym_BSLASHcitet] = ACTIONS(6141), - [anon_sym_BSLASHcitep] = ACTIONS(6141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteauthor] = ACTIONS(6141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitetitle] = ACTIONS(6141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteyear] = ACTIONS(6141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitedate] = ACTIONS(6141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteurl] = ACTIONS(6141), - [anon_sym_BSLASHfullcite] = ACTIONS(6141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6141), - [anon_sym_BSLASHcitealt] = ACTIONS(6141), - [anon_sym_BSLASHcitealp] = ACTIONS(6141), - [anon_sym_BSLASHcitetext] = ACTIONS(6141), - [anon_sym_BSLASHparencite] = ACTIONS(6141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHParencite] = ACTIONS(6141), - [anon_sym_BSLASHfootcite] = ACTIONS(6141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6141), - [anon_sym_BSLASHtextcite] = ACTIONS(6141), - [anon_sym_BSLASHTextcite] = ACTIONS(6141), - [anon_sym_BSLASHsmartcite] = ACTIONS(6141), - [anon_sym_BSLASHSmartcite] = ACTIONS(6141), - [anon_sym_BSLASHsupercite] = ACTIONS(6141), - [anon_sym_BSLASHautocite] = ACTIONS(6141), - [anon_sym_BSLASHAutocite] = ACTIONS(6141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHvolcite] = ACTIONS(6141), - [anon_sym_BSLASHVolcite] = ACTIONS(6141), - [anon_sym_BSLASHpvolcite] = ACTIONS(6141), - [anon_sym_BSLASHPvolcite] = ACTIONS(6141), - [anon_sym_BSLASHfvolcite] = ACTIONS(6141), - [anon_sym_BSLASHftvolcite] = ACTIONS(6141), - [anon_sym_BSLASHsvolcite] = ACTIONS(6141), - [anon_sym_BSLASHSvolcite] = ACTIONS(6141), - [anon_sym_BSLASHtvolcite] = ACTIONS(6141), - [anon_sym_BSLASHTvolcite] = ACTIONS(6141), - [anon_sym_BSLASHavolcite] = ACTIONS(6141), - [anon_sym_BSLASHAvolcite] = ACTIONS(6141), - [anon_sym_BSLASHnotecite] = ACTIONS(6141), - [anon_sym_BSLASHNotecite] = ACTIONS(6141), - [anon_sym_BSLASHpnotecite] = ACTIONS(6141), - [anon_sym_BSLASHPnotecite] = ACTIONS(6141), - [anon_sym_BSLASHfnotecite] = ACTIONS(6141), - [anon_sym_BSLASHlabel] = ACTIONS(6141), - [anon_sym_BSLASHref] = ACTIONS(6141), - [anon_sym_BSLASHeqref] = ACTIONS(6141), - [anon_sym_BSLASHvref] = ACTIONS(6141), - [anon_sym_BSLASHVref] = ACTIONS(6141), - [anon_sym_BSLASHautoref] = ACTIONS(6141), - [anon_sym_BSLASHpageref] = ACTIONS(6141), - [anon_sym_BSLASHcref] = ACTIONS(6141), - [anon_sym_BSLASHCref] = ACTIONS(6141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnameCref] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHlabelcref] = ACTIONS(6141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCrefrange] = ACTIONS(6141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnewlabel] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6143), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHdef] = ACTIONS(6141), - [anon_sym_BSLASHlet] = ACTIONS(6141), - [anon_sym_BSLASHleft] = ACTIONS(6141), - [anon_sym_BSLASHbig] = ACTIONS(6141), - [anon_sym_BSLASHBig] = ACTIONS(6141), - [anon_sym_BSLASHbigg] = ACTIONS(6141), - [anon_sym_BSLASHBigg] = ACTIONS(6141), - [anon_sym_BSLASHbigl] = ACTIONS(6141), - [anon_sym_BSLASHBigl] = ACTIONS(6141), - [anon_sym_BSLASHbiggl] = ACTIONS(6141), - [anon_sym_BSLASHBiggl] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6141), - [anon_sym_BSLASHgls] = ACTIONS(6141), - [anon_sym_BSLASHGls] = ACTIONS(6141), - [anon_sym_BSLASHGLS] = ACTIONS(6141), - [anon_sym_BSLASHglspl] = ACTIONS(6141), - [anon_sym_BSLASHGlspl] = ACTIONS(6141), - [anon_sym_BSLASHGLSpl] = ACTIONS(6141), - [anon_sym_BSLASHglsdisp] = ACTIONS(6141), - [anon_sym_BSLASHglslink] = ACTIONS(6141), - [anon_sym_BSLASHglstext] = ACTIONS(6141), - [anon_sym_BSLASHGlstext] = ACTIONS(6141), - [anon_sym_BSLASHGLStext] = ACTIONS(6141), - [anon_sym_BSLASHglsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6141), - [anon_sym_BSLASHglsplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSplural] = ACTIONS(6141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHglsname] = ACTIONS(6141), - [anon_sym_BSLASHGlsname] = ACTIONS(6141), - [anon_sym_BSLASHGLSname] = ACTIONS(6141), - [anon_sym_BSLASHglssymbol] = ACTIONS(6141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6141), - [anon_sym_BSLASHglsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6141), - [anon_sym_BSLASHglsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6141), - [anon_sym_BSLASHglsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6141), - [anon_sym_BSLASHglsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6141), - [anon_sym_BSLASHglsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6141), - [anon_sym_BSLASHnewacronym] = ACTIONS(6141), - [anon_sym_BSLASHacrshort] = ACTIONS(6141), - [anon_sym_BSLASHAcrshort] = ACTIONS(6141), - [anon_sym_BSLASHACRshort] = ACTIONS(6141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6141), - [anon_sym_BSLASHacrlong] = ACTIONS(6141), - [anon_sym_BSLASHAcrlong] = ACTIONS(6141), - [anon_sym_BSLASHACRlong] = ACTIONS(6141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6141), - [anon_sym_BSLASHacrfull] = ACTIONS(6141), - [anon_sym_BSLASHAcrfull] = ACTIONS(6141), - [anon_sym_BSLASHACRfull] = ACTIONS(6141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6141), - [anon_sym_BSLASHacs] = ACTIONS(6141), - [anon_sym_BSLASHAcs] = ACTIONS(6141), - [anon_sym_BSLASHacsp] = ACTIONS(6141), - [anon_sym_BSLASHAcsp] = ACTIONS(6141), - [anon_sym_BSLASHacl] = ACTIONS(6141), - [anon_sym_BSLASHAcl] = ACTIONS(6141), - [anon_sym_BSLASHaclp] = ACTIONS(6141), - [anon_sym_BSLASHAclp] = ACTIONS(6141), - [anon_sym_BSLASHacf] = ACTIONS(6141), - [anon_sym_BSLASHAcf] = ACTIONS(6141), - [anon_sym_BSLASHacfp] = ACTIONS(6141), - [anon_sym_BSLASHAcfp] = ACTIONS(6141), - [anon_sym_BSLASHac] = ACTIONS(6141), - [anon_sym_BSLASHAc] = ACTIONS(6141), - [anon_sym_BSLASHacp] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6141), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6141), - [anon_sym_BSLASHcolor] = ACTIONS(6141), - [anon_sym_BSLASHcolorbox] = ACTIONS(6141), - [anon_sym_BSLASHtextcolor] = ACTIONS(6141), - [anon_sym_BSLASHpagecolor] = ACTIONS(6141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6141), - [anon_sym_BSLASHtext] = ACTIONS(6141), - [anon_sym_BSLASHintertext] = ACTIONS(6141), - [anon_sym_shortintertext] = ACTIONS(6141), - }, - [1512] = { - [sym_command_name] = ACTIONS(6249), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_RBRACK] = ACTIONS(6251), - [anon_sym_COMMA] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(6251), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_LBRACE] = ACTIONS(6251), - [sym_word] = ACTIONS(6249), - [sym_placeholder] = ACTIONS(6251), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6251), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_LT] = ACTIONS(6249), - [anon_sym_GT] = ACTIONS(6249), - [anon_sym_BANG] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_SQUOTE] = ACTIONS(6249), - [anon_sym__] = ACTIONS(6251), - [anon_sym_CARET] = ACTIONS(6251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), - [anon_sym_DOLLAR] = ACTIONS(6249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), - [anon_sym_BSLASHbegin] = ACTIONS(6249), - [anon_sym_BSLASHend] = ACTIONS(6249), - [anon_sym_BSLASHtitle] = ACTIONS(6249), - [anon_sym_BSLASHauthor] = ACTIONS(6249), - [anon_sym_BSLASHusepackage] = ACTIONS(6249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), - [anon_sym_BSLASHinclude] = ACTIONS(6249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), - [anon_sym_BSLASHinput] = ACTIONS(6249), - [anon_sym_BSLASHsubfile] = ACTIONS(6249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), - [anon_sym_BSLASHbibliography] = ACTIONS(6249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), - [anon_sym_BSLASHincludesvg] = ACTIONS(6249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), - [anon_sym_BSLASHimport] = ACTIONS(6249), - [anon_sym_BSLASHsubimport] = ACTIONS(6249), - [anon_sym_BSLASHinputfrom] = ACTIONS(6249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), - [anon_sym_BSLASHincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHcaption] = ACTIONS(6249), - [anon_sym_BSLASHcite] = ACTIONS(6249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCite] = ACTIONS(6249), - [anon_sym_BSLASHnocite] = ACTIONS(6249), - [anon_sym_BSLASHcitet] = ACTIONS(6249), - [anon_sym_BSLASHcitep] = ACTIONS(6249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteauthor] = ACTIONS(6249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitetitle] = ACTIONS(6249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteyear] = ACTIONS(6249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitedate] = ACTIONS(6249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteurl] = ACTIONS(6249), - [anon_sym_BSLASHfullcite] = ACTIONS(6249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), - [anon_sym_BSLASHcitealt] = ACTIONS(6249), - [anon_sym_BSLASHcitealp] = ACTIONS(6249), - [anon_sym_BSLASHcitetext] = ACTIONS(6249), - [anon_sym_BSLASHparencite] = ACTIONS(6249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHParencite] = ACTIONS(6249), - [anon_sym_BSLASHfootcite] = ACTIONS(6249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), - [anon_sym_BSLASHtextcite] = ACTIONS(6249), - [anon_sym_BSLASHTextcite] = ACTIONS(6249), - [anon_sym_BSLASHsmartcite] = ACTIONS(6249), - [anon_sym_BSLASHSmartcite] = ACTIONS(6249), - [anon_sym_BSLASHsupercite] = ACTIONS(6249), - [anon_sym_BSLASHautocite] = ACTIONS(6249), - [anon_sym_BSLASHAutocite] = ACTIONS(6249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHvolcite] = ACTIONS(6249), - [anon_sym_BSLASHVolcite] = ACTIONS(6249), - [anon_sym_BSLASHpvolcite] = ACTIONS(6249), - [anon_sym_BSLASHPvolcite] = ACTIONS(6249), - [anon_sym_BSLASHfvolcite] = ACTIONS(6249), - [anon_sym_BSLASHftvolcite] = ACTIONS(6249), - [anon_sym_BSLASHsvolcite] = ACTIONS(6249), - [anon_sym_BSLASHSvolcite] = ACTIONS(6249), - [anon_sym_BSLASHtvolcite] = ACTIONS(6249), - [anon_sym_BSLASHTvolcite] = ACTIONS(6249), - [anon_sym_BSLASHavolcite] = ACTIONS(6249), - [anon_sym_BSLASHAvolcite] = ACTIONS(6249), - [anon_sym_BSLASHnotecite] = ACTIONS(6249), - [anon_sym_BSLASHNotecite] = ACTIONS(6249), - [anon_sym_BSLASHpnotecite] = ACTIONS(6249), - [anon_sym_BSLASHPnotecite] = ACTIONS(6249), - [anon_sym_BSLASHfnotecite] = ACTIONS(6249), - [anon_sym_BSLASHlabel] = ACTIONS(6249), - [anon_sym_BSLASHref] = ACTIONS(6249), - [anon_sym_BSLASHeqref] = ACTIONS(6249), - [anon_sym_BSLASHvref] = ACTIONS(6249), - [anon_sym_BSLASHVref] = ACTIONS(6249), - [anon_sym_BSLASHautoref] = ACTIONS(6249), - [anon_sym_BSLASHpageref] = ACTIONS(6249), - [anon_sym_BSLASHcref] = ACTIONS(6249), - [anon_sym_BSLASHCref] = ACTIONS(6249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnameCref] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHlabelcref] = ACTIONS(6249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCrefrange] = ACTIONS(6249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnewlabel] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHdef] = ACTIONS(6249), - [anon_sym_BSLASHlet] = ACTIONS(6249), - [anon_sym_BSLASHleft] = ACTIONS(6249), - [anon_sym_BSLASHbig] = ACTIONS(6249), - [anon_sym_BSLASHBig] = ACTIONS(6249), - [anon_sym_BSLASHbigg] = ACTIONS(6249), - [anon_sym_BSLASHBigg] = ACTIONS(6249), - [anon_sym_BSLASHbigl] = ACTIONS(6249), - [anon_sym_BSLASHBigl] = ACTIONS(6249), - [anon_sym_BSLASHbiggl] = ACTIONS(6249), - [anon_sym_BSLASHBiggl] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), - [anon_sym_BSLASHgls] = ACTIONS(6249), - [anon_sym_BSLASHGls] = ACTIONS(6249), - [anon_sym_BSLASHGLS] = ACTIONS(6249), - [anon_sym_BSLASHglspl] = ACTIONS(6249), - [anon_sym_BSLASHGlspl] = ACTIONS(6249), - [anon_sym_BSLASHGLSpl] = ACTIONS(6249), - [anon_sym_BSLASHglsdisp] = ACTIONS(6249), - [anon_sym_BSLASHglslink] = ACTIONS(6249), - [anon_sym_BSLASHglstext] = ACTIONS(6249), - [anon_sym_BSLASHGlstext] = ACTIONS(6249), - [anon_sym_BSLASHGLStext] = ACTIONS(6249), - [anon_sym_BSLASHglsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), - [anon_sym_BSLASHglsplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSplural] = ACTIONS(6249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHglsname] = ACTIONS(6249), - [anon_sym_BSLASHGlsname] = ACTIONS(6249), - [anon_sym_BSLASHGLSname] = ACTIONS(6249), - [anon_sym_BSLASHglssymbol] = ACTIONS(6249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), - [anon_sym_BSLASHglsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), - [anon_sym_BSLASHglsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), - [anon_sym_BSLASHglsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), - [anon_sym_BSLASHglsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), - [anon_sym_BSLASHglsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), - [anon_sym_BSLASHnewacronym] = ACTIONS(6249), - [anon_sym_BSLASHacrshort] = ACTIONS(6249), - [anon_sym_BSLASHAcrshort] = ACTIONS(6249), - [anon_sym_BSLASHACRshort] = ACTIONS(6249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), - [anon_sym_BSLASHacrlong] = ACTIONS(6249), - [anon_sym_BSLASHAcrlong] = ACTIONS(6249), - [anon_sym_BSLASHACRlong] = ACTIONS(6249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), - [anon_sym_BSLASHacrfull] = ACTIONS(6249), - [anon_sym_BSLASHAcrfull] = ACTIONS(6249), - [anon_sym_BSLASHACRfull] = ACTIONS(6249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), - [anon_sym_BSLASHacs] = ACTIONS(6249), - [anon_sym_BSLASHAcs] = ACTIONS(6249), - [anon_sym_BSLASHacsp] = ACTIONS(6249), - [anon_sym_BSLASHAcsp] = ACTIONS(6249), - [anon_sym_BSLASHacl] = ACTIONS(6249), - [anon_sym_BSLASHAcl] = ACTIONS(6249), - [anon_sym_BSLASHaclp] = ACTIONS(6249), - [anon_sym_BSLASHAclp] = ACTIONS(6249), - [anon_sym_BSLASHacf] = ACTIONS(6249), - [anon_sym_BSLASHAcf] = ACTIONS(6249), - [anon_sym_BSLASHacfp] = ACTIONS(6249), - [anon_sym_BSLASHAcfp] = ACTIONS(6249), - [anon_sym_BSLASHac] = ACTIONS(6249), - [anon_sym_BSLASHAc] = ACTIONS(6249), - [anon_sym_BSLASHacp] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), - [anon_sym_BSLASHcolor] = ACTIONS(6249), - [anon_sym_BSLASHcolorbox] = ACTIONS(6249), - [anon_sym_BSLASHtextcolor] = ACTIONS(6249), - [anon_sym_BSLASHpagecolor] = ACTIONS(6249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), - [anon_sym_BSLASHtext] = ACTIONS(6249), - [anon_sym_BSLASHintertext] = ACTIONS(6249), - [anon_sym_shortintertext] = ACTIONS(6249), - }, - [1513] = { - [sym_command_name] = ACTIONS(6181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6181), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_EQ] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_LBRACE] = ACTIONS(6183), - [sym_word] = ACTIONS(6181), - [sym_placeholder] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6183), - [anon_sym_DASH] = ACTIONS(6183), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_COLON] = ACTIONS(6181), - [anon_sym_SQUOTE] = ACTIONS(6181), - [anon_sym__] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), - [anon_sym_BSLASHbegin] = ACTIONS(6181), - [anon_sym_BSLASHend] = ACTIONS(6181), - [anon_sym_BSLASHtitle] = ACTIONS(6181), - [anon_sym_BSLASHauthor] = ACTIONS(6181), - [anon_sym_BSLASHusepackage] = ACTIONS(6181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), - [anon_sym_BSLASHinclude] = ACTIONS(6181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), - [anon_sym_BSLASHinput] = ACTIONS(6181), - [anon_sym_BSLASHsubfile] = ACTIONS(6181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), - [anon_sym_BSLASHbibliography] = ACTIONS(6181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), - [anon_sym_BSLASHincludesvg] = ACTIONS(6181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), - [anon_sym_BSLASHimport] = ACTIONS(6181), - [anon_sym_BSLASHsubimport] = ACTIONS(6181), - [anon_sym_BSLASHinputfrom] = ACTIONS(6181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), - [anon_sym_BSLASHincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHcaption] = ACTIONS(6181), - [anon_sym_BSLASHcite] = ACTIONS(6181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCite] = ACTIONS(6181), - [anon_sym_BSLASHnocite] = ACTIONS(6181), - [anon_sym_BSLASHcitet] = ACTIONS(6181), - [anon_sym_BSLASHcitep] = ACTIONS(6181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteauthor] = ACTIONS(6181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitetitle] = ACTIONS(6181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteyear] = ACTIONS(6181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitedate] = ACTIONS(6181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteurl] = ACTIONS(6181), - [anon_sym_BSLASHfullcite] = ACTIONS(6181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), - [anon_sym_BSLASHcitealt] = ACTIONS(6181), - [anon_sym_BSLASHcitealp] = ACTIONS(6181), - [anon_sym_BSLASHcitetext] = ACTIONS(6181), - [anon_sym_BSLASHparencite] = ACTIONS(6181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHParencite] = ACTIONS(6181), - [anon_sym_BSLASHfootcite] = ACTIONS(6181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), - [anon_sym_BSLASHtextcite] = ACTIONS(6181), - [anon_sym_BSLASHTextcite] = ACTIONS(6181), - [anon_sym_BSLASHsmartcite] = ACTIONS(6181), - [anon_sym_BSLASHSmartcite] = ACTIONS(6181), - [anon_sym_BSLASHsupercite] = ACTIONS(6181), - [anon_sym_BSLASHautocite] = ACTIONS(6181), - [anon_sym_BSLASHAutocite] = ACTIONS(6181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHvolcite] = ACTIONS(6181), - [anon_sym_BSLASHVolcite] = ACTIONS(6181), - [anon_sym_BSLASHpvolcite] = ACTIONS(6181), - [anon_sym_BSLASHPvolcite] = ACTIONS(6181), - [anon_sym_BSLASHfvolcite] = ACTIONS(6181), - [anon_sym_BSLASHftvolcite] = ACTIONS(6181), - [anon_sym_BSLASHsvolcite] = ACTIONS(6181), - [anon_sym_BSLASHSvolcite] = ACTIONS(6181), - [anon_sym_BSLASHtvolcite] = ACTIONS(6181), - [anon_sym_BSLASHTvolcite] = ACTIONS(6181), - [anon_sym_BSLASHavolcite] = ACTIONS(6181), - [anon_sym_BSLASHAvolcite] = ACTIONS(6181), - [anon_sym_BSLASHnotecite] = ACTIONS(6181), - [anon_sym_BSLASHNotecite] = ACTIONS(6181), - [anon_sym_BSLASHpnotecite] = ACTIONS(6181), - [anon_sym_BSLASHPnotecite] = ACTIONS(6181), - [anon_sym_BSLASHfnotecite] = ACTIONS(6181), - [anon_sym_BSLASHlabel] = ACTIONS(6181), - [anon_sym_BSLASHref] = ACTIONS(6181), - [anon_sym_BSLASHeqref] = ACTIONS(6181), - [anon_sym_BSLASHvref] = ACTIONS(6181), - [anon_sym_BSLASHVref] = ACTIONS(6181), - [anon_sym_BSLASHautoref] = ACTIONS(6181), - [anon_sym_BSLASHpageref] = ACTIONS(6181), - [anon_sym_BSLASHcref] = ACTIONS(6181), - [anon_sym_BSLASHCref] = ACTIONS(6181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnameCref] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHlabelcref] = ACTIONS(6181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCrefrange] = ACTIONS(6181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnewlabel] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHdef] = ACTIONS(6181), - [anon_sym_BSLASHlet] = ACTIONS(6181), - [anon_sym_BSLASHleft] = ACTIONS(6181), - [anon_sym_BSLASHbig] = ACTIONS(6181), - [anon_sym_BSLASHBig] = ACTIONS(6181), - [anon_sym_BSLASHbigg] = ACTIONS(6181), - [anon_sym_BSLASHBigg] = ACTIONS(6181), - [anon_sym_BSLASHbigl] = ACTIONS(6181), - [anon_sym_BSLASHBigl] = ACTIONS(6181), - [anon_sym_BSLASHbiggl] = ACTIONS(6181), - [anon_sym_BSLASHBiggl] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), - [anon_sym_BSLASHgls] = ACTIONS(6181), - [anon_sym_BSLASHGls] = ACTIONS(6181), - [anon_sym_BSLASHGLS] = ACTIONS(6181), - [anon_sym_BSLASHglspl] = ACTIONS(6181), - [anon_sym_BSLASHGlspl] = ACTIONS(6181), - [anon_sym_BSLASHGLSpl] = ACTIONS(6181), - [anon_sym_BSLASHglsdisp] = ACTIONS(6181), - [anon_sym_BSLASHglslink] = ACTIONS(6181), - [anon_sym_BSLASHglstext] = ACTIONS(6181), - [anon_sym_BSLASHGlstext] = ACTIONS(6181), - [anon_sym_BSLASHGLStext] = ACTIONS(6181), - [anon_sym_BSLASHglsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), - [anon_sym_BSLASHglsplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSplural] = ACTIONS(6181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHglsname] = ACTIONS(6181), - [anon_sym_BSLASHGlsname] = ACTIONS(6181), - [anon_sym_BSLASHGLSname] = ACTIONS(6181), - [anon_sym_BSLASHglssymbol] = ACTIONS(6181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), - [anon_sym_BSLASHglsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), - [anon_sym_BSLASHglsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), - [anon_sym_BSLASHglsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), - [anon_sym_BSLASHglsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), - [anon_sym_BSLASHglsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), - [anon_sym_BSLASHnewacronym] = ACTIONS(6181), - [anon_sym_BSLASHacrshort] = ACTIONS(6181), - [anon_sym_BSLASHAcrshort] = ACTIONS(6181), - [anon_sym_BSLASHACRshort] = ACTIONS(6181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), - [anon_sym_BSLASHacrlong] = ACTIONS(6181), - [anon_sym_BSLASHAcrlong] = ACTIONS(6181), - [anon_sym_BSLASHACRlong] = ACTIONS(6181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), - [anon_sym_BSLASHacrfull] = ACTIONS(6181), - [anon_sym_BSLASHAcrfull] = ACTIONS(6181), - [anon_sym_BSLASHACRfull] = ACTIONS(6181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), - [anon_sym_BSLASHacs] = ACTIONS(6181), - [anon_sym_BSLASHAcs] = ACTIONS(6181), - [anon_sym_BSLASHacsp] = ACTIONS(6181), - [anon_sym_BSLASHAcsp] = ACTIONS(6181), - [anon_sym_BSLASHacl] = ACTIONS(6181), - [anon_sym_BSLASHAcl] = ACTIONS(6181), - [anon_sym_BSLASHaclp] = ACTIONS(6181), - [anon_sym_BSLASHAclp] = ACTIONS(6181), - [anon_sym_BSLASHacf] = ACTIONS(6181), - [anon_sym_BSLASHAcf] = ACTIONS(6181), - [anon_sym_BSLASHacfp] = ACTIONS(6181), - [anon_sym_BSLASHAcfp] = ACTIONS(6181), - [anon_sym_BSLASHac] = ACTIONS(6181), - [anon_sym_BSLASHAc] = ACTIONS(6181), - [anon_sym_BSLASHacp] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), - [anon_sym_BSLASHcolor] = ACTIONS(6181), - [anon_sym_BSLASHcolorbox] = ACTIONS(6181), - [anon_sym_BSLASHtextcolor] = ACTIONS(6181), - [anon_sym_BSLASHpagecolor] = ACTIONS(6181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), - [anon_sym_BSLASHtext] = ACTIONS(6181), - [anon_sym_BSLASHintertext] = ACTIONS(6181), - [anon_sym_shortintertext] = ACTIONS(6181), - }, - [1514] = { - [sym_command_name] = ACTIONS(6201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6201), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_EQ] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6203), - [sym_word] = ACTIONS(6201), - [sym_placeholder] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_SQUOTE] = ACTIONS(6201), - [anon_sym__] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), - [anon_sym_DOLLAR] = ACTIONS(6201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), - [anon_sym_BSLASHbegin] = ACTIONS(6201), - [anon_sym_BSLASHend] = ACTIONS(6201), - [anon_sym_BSLASHtitle] = ACTIONS(6201), - [anon_sym_BSLASHauthor] = ACTIONS(6201), - [anon_sym_BSLASHusepackage] = ACTIONS(6201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), - [anon_sym_BSLASHinclude] = ACTIONS(6201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), - [anon_sym_BSLASHinput] = ACTIONS(6201), - [anon_sym_BSLASHsubfile] = ACTIONS(6201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), - [anon_sym_BSLASHbibliography] = ACTIONS(6201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), - [anon_sym_BSLASHincludesvg] = ACTIONS(6201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), - [anon_sym_BSLASHimport] = ACTIONS(6201), - [anon_sym_BSLASHsubimport] = ACTIONS(6201), - [anon_sym_BSLASHinputfrom] = ACTIONS(6201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), - [anon_sym_BSLASHincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHcaption] = ACTIONS(6201), - [anon_sym_BSLASHcite] = ACTIONS(6201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCite] = ACTIONS(6201), - [anon_sym_BSLASHnocite] = ACTIONS(6201), - [anon_sym_BSLASHcitet] = ACTIONS(6201), - [anon_sym_BSLASHcitep] = ACTIONS(6201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteauthor] = ACTIONS(6201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitetitle] = ACTIONS(6201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteyear] = ACTIONS(6201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitedate] = ACTIONS(6201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteurl] = ACTIONS(6201), - [anon_sym_BSLASHfullcite] = ACTIONS(6201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), - [anon_sym_BSLASHcitealt] = ACTIONS(6201), - [anon_sym_BSLASHcitealp] = ACTIONS(6201), - [anon_sym_BSLASHcitetext] = ACTIONS(6201), - [anon_sym_BSLASHparencite] = ACTIONS(6201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHParencite] = ACTIONS(6201), - [anon_sym_BSLASHfootcite] = ACTIONS(6201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), - [anon_sym_BSLASHtextcite] = ACTIONS(6201), - [anon_sym_BSLASHTextcite] = ACTIONS(6201), - [anon_sym_BSLASHsmartcite] = ACTIONS(6201), - [anon_sym_BSLASHSmartcite] = ACTIONS(6201), - [anon_sym_BSLASHsupercite] = ACTIONS(6201), - [anon_sym_BSLASHautocite] = ACTIONS(6201), - [anon_sym_BSLASHAutocite] = ACTIONS(6201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHvolcite] = ACTIONS(6201), - [anon_sym_BSLASHVolcite] = ACTIONS(6201), - [anon_sym_BSLASHpvolcite] = ACTIONS(6201), - [anon_sym_BSLASHPvolcite] = ACTIONS(6201), - [anon_sym_BSLASHfvolcite] = ACTIONS(6201), - [anon_sym_BSLASHftvolcite] = ACTIONS(6201), - [anon_sym_BSLASHsvolcite] = ACTIONS(6201), - [anon_sym_BSLASHSvolcite] = ACTIONS(6201), - [anon_sym_BSLASHtvolcite] = ACTIONS(6201), - [anon_sym_BSLASHTvolcite] = ACTIONS(6201), - [anon_sym_BSLASHavolcite] = ACTIONS(6201), - [anon_sym_BSLASHAvolcite] = ACTIONS(6201), - [anon_sym_BSLASHnotecite] = ACTIONS(6201), - [anon_sym_BSLASHNotecite] = ACTIONS(6201), - [anon_sym_BSLASHpnotecite] = ACTIONS(6201), - [anon_sym_BSLASHPnotecite] = ACTIONS(6201), - [anon_sym_BSLASHfnotecite] = ACTIONS(6201), - [anon_sym_BSLASHlabel] = ACTIONS(6201), - [anon_sym_BSLASHref] = ACTIONS(6201), - [anon_sym_BSLASHeqref] = ACTIONS(6201), - [anon_sym_BSLASHvref] = ACTIONS(6201), - [anon_sym_BSLASHVref] = ACTIONS(6201), - [anon_sym_BSLASHautoref] = ACTIONS(6201), - [anon_sym_BSLASHpageref] = ACTIONS(6201), - [anon_sym_BSLASHcref] = ACTIONS(6201), - [anon_sym_BSLASHCref] = ACTIONS(6201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnameCref] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHlabelcref] = ACTIONS(6201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCrefrange] = ACTIONS(6201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnewlabel] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHdef] = ACTIONS(6201), - [anon_sym_BSLASHlet] = ACTIONS(6201), - [anon_sym_BSLASHleft] = ACTIONS(6201), - [anon_sym_BSLASHbig] = ACTIONS(6201), - [anon_sym_BSLASHBig] = ACTIONS(6201), - [anon_sym_BSLASHbigg] = ACTIONS(6201), - [anon_sym_BSLASHBigg] = ACTIONS(6201), - [anon_sym_BSLASHbigl] = ACTIONS(6201), - [anon_sym_BSLASHBigl] = ACTIONS(6201), - [anon_sym_BSLASHbiggl] = ACTIONS(6201), - [anon_sym_BSLASHBiggl] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), - [anon_sym_BSLASHgls] = ACTIONS(6201), - [anon_sym_BSLASHGls] = ACTIONS(6201), - [anon_sym_BSLASHGLS] = ACTIONS(6201), - [anon_sym_BSLASHglspl] = ACTIONS(6201), - [anon_sym_BSLASHGlspl] = ACTIONS(6201), - [anon_sym_BSLASHGLSpl] = ACTIONS(6201), - [anon_sym_BSLASHglsdisp] = ACTIONS(6201), - [anon_sym_BSLASHglslink] = ACTIONS(6201), - [anon_sym_BSLASHglstext] = ACTIONS(6201), - [anon_sym_BSLASHGlstext] = ACTIONS(6201), - [anon_sym_BSLASHGLStext] = ACTIONS(6201), - [anon_sym_BSLASHglsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), - [anon_sym_BSLASHglsplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSplural] = ACTIONS(6201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHglsname] = ACTIONS(6201), - [anon_sym_BSLASHGlsname] = ACTIONS(6201), - [anon_sym_BSLASHGLSname] = ACTIONS(6201), - [anon_sym_BSLASHglssymbol] = ACTIONS(6201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), - [anon_sym_BSLASHglsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), - [anon_sym_BSLASHglsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), - [anon_sym_BSLASHglsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), - [anon_sym_BSLASHglsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), - [anon_sym_BSLASHglsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), - [anon_sym_BSLASHnewacronym] = ACTIONS(6201), - [anon_sym_BSLASHacrshort] = ACTIONS(6201), - [anon_sym_BSLASHAcrshort] = ACTIONS(6201), - [anon_sym_BSLASHACRshort] = ACTIONS(6201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), - [anon_sym_BSLASHacrlong] = ACTIONS(6201), - [anon_sym_BSLASHAcrlong] = ACTIONS(6201), - [anon_sym_BSLASHACRlong] = ACTIONS(6201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), - [anon_sym_BSLASHacrfull] = ACTIONS(6201), - [anon_sym_BSLASHAcrfull] = ACTIONS(6201), - [anon_sym_BSLASHACRfull] = ACTIONS(6201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), - [anon_sym_BSLASHacs] = ACTIONS(6201), - [anon_sym_BSLASHAcs] = ACTIONS(6201), - [anon_sym_BSLASHacsp] = ACTIONS(6201), - [anon_sym_BSLASHAcsp] = ACTIONS(6201), - [anon_sym_BSLASHacl] = ACTIONS(6201), - [anon_sym_BSLASHAcl] = ACTIONS(6201), - [anon_sym_BSLASHaclp] = ACTIONS(6201), - [anon_sym_BSLASHAclp] = ACTIONS(6201), - [anon_sym_BSLASHacf] = ACTIONS(6201), - [anon_sym_BSLASHAcf] = ACTIONS(6201), - [anon_sym_BSLASHacfp] = ACTIONS(6201), - [anon_sym_BSLASHAcfp] = ACTIONS(6201), - [anon_sym_BSLASHac] = ACTIONS(6201), - [anon_sym_BSLASHAc] = ACTIONS(6201), - [anon_sym_BSLASHacp] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), - [anon_sym_BSLASHcolor] = ACTIONS(6201), - [anon_sym_BSLASHcolorbox] = ACTIONS(6201), - [anon_sym_BSLASHtextcolor] = ACTIONS(6201), - [anon_sym_BSLASHpagecolor] = ACTIONS(6201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), - [anon_sym_BSLASHtext] = ACTIONS(6201), - [anon_sym_BSLASHintertext] = ACTIONS(6201), - [anon_sym_shortintertext] = ACTIONS(6201), - }, - [1515] = { - [sym_command_name] = ACTIONS(6221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6221), - [anon_sym_LBRACK] = ACTIONS(6223), - [anon_sym_RBRACK] = ACTIONS(6223), - [anon_sym_COMMA] = ACTIONS(6223), - [anon_sym_EQ] = ACTIONS(6223), - [anon_sym_LPAREN] = ACTIONS(6223), - [anon_sym_RPAREN] = ACTIONS(6223), - [anon_sym_LBRACE] = ACTIONS(6223), - [sym_word] = ACTIONS(6221), - [sym_placeholder] = ACTIONS(6223), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6223), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_LT] = ACTIONS(6221), - [anon_sym_GT] = ACTIONS(6221), - [anon_sym_BANG] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_SQUOTE] = ACTIONS(6221), - [anon_sym__] = ACTIONS(6223), - [anon_sym_CARET] = ACTIONS(6223), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6223), - [anon_sym_DOLLAR] = ACTIONS(6221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6223), - [anon_sym_BSLASHbegin] = ACTIONS(6221), - [anon_sym_BSLASHend] = ACTIONS(6221), - [anon_sym_BSLASHtitle] = ACTIONS(6221), - [anon_sym_BSLASHauthor] = ACTIONS(6221), - [anon_sym_BSLASHusepackage] = ACTIONS(6221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6221), - [anon_sym_BSLASHinclude] = ACTIONS(6221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6221), - [anon_sym_BSLASHinput] = ACTIONS(6221), - [anon_sym_BSLASHsubfile] = ACTIONS(6221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6221), - [anon_sym_BSLASHbibliography] = ACTIONS(6221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6221), - [anon_sym_BSLASHincludesvg] = ACTIONS(6221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6221), - [anon_sym_BSLASHimport] = ACTIONS(6221), - [anon_sym_BSLASHsubimport] = ACTIONS(6221), - [anon_sym_BSLASHinputfrom] = ACTIONS(6221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6221), - [anon_sym_BSLASHincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHcaption] = ACTIONS(6221), - [anon_sym_BSLASHcite] = ACTIONS(6221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCite] = ACTIONS(6221), - [anon_sym_BSLASHnocite] = ACTIONS(6221), - [anon_sym_BSLASHcitet] = ACTIONS(6221), - [anon_sym_BSLASHcitep] = ACTIONS(6221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteauthor] = ACTIONS(6221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitetitle] = ACTIONS(6221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteyear] = ACTIONS(6221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitedate] = ACTIONS(6221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteurl] = ACTIONS(6221), - [anon_sym_BSLASHfullcite] = ACTIONS(6221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6221), - [anon_sym_BSLASHcitealt] = ACTIONS(6221), - [anon_sym_BSLASHcitealp] = ACTIONS(6221), - [anon_sym_BSLASHcitetext] = ACTIONS(6221), - [anon_sym_BSLASHparencite] = ACTIONS(6221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHParencite] = ACTIONS(6221), - [anon_sym_BSLASHfootcite] = ACTIONS(6221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6221), - [anon_sym_BSLASHtextcite] = ACTIONS(6221), - [anon_sym_BSLASHTextcite] = ACTIONS(6221), - [anon_sym_BSLASHsmartcite] = ACTIONS(6221), - [anon_sym_BSLASHSmartcite] = ACTIONS(6221), - [anon_sym_BSLASHsupercite] = ACTIONS(6221), - [anon_sym_BSLASHautocite] = ACTIONS(6221), - [anon_sym_BSLASHAutocite] = ACTIONS(6221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHvolcite] = ACTIONS(6221), - [anon_sym_BSLASHVolcite] = ACTIONS(6221), - [anon_sym_BSLASHpvolcite] = ACTIONS(6221), - [anon_sym_BSLASHPvolcite] = ACTIONS(6221), - [anon_sym_BSLASHfvolcite] = ACTIONS(6221), - [anon_sym_BSLASHftvolcite] = ACTIONS(6221), - [anon_sym_BSLASHsvolcite] = ACTIONS(6221), - [anon_sym_BSLASHSvolcite] = ACTIONS(6221), - [anon_sym_BSLASHtvolcite] = ACTIONS(6221), - [anon_sym_BSLASHTvolcite] = ACTIONS(6221), - [anon_sym_BSLASHavolcite] = ACTIONS(6221), - [anon_sym_BSLASHAvolcite] = ACTIONS(6221), - [anon_sym_BSLASHnotecite] = ACTIONS(6221), - [anon_sym_BSLASHNotecite] = ACTIONS(6221), - [anon_sym_BSLASHpnotecite] = ACTIONS(6221), - [anon_sym_BSLASHPnotecite] = ACTIONS(6221), - [anon_sym_BSLASHfnotecite] = ACTIONS(6221), - [anon_sym_BSLASHlabel] = ACTIONS(6221), - [anon_sym_BSLASHref] = ACTIONS(6221), - [anon_sym_BSLASHeqref] = ACTIONS(6221), - [anon_sym_BSLASHvref] = ACTIONS(6221), - [anon_sym_BSLASHVref] = ACTIONS(6221), - [anon_sym_BSLASHautoref] = ACTIONS(6221), - [anon_sym_BSLASHpageref] = ACTIONS(6221), - [anon_sym_BSLASHcref] = ACTIONS(6221), - [anon_sym_BSLASHCref] = ACTIONS(6221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnameCref] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHlabelcref] = ACTIONS(6221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCrefrange] = ACTIONS(6221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnewlabel] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6223), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHdef] = ACTIONS(6221), - [anon_sym_BSLASHlet] = ACTIONS(6221), - [anon_sym_BSLASHleft] = ACTIONS(6221), - [anon_sym_BSLASHbig] = ACTIONS(6221), - [anon_sym_BSLASHBig] = ACTIONS(6221), - [anon_sym_BSLASHbigg] = ACTIONS(6221), - [anon_sym_BSLASHBigg] = ACTIONS(6221), - [anon_sym_BSLASHbigl] = ACTIONS(6221), - [anon_sym_BSLASHBigl] = ACTIONS(6221), - [anon_sym_BSLASHbiggl] = ACTIONS(6221), - [anon_sym_BSLASHBiggl] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6221), - [anon_sym_BSLASHgls] = ACTIONS(6221), - [anon_sym_BSLASHGls] = ACTIONS(6221), - [anon_sym_BSLASHGLS] = ACTIONS(6221), - [anon_sym_BSLASHglspl] = ACTIONS(6221), - [anon_sym_BSLASHGlspl] = ACTIONS(6221), - [anon_sym_BSLASHGLSpl] = ACTIONS(6221), - [anon_sym_BSLASHglsdisp] = ACTIONS(6221), - [anon_sym_BSLASHglslink] = ACTIONS(6221), - [anon_sym_BSLASHglstext] = ACTIONS(6221), - [anon_sym_BSLASHGlstext] = ACTIONS(6221), - [anon_sym_BSLASHGLStext] = ACTIONS(6221), - [anon_sym_BSLASHglsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6221), - [anon_sym_BSLASHglsplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSplural] = ACTIONS(6221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHglsname] = ACTIONS(6221), - [anon_sym_BSLASHGlsname] = ACTIONS(6221), - [anon_sym_BSLASHGLSname] = ACTIONS(6221), - [anon_sym_BSLASHglssymbol] = ACTIONS(6221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6221), - [anon_sym_BSLASHglsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6221), - [anon_sym_BSLASHglsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6221), - [anon_sym_BSLASHglsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6221), - [anon_sym_BSLASHglsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6221), - [anon_sym_BSLASHglsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6221), - [anon_sym_BSLASHnewacronym] = ACTIONS(6221), - [anon_sym_BSLASHacrshort] = ACTIONS(6221), - [anon_sym_BSLASHAcrshort] = ACTIONS(6221), - [anon_sym_BSLASHACRshort] = ACTIONS(6221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6221), - [anon_sym_BSLASHacrlong] = ACTIONS(6221), - [anon_sym_BSLASHAcrlong] = ACTIONS(6221), - [anon_sym_BSLASHACRlong] = ACTIONS(6221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6221), - [anon_sym_BSLASHacrfull] = ACTIONS(6221), - [anon_sym_BSLASHAcrfull] = ACTIONS(6221), - [anon_sym_BSLASHACRfull] = ACTIONS(6221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6221), - [anon_sym_BSLASHacs] = ACTIONS(6221), - [anon_sym_BSLASHAcs] = ACTIONS(6221), - [anon_sym_BSLASHacsp] = ACTIONS(6221), - [anon_sym_BSLASHAcsp] = ACTIONS(6221), - [anon_sym_BSLASHacl] = ACTIONS(6221), - [anon_sym_BSLASHAcl] = ACTIONS(6221), - [anon_sym_BSLASHaclp] = ACTIONS(6221), - [anon_sym_BSLASHAclp] = ACTIONS(6221), - [anon_sym_BSLASHacf] = ACTIONS(6221), - [anon_sym_BSLASHAcf] = ACTIONS(6221), - [anon_sym_BSLASHacfp] = ACTIONS(6221), - [anon_sym_BSLASHAcfp] = ACTIONS(6221), - [anon_sym_BSLASHac] = ACTIONS(6221), - [anon_sym_BSLASHAc] = ACTIONS(6221), - [anon_sym_BSLASHacp] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6221), - [anon_sym_BSLASHcolor] = ACTIONS(6221), - [anon_sym_BSLASHcolorbox] = ACTIONS(6221), - [anon_sym_BSLASHtextcolor] = ACTIONS(6221), - [anon_sym_BSLASHpagecolor] = ACTIONS(6221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6221), - [anon_sym_BSLASHtext] = ACTIONS(6221), - [anon_sym_BSLASHintertext] = ACTIONS(6221), - [anon_sym_shortintertext] = ACTIONS(6221), - }, - [1516] = { - [sym_command_name] = ACTIONS(6237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6237), - [anon_sym_LBRACK] = ACTIONS(6239), - [anon_sym_RBRACK] = ACTIONS(6239), - [anon_sym_COMMA] = ACTIONS(6239), - [anon_sym_EQ] = ACTIONS(6239), - [anon_sym_LPAREN] = ACTIONS(6239), - [anon_sym_RPAREN] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6239), - [sym_word] = ACTIONS(6237), - [sym_placeholder] = ACTIONS(6239), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6239), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_BANG] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_SQUOTE] = ACTIONS(6237), - [anon_sym__] = ACTIONS(6239), - [anon_sym_CARET] = ACTIONS(6239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), - [anon_sym_DOLLAR] = ACTIONS(6237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), - [anon_sym_BSLASHbegin] = ACTIONS(6237), - [anon_sym_BSLASHend] = ACTIONS(6237), - [anon_sym_BSLASHtitle] = ACTIONS(6237), - [anon_sym_BSLASHauthor] = ACTIONS(6237), - [anon_sym_BSLASHusepackage] = ACTIONS(6237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6237), - [anon_sym_BSLASHinclude] = ACTIONS(6237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6237), - [anon_sym_BSLASHinput] = ACTIONS(6237), - [anon_sym_BSLASHsubfile] = ACTIONS(6237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6237), - [anon_sym_BSLASHbibliography] = ACTIONS(6237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6237), - [anon_sym_BSLASHincludesvg] = ACTIONS(6237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6237), - [anon_sym_BSLASHimport] = ACTIONS(6237), - [anon_sym_BSLASHsubimport] = ACTIONS(6237), - [anon_sym_BSLASHinputfrom] = ACTIONS(6237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6237), - [anon_sym_BSLASHincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHcaption] = ACTIONS(6237), - [anon_sym_BSLASHcite] = ACTIONS(6237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCite] = ACTIONS(6237), - [anon_sym_BSLASHnocite] = ACTIONS(6237), - [anon_sym_BSLASHcitet] = ACTIONS(6237), - [anon_sym_BSLASHcitep] = ACTIONS(6237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteauthor] = ACTIONS(6237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitetitle] = ACTIONS(6237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteyear] = ACTIONS(6237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitedate] = ACTIONS(6237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteurl] = ACTIONS(6237), - [anon_sym_BSLASHfullcite] = ACTIONS(6237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6237), - [anon_sym_BSLASHcitealt] = ACTIONS(6237), - [anon_sym_BSLASHcitealp] = ACTIONS(6237), - [anon_sym_BSLASHcitetext] = ACTIONS(6237), - [anon_sym_BSLASHparencite] = ACTIONS(6237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHParencite] = ACTIONS(6237), - [anon_sym_BSLASHfootcite] = ACTIONS(6237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6237), - [anon_sym_BSLASHtextcite] = ACTIONS(6237), - [anon_sym_BSLASHTextcite] = ACTIONS(6237), - [anon_sym_BSLASHsmartcite] = ACTIONS(6237), - [anon_sym_BSLASHSmartcite] = ACTIONS(6237), - [anon_sym_BSLASHsupercite] = ACTIONS(6237), - [anon_sym_BSLASHautocite] = ACTIONS(6237), - [anon_sym_BSLASHAutocite] = ACTIONS(6237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHvolcite] = ACTIONS(6237), - [anon_sym_BSLASHVolcite] = ACTIONS(6237), - [anon_sym_BSLASHpvolcite] = ACTIONS(6237), - [anon_sym_BSLASHPvolcite] = ACTIONS(6237), - [anon_sym_BSLASHfvolcite] = ACTIONS(6237), - [anon_sym_BSLASHftvolcite] = ACTIONS(6237), - [anon_sym_BSLASHsvolcite] = ACTIONS(6237), - [anon_sym_BSLASHSvolcite] = ACTIONS(6237), - [anon_sym_BSLASHtvolcite] = ACTIONS(6237), - [anon_sym_BSLASHTvolcite] = ACTIONS(6237), - [anon_sym_BSLASHavolcite] = ACTIONS(6237), - [anon_sym_BSLASHAvolcite] = ACTIONS(6237), - [anon_sym_BSLASHnotecite] = ACTIONS(6237), - [anon_sym_BSLASHNotecite] = ACTIONS(6237), - [anon_sym_BSLASHpnotecite] = ACTIONS(6237), - [anon_sym_BSLASHPnotecite] = ACTIONS(6237), - [anon_sym_BSLASHfnotecite] = ACTIONS(6237), - [anon_sym_BSLASHlabel] = ACTIONS(6237), - [anon_sym_BSLASHref] = ACTIONS(6237), - [anon_sym_BSLASHeqref] = ACTIONS(6237), - [anon_sym_BSLASHvref] = ACTIONS(6237), - [anon_sym_BSLASHVref] = ACTIONS(6237), - [anon_sym_BSLASHautoref] = ACTIONS(6237), - [anon_sym_BSLASHpageref] = ACTIONS(6237), - [anon_sym_BSLASHcref] = ACTIONS(6237), - [anon_sym_BSLASHCref] = ACTIONS(6237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnameCref] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHlabelcref] = ACTIONS(6237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCrefrange] = ACTIONS(6237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnewlabel] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHdef] = ACTIONS(6237), - [anon_sym_BSLASHlet] = ACTIONS(6237), - [anon_sym_BSLASHleft] = ACTIONS(6237), - [anon_sym_BSLASHbig] = ACTIONS(6237), - [anon_sym_BSLASHBig] = ACTIONS(6237), - [anon_sym_BSLASHbigg] = ACTIONS(6237), - [anon_sym_BSLASHBigg] = ACTIONS(6237), - [anon_sym_BSLASHbigl] = ACTIONS(6237), - [anon_sym_BSLASHBigl] = ACTIONS(6237), - [anon_sym_BSLASHbiggl] = ACTIONS(6237), - [anon_sym_BSLASHBiggl] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6237), - [anon_sym_BSLASHgls] = ACTIONS(6237), - [anon_sym_BSLASHGls] = ACTIONS(6237), - [anon_sym_BSLASHGLS] = ACTIONS(6237), - [anon_sym_BSLASHglspl] = ACTIONS(6237), - [anon_sym_BSLASHGlspl] = ACTIONS(6237), - [anon_sym_BSLASHGLSpl] = ACTIONS(6237), - [anon_sym_BSLASHglsdisp] = ACTIONS(6237), - [anon_sym_BSLASHglslink] = ACTIONS(6237), - [anon_sym_BSLASHglstext] = ACTIONS(6237), - [anon_sym_BSLASHGlstext] = ACTIONS(6237), - [anon_sym_BSLASHGLStext] = ACTIONS(6237), - [anon_sym_BSLASHglsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6237), - [anon_sym_BSLASHglsplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSplural] = ACTIONS(6237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHglsname] = ACTIONS(6237), - [anon_sym_BSLASHGlsname] = ACTIONS(6237), - [anon_sym_BSLASHGLSname] = ACTIONS(6237), - [anon_sym_BSLASHglssymbol] = ACTIONS(6237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6237), - [anon_sym_BSLASHglsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6237), - [anon_sym_BSLASHglsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6237), - [anon_sym_BSLASHglsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6237), - [anon_sym_BSLASHglsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6237), - [anon_sym_BSLASHglsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6237), - [anon_sym_BSLASHnewacronym] = ACTIONS(6237), - [anon_sym_BSLASHacrshort] = ACTIONS(6237), - [anon_sym_BSLASHAcrshort] = ACTIONS(6237), - [anon_sym_BSLASHACRshort] = ACTIONS(6237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6237), - [anon_sym_BSLASHacrlong] = ACTIONS(6237), - [anon_sym_BSLASHAcrlong] = ACTIONS(6237), - [anon_sym_BSLASHACRlong] = ACTIONS(6237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6237), - [anon_sym_BSLASHacrfull] = ACTIONS(6237), - [anon_sym_BSLASHAcrfull] = ACTIONS(6237), - [anon_sym_BSLASHACRfull] = ACTIONS(6237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6237), - [anon_sym_BSLASHacs] = ACTIONS(6237), - [anon_sym_BSLASHAcs] = ACTIONS(6237), - [anon_sym_BSLASHacsp] = ACTIONS(6237), - [anon_sym_BSLASHAcsp] = ACTIONS(6237), - [anon_sym_BSLASHacl] = ACTIONS(6237), - [anon_sym_BSLASHAcl] = ACTIONS(6237), - [anon_sym_BSLASHaclp] = ACTIONS(6237), - [anon_sym_BSLASHAclp] = ACTIONS(6237), - [anon_sym_BSLASHacf] = ACTIONS(6237), - [anon_sym_BSLASHAcf] = ACTIONS(6237), - [anon_sym_BSLASHacfp] = ACTIONS(6237), - [anon_sym_BSLASHAcfp] = ACTIONS(6237), - [anon_sym_BSLASHac] = ACTIONS(6237), - [anon_sym_BSLASHAc] = ACTIONS(6237), - [anon_sym_BSLASHacp] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6237), - [anon_sym_BSLASHcolor] = ACTIONS(6237), - [anon_sym_BSLASHcolorbox] = ACTIONS(6237), - [anon_sym_BSLASHtextcolor] = ACTIONS(6237), - [anon_sym_BSLASHpagecolor] = ACTIONS(6237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6237), - [anon_sym_BSLASHtext] = ACTIONS(6237), - [anon_sym_BSLASHintertext] = ACTIONS(6237), - [anon_sym_shortintertext] = ACTIONS(6237), - }, - [1517] = { - [sym_command_name] = ACTIONS(6241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6241), - [anon_sym_LBRACK] = ACTIONS(6243), - [anon_sym_RBRACK] = ACTIONS(6243), - [anon_sym_COMMA] = ACTIONS(6243), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_LPAREN] = ACTIONS(6243), - [anon_sym_RPAREN] = ACTIONS(6243), - [anon_sym_LBRACE] = ACTIONS(6243), - [sym_word] = ACTIONS(6241), - [sym_placeholder] = ACTIONS(6243), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6243), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(6241), - [anon_sym_GT] = ACTIONS(6241), - [anon_sym_BANG] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_SQUOTE] = ACTIONS(6241), - [anon_sym__] = ACTIONS(6243), - [anon_sym_CARET] = ACTIONS(6243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), - [anon_sym_DOLLAR] = ACTIONS(6241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), - [anon_sym_BSLASHbegin] = ACTIONS(6241), - [anon_sym_BSLASHend] = ACTIONS(6241), - [anon_sym_BSLASHtitle] = ACTIONS(6241), - [anon_sym_BSLASHauthor] = ACTIONS(6241), - [anon_sym_BSLASHusepackage] = ACTIONS(6241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), - [anon_sym_BSLASHinclude] = ACTIONS(6241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), - [anon_sym_BSLASHinput] = ACTIONS(6241), - [anon_sym_BSLASHsubfile] = ACTIONS(6241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), - [anon_sym_BSLASHbibliography] = ACTIONS(6241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), - [anon_sym_BSLASHincludesvg] = ACTIONS(6241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), - [anon_sym_BSLASHimport] = ACTIONS(6241), - [anon_sym_BSLASHsubimport] = ACTIONS(6241), - [anon_sym_BSLASHinputfrom] = ACTIONS(6241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), - [anon_sym_BSLASHincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHcaption] = ACTIONS(6241), - [anon_sym_BSLASHcite] = ACTIONS(6241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCite] = ACTIONS(6241), - [anon_sym_BSLASHnocite] = ACTIONS(6241), - [anon_sym_BSLASHcitet] = ACTIONS(6241), - [anon_sym_BSLASHcitep] = ACTIONS(6241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteauthor] = ACTIONS(6241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitetitle] = ACTIONS(6241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteyear] = ACTIONS(6241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitedate] = ACTIONS(6241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteurl] = ACTIONS(6241), - [anon_sym_BSLASHfullcite] = ACTIONS(6241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), - [anon_sym_BSLASHcitealt] = ACTIONS(6241), - [anon_sym_BSLASHcitealp] = ACTIONS(6241), - [anon_sym_BSLASHcitetext] = ACTIONS(6241), - [anon_sym_BSLASHparencite] = ACTIONS(6241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHParencite] = ACTIONS(6241), - [anon_sym_BSLASHfootcite] = ACTIONS(6241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), - [anon_sym_BSLASHtextcite] = ACTIONS(6241), - [anon_sym_BSLASHTextcite] = ACTIONS(6241), - [anon_sym_BSLASHsmartcite] = ACTIONS(6241), - [anon_sym_BSLASHSmartcite] = ACTIONS(6241), - [anon_sym_BSLASHsupercite] = ACTIONS(6241), - [anon_sym_BSLASHautocite] = ACTIONS(6241), - [anon_sym_BSLASHAutocite] = ACTIONS(6241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHvolcite] = ACTIONS(6241), - [anon_sym_BSLASHVolcite] = ACTIONS(6241), - [anon_sym_BSLASHpvolcite] = ACTIONS(6241), - [anon_sym_BSLASHPvolcite] = ACTIONS(6241), - [anon_sym_BSLASHfvolcite] = ACTIONS(6241), - [anon_sym_BSLASHftvolcite] = ACTIONS(6241), - [anon_sym_BSLASHsvolcite] = ACTIONS(6241), - [anon_sym_BSLASHSvolcite] = ACTIONS(6241), - [anon_sym_BSLASHtvolcite] = ACTIONS(6241), - [anon_sym_BSLASHTvolcite] = ACTIONS(6241), - [anon_sym_BSLASHavolcite] = ACTIONS(6241), - [anon_sym_BSLASHAvolcite] = ACTIONS(6241), - [anon_sym_BSLASHnotecite] = ACTIONS(6241), - [anon_sym_BSLASHNotecite] = ACTIONS(6241), - [anon_sym_BSLASHpnotecite] = ACTIONS(6241), - [anon_sym_BSLASHPnotecite] = ACTIONS(6241), - [anon_sym_BSLASHfnotecite] = ACTIONS(6241), - [anon_sym_BSLASHlabel] = ACTIONS(6241), - [anon_sym_BSLASHref] = ACTIONS(6241), - [anon_sym_BSLASHeqref] = ACTIONS(6241), - [anon_sym_BSLASHvref] = ACTIONS(6241), - [anon_sym_BSLASHVref] = ACTIONS(6241), - [anon_sym_BSLASHautoref] = ACTIONS(6241), - [anon_sym_BSLASHpageref] = ACTIONS(6241), - [anon_sym_BSLASHcref] = ACTIONS(6241), - [anon_sym_BSLASHCref] = ACTIONS(6241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnameCref] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHlabelcref] = ACTIONS(6241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCrefrange] = ACTIONS(6241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnewlabel] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHdef] = ACTIONS(6241), - [anon_sym_BSLASHlet] = ACTIONS(6241), - [anon_sym_BSLASHleft] = ACTIONS(6241), - [anon_sym_BSLASHbig] = ACTIONS(6241), - [anon_sym_BSLASHBig] = ACTIONS(6241), - [anon_sym_BSLASHbigg] = ACTIONS(6241), - [anon_sym_BSLASHBigg] = ACTIONS(6241), - [anon_sym_BSLASHbigl] = ACTIONS(6241), - [anon_sym_BSLASHBigl] = ACTIONS(6241), - [anon_sym_BSLASHbiggl] = ACTIONS(6241), - [anon_sym_BSLASHBiggl] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), - [anon_sym_BSLASHgls] = ACTIONS(6241), - [anon_sym_BSLASHGls] = ACTIONS(6241), - [anon_sym_BSLASHGLS] = ACTIONS(6241), - [anon_sym_BSLASHglspl] = ACTIONS(6241), - [anon_sym_BSLASHGlspl] = ACTIONS(6241), - [anon_sym_BSLASHGLSpl] = ACTIONS(6241), - [anon_sym_BSLASHglsdisp] = ACTIONS(6241), - [anon_sym_BSLASHglslink] = ACTIONS(6241), - [anon_sym_BSLASHglstext] = ACTIONS(6241), - [anon_sym_BSLASHGlstext] = ACTIONS(6241), - [anon_sym_BSLASHGLStext] = ACTIONS(6241), - [anon_sym_BSLASHglsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), - [anon_sym_BSLASHglsplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSplural] = ACTIONS(6241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHglsname] = ACTIONS(6241), - [anon_sym_BSLASHGlsname] = ACTIONS(6241), - [anon_sym_BSLASHGLSname] = ACTIONS(6241), - [anon_sym_BSLASHglssymbol] = ACTIONS(6241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), - [anon_sym_BSLASHglsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), - [anon_sym_BSLASHglsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), - [anon_sym_BSLASHglsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), - [anon_sym_BSLASHglsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), - [anon_sym_BSLASHglsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), - [anon_sym_BSLASHnewacronym] = ACTIONS(6241), - [anon_sym_BSLASHacrshort] = ACTIONS(6241), - [anon_sym_BSLASHAcrshort] = ACTIONS(6241), - [anon_sym_BSLASHACRshort] = ACTIONS(6241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), - [anon_sym_BSLASHacrlong] = ACTIONS(6241), - [anon_sym_BSLASHAcrlong] = ACTIONS(6241), - [anon_sym_BSLASHACRlong] = ACTIONS(6241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), - [anon_sym_BSLASHacrfull] = ACTIONS(6241), - [anon_sym_BSLASHAcrfull] = ACTIONS(6241), - [anon_sym_BSLASHACRfull] = ACTIONS(6241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), - [anon_sym_BSLASHacs] = ACTIONS(6241), - [anon_sym_BSLASHAcs] = ACTIONS(6241), - [anon_sym_BSLASHacsp] = ACTIONS(6241), - [anon_sym_BSLASHAcsp] = ACTIONS(6241), - [anon_sym_BSLASHacl] = ACTIONS(6241), - [anon_sym_BSLASHAcl] = ACTIONS(6241), - [anon_sym_BSLASHaclp] = ACTIONS(6241), - [anon_sym_BSLASHAclp] = ACTIONS(6241), - [anon_sym_BSLASHacf] = ACTIONS(6241), - [anon_sym_BSLASHAcf] = ACTIONS(6241), - [anon_sym_BSLASHacfp] = ACTIONS(6241), - [anon_sym_BSLASHAcfp] = ACTIONS(6241), - [anon_sym_BSLASHac] = ACTIONS(6241), - [anon_sym_BSLASHAc] = ACTIONS(6241), - [anon_sym_BSLASHacp] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), - [anon_sym_BSLASHcolor] = ACTIONS(6241), - [anon_sym_BSLASHcolorbox] = ACTIONS(6241), - [anon_sym_BSLASHtextcolor] = ACTIONS(6241), - [anon_sym_BSLASHpagecolor] = ACTIONS(6241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), - [anon_sym_BSLASHtext] = ACTIONS(6241), - [anon_sym_BSLASHintertext] = ACTIONS(6241), - [anon_sym_shortintertext] = ACTIONS(6241), - }, - [1518] = { - [sym_command_name] = ACTIONS(6029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6029), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_EQ] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_LBRACE] = ACTIONS(6031), - [sym_word] = ACTIONS(6029), - [sym_placeholder] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6031), - [anon_sym_DASH] = ACTIONS(6031), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6029), - [anon_sym_GT] = ACTIONS(6029), - [anon_sym_BANG] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_COLON] = ACTIONS(6029), - [anon_sym_SQUOTE] = ACTIONS(6029), - [anon_sym__] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), - [anon_sym_BSLASHbegin] = ACTIONS(6029), - [anon_sym_BSLASHend] = ACTIONS(6029), - [anon_sym_BSLASHtitle] = ACTIONS(6029), - [anon_sym_BSLASHauthor] = ACTIONS(6029), - [anon_sym_BSLASHusepackage] = ACTIONS(6029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), - [anon_sym_BSLASHinclude] = ACTIONS(6029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), - [anon_sym_BSLASHinput] = ACTIONS(6029), - [anon_sym_BSLASHsubfile] = ACTIONS(6029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), - [anon_sym_BSLASHbibliography] = ACTIONS(6029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), - [anon_sym_BSLASHincludesvg] = ACTIONS(6029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), - [anon_sym_BSLASHimport] = ACTIONS(6029), - [anon_sym_BSLASHsubimport] = ACTIONS(6029), - [anon_sym_BSLASHinputfrom] = ACTIONS(6029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), - [anon_sym_BSLASHincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHcaption] = ACTIONS(6029), - [anon_sym_BSLASHcite] = ACTIONS(6029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCite] = ACTIONS(6029), - [anon_sym_BSLASHnocite] = ACTIONS(6029), - [anon_sym_BSLASHcitet] = ACTIONS(6029), - [anon_sym_BSLASHcitep] = ACTIONS(6029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteauthor] = ACTIONS(6029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitetitle] = ACTIONS(6029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteyear] = ACTIONS(6029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitedate] = ACTIONS(6029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteurl] = ACTIONS(6029), - [anon_sym_BSLASHfullcite] = ACTIONS(6029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), - [anon_sym_BSLASHcitealt] = ACTIONS(6029), - [anon_sym_BSLASHcitealp] = ACTIONS(6029), - [anon_sym_BSLASHcitetext] = ACTIONS(6029), - [anon_sym_BSLASHparencite] = ACTIONS(6029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHParencite] = ACTIONS(6029), - [anon_sym_BSLASHfootcite] = ACTIONS(6029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), - [anon_sym_BSLASHtextcite] = ACTIONS(6029), - [anon_sym_BSLASHTextcite] = ACTIONS(6029), - [anon_sym_BSLASHsmartcite] = ACTIONS(6029), - [anon_sym_BSLASHSmartcite] = ACTIONS(6029), - [anon_sym_BSLASHsupercite] = ACTIONS(6029), - [anon_sym_BSLASHautocite] = ACTIONS(6029), - [anon_sym_BSLASHAutocite] = ACTIONS(6029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHvolcite] = ACTIONS(6029), - [anon_sym_BSLASHVolcite] = ACTIONS(6029), - [anon_sym_BSLASHpvolcite] = ACTIONS(6029), - [anon_sym_BSLASHPvolcite] = ACTIONS(6029), - [anon_sym_BSLASHfvolcite] = ACTIONS(6029), - [anon_sym_BSLASHftvolcite] = ACTIONS(6029), - [anon_sym_BSLASHsvolcite] = ACTIONS(6029), - [anon_sym_BSLASHSvolcite] = ACTIONS(6029), - [anon_sym_BSLASHtvolcite] = ACTIONS(6029), - [anon_sym_BSLASHTvolcite] = ACTIONS(6029), - [anon_sym_BSLASHavolcite] = ACTIONS(6029), - [anon_sym_BSLASHAvolcite] = ACTIONS(6029), - [anon_sym_BSLASHnotecite] = ACTIONS(6029), - [anon_sym_BSLASHNotecite] = ACTIONS(6029), - [anon_sym_BSLASHpnotecite] = ACTIONS(6029), - [anon_sym_BSLASHPnotecite] = ACTIONS(6029), - [anon_sym_BSLASHfnotecite] = ACTIONS(6029), - [anon_sym_BSLASHlabel] = ACTIONS(6029), - [anon_sym_BSLASHref] = ACTIONS(6029), - [anon_sym_BSLASHeqref] = ACTIONS(6029), - [anon_sym_BSLASHvref] = ACTIONS(6029), - [anon_sym_BSLASHVref] = ACTIONS(6029), - [anon_sym_BSLASHautoref] = ACTIONS(6029), - [anon_sym_BSLASHpageref] = ACTIONS(6029), - [anon_sym_BSLASHcref] = ACTIONS(6029), - [anon_sym_BSLASHCref] = ACTIONS(6029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnameCref] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHlabelcref] = ACTIONS(6029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCrefrange] = ACTIONS(6029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnewlabel] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHdef] = ACTIONS(6029), - [anon_sym_BSLASHlet] = ACTIONS(6029), - [anon_sym_BSLASHleft] = ACTIONS(6029), - [anon_sym_BSLASHbig] = ACTIONS(6029), - [anon_sym_BSLASHBig] = ACTIONS(6029), - [anon_sym_BSLASHbigg] = ACTIONS(6029), - [anon_sym_BSLASHBigg] = ACTIONS(6029), - [anon_sym_BSLASHbigl] = ACTIONS(6029), - [anon_sym_BSLASHBigl] = ACTIONS(6029), - [anon_sym_BSLASHbiggl] = ACTIONS(6029), - [anon_sym_BSLASHBiggl] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), - [anon_sym_BSLASHgls] = ACTIONS(6029), - [anon_sym_BSLASHGls] = ACTIONS(6029), - [anon_sym_BSLASHGLS] = ACTIONS(6029), - [anon_sym_BSLASHglspl] = ACTIONS(6029), - [anon_sym_BSLASHGlspl] = ACTIONS(6029), - [anon_sym_BSLASHGLSpl] = ACTIONS(6029), - [anon_sym_BSLASHglsdisp] = ACTIONS(6029), - [anon_sym_BSLASHglslink] = ACTIONS(6029), - [anon_sym_BSLASHglstext] = ACTIONS(6029), - [anon_sym_BSLASHGlstext] = ACTIONS(6029), - [anon_sym_BSLASHGLStext] = ACTIONS(6029), - [anon_sym_BSLASHglsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), - [anon_sym_BSLASHglsplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSplural] = ACTIONS(6029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHglsname] = ACTIONS(6029), - [anon_sym_BSLASHGlsname] = ACTIONS(6029), - [anon_sym_BSLASHGLSname] = ACTIONS(6029), - [anon_sym_BSLASHglssymbol] = ACTIONS(6029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), - [anon_sym_BSLASHglsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), - [anon_sym_BSLASHglsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), - [anon_sym_BSLASHglsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), - [anon_sym_BSLASHglsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), - [anon_sym_BSLASHglsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), - [anon_sym_BSLASHnewacronym] = ACTIONS(6029), - [anon_sym_BSLASHacrshort] = ACTIONS(6029), - [anon_sym_BSLASHAcrshort] = ACTIONS(6029), - [anon_sym_BSLASHACRshort] = ACTIONS(6029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), - [anon_sym_BSLASHacrlong] = ACTIONS(6029), - [anon_sym_BSLASHAcrlong] = ACTIONS(6029), - [anon_sym_BSLASHACRlong] = ACTIONS(6029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), - [anon_sym_BSLASHacrfull] = ACTIONS(6029), - [anon_sym_BSLASHAcrfull] = ACTIONS(6029), - [anon_sym_BSLASHACRfull] = ACTIONS(6029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), - [anon_sym_BSLASHacs] = ACTIONS(6029), - [anon_sym_BSLASHAcs] = ACTIONS(6029), - [anon_sym_BSLASHacsp] = ACTIONS(6029), - [anon_sym_BSLASHAcsp] = ACTIONS(6029), - [anon_sym_BSLASHacl] = ACTIONS(6029), - [anon_sym_BSLASHAcl] = ACTIONS(6029), - [anon_sym_BSLASHaclp] = ACTIONS(6029), - [anon_sym_BSLASHAclp] = ACTIONS(6029), - [anon_sym_BSLASHacf] = ACTIONS(6029), - [anon_sym_BSLASHAcf] = ACTIONS(6029), - [anon_sym_BSLASHacfp] = ACTIONS(6029), - [anon_sym_BSLASHAcfp] = ACTIONS(6029), - [anon_sym_BSLASHac] = ACTIONS(6029), - [anon_sym_BSLASHAc] = ACTIONS(6029), - [anon_sym_BSLASHacp] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), - [anon_sym_BSLASHcolor] = ACTIONS(6029), - [anon_sym_BSLASHcolorbox] = ACTIONS(6029), - [anon_sym_BSLASHtextcolor] = ACTIONS(6029), - [anon_sym_BSLASHpagecolor] = ACTIONS(6029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), - [anon_sym_BSLASHtext] = ACTIONS(6029), - [anon_sym_BSLASHintertext] = ACTIONS(6029), - [anon_sym_shortintertext] = ACTIONS(6029), - }, - [1519] = { - [sym_command_name] = ACTIONS(6273), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6273), - [anon_sym_LBRACK] = ACTIONS(6275), - [anon_sym_RBRACK] = ACTIONS(6275), - [anon_sym_COMMA] = ACTIONS(6275), - [anon_sym_EQ] = ACTIONS(6275), - [anon_sym_LPAREN] = ACTIONS(6275), - [anon_sym_RPAREN] = ACTIONS(6275), - [anon_sym_LBRACE] = ACTIONS(6275), - [sym_word] = ACTIONS(6273), - [sym_placeholder] = ACTIONS(6275), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_SQUOTE] = ACTIONS(6273), - [anon_sym__] = ACTIONS(6275), - [anon_sym_CARET] = ACTIONS(6275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6275), - [anon_sym_DOLLAR] = ACTIONS(6273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6275), - [anon_sym_BSLASHbegin] = ACTIONS(6273), - [anon_sym_BSLASHend] = ACTIONS(6273), - [anon_sym_BSLASHtitle] = ACTIONS(6273), - [anon_sym_BSLASHauthor] = ACTIONS(6273), - [anon_sym_BSLASHusepackage] = ACTIONS(6273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6273), - [anon_sym_BSLASHinclude] = ACTIONS(6273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6273), - [anon_sym_BSLASHinput] = ACTIONS(6273), - [anon_sym_BSLASHsubfile] = ACTIONS(6273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6273), - [anon_sym_BSLASHbibliography] = ACTIONS(6273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6273), - [anon_sym_BSLASHincludesvg] = ACTIONS(6273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6273), - [anon_sym_BSLASHimport] = ACTIONS(6273), - [anon_sym_BSLASHsubimport] = ACTIONS(6273), - [anon_sym_BSLASHinputfrom] = ACTIONS(6273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6273), - [anon_sym_BSLASHincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHcaption] = ACTIONS(6273), - [anon_sym_BSLASHcite] = ACTIONS(6273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCite] = ACTIONS(6273), - [anon_sym_BSLASHnocite] = ACTIONS(6273), - [anon_sym_BSLASHcitet] = ACTIONS(6273), - [anon_sym_BSLASHcitep] = ACTIONS(6273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteauthor] = ACTIONS(6273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitetitle] = ACTIONS(6273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteyear] = ACTIONS(6273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitedate] = ACTIONS(6273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteurl] = ACTIONS(6273), - [anon_sym_BSLASHfullcite] = ACTIONS(6273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6273), - [anon_sym_BSLASHcitealt] = ACTIONS(6273), - [anon_sym_BSLASHcitealp] = ACTIONS(6273), - [anon_sym_BSLASHcitetext] = ACTIONS(6273), - [anon_sym_BSLASHparencite] = ACTIONS(6273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHParencite] = ACTIONS(6273), - [anon_sym_BSLASHfootcite] = ACTIONS(6273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6273), - [anon_sym_BSLASHtextcite] = ACTIONS(6273), - [anon_sym_BSLASHTextcite] = ACTIONS(6273), - [anon_sym_BSLASHsmartcite] = ACTIONS(6273), - [anon_sym_BSLASHSmartcite] = ACTIONS(6273), - [anon_sym_BSLASHsupercite] = ACTIONS(6273), - [anon_sym_BSLASHautocite] = ACTIONS(6273), - [anon_sym_BSLASHAutocite] = ACTIONS(6273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHvolcite] = ACTIONS(6273), - [anon_sym_BSLASHVolcite] = ACTIONS(6273), - [anon_sym_BSLASHpvolcite] = ACTIONS(6273), - [anon_sym_BSLASHPvolcite] = ACTIONS(6273), - [anon_sym_BSLASHfvolcite] = ACTIONS(6273), - [anon_sym_BSLASHftvolcite] = ACTIONS(6273), - [anon_sym_BSLASHsvolcite] = ACTIONS(6273), - [anon_sym_BSLASHSvolcite] = ACTIONS(6273), - [anon_sym_BSLASHtvolcite] = ACTIONS(6273), - [anon_sym_BSLASHTvolcite] = ACTIONS(6273), - [anon_sym_BSLASHavolcite] = ACTIONS(6273), - [anon_sym_BSLASHAvolcite] = ACTIONS(6273), - [anon_sym_BSLASHnotecite] = ACTIONS(6273), - [anon_sym_BSLASHNotecite] = ACTIONS(6273), - [anon_sym_BSLASHpnotecite] = ACTIONS(6273), - [anon_sym_BSLASHPnotecite] = ACTIONS(6273), - [anon_sym_BSLASHfnotecite] = ACTIONS(6273), - [anon_sym_BSLASHlabel] = ACTIONS(6273), - [anon_sym_BSLASHref] = ACTIONS(6273), - [anon_sym_BSLASHeqref] = ACTIONS(6273), - [anon_sym_BSLASHvref] = ACTIONS(6273), - [anon_sym_BSLASHVref] = ACTIONS(6273), - [anon_sym_BSLASHautoref] = ACTIONS(6273), - [anon_sym_BSLASHpageref] = ACTIONS(6273), - [anon_sym_BSLASHcref] = ACTIONS(6273), - [anon_sym_BSLASHCref] = ACTIONS(6273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnameCref] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHlabelcref] = ACTIONS(6273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCrefrange] = ACTIONS(6273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnewlabel] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6275), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHdef] = ACTIONS(6273), - [anon_sym_BSLASHlet] = ACTIONS(6273), - [anon_sym_BSLASHleft] = ACTIONS(6273), - [anon_sym_BSLASHbig] = ACTIONS(6273), - [anon_sym_BSLASHBig] = ACTIONS(6273), - [anon_sym_BSLASHbigg] = ACTIONS(6273), - [anon_sym_BSLASHBigg] = ACTIONS(6273), - [anon_sym_BSLASHbigl] = ACTIONS(6273), - [anon_sym_BSLASHBigl] = ACTIONS(6273), - [anon_sym_BSLASHbiggl] = ACTIONS(6273), - [anon_sym_BSLASHBiggl] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6273), - [anon_sym_BSLASHgls] = ACTIONS(6273), - [anon_sym_BSLASHGls] = ACTIONS(6273), - [anon_sym_BSLASHGLS] = ACTIONS(6273), - [anon_sym_BSLASHglspl] = ACTIONS(6273), - [anon_sym_BSLASHGlspl] = ACTIONS(6273), - [anon_sym_BSLASHGLSpl] = ACTIONS(6273), - [anon_sym_BSLASHglsdisp] = ACTIONS(6273), - [anon_sym_BSLASHglslink] = ACTIONS(6273), - [anon_sym_BSLASHglstext] = ACTIONS(6273), - [anon_sym_BSLASHGlstext] = ACTIONS(6273), - [anon_sym_BSLASHGLStext] = ACTIONS(6273), - [anon_sym_BSLASHglsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6273), - [anon_sym_BSLASHglsplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSplural] = ACTIONS(6273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHglsname] = ACTIONS(6273), - [anon_sym_BSLASHGlsname] = ACTIONS(6273), - [anon_sym_BSLASHGLSname] = ACTIONS(6273), - [anon_sym_BSLASHglssymbol] = ACTIONS(6273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6273), - [anon_sym_BSLASHglsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6273), - [anon_sym_BSLASHglsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6273), - [anon_sym_BSLASHglsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6273), - [anon_sym_BSLASHglsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6273), - [anon_sym_BSLASHglsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6273), - [anon_sym_BSLASHnewacronym] = ACTIONS(6273), - [anon_sym_BSLASHacrshort] = ACTIONS(6273), - [anon_sym_BSLASHAcrshort] = ACTIONS(6273), - [anon_sym_BSLASHACRshort] = ACTIONS(6273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6273), - [anon_sym_BSLASHacrlong] = ACTIONS(6273), - [anon_sym_BSLASHAcrlong] = ACTIONS(6273), - [anon_sym_BSLASHACRlong] = ACTIONS(6273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6273), - [anon_sym_BSLASHacrfull] = ACTIONS(6273), - [anon_sym_BSLASHAcrfull] = ACTIONS(6273), - [anon_sym_BSLASHACRfull] = ACTIONS(6273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6273), - [anon_sym_BSLASHacs] = ACTIONS(6273), - [anon_sym_BSLASHAcs] = ACTIONS(6273), - [anon_sym_BSLASHacsp] = ACTIONS(6273), - [anon_sym_BSLASHAcsp] = ACTIONS(6273), - [anon_sym_BSLASHacl] = ACTIONS(6273), - [anon_sym_BSLASHAcl] = ACTIONS(6273), - [anon_sym_BSLASHaclp] = ACTIONS(6273), - [anon_sym_BSLASHAclp] = ACTIONS(6273), - [anon_sym_BSLASHacf] = ACTIONS(6273), - [anon_sym_BSLASHAcf] = ACTIONS(6273), - [anon_sym_BSLASHacfp] = ACTIONS(6273), - [anon_sym_BSLASHAcfp] = ACTIONS(6273), - [anon_sym_BSLASHac] = ACTIONS(6273), - [anon_sym_BSLASHAc] = ACTIONS(6273), - [anon_sym_BSLASHacp] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6273), - [anon_sym_BSLASHcolor] = ACTIONS(6273), - [anon_sym_BSLASHcolorbox] = ACTIONS(6273), - [anon_sym_BSLASHtextcolor] = ACTIONS(6273), - [anon_sym_BSLASHpagecolor] = ACTIONS(6273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6273), - [anon_sym_BSLASHtext] = ACTIONS(6273), - [anon_sym_BSLASHintertext] = ACTIONS(6273), - [anon_sym_shortintertext] = ACTIONS(6273), - }, - [1520] = { - [sym_command_name] = ACTIONS(6289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(6291), - [anon_sym_RBRACK] = ACTIONS(6291), - [anon_sym_COMMA] = ACTIONS(6291), - [anon_sym_EQ] = ACTIONS(6291), - [anon_sym_LPAREN] = ACTIONS(6291), - [anon_sym_RPAREN] = ACTIONS(6291), - [anon_sym_LBRACE] = ACTIONS(6291), - [sym_word] = ACTIONS(6289), - [sym_placeholder] = ACTIONS(6291), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6291), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_LT] = ACTIONS(6289), - [anon_sym_GT] = ACTIONS(6289), - [anon_sym_BANG] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_SQUOTE] = ACTIONS(6289), - [anon_sym__] = ACTIONS(6291), - [anon_sym_CARET] = ACTIONS(6291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6291), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6291), - [anon_sym_DOLLAR] = ACTIONS(6289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6291), - [anon_sym_BSLASHbegin] = ACTIONS(6289), - [anon_sym_BSLASHend] = ACTIONS(6289), - [anon_sym_BSLASHtitle] = ACTIONS(6289), - [anon_sym_BSLASHauthor] = ACTIONS(6289), - [anon_sym_BSLASHusepackage] = ACTIONS(6289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), - [anon_sym_BSLASHinclude] = ACTIONS(6289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), - [anon_sym_BSLASHinput] = ACTIONS(6289), - [anon_sym_BSLASHsubfile] = ACTIONS(6289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), - [anon_sym_BSLASHbibliography] = ACTIONS(6289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), - [anon_sym_BSLASHincludesvg] = ACTIONS(6289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), - [anon_sym_BSLASHimport] = ACTIONS(6289), - [anon_sym_BSLASHsubimport] = ACTIONS(6289), - [anon_sym_BSLASHinputfrom] = ACTIONS(6289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), - [anon_sym_BSLASHincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHcaption] = ACTIONS(6289), - [anon_sym_BSLASHcite] = ACTIONS(6289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCite] = ACTIONS(6289), - [anon_sym_BSLASHnocite] = ACTIONS(6289), - [anon_sym_BSLASHcitet] = ACTIONS(6289), - [anon_sym_BSLASHcitep] = ACTIONS(6289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteauthor] = ACTIONS(6289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitetitle] = ACTIONS(6289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteyear] = ACTIONS(6289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitedate] = ACTIONS(6289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteurl] = ACTIONS(6289), - [anon_sym_BSLASHfullcite] = ACTIONS(6289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), - [anon_sym_BSLASHcitealt] = ACTIONS(6289), - [anon_sym_BSLASHcitealp] = ACTIONS(6289), - [anon_sym_BSLASHcitetext] = ACTIONS(6289), - [anon_sym_BSLASHparencite] = ACTIONS(6289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHParencite] = ACTIONS(6289), - [anon_sym_BSLASHfootcite] = ACTIONS(6289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), - [anon_sym_BSLASHtextcite] = ACTIONS(6289), - [anon_sym_BSLASHTextcite] = ACTIONS(6289), - [anon_sym_BSLASHsmartcite] = ACTIONS(6289), - [anon_sym_BSLASHSmartcite] = ACTIONS(6289), - [anon_sym_BSLASHsupercite] = ACTIONS(6289), - [anon_sym_BSLASHautocite] = ACTIONS(6289), - [anon_sym_BSLASHAutocite] = ACTIONS(6289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHvolcite] = ACTIONS(6289), - [anon_sym_BSLASHVolcite] = ACTIONS(6289), - [anon_sym_BSLASHpvolcite] = ACTIONS(6289), - [anon_sym_BSLASHPvolcite] = ACTIONS(6289), - [anon_sym_BSLASHfvolcite] = ACTIONS(6289), - [anon_sym_BSLASHftvolcite] = ACTIONS(6289), - [anon_sym_BSLASHsvolcite] = ACTIONS(6289), - [anon_sym_BSLASHSvolcite] = ACTIONS(6289), - [anon_sym_BSLASHtvolcite] = ACTIONS(6289), - [anon_sym_BSLASHTvolcite] = ACTIONS(6289), - [anon_sym_BSLASHavolcite] = ACTIONS(6289), - [anon_sym_BSLASHAvolcite] = ACTIONS(6289), - [anon_sym_BSLASHnotecite] = ACTIONS(6289), - [anon_sym_BSLASHNotecite] = ACTIONS(6289), - [anon_sym_BSLASHpnotecite] = ACTIONS(6289), - [anon_sym_BSLASHPnotecite] = ACTIONS(6289), - [anon_sym_BSLASHfnotecite] = ACTIONS(6289), - [anon_sym_BSLASHlabel] = ACTIONS(6289), - [anon_sym_BSLASHref] = ACTIONS(6289), - [anon_sym_BSLASHeqref] = ACTIONS(6289), - [anon_sym_BSLASHvref] = ACTIONS(6289), - [anon_sym_BSLASHVref] = ACTIONS(6289), - [anon_sym_BSLASHautoref] = ACTIONS(6289), - [anon_sym_BSLASHpageref] = ACTIONS(6289), - [anon_sym_BSLASHcref] = ACTIONS(6289), - [anon_sym_BSLASHCref] = ACTIONS(6289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnameCref] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHlabelcref] = ACTIONS(6289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCrefrange] = ACTIONS(6289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnewlabel] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHdef] = ACTIONS(6289), - [anon_sym_BSLASHlet] = ACTIONS(6289), - [anon_sym_BSLASHleft] = ACTIONS(6289), - [anon_sym_BSLASHbig] = ACTIONS(6289), - [anon_sym_BSLASHBig] = ACTIONS(6289), - [anon_sym_BSLASHbigg] = ACTIONS(6289), - [anon_sym_BSLASHBigg] = ACTIONS(6289), - [anon_sym_BSLASHbigl] = ACTIONS(6289), - [anon_sym_BSLASHBigl] = ACTIONS(6289), - [anon_sym_BSLASHbiggl] = ACTIONS(6289), - [anon_sym_BSLASHBiggl] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), - [anon_sym_BSLASHgls] = ACTIONS(6289), - [anon_sym_BSLASHGls] = ACTIONS(6289), - [anon_sym_BSLASHGLS] = ACTIONS(6289), - [anon_sym_BSLASHglspl] = ACTIONS(6289), - [anon_sym_BSLASHGlspl] = ACTIONS(6289), - [anon_sym_BSLASHGLSpl] = ACTIONS(6289), - [anon_sym_BSLASHglsdisp] = ACTIONS(6289), - [anon_sym_BSLASHglslink] = ACTIONS(6289), - [anon_sym_BSLASHglstext] = ACTIONS(6289), - [anon_sym_BSLASHGlstext] = ACTIONS(6289), - [anon_sym_BSLASHGLStext] = ACTIONS(6289), - [anon_sym_BSLASHglsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), - [anon_sym_BSLASHglsplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSplural] = ACTIONS(6289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHglsname] = ACTIONS(6289), - [anon_sym_BSLASHGlsname] = ACTIONS(6289), - [anon_sym_BSLASHGLSname] = ACTIONS(6289), - [anon_sym_BSLASHglssymbol] = ACTIONS(6289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), - [anon_sym_BSLASHglsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), - [anon_sym_BSLASHglsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), - [anon_sym_BSLASHglsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), - [anon_sym_BSLASHglsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), - [anon_sym_BSLASHglsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), - [anon_sym_BSLASHnewacronym] = ACTIONS(6289), - [anon_sym_BSLASHacrshort] = ACTIONS(6289), - [anon_sym_BSLASHAcrshort] = ACTIONS(6289), - [anon_sym_BSLASHACRshort] = ACTIONS(6289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), - [anon_sym_BSLASHacrlong] = ACTIONS(6289), - [anon_sym_BSLASHAcrlong] = ACTIONS(6289), - [anon_sym_BSLASHACRlong] = ACTIONS(6289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), - [anon_sym_BSLASHacrfull] = ACTIONS(6289), - [anon_sym_BSLASHAcrfull] = ACTIONS(6289), - [anon_sym_BSLASHACRfull] = ACTIONS(6289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), - [anon_sym_BSLASHacs] = ACTIONS(6289), - [anon_sym_BSLASHAcs] = ACTIONS(6289), - [anon_sym_BSLASHacsp] = ACTIONS(6289), - [anon_sym_BSLASHAcsp] = ACTIONS(6289), - [anon_sym_BSLASHacl] = ACTIONS(6289), - [anon_sym_BSLASHAcl] = ACTIONS(6289), - [anon_sym_BSLASHaclp] = ACTIONS(6289), - [anon_sym_BSLASHAclp] = ACTIONS(6289), - [anon_sym_BSLASHacf] = ACTIONS(6289), - [anon_sym_BSLASHAcf] = ACTIONS(6289), - [anon_sym_BSLASHacfp] = ACTIONS(6289), - [anon_sym_BSLASHAcfp] = ACTIONS(6289), - [anon_sym_BSLASHac] = ACTIONS(6289), - [anon_sym_BSLASHAc] = ACTIONS(6289), - [anon_sym_BSLASHacp] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), - [anon_sym_BSLASHcolor] = ACTIONS(6289), - [anon_sym_BSLASHcolorbox] = ACTIONS(6289), - [anon_sym_BSLASHtextcolor] = ACTIONS(6289), - [anon_sym_BSLASHpagecolor] = ACTIONS(6289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), - [anon_sym_BSLASHtext] = ACTIONS(6289), - [anon_sym_BSLASHintertext] = ACTIONS(6289), - [anon_sym_shortintertext] = ACTIONS(6289), - }, - [1521] = { - [sym_command_name] = ACTIONS(6293), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(6295), - [anon_sym_RBRACK] = ACTIONS(6295), - [anon_sym_COMMA] = ACTIONS(6295), - [anon_sym_EQ] = ACTIONS(6295), - [anon_sym_LPAREN] = ACTIONS(6295), - [anon_sym_RPAREN] = ACTIONS(6295), - [anon_sym_LBRACE] = ACTIONS(6295), - [sym_word] = ACTIONS(6293), - [sym_placeholder] = ACTIONS(6295), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6295), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_LT] = ACTIONS(6293), - [anon_sym_GT] = ACTIONS(6293), - [anon_sym_BANG] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_SQUOTE] = ACTIONS(6293), - [anon_sym__] = ACTIONS(6295), - [anon_sym_CARET] = ACTIONS(6295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6295), - [anon_sym_DOLLAR] = ACTIONS(6293), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6295), - [anon_sym_BSLASHbegin] = ACTIONS(6293), - [anon_sym_BSLASHend] = ACTIONS(6293), - [anon_sym_BSLASHtitle] = ACTIONS(6293), - [anon_sym_BSLASHauthor] = ACTIONS(6293), - [anon_sym_BSLASHusepackage] = ACTIONS(6293), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6293), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6293), - [anon_sym_BSLASHinclude] = ACTIONS(6293), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6293), - [anon_sym_BSLASHinput] = ACTIONS(6293), - [anon_sym_BSLASHsubfile] = ACTIONS(6293), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6293), - [anon_sym_BSLASHbibliography] = ACTIONS(6293), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6293), - [anon_sym_BSLASHincludesvg] = ACTIONS(6293), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6293), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6293), - [anon_sym_BSLASHimport] = ACTIONS(6293), - [anon_sym_BSLASHsubimport] = ACTIONS(6293), - [anon_sym_BSLASHinputfrom] = ACTIONS(6293), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6293), - [anon_sym_BSLASHincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHcaption] = ACTIONS(6293), - [anon_sym_BSLASHcite] = ACTIONS(6293), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCite] = ACTIONS(6293), - [anon_sym_BSLASHnocite] = ACTIONS(6293), - [anon_sym_BSLASHcitet] = ACTIONS(6293), - [anon_sym_BSLASHcitep] = ACTIONS(6293), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteauthor] = ACTIONS(6293), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6293), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitetitle] = ACTIONS(6293), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteyear] = ACTIONS(6293), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitedate] = ACTIONS(6293), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteurl] = ACTIONS(6293), - [anon_sym_BSLASHfullcite] = ACTIONS(6293), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6293), - [anon_sym_BSLASHcitealt] = ACTIONS(6293), - [anon_sym_BSLASHcitealp] = ACTIONS(6293), - [anon_sym_BSLASHcitetext] = ACTIONS(6293), - [anon_sym_BSLASHparencite] = ACTIONS(6293), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHParencite] = ACTIONS(6293), - [anon_sym_BSLASHfootcite] = ACTIONS(6293), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6293), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6293), - [anon_sym_BSLASHtextcite] = ACTIONS(6293), - [anon_sym_BSLASHTextcite] = ACTIONS(6293), - [anon_sym_BSLASHsmartcite] = ACTIONS(6293), - [anon_sym_BSLASHSmartcite] = ACTIONS(6293), - [anon_sym_BSLASHsupercite] = ACTIONS(6293), - [anon_sym_BSLASHautocite] = ACTIONS(6293), - [anon_sym_BSLASHAutocite] = ACTIONS(6293), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHvolcite] = ACTIONS(6293), - [anon_sym_BSLASHVolcite] = ACTIONS(6293), - [anon_sym_BSLASHpvolcite] = ACTIONS(6293), - [anon_sym_BSLASHPvolcite] = ACTIONS(6293), - [anon_sym_BSLASHfvolcite] = ACTIONS(6293), - [anon_sym_BSLASHftvolcite] = ACTIONS(6293), - [anon_sym_BSLASHsvolcite] = ACTIONS(6293), - [anon_sym_BSLASHSvolcite] = ACTIONS(6293), - [anon_sym_BSLASHtvolcite] = ACTIONS(6293), - [anon_sym_BSLASHTvolcite] = ACTIONS(6293), - [anon_sym_BSLASHavolcite] = ACTIONS(6293), - [anon_sym_BSLASHAvolcite] = ACTIONS(6293), - [anon_sym_BSLASHnotecite] = ACTIONS(6293), - [anon_sym_BSLASHNotecite] = ACTIONS(6293), - [anon_sym_BSLASHpnotecite] = ACTIONS(6293), - [anon_sym_BSLASHPnotecite] = ACTIONS(6293), - [anon_sym_BSLASHfnotecite] = ACTIONS(6293), - [anon_sym_BSLASHlabel] = ACTIONS(6293), - [anon_sym_BSLASHref] = ACTIONS(6293), - [anon_sym_BSLASHeqref] = ACTIONS(6293), - [anon_sym_BSLASHvref] = ACTIONS(6293), - [anon_sym_BSLASHVref] = ACTIONS(6293), - [anon_sym_BSLASHautoref] = ACTIONS(6293), - [anon_sym_BSLASHpageref] = ACTIONS(6293), - [anon_sym_BSLASHcref] = ACTIONS(6293), - [anon_sym_BSLASHCref] = ACTIONS(6293), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnameCref] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHlabelcref] = ACTIONS(6293), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCrefrange] = ACTIONS(6293), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnewlabel] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6293), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6293), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6295), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHdef] = ACTIONS(6293), - [anon_sym_BSLASHlet] = ACTIONS(6293), - [anon_sym_BSLASHleft] = ACTIONS(6293), - [anon_sym_BSLASHbig] = ACTIONS(6293), - [anon_sym_BSLASHBig] = ACTIONS(6293), - [anon_sym_BSLASHbigg] = ACTIONS(6293), - [anon_sym_BSLASHBigg] = ACTIONS(6293), - [anon_sym_BSLASHbigl] = ACTIONS(6293), - [anon_sym_BSLASHBigl] = ACTIONS(6293), - [anon_sym_BSLASHbiggl] = ACTIONS(6293), - [anon_sym_BSLASHBiggl] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6293), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6293), - [anon_sym_BSLASHgls] = ACTIONS(6293), - [anon_sym_BSLASHGls] = ACTIONS(6293), - [anon_sym_BSLASHGLS] = ACTIONS(6293), - [anon_sym_BSLASHglspl] = ACTIONS(6293), - [anon_sym_BSLASHGlspl] = ACTIONS(6293), - [anon_sym_BSLASHGLSpl] = ACTIONS(6293), - [anon_sym_BSLASHglsdisp] = ACTIONS(6293), - [anon_sym_BSLASHglslink] = ACTIONS(6293), - [anon_sym_BSLASHglstext] = ACTIONS(6293), - [anon_sym_BSLASHGlstext] = ACTIONS(6293), - [anon_sym_BSLASHGLStext] = ACTIONS(6293), - [anon_sym_BSLASHglsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6293), - [anon_sym_BSLASHglsplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSplural] = ACTIONS(6293), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHglsname] = ACTIONS(6293), - [anon_sym_BSLASHGlsname] = ACTIONS(6293), - [anon_sym_BSLASHGLSname] = ACTIONS(6293), - [anon_sym_BSLASHglssymbol] = ACTIONS(6293), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6293), - [anon_sym_BSLASHglsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6293), - [anon_sym_BSLASHglsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6293), - [anon_sym_BSLASHglsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6293), - [anon_sym_BSLASHglsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6293), - [anon_sym_BSLASHglsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6293), - [anon_sym_BSLASHnewacronym] = ACTIONS(6293), - [anon_sym_BSLASHacrshort] = ACTIONS(6293), - [anon_sym_BSLASHAcrshort] = ACTIONS(6293), - [anon_sym_BSLASHACRshort] = ACTIONS(6293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6293), - [anon_sym_BSLASHacrlong] = ACTIONS(6293), - [anon_sym_BSLASHAcrlong] = ACTIONS(6293), - [anon_sym_BSLASHACRlong] = ACTIONS(6293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6293), - [anon_sym_BSLASHacrfull] = ACTIONS(6293), - [anon_sym_BSLASHAcrfull] = ACTIONS(6293), - [anon_sym_BSLASHACRfull] = ACTIONS(6293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6293), - [anon_sym_BSLASHacs] = ACTIONS(6293), - [anon_sym_BSLASHAcs] = ACTIONS(6293), - [anon_sym_BSLASHacsp] = ACTIONS(6293), - [anon_sym_BSLASHAcsp] = ACTIONS(6293), - [anon_sym_BSLASHacl] = ACTIONS(6293), - [anon_sym_BSLASHAcl] = ACTIONS(6293), - [anon_sym_BSLASHaclp] = ACTIONS(6293), - [anon_sym_BSLASHAclp] = ACTIONS(6293), - [anon_sym_BSLASHacf] = ACTIONS(6293), - [anon_sym_BSLASHAcf] = ACTIONS(6293), - [anon_sym_BSLASHacfp] = ACTIONS(6293), - [anon_sym_BSLASHAcfp] = ACTIONS(6293), - [anon_sym_BSLASHac] = ACTIONS(6293), - [anon_sym_BSLASHAc] = ACTIONS(6293), - [anon_sym_BSLASHacp] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6293), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6293), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6293), - [anon_sym_BSLASHcolor] = ACTIONS(6293), - [anon_sym_BSLASHcolorbox] = ACTIONS(6293), - [anon_sym_BSLASHtextcolor] = ACTIONS(6293), - [anon_sym_BSLASHpagecolor] = ACTIONS(6293), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6293), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6293), - [anon_sym_BSLASHtext] = ACTIONS(6293), - [anon_sym_BSLASHintertext] = ACTIONS(6293), - [anon_sym_shortintertext] = ACTIONS(6293), - }, - [1522] = { - [sym_command_name] = ACTIONS(6185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_RBRACK] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_EQ] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_LBRACE] = ACTIONS(6187), - [sym_word] = ACTIONS(6185), - [sym_placeholder] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6187), - [anon_sym_DASH] = ACTIONS(6187), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_SQUOTE] = ACTIONS(6185), - [anon_sym__] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), - [anon_sym_DOLLAR] = ACTIONS(6185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), - [anon_sym_BSLASHbegin] = ACTIONS(6185), - [anon_sym_BSLASHend] = ACTIONS(6185), - [anon_sym_BSLASHtitle] = ACTIONS(6185), - [anon_sym_BSLASHauthor] = ACTIONS(6185), - [anon_sym_BSLASHusepackage] = ACTIONS(6185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), - [anon_sym_BSLASHinclude] = ACTIONS(6185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), - [anon_sym_BSLASHinput] = ACTIONS(6185), - [anon_sym_BSLASHsubfile] = ACTIONS(6185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), - [anon_sym_BSLASHbibliography] = ACTIONS(6185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), - [anon_sym_BSLASHincludesvg] = ACTIONS(6185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), - [anon_sym_BSLASHimport] = ACTIONS(6185), - [anon_sym_BSLASHsubimport] = ACTIONS(6185), - [anon_sym_BSLASHinputfrom] = ACTIONS(6185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), - [anon_sym_BSLASHincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHcaption] = ACTIONS(6185), - [anon_sym_BSLASHcite] = ACTIONS(6185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCite] = ACTIONS(6185), - [anon_sym_BSLASHnocite] = ACTIONS(6185), - [anon_sym_BSLASHcitet] = ACTIONS(6185), - [anon_sym_BSLASHcitep] = ACTIONS(6185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteauthor] = ACTIONS(6185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitetitle] = ACTIONS(6185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteyear] = ACTIONS(6185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitedate] = ACTIONS(6185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteurl] = ACTIONS(6185), - [anon_sym_BSLASHfullcite] = ACTIONS(6185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), - [anon_sym_BSLASHcitealt] = ACTIONS(6185), - [anon_sym_BSLASHcitealp] = ACTIONS(6185), - [anon_sym_BSLASHcitetext] = ACTIONS(6185), - [anon_sym_BSLASHparencite] = ACTIONS(6185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHParencite] = ACTIONS(6185), - [anon_sym_BSLASHfootcite] = ACTIONS(6185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), - [anon_sym_BSLASHtextcite] = ACTIONS(6185), - [anon_sym_BSLASHTextcite] = ACTIONS(6185), - [anon_sym_BSLASHsmartcite] = ACTIONS(6185), - [anon_sym_BSLASHSmartcite] = ACTIONS(6185), - [anon_sym_BSLASHsupercite] = ACTIONS(6185), - [anon_sym_BSLASHautocite] = ACTIONS(6185), - [anon_sym_BSLASHAutocite] = ACTIONS(6185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHvolcite] = ACTIONS(6185), - [anon_sym_BSLASHVolcite] = ACTIONS(6185), - [anon_sym_BSLASHpvolcite] = ACTIONS(6185), - [anon_sym_BSLASHPvolcite] = ACTIONS(6185), - [anon_sym_BSLASHfvolcite] = ACTIONS(6185), - [anon_sym_BSLASHftvolcite] = ACTIONS(6185), - [anon_sym_BSLASHsvolcite] = ACTIONS(6185), - [anon_sym_BSLASHSvolcite] = ACTIONS(6185), - [anon_sym_BSLASHtvolcite] = ACTIONS(6185), - [anon_sym_BSLASHTvolcite] = ACTIONS(6185), - [anon_sym_BSLASHavolcite] = ACTIONS(6185), - [anon_sym_BSLASHAvolcite] = ACTIONS(6185), - [anon_sym_BSLASHnotecite] = ACTIONS(6185), - [anon_sym_BSLASHNotecite] = ACTIONS(6185), - [anon_sym_BSLASHpnotecite] = ACTIONS(6185), - [anon_sym_BSLASHPnotecite] = ACTIONS(6185), - [anon_sym_BSLASHfnotecite] = ACTIONS(6185), - [anon_sym_BSLASHlabel] = ACTIONS(6185), - [anon_sym_BSLASHref] = ACTIONS(6185), - [anon_sym_BSLASHeqref] = ACTIONS(6185), - [anon_sym_BSLASHvref] = ACTIONS(6185), - [anon_sym_BSLASHVref] = ACTIONS(6185), - [anon_sym_BSLASHautoref] = ACTIONS(6185), - [anon_sym_BSLASHpageref] = ACTIONS(6185), - [anon_sym_BSLASHcref] = ACTIONS(6185), - [anon_sym_BSLASHCref] = ACTIONS(6185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnameCref] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHlabelcref] = ACTIONS(6185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCrefrange] = ACTIONS(6185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnewlabel] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHdef] = ACTIONS(6185), - [anon_sym_BSLASHlet] = ACTIONS(6185), - [anon_sym_BSLASHleft] = ACTIONS(6185), - [anon_sym_BSLASHbig] = ACTIONS(6185), - [anon_sym_BSLASHBig] = ACTIONS(6185), - [anon_sym_BSLASHbigg] = ACTIONS(6185), - [anon_sym_BSLASHBigg] = ACTIONS(6185), - [anon_sym_BSLASHbigl] = ACTIONS(6185), - [anon_sym_BSLASHBigl] = ACTIONS(6185), - [anon_sym_BSLASHbiggl] = ACTIONS(6185), - [anon_sym_BSLASHBiggl] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), - [anon_sym_BSLASHgls] = ACTIONS(6185), - [anon_sym_BSLASHGls] = ACTIONS(6185), - [anon_sym_BSLASHGLS] = ACTIONS(6185), - [anon_sym_BSLASHglspl] = ACTIONS(6185), - [anon_sym_BSLASHGlspl] = ACTIONS(6185), - [anon_sym_BSLASHGLSpl] = ACTIONS(6185), - [anon_sym_BSLASHglsdisp] = ACTIONS(6185), - [anon_sym_BSLASHglslink] = ACTIONS(6185), - [anon_sym_BSLASHglstext] = ACTIONS(6185), - [anon_sym_BSLASHGlstext] = ACTIONS(6185), - [anon_sym_BSLASHGLStext] = ACTIONS(6185), - [anon_sym_BSLASHglsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), - [anon_sym_BSLASHglsplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSplural] = ACTIONS(6185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHglsname] = ACTIONS(6185), - [anon_sym_BSLASHGlsname] = ACTIONS(6185), - [anon_sym_BSLASHGLSname] = ACTIONS(6185), - [anon_sym_BSLASHglssymbol] = ACTIONS(6185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), - [anon_sym_BSLASHglsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), - [anon_sym_BSLASHglsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), - [anon_sym_BSLASHglsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), - [anon_sym_BSLASHglsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), - [anon_sym_BSLASHglsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), - [anon_sym_BSLASHnewacronym] = ACTIONS(6185), - [anon_sym_BSLASHacrshort] = ACTIONS(6185), - [anon_sym_BSLASHAcrshort] = ACTIONS(6185), - [anon_sym_BSLASHACRshort] = ACTIONS(6185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), - [anon_sym_BSLASHacrlong] = ACTIONS(6185), - [anon_sym_BSLASHAcrlong] = ACTIONS(6185), - [anon_sym_BSLASHACRlong] = ACTIONS(6185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), - [anon_sym_BSLASHacrfull] = ACTIONS(6185), - [anon_sym_BSLASHAcrfull] = ACTIONS(6185), - [anon_sym_BSLASHACRfull] = ACTIONS(6185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), - [anon_sym_BSLASHacs] = ACTIONS(6185), - [anon_sym_BSLASHAcs] = ACTIONS(6185), - [anon_sym_BSLASHacsp] = ACTIONS(6185), - [anon_sym_BSLASHAcsp] = ACTIONS(6185), - [anon_sym_BSLASHacl] = ACTIONS(6185), - [anon_sym_BSLASHAcl] = ACTIONS(6185), - [anon_sym_BSLASHaclp] = ACTIONS(6185), - [anon_sym_BSLASHAclp] = ACTIONS(6185), - [anon_sym_BSLASHacf] = ACTIONS(6185), - [anon_sym_BSLASHAcf] = ACTIONS(6185), - [anon_sym_BSLASHacfp] = ACTIONS(6185), - [anon_sym_BSLASHAcfp] = ACTIONS(6185), - [anon_sym_BSLASHac] = ACTIONS(6185), - [anon_sym_BSLASHAc] = ACTIONS(6185), - [anon_sym_BSLASHacp] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), - [anon_sym_BSLASHcolor] = ACTIONS(6185), - [anon_sym_BSLASHcolorbox] = ACTIONS(6185), - [anon_sym_BSLASHtextcolor] = ACTIONS(6185), - [anon_sym_BSLASHpagecolor] = ACTIONS(6185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), - [anon_sym_BSLASHtext] = ACTIONS(6185), - [anon_sym_BSLASHintertext] = ACTIONS(6185), - [anon_sym_shortintertext] = ACTIONS(6185), - }, - [1523] = { - [sym_curly_group] = STATE(1763), - [sym_command_name] = ACTIONS(6013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6013), - [anon_sym_LBRACK] = ACTIONS(6015), - [anon_sym_RBRACK] = ACTIONS(6015), - [anon_sym_COMMA] = ACTIONS(6015), - [anon_sym_EQ] = ACTIONS(6015), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_RPAREN] = ACTIONS(6015), - [anon_sym_LBRACE] = ACTIONS(3520), - [sym_word] = ACTIONS(6013), - [sym_placeholder] = ACTIONS(6015), - [anon_sym_PLUS] = ACTIONS(6015), - [anon_sym_DASH] = ACTIONS(6015), - [anon_sym_STAR] = ACTIONS(6015), - [anon_sym_SLASH] = ACTIONS(6015), - [anon_sym_LT] = ACTIONS(6013), - [anon_sym_GT] = ACTIONS(6013), - [anon_sym_BANG] = ACTIONS(6013), - [anon_sym_PIPE] = ACTIONS(6013), - [anon_sym_COLON] = ACTIONS(6013), - [anon_sym_SQUOTE] = ACTIONS(6013), - [anon_sym__] = ACTIONS(6015), - [anon_sym_CARET] = ACTIONS(6015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), - [anon_sym_DOLLAR] = ACTIONS(6013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), - [anon_sym_BSLASHbegin] = ACTIONS(6013), - [anon_sym_BSLASHtitle] = ACTIONS(6013), - [anon_sym_BSLASHauthor] = ACTIONS(6013), - [anon_sym_BSLASHusepackage] = ACTIONS(6013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6013), - [anon_sym_BSLASHinclude] = ACTIONS(6013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6013), - [anon_sym_BSLASHinput] = ACTIONS(6013), - [anon_sym_BSLASHsubfile] = ACTIONS(6013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6013), - [anon_sym_BSLASHbibliography] = ACTIONS(6013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6013), - [anon_sym_BSLASHincludesvg] = ACTIONS(6013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6013), - [anon_sym_BSLASHimport] = ACTIONS(6013), - [anon_sym_BSLASHsubimport] = ACTIONS(6013), - [anon_sym_BSLASHinputfrom] = ACTIONS(6013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6013), - [anon_sym_BSLASHincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHcaption] = ACTIONS(6013), - [anon_sym_BSLASHcite] = ACTIONS(6013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCite] = ACTIONS(6013), - [anon_sym_BSLASHnocite] = ACTIONS(6013), - [anon_sym_BSLASHcitet] = ACTIONS(6013), - [anon_sym_BSLASHcitep] = ACTIONS(6013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteauthor] = ACTIONS(6013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitetitle] = ACTIONS(6013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteyear] = ACTIONS(6013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitedate] = ACTIONS(6013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteurl] = ACTIONS(6013), - [anon_sym_BSLASHfullcite] = ACTIONS(6013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6013), - [anon_sym_BSLASHcitealt] = ACTIONS(6013), - [anon_sym_BSLASHcitealp] = ACTIONS(6013), - [anon_sym_BSLASHcitetext] = ACTIONS(6013), - [anon_sym_BSLASHparencite] = ACTIONS(6013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHParencite] = ACTIONS(6013), - [anon_sym_BSLASHfootcite] = ACTIONS(6013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6013), - [anon_sym_BSLASHtextcite] = ACTIONS(6013), - [anon_sym_BSLASHTextcite] = ACTIONS(6013), - [anon_sym_BSLASHsmartcite] = ACTIONS(6013), - [anon_sym_BSLASHSmartcite] = ACTIONS(6013), - [anon_sym_BSLASHsupercite] = ACTIONS(6013), - [anon_sym_BSLASHautocite] = ACTIONS(6013), - [anon_sym_BSLASHAutocite] = ACTIONS(6013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHvolcite] = ACTIONS(6013), - [anon_sym_BSLASHVolcite] = ACTIONS(6013), - [anon_sym_BSLASHpvolcite] = ACTIONS(6013), - [anon_sym_BSLASHPvolcite] = ACTIONS(6013), - [anon_sym_BSLASHfvolcite] = ACTIONS(6013), - [anon_sym_BSLASHftvolcite] = ACTIONS(6013), - [anon_sym_BSLASHsvolcite] = ACTIONS(6013), - [anon_sym_BSLASHSvolcite] = ACTIONS(6013), - [anon_sym_BSLASHtvolcite] = ACTIONS(6013), - [anon_sym_BSLASHTvolcite] = ACTIONS(6013), - [anon_sym_BSLASHavolcite] = ACTIONS(6013), - [anon_sym_BSLASHAvolcite] = ACTIONS(6013), - [anon_sym_BSLASHnotecite] = ACTIONS(6013), - [anon_sym_BSLASHNotecite] = ACTIONS(6013), - [anon_sym_BSLASHpnotecite] = ACTIONS(6013), - [anon_sym_BSLASHPnotecite] = ACTIONS(6013), - [anon_sym_BSLASHfnotecite] = ACTIONS(6013), - [anon_sym_BSLASHlabel] = ACTIONS(6013), - [anon_sym_BSLASHref] = ACTIONS(6013), - [anon_sym_BSLASHeqref] = ACTIONS(6013), - [anon_sym_BSLASHvref] = ACTIONS(6013), - [anon_sym_BSLASHVref] = ACTIONS(6013), - [anon_sym_BSLASHautoref] = ACTIONS(6013), - [anon_sym_BSLASHpageref] = ACTIONS(6013), - [anon_sym_BSLASHcref] = ACTIONS(6013), - [anon_sym_BSLASHCref] = ACTIONS(6013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnameCref] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHlabelcref] = ACTIONS(6013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCrefrange] = ACTIONS(6013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnewlabel] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHdef] = ACTIONS(6013), - [anon_sym_BSLASHlet] = ACTIONS(6013), - [anon_sym_BSLASHleft] = ACTIONS(6013), - [anon_sym_BSLASHbig] = ACTIONS(6013), - [anon_sym_BSLASHBig] = ACTIONS(6013), - [anon_sym_BSLASHbigg] = ACTIONS(6013), - [anon_sym_BSLASHBigg] = ACTIONS(6013), - [anon_sym_BSLASHbigl] = ACTIONS(6013), - [anon_sym_BSLASHBigl] = ACTIONS(6013), - [anon_sym_BSLASHbiggl] = ACTIONS(6013), - [anon_sym_BSLASHBiggl] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6013), - [anon_sym_BSLASHgls] = ACTIONS(6013), - [anon_sym_BSLASHGls] = ACTIONS(6013), - [anon_sym_BSLASHGLS] = ACTIONS(6013), - [anon_sym_BSLASHglspl] = ACTIONS(6013), - [anon_sym_BSLASHGlspl] = ACTIONS(6013), - [anon_sym_BSLASHGLSpl] = ACTIONS(6013), - [anon_sym_BSLASHglsdisp] = ACTIONS(6013), - [anon_sym_BSLASHglslink] = ACTIONS(6013), - [anon_sym_BSLASHglstext] = ACTIONS(6013), - [anon_sym_BSLASHGlstext] = ACTIONS(6013), - [anon_sym_BSLASHGLStext] = ACTIONS(6013), - [anon_sym_BSLASHglsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6013), - [anon_sym_BSLASHglsplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSplural] = ACTIONS(6013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHglsname] = ACTIONS(6013), - [anon_sym_BSLASHGlsname] = ACTIONS(6013), - [anon_sym_BSLASHGLSname] = ACTIONS(6013), - [anon_sym_BSLASHglssymbol] = ACTIONS(6013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6013), - [anon_sym_BSLASHglsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6013), - [anon_sym_BSLASHglsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6013), - [anon_sym_BSLASHglsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6013), - [anon_sym_BSLASHglsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6013), - [anon_sym_BSLASHglsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6013), - [anon_sym_BSLASHnewacronym] = ACTIONS(6013), - [anon_sym_BSLASHacrshort] = ACTIONS(6013), - [anon_sym_BSLASHAcrshort] = ACTIONS(6013), - [anon_sym_BSLASHACRshort] = ACTIONS(6013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6013), - [anon_sym_BSLASHacrlong] = ACTIONS(6013), - [anon_sym_BSLASHAcrlong] = ACTIONS(6013), - [anon_sym_BSLASHACRlong] = ACTIONS(6013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6013), - [anon_sym_BSLASHacrfull] = ACTIONS(6013), - [anon_sym_BSLASHAcrfull] = ACTIONS(6013), - [anon_sym_BSLASHACRfull] = ACTIONS(6013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6013), - [anon_sym_BSLASHacs] = ACTIONS(6013), - [anon_sym_BSLASHAcs] = ACTIONS(6013), - [anon_sym_BSLASHacsp] = ACTIONS(6013), - [anon_sym_BSLASHAcsp] = ACTIONS(6013), - [anon_sym_BSLASHacl] = ACTIONS(6013), - [anon_sym_BSLASHAcl] = ACTIONS(6013), - [anon_sym_BSLASHaclp] = ACTIONS(6013), - [anon_sym_BSLASHAclp] = ACTIONS(6013), - [anon_sym_BSLASHacf] = ACTIONS(6013), - [anon_sym_BSLASHAcf] = ACTIONS(6013), - [anon_sym_BSLASHacfp] = ACTIONS(6013), - [anon_sym_BSLASHAcfp] = ACTIONS(6013), - [anon_sym_BSLASHac] = ACTIONS(6013), - [anon_sym_BSLASHAc] = ACTIONS(6013), - [anon_sym_BSLASHacp] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6013), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6013), - [anon_sym_BSLASHcolor] = ACTIONS(6013), - [anon_sym_BSLASHcolorbox] = ACTIONS(6013), - [anon_sym_BSLASHtextcolor] = ACTIONS(6013), - [anon_sym_BSLASHpagecolor] = ACTIONS(6013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6013), - [anon_sym_BSLASHtext] = ACTIONS(6013), - [anon_sym_BSLASHintertext] = ACTIONS(6013), - [anon_sym_shortintertext] = ACTIONS(6013), - }, - [1524] = { - [sym_command_name] = ACTIONS(6321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(6323), - [anon_sym_RBRACK] = ACTIONS(6323), - [anon_sym_COMMA] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(6323), - [anon_sym_LPAREN] = ACTIONS(6323), - [anon_sym_RPAREN] = ACTIONS(6323), - [anon_sym_LBRACE] = ACTIONS(6323), - [sym_word] = ACTIONS(6321), - [sym_placeholder] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6323), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_LT] = ACTIONS(6321), - [anon_sym_GT] = ACTIONS(6321), - [anon_sym_BANG] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_SQUOTE] = ACTIONS(6321), - [anon_sym__] = ACTIONS(6323), - [anon_sym_CARET] = ACTIONS(6323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6323), - [anon_sym_DOLLAR] = ACTIONS(6321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6323), - [anon_sym_BSLASHbegin] = ACTIONS(6321), - [anon_sym_BSLASHend] = ACTIONS(6321), - [anon_sym_BSLASHtitle] = ACTIONS(6321), - [anon_sym_BSLASHauthor] = ACTIONS(6321), - [anon_sym_BSLASHusepackage] = ACTIONS(6321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6321), - [anon_sym_BSLASHinclude] = ACTIONS(6321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6321), - [anon_sym_BSLASHinput] = ACTIONS(6321), - [anon_sym_BSLASHsubfile] = ACTIONS(6321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6321), - [anon_sym_BSLASHbibliography] = ACTIONS(6321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6321), - [anon_sym_BSLASHincludesvg] = ACTIONS(6321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6321), - [anon_sym_BSLASHimport] = ACTIONS(6321), - [anon_sym_BSLASHsubimport] = ACTIONS(6321), - [anon_sym_BSLASHinputfrom] = ACTIONS(6321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6321), - [anon_sym_BSLASHincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHcaption] = ACTIONS(6321), - [anon_sym_BSLASHcite] = ACTIONS(6321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCite] = ACTIONS(6321), - [anon_sym_BSLASHnocite] = ACTIONS(6321), - [anon_sym_BSLASHcitet] = ACTIONS(6321), - [anon_sym_BSLASHcitep] = ACTIONS(6321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteauthor] = ACTIONS(6321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitetitle] = ACTIONS(6321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteyear] = ACTIONS(6321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitedate] = ACTIONS(6321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteurl] = ACTIONS(6321), - [anon_sym_BSLASHfullcite] = ACTIONS(6321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6321), - [anon_sym_BSLASHcitealt] = ACTIONS(6321), - [anon_sym_BSLASHcitealp] = ACTIONS(6321), - [anon_sym_BSLASHcitetext] = ACTIONS(6321), - [anon_sym_BSLASHparencite] = ACTIONS(6321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHParencite] = ACTIONS(6321), - [anon_sym_BSLASHfootcite] = ACTIONS(6321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6321), - [anon_sym_BSLASHtextcite] = ACTIONS(6321), - [anon_sym_BSLASHTextcite] = ACTIONS(6321), - [anon_sym_BSLASHsmartcite] = ACTIONS(6321), - [anon_sym_BSLASHSmartcite] = ACTIONS(6321), - [anon_sym_BSLASHsupercite] = ACTIONS(6321), - [anon_sym_BSLASHautocite] = ACTIONS(6321), - [anon_sym_BSLASHAutocite] = ACTIONS(6321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHvolcite] = ACTIONS(6321), - [anon_sym_BSLASHVolcite] = ACTIONS(6321), - [anon_sym_BSLASHpvolcite] = ACTIONS(6321), - [anon_sym_BSLASHPvolcite] = ACTIONS(6321), - [anon_sym_BSLASHfvolcite] = ACTIONS(6321), - [anon_sym_BSLASHftvolcite] = ACTIONS(6321), - [anon_sym_BSLASHsvolcite] = ACTIONS(6321), - [anon_sym_BSLASHSvolcite] = ACTIONS(6321), - [anon_sym_BSLASHtvolcite] = ACTIONS(6321), - [anon_sym_BSLASHTvolcite] = ACTIONS(6321), - [anon_sym_BSLASHavolcite] = ACTIONS(6321), - [anon_sym_BSLASHAvolcite] = ACTIONS(6321), - [anon_sym_BSLASHnotecite] = ACTIONS(6321), - [anon_sym_BSLASHNotecite] = ACTIONS(6321), - [anon_sym_BSLASHpnotecite] = ACTIONS(6321), - [anon_sym_BSLASHPnotecite] = ACTIONS(6321), - [anon_sym_BSLASHfnotecite] = ACTIONS(6321), - [anon_sym_BSLASHlabel] = ACTIONS(6321), - [anon_sym_BSLASHref] = ACTIONS(6321), - [anon_sym_BSLASHeqref] = ACTIONS(6321), - [anon_sym_BSLASHvref] = ACTIONS(6321), - [anon_sym_BSLASHVref] = ACTIONS(6321), - [anon_sym_BSLASHautoref] = ACTIONS(6321), - [anon_sym_BSLASHpageref] = ACTIONS(6321), - [anon_sym_BSLASHcref] = ACTIONS(6321), - [anon_sym_BSLASHCref] = ACTIONS(6321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnameCref] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHlabelcref] = ACTIONS(6321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCrefrange] = ACTIONS(6321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnewlabel] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6323), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHdef] = ACTIONS(6321), - [anon_sym_BSLASHlet] = ACTIONS(6321), - [anon_sym_BSLASHleft] = ACTIONS(6321), - [anon_sym_BSLASHbig] = ACTIONS(6321), - [anon_sym_BSLASHBig] = ACTIONS(6321), - [anon_sym_BSLASHbigg] = ACTIONS(6321), - [anon_sym_BSLASHBigg] = ACTIONS(6321), - [anon_sym_BSLASHbigl] = ACTIONS(6321), - [anon_sym_BSLASHBigl] = ACTIONS(6321), - [anon_sym_BSLASHbiggl] = ACTIONS(6321), - [anon_sym_BSLASHBiggl] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6321), - [anon_sym_BSLASHgls] = ACTIONS(6321), - [anon_sym_BSLASHGls] = ACTIONS(6321), - [anon_sym_BSLASHGLS] = ACTIONS(6321), - [anon_sym_BSLASHglspl] = ACTIONS(6321), - [anon_sym_BSLASHGlspl] = ACTIONS(6321), - [anon_sym_BSLASHGLSpl] = ACTIONS(6321), - [anon_sym_BSLASHglsdisp] = ACTIONS(6321), - [anon_sym_BSLASHglslink] = ACTIONS(6321), - [anon_sym_BSLASHglstext] = ACTIONS(6321), - [anon_sym_BSLASHGlstext] = ACTIONS(6321), - [anon_sym_BSLASHGLStext] = ACTIONS(6321), - [anon_sym_BSLASHglsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6321), - [anon_sym_BSLASHglsplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSplural] = ACTIONS(6321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHglsname] = ACTIONS(6321), - [anon_sym_BSLASHGlsname] = ACTIONS(6321), - [anon_sym_BSLASHGLSname] = ACTIONS(6321), - [anon_sym_BSLASHglssymbol] = ACTIONS(6321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6321), - [anon_sym_BSLASHglsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6321), - [anon_sym_BSLASHglsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6321), - [anon_sym_BSLASHglsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6321), - [anon_sym_BSLASHglsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6321), - [anon_sym_BSLASHglsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6321), - [anon_sym_BSLASHnewacronym] = ACTIONS(6321), - [anon_sym_BSLASHacrshort] = ACTIONS(6321), - [anon_sym_BSLASHAcrshort] = ACTIONS(6321), - [anon_sym_BSLASHACRshort] = ACTIONS(6321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6321), - [anon_sym_BSLASHacrlong] = ACTIONS(6321), - [anon_sym_BSLASHAcrlong] = ACTIONS(6321), - [anon_sym_BSLASHACRlong] = ACTIONS(6321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6321), - [anon_sym_BSLASHacrfull] = ACTIONS(6321), - [anon_sym_BSLASHAcrfull] = ACTIONS(6321), - [anon_sym_BSLASHACRfull] = ACTIONS(6321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6321), - [anon_sym_BSLASHacs] = ACTIONS(6321), - [anon_sym_BSLASHAcs] = ACTIONS(6321), - [anon_sym_BSLASHacsp] = ACTIONS(6321), - [anon_sym_BSLASHAcsp] = ACTIONS(6321), - [anon_sym_BSLASHacl] = ACTIONS(6321), - [anon_sym_BSLASHAcl] = ACTIONS(6321), - [anon_sym_BSLASHaclp] = ACTIONS(6321), - [anon_sym_BSLASHAclp] = ACTIONS(6321), - [anon_sym_BSLASHacf] = ACTIONS(6321), - [anon_sym_BSLASHAcf] = ACTIONS(6321), - [anon_sym_BSLASHacfp] = ACTIONS(6321), - [anon_sym_BSLASHAcfp] = ACTIONS(6321), - [anon_sym_BSLASHac] = ACTIONS(6321), - [anon_sym_BSLASHAc] = ACTIONS(6321), - [anon_sym_BSLASHacp] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6321), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6321), - [anon_sym_BSLASHcolor] = ACTIONS(6321), - [anon_sym_BSLASHcolorbox] = ACTIONS(6321), - [anon_sym_BSLASHtextcolor] = ACTIONS(6321), - [anon_sym_BSLASHpagecolor] = ACTIONS(6321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6321), - [anon_sym_BSLASHtext] = ACTIONS(6321), - [anon_sym_BSLASHintertext] = ACTIONS(6321), - [anon_sym_shortintertext] = ACTIONS(6321), - }, - [1525] = { - [sym_command_name] = ACTIONS(6329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6329), - [anon_sym_LBRACK] = ACTIONS(6331), - [anon_sym_RBRACK] = ACTIONS(6331), - [anon_sym_COMMA] = ACTIONS(6331), - [anon_sym_EQ] = ACTIONS(6331), - [anon_sym_LPAREN] = ACTIONS(6331), - [anon_sym_RPAREN] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6331), - [sym_word] = ACTIONS(6329), - [sym_placeholder] = ACTIONS(6331), - [anon_sym_PLUS] = ACTIONS(6331), - [anon_sym_DASH] = ACTIONS(6331), - [anon_sym_STAR] = ACTIONS(6331), - [anon_sym_SLASH] = ACTIONS(6331), - [anon_sym_LT] = ACTIONS(6329), - [anon_sym_GT] = ACTIONS(6329), - [anon_sym_BANG] = ACTIONS(6329), - [anon_sym_PIPE] = ACTIONS(6329), - [anon_sym_COLON] = ACTIONS(6329), - [anon_sym_SQUOTE] = ACTIONS(6329), - [anon_sym__] = ACTIONS(6331), - [anon_sym_CARET] = ACTIONS(6331), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6331), - [anon_sym_DOLLAR] = ACTIONS(6329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6331), - [anon_sym_BSLASHbegin] = ACTIONS(6329), - [anon_sym_BSLASHend] = ACTIONS(6329), - [anon_sym_BSLASHtitle] = ACTIONS(6329), - [anon_sym_BSLASHauthor] = ACTIONS(6329), - [anon_sym_BSLASHusepackage] = ACTIONS(6329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6329), - [anon_sym_BSLASHinclude] = ACTIONS(6329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6329), - [anon_sym_BSLASHinput] = ACTIONS(6329), - [anon_sym_BSLASHsubfile] = ACTIONS(6329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6329), - [anon_sym_BSLASHbibliography] = ACTIONS(6329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6329), - [anon_sym_BSLASHincludesvg] = ACTIONS(6329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6329), - [anon_sym_BSLASHimport] = ACTIONS(6329), - [anon_sym_BSLASHsubimport] = ACTIONS(6329), - [anon_sym_BSLASHinputfrom] = ACTIONS(6329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6329), - [anon_sym_BSLASHincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHcaption] = ACTIONS(6329), - [anon_sym_BSLASHcite] = ACTIONS(6329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCite] = ACTIONS(6329), - [anon_sym_BSLASHnocite] = ACTIONS(6329), - [anon_sym_BSLASHcitet] = ACTIONS(6329), - [anon_sym_BSLASHcitep] = ACTIONS(6329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteauthor] = ACTIONS(6329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitetitle] = ACTIONS(6329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteyear] = ACTIONS(6329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitedate] = ACTIONS(6329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteurl] = ACTIONS(6329), - [anon_sym_BSLASHfullcite] = ACTIONS(6329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6329), - [anon_sym_BSLASHcitealt] = ACTIONS(6329), - [anon_sym_BSLASHcitealp] = ACTIONS(6329), - [anon_sym_BSLASHcitetext] = ACTIONS(6329), - [anon_sym_BSLASHparencite] = ACTIONS(6329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHParencite] = ACTIONS(6329), - [anon_sym_BSLASHfootcite] = ACTIONS(6329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6329), - [anon_sym_BSLASHtextcite] = ACTIONS(6329), - [anon_sym_BSLASHTextcite] = ACTIONS(6329), - [anon_sym_BSLASHsmartcite] = ACTIONS(6329), - [anon_sym_BSLASHSmartcite] = ACTIONS(6329), - [anon_sym_BSLASHsupercite] = ACTIONS(6329), - [anon_sym_BSLASHautocite] = ACTIONS(6329), - [anon_sym_BSLASHAutocite] = ACTIONS(6329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHvolcite] = ACTIONS(6329), - [anon_sym_BSLASHVolcite] = ACTIONS(6329), - [anon_sym_BSLASHpvolcite] = ACTIONS(6329), - [anon_sym_BSLASHPvolcite] = ACTIONS(6329), - [anon_sym_BSLASHfvolcite] = ACTIONS(6329), - [anon_sym_BSLASHftvolcite] = ACTIONS(6329), - [anon_sym_BSLASHsvolcite] = ACTIONS(6329), - [anon_sym_BSLASHSvolcite] = ACTIONS(6329), - [anon_sym_BSLASHtvolcite] = ACTIONS(6329), - [anon_sym_BSLASHTvolcite] = ACTIONS(6329), - [anon_sym_BSLASHavolcite] = ACTIONS(6329), - [anon_sym_BSLASHAvolcite] = ACTIONS(6329), - [anon_sym_BSLASHnotecite] = ACTIONS(6329), - [anon_sym_BSLASHNotecite] = ACTIONS(6329), - [anon_sym_BSLASHpnotecite] = ACTIONS(6329), - [anon_sym_BSLASHPnotecite] = ACTIONS(6329), - [anon_sym_BSLASHfnotecite] = ACTIONS(6329), - [anon_sym_BSLASHlabel] = ACTIONS(6329), - [anon_sym_BSLASHref] = ACTIONS(6329), - [anon_sym_BSLASHeqref] = ACTIONS(6329), - [anon_sym_BSLASHvref] = ACTIONS(6329), - [anon_sym_BSLASHVref] = ACTIONS(6329), - [anon_sym_BSLASHautoref] = ACTIONS(6329), - [anon_sym_BSLASHpageref] = ACTIONS(6329), - [anon_sym_BSLASHcref] = ACTIONS(6329), - [anon_sym_BSLASHCref] = ACTIONS(6329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnameCref] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHlabelcref] = ACTIONS(6329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCrefrange] = ACTIONS(6329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnewlabel] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6331), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHdef] = ACTIONS(6329), - [anon_sym_BSLASHlet] = ACTIONS(6329), - [anon_sym_BSLASHleft] = ACTIONS(6329), - [anon_sym_BSLASHbig] = ACTIONS(6329), - [anon_sym_BSLASHBig] = ACTIONS(6329), - [anon_sym_BSLASHbigg] = ACTIONS(6329), - [anon_sym_BSLASHBigg] = ACTIONS(6329), - [anon_sym_BSLASHbigl] = ACTIONS(6329), - [anon_sym_BSLASHBigl] = ACTIONS(6329), - [anon_sym_BSLASHbiggl] = ACTIONS(6329), - [anon_sym_BSLASHBiggl] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6329), - [anon_sym_BSLASHgls] = ACTIONS(6329), - [anon_sym_BSLASHGls] = ACTIONS(6329), - [anon_sym_BSLASHGLS] = ACTIONS(6329), - [anon_sym_BSLASHglspl] = ACTIONS(6329), - [anon_sym_BSLASHGlspl] = ACTIONS(6329), - [anon_sym_BSLASHGLSpl] = ACTIONS(6329), - [anon_sym_BSLASHglsdisp] = ACTIONS(6329), - [anon_sym_BSLASHglslink] = ACTIONS(6329), - [anon_sym_BSLASHglstext] = ACTIONS(6329), - [anon_sym_BSLASHGlstext] = ACTIONS(6329), - [anon_sym_BSLASHGLStext] = ACTIONS(6329), - [anon_sym_BSLASHglsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6329), - [anon_sym_BSLASHglsplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSplural] = ACTIONS(6329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHglsname] = ACTIONS(6329), - [anon_sym_BSLASHGlsname] = ACTIONS(6329), - [anon_sym_BSLASHGLSname] = ACTIONS(6329), - [anon_sym_BSLASHglssymbol] = ACTIONS(6329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6329), - [anon_sym_BSLASHglsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6329), - [anon_sym_BSLASHglsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6329), - [anon_sym_BSLASHglsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6329), - [anon_sym_BSLASHglsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6329), - [anon_sym_BSLASHglsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6329), - [anon_sym_BSLASHnewacronym] = ACTIONS(6329), - [anon_sym_BSLASHacrshort] = ACTIONS(6329), - [anon_sym_BSLASHAcrshort] = ACTIONS(6329), - [anon_sym_BSLASHACRshort] = ACTIONS(6329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6329), - [anon_sym_BSLASHacrlong] = ACTIONS(6329), - [anon_sym_BSLASHAcrlong] = ACTIONS(6329), - [anon_sym_BSLASHACRlong] = ACTIONS(6329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6329), - [anon_sym_BSLASHacrfull] = ACTIONS(6329), - [anon_sym_BSLASHAcrfull] = ACTIONS(6329), - [anon_sym_BSLASHACRfull] = ACTIONS(6329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6329), - [anon_sym_BSLASHacs] = ACTIONS(6329), - [anon_sym_BSLASHAcs] = ACTIONS(6329), - [anon_sym_BSLASHacsp] = ACTIONS(6329), - [anon_sym_BSLASHAcsp] = ACTIONS(6329), - [anon_sym_BSLASHacl] = ACTIONS(6329), - [anon_sym_BSLASHAcl] = ACTIONS(6329), - [anon_sym_BSLASHaclp] = ACTIONS(6329), - [anon_sym_BSLASHAclp] = ACTIONS(6329), - [anon_sym_BSLASHacf] = ACTIONS(6329), - [anon_sym_BSLASHAcf] = ACTIONS(6329), - [anon_sym_BSLASHacfp] = ACTIONS(6329), - [anon_sym_BSLASHAcfp] = ACTIONS(6329), - [anon_sym_BSLASHac] = ACTIONS(6329), - [anon_sym_BSLASHAc] = ACTIONS(6329), - [anon_sym_BSLASHacp] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6329), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6329), - [anon_sym_BSLASHcolor] = ACTIONS(6329), - [anon_sym_BSLASHcolorbox] = ACTIONS(6329), - [anon_sym_BSLASHtextcolor] = ACTIONS(6329), - [anon_sym_BSLASHpagecolor] = ACTIONS(6329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6329), - [anon_sym_BSLASHtext] = ACTIONS(6329), - [anon_sym_BSLASHintertext] = ACTIONS(6329), - [anon_sym_shortintertext] = ACTIONS(6329), - }, - [1526] = { - [sym_command_name] = ACTIONS(6125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6127), - [anon_sym_RBRACK] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6127), - [anon_sym_EQ] = ACTIONS(6127), - [anon_sym_LPAREN] = ACTIONS(6127), - [anon_sym_RPAREN] = ACTIONS(6127), - [anon_sym_LBRACE] = ACTIONS(6127), - [sym_word] = ACTIONS(6125), - [sym_placeholder] = ACTIONS(6127), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_LT] = ACTIONS(6125), - [anon_sym_GT] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_SQUOTE] = ACTIONS(6125), - [anon_sym__] = ACTIONS(6127), - [anon_sym_CARET] = ACTIONS(6127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6127), - [anon_sym_DOLLAR] = ACTIONS(6125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6127), - [anon_sym_BSLASHbegin] = ACTIONS(6125), - [anon_sym_BSLASHend] = ACTIONS(6125), - [anon_sym_BSLASHtitle] = ACTIONS(6125), - [anon_sym_BSLASHauthor] = ACTIONS(6125), - [anon_sym_BSLASHusepackage] = ACTIONS(6125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6125), - [anon_sym_BSLASHinclude] = ACTIONS(6125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6125), - [anon_sym_BSLASHinput] = ACTIONS(6125), - [anon_sym_BSLASHsubfile] = ACTIONS(6125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6125), - [anon_sym_BSLASHbibliography] = ACTIONS(6125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6125), - [anon_sym_BSLASHincludesvg] = ACTIONS(6125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6125), - [anon_sym_BSLASHimport] = ACTIONS(6125), - [anon_sym_BSLASHsubimport] = ACTIONS(6125), - [anon_sym_BSLASHinputfrom] = ACTIONS(6125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6125), - [anon_sym_BSLASHincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHcaption] = ACTIONS(6125), - [anon_sym_BSLASHcite] = ACTIONS(6125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCite] = ACTIONS(6125), - [anon_sym_BSLASHnocite] = ACTIONS(6125), - [anon_sym_BSLASHcitet] = ACTIONS(6125), - [anon_sym_BSLASHcitep] = ACTIONS(6125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteauthor] = ACTIONS(6125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitetitle] = ACTIONS(6125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteyear] = ACTIONS(6125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitedate] = ACTIONS(6125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteurl] = ACTIONS(6125), - [anon_sym_BSLASHfullcite] = ACTIONS(6125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6125), - [anon_sym_BSLASHcitealt] = ACTIONS(6125), - [anon_sym_BSLASHcitealp] = ACTIONS(6125), - [anon_sym_BSLASHcitetext] = ACTIONS(6125), - [anon_sym_BSLASHparencite] = ACTIONS(6125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHParencite] = ACTIONS(6125), - [anon_sym_BSLASHfootcite] = ACTIONS(6125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6125), - [anon_sym_BSLASHtextcite] = ACTIONS(6125), - [anon_sym_BSLASHTextcite] = ACTIONS(6125), - [anon_sym_BSLASHsmartcite] = ACTIONS(6125), - [anon_sym_BSLASHSmartcite] = ACTIONS(6125), - [anon_sym_BSLASHsupercite] = ACTIONS(6125), - [anon_sym_BSLASHautocite] = ACTIONS(6125), - [anon_sym_BSLASHAutocite] = ACTIONS(6125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHvolcite] = ACTIONS(6125), - [anon_sym_BSLASHVolcite] = ACTIONS(6125), - [anon_sym_BSLASHpvolcite] = ACTIONS(6125), - [anon_sym_BSLASHPvolcite] = ACTIONS(6125), - [anon_sym_BSLASHfvolcite] = ACTIONS(6125), - [anon_sym_BSLASHftvolcite] = ACTIONS(6125), - [anon_sym_BSLASHsvolcite] = ACTIONS(6125), - [anon_sym_BSLASHSvolcite] = ACTIONS(6125), - [anon_sym_BSLASHtvolcite] = ACTIONS(6125), - [anon_sym_BSLASHTvolcite] = ACTIONS(6125), - [anon_sym_BSLASHavolcite] = ACTIONS(6125), - [anon_sym_BSLASHAvolcite] = ACTIONS(6125), - [anon_sym_BSLASHnotecite] = ACTIONS(6125), - [anon_sym_BSLASHNotecite] = ACTIONS(6125), - [anon_sym_BSLASHpnotecite] = ACTIONS(6125), - [anon_sym_BSLASHPnotecite] = ACTIONS(6125), - [anon_sym_BSLASHfnotecite] = ACTIONS(6125), - [anon_sym_BSLASHlabel] = ACTIONS(6125), - [anon_sym_BSLASHref] = ACTIONS(6125), - [anon_sym_BSLASHeqref] = ACTIONS(6125), - [anon_sym_BSLASHvref] = ACTIONS(6125), - [anon_sym_BSLASHVref] = ACTIONS(6125), - [anon_sym_BSLASHautoref] = ACTIONS(6125), - [anon_sym_BSLASHpageref] = ACTIONS(6125), - [anon_sym_BSLASHcref] = ACTIONS(6125), - [anon_sym_BSLASHCref] = ACTIONS(6125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnameCref] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHlabelcref] = ACTIONS(6125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCrefrange] = ACTIONS(6125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnewlabel] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6127), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHdef] = ACTIONS(6125), - [anon_sym_BSLASHlet] = ACTIONS(6125), - [anon_sym_BSLASHleft] = ACTIONS(6125), - [anon_sym_BSLASHbig] = ACTIONS(6125), - [anon_sym_BSLASHBig] = ACTIONS(6125), - [anon_sym_BSLASHbigg] = ACTIONS(6125), - [anon_sym_BSLASHBigg] = ACTIONS(6125), - [anon_sym_BSLASHbigl] = ACTIONS(6125), - [anon_sym_BSLASHBigl] = ACTIONS(6125), - [anon_sym_BSLASHbiggl] = ACTIONS(6125), - [anon_sym_BSLASHBiggl] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6125), - [anon_sym_BSLASHgls] = ACTIONS(6125), - [anon_sym_BSLASHGls] = ACTIONS(6125), - [anon_sym_BSLASHGLS] = ACTIONS(6125), - [anon_sym_BSLASHglspl] = ACTIONS(6125), - [anon_sym_BSLASHGlspl] = ACTIONS(6125), - [anon_sym_BSLASHGLSpl] = ACTIONS(6125), - [anon_sym_BSLASHglsdisp] = ACTIONS(6125), - [anon_sym_BSLASHglslink] = ACTIONS(6125), - [anon_sym_BSLASHglstext] = ACTIONS(6125), - [anon_sym_BSLASHGlstext] = ACTIONS(6125), - [anon_sym_BSLASHGLStext] = ACTIONS(6125), - [anon_sym_BSLASHglsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6125), - [anon_sym_BSLASHglsplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSplural] = ACTIONS(6125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHglsname] = ACTIONS(6125), - [anon_sym_BSLASHGlsname] = ACTIONS(6125), - [anon_sym_BSLASHGLSname] = ACTIONS(6125), - [anon_sym_BSLASHglssymbol] = ACTIONS(6125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6125), - [anon_sym_BSLASHglsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6125), - [anon_sym_BSLASHglsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6125), - [anon_sym_BSLASHglsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6125), - [anon_sym_BSLASHglsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6125), - [anon_sym_BSLASHglsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6125), - [anon_sym_BSLASHnewacronym] = ACTIONS(6125), - [anon_sym_BSLASHacrshort] = ACTIONS(6125), - [anon_sym_BSLASHAcrshort] = ACTIONS(6125), - [anon_sym_BSLASHACRshort] = ACTIONS(6125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6125), - [anon_sym_BSLASHacrlong] = ACTIONS(6125), - [anon_sym_BSLASHAcrlong] = ACTIONS(6125), - [anon_sym_BSLASHACRlong] = ACTIONS(6125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6125), - [anon_sym_BSLASHacrfull] = ACTIONS(6125), - [anon_sym_BSLASHAcrfull] = ACTIONS(6125), - [anon_sym_BSLASHACRfull] = ACTIONS(6125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6125), - [anon_sym_BSLASHacs] = ACTIONS(6125), - [anon_sym_BSLASHAcs] = ACTIONS(6125), - [anon_sym_BSLASHacsp] = ACTIONS(6125), - [anon_sym_BSLASHAcsp] = ACTIONS(6125), - [anon_sym_BSLASHacl] = ACTIONS(6125), - [anon_sym_BSLASHAcl] = ACTIONS(6125), - [anon_sym_BSLASHaclp] = ACTIONS(6125), - [anon_sym_BSLASHAclp] = ACTIONS(6125), - [anon_sym_BSLASHacf] = ACTIONS(6125), - [anon_sym_BSLASHAcf] = ACTIONS(6125), - [anon_sym_BSLASHacfp] = ACTIONS(6125), - [anon_sym_BSLASHAcfp] = ACTIONS(6125), - [anon_sym_BSLASHac] = ACTIONS(6125), - [anon_sym_BSLASHAc] = ACTIONS(6125), - [anon_sym_BSLASHacp] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6125), - [anon_sym_BSLASHcolor] = ACTIONS(6125), - [anon_sym_BSLASHcolorbox] = ACTIONS(6125), - [anon_sym_BSLASHtextcolor] = ACTIONS(6125), - [anon_sym_BSLASHpagecolor] = ACTIONS(6125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6125), - [anon_sym_BSLASHtext] = ACTIONS(6125), - [anon_sym_BSLASHintertext] = ACTIONS(6125), - [anon_sym_shortintertext] = ACTIONS(6125), - }, - [1527] = { - [sym_command_name] = ACTIONS(6177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6177), - [anon_sym_LBRACK] = ACTIONS(6179), - [anon_sym_RBRACK] = ACTIONS(6179), - [anon_sym_COMMA] = ACTIONS(6179), - [anon_sym_EQ] = ACTIONS(6179), - [anon_sym_LPAREN] = ACTIONS(6179), - [anon_sym_RPAREN] = ACTIONS(6179), - [anon_sym_LBRACE] = ACTIONS(6179), - [sym_word] = ACTIONS(6177), - [sym_placeholder] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6179), - [anon_sym_DASH] = ACTIONS(6179), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6177), - [anon_sym_GT] = ACTIONS(6177), - [anon_sym_BANG] = ACTIONS(6177), - [anon_sym_PIPE] = ACTIONS(6177), - [anon_sym_COLON] = ACTIONS(6177), - [anon_sym_SQUOTE] = ACTIONS(6177), - [anon_sym__] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), - [anon_sym_DOLLAR] = ACTIONS(6177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), - [anon_sym_BSLASHbegin] = ACTIONS(6177), - [anon_sym_BSLASHend] = ACTIONS(6177), - [anon_sym_BSLASHtitle] = ACTIONS(6177), - [anon_sym_BSLASHauthor] = ACTIONS(6177), - [anon_sym_BSLASHusepackage] = ACTIONS(6177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6177), - [anon_sym_BSLASHinclude] = ACTIONS(6177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6177), - [anon_sym_BSLASHinput] = ACTIONS(6177), - [anon_sym_BSLASHsubfile] = ACTIONS(6177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6177), - [anon_sym_BSLASHbibliography] = ACTIONS(6177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6177), - [anon_sym_BSLASHincludesvg] = ACTIONS(6177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6177), - [anon_sym_BSLASHimport] = ACTIONS(6177), - [anon_sym_BSLASHsubimport] = ACTIONS(6177), - [anon_sym_BSLASHinputfrom] = ACTIONS(6177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6177), - [anon_sym_BSLASHincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHcaption] = ACTIONS(6177), - [anon_sym_BSLASHcite] = ACTIONS(6177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCite] = ACTIONS(6177), - [anon_sym_BSLASHnocite] = ACTIONS(6177), - [anon_sym_BSLASHcitet] = ACTIONS(6177), - [anon_sym_BSLASHcitep] = ACTIONS(6177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteauthor] = ACTIONS(6177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitetitle] = ACTIONS(6177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteyear] = ACTIONS(6177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitedate] = ACTIONS(6177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteurl] = ACTIONS(6177), - [anon_sym_BSLASHfullcite] = ACTIONS(6177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6177), - [anon_sym_BSLASHcitealt] = ACTIONS(6177), - [anon_sym_BSLASHcitealp] = ACTIONS(6177), - [anon_sym_BSLASHcitetext] = ACTIONS(6177), - [anon_sym_BSLASHparencite] = ACTIONS(6177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHParencite] = ACTIONS(6177), - [anon_sym_BSLASHfootcite] = ACTIONS(6177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6177), - [anon_sym_BSLASHtextcite] = ACTIONS(6177), - [anon_sym_BSLASHTextcite] = ACTIONS(6177), - [anon_sym_BSLASHsmartcite] = ACTIONS(6177), - [anon_sym_BSLASHSmartcite] = ACTIONS(6177), - [anon_sym_BSLASHsupercite] = ACTIONS(6177), - [anon_sym_BSLASHautocite] = ACTIONS(6177), - [anon_sym_BSLASHAutocite] = ACTIONS(6177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHvolcite] = ACTIONS(6177), - [anon_sym_BSLASHVolcite] = ACTIONS(6177), - [anon_sym_BSLASHpvolcite] = ACTIONS(6177), - [anon_sym_BSLASHPvolcite] = ACTIONS(6177), - [anon_sym_BSLASHfvolcite] = ACTIONS(6177), - [anon_sym_BSLASHftvolcite] = ACTIONS(6177), - [anon_sym_BSLASHsvolcite] = ACTIONS(6177), - [anon_sym_BSLASHSvolcite] = ACTIONS(6177), - [anon_sym_BSLASHtvolcite] = ACTIONS(6177), - [anon_sym_BSLASHTvolcite] = ACTIONS(6177), - [anon_sym_BSLASHavolcite] = ACTIONS(6177), - [anon_sym_BSLASHAvolcite] = ACTIONS(6177), - [anon_sym_BSLASHnotecite] = ACTIONS(6177), - [anon_sym_BSLASHNotecite] = ACTIONS(6177), - [anon_sym_BSLASHpnotecite] = ACTIONS(6177), - [anon_sym_BSLASHPnotecite] = ACTIONS(6177), - [anon_sym_BSLASHfnotecite] = ACTIONS(6177), - [anon_sym_BSLASHlabel] = ACTIONS(6177), - [anon_sym_BSLASHref] = ACTIONS(6177), - [anon_sym_BSLASHeqref] = ACTIONS(6177), - [anon_sym_BSLASHvref] = ACTIONS(6177), - [anon_sym_BSLASHVref] = ACTIONS(6177), - [anon_sym_BSLASHautoref] = ACTIONS(6177), - [anon_sym_BSLASHpageref] = ACTIONS(6177), - [anon_sym_BSLASHcref] = ACTIONS(6177), - [anon_sym_BSLASHCref] = ACTIONS(6177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnameCref] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHlabelcref] = ACTIONS(6177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCrefrange] = ACTIONS(6177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnewlabel] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHdef] = ACTIONS(6177), - [anon_sym_BSLASHlet] = ACTIONS(6177), - [anon_sym_BSLASHleft] = ACTIONS(6177), - [anon_sym_BSLASHbig] = ACTIONS(6177), - [anon_sym_BSLASHBig] = ACTIONS(6177), - [anon_sym_BSLASHbigg] = ACTIONS(6177), - [anon_sym_BSLASHBigg] = ACTIONS(6177), - [anon_sym_BSLASHbigl] = ACTIONS(6177), - [anon_sym_BSLASHBigl] = ACTIONS(6177), - [anon_sym_BSLASHbiggl] = ACTIONS(6177), - [anon_sym_BSLASHBiggl] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6177), - [anon_sym_BSLASHgls] = ACTIONS(6177), - [anon_sym_BSLASHGls] = ACTIONS(6177), - [anon_sym_BSLASHGLS] = ACTIONS(6177), - [anon_sym_BSLASHglspl] = ACTIONS(6177), - [anon_sym_BSLASHGlspl] = ACTIONS(6177), - [anon_sym_BSLASHGLSpl] = ACTIONS(6177), - [anon_sym_BSLASHglsdisp] = ACTIONS(6177), - [anon_sym_BSLASHglslink] = ACTIONS(6177), - [anon_sym_BSLASHglstext] = ACTIONS(6177), - [anon_sym_BSLASHGlstext] = ACTIONS(6177), - [anon_sym_BSLASHGLStext] = ACTIONS(6177), - [anon_sym_BSLASHglsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6177), - [anon_sym_BSLASHglsplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSplural] = ACTIONS(6177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHglsname] = ACTIONS(6177), - [anon_sym_BSLASHGlsname] = ACTIONS(6177), - [anon_sym_BSLASHGLSname] = ACTIONS(6177), - [anon_sym_BSLASHglssymbol] = ACTIONS(6177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6177), - [anon_sym_BSLASHglsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6177), - [anon_sym_BSLASHglsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6177), - [anon_sym_BSLASHglsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6177), - [anon_sym_BSLASHglsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6177), - [anon_sym_BSLASHglsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6177), - [anon_sym_BSLASHnewacronym] = ACTIONS(6177), - [anon_sym_BSLASHacrshort] = ACTIONS(6177), - [anon_sym_BSLASHAcrshort] = ACTIONS(6177), - [anon_sym_BSLASHACRshort] = ACTIONS(6177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6177), - [anon_sym_BSLASHacrlong] = ACTIONS(6177), - [anon_sym_BSLASHAcrlong] = ACTIONS(6177), - [anon_sym_BSLASHACRlong] = ACTIONS(6177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6177), - [anon_sym_BSLASHacrfull] = ACTIONS(6177), - [anon_sym_BSLASHAcrfull] = ACTIONS(6177), - [anon_sym_BSLASHACRfull] = ACTIONS(6177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6177), - [anon_sym_BSLASHacs] = ACTIONS(6177), - [anon_sym_BSLASHAcs] = ACTIONS(6177), - [anon_sym_BSLASHacsp] = ACTIONS(6177), - [anon_sym_BSLASHAcsp] = ACTIONS(6177), - [anon_sym_BSLASHacl] = ACTIONS(6177), - [anon_sym_BSLASHAcl] = ACTIONS(6177), - [anon_sym_BSLASHaclp] = ACTIONS(6177), - [anon_sym_BSLASHAclp] = ACTIONS(6177), - [anon_sym_BSLASHacf] = ACTIONS(6177), - [anon_sym_BSLASHAcf] = ACTIONS(6177), - [anon_sym_BSLASHacfp] = ACTIONS(6177), - [anon_sym_BSLASHAcfp] = ACTIONS(6177), - [anon_sym_BSLASHac] = ACTIONS(6177), - [anon_sym_BSLASHAc] = ACTIONS(6177), - [anon_sym_BSLASHacp] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6177), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6177), - [anon_sym_BSLASHcolor] = ACTIONS(6177), - [anon_sym_BSLASHcolorbox] = ACTIONS(6177), - [anon_sym_BSLASHtextcolor] = ACTIONS(6177), - [anon_sym_BSLASHpagecolor] = ACTIONS(6177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6177), - [anon_sym_BSLASHtext] = ACTIONS(6177), - [anon_sym_BSLASHintertext] = ACTIONS(6177), - [anon_sym_shortintertext] = ACTIONS(6177), - }, - [1528] = { - [sym_command_name] = ACTIONS(6333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6333), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_LBRACE] = ACTIONS(6335), - [sym_word] = ACTIONS(6333), - [sym_placeholder] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6335), - [anon_sym_DASH] = ACTIONS(6335), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6333), - [anon_sym_GT] = ACTIONS(6333), - [anon_sym_BANG] = ACTIONS(6333), - [anon_sym_PIPE] = ACTIONS(6333), - [anon_sym_COLON] = ACTIONS(6333), - [anon_sym_SQUOTE] = ACTIONS(6333), - [anon_sym__] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6335), - [anon_sym_DOLLAR] = ACTIONS(6333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6335), - [anon_sym_BSLASHbegin] = ACTIONS(6333), - [anon_sym_BSLASHend] = ACTIONS(6333), - [anon_sym_BSLASHtitle] = ACTIONS(6333), - [anon_sym_BSLASHauthor] = ACTIONS(6333), - [anon_sym_BSLASHusepackage] = ACTIONS(6333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6333), - [anon_sym_BSLASHinclude] = ACTIONS(6333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6333), - [anon_sym_BSLASHinput] = ACTIONS(6333), - [anon_sym_BSLASHsubfile] = ACTIONS(6333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6333), - [anon_sym_BSLASHbibliography] = ACTIONS(6333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6333), - [anon_sym_BSLASHincludesvg] = ACTIONS(6333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6333), - [anon_sym_BSLASHimport] = ACTIONS(6333), - [anon_sym_BSLASHsubimport] = ACTIONS(6333), - [anon_sym_BSLASHinputfrom] = ACTIONS(6333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6333), - [anon_sym_BSLASHincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHcaption] = ACTIONS(6333), - [anon_sym_BSLASHcite] = ACTIONS(6333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCite] = ACTIONS(6333), - [anon_sym_BSLASHnocite] = ACTIONS(6333), - [anon_sym_BSLASHcitet] = ACTIONS(6333), - [anon_sym_BSLASHcitep] = ACTIONS(6333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteauthor] = ACTIONS(6333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitetitle] = ACTIONS(6333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteyear] = ACTIONS(6333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitedate] = ACTIONS(6333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteurl] = ACTIONS(6333), - [anon_sym_BSLASHfullcite] = ACTIONS(6333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6333), - [anon_sym_BSLASHcitealt] = ACTIONS(6333), - [anon_sym_BSLASHcitealp] = ACTIONS(6333), - [anon_sym_BSLASHcitetext] = ACTIONS(6333), - [anon_sym_BSLASHparencite] = ACTIONS(6333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHParencite] = ACTIONS(6333), - [anon_sym_BSLASHfootcite] = ACTIONS(6333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6333), - [anon_sym_BSLASHtextcite] = ACTIONS(6333), - [anon_sym_BSLASHTextcite] = ACTIONS(6333), - [anon_sym_BSLASHsmartcite] = ACTIONS(6333), - [anon_sym_BSLASHSmartcite] = ACTIONS(6333), - [anon_sym_BSLASHsupercite] = ACTIONS(6333), - [anon_sym_BSLASHautocite] = ACTIONS(6333), - [anon_sym_BSLASHAutocite] = ACTIONS(6333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHvolcite] = ACTIONS(6333), - [anon_sym_BSLASHVolcite] = ACTIONS(6333), - [anon_sym_BSLASHpvolcite] = ACTIONS(6333), - [anon_sym_BSLASHPvolcite] = ACTIONS(6333), - [anon_sym_BSLASHfvolcite] = ACTIONS(6333), - [anon_sym_BSLASHftvolcite] = ACTIONS(6333), - [anon_sym_BSLASHsvolcite] = ACTIONS(6333), - [anon_sym_BSLASHSvolcite] = ACTIONS(6333), - [anon_sym_BSLASHtvolcite] = ACTIONS(6333), - [anon_sym_BSLASHTvolcite] = ACTIONS(6333), - [anon_sym_BSLASHavolcite] = ACTIONS(6333), - [anon_sym_BSLASHAvolcite] = ACTIONS(6333), - [anon_sym_BSLASHnotecite] = ACTIONS(6333), - [anon_sym_BSLASHNotecite] = ACTIONS(6333), - [anon_sym_BSLASHpnotecite] = ACTIONS(6333), - [anon_sym_BSLASHPnotecite] = ACTIONS(6333), - [anon_sym_BSLASHfnotecite] = ACTIONS(6333), - [anon_sym_BSLASHlabel] = ACTIONS(6333), - [anon_sym_BSLASHref] = ACTIONS(6333), - [anon_sym_BSLASHeqref] = ACTIONS(6333), - [anon_sym_BSLASHvref] = ACTIONS(6333), - [anon_sym_BSLASHVref] = ACTIONS(6333), - [anon_sym_BSLASHautoref] = ACTIONS(6333), - [anon_sym_BSLASHpageref] = ACTIONS(6333), - [anon_sym_BSLASHcref] = ACTIONS(6333), - [anon_sym_BSLASHCref] = ACTIONS(6333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnameCref] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHlabelcref] = ACTIONS(6333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCrefrange] = ACTIONS(6333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnewlabel] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6335), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHdef] = ACTIONS(6333), - [anon_sym_BSLASHlet] = ACTIONS(6333), - [anon_sym_BSLASHleft] = ACTIONS(6333), - [anon_sym_BSLASHbig] = ACTIONS(6333), - [anon_sym_BSLASHBig] = ACTIONS(6333), - [anon_sym_BSLASHbigg] = ACTIONS(6333), - [anon_sym_BSLASHBigg] = ACTIONS(6333), - [anon_sym_BSLASHbigl] = ACTIONS(6333), - [anon_sym_BSLASHBigl] = ACTIONS(6333), - [anon_sym_BSLASHbiggl] = ACTIONS(6333), - [anon_sym_BSLASHBiggl] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6333), - [anon_sym_BSLASHgls] = ACTIONS(6333), - [anon_sym_BSLASHGls] = ACTIONS(6333), - [anon_sym_BSLASHGLS] = ACTIONS(6333), - [anon_sym_BSLASHglspl] = ACTIONS(6333), - [anon_sym_BSLASHGlspl] = ACTIONS(6333), - [anon_sym_BSLASHGLSpl] = ACTIONS(6333), - [anon_sym_BSLASHglsdisp] = ACTIONS(6333), - [anon_sym_BSLASHglslink] = ACTIONS(6333), - [anon_sym_BSLASHglstext] = ACTIONS(6333), - [anon_sym_BSLASHGlstext] = ACTIONS(6333), - [anon_sym_BSLASHGLStext] = ACTIONS(6333), - [anon_sym_BSLASHglsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6333), - [anon_sym_BSLASHglsplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSplural] = ACTIONS(6333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHglsname] = ACTIONS(6333), - [anon_sym_BSLASHGlsname] = ACTIONS(6333), - [anon_sym_BSLASHGLSname] = ACTIONS(6333), - [anon_sym_BSLASHglssymbol] = ACTIONS(6333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6333), - [anon_sym_BSLASHglsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6333), - [anon_sym_BSLASHglsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6333), - [anon_sym_BSLASHglsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6333), - [anon_sym_BSLASHglsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6333), - [anon_sym_BSLASHglsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6333), - [anon_sym_BSLASHnewacronym] = ACTIONS(6333), - [anon_sym_BSLASHacrshort] = ACTIONS(6333), - [anon_sym_BSLASHAcrshort] = ACTIONS(6333), - [anon_sym_BSLASHACRshort] = ACTIONS(6333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6333), - [anon_sym_BSLASHacrlong] = ACTIONS(6333), - [anon_sym_BSLASHAcrlong] = ACTIONS(6333), - [anon_sym_BSLASHACRlong] = ACTIONS(6333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6333), - [anon_sym_BSLASHacrfull] = ACTIONS(6333), - [anon_sym_BSLASHAcrfull] = ACTIONS(6333), - [anon_sym_BSLASHACRfull] = ACTIONS(6333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6333), - [anon_sym_BSLASHacs] = ACTIONS(6333), - [anon_sym_BSLASHAcs] = ACTIONS(6333), - [anon_sym_BSLASHacsp] = ACTIONS(6333), - [anon_sym_BSLASHAcsp] = ACTIONS(6333), - [anon_sym_BSLASHacl] = ACTIONS(6333), - [anon_sym_BSLASHAcl] = ACTIONS(6333), - [anon_sym_BSLASHaclp] = ACTIONS(6333), - [anon_sym_BSLASHAclp] = ACTIONS(6333), - [anon_sym_BSLASHacf] = ACTIONS(6333), - [anon_sym_BSLASHAcf] = ACTIONS(6333), - [anon_sym_BSLASHacfp] = ACTIONS(6333), - [anon_sym_BSLASHAcfp] = ACTIONS(6333), - [anon_sym_BSLASHac] = ACTIONS(6333), - [anon_sym_BSLASHAc] = ACTIONS(6333), - [anon_sym_BSLASHacp] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6333), - [anon_sym_BSLASHcolor] = ACTIONS(6333), - [anon_sym_BSLASHcolorbox] = ACTIONS(6333), - [anon_sym_BSLASHtextcolor] = ACTIONS(6333), - [anon_sym_BSLASHpagecolor] = ACTIONS(6333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6333), - [anon_sym_BSLASHtext] = ACTIONS(6333), - [anon_sym_BSLASHintertext] = ACTIONS(6333), - [anon_sym_shortintertext] = ACTIONS(6333), - }, - [1529] = { - [sym_brack_group_text] = STATE(1609), - [sym_command_name] = ACTIONS(6017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6017), - [anon_sym_LBRACK] = ACTIONS(6941), - [anon_sym_RBRACK] = ACTIONS(6019), - [anon_sym_COMMA] = ACTIONS(6019), - [anon_sym_EQ] = ACTIONS(6019), - [anon_sym_LPAREN] = ACTIONS(6019), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_LBRACE] = ACTIONS(6019), - [sym_word] = ACTIONS(6017), - [sym_placeholder] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(6017), - [anon_sym_PIPE] = ACTIONS(6017), - [anon_sym_COLON] = ACTIONS(6017), - [anon_sym_SQUOTE] = ACTIONS(6017), - [anon_sym__] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), - [anon_sym_DOLLAR] = ACTIONS(6017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), - [anon_sym_BSLASHbegin] = ACTIONS(6017), - [anon_sym_BSLASHtitle] = ACTIONS(6017), - [anon_sym_BSLASHauthor] = ACTIONS(6017), - [anon_sym_BSLASHusepackage] = ACTIONS(6017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), - [anon_sym_BSLASHinclude] = ACTIONS(6017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), - [anon_sym_BSLASHinput] = ACTIONS(6017), - [anon_sym_BSLASHsubfile] = ACTIONS(6017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), - [anon_sym_BSLASHbibliography] = ACTIONS(6017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), - [anon_sym_BSLASHincludesvg] = ACTIONS(6017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), - [anon_sym_BSLASHimport] = ACTIONS(6017), - [anon_sym_BSLASHsubimport] = ACTIONS(6017), - [anon_sym_BSLASHinputfrom] = ACTIONS(6017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), - [anon_sym_BSLASHincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHcaption] = ACTIONS(6017), - [anon_sym_BSLASHcite] = ACTIONS(6017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCite] = ACTIONS(6017), - [anon_sym_BSLASHnocite] = ACTIONS(6017), - [anon_sym_BSLASHcitet] = ACTIONS(6017), - [anon_sym_BSLASHcitep] = ACTIONS(6017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteauthor] = ACTIONS(6017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitetitle] = ACTIONS(6017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteyear] = ACTIONS(6017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitedate] = ACTIONS(6017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteurl] = ACTIONS(6017), - [anon_sym_BSLASHfullcite] = ACTIONS(6017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), - [anon_sym_BSLASHcitealt] = ACTIONS(6017), - [anon_sym_BSLASHcitealp] = ACTIONS(6017), - [anon_sym_BSLASHcitetext] = ACTIONS(6017), - [anon_sym_BSLASHparencite] = ACTIONS(6017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHParencite] = ACTIONS(6017), - [anon_sym_BSLASHfootcite] = ACTIONS(6017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), - [anon_sym_BSLASHtextcite] = ACTIONS(6017), - [anon_sym_BSLASHTextcite] = ACTIONS(6017), - [anon_sym_BSLASHsmartcite] = ACTIONS(6017), - [anon_sym_BSLASHSmartcite] = ACTIONS(6017), - [anon_sym_BSLASHsupercite] = ACTIONS(6017), - [anon_sym_BSLASHautocite] = ACTIONS(6017), - [anon_sym_BSLASHAutocite] = ACTIONS(6017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHvolcite] = ACTIONS(6017), - [anon_sym_BSLASHVolcite] = ACTIONS(6017), - [anon_sym_BSLASHpvolcite] = ACTIONS(6017), - [anon_sym_BSLASHPvolcite] = ACTIONS(6017), - [anon_sym_BSLASHfvolcite] = ACTIONS(6017), - [anon_sym_BSLASHftvolcite] = ACTIONS(6017), - [anon_sym_BSLASHsvolcite] = ACTIONS(6017), - [anon_sym_BSLASHSvolcite] = ACTIONS(6017), - [anon_sym_BSLASHtvolcite] = ACTIONS(6017), - [anon_sym_BSLASHTvolcite] = ACTIONS(6017), - [anon_sym_BSLASHavolcite] = ACTIONS(6017), - [anon_sym_BSLASHAvolcite] = ACTIONS(6017), - [anon_sym_BSLASHnotecite] = ACTIONS(6017), - [anon_sym_BSLASHNotecite] = ACTIONS(6017), - [anon_sym_BSLASHpnotecite] = ACTIONS(6017), - [anon_sym_BSLASHPnotecite] = ACTIONS(6017), - [anon_sym_BSLASHfnotecite] = ACTIONS(6017), - [anon_sym_BSLASHlabel] = ACTIONS(6017), - [anon_sym_BSLASHref] = ACTIONS(6017), - [anon_sym_BSLASHeqref] = ACTIONS(6017), - [anon_sym_BSLASHvref] = ACTIONS(6017), - [anon_sym_BSLASHVref] = ACTIONS(6017), - [anon_sym_BSLASHautoref] = ACTIONS(6017), - [anon_sym_BSLASHpageref] = ACTIONS(6017), - [anon_sym_BSLASHcref] = ACTIONS(6017), - [anon_sym_BSLASHCref] = ACTIONS(6017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnameCref] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHlabelcref] = ACTIONS(6017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCrefrange] = ACTIONS(6017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnewlabel] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHdef] = ACTIONS(6017), - [anon_sym_BSLASHlet] = ACTIONS(6017), - [anon_sym_BSLASHleft] = ACTIONS(6017), - [anon_sym_BSLASHbig] = ACTIONS(6017), - [anon_sym_BSLASHBig] = ACTIONS(6017), - [anon_sym_BSLASHbigg] = ACTIONS(6017), - [anon_sym_BSLASHBigg] = ACTIONS(6017), - [anon_sym_BSLASHbigl] = ACTIONS(6017), - [anon_sym_BSLASHBigl] = ACTIONS(6017), - [anon_sym_BSLASHbiggl] = ACTIONS(6017), - [anon_sym_BSLASHBiggl] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), - [anon_sym_BSLASHgls] = ACTIONS(6017), - [anon_sym_BSLASHGls] = ACTIONS(6017), - [anon_sym_BSLASHGLS] = ACTIONS(6017), - [anon_sym_BSLASHglspl] = ACTIONS(6017), - [anon_sym_BSLASHGlspl] = ACTIONS(6017), - [anon_sym_BSLASHGLSpl] = ACTIONS(6017), - [anon_sym_BSLASHglsdisp] = ACTIONS(6017), - [anon_sym_BSLASHglslink] = ACTIONS(6017), - [anon_sym_BSLASHglstext] = ACTIONS(6017), - [anon_sym_BSLASHGlstext] = ACTIONS(6017), - [anon_sym_BSLASHGLStext] = ACTIONS(6017), - [anon_sym_BSLASHglsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), - [anon_sym_BSLASHglsplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSplural] = ACTIONS(6017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHglsname] = ACTIONS(6017), - [anon_sym_BSLASHGlsname] = ACTIONS(6017), - [anon_sym_BSLASHGLSname] = ACTIONS(6017), - [anon_sym_BSLASHglssymbol] = ACTIONS(6017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), - [anon_sym_BSLASHglsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), - [anon_sym_BSLASHglsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), - [anon_sym_BSLASHglsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), - [anon_sym_BSLASHglsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), - [anon_sym_BSLASHglsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), - [anon_sym_BSLASHnewacronym] = ACTIONS(6017), - [anon_sym_BSLASHacrshort] = ACTIONS(6017), - [anon_sym_BSLASHAcrshort] = ACTIONS(6017), - [anon_sym_BSLASHACRshort] = ACTIONS(6017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), - [anon_sym_BSLASHacrlong] = ACTIONS(6017), - [anon_sym_BSLASHAcrlong] = ACTIONS(6017), - [anon_sym_BSLASHACRlong] = ACTIONS(6017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), - [anon_sym_BSLASHacrfull] = ACTIONS(6017), - [anon_sym_BSLASHAcrfull] = ACTIONS(6017), - [anon_sym_BSLASHACRfull] = ACTIONS(6017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), - [anon_sym_BSLASHacs] = ACTIONS(6017), - [anon_sym_BSLASHAcs] = ACTIONS(6017), - [anon_sym_BSLASHacsp] = ACTIONS(6017), - [anon_sym_BSLASHAcsp] = ACTIONS(6017), - [anon_sym_BSLASHacl] = ACTIONS(6017), - [anon_sym_BSLASHAcl] = ACTIONS(6017), - [anon_sym_BSLASHaclp] = ACTIONS(6017), - [anon_sym_BSLASHAclp] = ACTIONS(6017), - [anon_sym_BSLASHacf] = ACTIONS(6017), - [anon_sym_BSLASHAcf] = ACTIONS(6017), - [anon_sym_BSLASHacfp] = ACTIONS(6017), - [anon_sym_BSLASHAcfp] = ACTIONS(6017), - [anon_sym_BSLASHac] = ACTIONS(6017), - [anon_sym_BSLASHAc] = ACTIONS(6017), - [anon_sym_BSLASHacp] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), - [anon_sym_BSLASHcolor] = ACTIONS(6017), - [anon_sym_BSLASHcolorbox] = ACTIONS(6017), - [anon_sym_BSLASHtextcolor] = ACTIONS(6017), - [anon_sym_BSLASHpagecolor] = ACTIONS(6017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), - [anon_sym_BSLASHtext] = ACTIONS(6017), - [anon_sym_BSLASHintertext] = ACTIONS(6017), - [anon_sym_shortintertext] = ACTIONS(6017), - }, - [1530] = { - [sym_command_name] = ACTIONS(6157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_EQ] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_LBRACE] = ACTIONS(6159), - [sym_word] = ACTIONS(6157), - [sym_placeholder] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6157), - [anon_sym_GT] = ACTIONS(6157), - [anon_sym_BANG] = ACTIONS(6157), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_SQUOTE] = ACTIONS(6157), - [anon_sym__] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6159), - [anon_sym_DOLLAR] = ACTIONS(6157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6159), - [anon_sym_BSLASHbegin] = ACTIONS(6157), - [anon_sym_BSLASHend] = ACTIONS(6157), - [anon_sym_BSLASHtitle] = ACTIONS(6157), - [anon_sym_BSLASHauthor] = ACTIONS(6157), - [anon_sym_BSLASHusepackage] = ACTIONS(6157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6157), - [anon_sym_BSLASHinclude] = ACTIONS(6157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6157), - [anon_sym_BSLASHinput] = ACTIONS(6157), - [anon_sym_BSLASHsubfile] = ACTIONS(6157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6157), - [anon_sym_BSLASHbibliography] = ACTIONS(6157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6157), - [anon_sym_BSLASHincludesvg] = ACTIONS(6157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6157), - [anon_sym_BSLASHimport] = ACTIONS(6157), - [anon_sym_BSLASHsubimport] = ACTIONS(6157), - [anon_sym_BSLASHinputfrom] = ACTIONS(6157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6157), - [anon_sym_BSLASHincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHcaption] = ACTIONS(6157), - [anon_sym_BSLASHcite] = ACTIONS(6157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCite] = ACTIONS(6157), - [anon_sym_BSLASHnocite] = ACTIONS(6157), - [anon_sym_BSLASHcitet] = ACTIONS(6157), - [anon_sym_BSLASHcitep] = ACTIONS(6157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteauthor] = ACTIONS(6157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitetitle] = ACTIONS(6157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteyear] = ACTIONS(6157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitedate] = ACTIONS(6157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteurl] = ACTIONS(6157), - [anon_sym_BSLASHfullcite] = ACTIONS(6157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6157), - [anon_sym_BSLASHcitealt] = ACTIONS(6157), - [anon_sym_BSLASHcitealp] = ACTIONS(6157), - [anon_sym_BSLASHcitetext] = ACTIONS(6157), - [anon_sym_BSLASHparencite] = ACTIONS(6157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHParencite] = ACTIONS(6157), - [anon_sym_BSLASHfootcite] = ACTIONS(6157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6157), - [anon_sym_BSLASHtextcite] = ACTIONS(6157), - [anon_sym_BSLASHTextcite] = ACTIONS(6157), - [anon_sym_BSLASHsmartcite] = ACTIONS(6157), - [anon_sym_BSLASHSmartcite] = ACTIONS(6157), - [anon_sym_BSLASHsupercite] = ACTIONS(6157), - [anon_sym_BSLASHautocite] = ACTIONS(6157), - [anon_sym_BSLASHAutocite] = ACTIONS(6157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHvolcite] = ACTIONS(6157), - [anon_sym_BSLASHVolcite] = ACTIONS(6157), - [anon_sym_BSLASHpvolcite] = ACTIONS(6157), - [anon_sym_BSLASHPvolcite] = ACTIONS(6157), - [anon_sym_BSLASHfvolcite] = ACTIONS(6157), - [anon_sym_BSLASHftvolcite] = ACTIONS(6157), - [anon_sym_BSLASHsvolcite] = ACTIONS(6157), - [anon_sym_BSLASHSvolcite] = ACTIONS(6157), - [anon_sym_BSLASHtvolcite] = ACTIONS(6157), - [anon_sym_BSLASHTvolcite] = ACTIONS(6157), - [anon_sym_BSLASHavolcite] = ACTIONS(6157), - [anon_sym_BSLASHAvolcite] = ACTIONS(6157), - [anon_sym_BSLASHnotecite] = ACTIONS(6157), - [anon_sym_BSLASHNotecite] = ACTIONS(6157), - [anon_sym_BSLASHpnotecite] = ACTIONS(6157), - [anon_sym_BSLASHPnotecite] = ACTIONS(6157), - [anon_sym_BSLASHfnotecite] = ACTIONS(6157), - [anon_sym_BSLASHlabel] = ACTIONS(6157), - [anon_sym_BSLASHref] = ACTIONS(6157), - [anon_sym_BSLASHeqref] = ACTIONS(6157), - [anon_sym_BSLASHvref] = ACTIONS(6157), - [anon_sym_BSLASHVref] = ACTIONS(6157), - [anon_sym_BSLASHautoref] = ACTIONS(6157), - [anon_sym_BSLASHpageref] = ACTIONS(6157), - [anon_sym_BSLASHcref] = ACTIONS(6157), - [anon_sym_BSLASHCref] = ACTIONS(6157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnameCref] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHlabelcref] = ACTIONS(6157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCrefrange] = ACTIONS(6157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnewlabel] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6159), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHdef] = ACTIONS(6157), - [anon_sym_BSLASHlet] = ACTIONS(6157), - [anon_sym_BSLASHleft] = ACTIONS(6157), - [anon_sym_BSLASHbig] = ACTIONS(6157), - [anon_sym_BSLASHBig] = ACTIONS(6157), - [anon_sym_BSLASHbigg] = ACTIONS(6157), - [anon_sym_BSLASHBigg] = ACTIONS(6157), - [anon_sym_BSLASHbigl] = ACTIONS(6157), - [anon_sym_BSLASHBigl] = ACTIONS(6157), - [anon_sym_BSLASHbiggl] = ACTIONS(6157), - [anon_sym_BSLASHBiggl] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6157), - [anon_sym_BSLASHgls] = ACTIONS(6157), - [anon_sym_BSLASHGls] = ACTIONS(6157), - [anon_sym_BSLASHGLS] = ACTIONS(6157), - [anon_sym_BSLASHglspl] = ACTIONS(6157), - [anon_sym_BSLASHGlspl] = ACTIONS(6157), - [anon_sym_BSLASHGLSpl] = ACTIONS(6157), - [anon_sym_BSLASHglsdisp] = ACTIONS(6157), - [anon_sym_BSLASHglslink] = ACTIONS(6157), - [anon_sym_BSLASHglstext] = ACTIONS(6157), - [anon_sym_BSLASHGlstext] = ACTIONS(6157), - [anon_sym_BSLASHGLStext] = ACTIONS(6157), - [anon_sym_BSLASHglsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6157), - [anon_sym_BSLASHglsplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSplural] = ACTIONS(6157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHglsname] = ACTIONS(6157), - [anon_sym_BSLASHGlsname] = ACTIONS(6157), - [anon_sym_BSLASHGLSname] = ACTIONS(6157), - [anon_sym_BSLASHglssymbol] = ACTIONS(6157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6157), - [anon_sym_BSLASHglsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6157), - [anon_sym_BSLASHglsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6157), - [anon_sym_BSLASHglsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6157), - [anon_sym_BSLASHglsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6157), - [anon_sym_BSLASHglsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6157), - [anon_sym_BSLASHnewacronym] = ACTIONS(6157), - [anon_sym_BSLASHacrshort] = ACTIONS(6157), - [anon_sym_BSLASHAcrshort] = ACTIONS(6157), - [anon_sym_BSLASHACRshort] = ACTIONS(6157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6157), - [anon_sym_BSLASHacrlong] = ACTIONS(6157), - [anon_sym_BSLASHAcrlong] = ACTIONS(6157), - [anon_sym_BSLASHACRlong] = ACTIONS(6157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6157), - [anon_sym_BSLASHacrfull] = ACTIONS(6157), - [anon_sym_BSLASHAcrfull] = ACTIONS(6157), - [anon_sym_BSLASHACRfull] = ACTIONS(6157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6157), - [anon_sym_BSLASHacs] = ACTIONS(6157), - [anon_sym_BSLASHAcs] = ACTIONS(6157), - [anon_sym_BSLASHacsp] = ACTIONS(6157), - [anon_sym_BSLASHAcsp] = ACTIONS(6157), - [anon_sym_BSLASHacl] = ACTIONS(6157), - [anon_sym_BSLASHAcl] = ACTIONS(6157), - [anon_sym_BSLASHaclp] = ACTIONS(6157), - [anon_sym_BSLASHAclp] = ACTIONS(6157), - [anon_sym_BSLASHacf] = ACTIONS(6157), - [anon_sym_BSLASHAcf] = ACTIONS(6157), - [anon_sym_BSLASHacfp] = ACTIONS(6157), - [anon_sym_BSLASHAcfp] = ACTIONS(6157), - [anon_sym_BSLASHac] = ACTIONS(6157), - [anon_sym_BSLASHAc] = ACTIONS(6157), - [anon_sym_BSLASHacp] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6157), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6157), - [anon_sym_BSLASHcolor] = ACTIONS(6157), - [anon_sym_BSLASHcolorbox] = ACTIONS(6157), - [anon_sym_BSLASHtextcolor] = ACTIONS(6157), - [anon_sym_BSLASHpagecolor] = ACTIONS(6157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6157), - [anon_sym_BSLASHtext] = ACTIONS(6157), - [anon_sym_BSLASHintertext] = ACTIONS(6157), - [anon_sym_shortintertext] = ACTIONS(6157), - }, - [1531] = { - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHend] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [1532] = { - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHend] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [1533] = { - [sym_command_name] = ACTIONS(6337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6337), - [anon_sym_LBRACK] = ACTIONS(6339), - [anon_sym_RBRACK] = ACTIONS(6339), - [anon_sym_COMMA] = ACTIONS(6339), - [anon_sym_EQ] = ACTIONS(6339), - [anon_sym_LPAREN] = ACTIONS(6339), - [anon_sym_RPAREN] = ACTIONS(6339), - [anon_sym_LBRACE] = ACTIONS(6339), - [sym_word] = ACTIONS(6337), - [sym_placeholder] = ACTIONS(6339), - [anon_sym_PLUS] = ACTIONS(6339), - [anon_sym_DASH] = ACTIONS(6339), - [anon_sym_STAR] = ACTIONS(6339), - [anon_sym_SLASH] = ACTIONS(6339), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_COLON] = ACTIONS(6337), - [anon_sym_SQUOTE] = ACTIONS(6337), - [anon_sym__] = ACTIONS(6339), - [anon_sym_CARET] = ACTIONS(6339), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6339), - [anon_sym_DOLLAR] = ACTIONS(6337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6339), - [anon_sym_BSLASHbegin] = ACTIONS(6337), - [anon_sym_BSLASHend] = ACTIONS(6337), - [anon_sym_BSLASHtitle] = ACTIONS(6337), - [anon_sym_BSLASHauthor] = ACTIONS(6337), - [anon_sym_BSLASHusepackage] = ACTIONS(6337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6337), - [anon_sym_BSLASHinclude] = ACTIONS(6337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6337), - [anon_sym_BSLASHinput] = ACTIONS(6337), - [anon_sym_BSLASHsubfile] = ACTIONS(6337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6337), - [anon_sym_BSLASHbibliography] = ACTIONS(6337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6337), - [anon_sym_BSLASHincludesvg] = ACTIONS(6337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6337), - [anon_sym_BSLASHimport] = ACTIONS(6337), - [anon_sym_BSLASHsubimport] = ACTIONS(6337), - [anon_sym_BSLASHinputfrom] = ACTIONS(6337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6337), - [anon_sym_BSLASHincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHcaption] = ACTIONS(6337), - [anon_sym_BSLASHcite] = ACTIONS(6337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCite] = ACTIONS(6337), - [anon_sym_BSLASHnocite] = ACTIONS(6337), - [anon_sym_BSLASHcitet] = ACTIONS(6337), - [anon_sym_BSLASHcitep] = ACTIONS(6337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteauthor] = ACTIONS(6337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitetitle] = ACTIONS(6337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteyear] = ACTIONS(6337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitedate] = ACTIONS(6337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteurl] = ACTIONS(6337), - [anon_sym_BSLASHfullcite] = ACTIONS(6337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6337), - [anon_sym_BSLASHcitealt] = ACTIONS(6337), - [anon_sym_BSLASHcitealp] = ACTIONS(6337), - [anon_sym_BSLASHcitetext] = ACTIONS(6337), - [anon_sym_BSLASHparencite] = ACTIONS(6337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHParencite] = ACTIONS(6337), - [anon_sym_BSLASHfootcite] = ACTIONS(6337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6337), - [anon_sym_BSLASHtextcite] = ACTIONS(6337), - [anon_sym_BSLASHTextcite] = ACTIONS(6337), - [anon_sym_BSLASHsmartcite] = ACTIONS(6337), - [anon_sym_BSLASHSmartcite] = ACTIONS(6337), - [anon_sym_BSLASHsupercite] = ACTIONS(6337), - [anon_sym_BSLASHautocite] = ACTIONS(6337), - [anon_sym_BSLASHAutocite] = ACTIONS(6337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHvolcite] = ACTIONS(6337), - [anon_sym_BSLASHVolcite] = ACTIONS(6337), - [anon_sym_BSLASHpvolcite] = ACTIONS(6337), - [anon_sym_BSLASHPvolcite] = ACTIONS(6337), - [anon_sym_BSLASHfvolcite] = ACTIONS(6337), - [anon_sym_BSLASHftvolcite] = ACTIONS(6337), - [anon_sym_BSLASHsvolcite] = ACTIONS(6337), - [anon_sym_BSLASHSvolcite] = ACTIONS(6337), - [anon_sym_BSLASHtvolcite] = ACTIONS(6337), - [anon_sym_BSLASHTvolcite] = ACTIONS(6337), - [anon_sym_BSLASHavolcite] = ACTIONS(6337), - [anon_sym_BSLASHAvolcite] = ACTIONS(6337), - [anon_sym_BSLASHnotecite] = ACTIONS(6337), - [anon_sym_BSLASHNotecite] = ACTIONS(6337), - [anon_sym_BSLASHpnotecite] = ACTIONS(6337), - [anon_sym_BSLASHPnotecite] = ACTIONS(6337), - [anon_sym_BSLASHfnotecite] = ACTIONS(6337), - [anon_sym_BSLASHlabel] = ACTIONS(6337), - [anon_sym_BSLASHref] = ACTIONS(6337), - [anon_sym_BSLASHeqref] = ACTIONS(6337), - [anon_sym_BSLASHvref] = ACTIONS(6337), - [anon_sym_BSLASHVref] = ACTIONS(6337), - [anon_sym_BSLASHautoref] = ACTIONS(6337), - [anon_sym_BSLASHpageref] = ACTIONS(6337), - [anon_sym_BSLASHcref] = ACTIONS(6337), - [anon_sym_BSLASHCref] = ACTIONS(6337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnameCref] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHlabelcref] = ACTIONS(6337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCrefrange] = ACTIONS(6337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnewlabel] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6339), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHdef] = ACTIONS(6337), - [anon_sym_BSLASHlet] = ACTIONS(6337), - [anon_sym_BSLASHleft] = ACTIONS(6337), - [anon_sym_BSLASHbig] = ACTIONS(6337), - [anon_sym_BSLASHBig] = ACTIONS(6337), - [anon_sym_BSLASHbigg] = ACTIONS(6337), - [anon_sym_BSLASHBigg] = ACTIONS(6337), - [anon_sym_BSLASHbigl] = ACTIONS(6337), - [anon_sym_BSLASHBigl] = ACTIONS(6337), - [anon_sym_BSLASHbiggl] = ACTIONS(6337), - [anon_sym_BSLASHBiggl] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6337), - [anon_sym_BSLASHgls] = ACTIONS(6337), - [anon_sym_BSLASHGls] = ACTIONS(6337), - [anon_sym_BSLASHGLS] = ACTIONS(6337), - [anon_sym_BSLASHglspl] = ACTIONS(6337), - [anon_sym_BSLASHGlspl] = ACTIONS(6337), - [anon_sym_BSLASHGLSpl] = ACTIONS(6337), - [anon_sym_BSLASHglsdisp] = ACTIONS(6337), - [anon_sym_BSLASHglslink] = ACTIONS(6337), - [anon_sym_BSLASHglstext] = ACTIONS(6337), - [anon_sym_BSLASHGlstext] = ACTIONS(6337), - [anon_sym_BSLASHGLStext] = ACTIONS(6337), - [anon_sym_BSLASHglsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6337), - [anon_sym_BSLASHglsplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSplural] = ACTIONS(6337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHglsname] = ACTIONS(6337), - [anon_sym_BSLASHGlsname] = ACTIONS(6337), - [anon_sym_BSLASHGLSname] = ACTIONS(6337), - [anon_sym_BSLASHglssymbol] = ACTIONS(6337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6337), - [anon_sym_BSLASHglsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6337), - [anon_sym_BSLASHglsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6337), - [anon_sym_BSLASHglsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6337), - [anon_sym_BSLASHglsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6337), - [anon_sym_BSLASHglsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6337), - [anon_sym_BSLASHnewacronym] = ACTIONS(6337), - [anon_sym_BSLASHacrshort] = ACTIONS(6337), - [anon_sym_BSLASHAcrshort] = ACTIONS(6337), - [anon_sym_BSLASHACRshort] = ACTIONS(6337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6337), - [anon_sym_BSLASHacrlong] = ACTIONS(6337), - [anon_sym_BSLASHAcrlong] = ACTIONS(6337), - [anon_sym_BSLASHACRlong] = ACTIONS(6337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6337), - [anon_sym_BSLASHacrfull] = ACTIONS(6337), - [anon_sym_BSLASHAcrfull] = ACTIONS(6337), - [anon_sym_BSLASHACRfull] = ACTIONS(6337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6337), - [anon_sym_BSLASHacs] = ACTIONS(6337), - [anon_sym_BSLASHAcs] = ACTIONS(6337), - [anon_sym_BSLASHacsp] = ACTIONS(6337), - [anon_sym_BSLASHAcsp] = ACTIONS(6337), - [anon_sym_BSLASHacl] = ACTIONS(6337), - [anon_sym_BSLASHAcl] = ACTIONS(6337), - [anon_sym_BSLASHaclp] = ACTIONS(6337), - [anon_sym_BSLASHAclp] = ACTIONS(6337), - [anon_sym_BSLASHacf] = ACTIONS(6337), - [anon_sym_BSLASHAcf] = ACTIONS(6337), - [anon_sym_BSLASHacfp] = ACTIONS(6337), - [anon_sym_BSLASHAcfp] = ACTIONS(6337), - [anon_sym_BSLASHac] = ACTIONS(6337), - [anon_sym_BSLASHAc] = ACTIONS(6337), - [anon_sym_BSLASHacp] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6337), - [anon_sym_BSLASHcolor] = ACTIONS(6337), - [anon_sym_BSLASHcolorbox] = ACTIONS(6337), - [anon_sym_BSLASHtextcolor] = ACTIONS(6337), - [anon_sym_BSLASHpagecolor] = ACTIONS(6337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6337), - [anon_sym_BSLASHtext] = ACTIONS(6337), - [anon_sym_BSLASHintertext] = ACTIONS(6337), - [anon_sym_shortintertext] = ACTIONS(6337), - }, - [1534] = { - [sym_command_name] = ACTIONS(6133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6133), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_EQ] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_LBRACE] = ACTIONS(6135), - [sym_word] = ACTIONS(6133), - [sym_placeholder] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6135), - [anon_sym_DASH] = ACTIONS(6135), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6133), - [anon_sym_GT] = ACTIONS(6133), - [anon_sym_BANG] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6133), - [anon_sym_COLON] = ACTIONS(6133), - [anon_sym_SQUOTE] = ACTIONS(6133), - [anon_sym__] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6135), - [anon_sym_DOLLAR] = ACTIONS(6133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6135), - [anon_sym_BSLASHbegin] = ACTIONS(6133), - [anon_sym_BSLASHend] = ACTIONS(6133), - [anon_sym_BSLASHtitle] = ACTIONS(6133), - [anon_sym_BSLASHauthor] = ACTIONS(6133), - [anon_sym_BSLASHusepackage] = ACTIONS(6133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6133), - [anon_sym_BSLASHinclude] = ACTIONS(6133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6133), - [anon_sym_BSLASHinput] = ACTIONS(6133), - [anon_sym_BSLASHsubfile] = ACTIONS(6133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6133), - [anon_sym_BSLASHbibliography] = ACTIONS(6133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6133), - [anon_sym_BSLASHincludesvg] = ACTIONS(6133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6133), - [anon_sym_BSLASHimport] = ACTIONS(6133), - [anon_sym_BSLASHsubimport] = ACTIONS(6133), - [anon_sym_BSLASHinputfrom] = ACTIONS(6133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6133), - [anon_sym_BSLASHincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHcaption] = ACTIONS(6133), - [anon_sym_BSLASHcite] = ACTIONS(6133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCite] = ACTIONS(6133), - [anon_sym_BSLASHnocite] = ACTIONS(6133), - [anon_sym_BSLASHcitet] = ACTIONS(6133), - [anon_sym_BSLASHcitep] = ACTIONS(6133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteauthor] = ACTIONS(6133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitetitle] = ACTIONS(6133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteyear] = ACTIONS(6133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitedate] = ACTIONS(6133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteurl] = ACTIONS(6133), - [anon_sym_BSLASHfullcite] = ACTIONS(6133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6133), - [anon_sym_BSLASHcitealt] = ACTIONS(6133), - [anon_sym_BSLASHcitealp] = ACTIONS(6133), - [anon_sym_BSLASHcitetext] = ACTIONS(6133), - [anon_sym_BSLASHparencite] = ACTIONS(6133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHParencite] = ACTIONS(6133), - [anon_sym_BSLASHfootcite] = ACTIONS(6133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6133), - [anon_sym_BSLASHtextcite] = ACTIONS(6133), - [anon_sym_BSLASHTextcite] = ACTIONS(6133), - [anon_sym_BSLASHsmartcite] = ACTIONS(6133), - [anon_sym_BSLASHSmartcite] = ACTIONS(6133), - [anon_sym_BSLASHsupercite] = ACTIONS(6133), - [anon_sym_BSLASHautocite] = ACTIONS(6133), - [anon_sym_BSLASHAutocite] = ACTIONS(6133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHvolcite] = ACTIONS(6133), - [anon_sym_BSLASHVolcite] = ACTIONS(6133), - [anon_sym_BSLASHpvolcite] = ACTIONS(6133), - [anon_sym_BSLASHPvolcite] = ACTIONS(6133), - [anon_sym_BSLASHfvolcite] = ACTIONS(6133), - [anon_sym_BSLASHftvolcite] = ACTIONS(6133), - [anon_sym_BSLASHsvolcite] = ACTIONS(6133), - [anon_sym_BSLASHSvolcite] = ACTIONS(6133), - [anon_sym_BSLASHtvolcite] = ACTIONS(6133), - [anon_sym_BSLASHTvolcite] = ACTIONS(6133), - [anon_sym_BSLASHavolcite] = ACTIONS(6133), - [anon_sym_BSLASHAvolcite] = ACTIONS(6133), - [anon_sym_BSLASHnotecite] = ACTIONS(6133), - [anon_sym_BSLASHNotecite] = ACTIONS(6133), - [anon_sym_BSLASHpnotecite] = ACTIONS(6133), - [anon_sym_BSLASHPnotecite] = ACTIONS(6133), - [anon_sym_BSLASHfnotecite] = ACTIONS(6133), - [anon_sym_BSLASHlabel] = ACTIONS(6133), - [anon_sym_BSLASHref] = ACTIONS(6133), - [anon_sym_BSLASHeqref] = ACTIONS(6133), - [anon_sym_BSLASHvref] = ACTIONS(6133), - [anon_sym_BSLASHVref] = ACTIONS(6133), - [anon_sym_BSLASHautoref] = ACTIONS(6133), - [anon_sym_BSLASHpageref] = ACTIONS(6133), - [anon_sym_BSLASHcref] = ACTIONS(6133), - [anon_sym_BSLASHCref] = ACTIONS(6133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnameCref] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHlabelcref] = ACTIONS(6133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCrefrange] = ACTIONS(6133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnewlabel] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6135), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHdef] = ACTIONS(6133), - [anon_sym_BSLASHlet] = ACTIONS(6133), - [anon_sym_BSLASHleft] = ACTIONS(6133), - [anon_sym_BSLASHbig] = ACTIONS(6133), - [anon_sym_BSLASHBig] = ACTIONS(6133), - [anon_sym_BSLASHbigg] = ACTIONS(6133), - [anon_sym_BSLASHBigg] = ACTIONS(6133), - [anon_sym_BSLASHbigl] = ACTIONS(6133), - [anon_sym_BSLASHBigl] = ACTIONS(6133), - [anon_sym_BSLASHbiggl] = ACTIONS(6133), - [anon_sym_BSLASHBiggl] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6133), - [anon_sym_BSLASHgls] = ACTIONS(6133), - [anon_sym_BSLASHGls] = ACTIONS(6133), - [anon_sym_BSLASHGLS] = ACTIONS(6133), - [anon_sym_BSLASHglspl] = ACTIONS(6133), - [anon_sym_BSLASHGlspl] = ACTIONS(6133), - [anon_sym_BSLASHGLSpl] = ACTIONS(6133), - [anon_sym_BSLASHglsdisp] = ACTIONS(6133), - [anon_sym_BSLASHglslink] = ACTIONS(6133), - [anon_sym_BSLASHglstext] = ACTIONS(6133), - [anon_sym_BSLASHGlstext] = ACTIONS(6133), - [anon_sym_BSLASHGLStext] = ACTIONS(6133), - [anon_sym_BSLASHglsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6133), - [anon_sym_BSLASHglsplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSplural] = ACTIONS(6133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHglsname] = ACTIONS(6133), - [anon_sym_BSLASHGlsname] = ACTIONS(6133), - [anon_sym_BSLASHGLSname] = ACTIONS(6133), - [anon_sym_BSLASHglssymbol] = ACTIONS(6133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6133), - [anon_sym_BSLASHglsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6133), - [anon_sym_BSLASHglsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6133), - [anon_sym_BSLASHglsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6133), - [anon_sym_BSLASHglsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6133), - [anon_sym_BSLASHglsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6133), - [anon_sym_BSLASHnewacronym] = ACTIONS(6133), - [anon_sym_BSLASHacrshort] = ACTIONS(6133), - [anon_sym_BSLASHAcrshort] = ACTIONS(6133), - [anon_sym_BSLASHACRshort] = ACTIONS(6133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6133), - [anon_sym_BSLASHacrlong] = ACTIONS(6133), - [anon_sym_BSLASHAcrlong] = ACTIONS(6133), - [anon_sym_BSLASHACRlong] = ACTIONS(6133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6133), - [anon_sym_BSLASHacrfull] = ACTIONS(6133), - [anon_sym_BSLASHAcrfull] = ACTIONS(6133), - [anon_sym_BSLASHACRfull] = ACTIONS(6133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6133), - [anon_sym_BSLASHacs] = ACTIONS(6133), - [anon_sym_BSLASHAcs] = ACTIONS(6133), - [anon_sym_BSLASHacsp] = ACTIONS(6133), - [anon_sym_BSLASHAcsp] = ACTIONS(6133), - [anon_sym_BSLASHacl] = ACTIONS(6133), - [anon_sym_BSLASHAcl] = ACTIONS(6133), - [anon_sym_BSLASHaclp] = ACTIONS(6133), - [anon_sym_BSLASHAclp] = ACTIONS(6133), - [anon_sym_BSLASHacf] = ACTIONS(6133), - [anon_sym_BSLASHAcf] = ACTIONS(6133), - [anon_sym_BSLASHacfp] = ACTIONS(6133), - [anon_sym_BSLASHAcfp] = ACTIONS(6133), - [anon_sym_BSLASHac] = ACTIONS(6133), - [anon_sym_BSLASHAc] = ACTIONS(6133), - [anon_sym_BSLASHacp] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6133), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6133), - [anon_sym_BSLASHcolor] = ACTIONS(6133), - [anon_sym_BSLASHcolorbox] = ACTIONS(6133), - [anon_sym_BSLASHtextcolor] = ACTIONS(6133), - [anon_sym_BSLASHpagecolor] = ACTIONS(6133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6133), - [anon_sym_BSLASHtext] = ACTIONS(6133), - [anon_sym_BSLASHintertext] = ACTIONS(6133), - [anon_sym_shortintertext] = ACTIONS(6133), - }, - [1535] = { - [sym_command_name] = ACTIONS(6345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6345), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_EQ] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_LBRACE] = ACTIONS(6347), - [sym_word] = ACTIONS(6345), - [sym_placeholder] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6345), - [anon_sym_GT] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(6345), - [anon_sym_PIPE] = ACTIONS(6345), - [anon_sym_COLON] = ACTIONS(6345), - [anon_sym_SQUOTE] = ACTIONS(6345), - [anon_sym__] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6347), - [anon_sym_DOLLAR] = ACTIONS(6345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6347), - [anon_sym_BSLASHbegin] = ACTIONS(6345), - [anon_sym_BSLASHend] = ACTIONS(6345), - [anon_sym_BSLASHtitle] = ACTIONS(6345), - [anon_sym_BSLASHauthor] = ACTIONS(6345), - [anon_sym_BSLASHusepackage] = ACTIONS(6345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6345), - [anon_sym_BSLASHinclude] = ACTIONS(6345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6345), - [anon_sym_BSLASHinput] = ACTIONS(6345), - [anon_sym_BSLASHsubfile] = ACTIONS(6345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6345), - [anon_sym_BSLASHbibliography] = ACTIONS(6345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6345), - [anon_sym_BSLASHincludesvg] = ACTIONS(6345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6345), - [anon_sym_BSLASHimport] = ACTIONS(6345), - [anon_sym_BSLASHsubimport] = ACTIONS(6345), - [anon_sym_BSLASHinputfrom] = ACTIONS(6345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6345), - [anon_sym_BSLASHincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHcaption] = ACTIONS(6345), - [anon_sym_BSLASHcite] = ACTIONS(6345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCite] = ACTIONS(6345), - [anon_sym_BSLASHnocite] = ACTIONS(6345), - [anon_sym_BSLASHcitet] = ACTIONS(6345), - [anon_sym_BSLASHcitep] = ACTIONS(6345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteauthor] = ACTIONS(6345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitetitle] = ACTIONS(6345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteyear] = ACTIONS(6345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitedate] = ACTIONS(6345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteurl] = ACTIONS(6345), - [anon_sym_BSLASHfullcite] = ACTIONS(6345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6345), - [anon_sym_BSLASHcitealt] = ACTIONS(6345), - [anon_sym_BSLASHcitealp] = ACTIONS(6345), - [anon_sym_BSLASHcitetext] = ACTIONS(6345), - [anon_sym_BSLASHparencite] = ACTIONS(6345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHParencite] = ACTIONS(6345), - [anon_sym_BSLASHfootcite] = ACTIONS(6345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6345), - [anon_sym_BSLASHtextcite] = ACTIONS(6345), - [anon_sym_BSLASHTextcite] = ACTIONS(6345), - [anon_sym_BSLASHsmartcite] = ACTIONS(6345), - [anon_sym_BSLASHSmartcite] = ACTIONS(6345), - [anon_sym_BSLASHsupercite] = ACTIONS(6345), - [anon_sym_BSLASHautocite] = ACTIONS(6345), - [anon_sym_BSLASHAutocite] = ACTIONS(6345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHvolcite] = ACTIONS(6345), - [anon_sym_BSLASHVolcite] = ACTIONS(6345), - [anon_sym_BSLASHpvolcite] = ACTIONS(6345), - [anon_sym_BSLASHPvolcite] = ACTIONS(6345), - [anon_sym_BSLASHfvolcite] = ACTIONS(6345), - [anon_sym_BSLASHftvolcite] = ACTIONS(6345), - [anon_sym_BSLASHsvolcite] = ACTIONS(6345), - [anon_sym_BSLASHSvolcite] = ACTIONS(6345), - [anon_sym_BSLASHtvolcite] = ACTIONS(6345), - [anon_sym_BSLASHTvolcite] = ACTIONS(6345), - [anon_sym_BSLASHavolcite] = ACTIONS(6345), - [anon_sym_BSLASHAvolcite] = ACTIONS(6345), - [anon_sym_BSLASHnotecite] = ACTIONS(6345), - [anon_sym_BSLASHNotecite] = ACTIONS(6345), - [anon_sym_BSLASHpnotecite] = ACTIONS(6345), - [anon_sym_BSLASHPnotecite] = ACTIONS(6345), - [anon_sym_BSLASHfnotecite] = ACTIONS(6345), - [anon_sym_BSLASHlabel] = ACTIONS(6345), - [anon_sym_BSLASHref] = ACTIONS(6345), - [anon_sym_BSLASHeqref] = ACTIONS(6345), - [anon_sym_BSLASHvref] = ACTIONS(6345), - [anon_sym_BSLASHVref] = ACTIONS(6345), - [anon_sym_BSLASHautoref] = ACTIONS(6345), - [anon_sym_BSLASHpageref] = ACTIONS(6345), - [anon_sym_BSLASHcref] = ACTIONS(6345), - [anon_sym_BSLASHCref] = ACTIONS(6345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnameCref] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHlabelcref] = ACTIONS(6345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCrefrange] = ACTIONS(6345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnewlabel] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6347), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHdef] = ACTIONS(6345), - [anon_sym_BSLASHlet] = ACTIONS(6345), - [anon_sym_BSLASHleft] = ACTIONS(6345), - [anon_sym_BSLASHbig] = ACTIONS(6345), - [anon_sym_BSLASHBig] = ACTIONS(6345), - [anon_sym_BSLASHbigg] = ACTIONS(6345), - [anon_sym_BSLASHBigg] = ACTIONS(6345), - [anon_sym_BSLASHbigl] = ACTIONS(6345), - [anon_sym_BSLASHBigl] = ACTIONS(6345), - [anon_sym_BSLASHbiggl] = ACTIONS(6345), - [anon_sym_BSLASHBiggl] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6345), - [anon_sym_BSLASHgls] = ACTIONS(6345), - [anon_sym_BSLASHGls] = ACTIONS(6345), - [anon_sym_BSLASHGLS] = ACTIONS(6345), - [anon_sym_BSLASHglspl] = ACTIONS(6345), - [anon_sym_BSLASHGlspl] = ACTIONS(6345), - [anon_sym_BSLASHGLSpl] = ACTIONS(6345), - [anon_sym_BSLASHglsdisp] = ACTIONS(6345), - [anon_sym_BSLASHglslink] = ACTIONS(6345), - [anon_sym_BSLASHglstext] = ACTIONS(6345), - [anon_sym_BSLASHGlstext] = ACTIONS(6345), - [anon_sym_BSLASHGLStext] = ACTIONS(6345), - [anon_sym_BSLASHglsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6345), - [anon_sym_BSLASHglsplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSplural] = ACTIONS(6345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHglsname] = ACTIONS(6345), - [anon_sym_BSLASHGlsname] = ACTIONS(6345), - [anon_sym_BSLASHGLSname] = ACTIONS(6345), - [anon_sym_BSLASHglssymbol] = ACTIONS(6345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6345), - [anon_sym_BSLASHglsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6345), - [anon_sym_BSLASHglsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6345), - [anon_sym_BSLASHglsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6345), - [anon_sym_BSLASHglsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6345), - [anon_sym_BSLASHglsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6345), - [anon_sym_BSLASHnewacronym] = ACTIONS(6345), - [anon_sym_BSLASHacrshort] = ACTIONS(6345), - [anon_sym_BSLASHAcrshort] = ACTIONS(6345), - [anon_sym_BSLASHACRshort] = ACTIONS(6345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6345), - [anon_sym_BSLASHacrlong] = ACTIONS(6345), - [anon_sym_BSLASHAcrlong] = ACTIONS(6345), - [anon_sym_BSLASHACRlong] = ACTIONS(6345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6345), - [anon_sym_BSLASHacrfull] = ACTIONS(6345), - [anon_sym_BSLASHAcrfull] = ACTIONS(6345), - [anon_sym_BSLASHACRfull] = ACTIONS(6345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6345), - [anon_sym_BSLASHacs] = ACTIONS(6345), - [anon_sym_BSLASHAcs] = ACTIONS(6345), - [anon_sym_BSLASHacsp] = ACTIONS(6345), - [anon_sym_BSLASHAcsp] = ACTIONS(6345), - [anon_sym_BSLASHacl] = ACTIONS(6345), - [anon_sym_BSLASHAcl] = ACTIONS(6345), - [anon_sym_BSLASHaclp] = ACTIONS(6345), - [anon_sym_BSLASHAclp] = ACTIONS(6345), - [anon_sym_BSLASHacf] = ACTIONS(6345), - [anon_sym_BSLASHAcf] = ACTIONS(6345), - [anon_sym_BSLASHacfp] = ACTIONS(6345), - [anon_sym_BSLASHAcfp] = ACTIONS(6345), - [anon_sym_BSLASHac] = ACTIONS(6345), - [anon_sym_BSLASHAc] = ACTIONS(6345), - [anon_sym_BSLASHacp] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6345), - [anon_sym_BSLASHcolor] = ACTIONS(6345), - [anon_sym_BSLASHcolorbox] = ACTIONS(6345), - [anon_sym_BSLASHtextcolor] = ACTIONS(6345), - [anon_sym_BSLASHpagecolor] = ACTIONS(6345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6345), - [anon_sym_BSLASHtext] = ACTIONS(6345), - [anon_sym_BSLASHintertext] = ACTIONS(6345), - [anon_sym_shortintertext] = ACTIONS(6345), - }, - [1536] = { - [sym_command_name] = ACTIONS(6349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6349), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_EQ] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_LBRACE] = ACTIONS(6351), - [sym_word] = ACTIONS(6349), - [sym_placeholder] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6351), - [anon_sym_DASH] = ACTIONS(6351), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_SQUOTE] = ACTIONS(6349), - [anon_sym__] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6351), - [anon_sym_DOLLAR] = ACTIONS(6349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6351), - [anon_sym_BSLASHbegin] = ACTIONS(6349), - [anon_sym_BSLASHend] = ACTIONS(6349), - [anon_sym_BSLASHtitle] = ACTIONS(6349), - [anon_sym_BSLASHauthor] = ACTIONS(6349), - [anon_sym_BSLASHusepackage] = ACTIONS(6349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6349), - [anon_sym_BSLASHinclude] = ACTIONS(6349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6349), - [anon_sym_BSLASHinput] = ACTIONS(6349), - [anon_sym_BSLASHsubfile] = ACTIONS(6349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6349), - [anon_sym_BSLASHbibliography] = ACTIONS(6349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6349), - [anon_sym_BSLASHincludesvg] = ACTIONS(6349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6349), - [anon_sym_BSLASHimport] = ACTIONS(6349), - [anon_sym_BSLASHsubimport] = ACTIONS(6349), - [anon_sym_BSLASHinputfrom] = ACTIONS(6349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6349), - [anon_sym_BSLASHincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHcaption] = ACTIONS(6349), - [anon_sym_BSLASHcite] = ACTIONS(6349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCite] = ACTIONS(6349), - [anon_sym_BSLASHnocite] = ACTIONS(6349), - [anon_sym_BSLASHcitet] = ACTIONS(6349), - [anon_sym_BSLASHcitep] = ACTIONS(6349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteauthor] = ACTIONS(6349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitetitle] = ACTIONS(6349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteyear] = ACTIONS(6349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitedate] = ACTIONS(6349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteurl] = ACTIONS(6349), - [anon_sym_BSLASHfullcite] = ACTIONS(6349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6349), - [anon_sym_BSLASHcitealt] = ACTIONS(6349), - [anon_sym_BSLASHcitealp] = ACTIONS(6349), - [anon_sym_BSLASHcitetext] = ACTIONS(6349), - [anon_sym_BSLASHparencite] = ACTIONS(6349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHParencite] = ACTIONS(6349), - [anon_sym_BSLASHfootcite] = ACTIONS(6349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6349), - [anon_sym_BSLASHtextcite] = ACTIONS(6349), - [anon_sym_BSLASHTextcite] = ACTIONS(6349), - [anon_sym_BSLASHsmartcite] = ACTIONS(6349), - [anon_sym_BSLASHSmartcite] = ACTIONS(6349), - [anon_sym_BSLASHsupercite] = ACTIONS(6349), - [anon_sym_BSLASHautocite] = ACTIONS(6349), - [anon_sym_BSLASHAutocite] = ACTIONS(6349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHvolcite] = ACTIONS(6349), - [anon_sym_BSLASHVolcite] = ACTIONS(6349), - [anon_sym_BSLASHpvolcite] = ACTIONS(6349), - [anon_sym_BSLASHPvolcite] = ACTIONS(6349), - [anon_sym_BSLASHfvolcite] = ACTIONS(6349), - [anon_sym_BSLASHftvolcite] = ACTIONS(6349), - [anon_sym_BSLASHsvolcite] = ACTIONS(6349), - [anon_sym_BSLASHSvolcite] = ACTIONS(6349), - [anon_sym_BSLASHtvolcite] = ACTIONS(6349), - [anon_sym_BSLASHTvolcite] = ACTIONS(6349), - [anon_sym_BSLASHavolcite] = ACTIONS(6349), - [anon_sym_BSLASHAvolcite] = ACTIONS(6349), - [anon_sym_BSLASHnotecite] = ACTIONS(6349), - [anon_sym_BSLASHNotecite] = ACTIONS(6349), - [anon_sym_BSLASHpnotecite] = ACTIONS(6349), - [anon_sym_BSLASHPnotecite] = ACTIONS(6349), - [anon_sym_BSLASHfnotecite] = ACTIONS(6349), - [anon_sym_BSLASHlabel] = ACTIONS(6349), - [anon_sym_BSLASHref] = ACTIONS(6349), - [anon_sym_BSLASHeqref] = ACTIONS(6349), - [anon_sym_BSLASHvref] = ACTIONS(6349), - [anon_sym_BSLASHVref] = ACTIONS(6349), - [anon_sym_BSLASHautoref] = ACTIONS(6349), - [anon_sym_BSLASHpageref] = ACTIONS(6349), - [anon_sym_BSLASHcref] = ACTIONS(6349), - [anon_sym_BSLASHCref] = ACTIONS(6349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnameCref] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHlabelcref] = ACTIONS(6349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCrefrange] = ACTIONS(6349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnewlabel] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6351), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHdef] = ACTIONS(6349), - [anon_sym_BSLASHlet] = ACTIONS(6349), - [anon_sym_BSLASHleft] = ACTIONS(6349), - [anon_sym_BSLASHbig] = ACTIONS(6349), - [anon_sym_BSLASHBig] = ACTIONS(6349), - [anon_sym_BSLASHbigg] = ACTIONS(6349), - [anon_sym_BSLASHBigg] = ACTIONS(6349), - [anon_sym_BSLASHbigl] = ACTIONS(6349), - [anon_sym_BSLASHBigl] = ACTIONS(6349), - [anon_sym_BSLASHbiggl] = ACTIONS(6349), - [anon_sym_BSLASHBiggl] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6349), - [anon_sym_BSLASHgls] = ACTIONS(6349), - [anon_sym_BSLASHGls] = ACTIONS(6349), - [anon_sym_BSLASHGLS] = ACTIONS(6349), - [anon_sym_BSLASHglspl] = ACTIONS(6349), - [anon_sym_BSLASHGlspl] = ACTIONS(6349), - [anon_sym_BSLASHGLSpl] = ACTIONS(6349), - [anon_sym_BSLASHglsdisp] = ACTIONS(6349), - [anon_sym_BSLASHglslink] = ACTIONS(6349), - [anon_sym_BSLASHglstext] = ACTIONS(6349), - [anon_sym_BSLASHGlstext] = ACTIONS(6349), - [anon_sym_BSLASHGLStext] = ACTIONS(6349), - [anon_sym_BSLASHglsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6349), - [anon_sym_BSLASHglsplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSplural] = ACTIONS(6349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHglsname] = ACTIONS(6349), - [anon_sym_BSLASHGlsname] = ACTIONS(6349), - [anon_sym_BSLASHGLSname] = ACTIONS(6349), - [anon_sym_BSLASHglssymbol] = ACTIONS(6349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6349), - [anon_sym_BSLASHglsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6349), - [anon_sym_BSLASHglsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6349), - [anon_sym_BSLASHglsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6349), - [anon_sym_BSLASHglsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6349), - [anon_sym_BSLASHglsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6349), - [anon_sym_BSLASHnewacronym] = ACTIONS(6349), - [anon_sym_BSLASHacrshort] = ACTIONS(6349), - [anon_sym_BSLASHAcrshort] = ACTIONS(6349), - [anon_sym_BSLASHACRshort] = ACTIONS(6349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6349), - [anon_sym_BSLASHacrlong] = ACTIONS(6349), - [anon_sym_BSLASHAcrlong] = ACTIONS(6349), - [anon_sym_BSLASHACRlong] = ACTIONS(6349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6349), - [anon_sym_BSLASHacrfull] = ACTIONS(6349), - [anon_sym_BSLASHAcrfull] = ACTIONS(6349), - [anon_sym_BSLASHACRfull] = ACTIONS(6349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6349), - [anon_sym_BSLASHacs] = ACTIONS(6349), - [anon_sym_BSLASHAcs] = ACTIONS(6349), - [anon_sym_BSLASHacsp] = ACTIONS(6349), - [anon_sym_BSLASHAcsp] = ACTIONS(6349), - [anon_sym_BSLASHacl] = ACTIONS(6349), - [anon_sym_BSLASHAcl] = ACTIONS(6349), - [anon_sym_BSLASHaclp] = ACTIONS(6349), - [anon_sym_BSLASHAclp] = ACTIONS(6349), - [anon_sym_BSLASHacf] = ACTIONS(6349), - [anon_sym_BSLASHAcf] = ACTIONS(6349), - [anon_sym_BSLASHacfp] = ACTIONS(6349), - [anon_sym_BSLASHAcfp] = ACTIONS(6349), - [anon_sym_BSLASHac] = ACTIONS(6349), - [anon_sym_BSLASHAc] = ACTIONS(6349), - [anon_sym_BSLASHacp] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6349), - [anon_sym_BSLASHcolor] = ACTIONS(6349), - [anon_sym_BSLASHcolorbox] = ACTIONS(6349), - [anon_sym_BSLASHtextcolor] = ACTIONS(6349), - [anon_sym_BSLASHpagecolor] = ACTIONS(6349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6349), - [anon_sym_BSLASHtext] = ACTIONS(6349), - [anon_sym_BSLASHintertext] = ACTIONS(6349), - [anon_sym_shortintertext] = ACTIONS(6349), - }, - [1537] = { - [sym_command_name] = ACTIONS(6353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6353), - [anon_sym_LBRACK] = ACTIONS(6355), - [anon_sym_RBRACK] = ACTIONS(6355), - [anon_sym_COMMA] = ACTIONS(6355), - [anon_sym_EQ] = ACTIONS(6355), - [anon_sym_LPAREN] = ACTIONS(6355), - [anon_sym_RPAREN] = ACTIONS(6355), - [anon_sym_LBRACE] = ACTIONS(6355), - [sym_word] = ACTIONS(6353), - [sym_placeholder] = ACTIONS(6355), - [anon_sym_PLUS] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [anon_sym_STAR] = ACTIONS(6355), - [anon_sym_SLASH] = ACTIONS(6355), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_COLON] = ACTIONS(6353), - [anon_sym_SQUOTE] = ACTIONS(6353), - [anon_sym__] = ACTIONS(6355), - [anon_sym_CARET] = ACTIONS(6355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6355), - [anon_sym_DOLLAR] = ACTIONS(6353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6355), - [anon_sym_BSLASHbegin] = ACTIONS(6353), - [anon_sym_BSLASHend] = ACTIONS(6353), - [anon_sym_BSLASHtitle] = ACTIONS(6353), - [anon_sym_BSLASHauthor] = ACTIONS(6353), - [anon_sym_BSLASHusepackage] = ACTIONS(6353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6353), - [anon_sym_BSLASHinclude] = ACTIONS(6353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6353), - [anon_sym_BSLASHinput] = ACTIONS(6353), - [anon_sym_BSLASHsubfile] = ACTIONS(6353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6353), - [anon_sym_BSLASHbibliography] = ACTIONS(6353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6353), - [anon_sym_BSLASHincludesvg] = ACTIONS(6353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6353), - [anon_sym_BSLASHimport] = ACTIONS(6353), - [anon_sym_BSLASHsubimport] = ACTIONS(6353), - [anon_sym_BSLASHinputfrom] = ACTIONS(6353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6353), - [anon_sym_BSLASHincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHcaption] = ACTIONS(6353), - [anon_sym_BSLASHcite] = ACTIONS(6353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCite] = ACTIONS(6353), - [anon_sym_BSLASHnocite] = ACTIONS(6353), - [anon_sym_BSLASHcitet] = ACTIONS(6353), - [anon_sym_BSLASHcitep] = ACTIONS(6353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteauthor] = ACTIONS(6353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitetitle] = ACTIONS(6353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteyear] = ACTIONS(6353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitedate] = ACTIONS(6353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteurl] = ACTIONS(6353), - [anon_sym_BSLASHfullcite] = ACTIONS(6353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6353), - [anon_sym_BSLASHcitealt] = ACTIONS(6353), - [anon_sym_BSLASHcitealp] = ACTIONS(6353), - [anon_sym_BSLASHcitetext] = ACTIONS(6353), - [anon_sym_BSLASHparencite] = ACTIONS(6353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHParencite] = ACTIONS(6353), - [anon_sym_BSLASHfootcite] = ACTIONS(6353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6353), - [anon_sym_BSLASHtextcite] = ACTIONS(6353), - [anon_sym_BSLASHTextcite] = ACTIONS(6353), - [anon_sym_BSLASHsmartcite] = ACTIONS(6353), - [anon_sym_BSLASHSmartcite] = ACTIONS(6353), - [anon_sym_BSLASHsupercite] = ACTIONS(6353), - [anon_sym_BSLASHautocite] = ACTIONS(6353), - [anon_sym_BSLASHAutocite] = ACTIONS(6353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHvolcite] = ACTIONS(6353), - [anon_sym_BSLASHVolcite] = ACTIONS(6353), - [anon_sym_BSLASHpvolcite] = ACTIONS(6353), - [anon_sym_BSLASHPvolcite] = ACTIONS(6353), - [anon_sym_BSLASHfvolcite] = ACTIONS(6353), - [anon_sym_BSLASHftvolcite] = ACTIONS(6353), - [anon_sym_BSLASHsvolcite] = ACTIONS(6353), - [anon_sym_BSLASHSvolcite] = ACTIONS(6353), - [anon_sym_BSLASHtvolcite] = ACTIONS(6353), - [anon_sym_BSLASHTvolcite] = ACTIONS(6353), - [anon_sym_BSLASHavolcite] = ACTIONS(6353), - [anon_sym_BSLASHAvolcite] = ACTIONS(6353), - [anon_sym_BSLASHnotecite] = ACTIONS(6353), - [anon_sym_BSLASHNotecite] = ACTIONS(6353), - [anon_sym_BSLASHpnotecite] = ACTIONS(6353), - [anon_sym_BSLASHPnotecite] = ACTIONS(6353), - [anon_sym_BSLASHfnotecite] = ACTIONS(6353), - [anon_sym_BSLASHlabel] = ACTIONS(6353), - [anon_sym_BSLASHref] = ACTIONS(6353), - [anon_sym_BSLASHeqref] = ACTIONS(6353), - [anon_sym_BSLASHvref] = ACTIONS(6353), - [anon_sym_BSLASHVref] = ACTIONS(6353), - [anon_sym_BSLASHautoref] = ACTIONS(6353), - [anon_sym_BSLASHpageref] = ACTIONS(6353), - [anon_sym_BSLASHcref] = ACTIONS(6353), - [anon_sym_BSLASHCref] = ACTIONS(6353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnameCref] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHlabelcref] = ACTIONS(6353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCrefrange] = ACTIONS(6353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnewlabel] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6355), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHdef] = ACTIONS(6353), - [anon_sym_BSLASHlet] = ACTIONS(6353), - [anon_sym_BSLASHleft] = ACTIONS(6353), - [anon_sym_BSLASHbig] = ACTIONS(6353), - [anon_sym_BSLASHBig] = ACTIONS(6353), - [anon_sym_BSLASHbigg] = ACTIONS(6353), - [anon_sym_BSLASHBigg] = ACTIONS(6353), - [anon_sym_BSLASHbigl] = ACTIONS(6353), - [anon_sym_BSLASHBigl] = ACTIONS(6353), - [anon_sym_BSLASHbiggl] = ACTIONS(6353), - [anon_sym_BSLASHBiggl] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6353), - [anon_sym_BSLASHgls] = ACTIONS(6353), - [anon_sym_BSLASHGls] = ACTIONS(6353), - [anon_sym_BSLASHGLS] = ACTIONS(6353), - [anon_sym_BSLASHglspl] = ACTIONS(6353), - [anon_sym_BSLASHGlspl] = ACTIONS(6353), - [anon_sym_BSLASHGLSpl] = ACTIONS(6353), - [anon_sym_BSLASHglsdisp] = ACTIONS(6353), - [anon_sym_BSLASHglslink] = ACTIONS(6353), - [anon_sym_BSLASHglstext] = ACTIONS(6353), - [anon_sym_BSLASHGlstext] = ACTIONS(6353), - [anon_sym_BSLASHGLStext] = ACTIONS(6353), - [anon_sym_BSLASHglsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6353), - [anon_sym_BSLASHglsplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSplural] = ACTIONS(6353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHglsname] = ACTIONS(6353), - [anon_sym_BSLASHGlsname] = ACTIONS(6353), - [anon_sym_BSLASHGLSname] = ACTIONS(6353), - [anon_sym_BSLASHglssymbol] = ACTIONS(6353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6353), - [anon_sym_BSLASHglsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6353), - [anon_sym_BSLASHglsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6353), - [anon_sym_BSLASHglsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6353), - [anon_sym_BSLASHglsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6353), - [anon_sym_BSLASHglsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6353), - [anon_sym_BSLASHnewacronym] = ACTIONS(6353), - [anon_sym_BSLASHacrshort] = ACTIONS(6353), - [anon_sym_BSLASHAcrshort] = ACTIONS(6353), - [anon_sym_BSLASHACRshort] = ACTIONS(6353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6353), - [anon_sym_BSLASHacrlong] = ACTIONS(6353), - [anon_sym_BSLASHAcrlong] = ACTIONS(6353), - [anon_sym_BSLASHACRlong] = ACTIONS(6353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6353), - [anon_sym_BSLASHacrfull] = ACTIONS(6353), - [anon_sym_BSLASHAcrfull] = ACTIONS(6353), - [anon_sym_BSLASHACRfull] = ACTIONS(6353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6353), - [anon_sym_BSLASHacs] = ACTIONS(6353), - [anon_sym_BSLASHAcs] = ACTIONS(6353), - [anon_sym_BSLASHacsp] = ACTIONS(6353), - [anon_sym_BSLASHAcsp] = ACTIONS(6353), - [anon_sym_BSLASHacl] = ACTIONS(6353), - [anon_sym_BSLASHAcl] = ACTIONS(6353), - [anon_sym_BSLASHaclp] = ACTIONS(6353), - [anon_sym_BSLASHAclp] = ACTIONS(6353), - [anon_sym_BSLASHacf] = ACTIONS(6353), - [anon_sym_BSLASHAcf] = ACTIONS(6353), - [anon_sym_BSLASHacfp] = ACTIONS(6353), - [anon_sym_BSLASHAcfp] = ACTIONS(6353), - [anon_sym_BSLASHac] = ACTIONS(6353), - [anon_sym_BSLASHAc] = ACTIONS(6353), - [anon_sym_BSLASHacp] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6353), - [anon_sym_BSLASHcolor] = ACTIONS(6353), - [anon_sym_BSLASHcolorbox] = ACTIONS(6353), - [anon_sym_BSLASHtextcolor] = ACTIONS(6353), - [anon_sym_BSLASHpagecolor] = ACTIONS(6353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6353), - [anon_sym_BSLASHtext] = ACTIONS(6353), - [anon_sym_BSLASHintertext] = ACTIONS(6353), - [anon_sym_shortintertext] = ACTIONS(6353), - }, - [1538] = { - [sym_command_name] = ACTIONS(6357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(6359), - [anon_sym_RBRACK] = ACTIONS(6359), - [anon_sym_COMMA] = ACTIONS(6359), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LPAREN] = ACTIONS(6359), - [anon_sym_RPAREN] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6359), - [sym_word] = ACTIONS(6357), - [sym_placeholder] = ACTIONS(6359), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6359), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_LT] = ACTIONS(6357), - [anon_sym_GT] = ACTIONS(6357), - [anon_sym_BANG] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_SQUOTE] = ACTIONS(6357), - [anon_sym__] = ACTIONS(6359), - [anon_sym_CARET] = ACTIONS(6359), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6359), - [anon_sym_DOLLAR] = ACTIONS(6357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6359), - [anon_sym_BSLASHbegin] = ACTIONS(6357), - [anon_sym_BSLASHend] = ACTIONS(6357), - [anon_sym_BSLASHtitle] = ACTIONS(6357), - [anon_sym_BSLASHauthor] = ACTIONS(6357), - [anon_sym_BSLASHusepackage] = ACTIONS(6357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6357), - [anon_sym_BSLASHinclude] = ACTIONS(6357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6357), - [anon_sym_BSLASHinput] = ACTIONS(6357), - [anon_sym_BSLASHsubfile] = ACTIONS(6357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6357), - [anon_sym_BSLASHbibliography] = ACTIONS(6357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6357), - [anon_sym_BSLASHincludesvg] = ACTIONS(6357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6357), - [anon_sym_BSLASHimport] = ACTIONS(6357), - [anon_sym_BSLASHsubimport] = ACTIONS(6357), - [anon_sym_BSLASHinputfrom] = ACTIONS(6357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6357), - [anon_sym_BSLASHincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHcaption] = ACTIONS(6357), - [anon_sym_BSLASHcite] = ACTIONS(6357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCite] = ACTIONS(6357), - [anon_sym_BSLASHnocite] = ACTIONS(6357), - [anon_sym_BSLASHcitet] = ACTIONS(6357), - [anon_sym_BSLASHcitep] = ACTIONS(6357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteauthor] = ACTIONS(6357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitetitle] = ACTIONS(6357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteyear] = ACTIONS(6357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitedate] = ACTIONS(6357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteurl] = ACTIONS(6357), - [anon_sym_BSLASHfullcite] = ACTIONS(6357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6357), - [anon_sym_BSLASHcitealt] = ACTIONS(6357), - [anon_sym_BSLASHcitealp] = ACTIONS(6357), - [anon_sym_BSLASHcitetext] = ACTIONS(6357), - [anon_sym_BSLASHparencite] = ACTIONS(6357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHParencite] = ACTIONS(6357), - [anon_sym_BSLASHfootcite] = ACTIONS(6357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6357), - [anon_sym_BSLASHtextcite] = ACTIONS(6357), - [anon_sym_BSLASHTextcite] = ACTIONS(6357), - [anon_sym_BSLASHsmartcite] = ACTIONS(6357), - [anon_sym_BSLASHSmartcite] = ACTIONS(6357), - [anon_sym_BSLASHsupercite] = ACTIONS(6357), - [anon_sym_BSLASHautocite] = ACTIONS(6357), - [anon_sym_BSLASHAutocite] = ACTIONS(6357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHvolcite] = ACTIONS(6357), - [anon_sym_BSLASHVolcite] = ACTIONS(6357), - [anon_sym_BSLASHpvolcite] = ACTIONS(6357), - [anon_sym_BSLASHPvolcite] = ACTIONS(6357), - [anon_sym_BSLASHfvolcite] = ACTIONS(6357), - [anon_sym_BSLASHftvolcite] = ACTIONS(6357), - [anon_sym_BSLASHsvolcite] = ACTIONS(6357), - [anon_sym_BSLASHSvolcite] = ACTIONS(6357), - [anon_sym_BSLASHtvolcite] = ACTIONS(6357), - [anon_sym_BSLASHTvolcite] = ACTIONS(6357), - [anon_sym_BSLASHavolcite] = ACTIONS(6357), - [anon_sym_BSLASHAvolcite] = ACTIONS(6357), - [anon_sym_BSLASHnotecite] = ACTIONS(6357), - [anon_sym_BSLASHNotecite] = ACTIONS(6357), - [anon_sym_BSLASHpnotecite] = ACTIONS(6357), - [anon_sym_BSLASHPnotecite] = ACTIONS(6357), - [anon_sym_BSLASHfnotecite] = ACTIONS(6357), - [anon_sym_BSLASHlabel] = ACTIONS(6357), - [anon_sym_BSLASHref] = ACTIONS(6357), - [anon_sym_BSLASHeqref] = ACTIONS(6357), - [anon_sym_BSLASHvref] = ACTIONS(6357), - [anon_sym_BSLASHVref] = ACTIONS(6357), - [anon_sym_BSLASHautoref] = ACTIONS(6357), - [anon_sym_BSLASHpageref] = ACTIONS(6357), - [anon_sym_BSLASHcref] = ACTIONS(6357), - [anon_sym_BSLASHCref] = ACTIONS(6357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnameCref] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHlabelcref] = ACTIONS(6357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCrefrange] = ACTIONS(6357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnewlabel] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6359), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHdef] = ACTIONS(6357), - [anon_sym_BSLASHlet] = ACTIONS(6357), - [anon_sym_BSLASHleft] = ACTIONS(6357), - [anon_sym_BSLASHbig] = ACTIONS(6357), - [anon_sym_BSLASHBig] = ACTIONS(6357), - [anon_sym_BSLASHbigg] = ACTIONS(6357), - [anon_sym_BSLASHBigg] = ACTIONS(6357), - [anon_sym_BSLASHbigl] = ACTIONS(6357), - [anon_sym_BSLASHBigl] = ACTIONS(6357), - [anon_sym_BSLASHbiggl] = ACTIONS(6357), - [anon_sym_BSLASHBiggl] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6357), - [anon_sym_BSLASHgls] = ACTIONS(6357), - [anon_sym_BSLASHGls] = ACTIONS(6357), - [anon_sym_BSLASHGLS] = ACTIONS(6357), - [anon_sym_BSLASHglspl] = ACTIONS(6357), - [anon_sym_BSLASHGlspl] = ACTIONS(6357), - [anon_sym_BSLASHGLSpl] = ACTIONS(6357), - [anon_sym_BSLASHglsdisp] = ACTIONS(6357), - [anon_sym_BSLASHglslink] = ACTIONS(6357), - [anon_sym_BSLASHglstext] = ACTIONS(6357), - [anon_sym_BSLASHGlstext] = ACTIONS(6357), - [anon_sym_BSLASHGLStext] = ACTIONS(6357), - [anon_sym_BSLASHglsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6357), - [anon_sym_BSLASHglsplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSplural] = ACTIONS(6357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHglsname] = ACTIONS(6357), - [anon_sym_BSLASHGlsname] = ACTIONS(6357), - [anon_sym_BSLASHGLSname] = ACTIONS(6357), - [anon_sym_BSLASHglssymbol] = ACTIONS(6357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6357), - [anon_sym_BSLASHglsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6357), - [anon_sym_BSLASHglsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6357), - [anon_sym_BSLASHglsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6357), - [anon_sym_BSLASHglsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6357), - [anon_sym_BSLASHglsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6357), - [anon_sym_BSLASHnewacronym] = ACTIONS(6357), - [anon_sym_BSLASHacrshort] = ACTIONS(6357), - [anon_sym_BSLASHAcrshort] = ACTIONS(6357), - [anon_sym_BSLASHACRshort] = ACTIONS(6357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6357), - [anon_sym_BSLASHacrlong] = ACTIONS(6357), - [anon_sym_BSLASHAcrlong] = ACTIONS(6357), - [anon_sym_BSLASHACRlong] = ACTIONS(6357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6357), - [anon_sym_BSLASHacrfull] = ACTIONS(6357), - [anon_sym_BSLASHAcrfull] = ACTIONS(6357), - [anon_sym_BSLASHACRfull] = ACTIONS(6357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6357), - [anon_sym_BSLASHacs] = ACTIONS(6357), - [anon_sym_BSLASHAcs] = ACTIONS(6357), - [anon_sym_BSLASHacsp] = ACTIONS(6357), - [anon_sym_BSLASHAcsp] = ACTIONS(6357), - [anon_sym_BSLASHacl] = ACTIONS(6357), - [anon_sym_BSLASHAcl] = ACTIONS(6357), - [anon_sym_BSLASHaclp] = ACTIONS(6357), - [anon_sym_BSLASHAclp] = ACTIONS(6357), - [anon_sym_BSLASHacf] = ACTIONS(6357), - [anon_sym_BSLASHAcf] = ACTIONS(6357), - [anon_sym_BSLASHacfp] = ACTIONS(6357), - [anon_sym_BSLASHAcfp] = ACTIONS(6357), - [anon_sym_BSLASHac] = ACTIONS(6357), - [anon_sym_BSLASHAc] = ACTIONS(6357), - [anon_sym_BSLASHacp] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6357), - [anon_sym_BSLASHcolor] = ACTIONS(6357), - [anon_sym_BSLASHcolorbox] = ACTIONS(6357), - [anon_sym_BSLASHtextcolor] = ACTIONS(6357), - [anon_sym_BSLASHpagecolor] = ACTIONS(6357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6357), - [anon_sym_BSLASHtext] = ACTIONS(6357), - [anon_sym_BSLASHintertext] = ACTIONS(6357), - [anon_sym_shortintertext] = ACTIONS(6357), - }, - [1539] = { - [sym_command_name] = ACTIONS(6361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6363), - [anon_sym_RBRACK] = ACTIONS(6363), - [anon_sym_COMMA] = ACTIONS(6363), - [anon_sym_EQ] = ACTIONS(6363), - [anon_sym_LPAREN] = ACTIONS(6363), - [anon_sym_RPAREN] = ACTIONS(6363), - [anon_sym_LBRACE] = ACTIONS(6363), - [sym_word] = ACTIONS(6361), - [sym_placeholder] = ACTIONS(6363), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_LT] = ACTIONS(6361), - [anon_sym_GT] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6361), - [anon_sym__] = ACTIONS(6363), - [anon_sym_CARET] = ACTIONS(6363), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6363), - [anon_sym_DOLLAR] = ACTIONS(6361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6363), - [anon_sym_BSLASHbegin] = ACTIONS(6361), - [anon_sym_BSLASHend] = ACTIONS(6361), - [anon_sym_BSLASHtitle] = ACTIONS(6361), - [anon_sym_BSLASHauthor] = ACTIONS(6361), - [anon_sym_BSLASHusepackage] = ACTIONS(6361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6361), - [anon_sym_BSLASHinclude] = ACTIONS(6361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6361), - [anon_sym_BSLASHinput] = ACTIONS(6361), - [anon_sym_BSLASHsubfile] = ACTIONS(6361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6361), - [anon_sym_BSLASHbibliography] = ACTIONS(6361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6361), - [anon_sym_BSLASHincludesvg] = ACTIONS(6361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6361), - [anon_sym_BSLASHimport] = ACTIONS(6361), - [anon_sym_BSLASHsubimport] = ACTIONS(6361), - [anon_sym_BSLASHinputfrom] = ACTIONS(6361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6361), - [anon_sym_BSLASHincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHcaption] = ACTIONS(6361), - [anon_sym_BSLASHcite] = ACTIONS(6361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCite] = ACTIONS(6361), - [anon_sym_BSLASHnocite] = ACTIONS(6361), - [anon_sym_BSLASHcitet] = ACTIONS(6361), - [anon_sym_BSLASHcitep] = ACTIONS(6361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteauthor] = ACTIONS(6361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitetitle] = ACTIONS(6361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteyear] = ACTIONS(6361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitedate] = ACTIONS(6361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteurl] = ACTIONS(6361), - [anon_sym_BSLASHfullcite] = ACTIONS(6361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6361), - [anon_sym_BSLASHcitealt] = ACTIONS(6361), - [anon_sym_BSLASHcitealp] = ACTIONS(6361), - [anon_sym_BSLASHcitetext] = ACTIONS(6361), - [anon_sym_BSLASHparencite] = ACTIONS(6361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHParencite] = ACTIONS(6361), - [anon_sym_BSLASHfootcite] = ACTIONS(6361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6361), - [anon_sym_BSLASHtextcite] = ACTIONS(6361), - [anon_sym_BSLASHTextcite] = ACTIONS(6361), - [anon_sym_BSLASHsmartcite] = ACTIONS(6361), - [anon_sym_BSLASHSmartcite] = ACTIONS(6361), - [anon_sym_BSLASHsupercite] = ACTIONS(6361), - [anon_sym_BSLASHautocite] = ACTIONS(6361), - [anon_sym_BSLASHAutocite] = ACTIONS(6361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHvolcite] = ACTIONS(6361), - [anon_sym_BSLASHVolcite] = ACTIONS(6361), - [anon_sym_BSLASHpvolcite] = ACTIONS(6361), - [anon_sym_BSLASHPvolcite] = ACTIONS(6361), - [anon_sym_BSLASHfvolcite] = ACTIONS(6361), - [anon_sym_BSLASHftvolcite] = ACTIONS(6361), - [anon_sym_BSLASHsvolcite] = ACTIONS(6361), - [anon_sym_BSLASHSvolcite] = ACTIONS(6361), - [anon_sym_BSLASHtvolcite] = ACTIONS(6361), - [anon_sym_BSLASHTvolcite] = ACTIONS(6361), - [anon_sym_BSLASHavolcite] = ACTIONS(6361), - [anon_sym_BSLASHAvolcite] = ACTIONS(6361), - [anon_sym_BSLASHnotecite] = ACTIONS(6361), - [anon_sym_BSLASHNotecite] = ACTIONS(6361), - [anon_sym_BSLASHpnotecite] = ACTIONS(6361), - [anon_sym_BSLASHPnotecite] = ACTIONS(6361), - [anon_sym_BSLASHfnotecite] = ACTIONS(6361), - [anon_sym_BSLASHlabel] = ACTIONS(6361), - [anon_sym_BSLASHref] = ACTIONS(6361), - [anon_sym_BSLASHeqref] = ACTIONS(6361), - [anon_sym_BSLASHvref] = ACTIONS(6361), - [anon_sym_BSLASHVref] = ACTIONS(6361), - [anon_sym_BSLASHautoref] = ACTIONS(6361), - [anon_sym_BSLASHpageref] = ACTIONS(6361), - [anon_sym_BSLASHcref] = ACTIONS(6361), - [anon_sym_BSLASHCref] = ACTIONS(6361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnameCref] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHlabelcref] = ACTIONS(6361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCrefrange] = ACTIONS(6361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnewlabel] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6363), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHdef] = ACTIONS(6361), - [anon_sym_BSLASHlet] = ACTIONS(6361), - [anon_sym_BSLASHleft] = ACTIONS(6361), - [anon_sym_BSLASHbig] = ACTIONS(6361), - [anon_sym_BSLASHBig] = ACTIONS(6361), - [anon_sym_BSLASHbigg] = ACTIONS(6361), - [anon_sym_BSLASHBigg] = ACTIONS(6361), - [anon_sym_BSLASHbigl] = ACTIONS(6361), - [anon_sym_BSLASHBigl] = ACTIONS(6361), - [anon_sym_BSLASHbiggl] = ACTIONS(6361), - [anon_sym_BSLASHBiggl] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6361), - [anon_sym_BSLASHgls] = ACTIONS(6361), - [anon_sym_BSLASHGls] = ACTIONS(6361), - [anon_sym_BSLASHGLS] = ACTIONS(6361), - [anon_sym_BSLASHglspl] = ACTIONS(6361), - [anon_sym_BSLASHGlspl] = ACTIONS(6361), - [anon_sym_BSLASHGLSpl] = ACTIONS(6361), - [anon_sym_BSLASHglsdisp] = ACTIONS(6361), - [anon_sym_BSLASHglslink] = ACTIONS(6361), - [anon_sym_BSLASHglstext] = ACTIONS(6361), - [anon_sym_BSLASHGlstext] = ACTIONS(6361), - [anon_sym_BSLASHGLStext] = ACTIONS(6361), - [anon_sym_BSLASHglsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6361), - [anon_sym_BSLASHglsplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSplural] = ACTIONS(6361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHglsname] = ACTIONS(6361), - [anon_sym_BSLASHGlsname] = ACTIONS(6361), - [anon_sym_BSLASHGLSname] = ACTIONS(6361), - [anon_sym_BSLASHglssymbol] = ACTIONS(6361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6361), - [anon_sym_BSLASHglsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6361), - [anon_sym_BSLASHglsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6361), - [anon_sym_BSLASHglsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6361), - [anon_sym_BSLASHglsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6361), - [anon_sym_BSLASHglsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6361), - [anon_sym_BSLASHnewacronym] = ACTIONS(6361), - [anon_sym_BSLASHacrshort] = ACTIONS(6361), - [anon_sym_BSLASHAcrshort] = ACTIONS(6361), - [anon_sym_BSLASHACRshort] = ACTIONS(6361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6361), - [anon_sym_BSLASHacrlong] = ACTIONS(6361), - [anon_sym_BSLASHAcrlong] = ACTIONS(6361), - [anon_sym_BSLASHACRlong] = ACTIONS(6361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6361), - [anon_sym_BSLASHacrfull] = ACTIONS(6361), - [anon_sym_BSLASHAcrfull] = ACTIONS(6361), - [anon_sym_BSLASHACRfull] = ACTIONS(6361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6361), - [anon_sym_BSLASHacs] = ACTIONS(6361), - [anon_sym_BSLASHAcs] = ACTIONS(6361), - [anon_sym_BSLASHacsp] = ACTIONS(6361), - [anon_sym_BSLASHAcsp] = ACTIONS(6361), - [anon_sym_BSLASHacl] = ACTIONS(6361), - [anon_sym_BSLASHAcl] = ACTIONS(6361), - [anon_sym_BSLASHaclp] = ACTIONS(6361), - [anon_sym_BSLASHAclp] = ACTIONS(6361), - [anon_sym_BSLASHacf] = ACTIONS(6361), - [anon_sym_BSLASHAcf] = ACTIONS(6361), - [anon_sym_BSLASHacfp] = ACTIONS(6361), - [anon_sym_BSLASHAcfp] = ACTIONS(6361), - [anon_sym_BSLASHac] = ACTIONS(6361), - [anon_sym_BSLASHAc] = ACTIONS(6361), - [anon_sym_BSLASHacp] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6361), - [anon_sym_BSLASHcolor] = ACTIONS(6361), - [anon_sym_BSLASHcolorbox] = ACTIONS(6361), - [anon_sym_BSLASHtextcolor] = ACTIONS(6361), - [anon_sym_BSLASHpagecolor] = ACTIONS(6361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6361), - [anon_sym_BSLASHtext] = ACTIONS(6361), - [anon_sym_BSLASHintertext] = ACTIONS(6361), - [anon_sym_shortintertext] = ACTIONS(6361), - }, - [1540] = { - [sym_command_name] = ACTIONS(6365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6367), - [anon_sym_RBRACK] = ACTIONS(6367), - [anon_sym_COMMA] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(6367), - [anon_sym_LPAREN] = ACTIONS(6367), - [anon_sym_RPAREN] = ACTIONS(6367), - [anon_sym_LBRACE] = ACTIONS(6367), - [sym_word] = ACTIONS(6365), - [sym_placeholder] = ACTIONS(6367), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6367), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_LT] = ACTIONS(6365), - [anon_sym_GT] = ACTIONS(6365), - [anon_sym_BANG] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_SQUOTE] = ACTIONS(6365), - [anon_sym__] = ACTIONS(6367), - [anon_sym_CARET] = ACTIONS(6367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6367), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6367), - [anon_sym_DOLLAR] = ACTIONS(6365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6367), - [anon_sym_BSLASHbegin] = ACTIONS(6365), - [anon_sym_BSLASHend] = ACTIONS(6365), - [anon_sym_BSLASHtitle] = ACTIONS(6365), - [anon_sym_BSLASHauthor] = ACTIONS(6365), - [anon_sym_BSLASHusepackage] = ACTIONS(6365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6365), - [anon_sym_BSLASHinclude] = ACTIONS(6365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6365), - [anon_sym_BSLASHinput] = ACTIONS(6365), - [anon_sym_BSLASHsubfile] = ACTIONS(6365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6365), - [anon_sym_BSLASHbibliography] = ACTIONS(6365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6365), - [anon_sym_BSLASHincludesvg] = ACTIONS(6365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6365), - [anon_sym_BSLASHimport] = ACTIONS(6365), - [anon_sym_BSLASHsubimport] = ACTIONS(6365), - [anon_sym_BSLASHinputfrom] = ACTIONS(6365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6365), - [anon_sym_BSLASHincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHcaption] = ACTIONS(6365), - [anon_sym_BSLASHcite] = ACTIONS(6365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCite] = ACTIONS(6365), - [anon_sym_BSLASHnocite] = ACTIONS(6365), - [anon_sym_BSLASHcitet] = ACTIONS(6365), - [anon_sym_BSLASHcitep] = ACTIONS(6365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteauthor] = ACTIONS(6365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitetitle] = ACTIONS(6365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteyear] = ACTIONS(6365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitedate] = ACTIONS(6365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteurl] = ACTIONS(6365), - [anon_sym_BSLASHfullcite] = ACTIONS(6365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6365), - [anon_sym_BSLASHcitealt] = ACTIONS(6365), - [anon_sym_BSLASHcitealp] = ACTIONS(6365), - [anon_sym_BSLASHcitetext] = ACTIONS(6365), - [anon_sym_BSLASHparencite] = ACTIONS(6365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHParencite] = ACTIONS(6365), - [anon_sym_BSLASHfootcite] = ACTIONS(6365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6365), - [anon_sym_BSLASHtextcite] = ACTIONS(6365), - [anon_sym_BSLASHTextcite] = ACTIONS(6365), - [anon_sym_BSLASHsmartcite] = ACTIONS(6365), - [anon_sym_BSLASHSmartcite] = ACTIONS(6365), - [anon_sym_BSLASHsupercite] = ACTIONS(6365), - [anon_sym_BSLASHautocite] = ACTIONS(6365), - [anon_sym_BSLASHAutocite] = ACTIONS(6365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHvolcite] = ACTIONS(6365), - [anon_sym_BSLASHVolcite] = ACTIONS(6365), - [anon_sym_BSLASHpvolcite] = ACTIONS(6365), - [anon_sym_BSLASHPvolcite] = ACTIONS(6365), - [anon_sym_BSLASHfvolcite] = ACTIONS(6365), - [anon_sym_BSLASHftvolcite] = ACTIONS(6365), - [anon_sym_BSLASHsvolcite] = ACTIONS(6365), - [anon_sym_BSLASHSvolcite] = ACTIONS(6365), - [anon_sym_BSLASHtvolcite] = ACTIONS(6365), - [anon_sym_BSLASHTvolcite] = ACTIONS(6365), - [anon_sym_BSLASHavolcite] = ACTIONS(6365), - [anon_sym_BSLASHAvolcite] = ACTIONS(6365), - [anon_sym_BSLASHnotecite] = ACTIONS(6365), - [anon_sym_BSLASHNotecite] = ACTIONS(6365), - [anon_sym_BSLASHpnotecite] = ACTIONS(6365), - [anon_sym_BSLASHPnotecite] = ACTIONS(6365), - [anon_sym_BSLASHfnotecite] = ACTIONS(6365), - [anon_sym_BSLASHlabel] = ACTIONS(6365), - [anon_sym_BSLASHref] = ACTIONS(6365), - [anon_sym_BSLASHeqref] = ACTIONS(6365), - [anon_sym_BSLASHvref] = ACTIONS(6365), - [anon_sym_BSLASHVref] = ACTIONS(6365), - [anon_sym_BSLASHautoref] = ACTIONS(6365), - [anon_sym_BSLASHpageref] = ACTIONS(6365), - [anon_sym_BSLASHcref] = ACTIONS(6365), - [anon_sym_BSLASHCref] = ACTIONS(6365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnameCref] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHlabelcref] = ACTIONS(6365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCrefrange] = ACTIONS(6365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnewlabel] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6367), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHdef] = ACTIONS(6365), - [anon_sym_BSLASHlet] = ACTIONS(6365), - [anon_sym_BSLASHleft] = ACTIONS(6365), - [anon_sym_BSLASHbig] = ACTIONS(6365), - [anon_sym_BSLASHBig] = ACTIONS(6365), - [anon_sym_BSLASHbigg] = ACTIONS(6365), - [anon_sym_BSLASHBigg] = ACTIONS(6365), - [anon_sym_BSLASHbigl] = ACTIONS(6365), - [anon_sym_BSLASHBigl] = ACTIONS(6365), - [anon_sym_BSLASHbiggl] = ACTIONS(6365), - [anon_sym_BSLASHBiggl] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6365), - [anon_sym_BSLASHgls] = ACTIONS(6365), - [anon_sym_BSLASHGls] = ACTIONS(6365), - [anon_sym_BSLASHGLS] = ACTIONS(6365), - [anon_sym_BSLASHglspl] = ACTIONS(6365), - [anon_sym_BSLASHGlspl] = ACTIONS(6365), - [anon_sym_BSLASHGLSpl] = ACTIONS(6365), - [anon_sym_BSLASHglsdisp] = ACTIONS(6365), - [anon_sym_BSLASHglslink] = ACTIONS(6365), - [anon_sym_BSLASHglstext] = ACTIONS(6365), - [anon_sym_BSLASHGlstext] = ACTIONS(6365), - [anon_sym_BSLASHGLStext] = ACTIONS(6365), - [anon_sym_BSLASHglsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6365), - [anon_sym_BSLASHglsplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSplural] = ACTIONS(6365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHglsname] = ACTIONS(6365), - [anon_sym_BSLASHGlsname] = ACTIONS(6365), - [anon_sym_BSLASHGLSname] = ACTIONS(6365), - [anon_sym_BSLASHglssymbol] = ACTIONS(6365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6365), - [anon_sym_BSLASHglsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6365), - [anon_sym_BSLASHglsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6365), - [anon_sym_BSLASHglsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6365), - [anon_sym_BSLASHglsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6365), - [anon_sym_BSLASHglsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6365), - [anon_sym_BSLASHnewacronym] = ACTIONS(6365), - [anon_sym_BSLASHacrshort] = ACTIONS(6365), - [anon_sym_BSLASHAcrshort] = ACTIONS(6365), - [anon_sym_BSLASHACRshort] = ACTIONS(6365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6365), - [anon_sym_BSLASHacrlong] = ACTIONS(6365), - [anon_sym_BSLASHAcrlong] = ACTIONS(6365), - [anon_sym_BSLASHACRlong] = ACTIONS(6365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6365), - [anon_sym_BSLASHacrfull] = ACTIONS(6365), - [anon_sym_BSLASHAcrfull] = ACTIONS(6365), - [anon_sym_BSLASHACRfull] = ACTIONS(6365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6365), - [anon_sym_BSLASHacs] = ACTIONS(6365), - [anon_sym_BSLASHAcs] = ACTIONS(6365), - [anon_sym_BSLASHacsp] = ACTIONS(6365), - [anon_sym_BSLASHAcsp] = ACTIONS(6365), - [anon_sym_BSLASHacl] = ACTIONS(6365), - [anon_sym_BSLASHAcl] = ACTIONS(6365), - [anon_sym_BSLASHaclp] = ACTIONS(6365), - [anon_sym_BSLASHAclp] = ACTIONS(6365), - [anon_sym_BSLASHacf] = ACTIONS(6365), - [anon_sym_BSLASHAcf] = ACTIONS(6365), - [anon_sym_BSLASHacfp] = ACTIONS(6365), - [anon_sym_BSLASHAcfp] = ACTIONS(6365), - [anon_sym_BSLASHac] = ACTIONS(6365), - [anon_sym_BSLASHAc] = ACTIONS(6365), - [anon_sym_BSLASHacp] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6365), - [anon_sym_BSLASHcolor] = ACTIONS(6365), - [anon_sym_BSLASHcolorbox] = ACTIONS(6365), - [anon_sym_BSLASHtextcolor] = ACTIONS(6365), - [anon_sym_BSLASHpagecolor] = ACTIONS(6365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6365), - [anon_sym_BSLASHtext] = ACTIONS(6365), - [anon_sym_BSLASHintertext] = ACTIONS(6365), - [anon_sym_shortintertext] = ACTIONS(6365), - }, - [1541] = { - [sym_command_name] = ACTIONS(6165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6165), - [anon_sym_LBRACK] = ACTIONS(6167), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_EQ] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_LBRACE] = ACTIONS(6167), - [sym_word] = ACTIONS(6165), - [sym_placeholder] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6167), - [anon_sym_DASH] = ACTIONS(6167), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_COLON] = ACTIONS(6165), - [anon_sym_SQUOTE] = ACTIONS(6165), - [anon_sym__] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6167), - [anon_sym_BSLASHbegin] = ACTIONS(6165), - [anon_sym_BSLASHend] = ACTIONS(6165), - [anon_sym_BSLASHtitle] = ACTIONS(6165), - [anon_sym_BSLASHauthor] = ACTIONS(6165), - [anon_sym_BSLASHusepackage] = ACTIONS(6165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6165), - [anon_sym_BSLASHinclude] = ACTIONS(6165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6165), - [anon_sym_BSLASHinput] = ACTIONS(6165), - [anon_sym_BSLASHsubfile] = ACTIONS(6165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6165), - [anon_sym_BSLASHbibliography] = ACTIONS(6165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6165), - [anon_sym_BSLASHincludesvg] = ACTIONS(6165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6165), - [anon_sym_BSLASHimport] = ACTIONS(6165), - [anon_sym_BSLASHsubimport] = ACTIONS(6165), - [anon_sym_BSLASHinputfrom] = ACTIONS(6165), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6165), - [anon_sym_BSLASHincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHcaption] = ACTIONS(6165), - [anon_sym_BSLASHcite] = ACTIONS(6165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCite] = ACTIONS(6165), - [anon_sym_BSLASHnocite] = ACTIONS(6165), - [anon_sym_BSLASHcitet] = ACTIONS(6165), - [anon_sym_BSLASHcitep] = ACTIONS(6165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteauthor] = ACTIONS(6165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitetitle] = ACTIONS(6165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteyear] = ACTIONS(6165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitedate] = ACTIONS(6165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteurl] = ACTIONS(6165), - [anon_sym_BSLASHfullcite] = ACTIONS(6165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6165), - [anon_sym_BSLASHcitealt] = ACTIONS(6165), - [anon_sym_BSLASHcitealp] = ACTIONS(6165), - [anon_sym_BSLASHcitetext] = ACTIONS(6165), - [anon_sym_BSLASHparencite] = ACTIONS(6165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHParencite] = ACTIONS(6165), - [anon_sym_BSLASHfootcite] = ACTIONS(6165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6165), - [anon_sym_BSLASHtextcite] = ACTIONS(6165), - [anon_sym_BSLASHTextcite] = ACTIONS(6165), - [anon_sym_BSLASHsmartcite] = ACTIONS(6165), - [anon_sym_BSLASHSmartcite] = ACTIONS(6165), - [anon_sym_BSLASHsupercite] = ACTIONS(6165), - [anon_sym_BSLASHautocite] = ACTIONS(6165), - [anon_sym_BSLASHAutocite] = ACTIONS(6165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHvolcite] = ACTIONS(6165), - [anon_sym_BSLASHVolcite] = ACTIONS(6165), - [anon_sym_BSLASHpvolcite] = ACTIONS(6165), - [anon_sym_BSLASHPvolcite] = ACTIONS(6165), - [anon_sym_BSLASHfvolcite] = ACTIONS(6165), - [anon_sym_BSLASHftvolcite] = ACTIONS(6165), - [anon_sym_BSLASHsvolcite] = ACTIONS(6165), - [anon_sym_BSLASHSvolcite] = ACTIONS(6165), - [anon_sym_BSLASHtvolcite] = ACTIONS(6165), - [anon_sym_BSLASHTvolcite] = ACTIONS(6165), - [anon_sym_BSLASHavolcite] = ACTIONS(6165), - [anon_sym_BSLASHAvolcite] = ACTIONS(6165), - [anon_sym_BSLASHnotecite] = ACTIONS(6165), - [anon_sym_BSLASHNotecite] = ACTIONS(6165), - [anon_sym_BSLASHpnotecite] = ACTIONS(6165), - [anon_sym_BSLASHPnotecite] = ACTIONS(6165), - [anon_sym_BSLASHfnotecite] = ACTIONS(6165), - [anon_sym_BSLASHlabel] = ACTIONS(6165), - [anon_sym_BSLASHref] = ACTIONS(6165), - [anon_sym_BSLASHeqref] = ACTIONS(6165), - [anon_sym_BSLASHvref] = ACTIONS(6165), - [anon_sym_BSLASHVref] = ACTIONS(6165), - [anon_sym_BSLASHautoref] = ACTIONS(6165), - [anon_sym_BSLASHpageref] = ACTIONS(6165), - [anon_sym_BSLASHcref] = ACTIONS(6165), - [anon_sym_BSLASHCref] = ACTIONS(6165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnameCref] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHlabelcref] = ACTIONS(6165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCrefrange] = ACTIONS(6165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnewlabel] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6167), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHdef] = ACTIONS(6165), - [anon_sym_BSLASHlet] = ACTIONS(6165), - [anon_sym_BSLASHleft] = ACTIONS(6165), - [anon_sym_BSLASHbig] = ACTIONS(6165), - [anon_sym_BSLASHBig] = ACTIONS(6165), - [anon_sym_BSLASHbigg] = ACTIONS(6165), - [anon_sym_BSLASHBigg] = ACTIONS(6165), - [anon_sym_BSLASHbigl] = ACTIONS(6165), - [anon_sym_BSLASHBigl] = ACTIONS(6165), - [anon_sym_BSLASHbiggl] = ACTIONS(6165), - [anon_sym_BSLASHBiggl] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6165), - [anon_sym_BSLASHgls] = ACTIONS(6165), - [anon_sym_BSLASHGls] = ACTIONS(6165), - [anon_sym_BSLASHGLS] = ACTIONS(6165), - [anon_sym_BSLASHglspl] = ACTIONS(6165), - [anon_sym_BSLASHGlspl] = ACTIONS(6165), - [anon_sym_BSLASHGLSpl] = ACTIONS(6165), - [anon_sym_BSLASHglsdisp] = ACTIONS(6165), - [anon_sym_BSLASHglslink] = ACTIONS(6165), - [anon_sym_BSLASHglstext] = ACTIONS(6165), - [anon_sym_BSLASHGlstext] = ACTIONS(6165), - [anon_sym_BSLASHGLStext] = ACTIONS(6165), - [anon_sym_BSLASHglsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6165), - [anon_sym_BSLASHglsplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSplural] = ACTIONS(6165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHglsname] = ACTIONS(6165), - [anon_sym_BSLASHGlsname] = ACTIONS(6165), - [anon_sym_BSLASHGLSname] = ACTIONS(6165), - [anon_sym_BSLASHglssymbol] = ACTIONS(6165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6165), - [anon_sym_BSLASHglsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6165), - [anon_sym_BSLASHglsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6165), - [anon_sym_BSLASHglsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6165), - [anon_sym_BSLASHglsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6165), - [anon_sym_BSLASHglsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6165), - [anon_sym_BSLASHnewacronym] = ACTIONS(6165), - [anon_sym_BSLASHacrshort] = ACTIONS(6165), - [anon_sym_BSLASHAcrshort] = ACTIONS(6165), - [anon_sym_BSLASHACRshort] = ACTIONS(6165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6165), - [anon_sym_BSLASHacrlong] = ACTIONS(6165), - [anon_sym_BSLASHAcrlong] = ACTIONS(6165), - [anon_sym_BSLASHACRlong] = ACTIONS(6165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6165), - [anon_sym_BSLASHacrfull] = ACTIONS(6165), - [anon_sym_BSLASHAcrfull] = ACTIONS(6165), - [anon_sym_BSLASHACRfull] = ACTIONS(6165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6165), - [anon_sym_BSLASHacs] = ACTIONS(6165), - [anon_sym_BSLASHAcs] = ACTIONS(6165), - [anon_sym_BSLASHacsp] = ACTIONS(6165), - [anon_sym_BSLASHAcsp] = ACTIONS(6165), - [anon_sym_BSLASHacl] = ACTIONS(6165), - [anon_sym_BSLASHAcl] = ACTIONS(6165), - [anon_sym_BSLASHaclp] = ACTIONS(6165), - [anon_sym_BSLASHAclp] = ACTIONS(6165), - [anon_sym_BSLASHacf] = ACTIONS(6165), - [anon_sym_BSLASHAcf] = ACTIONS(6165), - [anon_sym_BSLASHacfp] = ACTIONS(6165), - [anon_sym_BSLASHAcfp] = ACTIONS(6165), - [anon_sym_BSLASHac] = ACTIONS(6165), - [anon_sym_BSLASHAc] = ACTIONS(6165), - [anon_sym_BSLASHacp] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6165), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6165), - [anon_sym_BSLASHcolor] = ACTIONS(6165), - [anon_sym_BSLASHcolorbox] = ACTIONS(6165), - [anon_sym_BSLASHtextcolor] = ACTIONS(6165), - [anon_sym_BSLASHpagecolor] = ACTIONS(6165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6165), - [anon_sym_BSLASHtext] = ACTIONS(6165), - [anon_sym_BSLASHintertext] = ACTIONS(6165), - [anon_sym_shortintertext] = ACTIONS(6165), - }, - [1542] = { - [sym_command_name] = ACTIONS(6369), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6371), - [anon_sym_RBRACK] = ACTIONS(6371), - [anon_sym_COMMA] = ACTIONS(6371), - [anon_sym_EQ] = ACTIONS(6371), - [anon_sym_LPAREN] = ACTIONS(6371), - [anon_sym_RPAREN] = ACTIONS(6371), - [anon_sym_LBRACE] = ACTIONS(6371), - [sym_word] = ACTIONS(6369), - [sym_placeholder] = ACTIONS(6371), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6371), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_LT] = ACTIONS(6369), - [anon_sym_GT] = ACTIONS(6369), - [anon_sym_BANG] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_SQUOTE] = ACTIONS(6369), - [anon_sym__] = ACTIONS(6371), - [anon_sym_CARET] = ACTIONS(6371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6371), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6371), - [anon_sym_DOLLAR] = ACTIONS(6369), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6371), - [anon_sym_BSLASHbegin] = ACTIONS(6369), - [anon_sym_BSLASHend] = ACTIONS(6369), - [anon_sym_BSLASHtitle] = ACTIONS(6369), - [anon_sym_BSLASHauthor] = ACTIONS(6369), - [anon_sym_BSLASHusepackage] = ACTIONS(6369), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6369), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6369), - [anon_sym_BSLASHinclude] = ACTIONS(6369), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6369), - [anon_sym_BSLASHinput] = ACTIONS(6369), - [anon_sym_BSLASHsubfile] = ACTIONS(6369), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6369), - [anon_sym_BSLASHbibliography] = ACTIONS(6369), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6369), - [anon_sym_BSLASHincludesvg] = ACTIONS(6369), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6369), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6369), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6369), - [anon_sym_BSLASHimport] = ACTIONS(6369), - [anon_sym_BSLASHsubimport] = ACTIONS(6369), - [anon_sym_BSLASHinputfrom] = ACTIONS(6369), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6369), - [anon_sym_BSLASHincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHcaption] = ACTIONS(6369), - [anon_sym_BSLASHcite] = ACTIONS(6369), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCite] = ACTIONS(6369), - [anon_sym_BSLASHnocite] = ACTIONS(6369), - [anon_sym_BSLASHcitet] = ACTIONS(6369), - [anon_sym_BSLASHcitep] = ACTIONS(6369), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteauthor] = ACTIONS(6369), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6369), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitetitle] = ACTIONS(6369), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteyear] = ACTIONS(6369), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitedate] = ACTIONS(6369), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteurl] = ACTIONS(6369), - [anon_sym_BSLASHfullcite] = ACTIONS(6369), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6369), - [anon_sym_BSLASHcitealt] = ACTIONS(6369), - [anon_sym_BSLASHcitealp] = ACTIONS(6369), - [anon_sym_BSLASHcitetext] = ACTIONS(6369), - [anon_sym_BSLASHparencite] = ACTIONS(6369), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHParencite] = ACTIONS(6369), - [anon_sym_BSLASHfootcite] = ACTIONS(6369), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6369), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6369), - [anon_sym_BSLASHtextcite] = ACTIONS(6369), - [anon_sym_BSLASHTextcite] = ACTIONS(6369), - [anon_sym_BSLASHsmartcite] = ACTIONS(6369), - [anon_sym_BSLASHSmartcite] = ACTIONS(6369), - [anon_sym_BSLASHsupercite] = ACTIONS(6369), - [anon_sym_BSLASHautocite] = ACTIONS(6369), - [anon_sym_BSLASHAutocite] = ACTIONS(6369), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHvolcite] = ACTIONS(6369), - [anon_sym_BSLASHVolcite] = ACTIONS(6369), - [anon_sym_BSLASHpvolcite] = ACTIONS(6369), - [anon_sym_BSLASHPvolcite] = ACTIONS(6369), - [anon_sym_BSLASHfvolcite] = ACTIONS(6369), - [anon_sym_BSLASHftvolcite] = ACTIONS(6369), - [anon_sym_BSLASHsvolcite] = ACTIONS(6369), - [anon_sym_BSLASHSvolcite] = ACTIONS(6369), - [anon_sym_BSLASHtvolcite] = ACTIONS(6369), - [anon_sym_BSLASHTvolcite] = ACTIONS(6369), - [anon_sym_BSLASHavolcite] = ACTIONS(6369), - [anon_sym_BSLASHAvolcite] = ACTIONS(6369), - [anon_sym_BSLASHnotecite] = ACTIONS(6369), - [anon_sym_BSLASHNotecite] = ACTIONS(6369), - [anon_sym_BSLASHpnotecite] = ACTIONS(6369), - [anon_sym_BSLASHPnotecite] = ACTIONS(6369), - [anon_sym_BSLASHfnotecite] = ACTIONS(6369), - [anon_sym_BSLASHlabel] = ACTIONS(6369), - [anon_sym_BSLASHref] = ACTIONS(6369), - [anon_sym_BSLASHeqref] = ACTIONS(6369), - [anon_sym_BSLASHvref] = ACTIONS(6369), - [anon_sym_BSLASHVref] = ACTIONS(6369), - [anon_sym_BSLASHautoref] = ACTIONS(6369), - [anon_sym_BSLASHpageref] = ACTIONS(6369), - [anon_sym_BSLASHcref] = ACTIONS(6369), - [anon_sym_BSLASHCref] = ACTIONS(6369), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnameCref] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHlabelcref] = ACTIONS(6369), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCrefrange] = ACTIONS(6369), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnewlabel] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6369), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6369), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6371), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHdef] = ACTIONS(6369), - [anon_sym_BSLASHlet] = ACTIONS(6369), - [anon_sym_BSLASHleft] = ACTIONS(6369), - [anon_sym_BSLASHbig] = ACTIONS(6369), - [anon_sym_BSLASHBig] = ACTIONS(6369), - [anon_sym_BSLASHbigg] = ACTIONS(6369), - [anon_sym_BSLASHBigg] = ACTIONS(6369), - [anon_sym_BSLASHbigl] = ACTIONS(6369), - [anon_sym_BSLASHBigl] = ACTIONS(6369), - [anon_sym_BSLASHbiggl] = ACTIONS(6369), - [anon_sym_BSLASHBiggl] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6369), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6369), - [anon_sym_BSLASHgls] = ACTIONS(6369), - [anon_sym_BSLASHGls] = ACTIONS(6369), - [anon_sym_BSLASHGLS] = ACTIONS(6369), - [anon_sym_BSLASHglspl] = ACTIONS(6369), - [anon_sym_BSLASHGlspl] = ACTIONS(6369), - [anon_sym_BSLASHGLSpl] = ACTIONS(6369), - [anon_sym_BSLASHglsdisp] = ACTIONS(6369), - [anon_sym_BSLASHglslink] = ACTIONS(6369), - [anon_sym_BSLASHglstext] = ACTIONS(6369), - [anon_sym_BSLASHGlstext] = ACTIONS(6369), - [anon_sym_BSLASHGLStext] = ACTIONS(6369), - [anon_sym_BSLASHglsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6369), - [anon_sym_BSLASHglsplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSplural] = ACTIONS(6369), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHglsname] = ACTIONS(6369), - [anon_sym_BSLASHGlsname] = ACTIONS(6369), - [anon_sym_BSLASHGLSname] = ACTIONS(6369), - [anon_sym_BSLASHglssymbol] = ACTIONS(6369), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6369), - [anon_sym_BSLASHglsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6369), - [anon_sym_BSLASHglsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6369), - [anon_sym_BSLASHglsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6369), - [anon_sym_BSLASHglsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6369), - [anon_sym_BSLASHglsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6369), - [anon_sym_BSLASHnewacronym] = ACTIONS(6369), - [anon_sym_BSLASHacrshort] = ACTIONS(6369), - [anon_sym_BSLASHAcrshort] = ACTIONS(6369), - [anon_sym_BSLASHACRshort] = ACTIONS(6369), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6369), - [anon_sym_BSLASHacrlong] = ACTIONS(6369), - [anon_sym_BSLASHAcrlong] = ACTIONS(6369), - [anon_sym_BSLASHACRlong] = ACTIONS(6369), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6369), - [anon_sym_BSLASHacrfull] = ACTIONS(6369), - [anon_sym_BSLASHAcrfull] = ACTIONS(6369), - [anon_sym_BSLASHACRfull] = ACTIONS(6369), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6369), - [anon_sym_BSLASHacs] = ACTIONS(6369), - [anon_sym_BSLASHAcs] = ACTIONS(6369), - [anon_sym_BSLASHacsp] = ACTIONS(6369), - [anon_sym_BSLASHAcsp] = ACTIONS(6369), - [anon_sym_BSLASHacl] = ACTIONS(6369), - [anon_sym_BSLASHAcl] = ACTIONS(6369), - [anon_sym_BSLASHaclp] = ACTIONS(6369), - [anon_sym_BSLASHAclp] = ACTIONS(6369), - [anon_sym_BSLASHacf] = ACTIONS(6369), - [anon_sym_BSLASHAcf] = ACTIONS(6369), - [anon_sym_BSLASHacfp] = ACTIONS(6369), - [anon_sym_BSLASHAcfp] = ACTIONS(6369), - [anon_sym_BSLASHac] = ACTIONS(6369), - [anon_sym_BSLASHAc] = ACTIONS(6369), - [anon_sym_BSLASHacp] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6369), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6369), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6369), - [anon_sym_BSLASHcolor] = ACTIONS(6369), - [anon_sym_BSLASHcolorbox] = ACTIONS(6369), - [anon_sym_BSLASHtextcolor] = ACTIONS(6369), - [anon_sym_BSLASHpagecolor] = ACTIONS(6369), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6369), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6369), - [anon_sym_BSLASHtext] = ACTIONS(6369), - [anon_sym_BSLASHintertext] = ACTIONS(6369), - [anon_sym_shortintertext] = ACTIONS(6369), - }, - [1543] = { - [sym_curly_group] = STATE(1771), - [sym_command_name] = ACTIONS(6021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6021), - [anon_sym_LBRACK] = ACTIONS(6023), - [anon_sym_RBRACK] = ACTIONS(6023), - [anon_sym_COMMA] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(6023), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_RPAREN] = ACTIONS(6023), - [anon_sym_LBRACE] = ACTIONS(3520), - [sym_word] = ACTIONS(6021), - [sym_placeholder] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6023), - [anon_sym_DASH] = ACTIONS(6023), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6023), - [anon_sym_LT] = ACTIONS(6021), - [anon_sym_GT] = ACTIONS(6021), - [anon_sym_BANG] = ACTIONS(6021), - [anon_sym_PIPE] = ACTIONS(6021), - [anon_sym_COLON] = ACTIONS(6021), - [anon_sym_SQUOTE] = ACTIONS(6021), - [anon_sym__] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), - [anon_sym_BSLASHbegin] = ACTIONS(6021), - [anon_sym_BSLASHtitle] = ACTIONS(6021), - [anon_sym_BSLASHauthor] = ACTIONS(6021), - [anon_sym_BSLASHusepackage] = ACTIONS(6021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), - [anon_sym_BSLASHinclude] = ACTIONS(6021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), - [anon_sym_BSLASHinput] = ACTIONS(6021), - [anon_sym_BSLASHsubfile] = ACTIONS(6021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), - [anon_sym_BSLASHbibliography] = ACTIONS(6021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), - [anon_sym_BSLASHincludesvg] = ACTIONS(6021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), - [anon_sym_BSLASHimport] = ACTIONS(6021), - [anon_sym_BSLASHsubimport] = ACTIONS(6021), - [anon_sym_BSLASHinputfrom] = ACTIONS(6021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), - [anon_sym_BSLASHincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHcaption] = ACTIONS(6021), - [anon_sym_BSLASHcite] = ACTIONS(6021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCite] = ACTIONS(6021), - [anon_sym_BSLASHnocite] = ACTIONS(6021), - [anon_sym_BSLASHcitet] = ACTIONS(6021), - [anon_sym_BSLASHcitep] = ACTIONS(6021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteauthor] = ACTIONS(6021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitetitle] = ACTIONS(6021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteyear] = ACTIONS(6021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitedate] = ACTIONS(6021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteurl] = ACTIONS(6021), - [anon_sym_BSLASHfullcite] = ACTIONS(6021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), - [anon_sym_BSLASHcitealt] = ACTIONS(6021), - [anon_sym_BSLASHcitealp] = ACTIONS(6021), - [anon_sym_BSLASHcitetext] = ACTIONS(6021), - [anon_sym_BSLASHparencite] = ACTIONS(6021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHParencite] = ACTIONS(6021), - [anon_sym_BSLASHfootcite] = ACTIONS(6021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), - [anon_sym_BSLASHtextcite] = ACTIONS(6021), - [anon_sym_BSLASHTextcite] = ACTIONS(6021), - [anon_sym_BSLASHsmartcite] = ACTIONS(6021), - [anon_sym_BSLASHSmartcite] = ACTIONS(6021), - [anon_sym_BSLASHsupercite] = ACTIONS(6021), - [anon_sym_BSLASHautocite] = ACTIONS(6021), - [anon_sym_BSLASHAutocite] = ACTIONS(6021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHvolcite] = ACTIONS(6021), - [anon_sym_BSLASHVolcite] = ACTIONS(6021), - [anon_sym_BSLASHpvolcite] = ACTIONS(6021), - [anon_sym_BSLASHPvolcite] = ACTIONS(6021), - [anon_sym_BSLASHfvolcite] = ACTIONS(6021), - [anon_sym_BSLASHftvolcite] = ACTIONS(6021), - [anon_sym_BSLASHsvolcite] = ACTIONS(6021), - [anon_sym_BSLASHSvolcite] = ACTIONS(6021), - [anon_sym_BSLASHtvolcite] = ACTIONS(6021), - [anon_sym_BSLASHTvolcite] = ACTIONS(6021), - [anon_sym_BSLASHavolcite] = ACTIONS(6021), - [anon_sym_BSLASHAvolcite] = ACTIONS(6021), - [anon_sym_BSLASHnotecite] = ACTIONS(6021), - [anon_sym_BSLASHNotecite] = ACTIONS(6021), - [anon_sym_BSLASHpnotecite] = ACTIONS(6021), - [anon_sym_BSLASHPnotecite] = ACTIONS(6021), - [anon_sym_BSLASHfnotecite] = ACTIONS(6021), - [anon_sym_BSLASHlabel] = ACTIONS(6021), - [anon_sym_BSLASHref] = ACTIONS(6021), - [anon_sym_BSLASHeqref] = ACTIONS(6021), - [anon_sym_BSLASHvref] = ACTIONS(6021), - [anon_sym_BSLASHVref] = ACTIONS(6021), - [anon_sym_BSLASHautoref] = ACTIONS(6021), - [anon_sym_BSLASHpageref] = ACTIONS(6021), - [anon_sym_BSLASHcref] = ACTIONS(6021), - [anon_sym_BSLASHCref] = ACTIONS(6021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnameCref] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHlabelcref] = ACTIONS(6021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCrefrange] = ACTIONS(6021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnewlabel] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHdef] = ACTIONS(6021), - [anon_sym_BSLASHlet] = ACTIONS(6021), - [anon_sym_BSLASHleft] = ACTIONS(6021), - [anon_sym_BSLASHbig] = ACTIONS(6021), - [anon_sym_BSLASHBig] = ACTIONS(6021), - [anon_sym_BSLASHbigg] = ACTIONS(6021), - [anon_sym_BSLASHBigg] = ACTIONS(6021), - [anon_sym_BSLASHbigl] = ACTIONS(6021), - [anon_sym_BSLASHBigl] = ACTIONS(6021), - [anon_sym_BSLASHbiggl] = ACTIONS(6021), - [anon_sym_BSLASHBiggl] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), - [anon_sym_BSLASHgls] = ACTIONS(6021), - [anon_sym_BSLASHGls] = ACTIONS(6021), - [anon_sym_BSLASHGLS] = ACTIONS(6021), - [anon_sym_BSLASHglspl] = ACTIONS(6021), - [anon_sym_BSLASHGlspl] = ACTIONS(6021), - [anon_sym_BSLASHGLSpl] = ACTIONS(6021), - [anon_sym_BSLASHglsdisp] = ACTIONS(6021), - [anon_sym_BSLASHglslink] = ACTIONS(6021), - [anon_sym_BSLASHglstext] = ACTIONS(6021), - [anon_sym_BSLASHGlstext] = ACTIONS(6021), - [anon_sym_BSLASHGLStext] = ACTIONS(6021), - [anon_sym_BSLASHglsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), - [anon_sym_BSLASHglsplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSplural] = ACTIONS(6021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHglsname] = ACTIONS(6021), - [anon_sym_BSLASHGlsname] = ACTIONS(6021), - [anon_sym_BSLASHGLSname] = ACTIONS(6021), - [anon_sym_BSLASHglssymbol] = ACTIONS(6021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), - [anon_sym_BSLASHglsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), - [anon_sym_BSLASHglsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), - [anon_sym_BSLASHglsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), - [anon_sym_BSLASHglsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), - [anon_sym_BSLASHglsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), - [anon_sym_BSLASHnewacronym] = ACTIONS(6021), - [anon_sym_BSLASHacrshort] = ACTIONS(6021), - [anon_sym_BSLASHAcrshort] = ACTIONS(6021), - [anon_sym_BSLASHACRshort] = ACTIONS(6021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), - [anon_sym_BSLASHacrlong] = ACTIONS(6021), - [anon_sym_BSLASHAcrlong] = ACTIONS(6021), - [anon_sym_BSLASHACRlong] = ACTIONS(6021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), - [anon_sym_BSLASHacrfull] = ACTIONS(6021), - [anon_sym_BSLASHAcrfull] = ACTIONS(6021), - [anon_sym_BSLASHACRfull] = ACTIONS(6021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), - [anon_sym_BSLASHacs] = ACTIONS(6021), - [anon_sym_BSLASHAcs] = ACTIONS(6021), - [anon_sym_BSLASHacsp] = ACTIONS(6021), - [anon_sym_BSLASHAcsp] = ACTIONS(6021), - [anon_sym_BSLASHacl] = ACTIONS(6021), - [anon_sym_BSLASHAcl] = ACTIONS(6021), - [anon_sym_BSLASHaclp] = ACTIONS(6021), - [anon_sym_BSLASHAclp] = ACTIONS(6021), - [anon_sym_BSLASHacf] = ACTIONS(6021), - [anon_sym_BSLASHAcf] = ACTIONS(6021), - [anon_sym_BSLASHacfp] = ACTIONS(6021), - [anon_sym_BSLASHAcfp] = ACTIONS(6021), - [anon_sym_BSLASHac] = ACTIONS(6021), - [anon_sym_BSLASHAc] = ACTIONS(6021), - [anon_sym_BSLASHacp] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), - [anon_sym_BSLASHcolor] = ACTIONS(6021), - [anon_sym_BSLASHcolorbox] = ACTIONS(6021), - [anon_sym_BSLASHtextcolor] = ACTIONS(6021), - [anon_sym_BSLASHpagecolor] = ACTIONS(6021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), - [anon_sym_BSLASHtext] = ACTIONS(6021), - [anon_sym_BSLASHintertext] = ACTIONS(6021), - [anon_sym_shortintertext] = ACTIONS(6021), - }, - [1544] = { - [sym_command_name] = ACTIONS(6373), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6375), - [anon_sym_RBRACK] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_EQ] = ACTIONS(6375), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_RPAREN] = ACTIONS(6375), - [anon_sym_LBRACE] = ACTIONS(6375), - [sym_word] = ACTIONS(6373), - [sym_placeholder] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6373), - [anon_sym_GT] = ACTIONS(6373), - [anon_sym_BANG] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_SQUOTE] = ACTIONS(6373), - [anon_sym__] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6375), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6375), - [anon_sym_DOLLAR] = ACTIONS(6373), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6375), - [anon_sym_BSLASHbegin] = ACTIONS(6373), - [anon_sym_BSLASHend] = ACTIONS(6373), - [anon_sym_BSLASHtitle] = ACTIONS(6373), - [anon_sym_BSLASHauthor] = ACTIONS(6373), - [anon_sym_BSLASHusepackage] = ACTIONS(6373), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6373), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6373), - [anon_sym_BSLASHinclude] = ACTIONS(6373), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6373), - [anon_sym_BSLASHinput] = ACTIONS(6373), - [anon_sym_BSLASHsubfile] = ACTIONS(6373), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6373), - [anon_sym_BSLASHbibliography] = ACTIONS(6373), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6373), - [anon_sym_BSLASHincludesvg] = ACTIONS(6373), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6373), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6373), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6373), - [anon_sym_BSLASHimport] = ACTIONS(6373), - [anon_sym_BSLASHsubimport] = ACTIONS(6373), - [anon_sym_BSLASHinputfrom] = ACTIONS(6373), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6373), - [anon_sym_BSLASHincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHcaption] = ACTIONS(6373), - [anon_sym_BSLASHcite] = ACTIONS(6373), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCite] = ACTIONS(6373), - [anon_sym_BSLASHnocite] = ACTIONS(6373), - [anon_sym_BSLASHcitet] = ACTIONS(6373), - [anon_sym_BSLASHcitep] = ACTIONS(6373), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteauthor] = ACTIONS(6373), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6373), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitetitle] = ACTIONS(6373), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteyear] = ACTIONS(6373), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitedate] = ACTIONS(6373), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteurl] = ACTIONS(6373), - [anon_sym_BSLASHfullcite] = ACTIONS(6373), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6373), - [anon_sym_BSLASHcitealt] = ACTIONS(6373), - [anon_sym_BSLASHcitealp] = ACTIONS(6373), - [anon_sym_BSLASHcitetext] = ACTIONS(6373), - [anon_sym_BSLASHparencite] = ACTIONS(6373), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHParencite] = ACTIONS(6373), - [anon_sym_BSLASHfootcite] = ACTIONS(6373), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6373), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6373), - [anon_sym_BSLASHtextcite] = ACTIONS(6373), - [anon_sym_BSLASHTextcite] = ACTIONS(6373), - [anon_sym_BSLASHsmartcite] = ACTIONS(6373), - [anon_sym_BSLASHSmartcite] = ACTIONS(6373), - [anon_sym_BSLASHsupercite] = ACTIONS(6373), - [anon_sym_BSLASHautocite] = ACTIONS(6373), - [anon_sym_BSLASHAutocite] = ACTIONS(6373), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHvolcite] = ACTIONS(6373), - [anon_sym_BSLASHVolcite] = ACTIONS(6373), - [anon_sym_BSLASHpvolcite] = ACTIONS(6373), - [anon_sym_BSLASHPvolcite] = ACTIONS(6373), - [anon_sym_BSLASHfvolcite] = ACTIONS(6373), - [anon_sym_BSLASHftvolcite] = ACTIONS(6373), - [anon_sym_BSLASHsvolcite] = ACTIONS(6373), - [anon_sym_BSLASHSvolcite] = ACTIONS(6373), - [anon_sym_BSLASHtvolcite] = ACTIONS(6373), - [anon_sym_BSLASHTvolcite] = ACTIONS(6373), - [anon_sym_BSLASHavolcite] = ACTIONS(6373), - [anon_sym_BSLASHAvolcite] = ACTIONS(6373), - [anon_sym_BSLASHnotecite] = ACTIONS(6373), - [anon_sym_BSLASHNotecite] = ACTIONS(6373), - [anon_sym_BSLASHpnotecite] = ACTIONS(6373), - [anon_sym_BSLASHPnotecite] = ACTIONS(6373), - [anon_sym_BSLASHfnotecite] = ACTIONS(6373), - [anon_sym_BSLASHlabel] = ACTIONS(6373), - [anon_sym_BSLASHref] = ACTIONS(6373), - [anon_sym_BSLASHeqref] = ACTIONS(6373), - [anon_sym_BSLASHvref] = ACTIONS(6373), - [anon_sym_BSLASHVref] = ACTIONS(6373), - [anon_sym_BSLASHautoref] = ACTIONS(6373), - [anon_sym_BSLASHpageref] = ACTIONS(6373), - [anon_sym_BSLASHcref] = ACTIONS(6373), - [anon_sym_BSLASHCref] = ACTIONS(6373), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnameCref] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHlabelcref] = ACTIONS(6373), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCrefrange] = ACTIONS(6373), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnewlabel] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6373), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6373), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6375), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHdef] = ACTIONS(6373), - [anon_sym_BSLASHlet] = ACTIONS(6373), - [anon_sym_BSLASHleft] = ACTIONS(6373), - [anon_sym_BSLASHbig] = ACTIONS(6373), - [anon_sym_BSLASHBig] = ACTIONS(6373), - [anon_sym_BSLASHbigg] = ACTIONS(6373), - [anon_sym_BSLASHBigg] = ACTIONS(6373), - [anon_sym_BSLASHbigl] = ACTIONS(6373), - [anon_sym_BSLASHBigl] = ACTIONS(6373), - [anon_sym_BSLASHbiggl] = ACTIONS(6373), - [anon_sym_BSLASHBiggl] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6373), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6373), - [anon_sym_BSLASHgls] = ACTIONS(6373), - [anon_sym_BSLASHGls] = ACTIONS(6373), - [anon_sym_BSLASHGLS] = ACTIONS(6373), - [anon_sym_BSLASHglspl] = ACTIONS(6373), - [anon_sym_BSLASHGlspl] = ACTIONS(6373), - [anon_sym_BSLASHGLSpl] = ACTIONS(6373), - [anon_sym_BSLASHglsdisp] = ACTIONS(6373), - [anon_sym_BSLASHglslink] = ACTIONS(6373), - [anon_sym_BSLASHglstext] = ACTIONS(6373), - [anon_sym_BSLASHGlstext] = ACTIONS(6373), - [anon_sym_BSLASHGLStext] = ACTIONS(6373), - [anon_sym_BSLASHglsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6373), - [anon_sym_BSLASHglsplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSplural] = ACTIONS(6373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHglsname] = ACTIONS(6373), - [anon_sym_BSLASHGlsname] = ACTIONS(6373), - [anon_sym_BSLASHGLSname] = ACTIONS(6373), - [anon_sym_BSLASHglssymbol] = ACTIONS(6373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6373), - [anon_sym_BSLASHglsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6373), - [anon_sym_BSLASHglsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6373), - [anon_sym_BSLASHglsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6373), - [anon_sym_BSLASHglsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6373), - [anon_sym_BSLASHglsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6373), - [anon_sym_BSLASHnewacronym] = ACTIONS(6373), - [anon_sym_BSLASHacrshort] = ACTIONS(6373), - [anon_sym_BSLASHAcrshort] = ACTIONS(6373), - [anon_sym_BSLASHACRshort] = ACTIONS(6373), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6373), - [anon_sym_BSLASHacrlong] = ACTIONS(6373), - [anon_sym_BSLASHAcrlong] = ACTIONS(6373), - [anon_sym_BSLASHACRlong] = ACTIONS(6373), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6373), - [anon_sym_BSLASHacrfull] = ACTIONS(6373), - [anon_sym_BSLASHAcrfull] = ACTIONS(6373), - [anon_sym_BSLASHACRfull] = ACTIONS(6373), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6373), - [anon_sym_BSLASHacs] = ACTIONS(6373), - [anon_sym_BSLASHAcs] = ACTIONS(6373), - [anon_sym_BSLASHacsp] = ACTIONS(6373), - [anon_sym_BSLASHAcsp] = ACTIONS(6373), - [anon_sym_BSLASHacl] = ACTIONS(6373), - [anon_sym_BSLASHAcl] = ACTIONS(6373), - [anon_sym_BSLASHaclp] = ACTIONS(6373), - [anon_sym_BSLASHAclp] = ACTIONS(6373), - [anon_sym_BSLASHacf] = ACTIONS(6373), - [anon_sym_BSLASHAcf] = ACTIONS(6373), - [anon_sym_BSLASHacfp] = ACTIONS(6373), - [anon_sym_BSLASHAcfp] = ACTIONS(6373), - [anon_sym_BSLASHac] = ACTIONS(6373), - [anon_sym_BSLASHAc] = ACTIONS(6373), - [anon_sym_BSLASHacp] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6373), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6373), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6373), - [anon_sym_BSLASHcolor] = ACTIONS(6373), - [anon_sym_BSLASHcolorbox] = ACTIONS(6373), - [anon_sym_BSLASHtextcolor] = ACTIONS(6373), - [anon_sym_BSLASHpagecolor] = ACTIONS(6373), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6373), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6373), - [anon_sym_BSLASHtext] = ACTIONS(6373), - [anon_sym_BSLASHintertext] = ACTIONS(6373), - [anon_sym_shortintertext] = ACTIONS(6373), - }, - [1545] = { - [sym_command_name] = ACTIONS(6943), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6943), - [anon_sym_LBRACK] = ACTIONS(6945), - [anon_sym_RBRACK] = ACTIONS(6945), - [anon_sym_COMMA] = ACTIONS(6945), - [anon_sym_EQ] = ACTIONS(6945), - [anon_sym_LPAREN] = ACTIONS(6945), - [anon_sym_RPAREN] = ACTIONS(6945), - [anon_sym_LBRACE] = ACTIONS(6945), - [sym_word] = ACTIONS(6943), - [sym_placeholder] = ACTIONS(6945), - [anon_sym_PLUS] = ACTIONS(6945), - [anon_sym_DASH] = ACTIONS(6945), - [anon_sym_STAR] = ACTIONS(6945), - [anon_sym_SLASH] = ACTIONS(6945), - [anon_sym_LT] = ACTIONS(6943), - [anon_sym_GT] = ACTIONS(6943), - [anon_sym_BANG] = ACTIONS(6943), - [anon_sym_PIPE] = ACTIONS(6943), - [anon_sym_COLON] = ACTIONS(6943), - [anon_sym_SQUOTE] = ACTIONS(6943), - [anon_sym__] = ACTIONS(6945), - [anon_sym_CARET] = ACTIONS(6945), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6945), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6945), - [anon_sym_DOLLAR] = ACTIONS(6943), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6945), - [anon_sym_BSLASHbegin] = ACTIONS(6943), - [anon_sym_BSLASHend] = ACTIONS(6943), - [anon_sym_BSLASHtitle] = ACTIONS(6943), - [anon_sym_BSLASHauthor] = ACTIONS(6943), - [anon_sym_BSLASHusepackage] = ACTIONS(6943), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6943), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6943), - [anon_sym_BSLASHinclude] = ACTIONS(6943), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6943), - [anon_sym_BSLASHinput] = ACTIONS(6943), - [anon_sym_BSLASHsubfile] = ACTIONS(6943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6943), - [anon_sym_BSLASHbibliography] = ACTIONS(6943), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6943), - [anon_sym_BSLASHincludesvg] = ACTIONS(6943), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6943), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6943), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6943), - [anon_sym_BSLASHimport] = ACTIONS(6943), - [anon_sym_BSLASHsubimport] = ACTIONS(6943), - [anon_sym_BSLASHinputfrom] = ACTIONS(6943), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6943), - [anon_sym_BSLASHincludefrom] = ACTIONS(6943), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6943), - [anon_sym_BSLASHcaption] = ACTIONS(6943), - [anon_sym_BSLASHcite] = ACTIONS(6943), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6945), - [anon_sym_BSLASHCite] = ACTIONS(6943), - [anon_sym_BSLASHnocite] = ACTIONS(6943), - [anon_sym_BSLASHcitet] = ACTIONS(6943), - [anon_sym_BSLASHcitep] = ACTIONS(6943), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6945), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6945), - [anon_sym_BSLASHciteauthor] = ACTIONS(6943), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6945), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6943), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6945), - [anon_sym_BSLASHcitetitle] = ACTIONS(6943), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6945), - [anon_sym_BSLASHciteyear] = ACTIONS(6943), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6945), - [anon_sym_BSLASHcitedate] = ACTIONS(6943), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6945), - [anon_sym_BSLASHciteurl] = ACTIONS(6943), - [anon_sym_BSLASHfullcite] = ACTIONS(6943), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6943), - [anon_sym_BSLASHcitealt] = ACTIONS(6943), - [anon_sym_BSLASHcitealp] = ACTIONS(6943), - [anon_sym_BSLASHcitetext] = ACTIONS(6943), - [anon_sym_BSLASHparencite] = ACTIONS(6943), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6945), - [anon_sym_BSLASHParencite] = ACTIONS(6943), - [anon_sym_BSLASHfootcite] = ACTIONS(6943), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6943), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6943), - [anon_sym_BSLASHtextcite] = ACTIONS(6943), - [anon_sym_BSLASHTextcite] = ACTIONS(6943), - [anon_sym_BSLASHsmartcite] = ACTIONS(6943), - [anon_sym_BSLASHSmartcite] = ACTIONS(6943), - [anon_sym_BSLASHsupercite] = ACTIONS(6943), - [anon_sym_BSLASHautocite] = ACTIONS(6943), - [anon_sym_BSLASHAutocite] = ACTIONS(6943), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6945), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6945), - [anon_sym_BSLASHvolcite] = ACTIONS(6943), - [anon_sym_BSLASHVolcite] = ACTIONS(6943), - [anon_sym_BSLASHpvolcite] = ACTIONS(6943), - [anon_sym_BSLASHPvolcite] = ACTIONS(6943), - [anon_sym_BSLASHfvolcite] = ACTIONS(6943), - [anon_sym_BSLASHftvolcite] = ACTIONS(6943), - [anon_sym_BSLASHsvolcite] = ACTIONS(6943), - [anon_sym_BSLASHSvolcite] = ACTIONS(6943), - [anon_sym_BSLASHtvolcite] = ACTIONS(6943), - [anon_sym_BSLASHTvolcite] = ACTIONS(6943), - [anon_sym_BSLASHavolcite] = ACTIONS(6943), - [anon_sym_BSLASHAvolcite] = ACTIONS(6943), - [anon_sym_BSLASHnotecite] = ACTIONS(6943), - [anon_sym_BSLASHNotecite] = ACTIONS(6943), - [anon_sym_BSLASHpnotecite] = ACTIONS(6943), - [anon_sym_BSLASHPnotecite] = ACTIONS(6943), - [anon_sym_BSLASHfnotecite] = ACTIONS(6943), - [anon_sym_BSLASHlabel] = ACTIONS(6943), - [anon_sym_BSLASHref] = ACTIONS(6943), - [anon_sym_BSLASHeqref] = ACTIONS(6943), - [anon_sym_BSLASHvref] = ACTIONS(6943), - [anon_sym_BSLASHVref] = ACTIONS(6943), - [anon_sym_BSLASHautoref] = ACTIONS(6943), - [anon_sym_BSLASHpageref] = ACTIONS(6943), - [anon_sym_BSLASHcref] = ACTIONS(6943), - [anon_sym_BSLASHCref] = ACTIONS(6943), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6945), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6945), - [anon_sym_BSLASHnamecref] = ACTIONS(6943), - [anon_sym_BSLASHnameCref] = ACTIONS(6943), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6943), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6943), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6943), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6943), - [anon_sym_BSLASHlabelcref] = ACTIONS(6943), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6943), - [anon_sym_BSLASHcrefrange] = ACTIONS(6943), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6945), - [anon_sym_BSLASHCrefrange] = ACTIONS(6943), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6945), - [anon_sym_BSLASHnewlabel] = ACTIONS(6943), - [anon_sym_BSLASHnewcommand] = ACTIONS(6943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6945), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6945), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6945), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6945), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6943), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6943), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6943), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6943), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6943), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6943), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6943), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6943), - [anon_sym_BSLASHdef] = ACTIONS(6943), - [anon_sym_BSLASHlet] = ACTIONS(6943), - [anon_sym_BSLASHleft] = ACTIONS(6943), - [anon_sym_BSLASHbig] = ACTIONS(6943), - [anon_sym_BSLASHBig] = ACTIONS(6943), - [anon_sym_BSLASHbigg] = ACTIONS(6943), - [anon_sym_BSLASHBigg] = ACTIONS(6943), - [anon_sym_BSLASHbigl] = ACTIONS(6943), - [anon_sym_BSLASHBigl] = ACTIONS(6943), - [anon_sym_BSLASHbiggl] = ACTIONS(6943), - [anon_sym_BSLASHBiggl] = ACTIONS(6943), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6943), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6943), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6943), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6943), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6943), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6943), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6943), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6943), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6943), - [anon_sym_BSLASHgls] = ACTIONS(6943), - [anon_sym_BSLASHGls] = ACTIONS(6943), - [anon_sym_BSLASHGLS] = ACTIONS(6943), - [anon_sym_BSLASHglspl] = ACTIONS(6943), - [anon_sym_BSLASHGlspl] = ACTIONS(6943), - [anon_sym_BSLASHGLSpl] = ACTIONS(6943), - [anon_sym_BSLASHglsdisp] = ACTIONS(6943), - [anon_sym_BSLASHglslink] = ACTIONS(6943), - [anon_sym_BSLASHglstext] = ACTIONS(6943), - [anon_sym_BSLASHGlstext] = ACTIONS(6943), - [anon_sym_BSLASHGLStext] = ACTIONS(6943), - [anon_sym_BSLASHglsfirst] = ACTIONS(6943), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6943), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6943), - [anon_sym_BSLASHglsplural] = ACTIONS(6943), - [anon_sym_BSLASHGlsplural] = ACTIONS(6943), - [anon_sym_BSLASHGLSplural] = ACTIONS(6943), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6943), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6943), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6943), - [anon_sym_BSLASHglsname] = ACTIONS(6943), - [anon_sym_BSLASHGlsname] = ACTIONS(6943), - [anon_sym_BSLASHGLSname] = ACTIONS(6943), - [anon_sym_BSLASHglssymbol] = ACTIONS(6943), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6943), - [anon_sym_BSLASHglsdesc] = ACTIONS(6943), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6943), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6943), - [anon_sym_BSLASHglsuseri] = ACTIONS(6943), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6943), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6943), - [anon_sym_BSLASHglsuserii] = ACTIONS(6943), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6943), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6943), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6943), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6943), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6943), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6943), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6943), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6943), - [anon_sym_BSLASHglsuserv] = ACTIONS(6943), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6943), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6943), - [anon_sym_BSLASHglsuservi] = ACTIONS(6943), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6943), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6943), - [anon_sym_BSLASHnewacronym] = ACTIONS(6943), - [anon_sym_BSLASHacrshort] = ACTIONS(6943), - [anon_sym_BSLASHAcrshort] = ACTIONS(6943), - [anon_sym_BSLASHACRshort] = ACTIONS(6943), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6943), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6943), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6943), - [anon_sym_BSLASHacrlong] = ACTIONS(6943), - [anon_sym_BSLASHAcrlong] = ACTIONS(6943), - [anon_sym_BSLASHACRlong] = ACTIONS(6943), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6943), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6943), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6943), - [anon_sym_BSLASHacrfull] = ACTIONS(6943), - [anon_sym_BSLASHAcrfull] = ACTIONS(6943), - [anon_sym_BSLASHACRfull] = ACTIONS(6943), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6943), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6943), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6943), - [anon_sym_BSLASHacs] = ACTIONS(6943), - [anon_sym_BSLASHAcs] = ACTIONS(6943), - [anon_sym_BSLASHacsp] = ACTIONS(6943), - [anon_sym_BSLASHAcsp] = ACTIONS(6943), - [anon_sym_BSLASHacl] = ACTIONS(6943), - [anon_sym_BSLASHAcl] = ACTIONS(6943), - [anon_sym_BSLASHaclp] = ACTIONS(6943), - [anon_sym_BSLASHAclp] = ACTIONS(6943), - [anon_sym_BSLASHacf] = ACTIONS(6943), - [anon_sym_BSLASHAcf] = ACTIONS(6943), - [anon_sym_BSLASHacfp] = ACTIONS(6943), - [anon_sym_BSLASHAcfp] = ACTIONS(6943), - [anon_sym_BSLASHac] = ACTIONS(6943), - [anon_sym_BSLASHAc] = ACTIONS(6943), - [anon_sym_BSLASHacp] = ACTIONS(6943), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6943), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6943), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6943), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6943), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6943), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6943), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6943), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6943), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6943), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6943), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6943), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6945), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6943), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6945), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6943), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6943), - [anon_sym_BSLASHcolor] = ACTIONS(6943), - [anon_sym_BSLASHcolorbox] = ACTIONS(6943), - [anon_sym_BSLASHtextcolor] = ACTIONS(6943), - [anon_sym_BSLASHpagecolor] = ACTIONS(6943), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6943), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6943), - [anon_sym_BSLASHtext] = ACTIONS(6943), - [anon_sym_BSLASHintertext] = ACTIONS(6943), - [anon_sym_shortintertext] = ACTIONS(6943), - }, - [1546] = { - [sym_command_name] = ACTIONS(6377), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6379), - [anon_sym_RBRACK] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_EQ] = ACTIONS(6379), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_LBRACE] = ACTIONS(6379), - [sym_word] = ACTIONS(6377), - [sym_placeholder] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_SQUOTE] = ACTIONS(6377), - [anon_sym__] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6379), - [anon_sym_DOLLAR] = ACTIONS(6377), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6379), - [anon_sym_BSLASHbegin] = ACTIONS(6377), - [anon_sym_BSLASHend] = ACTIONS(6377), - [anon_sym_BSLASHtitle] = ACTIONS(6377), - [anon_sym_BSLASHauthor] = ACTIONS(6377), - [anon_sym_BSLASHusepackage] = ACTIONS(6377), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6377), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6377), - [anon_sym_BSLASHinclude] = ACTIONS(6377), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6377), - [anon_sym_BSLASHinput] = ACTIONS(6377), - [anon_sym_BSLASHsubfile] = ACTIONS(6377), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6377), - [anon_sym_BSLASHbibliography] = ACTIONS(6377), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6377), - [anon_sym_BSLASHincludesvg] = ACTIONS(6377), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6377), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6377), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6377), - [anon_sym_BSLASHimport] = ACTIONS(6377), - [anon_sym_BSLASHsubimport] = ACTIONS(6377), - [anon_sym_BSLASHinputfrom] = ACTIONS(6377), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6377), - [anon_sym_BSLASHincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHcaption] = ACTIONS(6377), - [anon_sym_BSLASHcite] = ACTIONS(6377), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCite] = ACTIONS(6377), - [anon_sym_BSLASHnocite] = ACTIONS(6377), - [anon_sym_BSLASHcitet] = ACTIONS(6377), - [anon_sym_BSLASHcitep] = ACTIONS(6377), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteauthor] = ACTIONS(6377), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6377), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitetitle] = ACTIONS(6377), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteyear] = ACTIONS(6377), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitedate] = ACTIONS(6377), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteurl] = ACTIONS(6377), - [anon_sym_BSLASHfullcite] = ACTIONS(6377), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6377), - [anon_sym_BSLASHcitealt] = ACTIONS(6377), - [anon_sym_BSLASHcitealp] = ACTIONS(6377), - [anon_sym_BSLASHcitetext] = ACTIONS(6377), - [anon_sym_BSLASHparencite] = ACTIONS(6377), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHParencite] = ACTIONS(6377), - [anon_sym_BSLASHfootcite] = ACTIONS(6377), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6377), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6377), - [anon_sym_BSLASHtextcite] = ACTIONS(6377), - [anon_sym_BSLASHTextcite] = ACTIONS(6377), - [anon_sym_BSLASHsmartcite] = ACTIONS(6377), - [anon_sym_BSLASHSmartcite] = ACTIONS(6377), - [anon_sym_BSLASHsupercite] = ACTIONS(6377), - [anon_sym_BSLASHautocite] = ACTIONS(6377), - [anon_sym_BSLASHAutocite] = ACTIONS(6377), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHvolcite] = ACTIONS(6377), - [anon_sym_BSLASHVolcite] = ACTIONS(6377), - [anon_sym_BSLASHpvolcite] = ACTIONS(6377), - [anon_sym_BSLASHPvolcite] = ACTIONS(6377), - [anon_sym_BSLASHfvolcite] = ACTIONS(6377), - [anon_sym_BSLASHftvolcite] = ACTIONS(6377), - [anon_sym_BSLASHsvolcite] = ACTIONS(6377), - [anon_sym_BSLASHSvolcite] = ACTIONS(6377), - [anon_sym_BSLASHtvolcite] = ACTIONS(6377), - [anon_sym_BSLASHTvolcite] = ACTIONS(6377), - [anon_sym_BSLASHavolcite] = ACTIONS(6377), - [anon_sym_BSLASHAvolcite] = ACTIONS(6377), - [anon_sym_BSLASHnotecite] = ACTIONS(6377), - [anon_sym_BSLASHNotecite] = ACTIONS(6377), - [anon_sym_BSLASHpnotecite] = ACTIONS(6377), - [anon_sym_BSLASHPnotecite] = ACTIONS(6377), - [anon_sym_BSLASHfnotecite] = ACTIONS(6377), - [anon_sym_BSLASHlabel] = ACTIONS(6377), - [anon_sym_BSLASHref] = ACTIONS(6377), - [anon_sym_BSLASHeqref] = ACTIONS(6377), - [anon_sym_BSLASHvref] = ACTIONS(6377), - [anon_sym_BSLASHVref] = ACTIONS(6377), - [anon_sym_BSLASHautoref] = ACTIONS(6377), - [anon_sym_BSLASHpageref] = ACTIONS(6377), - [anon_sym_BSLASHcref] = ACTIONS(6377), - [anon_sym_BSLASHCref] = ACTIONS(6377), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnameCref] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHlabelcref] = ACTIONS(6377), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCrefrange] = ACTIONS(6377), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnewlabel] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6377), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6377), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6379), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHdef] = ACTIONS(6377), - [anon_sym_BSLASHlet] = ACTIONS(6377), - [anon_sym_BSLASHleft] = ACTIONS(6377), - [anon_sym_BSLASHbig] = ACTIONS(6377), - [anon_sym_BSLASHBig] = ACTIONS(6377), - [anon_sym_BSLASHbigg] = ACTIONS(6377), - [anon_sym_BSLASHBigg] = ACTIONS(6377), - [anon_sym_BSLASHbigl] = ACTIONS(6377), - [anon_sym_BSLASHBigl] = ACTIONS(6377), - [anon_sym_BSLASHbiggl] = ACTIONS(6377), - [anon_sym_BSLASHBiggl] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6377), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6377), - [anon_sym_BSLASHgls] = ACTIONS(6377), - [anon_sym_BSLASHGls] = ACTIONS(6377), - [anon_sym_BSLASHGLS] = ACTIONS(6377), - [anon_sym_BSLASHglspl] = ACTIONS(6377), - [anon_sym_BSLASHGlspl] = ACTIONS(6377), - [anon_sym_BSLASHGLSpl] = ACTIONS(6377), - [anon_sym_BSLASHglsdisp] = ACTIONS(6377), - [anon_sym_BSLASHglslink] = ACTIONS(6377), - [anon_sym_BSLASHglstext] = ACTIONS(6377), - [anon_sym_BSLASHGlstext] = ACTIONS(6377), - [anon_sym_BSLASHGLStext] = ACTIONS(6377), - [anon_sym_BSLASHglsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6377), - [anon_sym_BSLASHglsplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSplural] = ACTIONS(6377), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHglsname] = ACTIONS(6377), - [anon_sym_BSLASHGlsname] = ACTIONS(6377), - [anon_sym_BSLASHGLSname] = ACTIONS(6377), - [anon_sym_BSLASHglssymbol] = ACTIONS(6377), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6377), - [anon_sym_BSLASHglsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6377), - [anon_sym_BSLASHglsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6377), - [anon_sym_BSLASHglsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6377), - [anon_sym_BSLASHglsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6377), - [anon_sym_BSLASHglsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6377), - [anon_sym_BSLASHnewacronym] = ACTIONS(6377), - [anon_sym_BSLASHacrshort] = ACTIONS(6377), - [anon_sym_BSLASHAcrshort] = ACTIONS(6377), - [anon_sym_BSLASHACRshort] = ACTIONS(6377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6377), - [anon_sym_BSLASHacrlong] = ACTIONS(6377), - [anon_sym_BSLASHAcrlong] = ACTIONS(6377), - [anon_sym_BSLASHACRlong] = ACTIONS(6377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6377), - [anon_sym_BSLASHacrfull] = ACTIONS(6377), - [anon_sym_BSLASHAcrfull] = ACTIONS(6377), - [anon_sym_BSLASHACRfull] = ACTIONS(6377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6377), - [anon_sym_BSLASHacs] = ACTIONS(6377), - [anon_sym_BSLASHAcs] = ACTIONS(6377), - [anon_sym_BSLASHacsp] = ACTIONS(6377), - [anon_sym_BSLASHAcsp] = ACTIONS(6377), - [anon_sym_BSLASHacl] = ACTIONS(6377), - [anon_sym_BSLASHAcl] = ACTIONS(6377), - [anon_sym_BSLASHaclp] = ACTIONS(6377), - [anon_sym_BSLASHAclp] = ACTIONS(6377), - [anon_sym_BSLASHacf] = ACTIONS(6377), - [anon_sym_BSLASHAcf] = ACTIONS(6377), - [anon_sym_BSLASHacfp] = ACTIONS(6377), - [anon_sym_BSLASHAcfp] = ACTIONS(6377), - [anon_sym_BSLASHac] = ACTIONS(6377), - [anon_sym_BSLASHAc] = ACTIONS(6377), - [anon_sym_BSLASHacp] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6377), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6377), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6377), - [anon_sym_BSLASHcolor] = ACTIONS(6377), - [anon_sym_BSLASHcolorbox] = ACTIONS(6377), - [anon_sym_BSLASHtextcolor] = ACTIONS(6377), - [anon_sym_BSLASHpagecolor] = ACTIONS(6377), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6377), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6377), - [anon_sym_BSLASHtext] = ACTIONS(6377), - [anon_sym_BSLASHintertext] = ACTIONS(6377), - [anon_sym_shortintertext] = ACTIONS(6377), - }, - [1547] = { - [sym_command_name] = ACTIONS(6381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(6383), - [anon_sym_RBRACK] = ACTIONS(6383), - [anon_sym_COMMA] = ACTIONS(6383), - [anon_sym_EQ] = ACTIONS(6383), - [anon_sym_LPAREN] = ACTIONS(6383), - [anon_sym_RPAREN] = ACTIONS(6383), - [anon_sym_LBRACE] = ACTIONS(6383), - [sym_word] = ACTIONS(6381), - [sym_placeholder] = ACTIONS(6383), - [anon_sym_PLUS] = ACTIONS(6383), - [anon_sym_DASH] = ACTIONS(6383), - [anon_sym_STAR] = ACTIONS(6383), - [anon_sym_SLASH] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_COLON] = ACTIONS(6381), - [anon_sym_SQUOTE] = ACTIONS(6381), - [anon_sym__] = ACTIONS(6383), - [anon_sym_CARET] = ACTIONS(6383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6383), - [anon_sym_DOLLAR] = ACTIONS(6381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6383), - [anon_sym_BSLASHbegin] = ACTIONS(6381), - [anon_sym_BSLASHend] = ACTIONS(6381), - [anon_sym_BSLASHtitle] = ACTIONS(6381), - [anon_sym_BSLASHauthor] = ACTIONS(6381), - [anon_sym_BSLASHusepackage] = ACTIONS(6381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6381), - [anon_sym_BSLASHinclude] = ACTIONS(6381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6381), - [anon_sym_BSLASHinput] = ACTIONS(6381), - [anon_sym_BSLASHsubfile] = ACTIONS(6381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6381), - [anon_sym_BSLASHbibliography] = ACTIONS(6381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6381), - [anon_sym_BSLASHincludesvg] = ACTIONS(6381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6381), - [anon_sym_BSLASHimport] = ACTIONS(6381), - [anon_sym_BSLASHsubimport] = ACTIONS(6381), - [anon_sym_BSLASHinputfrom] = ACTIONS(6381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6381), - [anon_sym_BSLASHincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHcaption] = ACTIONS(6381), - [anon_sym_BSLASHcite] = ACTIONS(6381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCite] = ACTIONS(6381), - [anon_sym_BSLASHnocite] = ACTIONS(6381), - [anon_sym_BSLASHcitet] = ACTIONS(6381), - [anon_sym_BSLASHcitep] = ACTIONS(6381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteauthor] = ACTIONS(6381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitetitle] = ACTIONS(6381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteyear] = ACTIONS(6381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitedate] = ACTIONS(6381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteurl] = ACTIONS(6381), - [anon_sym_BSLASHfullcite] = ACTIONS(6381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6381), - [anon_sym_BSLASHcitealt] = ACTIONS(6381), - [anon_sym_BSLASHcitealp] = ACTIONS(6381), - [anon_sym_BSLASHcitetext] = ACTIONS(6381), - [anon_sym_BSLASHparencite] = ACTIONS(6381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHParencite] = ACTIONS(6381), - [anon_sym_BSLASHfootcite] = ACTIONS(6381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6381), - [anon_sym_BSLASHtextcite] = ACTIONS(6381), - [anon_sym_BSLASHTextcite] = ACTIONS(6381), - [anon_sym_BSLASHsmartcite] = ACTIONS(6381), - [anon_sym_BSLASHSmartcite] = ACTIONS(6381), - [anon_sym_BSLASHsupercite] = ACTIONS(6381), - [anon_sym_BSLASHautocite] = ACTIONS(6381), - [anon_sym_BSLASHAutocite] = ACTIONS(6381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHvolcite] = ACTIONS(6381), - [anon_sym_BSLASHVolcite] = ACTIONS(6381), - [anon_sym_BSLASHpvolcite] = ACTIONS(6381), - [anon_sym_BSLASHPvolcite] = ACTIONS(6381), - [anon_sym_BSLASHfvolcite] = ACTIONS(6381), - [anon_sym_BSLASHftvolcite] = ACTIONS(6381), - [anon_sym_BSLASHsvolcite] = ACTIONS(6381), - [anon_sym_BSLASHSvolcite] = ACTIONS(6381), - [anon_sym_BSLASHtvolcite] = ACTIONS(6381), - [anon_sym_BSLASHTvolcite] = ACTIONS(6381), - [anon_sym_BSLASHavolcite] = ACTIONS(6381), - [anon_sym_BSLASHAvolcite] = ACTIONS(6381), - [anon_sym_BSLASHnotecite] = ACTIONS(6381), - [anon_sym_BSLASHNotecite] = ACTIONS(6381), - [anon_sym_BSLASHpnotecite] = ACTIONS(6381), - [anon_sym_BSLASHPnotecite] = ACTIONS(6381), - [anon_sym_BSLASHfnotecite] = ACTIONS(6381), - [anon_sym_BSLASHlabel] = ACTIONS(6381), - [anon_sym_BSLASHref] = ACTIONS(6381), - [anon_sym_BSLASHeqref] = ACTIONS(6381), - [anon_sym_BSLASHvref] = ACTIONS(6381), - [anon_sym_BSLASHVref] = ACTIONS(6381), - [anon_sym_BSLASHautoref] = ACTIONS(6381), - [anon_sym_BSLASHpageref] = ACTIONS(6381), - [anon_sym_BSLASHcref] = ACTIONS(6381), - [anon_sym_BSLASHCref] = ACTIONS(6381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnameCref] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHlabelcref] = ACTIONS(6381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCrefrange] = ACTIONS(6381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnewlabel] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6383), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHdef] = ACTIONS(6381), - [anon_sym_BSLASHlet] = ACTIONS(6381), - [anon_sym_BSLASHleft] = ACTIONS(6381), - [anon_sym_BSLASHbig] = ACTIONS(6381), - [anon_sym_BSLASHBig] = ACTIONS(6381), - [anon_sym_BSLASHbigg] = ACTIONS(6381), - [anon_sym_BSLASHBigg] = ACTIONS(6381), - [anon_sym_BSLASHbigl] = ACTIONS(6381), - [anon_sym_BSLASHBigl] = ACTIONS(6381), - [anon_sym_BSLASHbiggl] = ACTIONS(6381), - [anon_sym_BSLASHBiggl] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6381), - [anon_sym_BSLASHgls] = ACTIONS(6381), - [anon_sym_BSLASHGls] = ACTIONS(6381), - [anon_sym_BSLASHGLS] = ACTIONS(6381), - [anon_sym_BSLASHglspl] = ACTIONS(6381), - [anon_sym_BSLASHGlspl] = ACTIONS(6381), - [anon_sym_BSLASHGLSpl] = ACTIONS(6381), - [anon_sym_BSLASHglsdisp] = ACTIONS(6381), - [anon_sym_BSLASHglslink] = ACTIONS(6381), - [anon_sym_BSLASHglstext] = ACTIONS(6381), - [anon_sym_BSLASHGlstext] = ACTIONS(6381), - [anon_sym_BSLASHGLStext] = ACTIONS(6381), - [anon_sym_BSLASHglsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6381), - [anon_sym_BSLASHglsplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSplural] = ACTIONS(6381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHglsname] = ACTIONS(6381), - [anon_sym_BSLASHGlsname] = ACTIONS(6381), - [anon_sym_BSLASHGLSname] = ACTIONS(6381), - [anon_sym_BSLASHglssymbol] = ACTIONS(6381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6381), - [anon_sym_BSLASHglsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6381), - [anon_sym_BSLASHglsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6381), - [anon_sym_BSLASHglsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6381), - [anon_sym_BSLASHglsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6381), - [anon_sym_BSLASHglsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6381), - [anon_sym_BSLASHnewacronym] = ACTIONS(6381), - [anon_sym_BSLASHacrshort] = ACTIONS(6381), - [anon_sym_BSLASHAcrshort] = ACTIONS(6381), - [anon_sym_BSLASHACRshort] = ACTIONS(6381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6381), - [anon_sym_BSLASHacrlong] = ACTIONS(6381), - [anon_sym_BSLASHAcrlong] = ACTIONS(6381), - [anon_sym_BSLASHACRlong] = ACTIONS(6381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6381), - [anon_sym_BSLASHacrfull] = ACTIONS(6381), - [anon_sym_BSLASHAcrfull] = ACTIONS(6381), - [anon_sym_BSLASHACRfull] = ACTIONS(6381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6381), - [anon_sym_BSLASHacs] = ACTIONS(6381), - [anon_sym_BSLASHAcs] = ACTIONS(6381), - [anon_sym_BSLASHacsp] = ACTIONS(6381), - [anon_sym_BSLASHAcsp] = ACTIONS(6381), - [anon_sym_BSLASHacl] = ACTIONS(6381), - [anon_sym_BSLASHAcl] = ACTIONS(6381), - [anon_sym_BSLASHaclp] = ACTIONS(6381), - [anon_sym_BSLASHAclp] = ACTIONS(6381), - [anon_sym_BSLASHacf] = ACTIONS(6381), - [anon_sym_BSLASHAcf] = ACTIONS(6381), - [anon_sym_BSLASHacfp] = ACTIONS(6381), - [anon_sym_BSLASHAcfp] = ACTIONS(6381), - [anon_sym_BSLASHac] = ACTIONS(6381), - [anon_sym_BSLASHAc] = ACTIONS(6381), - [anon_sym_BSLASHacp] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6381), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6381), - [anon_sym_BSLASHcolor] = ACTIONS(6381), - [anon_sym_BSLASHcolorbox] = ACTIONS(6381), - [anon_sym_BSLASHtextcolor] = ACTIONS(6381), - [anon_sym_BSLASHpagecolor] = ACTIONS(6381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6381), - [anon_sym_BSLASHtext] = ACTIONS(6381), - [anon_sym_BSLASHintertext] = ACTIONS(6381), - [anon_sym_shortintertext] = ACTIONS(6381), - }, - [1548] = { - [sym_command_name] = ACTIONS(6385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6387), - [anon_sym_RBRACK] = ACTIONS(6387), - [anon_sym_COMMA] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LPAREN] = ACTIONS(6387), - [anon_sym_RPAREN] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6387), - [sym_word] = ACTIONS(6385), - [sym_placeholder] = ACTIONS(6387), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6387), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_LT] = ACTIONS(6385), - [anon_sym_GT] = ACTIONS(6385), - [anon_sym_BANG] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_SQUOTE] = ACTIONS(6385), - [anon_sym__] = ACTIONS(6387), - [anon_sym_CARET] = ACTIONS(6387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6387), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6387), - [anon_sym_DOLLAR] = ACTIONS(6385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6387), - [anon_sym_BSLASHbegin] = ACTIONS(6385), - [anon_sym_BSLASHend] = ACTIONS(6385), - [anon_sym_BSLASHtitle] = ACTIONS(6385), - [anon_sym_BSLASHauthor] = ACTIONS(6385), - [anon_sym_BSLASHusepackage] = ACTIONS(6385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6385), - [anon_sym_BSLASHinclude] = ACTIONS(6385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6385), - [anon_sym_BSLASHinput] = ACTIONS(6385), - [anon_sym_BSLASHsubfile] = ACTIONS(6385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6385), - [anon_sym_BSLASHbibliography] = ACTIONS(6385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6385), - [anon_sym_BSLASHincludesvg] = ACTIONS(6385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6385), - [anon_sym_BSLASHimport] = ACTIONS(6385), - [anon_sym_BSLASHsubimport] = ACTIONS(6385), - [anon_sym_BSLASHinputfrom] = ACTIONS(6385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6385), - [anon_sym_BSLASHincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHcaption] = ACTIONS(6385), - [anon_sym_BSLASHcite] = ACTIONS(6385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCite] = ACTIONS(6385), - [anon_sym_BSLASHnocite] = ACTIONS(6385), - [anon_sym_BSLASHcitet] = ACTIONS(6385), - [anon_sym_BSLASHcitep] = ACTIONS(6385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteauthor] = ACTIONS(6385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitetitle] = ACTIONS(6385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteyear] = ACTIONS(6385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitedate] = ACTIONS(6385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteurl] = ACTIONS(6385), - [anon_sym_BSLASHfullcite] = ACTIONS(6385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6385), - [anon_sym_BSLASHcitealt] = ACTIONS(6385), - [anon_sym_BSLASHcitealp] = ACTIONS(6385), - [anon_sym_BSLASHcitetext] = ACTIONS(6385), - [anon_sym_BSLASHparencite] = ACTIONS(6385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHParencite] = ACTIONS(6385), - [anon_sym_BSLASHfootcite] = ACTIONS(6385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6385), - [anon_sym_BSLASHtextcite] = ACTIONS(6385), - [anon_sym_BSLASHTextcite] = ACTIONS(6385), - [anon_sym_BSLASHsmartcite] = ACTIONS(6385), - [anon_sym_BSLASHSmartcite] = ACTIONS(6385), - [anon_sym_BSLASHsupercite] = ACTIONS(6385), - [anon_sym_BSLASHautocite] = ACTIONS(6385), - [anon_sym_BSLASHAutocite] = ACTIONS(6385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHvolcite] = ACTIONS(6385), - [anon_sym_BSLASHVolcite] = ACTIONS(6385), - [anon_sym_BSLASHpvolcite] = ACTIONS(6385), - [anon_sym_BSLASHPvolcite] = ACTIONS(6385), - [anon_sym_BSLASHfvolcite] = ACTIONS(6385), - [anon_sym_BSLASHftvolcite] = ACTIONS(6385), - [anon_sym_BSLASHsvolcite] = ACTIONS(6385), - [anon_sym_BSLASHSvolcite] = ACTIONS(6385), - [anon_sym_BSLASHtvolcite] = ACTIONS(6385), - [anon_sym_BSLASHTvolcite] = ACTIONS(6385), - [anon_sym_BSLASHavolcite] = ACTIONS(6385), - [anon_sym_BSLASHAvolcite] = ACTIONS(6385), - [anon_sym_BSLASHnotecite] = ACTIONS(6385), - [anon_sym_BSLASHNotecite] = ACTIONS(6385), - [anon_sym_BSLASHpnotecite] = ACTIONS(6385), - [anon_sym_BSLASHPnotecite] = ACTIONS(6385), - [anon_sym_BSLASHfnotecite] = ACTIONS(6385), - [anon_sym_BSLASHlabel] = ACTIONS(6385), - [anon_sym_BSLASHref] = ACTIONS(6385), - [anon_sym_BSLASHeqref] = ACTIONS(6385), - [anon_sym_BSLASHvref] = ACTIONS(6385), - [anon_sym_BSLASHVref] = ACTIONS(6385), - [anon_sym_BSLASHautoref] = ACTIONS(6385), - [anon_sym_BSLASHpageref] = ACTIONS(6385), - [anon_sym_BSLASHcref] = ACTIONS(6385), - [anon_sym_BSLASHCref] = ACTIONS(6385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnameCref] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHlabelcref] = ACTIONS(6385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCrefrange] = ACTIONS(6385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnewlabel] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6387), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHdef] = ACTIONS(6385), - [anon_sym_BSLASHlet] = ACTIONS(6385), - [anon_sym_BSLASHleft] = ACTIONS(6385), - [anon_sym_BSLASHbig] = ACTIONS(6385), - [anon_sym_BSLASHBig] = ACTIONS(6385), - [anon_sym_BSLASHbigg] = ACTIONS(6385), - [anon_sym_BSLASHBigg] = ACTIONS(6385), - [anon_sym_BSLASHbigl] = ACTIONS(6385), - [anon_sym_BSLASHBigl] = ACTIONS(6385), - [anon_sym_BSLASHbiggl] = ACTIONS(6385), - [anon_sym_BSLASHBiggl] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6385), - [anon_sym_BSLASHgls] = ACTIONS(6385), - [anon_sym_BSLASHGls] = ACTIONS(6385), - [anon_sym_BSLASHGLS] = ACTIONS(6385), - [anon_sym_BSLASHglspl] = ACTIONS(6385), - [anon_sym_BSLASHGlspl] = ACTIONS(6385), - [anon_sym_BSLASHGLSpl] = ACTIONS(6385), - [anon_sym_BSLASHglsdisp] = ACTIONS(6385), - [anon_sym_BSLASHglslink] = ACTIONS(6385), - [anon_sym_BSLASHglstext] = ACTIONS(6385), - [anon_sym_BSLASHGlstext] = ACTIONS(6385), - [anon_sym_BSLASHGLStext] = ACTIONS(6385), - [anon_sym_BSLASHglsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6385), - [anon_sym_BSLASHglsplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSplural] = ACTIONS(6385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHglsname] = ACTIONS(6385), - [anon_sym_BSLASHGlsname] = ACTIONS(6385), - [anon_sym_BSLASHGLSname] = ACTIONS(6385), - [anon_sym_BSLASHglssymbol] = ACTIONS(6385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6385), - [anon_sym_BSLASHglsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6385), - [anon_sym_BSLASHglsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6385), - [anon_sym_BSLASHglsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6385), - [anon_sym_BSLASHglsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6385), - [anon_sym_BSLASHglsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6385), - [anon_sym_BSLASHnewacronym] = ACTIONS(6385), - [anon_sym_BSLASHacrshort] = ACTIONS(6385), - [anon_sym_BSLASHAcrshort] = ACTIONS(6385), - [anon_sym_BSLASHACRshort] = ACTIONS(6385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6385), - [anon_sym_BSLASHacrlong] = ACTIONS(6385), - [anon_sym_BSLASHAcrlong] = ACTIONS(6385), - [anon_sym_BSLASHACRlong] = ACTIONS(6385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6385), - [anon_sym_BSLASHacrfull] = ACTIONS(6385), - [anon_sym_BSLASHAcrfull] = ACTIONS(6385), - [anon_sym_BSLASHACRfull] = ACTIONS(6385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6385), - [anon_sym_BSLASHacs] = ACTIONS(6385), - [anon_sym_BSLASHAcs] = ACTIONS(6385), - [anon_sym_BSLASHacsp] = ACTIONS(6385), - [anon_sym_BSLASHAcsp] = ACTIONS(6385), - [anon_sym_BSLASHacl] = ACTIONS(6385), - [anon_sym_BSLASHAcl] = ACTIONS(6385), - [anon_sym_BSLASHaclp] = ACTIONS(6385), - [anon_sym_BSLASHAclp] = ACTIONS(6385), - [anon_sym_BSLASHacf] = ACTIONS(6385), - [anon_sym_BSLASHAcf] = ACTIONS(6385), - [anon_sym_BSLASHacfp] = ACTIONS(6385), - [anon_sym_BSLASHAcfp] = ACTIONS(6385), - [anon_sym_BSLASHac] = ACTIONS(6385), - [anon_sym_BSLASHAc] = ACTIONS(6385), - [anon_sym_BSLASHacp] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6385), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6385), - [anon_sym_BSLASHcolor] = ACTIONS(6385), - [anon_sym_BSLASHcolorbox] = ACTIONS(6385), - [anon_sym_BSLASHtextcolor] = ACTIONS(6385), - [anon_sym_BSLASHpagecolor] = ACTIONS(6385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6385), - [anon_sym_BSLASHtext] = ACTIONS(6385), - [anon_sym_BSLASHintertext] = ACTIONS(6385), - [anon_sym_shortintertext] = ACTIONS(6385), - }, - [1549] = { - [sym_command_name] = ACTIONS(6389), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(6391), - [anon_sym_RBRACK] = ACTIONS(6391), - [anon_sym_COMMA] = ACTIONS(6391), - [anon_sym_EQ] = ACTIONS(6391), - [anon_sym_LPAREN] = ACTIONS(6391), - [anon_sym_RPAREN] = ACTIONS(6391), - [anon_sym_LBRACE] = ACTIONS(6391), - [sym_word] = ACTIONS(6389), - [sym_placeholder] = ACTIONS(6391), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6391), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_LT] = ACTIONS(6389), - [anon_sym_GT] = ACTIONS(6389), - [anon_sym_BANG] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_SQUOTE] = ACTIONS(6389), - [anon_sym__] = ACTIONS(6391), - [anon_sym_CARET] = ACTIONS(6391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6391), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6391), - [anon_sym_DOLLAR] = ACTIONS(6389), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6391), - [anon_sym_BSLASHbegin] = ACTIONS(6389), - [anon_sym_BSLASHend] = ACTIONS(6389), - [anon_sym_BSLASHtitle] = ACTIONS(6389), - [anon_sym_BSLASHauthor] = ACTIONS(6389), - [anon_sym_BSLASHusepackage] = ACTIONS(6389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6389), - [anon_sym_BSLASHinclude] = ACTIONS(6389), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6389), - [anon_sym_BSLASHinput] = ACTIONS(6389), - [anon_sym_BSLASHsubfile] = ACTIONS(6389), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6389), - [anon_sym_BSLASHbibliography] = ACTIONS(6389), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6389), - [anon_sym_BSLASHincludesvg] = ACTIONS(6389), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6389), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6389), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6389), - [anon_sym_BSLASHimport] = ACTIONS(6389), - [anon_sym_BSLASHsubimport] = ACTIONS(6389), - [anon_sym_BSLASHinputfrom] = ACTIONS(6389), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6389), - [anon_sym_BSLASHincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHcaption] = ACTIONS(6389), - [anon_sym_BSLASHcite] = ACTIONS(6389), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCite] = ACTIONS(6389), - [anon_sym_BSLASHnocite] = ACTIONS(6389), - [anon_sym_BSLASHcitet] = ACTIONS(6389), - [anon_sym_BSLASHcitep] = ACTIONS(6389), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteauthor] = ACTIONS(6389), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6389), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitetitle] = ACTIONS(6389), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteyear] = ACTIONS(6389), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitedate] = ACTIONS(6389), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteurl] = ACTIONS(6389), - [anon_sym_BSLASHfullcite] = ACTIONS(6389), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6389), - [anon_sym_BSLASHcitealt] = ACTIONS(6389), - [anon_sym_BSLASHcitealp] = ACTIONS(6389), - [anon_sym_BSLASHcitetext] = ACTIONS(6389), - [anon_sym_BSLASHparencite] = ACTIONS(6389), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHParencite] = ACTIONS(6389), - [anon_sym_BSLASHfootcite] = ACTIONS(6389), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6389), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6389), - [anon_sym_BSLASHtextcite] = ACTIONS(6389), - [anon_sym_BSLASHTextcite] = ACTIONS(6389), - [anon_sym_BSLASHsmartcite] = ACTIONS(6389), - [anon_sym_BSLASHSmartcite] = ACTIONS(6389), - [anon_sym_BSLASHsupercite] = ACTIONS(6389), - [anon_sym_BSLASHautocite] = ACTIONS(6389), - [anon_sym_BSLASHAutocite] = ACTIONS(6389), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHvolcite] = ACTIONS(6389), - [anon_sym_BSLASHVolcite] = ACTIONS(6389), - [anon_sym_BSLASHpvolcite] = ACTIONS(6389), - [anon_sym_BSLASHPvolcite] = ACTIONS(6389), - [anon_sym_BSLASHfvolcite] = ACTIONS(6389), - [anon_sym_BSLASHftvolcite] = ACTIONS(6389), - [anon_sym_BSLASHsvolcite] = ACTIONS(6389), - [anon_sym_BSLASHSvolcite] = ACTIONS(6389), - [anon_sym_BSLASHtvolcite] = ACTIONS(6389), - [anon_sym_BSLASHTvolcite] = ACTIONS(6389), - [anon_sym_BSLASHavolcite] = ACTIONS(6389), - [anon_sym_BSLASHAvolcite] = ACTIONS(6389), - [anon_sym_BSLASHnotecite] = ACTIONS(6389), - [anon_sym_BSLASHNotecite] = ACTIONS(6389), - [anon_sym_BSLASHpnotecite] = ACTIONS(6389), - [anon_sym_BSLASHPnotecite] = ACTIONS(6389), - [anon_sym_BSLASHfnotecite] = ACTIONS(6389), - [anon_sym_BSLASHlabel] = ACTIONS(6389), - [anon_sym_BSLASHref] = ACTIONS(6389), - [anon_sym_BSLASHeqref] = ACTIONS(6389), - [anon_sym_BSLASHvref] = ACTIONS(6389), - [anon_sym_BSLASHVref] = ACTIONS(6389), - [anon_sym_BSLASHautoref] = ACTIONS(6389), - [anon_sym_BSLASHpageref] = ACTIONS(6389), - [anon_sym_BSLASHcref] = ACTIONS(6389), - [anon_sym_BSLASHCref] = ACTIONS(6389), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnameCref] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHlabelcref] = ACTIONS(6389), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCrefrange] = ACTIONS(6389), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnewlabel] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6389), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6389), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6391), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHdef] = ACTIONS(6389), - [anon_sym_BSLASHlet] = ACTIONS(6389), - [anon_sym_BSLASHleft] = ACTIONS(6389), - [anon_sym_BSLASHbig] = ACTIONS(6389), - [anon_sym_BSLASHBig] = ACTIONS(6389), - [anon_sym_BSLASHbigg] = ACTIONS(6389), - [anon_sym_BSLASHBigg] = ACTIONS(6389), - [anon_sym_BSLASHbigl] = ACTIONS(6389), - [anon_sym_BSLASHBigl] = ACTIONS(6389), - [anon_sym_BSLASHbiggl] = ACTIONS(6389), - [anon_sym_BSLASHBiggl] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6389), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6389), - [anon_sym_BSLASHgls] = ACTIONS(6389), - [anon_sym_BSLASHGls] = ACTIONS(6389), - [anon_sym_BSLASHGLS] = ACTIONS(6389), - [anon_sym_BSLASHglspl] = ACTIONS(6389), - [anon_sym_BSLASHGlspl] = ACTIONS(6389), - [anon_sym_BSLASHGLSpl] = ACTIONS(6389), - [anon_sym_BSLASHglsdisp] = ACTIONS(6389), - [anon_sym_BSLASHglslink] = ACTIONS(6389), - [anon_sym_BSLASHglstext] = ACTIONS(6389), - [anon_sym_BSLASHGlstext] = ACTIONS(6389), - [anon_sym_BSLASHGLStext] = ACTIONS(6389), - [anon_sym_BSLASHglsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6389), - [anon_sym_BSLASHglsplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSplural] = ACTIONS(6389), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHglsname] = ACTIONS(6389), - [anon_sym_BSLASHGlsname] = ACTIONS(6389), - [anon_sym_BSLASHGLSname] = ACTIONS(6389), - [anon_sym_BSLASHglssymbol] = ACTIONS(6389), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6389), - [anon_sym_BSLASHglsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6389), - [anon_sym_BSLASHglsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6389), - [anon_sym_BSLASHglsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6389), - [anon_sym_BSLASHglsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6389), - [anon_sym_BSLASHglsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6389), - [anon_sym_BSLASHnewacronym] = ACTIONS(6389), - [anon_sym_BSLASHacrshort] = ACTIONS(6389), - [anon_sym_BSLASHAcrshort] = ACTIONS(6389), - [anon_sym_BSLASHACRshort] = ACTIONS(6389), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6389), - [anon_sym_BSLASHacrlong] = ACTIONS(6389), - [anon_sym_BSLASHAcrlong] = ACTIONS(6389), - [anon_sym_BSLASHACRlong] = ACTIONS(6389), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6389), - [anon_sym_BSLASHacrfull] = ACTIONS(6389), - [anon_sym_BSLASHAcrfull] = ACTIONS(6389), - [anon_sym_BSLASHACRfull] = ACTIONS(6389), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6389), - [anon_sym_BSLASHacs] = ACTIONS(6389), - [anon_sym_BSLASHAcs] = ACTIONS(6389), - [anon_sym_BSLASHacsp] = ACTIONS(6389), - [anon_sym_BSLASHAcsp] = ACTIONS(6389), - [anon_sym_BSLASHacl] = ACTIONS(6389), - [anon_sym_BSLASHAcl] = ACTIONS(6389), - [anon_sym_BSLASHaclp] = ACTIONS(6389), - [anon_sym_BSLASHAclp] = ACTIONS(6389), - [anon_sym_BSLASHacf] = ACTIONS(6389), - [anon_sym_BSLASHAcf] = ACTIONS(6389), - [anon_sym_BSLASHacfp] = ACTIONS(6389), - [anon_sym_BSLASHAcfp] = ACTIONS(6389), - [anon_sym_BSLASHac] = ACTIONS(6389), - [anon_sym_BSLASHAc] = ACTIONS(6389), - [anon_sym_BSLASHacp] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6389), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6389), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6389), - [anon_sym_BSLASHcolor] = ACTIONS(6389), - [anon_sym_BSLASHcolorbox] = ACTIONS(6389), - [anon_sym_BSLASHtextcolor] = ACTIONS(6389), - [anon_sym_BSLASHpagecolor] = ACTIONS(6389), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6389), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6389), - [anon_sym_BSLASHtext] = ACTIONS(6389), - [anon_sym_BSLASHintertext] = ACTIONS(6389), - [anon_sym_shortintertext] = ACTIONS(6389), - }, - [1550] = { - [sym_command_name] = ACTIONS(6393), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6393), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_RBRACK] = ACTIONS(6395), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_LPAREN] = ACTIONS(6395), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_LBRACE] = ACTIONS(6395), - [sym_word] = ACTIONS(6393), - [sym_placeholder] = ACTIONS(6395), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6395), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_LT] = ACTIONS(6393), - [anon_sym_GT] = ACTIONS(6393), - [anon_sym_BANG] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_SQUOTE] = ACTIONS(6393), - [anon_sym__] = ACTIONS(6395), - [anon_sym_CARET] = ACTIONS(6395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6395), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6395), - [anon_sym_DOLLAR] = ACTIONS(6393), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6395), - [anon_sym_BSLASHbegin] = ACTIONS(6393), - [anon_sym_BSLASHend] = ACTIONS(6393), - [anon_sym_BSLASHtitle] = ACTIONS(6393), - [anon_sym_BSLASHauthor] = ACTIONS(6393), - [anon_sym_BSLASHusepackage] = ACTIONS(6393), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6393), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6393), - [anon_sym_BSLASHinclude] = ACTIONS(6393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6393), - [anon_sym_BSLASHinput] = ACTIONS(6393), - [anon_sym_BSLASHsubfile] = ACTIONS(6393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6393), - [anon_sym_BSLASHbibliography] = ACTIONS(6393), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6393), - [anon_sym_BSLASHincludesvg] = ACTIONS(6393), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6393), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6393), - [anon_sym_BSLASHimport] = ACTIONS(6393), - [anon_sym_BSLASHsubimport] = ACTIONS(6393), - [anon_sym_BSLASHinputfrom] = ACTIONS(6393), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6393), - [anon_sym_BSLASHincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHcaption] = ACTIONS(6393), - [anon_sym_BSLASHcite] = ACTIONS(6393), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCite] = ACTIONS(6393), - [anon_sym_BSLASHnocite] = ACTIONS(6393), - [anon_sym_BSLASHcitet] = ACTIONS(6393), - [anon_sym_BSLASHcitep] = ACTIONS(6393), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteauthor] = ACTIONS(6393), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6393), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitetitle] = ACTIONS(6393), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteyear] = ACTIONS(6393), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitedate] = ACTIONS(6393), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteurl] = ACTIONS(6393), - [anon_sym_BSLASHfullcite] = ACTIONS(6393), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6393), - [anon_sym_BSLASHcitealt] = ACTIONS(6393), - [anon_sym_BSLASHcitealp] = ACTIONS(6393), - [anon_sym_BSLASHcitetext] = ACTIONS(6393), - [anon_sym_BSLASHparencite] = ACTIONS(6393), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHParencite] = ACTIONS(6393), - [anon_sym_BSLASHfootcite] = ACTIONS(6393), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6393), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6393), - [anon_sym_BSLASHtextcite] = ACTIONS(6393), - [anon_sym_BSLASHTextcite] = ACTIONS(6393), - [anon_sym_BSLASHsmartcite] = ACTIONS(6393), - [anon_sym_BSLASHSmartcite] = ACTIONS(6393), - [anon_sym_BSLASHsupercite] = ACTIONS(6393), - [anon_sym_BSLASHautocite] = ACTIONS(6393), - [anon_sym_BSLASHAutocite] = ACTIONS(6393), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHvolcite] = ACTIONS(6393), - [anon_sym_BSLASHVolcite] = ACTIONS(6393), - [anon_sym_BSLASHpvolcite] = ACTIONS(6393), - [anon_sym_BSLASHPvolcite] = ACTIONS(6393), - [anon_sym_BSLASHfvolcite] = ACTIONS(6393), - [anon_sym_BSLASHftvolcite] = ACTIONS(6393), - [anon_sym_BSLASHsvolcite] = ACTIONS(6393), - [anon_sym_BSLASHSvolcite] = ACTIONS(6393), - [anon_sym_BSLASHtvolcite] = ACTIONS(6393), - [anon_sym_BSLASHTvolcite] = ACTIONS(6393), - [anon_sym_BSLASHavolcite] = ACTIONS(6393), - [anon_sym_BSLASHAvolcite] = ACTIONS(6393), - [anon_sym_BSLASHnotecite] = ACTIONS(6393), - [anon_sym_BSLASHNotecite] = ACTIONS(6393), - [anon_sym_BSLASHpnotecite] = ACTIONS(6393), - [anon_sym_BSLASHPnotecite] = ACTIONS(6393), - [anon_sym_BSLASHfnotecite] = ACTIONS(6393), - [anon_sym_BSLASHlabel] = ACTIONS(6393), - [anon_sym_BSLASHref] = ACTIONS(6393), - [anon_sym_BSLASHeqref] = ACTIONS(6393), - [anon_sym_BSLASHvref] = ACTIONS(6393), - [anon_sym_BSLASHVref] = ACTIONS(6393), - [anon_sym_BSLASHautoref] = ACTIONS(6393), - [anon_sym_BSLASHpageref] = ACTIONS(6393), - [anon_sym_BSLASHcref] = ACTIONS(6393), - [anon_sym_BSLASHCref] = ACTIONS(6393), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnameCref] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHlabelcref] = ACTIONS(6393), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCrefrange] = ACTIONS(6393), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnewlabel] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6393), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6393), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6395), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHdef] = ACTIONS(6393), - [anon_sym_BSLASHlet] = ACTIONS(6393), - [anon_sym_BSLASHleft] = ACTIONS(6393), - [anon_sym_BSLASHbig] = ACTIONS(6393), - [anon_sym_BSLASHBig] = ACTIONS(6393), - [anon_sym_BSLASHbigg] = ACTIONS(6393), - [anon_sym_BSLASHBigg] = ACTIONS(6393), - [anon_sym_BSLASHbigl] = ACTIONS(6393), - [anon_sym_BSLASHBigl] = ACTIONS(6393), - [anon_sym_BSLASHbiggl] = ACTIONS(6393), - [anon_sym_BSLASHBiggl] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6393), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6393), - [anon_sym_BSLASHgls] = ACTIONS(6393), - [anon_sym_BSLASHGls] = ACTIONS(6393), - [anon_sym_BSLASHGLS] = ACTIONS(6393), - [anon_sym_BSLASHglspl] = ACTIONS(6393), - [anon_sym_BSLASHGlspl] = ACTIONS(6393), - [anon_sym_BSLASHGLSpl] = ACTIONS(6393), - [anon_sym_BSLASHglsdisp] = ACTIONS(6393), - [anon_sym_BSLASHglslink] = ACTIONS(6393), - [anon_sym_BSLASHglstext] = ACTIONS(6393), - [anon_sym_BSLASHGlstext] = ACTIONS(6393), - [anon_sym_BSLASHGLStext] = ACTIONS(6393), - [anon_sym_BSLASHglsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6393), - [anon_sym_BSLASHglsplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSplural] = ACTIONS(6393), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHglsname] = ACTIONS(6393), - [anon_sym_BSLASHGlsname] = ACTIONS(6393), - [anon_sym_BSLASHGLSname] = ACTIONS(6393), - [anon_sym_BSLASHglssymbol] = ACTIONS(6393), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6393), - [anon_sym_BSLASHglsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6393), - [anon_sym_BSLASHglsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6393), - [anon_sym_BSLASHglsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6393), - [anon_sym_BSLASHglsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6393), - [anon_sym_BSLASHglsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6393), - [anon_sym_BSLASHnewacronym] = ACTIONS(6393), - [anon_sym_BSLASHacrshort] = ACTIONS(6393), - [anon_sym_BSLASHAcrshort] = ACTIONS(6393), - [anon_sym_BSLASHACRshort] = ACTIONS(6393), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6393), - [anon_sym_BSLASHacrlong] = ACTIONS(6393), - [anon_sym_BSLASHAcrlong] = ACTIONS(6393), - [anon_sym_BSLASHACRlong] = ACTIONS(6393), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6393), - [anon_sym_BSLASHacrfull] = ACTIONS(6393), - [anon_sym_BSLASHAcrfull] = ACTIONS(6393), - [anon_sym_BSLASHACRfull] = ACTIONS(6393), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6393), - [anon_sym_BSLASHacs] = ACTIONS(6393), - [anon_sym_BSLASHAcs] = ACTIONS(6393), - [anon_sym_BSLASHacsp] = ACTIONS(6393), - [anon_sym_BSLASHAcsp] = ACTIONS(6393), - [anon_sym_BSLASHacl] = ACTIONS(6393), - [anon_sym_BSLASHAcl] = ACTIONS(6393), - [anon_sym_BSLASHaclp] = ACTIONS(6393), - [anon_sym_BSLASHAclp] = ACTIONS(6393), - [anon_sym_BSLASHacf] = ACTIONS(6393), - [anon_sym_BSLASHAcf] = ACTIONS(6393), - [anon_sym_BSLASHacfp] = ACTIONS(6393), - [anon_sym_BSLASHAcfp] = ACTIONS(6393), - [anon_sym_BSLASHac] = ACTIONS(6393), - [anon_sym_BSLASHAc] = ACTIONS(6393), - [anon_sym_BSLASHacp] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6393), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6393), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6393), - [anon_sym_BSLASHcolor] = ACTIONS(6393), - [anon_sym_BSLASHcolorbox] = ACTIONS(6393), - [anon_sym_BSLASHtextcolor] = ACTIONS(6393), - [anon_sym_BSLASHpagecolor] = ACTIONS(6393), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6393), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6393), - [anon_sym_BSLASHtext] = ACTIONS(6393), - [anon_sym_BSLASHintertext] = ACTIONS(6393), - [anon_sym_shortintertext] = ACTIONS(6393), - }, - [1551] = { - [sym_command_name] = ACTIONS(6397), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6397), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(6399), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_LPAREN] = ACTIONS(6399), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_LBRACE] = ACTIONS(6399), - [sym_word] = ACTIONS(6397), - [sym_placeholder] = ACTIONS(6399), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_LT] = ACTIONS(6397), - [anon_sym_GT] = ACTIONS(6397), - [anon_sym_BANG] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_SQUOTE] = ACTIONS(6397), - [anon_sym__] = ACTIONS(6399), - [anon_sym_CARET] = ACTIONS(6399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6399), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6399), - [anon_sym_DOLLAR] = ACTIONS(6397), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6399), - [anon_sym_BSLASHbegin] = ACTIONS(6397), - [anon_sym_BSLASHend] = ACTIONS(6397), - [anon_sym_BSLASHtitle] = ACTIONS(6397), - [anon_sym_BSLASHauthor] = ACTIONS(6397), - [anon_sym_BSLASHusepackage] = ACTIONS(6397), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6397), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6397), - [anon_sym_BSLASHinclude] = ACTIONS(6397), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6397), - [anon_sym_BSLASHinput] = ACTIONS(6397), - [anon_sym_BSLASHsubfile] = ACTIONS(6397), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6397), - [anon_sym_BSLASHbibliography] = ACTIONS(6397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6397), - [anon_sym_BSLASHincludesvg] = ACTIONS(6397), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6397), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6397), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6397), - [anon_sym_BSLASHimport] = ACTIONS(6397), - [anon_sym_BSLASHsubimport] = ACTIONS(6397), - [anon_sym_BSLASHinputfrom] = ACTIONS(6397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6397), - [anon_sym_BSLASHincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHcaption] = ACTIONS(6397), - [anon_sym_BSLASHcite] = ACTIONS(6397), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCite] = ACTIONS(6397), - [anon_sym_BSLASHnocite] = ACTIONS(6397), - [anon_sym_BSLASHcitet] = ACTIONS(6397), - [anon_sym_BSLASHcitep] = ACTIONS(6397), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteauthor] = ACTIONS(6397), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6397), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitetitle] = ACTIONS(6397), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteyear] = ACTIONS(6397), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitedate] = ACTIONS(6397), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteurl] = ACTIONS(6397), - [anon_sym_BSLASHfullcite] = ACTIONS(6397), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6397), - [anon_sym_BSLASHcitealt] = ACTIONS(6397), - [anon_sym_BSLASHcitealp] = ACTIONS(6397), - [anon_sym_BSLASHcitetext] = ACTIONS(6397), - [anon_sym_BSLASHparencite] = ACTIONS(6397), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHParencite] = ACTIONS(6397), - [anon_sym_BSLASHfootcite] = ACTIONS(6397), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6397), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6397), - [anon_sym_BSLASHtextcite] = ACTIONS(6397), - [anon_sym_BSLASHTextcite] = ACTIONS(6397), - [anon_sym_BSLASHsmartcite] = ACTIONS(6397), - [anon_sym_BSLASHSmartcite] = ACTIONS(6397), - [anon_sym_BSLASHsupercite] = ACTIONS(6397), - [anon_sym_BSLASHautocite] = ACTIONS(6397), - [anon_sym_BSLASHAutocite] = ACTIONS(6397), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHvolcite] = ACTIONS(6397), - [anon_sym_BSLASHVolcite] = ACTIONS(6397), - [anon_sym_BSLASHpvolcite] = ACTIONS(6397), - [anon_sym_BSLASHPvolcite] = ACTIONS(6397), - [anon_sym_BSLASHfvolcite] = ACTIONS(6397), - [anon_sym_BSLASHftvolcite] = ACTIONS(6397), - [anon_sym_BSLASHsvolcite] = ACTIONS(6397), - [anon_sym_BSLASHSvolcite] = ACTIONS(6397), - [anon_sym_BSLASHtvolcite] = ACTIONS(6397), - [anon_sym_BSLASHTvolcite] = ACTIONS(6397), - [anon_sym_BSLASHavolcite] = ACTIONS(6397), - [anon_sym_BSLASHAvolcite] = ACTIONS(6397), - [anon_sym_BSLASHnotecite] = ACTIONS(6397), - [anon_sym_BSLASHNotecite] = ACTIONS(6397), - [anon_sym_BSLASHpnotecite] = ACTIONS(6397), - [anon_sym_BSLASHPnotecite] = ACTIONS(6397), - [anon_sym_BSLASHfnotecite] = ACTIONS(6397), - [anon_sym_BSLASHlabel] = ACTIONS(6397), - [anon_sym_BSLASHref] = ACTIONS(6397), - [anon_sym_BSLASHeqref] = ACTIONS(6397), - [anon_sym_BSLASHvref] = ACTIONS(6397), - [anon_sym_BSLASHVref] = ACTIONS(6397), - [anon_sym_BSLASHautoref] = ACTIONS(6397), - [anon_sym_BSLASHpageref] = ACTIONS(6397), - [anon_sym_BSLASHcref] = ACTIONS(6397), - [anon_sym_BSLASHCref] = ACTIONS(6397), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnameCref] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHlabelcref] = ACTIONS(6397), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCrefrange] = ACTIONS(6397), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnewlabel] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6397), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6397), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6399), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHdef] = ACTIONS(6397), - [anon_sym_BSLASHlet] = ACTIONS(6397), - [anon_sym_BSLASHleft] = ACTIONS(6397), - [anon_sym_BSLASHbig] = ACTIONS(6397), - [anon_sym_BSLASHBig] = ACTIONS(6397), - [anon_sym_BSLASHbigg] = ACTIONS(6397), - [anon_sym_BSLASHBigg] = ACTIONS(6397), - [anon_sym_BSLASHbigl] = ACTIONS(6397), - [anon_sym_BSLASHBigl] = ACTIONS(6397), - [anon_sym_BSLASHbiggl] = ACTIONS(6397), - [anon_sym_BSLASHBiggl] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6397), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6397), - [anon_sym_BSLASHgls] = ACTIONS(6397), - [anon_sym_BSLASHGls] = ACTIONS(6397), - [anon_sym_BSLASHGLS] = ACTIONS(6397), - [anon_sym_BSLASHglspl] = ACTIONS(6397), - [anon_sym_BSLASHGlspl] = ACTIONS(6397), - [anon_sym_BSLASHGLSpl] = ACTIONS(6397), - [anon_sym_BSLASHglsdisp] = ACTIONS(6397), - [anon_sym_BSLASHglslink] = ACTIONS(6397), - [anon_sym_BSLASHglstext] = ACTIONS(6397), - [anon_sym_BSLASHGlstext] = ACTIONS(6397), - [anon_sym_BSLASHGLStext] = ACTIONS(6397), - [anon_sym_BSLASHglsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6397), - [anon_sym_BSLASHglsplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSplural] = ACTIONS(6397), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHglsname] = ACTIONS(6397), - [anon_sym_BSLASHGlsname] = ACTIONS(6397), - [anon_sym_BSLASHGLSname] = ACTIONS(6397), - [anon_sym_BSLASHglssymbol] = ACTIONS(6397), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6397), - [anon_sym_BSLASHglsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6397), - [anon_sym_BSLASHglsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6397), - [anon_sym_BSLASHglsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6397), - [anon_sym_BSLASHglsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6397), - [anon_sym_BSLASHglsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6397), - [anon_sym_BSLASHnewacronym] = ACTIONS(6397), - [anon_sym_BSLASHacrshort] = ACTIONS(6397), - [anon_sym_BSLASHAcrshort] = ACTIONS(6397), - [anon_sym_BSLASHACRshort] = ACTIONS(6397), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6397), - [anon_sym_BSLASHacrlong] = ACTIONS(6397), - [anon_sym_BSLASHAcrlong] = ACTIONS(6397), - [anon_sym_BSLASHACRlong] = ACTIONS(6397), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6397), - [anon_sym_BSLASHacrfull] = ACTIONS(6397), - [anon_sym_BSLASHAcrfull] = ACTIONS(6397), - [anon_sym_BSLASHACRfull] = ACTIONS(6397), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6397), - [anon_sym_BSLASHacs] = ACTIONS(6397), - [anon_sym_BSLASHAcs] = ACTIONS(6397), - [anon_sym_BSLASHacsp] = ACTIONS(6397), - [anon_sym_BSLASHAcsp] = ACTIONS(6397), - [anon_sym_BSLASHacl] = ACTIONS(6397), - [anon_sym_BSLASHAcl] = ACTIONS(6397), - [anon_sym_BSLASHaclp] = ACTIONS(6397), - [anon_sym_BSLASHAclp] = ACTIONS(6397), - [anon_sym_BSLASHacf] = ACTIONS(6397), - [anon_sym_BSLASHAcf] = ACTIONS(6397), - [anon_sym_BSLASHacfp] = ACTIONS(6397), - [anon_sym_BSLASHAcfp] = ACTIONS(6397), - [anon_sym_BSLASHac] = ACTIONS(6397), - [anon_sym_BSLASHAc] = ACTIONS(6397), - [anon_sym_BSLASHacp] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6397), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6397), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6397), - [anon_sym_BSLASHcolor] = ACTIONS(6397), - [anon_sym_BSLASHcolorbox] = ACTIONS(6397), - [anon_sym_BSLASHtextcolor] = ACTIONS(6397), - [anon_sym_BSLASHpagecolor] = ACTIONS(6397), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6397), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6397), - [anon_sym_BSLASHtext] = ACTIONS(6397), - [anon_sym_BSLASHintertext] = ACTIONS(6397), - [anon_sym_shortintertext] = ACTIONS(6397), - }, - [1552] = { - [sym_command_name] = ACTIONS(6401), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6401), - [anon_sym_LBRACK] = ACTIONS(6403), - [anon_sym_RBRACK] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(6403), - [anon_sym_EQ] = ACTIONS(6403), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(6403), - [anon_sym_LBRACE] = ACTIONS(6403), - [sym_word] = ACTIONS(6401), - [sym_placeholder] = ACTIONS(6403), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6403), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_LT] = ACTIONS(6401), - [anon_sym_GT] = ACTIONS(6401), - [anon_sym_BANG] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_SQUOTE] = ACTIONS(6401), - [anon_sym__] = ACTIONS(6403), - [anon_sym_CARET] = ACTIONS(6403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6403), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6403), - [anon_sym_DOLLAR] = ACTIONS(6401), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6403), - [anon_sym_BSLASHbegin] = ACTIONS(6401), - [anon_sym_BSLASHend] = ACTIONS(6401), - [anon_sym_BSLASHtitle] = ACTIONS(6401), - [anon_sym_BSLASHauthor] = ACTIONS(6401), - [anon_sym_BSLASHusepackage] = ACTIONS(6401), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6401), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6401), - [anon_sym_BSLASHinclude] = ACTIONS(6401), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6401), - [anon_sym_BSLASHinput] = ACTIONS(6401), - [anon_sym_BSLASHsubfile] = ACTIONS(6401), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6401), - [anon_sym_BSLASHbibliography] = ACTIONS(6401), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6401), - [anon_sym_BSLASHincludesvg] = ACTIONS(6401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6401), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6401), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6401), - [anon_sym_BSLASHimport] = ACTIONS(6401), - [anon_sym_BSLASHsubimport] = ACTIONS(6401), - [anon_sym_BSLASHinputfrom] = ACTIONS(6401), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6401), - [anon_sym_BSLASHincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHcaption] = ACTIONS(6401), - [anon_sym_BSLASHcite] = ACTIONS(6401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCite] = ACTIONS(6401), - [anon_sym_BSLASHnocite] = ACTIONS(6401), - [anon_sym_BSLASHcitet] = ACTIONS(6401), - [anon_sym_BSLASHcitep] = ACTIONS(6401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteauthor] = ACTIONS(6401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitetitle] = ACTIONS(6401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteyear] = ACTIONS(6401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitedate] = ACTIONS(6401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteurl] = ACTIONS(6401), - [anon_sym_BSLASHfullcite] = ACTIONS(6401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6401), - [anon_sym_BSLASHcitealt] = ACTIONS(6401), - [anon_sym_BSLASHcitealp] = ACTIONS(6401), - [anon_sym_BSLASHcitetext] = ACTIONS(6401), - [anon_sym_BSLASHparencite] = ACTIONS(6401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHParencite] = ACTIONS(6401), - [anon_sym_BSLASHfootcite] = ACTIONS(6401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6401), - [anon_sym_BSLASHtextcite] = ACTIONS(6401), - [anon_sym_BSLASHTextcite] = ACTIONS(6401), - [anon_sym_BSLASHsmartcite] = ACTIONS(6401), - [anon_sym_BSLASHSmartcite] = ACTIONS(6401), - [anon_sym_BSLASHsupercite] = ACTIONS(6401), - [anon_sym_BSLASHautocite] = ACTIONS(6401), - [anon_sym_BSLASHAutocite] = ACTIONS(6401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHvolcite] = ACTIONS(6401), - [anon_sym_BSLASHVolcite] = ACTIONS(6401), - [anon_sym_BSLASHpvolcite] = ACTIONS(6401), - [anon_sym_BSLASHPvolcite] = ACTIONS(6401), - [anon_sym_BSLASHfvolcite] = ACTIONS(6401), - [anon_sym_BSLASHftvolcite] = ACTIONS(6401), - [anon_sym_BSLASHsvolcite] = ACTIONS(6401), - [anon_sym_BSLASHSvolcite] = ACTIONS(6401), - [anon_sym_BSLASHtvolcite] = ACTIONS(6401), - [anon_sym_BSLASHTvolcite] = ACTIONS(6401), - [anon_sym_BSLASHavolcite] = ACTIONS(6401), - [anon_sym_BSLASHAvolcite] = ACTIONS(6401), - [anon_sym_BSLASHnotecite] = ACTIONS(6401), - [anon_sym_BSLASHNotecite] = ACTIONS(6401), - [anon_sym_BSLASHpnotecite] = ACTIONS(6401), - [anon_sym_BSLASHPnotecite] = ACTIONS(6401), - [anon_sym_BSLASHfnotecite] = ACTIONS(6401), - [anon_sym_BSLASHlabel] = ACTIONS(6401), - [anon_sym_BSLASHref] = ACTIONS(6401), - [anon_sym_BSLASHeqref] = ACTIONS(6401), - [anon_sym_BSLASHvref] = ACTIONS(6401), - [anon_sym_BSLASHVref] = ACTIONS(6401), - [anon_sym_BSLASHautoref] = ACTIONS(6401), - [anon_sym_BSLASHpageref] = ACTIONS(6401), - [anon_sym_BSLASHcref] = ACTIONS(6401), - [anon_sym_BSLASHCref] = ACTIONS(6401), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnameCref] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHlabelcref] = ACTIONS(6401), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCrefrange] = ACTIONS(6401), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnewlabel] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6401), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6401), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6403), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHdef] = ACTIONS(6401), - [anon_sym_BSLASHlet] = ACTIONS(6401), - [anon_sym_BSLASHleft] = ACTIONS(6401), - [anon_sym_BSLASHbig] = ACTIONS(6401), - [anon_sym_BSLASHBig] = ACTIONS(6401), - [anon_sym_BSLASHbigg] = ACTIONS(6401), - [anon_sym_BSLASHBigg] = ACTIONS(6401), - [anon_sym_BSLASHbigl] = ACTIONS(6401), - [anon_sym_BSLASHBigl] = ACTIONS(6401), - [anon_sym_BSLASHbiggl] = ACTIONS(6401), - [anon_sym_BSLASHBiggl] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6401), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6401), - [anon_sym_BSLASHgls] = ACTIONS(6401), - [anon_sym_BSLASHGls] = ACTIONS(6401), - [anon_sym_BSLASHGLS] = ACTIONS(6401), - [anon_sym_BSLASHglspl] = ACTIONS(6401), - [anon_sym_BSLASHGlspl] = ACTIONS(6401), - [anon_sym_BSLASHGLSpl] = ACTIONS(6401), - [anon_sym_BSLASHglsdisp] = ACTIONS(6401), - [anon_sym_BSLASHglslink] = ACTIONS(6401), - [anon_sym_BSLASHglstext] = ACTIONS(6401), - [anon_sym_BSLASHGlstext] = ACTIONS(6401), - [anon_sym_BSLASHGLStext] = ACTIONS(6401), - [anon_sym_BSLASHglsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6401), - [anon_sym_BSLASHglsplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSplural] = ACTIONS(6401), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHglsname] = ACTIONS(6401), - [anon_sym_BSLASHGlsname] = ACTIONS(6401), - [anon_sym_BSLASHGLSname] = ACTIONS(6401), - [anon_sym_BSLASHglssymbol] = ACTIONS(6401), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6401), - [anon_sym_BSLASHglsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6401), - [anon_sym_BSLASHglsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6401), - [anon_sym_BSLASHglsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6401), - [anon_sym_BSLASHglsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6401), - [anon_sym_BSLASHglsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6401), - [anon_sym_BSLASHnewacronym] = ACTIONS(6401), - [anon_sym_BSLASHacrshort] = ACTIONS(6401), - [anon_sym_BSLASHAcrshort] = ACTIONS(6401), - [anon_sym_BSLASHACRshort] = ACTIONS(6401), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6401), - [anon_sym_BSLASHacrlong] = ACTIONS(6401), - [anon_sym_BSLASHAcrlong] = ACTIONS(6401), - [anon_sym_BSLASHACRlong] = ACTIONS(6401), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6401), - [anon_sym_BSLASHacrfull] = ACTIONS(6401), - [anon_sym_BSLASHAcrfull] = ACTIONS(6401), - [anon_sym_BSLASHACRfull] = ACTIONS(6401), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6401), - [anon_sym_BSLASHacs] = ACTIONS(6401), - [anon_sym_BSLASHAcs] = ACTIONS(6401), - [anon_sym_BSLASHacsp] = ACTIONS(6401), - [anon_sym_BSLASHAcsp] = ACTIONS(6401), - [anon_sym_BSLASHacl] = ACTIONS(6401), - [anon_sym_BSLASHAcl] = ACTIONS(6401), - [anon_sym_BSLASHaclp] = ACTIONS(6401), - [anon_sym_BSLASHAclp] = ACTIONS(6401), - [anon_sym_BSLASHacf] = ACTIONS(6401), - [anon_sym_BSLASHAcf] = ACTIONS(6401), - [anon_sym_BSLASHacfp] = ACTIONS(6401), - [anon_sym_BSLASHAcfp] = ACTIONS(6401), - [anon_sym_BSLASHac] = ACTIONS(6401), - [anon_sym_BSLASHAc] = ACTIONS(6401), - [anon_sym_BSLASHacp] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6401), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6401), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6401), - [anon_sym_BSLASHcolor] = ACTIONS(6401), - [anon_sym_BSLASHcolorbox] = ACTIONS(6401), - [anon_sym_BSLASHtextcolor] = ACTIONS(6401), - [anon_sym_BSLASHpagecolor] = ACTIONS(6401), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6401), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6401), - [anon_sym_BSLASHtext] = ACTIONS(6401), - [anon_sym_BSLASHintertext] = ACTIONS(6401), - [anon_sym_shortintertext] = ACTIONS(6401), - }, - [1553] = { - [sym_command_name] = ACTIONS(6405), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6405), - [anon_sym_LBRACK] = ACTIONS(6407), - [anon_sym_RBRACK] = ACTIONS(6407), - [anon_sym_COMMA] = ACTIONS(6407), - [anon_sym_EQ] = ACTIONS(6407), - [anon_sym_LPAREN] = ACTIONS(6407), - [anon_sym_RPAREN] = ACTIONS(6407), - [anon_sym_LBRACE] = ACTIONS(6407), - [sym_word] = ACTIONS(6405), - [sym_placeholder] = ACTIONS(6407), - [anon_sym_PLUS] = ACTIONS(6407), - [anon_sym_DASH] = ACTIONS(6407), - [anon_sym_STAR] = ACTIONS(6407), - [anon_sym_SLASH] = ACTIONS(6407), - [anon_sym_LT] = ACTIONS(6405), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(6405), - [anon_sym_PIPE] = ACTIONS(6405), - [anon_sym_COLON] = ACTIONS(6405), - [anon_sym_SQUOTE] = ACTIONS(6405), - [anon_sym__] = ACTIONS(6407), - [anon_sym_CARET] = ACTIONS(6407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6407), - [anon_sym_DOLLAR] = ACTIONS(6405), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6407), - [anon_sym_BSLASHbegin] = ACTIONS(6405), - [anon_sym_BSLASHend] = ACTIONS(6405), - [anon_sym_BSLASHtitle] = ACTIONS(6405), - [anon_sym_BSLASHauthor] = ACTIONS(6405), - [anon_sym_BSLASHusepackage] = ACTIONS(6405), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6405), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6405), - [anon_sym_BSLASHinclude] = ACTIONS(6405), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6405), - [anon_sym_BSLASHinput] = ACTIONS(6405), - [anon_sym_BSLASHsubfile] = ACTIONS(6405), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6405), - [anon_sym_BSLASHbibliography] = ACTIONS(6405), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6405), - [anon_sym_BSLASHincludesvg] = ACTIONS(6405), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6405), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6405), - [anon_sym_BSLASHimport] = ACTIONS(6405), - [anon_sym_BSLASHsubimport] = ACTIONS(6405), - [anon_sym_BSLASHinputfrom] = ACTIONS(6405), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6405), - [anon_sym_BSLASHincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHcaption] = ACTIONS(6405), - [anon_sym_BSLASHcite] = ACTIONS(6405), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCite] = ACTIONS(6405), - [anon_sym_BSLASHnocite] = ACTIONS(6405), - [anon_sym_BSLASHcitet] = ACTIONS(6405), - [anon_sym_BSLASHcitep] = ACTIONS(6405), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteauthor] = ACTIONS(6405), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6405), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitetitle] = ACTIONS(6405), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteyear] = ACTIONS(6405), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitedate] = ACTIONS(6405), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteurl] = ACTIONS(6405), - [anon_sym_BSLASHfullcite] = ACTIONS(6405), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6405), - [anon_sym_BSLASHcitealt] = ACTIONS(6405), - [anon_sym_BSLASHcitealp] = ACTIONS(6405), - [anon_sym_BSLASHcitetext] = ACTIONS(6405), - [anon_sym_BSLASHparencite] = ACTIONS(6405), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHParencite] = ACTIONS(6405), - [anon_sym_BSLASHfootcite] = ACTIONS(6405), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6405), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6405), - [anon_sym_BSLASHtextcite] = ACTIONS(6405), - [anon_sym_BSLASHTextcite] = ACTIONS(6405), - [anon_sym_BSLASHsmartcite] = ACTIONS(6405), - [anon_sym_BSLASHSmartcite] = ACTIONS(6405), - [anon_sym_BSLASHsupercite] = ACTIONS(6405), - [anon_sym_BSLASHautocite] = ACTIONS(6405), - [anon_sym_BSLASHAutocite] = ACTIONS(6405), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHvolcite] = ACTIONS(6405), - [anon_sym_BSLASHVolcite] = ACTIONS(6405), - [anon_sym_BSLASHpvolcite] = ACTIONS(6405), - [anon_sym_BSLASHPvolcite] = ACTIONS(6405), - [anon_sym_BSLASHfvolcite] = ACTIONS(6405), - [anon_sym_BSLASHftvolcite] = ACTIONS(6405), - [anon_sym_BSLASHsvolcite] = ACTIONS(6405), - [anon_sym_BSLASHSvolcite] = ACTIONS(6405), - [anon_sym_BSLASHtvolcite] = ACTIONS(6405), - [anon_sym_BSLASHTvolcite] = ACTIONS(6405), - [anon_sym_BSLASHavolcite] = ACTIONS(6405), - [anon_sym_BSLASHAvolcite] = ACTIONS(6405), - [anon_sym_BSLASHnotecite] = ACTIONS(6405), - [anon_sym_BSLASHNotecite] = ACTIONS(6405), - [anon_sym_BSLASHpnotecite] = ACTIONS(6405), - [anon_sym_BSLASHPnotecite] = ACTIONS(6405), - [anon_sym_BSLASHfnotecite] = ACTIONS(6405), - [anon_sym_BSLASHlabel] = ACTIONS(6405), - [anon_sym_BSLASHref] = ACTIONS(6405), - [anon_sym_BSLASHeqref] = ACTIONS(6405), - [anon_sym_BSLASHvref] = ACTIONS(6405), - [anon_sym_BSLASHVref] = ACTIONS(6405), - [anon_sym_BSLASHautoref] = ACTIONS(6405), - [anon_sym_BSLASHpageref] = ACTIONS(6405), - [anon_sym_BSLASHcref] = ACTIONS(6405), - [anon_sym_BSLASHCref] = ACTIONS(6405), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnameCref] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHlabelcref] = ACTIONS(6405), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCrefrange] = ACTIONS(6405), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnewlabel] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6405), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6405), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6407), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHdef] = ACTIONS(6405), - [anon_sym_BSLASHlet] = ACTIONS(6405), - [anon_sym_BSLASHleft] = ACTIONS(6405), - [anon_sym_BSLASHbig] = ACTIONS(6405), - [anon_sym_BSLASHBig] = ACTIONS(6405), - [anon_sym_BSLASHbigg] = ACTIONS(6405), - [anon_sym_BSLASHBigg] = ACTIONS(6405), - [anon_sym_BSLASHbigl] = ACTIONS(6405), - [anon_sym_BSLASHBigl] = ACTIONS(6405), - [anon_sym_BSLASHbiggl] = ACTIONS(6405), - [anon_sym_BSLASHBiggl] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6405), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6405), - [anon_sym_BSLASHgls] = ACTIONS(6405), - [anon_sym_BSLASHGls] = ACTIONS(6405), - [anon_sym_BSLASHGLS] = ACTIONS(6405), - [anon_sym_BSLASHglspl] = ACTIONS(6405), - [anon_sym_BSLASHGlspl] = ACTIONS(6405), - [anon_sym_BSLASHGLSpl] = ACTIONS(6405), - [anon_sym_BSLASHglsdisp] = ACTIONS(6405), - [anon_sym_BSLASHglslink] = ACTIONS(6405), - [anon_sym_BSLASHglstext] = ACTIONS(6405), - [anon_sym_BSLASHGlstext] = ACTIONS(6405), - [anon_sym_BSLASHGLStext] = ACTIONS(6405), - [anon_sym_BSLASHglsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6405), - [anon_sym_BSLASHglsplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSplural] = ACTIONS(6405), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHglsname] = ACTIONS(6405), - [anon_sym_BSLASHGlsname] = ACTIONS(6405), - [anon_sym_BSLASHGLSname] = ACTIONS(6405), - [anon_sym_BSLASHglssymbol] = ACTIONS(6405), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6405), - [anon_sym_BSLASHglsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6405), - [anon_sym_BSLASHglsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6405), - [anon_sym_BSLASHglsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6405), - [anon_sym_BSLASHglsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6405), - [anon_sym_BSLASHglsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6405), - [anon_sym_BSLASHnewacronym] = ACTIONS(6405), - [anon_sym_BSLASHacrshort] = ACTIONS(6405), - [anon_sym_BSLASHAcrshort] = ACTIONS(6405), - [anon_sym_BSLASHACRshort] = ACTIONS(6405), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6405), - [anon_sym_BSLASHacrlong] = ACTIONS(6405), - [anon_sym_BSLASHAcrlong] = ACTIONS(6405), - [anon_sym_BSLASHACRlong] = ACTIONS(6405), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6405), - [anon_sym_BSLASHacrfull] = ACTIONS(6405), - [anon_sym_BSLASHAcrfull] = ACTIONS(6405), - [anon_sym_BSLASHACRfull] = ACTIONS(6405), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6405), - [anon_sym_BSLASHacs] = ACTIONS(6405), - [anon_sym_BSLASHAcs] = ACTIONS(6405), - [anon_sym_BSLASHacsp] = ACTIONS(6405), - [anon_sym_BSLASHAcsp] = ACTIONS(6405), - [anon_sym_BSLASHacl] = ACTIONS(6405), - [anon_sym_BSLASHAcl] = ACTIONS(6405), - [anon_sym_BSLASHaclp] = ACTIONS(6405), - [anon_sym_BSLASHAclp] = ACTIONS(6405), - [anon_sym_BSLASHacf] = ACTIONS(6405), - [anon_sym_BSLASHAcf] = ACTIONS(6405), - [anon_sym_BSLASHacfp] = ACTIONS(6405), - [anon_sym_BSLASHAcfp] = ACTIONS(6405), - [anon_sym_BSLASHac] = ACTIONS(6405), - [anon_sym_BSLASHAc] = ACTIONS(6405), - [anon_sym_BSLASHacp] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6405), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6405), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6405), - [anon_sym_BSLASHcolor] = ACTIONS(6405), - [anon_sym_BSLASHcolorbox] = ACTIONS(6405), - [anon_sym_BSLASHtextcolor] = ACTIONS(6405), - [anon_sym_BSLASHpagecolor] = ACTIONS(6405), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6405), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6405), - [anon_sym_BSLASHtext] = ACTIONS(6405), - [anon_sym_BSLASHintertext] = ACTIONS(6405), - [anon_sym_shortintertext] = ACTIONS(6405), - }, - [1554] = { - [sym_command_name] = ACTIONS(6409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6409), - [anon_sym_LBRACK] = ACTIONS(6411), - [anon_sym_RBRACK] = ACTIONS(6411), - [anon_sym_COMMA] = ACTIONS(6411), - [anon_sym_EQ] = ACTIONS(6411), - [anon_sym_LPAREN] = ACTIONS(6411), - [anon_sym_RPAREN] = ACTIONS(6411), - [anon_sym_LBRACE] = ACTIONS(6411), - [sym_word] = ACTIONS(6409), - [sym_placeholder] = ACTIONS(6411), - [anon_sym_PLUS] = ACTIONS(6411), - [anon_sym_DASH] = ACTIONS(6411), - [anon_sym_STAR] = ACTIONS(6411), - [anon_sym_SLASH] = ACTIONS(6411), - [anon_sym_LT] = ACTIONS(6409), - [anon_sym_GT] = ACTIONS(6409), - [anon_sym_BANG] = ACTIONS(6409), - [anon_sym_PIPE] = ACTIONS(6409), - [anon_sym_COLON] = ACTIONS(6409), - [anon_sym_SQUOTE] = ACTIONS(6409), - [anon_sym__] = ACTIONS(6411), - [anon_sym_CARET] = ACTIONS(6411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6411), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6411), - [anon_sym_DOLLAR] = ACTIONS(6409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6411), - [anon_sym_BSLASHbegin] = ACTIONS(6409), - [anon_sym_BSLASHend] = ACTIONS(6409), - [anon_sym_BSLASHtitle] = ACTIONS(6409), - [anon_sym_BSLASHauthor] = ACTIONS(6409), - [anon_sym_BSLASHusepackage] = ACTIONS(6409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6409), - [anon_sym_BSLASHinclude] = ACTIONS(6409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6409), - [anon_sym_BSLASHinput] = ACTIONS(6409), - [anon_sym_BSLASHsubfile] = ACTIONS(6409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6409), - [anon_sym_BSLASHbibliography] = ACTIONS(6409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6409), - [anon_sym_BSLASHincludesvg] = ACTIONS(6409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6409), - [anon_sym_BSLASHimport] = ACTIONS(6409), - [anon_sym_BSLASHsubimport] = ACTIONS(6409), - [anon_sym_BSLASHinputfrom] = ACTIONS(6409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6409), - [anon_sym_BSLASHincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHcaption] = ACTIONS(6409), - [anon_sym_BSLASHcite] = ACTIONS(6409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCite] = ACTIONS(6409), - [anon_sym_BSLASHnocite] = ACTIONS(6409), - [anon_sym_BSLASHcitet] = ACTIONS(6409), - [anon_sym_BSLASHcitep] = ACTIONS(6409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteauthor] = ACTIONS(6409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitetitle] = ACTIONS(6409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteyear] = ACTIONS(6409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitedate] = ACTIONS(6409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteurl] = ACTIONS(6409), - [anon_sym_BSLASHfullcite] = ACTIONS(6409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6409), - [anon_sym_BSLASHcitealt] = ACTIONS(6409), - [anon_sym_BSLASHcitealp] = ACTIONS(6409), - [anon_sym_BSLASHcitetext] = ACTIONS(6409), - [anon_sym_BSLASHparencite] = ACTIONS(6409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHParencite] = ACTIONS(6409), - [anon_sym_BSLASHfootcite] = ACTIONS(6409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6409), - [anon_sym_BSLASHtextcite] = ACTIONS(6409), - [anon_sym_BSLASHTextcite] = ACTIONS(6409), - [anon_sym_BSLASHsmartcite] = ACTIONS(6409), - [anon_sym_BSLASHSmartcite] = ACTIONS(6409), - [anon_sym_BSLASHsupercite] = ACTIONS(6409), - [anon_sym_BSLASHautocite] = ACTIONS(6409), - [anon_sym_BSLASHAutocite] = ACTIONS(6409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHvolcite] = ACTIONS(6409), - [anon_sym_BSLASHVolcite] = ACTIONS(6409), - [anon_sym_BSLASHpvolcite] = ACTIONS(6409), - [anon_sym_BSLASHPvolcite] = ACTIONS(6409), - [anon_sym_BSLASHfvolcite] = ACTIONS(6409), - [anon_sym_BSLASHftvolcite] = ACTIONS(6409), - [anon_sym_BSLASHsvolcite] = ACTIONS(6409), - [anon_sym_BSLASHSvolcite] = ACTIONS(6409), - [anon_sym_BSLASHtvolcite] = ACTIONS(6409), - [anon_sym_BSLASHTvolcite] = ACTIONS(6409), - [anon_sym_BSLASHavolcite] = ACTIONS(6409), - [anon_sym_BSLASHAvolcite] = ACTIONS(6409), - [anon_sym_BSLASHnotecite] = ACTIONS(6409), - [anon_sym_BSLASHNotecite] = ACTIONS(6409), - [anon_sym_BSLASHpnotecite] = ACTIONS(6409), - [anon_sym_BSLASHPnotecite] = ACTIONS(6409), - [anon_sym_BSLASHfnotecite] = ACTIONS(6409), - [anon_sym_BSLASHlabel] = ACTIONS(6409), - [anon_sym_BSLASHref] = ACTIONS(6409), - [anon_sym_BSLASHeqref] = ACTIONS(6409), - [anon_sym_BSLASHvref] = ACTIONS(6409), - [anon_sym_BSLASHVref] = ACTIONS(6409), - [anon_sym_BSLASHautoref] = ACTIONS(6409), - [anon_sym_BSLASHpageref] = ACTIONS(6409), - [anon_sym_BSLASHcref] = ACTIONS(6409), - [anon_sym_BSLASHCref] = ACTIONS(6409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnameCref] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHlabelcref] = ACTIONS(6409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCrefrange] = ACTIONS(6409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnewlabel] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6411), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHdef] = ACTIONS(6409), - [anon_sym_BSLASHlet] = ACTIONS(6409), - [anon_sym_BSLASHleft] = ACTIONS(6409), - [anon_sym_BSLASHbig] = ACTIONS(6409), - [anon_sym_BSLASHBig] = ACTIONS(6409), - [anon_sym_BSLASHbigg] = ACTIONS(6409), - [anon_sym_BSLASHBigg] = ACTIONS(6409), - [anon_sym_BSLASHbigl] = ACTIONS(6409), - [anon_sym_BSLASHBigl] = ACTIONS(6409), - [anon_sym_BSLASHbiggl] = ACTIONS(6409), - [anon_sym_BSLASHBiggl] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6409), - [anon_sym_BSLASHgls] = ACTIONS(6409), - [anon_sym_BSLASHGls] = ACTIONS(6409), - [anon_sym_BSLASHGLS] = ACTIONS(6409), - [anon_sym_BSLASHglspl] = ACTIONS(6409), - [anon_sym_BSLASHGlspl] = ACTIONS(6409), - [anon_sym_BSLASHGLSpl] = ACTIONS(6409), - [anon_sym_BSLASHglsdisp] = ACTIONS(6409), - [anon_sym_BSLASHglslink] = ACTIONS(6409), - [anon_sym_BSLASHglstext] = ACTIONS(6409), - [anon_sym_BSLASHGlstext] = ACTIONS(6409), - [anon_sym_BSLASHGLStext] = ACTIONS(6409), - [anon_sym_BSLASHglsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6409), - [anon_sym_BSLASHglsplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSplural] = ACTIONS(6409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHglsname] = ACTIONS(6409), - [anon_sym_BSLASHGlsname] = ACTIONS(6409), - [anon_sym_BSLASHGLSname] = ACTIONS(6409), - [anon_sym_BSLASHglssymbol] = ACTIONS(6409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6409), - [anon_sym_BSLASHglsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6409), - [anon_sym_BSLASHglsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6409), - [anon_sym_BSLASHglsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6409), - [anon_sym_BSLASHglsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6409), - [anon_sym_BSLASHglsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6409), - [anon_sym_BSLASHnewacronym] = ACTIONS(6409), - [anon_sym_BSLASHacrshort] = ACTIONS(6409), - [anon_sym_BSLASHAcrshort] = ACTIONS(6409), - [anon_sym_BSLASHACRshort] = ACTIONS(6409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6409), - [anon_sym_BSLASHacrlong] = ACTIONS(6409), - [anon_sym_BSLASHAcrlong] = ACTIONS(6409), - [anon_sym_BSLASHACRlong] = ACTIONS(6409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6409), - [anon_sym_BSLASHacrfull] = ACTIONS(6409), - [anon_sym_BSLASHAcrfull] = ACTIONS(6409), - [anon_sym_BSLASHACRfull] = ACTIONS(6409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6409), - [anon_sym_BSLASHacs] = ACTIONS(6409), - [anon_sym_BSLASHAcs] = ACTIONS(6409), - [anon_sym_BSLASHacsp] = ACTIONS(6409), - [anon_sym_BSLASHAcsp] = ACTIONS(6409), - [anon_sym_BSLASHacl] = ACTIONS(6409), - [anon_sym_BSLASHAcl] = ACTIONS(6409), - [anon_sym_BSLASHaclp] = ACTIONS(6409), - [anon_sym_BSLASHAclp] = ACTIONS(6409), - [anon_sym_BSLASHacf] = ACTIONS(6409), - [anon_sym_BSLASHAcf] = ACTIONS(6409), - [anon_sym_BSLASHacfp] = ACTIONS(6409), - [anon_sym_BSLASHAcfp] = ACTIONS(6409), - [anon_sym_BSLASHac] = ACTIONS(6409), - [anon_sym_BSLASHAc] = ACTIONS(6409), - [anon_sym_BSLASHacp] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6409), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6409), - [anon_sym_BSLASHcolor] = ACTIONS(6409), - [anon_sym_BSLASHcolorbox] = ACTIONS(6409), - [anon_sym_BSLASHtextcolor] = ACTIONS(6409), - [anon_sym_BSLASHpagecolor] = ACTIONS(6409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6409), - [anon_sym_BSLASHtext] = ACTIONS(6409), - [anon_sym_BSLASHintertext] = ACTIONS(6409), - [anon_sym_shortintertext] = ACTIONS(6409), - }, - [1555] = { - [sym_command_name] = ACTIONS(6413), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6413), - [anon_sym_LBRACK] = ACTIONS(6415), - [anon_sym_RBRACK] = ACTIONS(6415), - [anon_sym_COMMA] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(6415), - [anon_sym_LPAREN] = ACTIONS(6415), - [anon_sym_RPAREN] = ACTIONS(6415), - [anon_sym_LBRACE] = ACTIONS(6415), - [sym_word] = ACTIONS(6413), - [sym_placeholder] = ACTIONS(6415), - [anon_sym_PLUS] = ACTIONS(6415), - [anon_sym_DASH] = ACTIONS(6415), - [anon_sym_STAR] = ACTIONS(6415), - [anon_sym_SLASH] = ACTIONS(6415), - [anon_sym_LT] = ACTIONS(6413), - [anon_sym_GT] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(6413), - [anon_sym_PIPE] = ACTIONS(6413), - [anon_sym_COLON] = ACTIONS(6413), - [anon_sym_SQUOTE] = ACTIONS(6413), - [anon_sym__] = ACTIONS(6415), - [anon_sym_CARET] = ACTIONS(6415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6415), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6415), - [anon_sym_DOLLAR] = ACTIONS(6413), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6415), - [anon_sym_BSLASHbegin] = ACTIONS(6413), - [anon_sym_BSLASHend] = ACTIONS(6413), - [anon_sym_BSLASHtitle] = ACTIONS(6413), - [anon_sym_BSLASHauthor] = ACTIONS(6413), - [anon_sym_BSLASHusepackage] = ACTIONS(6413), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6413), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6413), - [anon_sym_BSLASHinclude] = ACTIONS(6413), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6413), - [anon_sym_BSLASHinput] = ACTIONS(6413), - [anon_sym_BSLASHsubfile] = ACTIONS(6413), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6413), - [anon_sym_BSLASHbibliography] = ACTIONS(6413), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6413), - [anon_sym_BSLASHincludesvg] = ACTIONS(6413), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6413), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6413), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6413), - [anon_sym_BSLASHimport] = ACTIONS(6413), - [anon_sym_BSLASHsubimport] = ACTIONS(6413), - [anon_sym_BSLASHinputfrom] = ACTIONS(6413), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6413), - [anon_sym_BSLASHincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHcaption] = ACTIONS(6413), - [anon_sym_BSLASHcite] = ACTIONS(6413), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCite] = ACTIONS(6413), - [anon_sym_BSLASHnocite] = ACTIONS(6413), - [anon_sym_BSLASHcitet] = ACTIONS(6413), - [anon_sym_BSLASHcitep] = ACTIONS(6413), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteauthor] = ACTIONS(6413), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6413), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitetitle] = ACTIONS(6413), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteyear] = ACTIONS(6413), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitedate] = ACTIONS(6413), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteurl] = ACTIONS(6413), - [anon_sym_BSLASHfullcite] = ACTIONS(6413), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6413), - [anon_sym_BSLASHcitealt] = ACTIONS(6413), - [anon_sym_BSLASHcitealp] = ACTIONS(6413), - [anon_sym_BSLASHcitetext] = ACTIONS(6413), - [anon_sym_BSLASHparencite] = ACTIONS(6413), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHParencite] = ACTIONS(6413), - [anon_sym_BSLASHfootcite] = ACTIONS(6413), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6413), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6413), - [anon_sym_BSLASHtextcite] = ACTIONS(6413), - [anon_sym_BSLASHTextcite] = ACTIONS(6413), - [anon_sym_BSLASHsmartcite] = ACTIONS(6413), - [anon_sym_BSLASHSmartcite] = ACTIONS(6413), - [anon_sym_BSLASHsupercite] = ACTIONS(6413), - [anon_sym_BSLASHautocite] = ACTIONS(6413), - [anon_sym_BSLASHAutocite] = ACTIONS(6413), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHvolcite] = ACTIONS(6413), - [anon_sym_BSLASHVolcite] = ACTIONS(6413), - [anon_sym_BSLASHpvolcite] = ACTIONS(6413), - [anon_sym_BSLASHPvolcite] = ACTIONS(6413), - [anon_sym_BSLASHfvolcite] = ACTIONS(6413), - [anon_sym_BSLASHftvolcite] = ACTIONS(6413), - [anon_sym_BSLASHsvolcite] = ACTIONS(6413), - [anon_sym_BSLASHSvolcite] = ACTIONS(6413), - [anon_sym_BSLASHtvolcite] = ACTIONS(6413), - [anon_sym_BSLASHTvolcite] = ACTIONS(6413), - [anon_sym_BSLASHavolcite] = ACTIONS(6413), - [anon_sym_BSLASHAvolcite] = ACTIONS(6413), - [anon_sym_BSLASHnotecite] = ACTIONS(6413), - [anon_sym_BSLASHNotecite] = ACTIONS(6413), - [anon_sym_BSLASHpnotecite] = ACTIONS(6413), - [anon_sym_BSLASHPnotecite] = ACTIONS(6413), - [anon_sym_BSLASHfnotecite] = ACTIONS(6413), - [anon_sym_BSLASHlabel] = ACTIONS(6413), - [anon_sym_BSLASHref] = ACTIONS(6413), - [anon_sym_BSLASHeqref] = ACTIONS(6413), - [anon_sym_BSLASHvref] = ACTIONS(6413), - [anon_sym_BSLASHVref] = ACTIONS(6413), - [anon_sym_BSLASHautoref] = ACTIONS(6413), - [anon_sym_BSLASHpageref] = ACTIONS(6413), - [anon_sym_BSLASHcref] = ACTIONS(6413), - [anon_sym_BSLASHCref] = ACTIONS(6413), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnameCref] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHlabelcref] = ACTIONS(6413), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCrefrange] = ACTIONS(6413), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnewlabel] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6413), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6413), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6415), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHdef] = ACTIONS(6413), - [anon_sym_BSLASHlet] = ACTIONS(6413), - [anon_sym_BSLASHleft] = ACTIONS(6413), - [anon_sym_BSLASHbig] = ACTIONS(6413), - [anon_sym_BSLASHBig] = ACTIONS(6413), - [anon_sym_BSLASHbigg] = ACTIONS(6413), - [anon_sym_BSLASHBigg] = ACTIONS(6413), - [anon_sym_BSLASHbigl] = ACTIONS(6413), - [anon_sym_BSLASHBigl] = ACTIONS(6413), - [anon_sym_BSLASHbiggl] = ACTIONS(6413), - [anon_sym_BSLASHBiggl] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6413), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6413), - [anon_sym_BSLASHgls] = ACTIONS(6413), - [anon_sym_BSLASHGls] = ACTIONS(6413), - [anon_sym_BSLASHGLS] = ACTIONS(6413), - [anon_sym_BSLASHglspl] = ACTIONS(6413), - [anon_sym_BSLASHGlspl] = ACTIONS(6413), - [anon_sym_BSLASHGLSpl] = ACTIONS(6413), - [anon_sym_BSLASHglsdisp] = ACTIONS(6413), - [anon_sym_BSLASHglslink] = ACTIONS(6413), - [anon_sym_BSLASHglstext] = ACTIONS(6413), - [anon_sym_BSLASHGlstext] = ACTIONS(6413), - [anon_sym_BSLASHGLStext] = ACTIONS(6413), - [anon_sym_BSLASHglsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6413), - [anon_sym_BSLASHglsplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSplural] = ACTIONS(6413), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHglsname] = ACTIONS(6413), - [anon_sym_BSLASHGlsname] = ACTIONS(6413), - [anon_sym_BSLASHGLSname] = ACTIONS(6413), - [anon_sym_BSLASHglssymbol] = ACTIONS(6413), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6413), - [anon_sym_BSLASHglsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6413), - [anon_sym_BSLASHglsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6413), - [anon_sym_BSLASHglsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6413), - [anon_sym_BSLASHglsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6413), - [anon_sym_BSLASHglsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6413), - [anon_sym_BSLASHnewacronym] = ACTIONS(6413), - [anon_sym_BSLASHacrshort] = ACTIONS(6413), - [anon_sym_BSLASHAcrshort] = ACTIONS(6413), - [anon_sym_BSLASHACRshort] = ACTIONS(6413), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6413), - [anon_sym_BSLASHacrlong] = ACTIONS(6413), - [anon_sym_BSLASHAcrlong] = ACTIONS(6413), - [anon_sym_BSLASHACRlong] = ACTIONS(6413), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6413), - [anon_sym_BSLASHacrfull] = ACTIONS(6413), - [anon_sym_BSLASHAcrfull] = ACTIONS(6413), - [anon_sym_BSLASHACRfull] = ACTIONS(6413), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6413), - [anon_sym_BSLASHacs] = ACTIONS(6413), - [anon_sym_BSLASHAcs] = ACTIONS(6413), - [anon_sym_BSLASHacsp] = ACTIONS(6413), - [anon_sym_BSLASHAcsp] = ACTIONS(6413), - [anon_sym_BSLASHacl] = ACTIONS(6413), - [anon_sym_BSLASHAcl] = ACTIONS(6413), - [anon_sym_BSLASHaclp] = ACTIONS(6413), - [anon_sym_BSLASHAclp] = ACTIONS(6413), - [anon_sym_BSLASHacf] = ACTIONS(6413), - [anon_sym_BSLASHAcf] = ACTIONS(6413), - [anon_sym_BSLASHacfp] = ACTIONS(6413), - [anon_sym_BSLASHAcfp] = ACTIONS(6413), - [anon_sym_BSLASHac] = ACTIONS(6413), - [anon_sym_BSLASHAc] = ACTIONS(6413), - [anon_sym_BSLASHacp] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6413), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6413), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6413), - [anon_sym_BSLASHcolor] = ACTIONS(6413), - [anon_sym_BSLASHcolorbox] = ACTIONS(6413), - [anon_sym_BSLASHtextcolor] = ACTIONS(6413), - [anon_sym_BSLASHpagecolor] = ACTIONS(6413), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6413), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6413), - [anon_sym_BSLASHtext] = ACTIONS(6413), - [anon_sym_BSLASHintertext] = ACTIONS(6413), - [anon_sym_shortintertext] = ACTIONS(6413), - }, - [1556] = { - [sym_command_name] = ACTIONS(6193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6193), - [anon_sym_LBRACK] = ACTIONS(6195), - [anon_sym_RBRACK] = ACTIONS(6195), - [anon_sym_COMMA] = ACTIONS(6195), - [anon_sym_EQ] = ACTIONS(6195), - [anon_sym_LPAREN] = ACTIONS(6195), - [anon_sym_RPAREN] = ACTIONS(6195), - [anon_sym_LBRACE] = ACTIONS(6195), - [sym_word] = ACTIONS(6193), - [sym_placeholder] = ACTIONS(6195), - [anon_sym_PLUS] = ACTIONS(6195), - [anon_sym_DASH] = ACTIONS(6195), - [anon_sym_STAR] = ACTIONS(6195), - [anon_sym_SLASH] = ACTIONS(6195), - [anon_sym_LT] = ACTIONS(6193), - [anon_sym_GT] = ACTIONS(6193), - [anon_sym_BANG] = ACTIONS(6193), - [anon_sym_PIPE] = ACTIONS(6193), - [anon_sym_COLON] = ACTIONS(6193), - [anon_sym_SQUOTE] = ACTIONS(6193), - [anon_sym__] = ACTIONS(6195), - [anon_sym_CARET] = ACTIONS(6195), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), - [anon_sym_DOLLAR] = ACTIONS(6193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), - [anon_sym_BSLASHbegin] = ACTIONS(6193), - [anon_sym_BSLASHend] = ACTIONS(6193), - [anon_sym_BSLASHtitle] = ACTIONS(6193), - [anon_sym_BSLASHauthor] = ACTIONS(6193), - [anon_sym_BSLASHusepackage] = ACTIONS(6193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), - [anon_sym_BSLASHinclude] = ACTIONS(6193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), - [anon_sym_BSLASHinput] = ACTIONS(6193), - [anon_sym_BSLASHsubfile] = ACTIONS(6193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), - [anon_sym_BSLASHbibliography] = ACTIONS(6193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), - [anon_sym_BSLASHincludesvg] = ACTIONS(6193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), - [anon_sym_BSLASHimport] = ACTIONS(6193), - [anon_sym_BSLASHsubimport] = ACTIONS(6193), - [anon_sym_BSLASHinputfrom] = ACTIONS(6193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), - [anon_sym_BSLASHincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHcaption] = ACTIONS(6193), - [anon_sym_BSLASHcite] = ACTIONS(6193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCite] = ACTIONS(6193), - [anon_sym_BSLASHnocite] = ACTIONS(6193), - [anon_sym_BSLASHcitet] = ACTIONS(6193), - [anon_sym_BSLASHcitep] = ACTIONS(6193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteauthor] = ACTIONS(6193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitetitle] = ACTIONS(6193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteyear] = ACTIONS(6193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitedate] = ACTIONS(6193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteurl] = ACTIONS(6193), - [anon_sym_BSLASHfullcite] = ACTIONS(6193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), - [anon_sym_BSLASHcitealt] = ACTIONS(6193), - [anon_sym_BSLASHcitealp] = ACTIONS(6193), - [anon_sym_BSLASHcitetext] = ACTIONS(6193), - [anon_sym_BSLASHparencite] = ACTIONS(6193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHParencite] = ACTIONS(6193), - [anon_sym_BSLASHfootcite] = ACTIONS(6193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), - [anon_sym_BSLASHtextcite] = ACTIONS(6193), - [anon_sym_BSLASHTextcite] = ACTIONS(6193), - [anon_sym_BSLASHsmartcite] = ACTIONS(6193), - [anon_sym_BSLASHSmartcite] = ACTIONS(6193), - [anon_sym_BSLASHsupercite] = ACTIONS(6193), - [anon_sym_BSLASHautocite] = ACTIONS(6193), - [anon_sym_BSLASHAutocite] = ACTIONS(6193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHvolcite] = ACTIONS(6193), - [anon_sym_BSLASHVolcite] = ACTIONS(6193), - [anon_sym_BSLASHpvolcite] = ACTIONS(6193), - [anon_sym_BSLASHPvolcite] = ACTIONS(6193), - [anon_sym_BSLASHfvolcite] = ACTIONS(6193), - [anon_sym_BSLASHftvolcite] = ACTIONS(6193), - [anon_sym_BSLASHsvolcite] = ACTIONS(6193), - [anon_sym_BSLASHSvolcite] = ACTIONS(6193), - [anon_sym_BSLASHtvolcite] = ACTIONS(6193), - [anon_sym_BSLASHTvolcite] = ACTIONS(6193), - [anon_sym_BSLASHavolcite] = ACTIONS(6193), - [anon_sym_BSLASHAvolcite] = ACTIONS(6193), - [anon_sym_BSLASHnotecite] = ACTIONS(6193), - [anon_sym_BSLASHNotecite] = ACTIONS(6193), - [anon_sym_BSLASHpnotecite] = ACTIONS(6193), - [anon_sym_BSLASHPnotecite] = ACTIONS(6193), - [anon_sym_BSLASHfnotecite] = ACTIONS(6193), - [anon_sym_BSLASHlabel] = ACTIONS(6193), - [anon_sym_BSLASHref] = ACTIONS(6193), - [anon_sym_BSLASHeqref] = ACTIONS(6193), - [anon_sym_BSLASHvref] = ACTIONS(6193), - [anon_sym_BSLASHVref] = ACTIONS(6193), - [anon_sym_BSLASHautoref] = ACTIONS(6193), - [anon_sym_BSLASHpageref] = ACTIONS(6193), - [anon_sym_BSLASHcref] = ACTIONS(6193), - [anon_sym_BSLASHCref] = ACTIONS(6193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnameCref] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHlabelcref] = ACTIONS(6193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCrefrange] = ACTIONS(6193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnewlabel] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHdef] = ACTIONS(6193), - [anon_sym_BSLASHlet] = ACTIONS(6193), - [anon_sym_BSLASHleft] = ACTIONS(6193), - [anon_sym_BSLASHbig] = ACTIONS(6193), - [anon_sym_BSLASHBig] = ACTIONS(6193), - [anon_sym_BSLASHbigg] = ACTIONS(6193), - [anon_sym_BSLASHBigg] = ACTIONS(6193), - [anon_sym_BSLASHbigl] = ACTIONS(6193), - [anon_sym_BSLASHBigl] = ACTIONS(6193), - [anon_sym_BSLASHbiggl] = ACTIONS(6193), - [anon_sym_BSLASHBiggl] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), - [anon_sym_BSLASHgls] = ACTIONS(6193), - [anon_sym_BSLASHGls] = ACTIONS(6193), - [anon_sym_BSLASHGLS] = ACTIONS(6193), - [anon_sym_BSLASHglspl] = ACTIONS(6193), - [anon_sym_BSLASHGlspl] = ACTIONS(6193), - [anon_sym_BSLASHGLSpl] = ACTIONS(6193), - [anon_sym_BSLASHglsdisp] = ACTIONS(6193), - [anon_sym_BSLASHglslink] = ACTIONS(6193), - [anon_sym_BSLASHglstext] = ACTIONS(6193), - [anon_sym_BSLASHGlstext] = ACTIONS(6193), - [anon_sym_BSLASHGLStext] = ACTIONS(6193), - [anon_sym_BSLASHglsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), - [anon_sym_BSLASHglsplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSplural] = ACTIONS(6193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHglsname] = ACTIONS(6193), - [anon_sym_BSLASHGlsname] = ACTIONS(6193), - [anon_sym_BSLASHGLSname] = ACTIONS(6193), - [anon_sym_BSLASHglssymbol] = ACTIONS(6193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), - [anon_sym_BSLASHglsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), - [anon_sym_BSLASHglsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), - [anon_sym_BSLASHglsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), - [anon_sym_BSLASHglsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), - [anon_sym_BSLASHglsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), - [anon_sym_BSLASHnewacronym] = ACTIONS(6193), - [anon_sym_BSLASHacrshort] = ACTIONS(6193), - [anon_sym_BSLASHAcrshort] = ACTIONS(6193), - [anon_sym_BSLASHACRshort] = ACTIONS(6193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), - [anon_sym_BSLASHacrlong] = ACTIONS(6193), - [anon_sym_BSLASHAcrlong] = ACTIONS(6193), - [anon_sym_BSLASHACRlong] = ACTIONS(6193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), - [anon_sym_BSLASHacrfull] = ACTIONS(6193), - [anon_sym_BSLASHAcrfull] = ACTIONS(6193), - [anon_sym_BSLASHACRfull] = ACTIONS(6193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), - [anon_sym_BSLASHacs] = ACTIONS(6193), - [anon_sym_BSLASHAcs] = ACTIONS(6193), - [anon_sym_BSLASHacsp] = ACTIONS(6193), - [anon_sym_BSLASHAcsp] = ACTIONS(6193), - [anon_sym_BSLASHacl] = ACTIONS(6193), - [anon_sym_BSLASHAcl] = ACTIONS(6193), - [anon_sym_BSLASHaclp] = ACTIONS(6193), - [anon_sym_BSLASHAclp] = ACTIONS(6193), - [anon_sym_BSLASHacf] = ACTIONS(6193), - [anon_sym_BSLASHAcf] = ACTIONS(6193), - [anon_sym_BSLASHacfp] = ACTIONS(6193), - [anon_sym_BSLASHAcfp] = ACTIONS(6193), - [anon_sym_BSLASHac] = ACTIONS(6193), - [anon_sym_BSLASHAc] = ACTIONS(6193), - [anon_sym_BSLASHacp] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), - [anon_sym_BSLASHcolor] = ACTIONS(6193), - [anon_sym_BSLASHcolorbox] = ACTIONS(6193), - [anon_sym_BSLASHtextcolor] = ACTIONS(6193), - [anon_sym_BSLASHpagecolor] = ACTIONS(6193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), - [anon_sym_BSLASHtext] = ACTIONS(6193), - [anon_sym_BSLASHintertext] = ACTIONS(6193), - [anon_sym_shortintertext] = ACTIONS(6193), - }, - [1557] = { - [sym_command_name] = ACTIONS(6197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6197), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_RBRACK] = ACTIONS(6199), - [anon_sym_COMMA] = ACTIONS(6199), - [anon_sym_EQ] = ACTIONS(6199), - [anon_sym_LPAREN] = ACTIONS(6199), - [anon_sym_RPAREN] = ACTIONS(6199), - [anon_sym_LBRACE] = ACTIONS(6199), - [sym_word] = ACTIONS(6197), - [sym_placeholder] = ACTIONS(6199), - [anon_sym_PLUS] = ACTIONS(6199), - [anon_sym_DASH] = ACTIONS(6199), - [anon_sym_STAR] = ACTIONS(6199), - [anon_sym_SLASH] = ACTIONS(6199), - [anon_sym_LT] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6197), - [anon_sym_BANG] = ACTIONS(6197), - [anon_sym_PIPE] = ACTIONS(6197), - [anon_sym_COLON] = ACTIONS(6197), - [anon_sym_SQUOTE] = ACTIONS(6197), - [anon_sym__] = ACTIONS(6199), - [anon_sym_CARET] = ACTIONS(6199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), - [anon_sym_DOLLAR] = ACTIONS(6197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), - [anon_sym_BSLASHbegin] = ACTIONS(6197), - [anon_sym_BSLASHend] = ACTIONS(6197), - [anon_sym_BSLASHtitle] = ACTIONS(6197), - [anon_sym_BSLASHauthor] = ACTIONS(6197), - [anon_sym_BSLASHusepackage] = ACTIONS(6197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), - [anon_sym_BSLASHinclude] = ACTIONS(6197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), - [anon_sym_BSLASHinput] = ACTIONS(6197), - [anon_sym_BSLASHsubfile] = ACTIONS(6197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), - [anon_sym_BSLASHbibliography] = ACTIONS(6197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), - [anon_sym_BSLASHincludesvg] = ACTIONS(6197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), - [anon_sym_BSLASHimport] = ACTIONS(6197), - [anon_sym_BSLASHsubimport] = ACTIONS(6197), - [anon_sym_BSLASHinputfrom] = ACTIONS(6197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), - [anon_sym_BSLASHincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHcaption] = ACTIONS(6197), - [anon_sym_BSLASHcite] = ACTIONS(6197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCite] = ACTIONS(6197), - [anon_sym_BSLASHnocite] = ACTIONS(6197), - [anon_sym_BSLASHcitet] = ACTIONS(6197), - [anon_sym_BSLASHcitep] = ACTIONS(6197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteauthor] = ACTIONS(6197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitetitle] = ACTIONS(6197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteyear] = ACTIONS(6197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitedate] = ACTIONS(6197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteurl] = ACTIONS(6197), - [anon_sym_BSLASHfullcite] = ACTIONS(6197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), - [anon_sym_BSLASHcitealt] = ACTIONS(6197), - [anon_sym_BSLASHcitealp] = ACTIONS(6197), - [anon_sym_BSLASHcitetext] = ACTIONS(6197), - [anon_sym_BSLASHparencite] = ACTIONS(6197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHParencite] = ACTIONS(6197), - [anon_sym_BSLASHfootcite] = ACTIONS(6197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), - [anon_sym_BSLASHtextcite] = ACTIONS(6197), - [anon_sym_BSLASHTextcite] = ACTIONS(6197), - [anon_sym_BSLASHsmartcite] = ACTIONS(6197), - [anon_sym_BSLASHSmartcite] = ACTIONS(6197), - [anon_sym_BSLASHsupercite] = ACTIONS(6197), - [anon_sym_BSLASHautocite] = ACTIONS(6197), - [anon_sym_BSLASHAutocite] = ACTIONS(6197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHvolcite] = ACTIONS(6197), - [anon_sym_BSLASHVolcite] = ACTIONS(6197), - [anon_sym_BSLASHpvolcite] = ACTIONS(6197), - [anon_sym_BSLASHPvolcite] = ACTIONS(6197), - [anon_sym_BSLASHfvolcite] = ACTIONS(6197), - [anon_sym_BSLASHftvolcite] = ACTIONS(6197), - [anon_sym_BSLASHsvolcite] = ACTIONS(6197), - [anon_sym_BSLASHSvolcite] = ACTIONS(6197), - [anon_sym_BSLASHtvolcite] = ACTIONS(6197), - [anon_sym_BSLASHTvolcite] = ACTIONS(6197), - [anon_sym_BSLASHavolcite] = ACTIONS(6197), - [anon_sym_BSLASHAvolcite] = ACTIONS(6197), - [anon_sym_BSLASHnotecite] = ACTIONS(6197), - [anon_sym_BSLASHNotecite] = ACTIONS(6197), - [anon_sym_BSLASHpnotecite] = ACTIONS(6197), - [anon_sym_BSLASHPnotecite] = ACTIONS(6197), - [anon_sym_BSLASHfnotecite] = ACTIONS(6197), - [anon_sym_BSLASHlabel] = ACTIONS(6197), - [anon_sym_BSLASHref] = ACTIONS(6197), - [anon_sym_BSLASHeqref] = ACTIONS(6197), - [anon_sym_BSLASHvref] = ACTIONS(6197), - [anon_sym_BSLASHVref] = ACTIONS(6197), - [anon_sym_BSLASHautoref] = ACTIONS(6197), - [anon_sym_BSLASHpageref] = ACTIONS(6197), - [anon_sym_BSLASHcref] = ACTIONS(6197), - [anon_sym_BSLASHCref] = ACTIONS(6197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnameCref] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHlabelcref] = ACTIONS(6197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCrefrange] = ACTIONS(6197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnewlabel] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHdef] = ACTIONS(6197), - [anon_sym_BSLASHlet] = ACTIONS(6197), - [anon_sym_BSLASHleft] = ACTIONS(6197), - [anon_sym_BSLASHbig] = ACTIONS(6197), - [anon_sym_BSLASHBig] = ACTIONS(6197), - [anon_sym_BSLASHbigg] = ACTIONS(6197), - [anon_sym_BSLASHBigg] = ACTIONS(6197), - [anon_sym_BSLASHbigl] = ACTIONS(6197), - [anon_sym_BSLASHBigl] = ACTIONS(6197), - [anon_sym_BSLASHbiggl] = ACTIONS(6197), - [anon_sym_BSLASHBiggl] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), - [anon_sym_BSLASHgls] = ACTIONS(6197), - [anon_sym_BSLASHGls] = ACTIONS(6197), - [anon_sym_BSLASHGLS] = ACTIONS(6197), - [anon_sym_BSLASHglspl] = ACTIONS(6197), - [anon_sym_BSLASHGlspl] = ACTIONS(6197), - [anon_sym_BSLASHGLSpl] = ACTIONS(6197), - [anon_sym_BSLASHglsdisp] = ACTIONS(6197), - [anon_sym_BSLASHglslink] = ACTIONS(6197), - [anon_sym_BSLASHglstext] = ACTIONS(6197), - [anon_sym_BSLASHGlstext] = ACTIONS(6197), - [anon_sym_BSLASHGLStext] = ACTIONS(6197), - [anon_sym_BSLASHglsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), - [anon_sym_BSLASHglsplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSplural] = ACTIONS(6197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHglsname] = ACTIONS(6197), - [anon_sym_BSLASHGlsname] = ACTIONS(6197), - [anon_sym_BSLASHGLSname] = ACTIONS(6197), - [anon_sym_BSLASHglssymbol] = ACTIONS(6197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), - [anon_sym_BSLASHglsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), - [anon_sym_BSLASHglsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), - [anon_sym_BSLASHglsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), - [anon_sym_BSLASHglsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), - [anon_sym_BSLASHglsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), - [anon_sym_BSLASHnewacronym] = ACTIONS(6197), - [anon_sym_BSLASHacrshort] = ACTIONS(6197), - [anon_sym_BSLASHAcrshort] = ACTIONS(6197), - [anon_sym_BSLASHACRshort] = ACTIONS(6197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), - [anon_sym_BSLASHacrlong] = ACTIONS(6197), - [anon_sym_BSLASHAcrlong] = ACTIONS(6197), - [anon_sym_BSLASHACRlong] = ACTIONS(6197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), - [anon_sym_BSLASHacrfull] = ACTIONS(6197), - [anon_sym_BSLASHAcrfull] = ACTIONS(6197), - [anon_sym_BSLASHACRfull] = ACTIONS(6197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), - [anon_sym_BSLASHacs] = ACTIONS(6197), - [anon_sym_BSLASHAcs] = ACTIONS(6197), - [anon_sym_BSLASHacsp] = ACTIONS(6197), - [anon_sym_BSLASHAcsp] = ACTIONS(6197), - [anon_sym_BSLASHacl] = ACTIONS(6197), - [anon_sym_BSLASHAcl] = ACTIONS(6197), - [anon_sym_BSLASHaclp] = ACTIONS(6197), - [anon_sym_BSLASHAclp] = ACTIONS(6197), - [anon_sym_BSLASHacf] = ACTIONS(6197), - [anon_sym_BSLASHAcf] = ACTIONS(6197), - [anon_sym_BSLASHacfp] = ACTIONS(6197), - [anon_sym_BSLASHAcfp] = ACTIONS(6197), - [anon_sym_BSLASHac] = ACTIONS(6197), - [anon_sym_BSLASHAc] = ACTIONS(6197), - [anon_sym_BSLASHacp] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), - [anon_sym_BSLASHcolor] = ACTIONS(6197), - [anon_sym_BSLASHcolorbox] = ACTIONS(6197), - [anon_sym_BSLASHtextcolor] = ACTIONS(6197), - [anon_sym_BSLASHpagecolor] = ACTIONS(6197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), - [anon_sym_BSLASHtext] = ACTIONS(6197), - [anon_sym_BSLASHintertext] = ACTIONS(6197), - [anon_sym_shortintertext] = ACTIONS(6197), - }, - [1558] = { - [sym_command_name] = ACTIONS(6205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6205), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_RBRACK] = ACTIONS(6207), - [anon_sym_COMMA] = ACTIONS(6207), - [anon_sym_EQ] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_RPAREN] = ACTIONS(6207), - [anon_sym_LBRACE] = ACTIONS(6207), - [sym_word] = ACTIONS(6205), - [sym_placeholder] = ACTIONS(6207), - [anon_sym_PLUS] = ACTIONS(6207), - [anon_sym_DASH] = ACTIONS(6207), - [anon_sym_STAR] = ACTIONS(6207), - [anon_sym_SLASH] = ACTIONS(6207), - [anon_sym_LT] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6205), - [anon_sym_BANG] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_COLON] = ACTIONS(6205), - [anon_sym_SQUOTE] = ACTIONS(6205), - [anon_sym__] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), - [anon_sym_DOLLAR] = ACTIONS(6205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), - [anon_sym_BSLASHbegin] = ACTIONS(6205), - [anon_sym_BSLASHend] = ACTIONS(6205), - [anon_sym_BSLASHtitle] = ACTIONS(6205), - [anon_sym_BSLASHauthor] = ACTIONS(6205), - [anon_sym_BSLASHusepackage] = ACTIONS(6205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), - [anon_sym_BSLASHinclude] = ACTIONS(6205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), - [anon_sym_BSLASHinput] = ACTIONS(6205), - [anon_sym_BSLASHsubfile] = ACTIONS(6205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), - [anon_sym_BSLASHbibliography] = ACTIONS(6205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), - [anon_sym_BSLASHincludesvg] = ACTIONS(6205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), - [anon_sym_BSLASHimport] = ACTIONS(6205), - [anon_sym_BSLASHsubimport] = ACTIONS(6205), - [anon_sym_BSLASHinputfrom] = ACTIONS(6205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), - [anon_sym_BSLASHincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHcaption] = ACTIONS(6205), - [anon_sym_BSLASHcite] = ACTIONS(6205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCite] = ACTIONS(6205), - [anon_sym_BSLASHnocite] = ACTIONS(6205), - [anon_sym_BSLASHcitet] = ACTIONS(6205), - [anon_sym_BSLASHcitep] = ACTIONS(6205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteauthor] = ACTIONS(6205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitetitle] = ACTIONS(6205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteyear] = ACTIONS(6205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitedate] = ACTIONS(6205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteurl] = ACTIONS(6205), - [anon_sym_BSLASHfullcite] = ACTIONS(6205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), - [anon_sym_BSLASHcitealt] = ACTIONS(6205), - [anon_sym_BSLASHcitealp] = ACTIONS(6205), - [anon_sym_BSLASHcitetext] = ACTIONS(6205), - [anon_sym_BSLASHparencite] = ACTIONS(6205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHParencite] = ACTIONS(6205), - [anon_sym_BSLASHfootcite] = ACTIONS(6205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), - [anon_sym_BSLASHtextcite] = ACTIONS(6205), - [anon_sym_BSLASHTextcite] = ACTIONS(6205), - [anon_sym_BSLASHsmartcite] = ACTIONS(6205), - [anon_sym_BSLASHSmartcite] = ACTIONS(6205), - [anon_sym_BSLASHsupercite] = ACTIONS(6205), - [anon_sym_BSLASHautocite] = ACTIONS(6205), - [anon_sym_BSLASHAutocite] = ACTIONS(6205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHvolcite] = ACTIONS(6205), - [anon_sym_BSLASHVolcite] = ACTIONS(6205), - [anon_sym_BSLASHpvolcite] = ACTIONS(6205), - [anon_sym_BSLASHPvolcite] = ACTIONS(6205), - [anon_sym_BSLASHfvolcite] = ACTIONS(6205), - [anon_sym_BSLASHftvolcite] = ACTIONS(6205), - [anon_sym_BSLASHsvolcite] = ACTIONS(6205), - [anon_sym_BSLASHSvolcite] = ACTIONS(6205), - [anon_sym_BSLASHtvolcite] = ACTIONS(6205), - [anon_sym_BSLASHTvolcite] = ACTIONS(6205), - [anon_sym_BSLASHavolcite] = ACTIONS(6205), - [anon_sym_BSLASHAvolcite] = ACTIONS(6205), - [anon_sym_BSLASHnotecite] = ACTIONS(6205), - [anon_sym_BSLASHNotecite] = ACTIONS(6205), - [anon_sym_BSLASHpnotecite] = ACTIONS(6205), - [anon_sym_BSLASHPnotecite] = ACTIONS(6205), - [anon_sym_BSLASHfnotecite] = ACTIONS(6205), - [anon_sym_BSLASHlabel] = ACTIONS(6205), - [anon_sym_BSLASHref] = ACTIONS(6205), - [anon_sym_BSLASHeqref] = ACTIONS(6205), - [anon_sym_BSLASHvref] = ACTIONS(6205), - [anon_sym_BSLASHVref] = ACTIONS(6205), - [anon_sym_BSLASHautoref] = ACTIONS(6205), - [anon_sym_BSLASHpageref] = ACTIONS(6205), - [anon_sym_BSLASHcref] = ACTIONS(6205), - [anon_sym_BSLASHCref] = ACTIONS(6205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnameCref] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHlabelcref] = ACTIONS(6205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCrefrange] = ACTIONS(6205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnewlabel] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHdef] = ACTIONS(6205), - [anon_sym_BSLASHlet] = ACTIONS(6205), - [anon_sym_BSLASHleft] = ACTIONS(6205), - [anon_sym_BSLASHbig] = ACTIONS(6205), - [anon_sym_BSLASHBig] = ACTIONS(6205), - [anon_sym_BSLASHbigg] = ACTIONS(6205), - [anon_sym_BSLASHBigg] = ACTIONS(6205), - [anon_sym_BSLASHbigl] = ACTIONS(6205), - [anon_sym_BSLASHBigl] = ACTIONS(6205), - [anon_sym_BSLASHbiggl] = ACTIONS(6205), - [anon_sym_BSLASHBiggl] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), - [anon_sym_BSLASHgls] = ACTIONS(6205), - [anon_sym_BSLASHGls] = ACTIONS(6205), - [anon_sym_BSLASHGLS] = ACTIONS(6205), - [anon_sym_BSLASHglspl] = ACTIONS(6205), - [anon_sym_BSLASHGlspl] = ACTIONS(6205), - [anon_sym_BSLASHGLSpl] = ACTIONS(6205), - [anon_sym_BSLASHglsdisp] = ACTIONS(6205), - [anon_sym_BSLASHglslink] = ACTIONS(6205), - [anon_sym_BSLASHglstext] = ACTIONS(6205), - [anon_sym_BSLASHGlstext] = ACTIONS(6205), - [anon_sym_BSLASHGLStext] = ACTIONS(6205), - [anon_sym_BSLASHglsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), - [anon_sym_BSLASHglsplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSplural] = ACTIONS(6205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHglsname] = ACTIONS(6205), - [anon_sym_BSLASHGlsname] = ACTIONS(6205), - [anon_sym_BSLASHGLSname] = ACTIONS(6205), - [anon_sym_BSLASHglssymbol] = ACTIONS(6205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), - [anon_sym_BSLASHglsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), - [anon_sym_BSLASHglsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), - [anon_sym_BSLASHglsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), - [anon_sym_BSLASHglsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), - [anon_sym_BSLASHglsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), - [anon_sym_BSLASHnewacronym] = ACTIONS(6205), - [anon_sym_BSLASHacrshort] = ACTIONS(6205), - [anon_sym_BSLASHAcrshort] = ACTIONS(6205), - [anon_sym_BSLASHACRshort] = ACTIONS(6205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), - [anon_sym_BSLASHacrlong] = ACTIONS(6205), - [anon_sym_BSLASHAcrlong] = ACTIONS(6205), - [anon_sym_BSLASHACRlong] = ACTIONS(6205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), - [anon_sym_BSLASHacrfull] = ACTIONS(6205), - [anon_sym_BSLASHAcrfull] = ACTIONS(6205), - [anon_sym_BSLASHACRfull] = ACTIONS(6205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), - [anon_sym_BSLASHacs] = ACTIONS(6205), - [anon_sym_BSLASHAcs] = ACTIONS(6205), - [anon_sym_BSLASHacsp] = ACTIONS(6205), - [anon_sym_BSLASHAcsp] = ACTIONS(6205), - [anon_sym_BSLASHacl] = ACTIONS(6205), - [anon_sym_BSLASHAcl] = ACTIONS(6205), - [anon_sym_BSLASHaclp] = ACTIONS(6205), - [anon_sym_BSLASHAclp] = ACTIONS(6205), - [anon_sym_BSLASHacf] = ACTIONS(6205), - [anon_sym_BSLASHAcf] = ACTIONS(6205), - [anon_sym_BSLASHacfp] = ACTIONS(6205), - [anon_sym_BSLASHAcfp] = ACTIONS(6205), - [anon_sym_BSLASHac] = ACTIONS(6205), - [anon_sym_BSLASHAc] = ACTIONS(6205), - [anon_sym_BSLASHacp] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), - [anon_sym_BSLASHcolor] = ACTIONS(6205), - [anon_sym_BSLASHcolorbox] = ACTIONS(6205), - [anon_sym_BSLASHtextcolor] = ACTIONS(6205), - [anon_sym_BSLASHpagecolor] = ACTIONS(6205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), - [anon_sym_BSLASHtext] = ACTIONS(6205), - [anon_sym_BSLASHintertext] = ACTIONS(6205), - [anon_sym_shortintertext] = ACTIONS(6205), - }, - [1559] = { - [sym_command_name] = ACTIONS(6209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6209), - [anon_sym_LBRACK] = ACTIONS(6211), - [anon_sym_RBRACK] = ACTIONS(6211), - [anon_sym_COMMA] = ACTIONS(6211), - [anon_sym_EQ] = ACTIONS(6211), - [anon_sym_LPAREN] = ACTIONS(6211), - [anon_sym_RPAREN] = ACTIONS(6211), - [anon_sym_LBRACE] = ACTIONS(6211), - [sym_word] = ACTIONS(6209), - [sym_placeholder] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6211), - [anon_sym_DASH] = ACTIONS(6211), - [anon_sym_STAR] = ACTIONS(6211), - [anon_sym_SLASH] = ACTIONS(6211), - [anon_sym_LT] = ACTIONS(6209), - [anon_sym_GT] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6209), - [anon_sym_COLON] = ACTIONS(6209), - [anon_sym_SQUOTE] = ACTIONS(6209), - [anon_sym__] = ACTIONS(6211), - [anon_sym_CARET] = ACTIONS(6211), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6211), - [anon_sym_DOLLAR] = ACTIONS(6209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6211), - [anon_sym_BSLASHbegin] = ACTIONS(6209), - [anon_sym_BSLASHend] = ACTIONS(6209), - [anon_sym_BSLASHtitle] = ACTIONS(6209), - [anon_sym_BSLASHauthor] = ACTIONS(6209), - [anon_sym_BSLASHusepackage] = ACTIONS(6209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), - [anon_sym_BSLASHinclude] = ACTIONS(6209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), - [anon_sym_BSLASHinput] = ACTIONS(6209), - [anon_sym_BSLASHsubfile] = ACTIONS(6209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), - [anon_sym_BSLASHbibliography] = ACTIONS(6209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), - [anon_sym_BSLASHincludesvg] = ACTIONS(6209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), - [anon_sym_BSLASHimport] = ACTIONS(6209), - [anon_sym_BSLASHsubimport] = ACTIONS(6209), - [anon_sym_BSLASHinputfrom] = ACTIONS(6209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), - [anon_sym_BSLASHincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHcaption] = ACTIONS(6209), - [anon_sym_BSLASHcite] = ACTIONS(6209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCite] = ACTIONS(6209), - [anon_sym_BSLASHnocite] = ACTIONS(6209), - [anon_sym_BSLASHcitet] = ACTIONS(6209), - [anon_sym_BSLASHcitep] = ACTIONS(6209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteauthor] = ACTIONS(6209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitetitle] = ACTIONS(6209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteyear] = ACTIONS(6209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitedate] = ACTIONS(6209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteurl] = ACTIONS(6209), - [anon_sym_BSLASHfullcite] = ACTIONS(6209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), - [anon_sym_BSLASHcitealt] = ACTIONS(6209), - [anon_sym_BSLASHcitealp] = ACTIONS(6209), - [anon_sym_BSLASHcitetext] = ACTIONS(6209), - [anon_sym_BSLASHparencite] = ACTIONS(6209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHParencite] = ACTIONS(6209), - [anon_sym_BSLASHfootcite] = ACTIONS(6209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), - [anon_sym_BSLASHtextcite] = ACTIONS(6209), - [anon_sym_BSLASHTextcite] = ACTIONS(6209), - [anon_sym_BSLASHsmartcite] = ACTIONS(6209), - [anon_sym_BSLASHSmartcite] = ACTIONS(6209), - [anon_sym_BSLASHsupercite] = ACTIONS(6209), - [anon_sym_BSLASHautocite] = ACTIONS(6209), - [anon_sym_BSLASHAutocite] = ACTIONS(6209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHvolcite] = ACTIONS(6209), - [anon_sym_BSLASHVolcite] = ACTIONS(6209), - [anon_sym_BSLASHpvolcite] = ACTIONS(6209), - [anon_sym_BSLASHPvolcite] = ACTIONS(6209), - [anon_sym_BSLASHfvolcite] = ACTIONS(6209), - [anon_sym_BSLASHftvolcite] = ACTIONS(6209), - [anon_sym_BSLASHsvolcite] = ACTIONS(6209), - [anon_sym_BSLASHSvolcite] = ACTIONS(6209), - [anon_sym_BSLASHtvolcite] = ACTIONS(6209), - [anon_sym_BSLASHTvolcite] = ACTIONS(6209), - [anon_sym_BSLASHavolcite] = ACTIONS(6209), - [anon_sym_BSLASHAvolcite] = ACTIONS(6209), - [anon_sym_BSLASHnotecite] = ACTIONS(6209), - [anon_sym_BSLASHNotecite] = ACTIONS(6209), - [anon_sym_BSLASHpnotecite] = ACTIONS(6209), - [anon_sym_BSLASHPnotecite] = ACTIONS(6209), - [anon_sym_BSLASHfnotecite] = ACTIONS(6209), - [anon_sym_BSLASHlabel] = ACTIONS(6209), - [anon_sym_BSLASHref] = ACTIONS(6209), - [anon_sym_BSLASHeqref] = ACTIONS(6209), - [anon_sym_BSLASHvref] = ACTIONS(6209), - [anon_sym_BSLASHVref] = ACTIONS(6209), - [anon_sym_BSLASHautoref] = ACTIONS(6209), - [anon_sym_BSLASHpageref] = ACTIONS(6209), - [anon_sym_BSLASHcref] = ACTIONS(6209), - [anon_sym_BSLASHCref] = ACTIONS(6209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnameCref] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHlabelcref] = ACTIONS(6209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCrefrange] = ACTIONS(6209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnewlabel] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6211), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHdef] = ACTIONS(6209), - [anon_sym_BSLASHlet] = ACTIONS(6209), - [anon_sym_BSLASHleft] = ACTIONS(6209), - [anon_sym_BSLASHbig] = ACTIONS(6209), - [anon_sym_BSLASHBig] = ACTIONS(6209), - [anon_sym_BSLASHbigg] = ACTIONS(6209), - [anon_sym_BSLASHBigg] = ACTIONS(6209), - [anon_sym_BSLASHbigl] = ACTIONS(6209), - [anon_sym_BSLASHBigl] = ACTIONS(6209), - [anon_sym_BSLASHbiggl] = ACTIONS(6209), - [anon_sym_BSLASHBiggl] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), - [anon_sym_BSLASHgls] = ACTIONS(6209), - [anon_sym_BSLASHGls] = ACTIONS(6209), - [anon_sym_BSLASHGLS] = ACTIONS(6209), - [anon_sym_BSLASHglspl] = ACTIONS(6209), - [anon_sym_BSLASHGlspl] = ACTIONS(6209), - [anon_sym_BSLASHGLSpl] = ACTIONS(6209), - [anon_sym_BSLASHglsdisp] = ACTIONS(6209), - [anon_sym_BSLASHglslink] = ACTIONS(6209), - [anon_sym_BSLASHglstext] = ACTIONS(6209), - [anon_sym_BSLASHGlstext] = ACTIONS(6209), - [anon_sym_BSLASHGLStext] = ACTIONS(6209), - [anon_sym_BSLASHglsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), - [anon_sym_BSLASHglsplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSplural] = ACTIONS(6209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHglsname] = ACTIONS(6209), - [anon_sym_BSLASHGlsname] = ACTIONS(6209), - [anon_sym_BSLASHGLSname] = ACTIONS(6209), - [anon_sym_BSLASHglssymbol] = ACTIONS(6209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), - [anon_sym_BSLASHglsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), - [anon_sym_BSLASHglsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), - [anon_sym_BSLASHglsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), - [anon_sym_BSLASHglsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), - [anon_sym_BSLASHglsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), - [anon_sym_BSLASHnewacronym] = ACTIONS(6209), - [anon_sym_BSLASHacrshort] = ACTIONS(6209), - [anon_sym_BSLASHAcrshort] = ACTIONS(6209), - [anon_sym_BSLASHACRshort] = ACTIONS(6209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), - [anon_sym_BSLASHacrlong] = ACTIONS(6209), - [anon_sym_BSLASHAcrlong] = ACTIONS(6209), - [anon_sym_BSLASHACRlong] = ACTIONS(6209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), - [anon_sym_BSLASHacrfull] = ACTIONS(6209), - [anon_sym_BSLASHAcrfull] = ACTIONS(6209), - [anon_sym_BSLASHACRfull] = ACTIONS(6209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), - [anon_sym_BSLASHacs] = ACTIONS(6209), - [anon_sym_BSLASHAcs] = ACTIONS(6209), - [anon_sym_BSLASHacsp] = ACTIONS(6209), - [anon_sym_BSLASHAcsp] = ACTIONS(6209), - [anon_sym_BSLASHacl] = ACTIONS(6209), - [anon_sym_BSLASHAcl] = ACTIONS(6209), - [anon_sym_BSLASHaclp] = ACTIONS(6209), - [anon_sym_BSLASHAclp] = ACTIONS(6209), - [anon_sym_BSLASHacf] = ACTIONS(6209), - [anon_sym_BSLASHAcf] = ACTIONS(6209), - [anon_sym_BSLASHacfp] = ACTIONS(6209), - [anon_sym_BSLASHAcfp] = ACTIONS(6209), - [anon_sym_BSLASHac] = ACTIONS(6209), - [anon_sym_BSLASHAc] = ACTIONS(6209), - [anon_sym_BSLASHacp] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), - [anon_sym_BSLASHcolor] = ACTIONS(6209), - [anon_sym_BSLASHcolorbox] = ACTIONS(6209), - [anon_sym_BSLASHtextcolor] = ACTIONS(6209), - [anon_sym_BSLASHpagecolor] = ACTIONS(6209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), - [anon_sym_BSLASHtext] = ACTIONS(6209), - [anon_sym_BSLASHintertext] = ACTIONS(6209), - [anon_sym_shortintertext] = ACTIONS(6209), - }, - [1560] = { - [sym_command_name] = ACTIONS(6213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(6215), - [anon_sym_RBRACK] = ACTIONS(6215), - [anon_sym_COMMA] = ACTIONS(6215), - [anon_sym_EQ] = ACTIONS(6215), - [anon_sym_LPAREN] = ACTIONS(6215), - [anon_sym_RPAREN] = ACTIONS(6215), - [anon_sym_LBRACE] = ACTIONS(6215), - [sym_word] = ACTIONS(6213), - [sym_placeholder] = ACTIONS(6215), - [anon_sym_PLUS] = ACTIONS(6215), - [anon_sym_DASH] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6215), - [anon_sym_SLASH] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6213), - [anon_sym_GT] = ACTIONS(6213), - [anon_sym_BANG] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6213), - [anon_sym_COLON] = ACTIONS(6213), - [anon_sym_SQUOTE] = ACTIONS(6213), - [anon_sym__] = ACTIONS(6215), - [anon_sym_CARET] = ACTIONS(6215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6215), - [anon_sym_DOLLAR] = ACTIONS(6213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6215), - [anon_sym_BSLASHbegin] = ACTIONS(6213), - [anon_sym_BSLASHend] = ACTIONS(6213), - [anon_sym_BSLASHtitle] = ACTIONS(6213), - [anon_sym_BSLASHauthor] = ACTIONS(6213), - [anon_sym_BSLASHusepackage] = ACTIONS(6213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6213), - [anon_sym_BSLASHinclude] = ACTIONS(6213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6213), - [anon_sym_BSLASHinput] = ACTIONS(6213), - [anon_sym_BSLASHsubfile] = ACTIONS(6213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6213), - [anon_sym_BSLASHbibliography] = ACTIONS(6213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6213), - [anon_sym_BSLASHincludesvg] = ACTIONS(6213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6213), - [anon_sym_BSLASHimport] = ACTIONS(6213), - [anon_sym_BSLASHsubimport] = ACTIONS(6213), - [anon_sym_BSLASHinputfrom] = ACTIONS(6213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6213), - [anon_sym_BSLASHincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHcaption] = ACTIONS(6213), - [anon_sym_BSLASHcite] = ACTIONS(6213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCite] = ACTIONS(6213), - [anon_sym_BSLASHnocite] = ACTIONS(6213), - [anon_sym_BSLASHcitet] = ACTIONS(6213), - [anon_sym_BSLASHcitep] = ACTIONS(6213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteauthor] = ACTIONS(6213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitetitle] = ACTIONS(6213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteyear] = ACTIONS(6213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitedate] = ACTIONS(6213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteurl] = ACTIONS(6213), - [anon_sym_BSLASHfullcite] = ACTIONS(6213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6213), - [anon_sym_BSLASHcitealt] = ACTIONS(6213), - [anon_sym_BSLASHcitealp] = ACTIONS(6213), - [anon_sym_BSLASHcitetext] = ACTIONS(6213), - [anon_sym_BSLASHparencite] = ACTIONS(6213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHParencite] = ACTIONS(6213), - [anon_sym_BSLASHfootcite] = ACTIONS(6213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6213), - [anon_sym_BSLASHtextcite] = ACTIONS(6213), - [anon_sym_BSLASHTextcite] = ACTIONS(6213), - [anon_sym_BSLASHsmartcite] = ACTIONS(6213), - [anon_sym_BSLASHSmartcite] = ACTIONS(6213), - [anon_sym_BSLASHsupercite] = ACTIONS(6213), - [anon_sym_BSLASHautocite] = ACTIONS(6213), - [anon_sym_BSLASHAutocite] = ACTIONS(6213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHvolcite] = ACTIONS(6213), - [anon_sym_BSLASHVolcite] = ACTIONS(6213), - [anon_sym_BSLASHpvolcite] = ACTIONS(6213), - [anon_sym_BSLASHPvolcite] = ACTIONS(6213), - [anon_sym_BSLASHfvolcite] = ACTIONS(6213), - [anon_sym_BSLASHftvolcite] = ACTIONS(6213), - [anon_sym_BSLASHsvolcite] = ACTIONS(6213), - [anon_sym_BSLASHSvolcite] = ACTIONS(6213), - [anon_sym_BSLASHtvolcite] = ACTIONS(6213), - [anon_sym_BSLASHTvolcite] = ACTIONS(6213), - [anon_sym_BSLASHavolcite] = ACTIONS(6213), - [anon_sym_BSLASHAvolcite] = ACTIONS(6213), - [anon_sym_BSLASHnotecite] = ACTIONS(6213), - [anon_sym_BSLASHNotecite] = ACTIONS(6213), - [anon_sym_BSLASHpnotecite] = ACTIONS(6213), - [anon_sym_BSLASHPnotecite] = ACTIONS(6213), - [anon_sym_BSLASHfnotecite] = ACTIONS(6213), - [anon_sym_BSLASHlabel] = ACTIONS(6213), - [anon_sym_BSLASHref] = ACTIONS(6213), - [anon_sym_BSLASHeqref] = ACTIONS(6213), - [anon_sym_BSLASHvref] = ACTIONS(6213), - [anon_sym_BSLASHVref] = ACTIONS(6213), - [anon_sym_BSLASHautoref] = ACTIONS(6213), - [anon_sym_BSLASHpageref] = ACTIONS(6213), - [anon_sym_BSLASHcref] = ACTIONS(6213), - [anon_sym_BSLASHCref] = ACTIONS(6213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnameCref] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHlabelcref] = ACTIONS(6213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCrefrange] = ACTIONS(6213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnewlabel] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6215), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHdef] = ACTIONS(6213), - [anon_sym_BSLASHlet] = ACTIONS(6213), - [anon_sym_BSLASHleft] = ACTIONS(6213), - [anon_sym_BSLASHbig] = ACTIONS(6213), - [anon_sym_BSLASHBig] = ACTIONS(6213), - [anon_sym_BSLASHbigg] = ACTIONS(6213), - [anon_sym_BSLASHBigg] = ACTIONS(6213), - [anon_sym_BSLASHbigl] = ACTIONS(6213), - [anon_sym_BSLASHBigl] = ACTIONS(6213), - [anon_sym_BSLASHbiggl] = ACTIONS(6213), - [anon_sym_BSLASHBiggl] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6213), - [anon_sym_BSLASHgls] = ACTIONS(6213), - [anon_sym_BSLASHGls] = ACTIONS(6213), - [anon_sym_BSLASHGLS] = ACTIONS(6213), - [anon_sym_BSLASHglspl] = ACTIONS(6213), - [anon_sym_BSLASHGlspl] = ACTIONS(6213), - [anon_sym_BSLASHGLSpl] = ACTIONS(6213), - [anon_sym_BSLASHglsdisp] = ACTIONS(6213), - [anon_sym_BSLASHglslink] = ACTIONS(6213), - [anon_sym_BSLASHglstext] = ACTIONS(6213), - [anon_sym_BSLASHGlstext] = ACTIONS(6213), - [anon_sym_BSLASHGLStext] = ACTIONS(6213), - [anon_sym_BSLASHglsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6213), - [anon_sym_BSLASHglsplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSplural] = ACTIONS(6213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHglsname] = ACTIONS(6213), - [anon_sym_BSLASHGlsname] = ACTIONS(6213), - [anon_sym_BSLASHGLSname] = ACTIONS(6213), - [anon_sym_BSLASHglssymbol] = ACTIONS(6213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6213), - [anon_sym_BSLASHglsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6213), - [anon_sym_BSLASHglsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6213), - [anon_sym_BSLASHglsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6213), - [anon_sym_BSLASHglsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6213), - [anon_sym_BSLASHglsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6213), - [anon_sym_BSLASHnewacronym] = ACTIONS(6213), - [anon_sym_BSLASHacrshort] = ACTIONS(6213), - [anon_sym_BSLASHAcrshort] = ACTIONS(6213), - [anon_sym_BSLASHACRshort] = ACTIONS(6213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6213), - [anon_sym_BSLASHacrlong] = ACTIONS(6213), - [anon_sym_BSLASHAcrlong] = ACTIONS(6213), - [anon_sym_BSLASHACRlong] = ACTIONS(6213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6213), - [anon_sym_BSLASHacrfull] = ACTIONS(6213), - [anon_sym_BSLASHAcrfull] = ACTIONS(6213), - [anon_sym_BSLASHACRfull] = ACTIONS(6213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6213), - [anon_sym_BSLASHacs] = ACTIONS(6213), - [anon_sym_BSLASHAcs] = ACTIONS(6213), - [anon_sym_BSLASHacsp] = ACTIONS(6213), - [anon_sym_BSLASHAcsp] = ACTIONS(6213), - [anon_sym_BSLASHacl] = ACTIONS(6213), - [anon_sym_BSLASHAcl] = ACTIONS(6213), - [anon_sym_BSLASHaclp] = ACTIONS(6213), - [anon_sym_BSLASHAclp] = ACTIONS(6213), - [anon_sym_BSLASHacf] = ACTIONS(6213), - [anon_sym_BSLASHAcf] = ACTIONS(6213), - [anon_sym_BSLASHacfp] = ACTIONS(6213), - [anon_sym_BSLASHAcfp] = ACTIONS(6213), - [anon_sym_BSLASHac] = ACTIONS(6213), - [anon_sym_BSLASHAc] = ACTIONS(6213), - [anon_sym_BSLASHacp] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6213), - [anon_sym_BSLASHcolor] = ACTIONS(6213), - [anon_sym_BSLASHcolorbox] = ACTIONS(6213), - [anon_sym_BSLASHtextcolor] = ACTIONS(6213), - [anon_sym_BSLASHpagecolor] = ACTIONS(6213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6213), - [anon_sym_BSLASHtext] = ACTIONS(6213), - [anon_sym_BSLASHintertext] = ACTIONS(6213), - [anon_sym_shortintertext] = ACTIONS(6213), - }, - [1561] = { - [sym_command_name] = ACTIONS(6217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6217), - [anon_sym_LBRACK] = ACTIONS(6219), - [anon_sym_RBRACK] = ACTIONS(6219), - [anon_sym_COMMA] = ACTIONS(6219), - [anon_sym_EQ] = ACTIONS(6219), - [anon_sym_LPAREN] = ACTIONS(6219), - [anon_sym_RPAREN] = ACTIONS(6219), - [anon_sym_LBRACE] = ACTIONS(6219), - [sym_word] = ACTIONS(6217), - [sym_placeholder] = ACTIONS(6219), - [anon_sym_PLUS] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_STAR] = ACTIONS(6219), - [anon_sym_SLASH] = ACTIONS(6219), - [anon_sym_LT] = ACTIONS(6217), - [anon_sym_GT] = ACTIONS(6217), - [anon_sym_BANG] = ACTIONS(6217), - [anon_sym_PIPE] = ACTIONS(6217), - [anon_sym_COLON] = ACTIONS(6217), - [anon_sym_SQUOTE] = ACTIONS(6217), - [anon_sym__] = ACTIONS(6219), - [anon_sym_CARET] = ACTIONS(6219), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6219), - [anon_sym_DOLLAR] = ACTIONS(6217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6219), - [anon_sym_BSLASHbegin] = ACTIONS(6217), - [anon_sym_BSLASHend] = ACTIONS(6217), - [anon_sym_BSLASHtitle] = ACTIONS(6217), - [anon_sym_BSLASHauthor] = ACTIONS(6217), - [anon_sym_BSLASHusepackage] = ACTIONS(6217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6217), - [anon_sym_BSLASHinclude] = ACTIONS(6217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6217), - [anon_sym_BSLASHinput] = ACTIONS(6217), - [anon_sym_BSLASHsubfile] = ACTIONS(6217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6217), - [anon_sym_BSLASHbibliography] = ACTIONS(6217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6217), - [anon_sym_BSLASHincludesvg] = ACTIONS(6217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6217), - [anon_sym_BSLASHimport] = ACTIONS(6217), - [anon_sym_BSLASHsubimport] = ACTIONS(6217), - [anon_sym_BSLASHinputfrom] = ACTIONS(6217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6217), - [anon_sym_BSLASHincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHcaption] = ACTIONS(6217), - [anon_sym_BSLASHcite] = ACTIONS(6217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCite] = ACTIONS(6217), - [anon_sym_BSLASHnocite] = ACTIONS(6217), - [anon_sym_BSLASHcitet] = ACTIONS(6217), - [anon_sym_BSLASHcitep] = ACTIONS(6217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteauthor] = ACTIONS(6217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitetitle] = ACTIONS(6217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteyear] = ACTIONS(6217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitedate] = ACTIONS(6217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteurl] = ACTIONS(6217), - [anon_sym_BSLASHfullcite] = ACTIONS(6217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6217), - [anon_sym_BSLASHcitealt] = ACTIONS(6217), - [anon_sym_BSLASHcitealp] = ACTIONS(6217), - [anon_sym_BSLASHcitetext] = ACTIONS(6217), - [anon_sym_BSLASHparencite] = ACTIONS(6217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHParencite] = ACTIONS(6217), - [anon_sym_BSLASHfootcite] = ACTIONS(6217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6217), - [anon_sym_BSLASHtextcite] = ACTIONS(6217), - [anon_sym_BSLASHTextcite] = ACTIONS(6217), - [anon_sym_BSLASHsmartcite] = ACTIONS(6217), - [anon_sym_BSLASHSmartcite] = ACTIONS(6217), - [anon_sym_BSLASHsupercite] = ACTIONS(6217), - [anon_sym_BSLASHautocite] = ACTIONS(6217), - [anon_sym_BSLASHAutocite] = ACTIONS(6217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHvolcite] = ACTIONS(6217), - [anon_sym_BSLASHVolcite] = ACTIONS(6217), - [anon_sym_BSLASHpvolcite] = ACTIONS(6217), - [anon_sym_BSLASHPvolcite] = ACTIONS(6217), - [anon_sym_BSLASHfvolcite] = ACTIONS(6217), - [anon_sym_BSLASHftvolcite] = ACTIONS(6217), - [anon_sym_BSLASHsvolcite] = ACTIONS(6217), - [anon_sym_BSLASHSvolcite] = ACTIONS(6217), - [anon_sym_BSLASHtvolcite] = ACTIONS(6217), - [anon_sym_BSLASHTvolcite] = ACTIONS(6217), - [anon_sym_BSLASHavolcite] = ACTIONS(6217), - [anon_sym_BSLASHAvolcite] = ACTIONS(6217), - [anon_sym_BSLASHnotecite] = ACTIONS(6217), - [anon_sym_BSLASHNotecite] = ACTIONS(6217), - [anon_sym_BSLASHpnotecite] = ACTIONS(6217), - [anon_sym_BSLASHPnotecite] = ACTIONS(6217), - [anon_sym_BSLASHfnotecite] = ACTIONS(6217), - [anon_sym_BSLASHlabel] = ACTIONS(6217), - [anon_sym_BSLASHref] = ACTIONS(6217), - [anon_sym_BSLASHeqref] = ACTIONS(6217), - [anon_sym_BSLASHvref] = ACTIONS(6217), - [anon_sym_BSLASHVref] = ACTIONS(6217), - [anon_sym_BSLASHautoref] = ACTIONS(6217), - [anon_sym_BSLASHpageref] = ACTIONS(6217), - [anon_sym_BSLASHcref] = ACTIONS(6217), - [anon_sym_BSLASHCref] = ACTIONS(6217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnameCref] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHlabelcref] = ACTIONS(6217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCrefrange] = ACTIONS(6217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnewlabel] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6219), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHdef] = ACTIONS(6217), - [anon_sym_BSLASHlet] = ACTIONS(6217), - [anon_sym_BSLASHleft] = ACTIONS(6217), - [anon_sym_BSLASHbig] = ACTIONS(6217), - [anon_sym_BSLASHBig] = ACTIONS(6217), - [anon_sym_BSLASHbigg] = ACTIONS(6217), - [anon_sym_BSLASHBigg] = ACTIONS(6217), - [anon_sym_BSLASHbigl] = ACTIONS(6217), - [anon_sym_BSLASHBigl] = ACTIONS(6217), - [anon_sym_BSLASHbiggl] = ACTIONS(6217), - [anon_sym_BSLASHBiggl] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6217), - [anon_sym_BSLASHgls] = ACTIONS(6217), - [anon_sym_BSLASHGls] = ACTIONS(6217), - [anon_sym_BSLASHGLS] = ACTIONS(6217), - [anon_sym_BSLASHglspl] = ACTIONS(6217), - [anon_sym_BSLASHGlspl] = ACTIONS(6217), - [anon_sym_BSLASHGLSpl] = ACTIONS(6217), - [anon_sym_BSLASHglsdisp] = ACTIONS(6217), - [anon_sym_BSLASHglslink] = ACTIONS(6217), - [anon_sym_BSLASHglstext] = ACTIONS(6217), - [anon_sym_BSLASHGlstext] = ACTIONS(6217), - [anon_sym_BSLASHGLStext] = ACTIONS(6217), - [anon_sym_BSLASHglsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6217), - [anon_sym_BSLASHglsplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSplural] = ACTIONS(6217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHglsname] = ACTIONS(6217), - [anon_sym_BSLASHGlsname] = ACTIONS(6217), - [anon_sym_BSLASHGLSname] = ACTIONS(6217), - [anon_sym_BSLASHglssymbol] = ACTIONS(6217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6217), - [anon_sym_BSLASHglsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6217), - [anon_sym_BSLASHglsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6217), - [anon_sym_BSLASHglsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6217), - [anon_sym_BSLASHglsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6217), - [anon_sym_BSLASHglsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6217), - [anon_sym_BSLASHnewacronym] = ACTIONS(6217), - [anon_sym_BSLASHacrshort] = ACTIONS(6217), - [anon_sym_BSLASHAcrshort] = ACTIONS(6217), - [anon_sym_BSLASHACRshort] = ACTIONS(6217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6217), - [anon_sym_BSLASHacrlong] = ACTIONS(6217), - [anon_sym_BSLASHAcrlong] = ACTIONS(6217), - [anon_sym_BSLASHACRlong] = ACTIONS(6217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6217), - [anon_sym_BSLASHacrfull] = ACTIONS(6217), - [anon_sym_BSLASHAcrfull] = ACTIONS(6217), - [anon_sym_BSLASHACRfull] = ACTIONS(6217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6217), - [anon_sym_BSLASHacs] = ACTIONS(6217), - [anon_sym_BSLASHAcs] = ACTIONS(6217), - [anon_sym_BSLASHacsp] = ACTIONS(6217), - [anon_sym_BSLASHAcsp] = ACTIONS(6217), - [anon_sym_BSLASHacl] = ACTIONS(6217), - [anon_sym_BSLASHAcl] = ACTIONS(6217), - [anon_sym_BSLASHaclp] = ACTIONS(6217), - [anon_sym_BSLASHAclp] = ACTIONS(6217), - [anon_sym_BSLASHacf] = ACTIONS(6217), - [anon_sym_BSLASHAcf] = ACTIONS(6217), - [anon_sym_BSLASHacfp] = ACTIONS(6217), - [anon_sym_BSLASHAcfp] = ACTIONS(6217), - [anon_sym_BSLASHac] = ACTIONS(6217), - [anon_sym_BSLASHAc] = ACTIONS(6217), - [anon_sym_BSLASHacp] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6217), - [anon_sym_BSLASHcolor] = ACTIONS(6217), - [anon_sym_BSLASHcolorbox] = ACTIONS(6217), - [anon_sym_BSLASHtextcolor] = ACTIONS(6217), - [anon_sym_BSLASHpagecolor] = ACTIONS(6217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6217), - [anon_sym_BSLASHtext] = ACTIONS(6217), - [anon_sym_BSLASHintertext] = ACTIONS(6217), - [anon_sym_shortintertext] = ACTIONS(6217), - }, - [1562] = { - [sym_command_name] = ACTIONS(6225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6225), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_RBRACK] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_EQ] = ACTIONS(6227), - [anon_sym_LPAREN] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [anon_sym_LBRACE] = ACTIONS(6227), - [sym_word] = ACTIONS(6225), - [sym_placeholder] = ACTIONS(6227), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(6225), - [anon_sym_GT] = ACTIONS(6225), - [anon_sym_BANG] = ACTIONS(6225), - [anon_sym_PIPE] = ACTIONS(6225), - [anon_sym_COLON] = ACTIONS(6225), - [anon_sym_SQUOTE] = ACTIONS(6225), - [anon_sym__] = ACTIONS(6227), - [anon_sym_CARET] = ACTIONS(6227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6227), - [anon_sym_DOLLAR] = ACTIONS(6225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6227), - [anon_sym_BSLASHbegin] = ACTIONS(6225), - [anon_sym_BSLASHend] = ACTIONS(6225), - [anon_sym_BSLASHtitle] = ACTIONS(6225), - [anon_sym_BSLASHauthor] = ACTIONS(6225), - [anon_sym_BSLASHusepackage] = ACTIONS(6225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6225), - [anon_sym_BSLASHinclude] = ACTIONS(6225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6225), - [anon_sym_BSLASHinput] = ACTIONS(6225), - [anon_sym_BSLASHsubfile] = ACTIONS(6225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6225), - [anon_sym_BSLASHbibliography] = ACTIONS(6225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6225), - [anon_sym_BSLASHincludesvg] = ACTIONS(6225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6225), - [anon_sym_BSLASHimport] = ACTIONS(6225), - [anon_sym_BSLASHsubimport] = ACTIONS(6225), - [anon_sym_BSLASHinputfrom] = ACTIONS(6225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6225), - [anon_sym_BSLASHincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHcaption] = ACTIONS(6225), - [anon_sym_BSLASHcite] = ACTIONS(6225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCite] = ACTIONS(6225), - [anon_sym_BSLASHnocite] = ACTIONS(6225), - [anon_sym_BSLASHcitet] = ACTIONS(6225), - [anon_sym_BSLASHcitep] = ACTIONS(6225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteauthor] = ACTIONS(6225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitetitle] = ACTIONS(6225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteyear] = ACTIONS(6225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitedate] = ACTIONS(6225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteurl] = ACTIONS(6225), - [anon_sym_BSLASHfullcite] = ACTIONS(6225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6225), - [anon_sym_BSLASHcitealt] = ACTIONS(6225), - [anon_sym_BSLASHcitealp] = ACTIONS(6225), - [anon_sym_BSLASHcitetext] = ACTIONS(6225), - [anon_sym_BSLASHparencite] = ACTIONS(6225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHParencite] = ACTIONS(6225), - [anon_sym_BSLASHfootcite] = ACTIONS(6225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6225), - [anon_sym_BSLASHtextcite] = ACTIONS(6225), - [anon_sym_BSLASHTextcite] = ACTIONS(6225), - [anon_sym_BSLASHsmartcite] = ACTIONS(6225), - [anon_sym_BSLASHSmartcite] = ACTIONS(6225), - [anon_sym_BSLASHsupercite] = ACTIONS(6225), - [anon_sym_BSLASHautocite] = ACTIONS(6225), - [anon_sym_BSLASHAutocite] = ACTIONS(6225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHvolcite] = ACTIONS(6225), - [anon_sym_BSLASHVolcite] = ACTIONS(6225), - [anon_sym_BSLASHpvolcite] = ACTIONS(6225), - [anon_sym_BSLASHPvolcite] = ACTIONS(6225), - [anon_sym_BSLASHfvolcite] = ACTIONS(6225), - [anon_sym_BSLASHftvolcite] = ACTIONS(6225), - [anon_sym_BSLASHsvolcite] = ACTIONS(6225), - [anon_sym_BSLASHSvolcite] = ACTIONS(6225), - [anon_sym_BSLASHtvolcite] = ACTIONS(6225), - [anon_sym_BSLASHTvolcite] = ACTIONS(6225), - [anon_sym_BSLASHavolcite] = ACTIONS(6225), - [anon_sym_BSLASHAvolcite] = ACTIONS(6225), - [anon_sym_BSLASHnotecite] = ACTIONS(6225), - [anon_sym_BSLASHNotecite] = ACTIONS(6225), - [anon_sym_BSLASHpnotecite] = ACTIONS(6225), - [anon_sym_BSLASHPnotecite] = ACTIONS(6225), - [anon_sym_BSLASHfnotecite] = ACTIONS(6225), - [anon_sym_BSLASHlabel] = ACTIONS(6225), - [anon_sym_BSLASHref] = ACTIONS(6225), - [anon_sym_BSLASHeqref] = ACTIONS(6225), - [anon_sym_BSLASHvref] = ACTIONS(6225), - [anon_sym_BSLASHVref] = ACTIONS(6225), - [anon_sym_BSLASHautoref] = ACTIONS(6225), - [anon_sym_BSLASHpageref] = ACTIONS(6225), - [anon_sym_BSLASHcref] = ACTIONS(6225), - [anon_sym_BSLASHCref] = ACTIONS(6225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnameCref] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHlabelcref] = ACTIONS(6225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCrefrange] = ACTIONS(6225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnewlabel] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6227), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHdef] = ACTIONS(6225), - [anon_sym_BSLASHlet] = ACTIONS(6225), - [anon_sym_BSLASHleft] = ACTIONS(6225), - [anon_sym_BSLASHbig] = ACTIONS(6225), - [anon_sym_BSLASHBig] = ACTIONS(6225), - [anon_sym_BSLASHbigg] = ACTIONS(6225), - [anon_sym_BSLASHBigg] = ACTIONS(6225), - [anon_sym_BSLASHbigl] = ACTIONS(6225), - [anon_sym_BSLASHBigl] = ACTIONS(6225), - [anon_sym_BSLASHbiggl] = ACTIONS(6225), - [anon_sym_BSLASHBiggl] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6225), - [anon_sym_BSLASHgls] = ACTIONS(6225), - [anon_sym_BSLASHGls] = ACTIONS(6225), - [anon_sym_BSLASHGLS] = ACTIONS(6225), - [anon_sym_BSLASHglspl] = ACTIONS(6225), - [anon_sym_BSLASHGlspl] = ACTIONS(6225), - [anon_sym_BSLASHGLSpl] = ACTIONS(6225), - [anon_sym_BSLASHglsdisp] = ACTIONS(6225), - [anon_sym_BSLASHglslink] = ACTIONS(6225), - [anon_sym_BSLASHglstext] = ACTIONS(6225), - [anon_sym_BSLASHGlstext] = ACTIONS(6225), - [anon_sym_BSLASHGLStext] = ACTIONS(6225), - [anon_sym_BSLASHglsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6225), - [anon_sym_BSLASHglsplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSplural] = ACTIONS(6225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHglsname] = ACTIONS(6225), - [anon_sym_BSLASHGlsname] = ACTIONS(6225), - [anon_sym_BSLASHGLSname] = ACTIONS(6225), - [anon_sym_BSLASHglssymbol] = ACTIONS(6225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6225), - [anon_sym_BSLASHglsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6225), - [anon_sym_BSLASHglsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6225), - [anon_sym_BSLASHglsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6225), - [anon_sym_BSLASHglsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6225), - [anon_sym_BSLASHglsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6225), - [anon_sym_BSLASHnewacronym] = ACTIONS(6225), - [anon_sym_BSLASHacrshort] = ACTIONS(6225), - [anon_sym_BSLASHAcrshort] = ACTIONS(6225), - [anon_sym_BSLASHACRshort] = ACTIONS(6225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6225), - [anon_sym_BSLASHacrlong] = ACTIONS(6225), - [anon_sym_BSLASHAcrlong] = ACTIONS(6225), - [anon_sym_BSLASHACRlong] = ACTIONS(6225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6225), - [anon_sym_BSLASHacrfull] = ACTIONS(6225), - [anon_sym_BSLASHAcrfull] = ACTIONS(6225), - [anon_sym_BSLASHACRfull] = ACTIONS(6225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6225), - [anon_sym_BSLASHacs] = ACTIONS(6225), - [anon_sym_BSLASHAcs] = ACTIONS(6225), - [anon_sym_BSLASHacsp] = ACTIONS(6225), - [anon_sym_BSLASHAcsp] = ACTIONS(6225), - [anon_sym_BSLASHacl] = ACTIONS(6225), - [anon_sym_BSLASHAcl] = ACTIONS(6225), - [anon_sym_BSLASHaclp] = ACTIONS(6225), - [anon_sym_BSLASHAclp] = ACTIONS(6225), - [anon_sym_BSLASHacf] = ACTIONS(6225), - [anon_sym_BSLASHAcf] = ACTIONS(6225), - [anon_sym_BSLASHacfp] = ACTIONS(6225), - [anon_sym_BSLASHAcfp] = ACTIONS(6225), - [anon_sym_BSLASHac] = ACTIONS(6225), - [anon_sym_BSLASHAc] = ACTIONS(6225), - [anon_sym_BSLASHacp] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6225), - [anon_sym_BSLASHcolor] = ACTIONS(6225), - [anon_sym_BSLASHcolorbox] = ACTIONS(6225), - [anon_sym_BSLASHtextcolor] = ACTIONS(6225), - [anon_sym_BSLASHpagecolor] = ACTIONS(6225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6225), - [anon_sym_BSLASHtext] = ACTIONS(6225), - [anon_sym_BSLASHintertext] = ACTIONS(6225), - [anon_sym_shortintertext] = ACTIONS(6225), - }, - [1563] = { - [sym_command_name] = ACTIONS(6229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6229), - [anon_sym_LBRACK] = ACTIONS(6231), - [anon_sym_RBRACK] = ACTIONS(6231), - [anon_sym_COMMA] = ACTIONS(6231), - [anon_sym_EQ] = ACTIONS(6231), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_RPAREN] = ACTIONS(6231), - [anon_sym_LBRACE] = ACTIONS(6231), - [sym_word] = ACTIONS(6229), - [sym_placeholder] = ACTIONS(6231), - [anon_sym_PLUS] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_SLASH] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(6229), - [anon_sym_GT] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [anon_sym_PIPE] = ACTIONS(6229), - [anon_sym_COLON] = ACTIONS(6229), - [anon_sym_SQUOTE] = ACTIONS(6229), - [anon_sym__] = ACTIONS(6231), - [anon_sym_CARET] = ACTIONS(6231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6231), - [anon_sym_DOLLAR] = ACTIONS(6229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6231), - [anon_sym_BSLASHbegin] = ACTIONS(6229), - [anon_sym_BSLASHend] = ACTIONS(6229), - [anon_sym_BSLASHtitle] = ACTIONS(6229), - [anon_sym_BSLASHauthor] = ACTIONS(6229), - [anon_sym_BSLASHusepackage] = ACTIONS(6229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6229), - [anon_sym_BSLASHinclude] = ACTIONS(6229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6229), - [anon_sym_BSLASHinput] = ACTIONS(6229), - [anon_sym_BSLASHsubfile] = ACTIONS(6229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6229), - [anon_sym_BSLASHbibliography] = ACTIONS(6229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6229), - [anon_sym_BSLASHincludesvg] = ACTIONS(6229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6229), - [anon_sym_BSLASHimport] = ACTIONS(6229), - [anon_sym_BSLASHsubimport] = ACTIONS(6229), - [anon_sym_BSLASHinputfrom] = ACTIONS(6229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6229), - [anon_sym_BSLASHincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHcaption] = ACTIONS(6229), - [anon_sym_BSLASHcite] = ACTIONS(6229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCite] = ACTIONS(6229), - [anon_sym_BSLASHnocite] = ACTIONS(6229), - [anon_sym_BSLASHcitet] = ACTIONS(6229), - [anon_sym_BSLASHcitep] = ACTIONS(6229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteauthor] = ACTIONS(6229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitetitle] = ACTIONS(6229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteyear] = ACTIONS(6229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitedate] = ACTIONS(6229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteurl] = ACTIONS(6229), - [anon_sym_BSLASHfullcite] = ACTIONS(6229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6229), - [anon_sym_BSLASHcitealt] = ACTIONS(6229), - [anon_sym_BSLASHcitealp] = ACTIONS(6229), - [anon_sym_BSLASHcitetext] = ACTIONS(6229), - [anon_sym_BSLASHparencite] = ACTIONS(6229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHParencite] = ACTIONS(6229), - [anon_sym_BSLASHfootcite] = ACTIONS(6229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6229), - [anon_sym_BSLASHtextcite] = ACTIONS(6229), - [anon_sym_BSLASHTextcite] = ACTIONS(6229), - [anon_sym_BSLASHsmartcite] = ACTIONS(6229), - [anon_sym_BSLASHSmartcite] = ACTIONS(6229), - [anon_sym_BSLASHsupercite] = ACTIONS(6229), - [anon_sym_BSLASHautocite] = ACTIONS(6229), - [anon_sym_BSLASHAutocite] = ACTIONS(6229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHvolcite] = ACTIONS(6229), - [anon_sym_BSLASHVolcite] = ACTIONS(6229), - [anon_sym_BSLASHpvolcite] = ACTIONS(6229), - [anon_sym_BSLASHPvolcite] = ACTIONS(6229), - [anon_sym_BSLASHfvolcite] = ACTIONS(6229), - [anon_sym_BSLASHftvolcite] = ACTIONS(6229), - [anon_sym_BSLASHsvolcite] = ACTIONS(6229), - [anon_sym_BSLASHSvolcite] = ACTIONS(6229), - [anon_sym_BSLASHtvolcite] = ACTIONS(6229), - [anon_sym_BSLASHTvolcite] = ACTIONS(6229), - [anon_sym_BSLASHavolcite] = ACTIONS(6229), - [anon_sym_BSLASHAvolcite] = ACTIONS(6229), - [anon_sym_BSLASHnotecite] = ACTIONS(6229), - [anon_sym_BSLASHNotecite] = ACTIONS(6229), - [anon_sym_BSLASHpnotecite] = ACTIONS(6229), - [anon_sym_BSLASHPnotecite] = ACTIONS(6229), - [anon_sym_BSLASHfnotecite] = ACTIONS(6229), - [anon_sym_BSLASHlabel] = ACTIONS(6229), - [anon_sym_BSLASHref] = ACTIONS(6229), - [anon_sym_BSLASHeqref] = ACTIONS(6229), - [anon_sym_BSLASHvref] = ACTIONS(6229), - [anon_sym_BSLASHVref] = ACTIONS(6229), - [anon_sym_BSLASHautoref] = ACTIONS(6229), - [anon_sym_BSLASHpageref] = ACTIONS(6229), - [anon_sym_BSLASHcref] = ACTIONS(6229), - [anon_sym_BSLASHCref] = ACTIONS(6229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnameCref] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHlabelcref] = ACTIONS(6229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCrefrange] = ACTIONS(6229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnewlabel] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6231), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHdef] = ACTIONS(6229), - [anon_sym_BSLASHlet] = ACTIONS(6229), - [anon_sym_BSLASHleft] = ACTIONS(6229), - [anon_sym_BSLASHbig] = ACTIONS(6229), - [anon_sym_BSLASHBig] = ACTIONS(6229), - [anon_sym_BSLASHbigg] = ACTIONS(6229), - [anon_sym_BSLASHBigg] = ACTIONS(6229), - [anon_sym_BSLASHbigl] = ACTIONS(6229), - [anon_sym_BSLASHBigl] = ACTIONS(6229), - [anon_sym_BSLASHbiggl] = ACTIONS(6229), - [anon_sym_BSLASHBiggl] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6229), - [anon_sym_BSLASHgls] = ACTIONS(6229), - [anon_sym_BSLASHGls] = ACTIONS(6229), - [anon_sym_BSLASHGLS] = ACTIONS(6229), - [anon_sym_BSLASHglspl] = ACTIONS(6229), - [anon_sym_BSLASHGlspl] = ACTIONS(6229), - [anon_sym_BSLASHGLSpl] = ACTIONS(6229), - [anon_sym_BSLASHglsdisp] = ACTIONS(6229), - [anon_sym_BSLASHglslink] = ACTIONS(6229), - [anon_sym_BSLASHglstext] = ACTIONS(6229), - [anon_sym_BSLASHGlstext] = ACTIONS(6229), - [anon_sym_BSLASHGLStext] = ACTIONS(6229), - [anon_sym_BSLASHglsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6229), - [anon_sym_BSLASHglsplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSplural] = ACTIONS(6229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHglsname] = ACTIONS(6229), - [anon_sym_BSLASHGlsname] = ACTIONS(6229), - [anon_sym_BSLASHGLSname] = ACTIONS(6229), - [anon_sym_BSLASHglssymbol] = ACTIONS(6229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6229), - [anon_sym_BSLASHglsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6229), - [anon_sym_BSLASHglsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6229), - [anon_sym_BSLASHglsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6229), - [anon_sym_BSLASHglsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6229), - [anon_sym_BSLASHglsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6229), - [anon_sym_BSLASHnewacronym] = ACTIONS(6229), - [anon_sym_BSLASHacrshort] = ACTIONS(6229), - [anon_sym_BSLASHAcrshort] = ACTIONS(6229), - [anon_sym_BSLASHACRshort] = ACTIONS(6229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6229), - [anon_sym_BSLASHacrlong] = ACTIONS(6229), - [anon_sym_BSLASHAcrlong] = ACTIONS(6229), - [anon_sym_BSLASHACRlong] = ACTIONS(6229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6229), - [anon_sym_BSLASHacrfull] = ACTIONS(6229), - [anon_sym_BSLASHAcrfull] = ACTIONS(6229), - [anon_sym_BSLASHACRfull] = ACTIONS(6229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6229), - [anon_sym_BSLASHacs] = ACTIONS(6229), - [anon_sym_BSLASHAcs] = ACTIONS(6229), - [anon_sym_BSLASHacsp] = ACTIONS(6229), - [anon_sym_BSLASHAcsp] = ACTIONS(6229), - [anon_sym_BSLASHacl] = ACTIONS(6229), - [anon_sym_BSLASHAcl] = ACTIONS(6229), - [anon_sym_BSLASHaclp] = ACTIONS(6229), - [anon_sym_BSLASHAclp] = ACTIONS(6229), - [anon_sym_BSLASHacf] = ACTIONS(6229), - [anon_sym_BSLASHAcf] = ACTIONS(6229), - [anon_sym_BSLASHacfp] = ACTIONS(6229), - [anon_sym_BSLASHAcfp] = ACTIONS(6229), - [anon_sym_BSLASHac] = ACTIONS(6229), - [anon_sym_BSLASHAc] = ACTIONS(6229), - [anon_sym_BSLASHacp] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6229), - [anon_sym_BSLASHcolor] = ACTIONS(6229), - [anon_sym_BSLASHcolorbox] = ACTIONS(6229), - [anon_sym_BSLASHtextcolor] = ACTIONS(6229), - [anon_sym_BSLASHpagecolor] = ACTIONS(6229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6229), - [anon_sym_BSLASHtext] = ACTIONS(6229), - [anon_sym_BSLASHintertext] = ACTIONS(6229), - [anon_sym_shortintertext] = ACTIONS(6229), - }, - [1564] = { - [sym_command_name] = ACTIONS(6233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_RBRACK] = ACTIONS(6235), - [anon_sym_COMMA] = ACTIONS(6235), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_LPAREN] = ACTIONS(6235), - [anon_sym_RPAREN] = ACTIONS(6235), - [anon_sym_LBRACE] = ACTIONS(6235), - [sym_word] = ACTIONS(6233), - [sym_placeholder] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6233), - [anon_sym_BANG] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(6233), - [anon_sym_SQUOTE] = ACTIONS(6233), - [anon_sym__] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6235), - [anon_sym_DOLLAR] = ACTIONS(6233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6235), - [anon_sym_BSLASHbegin] = ACTIONS(6233), - [anon_sym_BSLASHend] = ACTIONS(6233), - [anon_sym_BSLASHtitle] = ACTIONS(6233), - [anon_sym_BSLASHauthor] = ACTIONS(6233), - [anon_sym_BSLASHusepackage] = ACTIONS(6233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6233), - [anon_sym_BSLASHinclude] = ACTIONS(6233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6233), - [anon_sym_BSLASHinput] = ACTIONS(6233), - [anon_sym_BSLASHsubfile] = ACTIONS(6233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6233), - [anon_sym_BSLASHbibliography] = ACTIONS(6233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6233), - [anon_sym_BSLASHincludesvg] = ACTIONS(6233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6233), - [anon_sym_BSLASHimport] = ACTIONS(6233), - [anon_sym_BSLASHsubimport] = ACTIONS(6233), - [anon_sym_BSLASHinputfrom] = ACTIONS(6233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6233), - [anon_sym_BSLASHincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHcaption] = ACTIONS(6233), - [anon_sym_BSLASHcite] = ACTIONS(6233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCite] = ACTIONS(6233), - [anon_sym_BSLASHnocite] = ACTIONS(6233), - [anon_sym_BSLASHcitet] = ACTIONS(6233), - [anon_sym_BSLASHcitep] = ACTIONS(6233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteauthor] = ACTIONS(6233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitetitle] = ACTIONS(6233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteyear] = ACTIONS(6233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitedate] = ACTIONS(6233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteurl] = ACTIONS(6233), - [anon_sym_BSLASHfullcite] = ACTIONS(6233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6233), - [anon_sym_BSLASHcitealt] = ACTIONS(6233), - [anon_sym_BSLASHcitealp] = ACTIONS(6233), - [anon_sym_BSLASHcitetext] = ACTIONS(6233), - [anon_sym_BSLASHparencite] = ACTIONS(6233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHParencite] = ACTIONS(6233), - [anon_sym_BSLASHfootcite] = ACTIONS(6233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6233), - [anon_sym_BSLASHtextcite] = ACTIONS(6233), - [anon_sym_BSLASHTextcite] = ACTIONS(6233), - [anon_sym_BSLASHsmartcite] = ACTIONS(6233), - [anon_sym_BSLASHSmartcite] = ACTIONS(6233), - [anon_sym_BSLASHsupercite] = ACTIONS(6233), - [anon_sym_BSLASHautocite] = ACTIONS(6233), - [anon_sym_BSLASHAutocite] = ACTIONS(6233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHvolcite] = ACTIONS(6233), - [anon_sym_BSLASHVolcite] = ACTIONS(6233), - [anon_sym_BSLASHpvolcite] = ACTIONS(6233), - [anon_sym_BSLASHPvolcite] = ACTIONS(6233), - [anon_sym_BSLASHfvolcite] = ACTIONS(6233), - [anon_sym_BSLASHftvolcite] = ACTIONS(6233), - [anon_sym_BSLASHsvolcite] = ACTIONS(6233), - [anon_sym_BSLASHSvolcite] = ACTIONS(6233), - [anon_sym_BSLASHtvolcite] = ACTIONS(6233), - [anon_sym_BSLASHTvolcite] = ACTIONS(6233), - [anon_sym_BSLASHavolcite] = ACTIONS(6233), - [anon_sym_BSLASHAvolcite] = ACTIONS(6233), - [anon_sym_BSLASHnotecite] = ACTIONS(6233), - [anon_sym_BSLASHNotecite] = ACTIONS(6233), - [anon_sym_BSLASHpnotecite] = ACTIONS(6233), - [anon_sym_BSLASHPnotecite] = ACTIONS(6233), - [anon_sym_BSLASHfnotecite] = ACTIONS(6233), - [anon_sym_BSLASHlabel] = ACTIONS(6233), - [anon_sym_BSLASHref] = ACTIONS(6233), - [anon_sym_BSLASHeqref] = ACTIONS(6233), - [anon_sym_BSLASHvref] = ACTIONS(6233), - [anon_sym_BSLASHVref] = ACTIONS(6233), - [anon_sym_BSLASHautoref] = ACTIONS(6233), - [anon_sym_BSLASHpageref] = ACTIONS(6233), - [anon_sym_BSLASHcref] = ACTIONS(6233), - [anon_sym_BSLASHCref] = ACTIONS(6233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnameCref] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHlabelcref] = ACTIONS(6233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCrefrange] = ACTIONS(6233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnewlabel] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6235), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHdef] = ACTIONS(6233), - [anon_sym_BSLASHlet] = ACTIONS(6233), - [anon_sym_BSLASHleft] = ACTIONS(6233), - [anon_sym_BSLASHbig] = ACTIONS(6233), - [anon_sym_BSLASHBig] = ACTIONS(6233), - [anon_sym_BSLASHbigg] = ACTIONS(6233), - [anon_sym_BSLASHBigg] = ACTIONS(6233), - [anon_sym_BSLASHbigl] = ACTIONS(6233), - [anon_sym_BSLASHBigl] = ACTIONS(6233), - [anon_sym_BSLASHbiggl] = ACTIONS(6233), - [anon_sym_BSLASHBiggl] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6233), - [anon_sym_BSLASHgls] = ACTIONS(6233), - [anon_sym_BSLASHGls] = ACTIONS(6233), - [anon_sym_BSLASHGLS] = ACTIONS(6233), - [anon_sym_BSLASHglspl] = ACTIONS(6233), - [anon_sym_BSLASHGlspl] = ACTIONS(6233), - [anon_sym_BSLASHGLSpl] = ACTIONS(6233), - [anon_sym_BSLASHglsdisp] = ACTIONS(6233), - [anon_sym_BSLASHglslink] = ACTIONS(6233), - [anon_sym_BSLASHglstext] = ACTIONS(6233), - [anon_sym_BSLASHGlstext] = ACTIONS(6233), - [anon_sym_BSLASHGLStext] = ACTIONS(6233), - [anon_sym_BSLASHglsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6233), - [anon_sym_BSLASHglsplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSplural] = ACTIONS(6233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHglsname] = ACTIONS(6233), - [anon_sym_BSLASHGlsname] = ACTIONS(6233), - [anon_sym_BSLASHGLSname] = ACTIONS(6233), - [anon_sym_BSLASHglssymbol] = ACTIONS(6233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6233), - [anon_sym_BSLASHglsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6233), - [anon_sym_BSLASHglsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6233), - [anon_sym_BSLASHglsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6233), - [anon_sym_BSLASHglsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6233), - [anon_sym_BSLASHglsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6233), - [anon_sym_BSLASHnewacronym] = ACTIONS(6233), - [anon_sym_BSLASHacrshort] = ACTIONS(6233), - [anon_sym_BSLASHAcrshort] = ACTIONS(6233), - [anon_sym_BSLASHACRshort] = ACTIONS(6233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6233), - [anon_sym_BSLASHacrlong] = ACTIONS(6233), - [anon_sym_BSLASHAcrlong] = ACTIONS(6233), - [anon_sym_BSLASHACRlong] = ACTIONS(6233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6233), - [anon_sym_BSLASHacrfull] = ACTIONS(6233), - [anon_sym_BSLASHAcrfull] = ACTIONS(6233), - [anon_sym_BSLASHACRfull] = ACTIONS(6233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6233), - [anon_sym_BSLASHacs] = ACTIONS(6233), - [anon_sym_BSLASHAcs] = ACTIONS(6233), - [anon_sym_BSLASHacsp] = ACTIONS(6233), - [anon_sym_BSLASHAcsp] = ACTIONS(6233), - [anon_sym_BSLASHacl] = ACTIONS(6233), - [anon_sym_BSLASHAcl] = ACTIONS(6233), - [anon_sym_BSLASHaclp] = ACTIONS(6233), - [anon_sym_BSLASHAclp] = ACTIONS(6233), - [anon_sym_BSLASHacf] = ACTIONS(6233), - [anon_sym_BSLASHAcf] = ACTIONS(6233), - [anon_sym_BSLASHacfp] = ACTIONS(6233), - [anon_sym_BSLASHAcfp] = ACTIONS(6233), - [anon_sym_BSLASHac] = ACTIONS(6233), - [anon_sym_BSLASHAc] = ACTIONS(6233), - [anon_sym_BSLASHacp] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6233), - [anon_sym_BSLASHcolor] = ACTIONS(6233), - [anon_sym_BSLASHcolorbox] = ACTIONS(6233), - [anon_sym_BSLASHtextcolor] = ACTIONS(6233), - [anon_sym_BSLASHpagecolor] = ACTIONS(6233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6233), - [anon_sym_BSLASHtext] = ACTIONS(6233), - [anon_sym_BSLASHintertext] = ACTIONS(6233), - [anon_sym_shortintertext] = ACTIONS(6233), - }, - [1565] = { - [sym_command_name] = ACTIONS(6297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6297), - [anon_sym_LBRACK] = ACTIONS(6299), - [anon_sym_RBRACK] = ACTIONS(6299), - [anon_sym_COMMA] = ACTIONS(6299), - [anon_sym_EQ] = ACTIONS(6299), - [anon_sym_LPAREN] = ACTIONS(6299), - [anon_sym_RPAREN] = ACTIONS(6299), - [anon_sym_LBRACE] = ACTIONS(6299), - [sym_word] = ACTIONS(6297), - [sym_placeholder] = ACTIONS(6299), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_LT] = ACTIONS(6297), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(6297), - [anon_sym_PIPE] = ACTIONS(6297), - [anon_sym_COLON] = ACTIONS(6297), - [anon_sym_SQUOTE] = ACTIONS(6297), - [anon_sym__] = ACTIONS(6299), - [anon_sym_CARET] = ACTIONS(6299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6299), - [anon_sym_DOLLAR] = ACTIONS(6297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6299), - [anon_sym_BSLASHbegin] = ACTIONS(6297), - [anon_sym_BSLASHend] = ACTIONS(6297), - [anon_sym_BSLASHtitle] = ACTIONS(6297), - [anon_sym_BSLASHauthor] = ACTIONS(6297), - [anon_sym_BSLASHusepackage] = ACTIONS(6297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6297), - [anon_sym_BSLASHinclude] = ACTIONS(6297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6297), - [anon_sym_BSLASHinput] = ACTIONS(6297), - [anon_sym_BSLASHsubfile] = ACTIONS(6297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6297), - [anon_sym_BSLASHbibliography] = ACTIONS(6297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6297), - [anon_sym_BSLASHincludesvg] = ACTIONS(6297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6297), - [anon_sym_BSLASHimport] = ACTIONS(6297), - [anon_sym_BSLASHsubimport] = ACTIONS(6297), - [anon_sym_BSLASHinputfrom] = ACTIONS(6297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6297), - [anon_sym_BSLASHincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHcaption] = ACTIONS(6297), - [anon_sym_BSLASHcite] = ACTIONS(6297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCite] = ACTIONS(6297), - [anon_sym_BSLASHnocite] = ACTIONS(6297), - [anon_sym_BSLASHcitet] = ACTIONS(6297), - [anon_sym_BSLASHcitep] = ACTIONS(6297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteauthor] = ACTIONS(6297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitetitle] = ACTIONS(6297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteyear] = ACTIONS(6297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitedate] = ACTIONS(6297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteurl] = ACTIONS(6297), - [anon_sym_BSLASHfullcite] = ACTIONS(6297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6297), - [anon_sym_BSLASHcitealt] = ACTIONS(6297), - [anon_sym_BSLASHcitealp] = ACTIONS(6297), - [anon_sym_BSLASHcitetext] = ACTIONS(6297), - [anon_sym_BSLASHparencite] = ACTIONS(6297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHParencite] = ACTIONS(6297), - [anon_sym_BSLASHfootcite] = ACTIONS(6297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6297), - [anon_sym_BSLASHtextcite] = ACTIONS(6297), - [anon_sym_BSLASHTextcite] = ACTIONS(6297), - [anon_sym_BSLASHsmartcite] = ACTIONS(6297), - [anon_sym_BSLASHSmartcite] = ACTIONS(6297), - [anon_sym_BSLASHsupercite] = ACTIONS(6297), - [anon_sym_BSLASHautocite] = ACTIONS(6297), - [anon_sym_BSLASHAutocite] = ACTIONS(6297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHvolcite] = ACTIONS(6297), - [anon_sym_BSLASHVolcite] = ACTIONS(6297), - [anon_sym_BSLASHpvolcite] = ACTIONS(6297), - [anon_sym_BSLASHPvolcite] = ACTIONS(6297), - [anon_sym_BSLASHfvolcite] = ACTIONS(6297), - [anon_sym_BSLASHftvolcite] = ACTIONS(6297), - [anon_sym_BSLASHsvolcite] = ACTIONS(6297), - [anon_sym_BSLASHSvolcite] = ACTIONS(6297), - [anon_sym_BSLASHtvolcite] = ACTIONS(6297), - [anon_sym_BSLASHTvolcite] = ACTIONS(6297), - [anon_sym_BSLASHavolcite] = ACTIONS(6297), - [anon_sym_BSLASHAvolcite] = ACTIONS(6297), - [anon_sym_BSLASHnotecite] = ACTIONS(6297), - [anon_sym_BSLASHNotecite] = ACTIONS(6297), - [anon_sym_BSLASHpnotecite] = ACTIONS(6297), - [anon_sym_BSLASHPnotecite] = ACTIONS(6297), - [anon_sym_BSLASHfnotecite] = ACTIONS(6297), - [anon_sym_BSLASHlabel] = ACTIONS(6297), - [anon_sym_BSLASHref] = ACTIONS(6297), - [anon_sym_BSLASHeqref] = ACTIONS(6297), - [anon_sym_BSLASHvref] = ACTIONS(6297), - [anon_sym_BSLASHVref] = ACTIONS(6297), - [anon_sym_BSLASHautoref] = ACTIONS(6297), - [anon_sym_BSLASHpageref] = ACTIONS(6297), - [anon_sym_BSLASHcref] = ACTIONS(6297), - [anon_sym_BSLASHCref] = ACTIONS(6297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnameCref] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHlabelcref] = ACTIONS(6297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCrefrange] = ACTIONS(6297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnewlabel] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6299), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHdef] = ACTIONS(6297), - [anon_sym_BSLASHlet] = ACTIONS(6297), - [anon_sym_BSLASHleft] = ACTIONS(6297), - [anon_sym_BSLASHbig] = ACTIONS(6297), - [anon_sym_BSLASHBig] = ACTIONS(6297), - [anon_sym_BSLASHbigg] = ACTIONS(6297), - [anon_sym_BSLASHBigg] = ACTIONS(6297), - [anon_sym_BSLASHbigl] = ACTIONS(6297), - [anon_sym_BSLASHBigl] = ACTIONS(6297), - [anon_sym_BSLASHbiggl] = ACTIONS(6297), - [anon_sym_BSLASHBiggl] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6297), - [anon_sym_BSLASHgls] = ACTIONS(6297), - [anon_sym_BSLASHGls] = ACTIONS(6297), - [anon_sym_BSLASHGLS] = ACTIONS(6297), - [anon_sym_BSLASHglspl] = ACTIONS(6297), - [anon_sym_BSLASHGlspl] = ACTIONS(6297), - [anon_sym_BSLASHGLSpl] = ACTIONS(6297), - [anon_sym_BSLASHglsdisp] = ACTIONS(6297), - [anon_sym_BSLASHglslink] = ACTIONS(6297), - [anon_sym_BSLASHglstext] = ACTIONS(6297), - [anon_sym_BSLASHGlstext] = ACTIONS(6297), - [anon_sym_BSLASHGLStext] = ACTIONS(6297), - [anon_sym_BSLASHglsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6297), - [anon_sym_BSLASHglsplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSplural] = ACTIONS(6297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHglsname] = ACTIONS(6297), - [anon_sym_BSLASHGlsname] = ACTIONS(6297), - [anon_sym_BSLASHGLSname] = ACTIONS(6297), - [anon_sym_BSLASHglssymbol] = ACTIONS(6297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6297), - [anon_sym_BSLASHglsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6297), - [anon_sym_BSLASHglsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6297), - [anon_sym_BSLASHglsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6297), - [anon_sym_BSLASHglsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6297), - [anon_sym_BSLASHglsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6297), - [anon_sym_BSLASHnewacronym] = ACTIONS(6297), - [anon_sym_BSLASHacrshort] = ACTIONS(6297), - [anon_sym_BSLASHAcrshort] = ACTIONS(6297), - [anon_sym_BSLASHACRshort] = ACTIONS(6297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6297), - [anon_sym_BSLASHacrlong] = ACTIONS(6297), - [anon_sym_BSLASHAcrlong] = ACTIONS(6297), - [anon_sym_BSLASHACRlong] = ACTIONS(6297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6297), - [anon_sym_BSLASHacrfull] = ACTIONS(6297), - [anon_sym_BSLASHAcrfull] = ACTIONS(6297), - [anon_sym_BSLASHACRfull] = ACTIONS(6297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6297), - [anon_sym_BSLASHacs] = ACTIONS(6297), - [anon_sym_BSLASHAcs] = ACTIONS(6297), - [anon_sym_BSLASHacsp] = ACTIONS(6297), - [anon_sym_BSLASHAcsp] = ACTIONS(6297), - [anon_sym_BSLASHacl] = ACTIONS(6297), - [anon_sym_BSLASHAcl] = ACTIONS(6297), - [anon_sym_BSLASHaclp] = ACTIONS(6297), - [anon_sym_BSLASHAclp] = ACTIONS(6297), - [anon_sym_BSLASHacf] = ACTIONS(6297), - [anon_sym_BSLASHAcf] = ACTIONS(6297), - [anon_sym_BSLASHacfp] = ACTIONS(6297), - [anon_sym_BSLASHAcfp] = ACTIONS(6297), - [anon_sym_BSLASHac] = ACTIONS(6297), - [anon_sym_BSLASHAc] = ACTIONS(6297), - [anon_sym_BSLASHacp] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6297), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6297), - [anon_sym_BSLASHcolor] = ACTIONS(6297), - [anon_sym_BSLASHcolorbox] = ACTIONS(6297), - [anon_sym_BSLASHtextcolor] = ACTIONS(6297), - [anon_sym_BSLASHpagecolor] = ACTIONS(6297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6297), - [anon_sym_BSLASHtext] = ACTIONS(6297), - [anon_sym_BSLASHintertext] = ACTIONS(6297), - [anon_sym_shortintertext] = ACTIONS(6297), - }, - [1566] = { - [sym_command_name] = ACTIONS(6417), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6417), - [anon_sym_LBRACK] = ACTIONS(6419), - [anon_sym_RBRACK] = ACTIONS(6419), - [anon_sym_COMMA] = ACTIONS(6419), - [anon_sym_EQ] = ACTIONS(6419), - [anon_sym_LPAREN] = ACTIONS(6419), - [anon_sym_RPAREN] = ACTIONS(6419), - [anon_sym_LBRACE] = ACTIONS(6419), - [sym_word] = ACTIONS(6417), - [sym_placeholder] = ACTIONS(6419), - [anon_sym_PLUS] = ACTIONS(6419), - [anon_sym_DASH] = ACTIONS(6419), - [anon_sym_STAR] = ACTIONS(6419), - [anon_sym_SLASH] = ACTIONS(6419), - [anon_sym_LT] = ACTIONS(6417), - [anon_sym_GT] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(6417), - [anon_sym_PIPE] = ACTIONS(6417), - [anon_sym_COLON] = ACTIONS(6417), - [anon_sym_SQUOTE] = ACTIONS(6417), - [anon_sym__] = ACTIONS(6419), - [anon_sym_CARET] = ACTIONS(6419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6419), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6419), - [anon_sym_DOLLAR] = ACTIONS(6417), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6419), - [anon_sym_BSLASHbegin] = ACTIONS(6417), - [anon_sym_BSLASHend] = ACTIONS(6417), - [anon_sym_BSLASHtitle] = ACTIONS(6417), - [anon_sym_BSLASHauthor] = ACTIONS(6417), - [anon_sym_BSLASHusepackage] = ACTIONS(6417), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6417), - [anon_sym_BSLASHinclude] = ACTIONS(6417), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6417), - [anon_sym_BSLASHinput] = ACTIONS(6417), - [anon_sym_BSLASHsubfile] = ACTIONS(6417), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6417), - [anon_sym_BSLASHbibliography] = ACTIONS(6417), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6417), - [anon_sym_BSLASHincludesvg] = ACTIONS(6417), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6417), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6417), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6417), - [anon_sym_BSLASHimport] = ACTIONS(6417), - [anon_sym_BSLASHsubimport] = ACTIONS(6417), - [anon_sym_BSLASHinputfrom] = ACTIONS(6417), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6417), - [anon_sym_BSLASHincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHcaption] = ACTIONS(6417), - [anon_sym_BSLASHcite] = ACTIONS(6417), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCite] = ACTIONS(6417), - [anon_sym_BSLASHnocite] = ACTIONS(6417), - [anon_sym_BSLASHcitet] = ACTIONS(6417), - [anon_sym_BSLASHcitep] = ACTIONS(6417), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteauthor] = ACTIONS(6417), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6417), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitetitle] = ACTIONS(6417), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteyear] = ACTIONS(6417), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitedate] = ACTIONS(6417), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteurl] = ACTIONS(6417), - [anon_sym_BSLASHfullcite] = ACTIONS(6417), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6417), - [anon_sym_BSLASHcitealt] = ACTIONS(6417), - [anon_sym_BSLASHcitealp] = ACTIONS(6417), - [anon_sym_BSLASHcitetext] = ACTIONS(6417), - [anon_sym_BSLASHparencite] = ACTIONS(6417), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHParencite] = ACTIONS(6417), - [anon_sym_BSLASHfootcite] = ACTIONS(6417), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6417), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6417), - [anon_sym_BSLASHtextcite] = ACTIONS(6417), - [anon_sym_BSLASHTextcite] = ACTIONS(6417), - [anon_sym_BSLASHsmartcite] = ACTIONS(6417), - [anon_sym_BSLASHSmartcite] = ACTIONS(6417), - [anon_sym_BSLASHsupercite] = ACTIONS(6417), - [anon_sym_BSLASHautocite] = ACTIONS(6417), - [anon_sym_BSLASHAutocite] = ACTIONS(6417), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHvolcite] = ACTIONS(6417), - [anon_sym_BSLASHVolcite] = ACTIONS(6417), - [anon_sym_BSLASHpvolcite] = ACTIONS(6417), - [anon_sym_BSLASHPvolcite] = ACTIONS(6417), - [anon_sym_BSLASHfvolcite] = ACTIONS(6417), - [anon_sym_BSLASHftvolcite] = ACTIONS(6417), - [anon_sym_BSLASHsvolcite] = ACTIONS(6417), - [anon_sym_BSLASHSvolcite] = ACTIONS(6417), - [anon_sym_BSLASHtvolcite] = ACTIONS(6417), - [anon_sym_BSLASHTvolcite] = ACTIONS(6417), - [anon_sym_BSLASHavolcite] = ACTIONS(6417), - [anon_sym_BSLASHAvolcite] = ACTIONS(6417), - [anon_sym_BSLASHnotecite] = ACTIONS(6417), - [anon_sym_BSLASHNotecite] = ACTIONS(6417), - [anon_sym_BSLASHpnotecite] = ACTIONS(6417), - [anon_sym_BSLASHPnotecite] = ACTIONS(6417), - [anon_sym_BSLASHfnotecite] = ACTIONS(6417), - [anon_sym_BSLASHlabel] = ACTIONS(6417), - [anon_sym_BSLASHref] = ACTIONS(6417), - [anon_sym_BSLASHeqref] = ACTIONS(6417), - [anon_sym_BSLASHvref] = ACTIONS(6417), - [anon_sym_BSLASHVref] = ACTIONS(6417), - [anon_sym_BSLASHautoref] = ACTIONS(6417), - [anon_sym_BSLASHpageref] = ACTIONS(6417), - [anon_sym_BSLASHcref] = ACTIONS(6417), - [anon_sym_BSLASHCref] = ACTIONS(6417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnameCref] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHlabelcref] = ACTIONS(6417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCrefrange] = ACTIONS(6417), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnewlabel] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6419), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHdef] = ACTIONS(6417), - [anon_sym_BSLASHlet] = ACTIONS(6417), - [anon_sym_BSLASHleft] = ACTIONS(6417), - [anon_sym_BSLASHbig] = ACTIONS(6417), - [anon_sym_BSLASHBig] = ACTIONS(6417), - [anon_sym_BSLASHbigg] = ACTIONS(6417), - [anon_sym_BSLASHBigg] = ACTIONS(6417), - [anon_sym_BSLASHbigl] = ACTIONS(6417), - [anon_sym_BSLASHBigl] = ACTIONS(6417), - [anon_sym_BSLASHbiggl] = ACTIONS(6417), - [anon_sym_BSLASHBiggl] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6417), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6417), - [anon_sym_BSLASHgls] = ACTIONS(6417), - [anon_sym_BSLASHGls] = ACTIONS(6417), - [anon_sym_BSLASHGLS] = ACTIONS(6417), - [anon_sym_BSLASHglspl] = ACTIONS(6417), - [anon_sym_BSLASHGlspl] = ACTIONS(6417), - [anon_sym_BSLASHGLSpl] = ACTIONS(6417), - [anon_sym_BSLASHglsdisp] = ACTIONS(6417), - [anon_sym_BSLASHglslink] = ACTIONS(6417), - [anon_sym_BSLASHglstext] = ACTIONS(6417), - [anon_sym_BSLASHGlstext] = ACTIONS(6417), - [anon_sym_BSLASHGLStext] = ACTIONS(6417), - [anon_sym_BSLASHglsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6417), - [anon_sym_BSLASHglsplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSplural] = ACTIONS(6417), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHglsname] = ACTIONS(6417), - [anon_sym_BSLASHGlsname] = ACTIONS(6417), - [anon_sym_BSLASHGLSname] = ACTIONS(6417), - [anon_sym_BSLASHglssymbol] = ACTIONS(6417), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6417), - [anon_sym_BSLASHglsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6417), - [anon_sym_BSLASHglsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6417), - [anon_sym_BSLASHglsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6417), - [anon_sym_BSLASHglsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6417), - [anon_sym_BSLASHglsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6417), - [anon_sym_BSLASHnewacronym] = ACTIONS(6417), - [anon_sym_BSLASHacrshort] = ACTIONS(6417), - [anon_sym_BSLASHAcrshort] = ACTIONS(6417), - [anon_sym_BSLASHACRshort] = ACTIONS(6417), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6417), - [anon_sym_BSLASHacrlong] = ACTIONS(6417), - [anon_sym_BSLASHAcrlong] = ACTIONS(6417), - [anon_sym_BSLASHACRlong] = ACTIONS(6417), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6417), - [anon_sym_BSLASHacrfull] = ACTIONS(6417), - [anon_sym_BSLASHAcrfull] = ACTIONS(6417), - [anon_sym_BSLASHACRfull] = ACTIONS(6417), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6417), - [anon_sym_BSLASHacs] = ACTIONS(6417), - [anon_sym_BSLASHAcs] = ACTIONS(6417), - [anon_sym_BSLASHacsp] = ACTIONS(6417), - [anon_sym_BSLASHAcsp] = ACTIONS(6417), - [anon_sym_BSLASHacl] = ACTIONS(6417), - [anon_sym_BSLASHAcl] = ACTIONS(6417), - [anon_sym_BSLASHaclp] = ACTIONS(6417), - [anon_sym_BSLASHAclp] = ACTIONS(6417), - [anon_sym_BSLASHacf] = ACTIONS(6417), - [anon_sym_BSLASHAcf] = ACTIONS(6417), - [anon_sym_BSLASHacfp] = ACTIONS(6417), - [anon_sym_BSLASHAcfp] = ACTIONS(6417), - [anon_sym_BSLASHac] = ACTIONS(6417), - [anon_sym_BSLASHAc] = ACTIONS(6417), - [anon_sym_BSLASHacp] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6417), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6417), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6417), - [anon_sym_BSLASHcolor] = ACTIONS(6417), - [anon_sym_BSLASHcolorbox] = ACTIONS(6417), - [anon_sym_BSLASHtextcolor] = ACTIONS(6417), - [anon_sym_BSLASHpagecolor] = ACTIONS(6417), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6417), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6417), - [anon_sym_BSLASHtext] = ACTIONS(6417), - [anon_sym_BSLASHintertext] = ACTIONS(6417), - [anon_sym_shortintertext] = ACTIONS(6417), - }, - [1567] = { - [sym_command_name] = ACTIONS(6421), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6421), - [anon_sym_LBRACK] = ACTIONS(6423), - [anon_sym_RBRACK] = ACTIONS(6423), - [anon_sym_COMMA] = ACTIONS(6423), - [anon_sym_EQ] = ACTIONS(6423), - [anon_sym_LPAREN] = ACTIONS(6423), - [anon_sym_RPAREN] = ACTIONS(6423), - [anon_sym_LBRACE] = ACTIONS(6423), - [sym_word] = ACTIONS(6421), - [sym_placeholder] = ACTIONS(6423), - [anon_sym_PLUS] = ACTIONS(6423), - [anon_sym_DASH] = ACTIONS(6423), - [anon_sym_STAR] = ACTIONS(6423), - [anon_sym_SLASH] = ACTIONS(6423), - [anon_sym_LT] = ACTIONS(6421), - [anon_sym_GT] = ACTIONS(6421), - [anon_sym_BANG] = ACTIONS(6421), - [anon_sym_PIPE] = ACTIONS(6421), - [anon_sym_COLON] = ACTIONS(6421), - [anon_sym_SQUOTE] = ACTIONS(6421), - [anon_sym__] = ACTIONS(6423), - [anon_sym_CARET] = ACTIONS(6423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6423), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6423), - [anon_sym_DOLLAR] = ACTIONS(6421), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6423), - [anon_sym_BSLASHbegin] = ACTIONS(6421), - [anon_sym_BSLASHend] = ACTIONS(6421), - [anon_sym_BSLASHtitle] = ACTIONS(6421), - [anon_sym_BSLASHauthor] = ACTIONS(6421), - [anon_sym_BSLASHusepackage] = ACTIONS(6421), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6421), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6421), - [anon_sym_BSLASHinclude] = ACTIONS(6421), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6421), - [anon_sym_BSLASHinput] = ACTIONS(6421), - [anon_sym_BSLASHsubfile] = ACTIONS(6421), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6421), - [anon_sym_BSLASHbibliography] = ACTIONS(6421), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6421), - [anon_sym_BSLASHincludesvg] = ACTIONS(6421), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6421), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6421), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6421), - [anon_sym_BSLASHimport] = ACTIONS(6421), - [anon_sym_BSLASHsubimport] = ACTIONS(6421), - [anon_sym_BSLASHinputfrom] = ACTIONS(6421), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6421), - [anon_sym_BSLASHincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHcaption] = ACTIONS(6421), - [anon_sym_BSLASHcite] = ACTIONS(6421), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCite] = ACTIONS(6421), - [anon_sym_BSLASHnocite] = ACTIONS(6421), - [anon_sym_BSLASHcitet] = ACTIONS(6421), - [anon_sym_BSLASHcitep] = ACTIONS(6421), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteauthor] = ACTIONS(6421), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6421), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitetitle] = ACTIONS(6421), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteyear] = ACTIONS(6421), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitedate] = ACTIONS(6421), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteurl] = ACTIONS(6421), - [anon_sym_BSLASHfullcite] = ACTIONS(6421), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6421), - [anon_sym_BSLASHcitealt] = ACTIONS(6421), - [anon_sym_BSLASHcitealp] = ACTIONS(6421), - [anon_sym_BSLASHcitetext] = ACTIONS(6421), - [anon_sym_BSLASHparencite] = ACTIONS(6421), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHParencite] = ACTIONS(6421), - [anon_sym_BSLASHfootcite] = ACTIONS(6421), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6421), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6421), - [anon_sym_BSLASHtextcite] = ACTIONS(6421), - [anon_sym_BSLASHTextcite] = ACTIONS(6421), - [anon_sym_BSLASHsmartcite] = ACTIONS(6421), - [anon_sym_BSLASHSmartcite] = ACTIONS(6421), - [anon_sym_BSLASHsupercite] = ACTIONS(6421), - [anon_sym_BSLASHautocite] = ACTIONS(6421), - [anon_sym_BSLASHAutocite] = ACTIONS(6421), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHvolcite] = ACTIONS(6421), - [anon_sym_BSLASHVolcite] = ACTIONS(6421), - [anon_sym_BSLASHpvolcite] = ACTIONS(6421), - [anon_sym_BSLASHPvolcite] = ACTIONS(6421), - [anon_sym_BSLASHfvolcite] = ACTIONS(6421), - [anon_sym_BSLASHftvolcite] = ACTIONS(6421), - [anon_sym_BSLASHsvolcite] = ACTIONS(6421), - [anon_sym_BSLASHSvolcite] = ACTIONS(6421), - [anon_sym_BSLASHtvolcite] = ACTIONS(6421), - [anon_sym_BSLASHTvolcite] = ACTIONS(6421), - [anon_sym_BSLASHavolcite] = ACTIONS(6421), - [anon_sym_BSLASHAvolcite] = ACTIONS(6421), - [anon_sym_BSLASHnotecite] = ACTIONS(6421), - [anon_sym_BSLASHNotecite] = ACTIONS(6421), - [anon_sym_BSLASHpnotecite] = ACTIONS(6421), - [anon_sym_BSLASHPnotecite] = ACTIONS(6421), - [anon_sym_BSLASHfnotecite] = ACTIONS(6421), - [anon_sym_BSLASHlabel] = ACTIONS(6421), - [anon_sym_BSLASHref] = ACTIONS(6421), - [anon_sym_BSLASHeqref] = ACTIONS(6421), - [anon_sym_BSLASHvref] = ACTIONS(6421), - [anon_sym_BSLASHVref] = ACTIONS(6421), - [anon_sym_BSLASHautoref] = ACTIONS(6421), - [anon_sym_BSLASHpageref] = ACTIONS(6421), - [anon_sym_BSLASHcref] = ACTIONS(6421), - [anon_sym_BSLASHCref] = ACTIONS(6421), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnameCref] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHlabelcref] = ACTIONS(6421), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCrefrange] = ACTIONS(6421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnewlabel] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6421), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6421), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6423), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHdef] = ACTIONS(6421), - [anon_sym_BSLASHlet] = ACTIONS(6421), - [anon_sym_BSLASHleft] = ACTIONS(6421), - [anon_sym_BSLASHbig] = ACTIONS(6421), - [anon_sym_BSLASHBig] = ACTIONS(6421), - [anon_sym_BSLASHbigg] = ACTIONS(6421), - [anon_sym_BSLASHBigg] = ACTIONS(6421), - [anon_sym_BSLASHbigl] = ACTIONS(6421), - [anon_sym_BSLASHBigl] = ACTIONS(6421), - [anon_sym_BSLASHbiggl] = ACTIONS(6421), - [anon_sym_BSLASHBiggl] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6421), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6421), - [anon_sym_BSLASHgls] = ACTIONS(6421), - [anon_sym_BSLASHGls] = ACTIONS(6421), - [anon_sym_BSLASHGLS] = ACTIONS(6421), - [anon_sym_BSLASHglspl] = ACTIONS(6421), - [anon_sym_BSLASHGlspl] = ACTIONS(6421), - [anon_sym_BSLASHGLSpl] = ACTIONS(6421), - [anon_sym_BSLASHglsdisp] = ACTIONS(6421), - [anon_sym_BSLASHglslink] = ACTIONS(6421), - [anon_sym_BSLASHglstext] = ACTIONS(6421), - [anon_sym_BSLASHGlstext] = ACTIONS(6421), - [anon_sym_BSLASHGLStext] = ACTIONS(6421), - [anon_sym_BSLASHglsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6421), - [anon_sym_BSLASHglsplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSplural] = ACTIONS(6421), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHglsname] = ACTIONS(6421), - [anon_sym_BSLASHGlsname] = ACTIONS(6421), - [anon_sym_BSLASHGLSname] = ACTIONS(6421), - [anon_sym_BSLASHglssymbol] = ACTIONS(6421), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6421), - [anon_sym_BSLASHglsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6421), - [anon_sym_BSLASHglsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6421), - [anon_sym_BSLASHglsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6421), - [anon_sym_BSLASHglsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6421), - [anon_sym_BSLASHglsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6421), - [anon_sym_BSLASHnewacronym] = ACTIONS(6421), - [anon_sym_BSLASHacrshort] = ACTIONS(6421), - [anon_sym_BSLASHAcrshort] = ACTIONS(6421), - [anon_sym_BSLASHACRshort] = ACTIONS(6421), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6421), - [anon_sym_BSLASHacrlong] = ACTIONS(6421), - [anon_sym_BSLASHAcrlong] = ACTIONS(6421), - [anon_sym_BSLASHACRlong] = ACTIONS(6421), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6421), - [anon_sym_BSLASHacrfull] = ACTIONS(6421), - [anon_sym_BSLASHAcrfull] = ACTIONS(6421), - [anon_sym_BSLASHACRfull] = ACTIONS(6421), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6421), - [anon_sym_BSLASHacs] = ACTIONS(6421), - [anon_sym_BSLASHAcs] = ACTIONS(6421), - [anon_sym_BSLASHacsp] = ACTIONS(6421), - [anon_sym_BSLASHAcsp] = ACTIONS(6421), - [anon_sym_BSLASHacl] = ACTIONS(6421), - [anon_sym_BSLASHAcl] = ACTIONS(6421), - [anon_sym_BSLASHaclp] = ACTIONS(6421), - [anon_sym_BSLASHAclp] = ACTIONS(6421), - [anon_sym_BSLASHacf] = ACTIONS(6421), - [anon_sym_BSLASHAcf] = ACTIONS(6421), - [anon_sym_BSLASHacfp] = ACTIONS(6421), - [anon_sym_BSLASHAcfp] = ACTIONS(6421), - [anon_sym_BSLASHac] = ACTIONS(6421), - [anon_sym_BSLASHAc] = ACTIONS(6421), - [anon_sym_BSLASHacp] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6421), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6421), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6421), - [anon_sym_BSLASHcolor] = ACTIONS(6421), - [anon_sym_BSLASHcolorbox] = ACTIONS(6421), - [anon_sym_BSLASHtextcolor] = ACTIONS(6421), - [anon_sym_BSLASHpagecolor] = ACTIONS(6421), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6421), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6421), - [anon_sym_BSLASHtext] = ACTIONS(6421), - [anon_sym_BSLASHintertext] = ACTIONS(6421), - [anon_sym_shortintertext] = ACTIONS(6421), - }, - [1568] = { - [sym_command_name] = ACTIONS(6425), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6425), - [anon_sym_LBRACK] = ACTIONS(6427), - [anon_sym_RBRACK] = ACTIONS(6427), - [anon_sym_COMMA] = ACTIONS(6427), - [anon_sym_EQ] = ACTIONS(6427), - [anon_sym_LPAREN] = ACTIONS(6427), - [anon_sym_RPAREN] = ACTIONS(6427), - [anon_sym_LBRACE] = ACTIONS(6427), - [sym_word] = ACTIONS(6425), - [sym_placeholder] = ACTIONS(6427), - [anon_sym_PLUS] = ACTIONS(6427), - [anon_sym_DASH] = ACTIONS(6427), - [anon_sym_STAR] = ACTIONS(6427), - [anon_sym_SLASH] = ACTIONS(6427), - [anon_sym_LT] = ACTIONS(6425), - [anon_sym_GT] = ACTIONS(6425), - [anon_sym_BANG] = ACTIONS(6425), - [anon_sym_PIPE] = ACTIONS(6425), - [anon_sym_COLON] = ACTIONS(6425), - [anon_sym_SQUOTE] = ACTIONS(6425), - [anon_sym__] = ACTIONS(6427), - [anon_sym_CARET] = ACTIONS(6427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6427), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6427), - [anon_sym_DOLLAR] = ACTIONS(6425), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6427), - [anon_sym_BSLASHbegin] = ACTIONS(6425), - [anon_sym_BSLASHend] = ACTIONS(6425), - [anon_sym_BSLASHtitle] = ACTIONS(6425), - [anon_sym_BSLASHauthor] = ACTIONS(6425), - [anon_sym_BSLASHusepackage] = ACTIONS(6425), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6425), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6425), - [anon_sym_BSLASHinclude] = ACTIONS(6425), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6425), - [anon_sym_BSLASHinput] = ACTIONS(6425), - [anon_sym_BSLASHsubfile] = ACTIONS(6425), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6425), - [anon_sym_BSLASHbibliography] = ACTIONS(6425), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6425), - [anon_sym_BSLASHincludesvg] = ACTIONS(6425), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6425), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6425), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6425), - [anon_sym_BSLASHimport] = ACTIONS(6425), - [anon_sym_BSLASHsubimport] = ACTIONS(6425), - [anon_sym_BSLASHinputfrom] = ACTIONS(6425), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6425), - [anon_sym_BSLASHincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHcaption] = ACTIONS(6425), - [anon_sym_BSLASHcite] = ACTIONS(6425), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCite] = ACTIONS(6425), - [anon_sym_BSLASHnocite] = ACTIONS(6425), - [anon_sym_BSLASHcitet] = ACTIONS(6425), - [anon_sym_BSLASHcitep] = ACTIONS(6425), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteauthor] = ACTIONS(6425), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6425), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitetitle] = ACTIONS(6425), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteyear] = ACTIONS(6425), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitedate] = ACTIONS(6425), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteurl] = ACTIONS(6425), - [anon_sym_BSLASHfullcite] = ACTIONS(6425), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6425), - [anon_sym_BSLASHcitealt] = ACTIONS(6425), - [anon_sym_BSLASHcitealp] = ACTIONS(6425), - [anon_sym_BSLASHcitetext] = ACTIONS(6425), - [anon_sym_BSLASHparencite] = ACTIONS(6425), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHParencite] = ACTIONS(6425), - [anon_sym_BSLASHfootcite] = ACTIONS(6425), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6425), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6425), - [anon_sym_BSLASHtextcite] = ACTIONS(6425), - [anon_sym_BSLASHTextcite] = ACTIONS(6425), - [anon_sym_BSLASHsmartcite] = ACTIONS(6425), - [anon_sym_BSLASHSmartcite] = ACTIONS(6425), - [anon_sym_BSLASHsupercite] = ACTIONS(6425), - [anon_sym_BSLASHautocite] = ACTIONS(6425), - [anon_sym_BSLASHAutocite] = ACTIONS(6425), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHvolcite] = ACTIONS(6425), - [anon_sym_BSLASHVolcite] = ACTIONS(6425), - [anon_sym_BSLASHpvolcite] = ACTIONS(6425), - [anon_sym_BSLASHPvolcite] = ACTIONS(6425), - [anon_sym_BSLASHfvolcite] = ACTIONS(6425), - [anon_sym_BSLASHftvolcite] = ACTIONS(6425), - [anon_sym_BSLASHsvolcite] = ACTIONS(6425), - [anon_sym_BSLASHSvolcite] = ACTIONS(6425), - [anon_sym_BSLASHtvolcite] = ACTIONS(6425), - [anon_sym_BSLASHTvolcite] = ACTIONS(6425), - [anon_sym_BSLASHavolcite] = ACTIONS(6425), - [anon_sym_BSLASHAvolcite] = ACTIONS(6425), - [anon_sym_BSLASHnotecite] = ACTIONS(6425), - [anon_sym_BSLASHNotecite] = ACTIONS(6425), - [anon_sym_BSLASHpnotecite] = ACTIONS(6425), - [anon_sym_BSLASHPnotecite] = ACTIONS(6425), - [anon_sym_BSLASHfnotecite] = ACTIONS(6425), - [anon_sym_BSLASHlabel] = ACTIONS(6425), - [anon_sym_BSLASHref] = ACTIONS(6425), - [anon_sym_BSLASHeqref] = ACTIONS(6425), - [anon_sym_BSLASHvref] = ACTIONS(6425), - [anon_sym_BSLASHVref] = ACTIONS(6425), - [anon_sym_BSLASHautoref] = ACTIONS(6425), - [anon_sym_BSLASHpageref] = ACTIONS(6425), - [anon_sym_BSLASHcref] = ACTIONS(6425), - [anon_sym_BSLASHCref] = ACTIONS(6425), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnameCref] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHlabelcref] = ACTIONS(6425), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCrefrange] = ACTIONS(6425), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnewlabel] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6425), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6425), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6427), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHdef] = ACTIONS(6425), - [anon_sym_BSLASHlet] = ACTIONS(6425), - [anon_sym_BSLASHleft] = ACTIONS(6425), - [anon_sym_BSLASHbig] = ACTIONS(6425), - [anon_sym_BSLASHBig] = ACTIONS(6425), - [anon_sym_BSLASHbigg] = ACTIONS(6425), - [anon_sym_BSLASHBigg] = ACTIONS(6425), - [anon_sym_BSLASHbigl] = ACTIONS(6425), - [anon_sym_BSLASHBigl] = ACTIONS(6425), - [anon_sym_BSLASHbiggl] = ACTIONS(6425), - [anon_sym_BSLASHBiggl] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6425), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6425), - [anon_sym_BSLASHgls] = ACTIONS(6425), - [anon_sym_BSLASHGls] = ACTIONS(6425), - [anon_sym_BSLASHGLS] = ACTIONS(6425), - [anon_sym_BSLASHglspl] = ACTIONS(6425), - [anon_sym_BSLASHGlspl] = ACTIONS(6425), - [anon_sym_BSLASHGLSpl] = ACTIONS(6425), - [anon_sym_BSLASHglsdisp] = ACTIONS(6425), - [anon_sym_BSLASHglslink] = ACTIONS(6425), - [anon_sym_BSLASHglstext] = ACTIONS(6425), - [anon_sym_BSLASHGlstext] = ACTIONS(6425), - [anon_sym_BSLASHGLStext] = ACTIONS(6425), - [anon_sym_BSLASHglsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6425), - [anon_sym_BSLASHglsplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSplural] = ACTIONS(6425), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHglsname] = ACTIONS(6425), - [anon_sym_BSLASHGlsname] = ACTIONS(6425), - [anon_sym_BSLASHGLSname] = ACTIONS(6425), - [anon_sym_BSLASHglssymbol] = ACTIONS(6425), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6425), - [anon_sym_BSLASHglsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6425), - [anon_sym_BSLASHglsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6425), - [anon_sym_BSLASHglsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6425), - [anon_sym_BSLASHglsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6425), - [anon_sym_BSLASHglsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6425), - [anon_sym_BSLASHnewacronym] = ACTIONS(6425), - [anon_sym_BSLASHacrshort] = ACTIONS(6425), - [anon_sym_BSLASHAcrshort] = ACTIONS(6425), - [anon_sym_BSLASHACRshort] = ACTIONS(6425), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6425), - [anon_sym_BSLASHacrlong] = ACTIONS(6425), - [anon_sym_BSLASHAcrlong] = ACTIONS(6425), - [anon_sym_BSLASHACRlong] = ACTIONS(6425), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6425), - [anon_sym_BSLASHacrfull] = ACTIONS(6425), - [anon_sym_BSLASHAcrfull] = ACTIONS(6425), - [anon_sym_BSLASHACRfull] = ACTIONS(6425), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6425), - [anon_sym_BSLASHacs] = ACTIONS(6425), - [anon_sym_BSLASHAcs] = ACTIONS(6425), - [anon_sym_BSLASHacsp] = ACTIONS(6425), - [anon_sym_BSLASHAcsp] = ACTIONS(6425), - [anon_sym_BSLASHacl] = ACTIONS(6425), - [anon_sym_BSLASHAcl] = ACTIONS(6425), - [anon_sym_BSLASHaclp] = ACTIONS(6425), - [anon_sym_BSLASHAclp] = ACTIONS(6425), - [anon_sym_BSLASHacf] = ACTIONS(6425), - [anon_sym_BSLASHAcf] = ACTIONS(6425), - [anon_sym_BSLASHacfp] = ACTIONS(6425), - [anon_sym_BSLASHAcfp] = ACTIONS(6425), - [anon_sym_BSLASHac] = ACTIONS(6425), - [anon_sym_BSLASHAc] = ACTIONS(6425), - [anon_sym_BSLASHacp] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6425), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6425), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6425), - [anon_sym_BSLASHcolor] = ACTIONS(6425), - [anon_sym_BSLASHcolorbox] = ACTIONS(6425), - [anon_sym_BSLASHtextcolor] = ACTIONS(6425), - [anon_sym_BSLASHpagecolor] = ACTIONS(6425), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6425), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6425), - [anon_sym_BSLASHtext] = ACTIONS(6425), - [anon_sym_BSLASHintertext] = ACTIONS(6425), - [anon_sym_shortintertext] = ACTIONS(6425), - }, - [1569] = { - [sym_command_name] = ACTIONS(6429), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6429), - [anon_sym_LBRACK] = ACTIONS(6431), - [anon_sym_RBRACK] = ACTIONS(6431), - [anon_sym_COMMA] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(6431), - [anon_sym_LPAREN] = ACTIONS(6431), - [anon_sym_RPAREN] = ACTIONS(6431), - [anon_sym_LBRACE] = ACTIONS(6431), - [sym_word] = ACTIONS(6429), - [sym_placeholder] = ACTIONS(6431), - [anon_sym_PLUS] = ACTIONS(6431), - [anon_sym_DASH] = ACTIONS(6431), - [anon_sym_STAR] = ACTIONS(6431), - [anon_sym_SLASH] = ACTIONS(6431), - [anon_sym_LT] = ACTIONS(6429), - [anon_sym_GT] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(6429), - [anon_sym_PIPE] = ACTIONS(6429), - [anon_sym_COLON] = ACTIONS(6429), - [anon_sym_SQUOTE] = ACTIONS(6429), - [anon_sym__] = ACTIONS(6431), - [anon_sym_CARET] = ACTIONS(6431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6431), - [anon_sym_DOLLAR] = ACTIONS(6429), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6431), - [anon_sym_BSLASHbegin] = ACTIONS(6429), - [anon_sym_BSLASHend] = ACTIONS(6429), - [anon_sym_BSLASHtitle] = ACTIONS(6429), - [anon_sym_BSLASHauthor] = ACTIONS(6429), - [anon_sym_BSLASHusepackage] = ACTIONS(6429), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6429), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6429), - [anon_sym_BSLASHinclude] = ACTIONS(6429), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6429), - [anon_sym_BSLASHinput] = ACTIONS(6429), - [anon_sym_BSLASHsubfile] = ACTIONS(6429), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6429), - [anon_sym_BSLASHbibliography] = ACTIONS(6429), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6429), - [anon_sym_BSLASHincludesvg] = ACTIONS(6429), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6429), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6429), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6429), - [anon_sym_BSLASHimport] = ACTIONS(6429), - [anon_sym_BSLASHsubimport] = ACTIONS(6429), - [anon_sym_BSLASHinputfrom] = ACTIONS(6429), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6429), - [anon_sym_BSLASHincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHcaption] = ACTIONS(6429), - [anon_sym_BSLASHcite] = ACTIONS(6429), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCite] = ACTIONS(6429), - [anon_sym_BSLASHnocite] = ACTIONS(6429), - [anon_sym_BSLASHcitet] = ACTIONS(6429), - [anon_sym_BSLASHcitep] = ACTIONS(6429), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteauthor] = ACTIONS(6429), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6429), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitetitle] = ACTIONS(6429), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteyear] = ACTIONS(6429), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitedate] = ACTIONS(6429), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteurl] = ACTIONS(6429), - [anon_sym_BSLASHfullcite] = ACTIONS(6429), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6429), - [anon_sym_BSLASHcitealt] = ACTIONS(6429), - [anon_sym_BSLASHcitealp] = ACTIONS(6429), - [anon_sym_BSLASHcitetext] = ACTIONS(6429), - [anon_sym_BSLASHparencite] = ACTIONS(6429), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHParencite] = ACTIONS(6429), - [anon_sym_BSLASHfootcite] = ACTIONS(6429), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6429), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6429), - [anon_sym_BSLASHtextcite] = ACTIONS(6429), - [anon_sym_BSLASHTextcite] = ACTIONS(6429), - [anon_sym_BSLASHsmartcite] = ACTIONS(6429), - [anon_sym_BSLASHSmartcite] = ACTIONS(6429), - [anon_sym_BSLASHsupercite] = ACTIONS(6429), - [anon_sym_BSLASHautocite] = ACTIONS(6429), - [anon_sym_BSLASHAutocite] = ACTIONS(6429), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHvolcite] = ACTIONS(6429), - [anon_sym_BSLASHVolcite] = ACTIONS(6429), - [anon_sym_BSLASHpvolcite] = ACTIONS(6429), - [anon_sym_BSLASHPvolcite] = ACTIONS(6429), - [anon_sym_BSLASHfvolcite] = ACTIONS(6429), - [anon_sym_BSLASHftvolcite] = ACTIONS(6429), - [anon_sym_BSLASHsvolcite] = ACTIONS(6429), - [anon_sym_BSLASHSvolcite] = ACTIONS(6429), - [anon_sym_BSLASHtvolcite] = ACTIONS(6429), - [anon_sym_BSLASHTvolcite] = ACTIONS(6429), - [anon_sym_BSLASHavolcite] = ACTIONS(6429), - [anon_sym_BSLASHAvolcite] = ACTIONS(6429), - [anon_sym_BSLASHnotecite] = ACTIONS(6429), - [anon_sym_BSLASHNotecite] = ACTIONS(6429), - [anon_sym_BSLASHpnotecite] = ACTIONS(6429), - [anon_sym_BSLASHPnotecite] = ACTIONS(6429), - [anon_sym_BSLASHfnotecite] = ACTIONS(6429), - [anon_sym_BSLASHlabel] = ACTIONS(6429), - [anon_sym_BSLASHref] = ACTIONS(6429), - [anon_sym_BSLASHeqref] = ACTIONS(6429), - [anon_sym_BSLASHvref] = ACTIONS(6429), - [anon_sym_BSLASHVref] = ACTIONS(6429), - [anon_sym_BSLASHautoref] = ACTIONS(6429), - [anon_sym_BSLASHpageref] = ACTIONS(6429), - [anon_sym_BSLASHcref] = ACTIONS(6429), - [anon_sym_BSLASHCref] = ACTIONS(6429), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnameCref] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHlabelcref] = ACTIONS(6429), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCrefrange] = ACTIONS(6429), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnewlabel] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6429), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6429), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6431), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHdef] = ACTIONS(6429), - [anon_sym_BSLASHlet] = ACTIONS(6429), - [anon_sym_BSLASHleft] = ACTIONS(6429), - [anon_sym_BSLASHbig] = ACTIONS(6429), - [anon_sym_BSLASHBig] = ACTIONS(6429), - [anon_sym_BSLASHbigg] = ACTIONS(6429), - [anon_sym_BSLASHBigg] = ACTIONS(6429), - [anon_sym_BSLASHbigl] = ACTIONS(6429), - [anon_sym_BSLASHBigl] = ACTIONS(6429), - [anon_sym_BSLASHbiggl] = ACTIONS(6429), - [anon_sym_BSLASHBiggl] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6429), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6429), - [anon_sym_BSLASHgls] = ACTIONS(6429), - [anon_sym_BSLASHGls] = ACTIONS(6429), - [anon_sym_BSLASHGLS] = ACTIONS(6429), - [anon_sym_BSLASHglspl] = ACTIONS(6429), - [anon_sym_BSLASHGlspl] = ACTIONS(6429), - [anon_sym_BSLASHGLSpl] = ACTIONS(6429), - [anon_sym_BSLASHglsdisp] = ACTIONS(6429), - [anon_sym_BSLASHglslink] = ACTIONS(6429), - [anon_sym_BSLASHglstext] = ACTIONS(6429), - [anon_sym_BSLASHGlstext] = ACTIONS(6429), - [anon_sym_BSLASHGLStext] = ACTIONS(6429), - [anon_sym_BSLASHglsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6429), - [anon_sym_BSLASHglsplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSplural] = ACTIONS(6429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHglsname] = ACTIONS(6429), - [anon_sym_BSLASHGlsname] = ACTIONS(6429), - [anon_sym_BSLASHGLSname] = ACTIONS(6429), - [anon_sym_BSLASHglssymbol] = ACTIONS(6429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6429), - [anon_sym_BSLASHglsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6429), - [anon_sym_BSLASHglsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6429), - [anon_sym_BSLASHglsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6429), - [anon_sym_BSLASHglsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6429), - [anon_sym_BSLASHglsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6429), - [anon_sym_BSLASHnewacronym] = ACTIONS(6429), - [anon_sym_BSLASHacrshort] = ACTIONS(6429), - [anon_sym_BSLASHAcrshort] = ACTIONS(6429), - [anon_sym_BSLASHACRshort] = ACTIONS(6429), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6429), - [anon_sym_BSLASHacrlong] = ACTIONS(6429), - [anon_sym_BSLASHAcrlong] = ACTIONS(6429), - [anon_sym_BSLASHACRlong] = ACTIONS(6429), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6429), - [anon_sym_BSLASHacrfull] = ACTIONS(6429), - [anon_sym_BSLASHAcrfull] = ACTIONS(6429), - [anon_sym_BSLASHACRfull] = ACTIONS(6429), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6429), - [anon_sym_BSLASHacs] = ACTIONS(6429), - [anon_sym_BSLASHAcs] = ACTIONS(6429), - [anon_sym_BSLASHacsp] = ACTIONS(6429), - [anon_sym_BSLASHAcsp] = ACTIONS(6429), - [anon_sym_BSLASHacl] = ACTIONS(6429), - [anon_sym_BSLASHAcl] = ACTIONS(6429), - [anon_sym_BSLASHaclp] = ACTIONS(6429), - [anon_sym_BSLASHAclp] = ACTIONS(6429), - [anon_sym_BSLASHacf] = ACTIONS(6429), - [anon_sym_BSLASHAcf] = ACTIONS(6429), - [anon_sym_BSLASHacfp] = ACTIONS(6429), - [anon_sym_BSLASHAcfp] = ACTIONS(6429), - [anon_sym_BSLASHac] = ACTIONS(6429), - [anon_sym_BSLASHAc] = ACTIONS(6429), - [anon_sym_BSLASHacp] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6429), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6429), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6429), - [anon_sym_BSLASHcolor] = ACTIONS(6429), - [anon_sym_BSLASHcolorbox] = ACTIONS(6429), - [anon_sym_BSLASHtextcolor] = ACTIONS(6429), - [anon_sym_BSLASHpagecolor] = ACTIONS(6429), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6429), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6429), - [anon_sym_BSLASHtext] = ACTIONS(6429), - [anon_sym_BSLASHintertext] = ACTIONS(6429), - [anon_sym_shortintertext] = ACTIONS(6429), - }, - [1570] = { - [sym_command_name] = ACTIONS(6433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6433), - [anon_sym_LBRACK] = ACTIONS(6435), - [anon_sym_RBRACK] = ACTIONS(6435), - [anon_sym_COMMA] = ACTIONS(6435), - [anon_sym_EQ] = ACTIONS(6435), - [anon_sym_LPAREN] = ACTIONS(6435), - [anon_sym_RPAREN] = ACTIONS(6435), - [anon_sym_LBRACE] = ACTIONS(6435), - [sym_word] = ACTIONS(6433), - [sym_placeholder] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6435), - [anon_sym_DASH] = ACTIONS(6435), - [anon_sym_STAR] = ACTIONS(6435), - [anon_sym_SLASH] = ACTIONS(6435), - [anon_sym_LT] = ACTIONS(6433), - [anon_sym_GT] = ACTIONS(6433), - [anon_sym_BANG] = ACTIONS(6433), - [anon_sym_PIPE] = ACTIONS(6433), - [anon_sym_COLON] = ACTIONS(6433), - [anon_sym_SQUOTE] = ACTIONS(6433), - [anon_sym__] = ACTIONS(6435), - [anon_sym_CARET] = ACTIONS(6435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6435), - [anon_sym_DOLLAR] = ACTIONS(6433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6435), - [anon_sym_BSLASHbegin] = ACTIONS(6433), - [anon_sym_BSLASHend] = ACTIONS(6433), - [anon_sym_BSLASHtitle] = ACTIONS(6433), - [anon_sym_BSLASHauthor] = ACTIONS(6433), - [anon_sym_BSLASHusepackage] = ACTIONS(6433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6433), - [anon_sym_BSLASHinclude] = ACTIONS(6433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6433), - [anon_sym_BSLASHinput] = ACTIONS(6433), - [anon_sym_BSLASHsubfile] = ACTIONS(6433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6433), - [anon_sym_BSLASHbibliography] = ACTIONS(6433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6433), - [anon_sym_BSLASHincludesvg] = ACTIONS(6433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6433), - [anon_sym_BSLASHimport] = ACTIONS(6433), - [anon_sym_BSLASHsubimport] = ACTIONS(6433), - [anon_sym_BSLASHinputfrom] = ACTIONS(6433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6433), - [anon_sym_BSLASHincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHcaption] = ACTIONS(6433), - [anon_sym_BSLASHcite] = ACTIONS(6433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCite] = ACTIONS(6433), - [anon_sym_BSLASHnocite] = ACTIONS(6433), - [anon_sym_BSLASHcitet] = ACTIONS(6433), - [anon_sym_BSLASHcitep] = ACTIONS(6433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteauthor] = ACTIONS(6433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitetitle] = ACTIONS(6433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteyear] = ACTIONS(6433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitedate] = ACTIONS(6433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteurl] = ACTIONS(6433), - [anon_sym_BSLASHfullcite] = ACTIONS(6433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6433), - [anon_sym_BSLASHcitealt] = ACTIONS(6433), - [anon_sym_BSLASHcitealp] = ACTIONS(6433), - [anon_sym_BSLASHcitetext] = ACTIONS(6433), - [anon_sym_BSLASHparencite] = ACTIONS(6433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHParencite] = ACTIONS(6433), - [anon_sym_BSLASHfootcite] = ACTIONS(6433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6433), - [anon_sym_BSLASHtextcite] = ACTIONS(6433), - [anon_sym_BSLASHTextcite] = ACTIONS(6433), - [anon_sym_BSLASHsmartcite] = ACTIONS(6433), - [anon_sym_BSLASHSmartcite] = ACTIONS(6433), - [anon_sym_BSLASHsupercite] = ACTIONS(6433), - [anon_sym_BSLASHautocite] = ACTIONS(6433), - [anon_sym_BSLASHAutocite] = ACTIONS(6433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHvolcite] = ACTIONS(6433), - [anon_sym_BSLASHVolcite] = ACTIONS(6433), - [anon_sym_BSLASHpvolcite] = ACTIONS(6433), - [anon_sym_BSLASHPvolcite] = ACTIONS(6433), - [anon_sym_BSLASHfvolcite] = ACTIONS(6433), - [anon_sym_BSLASHftvolcite] = ACTIONS(6433), - [anon_sym_BSLASHsvolcite] = ACTIONS(6433), - [anon_sym_BSLASHSvolcite] = ACTIONS(6433), - [anon_sym_BSLASHtvolcite] = ACTIONS(6433), - [anon_sym_BSLASHTvolcite] = ACTIONS(6433), - [anon_sym_BSLASHavolcite] = ACTIONS(6433), - [anon_sym_BSLASHAvolcite] = ACTIONS(6433), - [anon_sym_BSLASHnotecite] = ACTIONS(6433), - [anon_sym_BSLASHNotecite] = ACTIONS(6433), - [anon_sym_BSLASHpnotecite] = ACTIONS(6433), - [anon_sym_BSLASHPnotecite] = ACTIONS(6433), - [anon_sym_BSLASHfnotecite] = ACTIONS(6433), - [anon_sym_BSLASHlabel] = ACTIONS(6433), - [anon_sym_BSLASHref] = ACTIONS(6433), - [anon_sym_BSLASHeqref] = ACTIONS(6433), - [anon_sym_BSLASHvref] = ACTIONS(6433), - [anon_sym_BSLASHVref] = ACTIONS(6433), - [anon_sym_BSLASHautoref] = ACTIONS(6433), - [anon_sym_BSLASHpageref] = ACTIONS(6433), - [anon_sym_BSLASHcref] = ACTIONS(6433), - [anon_sym_BSLASHCref] = ACTIONS(6433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnameCref] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHlabelcref] = ACTIONS(6433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCrefrange] = ACTIONS(6433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnewlabel] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6435), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHdef] = ACTIONS(6433), - [anon_sym_BSLASHlet] = ACTIONS(6433), - [anon_sym_BSLASHleft] = ACTIONS(6433), - [anon_sym_BSLASHbig] = ACTIONS(6433), - [anon_sym_BSLASHBig] = ACTIONS(6433), - [anon_sym_BSLASHbigg] = ACTIONS(6433), - [anon_sym_BSLASHBigg] = ACTIONS(6433), - [anon_sym_BSLASHbigl] = ACTIONS(6433), - [anon_sym_BSLASHBigl] = ACTIONS(6433), - [anon_sym_BSLASHbiggl] = ACTIONS(6433), - [anon_sym_BSLASHBiggl] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6433), - [anon_sym_BSLASHgls] = ACTIONS(6433), - [anon_sym_BSLASHGls] = ACTIONS(6433), - [anon_sym_BSLASHGLS] = ACTIONS(6433), - [anon_sym_BSLASHglspl] = ACTIONS(6433), - [anon_sym_BSLASHGlspl] = ACTIONS(6433), - [anon_sym_BSLASHGLSpl] = ACTIONS(6433), - [anon_sym_BSLASHglsdisp] = ACTIONS(6433), - [anon_sym_BSLASHglslink] = ACTIONS(6433), - [anon_sym_BSLASHglstext] = ACTIONS(6433), - [anon_sym_BSLASHGlstext] = ACTIONS(6433), - [anon_sym_BSLASHGLStext] = ACTIONS(6433), - [anon_sym_BSLASHglsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6433), - [anon_sym_BSLASHglsplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSplural] = ACTIONS(6433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHglsname] = ACTIONS(6433), - [anon_sym_BSLASHGlsname] = ACTIONS(6433), - [anon_sym_BSLASHGLSname] = ACTIONS(6433), - [anon_sym_BSLASHglssymbol] = ACTIONS(6433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6433), - [anon_sym_BSLASHglsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6433), - [anon_sym_BSLASHglsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6433), - [anon_sym_BSLASHglsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6433), - [anon_sym_BSLASHglsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6433), - [anon_sym_BSLASHglsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6433), - [anon_sym_BSLASHnewacronym] = ACTIONS(6433), - [anon_sym_BSLASHacrshort] = ACTIONS(6433), - [anon_sym_BSLASHAcrshort] = ACTIONS(6433), - [anon_sym_BSLASHACRshort] = ACTIONS(6433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6433), - [anon_sym_BSLASHacrlong] = ACTIONS(6433), - [anon_sym_BSLASHAcrlong] = ACTIONS(6433), - [anon_sym_BSLASHACRlong] = ACTIONS(6433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6433), - [anon_sym_BSLASHacrfull] = ACTIONS(6433), - [anon_sym_BSLASHAcrfull] = ACTIONS(6433), - [anon_sym_BSLASHACRfull] = ACTIONS(6433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6433), - [anon_sym_BSLASHacs] = ACTIONS(6433), - [anon_sym_BSLASHAcs] = ACTIONS(6433), - [anon_sym_BSLASHacsp] = ACTIONS(6433), - [anon_sym_BSLASHAcsp] = ACTIONS(6433), - [anon_sym_BSLASHacl] = ACTIONS(6433), - [anon_sym_BSLASHAcl] = ACTIONS(6433), - [anon_sym_BSLASHaclp] = ACTIONS(6433), - [anon_sym_BSLASHAclp] = ACTIONS(6433), - [anon_sym_BSLASHacf] = ACTIONS(6433), - [anon_sym_BSLASHAcf] = ACTIONS(6433), - [anon_sym_BSLASHacfp] = ACTIONS(6433), - [anon_sym_BSLASHAcfp] = ACTIONS(6433), - [anon_sym_BSLASHac] = ACTIONS(6433), - [anon_sym_BSLASHAc] = ACTIONS(6433), - [anon_sym_BSLASHacp] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6433), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6433), - [anon_sym_BSLASHcolor] = ACTIONS(6433), - [anon_sym_BSLASHcolorbox] = ACTIONS(6433), - [anon_sym_BSLASHtextcolor] = ACTIONS(6433), - [anon_sym_BSLASHpagecolor] = ACTIONS(6433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6433), - [anon_sym_BSLASHtext] = ACTIONS(6433), - [anon_sym_BSLASHintertext] = ACTIONS(6433), - [anon_sym_shortintertext] = ACTIONS(6433), - }, - [1571] = { - [sym_command_name] = ACTIONS(6437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6437), - [anon_sym_LBRACK] = ACTIONS(6439), - [anon_sym_RBRACK] = ACTIONS(6439), - [anon_sym_COMMA] = ACTIONS(6439), - [anon_sym_EQ] = ACTIONS(6439), - [anon_sym_LPAREN] = ACTIONS(6439), - [anon_sym_RPAREN] = ACTIONS(6439), - [anon_sym_LBRACE] = ACTIONS(6439), - [sym_word] = ACTIONS(6437), - [sym_placeholder] = ACTIONS(6439), - [anon_sym_PLUS] = ACTIONS(6439), - [anon_sym_DASH] = ACTIONS(6439), - [anon_sym_STAR] = ACTIONS(6439), - [anon_sym_SLASH] = ACTIONS(6439), - [anon_sym_LT] = ACTIONS(6437), - [anon_sym_GT] = ACTIONS(6437), - [anon_sym_BANG] = ACTIONS(6437), - [anon_sym_PIPE] = ACTIONS(6437), - [anon_sym_COLON] = ACTIONS(6437), - [anon_sym_SQUOTE] = ACTIONS(6437), - [anon_sym__] = ACTIONS(6439), - [anon_sym_CARET] = ACTIONS(6439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6439), - [anon_sym_DOLLAR] = ACTIONS(6437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6439), - [anon_sym_BSLASHbegin] = ACTIONS(6437), - [anon_sym_BSLASHend] = ACTIONS(6437), - [anon_sym_BSLASHtitle] = ACTIONS(6437), - [anon_sym_BSLASHauthor] = ACTIONS(6437), - [anon_sym_BSLASHusepackage] = ACTIONS(6437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6437), - [anon_sym_BSLASHinclude] = ACTIONS(6437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6437), - [anon_sym_BSLASHinput] = ACTIONS(6437), - [anon_sym_BSLASHsubfile] = ACTIONS(6437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6437), - [anon_sym_BSLASHbibliography] = ACTIONS(6437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6437), - [anon_sym_BSLASHincludesvg] = ACTIONS(6437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6437), - [anon_sym_BSLASHimport] = ACTIONS(6437), - [anon_sym_BSLASHsubimport] = ACTIONS(6437), - [anon_sym_BSLASHinputfrom] = ACTIONS(6437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6437), - [anon_sym_BSLASHincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHcaption] = ACTIONS(6437), - [anon_sym_BSLASHcite] = ACTIONS(6437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCite] = ACTIONS(6437), - [anon_sym_BSLASHnocite] = ACTIONS(6437), - [anon_sym_BSLASHcitet] = ACTIONS(6437), - [anon_sym_BSLASHcitep] = ACTIONS(6437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteauthor] = ACTIONS(6437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitetitle] = ACTIONS(6437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteyear] = ACTIONS(6437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitedate] = ACTIONS(6437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteurl] = ACTIONS(6437), - [anon_sym_BSLASHfullcite] = ACTIONS(6437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6437), - [anon_sym_BSLASHcitealt] = ACTIONS(6437), - [anon_sym_BSLASHcitealp] = ACTIONS(6437), - [anon_sym_BSLASHcitetext] = ACTIONS(6437), - [anon_sym_BSLASHparencite] = ACTIONS(6437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHParencite] = ACTIONS(6437), - [anon_sym_BSLASHfootcite] = ACTIONS(6437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6437), - [anon_sym_BSLASHtextcite] = ACTIONS(6437), - [anon_sym_BSLASHTextcite] = ACTIONS(6437), - [anon_sym_BSLASHsmartcite] = ACTIONS(6437), - [anon_sym_BSLASHSmartcite] = ACTIONS(6437), - [anon_sym_BSLASHsupercite] = ACTIONS(6437), - [anon_sym_BSLASHautocite] = ACTIONS(6437), - [anon_sym_BSLASHAutocite] = ACTIONS(6437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHvolcite] = ACTIONS(6437), - [anon_sym_BSLASHVolcite] = ACTIONS(6437), - [anon_sym_BSLASHpvolcite] = ACTIONS(6437), - [anon_sym_BSLASHPvolcite] = ACTIONS(6437), - [anon_sym_BSLASHfvolcite] = ACTIONS(6437), - [anon_sym_BSLASHftvolcite] = ACTIONS(6437), - [anon_sym_BSLASHsvolcite] = ACTIONS(6437), - [anon_sym_BSLASHSvolcite] = ACTIONS(6437), - [anon_sym_BSLASHtvolcite] = ACTIONS(6437), - [anon_sym_BSLASHTvolcite] = ACTIONS(6437), - [anon_sym_BSLASHavolcite] = ACTIONS(6437), - [anon_sym_BSLASHAvolcite] = ACTIONS(6437), - [anon_sym_BSLASHnotecite] = ACTIONS(6437), - [anon_sym_BSLASHNotecite] = ACTIONS(6437), - [anon_sym_BSLASHpnotecite] = ACTIONS(6437), - [anon_sym_BSLASHPnotecite] = ACTIONS(6437), - [anon_sym_BSLASHfnotecite] = ACTIONS(6437), - [anon_sym_BSLASHlabel] = ACTIONS(6437), - [anon_sym_BSLASHref] = ACTIONS(6437), - [anon_sym_BSLASHeqref] = ACTIONS(6437), - [anon_sym_BSLASHvref] = ACTIONS(6437), - [anon_sym_BSLASHVref] = ACTIONS(6437), - [anon_sym_BSLASHautoref] = ACTIONS(6437), - [anon_sym_BSLASHpageref] = ACTIONS(6437), - [anon_sym_BSLASHcref] = ACTIONS(6437), - [anon_sym_BSLASHCref] = ACTIONS(6437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnameCref] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHlabelcref] = ACTIONS(6437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCrefrange] = ACTIONS(6437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnewlabel] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6439), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHdef] = ACTIONS(6437), - [anon_sym_BSLASHlet] = ACTIONS(6437), - [anon_sym_BSLASHleft] = ACTIONS(6437), - [anon_sym_BSLASHbig] = ACTIONS(6437), - [anon_sym_BSLASHBig] = ACTIONS(6437), - [anon_sym_BSLASHbigg] = ACTIONS(6437), - [anon_sym_BSLASHBigg] = ACTIONS(6437), - [anon_sym_BSLASHbigl] = ACTIONS(6437), - [anon_sym_BSLASHBigl] = ACTIONS(6437), - [anon_sym_BSLASHbiggl] = ACTIONS(6437), - [anon_sym_BSLASHBiggl] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6437), - [anon_sym_BSLASHgls] = ACTIONS(6437), - [anon_sym_BSLASHGls] = ACTIONS(6437), - [anon_sym_BSLASHGLS] = ACTIONS(6437), - [anon_sym_BSLASHglspl] = ACTIONS(6437), - [anon_sym_BSLASHGlspl] = ACTIONS(6437), - [anon_sym_BSLASHGLSpl] = ACTIONS(6437), - [anon_sym_BSLASHglsdisp] = ACTIONS(6437), - [anon_sym_BSLASHglslink] = ACTIONS(6437), - [anon_sym_BSLASHglstext] = ACTIONS(6437), - [anon_sym_BSLASHGlstext] = ACTIONS(6437), - [anon_sym_BSLASHGLStext] = ACTIONS(6437), - [anon_sym_BSLASHglsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6437), - [anon_sym_BSLASHglsplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSplural] = ACTIONS(6437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHglsname] = ACTIONS(6437), - [anon_sym_BSLASHGlsname] = ACTIONS(6437), - [anon_sym_BSLASHGLSname] = ACTIONS(6437), - [anon_sym_BSLASHglssymbol] = ACTIONS(6437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6437), - [anon_sym_BSLASHglsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6437), - [anon_sym_BSLASHglsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6437), - [anon_sym_BSLASHglsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6437), - [anon_sym_BSLASHglsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6437), - [anon_sym_BSLASHglsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6437), - [anon_sym_BSLASHnewacronym] = ACTIONS(6437), - [anon_sym_BSLASHacrshort] = ACTIONS(6437), - [anon_sym_BSLASHAcrshort] = ACTIONS(6437), - [anon_sym_BSLASHACRshort] = ACTIONS(6437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6437), - [anon_sym_BSLASHacrlong] = ACTIONS(6437), - [anon_sym_BSLASHAcrlong] = ACTIONS(6437), - [anon_sym_BSLASHACRlong] = ACTIONS(6437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6437), - [anon_sym_BSLASHacrfull] = ACTIONS(6437), - [anon_sym_BSLASHAcrfull] = ACTIONS(6437), - [anon_sym_BSLASHACRfull] = ACTIONS(6437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6437), - [anon_sym_BSLASHacs] = ACTIONS(6437), - [anon_sym_BSLASHAcs] = ACTIONS(6437), - [anon_sym_BSLASHacsp] = ACTIONS(6437), - [anon_sym_BSLASHAcsp] = ACTIONS(6437), - [anon_sym_BSLASHacl] = ACTIONS(6437), - [anon_sym_BSLASHAcl] = ACTIONS(6437), - [anon_sym_BSLASHaclp] = ACTIONS(6437), - [anon_sym_BSLASHAclp] = ACTIONS(6437), - [anon_sym_BSLASHacf] = ACTIONS(6437), - [anon_sym_BSLASHAcf] = ACTIONS(6437), - [anon_sym_BSLASHacfp] = ACTIONS(6437), - [anon_sym_BSLASHAcfp] = ACTIONS(6437), - [anon_sym_BSLASHac] = ACTIONS(6437), - [anon_sym_BSLASHAc] = ACTIONS(6437), - [anon_sym_BSLASHacp] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6437), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6437), - [anon_sym_BSLASHcolor] = ACTIONS(6437), - [anon_sym_BSLASHcolorbox] = ACTIONS(6437), - [anon_sym_BSLASHtextcolor] = ACTIONS(6437), - [anon_sym_BSLASHpagecolor] = ACTIONS(6437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6437), - [anon_sym_BSLASHtext] = ACTIONS(6437), - [anon_sym_BSLASHintertext] = ACTIONS(6437), - [anon_sym_shortintertext] = ACTIONS(6437), - }, - [1572] = { - [sym_command_name] = ACTIONS(6441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6441), - [anon_sym_LBRACK] = ACTIONS(6443), - [anon_sym_RBRACK] = ACTIONS(6443), - [anon_sym_COMMA] = ACTIONS(6443), - [anon_sym_EQ] = ACTIONS(6443), - [anon_sym_LPAREN] = ACTIONS(6443), - [anon_sym_RPAREN] = ACTIONS(6443), - [anon_sym_LBRACE] = ACTIONS(6443), - [sym_word] = ACTIONS(6441), - [sym_placeholder] = ACTIONS(6443), - [anon_sym_PLUS] = ACTIONS(6443), - [anon_sym_DASH] = ACTIONS(6443), - [anon_sym_STAR] = ACTIONS(6443), - [anon_sym_SLASH] = ACTIONS(6443), - [anon_sym_LT] = ACTIONS(6441), - [anon_sym_GT] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(6441), - [anon_sym_PIPE] = ACTIONS(6441), - [anon_sym_COLON] = ACTIONS(6441), - [anon_sym_SQUOTE] = ACTIONS(6441), - [anon_sym__] = ACTIONS(6443), - [anon_sym_CARET] = ACTIONS(6443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6443), - [anon_sym_DOLLAR] = ACTIONS(6441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6443), - [anon_sym_BSLASHbegin] = ACTIONS(6441), - [anon_sym_BSLASHend] = ACTIONS(6441), - [anon_sym_BSLASHtitle] = ACTIONS(6441), - [anon_sym_BSLASHauthor] = ACTIONS(6441), - [anon_sym_BSLASHusepackage] = ACTIONS(6441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6441), - [anon_sym_BSLASHinclude] = ACTIONS(6441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6441), - [anon_sym_BSLASHinput] = ACTIONS(6441), - [anon_sym_BSLASHsubfile] = ACTIONS(6441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6441), - [anon_sym_BSLASHbibliography] = ACTIONS(6441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6441), - [anon_sym_BSLASHincludesvg] = ACTIONS(6441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6441), - [anon_sym_BSLASHimport] = ACTIONS(6441), - [anon_sym_BSLASHsubimport] = ACTIONS(6441), - [anon_sym_BSLASHinputfrom] = ACTIONS(6441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6441), - [anon_sym_BSLASHincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHcaption] = ACTIONS(6441), - [anon_sym_BSLASHcite] = ACTIONS(6441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCite] = ACTIONS(6441), - [anon_sym_BSLASHnocite] = ACTIONS(6441), - [anon_sym_BSLASHcitet] = ACTIONS(6441), - [anon_sym_BSLASHcitep] = ACTIONS(6441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteauthor] = ACTIONS(6441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitetitle] = ACTIONS(6441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteyear] = ACTIONS(6441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitedate] = ACTIONS(6441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteurl] = ACTIONS(6441), - [anon_sym_BSLASHfullcite] = ACTIONS(6441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6441), - [anon_sym_BSLASHcitealt] = ACTIONS(6441), - [anon_sym_BSLASHcitealp] = ACTIONS(6441), - [anon_sym_BSLASHcitetext] = ACTIONS(6441), - [anon_sym_BSLASHparencite] = ACTIONS(6441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHParencite] = ACTIONS(6441), - [anon_sym_BSLASHfootcite] = ACTIONS(6441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6441), - [anon_sym_BSLASHtextcite] = ACTIONS(6441), - [anon_sym_BSLASHTextcite] = ACTIONS(6441), - [anon_sym_BSLASHsmartcite] = ACTIONS(6441), - [anon_sym_BSLASHSmartcite] = ACTIONS(6441), - [anon_sym_BSLASHsupercite] = ACTIONS(6441), - [anon_sym_BSLASHautocite] = ACTIONS(6441), - [anon_sym_BSLASHAutocite] = ACTIONS(6441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHvolcite] = ACTIONS(6441), - [anon_sym_BSLASHVolcite] = ACTIONS(6441), - [anon_sym_BSLASHpvolcite] = ACTIONS(6441), - [anon_sym_BSLASHPvolcite] = ACTIONS(6441), - [anon_sym_BSLASHfvolcite] = ACTIONS(6441), - [anon_sym_BSLASHftvolcite] = ACTIONS(6441), - [anon_sym_BSLASHsvolcite] = ACTIONS(6441), - [anon_sym_BSLASHSvolcite] = ACTIONS(6441), - [anon_sym_BSLASHtvolcite] = ACTIONS(6441), - [anon_sym_BSLASHTvolcite] = ACTIONS(6441), - [anon_sym_BSLASHavolcite] = ACTIONS(6441), - [anon_sym_BSLASHAvolcite] = ACTIONS(6441), - [anon_sym_BSLASHnotecite] = ACTIONS(6441), - [anon_sym_BSLASHNotecite] = ACTIONS(6441), - [anon_sym_BSLASHpnotecite] = ACTIONS(6441), - [anon_sym_BSLASHPnotecite] = ACTIONS(6441), - [anon_sym_BSLASHfnotecite] = ACTIONS(6441), - [anon_sym_BSLASHlabel] = ACTIONS(6441), - [anon_sym_BSLASHref] = ACTIONS(6441), - [anon_sym_BSLASHeqref] = ACTIONS(6441), - [anon_sym_BSLASHvref] = ACTIONS(6441), - [anon_sym_BSLASHVref] = ACTIONS(6441), - [anon_sym_BSLASHautoref] = ACTIONS(6441), - [anon_sym_BSLASHpageref] = ACTIONS(6441), - [anon_sym_BSLASHcref] = ACTIONS(6441), - [anon_sym_BSLASHCref] = ACTIONS(6441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnameCref] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHlabelcref] = ACTIONS(6441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCrefrange] = ACTIONS(6441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnewlabel] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6443), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHdef] = ACTIONS(6441), - [anon_sym_BSLASHlet] = ACTIONS(6441), - [anon_sym_BSLASHleft] = ACTIONS(6441), - [anon_sym_BSLASHbig] = ACTIONS(6441), - [anon_sym_BSLASHBig] = ACTIONS(6441), - [anon_sym_BSLASHbigg] = ACTIONS(6441), - [anon_sym_BSLASHBigg] = ACTIONS(6441), - [anon_sym_BSLASHbigl] = ACTIONS(6441), - [anon_sym_BSLASHBigl] = ACTIONS(6441), - [anon_sym_BSLASHbiggl] = ACTIONS(6441), - [anon_sym_BSLASHBiggl] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6441), - [anon_sym_BSLASHgls] = ACTIONS(6441), - [anon_sym_BSLASHGls] = ACTIONS(6441), - [anon_sym_BSLASHGLS] = ACTIONS(6441), - [anon_sym_BSLASHglspl] = ACTIONS(6441), - [anon_sym_BSLASHGlspl] = ACTIONS(6441), - [anon_sym_BSLASHGLSpl] = ACTIONS(6441), - [anon_sym_BSLASHglsdisp] = ACTIONS(6441), - [anon_sym_BSLASHglslink] = ACTIONS(6441), - [anon_sym_BSLASHglstext] = ACTIONS(6441), - [anon_sym_BSLASHGlstext] = ACTIONS(6441), - [anon_sym_BSLASHGLStext] = ACTIONS(6441), - [anon_sym_BSLASHglsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6441), - [anon_sym_BSLASHglsplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSplural] = ACTIONS(6441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHglsname] = ACTIONS(6441), - [anon_sym_BSLASHGlsname] = ACTIONS(6441), - [anon_sym_BSLASHGLSname] = ACTIONS(6441), - [anon_sym_BSLASHglssymbol] = ACTIONS(6441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6441), - [anon_sym_BSLASHglsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6441), - [anon_sym_BSLASHglsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6441), - [anon_sym_BSLASHglsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6441), - [anon_sym_BSLASHglsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6441), - [anon_sym_BSLASHglsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6441), - [anon_sym_BSLASHnewacronym] = ACTIONS(6441), - [anon_sym_BSLASHacrshort] = ACTIONS(6441), - [anon_sym_BSLASHAcrshort] = ACTIONS(6441), - [anon_sym_BSLASHACRshort] = ACTIONS(6441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6441), - [anon_sym_BSLASHacrlong] = ACTIONS(6441), - [anon_sym_BSLASHAcrlong] = ACTIONS(6441), - [anon_sym_BSLASHACRlong] = ACTIONS(6441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6441), - [anon_sym_BSLASHacrfull] = ACTIONS(6441), - [anon_sym_BSLASHAcrfull] = ACTIONS(6441), - [anon_sym_BSLASHACRfull] = ACTIONS(6441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6441), - [anon_sym_BSLASHacs] = ACTIONS(6441), - [anon_sym_BSLASHAcs] = ACTIONS(6441), - [anon_sym_BSLASHacsp] = ACTIONS(6441), - [anon_sym_BSLASHAcsp] = ACTIONS(6441), - [anon_sym_BSLASHacl] = ACTIONS(6441), - [anon_sym_BSLASHAcl] = ACTIONS(6441), - [anon_sym_BSLASHaclp] = ACTIONS(6441), - [anon_sym_BSLASHAclp] = ACTIONS(6441), - [anon_sym_BSLASHacf] = ACTIONS(6441), - [anon_sym_BSLASHAcf] = ACTIONS(6441), - [anon_sym_BSLASHacfp] = ACTIONS(6441), - [anon_sym_BSLASHAcfp] = ACTIONS(6441), - [anon_sym_BSLASHac] = ACTIONS(6441), - [anon_sym_BSLASHAc] = ACTIONS(6441), - [anon_sym_BSLASHacp] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6441), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6441), - [anon_sym_BSLASHcolor] = ACTIONS(6441), - [anon_sym_BSLASHcolorbox] = ACTIONS(6441), - [anon_sym_BSLASHtextcolor] = ACTIONS(6441), - [anon_sym_BSLASHpagecolor] = ACTIONS(6441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6441), - [anon_sym_BSLASHtext] = ACTIONS(6441), - [anon_sym_BSLASHintertext] = ACTIONS(6441), - [anon_sym_shortintertext] = ACTIONS(6441), - }, - [1573] = { - [sym_command_name] = ACTIONS(6445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6445), - [anon_sym_LBRACK] = ACTIONS(6447), - [anon_sym_RBRACK] = ACTIONS(6447), - [anon_sym_COMMA] = ACTIONS(6447), - [anon_sym_EQ] = ACTIONS(6447), - [anon_sym_LPAREN] = ACTIONS(6447), - [anon_sym_RPAREN] = ACTIONS(6447), - [anon_sym_LBRACE] = ACTIONS(6447), - [sym_word] = ACTIONS(6445), - [sym_placeholder] = ACTIONS(6447), - [anon_sym_PLUS] = ACTIONS(6447), - [anon_sym_DASH] = ACTIONS(6447), - [anon_sym_STAR] = ACTIONS(6447), - [anon_sym_SLASH] = ACTIONS(6447), - [anon_sym_LT] = ACTIONS(6445), - [anon_sym_GT] = ACTIONS(6445), - [anon_sym_BANG] = ACTIONS(6445), - [anon_sym_PIPE] = ACTIONS(6445), - [anon_sym_COLON] = ACTIONS(6445), - [anon_sym_SQUOTE] = ACTIONS(6445), - [anon_sym__] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6447), - [anon_sym_DOLLAR] = ACTIONS(6445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6447), - [anon_sym_BSLASHbegin] = ACTIONS(6445), - [anon_sym_BSLASHend] = ACTIONS(6445), - [anon_sym_BSLASHtitle] = ACTIONS(6445), - [anon_sym_BSLASHauthor] = ACTIONS(6445), - [anon_sym_BSLASHusepackage] = ACTIONS(6445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6445), - [anon_sym_BSLASHinclude] = ACTIONS(6445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6445), - [anon_sym_BSLASHinput] = ACTIONS(6445), - [anon_sym_BSLASHsubfile] = ACTIONS(6445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6445), - [anon_sym_BSLASHbibliography] = ACTIONS(6445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6445), - [anon_sym_BSLASHincludesvg] = ACTIONS(6445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6445), - [anon_sym_BSLASHimport] = ACTIONS(6445), - [anon_sym_BSLASHsubimport] = ACTIONS(6445), - [anon_sym_BSLASHinputfrom] = ACTIONS(6445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6445), - [anon_sym_BSLASHincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHcaption] = ACTIONS(6445), - [anon_sym_BSLASHcite] = ACTIONS(6445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCite] = ACTIONS(6445), - [anon_sym_BSLASHnocite] = ACTIONS(6445), - [anon_sym_BSLASHcitet] = ACTIONS(6445), - [anon_sym_BSLASHcitep] = ACTIONS(6445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteauthor] = ACTIONS(6445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitetitle] = ACTIONS(6445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteyear] = ACTIONS(6445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitedate] = ACTIONS(6445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteurl] = ACTIONS(6445), - [anon_sym_BSLASHfullcite] = ACTIONS(6445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6445), - [anon_sym_BSLASHcitealt] = ACTIONS(6445), - [anon_sym_BSLASHcitealp] = ACTIONS(6445), - [anon_sym_BSLASHcitetext] = ACTIONS(6445), - [anon_sym_BSLASHparencite] = ACTIONS(6445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHParencite] = ACTIONS(6445), - [anon_sym_BSLASHfootcite] = ACTIONS(6445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6445), - [anon_sym_BSLASHtextcite] = ACTIONS(6445), - [anon_sym_BSLASHTextcite] = ACTIONS(6445), - [anon_sym_BSLASHsmartcite] = ACTIONS(6445), - [anon_sym_BSLASHSmartcite] = ACTIONS(6445), - [anon_sym_BSLASHsupercite] = ACTIONS(6445), - [anon_sym_BSLASHautocite] = ACTIONS(6445), - [anon_sym_BSLASHAutocite] = ACTIONS(6445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHvolcite] = ACTIONS(6445), - [anon_sym_BSLASHVolcite] = ACTIONS(6445), - [anon_sym_BSLASHpvolcite] = ACTIONS(6445), - [anon_sym_BSLASHPvolcite] = ACTIONS(6445), - [anon_sym_BSLASHfvolcite] = ACTIONS(6445), - [anon_sym_BSLASHftvolcite] = ACTIONS(6445), - [anon_sym_BSLASHsvolcite] = ACTIONS(6445), - [anon_sym_BSLASHSvolcite] = ACTIONS(6445), - [anon_sym_BSLASHtvolcite] = ACTIONS(6445), - [anon_sym_BSLASHTvolcite] = ACTIONS(6445), - [anon_sym_BSLASHavolcite] = ACTIONS(6445), - [anon_sym_BSLASHAvolcite] = ACTIONS(6445), - [anon_sym_BSLASHnotecite] = ACTIONS(6445), - [anon_sym_BSLASHNotecite] = ACTIONS(6445), - [anon_sym_BSLASHpnotecite] = ACTIONS(6445), - [anon_sym_BSLASHPnotecite] = ACTIONS(6445), - [anon_sym_BSLASHfnotecite] = ACTIONS(6445), - [anon_sym_BSLASHlabel] = ACTIONS(6445), - [anon_sym_BSLASHref] = ACTIONS(6445), - [anon_sym_BSLASHeqref] = ACTIONS(6445), - [anon_sym_BSLASHvref] = ACTIONS(6445), - [anon_sym_BSLASHVref] = ACTIONS(6445), - [anon_sym_BSLASHautoref] = ACTIONS(6445), - [anon_sym_BSLASHpageref] = ACTIONS(6445), - [anon_sym_BSLASHcref] = ACTIONS(6445), - [anon_sym_BSLASHCref] = ACTIONS(6445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnameCref] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHlabelcref] = ACTIONS(6445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCrefrange] = ACTIONS(6445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnewlabel] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6447), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHdef] = ACTIONS(6445), - [anon_sym_BSLASHlet] = ACTIONS(6445), - [anon_sym_BSLASHleft] = ACTIONS(6445), - [anon_sym_BSLASHbig] = ACTIONS(6445), - [anon_sym_BSLASHBig] = ACTIONS(6445), - [anon_sym_BSLASHbigg] = ACTIONS(6445), - [anon_sym_BSLASHBigg] = ACTIONS(6445), - [anon_sym_BSLASHbigl] = ACTIONS(6445), - [anon_sym_BSLASHBigl] = ACTIONS(6445), - [anon_sym_BSLASHbiggl] = ACTIONS(6445), - [anon_sym_BSLASHBiggl] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6445), - [anon_sym_BSLASHgls] = ACTIONS(6445), - [anon_sym_BSLASHGls] = ACTIONS(6445), - [anon_sym_BSLASHGLS] = ACTIONS(6445), - [anon_sym_BSLASHglspl] = ACTIONS(6445), - [anon_sym_BSLASHGlspl] = ACTIONS(6445), - [anon_sym_BSLASHGLSpl] = ACTIONS(6445), - [anon_sym_BSLASHglsdisp] = ACTIONS(6445), - [anon_sym_BSLASHglslink] = ACTIONS(6445), - [anon_sym_BSLASHglstext] = ACTIONS(6445), - [anon_sym_BSLASHGlstext] = ACTIONS(6445), - [anon_sym_BSLASHGLStext] = ACTIONS(6445), - [anon_sym_BSLASHglsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6445), - [anon_sym_BSLASHglsplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSplural] = ACTIONS(6445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHglsname] = ACTIONS(6445), - [anon_sym_BSLASHGlsname] = ACTIONS(6445), - [anon_sym_BSLASHGLSname] = ACTIONS(6445), - [anon_sym_BSLASHglssymbol] = ACTIONS(6445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6445), - [anon_sym_BSLASHglsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6445), - [anon_sym_BSLASHglsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6445), - [anon_sym_BSLASHglsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6445), - [anon_sym_BSLASHglsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6445), - [anon_sym_BSLASHglsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6445), - [anon_sym_BSLASHnewacronym] = ACTIONS(6445), - [anon_sym_BSLASHacrshort] = ACTIONS(6445), - [anon_sym_BSLASHAcrshort] = ACTIONS(6445), - [anon_sym_BSLASHACRshort] = ACTIONS(6445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6445), - [anon_sym_BSLASHacrlong] = ACTIONS(6445), - [anon_sym_BSLASHAcrlong] = ACTIONS(6445), - [anon_sym_BSLASHACRlong] = ACTIONS(6445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6445), - [anon_sym_BSLASHacrfull] = ACTIONS(6445), - [anon_sym_BSLASHAcrfull] = ACTIONS(6445), - [anon_sym_BSLASHACRfull] = ACTIONS(6445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6445), - [anon_sym_BSLASHacs] = ACTIONS(6445), - [anon_sym_BSLASHAcs] = ACTIONS(6445), - [anon_sym_BSLASHacsp] = ACTIONS(6445), - [anon_sym_BSLASHAcsp] = ACTIONS(6445), - [anon_sym_BSLASHacl] = ACTIONS(6445), - [anon_sym_BSLASHAcl] = ACTIONS(6445), - [anon_sym_BSLASHaclp] = ACTIONS(6445), - [anon_sym_BSLASHAclp] = ACTIONS(6445), - [anon_sym_BSLASHacf] = ACTIONS(6445), - [anon_sym_BSLASHAcf] = ACTIONS(6445), - [anon_sym_BSLASHacfp] = ACTIONS(6445), - [anon_sym_BSLASHAcfp] = ACTIONS(6445), - [anon_sym_BSLASHac] = ACTIONS(6445), - [anon_sym_BSLASHAc] = ACTIONS(6445), - [anon_sym_BSLASHacp] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6445), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6445), - [anon_sym_BSLASHcolor] = ACTIONS(6445), - [anon_sym_BSLASHcolorbox] = ACTIONS(6445), - [anon_sym_BSLASHtextcolor] = ACTIONS(6445), - [anon_sym_BSLASHpagecolor] = ACTIONS(6445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6445), - [anon_sym_BSLASHtext] = ACTIONS(6445), - [anon_sym_BSLASHintertext] = ACTIONS(6445), - [anon_sym_shortintertext] = ACTIONS(6445), - }, - [1574] = { - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHend] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [1575] = { - [sym_command_name] = ACTIONS(6449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6449), - [anon_sym_LBRACK] = ACTIONS(6451), - [anon_sym_RBRACK] = ACTIONS(6451), - [anon_sym_COMMA] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(6451), - [anon_sym_LPAREN] = ACTIONS(6451), - [anon_sym_RPAREN] = ACTIONS(6451), - [anon_sym_LBRACE] = ACTIONS(6451), - [sym_word] = ACTIONS(6449), - [sym_placeholder] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6451), - [anon_sym_DASH] = ACTIONS(6451), - [anon_sym_STAR] = ACTIONS(6451), - [anon_sym_SLASH] = ACTIONS(6451), - [anon_sym_LT] = ACTIONS(6449), - [anon_sym_GT] = ACTIONS(6449), - [anon_sym_BANG] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6449), - [anon_sym_COLON] = ACTIONS(6449), - [anon_sym_SQUOTE] = ACTIONS(6449), - [anon_sym__] = ACTIONS(6451), - [anon_sym_CARET] = ACTIONS(6451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6451), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6451), - [anon_sym_DOLLAR] = ACTIONS(6449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6451), - [anon_sym_BSLASHbegin] = ACTIONS(6449), - [anon_sym_BSLASHend] = ACTIONS(6449), - [anon_sym_BSLASHtitle] = ACTIONS(6449), - [anon_sym_BSLASHauthor] = ACTIONS(6449), - [anon_sym_BSLASHusepackage] = ACTIONS(6449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6449), - [anon_sym_BSLASHinclude] = ACTIONS(6449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6449), - [anon_sym_BSLASHinput] = ACTIONS(6449), - [anon_sym_BSLASHsubfile] = ACTIONS(6449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6449), - [anon_sym_BSLASHbibliography] = ACTIONS(6449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6449), - [anon_sym_BSLASHincludesvg] = ACTIONS(6449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6449), - [anon_sym_BSLASHimport] = ACTIONS(6449), - [anon_sym_BSLASHsubimport] = ACTIONS(6449), - [anon_sym_BSLASHinputfrom] = ACTIONS(6449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6449), - [anon_sym_BSLASHincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHcaption] = ACTIONS(6449), - [anon_sym_BSLASHcite] = ACTIONS(6449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCite] = ACTIONS(6449), - [anon_sym_BSLASHnocite] = ACTIONS(6449), - [anon_sym_BSLASHcitet] = ACTIONS(6449), - [anon_sym_BSLASHcitep] = ACTIONS(6449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteauthor] = ACTIONS(6449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitetitle] = ACTIONS(6449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteyear] = ACTIONS(6449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitedate] = ACTIONS(6449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteurl] = ACTIONS(6449), - [anon_sym_BSLASHfullcite] = ACTIONS(6449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6449), - [anon_sym_BSLASHcitealt] = ACTIONS(6449), - [anon_sym_BSLASHcitealp] = ACTIONS(6449), - [anon_sym_BSLASHcitetext] = ACTIONS(6449), - [anon_sym_BSLASHparencite] = ACTIONS(6449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHParencite] = ACTIONS(6449), - [anon_sym_BSLASHfootcite] = ACTIONS(6449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6449), - [anon_sym_BSLASHtextcite] = ACTIONS(6449), - [anon_sym_BSLASHTextcite] = ACTIONS(6449), - [anon_sym_BSLASHsmartcite] = ACTIONS(6449), - [anon_sym_BSLASHSmartcite] = ACTIONS(6449), - [anon_sym_BSLASHsupercite] = ACTIONS(6449), - [anon_sym_BSLASHautocite] = ACTIONS(6449), - [anon_sym_BSLASHAutocite] = ACTIONS(6449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHvolcite] = ACTIONS(6449), - [anon_sym_BSLASHVolcite] = ACTIONS(6449), - [anon_sym_BSLASHpvolcite] = ACTIONS(6449), - [anon_sym_BSLASHPvolcite] = ACTIONS(6449), - [anon_sym_BSLASHfvolcite] = ACTIONS(6449), - [anon_sym_BSLASHftvolcite] = ACTIONS(6449), - [anon_sym_BSLASHsvolcite] = ACTIONS(6449), - [anon_sym_BSLASHSvolcite] = ACTIONS(6449), - [anon_sym_BSLASHtvolcite] = ACTIONS(6449), - [anon_sym_BSLASHTvolcite] = ACTIONS(6449), - [anon_sym_BSLASHavolcite] = ACTIONS(6449), - [anon_sym_BSLASHAvolcite] = ACTIONS(6449), - [anon_sym_BSLASHnotecite] = ACTIONS(6449), - [anon_sym_BSLASHNotecite] = ACTIONS(6449), - [anon_sym_BSLASHpnotecite] = ACTIONS(6449), - [anon_sym_BSLASHPnotecite] = ACTIONS(6449), - [anon_sym_BSLASHfnotecite] = ACTIONS(6449), - [anon_sym_BSLASHlabel] = ACTIONS(6449), - [anon_sym_BSLASHref] = ACTIONS(6449), - [anon_sym_BSLASHeqref] = ACTIONS(6449), - [anon_sym_BSLASHvref] = ACTIONS(6449), - [anon_sym_BSLASHVref] = ACTIONS(6449), - [anon_sym_BSLASHautoref] = ACTIONS(6449), - [anon_sym_BSLASHpageref] = ACTIONS(6449), - [anon_sym_BSLASHcref] = ACTIONS(6449), - [anon_sym_BSLASHCref] = ACTIONS(6449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnameCref] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHlabelcref] = ACTIONS(6449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCrefrange] = ACTIONS(6449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnewlabel] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6451), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHdef] = ACTIONS(6449), - [anon_sym_BSLASHlet] = ACTIONS(6449), - [anon_sym_BSLASHleft] = ACTIONS(6449), - [anon_sym_BSLASHbig] = ACTIONS(6449), - [anon_sym_BSLASHBig] = ACTIONS(6449), - [anon_sym_BSLASHbigg] = ACTIONS(6449), - [anon_sym_BSLASHBigg] = ACTIONS(6449), - [anon_sym_BSLASHbigl] = ACTIONS(6449), - [anon_sym_BSLASHBigl] = ACTIONS(6449), - [anon_sym_BSLASHbiggl] = ACTIONS(6449), - [anon_sym_BSLASHBiggl] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6449), - [anon_sym_BSLASHgls] = ACTIONS(6449), - [anon_sym_BSLASHGls] = ACTIONS(6449), - [anon_sym_BSLASHGLS] = ACTIONS(6449), - [anon_sym_BSLASHglspl] = ACTIONS(6449), - [anon_sym_BSLASHGlspl] = ACTIONS(6449), - [anon_sym_BSLASHGLSpl] = ACTIONS(6449), - [anon_sym_BSLASHglsdisp] = ACTIONS(6449), - [anon_sym_BSLASHglslink] = ACTIONS(6449), - [anon_sym_BSLASHglstext] = ACTIONS(6449), - [anon_sym_BSLASHGlstext] = ACTIONS(6449), - [anon_sym_BSLASHGLStext] = ACTIONS(6449), - [anon_sym_BSLASHglsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6449), - [anon_sym_BSLASHglsplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSplural] = ACTIONS(6449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHglsname] = ACTIONS(6449), - [anon_sym_BSLASHGlsname] = ACTIONS(6449), - [anon_sym_BSLASHGLSname] = ACTIONS(6449), - [anon_sym_BSLASHglssymbol] = ACTIONS(6449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6449), - [anon_sym_BSLASHglsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6449), - [anon_sym_BSLASHglsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6449), - [anon_sym_BSLASHglsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6449), - [anon_sym_BSLASHglsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6449), - [anon_sym_BSLASHglsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6449), - [anon_sym_BSLASHnewacronym] = ACTIONS(6449), - [anon_sym_BSLASHacrshort] = ACTIONS(6449), - [anon_sym_BSLASHAcrshort] = ACTIONS(6449), - [anon_sym_BSLASHACRshort] = ACTIONS(6449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6449), - [anon_sym_BSLASHacrlong] = ACTIONS(6449), - [anon_sym_BSLASHAcrlong] = ACTIONS(6449), - [anon_sym_BSLASHACRlong] = ACTIONS(6449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6449), - [anon_sym_BSLASHacrfull] = ACTIONS(6449), - [anon_sym_BSLASHAcrfull] = ACTIONS(6449), - [anon_sym_BSLASHACRfull] = ACTIONS(6449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6449), - [anon_sym_BSLASHacs] = ACTIONS(6449), - [anon_sym_BSLASHAcs] = ACTIONS(6449), - [anon_sym_BSLASHacsp] = ACTIONS(6449), - [anon_sym_BSLASHAcsp] = ACTIONS(6449), - [anon_sym_BSLASHacl] = ACTIONS(6449), - [anon_sym_BSLASHAcl] = ACTIONS(6449), - [anon_sym_BSLASHaclp] = ACTIONS(6449), - [anon_sym_BSLASHAclp] = ACTIONS(6449), - [anon_sym_BSLASHacf] = ACTIONS(6449), - [anon_sym_BSLASHAcf] = ACTIONS(6449), - [anon_sym_BSLASHacfp] = ACTIONS(6449), - [anon_sym_BSLASHAcfp] = ACTIONS(6449), - [anon_sym_BSLASHac] = ACTIONS(6449), - [anon_sym_BSLASHAc] = ACTIONS(6449), - [anon_sym_BSLASHacp] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6449), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6449), - [anon_sym_BSLASHcolor] = ACTIONS(6449), - [anon_sym_BSLASHcolorbox] = ACTIONS(6449), - [anon_sym_BSLASHtextcolor] = ACTIONS(6449), - [anon_sym_BSLASHpagecolor] = ACTIONS(6449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6449), - [anon_sym_BSLASHtext] = ACTIONS(6449), - [anon_sym_BSLASHintertext] = ACTIONS(6449), - [anon_sym_shortintertext] = ACTIONS(6449), - }, - [1576] = { - [sym_curly_group] = STATE(1785), - [sym_command_name] = ACTIONS(6021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6021), - [anon_sym_LBRACK] = ACTIONS(6023), - [anon_sym_RBRACK] = ACTIONS(6023), - [anon_sym_COMMA] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(6023), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_RPAREN] = ACTIONS(6023), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(6023), - [sym_word] = ACTIONS(6021), - [sym_placeholder] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6023), - [anon_sym_DASH] = ACTIONS(6023), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6023), - [anon_sym_LT] = ACTIONS(6021), - [anon_sym_GT] = ACTIONS(6021), - [anon_sym_BANG] = ACTIONS(6021), - [anon_sym_PIPE] = ACTIONS(6021), - [anon_sym_COLON] = ACTIONS(6021), - [anon_sym_SQUOTE] = ACTIONS(6021), - [anon_sym__] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), - [anon_sym_BSLASHtitle] = ACTIONS(6021), - [anon_sym_BSLASHauthor] = ACTIONS(6021), - [anon_sym_BSLASHusepackage] = ACTIONS(6021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), - [anon_sym_BSLASHinclude] = ACTIONS(6021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), - [anon_sym_BSLASHinput] = ACTIONS(6021), - [anon_sym_BSLASHsubfile] = ACTIONS(6021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), - [anon_sym_BSLASHbibliography] = ACTIONS(6021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), - [anon_sym_BSLASHincludesvg] = ACTIONS(6021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), - [anon_sym_BSLASHimport] = ACTIONS(6021), - [anon_sym_BSLASHsubimport] = ACTIONS(6021), - [anon_sym_BSLASHinputfrom] = ACTIONS(6021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), - [anon_sym_BSLASHincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHcaption] = ACTIONS(6021), - [anon_sym_BSLASHcite] = ACTIONS(6021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCite] = ACTIONS(6021), - [anon_sym_BSLASHnocite] = ACTIONS(6021), - [anon_sym_BSLASHcitet] = ACTIONS(6021), - [anon_sym_BSLASHcitep] = ACTIONS(6021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteauthor] = ACTIONS(6021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitetitle] = ACTIONS(6021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteyear] = ACTIONS(6021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitedate] = ACTIONS(6021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteurl] = ACTIONS(6021), - [anon_sym_BSLASHfullcite] = ACTIONS(6021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), - [anon_sym_BSLASHcitealt] = ACTIONS(6021), - [anon_sym_BSLASHcitealp] = ACTIONS(6021), - [anon_sym_BSLASHcitetext] = ACTIONS(6021), - [anon_sym_BSLASHparencite] = ACTIONS(6021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHParencite] = ACTIONS(6021), - [anon_sym_BSLASHfootcite] = ACTIONS(6021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), - [anon_sym_BSLASHtextcite] = ACTIONS(6021), - [anon_sym_BSLASHTextcite] = ACTIONS(6021), - [anon_sym_BSLASHsmartcite] = ACTIONS(6021), - [anon_sym_BSLASHSmartcite] = ACTIONS(6021), - [anon_sym_BSLASHsupercite] = ACTIONS(6021), - [anon_sym_BSLASHautocite] = ACTIONS(6021), - [anon_sym_BSLASHAutocite] = ACTIONS(6021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHvolcite] = ACTIONS(6021), - [anon_sym_BSLASHVolcite] = ACTIONS(6021), - [anon_sym_BSLASHpvolcite] = ACTIONS(6021), - [anon_sym_BSLASHPvolcite] = ACTIONS(6021), - [anon_sym_BSLASHfvolcite] = ACTIONS(6021), - [anon_sym_BSLASHftvolcite] = ACTIONS(6021), - [anon_sym_BSLASHsvolcite] = ACTIONS(6021), - [anon_sym_BSLASHSvolcite] = ACTIONS(6021), - [anon_sym_BSLASHtvolcite] = ACTIONS(6021), - [anon_sym_BSLASHTvolcite] = ACTIONS(6021), - [anon_sym_BSLASHavolcite] = ACTIONS(6021), - [anon_sym_BSLASHAvolcite] = ACTIONS(6021), - [anon_sym_BSLASHnotecite] = ACTIONS(6021), - [anon_sym_BSLASHNotecite] = ACTIONS(6021), - [anon_sym_BSLASHpnotecite] = ACTIONS(6021), - [anon_sym_BSLASHPnotecite] = ACTIONS(6021), - [anon_sym_BSLASHfnotecite] = ACTIONS(6021), - [anon_sym_BSLASHlabel] = ACTIONS(6021), - [anon_sym_BSLASHref] = ACTIONS(6021), - [anon_sym_BSLASHeqref] = ACTIONS(6021), - [anon_sym_BSLASHvref] = ACTIONS(6021), - [anon_sym_BSLASHVref] = ACTIONS(6021), - [anon_sym_BSLASHautoref] = ACTIONS(6021), - [anon_sym_BSLASHpageref] = ACTIONS(6021), - [anon_sym_BSLASHcref] = ACTIONS(6021), - [anon_sym_BSLASHCref] = ACTIONS(6021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnameCref] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHlabelcref] = ACTIONS(6021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCrefrange] = ACTIONS(6021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnewlabel] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHdef] = ACTIONS(6021), - [anon_sym_BSLASHlet] = ACTIONS(6021), - [anon_sym_BSLASHleft] = ACTIONS(6021), - [anon_sym_BSLASHbig] = ACTIONS(6021), - [anon_sym_BSLASHBig] = ACTIONS(6021), - [anon_sym_BSLASHbigg] = ACTIONS(6021), - [anon_sym_BSLASHBigg] = ACTIONS(6021), - [anon_sym_BSLASHbigl] = ACTIONS(6021), - [anon_sym_BSLASHBigl] = ACTIONS(6021), - [anon_sym_BSLASHbiggl] = ACTIONS(6021), - [anon_sym_BSLASHBiggl] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), - [anon_sym_BSLASHgls] = ACTIONS(6021), - [anon_sym_BSLASHGls] = ACTIONS(6021), - [anon_sym_BSLASHGLS] = ACTIONS(6021), - [anon_sym_BSLASHglspl] = ACTIONS(6021), - [anon_sym_BSLASHGlspl] = ACTIONS(6021), - [anon_sym_BSLASHGLSpl] = ACTIONS(6021), - [anon_sym_BSLASHglsdisp] = ACTIONS(6021), - [anon_sym_BSLASHglslink] = ACTIONS(6021), - [anon_sym_BSLASHglstext] = ACTIONS(6021), - [anon_sym_BSLASHGlstext] = ACTIONS(6021), - [anon_sym_BSLASHGLStext] = ACTIONS(6021), - [anon_sym_BSLASHglsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), - [anon_sym_BSLASHglsplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSplural] = ACTIONS(6021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHglsname] = ACTIONS(6021), - [anon_sym_BSLASHGlsname] = ACTIONS(6021), - [anon_sym_BSLASHGLSname] = ACTIONS(6021), - [anon_sym_BSLASHglssymbol] = ACTIONS(6021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), - [anon_sym_BSLASHglsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), - [anon_sym_BSLASHglsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), - [anon_sym_BSLASHglsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), - [anon_sym_BSLASHglsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), - [anon_sym_BSLASHglsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), - [anon_sym_BSLASHnewacronym] = ACTIONS(6021), - [anon_sym_BSLASHacrshort] = ACTIONS(6021), - [anon_sym_BSLASHAcrshort] = ACTIONS(6021), - [anon_sym_BSLASHACRshort] = ACTIONS(6021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), - [anon_sym_BSLASHacrlong] = ACTIONS(6021), - [anon_sym_BSLASHAcrlong] = ACTIONS(6021), - [anon_sym_BSLASHACRlong] = ACTIONS(6021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), - [anon_sym_BSLASHacrfull] = ACTIONS(6021), - [anon_sym_BSLASHAcrfull] = ACTIONS(6021), - [anon_sym_BSLASHACRfull] = ACTIONS(6021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), - [anon_sym_BSLASHacs] = ACTIONS(6021), - [anon_sym_BSLASHAcs] = ACTIONS(6021), - [anon_sym_BSLASHacsp] = ACTIONS(6021), - [anon_sym_BSLASHAcsp] = ACTIONS(6021), - [anon_sym_BSLASHacl] = ACTIONS(6021), - [anon_sym_BSLASHAcl] = ACTIONS(6021), - [anon_sym_BSLASHaclp] = ACTIONS(6021), - [anon_sym_BSLASHAclp] = ACTIONS(6021), - [anon_sym_BSLASHacf] = ACTIONS(6021), - [anon_sym_BSLASHAcf] = ACTIONS(6021), - [anon_sym_BSLASHacfp] = ACTIONS(6021), - [anon_sym_BSLASHAcfp] = ACTIONS(6021), - [anon_sym_BSLASHac] = ACTIONS(6021), - [anon_sym_BSLASHAc] = ACTIONS(6021), - [anon_sym_BSLASHacp] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), - [anon_sym_BSLASHcolor] = ACTIONS(6021), - [anon_sym_BSLASHcolorbox] = ACTIONS(6021), - [anon_sym_BSLASHtextcolor] = ACTIONS(6021), - [anon_sym_BSLASHpagecolor] = ACTIONS(6021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), - [anon_sym_BSLASHtext] = ACTIONS(6021), - [anon_sym_BSLASHintertext] = ACTIONS(6021), - [anon_sym_shortintertext] = ACTIONS(6021), - }, - [1577] = { - [sym_command_name] = ACTIONS(6453), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6453), - [anon_sym_LBRACK] = ACTIONS(6455), - [anon_sym_RBRACK] = ACTIONS(6455), - [anon_sym_COMMA] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(6455), - [anon_sym_LPAREN] = ACTIONS(6455), - [anon_sym_RPAREN] = ACTIONS(6455), - [anon_sym_LBRACE] = ACTIONS(6455), - [sym_word] = ACTIONS(6453), - [sym_placeholder] = ACTIONS(6455), - [anon_sym_PLUS] = ACTIONS(6455), - [anon_sym_DASH] = ACTIONS(6455), - [anon_sym_STAR] = ACTIONS(6455), - [anon_sym_SLASH] = ACTIONS(6455), - [anon_sym_LT] = ACTIONS(6453), - [anon_sym_GT] = ACTIONS(6453), - [anon_sym_BANG] = ACTIONS(6453), - [anon_sym_PIPE] = ACTIONS(6453), - [anon_sym_COLON] = ACTIONS(6453), - [anon_sym_SQUOTE] = ACTIONS(6453), - [anon_sym__] = ACTIONS(6455), - [anon_sym_CARET] = ACTIONS(6455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6455), - [anon_sym_DOLLAR] = ACTIONS(6453), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6455), - [anon_sym_BSLASHbegin] = ACTIONS(6453), - [anon_sym_BSLASHend] = ACTIONS(6453), - [anon_sym_BSLASHtitle] = ACTIONS(6453), - [anon_sym_BSLASHauthor] = ACTIONS(6453), - [anon_sym_BSLASHusepackage] = ACTIONS(6453), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6453), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6453), - [anon_sym_BSLASHinclude] = ACTIONS(6453), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6453), - [anon_sym_BSLASHinput] = ACTIONS(6453), - [anon_sym_BSLASHsubfile] = ACTIONS(6453), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6453), - [anon_sym_BSLASHbibliography] = ACTIONS(6453), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6453), - [anon_sym_BSLASHincludesvg] = ACTIONS(6453), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6453), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6453), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6453), - [anon_sym_BSLASHimport] = ACTIONS(6453), - [anon_sym_BSLASHsubimport] = ACTIONS(6453), - [anon_sym_BSLASHinputfrom] = ACTIONS(6453), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6453), - [anon_sym_BSLASHincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHcaption] = ACTIONS(6453), - [anon_sym_BSLASHcite] = ACTIONS(6453), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCite] = ACTIONS(6453), - [anon_sym_BSLASHnocite] = ACTIONS(6453), - [anon_sym_BSLASHcitet] = ACTIONS(6453), - [anon_sym_BSLASHcitep] = ACTIONS(6453), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteauthor] = ACTIONS(6453), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6453), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitetitle] = ACTIONS(6453), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteyear] = ACTIONS(6453), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitedate] = ACTIONS(6453), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteurl] = ACTIONS(6453), - [anon_sym_BSLASHfullcite] = ACTIONS(6453), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6453), - [anon_sym_BSLASHcitealt] = ACTIONS(6453), - [anon_sym_BSLASHcitealp] = ACTIONS(6453), - [anon_sym_BSLASHcitetext] = ACTIONS(6453), - [anon_sym_BSLASHparencite] = ACTIONS(6453), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHParencite] = ACTIONS(6453), - [anon_sym_BSLASHfootcite] = ACTIONS(6453), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6453), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6453), - [anon_sym_BSLASHtextcite] = ACTIONS(6453), - [anon_sym_BSLASHTextcite] = ACTIONS(6453), - [anon_sym_BSLASHsmartcite] = ACTIONS(6453), - [anon_sym_BSLASHSmartcite] = ACTIONS(6453), - [anon_sym_BSLASHsupercite] = ACTIONS(6453), - [anon_sym_BSLASHautocite] = ACTIONS(6453), - [anon_sym_BSLASHAutocite] = ACTIONS(6453), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHvolcite] = ACTIONS(6453), - [anon_sym_BSLASHVolcite] = ACTIONS(6453), - [anon_sym_BSLASHpvolcite] = ACTIONS(6453), - [anon_sym_BSLASHPvolcite] = ACTIONS(6453), - [anon_sym_BSLASHfvolcite] = ACTIONS(6453), - [anon_sym_BSLASHftvolcite] = ACTIONS(6453), - [anon_sym_BSLASHsvolcite] = ACTIONS(6453), - [anon_sym_BSLASHSvolcite] = ACTIONS(6453), - [anon_sym_BSLASHtvolcite] = ACTIONS(6453), - [anon_sym_BSLASHTvolcite] = ACTIONS(6453), - [anon_sym_BSLASHavolcite] = ACTIONS(6453), - [anon_sym_BSLASHAvolcite] = ACTIONS(6453), - [anon_sym_BSLASHnotecite] = ACTIONS(6453), - [anon_sym_BSLASHNotecite] = ACTIONS(6453), - [anon_sym_BSLASHpnotecite] = ACTIONS(6453), - [anon_sym_BSLASHPnotecite] = ACTIONS(6453), - [anon_sym_BSLASHfnotecite] = ACTIONS(6453), - [anon_sym_BSLASHlabel] = ACTIONS(6453), - [anon_sym_BSLASHref] = ACTIONS(6453), - [anon_sym_BSLASHeqref] = ACTIONS(6453), - [anon_sym_BSLASHvref] = ACTIONS(6453), - [anon_sym_BSLASHVref] = ACTIONS(6453), - [anon_sym_BSLASHautoref] = ACTIONS(6453), - [anon_sym_BSLASHpageref] = ACTIONS(6453), - [anon_sym_BSLASHcref] = ACTIONS(6453), - [anon_sym_BSLASHCref] = ACTIONS(6453), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnameCref] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHlabelcref] = ACTIONS(6453), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCrefrange] = ACTIONS(6453), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnewlabel] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6453), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6453), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6455), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHdef] = ACTIONS(6453), - [anon_sym_BSLASHlet] = ACTIONS(6453), - [anon_sym_BSLASHleft] = ACTIONS(6453), - [anon_sym_BSLASHbig] = ACTIONS(6453), - [anon_sym_BSLASHBig] = ACTIONS(6453), - [anon_sym_BSLASHbigg] = ACTIONS(6453), - [anon_sym_BSLASHBigg] = ACTIONS(6453), - [anon_sym_BSLASHbigl] = ACTIONS(6453), - [anon_sym_BSLASHBigl] = ACTIONS(6453), - [anon_sym_BSLASHbiggl] = ACTIONS(6453), - [anon_sym_BSLASHBiggl] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6453), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6453), - [anon_sym_BSLASHgls] = ACTIONS(6453), - [anon_sym_BSLASHGls] = ACTIONS(6453), - [anon_sym_BSLASHGLS] = ACTIONS(6453), - [anon_sym_BSLASHglspl] = ACTIONS(6453), - [anon_sym_BSLASHGlspl] = ACTIONS(6453), - [anon_sym_BSLASHGLSpl] = ACTIONS(6453), - [anon_sym_BSLASHglsdisp] = ACTIONS(6453), - [anon_sym_BSLASHglslink] = ACTIONS(6453), - [anon_sym_BSLASHglstext] = ACTIONS(6453), - [anon_sym_BSLASHGlstext] = ACTIONS(6453), - [anon_sym_BSLASHGLStext] = ACTIONS(6453), - [anon_sym_BSLASHglsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6453), - [anon_sym_BSLASHglsplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSplural] = ACTIONS(6453), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHglsname] = ACTIONS(6453), - [anon_sym_BSLASHGlsname] = ACTIONS(6453), - [anon_sym_BSLASHGLSname] = ACTIONS(6453), - [anon_sym_BSLASHglssymbol] = ACTIONS(6453), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6453), - [anon_sym_BSLASHglsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6453), - [anon_sym_BSLASHglsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6453), - [anon_sym_BSLASHglsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6453), - [anon_sym_BSLASHglsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6453), - [anon_sym_BSLASHglsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6453), - [anon_sym_BSLASHnewacronym] = ACTIONS(6453), - [anon_sym_BSLASHacrshort] = ACTIONS(6453), - [anon_sym_BSLASHAcrshort] = ACTIONS(6453), - [anon_sym_BSLASHACRshort] = ACTIONS(6453), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6453), - [anon_sym_BSLASHacrlong] = ACTIONS(6453), - [anon_sym_BSLASHAcrlong] = ACTIONS(6453), - [anon_sym_BSLASHACRlong] = ACTIONS(6453), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6453), - [anon_sym_BSLASHacrfull] = ACTIONS(6453), - [anon_sym_BSLASHAcrfull] = ACTIONS(6453), - [anon_sym_BSLASHACRfull] = ACTIONS(6453), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6453), - [anon_sym_BSLASHacs] = ACTIONS(6453), - [anon_sym_BSLASHAcs] = ACTIONS(6453), - [anon_sym_BSLASHacsp] = ACTIONS(6453), - [anon_sym_BSLASHAcsp] = ACTIONS(6453), - [anon_sym_BSLASHacl] = ACTIONS(6453), - [anon_sym_BSLASHAcl] = ACTIONS(6453), - [anon_sym_BSLASHaclp] = ACTIONS(6453), - [anon_sym_BSLASHAclp] = ACTIONS(6453), - [anon_sym_BSLASHacf] = ACTIONS(6453), - [anon_sym_BSLASHAcf] = ACTIONS(6453), - [anon_sym_BSLASHacfp] = ACTIONS(6453), - [anon_sym_BSLASHAcfp] = ACTIONS(6453), - [anon_sym_BSLASHac] = ACTIONS(6453), - [anon_sym_BSLASHAc] = ACTIONS(6453), - [anon_sym_BSLASHacp] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6453), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6453), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6453), - [anon_sym_BSLASHcolor] = ACTIONS(6453), - [anon_sym_BSLASHcolorbox] = ACTIONS(6453), - [anon_sym_BSLASHtextcolor] = ACTIONS(6453), - [anon_sym_BSLASHpagecolor] = ACTIONS(6453), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6453), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6453), - [anon_sym_BSLASHtext] = ACTIONS(6453), - [anon_sym_BSLASHintertext] = ACTIONS(6453), - [anon_sym_shortintertext] = ACTIONS(6453), - }, - [1578] = { - [sym_command_name] = ACTIONS(6457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6457), - [anon_sym_LBRACK] = ACTIONS(6459), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(6459), - [anon_sym_LPAREN] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LBRACE] = ACTIONS(6459), - [sym_word] = ACTIONS(6457), - [sym_placeholder] = ACTIONS(6459), - [anon_sym_PLUS] = ACTIONS(6459), - [anon_sym_DASH] = ACTIONS(6459), - [anon_sym_STAR] = ACTIONS(6459), - [anon_sym_SLASH] = ACTIONS(6459), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_BANG] = ACTIONS(6457), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_SQUOTE] = ACTIONS(6457), - [anon_sym__] = ACTIONS(6459), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6459), - [anon_sym_DOLLAR] = ACTIONS(6457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6459), - [anon_sym_BSLASHbegin] = ACTIONS(6457), - [anon_sym_BSLASHend] = ACTIONS(6457), - [anon_sym_BSLASHtitle] = ACTIONS(6457), - [anon_sym_BSLASHauthor] = ACTIONS(6457), - [anon_sym_BSLASHusepackage] = ACTIONS(6457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6457), - [anon_sym_BSLASHinclude] = ACTIONS(6457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6457), - [anon_sym_BSLASHinput] = ACTIONS(6457), - [anon_sym_BSLASHsubfile] = ACTIONS(6457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6457), - [anon_sym_BSLASHbibliography] = ACTIONS(6457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6457), - [anon_sym_BSLASHincludesvg] = ACTIONS(6457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6457), - [anon_sym_BSLASHimport] = ACTIONS(6457), - [anon_sym_BSLASHsubimport] = ACTIONS(6457), - [anon_sym_BSLASHinputfrom] = ACTIONS(6457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6457), - [anon_sym_BSLASHincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHcaption] = ACTIONS(6457), - [anon_sym_BSLASHcite] = ACTIONS(6457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCite] = ACTIONS(6457), - [anon_sym_BSLASHnocite] = ACTIONS(6457), - [anon_sym_BSLASHcitet] = ACTIONS(6457), - [anon_sym_BSLASHcitep] = ACTIONS(6457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteauthor] = ACTIONS(6457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitetitle] = ACTIONS(6457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteyear] = ACTIONS(6457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitedate] = ACTIONS(6457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteurl] = ACTIONS(6457), - [anon_sym_BSLASHfullcite] = ACTIONS(6457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6457), - [anon_sym_BSLASHcitealt] = ACTIONS(6457), - [anon_sym_BSLASHcitealp] = ACTIONS(6457), - [anon_sym_BSLASHcitetext] = ACTIONS(6457), - [anon_sym_BSLASHparencite] = ACTIONS(6457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHParencite] = ACTIONS(6457), - [anon_sym_BSLASHfootcite] = ACTIONS(6457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6457), - [anon_sym_BSLASHtextcite] = ACTIONS(6457), - [anon_sym_BSLASHTextcite] = ACTIONS(6457), - [anon_sym_BSLASHsmartcite] = ACTIONS(6457), - [anon_sym_BSLASHSmartcite] = ACTIONS(6457), - [anon_sym_BSLASHsupercite] = ACTIONS(6457), - [anon_sym_BSLASHautocite] = ACTIONS(6457), - [anon_sym_BSLASHAutocite] = ACTIONS(6457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHvolcite] = ACTIONS(6457), - [anon_sym_BSLASHVolcite] = ACTIONS(6457), - [anon_sym_BSLASHpvolcite] = ACTIONS(6457), - [anon_sym_BSLASHPvolcite] = ACTIONS(6457), - [anon_sym_BSLASHfvolcite] = ACTIONS(6457), - [anon_sym_BSLASHftvolcite] = ACTIONS(6457), - [anon_sym_BSLASHsvolcite] = ACTIONS(6457), - [anon_sym_BSLASHSvolcite] = ACTIONS(6457), - [anon_sym_BSLASHtvolcite] = ACTIONS(6457), - [anon_sym_BSLASHTvolcite] = ACTIONS(6457), - [anon_sym_BSLASHavolcite] = ACTIONS(6457), - [anon_sym_BSLASHAvolcite] = ACTIONS(6457), - [anon_sym_BSLASHnotecite] = ACTIONS(6457), - [anon_sym_BSLASHNotecite] = ACTIONS(6457), - [anon_sym_BSLASHpnotecite] = ACTIONS(6457), - [anon_sym_BSLASHPnotecite] = ACTIONS(6457), - [anon_sym_BSLASHfnotecite] = ACTIONS(6457), - [anon_sym_BSLASHlabel] = ACTIONS(6457), - [anon_sym_BSLASHref] = ACTIONS(6457), - [anon_sym_BSLASHeqref] = ACTIONS(6457), - [anon_sym_BSLASHvref] = ACTIONS(6457), - [anon_sym_BSLASHVref] = ACTIONS(6457), - [anon_sym_BSLASHautoref] = ACTIONS(6457), - [anon_sym_BSLASHpageref] = ACTIONS(6457), - [anon_sym_BSLASHcref] = ACTIONS(6457), - [anon_sym_BSLASHCref] = ACTIONS(6457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnameCref] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHlabelcref] = ACTIONS(6457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCrefrange] = ACTIONS(6457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnewlabel] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6459), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHdef] = ACTIONS(6457), - [anon_sym_BSLASHlet] = ACTIONS(6457), - [anon_sym_BSLASHleft] = ACTIONS(6457), - [anon_sym_BSLASHbig] = ACTIONS(6457), - [anon_sym_BSLASHBig] = ACTIONS(6457), - [anon_sym_BSLASHbigg] = ACTIONS(6457), - [anon_sym_BSLASHBigg] = ACTIONS(6457), - [anon_sym_BSLASHbigl] = ACTIONS(6457), - [anon_sym_BSLASHBigl] = ACTIONS(6457), - [anon_sym_BSLASHbiggl] = ACTIONS(6457), - [anon_sym_BSLASHBiggl] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6457), - [anon_sym_BSLASHgls] = ACTIONS(6457), - [anon_sym_BSLASHGls] = ACTIONS(6457), - [anon_sym_BSLASHGLS] = ACTIONS(6457), - [anon_sym_BSLASHglspl] = ACTIONS(6457), - [anon_sym_BSLASHGlspl] = ACTIONS(6457), - [anon_sym_BSLASHGLSpl] = ACTIONS(6457), - [anon_sym_BSLASHglsdisp] = ACTIONS(6457), - [anon_sym_BSLASHglslink] = ACTIONS(6457), - [anon_sym_BSLASHglstext] = ACTIONS(6457), - [anon_sym_BSLASHGlstext] = ACTIONS(6457), - [anon_sym_BSLASHGLStext] = ACTIONS(6457), - [anon_sym_BSLASHglsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6457), - [anon_sym_BSLASHglsplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSplural] = ACTIONS(6457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHglsname] = ACTIONS(6457), - [anon_sym_BSLASHGlsname] = ACTIONS(6457), - [anon_sym_BSLASHGLSname] = ACTIONS(6457), - [anon_sym_BSLASHglssymbol] = ACTIONS(6457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6457), - [anon_sym_BSLASHglsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6457), - [anon_sym_BSLASHglsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6457), - [anon_sym_BSLASHglsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6457), - [anon_sym_BSLASHglsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6457), - [anon_sym_BSLASHglsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6457), - [anon_sym_BSLASHnewacronym] = ACTIONS(6457), - [anon_sym_BSLASHacrshort] = ACTIONS(6457), - [anon_sym_BSLASHAcrshort] = ACTIONS(6457), - [anon_sym_BSLASHACRshort] = ACTIONS(6457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6457), - [anon_sym_BSLASHacrlong] = ACTIONS(6457), - [anon_sym_BSLASHAcrlong] = ACTIONS(6457), - [anon_sym_BSLASHACRlong] = ACTIONS(6457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6457), - [anon_sym_BSLASHacrfull] = ACTIONS(6457), - [anon_sym_BSLASHAcrfull] = ACTIONS(6457), - [anon_sym_BSLASHACRfull] = ACTIONS(6457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6457), - [anon_sym_BSLASHacs] = ACTIONS(6457), - [anon_sym_BSLASHAcs] = ACTIONS(6457), - [anon_sym_BSLASHacsp] = ACTIONS(6457), - [anon_sym_BSLASHAcsp] = ACTIONS(6457), - [anon_sym_BSLASHacl] = ACTIONS(6457), - [anon_sym_BSLASHAcl] = ACTIONS(6457), - [anon_sym_BSLASHaclp] = ACTIONS(6457), - [anon_sym_BSLASHAclp] = ACTIONS(6457), - [anon_sym_BSLASHacf] = ACTIONS(6457), - [anon_sym_BSLASHAcf] = ACTIONS(6457), - [anon_sym_BSLASHacfp] = ACTIONS(6457), - [anon_sym_BSLASHAcfp] = ACTIONS(6457), - [anon_sym_BSLASHac] = ACTIONS(6457), - [anon_sym_BSLASHAc] = ACTIONS(6457), - [anon_sym_BSLASHacp] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6457), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6457), - [anon_sym_BSLASHcolor] = ACTIONS(6457), - [anon_sym_BSLASHcolorbox] = ACTIONS(6457), - [anon_sym_BSLASHtextcolor] = ACTIONS(6457), - [anon_sym_BSLASHpagecolor] = ACTIONS(6457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6457), - [anon_sym_BSLASHtext] = ACTIONS(6457), - [anon_sym_BSLASHintertext] = ACTIONS(6457), - [anon_sym_shortintertext] = ACTIONS(6457), - }, - [1579] = { - [sym_command_name] = ACTIONS(6461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6461), - [anon_sym_LBRACK] = ACTIONS(6463), - [anon_sym_RBRACK] = ACTIONS(6463), - [anon_sym_COMMA] = ACTIONS(6463), - [anon_sym_EQ] = ACTIONS(6463), - [anon_sym_LPAREN] = ACTIONS(6463), - [anon_sym_RPAREN] = ACTIONS(6463), - [anon_sym_LBRACE] = ACTIONS(6463), - [sym_word] = ACTIONS(6461), - [sym_placeholder] = ACTIONS(6463), - [anon_sym_PLUS] = ACTIONS(6463), - [anon_sym_DASH] = ACTIONS(6463), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6463), - [anon_sym_LT] = ACTIONS(6461), - [anon_sym_GT] = ACTIONS(6461), - [anon_sym_BANG] = ACTIONS(6461), - [anon_sym_PIPE] = ACTIONS(6461), - [anon_sym_COLON] = ACTIONS(6461), - [anon_sym_SQUOTE] = ACTIONS(6461), - [anon_sym__] = ACTIONS(6463), - [anon_sym_CARET] = ACTIONS(6463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6463), - [anon_sym_DOLLAR] = ACTIONS(6461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6463), - [anon_sym_BSLASHbegin] = ACTIONS(6461), - [anon_sym_BSLASHend] = ACTIONS(6461), - [anon_sym_BSLASHtitle] = ACTIONS(6461), - [anon_sym_BSLASHauthor] = ACTIONS(6461), - [anon_sym_BSLASHusepackage] = ACTIONS(6461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6461), - [anon_sym_BSLASHinclude] = ACTIONS(6461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6461), - [anon_sym_BSLASHinput] = ACTIONS(6461), - [anon_sym_BSLASHsubfile] = ACTIONS(6461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6461), - [anon_sym_BSLASHbibliography] = ACTIONS(6461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6461), - [anon_sym_BSLASHincludesvg] = ACTIONS(6461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6461), - [anon_sym_BSLASHimport] = ACTIONS(6461), - [anon_sym_BSLASHsubimport] = ACTIONS(6461), - [anon_sym_BSLASHinputfrom] = ACTIONS(6461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6461), - [anon_sym_BSLASHincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHcaption] = ACTIONS(6461), - [anon_sym_BSLASHcite] = ACTIONS(6461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCite] = ACTIONS(6461), - [anon_sym_BSLASHnocite] = ACTIONS(6461), - [anon_sym_BSLASHcitet] = ACTIONS(6461), - [anon_sym_BSLASHcitep] = ACTIONS(6461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteauthor] = ACTIONS(6461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitetitle] = ACTIONS(6461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteyear] = ACTIONS(6461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitedate] = ACTIONS(6461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteurl] = ACTIONS(6461), - [anon_sym_BSLASHfullcite] = ACTIONS(6461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6461), - [anon_sym_BSLASHcitealt] = ACTIONS(6461), - [anon_sym_BSLASHcitealp] = ACTIONS(6461), - [anon_sym_BSLASHcitetext] = ACTIONS(6461), - [anon_sym_BSLASHparencite] = ACTIONS(6461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHParencite] = ACTIONS(6461), - [anon_sym_BSLASHfootcite] = ACTIONS(6461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6461), - [anon_sym_BSLASHtextcite] = ACTIONS(6461), - [anon_sym_BSLASHTextcite] = ACTIONS(6461), - [anon_sym_BSLASHsmartcite] = ACTIONS(6461), - [anon_sym_BSLASHSmartcite] = ACTIONS(6461), - [anon_sym_BSLASHsupercite] = ACTIONS(6461), - [anon_sym_BSLASHautocite] = ACTIONS(6461), - [anon_sym_BSLASHAutocite] = ACTIONS(6461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHvolcite] = ACTIONS(6461), - [anon_sym_BSLASHVolcite] = ACTIONS(6461), - [anon_sym_BSLASHpvolcite] = ACTIONS(6461), - [anon_sym_BSLASHPvolcite] = ACTIONS(6461), - [anon_sym_BSLASHfvolcite] = ACTIONS(6461), - [anon_sym_BSLASHftvolcite] = ACTIONS(6461), - [anon_sym_BSLASHsvolcite] = ACTIONS(6461), - [anon_sym_BSLASHSvolcite] = ACTIONS(6461), - [anon_sym_BSLASHtvolcite] = ACTIONS(6461), - [anon_sym_BSLASHTvolcite] = ACTIONS(6461), - [anon_sym_BSLASHavolcite] = ACTIONS(6461), - [anon_sym_BSLASHAvolcite] = ACTIONS(6461), - [anon_sym_BSLASHnotecite] = ACTIONS(6461), - [anon_sym_BSLASHNotecite] = ACTIONS(6461), - [anon_sym_BSLASHpnotecite] = ACTIONS(6461), - [anon_sym_BSLASHPnotecite] = ACTIONS(6461), - [anon_sym_BSLASHfnotecite] = ACTIONS(6461), - [anon_sym_BSLASHlabel] = ACTIONS(6461), - [anon_sym_BSLASHref] = ACTIONS(6461), - [anon_sym_BSLASHeqref] = ACTIONS(6461), - [anon_sym_BSLASHvref] = ACTIONS(6461), - [anon_sym_BSLASHVref] = ACTIONS(6461), - [anon_sym_BSLASHautoref] = ACTIONS(6461), - [anon_sym_BSLASHpageref] = ACTIONS(6461), - [anon_sym_BSLASHcref] = ACTIONS(6461), - [anon_sym_BSLASHCref] = ACTIONS(6461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnameCref] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHlabelcref] = ACTIONS(6461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCrefrange] = ACTIONS(6461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnewlabel] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6463), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHdef] = ACTIONS(6461), - [anon_sym_BSLASHlet] = ACTIONS(6461), - [anon_sym_BSLASHleft] = ACTIONS(6461), - [anon_sym_BSLASHbig] = ACTIONS(6461), - [anon_sym_BSLASHBig] = ACTIONS(6461), - [anon_sym_BSLASHbigg] = ACTIONS(6461), - [anon_sym_BSLASHBigg] = ACTIONS(6461), - [anon_sym_BSLASHbigl] = ACTIONS(6461), - [anon_sym_BSLASHBigl] = ACTIONS(6461), - [anon_sym_BSLASHbiggl] = ACTIONS(6461), - [anon_sym_BSLASHBiggl] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6461), - [anon_sym_BSLASHgls] = ACTIONS(6461), - [anon_sym_BSLASHGls] = ACTIONS(6461), - [anon_sym_BSLASHGLS] = ACTIONS(6461), - [anon_sym_BSLASHglspl] = ACTIONS(6461), - [anon_sym_BSLASHGlspl] = ACTIONS(6461), - [anon_sym_BSLASHGLSpl] = ACTIONS(6461), - [anon_sym_BSLASHglsdisp] = ACTIONS(6461), - [anon_sym_BSLASHglslink] = ACTIONS(6461), - [anon_sym_BSLASHglstext] = ACTIONS(6461), - [anon_sym_BSLASHGlstext] = ACTIONS(6461), - [anon_sym_BSLASHGLStext] = ACTIONS(6461), - [anon_sym_BSLASHglsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6461), - [anon_sym_BSLASHglsplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSplural] = ACTIONS(6461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHglsname] = ACTIONS(6461), - [anon_sym_BSLASHGlsname] = ACTIONS(6461), - [anon_sym_BSLASHGLSname] = ACTIONS(6461), - [anon_sym_BSLASHglssymbol] = ACTIONS(6461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6461), - [anon_sym_BSLASHglsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6461), - [anon_sym_BSLASHglsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6461), - [anon_sym_BSLASHglsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6461), - [anon_sym_BSLASHglsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6461), - [anon_sym_BSLASHglsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6461), - [anon_sym_BSLASHnewacronym] = ACTIONS(6461), - [anon_sym_BSLASHacrshort] = ACTIONS(6461), - [anon_sym_BSLASHAcrshort] = ACTIONS(6461), - [anon_sym_BSLASHACRshort] = ACTIONS(6461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6461), - [anon_sym_BSLASHacrlong] = ACTIONS(6461), - [anon_sym_BSLASHAcrlong] = ACTIONS(6461), - [anon_sym_BSLASHACRlong] = ACTIONS(6461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6461), - [anon_sym_BSLASHacrfull] = ACTIONS(6461), - [anon_sym_BSLASHAcrfull] = ACTIONS(6461), - [anon_sym_BSLASHACRfull] = ACTIONS(6461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6461), - [anon_sym_BSLASHacs] = ACTIONS(6461), - [anon_sym_BSLASHAcs] = ACTIONS(6461), - [anon_sym_BSLASHacsp] = ACTIONS(6461), - [anon_sym_BSLASHAcsp] = ACTIONS(6461), - [anon_sym_BSLASHacl] = ACTIONS(6461), - [anon_sym_BSLASHAcl] = ACTIONS(6461), - [anon_sym_BSLASHaclp] = ACTIONS(6461), - [anon_sym_BSLASHAclp] = ACTIONS(6461), - [anon_sym_BSLASHacf] = ACTIONS(6461), - [anon_sym_BSLASHAcf] = ACTIONS(6461), - [anon_sym_BSLASHacfp] = ACTIONS(6461), - [anon_sym_BSLASHAcfp] = ACTIONS(6461), - [anon_sym_BSLASHac] = ACTIONS(6461), - [anon_sym_BSLASHAc] = ACTIONS(6461), - [anon_sym_BSLASHacp] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6461), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6461), - [anon_sym_BSLASHcolor] = ACTIONS(6461), - [anon_sym_BSLASHcolorbox] = ACTIONS(6461), - [anon_sym_BSLASHtextcolor] = ACTIONS(6461), - [anon_sym_BSLASHpagecolor] = ACTIONS(6461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6461), - [anon_sym_BSLASHtext] = ACTIONS(6461), - [anon_sym_BSLASHintertext] = ACTIONS(6461), - [anon_sym_shortintertext] = ACTIONS(6461), - }, - [1580] = { - [sym_command_name] = ACTIONS(6465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6465), - [anon_sym_LBRACK] = ACTIONS(6467), - [anon_sym_RBRACK] = ACTIONS(6467), - [anon_sym_COMMA] = ACTIONS(6467), - [anon_sym_EQ] = ACTIONS(6467), - [anon_sym_LPAREN] = ACTIONS(6467), - [anon_sym_RPAREN] = ACTIONS(6467), - [anon_sym_LBRACE] = ACTIONS(6467), - [sym_word] = ACTIONS(6465), - [sym_placeholder] = ACTIONS(6467), - [anon_sym_PLUS] = ACTIONS(6467), - [anon_sym_DASH] = ACTIONS(6467), - [anon_sym_STAR] = ACTIONS(6467), - [anon_sym_SLASH] = ACTIONS(6467), - [anon_sym_LT] = ACTIONS(6465), - [anon_sym_GT] = ACTIONS(6465), - [anon_sym_BANG] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6465), - [anon_sym_COLON] = ACTIONS(6465), - [anon_sym_SQUOTE] = ACTIONS(6465), - [anon_sym__] = ACTIONS(6467), - [anon_sym_CARET] = ACTIONS(6467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6467), - [anon_sym_DOLLAR] = ACTIONS(6465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6467), - [anon_sym_BSLASHbegin] = ACTIONS(6465), - [anon_sym_BSLASHend] = ACTIONS(6465), - [anon_sym_BSLASHtitle] = ACTIONS(6465), - [anon_sym_BSLASHauthor] = ACTIONS(6465), - [anon_sym_BSLASHusepackage] = ACTIONS(6465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6465), - [anon_sym_BSLASHinclude] = ACTIONS(6465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6465), - [anon_sym_BSLASHinput] = ACTIONS(6465), - [anon_sym_BSLASHsubfile] = ACTIONS(6465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6465), - [anon_sym_BSLASHbibliography] = ACTIONS(6465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6465), - [anon_sym_BSLASHincludesvg] = ACTIONS(6465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6465), - [anon_sym_BSLASHimport] = ACTIONS(6465), - [anon_sym_BSLASHsubimport] = ACTIONS(6465), - [anon_sym_BSLASHinputfrom] = ACTIONS(6465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6465), - [anon_sym_BSLASHincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHcaption] = ACTIONS(6465), - [anon_sym_BSLASHcite] = ACTIONS(6465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCite] = ACTIONS(6465), - [anon_sym_BSLASHnocite] = ACTIONS(6465), - [anon_sym_BSLASHcitet] = ACTIONS(6465), - [anon_sym_BSLASHcitep] = ACTIONS(6465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteauthor] = ACTIONS(6465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitetitle] = ACTIONS(6465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteyear] = ACTIONS(6465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitedate] = ACTIONS(6465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteurl] = ACTIONS(6465), - [anon_sym_BSLASHfullcite] = ACTIONS(6465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6465), - [anon_sym_BSLASHcitealt] = ACTIONS(6465), - [anon_sym_BSLASHcitealp] = ACTIONS(6465), - [anon_sym_BSLASHcitetext] = ACTIONS(6465), - [anon_sym_BSLASHparencite] = ACTIONS(6465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHParencite] = ACTIONS(6465), - [anon_sym_BSLASHfootcite] = ACTIONS(6465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6465), - [anon_sym_BSLASHtextcite] = ACTIONS(6465), - [anon_sym_BSLASHTextcite] = ACTIONS(6465), - [anon_sym_BSLASHsmartcite] = ACTIONS(6465), - [anon_sym_BSLASHSmartcite] = ACTIONS(6465), - [anon_sym_BSLASHsupercite] = ACTIONS(6465), - [anon_sym_BSLASHautocite] = ACTIONS(6465), - [anon_sym_BSLASHAutocite] = ACTIONS(6465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHvolcite] = ACTIONS(6465), - [anon_sym_BSLASHVolcite] = ACTIONS(6465), - [anon_sym_BSLASHpvolcite] = ACTIONS(6465), - [anon_sym_BSLASHPvolcite] = ACTIONS(6465), - [anon_sym_BSLASHfvolcite] = ACTIONS(6465), - [anon_sym_BSLASHftvolcite] = ACTIONS(6465), - [anon_sym_BSLASHsvolcite] = ACTIONS(6465), - [anon_sym_BSLASHSvolcite] = ACTIONS(6465), - [anon_sym_BSLASHtvolcite] = ACTIONS(6465), - [anon_sym_BSLASHTvolcite] = ACTIONS(6465), - [anon_sym_BSLASHavolcite] = ACTIONS(6465), - [anon_sym_BSLASHAvolcite] = ACTIONS(6465), - [anon_sym_BSLASHnotecite] = ACTIONS(6465), - [anon_sym_BSLASHNotecite] = ACTIONS(6465), - [anon_sym_BSLASHpnotecite] = ACTIONS(6465), - [anon_sym_BSLASHPnotecite] = ACTIONS(6465), - [anon_sym_BSLASHfnotecite] = ACTIONS(6465), - [anon_sym_BSLASHlabel] = ACTIONS(6465), - [anon_sym_BSLASHref] = ACTIONS(6465), - [anon_sym_BSLASHeqref] = ACTIONS(6465), - [anon_sym_BSLASHvref] = ACTIONS(6465), - [anon_sym_BSLASHVref] = ACTIONS(6465), - [anon_sym_BSLASHautoref] = ACTIONS(6465), - [anon_sym_BSLASHpageref] = ACTIONS(6465), - [anon_sym_BSLASHcref] = ACTIONS(6465), - [anon_sym_BSLASHCref] = ACTIONS(6465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnameCref] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHlabelcref] = ACTIONS(6465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCrefrange] = ACTIONS(6465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnewlabel] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6467), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHdef] = ACTIONS(6465), - [anon_sym_BSLASHlet] = ACTIONS(6465), - [anon_sym_BSLASHleft] = ACTIONS(6465), - [anon_sym_BSLASHbig] = ACTIONS(6465), - [anon_sym_BSLASHBig] = ACTIONS(6465), - [anon_sym_BSLASHbigg] = ACTIONS(6465), - [anon_sym_BSLASHBigg] = ACTIONS(6465), - [anon_sym_BSLASHbigl] = ACTIONS(6465), - [anon_sym_BSLASHBigl] = ACTIONS(6465), - [anon_sym_BSLASHbiggl] = ACTIONS(6465), - [anon_sym_BSLASHBiggl] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6465), - [anon_sym_BSLASHgls] = ACTIONS(6465), - [anon_sym_BSLASHGls] = ACTIONS(6465), - [anon_sym_BSLASHGLS] = ACTIONS(6465), - [anon_sym_BSLASHglspl] = ACTIONS(6465), - [anon_sym_BSLASHGlspl] = ACTIONS(6465), - [anon_sym_BSLASHGLSpl] = ACTIONS(6465), - [anon_sym_BSLASHglsdisp] = ACTIONS(6465), - [anon_sym_BSLASHglslink] = ACTIONS(6465), - [anon_sym_BSLASHglstext] = ACTIONS(6465), - [anon_sym_BSLASHGlstext] = ACTIONS(6465), - [anon_sym_BSLASHGLStext] = ACTIONS(6465), - [anon_sym_BSLASHglsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6465), - [anon_sym_BSLASHglsplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSplural] = ACTIONS(6465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHglsname] = ACTIONS(6465), - [anon_sym_BSLASHGlsname] = ACTIONS(6465), - [anon_sym_BSLASHGLSname] = ACTIONS(6465), - [anon_sym_BSLASHglssymbol] = ACTIONS(6465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6465), - [anon_sym_BSLASHglsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6465), - [anon_sym_BSLASHglsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6465), - [anon_sym_BSLASHglsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6465), - [anon_sym_BSLASHglsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6465), - [anon_sym_BSLASHglsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6465), - [anon_sym_BSLASHnewacronym] = ACTIONS(6465), - [anon_sym_BSLASHacrshort] = ACTIONS(6465), - [anon_sym_BSLASHAcrshort] = ACTIONS(6465), - [anon_sym_BSLASHACRshort] = ACTIONS(6465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6465), - [anon_sym_BSLASHacrlong] = ACTIONS(6465), - [anon_sym_BSLASHAcrlong] = ACTIONS(6465), - [anon_sym_BSLASHACRlong] = ACTIONS(6465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6465), - [anon_sym_BSLASHacrfull] = ACTIONS(6465), - [anon_sym_BSLASHAcrfull] = ACTIONS(6465), - [anon_sym_BSLASHACRfull] = ACTIONS(6465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6465), - [anon_sym_BSLASHacs] = ACTIONS(6465), - [anon_sym_BSLASHAcs] = ACTIONS(6465), - [anon_sym_BSLASHacsp] = ACTIONS(6465), - [anon_sym_BSLASHAcsp] = ACTIONS(6465), - [anon_sym_BSLASHacl] = ACTIONS(6465), - [anon_sym_BSLASHAcl] = ACTIONS(6465), - [anon_sym_BSLASHaclp] = ACTIONS(6465), - [anon_sym_BSLASHAclp] = ACTIONS(6465), - [anon_sym_BSLASHacf] = ACTIONS(6465), - [anon_sym_BSLASHAcf] = ACTIONS(6465), - [anon_sym_BSLASHacfp] = ACTIONS(6465), - [anon_sym_BSLASHAcfp] = ACTIONS(6465), - [anon_sym_BSLASHac] = ACTIONS(6465), - [anon_sym_BSLASHAc] = ACTIONS(6465), - [anon_sym_BSLASHacp] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6465), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6465), - [anon_sym_BSLASHcolor] = ACTIONS(6465), - [anon_sym_BSLASHcolorbox] = ACTIONS(6465), - [anon_sym_BSLASHtextcolor] = ACTIONS(6465), - [anon_sym_BSLASHpagecolor] = ACTIONS(6465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6465), - [anon_sym_BSLASHtext] = ACTIONS(6465), - [anon_sym_BSLASHintertext] = ACTIONS(6465), - [anon_sym_shortintertext] = ACTIONS(6465), - }, - [1581] = { - [sym_command_name] = ACTIONS(6469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6471), - [anon_sym_RBRACK] = ACTIONS(6471), - [anon_sym_COMMA] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(6471), - [anon_sym_LPAREN] = ACTIONS(6471), - [anon_sym_RPAREN] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6471), - [sym_word] = ACTIONS(6469), - [sym_placeholder] = ACTIONS(6471), - [anon_sym_PLUS] = ACTIONS(6471), - [anon_sym_DASH] = ACTIONS(6471), - [anon_sym_STAR] = ACTIONS(6471), - [anon_sym_SLASH] = ACTIONS(6471), - [anon_sym_LT] = ACTIONS(6469), - [anon_sym_GT] = ACTIONS(6469), - [anon_sym_BANG] = ACTIONS(6469), - [anon_sym_PIPE] = ACTIONS(6469), - [anon_sym_COLON] = ACTIONS(6469), - [anon_sym_SQUOTE] = ACTIONS(6469), - [anon_sym__] = ACTIONS(6471), - [anon_sym_CARET] = ACTIONS(6471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6471), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6471), - [anon_sym_DOLLAR] = ACTIONS(6469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6471), - [anon_sym_BSLASHbegin] = ACTIONS(6469), - [anon_sym_BSLASHend] = ACTIONS(6469), - [anon_sym_BSLASHtitle] = ACTIONS(6469), - [anon_sym_BSLASHauthor] = ACTIONS(6469), - [anon_sym_BSLASHusepackage] = ACTIONS(6469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6469), - [anon_sym_BSLASHinclude] = ACTIONS(6469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6469), - [anon_sym_BSLASHinput] = ACTIONS(6469), - [anon_sym_BSLASHsubfile] = ACTIONS(6469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6469), - [anon_sym_BSLASHbibliography] = ACTIONS(6469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6469), - [anon_sym_BSLASHincludesvg] = ACTIONS(6469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6469), - [anon_sym_BSLASHimport] = ACTIONS(6469), - [anon_sym_BSLASHsubimport] = ACTIONS(6469), - [anon_sym_BSLASHinputfrom] = ACTIONS(6469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6469), - [anon_sym_BSLASHincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHcaption] = ACTIONS(6469), - [anon_sym_BSLASHcite] = ACTIONS(6469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCite] = ACTIONS(6469), - [anon_sym_BSLASHnocite] = ACTIONS(6469), - [anon_sym_BSLASHcitet] = ACTIONS(6469), - [anon_sym_BSLASHcitep] = ACTIONS(6469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteauthor] = ACTIONS(6469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitetitle] = ACTIONS(6469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteyear] = ACTIONS(6469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitedate] = ACTIONS(6469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteurl] = ACTIONS(6469), - [anon_sym_BSLASHfullcite] = ACTIONS(6469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6469), - [anon_sym_BSLASHcitealt] = ACTIONS(6469), - [anon_sym_BSLASHcitealp] = ACTIONS(6469), - [anon_sym_BSLASHcitetext] = ACTIONS(6469), - [anon_sym_BSLASHparencite] = ACTIONS(6469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHParencite] = ACTIONS(6469), - [anon_sym_BSLASHfootcite] = ACTIONS(6469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6469), - [anon_sym_BSLASHtextcite] = ACTIONS(6469), - [anon_sym_BSLASHTextcite] = ACTIONS(6469), - [anon_sym_BSLASHsmartcite] = ACTIONS(6469), - [anon_sym_BSLASHSmartcite] = ACTIONS(6469), - [anon_sym_BSLASHsupercite] = ACTIONS(6469), - [anon_sym_BSLASHautocite] = ACTIONS(6469), - [anon_sym_BSLASHAutocite] = ACTIONS(6469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHvolcite] = ACTIONS(6469), - [anon_sym_BSLASHVolcite] = ACTIONS(6469), - [anon_sym_BSLASHpvolcite] = ACTIONS(6469), - [anon_sym_BSLASHPvolcite] = ACTIONS(6469), - [anon_sym_BSLASHfvolcite] = ACTIONS(6469), - [anon_sym_BSLASHftvolcite] = ACTIONS(6469), - [anon_sym_BSLASHsvolcite] = ACTIONS(6469), - [anon_sym_BSLASHSvolcite] = ACTIONS(6469), - [anon_sym_BSLASHtvolcite] = ACTIONS(6469), - [anon_sym_BSLASHTvolcite] = ACTIONS(6469), - [anon_sym_BSLASHavolcite] = ACTIONS(6469), - [anon_sym_BSLASHAvolcite] = ACTIONS(6469), - [anon_sym_BSLASHnotecite] = ACTIONS(6469), - [anon_sym_BSLASHNotecite] = ACTIONS(6469), - [anon_sym_BSLASHpnotecite] = ACTIONS(6469), - [anon_sym_BSLASHPnotecite] = ACTIONS(6469), - [anon_sym_BSLASHfnotecite] = ACTIONS(6469), - [anon_sym_BSLASHlabel] = ACTIONS(6469), - [anon_sym_BSLASHref] = ACTIONS(6469), - [anon_sym_BSLASHeqref] = ACTIONS(6469), - [anon_sym_BSLASHvref] = ACTIONS(6469), - [anon_sym_BSLASHVref] = ACTIONS(6469), - [anon_sym_BSLASHautoref] = ACTIONS(6469), - [anon_sym_BSLASHpageref] = ACTIONS(6469), - [anon_sym_BSLASHcref] = ACTIONS(6469), - [anon_sym_BSLASHCref] = ACTIONS(6469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnameCref] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHlabelcref] = ACTIONS(6469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCrefrange] = ACTIONS(6469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnewlabel] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6471), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHdef] = ACTIONS(6469), - [anon_sym_BSLASHlet] = ACTIONS(6469), - [anon_sym_BSLASHleft] = ACTIONS(6469), - [anon_sym_BSLASHbig] = ACTIONS(6469), - [anon_sym_BSLASHBig] = ACTIONS(6469), - [anon_sym_BSLASHbigg] = ACTIONS(6469), - [anon_sym_BSLASHBigg] = ACTIONS(6469), - [anon_sym_BSLASHbigl] = ACTIONS(6469), - [anon_sym_BSLASHBigl] = ACTIONS(6469), - [anon_sym_BSLASHbiggl] = ACTIONS(6469), - [anon_sym_BSLASHBiggl] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6469), - [anon_sym_BSLASHgls] = ACTIONS(6469), - [anon_sym_BSLASHGls] = ACTIONS(6469), - [anon_sym_BSLASHGLS] = ACTIONS(6469), - [anon_sym_BSLASHglspl] = ACTIONS(6469), - [anon_sym_BSLASHGlspl] = ACTIONS(6469), - [anon_sym_BSLASHGLSpl] = ACTIONS(6469), - [anon_sym_BSLASHglsdisp] = ACTIONS(6469), - [anon_sym_BSLASHglslink] = ACTIONS(6469), - [anon_sym_BSLASHglstext] = ACTIONS(6469), - [anon_sym_BSLASHGlstext] = ACTIONS(6469), - [anon_sym_BSLASHGLStext] = ACTIONS(6469), - [anon_sym_BSLASHglsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6469), - [anon_sym_BSLASHglsplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSplural] = ACTIONS(6469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHglsname] = ACTIONS(6469), - [anon_sym_BSLASHGlsname] = ACTIONS(6469), - [anon_sym_BSLASHGLSname] = ACTIONS(6469), - [anon_sym_BSLASHglssymbol] = ACTIONS(6469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6469), - [anon_sym_BSLASHglsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6469), - [anon_sym_BSLASHglsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6469), - [anon_sym_BSLASHglsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6469), - [anon_sym_BSLASHglsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6469), - [anon_sym_BSLASHglsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6469), - [anon_sym_BSLASHnewacronym] = ACTIONS(6469), - [anon_sym_BSLASHacrshort] = ACTIONS(6469), - [anon_sym_BSLASHAcrshort] = ACTIONS(6469), - [anon_sym_BSLASHACRshort] = ACTIONS(6469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6469), - [anon_sym_BSLASHacrlong] = ACTIONS(6469), - [anon_sym_BSLASHAcrlong] = ACTIONS(6469), - [anon_sym_BSLASHACRlong] = ACTIONS(6469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6469), - [anon_sym_BSLASHacrfull] = ACTIONS(6469), - [anon_sym_BSLASHAcrfull] = ACTIONS(6469), - [anon_sym_BSLASHACRfull] = ACTIONS(6469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6469), - [anon_sym_BSLASHacs] = ACTIONS(6469), - [anon_sym_BSLASHAcs] = ACTIONS(6469), - [anon_sym_BSLASHacsp] = ACTIONS(6469), - [anon_sym_BSLASHAcsp] = ACTIONS(6469), - [anon_sym_BSLASHacl] = ACTIONS(6469), - [anon_sym_BSLASHAcl] = ACTIONS(6469), - [anon_sym_BSLASHaclp] = ACTIONS(6469), - [anon_sym_BSLASHAclp] = ACTIONS(6469), - [anon_sym_BSLASHacf] = ACTIONS(6469), - [anon_sym_BSLASHAcf] = ACTIONS(6469), - [anon_sym_BSLASHacfp] = ACTIONS(6469), - [anon_sym_BSLASHAcfp] = ACTIONS(6469), - [anon_sym_BSLASHac] = ACTIONS(6469), - [anon_sym_BSLASHAc] = ACTIONS(6469), - [anon_sym_BSLASHacp] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6469), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6469), - [anon_sym_BSLASHcolor] = ACTIONS(6469), - [anon_sym_BSLASHcolorbox] = ACTIONS(6469), - [anon_sym_BSLASHtextcolor] = ACTIONS(6469), - [anon_sym_BSLASHpagecolor] = ACTIONS(6469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6469), - [anon_sym_BSLASHtext] = ACTIONS(6469), - [anon_sym_BSLASHintertext] = ACTIONS(6469), - [anon_sym_shortintertext] = ACTIONS(6469), - }, - [1582] = { - [sym_command_name] = ACTIONS(6305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6305), - [anon_sym_LBRACK] = ACTIONS(6307), - [anon_sym_RBRACK] = ACTIONS(6307), - [anon_sym_COMMA] = ACTIONS(6307), - [anon_sym_EQ] = ACTIONS(6307), - [anon_sym_LPAREN] = ACTIONS(6307), - [anon_sym_RPAREN] = ACTIONS(6307), - [anon_sym_LBRACE] = ACTIONS(6307), - [sym_word] = ACTIONS(6305), - [sym_placeholder] = ACTIONS(6307), - [anon_sym_PLUS] = ACTIONS(6307), - [anon_sym_DASH] = ACTIONS(6307), - [anon_sym_STAR] = ACTIONS(6307), - [anon_sym_SLASH] = ACTIONS(6307), - [anon_sym_LT] = ACTIONS(6305), - [anon_sym_GT] = ACTIONS(6305), - [anon_sym_BANG] = ACTIONS(6305), - [anon_sym_PIPE] = ACTIONS(6305), - [anon_sym_COLON] = ACTIONS(6305), - [anon_sym_SQUOTE] = ACTIONS(6305), - [anon_sym__] = ACTIONS(6307), - [anon_sym_CARET] = ACTIONS(6307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6307), - [anon_sym_DOLLAR] = ACTIONS(6305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6307), - [anon_sym_BSLASHbegin] = ACTIONS(6305), - [anon_sym_BSLASHend] = ACTIONS(6305), - [anon_sym_BSLASHtitle] = ACTIONS(6305), - [anon_sym_BSLASHauthor] = ACTIONS(6305), - [anon_sym_BSLASHusepackage] = ACTIONS(6305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6305), - [anon_sym_BSLASHinclude] = ACTIONS(6305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6305), - [anon_sym_BSLASHinput] = ACTIONS(6305), - [anon_sym_BSLASHsubfile] = ACTIONS(6305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6305), - [anon_sym_BSLASHbibliography] = ACTIONS(6305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6305), - [anon_sym_BSLASHincludesvg] = ACTIONS(6305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6305), - [anon_sym_BSLASHimport] = ACTIONS(6305), - [anon_sym_BSLASHsubimport] = ACTIONS(6305), - [anon_sym_BSLASHinputfrom] = ACTIONS(6305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6305), - [anon_sym_BSLASHincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHcaption] = ACTIONS(6305), - [anon_sym_BSLASHcite] = ACTIONS(6305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCite] = ACTIONS(6305), - [anon_sym_BSLASHnocite] = ACTIONS(6305), - [anon_sym_BSLASHcitet] = ACTIONS(6305), - [anon_sym_BSLASHcitep] = ACTIONS(6305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteauthor] = ACTIONS(6305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitetitle] = ACTIONS(6305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteyear] = ACTIONS(6305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitedate] = ACTIONS(6305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteurl] = ACTIONS(6305), - [anon_sym_BSLASHfullcite] = ACTIONS(6305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6305), - [anon_sym_BSLASHcitealt] = ACTIONS(6305), - [anon_sym_BSLASHcitealp] = ACTIONS(6305), - [anon_sym_BSLASHcitetext] = ACTIONS(6305), - [anon_sym_BSLASHparencite] = ACTIONS(6305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHParencite] = ACTIONS(6305), - [anon_sym_BSLASHfootcite] = ACTIONS(6305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6305), - [anon_sym_BSLASHtextcite] = ACTIONS(6305), - [anon_sym_BSLASHTextcite] = ACTIONS(6305), - [anon_sym_BSLASHsmartcite] = ACTIONS(6305), - [anon_sym_BSLASHSmartcite] = ACTIONS(6305), - [anon_sym_BSLASHsupercite] = ACTIONS(6305), - [anon_sym_BSLASHautocite] = ACTIONS(6305), - [anon_sym_BSLASHAutocite] = ACTIONS(6305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHvolcite] = ACTIONS(6305), - [anon_sym_BSLASHVolcite] = ACTIONS(6305), - [anon_sym_BSLASHpvolcite] = ACTIONS(6305), - [anon_sym_BSLASHPvolcite] = ACTIONS(6305), - [anon_sym_BSLASHfvolcite] = ACTIONS(6305), - [anon_sym_BSLASHftvolcite] = ACTIONS(6305), - [anon_sym_BSLASHsvolcite] = ACTIONS(6305), - [anon_sym_BSLASHSvolcite] = ACTIONS(6305), - [anon_sym_BSLASHtvolcite] = ACTIONS(6305), - [anon_sym_BSLASHTvolcite] = ACTIONS(6305), - [anon_sym_BSLASHavolcite] = ACTIONS(6305), - [anon_sym_BSLASHAvolcite] = ACTIONS(6305), - [anon_sym_BSLASHnotecite] = ACTIONS(6305), - [anon_sym_BSLASHNotecite] = ACTIONS(6305), - [anon_sym_BSLASHpnotecite] = ACTIONS(6305), - [anon_sym_BSLASHPnotecite] = ACTIONS(6305), - [anon_sym_BSLASHfnotecite] = ACTIONS(6305), - [anon_sym_BSLASHlabel] = ACTIONS(6305), - [anon_sym_BSLASHref] = ACTIONS(6305), - [anon_sym_BSLASHeqref] = ACTIONS(6305), - [anon_sym_BSLASHvref] = ACTIONS(6305), - [anon_sym_BSLASHVref] = ACTIONS(6305), - [anon_sym_BSLASHautoref] = ACTIONS(6305), - [anon_sym_BSLASHpageref] = ACTIONS(6305), - [anon_sym_BSLASHcref] = ACTIONS(6305), - [anon_sym_BSLASHCref] = ACTIONS(6305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnameCref] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHlabelcref] = ACTIONS(6305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCrefrange] = ACTIONS(6305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnewlabel] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6307), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHdef] = ACTIONS(6305), - [anon_sym_BSLASHlet] = ACTIONS(6305), - [anon_sym_BSLASHleft] = ACTIONS(6305), - [anon_sym_BSLASHbig] = ACTIONS(6305), - [anon_sym_BSLASHBig] = ACTIONS(6305), - [anon_sym_BSLASHbigg] = ACTIONS(6305), - [anon_sym_BSLASHBigg] = ACTIONS(6305), - [anon_sym_BSLASHbigl] = ACTIONS(6305), - [anon_sym_BSLASHBigl] = ACTIONS(6305), - [anon_sym_BSLASHbiggl] = ACTIONS(6305), - [anon_sym_BSLASHBiggl] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6305), - [anon_sym_BSLASHgls] = ACTIONS(6305), - [anon_sym_BSLASHGls] = ACTIONS(6305), - [anon_sym_BSLASHGLS] = ACTIONS(6305), - [anon_sym_BSLASHglspl] = ACTIONS(6305), - [anon_sym_BSLASHGlspl] = ACTIONS(6305), - [anon_sym_BSLASHGLSpl] = ACTIONS(6305), - [anon_sym_BSLASHglsdisp] = ACTIONS(6305), - [anon_sym_BSLASHglslink] = ACTIONS(6305), - [anon_sym_BSLASHglstext] = ACTIONS(6305), - [anon_sym_BSLASHGlstext] = ACTIONS(6305), - [anon_sym_BSLASHGLStext] = ACTIONS(6305), - [anon_sym_BSLASHglsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6305), - [anon_sym_BSLASHglsplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSplural] = ACTIONS(6305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHglsname] = ACTIONS(6305), - [anon_sym_BSLASHGlsname] = ACTIONS(6305), - [anon_sym_BSLASHGLSname] = ACTIONS(6305), - [anon_sym_BSLASHglssymbol] = ACTIONS(6305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6305), - [anon_sym_BSLASHglsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6305), - [anon_sym_BSLASHglsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6305), - [anon_sym_BSLASHglsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6305), - [anon_sym_BSLASHglsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6305), - [anon_sym_BSLASHglsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6305), - [anon_sym_BSLASHnewacronym] = ACTIONS(6305), - [anon_sym_BSLASHacrshort] = ACTIONS(6305), - [anon_sym_BSLASHAcrshort] = ACTIONS(6305), - [anon_sym_BSLASHACRshort] = ACTIONS(6305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6305), - [anon_sym_BSLASHacrlong] = ACTIONS(6305), - [anon_sym_BSLASHAcrlong] = ACTIONS(6305), - [anon_sym_BSLASHACRlong] = ACTIONS(6305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6305), - [anon_sym_BSLASHacrfull] = ACTIONS(6305), - [anon_sym_BSLASHAcrfull] = ACTIONS(6305), - [anon_sym_BSLASHACRfull] = ACTIONS(6305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6305), - [anon_sym_BSLASHacs] = ACTIONS(6305), - [anon_sym_BSLASHAcs] = ACTIONS(6305), - [anon_sym_BSLASHacsp] = ACTIONS(6305), - [anon_sym_BSLASHAcsp] = ACTIONS(6305), - [anon_sym_BSLASHacl] = ACTIONS(6305), - [anon_sym_BSLASHAcl] = ACTIONS(6305), - [anon_sym_BSLASHaclp] = ACTIONS(6305), - [anon_sym_BSLASHAclp] = ACTIONS(6305), - [anon_sym_BSLASHacf] = ACTIONS(6305), - [anon_sym_BSLASHAcf] = ACTIONS(6305), - [anon_sym_BSLASHacfp] = ACTIONS(6305), - [anon_sym_BSLASHAcfp] = ACTIONS(6305), - [anon_sym_BSLASHac] = ACTIONS(6305), - [anon_sym_BSLASHAc] = ACTIONS(6305), - [anon_sym_BSLASHacp] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6305), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6305), - [anon_sym_BSLASHcolor] = ACTIONS(6305), - [anon_sym_BSLASHcolorbox] = ACTIONS(6305), - [anon_sym_BSLASHtextcolor] = ACTIONS(6305), - [anon_sym_BSLASHpagecolor] = ACTIONS(6305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6305), - [anon_sym_BSLASHtext] = ACTIONS(6305), - [anon_sym_BSLASHintertext] = ACTIONS(6305), - [anon_sym_shortintertext] = ACTIONS(6305), - }, - [1583] = { - [sym_command_name] = ACTIONS(6309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6309), - [anon_sym_LBRACK] = ACTIONS(6311), - [anon_sym_RBRACK] = ACTIONS(6311), - [anon_sym_COMMA] = ACTIONS(6311), - [anon_sym_EQ] = ACTIONS(6311), - [anon_sym_LPAREN] = ACTIONS(6311), - [anon_sym_RPAREN] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(6311), - [sym_word] = ACTIONS(6309), - [sym_placeholder] = ACTIONS(6311), - [anon_sym_PLUS] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [anon_sym_STAR] = ACTIONS(6311), - [anon_sym_SLASH] = ACTIONS(6311), - [anon_sym_LT] = ACTIONS(6309), - [anon_sym_GT] = ACTIONS(6309), - [anon_sym_BANG] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(6309), - [anon_sym_COLON] = ACTIONS(6309), - [anon_sym_SQUOTE] = ACTIONS(6309), - [anon_sym__] = ACTIONS(6311), - [anon_sym_CARET] = ACTIONS(6311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6311), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6311), - [anon_sym_DOLLAR] = ACTIONS(6309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6311), - [anon_sym_BSLASHbegin] = ACTIONS(6309), - [anon_sym_BSLASHend] = ACTIONS(6309), - [anon_sym_BSLASHtitle] = ACTIONS(6309), - [anon_sym_BSLASHauthor] = ACTIONS(6309), - [anon_sym_BSLASHusepackage] = ACTIONS(6309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6309), - [anon_sym_BSLASHinclude] = ACTIONS(6309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6309), - [anon_sym_BSLASHinput] = ACTIONS(6309), - [anon_sym_BSLASHsubfile] = ACTIONS(6309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6309), - [anon_sym_BSLASHbibliography] = ACTIONS(6309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6309), - [anon_sym_BSLASHincludesvg] = ACTIONS(6309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6309), - [anon_sym_BSLASHimport] = ACTIONS(6309), - [anon_sym_BSLASHsubimport] = ACTIONS(6309), - [anon_sym_BSLASHinputfrom] = ACTIONS(6309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6309), - [anon_sym_BSLASHincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHcaption] = ACTIONS(6309), - [anon_sym_BSLASHcite] = ACTIONS(6309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCite] = ACTIONS(6309), - [anon_sym_BSLASHnocite] = ACTIONS(6309), - [anon_sym_BSLASHcitet] = ACTIONS(6309), - [anon_sym_BSLASHcitep] = ACTIONS(6309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteauthor] = ACTIONS(6309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitetitle] = ACTIONS(6309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteyear] = ACTIONS(6309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitedate] = ACTIONS(6309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteurl] = ACTIONS(6309), - [anon_sym_BSLASHfullcite] = ACTIONS(6309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6309), - [anon_sym_BSLASHcitealt] = ACTIONS(6309), - [anon_sym_BSLASHcitealp] = ACTIONS(6309), - [anon_sym_BSLASHcitetext] = ACTIONS(6309), - [anon_sym_BSLASHparencite] = ACTIONS(6309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHParencite] = ACTIONS(6309), - [anon_sym_BSLASHfootcite] = ACTIONS(6309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6309), - [anon_sym_BSLASHtextcite] = ACTIONS(6309), - [anon_sym_BSLASHTextcite] = ACTIONS(6309), - [anon_sym_BSLASHsmartcite] = ACTIONS(6309), - [anon_sym_BSLASHSmartcite] = ACTIONS(6309), - [anon_sym_BSLASHsupercite] = ACTIONS(6309), - [anon_sym_BSLASHautocite] = ACTIONS(6309), - [anon_sym_BSLASHAutocite] = ACTIONS(6309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHvolcite] = ACTIONS(6309), - [anon_sym_BSLASHVolcite] = ACTIONS(6309), - [anon_sym_BSLASHpvolcite] = ACTIONS(6309), - [anon_sym_BSLASHPvolcite] = ACTIONS(6309), - [anon_sym_BSLASHfvolcite] = ACTIONS(6309), - [anon_sym_BSLASHftvolcite] = ACTIONS(6309), - [anon_sym_BSLASHsvolcite] = ACTIONS(6309), - [anon_sym_BSLASHSvolcite] = ACTIONS(6309), - [anon_sym_BSLASHtvolcite] = ACTIONS(6309), - [anon_sym_BSLASHTvolcite] = ACTIONS(6309), - [anon_sym_BSLASHavolcite] = ACTIONS(6309), - [anon_sym_BSLASHAvolcite] = ACTIONS(6309), - [anon_sym_BSLASHnotecite] = ACTIONS(6309), - [anon_sym_BSLASHNotecite] = ACTIONS(6309), - [anon_sym_BSLASHpnotecite] = ACTIONS(6309), - [anon_sym_BSLASHPnotecite] = ACTIONS(6309), - [anon_sym_BSLASHfnotecite] = ACTIONS(6309), - [anon_sym_BSLASHlabel] = ACTIONS(6309), - [anon_sym_BSLASHref] = ACTIONS(6309), - [anon_sym_BSLASHeqref] = ACTIONS(6309), - [anon_sym_BSLASHvref] = ACTIONS(6309), - [anon_sym_BSLASHVref] = ACTIONS(6309), - [anon_sym_BSLASHautoref] = ACTIONS(6309), - [anon_sym_BSLASHpageref] = ACTIONS(6309), - [anon_sym_BSLASHcref] = ACTIONS(6309), - [anon_sym_BSLASHCref] = ACTIONS(6309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnameCref] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHlabelcref] = ACTIONS(6309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCrefrange] = ACTIONS(6309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnewlabel] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6311), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHdef] = ACTIONS(6309), - [anon_sym_BSLASHlet] = ACTIONS(6309), - [anon_sym_BSLASHleft] = ACTIONS(6309), - [anon_sym_BSLASHbig] = ACTIONS(6309), - [anon_sym_BSLASHBig] = ACTIONS(6309), - [anon_sym_BSLASHbigg] = ACTIONS(6309), - [anon_sym_BSLASHBigg] = ACTIONS(6309), - [anon_sym_BSLASHbigl] = ACTIONS(6309), - [anon_sym_BSLASHBigl] = ACTIONS(6309), - [anon_sym_BSLASHbiggl] = ACTIONS(6309), - [anon_sym_BSLASHBiggl] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6309), - [anon_sym_BSLASHgls] = ACTIONS(6309), - [anon_sym_BSLASHGls] = ACTIONS(6309), - [anon_sym_BSLASHGLS] = ACTIONS(6309), - [anon_sym_BSLASHglspl] = ACTIONS(6309), - [anon_sym_BSLASHGlspl] = ACTIONS(6309), - [anon_sym_BSLASHGLSpl] = ACTIONS(6309), - [anon_sym_BSLASHglsdisp] = ACTIONS(6309), - [anon_sym_BSLASHglslink] = ACTIONS(6309), - [anon_sym_BSLASHglstext] = ACTIONS(6309), - [anon_sym_BSLASHGlstext] = ACTIONS(6309), - [anon_sym_BSLASHGLStext] = ACTIONS(6309), - [anon_sym_BSLASHglsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6309), - [anon_sym_BSLASHglsplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSplural] = ACTIONS(6309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHglsname] = ACTIONS(6309), - [anon_sym_BSLASHGlsname] = ACTIONS(6309), - [anon_sym_BSLASHGLSname] = ACTIONS(6309), - [anon_sym_BSLASHglssymbol] = ACTIONS(6309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6309), - [anon_sym_BSLASHglsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6309), - [anon_sym_BSLASHglsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6309), - [anon_sym_BSLASHglsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6309), - [anon_sym_BSLASHglsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6309), - [anon_sym_BSLASHglsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6309), - [anon_sym_BSLASHnewacronym] = ACTIONS(6309), - [anon_sym_BSLASHacrshort] = ACTIONS(6309), - [anon_sym_BSLASHAcrshort] = ACTIONS(6309), - [anon_sym_BSLASHACRshort] = ACTIONS(6309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6309), - [anon_sym_BSLASHacrlong] = ACTIONS(6309), - [anon_sym_BSLASHAcrlong] = ACTIONS(6309), - [anon_sym_BSLASHACRlong] = ACTIONS(6309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6309), - [anon_sym_BSLASHacrfull] = ACTIONS(6309), - [anon_sym_BSLASHAcrfull] = ACTIONS(6309), - [anon_sym_BSLASHACRfull] = ACTIONS(6309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6309), - [anon_sym_BSLASHacs] = ACTIONS(6309), - [anon_sym_BSLASHAcs] = ACTIONS(6309), - [anon_sym_BSLASHacsp] = ACTIONS(6309), - [anon_sym_BSLASHAcsp] = ACTIONS(6309), - [anon_sym_BSLASHacl] = ACTIONS(6309), - [anon_sym_BSLASHAcl] = ACTIONS(6309), - [anon_sym_BSLASHaclp] = ACTIONS(6309), - [anon_sym_BSLASHAclp] = ACTIONS(6309), - [anon_sym_BSLASHacf] = ACTIONS(6309), - [anon_sym_BSLASHAcf] = ACTIONS(6309), - [anon_sym_BSLASHacfp] = ACTIONS(6309), - [anon_sym_BSLASHAcfp] = ACTIONS(6309), - [anon_sym_BSLASHac] = ACTIONS(6309), - [anon_sym_BSLASHAc] = ACTIONS(6309), - [anon_sym_BSLASHacp] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6309), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6309), - [anon_sym_BSLASHcolor] = ACTIONS(6309), - [anon_sym_BSLASHcolorbox] = ACTIONS(6309), - [anon_sym_BSLASHtextcolor] = ACTIONS(6309), - [anon_sym_BSLASHpagecolor] = ACTIONS(6309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6309), - [anon_sym_BSLASHtext] = ACTIONS(6309), - [anon_sym_BSLASHintertext] = ACTIONS(6309), - [anon_sym_shortintertext] = ACTIONS(6309), - }, - [1584] = { - [sym_command_name] = ACTIONS(6313), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6313), - [anon_sym_LBRACK] = ACTIONS(6315), - [anon_sym_RBRACK] = ACTIONS(6315), - [anon_sym_COMMA] = ACTIONS(6315), - [anon_sym_EQ] = ACTIONS(6315), - [anon_sym_LPAREN] = ACTIONS(6315), - [anon_sym_RPAREN] = ACTIONS(6315), - [anon_sym_LBRACE] = ACTIONS(6315), - [sym_word] = ACTIONS(6313), - [sym_placeholder] = ACTIONS(6315), - [anon_sym_PLUS] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6315), - [anon_sym_SLASH] = ACTIONS(6315), - [anon_sym_LT] = ACTIONS(6313), - [anon_sym_GT] = ACTIONS(6313), - [anon_sym_BANG] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(6313), - [anon_sym_COLON] = ACTIONS(6313), - [anon_sym_SQUOTE] = ACTIONS(6313), - [anon_sym__] = ACTIONS(6315), - [anon_sym_CARET] = ACTIONS(6315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6315), - [anon_sym_DOLLAR] = ACTIONS(6313), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6315), - [anon_sym_BSLASHbegin] = ACTIONS(6313), - [anon_sym_BSLASHend] = ACTIONS(6313), - [anon_sym_BSLASHtitle] = ACTIONS(6313), - [anon_sym_BSLASHauthor] = ACTIONS(6313), - [anon_sym_BSLASHusepackage] = ACTIONS(6313), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6313), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6313), - [anon_sym_BSLASHinclude] = ACTIONS(6313), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6313), - [anon_sym_BSLASHinput] = ACTIONS(6313), - [anon_sym_BSLASHsubfile] = ACTIONS(6313), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6313), - [anon_sym_BSLASHbibliography] = ACTIONS(6313), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6313), - [anon_sym_BSLASHincludesvg] = ACTIONS(6313), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6313), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6313), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6313), - [anon_sym_BSLASHimport] = ACTIONS(6313), - [anon_sym_BSLASHsubimport] = ACTIONS(6313), - [anon_sym_BSLASHinputfrom] = ACTIONS(6313), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6313), - [anon_sym_BSLASHincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHcaption] = ACTIONS(6313), - [anon_sym_BSLASHcite] = ACTIONS(6313), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCite] = ACTIONS(6313), - [anon_sym_BSLASHnocite] = ACTIONS(6313), - [anon_sym_BSLASHcitet] = ACTIONS(6313), - [anon_sym_BSLASHcitep] = ACTIONS(6313), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteauthor] = ACTIONS(6313), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6313), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitetitle] = ACTIONS(6313), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteyear] = ACTIONS(6313), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitedate] = ACTIONS(6313), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteurl] = ACTIONS(6313), - [anon_sym_BSLASHfullcite] = ACTIONS(6313), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6313), - [anon_sym_BSLASHcitealt] = ACTIONS(6313), - [anon_sym_BSLASHcitealp] = ACTIONS(6313), - [anon_sym_BSLASHcitetext] = ACTIONS(6313), - [anon_sym_BSLASHparencite] = ACTIONS(6313), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHParencite] = ACTIONS(6313), - [anon_sym_BSLASHfootcite] = ACTIONS(6313), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6313), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6313), - [anon_sym_BSLASHtextcite] = ACTIONS(6313), - [anon_sym_BSLASHTextcite] = ACTIONS(6313), - [anon_sym_BSLASHsmartcite] = ACTIONS(6313), - [anon_sym_BSLASHSmartcite] = ACTIONS(6313), - [anon_sym_BSLASHsupercite] = ACTIONS(6313), - [anon_sym_BSLASHautocite] = ACTIONS(6313), - [anon_sym_BSLASHAutocite] = ACTIONS(6313), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHvolcite] = ACTIONS(6313), - [anon_sym_BSLASHVolcite] = ACTIONS(6313), - [anon_sym_BSLASHpvolcite] = ACTIONS(6313), - [anon_sym_BSLASHPvolcite] = ACTIONS(6313), - [anon_sym_BSLASHfvolcite] = ACTIONS(6313), - [anon_sym_BSLASHftvolcite] = ACTIONS(6313), - [anon_sym_BSLASHsvolcite] = ACTIONS(6313), - [anon_sym_BSLASHSvolcite] = ACTIONS(6313), - [anon_sym_BSLASHtvolcite] = ACTIONS(6313), - [anon_sym_BSLASHTvolcite] = ACTIONS(6313), - [anon_sym_BSLASHavolcite] = ACTIONS(6313), - [anon_sym_BSLASHAvolcite] = ACTIONS(6313), - [anon_sym_BSLASHnotecite] = ACTIONS(6313), - [anon_sym_BSLASHNotecite] = ACTIONS(6313), - [anon_sym_BSLASHpnotecite] = ACTIONS(6313), - [anon_sym_BSLASHPnotecite] = ACTIONS(6313), - [anon_sym_BSLASHfnotecite] = ACTIONS(6313), - [anon_sym_BSLASHlabel] = ACTIONS(6313), - [anon_sym_BSLASHref] = ACTIONS(6313), - [anon_sym_BSLASHeqref] = ACTIONS(6313), - [anon_sym_BSLASHvref] = ACTIONS(6313), - [anon_sym_BSLASHVref] = ACTIONS(6313), - [anon_sym_BSLASHautoref] = ACTIONS(6313), - [anon_sym_BSLASHpageref] = ACTIONS(6313), - [anon_sym_BSLASHcref] = ACTIONS(6313), - [anon_sym_BSLASHCref] = ACTIONS(6313), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnameCref] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHlabelcref] = ACTIONS(6313), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCrefrange] = ACTIONS(6313), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnewlabel] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6313), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6313), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6315), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHdef] = ACTIONS(6313), - [anon_sym_BSLASHlet] = ACTIONS(6313), - [anon_sym_BSLASHleft] = ACTIONS(6313), - [anon_sym_BSLASHbig] = ACTIONS(6313), - [anon_sym_BSLASHBig] = ACTIONS(6313), - [anon_sym_BSLASHbigg] = ACTIONS(6313), - [anon_sym_BSLASHBigg] = ACTIONS(6313), - [anon_sym_BSLASHbigl] = ACTIONS(6313), - [anon_sym_BSLASHBigl] = ACTIONS(6313), - [anon_sym_BSLASHbiggl] = ACTIONS(6313), - [anon_sym_BSLASHBiggl] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6313), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6313), - [anon_sym_BSLASHgls] = ACTIONS(6313), - [anon_sym_BSLASHGls] = ACTIONS(6313), - [anon_sym_BSLASHGLS] = ACTIONS(6313), - [anon_sym_BSLASHglspl] = ACTIONS(6313), - [anon_sym_BSLASHGlspl] = ACTIONS(6313), - [anon_sym_BSLASHGLSpl] = ACTIONS(6313), - [anon_sym_BSLASHglsdisp] = ACTIONS(6313), - [anon_sym_BSLASHglslink] = ACTIONS(6313), - [anon_sym_BSLASHglstext] = ACTIONS(6313), - [anon_sym_BSLASHGlstext] = ACTIONS(6313), - [anon_sym_BSLASHGLStext] = ACTIONS(6313), - [anon_sym_BSLASHglsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6313), - [anon_sym_BSLASHglsplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSplural] = ACTIONS(6313), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHglsname] = ACTIONS(6313), - [anon_sym_BSLASHGlsname] = ACTIONS(6313), - [anon_sym_BSLASHGLSname] = ACTIONS(6313), - [anon_sym_BSLASHglssymbol] = ACTIONS(6313), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6313), - [anon_sym_BSLASHglsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6313), - [anon_sym_BSLASHglsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6313), - [anon_sym_BSLASHglsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6313), - [anon_sym_BSLASHglsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6313), - [anon_sym_BSLASHglsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6313), - [anon_sym_BSLASHnewacronym] = ACTIONS(6313), - [anon_sym_BSLASHacrshort] = ACTIONS(6313), - [anon_sym_BSLASHAcrshort] = ACTIONS(6313), - [anon_sym_BSLASHACRshort] = ACTIONS(6313), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6313), - [anon_sym_BSLASHacrlong] = ACTIONS(6313), - [anon_sym_BSLASHAcrlong] = ACTIONS(6313), - [anon_sym_BSLASHACRlong] = ACTIONS(6313), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6313), - [anon_sym_BSLASHacrfull] = ACTIONS(6313), - [anon_sym_BSLASHAcrfull] = ACTIONS(6313), - [anon_sym_BSLASHACRfull] = ACTIONS(6313), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6313), - [anon_sym_BSLASHacs] = ACTIONS(6313), - [anon_sym_BSLASHAcs] = ACTIONS(6313), - [anon_sym_BSLASHacsp] = ACTIONS(6313), - [anon_sym_BSLASHAcsp] = ACTIONS(6313), - [anon_sym_BSLASHacl] = ACTIONS(6313), - [anon_sym_BSLASHAcl] = ACTIONS(6313), - [anon_sym_BSLASHaclp] = ACTIONS(6313), - [anon_sym_BSLASHAclp] = ACTIONS(6313), - [anon_sym_BSLASHacf] = ACTIONS(6313), - [anon_sym_BSLASHAcf] = ACTIONS(6313), - [anon_sym_BSLASHacfp] = ACTIONS(6313), - [anon_sym_BSLASHAcfp] = ACTIONS(6313), - [anon_sym_BSLASHac] = ACTIONS(6313), - [anon_sym_BSLASHAc] = ACTIONS(6313), - [anon_sym_BSLASHacp] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6313), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6313), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6313), - [anon_sym_BSLASHcolor] = ACTIONS(6313), - [anon_sym_BSLASHcolorbox] = ACTIONS(6313), - [anon_sym_BSLASHtextcolor] = ACTIONS(6313), - [anon_sym_BSLASHpagecolor] = ACTIONS(6313), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6313), - [anon_sym_BSLASHtext] = ACTIONS(6313), - [anon_sym_BSLASHintertext] = ACTIONS(6313), - [anon_sym_shortintertext] = ACTIONS(6313), - }, - [1585] = { - [sym_command_name] = ACTIONS(6317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(6319), - [anon_sym_RBRACK] = ACTIONS(6319), - [anon_sym_COMMA] = ACTIONS(6319), - [anon_sym_EQ] = ACTIONS(6319), - [anon_sym_LPAREN] = ACTIONS(6319), - [anon_sym_RPAREN] = ACTIONS(6319), - [anon_sym_LBRACE] = ACTIONS(6319), - [sym_word] = ACTIONS(6317), - [sym_placeholder] = ACTIONS(6319), - [anon_sym_PLUS] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(6319), - [anon_sym_SLASH] = ACTIONS(6319), - [anon_sym_LT] = ACTIONS(6317), - [anon_sym_GT] = ACTIONS(6317), - [anon_sym_BANG] = ACTIONS(6317), - [anon_sym_PIPE] = ACTIONS(6317), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_SQUOTE] = ACTIONS(6317), - [anon_sym__] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6319), - [anon_sym_DOLLAR] = ACTIONS(6317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6319), - [anon_sym_BSLASHbegin] = ACTIONS(6317), - [anon_sym_BSLASHend] = ACTIONS(6317), - [anon_sym_BSLASHtitle] = ACTIONS(6317), - [anon_sym_BSLASHauthor] = ACTIONS(6317), - [anon_sym_BSLASHusepackage] = ACTIONS(6317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6317), - [anon_sym_BSLASHinclude] = ACTIONS(6317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6317), - [anon_sym_BSLASHinput] = ACTIONS(6317), - [anon_sym_BSLASHsubfile] = ACTIONS(6317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6317), - [anon_sym_BSLASHbibliography] = ACTIONS(6317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6317), - [anon_sym_BSLASHincludesvg] = ACTIONS(6317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6317), - [anon_sym_BSLASHimport] = ACTIONS(6317), - [anon_sym_BSLASHsubimport] = ACTIONS(6317), - [anon_sym_BSLASHinputfrom] = ACTIONS(6317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6317), - [anon_sym_BSLASHincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHcaption] = ACTIONS(6317), - [anon_sym_BSLASHcite] = ACTIONS(6317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCite] = ACTIONS(6317), - [anon_sym_BSLASHnocite] = ACTIONS(6317), - [anon_sym_BSLASHcitet] = ACTIONS(6317), - [anon_sym_BSLASHcitep] = ACTIONS(6317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteauthor] = ACTIONS(6317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitetitle] = ACTIONS(6317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteyear] = ACTIONS(6317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitedate] = ACTIONS(6317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteurl] = ACTIONS(6317), - [anon_sym_BSLASHfullcite] = ACTIONS(6317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6317), - [anon_sym_BSLASHcitealt] = ACTIONS(6317), - [anon_sym_BSLASHcitealp] = ACTIONS(6317), - [anon_sym_BSLASHcitetext] = ACTIONS(6317), - [anon_sym_BSLASHparencite] = ACTIONS(6317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHParencite] = ACTIONS(6317), - [anon_sym_BSLASHfootcite] = ACTIONS(6317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6317), - [anon_sym_BSLASHtextcite] = ACTIONS(6317), - [anon_sym_BSLASHTextcite] = ACTIONS(6317), - [anon_sym_BSLASHsmartcite] = ACTIONS(6317), - [anon_sym_BSLASHSmartcite] = ACTIONS(6317), - [anon_sym_BSLASHsupercite] = ACTIONS(6317), - [anon_sym_BSLASHautocite] = ACTIONS(6317), - [anon_sym_BSLASHAutocite] = ACTIONS(6317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHvolcite] = ACTIONS(6317), - [anon_sym_BSLASHVolcite] = ACTIONS(6317), - [anon_sym_BSLASHpvolcite] = ACTIONS(6317), - [anon_sym_BSLASHPvolcite] = ACTIONS(6317), - [anon_sym_BSLASHfvolcite] = ACTIONS(6317), - [anon_sym_BSLASHftvolcite] = ACTIONS(6317), - [anon_sym_BSLASHsvolcite] = ACTIONS(6317), - [anon_sym_BSLASHSvolcite] = ACTIONS(6317), - [anon_sym_BSLASHtvolcite] = ACTIONS(6317), - [anon_sym_BSLASHTvolcite] = ACTIONS(6317), - [anon_sym_BSLASHavolcite] = ACTIONS(6317), - [anon_sym_BSLASHAvolcite] = ACTIONS(6317), - [anon_sym_BSLASHnotecite] = ACTIONS(6317), - [anon_sym_BSLASHNotecite] = ACTIONS(6317), - [anon_sym_BSLASHpnotecite] = ACTIONS(6317), - [anon_sym_BSLASHPnotecite] = ACTIONS(6317), - [anon_sym_BSLASHfnotecite] = ACTIONS(6317), - [anon_sym_BSLASHlabel] = ACTIONS(6317), - [anon_sym_BSLASHref] = ACTIONS(6317), - [anon_sym_BSLASHeqref] = ACTIONS(6317), - [anon_sym_BSLASHvref] = ACTIONS(6317), - [anon_sym_BSLASHVref] = ACTIONS(6317), - [anon_sym_BSLASHautoref] = ACTIONS(6317), - [anon_sym_BSLASHpageref] = ACTIONS(6317), - [anon_sym_BSLASHcref] = ACTIONS(6317), - [anon_sym_BSLASHCref] = ACTIONS(6317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnameCref] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHlabelcref] = ACTIONS(6317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCrefrange] = ACTIONS(6317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnewlabel] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6319), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHdef] = ACTIONS(6317), - [anon_sym_BSLASHlet] = ACTIONS(6317), - [anon_sym_BSLASHleft] = ACTIONS(6317), - [anon_sym_BSLASHbig] = ACTIONS(6317), - [anon_sym_BSLASHBig] = ACTIONS(6317), - [anon_sym_BSLASHbigg] = ACTIONS(6317), - [anon_sym_BSLASHBigg] = ACTIONS(6317), - [anon_sym_BSLASHbigl] = ACTIONS(6317), - [anon_sym_BSLASHBigl] = ACTIONS(6317), - [anon_sym_BSLASHbiggl] = ACTIONS(6317), - [anon_sym_BSLASHBiggl] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6317), - [anon_sym_BSLASHgls] = ACTIONS(6317), - [anon_sym_BSLASHGls] = ACTIONS(6317), - [anon_sym_BSLASHGLS] = ACTIONS(6317), - [anon_sym_BSLASHglspl] = ACTIONS(6317), - [anon_sym_BSLASHGlspl] = ACTIONS(6317), - [anon_sym_BSLASHGLSpl] = ACTIONS(6317), - [anon_sym_BSLASHglsdisp] = ACTIONS(6317), - [anon_sym_BSLASHglslink] = ACTIONS(6317), - [anon_sym_BSLASHglstext] = ACTIONS(6317), - [anon_sym_BSLASHGlstext] = ACTIONS(6317), - [anon_sym_BSLASHGLStext] = ACTIONS(6317), - [anon_sym_BSLASHglsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6317), - [anon_sym_BSLASHglsplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSplural] = ACTIONS(6317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHglsname] = ACTIONS(6317), - [anon_sym_BSLASHGlsname] = ACTIONS(6317), - [anon_sym_BSLASHGLSname] = ACTIONS(6317), - [anon_sym_BSLASHglssymbol] = ACTIONS(6317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6317), - [anon_sym_BSLASHglsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6317), - [anon_sym_BSLASHglsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6317), - [anon_sym_BSLASHglsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6317), - [anon_sym_BSLASHglsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6317), - [anon_sym_BSLASHglsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6317), - [anon_sym_BSLASHnewacronym] = ACTIONS(6317), - [anon_sym_BSLASHacrshort] = ACTIONS(6317), - [anon_sym_BSLASHAcrshort] = ACTIONS(6317), - [anon_sym_BSLASHACRshort] = ACTIONS(6317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6317), - [anon_sym_BSLASHacrlong] = ACTIONS(6317), - [anon_sym_BSLASHAcrlong] = ACTIONS(6317), - [anon_sym_BSLASHACRlong] = ACTIONS(6317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6317), - [anon_sym_BSLASHacrfull] = ACTIONS(6317), - [anon_sym_BSLASHAcrfull] = ACTIONS(6317), - [anon_sym_BSLASHACRfull] = ACTIONS(6317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6317), - [anon_sym_BSLASHacs] = ACTIONS(6317), - [anon_sym_BSLASHAcs] = ACTIONS(6317), - [anon_sym_BSLASHacsp] = ACTIONS(6317), - [anon_sym_BSLASHAcsp] = ACTIONS(6317), - [anon_sym_BSLASHacl] = ACTIONS(6317), - [anon_sym_BSLASHAcl] = ACTIONS(6317), - [anon_sym_BSLASHaclp] = ACTIONS(6317), - [anon_sym_BSLASHAclp] = ACTIONS(6317), - [anon_sym_BSLASHacf] = ACTIONS(6317), - [anon_sym_BSLASHAcf] = ACTIONS(6317), - [anon_sym_BSLASHacfp] = ACTIONS(6317), - [anon_sym_BSLASHAcfp] = ACTIONS(6317), - [anon_sym_BSLASHac] = ACTIONS(6317), - [anon_sym_BSLASHAc] = ACTIONS(6317), - [anon_sym_BSLASHacp] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6317), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6317), - [anon_sym_BSLASHcolor] = ACTIONS(6317), - [anon_sym_BSLASHcolorbox] = ACTIONS(6317), - [anon_sym_BSLASHtextcolor] = ACTIONS(6317), - [anon_sym_BSLASHpagecolor] = ACTIONS(6317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6317), - [anon_sym_BSLASHtext] = ACTIONS(6317), - [anon_sym_BSLASHintertext] = ACTIONS(6317), - [anon_sym_shortintertext] = ACTIONS(6317), - }, - [1586] = { - [sym_command_name] = ACTIONS(6325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6325), - [anon_sym_LBRACK] = ACTIONS(6327), - [anon_sym_RBRACK] = ACTIONS(6327), - [anon_sym_COMMA] = ACTIONS(6327), - [anon_sym_EQ] = ACTIONS(6327), - [anon_sym_LPAREN] = ACTIONS(6327), - [anon_sym_RPAREN] = ACTIONS(6327), - [anon_sym_LBRACE] = ACTIONS(6327), - [sym_word] = ACTIONS(6325), - [sym_placeholder] = ACTIONS(6327), - [anon_sym_PLUS] = ACTIONS(6327), - [anon_sym_DASH] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6327), - [anon_sym_SLASH] = ACTIONS(6327), - [anon_sym_LT] = ACTIONS(6325), - [anon_sym_GT] = ACTIONS(6325), - [anon_sym_BANG] = ACTIONS(6325), - [anon_sym_PIPE] = ACTIONS(6325), - [anon_sym_COLON] = ACTIONS(6325), - [anon_sym_SQUOTE] = ACTIONS(6325), - [anon_sym__] = ACTIONS(6327), - [anon_sym_CARET] = ACTIONS(6327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6327), - [anon_sym_DOLLAR] = ACTIONS(6325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6327), - [anon_sym_BSLASHbegin] = ACTIONS(6325), - [anon_sym_BSLASHend] = ACTIONS(6325), - [anon_sym_BSLASHtitle] = ACTIONS(6325), - [anon_sym_BSLASHauthor] = ACTIONS(6325), - [anon_sym_BSLASHusepackage] = ACTIONS(6325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6325), - [anon_sym_BSLASHinclude] = ACTIONS(6325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6325), - [anon_sym_BSLASHinput] = ACTIONS(6325), - [anon_sym_BSLASHsubfile] = ACTIONS(6325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6325), - [anon_sym_BSLASHbibliography] = ACTIONS(6325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6325), - [anon_sym_BSLASHincludesvg] = ACTIONS(6325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6325), - [anon_sym_BSLASHimport] = ACTIONS(6325), - [anon_sym_BSLASHsubimport] = ACTIONS(6325), - [anon_sym_BSLASHinputfrom] = ACTIONS(6325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6325), - [anon_sym_BSLASHincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHcaption] = ACTIONS(6325), - [anon_sym_BSLASHcite] = ACTIONS(6325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCite] = ACTIONS(6325), - [anon_sym_BSLASHnocite] = ACTIONS(6325), - [anon_sym_BSLASHcitet] = ACTIONS(6325), - [anon_sym_BSLASHcitep] = ACTIONS(6325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteauthor] = ACTIONS(6325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitetitle] = ACTIONS(6325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteyear] = ACTIONS(6325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitedate] = ACTIONS(6325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteurl] = ACTIONS(6325), - [anon_sym_BSLASHfullcite] = ACTIONS(6325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6325), - [anon_sym_BSLASHcitealt] = ACTIONS(6325), - [anon_sym_BSLASHcitealp] = ACTIONS(6325), - [anon_sym_BSLASHcitetext] = ACTIONS(6325), - [anon_sym_BSLASHparencite] = ACTIONS(6325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHParencite] = ACTIONS(6325), - [anon_sym_BSLASHfootcite] = ACTIONS(6325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6325), - [anon_sym_BSLASHtextcite] = ACTIONS(6325), - [anon_sym_BSLASHTextcite] = ACTIONS(6325), - [anon_sym_BSLASHsmartcite] = ACTIONS(6325), - [anon_sym_BSLASHSmartcite] = ACTIONS(6325), - [anon_sym_BSLASHsupercite] = ACTIONS(6325), - [anon_sym_BSLASHautocite] = ACTIONS(6325), - [anon_sym_BSLASHAutocite] = ACTIONS(6325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHvolcite] = ACTIONS(6325), - [anon_sym_BSLASHVolcite] = ACTIONS(6325), - [anon_sym_BSLASHpvolcite] = ACTIONS(6325), - [anon_sym_BSLASHPvolcite] = ACTIONS(6325), - [anon_sym_BSLASHfvolcite] = ACTIONS(6325), - [anon_sym_BSLASHftvolcite] = ACTIONS(6325), - [anon_sym_BSLASHsvolcite] = ACTIONS(6325), - [anon_sym_BSLASHSvolcite] = ACTIONS(6325), - [anon_sym_BSLASHtvolcite] = ACTIONS(6325), - [anon_sym_BSLASHTvolcite] = ACTIONS(6325), - [anon_sym_BSLASHavolcite] = ACTIONS(6325), - [anon_sym_BSLASHAvolcite] = ACTIONS(6325), - [anon_sym_BSLASHnotecite] = ACTIONS(6325), - [anon_sym_BSLASHNotecite] = ACTIONS(6325), - [anon_sym_BSLASHpnotecite] = ACTIONS(6325), - [anon_sym_BSLASHPnotecite] = ACTIONS(6325), - [anon_sym_BSLASHfnotecite] = ACTIONS(6325), - [anon_sym_BSLASHlabel] = ACTIONS(6325), - [anon_sym_BSLASHref] = ACTIONS(6325), - [anon_sym_BSLASHeqref] = ACTIONS(6325), - [anon_sym_BSLASHvref] = ACTIONS(6325), - [anon_sym_BSLASHVref] = ACTIONS(6325), - [anon_sym_BSLASHautoref] = ACTIONS(6325), - [anon_sym_BSLASHpageref] = ACTIONS(6325), - [anon_sym_BSLASHcref] = ACTIONS(6325), - [anon_sym_BSLASHCref] = ACTIONS(6325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnameCref] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHlabelcref] = ACTIONS(6325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCrefrange] = ACTIONS(6325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnewlabel] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6327), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHdef] = ACTIONS(6325), - [anon_sym_BSLASHlet] = ACTIONS(6325), - [anon_sym_BSLASHleft] = ACTIONS(6325), - [anon_sym_BSLASHbig] = ACTIONS(6325), - [anon_sym_BSLASHBig] = ACTIONS(6325), - [anon_sym_BSLASHbigg] = ACTIONS(6325), - [anon_sym_BSLASHBigg] = ACTIONS(6325), - [anon_sym_BSLASHbigl] = ACTIONS(6325), - [anon_sym_BSLASHBigl] = ACTIONS(6325), - [anon_sym_BSLASHbiggl] = ACTIONS(6325), - [anon_sym_BSLASHBiggl] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6325), - [anon_sym_BSLASHgls] = ACTIONS(6325), - [anon_sym_BSLASHGls] = ACTIONS(6325), - [anon_sym_BSLASHGLS] = ACTIONS(6325), - [anon_sym_BSLASHglspl] = ACTIONS(6325), - [anon_sym_BSLASHGlspl] = ACTIONS(6325), - [anon_sym_BSLASHGLSpl] = ACTIONS(6325), - [anon_sym_BSLASHglsdisp] = ACTIONS(6325), - [anon_sym_BSLASHglslink] = ACTIONS(6325), - [anon_sym_BSLASHglstext] = ACTIONS(6325), - [anon_sym_BSLASHGlstext] = ACTIONS(6325), - [anon_sym_BSLASHGLStext] = ACTIONS(6325), - [anon_sym_BSLASHglsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6325), - [anon_sym_BSLASHglsplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSplural] = ACTIONS(6325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHglsname] = ACTIONS(6325), - [anon_sym_BSLASHGlsname] = ACTIONS(6325), - [anon_sym_BSLASHGLSname] = ACTIONS(6325), - [anon_sym_BSLASHglssymbol] = ACTIONS(6325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6325), - [anon_sym_BSLASHglsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6325), - [anon_sym_BSLASHglsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6325), - [anon_sym_BSLASHglsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6325), - [anon_sym_BSLASHglsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6325), - [anon_sym_BSLASHglsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6325), - [anon_sym_BSLASHnewacronym] = ACTIONS(6325), - [anon_sym_BSLASHacrshort] = ACTIONS(6325), - [anon_sym_BSLASHAcrshort] = ACTIONS(6325), - [anon_sym_BSLASHACRshort] = ACTIONS(6325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6325), - [anon_sym_BSLASHacrlong] = ACTIONS(6325), - [anon_sym_BSLASHAcrlong] = ACTIONS(6325), - [anon_sym_BSLASHACRlong] = ACTIONS(6325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6325), - [anon_sym_BSLASHacrfull] = ACTIONS(6325), - [anon_sym_BSLASHAcrfull] = ACTIONS(6325), - [anon_sym_BSLASHACRfull] = ACTIONS(6325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6325), - [anon_sym_BSLASHacs] = ACTIONS(6325), - [anon_sym_BSLASHAcs] = ACTIONS(6325), - [anon_sym_BSLASHacsp] = ACTIONS(6325), - [anon_sym_BSLASHAcsp] = ACTIONS(6325), - [anon_sym_BSLASHacl] = ACTIONS(6325), - [anon_sym_BSLASHAcl] = ACTIONS(6325), - [anon_sym_BSLASHaclp] = ACTIONS(6325), - [anon_sym_BSLASHAclp] = ACTIONS(6325), - [anon_sym_BSLASHacf] = ACTIONS(6325), - [anon_sym_BSLASHAcf] = ACTIONS(6325), - [anon_sym_BSLASHacfp] = ACTIONS(6325), - [anon_sym_BSLASHAcfp] = ACTIONS(6325), - [anon_sym_BSLASHac] = ACTIONS(6325), - [anon_sym_BSLASHAc] = ACTIONS(6325), - [anon_sym_BSLASHacp] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6325), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6325), - [anon_sym_BSLASHcolor] = ACTIONS(6325), - [anon_sym_BSLASHcolorbox] = ACTIONS(6325), - [anon_sym_BSLASHtextcolor] = ACTIONS(6325), - [anon_sym_BSLASHpagecolor] = ACTIONS(6325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6325), - [anon_sym_BSLASHtext] = ACTIONS(6325), - [anon_sym_BSLASHintertext] = ACTIONS(6325), - [anon_sym_shortintertext] = ACTIONS(6325), - }, - [1587] = { - [sym_command_name] = ACTIONS(6473), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6473), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_RBRACK] = ACTIONS(6475), - [anon_sym_COMMA] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6475), - [anon_sym_LPAREN] = ACTIONS(6475), - [anon_sym_RPAREN] = ACTIONS(6475), - [anon_sym_LBRACE] = ACTIONS(6475), - [sym_word] = ACTIONS(6473), - [sym_placeholder] = ACTIONS(6475), - [anon_sym_PLUS] = ACTIONS(6475), - [anon_sym_DASH] = ACTIONS(6475), - [anon_sym_STAR] = ACTIONS(6475), - [anon_sym_SLASH] = ACTIONS(6475), - [anon_sym_LT] = ACTIONS(6473), - [anon_sym_GT] = ACTIONS(6473), - [anon_sym_BANG] = ACTIONS(6473), - [anon_sym_PIPE] = ACTIONS(6473), - [anon_sym_COLON] = ACTIONS(6473), - [anon_sym_SQUOTE] = ACTIONS(6473), - [anon_sym__] = ACTIONS(6475), - [anon_sym_CARET] = ACTIONS(6475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6475), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6475), - [anon_sym_DOLLAR] = ACTIONS(6473), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6475), - [anon_sym_BSLASHbegin] = ACTIONS(6473), - [anon_sym_BSLASHend] = ACTIONS(6473), - [anon_sym_BSLASHtitle] = ACTIONS(6473), - [anon_sym_BSLASHauthor] = ACTIONS(6473), - [anon_sym_BSLASHusepackage] = ACTIONS(6473), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6473), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6473), - [anon_sym_BSLASHinclude] = ACTIONS(6473), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6473), - [anon_sym_BSLASHinput] = ACTIONS(6473), - [anon_sym_BSLASHsubfile] = ACTIONS(6473), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6473), - [anon_sym_BSLASHbibliography] = ACTIONS(6473), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6473), - [anon_sym_BSLASHincludesvg] = ACTIONS(6473), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6473), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6473), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6473), - [anon_sym_BSLASHimport] = ACTIONS(6473), - [anon_sym_BSLASHsubimport] = ACTIONS(6473), - [anon_sym_BSLASHinputfrom] = ACTIONS(6473), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6473), - [anon_sym_BSLASHincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHcaption] = ACTIONS(6473), - [anon_sym_BSLASHcite] = ACTIONS(6473), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCite] = ACTIONS(6473), - [anon_sym_BSLASHnocite] = ACTIONS(6473), - [anon_sym_BSLASHcitet] = ACTIONS(6473), - [anon_sym_BSLASHcitep] = ACTIONS(6473), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteauthor] = ACTIONS(6473), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6473), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitetitle] = ACTIONS(6473), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteyear] = ACTIONS(6473), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitedate] = ACTIONS(6473), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteurl] = ACTIONS(6473), - [anon_sym_BSLASHfullcite] = ACTIONS(6473), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6473), - [anon_sym_BSLASHcitealt] = ACTIONS(6473), - [anon_sym_BSLASHcitealp] = ACTIONS(6473), - [anon_sym_BSLASHcitetext] = ACTIONS(6473), - [anon_sym_BSLASHparencite] = ACTIONS(6473), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHParencite] = ACTIONS(6473), - [anon_sym_BSLASHfootcite] = ACTIONS(6473), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6473), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6473), - [anon_sym_BSLASHtextcite] = ACTIONS(6473), - [anon_sym_BSLASHTextcite] = ACTIONS(6473), - [anon_sym_BSLASHsmartcite] = ACTIONS(6473), - [anon_sym_BSLASHSmartcite] = ACTIONS(6473), - [anon_sym_BSLASHsupercite] = ACTIONS(6473), - [anon_sym_BSLASHautocite] = ACTIONS(6473), - [anon_sym_BSLASHAutocite] = ACTIONS(6473), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHvolcite] = ACTIONS(6473), - [anon_sym_BSLASHVolcite] = ACTIONS(6473), - [anon_sym_BSLASHpvolcite] = ACTIONS(6473), - [anon_sym_BSLASHPvolcite] = ACTIONS(6473), - [anon_sym_BSLASHfvolcite] = ACTIONS(6473), - [anon_sym_BSLASHftvolcite] = ACTIONS(6473), - [anon_sym_BSLASHsvolcite] = ACTIONS(6473), - [anon_sym_BSLASHSvolcite] = ACTIONS(6473), - [anon_sym_BSLASHtvolcite] = ACTIONS(6473), - [anon_sym_BSLASHTvolcite] = ACTIONS(6473), - [anon_sym_BSLASHavolcite] = ACTIONS(6473), - [anon_sym_BSLASHAvolcite] = ACTIONS(6473), - [anon_sym_BSLASHnotecite] = ACTIONS(6473), - [anon_sym_BSLASHNotecite] = ACTIONS(6473), - [anon_sym_BSLASHpnotecite] = ACTIONS(6473), - [anon_sym_BSLASHPnotecite] = ACTIONS(6473), - [anon_sym_BSLASHfnotecite] = ACTIONS(6473), - [anon_sym_BSLASHlabel] = ACTIONS(6473), - [anon_sym_BSLASHref] = ACTIONS(6473), - [anon_sym_BSLASHeqref] = ACTIONS(6473), - [anon_sym_BSLASHvref] = ACTIONS(6473), - [anon_sym_BSLASHVref] = ACTIONS(6473), - [anon_sym_BSLASHautoref] = ACTIONS(6473), - [anon_sym_BSLASHpageref] = ACTIONS(6473), - [anon_sym_BSLASHcref] = ACTIONS(6473), - [anon_sym_BSLASHCref] = ACTIONS(6473), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnameCref] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHlabelcref] = ACTIONS(6473), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCrefrange] = ACTIONS(6473), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnewlabel] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6473), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6473), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6475), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHdef] = ACTIONS(6473), - [anon_sym_BSLASHlet] = ACTIONS(6473), - [anon_sym_BSLASHleft] = ACTIONS(6473), - [anon_sym_BSLASHbig] = ACTIONS(6473), - [anon_sym_BSLASHBig] = ACTIONS(6473), - [anon_sym_BSLASHbigg] = ACTIONS(6473), - [anon_sym_BSLASHBigg] = ACTIONS(6473), - [anon_sym_BSLASHbigl] = ACTIONS(6473), - [anon_sym_BSLASHBigl] = ACTIONS(6473), - [anon_sym_BSLASHbiggl] = ACTIONS(6473), - [anon_sym_BSLASHBiggl] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6473), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6473), - [anon_sym_BSLASHgls] = ACTIONS(6473), - [anon_sym_BSLASHGls] = ACTIONS(6473), - [anon_sym_BSLASHGLS] = ACTIONS(6473), - [anon_sym_BSLASHglspl] = ACTIONS(6473), - [anon_sym_BSLASHGlspl] = ACTIONS(6473), - [anon_sym_BSLASHGLSpl] = ACTIONS(6473), - [anon_sym_BSLASHglsdisp] = ACTIONS(6473), - [anon_sym_BSLASHglslink] = ACTIONS(6473), - [anon_sym_BSLASHglstext] = ACTIONS(6473), - [anon_sym_BSLASHGlstext] = ACTIONS(6473), - [anon_sym_BSLASHGLStext] = ACTIONS(6473), - [anon_sym_BSLASHglsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6473), - [anon_sym_BSLASHglsplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSplural] = ACTIONS(6473), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHglsname] = ACTIONS(6473), - [anon_sym_BSLASHGlsname] = ACTIONS(6473), - [anon_sym_BSLASHGLSname] = ACTIONS(6473), - [anon_sym_BSLASHglssymbol] = ACTIONS(6473), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6473), - [anon_sym_BSLASHglsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6473), - [anon_sym_BSLASHglsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6473), - [anon_sym_BSLASHglsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6473), - [anon_sym_BSLASHglsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6473), - [anon_sym_BSLASHglsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6473), - [anon_sym_BSLASHnewacronym] = ACTIONS(6473), - [anon_sym_BSLASHacrshort] = ACTIONS(6473), - [anon_sym_BSLASHAcrshort] = ACTIONS(6473), - [anon_sym_BSLASHACRshort] = ACTIONS(6473), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6473), - [anon_sym_BSLASHacrlong] = ACTIONS(6473), - [anon_sym_BSLASHAcrlong] = ACTIONS(6473), - [anon_sym_BSLASHACRlong] = ACTIONS(6473), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6473), - [anon_sym_BSLASHacrfull] = ACTIONS(6473), - [anon_sym_BSLASHAcrfull] = ACTIONS(6473), - [anon_sym_BSLASHACRfull] = ACTIONS(6473), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6473), - [anon_sym_BSLASHacs] = ACTIONS(6473), - [anon_sym_BSLASHAcs] = ACTIONS(6473), - [anon_sym_BSLASHacsp] = ACTIONS(6473), - [anon_sym_BSLASHAcsp] = ACTIONS(6473), - [anon_sym_BSLASHacl] = ACTIONS(6473), - [anon_sym_BSLASHAcl] = ACTIONS(6473), - [anon_sym_BSLASHaclp] = ACTIONS(6473), - [anon_sym_BSLASHAclp] = ACTIONS(6473), - [anon_sym_BSLASHacf] = ACTIONS(6473), - [anon_sym_BSLASHAcf] = ACTIONS(6473), - [anon_sym_BSLASHacfp] = ACTIONS(6473), - [anon_sym_BSLASHAcfp] = ACTIONS(6473), - [anon_sym_BSLASHac] = ACTIONS(6473), - [anon_sym_BSLASHAc] = ACTIONS(6473), - [anon_sym_BSLASHacp] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6473), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6473), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6473), - [anon_sym_BSLASHcolor] = ACTIONS(6473), - [anon_sym_BSLASHcolorbox] = ACTIONS(6473), - [anon_sym_BSLASHtextcolor] = ACTIONS(6473), - [anon_sym_BSLASHpagecolor] = ACTIONS(6473), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6473), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6473), - [anon_sym_BSLASHtext] = ACTIONS(6473), - [anon_sym_BSLASHintertext] = ACTIONS(6473), - [anon_sym_shortintertext] = ACTIONS(6473), - }, - [1588] = { - [sym_command_name] = ACTIONS(6477), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6477), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_RBRACK] = ACTIONS(6479), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_LPAREN] = ACTIONS(6479), - [anon_sym_RPAREN] = ACTIONS(6479), - [anon_sym_LBRACE] = ACTIONS(6479), - [sym_word] = ACTIONS(6477), - [sym_placeholder] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6477), - [anon_sym_GT] = ACTIONS(6477), - [anon_sym_BANG] = ACTIONS(6477), - [anon_sym_PIPE] = ACTIONS(6477), - [anon_sym_COLON] = ACTIONS(6477), - [anon_sym_SQUOTE] = ACTIONS(6477), - [anon_sym__] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6479), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6479), - [anon_sym_DOLLAR] = ACTIONS(6477), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6479), - [anon_sym_BSLASHbegin] = ACTIONS(6477), - [anon_sym_BSLASHend] = ACTIONS(6477), - [anon_sym_BSLASHtitle] = ACTIONS(6477), - [anon_sym_BSLASHauthor] = ACTIONS(6477), - [anon_sym_BSLASHusepackage] = ACTIONS(6477), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6477), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6477), - [anon_sym_BSLASHinclude] = ACTIONS(6477), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6477), - [anon_sym_BSLASHinput] = ACTIONS(6477), - [anon_sym_BSLASHsubfile] = ACTIONS(6477), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6477), - [anon_sym_BSLASHbibliography] = ACTIONS(6477), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6477), - [anon_sym_BSLASHincludesvg] = ACTIONS(6477), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6477), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6477), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6477), - [anon_sym_BSLASHimport] = ACTIONS(6477), - [anon_sym_BSLASHsubimport] = ACTIONS(6477), - [anon_sym_BSLASHinputfrom] = ACTIONS(6477), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6477), - [anon_sym_BSLASHincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHcaption] = ACTIONS(6477), - [anon_sym_BSLASHcite] = ACTIONS(6477), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCite] = ACTIONS(6477), - [anon_sym_BSLASHnocite] = ACTIONS(6477), - [anon_sym_BSLASHcitet] = ACTIONS(6477), - [anon_sym_BSLASHcitep] = ACTIONS(6477), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteauthor] = ACTIONS(6477), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6477), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitetitle] = ACTIONS(6477), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteyear] = ACTIONS(6477), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitedate] = ACTIONS(6477), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteurl] = ACTIONS(6477), - [anon_sym_BSLASHfullcite] = ACTIONS(6477), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6477), - [anon_sym_BSLASHcitealt] = ACTIONS(6477), - [anon_sym_BSLASHcitealp] = ACTIONS(6477), - [anon_sym_BSLASHcitetext] = ACTIONS(6477), - [anon_sym_BSLASHparencite] = ACTIONS(6477), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHParencite] = ACTIONS(6477), - [anon_sym_BSLASHfootcite] = ACTIONS(6477), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6477), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6477), - [anon_sym_BSLASHtextcite] = ACTIONS(6477), - [anon_sym_BSLASHTextcite] = ACTIONS(6477), - [anon_sym_BSLASHsmartcite] = ACTIONS(6477), - [anon_sym_BSLASHSmartcite] = ACTIONS(6477), - [anon_sym_BSLASHsupercite] = ACTIONS(6477), - [anon_sym_BSLASHautocite] = ACTIONS(6477), - [anon_sym_BSLASHAutocite] = ACTIONS(6477), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHvolcite] = ACTIONS(6477), - [anon_sym_BSLASHVolcite] = ACTIONS(6477), - [anon_sym_BSLASHpvolcite] = ACTIONS(6477), - [anon_sym_BSLASHPvolcite] = ACTIONS(6477), - [anon_sym_BSLASHfvolcite] = ACTIONS(6477), - [anon_sym_BSLASHftvolcite] = ACTIONS(6477), - [anon_sym_BSLASHsvolcite] = ACTIONS(6477), - [anon_sym_BSLASHSvolcite] = ACTIONS(6477), - [anon_sym_BSLASHtvolcite] = ACTIONS(6477), - [anon_sym_BSLASHTvolcite] = ACTIONS(6477), - [anon_sym_BSLASHavolcite] = ACTIONS(6477), - [anon_sym_BSLASHAvolcite] = ACTIONS(6477), - [anon_sym_BSLASHnotecite] = ACTIONS(6477), - [anon_sym_BSLASHNotecite] = ACTIONS(6477), - [anon_sym_BSLASHpnotecite] = ACTIONS(6477), - [anon_sym_BSLASHPnotecite] = ACTIONS(6477), - [anon_sym_BSLASHfnotecite] = ACTIONS(6477), - [anon_sym_BSLASHlabel] = ACTIONS(6477), - [anon_sym_BSLASHref] = ACTIONS(6477), - [anon_sym_BSLASHeqref] = ACTIONS(6477), - [anon_sym_BSLASHvref] = ACTIONS(6477), - [anon_sym_BSLASHVref] = ACTIONS(6477), - [anon_sym_BSLASHautoref] = ACTIONS(6477), - [anon_sym_BSLASHpageref] = ACTIONS(6477), - [anon_sym_BSLASHcref] = ACTIONS(6477), - [anon_sym_BSLASHCref] = ACTIONS(6477), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnameCref] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHlabelcref] = ACTIONS(6477), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCrefrange] = ACTIONS(6477), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnewlabel] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6477), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6477), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6479), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHdef] = ACTIONS(6477), - [anon_sym_BSLASHlet] = ACTIONS(6477), - [anon_sym_BSLASHleft] = ACTIONS(6477), - [anon_sym_BSLASHbig] = ACTIONS(6477), - [anon_sym_BSLASHBig] = ACTIONS(6477), - [anon_sym_BSLASHbigg] = ACTIONS(6477), - [anon_sym_BSLASHBigg] = ACTIONS(6477), - [anon_sym_BSLASHbigl] = ACTIONS(6477), - [anon_sym_BSLASHBigl] = ACTIONS(6477), - [anon_sym_BSLASHbiggl] = ACTIONS(6477), - [anon_sym_BSLASHBiggl] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6477), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6477), - [anon_sym_BSLASHgls] = ACTIONS(6477), - [anon_sym_BSLASHGls] = ACTIONS(6477), - [anon_sym_BSLASHGLS] = ACTIONS(6477), - [anon_sym_BSLASHglspl] = ACTIONS(6477), - [anon_sym_BSLASHGlspl] = ACTIONS(6477), - [anon_sym_BSLASHGLSpl] = ACTIONS(6477), - [anon_sym_BSLASHglsdisp] = ACTIONS(6477), - [anon_sym_BSLASHglslink] = ACTIONS(6477), - [anon_sym_BSLASHglstext] = ACTIONS(6477), - [anon_sym_BSLASHGlstext] = ACTIONS(6477), - [anon_sym_BSLASHGLStext] = ACTIONS(6477), - [anon_sym_BSLASHglsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6477), - [anon_sym_BSLASHglsplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSplural] = ACTIONS(6477), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHglsname] = ACTIONS(6477), - [anon_sym_BSLASHGlsname] = ACTIONS(6477), - [anon_sym_BSLASHGLSname] = ACTIONS(6477), - [anon_sym_BSLASHglssymbol] = ACTIONS(6477), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6477), - [anon_sym_BSLASHglsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6477), - [anon_sym_BSLASHglsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6477), - [anon_sym_BSLASHglsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6477), - [anon_sym_BSLASHglsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6477), - [anon_sym_BSLASHglsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6477), - [anon_sym_BSLASHnewacronym] = ACTIONS(6477), - [anon_sym_BSLASHacrshort] = ACTIONS(6477), - [anon_sym_BSLASHAcrshort] = ACTIONS(6477), - [anon_sym_BSLASHACRshort] = ACTIONS(6477), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6477), - [anon_sym_BSLASHacrlong] = ACTIONS(6477), - [anon_sym_BSLASHAcrlong] = ACTIONS(6477), - [anon_sym_BSLASHACRlong] = ACTIONS(6477), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6477), - [anon_sym_BSLASHacrfull] = ACTIONS(6477), - [anon_sym_BSLASHAcrfull] = ACTIONS(6477), - [anon_sym_BSLASHACRfull] = ACTIONS(6477), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6477), - [anon_sym_BSLASHacs] = ACTIONS(6477), - [anon_sym_BSLASHAcs] = ACTIONS(6477), - [anon_sym_BSLASHacsp] = ACTIONS(6477), - [anon_sym_BSLASHAcsp] = ACTIONS(6477), - [anon_sym_BSLASHacl] = ACTIONS(6477), - [anon_sym_BSLASHAcl] = ACTIONS(6477), - [anon_sym_BSLASHaclp] = ACTIONS(6477), - [anon_sym_BSLASHAclp] = ACTIONS(6477), - [anon_sym_BSLASHacf] = ACTIONS(6477), - [anon_sym_BSLASHAcf] = ACTIONS(6477), - [anon_sym_BSLASHacfp] = ACTIONS(6477), - [anon_sym_BSLASHAcfp] = ACTIONS(6477), - [anon_sym_BSLASHac] = ACTIONS(6477), - [anon_sym_BSLASHAc] = ACTIONS(6477), - [anon_sym_BSLASHacp] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6477), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6477), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6477), - [anon_sym_BSLASHcolor] = ACTIONS(6477), - [anon_sym_BSLASHcolorbox] = ACTIONS(6477), - [anon_sym_BSLASHtextcolor] = ACTIONS(6477), - [anon_sym_BSLASHpagecolor] = ACTIONS(6477), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6477), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6477), - [anon_sym_BSLASHtext] = ACTIONS(6477), - [anon_sym_BSLASHintertext] = ACTIONS(6477), - [anon_sym_shortintertext] = ACTIONS(6477), - }, - [1589] = { - [sym_command_name] = ACTIONS(6481), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(6483), - [anon_sym_COMMA] = ACTIONS(6483), - [anon_sym_EQ] = ACTIONS(6483), - [anon_sym_LPAREN] = ACTIONS(6483), - [anon_sym_RPAREN] = ACTIONS(6483), - [anon_sym_LBRACE] = ACTIONS(6483), - [sym_word] = ACTIONS(6481), - [sym_placeholder] = ACTIONS(6483), - [anon_sym_PLUS] = ACTIONS(6483), - [anon_sym_DASH] = ACTIONS(6483), - [anon_sym_STAR] = ACTIONS(6483), - [anon_sym_SLASH] = ACTIONS(6483), - [anon_sym_LT] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6481), - [anon_sym_BANG] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6481), - [anon_sym_COLON] = ACTIONS(6481), - [anon_sym_SQUOTE] = ACTIONS(6481), - [anon_sym__] = ACTIONS(6483), - [anon_sym_CARET] = ACTIONS(6483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6483), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6483), - [anon_sym_DOLLAR] = ACTIONS(6481), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6483), - [anon_sym_BSLASHbegin] = ACTIONS(6481), - [anon_sym_BSLASHend] = ACTIONS(6481), - [anon_sym_BSLASHtitle] = ACTIONS(6481), - [anon_sym_BSLASHauthor] = ACTIONS(6481), - [anon_sym_BSLASHusepackage] = ACTIONS(6481), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6481), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6481), - [anon_sym_BSLASHinclude] = ACTIONS(6481), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6481), - [anon_sym_BSLASHinput] = ACTIONS(6481), - [anon_sym_BSLASHsubfile] = ACTIONS(6481), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6481), - [anon_sym_BSLASHbibliography] = ACTIONS(6481), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6481), - [anon_sym_BSLASHincludesvg] = ACTIONS(6481), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6481), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6481), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6481), - [anon_sym_BSLASHimport] = ACTIONS(6481), - [anon_sym_BSLASHsubimport] = ACTIONS(6481), - [anon_sym_BSLASHinputfrom] = ACTIONS(6481), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6481), - [anon_sym_BSLASHincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHcaption] = ACTIONS(6481), - [anon_sym_BSLASHcite] = ACTIONS(6481), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCite] = ACTIONS(6481), - [anon_sym_BSLASHnocite] = ACTIONS(6481), - [anon_sym_BSLASHcitet] = ACTIONS(6481), - [anon_sym_BSLASHcitep] = ACTIONS(6481), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteauthor] = ACTIONS(6481), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6481), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitetitle] = ACTIONS(6481), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteyear] = ACTIONS(6481), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitedate] = ACTIONS(6481), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteurl] = ACTIONS(6481), - [anon_sym_BSLASHfullcite] = ACTIONS(6481), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6481), - [anon_sym_BSLASHcitealt] = ACTIONS(6481), - [anon_sym_BSLASHcitealp] = ACTIONS(6481), - [anon_sym_BSLASHcitetext] = ACTIONS(6481), - [anon_sym_BSLASHparencite] = ACTIONS(6481), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHParencite] = ACTIONS(6481), - [anon_sym_BSLASHfootcite] = ACTIONS(6481), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6481), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6481), - [anon_sym_BSLASHtextcite] = ACTIONS(6481), - [anon_sym_BSLASHTextcite] = ACTIONS(6481), - [anon_sym_BSLASHsmartcite] = ACTIONS(6481), - [anon_sym_BSLASHSmartcite] = ACTIONS(6481), - [anon_sym_BSLASHsupercite] = ACTIONS(6481), - [anon_sym_BSLASHautocite] = ACTIONS(6481), - [anon_sym_BSLASHAutocite] = ACTIONS(6481), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHvolcite] = ACTIONS(6481), - [anon_sym_BSLASHVolcite] = ACTIONS(6481), - [anon_sym_BSLASHpvolcite] = ACTIONS(6481), - [anon_sym_BSLASHPvolcite] = ACTIONS(6481), - [anon_sym_BSLASHfvolcite] = ACTIONS(6481), - [anon_sym_BSLASHftvolcite] = ACTIONS(6481), - [anon_sym_BSLASHsvolcite] = ACTIONS(6481), - [anon_sym_BSLASHSvolcite] = ACTIONS(6481), - [anon_sym_BSLASHtvolcite] = ACTIONS(6481), - [anon_sym_BSLASHTvolcite] = ACTIONS(6481), - [anon_sym_BSLASHavolcite] = ACTIONS(6481), - [anon_sym_BSLASHAvolcite] = ACTIONS(6481), - [anon_sym_BSLASHnotecite] = ACTIONS(6481), - [anon_sym_BSLASHNotecite] = ACTIONS(6481), - [anon_sym_BSLASHpnotecite] = ACTIONS(6481), - [anon_sym_BSLASHPnotecite] = ACTIONS(6481), - [anon_sym_BSLASHfnotecite] = ACTIONS(6481), - [anon_sym_BSLASHlabel] = ACTIONS(6481), - [anon_sym_BSLASHref] = ACTIONS(6481), - [anon_sym_BSLASHeqref] = ACTIONS(6481), - [anon_sym_BSLASHvref] = ACTIONS(6481), - [anon_sym_BSLASHVref] = ACTIONS(6481), - [anon_sym_BSLASHautoref] = ACTIONS(6481), - [anon_sym_BSLASHpageref] = ACTIONS(6481), - [anon_sym_BSLASHcref] = ACTIONS(6481), - [anon_sym_BSLASHCref] = ACTIONS(6481), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnameCref] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHlabelcref] = ACTIONS(6481), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCrefrange] = ACTIONS(6481), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnewlabel] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6481), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6481), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6483), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHdef] = ACTIONS(6481), - [anon_sym_BSLASHlet] = ACTIONS(6481), - [anon_sym_BSLASHleft] = ACTIONS(6481), - [anon_sym_BSLASHbig] = ACTIONS(6481), - [anon_sym_BSLASHBig] = ACTIONS(6481), - [anon_sym_BSLASHbigg] = ACTIONS(6481), - [anon_sym_BSLASHBigg] = ACTIONS(6481), - [anon_sym_BSLASHbigl] = ACTIONS(6481), - [anon_sym_BSLASHBigl] = ACTIONS(6481), - [anon_sym_BSLASHbiggl] = ACTIONS(6481), - [anon_sym_BSLASHBiggl] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6481), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6481), - [anon_sym_BSLASHgls] = ACTIONS(6481), - [anon_sym_BSLASHGls] = ACTIONS(6481), - [anon_sym_BSLASHGLS] = ACTIONS(6481), - [anon_sym_BSLASHglspl] = ACTIONS(6481), - [anon_sym_BSLASHGlspl] = ACTIONS(6481), - [anon_sym_BSLASHGLSpl] = ACTIONS(6481), - [anon_sym_BSLASHglsdisp] = ACTIONS(6481), - [anon_sym_BSLASHglslink] = ACTIONS(6481), - [anon_sym_BSLASHglstext] = ACTIONS(6481), - [anon_sym_BSLASHGlstext] = ACTIONS(6481), - [anon_sym_BSLASHGLStext] = ACTIONS(6481), - [anon_sym_BSLASHglsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6481), - [anon_sym_BSLASHglsplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSplural] = ACTIONS(6481), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHglsname] = ACTIONS(6481), - [anon_sym_BSLASHGlsname] = ACTIONS(6481), - [anon_sym_BSLASHGLSname] = ACTIONS(6481), - [anon_sym_BSLASHglssymbol] = ACTIONS(6481), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6481), - [anon_sym_BSLASHglsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6481), - [anon_sym_BSLASHglsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6481), - [anon_sym_BSLASHglsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6481), - [anon_sym_BSLASHglsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6481), - [anon_sym_BSLASHglsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6481), - [anon_sym_BSLASHnewacronym] = ACTIONS(6481), - [anon_sym_BSLASHacrshort] = ACTIONS(6481), - [anon_sym_BSLASHAcrshort] = ACTIONS(6481), - [anon_sym_BSLASHACRshort] = ACTIONS(6481), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6481), - [anon_sym_BSLASHacrlong] = ACTIONS(6481), - [anon_sym_BSLASHAcrlong] = ACTIONS(6481), - [anon_sym_BSLASHACRlong] = ACTIONS(6481), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6481), - [anon_sym_BSLASHacrfull] = ACTIONS(6481), - [anon_sym_BSLASHAcrfull] = ACTIONS(6481), - [anon_sym_BSLASHACRfull] = ACTIONS(6481), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6481), - [anon_sym_BSLASHacs] = ACTIONS(6481), - [anon_sym_BSLASHAcs] = ACTIONS(6481), - [anon_sym_BSLASHacsp] = ACTIONS(6481), - [anon_sym_BSLASHAcsp] = ACTIONS(6481), - [anon_sym_BSLASHacl] = ACTIONS(6481), - [anon_sym_BSLASHAcl] = ACTIONS(6481), - [anon_sym_BSLASHaclp] = ACTIONS(6481), - [anon_sym_BSLASHAclp] = ACTIONS(6481), - [anon_sym_BSLASHacf] = ACTIONS(6481), - [anon_sym_BSLASHAcf] = ACTIONS(6481), - [anon_sym_BSLASHacfp] = ACTIONS(6481), - [anon_sym_BSLASHAcfp] = ACTIONS(6481), - [anon_sym_BSLASHac] = ACTIONS(6481), - [anon_sym_BSLASHAc] = ACTIONS(6481), - [anon_sym_BSLASHacp] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6481), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6481), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6481), - [anon_sym_BSLASHcolor] = ACTIONS(6481), - [anon_sym_BSLASHcolorbox] = ACTIONS(6481), - [anon_sym_BSLASHtextcolor] = ACTIONS(6481), - [anon_sym_BSLASHpagecolor] = ACTIONS(6481), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6481), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6481), - [anon_sym_BSLASHtext] = ACTIONS(6481), - [anon_sym_BSLASHintertext] = ACTIONS(6481), - [anon_sym_shortintertext] = ACTIONS(6481), - }, - [1590] = { - [sym_command_name] = ACTIONS(6485), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6485), - [anon_sym_LBRACK] = ACTIONS(6487), - [anon_sym_RBRACK] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(6487), - [anon_sym_EQ] = ACTIONS(6487), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(6487), - [anon_sym_LBRACE] = ACTIONS(6487), - [sym_word] = ACTIONS(6485), - [sym_placeholder] = ACTIONS(6487), - [anon_sym_PLUS] = ACTIONS(6487), - [anon_sym_DASH] = ACTIONS(6487), - [anon_sym_STAR] = ACTIONS(6487), - [anon_sym_SLASH] = ACTIONS(6487), - [anon_sym_LT] = ACTIONS(6485), - [anon_sym_GT] = ACTIONS(6485), - [anon_sym_BANG] = ACTIONS(6485), - [anon_sym_PIPE] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6485), - [anon_sym_SQUOTE] = ACTIONS(6485), - [anon_sym__] = ACTIONS(6487), - [anon_sym_CARET] = ACTIONS(6487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6487), - [anon_sym_DOLLAR] = ACTIONS(6485), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6487), - [anon_sym_BSLASHbegin] = ACTIONS(6485), - [anon_sym_BSLASHend] = ACTIONS(6485), - [anon_sym_BSLASHtitle] = ACTIONS(6485), - [anon_sym_BSLASHauthor] = ACTIONS(6485), - [anon_sym_BSLASHusepackage] = ACTIONS(6485), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6485), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6485), - [anon_sym_BSLASHinclude] = ACTIONS(6485), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6485), - [anon_sym_BSLASHinput] = ACTIONS(6485), - [anon_sym_BSLASHsubfile] = ACTIONS(6485), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6485), - [anon_sym_BSLASHbibliography] = ACTIONS(6485), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6485), - [anon_sym_BSLASHincludesvg] = ACTIONS(6485), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6485), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6485), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6485), - [anon_sym_BSLASHimport] = ACTIONS(6485), - [anon_sym_BSLASHsubimport] = ACTIONS(6485), - [anon_sym_BSLASHinputfrom] = ACTIONS(6485), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6485), - [anon_sym_BSLASHincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHcaption] = ACTIONS(6485), - [anon_sym_BSLASHcite] = ACTIONS(6485), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCite] = ACTIONS(6485), - [anon_sym_BSLASHnocite] = ACTIONS(6485), - [anon_sym_BSLASHcitet] = ACTIONS(6485), - [anon_sym_BSLASHcitep] = ACTIONS(6485), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteauthor] = ACTIONS(6485), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6485), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitetitle] = ACTIONS(6485), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteyear] = ACTIONS(6485), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitedate] = ACTIONS(6485), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteurl] = ACTIONS(6485), - [anon_sym_BSLASHfullcite] = ACTIONS(6485), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6485), - [anon_sym_BSLASHcitealt] = ACTIONS(6485), - [anon_sym_BSLASHcitealp] = ACTIONS(6485), - [anon_sym_BSLASHcitetext] = ACTIONS(6485), - [anon_sym_BSLASHparencite] = ACTIONS(6485), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHParencite] = ACTIONS(6485), - [anon_sym_BSLASHfootcite] = ACTIONS(6485), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6485), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6485), - [anon_sym_BSLASHtextcite] = ACTIONS(6485), - [anon_sym_BSLASHTextcite] = ACTIONS(6485), - [anon_sym_BSLASHsmartcite] = ACTIONS(6485), - [anon_sym_BSLASHSmartcite] = ACTIONS(6485), - [anon_sym_BSLASHsupercite] = ACTIONS(6485), - [anon_sym_BSLASHautocite] = ACTIONS(6485), - [anon_sym_BSLASHAutocite] = ACTIONS(6485), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHvolcite] = ACTIONS(6485), - [anon_sym_BSLASHVolcite] = ACTIONS(6485), - [anon_sym_BSLASHpvolcite] = ACTIONS(6485), - [anon_sym_BSLASHPvolcite] = ACTIONS(6485), - [anon_sym_BSLASHfvolcite] = ACTIONS(6485), - [anon_sym_BSLASHftvolcite] = ACTIONS(6485), - [anon_sym_BSLASHsvolcite] = ACTIONS(6485), - [anon_sym_BSLASHSvolcite] = ACTIONS(6485), - [anon_sym_BSLASHtvolcite] = ACTIONS(6485), - [anon_sym_BSLASHTvolcite] = ACTIONS(6485), - [anon_sym_BSLASHavolcite] = ACTIONS(6485), - [anon_sym_BSLASHAvolcite] = ACTIONS(6485), - [anon_sym_BSLASHnotecite] = ACTIONS(6485), - [anon_sym_BSLASHNotecite] = ACTIONS(6485), - [anon_sym_BSLASHpnotecite] = ACTIONS(6485), - [anon_sym_BSLASHPnotecite] = ACTIONS(6485), - [anon_sym_BSLASHfnotecite] = ACTIONS(6485), - [anon_sym_BSLASHlabel] = ACTIONS(6485), - [anon_sym_BSLASHref] = ACTIONS(6485), - [anon_sym_BSLASHeqref] = ACTIONS(6485), - [anon_sym_BSLASHvref] = ACTIONS(6485), - [anon_sym_BSLASHVref] = ACTIONS(6485), - [anon_sym_BSLASHautoref] = ACTIONS(6485), - [anon_sym_BSLASHpageref] = ACTIONS(6485), - [anon_sym_BSLASHcref] = ACTIONS(6485), - [anon_sym_BSLASHCref] = ACTIONS(6485), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnameCref] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHlabelcref] = ACTIONS(6485), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCrefrange] = ACTIONS(6485), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnewlabel] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6485), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6485), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6487), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHdef] = ACTIONS(6485), - [anon_sym_BSLASHlet] = ACTIONS(6485), - [anon_sym_BSLASHleft] = ACTIONS(6485), - [anon_sym_BSLASHbig] = ACTIONS(6485), - [anon_sym_BSLASHBig] = ACTIONS(6485), - [anon_sym_BSLASHbigg] = ACTIONS(6485), - [anon_sym_BSLASHBigg] = ACTIONS(6485), - [anon_sym_BSLASHbigl] = ACTIONS(6485), - [anon_sym_BSLASHBigl] = ACTIONS(6485), - [anon_sym_BSLASHbiggl] = ACTIONS(6485), - [anon_sym_BSLASHBiggl] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6485), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6485), - [anon_sym_BSLASHgls] = ACTIONS(6485), - [anon_sym_BSLASHGls] = ACTIONS(6485), - [anon_sym_BSLASHGLS] = ACTIONS(6485), - [anon_sym_BSLASHglspl] = ACTIONS(6485), - [anon_sym_BSLASHGlspl] = ACTIONS(6485), - [anon_sym_BSLASHGLSpl] = ACTIONS(6485), - [anon_sym_BSLASHglsdisp] = ACTIONS(6485), - [anon_sym_BSLASHglslink] = ACTIONS(6485), - [anon_sym_BSLASHglstext] = ACTIONS(6485), - [anon_sym_BSLASHGlstext] = ACTIONS(6485), - [anon_sym_BSLASHGLStext] = ACTIONS(6485), - [anon_sym_BSLASHglsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6485), - [anon_sym_BSLASHglsplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSplural] = ACTIONS(6485), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHglsname] = ACTIONS(6485), - [anon_sym_BSLASHGlsname] = ACTIONS(6485), - [anon_sym_BSLASHGLSname] = ACTIONS(6485), - [anon_sym_BSLASHglssymbol] = ACTIONS(6485), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6485), - [anon_sym_BSLASHglsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6485), - [anon_sym_BSLASHglsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6485), - [anon_sym_BSLASHglsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6485), - [anon_sym_BSLASHglsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6485), - [anon_sym_BSLASHglsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6485), - [anon_sym_BSLASHnewacronym] = ACTIONS(6485), - [anon_sym_BSLASHacrshort] = ACTIONS(6485), - [anon_sym_BSLASHAcrshort] = ACTIONS(6485), - [anon_sym_BSLASHACRshort] = ACTIONS(6485), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6485), - [anon_sym_BSLASHacrlong] = ACTIONS(6485), - [anon_sym_BSLASHAcrlong] = ACTIONS(6485), - [anon_sym_BSLASHACRlong] = ACTIONS(6485), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6485), - [anon_sym_BSLASHacrfull] = ACTIONS(6485), - [anon_sym_BSLASHAcrfull] = ACTIONS(6485), - [anon_sym_BSLASHACRfull] = ACTIONS(6485), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6485), - [anon_sym_BSLASHacs] = ACTIONS(6485), - [anon_sym_BSLASHAcs] = ACTIONS(6485), - [anon_sym_BSLASHacsp] = ACTIONS(6485), - [anon_sym_BSLASHAcsp] = ACTIONS(6485), - [anon_sym_BSLASHacl] = ACTIONS(6485), - [anon_sym_BSLASHAcl] = ACTIONS(6485), - [anon_sym_BSLASHaclp] = ACTIONS(6485), - [anon_sym_BSLASHAclp] = ACTIONS(6485), - [anon_sym_BSLASHacf] = ACTIONS(6485), - [anon_sym_BSLASHAcf] = ACTIONS(6485), - [anon_sym_BSLASHacfp] = ACTIONS(6485), - [anon_sym_BSLASHAcfp] = ACTIONS(6485), - [anon_sym_BSLASHac] = ACTIONS(6485), - [anon_sym_BSLASHAc] = ACTIONS(6485), - [anon_sym_BSLASHacp] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6485), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6485), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6485), - [anon_sym_BSLASHcolor] = ACTIONS(6485), - [anon_sym_BSLASHcolorbox] = ACTIONS(6485), - [anon_sym_BSLASHtextcolor] = ACTIONS(6485), - [anon_sym_BSLASHpagecolor] = ACTIONS(6485), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6485), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6485), - [anon_sym_BSLASHtext] = ACTIONS(6485), - [anon_sym_BSLASHintertext] = ACTIONS(6485), - [anon_sym_shortintertext] = ACTIONS(6485), - }, - [1591] = { - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHend] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [1592] = { - [sym_command_name] = ACTIONS(6489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6489), - [anon_sym_LBRACK] = ACTIONS(6491), - [anon_sym_RBRACK] = ACTIONS(6491), - [anon_sym_COMMA] = ACTIONS(6491), - [anon_sym_EQ] = ACTIONS(6491), - [anon_sym_LPAREN] = ACTIONS(6491), - [anon_sym_RPAREN] = ACTIONS(6491), - [anon_sym_LBRACE] = ACTIONS(6491), - [sym_word] = ACTIONS(6489), - [sym_placeholder] = ACTIONS(6491), - [anon_sym_PLUS] = ACTIONS(6491), - [anon_sym_DASH] = ACTIONS(6491), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_LT] = ACTIONS(6489), - [anon_sym_GT] = ACTIONS(6489), - [anon_sym_BANG] = ACTIONS(6489), - [anon_sym_PIPE] = ACTIONS(6489), - [anon_sym_COLON] = ACTIONS(6489), - [anon_sym_SQUOTE] = ACTIONS(6489), - [anon_sym__] = ACTIONS(6491), - [anon_sym_CARET] = ACTIONS(6491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6491), - [anon_sym_DOLLAR] = ACTIONS(6489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6491), - [anon_sym_BSLASHbegin] = ACTIONS(6489), - [anon_sym_BSLASHend] = ACTIONS(6489), - [anon_sym_BSLASHtitle] = ACTIONS(6489), - [anon_sym_BSLASHauthor] = ACTIONS(6489), - [anon_sym_BSLASHusepackage] = ACTIONS(6489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6489), - [anon_sym_BSLASHinclude] = ACTIONS(6489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6489), - [anon_sym_BSLASHinput] = ACTIONS(6489), - [anon_sym_BSLASHsubfile] = ACTIONS(6489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6489), - [anon_sym_BSLASHbibliography] = ACTIONS(6489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6489), - [anon_sym_BSLASHincludesvg] = ACTIONS(6489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6489), - [anon_sym_BSLASHimport] = ACTIONS(6489), - [anon_sym_BSLASHsubimport] = ACTIONS(6489), - [anon_sym_BSLASHinputfrom] = ACTIONS(6489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6489), - [anon_sym_BSLASHincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHcaption] = ACTIONS(6489), - [anon_sym_BSLASHcite] = ACTIONS(6489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCite] = ACTIONS(6489), - [anon_sym_BSLASHnocite] = ACTIONS(6489), - [anon_sym_BSLASHcitet] = ACTIONS(6489), - [anon_sym_BSLASHcitep] = ACTIONS(6489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteauthor] = ACTIONS(6489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitetitle] = ACTIONS(6489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteyear] = ACTIONS(6489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitedate] = ACTIONS(6489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteurl] = ACTIONS(6489), - [anon_sym_BSLASHfullcite] = ACTIONS(6489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6489), - [anon_sym_BSLASHcitealt] = ACTIONS(6489), - [anon_sym_BSLASHcitealp] = ACTIONS(6489), - [anon_sym_BSLASHcitetext] = ACTIONS(6489), - [anon_sym_BSLASHparencite] = ACTIONS(6489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHParencite] = ACTIONS(6489), - [anon_sym_BSLASHfootcite] = ACTIONS(6489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6489), - [anon_sym_BSLASHtextcite] = ACTIONS(6489), - [anon_sym_BSLASHTextcite] = ACTIONS(6489), - [anon_sym_BSLASHsmartcite] = ACTIONS(6489), - [anon_sym_BSLASHSmartcite] = ACTIONS(6489), - [anon_sym_BSLASHsupercite] = ACTIONS(6489), - [anon_sym_BSLASHautocite] = ACTIONS(6489), - [anon_sym_BSLASHAutocite] = ACTIONS(6489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHvolcite] = ACTIONS(6489), - [anon_sym_BSLASHVolcite] = ACTIONS(6489), - [anon_sym_BSLASHpvolcite] = ACTIONS(6489), - [anon_sym_BSLASHPvolcite] = ACTIONS(6489), - [anon_sym_BSLASHfvolcite] = ACTIONS(6489), - [anon_sym_BSLASHftvolcite] = ACTIONS(6489), - [anon_sym_BSLASHsvolcite] = ACTIONS(6489), - [anon_sym_BSLASHSvolcite] = ACTIONS(6489), - [anon_sym_BSLASHtvolcite] = ACTIONS(6489), - [anon_sym_BSLASHTvolcite] = ACTIONS(6489), - [anon_sym_BSLASHavolcite] = ACTIONS(6489), - [anon_sym_BSLASHAvolcite] = ACTIONS(6489), - [anon_sym_BSLASHnotecite] = ACTIONS(6489), - [anon_sym_BSLASHNotecite] = ACTIONS(6489), - [anon_sym_BSLASHpnotecite] = ACTIONS(6489), - [anon_sym_BSLASHPnotecite] = ACTIONS(6489), - [anon_sym_BSLASHfnotecite] = ACTIONS(6489), - [anon_sym_BSLASHlabel] = ACTIONS(6489), - [anon_sym_BSLASHref] = ACTIONS(6489), - [anon_sym_BSLASHeqref] = ACTIONS(6489), - [anon_sym_BSLASHvref] = ACTIONS(6489), - [anon_sym_BSLASHVref] = ACTIONS(6489), - [anon_sym_BSLASHautoref] = ACTIONS(6489), - [anon_sym_BSLASHpageref] = ACTIONS(6489), - [anon_sym_BSLASHcref] = ACTIONS(6489), - [anon_sym_BSLASHCref] = ACTIONS(6489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnameCref] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHlabelcref] = ACTIONS(6489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCrefrange] = ACTIONS(6489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnewlabel] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6491), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHdef] = ACTIONS(6489), - [anon_sym_BSLASHlet] = ACTIONS(6489), - [anon_sym_BSLASHleft] = ACTIONS(6489), - [anon_sym_BSLASHbig] = ACTIONS(6489), - [anon_sym_BSLASHBig] = ACTIONS(6489), - [anon_sym_BSLASHbigg] = ACTIONS(6489), - [anon_sym_BSLASHBigg] = ACTIONS(6489), - [anon_sym_BSLASHbigl] = ACTIONS(6489), - [anon_sym_BSLASHBigl] = ACTIONS(6489), - [anon_sym_BSLASHbiggl] = ACTIONS(6489), - [anon_sym_BSLASHBiggl] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6489), - [anon_sym_BSLASHgls] = ACTIONS(6489), - [anon_sym_BSLASHGls] = ACTIONS(6489), - [anon_sym_BSLASHGLS] = ACTIONS(6489), - [anon_sym_BSLASHglspl] = ACTIONS(6489), - [anon_sym_BSLASHGlspl] = ACTIONS(6489), - [anon_sym_BSLASHGLSpl] = ACTIONS(6489), - [anon_sym_BSLASHglsdisp] = ACTIONS(6489), - [anon_sym_BSLASHglslink] = ACTIONS(6489), - [anon_sym_BSLASHglstext] = ACTIONS(6489), - [anon_sym_BSLASHGlstext] = ACTIONS(6489), - [anon_sym_BSLASHGLStext] = ACTIONS(6489), - [anon_sym_BSLASHglsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6489), - [anon_sym_BSLASHglsplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSplural] = ACTIONS(6489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHglsname] = ACTIONS(6489), - [anon_sym_BSLASHGlsname] = ACTIONS(6489), - [anon_sym_BSLASHGLSname] = ACTIONS(6489), - [anon_sym_BSLASHglssymbol] = ACTIONS(6489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6489), - [anon_sym_BSLASHglsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6489), - [anon_sym_BSLASHglsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6489), - [anon_sym_BSLASHglsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6489), - [anon_sym_BSLASHglsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6489), - [anon_sym_BSLASHglsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6489), - [anon_sym_BSLASHnewacronym] = ACTIONS(6489), - [anon_sym_BSLASHacrshort] = ACTIONS(6489), - [anon_sym_BSLASHAcrshort] = ACTIONS(6489), - [anon_sym_BSLASHACRshort] = ACTIONS(6489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6489), - [anon_sym_BSLASHacrlong] = ACTIONS(6489), - [anon_sym_BSLASHAcrlong] = ACTIONS(6489), - [anon_sym_BSLASHACRlong] = ACTIONS(6489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6489), - [anon_sym_BSLASHacrfull] = ACTIONS(6489), - [anon_sym_BSLASHAcrfull] = ACTIONS(6489), - [anon_sym_BSLASHACRfull] = ACTIONS(6489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6489), - [anon_sym_BSLASHacs] = ACTIONS(6489), - [anon_sym_BSLASHAcs] = ACTIONS(6489), - [anon_sym_BSLASHacsp] = ACTIONS(6489), - [anon_sym_BSLASHAcsp] = ACTIONS(6489), - [anon_sym_BSLASHacl] = ACTIONS(6489), - [anon_sym_BSLASHAcl] = ACTIONS(6489), - [anon_sym_BSLASHaclp] = ACTIONS(6489), - [anon_sym_BSLASHAclp] = ACTIONS(6489), - [anon_sym_BSLASHacf] = ACTIONS(6489), - [anon_sym_BSLASHAcf] = ACTIONS(6489), - [anon_sym_BSLASHacfp] = ACTIONS(6489), - [anon_sym_BSLASHAcfp] = ACTIONS(6489), - [anon_sym_BSLASHac] = ACTIONS(6489), - [anon_sym_BSLASHAc] = ACTIONS(6489), - [anon_sym_BSLASHacp] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6489), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6489), - [anon_sym_BSLASHcolor] = ACTIONS(6489), - [anon_sym_BSLASHcolorbox] = ACTIONS(6489), - [anon_sym_BSLASHtextcolor] = ACTIONS(6489), - [anon_sym_BSLASHpagecolor] = ACTIONS(6489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6489), - [anon_sym_BSLASHtext] = ACTIONS(6489), - [anon_sym_BSLASHintertext] = ACTIONS(6489), - [anon_sym_shortintertext] = ACTIONS(6489), - }, - [1593] = { - [sym_command_name] = ACTIONS(6493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6495), - [anon_sym_RBRACK] = ACTIONS(6495), - [anon_sym_COMMA] = ACTIONS(6495), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_LPAREN] = ACTIONS(6495), - [anon_sym_RPAREN] = ACTIONS(6495), - [anon_sym_LBRACE] = ACTIONS(6495), - [sym_word] = ACTIONS(6493), - [sym_placeholder] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6495), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6493), - [anon_sym_GT] = ACTIONS(6493), - [anon_sym_BANG] = ACTIONS(6493), - [anon_sym_PIPE] = ACTIONS(6493), - [anon_sym_COLON] = ACTIONS(6493), - [anon_sym_SQUOTE] = ACTIONS(6493), - [anon_sym__] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6495), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6495), - [anon_sym_DOLLAR] = ACTIONS(6493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6495), - [anon_sym_BSLASHbegin] = ACTIONS(6493), - [anon_sym_BSLASHend] = ACTIONS(6493), - [anon_sym_BSLASHtitle] = ACTIONS(6493), - [anon_sym_BSLASHauthor] = ACTIONS(6493), - [anon_sym_BSLASHusepackage] = ACTIONS(6493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6493), - [anon_sym_BSLASHinclude] = ACTIONS(6493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6493), - [anon_sym_BSLASHinput] = ACTIONS(6493), - [anon_sym_BSLASHsubfile] = ACTIONS(6493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6493), - [anon_sym_BSLASHbibliography] = ACTIONS(6493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6493), - [anon_sym_BSLASHincludesvg] = ACTIONS(6493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6493), - [anon_sym_BSLASHimport] = ACTIONS(6493), - [anon_sym_BSLASHsubimport] = ACTIONS(6493), - [anon_sym_BSLASHinputfrom] = ACTIONS(6493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6493), - [anon_sym_BSLASHincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHcaption] = ACTIONS(6493), - [anon_sym_BSLASHcite] = ACTIONS(6493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCite] = ACTIONS(6493), - [anon_sym_BSLASHnocite] = ACTIONS(6493), - [anon_sym_BSLASHcitet] = ACTIONS(6493), - [anon_sym_BSLASHcitep] = ACTIONS(6493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteauthor] = ACTIONS(6493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitetitle] = ACTIONS(6493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteyear] = ACTIONS(6493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitedate] = ACTIONS(6493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteurl] = ACTIONS(6493), - [anon_sym_BSLASHfullcite] = ACTIONS(6493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6493), - [anon_sym_BSLASHcitealt] = ACTIONS(6493), - [anon_sym_BSLASHcitealp] = ACTIONS(6493), - [anon_sym_BSLASHcitetext] = ACTIONS(6493), - [anon_sym_BSLASHparencite] = ACTIONS(6493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHParencite] = ACTIONS(6493), - [anon_sym_BSLASHfootcite] = ACTIONS(6493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6493), - [anon_sym_BSLASHtextcite] = ACTIONS(6493), - [anon_sym_BSLASHTextcite] = ACTIONS(6493), - [anon_sym_BSLASHsmartcite] = ACTIONS(6493), - [anon_sym_BSLASHSmartcite] = ACTIONS(6493), - [anon_sym_BSLASHsupercite] = ACTIONS(6493), - [anon_sym_BSLASHautocite] = ACTIONS(6493), - [anon_sym_BSLASHAutocite] = ACTIONS(6493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHvolcite] = ACTIONS(6493), - [anon_sym_BSLASHVolcite] = ACTIONS(6493), - [anon_sym_BSLASHpvolcite] = ACTIONS(6493), - [anon_sym_BSLASHPvolcite] = ACTIONS(6493), - [anon_sym_BSLASHfvolcite] = ACTIONS(6493), - [anon_sym_BSLASHftvolcite] = ACTIONS(6493), - [anon_sym_BSLASHsvolcite] = ACTIONS(6493), - [anon_sym_BSLASHSvolcite] = ACTIONS(6493), - [anon_sym_BSLASHtvolcite] = ACTIONS(6493), - [anon_sym_BSLASHTvolcite] = ACTIONS(6493), - [anon_sym_BSLASHavolcite] = ACTIONS(6493), - [anon_sym_BSLASHAvolcite] = ACTIONS(6493), - [anon_sym_BSLASHnotecite] = ACTIONS(6493), - [anon_sym_BSLASHNotecite] = ACTIONS(6493), - [anon_sym_BSLASHpnotecite] = ACTIONS(6493), - [anon_sym_BSLASHPnotecite] = ACTIONS(6493), - [anon_sym_BSLASHfnotecite] = ACTIONS(6493), - [anon_sym_BSLASHlabel] = ACTIONS(6493), - [anon_sym_BSLASHref] = ACTIONS(6493), - [anon_sym_BSLASHeqref] = ACTIONS(6493), - [anon_sym_BSLASHvref] = ACTIONS(6493), - [anon_sym_BSLASHVref] = ACTIONS(6493), - [anon_sym_BSLASHautoref] = ACTIONS(6493), - [anon_sym_BSLASHpageref] = ACTIONS(6493), - [anon_sym_BSLASHcref] = ACTIONS(6493), - [anon_sym_BSLASHCref] = ACTIONS(6493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnameCref] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHlabelcref] = ACTIONS(6493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCrefrange] = ACTIONS(6493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnewlabel] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6495), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHdef] = ACTIONS(6493), - [anon_sym_BSLASHlet] = ACTIONS(6493), - [anon_sym_BSLASHleft] = ACTIONS(6493), - [anon_sym_BSLASHbig] = ACTIONS(6493), - [anon_sym_BSLASHBig] = ACTIONS(6493), - [anon_sym_BSLASHbigg] = ACTIONS(6493), - [anon_sym_BSLASHBigg] = ACTIONS(6493), - [anon_sym_BSLASHbigl] = ACTIONS(6493), - [anon_sym_BSLASHBigl] = ACTIONS(6493), - [anon_sym_BSLASHbiggl] = ACTIONS(6493), - [anon_sym_BSLASHBiggl] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6493), - [anon_sym_BSLASHgls] = ACTIONS(6493), - [anon_sym_BSLASHGls] = ACTIONS(6493), - [anon_sym_BSLASHGLS] = ACTIONS(6493), - [anon_sym_BSLASHglspl] = ACTIONS(6493), - [anon_sym_BSLASHGlspl] = ACTIONS(6493), - [anon_sym_BSLASHGLSpl] = ACTIONS(6493), - [anon_sym_BSLASHglsdisp] = ACTIONS(6493), - [anon_sym_BSLASHglslink] = ACTIONS(6493), - [anon_sym_BSLASHglstext] = ACTIONS(6493), - [anon_sym_BSLASHGlstext] = ACTIONS(6493), - [anon_sym_BSLASHGLStext] = ACTIONS(6493), - [anon_sym_BSLASHglsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6493), - [anon_sym_BSLASHglsplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSplural] = ACTIONS(6493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHglsname] = ACTIONS(6493), - [anon_sym_BSLASHGlsname] = ACTIONS(6493), - [anon_sym_BSLASHGLSname] = ACTIONS(6493), - [anon_sym_BSLASHglssymbol] = ACTIONS(6493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6493), - [anon_sym_BSLASHglsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6493), - [anon_sym_BSLASHglsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6493), - [anon_sym_BSLASHglsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6493), - [anon_sym_BSLASHglsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6493), - [anon_sym_BSLASHglsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6493), - [anon_sym_BSLASHnewacronym] = ACTIONS(6493), - [anon_sym_BSLASHacrshort] = ACTIONS(6493), - [anon_sym_BSLASHAcrshort] = ACTIONS(6493), - [anon_sym_BSLASHACRshort] = ACTIONS(6493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6493), - [anon_sym_BSLASHacrlong] = ACTIONS(6493), - [anon_sym_BSLASHAcrlong] = ACTIONS(6493), - [anon_sym_BSLASHACRlong] = ACTIONS(6493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6493), - [anon_sym_BSLASHacrfull] = ACTIONS(6493), - [anon_sym_BSLASHAcrfull] = ACTIONS(6493), - [anon_sym_BSLASHACRfull] = ACTIONS(6493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6493), - [anon_sym_BSLASHacs] = ACTIONS(6493), - [anon_sym_BSLASHAcs] = ACTIONS(6493), - [anon_sym_BSLASHacsp] = ACTIONS(6493), - [anon_sym_BSLASHAcsp] = ACTIONS(6493), - [anon_sym_BSLASHacl] = ACTIONS(6493), - [anon_sym_BSLASHAcl] = ACTIONS(6493), - [anon_sym_BSLASHaclp] = ACTIONS(6493), - [anon_sym_BSLASHAclp] = ACTIONS(6493), - [anon_sym_BSLASHacf] = ACTIONS(6493), - [anon_sym_BSLASHAcf] = ACTIONS(6493), - [anon_sym_BSLASHacfp] = ACTIONS(6493), - [anon_sym_BSLASHAcfp] = ACTIONS(6493), - [anon_sym_BSLASHac] = ACTIONS(6493), - [anon_sym_BSLASHAc] = ACTIONS(6493), - [anon_sym_BSLASHacp] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6493), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6493), - [anon_sym_BSLASHcolor] = ACTIONS(6493), - [anon_sym_BSLASHcolorbox] = ACTIONS(6493), - [anon_sym_BSLASHtextcolor] = ACTIONS(6493), - [anon_sym_BSLASHpagecolor] = ACTIONS(6493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6493), - [anon_sym_BSLASHtext] = ACTIONS(6493), - [anon_sym_BSLASHintertext] = ACTIONS(6493), - [anon_sym_shortintertext] = ACTIONS(6493), - }, - [1594] = { - [sym_command_name] = ACTIONS(6497), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(6499), - [anon_sym_RBRACK] = ACTIONS(6499), - [anon_sym_COMMA] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(6499), - [anon_sym_LPAREN] = ACTIONS(6499), - [anon_sym_RPAREN] = ACTIONS(6499), - [anon_sym_LBRACE] = ACTIONS(6499), - [sym_word] = ACTIONS(6497), - [sym_placeholder] = ACTIONS(6499), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_STAR] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6499), - [anon_sym_LT] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6497), - [anon_sym_BANG] = ACTIONS(6497), - [anon_sym_PIPE] = ACTIONS(6497), - [anon_sym_COLON] = ACTIONS(6497), - [anon_sym_SQUOTE] = ACTIONS(6497), - [anon_sym__] = ACTIONS(6499), - [anon_sym_CARET] = ACTIONS(6499), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6499), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6499), - [anon_sym_DOLLAR] = ACTIONS(6497), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6499), - [anon_sym_BSLASHbegin] = ACTIONS(6497), - [anon_sym_BSLASHend] = ACTIONS(6497), - [anon_sym_BSLASHtitle] = ACTIONS(6497), - [anon_sym_BSLASHauthor] = ACTIONS(6497), - [anon_sym_BSLASHusepackage] = ACTIONS(6497), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6497), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6497), - [anon_sym_BSLASHinclude] = ACTIONS(6497), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6497), - [anon_sym_BSLASHinput] = ACTIONS(6497), - [anon_sym_BSLASHsubfile] = ACTIONS(6497), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6497), - [anon_sym_BSLASHbibliography] = ACTIONS(6497), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6497), - [anon_sym_BSLASHincludesvg] = ACTIONS(6497), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6497), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6497), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6497), - [anon_sym_BSLASHimport] = ACTIONS(6497), - [anon_sym_BSLASHsubimport] = ACTIONS(6497), - [anon_sym_BSLASHinputfrom] = ACTIONS(6497), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6497), - [anon_sym_BSLASHincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHcaption] = ACTIONS(6497), - [anon_sym_BSLASHcite] = ACTIONS(6497), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCite] = ACTIONS(6497), - [anon_sym_BSLASHnocite] = ACTIONS(6497), - [anon_sym_BSLASHcitet] = ACTIONS(6497), - [anon_sym_BSLASHcitep] = ACTIONS(6497), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteauthor] = ACTIONS(6497), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6497), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitetitle] = ACTIONS(6497), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteyear] = ACTIONS(6497), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitedate] = ACTIONS(6497), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteurl] = ACTIONS(6497), - [anon_sym_BSLASHfullcite] = ACTIONS(6497), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6497), - [anon_sym_BSLASHcitealt] = ACTIONS(6497), - [anon_sym_BSLASHcitealp] = ACTIONS(6497), - [anon_sym_BSLASHcitetext] = ACTIONS(6497), - [anon_sym_BSLASHparencite] = ACTIONS(6497), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHParencite] = ACTIONS(6497), - [anon_sym_BSLASHfootcite] = ACTIONS(6497), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6497), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6497), - [anon_sym_BSLASHtextcite] = ACTIONS(6497), - [anon_sym_BSLASHTextcite] = ACTIONS(6497), - [anon_sym_BSLASHsmartcite] = ACTIONS(6497), - [anon_sym_BSLASHSmartcite] = ACTIONS(6497), - [anon_sym_BSLASHsupercite] = ACTIONS(6497), - [anon_sym_BSLASHautocite] = ACTIONS(6497), - [anon_sym_BSLASHAutocite] = ACTIONS(6497), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHvolcite] = ACTIONS(6497), - [anon_sym_BSLASHVolcite] = ACTIONS(6497), - [anon_sym_BSLASHpvolcite] = ACTIONS(6497), - [anon_sym_BSLASHPvolcite] = ACTIONS(6497), - [anon_sym_BSLASHfvolcite] = ACTIONS(6497), - [anon_sym_BSLASHftvolcite] = ACTIONS(6497), - [anon_sym_BSLASHsvolcite] = ACTIONS(6497), - [anon_sym_BSLASHSvolcite] = ACTIONS(6497), - [anon_sym_BSLASHtvolcite] = ACTIONS(6497), - [anon_sym_BSLASHTvolcite] = ACTIONS(6497), - [anon_sym_BSLASHavolcite] = ACTIONS(6497), - [anon_sym_BSLASHAvolcite] = ACTIONS(6497), - [anon_sym_BSLASHnotecite] = ACTIONS(6497), - [anon_sym_BSLASHNotecite] = ACTIONS(6497), - [anon_sym_BSLASHpnotecite] = ACTIONS(6497), - [anon_sym_BSLASHPnotecite] = ACTIONS(6497), - [anon_sym_BSLASHfnotecite] = ACTIONS(6497), - [anon_sym_BSLASHlabel] = ACTIONS(6497), - [anon_sym_BSLASHref] = ACTIONS(6497), - [anon_sym_BSLASHeqref] = ACTIONS(6497), - [anon_sym_BSLASHvref] = ACTIONS(6497), - [anon_sym_BSLASHVref] = ACTIONS(6497), - [anon_sym_BSLASHautoref] = ACTIONS(6497), - [anon_sym_BSLASHpageref] = ACTIONS(6497), - [anon_sym_BSLASHcref] = ACTIONS(6497), - [anon_sym_BSLASHCref] = ACTIONS(6497), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnameCref] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHlabelcref] = ACTIONS(6497), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCrefrange] = ACTIONS(6497), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnewlabel] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6497), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6497), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6499), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHdef] = ACTIONS(6497), - [anon_sym_BSLASHlet] = ACTIONS(6497), - [anon_sym_BSLASHleft] = ACTIONS(6497), - [anon_sym_BSLASHbig] = ACTIONS(6497), - [anon_sym_BSLASHBig] = ACTIONS(6497), - [anon_sym_BSLASHbigg] = ACTIONS(6497), - [anon_sym_BSLASHBigg] = ACTIONS(6497), - [anon_sym_BSLASHbigl] = ACTIONS(6497), - [anon_sym_BSLASHBigl] = ACTIONS(6497), - [anon_sym_BSLASHbiggl] = ACTIONS(6497), - [anon_sym_BSLASHBiggl] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6497), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6497), - [anon_sym_BSLASHgls] = ACTIONS(6497), - [anon_sym_BSLASHGls] = ACTIONS(6497), - [anon_sym_BSLASHGLS] = ACTIONS(6497), - [anon_sym_BSLASHglspl] = ACTIONS(6497), - [anon_sym_BSLASHGlspl] = ACTIONS(6497), - [anon_sym_BSLASHGLSpl] = ACTIONS(6497), - [anon_sym_BSLASHglsdisp] = ACTIONS(6497), - [anon_sym_BSLASHglslink] = ACTIONS(6497), - [anon_sym_BSLASHglstext] = ACTIONS(6497), - [anon_sym_BSLASHGlstext] = ACTIONS(6497), - [anon_sym_BSLASHGLStext] = ACTIONS(6497), - [anon_sym_BSLASHglsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6497), - [anon_sym_BSLASHglsplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSplural] = ACTIONS(6497), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHglsname] = ACTIONS(6497), - [anon_sym_BSLASHGlsname] = ACTIONS(6497), - [anon_sym_BSLASHGLSname] = ACTIONS(6497), - [anon_sym_BSLASHglssymbol] = ACTIONS(6497), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6497), - [anon_sym_BSLASHglsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6497), - [anon_sym_BSLASHglsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6497), - [anon_sym_BSLASHglsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6497), - [anon_sym_BSLASHglsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6497), - [anon_sym_BSLASHglsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6497), - [anon_sym_BSLASHnewacronym] = ACTIONS(6497), - [anon_sym_BSLASHacrshort] = ACTIONS(6497), - [anon_sym_BSLASHAcrshort] = ACTIONS(6497), - [anon_sym_BSLASHACRshort] = ACTIONS(6497), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6497), - [anon_sym_BSLASHacrlong] = ACTIONS(6497), - [anon_sym_BSLASHAcrlong] = ACTIONS(6497), - [anon_sym_BSLASHACRlong] = ACTIONS(6497), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6497), - [anon_sym_BSLASHacrfull] = ACTIONS(6497), - [anon_sym_BSLASHAcrfull] = ACTIONS(6497), - [anon_sym_BSLASHACRfull] = ACTIONS(6497), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6497), - [anon_sym_BSLASHacs] = ACTIONS(6497), - [anon_sym_BSLASHAcs] = ACTIONS(6497), - [anon_sym_BSLASHacsp] = ACTIONS(6497), - [anon_sym_BSLASHAcsp] = ACTIONS(6497), - [anon_sym_BSLASHacl] = ACTIONS(6497), - [anon_sym_BSLASHAcl] = ACTIONS(6497), - [anon_sym_BSLASHaclp] = ACTIONS(6497), - [anon_sym_BSLASHAclp] = ACTIONS(6497), - [anon_sym_BSLASHacf] = ACTIONS(6497), - [anon_sym_BSLASHAcf] = ACTIONS(6497), - [anon_sym_BSLASHacfp] = ACTIONS(6497), - [anon_sym_BSLASHAcfp] = ACTIONS(6497), - [anon_sym_BSLASHac] = ACTIONS(6497), - [anon_sym_BSLASHAc] = ACTIONS(6497), - [anon_sym_BSLASHacp] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6497), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6497), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6497), - [anon_sym_BSLASHcolor] = ACTIONS(6497), - [anon_sym_BSLASHcolorbox] = ACTIONS(6497), - [anon_sym_BSLASHtextcolor] = ACTIONS(6497), - [anon_sym_BSLASHpagecolor] = ACTIONS(6497), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6497), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6497), - [anon_sym_BSLASHtext] = ACTIONS(6497), - [anon_sym_BSLASHintertext] = ACTIONS(6497), - [anon_sym_shortintertext] = ACTIONS(6497), - }, - [1595] = { - [sym_command_name] = ACTIONS(6501), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6501), - [anon_sym_LBRACK] = ACTIONS(6503), - [anon_sym_RBRACK] = ACTIONS(6503), - [anon_sym_COMMA] = ACTIONS(6503), - [anon_sym_EQ] = ACTIONS(6503), - [anon_sym_LPAREN] = ACTIONS(6503), - [anon_sym_RPAREN] = ACTIONS(6503), - [anon_sym_LBRACE] = ACTIONS(6503), - [sym_word] = ACTIONS(6501), - [sym_placeholder] = ACTIONS(6503), - [anon_sym_PLUS] = ACTIONS(6503), - [anon_sym_DASH] = ACTIONS(6503), - [anon_sym_STAR] = ACTIONS(6503), - [anon_sym_SLASH] = ACTIONS(6503), - [anon_sym_LT] = ACTIONS(6501), - [anon_sym_GT] = ACTIONS(6501), - [anon_sym_BANG] = ACTIONS(6501), - [anon_sym_PIPE] = ACTIONS(6501), - [anon_sym_COLON] = ACTIONS(6501), - [anon_sym_SQUOTE] = ACTIONS(6501), - [anon_sym__] = ACTIONS(6503), - [anon_sym_CARET] = ACTIONS(6503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6503), - [anon_sym_DOLLAR] = ACTIONS(6501), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6503), - [anon_sym_BSLASHbegin] = ACTIONS(6501), - [anon_sym_BSLASHend] = ACTIONS(6501), - [anon_sym_BSLASHtitle] = ACTIONS(6501), - [anon_sym_BSLASHauthor] = ACTIONS(6501), - [anon_sym_BSLASHusepackage] = ACTIONS(6501), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6501), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6501), - [anon_sym_BSLASHinclude] = ACTIONS(6501), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6501), - [anon_sym_BSLASHinput] = ACTIONS(6501), - [anon_sym_BSLASHsubfile] = ACTIONS(6501), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6501), - [anon_sym_BSLASHbibliography] = ACTIONS(6501), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6501), - [anon_sym_BSLASHincludesvg] = ACTIONS(6501), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6501), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6501), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6501), - [anon_sym_BSLASHimport] = ACTIONS(6501), - [anon_sym_BSLASHsubimport] = ACTIONS(6501), - [anon_sym_BSLASHinputfrom] = ACTIONS(6501), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6501), - [anon_sym_BSLASHincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHcaption] = ACTIONS(6501), - [anon_sym_BSLASHcite] = ACTIONS(6501), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCite] = ACTIONS(6501), - [anon_sym_BSLASHnocite] = ACTIONS(6501), - [anon_sym_BSLASHcitet] = ACTIONS(6501), - [anon_sym_BSLASHcitep] = ACTIONS(6501), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteauthor] = ACTIONS(6501), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6501), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitetitle] = ACTIONS(6501), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteyear] = ACTIONS(6501), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitedate] = ACTIONS(6501), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteurl] = ACTIONS(6501), - [anon_sym_BSLASHfullcite] = ACTIONS(6501), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6501), - [anon_sym_BSLASHcitealt] = ACTIONS(6501), - [anon_sym_BSLASHcitealp] = ACTIONS(6501), - [anon_sym_BSLASHcitetext] = ACTIONS(6501), - [anon_sym_BSLASHparencite] = ACTIONS(6501), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHParencite] = ACTIONS(6501), - [anon_sym_BSLASHfootcite] = ACTIONS(6501), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6501), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6501), - [anon_sym_BSLASHtextcite] = ACTIONS(6501), - [anon_sym_BSLASHTextcite] = ACTIONS(6501), - [anon_sym_BSLASHsmartcite] = ACTIONS(6501), - [anon_sym_BSLASHSmartcite] = ACTIONS(6501), - [anon_sym_BSLASHsupercite] = ACTIONS(6501), - [anon_sym_BSLASHautocite] = ACTIONS(6501), - [anon_sym_BSLASHAutocite] = ACTIONS(6501), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHvolcite] = ACTIONS(6501), - [anon_sym_BSLASHVolcite] = ACTIONS(6501), - [anon_sym_BSLASHpvolcite] = ACTIONS(6501), - [anon_sym_BSLASHPvolcite] = ACTIONS(6501), - [anon_sym_BSLASHfvolcite] = ACTIONS(6501), - [anon_sym_BSLASHftvolcite] = ACTIONS(6501), - [anon_sym_BSLASHsvolcite] = ACTIONS(6501), - [anon_sym_BSLASHSvolcite] = ACTIONS(6501), - [anon_sym_BSLASHtvolcite] = ACTIONS(6501), - [anon_sym_BSLASHTvolcite] = ACTIONS(6501), - [anon_sym_BSLASHavolcite] = ACTIONS(6501), - [anon_sym_BSLASHAvolcite] = ACTIONS(6501), - [anon_sym_BSLASHnotecite] = ACTIONS(6501), - [anon_sym_BSLASHNotecite] = ACTIONS(6501), - [anon_sym_BSLASHpnotecite] = ACTIONS(6501), - [anon_sym_BSLASHPnotecite] = ACTIONS(6501), - [anon_sym_BSLASHfnotecite] = ACTIONS(6501), - [anon_sym_BSLASHlabel] = ACTIONS(6501), - [anon_sym_BSLASHref] = ACTIONS(6501), - [anon_sym_BSLASHeqref] = ACTIONS(6501), - [anon_sym_BSLASHvref] = ACTIONS(6501), - [anon_sym_BSLASHVref] = ACTIONS(6501), - [anon_sym_BSLASHautoref] = ACTIONS(6501), - [anon_sym_BSLASHpageref] = ACTIONS(6501), - [anon_sym_BSLASHcref] = ACTIONS(6501), - [anon_sym_BSLASHCref] = ACTIONS(6501), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnameCref] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHlabelcref] = ACTIONS(6501), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCrefrange] = ACTIONS(6501), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnewlabel] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6501), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6501), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6503), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHdef] = ACTIONS(6501), - [anon_sym_BSLASHlet] = ACTIONS(6501), - [anon_sym_BSLASHleft] = ACTIONS(6501), - [anon_sym_BSLASHbig] = ACTIONS(6501), - [anon_sym_BSLASHBig] = ACTIONS(6501), - [anon_sym_BSLASHbigg] = ACTIONS(6501), - [anon_sym_BSLASHBigg] = ACTIONS(6501), - [anon_sym_BSLASHbigl] = ACTIONS(6501), - [anon_sym_BSLASHBigl] = ACTIONS(6501), - [anon_sym_BSLASHbiggl] = ACTIONS(6501), - [anon_sym_BSLASHBiggl] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6501), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6501), - [anon_sym_BSLASHgls] = ACTIONS(6501), - [anon_sym_BSLASHGls] = ACTIONS(6501), - [anon_sym_BSLASHGLS] = ACTIONS(6501), - [anon_sym_BSLASHglspl] = ACTIONS(6501), - [anon_sym_BSLASHGlspl] = ACTIONS(6501), - [anon_sym_BSLASHGLSpl] = ACTIONS(6501), - [anon_sym_BSLASHglsdisp] = ACTIONS(6501), - [anon_sym_BSLASHglslink] = ACTIONS(6501), - [anon_sym_BSLASHglstext] = ACTIONS(6501), - [anon_sym_BSLASHGlstext] = ACTIONS(6501), - [anon_sym_BSLASHGLStext] = ACTIONS(6501), - [anon_sym_BSLASHglsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6501), - [anon_sym_BSLASHglsplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSplural] = ACTIONS(6501), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHglsname] = ACTIONS(6501), - [anon_sym_BSLASHGlsname] = ACTIONS(6501), - [anon_sym_BSLASHGLSname] = ACTIONS(6501), - [anon_sym_BSLASHglssymbol] = ACTIONS(6501), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6501), - [anon_sym_BSLASHglsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6501), - [anon_sym_BSLASHglsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6501), - [anon_sym_BSLASHglsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6501), - [anon_sym_BSLASHglsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6501), - [anon_sym_BSLASHglsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6501), - [anon_sym_BSLASHnewacronym] = ACTIONS(6501), - [anon_sym_BSLASHacrshort] = ACTIONS(6501), - [anon_sym_BSLASHAcrshort] = ACTIONS(6501), - [anon_sym_BSLASHACRshort] = ACTIONS(6501), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6501), - [anon_sym_BSLASHacrlong] = ACTIONS(6501), - [anon_sym_BSLASHAcrlong] = ACTIONS(6501), - [anon_sym_BSLASHACRlong] = ACTIONS(6501), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6501), - [anon_sym_BSLASHacrfull] = ACTIONS(6501), - [anon_sym_BSLASHAcrfull] = ACTIONS(6501), - [anon_sym_BSLASHACRfull] = ACTIONS(6501), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6501), - [anon_sym_BSLASHacs] = ACTIONS(6501), - [anon_sym_BSLASHAcs] = ACTIONS(6501), - [anon_sym_BSLASHacsp] = ACTIONS(6501), - [anon_sym_BSLASHAcsp] = ACTIONS(6501), - [anon_sym_BSLASHacl] = ACTIONS(6501), - [anon_sym_BSLASHAcl] = ACTIONS(6501), - [anon_sym_BSLASHaclp] = ACTIONS(6501), - [anon_sym_BSLASHAclp] = ACTIONS(6501), - [anon_sym_BSLASHacf] = ACTIONS(6501), - [anon_sym_BSLASHAcf] = ACTIONS(6501), - [anon_sym_BSLASHacfp] = ACTIONS(6501), - [anon_sym_BSLASHAcfp] = ACTIONS(6501), - [anon_sym_BSLASHac] = ACTIONS(6501), - [anon_sym_BSLASHAc] = ACTIONS(6501), - [anon_sym_BSLASHacp] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6501), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6501), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6501), - [anon_sym_BSLASHcolor] = ACTIONS(6501), - [anon_sym_BSLASHcolorbox] = ACTIONS(6501), - [anon_sym_BSLASHtextcolor] = ACTIONS(6501), - [anon_sym_BSLASHpagecolor] = ACTIONS(6501), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6501), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6501), - [anon_sym_BSLASHtext] = ACTIONS(6501), - [anon_sym_BSLASHintertext] = ACTIONS(6501), - [anon_sym_shortintertext] = ACTIONS(6501), - }, - [1596] = { - [sym_brack_group_text] = STATE(1789), - [sym_command_name] = ACTIONS(6017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6017), - [anon_sym_LBRACK] = ACTIONS(6947), - [anon_sym_RBRACK] = ACTIONS(6019), - [anon_sym_COMMA] = ACTIONS(6019), - [anon_sym_EQ] = ACTIONS(6019), - [anon_sym_LPAREN] = ACTIONS(6019), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_LBRACE] = ACTIONS(6019), - [anon_sym_RBRACE] = ACTIONS(6019), - [sym_word] = ACTIONS(6017), - [sym_placeholder] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(6017), - [anon_sym_PIPE] = ACTIONS(6017), - [anon_sym_COLON] = ACTIONS(6017), - [anon_sym_SQUOTE] = ACTIONS(6017), - [anon_sym__] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), - [anon_sym_DOLLAR] = ACTIONS(6017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), - [anon_sym_BSLASHtitle] = ACTIONS(6017), - [anon_sym_BSLASHauthor] = ACTIONS(6017), - [anon_sym_BSLASHusepackage] = ACTIONS(6017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), - [anon_sym_BSLASHinclude] = ACTIONS(6017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), - [anon_sym_BSLASHinput] = ACTIONS(6017), - [anon_sym_BSLASHsubfile] = ACTIONS(6017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), - [anon_sym_BSLASHbibliography] = ACTIONS(6017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), - [anon_sym_BSLASHincludesvg] = ACTIONS(6017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), - [anon_sym_BSLASHimport] = ACTIONS(6017), - [anon_sym_BSLASHsubimport] = ACTIONS(6017), - [anon_sym_BSLASHinputfrom] = ACTIONS(6017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), - [anon_sym_BSLASHincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHcaption] = ACTIONS(6017), - [anon_sym_BSLASHcite] = ACTIONS(6017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCite] = ACTIONS(6017), - [anon_sym_BSLASHnocite] = ACTIONS(6017), - [anon_sym_BSLASHcitet] = ACTIONS(6017), - [anon_sym_BSLASHcitep] = ACTIONS(6017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteauthor] = ACTIONS(6017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitetitle] = ACTIONS(6017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteyear] = ACTIONS(6017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitedate] = ACTIONS(6017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteurl] = ACTIONS(6017), - [anon_sym_BSLASHfullcite] = ACTIONS(6017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), - [anon_sym_BSLASHcitealt] = ACTIONS(6017), - [anon_sym_BSLASHcitealp] = ACTIONS(6017), - [anon_sym_BSLASHcitetext] = ACTIONS(6017), - [anon_sym_BSLASHparencite] = ACTIONS(6017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHParencite] = ACTIONS(6017), - [anon_sym_BSLASHfootcite] = ACTIONS(6017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), - [anon_sym_BSLASHtextcite] = ACTIONS(6017), - [anon_sym_BSLASHTextcite] = ACTIONS(6017), - [anon_sym_BSLASHsmartcite] = ACTIONS(6017), - [anon_sym_BSLASHSmartcite] = ACTIONS(6017), - [anon_sym_BSLASHsupercite] = ACTIONS(6017), - [anon_sym_BSLASHautocite] = ACTIONS(6017), - [anon_sym_BSLASHAutocite] = ACTIONS(6017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHvolcite] = ACTIONS(6017), - [anon_sym_BSLASHVolcite] = ACTIONS(6017), - [anon_sym_BSLASHpvolcite] = ACTIONS(6017), - [anon_sym_BSLASHPvolcite] = ACTIONS(6017), - [anon_sym_BSLASHfvolcite] = ACTIONS(6017), - [anon_sym_BSLASHftvolcite] = ACTIONS(6017), - [anon_sym_BSLASHsvolcite] = ACTIONS(6017), - [anon_sym_BSLASHSvolcite] = ACTIONS(6017), - [anon_sym_BSLASHtvolcite] = ACTIONS(6017), - [anon_sym_BSLASHTvolcite] = ACTIONS(6017), - [anon_sym_BSLASHavolcite] = ACTIONS(6017), - [anon_sym_BSLASHAvolcite] = ACTIONS(6017), - [anon_sym_BSLASHnotecite] = ACTIONS(6017), - [anon_sym_BSLASHNotecite] = ACTIONS(6017), - [anon_sym_BSLASHpnotecite] = ACTIONS(6017), - [anon_sym_BSLASHPnotecite] = ACTIONS(6017), - [anon_sym_BSLASHfnotecite] = ACTIONS(6017), - [anon_sym_BSLASHlabel] = ACTIONS(6017), - [anon_sym_BSLASHref] = ACTIONS(6017), - [anon_sym_BSLASHeqref] = ACTIONS(6017), - [anon_sym_BSLASHvref] = ACTIONS(6017), - [anon_sym_BSLASHVref] = ACTIONS(6017), - [anon_sym_BSLASHautoref] = ACTIONS(6017), - [anon_sym_BSLASHpageref] = ACTIONS(6017), - [anon_sym_BSLASHcref] = ACTIONS(6017), - [anon_sym_BSLASHCref] = ACTIONS(6017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnameCref] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHlabelcref] = ACTIONS(6017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCrefrange] = ACTIONS(6017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnewlabel] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHdef] = ACTIONS(6017), - [anon_sym_BSLASHlet] = ACTIONS(6017), - [anon_sym_BSLASHleft] = ACTIONS(6017), - [anon_sym_BSLASHbig] = ACTIONS(6017), - [anon_sym_BSLASHBig] = ACTIONS(6017), - [anon_sym_BSLASHbigg] = ACTIONS(6017), - [anon_sym_BSLASHBigg] = ACTIONS(6017), - [anon_sym_BSLASHbigl] = ACTIONS(6017), - [anon_sym_BSLASHBigl] = ACTIONS(6017), - [anon_sym_BSLASHbiggl] = ACTIONS(6017), - [anon_sym_BSLASHBiggl] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), - [anon_sym_BSLASHgls] = ACTIONS(6017), - [anon_sym_BSLASHGls] = ACTIONS(6017), - [anon_sym_BSLASHGLS] = ACTIONS(6017), - [anon_sym_BSLASHglspl] = ACTIONS(6017), - [anon_sym_BSLASHGlspl] = ACTIONS(6017), - [anon_sym_BSLASHGLSpl] = ACTIONS(6017), - [anon_sym_BSLASHglsdisp] = ACTIONS(6017), - [anon_sym_BSLASHglslink] = ACTIONS(6017), - [anon_sym_BSLASHglstext] = ACTIONS(6017), - [anon_sym_BSLASHGlstext] = ACTIONS(6017), - [anon_sym_BSLASHGLStext] = ACTIONS(6017), - [anon_sym_BSLASHglsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), - [anon_sym_BSLASHglsplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSplural] = ACTIONS(6017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHglsname] = ACTIONS(6017), - [anon_sym_BSLASHGlsname] = ACTIONS(6017), - [anon_sym_BSLASHGLSname] = ACTIONS(6017), - [anon_sym_BSLASHglssymbol] = ACTIONS(6017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), - [anon_sym_BSLASHglsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), - [anon_sym_BSLASHglsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), - [anon_sym_BSLASHglsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), - [anon_sym_BSLASHglsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), - [anon_sym_BSLASHglsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), - [anon_sym_BSLASHnewacronym] = ACTIONS(6017), - [anon_sym_BSLASHacrshort] = ACTIONS(6017), - [anon_sym_BSLASHAcrshort] = ACTIONS(6017), - [anon_sym_BSLASHACRshort] = ACTIONS(6017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), - [anon_sym_BSLASHacrlong] = ACTIONS(6017), - [anon_sym_BSLASHAcrlong] = ACTIONS(6017), - [anon_sym_BSLASHACRlong] = ACTIONS(6017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), - [anon_sym_BSLASHacrfull] = ACTIONS(6017), - [anon_sym_BSLASHAcrfull] = ACTIONS(6017), - [anon_sym_BSLASHACRfull] = ACTIONS(6017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), - [anon_sym_BSLASHacs] = ACTIONS(6017), - [anon_sym_BSLASHAcs] = ACTIONS(6017), - [anon_sym_BSLASHacsp] = ACTIONS(6017), - [anon_sym_BSLASHAcsp] = ACTIONS(6017), - [anon_sym_BSLASHacl] = ACTIONS(6017), - [anon_sym_BSLASHAcl] = ACTIONS(6017), - [anon_sym_BSLASHaclp] = ACTIONS(6017), - [anon_sym_BSLASHAclp] = ACTIONS(6017), - [anon_sym_BSLASHacf] = ACTIONS(6017), - [anon_sym_BSLASHAcf] = ACTIONS(6017), - [anon_sym_BSLASHacfp] = ACTIONS(6017), - [anon_sym_BSLASHAcfp] = ACTIONS(6017), - [anon_sym_BSLASHac] = ACTIONS(6017), - [anon_sym_BSLASHAc] = ACTIONS(6017), - [anon_sym_BSLASHacp] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), - [anon_sym_BSLASHcolor] = ACTIONS(6017), - [anon_sym_BSLASHcolorbox] = ACTIONS(6017), - [anon_sym_BSLASHtextcolor] = ACTIONS(6017), - [anon_sym_BSLASHpagecolor] = ACTIONS(6017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), - [anon_sym_BSLASHtext] = ACTIONS(6017), - [anon_sym_BSLASHintertext] = ACTIONS(6017), - [anon_sym_shortintertext] = ACTIONS(6017), - }, - [1597] = { - [sym_command_name] = ACTIONS(6505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(6507), - [anon_sym_RBRACK] = ACTIONS(6507), - [anon_sym_COMMA] = ACTIONS(6507), - [anon_sym_EQ] = ACTIONS(6507), - [anon_sym_LPAREN] = ACTIONS(6507), - [anon_sym_RPAREN] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [sym_word] = ACTIONS(6505), - [sym_placeholder] = ACTIONS(6507), - [anon_sym_PLUS] = ACTIONS(6507), - [anon_sym_DASH] = ACTIONS(6507), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_SLASH] = ACTIONS(6507), - [anon_sym_LT] = ACTIONS(6505), - [anon_sym_GT] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6505), - [anon_sym_PIPE] = ACTIONS(6505), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6505), - [anon_sym__] = ACTIONS(6507), - [anon_sym_CARET] = ACTIONS(6507), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6507), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6507), - [anon_sym_DOLLAR] = ACTIONS(6505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6507), - [anon_sym_BSLASHbegin] = ACTIONS(6505), - [anon_sym_BSLASHend] = ACTIONS(6505), - [anon_sym_BSLASHtitle] = ACTIONS(6505), - [anon_sym_BSLASHauthor] = ACTIONS(6505), - [anon_sym_BSLASHusepackage] = ACTIONS(6505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6505), - [anon_sym_BSLASHinclude] = ACTIONS(6505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6505), - [anon_sym_BSLASHinput] = ACTIONS(6505), - [anon_sym_BSLASHsubfile] = ACTIONS(6505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6505), - [anon_sym_BSLASHbibliography] = ACTIONS(6505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6505), - [anon_sym_BSLASHincludesvg] = ACTIONS(6505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6505), - [anon_sym_BSLASHimport] = ACTIONS(6505), - [anon_sym_BSLASHsubimport] = ACTIONS(6505), - [anon_sym_BSLASHinputfrom] = ACTIONS(6505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6505), - [anon_sym_BSLASHincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHcaption] = ACTIONS(6505), - [anon_sym_BSLASHcite] = ACTIONS(6505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCite] = ACTIONS(6505), - [anon_sym_BSLASHnocite] = ACTIONS(6505), - [anon_sym_BSLASHcitet] = ACTIONS(6505), - [anon_sym_BSLASHcitep] = ACTIONS(6505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteauthor] = ACTIONS(6505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitetitle] = ACTIONS(6505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteyear] = ACTIONS(6505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitedate] = ACTIONS(6505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteurl] = ACTIONS(6505), - [anon_sym_BSLASHfullcite] = ACTIONS(6505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6505), - [anon_sym_BSLASHcitealt] = ACTIONS(6505), - [anon_sym_BSLASHcitealp] = ACTIONS(6505), - [anon_sym_BSLASHcitetext] = ACTIONS(6505), - [anon_sym_BSLASHparencite] = ACTIONS(6505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHParencite] = ACTIONS(6505), - [anon_sym_BSLASHfootcite] = ACTIONS(6505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6505), - [anon_sym_BSLASHtextcite] = ACTIONS(6505), - [anon_sym_BSLASHTextcite] = ACTIONS(6505), - [anon_sym_BSLASHsmartcite] = ACTIONS(6505), - [anon_sym_BSLASHSmartcite] = ACTIONS(6505), - [anon_sym_BSLASHsupercite] = ACTIONS(6505), - [anon_sym_BSLASHautocite] = ACTIONS(6505), - [anon_sym_BSLASHAutocite] = ACTIONS(6505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHvolcite] = ACTIONS(6505), - [anon_sym_BSLASHVolcite] = ACTIONS(6505), - [anon_sym_BSLASHpvolcite] = ACTIONS(6505), - [anon_sym_BSLASHPvolcite] = ACTIONS(6505), - [anon_sym_BSLASHfvolcite] = ACTIONS(6505), - [anon_sym_BSLASHftvolcite] = ACTIONS(6505), - [anon_sym_BSLASHsvolcite] = ACTIONS(6505), - [anon_sym_BSLASHSvolcite] = ACTIONS(6505), - [anon_sym_BSLASHtvolcite] = ACTIONS(6505), - [anon_sym_BSLASHTvolcite] = ACTIONS(6505), - [anon_sym_BSLASHavolcite] = ACTIONS(6505), - [anon_sym_BSLASHAvolcite] = ACTIONS(6505), - [anon_sym_BSLASHnotecite] = ACTIONS(6505), - [anon_sym_BSLASHNotecite] = ACTIONS(6505), - [anon_sym_BSLASHpnotecite] = ACTIONS(6505), - [anon_sym_BSLASHPnotecite] = ACTIONS(6505), - [anon_sym_BSLASHfnotecite] = ACTIONS(6505), - [anon_sym_BSLASHlabel] = ACTIONS(6505), - [anon_sym_BSLASHref] = ACTIONS(6505), - [anon_sym_BSLASHeqref] = ACTIONS(6505), - [anon_sym_BSLASHvref] = ACTIONS(6505), - [anon_sym_BSLASHVref] = ACTIONS(6505), - [anon_sym_BSLASHautoref] = ACTIONS(6505), - [anon_sym_BSLASHpageref] = ACTIONS(6505), - [anon_sym_BSLASHcref] = ACTIONS(6505), - [anon_sym_BSLASHCref] = ACTIONS(6505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnameCref] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHlabelcref] = ACTIONS(6505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCrefrange] = ACTIONS(6505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnewlabel] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6507), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHdef] = ACTIONS(6505), - [anon_sym_BSLASHlet] = ACTIONS(6505), - [anon_sym_BSLASHleft] = ACTIONS(6505), - [anon_sym_BSLASHbig] = ACTIONS(6505), - [anon_sym_BSLASHBig] = ACTIONS(6505), - [anon_sym_BSLASHbigg] = ACTIONS(6505), - [anon_sym_BSLASHBigg] = ACTIONS(6505), - [anon_sym_BSLASHbigl] = ACTIONS(6505), - [anon_sym_BSLASHBigl] = ACTIONS(6505), - [anon_sym_BSLASHbiggl] = ACTIONS(6505), - [anon_sym_BSLASHBiggl] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6505), - [anon_sym_BSLASHgls] = ACTIONS(6505), - [anon_sym_BSLASHGls] = ACTIONS(6505), - [anon_sym_BSLASHGLS] = ACTIONS(6505), - [anon_sym_BSLASHglspl] = ACTIONS(6505), - [anon_sym_BSLASHGlspl] = ACTIONS(6505), - [anon_sym_BSLASHGLSpl] = ACTIONS(6505), - [anon_sym_BSLASHglsdisp] = ACTIONS(6505), - [anon_sym_BSLASHglslink] = ACTIONS(6505), - [anon_sym_BSLASHglstext] = ACTIONS(6505), - [anon_sym_BSLASHGlstext] = ACTIONS(6505), - [anon_sym_BSLASHGLStext] = ACTIONS(6505), - [anon_sym_BSLASHglsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6505), - [anon_sym_BSLASHglsplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSplural] = ACTIONS(6505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHglsname] = ACTIONS(6505), - [anon_sym_BSLASHGlsname] = ACTIONS(6505), - [anon_sym_BSLASHGLSname] = ACTIONS(6505), - [anon_sym_BSLASHglssymbol] = ACTIONS(6505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6505), - [anon_sym_BSLASHglsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6505), - [anon_sym_BSLASHglsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6505), - [anon_sym_BSLASHglsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6505), - [anon_sym_BSLASHglsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6505), - [anon_sym_BSLASHglsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6505), - [anon_sym_BSLASHnewacronym] = ACTIONS(6505), - [anon_sym_BSLASHacrshort] = ACTIONS(6505), - [anon_sym_BSLASHAcrshort] = ACTIONS(6505), - [anon_sym_BSLASHACRshort] = ACTIONS(6505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6505), - [anon_sym_BSLASHacrlong] = ACTIONS(6505), - [anon_sym_BSLASHAcrlong] = ACTIONS(6505), - [anon_sym_BSLASHACRlong] = ACTIONS(6505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6505), - [anon_sym_BSLASHacrfull] = ACTIONS(6505), - [anon_sym_BSLASHAcrfull] = ACTIONS(6505), - [anon_sym_BSLASHACRfull] = ACTIONS(6505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6505), - [anon_sym_BSLASHacs] = ACTIONS(6505), - [anon_sym_BSLASHAcs] = ACTIONS(6505), - [anon_sym_BSLASHacsp] = ACTIONS(6505), - [anon_sym_BSLASHAcsp] = ACTIONS(6505), - [anon_sym_BSLASHacl] = ACTIONS(6505), - [anon_sym_BSLASHAcl] = ACTIONS(6505), - [anon_sym_BSLASHaclp] = ACTIONS(6505), - [anon_sym_BSLASHAclp] = ACTIONS(6505), - [anon_sym_BSLASHacf] = ACTIONS(6505), - [anon_sym_BSLASHAcf] = ACTIONS(6505), - [anon_sym_BSLASHacfp] = ACTIONS(6505), - [anon_sym_BSLASHAcfp] = ACTIONS(6505), - [anon_sym_BSLASHac] = ACTIONS(6505), - [anon_sym_BSLASHAc] = ACTIONS(6505), - [anon_sym_BSLASHacp] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6505), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6505), - [anon_sym_BSLASHcolor] = ACTIONS(6505), - [anon_sym_BSLASHcolorbox] = ACTIONS(6505), - [anon_sym_BSLASHtextcolor] = ACTIONS(6505), - [anon_sym_BSLASHpagecolor] = ACTIONS(6505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6505), - [anon_sym_BSLASHtext] = ACTIONS(6505), - [anon_sym_BSLASHintertext] = ACTIONS(6505), - [anon_sym_shortintertext] = ACTIONS(6505), - }, - [1598] = { - [sym_command_name] = ACTIONS(6341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(6343), - [anon_sym_RBRACK] = ACTIONS(6343), - [anon_sym_COMMA] = ACTIONS(6343), - [anon_sym_EQ] = ACTIONS(6343), - [anon_sym_LPAREN] = ACTIONS(6343), - [anon_sym_RPAREN] = ACTIONS(6343), - [anon_sym_LBRACE] = ACTIONS(6343), - [sym_word] = ACTIONS(6341), - [sym_placeholder] = ACTIONS(6343), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_LT] = ACTIONS(6341), - [anon_sym_GT] = ACTIONS(6341), - [anon_sym_BANG] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_SQUOTE] = ACTIONS(6341), - [anon_sym__] = ACTIONS(6343), - [anon_sym_CARET] = ACTIONS(6343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6343), - [anon_sym_DOLLAR] = ACTIONS(6341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6343), - [anon_sym_BSLASHbegin] = ACTIONS(6341), - [anon_sym_BSLASHend] = ACTIONS(6341), - [anon_sym_BSLASHtitle] = ACTIONS(6341), - [anon_sym_BSLASHauthor] = ACTIONS(6341), - [anon_sym_BSLASHusepackage] = ACTIONS(6341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6341), - [anon_sym_BSLASHinclude] = ACTIONS(6341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6341), - [anon_sym_BSLASHinput] = ACTIONS(6341), - [anon_sym_BSLASHsubfile] = ACTIONS(6341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6341), - [anon_sym_BSLASHbibliography] = ACTIONS(6341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6341), - [anon_sym_BSLASHincludesvg] = ACTIONS(6341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6341), - [anon_sym_BSLASHimport] = ACTIONS(6341), - [anon_sym_BSLASHsubimport] = ACTIONS(6341), - [anon_sym_BSLASHinputfrom] = ACTIONS(6341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6341), - [anon_sym_BSLASHincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHcaption] = ACTIONS(6341), - [anon_sym_BSLASHcite] = ACTIONS(6341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCite] = ACTIONS(6341), - [anon_sym_BSLASHnocite] = ACTIONS(6341), - [anon_sym_BSLASHcitet] = ACTIONS(6341), - [anon_sym_BSLASHcitep] = ACTIONS(6341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteauthor] = ACTIONS(6341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitetitle] = ACTIONS(6341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteyear] = ACTIONS(6341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitedate] = ACTIONS(6341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteurl] = ACTIONS(6341), - [anon_sym_BSLASHfullcite] = ACTIONS(6341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6341), - [anon_sym_BSLASHcitealt] = ACTIONS(6341), - [anon_sym_BSLASHcitealp] = ACTIONS(6341), - [anon_sym_BSLASHcitetext] = ACTIONS(6341), - [anon_sym_BSLASHparencite] = ACTIONS(6341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHParencite] = ACTIONS(6341), - [anon_sym_BSLASHfootcite] = ACTIONS(6341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6341), - [anon_sym_BSLASHtextcite] = ACTIONS(6341), - [anon_sym_BSLASHTextcite] = ACTIONS(6341), - [anon_sym_BSLASHsmartcite] = ACTIONS(6341), - [anon_sym_BSLASHSmartcite] = ACTIONS(6341), - [anon_sym_BSLASHsupercite] = ACTIONS(6341), - [anon_sym_BSLASHautocite] = ACTIONS(6341), - [anon_sym_BSLASHAutocite] = ACTIONS(6341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHvolcite] = ACTIONS(6341), - [anon_sym_BSLASHVolcite] = ACTIONS(6341), - [anon_sym_BSLASHpvolcite] = ACTIONS(6341), - [anon_sym_BSLASHPvolcite] = ACTIONS(6341), - [anon_sym_BSLASHfvolcite] = ACTIONS(6341), - [anon_sym_BSLASHftvolcite] = ACTIONS(6341), - [anon_sym_BSLASHsvolcite] = ACTIONS(6341), - [anon_sym_BSLASHSvolcite] = ACTIONS(6341), - [anon_sym_BSLASHtvolcite] = ACTIONS(6341), - [anon_sym_BSLASHTvolcite] = ACTIONS(6341), - [anon_sym_BSLASHavolcite] = ACTIONS(6341), - [anon_sym_BSLASHAvolcite] = ACTIONS(6341), - [anon_sym_BSLASHnotecite] = ACTIONS(6341), - [anon_sym_BSLASHNotecite] = ACTIONS(6341), - [anon_sym_BSLASHpnotecite] = ACTIONS(6341), - [anon_sym_BSLASHPnotecite] = ACTIONS(6341), - [anon_sym_BSLASHfnotecite] = ACTIONS(6341), - [anon_sym_BSLASHlabel] = ACTIONS(6341), - [anon_sym_BSLASHref] = ACTIONS(6341), - [anon_sym_BSLASHeqref] = ACTIONS(6341), - [anon_sym_BSLASHvref] = ACTIONS(6341), - [anon_sym_BSLASHVref] = ACTIONS(6341), - [anon_sym_BSLASHautoref] = ACTIONS(6341), - [anon_sym_BSLASHpageref] = ACTIONS(6341), - [anon_sym_BSLASHcref] = ACTIONS(6341), - [anon_sym_BSLASHCref] = ACTIONS(6341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnameCref] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHlabelcref] = ACTIONS(6341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCrefrange] = ACTIONS(6341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnewlabel] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6343), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHdef] = ACTIONS(6341), - [anon_sym_BSLASHlet] = ACTIONS(6341), - [anon_sym_BSLASHleft] = ACTIONS(6341), - [anon_sym_BSLASHbig] = ACTIONS(6341), - [anon_sym_BSLASHBig] = ACTIONS(6341), - [anon_sym_BSLASHbigg] = ACTIONS(6341), - [anon_sym_BSLASHBigg] = ACTIONS(6341), - [anon_sym_BSLASHbigl] = ACTIONS(6341), - [anon_sym_BSLASHBigl] = ACTIONS(6341), - [anon_sym_BSLASHbiggl] = ACTIONS(6341), - [anon_sym_BSLASHBiggl] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6341), - [anon_sym_BSLASHgls] = ACTIONS(6341), - [anon_sym_BSLASHGls] = ACTIONS(6341), - [anon_sym_BSLASHGLS] = ACTIONS(6341), - [anon_sym_BSLASHglspl] = ACTIONS(6341), - [anon_sym_BSLASHGlspl] = ACTIONS(6341), - [anon_sym_BSLASHGLSpl] = ACTIONS(6341), - [anon_sym_BSLASHglsdisp] = ACTIONS(6341), - [anon_sym_BSLASHglslink] = ACTIONS(6341), - [anon_sym_BSLASHglstext] = ACTIONS(6341), - [anon_sym_BSLASHGlstext] = ACTIONS(6341), - [anon_sym_BSLASHGLStext] = ACTIONS(6341), - [anon_sym_BSLASHglsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6341), - [anon_sym_BSLASHglsplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSplural] = ACTIONS(6341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHglsname] = ACTIONS(6341), - [anon_sym_BSLASHGlsname] = ACTIONS(6341), - [anon_sym_BSLASHGLSname] = ACTIONS(6341), - [anon_sym_BSLASHglssymbol] = ACTIONS(6341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6341), - [anon_sym_BSLASHglsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6341), - [anon_sym_BSLASHglsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6341), - [anon_sym_BSLASHglsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6341), - [anon_sym_BSLASHglsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6341), - [anon_sym_BSLASHglsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6341), - [anon_sym_BSLASHnewacronym] = ACTIONS(6341), - [anon_sym_BSLASHacrshort] = ACTIONS(6341), - [anon_sym_BSLASHAcrshort] = ACTIONS(6341), - [anon_sym_BSLASHACRshort] = ACTIONS(6341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6341), - [anon_sym_BSLASHacrlong] = ACTIONS(6341), - [anon_sym_BSLASHAcrlong] = ACTIONS(6341), - [anon_sym_BSLASHACRlong] = ACTIONS(6341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6341), - [anon_sym_BSLASHacrfull] = ACTIONS(6341), - [anon_sym_BSLASHAcrfull] = ACTIONS(6341), - [anon_sym_BSLASHACRfull] = ACTIONS(6341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6341), - [anon_sym_BSLASHacs] = ACTIONS(6341), - [anon_sym_BSLASHAcs] = ACTIONS(6341), - [anon_sym_BSLASHacsp] = ACTIONS(6341), - [anon_sym_BSLASHAcsp] = ACTIONS(6341), - [anon_sym_BSLASHacl] = ACTIONS(6341), - [anon_sym_BSLASHAcl] = ACTIONS(6341), - [anon_sym_BSLASHaclp] = ACTIONS(6341), - [anon_sym_BSLASHAclp] = ACTIONS(6341), - [anon_sym_BSLASHacf] = ACTIONS(6341), - [anon_sym_BSLASHAcf] = ACTIONS(6341), - [anon_sym_BSLASHacfp] = ACTIONS(6341), - [anon_sym_BSLASHAcfp] = ACTIONS(6341), - [anon_sym_BSLASHac] = ACTIONS(6341), - [anon_sym_BSLASHAc] = ACTIONS(6341), - [anon_sym_BSLASHacp] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6341), - [anon_sym_BSLASHcolor] = ACTIONS(6341), - [anon_sym_BSLASHcolorbox] = ACTIONS(6341), - [anon_sym_BSLASHtextcolor] = ACTIONS(6341), - [anon_sym_BSLASHpagecolor] = ACTIONS(6341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6341), - [anon_sym_BSLASHtext] = ACTIONS(6341), - [anon_sym_BSLASHintertext] = ACTIONS(6341), - [anon_sym_shortintertext] = ACTIONS(6341), - }, - [1599] = { - [sym_command_name] = ACTIONS(6513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6513), - [anon_sym_LBRACK] = ACTIONS(6515), - [anon_sym_RBRACK] = ACTIONS(6515), - [anon_sym_COMMA] = ACTIONS(6515), - [anon_sym_EQ] = ACTIONS(6515), - [anon_sym_LPAREN] = ACTIONS(6515), - [anon_sym_RPAREN] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(6515), - [sym_word] = ACTIONS(6513), - [sym_placeholder] = ACTIONS(6515), - [anon_sym_PLUS] = ACTIONS(6515), - [anon_sym_DASH] = ACTIONS(6515), - [anon_sym_STAR] = ACTIONS(6515), - [anon_sym_SLASH] = ACTIONS(6515), - [anon_sym_LT] = ACTIONS(6513), - [anon_sym_GT] = ACTIONS(6513), - [anon_sym_BANG] = ACTIONS(6513), - [anon_sym_PIPE] = ACTIONS(6513), - [anon_sym_COLON] = ACTIONS(6513), - [anon_sym_SQUOTE] = ACTIONS(6513), - [anon_sym__] = ACTIONS(6515), - [anon_sym_CARET] = ACTIONS(6515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6515), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6515), - [anon_sym_DOLLAR] = ACTIONS(6513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6515), - [anon_sym_BSLASHbegin] = ACTIONS(6513), - [anon_sym_BSLASHend] = ACTIONS(6513), - [anon_sym_BSLASHtitle] = ACTIONS(6513), - [anon_sym_BSLASHauthor] = ACTIONS(6513), - [anon_sym_BSLASHusepackage] = ACTIONS(6513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6513), - [anon_sym_BSLASHinclude] = ACTIONS(6513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6513), - [anon_sym_BSLASHinput] = ACTIONS(6513), - [anon_sym_BSLASHsubfile] = ACTIONS(6513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6513), - [anon_sym_BSLASHbibliography] = ACTIONS(6513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6513), - [anon_sym_BSLASHincludesvg] = ACTIONS(6513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6513), - [anon_sym_BSLASHimport] = ACTIONS(6513), - [anon_sym_BSLASHsubimport] = ACTIONS(6513), - [anon_sym_BSLASHinputfrom] = ACTIONS(6513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6513), - [anon_sym_BSLASHincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHcaption] = ACTIONS(6513), - [anon_sym_BSLASHcite] = ACTIONS(6513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCite] = ACTIONS(6513), - [anon_sym_BSLASHnocite] = ACTIONS(6513), - [anon_sym_BSLASHcitet] = ACTIONS(6513), - [anon_sym_BSLASHcitep] = ACTIONS(6513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteauthor] = ACTIONS(6513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitetitle] = ACTIONS(6513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteyear] = ACTIONS(6513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitedate] = ACTIONS(6513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteurl] = ACTIONS(6513), - [anon_sym_BSLASHfullcite] = ACTIONS(6513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6513), - [anon_sym_BSLASHcitealt] = ACTIONS(6513), - [anon_sym_BSLASHcitealp] = ACTIONS(6513), - [anon_sym_BSLASHcitetext] = ACTIONS(6513), - [anon_sym_BSLASHparencite] = ACTIONS(6513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHParencite] = ACTIONS(6513), - [anon_sym_BSLASHfootcite] = ACTIONS(6513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6513), - [anon_sym_BSLASHtextcite] = ACTIONS(6513), - [anon_sym_BSLASHTextcite] = ACTIONS(6513), - [anon_sym_BSLASHsmartcite] = ACTIONS(6513), - [anon_sym_BSLASHSmartcite] = ACTIONS(6513), - [anon_sym_BSLASHsupercite] = ACTIONS(6513), - [anon_sym_BSLASHautocite] = ACTIONS(6513), - [anon_sym_BSLASHAutocite] = ACTIONS(6513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHvolcite] = ACTIONS(6513), - [anon_sym_BSLASHVolcite] = ACTIONS(6513), - [anon_sym_BSLASHpvolcite] = ACTIONS(6513), - [anon_sym_BSLASHPvolcite] = ACTIONS(6513), - [anon_sym_BSLASHfvolcite] = ACTIONS(6513), - [anon_sym_BSLASHftvolcite] = ACTIONS(6513), - [anon_sym_BSLASHsvolcite] = ACTIONS(6513), - [anon_sym_BSLASHSvolcite] = ACTIONS(6513), - [anon_sym_BSLASHtvolcite] = ACTIONS(6513), - [anon_sym_BSLASHTvolcite] = ACTIONS(6513), - [anon_sym_BSLASHavolcite] = ACTIONS(6513), - [anon_sym_BSLASHAvolcite] = ACTIONS(6513), - [anon_sym_BSLASHnotecite] = ACTIONS(6513), - [anon_sym_BSLASHNotecite] = ACTIONS(6513), - [anon_sym_BSLASHpnotecite] = ACTIONS(6513), - [anon_sym_BSLASHPnotecite] = ACTIONS(6513), - [anon_sym_BSLASHfnotecite] = ACTIONS(6513), - [anon_sym_BSLASHlabel] = ACTIONS(6513), - [anon_sym_BSLASHref] = ACTIONS(6513), - [anon_sym_BSLASHeqref] = ACTIONS(6513), - [anon_sym_BSLASHvref] = ACTIONS(6513), - [anon_sym_BSLASHVref] = ACTIONS(6513), - [anon_sym_BSLASHautoref] = ACTIONS(6513), - [anon_sym_BSLASHpageref] = ACTIONS(6513), - [anon_sym_BSLASHcref] = ACTIONS(6513), - [anon_sym_BSLASHCref] = ACTIONS(6513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnameCref] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHlabelcref] = ACTIONS(6513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCrefrange] = ACTIONS(6513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnewlabel] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6515), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHdef] = ACTIONS(6513), - [anon_sym_BSLASHlet] = ACTIONS(6513), - [anon_sym_BSLASHleft] = ACTIONS(6513), - [anon_sym_BSLASHbig] = ACTIONS(6513), - [anon_sym_BSLASHBig] = ACTIONS(6513), - [anon_sym_BSLASHbigg] = ACTIONS(6513), - [anon_sym_BSLASHBigg] = ACTIONS(6513), - [anon_sym_BSLASHbigl] = ACTIONS(6513), - [anon_sym_BSLASHBigl] = ACTIONS(6513), - [anon_sym_BSLASHbiggl] = ACTIONS(6513), - [anon_sym_BSLASHBiggl] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6513), - [anon_sym_BSLASHgls] = ACTIONS(6513), - [anon_sym_BSLASHGls] = ACTIONS(6513), - [anon_sym_BSLASHGLS] = ACTIONS(6513), - [anon_sym_BSLASHglspl] = ACTIONS(6513), - [anon_sym_BSLASHGlspl] = ACTIONS(6513), - [anon_sym_BSLASHGLSpl] = ACTIONS(6513), - [anon_sym_BSLASHglsdisp] = ACTIONS(6513), - [anon_sym_BSLASHglslink] = ACTIONS(6513), - [anon_sym_BSLASHglstext] = ACTIONS(6513), - [anon_sym_BSLASHGlstext] = ACTIONS(6513), - [anon_sym_BSLASHGLStext] = ACTIONS(6513), - [anon_sym_BSLASHglsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6513), - [anon_sym_BSLASHglsplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSplural] = ACTIONS(6513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHglsname] = ACTIONS(6513), - [anon_sym_BSLASHGlsname] = ACTIONS(6513), - [anon_sym_BSLASHGLSname] = ACTIONS(6513), - [anon_sym_BSLASHglssymbol] = ACTIONS(6513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6513), - [anon_sym_BSLASHglsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6513), - [anon_sym_BSLASHglsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6513), - [anon_sym_BSLASHglsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6513), - [anon_sym_BSLASHglsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6513), - [anon_sym_BSLASHglsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6513), - [anon_sym_BSLASHnewacronym] = ACTIONS(6513), - [anon_sym_BSLASHacrshort] = ACTIONS(6513), - [anon_sym_BSLASHAcrshort] = ACTIONS(6513), - [anon_sym_BSLASHACRshort] = ACTIONS(6513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6513), - [anon_sym_BSLASHacrlong] = ACTIONS(6513), - [anon_sym_BSLASHAcrlong] = ACTIONS(6513), - [anon_sym_BSLASHACRlong] = ACTIONS(6513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6513), - [anon_sym_BSLASHacrfull] = ACTIONS(6513), - [anon_sym_BSLASHAcrfull] = ACTIONS(6513), - [anon_sym_BSLASHACRfull] = ACTIONS(6513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6513), - [anon_sym_BSLASHacs] = ACTIONS(6513), - [anon_sym_BSLASHAcs] = ACTIONS(6513), - [anon_sym_BSLASHacsp] = ACTIONS(6513), - [anon_sym_BSLASHAcsp] = ACTIONS(6513), - [anon_sym_BSLASHacl] = ACTIONS(6513), - [anon_sym_BSLASHAcl] = ACTIONS(6513), - [anon_sym_BSLASHaclp] = ACTIONS(6513), - [anon_sym_BSLASHAclp] = ACTIONS(6513), - [anon_sym_BSLASHacf] = ACTIONS(6513), - [anon_sym_BSLASHAcf] = ACTIONS(6513), - [anon_sym_BSLASHacfp] = ACTIONS(6513), - [anon_sym_BSLASHAcfp] = ACTIONS(6513), - [anon_sym_BSLASHac] = ACTIONS(6513), - [anon_sym_BSLASHAc] = ACTIONS(6513), - [anon_sym_BSLASHacp] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6513), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6513), - [anon_sym_BSLASHcolor] = ACTIONS(6513), - [anon_sym_BSLASHcolorbox] = ACTIONS(6513), - [anon_sym_BSLASHtextcolor] = ACTIONS(6513), - [anon_sym_BSLASHpagecolor] = ACTIONS(6513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6513), - [anon_sym_BSLASHtext] = ACTIONS(6513), - [anon_sym_BSLASHintertext] = ACTIONS(6513), - [anon_sym_shortintertext] = ACTIONS(6513), - }, - [1600] = { - [sym_command_name] = ACTIONS(6517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6517), - [anon_sym_LBRACK] = ACTIONS(6519), - [anon_sym_RBRACK] = ACTIONS(6519), - [anon_sym_COMMA] = ACTIONS(6519), - [anon_sym_EQ] = ACTIONS(6519), - [anon_sym_LPAREN] = ACTIONS(6519), - [anon_sym_RPAREN] = ACTIONS(6519), - [anon_sym_LBRACE] = ACTIONS(6519), - [sym_word] = ACTIONS(6517), - [sym_placeholder] = ACTIONS(6519), - [anon_sym_PLUS] = ACTIONS(6519), - [anon_sym_DASH] = ACTIONS(6519), - [anon_sym_STAR] = ACTIONS(6519), - [anon_sym_SLASH] = ACTIONS(6519), - [anon_sym_LT] = ACTIONS(6517), - [anon_sym_GT] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(6517), - [anon_sym_PIPE] = ACTIONS(6517), - [anon_sym_COLON] = ACTIONS(6517), - [anon_sym_SQUOTE] = ACTIONS(6517), - [anon_sym__] = ACTIONS(6519), - [anon_sym_CARET] = ACTIONS(6519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6519), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6519), - [anon_sym_DOLLAR] = ACTIONS(6517), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6519), - [anon_sym_BSLASHbegin] = ACTIONS(6517), - [anon_sym_BSLASHend] = ACTIONS(6517), - [anon_sym_BSLASHtitle] = ACTIONS(6517), - [anon_sym_BSLASHauthor] = ACTIONS(6517), - [anon_sym_BSLASHusepackage] = ACTIONS(6517), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6517), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6517), - [anon_sym_BSLASHinclude] = ACTIONS(6517), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6517), - [anon_sym_BSLASHinput] = ACTIONS(6517), - [anon_sym_BSLASHsubfile] = ACTIONS(6517), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6517), - [anon_sym_BSLASHbibliography] = ACTIONS(6517), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6517), - [anon_sym_BSLASHincludesvg] = ACTIONS(6517), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6517), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6517), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6517), - [anon_sym_BSLASHimport] = ACTIONS(6517), - [anon_sym_BSLASHsubimport] = ACTIONS(6517), - [anon_sym_BSLASHinputfrom] = ACTIONS(6517), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6517), - [anon_sym_BSLASHincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHcaption] = ACTIONS(6517), - [anon_sym_BSLASHcite] = ACTIONS(6517), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCite] = ACTIONS(6517), - [anon_sym_BSLASHnocite] = ACTIONS(6517), - [anon_sym_BSLASHcitet] = ACTIONS(6517), - [anon_sym_BSLASHcitep] = ACTIONS(6517), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteauthor] = ACTIONS(6517), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6517), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitetitle] = ACTIONS(6517), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteyear] = ACTIONS(6517), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitedate] = ACTIONS(6517), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteurl] = ACTIONS(6517), - [anon_sym_BSLASHfullcite] = ACTIONS(6517), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6517), - [anon_sym_BSLASHcitealt] = ACTIONS(6517), - [anon_sym_BSLASHcitealp] = ACTIONS(6517), - [anon_sym_BSLASHcitetext] = ACTIONS(6517), - [anon_sym_BSLASHparencite] = ACTIONS(6517), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHParencite] = ACTIONS(6517), - [anon_sym_BSLASHfootcite] = ACTIONS(6517), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6517), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6517), - [anon_sym_BSLASHtextcite] = ACTIONS(6517), - [anon_sym_BSLASHTextcite] = ACTIONS(6517), - [anon_sym_BSLASHsmartcite] = ACTIONS(6517), - [anon_sym_BSLASHSmartcite] = ACTIONS(6517), - [anon_sym_BSLASHsupercite] = ACTIONS(6517), - [anon_sym_BSLASHautocite] = ACTIONS(6517), - [anon_sym_BSLASHAutocite] = ACTIONS(6517), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHvolcite] = ACTIONS(6517), - [anon_sym_BSLASHVolcite] = ACTIONS(6517), - [anon_sym_BSLASHpvolcite] = ACTIONS(6517), - [anon_sym_BSLASHPvolcite] = ACTIONS(6517), - [anon_sym_BSLASHfvolcite] = ACTIONS(6517), - [anon_sym_BSLASHftvolcite] = ACTIONS(6517), - [anon_sym_BSLASHsvolcite] = ACTIONS(6517), - [anon_sym_BSLASHSvolcite] = ACTIONS(6517), - [anon_sym_BSLASHtvolcite] = ACTIONS(6517), - [anon_sym_BSLASHTvolcite] = ACTIONS(6517), - [anon_sym_BSLASHavolcite] = ACTIONS(6517), - [anon_sym_BSLASHAvolcite] = ACTIONS(6517), - [anon_sym_BSLASHnotecite] = ACTIONS(6517), - [anon_sym_BSLASHNotecite] = ACTIONS(6517), - [anon_sym_BSLASHpnotecite] = ACTIONS(6517), - [anon_sym_BSLASHPnotecite] = ACTIONS(6517), - [anon_sym_BSLASHfnotecite] = ACTIONS(6517), - [anon_sym_BSLASHlabel] = ACTIONS(6517), - [anon_sym_BSLASHref] = ACTIONS(6517), - [anon_sym_BSLASHeqref] = ACTIONS(6517), - [anon_sym_BSLASHvref] = ACTIONS(6517), - [anon_sym_BSLASHVref] = ACTIONS(6517), - [anon_sym_BSLASHautoref] = ACTIONS(6517), - [anon_sym_BSLASHpageref] = ACTIONS(6517), - [anon_sym_BSLASHcref] = ACTIONS(6517), - [anon_sym_BSLASHCref] = ACTIONS(6517), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnameCref] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHlabelcref] = ACTIONS(6517), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCrefrange] = ACTIONS(6517), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnewlabel] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6517), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6517), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6519), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHdef] = ACTIONS(6517), - [anon_sym_BSLASHlet] = ACTIONS(6517), - [anon_sym_BSLASHleft] = ACTIONS(6517), - [anon_sym_BSLASHbig] = ACTIONS(6517), - [anon_sym_BSLASHBig] = ACTIONS(6517), - [anon_sym_BSLASHbigg] = ACTIONS(6517), - [anon_sym_BSLASHBigg] = ACTIONS(6517), - [anon_sym_BSLASHbigl] = ACTIONS(6517), - [anon_sym_BSLASHBigl] = ACTIONS(6517), - [anon_sym_BSLASHbiggl] = ACTIONS(6517), - [anon_sym_BSLASHBiggl] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6517), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6517), - [anon_sym_BSLASHgls] = ACTIONS(6517), - [anon_sym_BSLASHGls] = ACTIONS(6517), - [anon_sym_BSLASHGLS] = ACTIONS(6517), - [anon_sym_BSLASHglspl] = ACTIONS(6517), - [anon_sym_BSLASHGlspl] = ACTIONS(6517), - [anon_sym_BSLASHGLSpl] = ACTIONS(6517), - [anon_sym_BSLASHglsdisp] = ACTIONS(6517), - [anon_sym_BSLASHglslink] = ACTIONS(6517), - [anon_sym_BSLASHglstext] = ACTIONS(6517), - [anon_sym_BSLASHGlstext] = ACTIONS(6517), - [anon_sym_BSLASHGLStext] = ACTIONS(6517), - [anon_sym_BSLASHglsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6517), - [anon_sym_BSLASHglsplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSplural] = ACTIONS(6517), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHglsname] = ACTIONS(6517), - [anon_sym_BSLASHGlsname] = ACTIONS(6517), - [anon_sym_BSLASHGLSname] = ACTIONS(6517), - [anon_sym_BSLASHglssymbol] = ACTIONS(6517), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6517), - [anon_sym_BSLASHglsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6517), - [anon_sym_BSLASHglsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6517), - [anon_sym_BSLASHglsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6517), - [anon_sym_BSLASHglsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6517), - [anon_sym_BSLASHglsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6517), - [anon_sym_BSLASHnewacronym] = ACTIONS(6517), - [anon_sym_BSLASHacrshort] = ACTIONS(6517), - [anon_sym_BSLASHAcrshort] = ACTIONS(6517), - [anon_sym_BSLASHACRshort] = ACTIONS(6517), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6517), - [anon_sym_BSLASHacrlong] = ACTIONS(6517), - [anon_sym_BSLASHAcrlong] = ACTIONS(6517), - [anon_sym_BSLASHACRlong] = ACTIONS(6517), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6517), - [anon_sym_BSLASHacrfull] = ACTIONS(6517), - [anon_sym_BSLASHAcrfull] = ACTIONS(6517), - [anon_sym_BSLASHACRfull] = ACTIONS(6517), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6517), - [anon_sym_BSLASHacs] = ACTIONS(6517), - [anon_sym_BSLASHAcs] = ACTIONS(6517), - [anon_sym_BSLASHacsp] = ACTIONS(6517), - [anon_sym_BSLASHAcsp] = ACTIONS(6517), - [anon_sym_BSLASHacl] = ACTIONS(6517), - [anon_sym_BSLASHAcl] = ACTIONS(6517), - [anon_sym_BSLASHaclp] = ACTIONS(6517), - [anon_sym_BSLASHAclp] = ACTIONS(6517), - [anon_sym_BSLASHacf] = ACTIONS(6517), - [anon_sym_BSLASHAcf] = ACTIONS(6517), - [anon_sym_BSLASHacfp] = ACTIONS(6517), - [anon_sym_BSLASHAcfp] = ACTIONS(6517), - [anon_sym_BSLASHac] = ACTIONS(6517), - [anon_sym_BSLASHAc] = ACTIONS(6517), - [anon_sym_BSLASHacp] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6517), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6517), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6517), - [anon_sym_BSLASHcolor] = ACTIONS(6517), - [anon_sym_BSLASHcolorbox] = ACTIONS(6517), - [anon_sym_BSLASHtextcolor] = ACTIONS(6517), - [anon_sym_BSLASHpagecolor] = ACTIONS(6517), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6517), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6517), - [anon_sym_BSLASHtext] = ACTIONS(6517), - [anon_sym_BSLASHintertext] = ACTIONS(6517), - [anon_sym_shortintertext] = ACTIONS(6517), - }, - [1601] = { - [sym_command_name] = ACTIONS(6521), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6521), - [anon_sym_LBRACK] = ACTIONS(6523), - [anon_sym_RBRACK] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_EQ] = ACTIONS(6523), - [anon_sym_LPAREN] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_LBRACE] = ACTIONS(6523), - [sym_word] = ACTIONS(6521), - [sym_placeholder] = ACTIONS(6523), - [anon_sym_PLUS] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6523), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_BANG] = ACTIONS(6521), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6521), - [anon_sym_SQUOTE] = ACTIONS(6521), - [anon_sym__] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6523), - [anon_sym_DOLLAR] = ACTIONS(6521), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6523), - [anon_sym_BSLASHbegin] = ACTIONS(6521), - [anon_sym_BSLASHend] = ACTIONS(6521), - [anon_sym_BSLASHtitle] = ACTIONS(6521), - [anon_sym_BSLASHauthor] = ACTIONS(6521), - [anon_sym_BSLASHusepackage] = ACTIONS(6521), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6521), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6521), - [anon_sym_BSLASHinclude] = ACTIONS(6521), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6521), - [anon_sym_BSLASHinput] = ACTIONS(6521), - [anon_sym_BSLASHsubfile] = ACTIONS(6521), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6521), - [anon_sym_BSLASHbibliography] = ACTIONS(6521), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6521), - [anon_sym_BSLASHincludesvg] = ACTIONS(6521), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6521), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6521), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6521), - [anon_sym_BSLASHimport] = ACTIONS(6521), - [anon_sym_BSLASHsubimport] = ACTIONS(6521), - [anon_sym_BSLASHinputfrom] = ACTIONS(6521), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6521), - [anon_sym_BSLASHincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHcaption] = ACTIONS(6521), - [anon_sym_BSLASHcite] = ACTIONS(6521), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCite] = ACTIONS(6521), - [anon_sym_BSLASHnocite] = ACTIONS(6521), - [anon_sym_BSLASHcitet] = ACTIONS(6521), - [anon_sym_BSLASHcitep] = ACTIONS(6521), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteauthor] = ACTIONS(6521), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6521), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitetitle] = ACTIONS(6521), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteyear] = ACTIONS(6521), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitedate] = ACTIONS(6521), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteurl] = ACTIONS(6521), - [anon_sym_BSLASHfullcite] = ACTIONS(6521), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6521), - [anon_sym_BSLASHcitealt] = ACTIONS(6521), - [anon_sym_BSLASHcitealp] = ACTIONS(6521), - [anon_sym_BSLASHcitetext] = ACTIONS(6521), - [anon_sym_BSLASHparencite] = ACTIONS(6521), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHParencite] = ACTIONS(6521), - [anon_sym_BSLASHfootcite] = ACTIONS(6521), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6521), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6521), - [anon_sym_BSLASHtextcite] = ACTIONS(6521), - [anon_sym_BSLASHTextcite] = ACTIONS(6521), - [anon_sym_BSLASHsmartcite] = ACTIONS(6521), - [anon_sym_BSLASHSmartcite] = ACTIONS(6521), - [anon_sym_BSLASHsupercite] = ACTIONS(6521), - [anon_sym_BSLASHautocite] = ACTIONS(6521), - [anon_sym_BSLASHAutocite] = ACTIONS(6521), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHvolcite] = ACTIONS(6521), - [anon_sym_BSLASHVolcite] = ACTIONS(6521), - [anon_sym_BSLASHpvolcite] = ACTIONS(6521), - [anon_sym_BSLASHPvolcite] = ACTIONS(6521), - [anon_sym_BSLASHfvolcite] = ACTIONS(6521), - [anon_sym_BSLASHftvolcite] = ACTIONS(6521), - [anon_sym_BSLASHsvolcite] = ACTIONS(6521), - [anon_sym_BSLASHSvolcite] = ACTIONS(6521), - [anon_sym_BSLASHtvolcite] = ACTIONS(6521), - [anon_sym_BSLASHTvolcite] = ACTIONS(6521), - [anon_sym_BSLASHavolcite] = ACTIONS(6521), - [anon_sym_BSLASHAvolcite] = ACTIONS(6521), - [anon_sym_BSLASHnotecite] = ACTIONS(6521), - [anon_sym_BSLASHNotecite] = ACTIONS(6521), - [anon_sym_BSLASHpnotecite] = ACTIONS(6521), - [anon_sym_BSLASHPnotecite] = ACTIONS(6521), - [anon_sym_BSLASHfnotecite] = ACTIONS(6521), - [anon_sym_BSLASHlabel] = ACTIONS(6521), - [anon_sym_BSLASHref] = ACTIONS(6521), - [anon_sym_BSLASHeqref] = ACTIONS(6521), - [anon_sym_BSLASHvref] = ACTIONS(6521), - [anon_sym_BSLASHVref] = ACTIONS(6521), - [anon_sym_BSLASHautoref] = ACTIONS(6521), - [anon_sym_BSLASHpageref] = ACTIONS(6521), - [anon_sym_BSLASHcref] = ACTIONS(6521), - [anon_sym_BSLASHCref] = ACTIONS(6521), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnameCref] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHlabelcref] = ACTIONS(6521), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCrefrange] = ACTIONS(6521), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnewlabel] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6521), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6521), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6523), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHdef] = ACTIONS(6521), - [anon_sym_BSLASHlet] = ACTIONS(6521), - [anon_sym_BSLASHleft] = ACTIONS(6521), - [anon_sym_BSLASHbig] = ACTIONS(6521), - [anon_sym_BSLASHBig] = ACTIONS(6521), - [anon_sym_BSLASHbigg] = ACTIONS(6521), - [anon_sym_BSLASHBigg] = ACTIONS(6521), - [anon_sym_BSLASHbigl] = ACTIONS(6521), - [anon_sym_BSLASHBigl] = ACTIONS(6521), - [anon_sym_BSLASHbiggl] = ACTIONS(6521), - [anon_sym_BSLASHBiggl] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6521), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6521), - [anon_sym_BSLASHgls] = ACTIONS(6521), - [anon_sym_BSLASHGls] = ACTIONS(6521), - [anon_sym_BSLASHGLS] = ACTIONS(6521), - [anon_sym_BSLASHglspl] = ACTIONS(6521), - [anon_sym_BSLASHGlspl] = ACTIONS(6521), - [anon_sym_BSLASHGLSpl] = ACTIONS(6521), - [anon_sym_BSLASHglsdisp] = ACTIONS(6521), - [anon_sym_BSLASHglslink] = ACTIONS(6521), - [anon_sym_BSLASHglstext] = ACTIONS(6521), - [anon_sym_BSLASHGlstext] = ACTIONS(6521), - [anon_sym_BSLASHGLStext] = ACTIONS(6521), - [anon_sym_BSLASHglsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6521), - [anon_sym_BSLASHglsplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSplural] = ACTIONS(6521), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHglsname] = ACTIONS(6521), - [anon_sym_BSLASHGlsname] = ACTIONS(6521), - [anon_sym_BSLASHGLSname] = ACTIONS(6521), - [anon_sym_BSLASHglssymbol] = ACTIONS(6521), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6521), - [anon_sym_BSLASHglsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6521), - [anon_sym_BSLASHglsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6521), - [anon_sym_BSLASHglsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6521), - [anon_sym_BSLASHglsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6521), - [anon_sym_BSLASHglsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6521), - [anon_sym_BSLASHnewacronym] = ACTIONS(6521), - [anon_sym_BSLASHacrshort] = ACTIONS(6521), - [anon_sym_BSLASHAcrshort] = ACTIONS(6521), - [anon_sym_BSLASHACRshort] = ACTIONS(6521), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6521), - [anon_sym_BSLASHacrlong] = ACTIONS(6521), - [anon_sym_BSLASHAcrlong] = ACTIONS(6521), - [anon_sym_BSLASHACRlong] = ACTIONS(6521), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6521), - [anon_sym_BSLASHacrfull] = ACTIONS(6521), - [anon_sym_BSLASHAcrfull] = ACTIONS(6521), - [anon_sym_BSLASHACRfull] = ACTIONS(6521), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6521), - [anon_sym_BSLASHacs] = ACTIONS(6521), - [anon_sym_BSLASHAcs] = ACTIONS(6521), - [anon_sym_BSLASHacsp] = ACTIONS(6521), - [anon_sym_BSLASHAcsp] = ACTIONS(6521), - [anon_sym_BSLASHacl] = ACTIONS(6521), - [anon_sym_BSLASHAcl] = ACTIONS(6521), - [anon_sym_BSLASHaclp] = ACTIONS(6521), - [anon_sym_BSLASHAclp] = ACTIONS(6521), - [anon_sym_BSLASHacf] = ACTIONS(6521), - [anon_sym_BSLASHAcf] = ACTIONS(6521), - [anon_sym_BSLASHacfp] = ACTIONS(6521), - [anon_sym_BSLASHAcfp] = ACTIONS(6521), - [anon_sym_BSLASHac] = ACTIONS(6521), - [anon_sym_BSLASHAc] = ACTIONS(6521), - [anon_sym_BSLASHacp] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6521), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6521), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6521), - [anon_sym_BSLASHcolor] = ACTIONS(6521), - [anon_sym_BSLASHcolorbox] = ACTIONS(6521), - [anon_sym_BSLASHtextcolor] = ACTIONS(6521), - [anon_sym_BSLASHpagecolor] = ACTIONS(6521), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6521), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6521), - [anon_sym_BSLASHtext] = ACTIONS(6521), - [anon_sym_BSLASHintertext] = ACTIONS(6521), - [anon_sym_shortintertext] = ACTIONS(6521), - }, - [1602] = { - [sym_curly_group] = STATE(1797), - [sym_command_name] = ACTIONS(6013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6013), - [anon_sym_LBRACK] = ACTIONS(6015), - [anon_sym_RBRACK] = ACTIONS(6015), - [anon_sym_COMMA] = ACTIONS(6015), - [anon_sym_EQ] = ACTIONS(6015), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_RPAREN] = ACTIONS(6015), - [anon_sym_LBRACE] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(6015), - [sym_word] = ACTIONS(6013), - [sym_placeholder] = ACTIONS(6015), - [anon_sym_PLUS] = ACTIONS(6015), - [anon_sym_DASH] = ACTIONS(6015), - [anon_sym_STAR] = ACTIONS(6015), - [anon_sym_SLASH] = ACTIONS(6015), - [anon_sym_LT] = ACTIONS(6013), - [anon_sym_GT] = ACTIONS(6013), - [anon_sym_BANG] = ACTIONS(6013), - [anon_sym_PIPE] = ACTIONS(6013), - [anon_sym_COLON] = ACTIONS(6013), - [anon_sym_SQUOTE] = ACTIONS(6013), - [anon_sym__] = ACTIONS(6015), - [anon_sym_CARET] = ACTIONS(6015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), - [anon_sym_DOLLAR] = ACTIONS(6013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), - [anon_sym_BSLASHtitle] = ACTIONS(6013), - [anon_sym_BSLASHauthor] = ACTIONS(6013), - [anon_sym_BSLASHusepackage] = ACTIONS(6013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6013), - [anon_sym_BSLASHinclude] = ACTIONS(6013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6013), - [anon_sym_BSLASHinput] = ACTIONS(6013), - [anon_sym_BSLASHsubfile] = ACTIONS(6013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6013), - [anon_sym_BSLASHbibliography] = ACTIONS(6013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6013), - [anon_sym_BSLASHincludesvg] = ACTIONS(6013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6013), - [anon_sym_BSLASHimport] = ACTIONS(6013), - [anon_sym_BSLASHsubimport] = ACTIONS(6013), - [anon_sym_BSLASHinputfrom] = ACTIONS(6013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6013), - [anon_sym_BSLASHincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHcaption] = ACTIONS(6013), - [anon_sym_BSLASHcite] = ACTIONS(6013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCite] = ACTIONS(6013), - [anon_sym_BSLASHnocite] = ACTIONS(6013), - [anon_sym_BSLASHcitet] = ACTIONS(6013), - [anon_sym_BSLASHcitep] = ACTIONS(6013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteauthor] = ACTIONS(6013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitetitle] = ACTIONS(6013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteyear] = ACTIONS(6013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitedate] = ACTIONS(6013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteurl] = ACTIONS(6013), - [anon_sym_BSLASHfullcite] = ACTIONS(6013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6013), - [anon_sym_BSLASHcitealt] = ACTIONS(6013), - [anon_sym_BSLASHcitealp] = ACTIONS(6013), - [anon_sym_BSLASHcitetext] = ACTIONS(6013), - [anon_sym_BSLASHparencite] = ACTIONS(6013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHParencite] = ACTIONS(6013), - [anon_sym_BSLASHfootcite] = ACTIONS(6013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6013), - [anon_sym_BSLASHtextcite] = ACTIONS(6013), - [anon_sym_BSLASHTextcite] = ACTIONS(6013), - [anon_sym_BSLASHsmartcite] = ACTIONS(6013), - [anon_sym_BSLASHSmartcite] = ACTIONS(6013), - [anon_sym_BSLASHsupercite] = ACTIONS(6013), - [anon_sym_BSLASHautocite] = ACTIONS(6013), - [anon_sym_BSLASHAutocite] = ACTIONS(6013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHvolcite] = ACTIONS(6013), - [anon_sym_BSLASHVolcite] = ACTIONS(6013), - [anon_sym_BSLASHpvolcite] = ACTIONS(6013), - [anon_sym_BSLASHPvolcite] = ACTIONS(6013), - [anon_sym_BSLASHfvolcite] = ACTIONS(6013), - [anon_sym_BSLASHftvolcite] = ACTIONS(6013), - [anon_sym_BSLASHsvolcite] = ACTIONS(6013), - [anon_sym_BSLASHSvolcite] = ACTIONS(6013), - [anon_sym_BSLASHtvolcite] = ACTIONS(6013), - [anon_sym_BSLASHTvolcite] = ACTIONS(6013), - [anon_sym_BSLASHavolcite] = ACTIONS(6013), - [anon_sym_BSLASHAvolcite] = ACTIONS(6013), - [anon_sym_BSLASHnotecite] = ACTIONS(6013), - [anon_sym_BSLASHNotecite] = ACTIONS(6013), - [anon_sym_BSLASHpnotecite] = ACTIONS(6013), - [anon_sym_BSLASHPnotecite] = ACTIONS(6013), - [anon_sym_BSLASHfnotecite] = ACTIONS(6013), - [anon_sym_BSLASHlabel] = ACTIONS(6013), - [anon_sym_BSLASHref] = ACTIONS(6013), - [anon_sym_BSLASHeqref] = ACTIONS(6013), - [anon_sym_BSLASHvref] = ACTIONS(6013), - [anon_sym_BSLASHVref] = ACTIONS(6013), - [anon_sym_BSLASHautoref] = ACTIONS(6013), - [anon_sym_BSLASHpageref] = ACTIONS(6013), - [anon_sym_BSLASHcref] = ACTIONS(6013), - [anon_sym_BSLASHCref] = ACTIONS(6013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnameCref] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHlabelcref] = ACTIONS(6013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCrefrange] = ACTIONS(6013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnewlabel] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHdef] = ACTIONS(6013), - [anon_sym_BSLASHlet] = ACTIONS(6013), - [anon_sym_BSLASHleft] = ACTIONS(6013), - [anon_sym_BSLASHbig] = ACTIONS(6013), - [anon_sym_BSLASHBig] = ACTIONS(6013), - [anon_sym_BSLASHbigg] = ACTIONS(6013), - [anon_sym_BSLASHBigg] = ACTIONS(6013), - [anon_sym_BSLASHbigl] = ACTIONS(6013), - [anon_sym_BSLASHBigl] = ACTIONS(6013), - [anon_sym_BSLASHbiggl] = ACTIONS(6013), - [anon_sym_BSLASHBiggl] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6013), - [anon_sym_BSLASHgls] = ACTIONS(6013), - [anon_sym_BSLASHGls] = ACTIONS(6013), - [anon_sym_BSLASHGLS] = ACTIONS(6013), - [anon_sym_BSLASHglspl] = ACTIONS(6013), - [anon_sym_BSLASHGlspl] = ACTIONS(6013), - [anon_sym_BSLASHGLSpl] = ACTIONS(6013), - [anon_sym_BSLASHglsdisp] = ACTIONS(6013), - [anon_sym_BSLASHglslink] = ACTIONS(6013), - [anon_sym_BSLASHglstext] = ACTIONS(6013), - [anon_sym_BSLASHGlstext] = ACTIONS(6013), - [anon_sym_BSLASHGLStext] = ACTIONS(6013), - [anon_sym_BSLASHglsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6013), - [anon_sym_BSLASHglsplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSplural] = ACTIONS(6013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHglsname] = ACTIONS(6013), - [anon_sym_BSLASHGlsname] = ACTIONS(6013), - [anon_sym_BSLASHGLSname] = ACTIONS(6013), - [anon_sym_BSLASHglssymbol] = ACTIONS(6013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6013), - [anon_sym_BSLASHglsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6013), - [anon_sym_BSLASHglsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6013), - [anon_sym_BSLASHglsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6013), - [anon_sym_BSLASHglsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6013), - [anon_sym_BSLASHglsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6013), - [anon_sym_BSLASHnewacronym] = ACTIONS(6013), - [anon_sym_BSLASHacrshort] = ACTIONS(6013), - [anon_sym_BSLASHAcrshort] = ACTIONS(6013), - [anon_sym_BSLASHACRshort] = ACTIONS(6013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6013), - [anon_sym_BSLASHacrlong] = ACTIONS(6013), - [anon_sym_BSLASHAcrlong] = ACTIONS(6013), - [anon_sym_BSLASHACRlong] = ACTIONS(6013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6013), - [anon_sym_BSLASHacrfull] = ACTIONS(6013), - [anon_sym_BSLASHAcrfull] = ACTIONS(6013), - [anon_sym_BSLASHACRfull] = ACTIONS(6013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6013), - [anon_sym_BSLASHacs] = ACTIONS(6013), - [anon_sym_BSLASHAcs] = ACTIONS(6013), - [anon_sym_BSLASHacsp] = ACTIONS(6013), - [anon_sym_BSLASHAcsp] = ACTIONS(6013), - [anon_sym_BSLASHacl] = ACTIONS(6013), - [anon_sym_BSLASHAcl] = ACTIONS(6013), - [anon_sym_BSLASHaclp] = ACTIONS(6013), - [anon_sym_BSLASHAclp] = ACTIONS(6013), - [anon_sym_BSLASHacf] = ACTIONS(6013), - [anon_sym_BSLASHAcf] = ACTIONS(6013), - [anon_sym_BSLASHacfp] = ACTIONS(6013), - [anon_sym_BSLASHAcfp] = ACTIONS(6013), - [anon_sym_BSLASHac] = ACTIONS(6013), - [anon_sym_BSLASHAc] = ACTIONS(6013), - [anon_sym_BSLASHacp] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6013), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6013), - [anon_sym_BSLASHcolor] = ACTIONS(6013), - [anon_sym_BSLASHcolorbox] = ACTIONS(6013), - [anon_sym_BSLASHtextcolor] = ACTIONS(6013), - [anon_sym_BSLASHpagecolor] = ACTIONS(6013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6013), - [anon_sym_BSLASHtext] = ACTIONS(6013), - [anon_sym_BSLASHintertext] = ACTIONS(6013), - [anon_sym_shortintertext] = ACTIONS(6013), - }, - [1603] = { - [sym_command_name] = ACTIONS(6525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6527), - [anon_sym_LPAREN] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_LBRACE] = ACTIONS(6527), - [sym_word] = ACTIONS(6525), - [sym_placeholder] = ACTIONS(6527), - [anon_sym_PLUS] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6527), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6527), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_BANG] = ACTIONS(6525), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_SQUOTE] = ACTIONS(6525), - [anon_sym__] = ACTIONS(6527), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6527), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6527), - [anon_sym_DOLLAR] = ACTIONS(6525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6527), - [anon_sym_BSLASHbegin] = ACTIONS(6525), - [anon_sym_BSLASHend] = ACTIONS(6525), - [anon_sym_BSLASHtitle] = ACTIONS(6525), - [anon_sym_BSLASHauthor] = ACTIONS(6525), - [anon_sym_BSLASHusepackage] = ACTIONS(6525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6525), - [anon_sym_BSLASHinclude] = ACTIONS(6525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6525), - [anon_sym_BSLASHinput] = ACTIONS(6525), - [anon_sym_BSLASHsubfile] = ACTIONS(6525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6525), - [anon_sym_BSLASHbibliography] = ACTIONS(6525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6525), - [anon_sym_BSLASHincludesvg] = ACTIONS(6525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6525), - [anon_sym_BSLASHimport] = ACTIONS(6525), - [anon_sym_BSLASHsubimport] = ACTIONS(6525), - [anon_sym_BSLASHinputfrom] = ACTIONS(6525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6525), - [anon_sym_BSLASHincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHcaption] = ACTIONS(6525), - [anon_sym_BSLASHcite] = ACTIONS(6525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCite] = ACTIONS(6525), - [anon_sym_BSLASHnocite] = ACTIONS(6525), - [anon_sym_BSLASHcitet] = ACTIONS(6525), - [anon_sym_BSLASHcitep] = ACTIONS(6525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteauthor] = ACTIONS(6525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitetitle] = ACTIONS(6525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteyear] = ACTIONS(6525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitedate] = ACTIONS(6525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteurl] = ACTIONS(6525), - [anon_sym_BSLASHfullcite] = ACTIONS(6525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6525), - [anon_sym_BSLASHcitealt] = ACTIONS(6525), - [anon_sym_BSLASHcitealp] = ACTIONS(6525), - [anon_sym_BSLASHcitetext] = ACTIONS(6525), - [anon_sym_BSLASHparencite] = ACTIONS(6525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHParencite] = ACTIONS(6525), - [anon_sym_BSLASHfootcite] = ACTIONS(6525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6525), - [anon_sym_BSLASHtextcite] = ACTIONS(6525), - [anon_sym_BSLASHTextcite] = ACTIONS(6525), - [anon_sym_BSLASHsmartcite] = ACTIONS(6525), - [anon_sym_BSLASHSmartcite] = ACTIONS(6525), - [anon_sym_BSLASHsupercite] = ACTIONS(6525), - [anon_sym_BSLASHautocite] = ACTIONS(6525), - [anon_sym_BSLASHAutocite] = ACTIONS(6525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHvolcite] = ACTIONS(6525), - [anon_sym_BSLASHVolcite] = ACTIONS(6525), - [anon_sym_BSLASHpvolcite] = ACTIONS(6525), - [anon_sym_BSLASHPvolcite] = ACTIONS(6525), - [anon_sym_BSLASHfvolcite] = ACTIONS(6525), - [anon_sym_BSLASHftvolcite] = ACTIONS(6525), - [anon_sym_BSLASHsvolcite] = ACTIONS(6525), - [anon_sym_BSLASHSvolcite] = ACTIONS(6525), - [anon_sym_BSLASHtvolcite] = ACTIONS(6525), - [anon_sym_BSLASHTvolcite] = ACTIONS(6525), - [anon_sym_BSLASHavolcite] = ACTIONS(6525), - [anon_sym_BSLASHAvolcite] = ACTIONS(6525), - [anon_sym_BSLASHnotecite] = ACTIONS(6525), - [anon_sym_BSLASHNotecite] = ACTIONS(6525), - [anon_sym_BSLASHpnotecite] = ACTIONS(6525), - [anon_sym_BSLASHPnotecite] = ACTIONS(6525), - [anon_sym_BSLASHfnotecite] = ACTIONS(6525), - [anon_sym_BSLASHlabel] = ACTIONS(6525), - [anon_sym_BSLASHref] = ACTIONS(6525), - [anon_sym_BSLASHeqref] = ACTIONS(6525), - [anon_sym_BSLASHvref] = ACTIONS(6525), - [anon_sym_BSLASHVref] = ACTIONS(6525), - [anon_sym_BSLASHautoref] = ACTIONS(6525), - [anon_sym_BSLASHpageref] = ACTIONS(6525), - [anon_sym_BSLASHcref] = ACTIONS(6525), - [anon_sym_BSLASHCref] = ACTIONS(6525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnameCref] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHlabelcref] = ACTIONS(6525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCrefrange] = ACTIONS(6525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnewlabel] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6527), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHdef] = ACTIONS(6525), - [anon_sym_BSLASHlet] = ACTIONS(6525), - [anon_sym_BSLASHleft] = ACTIONS(6525), - [anon_sym_BSLASHbig] = ACTIONS(6525), - [anon_sym_BSLASHBig] = ACTIONS(6525), - [anon_sym_BSLASHbigg] = ACTIONS(6525), - [anon_sym_BSLASHBigg] = ACTIONS(6525), - [anon_sym_BSLASHbigl] = ACTIONS(6525), - [anon_sym_BSLASHBigl] = ACTIONS(6525), - [anon_sym_BSLASHbiggl] = ACTIONS(6525), - [anon_sym_BSLASHBiggl] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6525), - [anon_sym_BSLASHgls] = ACTIONS(6525), - [anon_sym_BSLASHGls] = ACTIONS(6525), - [anon_sym_BSLASHGLS] = ACTIONS(6525), - [anon_sym_BSLASHglspl] = ACTIONS(6525), - [anon_sym_BSLASHGlspl] = ACTIONS(6525), - [anon_sym_BSLASHGLSpl] = ACTIONS(6525), - [anon_sym_BSLASHglsdisp] = ACTIONS(6525), - [anon_sym_BSLASHglslink] = ACTIONS(6525), - [anon_sym_BSLASHglstext] = ACTIONS(6525), - [anon_sym_BSLASHGlstext] = ACTIONS(6525), - [anon_sym_BSLASHGLStext] = ACTIONS(6525), - [anon_sym_BSLASHglsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6525), - [anon_sym_BSLASHglsplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSplural] = ACTIONS(6525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHglsname] = ACTIONS(6525), - [anon_sym_BSLASHGlsname] = ACTIONS(6525), - [anon_sym_BSLASHGLSname] = ACTIONS(6525), - [anon_sym_BSLASHglssymbol] = ACTIONS(6525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6525), - [anon_sym_BSLASHglsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6525), - [anon_sym_BSLASHglsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6525), - [anon_sym_BSLASHglsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6525), - [anon_sym_BSLASHglsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6525), - [anon_sym_BSLASHglsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6525), - [anon_sym_BSLASHnewacronym] = ACTIONS(6525), - [anon_sym_BSLASHacrshort] = ACTIONS(6525), - [anon_sym_BSLASHAcrshort] = ACTIONS(6525), - [anon_sym_BSLASHACRshort] = ACTIONS(6525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6525), - [anon_sym_BSLASHacrlong] = ACTIONS(6525), - [anon_sym_BSLASHAcrlong] = ACTIONS(6525), - [anon_sym_BSLASHACRlong] = ACTIONS(6525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6525), - [anon_sym_BSLASHacrfull] = ACTIONS(6525), - [anon_sym_BSLASHAcrfull] = ACTIONS(6525), - [anon_sym_BSLASHACRfull] = ACTIONS(6525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6525), - [anon_sym_BSLASHacs] = ACTIONS(6525), - [anon_sym_BSLASHAcs] = ACTIONS(6525), - [anon_sym_BSLASHacsp] = ACTIONS(6525), - [anon_sym_BSLASHAcsp] = ACTIONS(6525), - [anon_sym_BSLASHacl] = ACTIONS(6525), - [anon_sym_BSLASHAcl] = ACTIONS(6525), - [anon_sym_BSLASHaclp] = ACTIONS(6525), - [anon_sym_BSLASHAclp] = ACTIONS(6525), - [anon_sym_BSLASHacf] = ACTIONS(6525), - [anon_sym_BSLASHAcf] = ACTIONS(6525), - [anon_sym_BSLASHacfp] = ACTIONS(6525), - [anon_sym_BSLASHAcfp] = ACTIONS(6525), - [anon_sym_BSLASHac] = ACTIONS(6525), - [anon_sym_BSLASHAc] = ACTIONS(6525), - [anon_sym_BSLASHacp] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6525), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6525), - [anon_sym_BSLASHcolor] = ACTIONS(6525), - [anon_sym_BSLASHcolorbox] = ACTIONS(6525), - [anon_sym_BSLASHtextcolor] = ACTIONS(6525), - [anon_sym_BSLASHpagecolor] = ACTIONS(6525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6525), - [anon_sym_BSLASHtext] = ACTIONS(6525), - [anon_sym_BSLASHintertext] = ACTIONS(6525), - [anon_sym_shortintertext] = ACTIONS(6525), - }, - [1604] = { - [sym_command_name] = ACTIONS(6529), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6529), - [anon_sym_LBRACK] = ACTIONS(6531), - [anon_sym_RBRACK] = ACTIONS(6531), - [anon_sym_COMMA] = ACTIONS(6531), - [anon_sym_EQ] = ACTIONS(6531), - [anon_sym_LPAREN] = ACTIONS(6531), - [anon_sym_RPAREN] = ACTIONS(6531), - [anon_sym_LBRACE] = ACTIONS(6531), - [sym_word] = ACTIONS(6529), - [sym_placeholder] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6531), - [anon_sym_DASH] = ACTIONS(6531), - [anon_sym_STAR] = ACTIONS(6531), - [anon_sym_SLASH] = ACTIONS(6531), - [anon_sym_LT] = ACTIONS(6529), - [anon_sym_GT] = ACTIONS(6529), - [anon_sym_BANG] = ACTIONS(6529), - [anon_sym_PIPE] = ACTIONS(6529), - [anon_sym_COLON] = ACTIONS(6529), - [anon_sym_SQUOTE] = ACTIONS(6529), - [anon_sym__] = ACTIONS(6531), - [anon_sym_CARET] = ACTIONS(6531), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6531), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6531), - [anon_sym_DOLLAR] = ACTIONS(6529), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6531), - [anon_sym_BSLASHbegin] = ACTIONS(6529), - [anon_sym_BSLASHend] = ACTIONS(6529), - [anon_sym_BSLASHtitle] = ACTIONS(6529), - [anon_sym_BSLASHauthor] = ACTIONS(6529), - [anon_sym_BSLASHusepackage] = ACTIONS(6529), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6529), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6529), - [anon_sym_BSLASHinclude] = ACTIONS(6529), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6529), - [anon_sym_BSLASHinput] = ACTIONS(6529), - [anon_sym_BSLASHsubfile] = ACTIONS(6529), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6529), - [anon_sym_BSLASHbibliography] = ACTIONS(6529), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6529), - [anon_sym_BSLASHincludesvg] = ACTIONS(6529), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6529), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6529), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6529), - [anon_sym_BSLASHimport] = ACTIONS(6529), - [anon_sym_BSLASHsubimport] = ACTIONS(6529), - [anon_sym_BSLASHinputfrom] = ACTIONS(6529), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6529), - [anon_sym_BSLASHincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHcaption] = ACTIONS(6529), - [anon_sym_BSLASHcite] = ACTIONS(6529), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCite] = ACTIONS(6529), - [anon_sym_BSLASHnocite] = ACTIONS(6529), - [anon_sym_BSLASHcitet] = ACTIONS(6529), - [anon_sym_BSLASHcitep] = ACTIONS(6529), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteauthor] = ACTIONS(6529), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6529), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitetitle] = ACTIONS(6529), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteyear] = ACTIONS(6529), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitedate] = ACTIONS(6529), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteurl] = ACTIONS(6529), - [anon_sym_BSLASHfullcite] = ACTIONS(6529), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6529), - [anon_sym_BSLASHcitealt] = ACTIONS(6529), - [anon_sym_BSLASHcitealp] = ACTIONS(6529), - [anon_sym_BSLASHcitetext] = ACTIONS(6529), - [anon_sym_BSLASHparencite] = ACTIONS(6529), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHParencite] = ACTIONS(6529), - [anon_sym_BSLASHfootcite] = ACTIONS(6529), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6529), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6529), - [anon_sym_BSLASHtextcite] = ACTIONS(6529), - [anon_sym_BSLASHTextcite] = ACTIONS(6529), - [anon_sym_BSLASHsmartcite] = ACTIONS(6529), - [anon_sym_BSLASHSmartcite] = ACTIONS(6529), - [anon_sym_BSLASHsupercite] = ACTIONS(6529), - [anon_sym_BSLASHautocite] = ACTIONS(6529), - [anon_sym_BSLASHAutocite] = ACTIONS(6529), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHvolcite] = ACTIONS(6529), - [anon_sym_BSLASHVolcite] = ACTIONS(6529), - [anon_sym_BSLASHpvolcite] = ACTIONS(6529), - [anon_sym_BSLASHPvolcite] = ACTIONS(6529), - [anon_sym_BSLASHfvolcite] = ACTIONS(6529), - [anon_sym_BSLASHftvolcite] = ACTIONS(6529), - [anon_sym_BSLASHsvolcite] = ACTIONS(6529), - [anon_sym_BSLASHSvolcite] = ACTIONS(6529), - [anon_sym_BSLASHtvolcite] = ACTIONS(6529), - [anon_sym_BSLASHTvolcite] = ACTIONS(6529), - [anon_sym_BSLASHavolcite] = ACTIONS(6529), - [anon_sym_BSLASHAvolcite] = ACTIONS(6529), - [anon_sym_BSLASHnotecite] = ACTIONS(6529), - [anon_sym_BSLASHNotecite] = ACTIONS(6529), - [anon_sym_BSLASHpnotecite] = ACTIONS(6529), - [anon_sym_BSLASHPnotecite] = ACTIONS(6529), - [anon_sym_BSLASHfnotecite] = ACTIONS(6529), - [anon_sym_BSLASHlabel] = ACTIONS(6529), - [anon_sym_BSLASHref] = ACTIONS(6529), - [anon_sym_BSLASHeqref] = ACTIONS(6529), - [anon_sym_BSLASHvref] = ACTIONS(6529), - [anon_sym_BSLASHVref] = ACTIONS(6529), - [anon_sym_BSLASHautoref] = ACTIONS(6529), - [anon_sym_BSLASHpageref] = ACTIONS(6529), - [anon_sym_BSLASHcref] = ACTIONS(6529), - [anon_sym_BSLASHCref] = ACTIONS(6529), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnameCref] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHlabelcref] = ACTIONS(6529), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCrefrange] = ACTIONS(6529), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnewlabel] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6529), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6529), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6531), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHdef] = ACTIONS(6529), - [anon_sym_BSLASHlet] = ACTIONS(6529), - [anon_sym_BSLASHleft] = ACTIONS(6529), - [anon_sym_BSLASHbig] = ACTIONS(6529), - [anon_sym_BSLASHBig] = ACTIONS(6529), - [anon_sym_BSLASHbigg] = ACTIONS(6529), - [anon_sym_BSLASHBigg] = ACTIONS(6529), - [anon_sym_BSLASHbigl] = ACTIONS(6529), - [anon_sym_BSLASHBigl] = ACTIONS(6529), - [anon_sym_BSLASHbiggl] = ACTIONS(6529), - [anon_sym_BSLASHBiggl] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6529), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6529), - [anon_sym_BSLASHgls] = ACTIONS(6529), - [anon_sym_BSLASHGls] = ACTIONS(6529), - [anon_sym_BSLASHGLS] = ACTIONS(6529), - [anon_sym_BSLASHglspl] = ACTIONS(6529), - [anon_sym_BSLASHGlspl] = ACTIONS(6529), - [anon_sym_BSLASHGLSpl] = ACTIONS(6529), - [anon_sym_BSLASHglsdisp] = ACTIONS(6529), - [anon_sym_BSLASHglslink] = ACTIONS(6529), - [anon_sym_BSLASHglstext] = ACTIONS(6529), - [anon_sym_BSLASHGlstext] = ACTIONS(6529), - [anon_sym_BSLASHGLStext] = ACTIONS(6529), - [anon_sym_BSLASHglsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6529), - [anon_sym_BSLASHglsplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSplural] = ACTIONS(6529), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHglsname] = ACTIONS(6529), - [anon_sym_BSLASHGlsname] = ACTIONS(6529), - [anon_sym_BSLASHGLSname] = ACTIONS(6529), - [anon_sym_BSLASHglssymbol] = ACTIONS(6529), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6529), - [anon_sym_BSLASHglsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6529), - [anon_sym_BSLASHglsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6529), - [anon_sym_BSLASHglsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6529), - [anon_sym_BSLASHglsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6529), - [anon_sym_BSLASHglsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6529), - [anon_sym_BSLASHnewacronym] = ACTIONS(6529), - [anon_sym_BSLASHacrshort] = ACTIONS(6529), - [anon_sym_BSLASHAcrshort] = ACTIONS(6529), - [anon_sym_BSLASHACRshort] = ACTIONS(6529), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6529), - [anon_sym_BSLASHacrlong] = ACTIONS(6529), - [anon_sym_BSLASHAcrlong] = ACTIONS(6529), - [anon_sym_BSLASHACRlong] = ACTIONS(6529), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6529), - [anon_sym_BSLASHacrfull] = ACTIONS(6529), - [anon_sym_BSLASHAcrfull] = ACTIONS(6529), - [anon_sym_BSLASHACRfull] = ACTIONS(6529), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6529), - [anon_sym_BSLASHacs] = ACTIONS(6529), - [anon_sym_BSLASHAcs] = ACTIONS(6529), - [anon_sym_BSLASHacsp] = ACTIONS(6529), - [anon_sym_BSLASHAcsp] = ACTIONS(6529), - [anon_sym_BSLASHacl] = ACTIONS(6529), - [anon_sym_BSLASHAcl] = ACTIONS(6529), - [anon_sym_BSLASHaclp] = ACTIONS(6529), - [anon_sym_BSLASHAclp] = ACTIONS(6529), - [anon_sym_BSLASHacf] = ACTIONS(6529), - [anon_sym_BSLASHAcf] = ACTIONS(6529), - [anon_sym_BSLASHacfp] = ACTIONS(6529), - [anon_sym_BSLASHAcfp] = ACTIONS(6529), - [anon_sym_BSLASHac] = ACTIONS(6529), - [anon_sym_BSLASHAc] = ACTIONS(6529), - [anon_sym_BSLASHacp] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6529), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6529), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6529), - [anon_sym_BSLASHcolor] = ACTIONS(6529), - [anon_sym_BSLASHcolorbox] = ACTIONS(6529), - [anon_sym_BSLASHtextcolor] = ACTIONS(6529), - [anon_sym_BSLASHpagecolor] = ACTIONS(6529), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6529), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6529), - [anon_sym_BSLASHtext] = ACTIONS(6529), - [anon_sym_BSLASHintertext] = ACTIONS(6529), - [anon_sym_shortintertext] = ACTIONS(6529), - }, - [1605] = { - [sym_command_name] = ACTIONS(5997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5997), - [anon_sym_BSLASHfi] = ACTIONS(6949), - [anon_sym_LBRACK] = ACTIONS(6001), - [anon_sym_RBRACK] = ACTIONS(6001), - [anon_sym_COMMA] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(6001), - [anon_sym_LPAREN] = ACTIONS(6001), - [anon_sym_RPAREN] = ACTIONS(6001), - [anon_sym_LBRACE] = ACTIONS(6001), - [sym_word] = ACTIONS(5997), - [sym_placeholder] = ACTIONS(6001), - [anon_sym_PLUS] = ACTIONS(6001), - [anon_sym_DASH] = ACTIONS(6001), - [anon_sym_STAR] = ACTIONS(6001), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_COLON] = ACTIONS(5997), - [anon_sym_SQUOTE] = ACTIONS(5997), - [anon_sym__] = ACTIONS(6001), - [anon_sym_CARET] = ACTIONS(6001), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), - [anon_sym_BSLASHbegin] = ACTIONS(5997), - [anon_sym_BSLASHtitle] = ACTIONS(5997), - [anon_sym_BSLASHauthor] = ACTIONS(5997), - [anon_sym_BSLASHusepackage] = ACTIONS(5997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5997), - [anon_sym_BSLASHinclude] = ACTIONS(5997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5997), - [anon_sym_BSLASHinput] = ACTIONS(5997), - [anon_sym_BSLASHsubfile] = ACTIONS(5997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5997), - [anon_sym_BSLASHbibliography] = ACTIONS(5997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5997), - [anon_sym_BSLASHincludesvg] = ACTIONS(5997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5997), - [anon_sym_BSLASHimport] = ACTIONS(5997), - [anon_sym_BSLASHsubimport] = ACTIONS(5997), - [anon_sym_BSLASHinputfrom] = ACTIONS(5997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5997), - [anon_sym_BSLASHincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHcaption] = ACTIONS(5997), - [anon_sym_BSLASHcite] = ACTIONS(5997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCite] = ACTIONS(5997), - [anon_sym_BSLASHnocite] = ACTIONS(5997), - [anon_sym_BSLASHcitet] = ACTIONS(5997), - [anon_sym_BSLASHcitep] = ACTIONS(5997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteyear] = ACTIONS(5997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitedate] = ACTIONS(5997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteurl] = ACTIONS(5997), - [anon_sym_BSLASHfullcite] = ACTIONS(5997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5997), - [anon_sym_BSLASHcitealt] = ACTIONS(5997), - [anon_sym_BSLASHcitealp] = ACTIONS(5997), - [anon_sym_BSLASHcitetext] = ACTIONS(5997), - [anon_sym_BSLASHparencite] = ACTIONS(5997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHParencite] = ACTIONS(5997), - [anon_sym_BSLASHfootcite] = ACTIONS(5997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5997), - [anon_sym_BSLASHtextcite] = ACTIONS(5997), - [anon_sym_BSLASHTextcite] = ACTIONS(5997), - [anon_sym_BSLASHsmartcite] = ACTIONS(5997), - [anon_sym_BSLASHSmartcite] = ACTIONS(5997), - [anon_sym_BSLASHsupercite] = ACTIONS(5997), - [anon_sym_BSLASHautocite] = ACTIONS(5997), - [anon_sym_BSLASHAutocite] = ACTIONS(5997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHvolcite] = ACTIONS(5997), - [anon_sym_BSLASHVolcite] = ACTIONS(5997), - [anon_sym_BSLASHpvolcite] = ACTIONS(5997), - [anon_sym_BSLASHPvolcite] = ACTIONS(5997), - [anon_sym_BSLASHfvolcite] = ACTIONS(5997), - [anon_sym_BSLASHftvolcite] = ACTIONS(5997), - [anon_sym_BSLASHsvolcite] = ACTIONS(5997), - [anon_sym_BSLASHSvolcite] = ACTIONS(5997), - [anon_sym_BSLASHtvolcite] = ACTIONS(5997), - [anon_sym_BSLASHTvolcite] = ACTIONS(5997), - [anon_sym_BSLASHavolcite] = ACTIONS(5997), - [anon_sym_BSLASHAvolcite] = ACTIONS(5997), - [anon_sym_BSLASHnotecite] = ACTIONS(5997), - [anon_sym_BSLASHNotecite] = ACTIONS(5997), - [anon_sym_BSLASHpnotecite] = ACTIONS(5997), - [anon_sym_BSLASHPnotecite] = ACTIONS(5997), - [anon_sym_BSLASHfnotecite] = ACTIONS(5997), - [anon_sym_BSLASHlabel] = ACTIONS(5997), - [anon_sym_BSLASHref] = ACTIONS(5997), - [anon_sym_BSLASHeqref] = ACTIONS(5997), - [anon_sym_BSLASHvref] = ACTIONS(5997), - [anon_sym_BSLASHVref] = ACTIONS(5997), - [anon_sym_BSLASHautoref] = ACTIONS(5997), - [anon_sym_BSLASHpageref] = ACTIONS(5997), - [anon_sym_BSLASHcref] = ACTIONS(5997), - [anon_sym_BSLASHCref] = ACTIONS(5997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnameCref] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHlabelcref] = ACTIONS(5997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHdef] = ACTIONS(5997), - [anon_sym_BSLASHlet] = ACTIONS(5997), - [anon_sym_BSLASHleft] = ACTIONS(5997), - [anon_sym_BSLASHbig] = ACTIONS(5997), - [anon_sym_BSLASHBig] = ACTIONS(5997), - [anon_sym_BSLASHbigg] = ACTIONS(5997), - [anon_sym_BSLASHBigg] = ACTIONS(5997), - [anon_sym_BSLASHbigl] = ACTIONS(5997), - [anon_sym_BSLASHBigl] = ACTIONS(5997), - [anon_sym_BSLASHbiggl] = ACTIONS(5997), - [anon_sym_BSLASHBiggl] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5997), - [anon_sym_BSLASHgls] = ACTIONS(5997), - [anon_sym_BSLASHGls] = ACTIONS(5997), - [anon_sym_BSLASHGLS] = ACTIONS(5997), - [anon_sym_BSLASHglspl] = ACTIONS(5997), - [anon_sym_BSLASHGlspl] = ACTIONS(5997), - [anon_sym_BSLASHGLSpl] = ACTIONS(5997), - [anon_sym_BSLASHglsdisp] = ACTIONS(5997), - [anon_sym_BSLASHglslink] = ACTIONS(5997), - [anon_sym_BSLASHglstext] = ACTIONS(5997), - [anon_sym_BSLASHGlstext] = ACTIONS(5997), - [anon_sym_BSLASHGLStext] = ACTIONS(5997), - [anon_sym_BSLASHglsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5997), - [anon_sym_BSLASHglsplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSplural] = ACTIONS(5997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHglsname] = ACTIONS(5997), - [anon_sym_BSLASHGlsname] = ACTIONS(5997), - [anon_sym_BSLASHGLSname] = ACTIONS(5997), - [anon_sym_BSLASHglssymbol] = ACTIONS(5997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5997), - [anon_sym_BSLASHglsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5997), - [anon_sym_BSLASHglsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5997), - [anon_sym_BSLASHglsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5997), - [anon_sym_BSLASHglsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5997), - [anon_sym_BSLASHglsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5997), - [anon_sym_BSLASHnewacronym] = ACTIONS(5997), - [anon_sym_BSLASHacrshort] = ACTIONS(5997), - [anon_sym_BSLASHAcrshort] = ACTIONS(5997), - [anon_sym_BSLASHACRshort] = ACTIONS(5997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5997), - [anon_sym_BSLASHacrlong] = ACTIONS(5997), - [anon_sym_BSLASHAcrlong] = ACTIONS(5997), - [anon_sym_BSLASHACRlong] = ACTIONS(5997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5997), - [anon_sym_BSLASHacrfull] = ACTIONS(5997), - [anon_sym_BSLASHAcrfull] = ACTIONS(5997), - [anon_sym_BSLASHACRfull] = ACTIONS(5997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5997), - [anon_sym_BSLASHacs] = ACTIONS(5997), - [anon_sym_BSLASHAcs] = ACTIONS(5997), - [anon_sym_BSLASHacsp] = ACTIONS(5997), - [anon_sym_BSLASHAcsp] = ACTIONS(5997), - [anon_sym_BSLASHacl] = ACTIONS(5997), - [anon_sym_BSLASHAcl] = ACTIONS(5997), - [anon_sym_BSLASHaclp] = ACTIONS(5997), - [anon_sym_BSLASHAclp] = ACTIONS(5997), - [anon_sym_BSLASHacf] = ACTIONS(5997), - [anon_sym_BSLASHAcf] = ACTIONS(5997), - [anon_sym_BSLASHacfp] = ACTIONS(5997), - [anon_sym_BSLASHAcfp] = ACTIONS(5997), - [anon_sym_BSLASHac] = ACTIONS(5997), - [anon_sym_BSLASHAc] = ACTIONS(5997), - [anon_sym_BSLASHacp] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5997), - [anon_sym_BSLASHcolor] = ACTIONS(5997), - [anon_sym_BSLASHcolorbox] = ACTIONS(5997), - [anon_sym_BSLASHtextcolor] = ACTIONS(5997), - [anon_sym_BSLASHpagecolor] = ACTIONS(5997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5997), - [anon_sym_BSLASHtext] = ACTIONS(5997), - [anon_sym_BSLASHintertext] = ACTIONS(5997), - [anon_sym_shortintertext] = ACTIONS(5997), - }, - [1606] = { - [sym_command_name] = ACTIONS(6509), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6509), - [anon_sym_LBRACK] = ACTIONS(6511), - [anon_sym_RBRACK] = ACTIONS(6511), - [anon_sym_COMMA] = ACTIONS(6511), - [anon_sym_EQ] = ACTIONS(6511), - [anon_sym_LPAREN] = ACTIONS(6511), - [anon_sym_RPAREN] = ACTIONS(6511), - [anon_sym_LBRACE] = ACTIONS(6511), - [sym_word] = ACTIONS(6509), - [sym_placeholder] = ACTIONS(6511), - [anon_sym_PLUS] = ACTIONS(6511), - [anon_sym_DASH] = ACTIONS(6511), - [anon_sym_STAR] = ACTIONS(6511), - [anon_sym_SLASH] = ACTIONS(6511), - [anon_sym_LT] = ACTIONS(6509), - [anon_sym_GT] = ACTIONS(6509), - [anon_sym_BANG] = ACTIONS(6509), - [anon_sym_PIPE] = ACTIONS(6509), - [anon_sym_COLON] = ACTIONS(6509), - [anon_sym_SQUOTE] = ACTIONS(6509), - [anon_sym__] = ACTIONS(6511), - [anon_sym_CARET] = ACTIONS(6511), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6511), - [anon_sym_DOLLAR] = ACTIONS(6509), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6511), - [anon_sym_BSLASHbegin] = ACTIONS(6509), - [anon_sym_BSLASHend] = ACTIONS(6509), - [anon_sym_BSLASHtitle] = ACTIONS(6509), - [anon_sym_BSLASHauthor] = ACTIONS(6509), - [anon_sym_BSLASHusepackage] = ACTIONS(6509), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6509), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6509), - [anon_sym_BSLASHinclude] = ACTIONS(6509), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6509), - [anon_sym_BSLASHinput] = ACTIONS(6509), - [anon_sym_BSLASHsubfile] = ACTIONS(6509), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6509), - [anon_sym_BSLASHbibliography] = ACTIONS(6509), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6509), - [anon_sym_BSLASHincludesvg] = ACTIONS(6509), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6509), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6509), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6509), - [anon_sym_BSLASHimport] = ACTIONS(6509), - [anon_sym_BSLASHsubimport] = ACTIONS(6509), - [anon_sym_BSLASHinputfrom] = ACTIONS(6509), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6509), - [anon_sym_BSLASHincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHcaption] = ACTIONS(6509), - [anon_sym_BSLASHcite] = ACTIONS(6509), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCite] = ACTIONS(6509), - [anon_sym_BSLASHnocite] = ACTIONS(6509), - [anon_sym_BSLASHcitet] = ACTIONS(6509), - [anon_sym_BSLASHcitep] = ACTIONS(6509), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteauthor] = ACTIONS(6509), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6509), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitetitle] = ACTIONS(6509), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteyear] = ACTIONS(6509), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitedate] = ACTIONS(6509), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteurl] = ACTIONS(6509), - [anon_sym_BSLASHfullcite] = ACTIONS(6509), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6509), - [anon_sym_BSLASHcitealt] = ACTIONS(6509), - [anon_sym_BSLASHcitealp] = ACTIONS(6509), - [anon_sym_BSLASHcitetext] = ACTIONS(6509), - [anon_sym_BSLASHparencite] = ACTIONS(6509), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHParencite] = ACTIONS(6509), - [anon_sym_BSLASHfootcite] = ACTIONS(6509), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6509), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6509), - [anon_sym_BSLASHtextcite] = ACTIONS(6509), - [anon_sym_BSLASHTextcite] = ACTIONS(6509), - [anon_sym_BSLASHsmartcite] = ACTIONS(6509), - [anon_sym_BSLASHSmartcite] = ACTIONS(6509), - [anon_sym_BSLASHsupercite] = ACTIONS(6509), - [anon_sym_BSLASHautocite] = ACTIONS(6509), - [anon_sym_BSLASHAutocite] = ACTIONS(6509), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHvolcite] = ACTIONS(6509), - [anon_sym_BSLASHVolcite] = ACTIONS(6509), - [anon_sym_BSLASHpvolcite] = ACTIONS(6509), - [anon_sym_BSLASHPvolcite] = ACTIONS(6509), - [anon_sym_BSLASHfvolcite] = ACTIONS(6509), - [anon_sym_BSLASHftvolcite] = ACTIONS(6509), - [anon_sym_BSLASHsvolcite] = ACTIONS(6509), - [anon_sym_BSLASHSvolcite] = ACTIONS(6509), - [anon_sym_BSLASHtvolcite] = ACTIONS(6509), - [anon_sym_BSLASHTvolcite] = ACTIONS(6509), - [anon_sym_BSLASHavolcite] = ACTIONS(6509), - [anon_sym_BSLASHAvolcite] = ACTIONS(6509), - [anon_sym_BSLASHnotecite] = ACTIONS(6509), - [anon_sym_BSLASHNotecite] = ACTIONS(6509), - [anon_sym_BSLASHpnotecite] = ACTIONS(6509), - [anon_sym_BSLASHPnotecite] = ACTIONS(6509), - [anon_sym_BSLASHfnotecite] = ACTIONS(6509), - [anon_sym_BSLASHlabel] = ACTIONS(6509), - [anon_sym_BSLASHref] = ACTIONS(6509), - [anon_sym_BSLASHeqref] = ACTIONS(6509), - [anon_sym_BSLASHvref] = ACTIONS(6509), - [anon_sym_BSLASHVref] = ACTIONS(6509), - [anon_sym_BSLASHautoref] = ACTIONS(6509), - [anon_sym_BSLASHpageref] = ACTIONS(6509), - [anon_sym_BSLASHcref] = ACTIONS(6509), - [anon_sym_BSLASHCref] = ACTIONS(6509), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnameCref] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHlabelcref] = ACTIONS(6509), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCrefrange] = ACTIONS(6509), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnewlabel] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6509), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6509), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6511), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHdef] = ACTIONS(6509), - [anon_sym_BSLASHlet] = ACTIONS(6509), - [anon_sym_BSLASHleft] = ACTIONS(6509), - [anon_sym_BSLASHbig] = ACTIONS(6509), - [anon_sym_BSLASHBig] = ACTIONS(6509), - [anon_sym_BSLASHbigg] = ACTIONS(6509), - [anon_sym_BSLASHBigg] = ACTIONS(6509), - [anon_sym_BSLASHbigl] = ACTIONS(6509), - [anon_sym_BSLASHBigl] = ACTIONS(6509), - [anon_sym_BSLASHbiggl] = ACTIONS(6509), - [anon_sym_BSLASHBiggl] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6509), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6509), - [anon_sym_BSLASHgls] = ACTIONS(6509), - [anon_sym_BSLASHGls] = ACTIONS(6509), - [anon_sym_BSLASHGLS] = ACTIONS(6509), - [anon_sym_BSLASHglspl] = ACTIONS(6509), - [anon_sym_BSLASHGlspl] = ACTIONS(6509), - [anon_sym_BSLASHGLSpl] = ACTIONS(6509), - [anon_sym_BSLASHglsdisp] = ACTIONS(6509), - [anon_sym_BSLASHglslink] = ACTIONS(6509), - [anon_sym_BSLASHglstext] = ACTIONS(6509), - [anon_sym_BSLASHGlstext] = ACTIONS(6509), - [anon_sym_BSLASHGLStext] = ACTIONS(6509), - [anon_sym_BSLASHglsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6509), - [anon_sym_BSLASHglsplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSplural] = ACTIONS(6509), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHglsname] = ACTIONS(6509), - [anon_sym_BSLASHGlsname] = ACTIONS(6509), - [anon_sym_BSLASHGLSname] = ACTIONS(6509), - [anon_sym_BSLASHglssymbol] = ACTIONS(6509), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6509), - [anon_sym_BSLASHglsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6509), - [anon_sym_BSLASHglsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6509), - [anon_sym_BSLASHglsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6509), - [anon_sym_BSLASHglsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6509), - [anon_sym_BSLASHglsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6509), - [anon_sym_BSLASHnewacronym] = ACTIONS(6509), - [anon_sym_BSLASHacrshort] = ACTIONS(6509), - [anon_sym_BSLASHAcrshort] = ACTIONS(6509), - [anon_sym_BSLASHACRshort] = ACTIONS(6509), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6509), - [anon_sym_BSLASHacrlong] = ACTIONS(6509), - [anon_sym_BSLASHAcrlong] = ACTIONS(6509), - [anon_sym_BSLASHACRlong] = ACTIONS(6509), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6509), - [anon_sym_BSLASHacrfull] = ACTIONS(6509), - [anon_sym_BSLASHAcrfull] = ACTIONS(6509), - [anon_sym_BSLASHACRfull] = ACTIONS(6509), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6509), - [anon_sym_BSLASHacs] = ACTIONS(6509), - [anon_sym_BSLASHAcs] = ACTIONS(6509), - [anon_sym_BSLASHacsp] = ACTIONS(6509), - [anon_sym_BSLASHAcsp] = ACTIONS(6509), - [anon_sym_BSLASHacl] = ACTIONS(6509), - [anon_sym_BSLASHAcl] = ACTIONS(6509), - [anon_sym_BSLASHaclp] = ACTIONS(6509), - [anon_sym_BSLASHAclp] = ACTIONS(6509), - [anon_sym_BSLASHacf] = ACTIONS(6509), - [anon_sym_BSLASHAcf] = ACTIONS(6509), - [anon_sym_BSLASHacfp] = ACTIONS(6509), - [anon_sym_BSLASHAcfp] = ACTIONS(6509), - [anon_sym_BSLASHac] = ACTIONS(6509), - [anon_sym_BSLASHAc] = ACTIONS(6509), - [anon_sym_BSLASHacp] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6509), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6509), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6509), - [anon_sym_BSLASHcolor] = ACTIONS(6509), - [anon_sym_BSLASHcolorbox] = ACTIONS(6509), - [anon_sym_BSLASHtextcolor] = ACTIONS(6509), - [anon_sym_BSLASHpagecolor] = ACTIONS(6509), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6509), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6509), - [anon_sym_BSLASHtext] = ACTIONS(6509), - [anon_sym_BSLASHintertext] = ACTIONS(6509), - [anon_sym_shortintertext] = ACTIONS(6509), - }, - [1607] = { - [sym_brack_group_text] = STATE(1791), - [sym_command_name] = ACTIONS(6009), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6947), - [anon_sym_RBRACK] = ACTIONS(6011), - [anon_sym_COMMA] = ACTIONS(6011), - [anon_sym_EQ] = ACTIONS(6011), - [anon_sym_LPAREN] = ACTIONS(6011), - [anon_sym_RPAREN] = ACTIONS(6011), - [anon_sym_LBRACE] = ACTIONS(6011), - [anon_sym_RBRACE] = ACTIONS(6011), - [sym_word] = ACTIONS(6009), - [sym_placeholder] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_SQUOTE] = ACTIONS(6009), - [anon_sym__] = ACTIONS(6011), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6011), - [anon_sym_DOLLAR] = ACTIONS(6009), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6011), - [anon_sym_BSLASHtitle] = ACTIONS(6009), - [anon_sym_BSLASHauthor] = ACTIONS(6009), - [anon_sym_BSLASHusepackage] = ACTIONS(6009), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6009), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6009), - [anon_sym_BSLASHinclude] = ACTIONS(6009), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6009), - [anon_sym_BSLASHinput] = ACTIONS(6009), - [anon_sym_BSLASHsubfile] = ACTIONS(6009), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6009), - [anon_sym_BSLASHbibliography] = ACTIONS(6009), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6009), - [anon_sym_BSLASHincludesvg] = ACTIONS(6009), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6009), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6009), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6009), - [anon_sym_BSLASHimport] = ACTIONS(6009), - [anon_sym_BSLASHsubimport] = ACTIONS(6009), - [anon_sym_BSLASHinputfrom] = ACTIONS(6009), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6009), - [anon_sym_BSLASHincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHcaption] = ACTIONS(6009), - [anon_sym_BSLASHcite] = ACTIONS(6009), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCite] = ACTIONS(6009), - [anon_sym_BSLASHnocite] = ACTIONS(6009), - [anon_sym_BSLASHcitet] = ACTIONS(6009), - [anon_sym_BSLASHcitep] = ACTIONS(6009), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteauthor] = ACTIONS(6009), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6009), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitetitle] = ACTIONS(6009), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteyear] = ACTIONS(6009), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitedate] = ACTIONS(6009), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteurl] = ACTIONS(6009), - [anon_sym_BSLASHfullcite] = ACTIONS(6009), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6009), - [anon_sym_BSLASHcitealt] = ACTIONS(6009), - [anon_sym_BSLASHcitealp] = ACTIONS(6009), - [anon_sym_BSLASHcitetext] = ACTIONS(6009), - [anon_sym_BSLASHparencite] = ACTIONS(6009), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHParencite] = ACTIONS(6009), - [anon_sym_BSLASHfootcite] = ACTIONS(6009), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6009), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6009), - [anon_sym_BSLASHtextcite] = ACTIONS(6009), - [anon_sym_BSLASHTextcite] = ACTIONS(6009), - [anon_sym_BSLASHsmartcite] = ACTIONS(6009), - [anon_sym_BSLASHSmartcite] = ACTIONS(6009), - [anon_sym_BSLASHsupercite] = ACTIONS(6009), - [anon_sym_BSLASHautocite] = ACTIONS(6009), - [anon_sym_BSLASHAutocite] = ACTIONS(6009), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHvolcite] = ACTIONS(6009), - [anon_sym_BSLASHVolcite] = ACTIONS(6009), - [anon_sym_BSLASHpvolcite] = ACTIONS(6009), - [anon_sym_BSLASHPvolcite] = ACTIONS(6009), - [anon_sym_BSLASHfvolcite] = ACTIONS(6009), - [anon_sym_BSLASHftvolcite] = ACTIONS(6009), - [anon_sym_BSLASHsvolcite] = ACTIONS(6009), - [anon_sym_BSLASHSvolcite] = ACTIONS(6009), - [anon_sym_BSLASHtvolcite] = ACTIONS(6009), - [anon_sym_BSLASHTvolcite] = ACTIONS(6009), - [anon_sym_BSLASHavolcite] = ACTIONS(6009), - [anon_sym_BSLASHAvolcite] = ACTIONS(6009), - [anon_sym_BSLASHnotecite] = ACTIONS(6009), - [anon_sym_BSLASHNotecite] = ACTIONS(6009), - [anon_sym_BSLASHpnotecite] = ACTIONS(6009), - [anon_sym_BSLASHPnotecite] = ACTIONS(6009), - [anon_sym_BSLASHfnotecite] = ACTIONS(6009), - [anon_sym_BSLASHlabel] = ACTIONS(6009), - [anon_sym_BSLASHref] = ACTIONS(6009), - [anon_sym_BSLASHeqref] = ACTIONS(6009), - [anon_sym_BSLASHvref] = ACTIONS(6009), - [anon_sym_BSLASHVref] = ACTIONS(6009), - [anon_sym_BSLASHautoref] = ACTIONS(6009), - [anon_sym_BSLASHpageref] = ACTIONS(6009), - [anon_sym_BSLASHcref] = ACTIONS(6009), - [anon_sym_BSLASHCref] = ACTIONS(6009), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnameCref] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHlabelcref] = ACTIONS(6009), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCrefrange] = ACTIONS(6009), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnewlabel] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6009), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6009), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6011), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHdef] = ACTIONS(6009), - [anon_sym_BSLASHlet] = ACTIONS(6009), - [anon_sym_BSLASHleft] = ACTIONS(6009), - [anon_sym_BSLASHbig] = ACTIONS(6009), - [anon_sym_BSLASHBig] = ACTIONS(6009), - [anon_sym_BSLASHbigg] = ACTIONS(6009), - [anon_sym_BSLASHBigg] = ACTIONS(6009), - [anon_sym_BSLASHbigl] = ACTIONS(6009), - [anon_sym_BSLASHBigl] = ACTIONS(6009), - [anon_sym_BSLASHbiggl] = ACTIONS(6009), - [anon_sym_BSLASHBiggl] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6009), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6009), - [anon_sym_BSLASHgls] = ACTIONS(6009), - [anon_sym_BSLASHGls] = ACTIONS(6009), - [anon_sym_BSLASHGLS] = ACTIONS(6009), - [anon_sym_BSLASHglspl] = ACTIONS(6009), - [anon_sym_BSLASHGlspl] = ACTIONS(6009), - [anon_sym_BSLASHGLSpl] = ACTIONS(6009), - [anon_sym_BSLASHglsdisp] = ACTIONS(6009), - [anon_sym_BSLASHglslink] = ACTIONS(6009), - [anon_sym_BSLASHglstext] = ACTIONS(6009), - [anon_sym_BSLASHGlstext] = ACTIONS(6009), - [anon_sym_BSLASHGLStext] = ACTIONS(6009), - [anon_sym_BSLASHglsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6009), - [anon_sym_BSLASHglsplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSplural] = ACTIONS(6009), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHglsname] = ACTIONS(6009), - [anon_sym_BSLASHGlsname] = ACTIONS(6009), - [anon_sym_BSLASHGLSname] = ACTIONS(6009), - [anon_sym_BSLASHglssymbol] = ACTIONS(6009), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6009), - [anon_sym_BSLASHglsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6009), - [anon_sym_BSLASHglsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6009), - [anon_sym_BSLASHglsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6009), - [anon_sym_BSLASHglsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6009), - [anon_sym_BSLASHglsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6009), - [anon_sym_BSLASHnewacronym] = ACTIONS(6009), - [anon_sym_BSLASHacrshort] = ACTIONS(6009), - [anon_sym_BSLASHAcrshort] = ACTIONS(6009), - [anon_sym_BSLASHACRshort] = ACTIONS(6009), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6009), - [anon_sym_BSLASHacrlong] = ACTIONS(6009), - [anon_sym_BSLASHAcrlong] = ACTIONS(6009), - [anon_sym_BSLASHACRlong] = ACTIONS(6009), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6009), - [anon_sym_BSLASHacrfull] = ACTIONS(6009), - [anon_sym_BSLASHAcrfull] = ACTIONS(6009), - [anon_sym_BSLASHACRfull] = ACTIONS(6009), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6009), - [anon_sym_BSLASHacs] = ACTIONS(6009), - [anon_sym_BSLASHAcs] = ACTIONS(6009), - [anon_sym_BSLASHacsp] = ACTIONS(6009), - [anon_sym_BSLASHAcsp] = ACTIONS(6009), - [anon_sym_BSLASHacl] = ACTIONS(6009), - [anon_sym_BSLASHAcl] = ACTIONS(6009), - [anon_sym_BSLASHaclp] = ACTIONS(6009), - [anon_sym_BSLASHAclp] = ACTIONS(6009), - [anon_sym_BSLASHacf] = ACTIONS(6009), - [anon_sym_BSLASHAcf] = ACTIONS(6009), - [anon_sym_BSLASHacfp] = ACTIONS(6009), - [anon_sym_BSLASHAcfp] = ACTIONS(6009), - [anon_sym_BSLASHac] = ACTIONS(6009), - [anon_sym_BSLASHAc] = ACTIONS(6009), - [anon_sym_BSLASHacp] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6009), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6009), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6009), - [anon_sym_BSLASHcolor] = ACTIONS(6009), - [anon_sym_BSLASHcolorbox] = ACTIONS(6009), - [anon_sym_BSLASHtextcolor] = ACTIONS(6009), - [anon_sym_BSLASHpagecolor] = ACTIONS(6009), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6009), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6009), - [anon_sym_BSLASHtext] = ACTIONS(6009), - [anon_sym_BSLASHintertext] = ACTIONS(6009), - [anon_sym_shortintertext] = ACTIONS(6009), - }, - [1608] = { - [sym_command_name] = ACTIONS(6465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6465), - [anon_sym_LBRACK] = ACTIONS(6467), - [anon_sym_RBRACK] = ACTIONS(6467), - [anon_sym_COMMA] = ACTIONS(6467), - [anon_sym_EQ] = ACTIONS(6467), - [anon_sym_LPAREN] = ACTIONS(6467), - [anon_sym_RPAREN] = ACTIONS(6467), - [anon_sym_LBRACE] = ACTIONS(6467), - [anon_sym_RBRACE] = ACTIONS(6467), - [sym_word] = ACTIONS(6465), - [sym_placeholder] = ACTIONS(6467), - [anon_sym_PLUS] = ACTIONS(6467), - [anon_sym_DASH] = ACTIONS(6467), - [anon_sym_STAR] = ACTIONS(6467), - [anon_sym_SLASH] = ACTIONS(6467), - [anon_sym_LT] = ACTIONS(6465), - [anon_sym_GT] = ACTIONS(6465), - [anon_sym_BANG] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6465), - [anon_sym_COLON] = ACTIONS(6465), - [anon_sym_SQUOTE] = ACTIONS(6465), - [anon_sym__] = ACTIONS(6467), - [anon_sym_CARET] = ACTIONS(6467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6467), - [anon_sym_DOLLAR] = ACTIONS(6465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6467), - [anon_sym_BSLASHtitle] = ACTIONS(6465), - [anon_sym_BSLASHauthor] = ACTIONS(6465), - [anon_sym_BSLASHusepackage] = ACTIONS(6465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6465), - [anon_sym_BSLASHinclude] = ACTIONS(6465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6465), - [anon_sym_BSLASHinput] = ACTIONS(6465), - [anon_sym_BSLASHsubfile] = ACTIONS(6465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6465), - [anon_sym_BSLASHbibliography] = ACTIONS(6465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6465), - [anon_sym_BSLASHincludesvg] = ACTIONS(6465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6465), - [anon_sym_BSLASHimport] = ACTIONS(6465), - [anon_sym_BSLASHsubimport] = ACTIONS(6465), - [anon_sym_BSLASHinputfrom] = ACTIONS(6465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6465), - [anon_sym_BSLASHincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHcaption] = ACTIONS(6465), - [anon_sym_BSLASHcite] = ACTIONS(6465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCite] = ACTIONS(6465), - [anon_sym_BSLASHnocite] = ACTIONS(6465), - [anon_sym_BSLASHcitet] = ACTIONS(6465), - [anon_sym_BSLASHcitep] = ACTIONS(6465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteauthor] = ACTIONS(6465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitetitle] = ACTIONS(6465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteyear] = ACTIONS(6465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitedate] = ACTIONS(6465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteurl] = ACTIONS(6465), - [anon_sym_BSLASHfullcite] = ACTIONS(6465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6465), - [anon_sym_BSLASHcitealt] = ACTIONS(6465), - [anon_sym_BSLASHcitealp] = ACTIONS(6465), - [anon_sym_BSLASHcitetext] = ACTIONS(6465), - [anon_sym_BSLASHparencite] = ACTIONS(6465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHParencite] = ACTIONS(6465), - [anon_sym_BSLASHfootcite] = ACTIONS(6465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6465), - [anon_sym_BSLASHtextcite] = ACTIONS(6465), - [anon_sym_BSLASHTextcite] = ACTIONS(6465), - [anon_sym_BSLASHsmartcite] = ACTIONS(6465), - [anon_sym_BSLASHSmartcite] = ACTIONS(6465), - [anon_sym_BSLASHsupercite] = ACTIONS(6465), - [anon_sym_BSLASHautocite] = ACTIONS(6465), - [anon_sym_BSLASHAutocite] = ACTIONS(6465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHvolcite] = ACTIONS(6465), - [anon_sym_BSLASHVolcite] = ACTIONS(6465), - [anon_sym_BSLASHpvolcite] = ACTIONS(6465), - [anon_sym_BSLASHPvolcite] = ACTIONS(6465), - [anon_sym_BSLASHfvolcite] = ACTIONS(6465), - [anon_sym_BSLASHftvolcite] = ACTIONS(6465), - [anon_sym_BSLASHsvolcite] = ACTIONS(6465), - [anon_sym_BSLASHSvolcite] = ACTIONS(6465), - [anon_sym_BSLASHtvolcite] = ACTIONS(6465), - [anon_sym_BSLASHTvolcite] = ACTIONS(6465), - [anon_sym_BSLASHavolcite] = ACTIONS(6465), - [anon_sym_BSLASHAvolcite] = ACTIONS(6465), - [anon_sym_BSLASHnotecite] = ACTIONS(6465), - [anon_sym_BSLASHNotecite] = ACTIONS(6465), - [anon_sym_BSLASHpnotecite] = ACTIONS(6465), - [anon_sym_BSLASHPnotecite] = ACTIONS(6465), - [anon_sym_BSLASHfnotecite] = ACTIONS(6465), - [anon_sym_BSLASHlabel] = ACTIONS(6465), - [anon_sym_BSLASHref] = ACTIONS(6465), - [anon_sym_BSLASHeqref] = ACTIONS(6465), - [anon_sym_BSLASHvref] = ACTIONS(6465), - [anon_sym_BSLASHVref] = ACTIONS(6465), - [anon_sym_BSLASHautoref] = ACTIONS(6465), - [anon_sym_BSLASHpageref] = ACTIONS(6465), - [anon_sym_BSLASHcref] = ACTIONS(6465), - [anon_sym_BSLASHCref] = ACTIONS(6465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnameCref] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHlabelcref] = ACTIONS(6465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCrefrange] = ACTIONS(6465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnewlabel] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6467), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHdef] = ACTIONS(6465), - [anon_sym_BSLASHlet] = ACTIONS(6465), - [anon_sym_BSLASHleft] = ACTIONS(6465), - [anon_sym_BSLASHbig] = ACTIONS(6465), - [anon_sym_BSLASHBig] = ACTIONS(6465), - [anon_sym_BSLASHbigg] = ACTIONS(6465), - [anon_sym_BSLASHBigg] = ACTIONS(6465), - [anon_sym_BSLASHbigl] = ACTIONS(6465), - [anon_sym_BSLASHBigl] = ACTIONS(6465), - [anon_sym_BSLASHbiggl] = ACTIONS(6465), - [anon_sym_BSLASHBiggl] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6465), - [anon_sym_BSLASHgls] = ACTIONS(6465), - [anon_sym_BSLASHGls] = ACTIONS(6465), - [anon_sym_BSLASHGLS] = ACTIONS(6465), - [anon_sym_BSLASHglspl] = ACTIONS(6465), - [anon_sym_BSLASHGlspl] = ACTIONS(6465), - [anon_sym_BSLASHGLSpl] = ACTIONS(6465), - [anon_sym_BSLASHglsdisp] = ACTIONS(6465), - [anon_sym_BSLASHglslink] = ACTIONS(6465), - [anon_sym_BSLASHglstext] = ACTIONS(6465), - [anon_sym_BSLASHGlstext] = ACTIONS(6465), - [anon_sym_BSLASHGLStext] = ACTIONS(6465), - [anon_sym_BSLASHglsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6465), - [anon_sym_BSLASHglsplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSplural] = ACTIONS(6465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHglsname] = ACTIONS(6465), - [anon_sym_BSLASHGlsname] = ACTIONS(6465), - [anon_sym_BSLASHGLSname] = ACTIONS(6465), - [anon_sym_BSLASHglssymbol] = ACTIONS(6465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6465), - [anon_sym_BSLASHglsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6465), - [anon_sym_BSLASHglsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6465), - [anon_sym_BSLASHglsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6465), - [anon_sym_BSLASHglsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6465), - [anon_sym_BSLASHglsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6465), - [anon_sym_BSLASHnewacronym] = ACTIONS(6465), - [anon_sym_BSLASHacrshort] = ACTIONS(6465), - [anon_sym_BSLASHAcrshort] = ACTIONS(6465), - [anon_sym_BSLASHACRshort] = ACTIONS(6465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6465), - [anon_sym_BSLASHacrlong] = ACTIONS(6465), - [anon_sym_BSLASHAcrlong] = ACTIONS(6465), - [anon_sym_BSLASHACRlong] = ACTIONS(6465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6465), - [anon_sym_BSLASHacrfull] = ACTIONS(6465), - [anon_sym_BSLASHAcrfull] = ACTIONS(6465), - [anon_sym_BSLASHACRfull] = ACTIONS(6465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6465), - [anon_sym_BSLASHacs] = ACTIONS(6465), - [anon_sym_BSLASHAcs] = ACTIONS(6465), - [anon_sym_BSLASHacsp] = ACTIONS(6465), - [anon_sym_BSLASHAcsp] = ACTIONS(6465), - [anon_sym_BSLASHacl] = ACTIONS(6465), - [anon_sym_BSLASHAcl] = ACTIONS(6465), - [anon_sym_BSLASHaclp] = ACTIONS(6465), - [anon_sym_BSLASHAclp] = ACTIONS(6465), - [anon_sym_BSLASHacf] = ACTIONS(6465), - [anon_sym_BSLASHAcf] = ACTIONS(6465), - [anon_sym_BSLASHacfp] = ACTIONS(6465), - [anon_sym_BSLASHAcfp] = ACTIONS(6465), - [anon_sym_BSLASHac] = ACTIONS(6465), - [anon_sym_BSLASHAc] = ACTIONS(6465), - [anon_sym_BSLASHacp] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6465), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6465), - [anon_sym_BSLASHcolor] = ACTIONS(6465), - [anon_sym_BSLASHcolorbox] = ACTIONS(6465), - [anon_sym_BSLASHtextcolor] = ACTIONS(6465), - [anon_sym_BSLASHpagecolor] = ACTIONS(6465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6465), - [anon_sym_BSLASHtext] = ACTIONS(6465), - [anon_sym_BSLASHintertext] = ACTIONS(6465), - [anon_sym_shortintertext] = ACTIONS(6465), - }, - [1609] = { - [sym_command_name] = ACTIONS(6505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(6507), - [anon_sym_RBRACK] = ACTIONS(6507), - [anon_sym_COMMA] = ACTIONS(6507), - [anon_sym_EQ] = ACTIONS(6507), - [anon_sym_LPAREN] = ACTIONS(6507), - [anon_sym_RPAREN] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [sym_word] = ACTIONS(6505), - [sym_placeholder] = ACTIONS(6507), - [anon_sym_PLUS] = ACTIONS(6507), - [anon_sym_DASH] = ACTIONS(6507), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_SLASH] = ACTIONS(6507), - [anon_sym_LT] = ACTIONS(6505), - [anon_sym_GT] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6505), - [anon_sym_PIPE] = ACTIONS(6505), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6505), - [anon_sym__] = ACTIONS(6507), - [anon_sym_CARET] = ACTIONS(6507), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6507), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6507), - [anon_sym_DOLLAR] = ACTIONS(6505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6507), - [anon_sym_BSLASHbegin] = ACTIONS(6505), - [anon_sym_BSLASHtitle] = ACTIONS(6505), - [anon_sym_BSLASHauthor] = ACTIONS(6505), - [anon_sym_BSLASHusepackage] = ACTIONS(6505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6505), - [anon_sym_BSLASHinclude] = ACTIONS(6505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6505), - [anon_sym_BSLASHinput] = ACTIONS(6505), - [anon_sym_BSLASHsubfile] = ACTIONS(6505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6505), - [anon_sym_BSLASHbibliography] = ACTIONS(6505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6505), - [anon_sym_BSLASHincludesvg] = ACTIONS(6505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6505), - [anon_sym_BSLASHimport] = ACTIONS(6505), - [anon_sym_BSLASHsubimport] = ACTIONS(6505), - [anon_sym_BSLASHinputfrom] = ACTIONS(6505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6505), - [anon_sym_BSLASHincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHcaption] = ACTIONS(6505), - [anon_sym_BSLASHcite] = ACTIONS(6505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCite] = ACTIONS(6505), - [anon_sym_BSLASHnocite] = ACTIONS(6505), - [anon_sym_BSLASHcitet] = ACTIONS(6505), - [anon_sym_BSLASHcitep] = ACTIONS(6505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteauthor] = ACTIONS(6505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitetitle] = ACTIONS(6505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteyear] = ACTIONS(6505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitedate] = ACTIONS(6505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteurl] = ACTIONS(6505), - [anon_sym_BSLASHfullcite] = ACTIONS(6505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6505), - [anon_sym_BSLASHcitealt] = ACTIONS(6505), - [anon_sym_BSLASHcitealp] = ACTIONS(6505), - [anon_sym_BSLASHcitetext] = ACTIONS(6505), - [anon_sym_BSLASHparencite] = ACTIONS(6505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHParencite] = ACTIONS(6505), - [anon_sym_BSLASHfootcite] = ACTIONS(6505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6505), - [anon_sym_BSLASHtextcite] = ACTIONS(6505), - [anon_sym_BSLASHTextcite] = ACTIONS(6505), - [anon_sym_BSLASHsmartcite] = ACTIONS(6505), - [anon_sym_BSLASHSmartcite] = ACTIONS(6505), - [anon_sym_BSLASHsupercite] = ACTIONS(6505), - [anon_sym_BSLASHautocite] = ACTIONS(6505), - [anon_sym_BSLASHAutocite] = ACTIONS(6505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHvolcite] = ACTIONS(6505), - [anon_sym_BSLASHVolcite] = ACTIONS(6505), - [anon_sym_BSLASHpvolcite] = ACTIONS(6505), - [anon_sym_BSLASHPvolcite] = ACTIONS(6505), - [anon_sym_BSLASHfvolcite] = ACTIONS(6505), - [anon_sym_BSLASHftvolcite] = ACTIONS(6505), - [anon_sym_BSLASHsvolcite] = ACTIONS(6505), - [anon_sym_BSLASHSvolcite] = ACTIONS(6505), - [anon_sym_BSLASHtvolcite] = ACTIONS(6505), - [anon_sym_BSLASHTvolcite] = ACTIONS(6505), - [anon_sym_BSLASHavolcite] = ACTIONS(6505), - [anon_sym_BSLASHAvolcite] = ACTIONS(6505), - [anon_sym_BSLASHnotecite] = ACTIONS(6505), - [anon_sym_BSLASHNotecite] = ACTIONS(6505), - [anon_sym_BSLASHpnotecite] = ACTIONS(6505), - [anon_sym_BSLASHPnotecite] = ACTIONS(6505), - [anon_sym_BSLASHfnotecite] = ACTIONS(6505), - [anon_sym_BSLASHlabel] = ACTIONS(6505), - [anon_sym_BSLASHref] = ACTIONS(6505), - [anon_sym_BSLASHeqref] = ACTIONS(6505), - [anon_sym_BSLASHvref] = ACTIONS(6505), - [anon_sym_BSLASHVref] = ACTIONS(6505), - [anon_sym_BSLASHautoref] = ACTIONS(6505), - [anon_sym_BSLASHpageref] = ACTIONS(6505), - [anon_sym_BSLASHcref] = ACTIONS(6505), - [anon_sym_BSLASHCref] = ACTIONS(6505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnameCref] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHlabelcref] = ACTIONS(6505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCrefrange] = ACTIONS(6505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnewlabel] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6507), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHdef] = ACTIONS(6505), - [anon_sym_BSLASHlet] = ACTIONS(6505), - [anon_sym_BSLASHleft] = ACTIONS(6505), - [anon_sym_BSLASHbig] = ACTIONS(6505), - [anon_sym_BSLASHBig] = ACTIONS(6505), - [anon_sym_BSLASHbigg] = ACTIONS(6505), - [anon_sym_BSLASHBigg] = ACTIONS(6505), - [anon_sym_BSLASHbigl] = ACTIONS(6505), - [anon_sym_BSLASHBigl] = ACTIONS(6505), - [anon_sym_BSLASHbiggl] = ACTIONS(6505), - [anon_sym_BSLASHBiggl] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6505), - [anon_sym_BSLASHgls] = ACTIONS(6505), - [anon_sym_BSLASHGls] = ACTIONS(6505), - [anon_sym_BSLASHGLS] = ACTIONS(6505), - [anon_sym_BSLASHglspl] = ACTIONS(6505), - [anon_sym_BSLASHGlspl] = ACTIONS(6505), - [anon_sym_BSLASHGLSpl] = ACTIONS(6505), - [anon_sym_BSLASHglsdisp] = ACTIONS(6505), - [anon_sym_BSLASHglslink] = ACTIONS(6505), - [anon_sym_BSLASHglstext] = ACTIONS(6505), - [anon_sym_BSLASHGlstext] = ACTIONS(6505), - [anon_sym_BSLASHGLStext] = ACTIONS(6505), - [anon_sym_BSLASHglsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6505), - [anon_sym_BSLASHglsplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSplural] = ACTIONS(6505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHglsname] = ACTIONS(6505), - [anon_sym_BSLASHGlsname] = ACTIONS(6505), - [anon_sym_BSLASHGLSname] = ACTIONS(6505), - [anon_sym_BSLASHglssymbol] = ACTIONS(6505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6505), - [anon_sym_BSLASHglsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6505), - [anon_sym_BSLASHglsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6505), - [anon_sym_BSLASHglsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6505), - [anon_sym_BSLASHglsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6505), - [anon_sym_BSLASHglsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6505), - [anon_sym_BSLASHnewacronym] = ACTIONS(6505), - [anon_sym_BSLASHacrshort] = ACTIONS(6505), - [anon_sym_BSLASHAcrshort] = ACTIONS(6505), - [anon_sym_BSLASHACRshort] = ACTIONS(6505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6505), - [anon_sym_BSLASHacrlong] = ACTIONS(6505), - [anon_sym_BSLASHAcrlong] = ACTIONS(6505), - [anon_sym_BSLASHACRlong] = ACTIONS(6505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6505), - [anon_sym_BSLASHacrfull] = ACTIONS(6505), - [anon_sym_BSLASHAcrfull] = ACTIONS(6505), - [anon_sym_BSLASHACRfull] = ACTIONS(6505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6505), - [anon_sym_BSLASHacs] = ACTIONS(6505), - [anon_sym_BSLASHAcs] = ACTIONS(6505), - [anon_sym_BSLASHacsp] = ACTIONS(6505), - [anon_sym_BSLASHAcsp] = ACTIONS(6505), - [anon_sym_BSLASHacl] = ACTIONS(6505), - [anon_sym_BSLASHAcl] = ACTIONS(6505), - [anon_sym_BSLASHaclp] = ACTIONS(6505), - [anon_sym_BSLASHAclp] = ACTIONS(6505), - [anon_sym_BSLASHacf] = ACTIONS(6505), - [anon_sym_BSLASHAcf] = ACTIONS(6505), - [anon_sym_BSLASHacfp] = ACTIONS(6505), - [anon_sym_BSLASHAcfp] = ACTIONS(6505), - [anon_sym_BSLASHac] = ACTIONS(6505), - [anon_sym_BSLASHAc] = ACTIONS(6505), - [anon_sym_BSLASHacp] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6505), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6505), - [anon_sym_BSLASHcolor] = ACTIONS(6505), - [anon_sym_BSLASHcolorbox] = ACTIONS(6505), - [anon_sym_BSLASHtextcolor] = ACTIONS(6505), - [anon_sym_BSLASHpagecolor] = ACTIONS(6505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6505), - [anon_sym_BSLASHtext] = ACTIONS(6505), - [anon_sym_BSLASHintertext] = ACTIONS(6505), - [anon_sym_shortintertext] = ACTIONS(6505), - }, - [1610] = { - [sym_command_name] = ACTIONS(6425), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6425), - [anon_sym_LBRACK] = ACTIONS(6427), - [anon_sym_RBRACK] = ACTIONS(6427), - [anon_sym_COMMA] = ACTIONS(6427), - [anon_sym_EQ] = ACTIONS(6427), - [anon_sym_LPAREN] = ACTIONS(6427), - [anon_sym_RPAREN] = ACTIONS(6427), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(6427), - [sym_word] = ACTIONS(6425), - [sym_placeholder] = ACTIONS(6427), - [anon_sym_PLUS] = ACTIONS(6427), - [anon_sym_DASH] = ACTIONS(6427), - [anon_sym_STAR] = ACTIONS(6427), - [anon_sym_SLASH] = ACTIONS(6427), - [anon_sym_LT] = ACTIONS(6425), - [anon_sym_GT] = ACTIONS(6425), - [anon_sym_BANG] = ACTIONS(6425), - [anon_sym_PIPE] = ACTIONS(6425), - [anon_sym_COLON] = ACTIONS(6425), - [anon_sym_SQUOTE] = ACTIONS(6425), - [anon_sym__] = ACTIONS(6427), - [anon_sym_CARET] = ACTIONS(6427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6427), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6427), - [anon_sym_DOLLAR] = ACTIONS(6425), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6427), - [anon_sym_BSLASHtitle] = ACTIONS(6425), - [anon_sym_BSLASHauthor] = ACTIONS(6425), - [anon_sym_BSLASHusepackage] = ACTIONS(6425), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6425), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6425), - [anon_sym_BSLASHinclude] = ACTIONS(6425), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6425), - [anon_sym_BSLASHinput] = ACTIONS(6425), - [anon_sym_BSLASHsubfile] = ACTIONS(6425), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6425), - [anon_sym_BSLASHbibliography] = ACTIONS(6425), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6425), - [anon_sym_BSLASHincludesvg] = ACTIONS(6425), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6425), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6425), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6425), - [anon_sym_BSLASHimport] = ACTIONS(6425), - [anon_sym_BSLASHsubimport] = ACTIONS(6425), - [anon_sym_BSLASHinputfrom] = ACTIONS(6425), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6425), - [anon_sym_BSLASHincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHcaption] = ACTIONS(6425), - [anon_sym_BSLASHcite] = ACTIONS(6425), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCite] = ACTIONS(6425), - [anon_sym_BSLASHnocite] = ACTIONS(6425), - [anon_sym_BSLASHcitet] = ACTIONS(6425), - [anon_sym_BSLASHcitep] = ACTIONS(6425), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteauthor] = ACTIONS(6425), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6425), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitetitle] = ACTIONS(6425), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteyear] = ACTIONS(6425), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitedate] = ACTIONS(6425), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteurl] = ACTIONS(6425), - [anon_sym_BSLASHfullcite] = ACTIONS(6425), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6425), - [anon_sym_BSLASHcitealt] = ACTIONS(6425), - [anon_sym_BSLASHcitealp] = ACTIONS(6425), - [anon_sym_BSLASHcitetext] = ACTIONS(6425), - [anon_sym_BSLASHparencite] = ACTIONS(6425), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHParencite] = ACTIONS(6425), - [anon_sym_BSLASHfootcite] = ACTIONS(6425), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6425), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6425), - [anon_sym_BSLASHtextcite] = ACTIONS(6425), - [anon_sym_BSLASHTextcite] = ACTIONS(6425), - [anon_sym_BSLASHsmartcite] = ACTIONS(6425), - [anon_sym_BSLASHSmartcite] = ACTIONS(6425), - [anon_sym_BSLASHsupercite] = ACTIONS(6425), - [anon_sym_BSLASHautocite] = ACTIONS(6425), - [anon_sym_BSLASHAutocite] = ACTIONS(6425), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHvolcite] = ACTIONS(6425), - [anon_sym_BSLASHVolcite] = ACTIONS(6425), - [anon_sym_BSLASHpvolcite] = ACTIONS(6425), - [anon_sym_BSLASHPvolcite] = ACTIONS(6425), - [anon_sym_BSLASHfvolcite] = ACTIONS(6425), - [anon_sym_BSLASHftvolcite] = ACTIONS(6425), - [anon_sym_BSLASHsvolcite] = ACTIONS(6425), - [anon_sym_BSLASHSvolcite] = ACTIONS(6425), - [anon_sym_BSLASHtvolcite] = ACTIONS(6425), - [anon_sym_BSLASHTvolcite] = ACTIONS(6425), - [anon_sym_BSLASHavolcite] = ACTIONS(6425), - [anon_sym_BSLASHAvolcite] = ACTIONS(6425), - [anon_sym_BSLASHnotecite] = ACTIONS(6425), - [anon_sym_BSLASHNotecite] = ACTIONS(6425), - [anon_sym_BSLASHpnotecite] = ACTIONS(6425), - [anon_sym_BSLASHPnotecite] = ACTIONS(6425), - [anon_sym_BSLASHfnotecite] = ACTIONS(6425), - [anon_sym_BSLASHlabel] = ACTIONS(6425), - [anon_sym_BSLASHref] = ACTIONS(6425), - [anon_sym_BSLASHeqref] = ACTIONS(6425), - [anon_sym_BSLASHvref] = ACTIONS(6425), - [anon_sym_BSLASHVref] = ACTIONS(6425), - [anon_sym_BSLASHautoref] = ACTIONS(6425), - [anon_sym_BSLASHpageref] = ACTIONS(6425), - [anon_sym_BSLASHcref] = ACTIONS(6425), - [anon_sym_BSLASHCref] = ACTIONS(6425), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnameCref] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHlabelcref] = ACTIONS(6425), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCrefrange] = ACTIONS(6425), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnewlabel] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6425), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6425), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6427), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHdef] = ACTIONS(6425), - [anon_sym_BSLASHlet] = ACTIONS(6425), - [anon_sym_BSLASHleft] = ACTIONS(6425), - [anon_sym_BSLASHbig] = ACTIONS(6425), - [anon_sym_BSLASHBig] = ACTIONS(6425), - [anon_sym_BSLASHbigg] = ACTIONS(6425), - [anon_sym_BSLASHBigg] = ACTIONS(6425), - [anon_sym_BSLASHbigl] = ACTIONS(6425), - [anon_sym_BSLASHBigl] = ACTIONS(6425), - [anon_sym_BSLASHbiggl] = ACTIONS(6425), - [anon_sym_BSLASHBiggl] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6425), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6425), - [anon_sym_BSLASHgls] = ACTIONS(6425), - [anon_sym_BSLASHGls] = ACTIONS(6425), - [anon_sym_BSLASHGLS] = ACTIONS(6425), - [anon_sym_BSLASHglspl] = ACTIONS(6425), - [anon_sym_BSLASHGlspl] = ACTIONS(6425), - [anon_sym_BSLASHGLSpl] = ACTIONS(6425), - [anon_sym_BSLASHglsdisp] = ACTIONS(6425), - [anon_sym_BSLASHglslink] = ACTIONS(6425), - [anon_sym_BSLASHglstext] = ACTIONS(6425), - [anon_sym_BSLASHGlstext] = ACTIONS(6425), - [anon_sym_BSLASHGLStext] = ACTIONS(6425), - [anon_sym_BSLASHglsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6425), - [anon_sym_BSLASHglsplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSplural] = ACTIONS(6425), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHglsname] = ACTIONS(6425), - [anon_sym_BSLASHGlsname] = ACTIONS(6425), - [anon_sym_BSLASHGLSname] = ACTIONS(6425), - [anon_sym_BSLASHglssymbol] = ACTIONS(6425), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6425), - [anon_sym_BSLASHglsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6425), - [anon_sym_BSLASHglsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6425), - [anon_sym_BSLASHglsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6425), - [anon_sym_BSLASHglsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6425), - [anon_sym_BSLASHglsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6425), - [anon_sym_BSLASHnewacronym] = ACTIONS(6425), - [anon_sym_BSLASHacrshort] = ACTIONS(6425), - [anon_sym_BSLASHAcrshort] = ACTIONS(6425), - [anon_sym_BSLASHACRshort] = ACTIONS(6425), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6425), - [anon_sym_BSLASHacrlong] = ACTIONS(6425), - [anon_sym_BSLASHAcrlong] = ACTIONS(6425), - [anon_sym_BSLASHACRlong] = ACTIONS(6425), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6425), - [anon_sym_BSLASHacrfull] = ACTIONS(6425), - [anon_sym_BSLASHAcrfull] = ACTIONS(6425), - [anon_sym_BSLASHACRfull] = ACTIONS(6425), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6425), - [anon_sym_BSLASHacs] = ACTIONS(6425), - [anon_sym_BSLASHAcs] = ACTIONS(6425), - [anon_sym_BSLASHacsp] = ACTIONS(6425), - [anon_sym_BSLASHAcsp] = ACTIONS(6425), - [anon_sym_BSLASHacl] = ACTIONS(6425), - [anon_sym_BSLASHAcl] = ACTIONS(6425), - [anon_sym_BSLASHaclp] = ACTIONS(6425), - [anon_sym_BSLASHAclp] = ACTIONS(6425), - [anon_sym_BSLASHacf] = ACTIONS(6425), - [anon_sym_BSLASHAcf] = ACTIONS(6425), - [anon_sym_BSLASHacfp] = ACTIONS(6425), - [anon_sym_BSLASHAcfp] = ACTIONS(6425), - [anon_sym_BSLASHac] = ACTIONS(6425), - [anon_sym_BSLASHAc] = ACTIONS(6425), - [anon_sym_BSLASHacp] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6425), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6425), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6425), - [anon_sym_BSLASHcolor] = ACTIONS(6425), - [anon_sym_BSLASHcolorbox] = ACTIONS(6425), - [anon_sym_BSLASHtextcolor] = ACTIONS(6425), - [anon_sym_BSLASHpagecolor] = ACTIONS(6425), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6425), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6425), - [anon_sym_BSLASHtext] = ACTIONS(6425), - [anon_sym_BSLASHintertext] = ACTIONS(6425), - [anon_sym_shortintertext] = ACTIONS(6425), - }, - [1611] = { - [sym_command_name] = ACTIONS(6421), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6421), - [anon_sym_LBRACK] = ACTIONS(6423), - [anon_sym_RBRACK] = ACTIONS(6423), - [anon_sym_COMMA] = ACTIONS(6423), - [anon_sym_EQ] = ACTIONS(6423), - [anon_sym_LPAREN] = ACTIONS(6423), - [anon_sym_RPAREN] = ACTIONS(6423), - [anon_sym_LBRACE] = ACTIONS(6423), - [anon_sym_RBRACE] = ACTIONS(6423), - [sym_word] = ACTIONS(6421), - [sym_placeholder] = ACTIONS(6423), - [anon_sym_PLUS] = ACTIONS(6423), - [anon_sym_DASH] = ACTIONS(6423), - [anon_sym_STAR] = ACTIONS(6423), - [anon_sym_SLASH] = ACTIONS(6423), - [anon_sym_LT] = ACTIONS(6421), - [anon_sym_GT] = ACTIONS(6421), - [anon_sym_BANG] = ACTIONS(6421), - [anon_sym_PIPE] = ACTIONS(6421), - [anon_sym_COLON] = ACTIONS(6421), - [anon_sym_SQUOTE] = ACTIONS(6421), - [anon_sym__] = ACTIONS(6423), - [anon_sym_CARET] = ACTIONS(6423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6423), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6423), - [anon_sym_DOLLAR] = ACTIONS(6421), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6423), - [anon_sym_BSLASHtitle] = ACTIONS(6421), - [anon_sym_BSLASHauthor] = ACTIONS(6421), - [anon_sym_BSLASHusepackage] = ACTIONS(6421), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6421), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6421), - [anon_sym_BSLASHinclude] = ACTIONS(6421), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6421), - [anon_sym_BSLASHinput] = ACTIONS(6421), - [anon_sym_BSLASHsubfile] = ACTIONS(6421), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6421), - [anon_sym_BSLASHbibliography] = ACTIONS(6421), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6421), - [anon_sym_BSLASHincludesvg] = ACTIONS(6421), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6421), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6421), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6421), - [anon_sym_BSLASHimport] = ACTIONS(6421), - [anon_sym_BSLASHsubimport] = ACTIONS(6421), - [anon_sym_BSLASHinputfrom] = ACTIONS(6421), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6421), - [anon_sym_BSLASHincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHcaption] = ACTIONS(6421), - [anon_sym_BSLASHcite] = ACTIONS(6421), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCite] = ACTIONS(6421), - [anon_sym_BSLASHnocite] = ACTIONS(6421), - [anon_sym_BSLASHcitet] = ACTIONS(6421), - [anon_sym_BSLASHcitep] = ACTIONS(6421), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteauthor] = ACTIONS(6421), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6421), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitetitle] = ACTIONS(6421), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteyear] = ACTIONS(6421), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitedate] = ACTIONS(6421), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteurl] = ACTIONS(6421), - [anon_sym_BSLASHfullcite] = ACTIONS(6421), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6421), - [anon_sym_BSLASHcitealt] = ACTIONS(6421), - [anon_sym_BSLASHcitealp] = ACTIONS(6421), - [anon_sym_BSLASHcitetext] = ACTIONS(6421), - [anon_sym_BSLASHparencite] = ACTIONS(6421), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHParencite] = ACTIONS(6421), - [anon_sym_BSLASHfootcite] = ACTIONS(6421), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6421), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6421), - [anon_sym_BSLASHtextcite] = ACTIONS(6421), - [anon_sym_BSLASHTextcite] = ACTIONS(6421), - [anon_sym_BSLASHsmartcite] = ACTIONS(6421), - [anon_sym_BSLASHSmartcite] = ACTIONS(6421), - [anon_sym_BSLASHsupercite] = ACTIONS(6421), - [anon_sym_BSLASHautocite] = ACTIONS(6421), - [anon_sym_BSLASHAutocite] = ACTIONS(6421), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHvolcite] = ACTIONS(6421), - [anon_sym_BSLASHVolcite] = ACTIONS(6421), - [anon_sym_BSLASHpvolcite] = ACTIONS(6421), - [anon_sym_BSLASHPvolcite] = ACTIONS(6421), - [anon_sym_BSLASHfvolcite] = ACTIONS(6421), - [anon_sym_BSLASHftvolcite] = ACTIONS(6421), - [anon_sym_BSLASHsvolcite] = ACTIONS(6421), - [anon_sym_BSLASHSvolcite] = ACTIONS(6421), - [anon_sym_BSLASHtvolcite] = ACTIONS(6421), - [anon_sym_BSLASHTvolcite] = ACTIONS(6421), - [anon_sym_BSLASHavolcite] = ACTIONS(6421), - [anon_sym_BSLASHAvolcite] = ACTIONS(6421), - [anon_sym_BSLASHnotecite] = ACTIONS(6421), - [anon_sym_BSLASHNotecite] = ACTIONS(6421), - [anon_sym_BSLASHpnotecite] = ACTIONS(6421), - [anon_sym_BSLASHPnotecite] = ACTIONS(6421), - [anon_sym_BSLASHfnotecite] = ACTIONS(6421), - [anon_sym_BSLASHlabel] = ACTIONS(6421), - [anon_sym_BSLASHref] = ACTIONS(6421), - [anon_sym_BSLASHeqref] = ACTIONS(6421), - [anon_sym_BSLASHvref] = ACTIONS(6421), - [anon_sym_BSLASHVref] = ACTIONS(6421), - [anon_sym_BSLASHautoref] = ACTIONS(6421), - [anon_sym_BSLASHpageref] = ACTIONS(6421), - [anon_sym_BSLASHcref] = ACTIONS(6421), - [anon_sym_BSLASHCref] = ACTIONS(6421), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnameCref] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHlabelcref] = ACTIONS(6421), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCrefrange] = ACTIONS(6421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnewlabel] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6421), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6421), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6423), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHdef] = ACTIONS(6421), - [anon_sym_BSLASHlet] = ACTIONS(6421), - [anon_sym_BSLASHleft] = ACTIONS(6421), - [anon_sym_BSLASHbig] = ACTIONS(6421), - [anon_sym_BSLASHBig] = ACTIONS(6421), - [anon_sym_BSLASHbigg] = ACTIONS(6421), - [anon_sym_BSLASHBigg] = ACTIONS(6421), - [anon_sym_BSLASHbigl] = ACTIONS(6421), - [anon_sym_BSLASHBigl] = ACTIONS(6421), - [anon_sym_BSLASHbiggl] = ACTIONS(6421), - [anon_sym_BSLASHBiggl] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6421), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6421), - [anon_sym_BSLASHgls] = ACTIONS(6421), - [anon_sym_BSLASHGls] = ACTIONS(6421), - [anon_sym_BSLASHGLS] = ACTIONS(6421), - [anon_sym_BSLASHglspl] = ACTIONS(6421), - [anon_sym_BSLASHGlspl] = ACTIONS(6421), - [anon_sym_BSLASHGLSpl] = ACTIONS(6421), - [anon_sym_BSLASHglsdisp] = ACTIONS(6421), - [anon_sym_BSLASHglslink] = ACTIONS(6421), - [anon_sym_BSLASHglstext] = ACTIONS(6421), - [anon_sym_BSLASHGlstext] = ACTIONS(6421), - [anon_sym_BSLASHGLStext] = ACTIONS(6421), - [anon_sym_BSLASHglsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6421), - [anon_sym_BSLASHglsplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSplural] = ACTIONS(6421), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHglsname] = ACTIONS(6421), - [anon_sym_BSLASHGlsname] = ACTIONS(6421), - [anon_sym_BSLASHGLSname] = ACTIONS(6421), - [anon_sym_BSLASHglssymbol] = ACTIONS(6421), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6421), - [anon_sym_BSLASHglsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6421), - [anon_sym_BSLASHglsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6421), - [anon_sym_BSLASHglsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6421), - [anon_sym_BSLASHglsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6421), - [anon_sym_BSLASHglsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6421), - [anon_sym_BSLASHnewacronym] = ACTIONS(6421), - [anon_sym_BSLASHacrshort] = ACTIONS(6421), - [anon_sym_BSLASHAcrshort] = ACTIONS(6421), - [anon_sym_BSLASHACRshort] = ACTIONS(6421), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6421), - [anon_sym_BSLASHacrlong] = ACTIONS(6421), - [anon_sym_BSLASHAcrlong] = ACTIONS(6421), - [anon_sym_BSLASHACRlong] = ACTIONS(6421), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6421), - [anon_sym_BSLASHacrfull] = ACTIONS(6421), - [anon_sym_BSLASHAcrfull] = ACTIONS(6421), - [anon_sym_BSLASHACRfull] = ACTIONS(6421), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6421), - [anon_sym_BSLASHacs] = ACTIONS(6421), - [anon_sym_BSLASHAcs] = ACTIONS(6421), - [anon_sym_BSLASHacsp] = ACTIONS(6421), - [anon_sym_BSLASHAcsp] = ACTIONS(6421), - [anon_sym_BSLASHacl] = ACTIONS(6421), - [anon_sym_BSLASHAcl] = ACTIONS(6421), - [anon_sym_BSLASHaclp] = ACTIONS(6421), - [anon_sym_BSLASHAclp] = ACTIONS(6421), - [anon_sym_BSLASHacf] = ACTIONS(6421), - [anon_sym_BSLASHAcf] = ACTIONS(6421), - [anon_sym_BSLASHacfp] = ACTIONS(6421), - [anon_sym_BSLASHAcfp] = ACTIONS(6421), - [anon_sym_BSLASHac] = ACTIONS(6421), - [anon_sym_BSLASHAc] = ACTIONS(6421), - [anon_sym_BSLASHacp] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6421), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6421), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6421), - [anon_sym_BSLASHcolor] = ACTIONS(6421), - [anon_sym_BSLASHcolorbox] = ACTIONS(6421), - [anon_sym_BSLASHtextcolor] = ACTIONS(6421), - [anon_sym_BSLASHpagecolor] = ACTIONS(6421), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6421), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6421), - [anon_sym_BSLASHtext] = ACTIONS(6421), - [anon_sym_BSLASHintertext] = ACTIONS(6421), - [anon_sym_shortintertext] = ACTIONS(6421), - }, - [1612] = { - [sym_command_name] = ACTIONS(6417), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6417), - [anon_sym_LBRACK] = ACTIONS(6419), - [anon_sym_RBRACK] = ACTIONS(6419), - [anon_sym_COMMA] = ACTIONS(6419), - [anon_sym_EQ] = ACTIONS(6419), - [anon_sym_LPAREN] = ACTIONS(6419), - [anon_sym_RPAREN] = ACTIONS(6419), - [anon_sym_LBRACE] = ACTIONS(6419), - [anon_sym_RBRACE] = ACTIONS(6419), - [sym_word] = ACTIONS(6417), - [sym_placeholder] = ACTIONS(6419), - [anon_sym_PLUS] = ACTIONS(6419), - [anon_sym_DASH] = ACTIONS(6419), - [anon_sym_STAR] = ACTIONS(6419), - [anon_sym_SLASH] = ACTIONS(6419), - [anon_sym_LT] = ACTIONS(6417), - [anon_sym_GT] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(6417), - [anon_sym_PIPE] = ACTIONS(6417), - [anon_sym_COLON] = ACTIONS(6417), - [anon_sym_SQUOTE] = ACTIONS(6417), - [anon_sym__] = ACTIONS(6419), - [anon_sym_CARET] = ACTIONS(6419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6419), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6419), - [anon_sym_DOLLAR] = ACTIONS(6417), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6419), - [anon_sym_BSLASHtitle] = ACTIONS(6417), - [anon_sym_BSLASHauthor] = ACTIONS(6417), - [anon_sym_BSLASHusepackage] = ACTIONS(6417), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6417), - [anon_sym_BSLASHinclude] = ACTIONS(6417), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6417), - [anon_sym_BSLASHinput] = ACTIONS(6417), - [anon_sym_BSLASHsubfile] = ACTIONS(6417), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6417), - [anon_sym_BSLASHbibliography] = ACTIONS(6417), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6417), - [anon_sym_BSLASHincludesvg] = ACTIONS(6417), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6417), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6417), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6417), - [anon_sym_BSLASHimport] = ACTIONS(6417), - [anon_sym_BSLASHsubimport] = ACTIONS(6417), - [anon_sym_BSLASHinputfrom] = ACTIONS(6417), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6417), - [anon_sym_BSLASHincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHcaption] = ACTIONS(6417), - [anon_sym_BSLASHcite] = ACTIONS(6417), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCite] = ACTIONS(6417), - [anon_sym_BSLASHnocite] = ACTIONS(6417), - [anon_sym_BSLASHcitet] = ACTIONS(6417), - [anon_sym_BSLASHcitep] = ACTIONS(6417), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteauthor] = ACTIONS(6417), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6417), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitetitle] = ACTIONS(6417), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteyear] = ACTIONS(6417), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitedate] = ACTIONS(6417), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteurl] = ACTIONS(6417), - [anon_sym_BSLASHfullcite] = ACTIONS(6417), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6417), - [anon_sym_BSLASHcitealt] = ACTIONS(6417), - [anon_sym_BSLASHcitealp] = ACTIONS(6417), - [anon_sym_BSLASHcitetext] = ACTIONS(6417), - [anon_sym_BSLASHparencite] = ACTIONS(6417), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHParencite] = ACTIONS(6417), - [anon_sym_BSLASHfootcite] = ACTIONS(6417), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6417), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6417), - [anon_sym_BSLASHtextcite] = ACTIONS(6417), - [anon_sym_BSLASHTextcite] = ACTIONS(6417), - [anon_sym_BSLASHsmartcite] = ACTIONS(6417), - [anon_sym_BSLASHSmartcite] = ACTIONS(6417), - [anon_sym_BSLASHsupercite] = ACTIONS(6417), - [anon_sym_BSLASHautocite] = ACTIONS(6417), - [anon_sym_BSLASHAutocite] = ACTIONS(6417), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHvolcite] = ACTIONS(6417), - [anon_sym_BSLASHVolcite] = ACTIONS(6417), - [anon_sym_BSLASHpvolcite] = ACTIONS(6417), - [anon_sym_BSLASHPvolcite] = ACTIONS(6417), - [anon_sym_BSLASHfvolcite] = ACTIONS(6417), - [anon_sym_BSLASHftvolcite] = ACTIONS(6417), - [anon_sym_BSLASHsvolcite] = ACTIONS(6417), - [anon_sym_BSLASHSvolcite] = ACTIONS(6417), - [anon_sym_BSLASHtvolcite] = ACTIONS(6417), - [anon_sym_BSLASHTvolcite] = ACTIONS(6417), - [anon_sym_BSLASHavolcite] = ACTIONS(6417), - [anon_sym_BSLASHAvolcite] = ACTIONS(6417), - [anon_sym_BSLASHnotecite] = ACTIONS(6417), - [anon_sym_BSLASHNotecite] = ACTIONS(6417), - [anon_sym_BSLASHpnotecite] = ACTIONS(6417), - [anon_sym_BSLASHPnotecite] = ACTIONS(6417), - [anon_sym_BSLASHfnotecite] = ACTIONS(6417), - [anon_sym_BSLASHlabel] = ACTIONS(6417), - [anon_sym_BSLASHref] = ACTIONS(6417), - [anon_sym_BSLASHeqref] = ACTIONS(6417), - [anon_sym_BSLASHvref] = ACTIONS(6417), - [anon_sym_BSLASHVref] = ACTIONS(6417), - [anon_sym_BSLASHautoref] = ACTIONS(6417), - [anon_sym_BSLASHpageref] = ACTIONS(6417), - [anon_sym_BSLASHcref] = ACTIONS(6417), - [anon_sym_BSLASHCref] = ACTIONS(6417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnameCref] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHlabelcref] = ACTIONS(6417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCrefrange] = ACTIONS(6417), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnewlabel] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6419), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHdef] = ACTIONS(6417), - [anon_sym_BSLASHlet] = ACTIONS(6417), - [anon_sym_BSLASHleft] = ACTIONS(6417), - [anon_sym_BSLASHbig] = ACTIONS(6417), - [anon_sym_BSLASHBig] = ACTIONS(6417), - [anon_sym_BSLASHbigg] = ACTIONS(6417), - [anon_sym_BSLASHBigg] = ACTIONS(6417), - [anon_sym_BSLASHbigl] = ACTIONS(6417), - [anon_sym_BSLASHBigl] = ACTIONS(6417), - [anon_sym_BSLASHbiggl] = ACTIONS(6417), - [anon_sym_BSLASHBiggl] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6417), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6417), - [anon_sym_BSLASHgls] = ACTIONS(6417), - [anon_sym_BSLASHGls] = ACTIONS(6417), - [anon_sym_BSLASHGLS] = ACTIONS(6417), - [anon_sym_BSLASHglspl] = ACTIONS(6417), - [anon_sym_BSLASHGlspl] = ACTIONS(6417), - [anon_sym_BSLASHGLSpl] = ACTIONS(6417), - [anon_sym_BSLASHglsdisp] = ACTIONS(6417), - [anon_sym_BSLASHglslink] = ACTIONS(6417), - [anon_sym_BSLASHglstext] = ACTIONS(6417), - [anon_sym_BSLASHGlstext] = ACTIONS(6417), - [anon_sym_BSLASHGLStext] = ACTIONS(6417), - [anon_sym_BSLASHglsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6417), - [anon_sym_BSLASHglsplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSplural] = ACTIONS(6417), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHglsname] = ACTIONS(6417), - [anon_sym_BSLASHGlsname] = ACTIONS(6417), - [anon_sym_BSLASHGLSname] = ACTIONS(6417), - [anon_sym_BSLASHglssymbol] = ACTIONS(6417), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6417), - [anon_sym_BSLASHglsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6417), - [anon_sym_BSLASHglsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6417), - [anon_sym_BSLASHglsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6417), - [anon_sym_BSLASHglsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6417), - [anon_sym_BSLASHglsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6417), - [anon_sym_BSLASHnewacronym] = ACTIONS(6417), - [anon_sym_BSLASHacrshort] = ACTIONS(6417), - [anon_sym_BSLASHAcrshort] = ACTIONS(6417), - [anon_sym_BSLASHACRshort] = ACTIONS(6417), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6417), - [anon_sym_BSLASHacrlong] = ACTIONS(6417), - [anon_sym_BSLASHAcrlong] = ACTIONS(6417), - [anon_sym_BSLASHACRlong] = ACTIONS(6417), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6417), - [anon_sym_BSLASHacrfull] = ACTIONS(6417), - [anon_sym_BSLASHAcrfull] = ACTIONS(6417), - [anon_sym_BSLASHACRfull] = ACTIONS(6417), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6417), - [anon_sym_BSLASHacs] = ACTIONS(6417), - [anon_sym_BSLASHAcs] = ACTIONS(6417), - [anon_sym_BSLASHacsp] = ACTIONS(6417), - [anon_sym_BSLASHAcsp] = ACTIONS(6417), - [anon_sym_BSLASHacl] = ACTIONS(6417), - [anon_sym_BSLASHAcl] = ACTIONS(6417), - [anon_sym_BSLASHaclp] = ACTIONS(6417), - [anon_sym_BSLASHAclp] = ACTIONS(6417), - [anon_sym_BSLASHacf] = ACTIONS(6417), - [anon_sym_BSLASHAcf] = ACTIONS(6417), - [anon_sym_BSLASHacfp] = ACTIONS(6417), - [anon_sym_BSLASHAcfp] = ACTIONS(6417), - [anon_sym_BSLASHac] = ACTIONS(6417), - [anon_sym_BSLASHAc] = ACTIONS(6417), - [anon_sym_BSLASHacp] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6417), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6417), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6417), - [anon_sym_BSLASHcolor] = ACTIONS(6417), - [anon_sym_BSLASHcolorbox] = ACTIONS(6417), - [anon_sym_BSLASHtextcolor] = ACTIONS(6417), - [anon_sym_BSLASHpagecolor] = ACTIONS(6417), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6417), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6417), - [anon_sym_BSLASHtext] = ACTIONS(6417), - [anon_sym_BSLASHintertext] = ACTIONS(6417), - [anon_sym_shortintertext] = ACTIONS(6417), - }, - [1613] = { - [sym_command_name] = ACTIONS(6341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(6343), - [anon_sym_RBRACK] = ACTIONS(6343), - [anon_sym_COMMA] = ACTIONS(6343), - [anon_sym_EQ] = ACTIONS(6343), - [anon_sym_LPAREN] = ACTIONS(6343), - [anon_sym_RPAREN] = ACTIONS(6343), - [anon_sym_LBRACE] = ACTIONS(6343), - [sym_word] = ACTIONS(6341), - [sym_placeholder] = ACTIONS(6343), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_LT] = ACTIONS(6341), - [anon_sym_GT] = ACTIONS(6341), - [anon_sym_BANG] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_SQUOTE] = ACTIONS(6341), - [anon_sym__] = ACTIONS(6343), - [anon_sym_CARET] = ACTIONS(6343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6343), - [anon_sym_DOLLAR] = ACTIONS(6341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6343), - [anon_sym_BSLASHbegin] = ACTIONS(6341), - [anon_sym_BSLASHtitle] = ACTIONS(6341), - [anon_sym_BSLASHauthor] = ACTIONS(6341), - [anon_sym_BSLASHusepackage] = ACTIONS(6341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6341), - [anon_sym_BSLASHinclude] = ACTIONS(6341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6341), - [anon_sym_BSLASHinput] = ACTIONS(6341), - [anon_sym_BSLASHsubfile] = ACTIONS(6341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6341), - [anon_sym_BSLASHbibliography] = ACTIONS(6341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6341), - [anon_sym_BSLASHincludesvg] = ACTIONS(6341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6341), - [anon_sym_BSLASHimport] = ACTIONS(6341), - [anon_sym_BSLASHsubimport] = ACTIONS(6341), - [anon_sym_BSLASHinputfrom] = ACTIONS(6341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6341), - [anon_sym_BSLASHincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHcaption] = ACTIONS(6341), - [anon_sym_BSLASHcite] = ACTIONS(6341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCite] = ACTIONS(6341), - [anon_sym_BSLASHnocite] = ACTIONS(6341), - [anon_sym_BSLASHcitet] = ACTIONS(6341), - [anon_sym_BSLASHcitep] = ACTIONS(6341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteauthor] = ACTIONS(6341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitetitle] = ACTIONS(6341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteyear] = ACTIONS(6341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitedate] = ACTIONS(6341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteurl] = ACTIONS(6341), - [anon_sym_BSLASHfullcite] = ACTIONS(6341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6341), - [anon_sym_BSLASHcitealt] = ACTIONS(6341), - [anon_sym_BSLASHcitealp] = ACTIONS(6341), - [anon_sym_BSLASHcitetext] = ACTIONS(6341), - [anon_sym_BSLASHparencite] = ACTIONS(6341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHParencite] = ACTIONS(6341), - [anon_sym_BSLASHfootcite] = ACTIONS(6341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6341), - [anon_sym_BSLASHtextcite] = ACTIONS(6341), - [anon_sym_BSLASHTextcite] = ACTIONS(6341), - [anon_sym_BSLASHsmartcite] = ACTIONS(6341), - [anon_sym_BSLASHSmartcite] = ACTIONS(6341), - [anon_sym_BSLASHsupercite] = ACTIONS(6341), - [anon_sym_BSLASHautocite] = ACTIONS(6341), - [anon_sym_BSLASHAutocite] = ACTIONS(6341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHvolcite] = ACTIONS(6341), - [anon_sym_BSLASHVolcite] = ACTIONS(6341), - [anon_sym_BSLASHpvolcite] = ACTIONS(6341), - [anon_sym_BSLASHPvolcite] = ACTIONS(6341), - [anon_sym_BSLASHfvolcite] = ACTIONS(6341), - [anon_sym_BSLASHftvolcite] = ACTIONS(6341), - [anon_sym_BSLASHsvolcite] = ACTIONS(6341), - [anon_sym_BSLASHSvolcite] = ACTIONS(6341), - [anon_sym_BSLASHtvolcite] = ACTIONS(6341), - [anon_sym_BSLASHTvolcite] = ACTIONS(6341), - [anon_sym_BSLASHavolcite] = ACTIONS(6341), - [anon_sym_BSLASHAvolcite] = ACTIONS(6341), - [anon_sym_BSLASHnotecite] = ACTIONS(6341), - [anon_sym_BSLASHNotecite] = ACTIONS(6341), - [anon_sym_BSLASHpnotecite] = ACTIONS(6341), - [anon_sym_BSLASHPnotecite] = ACTIONS(6341), - [anon_sym_BSLASHfnotecite] = ACTIONS(6341), - [anon_sym_BSLASHlabel] = ACTIONS(6341), - [anon_sym_BSLASHref] = ACTIONS(6341), - [anon_sym_BSLASHeqref] = ACTIONS(6341), - [anon_sym_BSLASHvref] = ACTIONS(6341), - [anon_sym_BSLASHVref] = ACTIONS(6341), - [anon_sym_BSLASHautoref] = ACTIONS(6341), - [anon_sym_BSLASHpageref] = ACTIONS(6341), - [anon_sym_BSLASHcref] = ACTIONS(6341), - [anon_sym_BSLASHCref] = ACTIONS(6341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnameCref] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHlabelcref] = ACTIONS(6341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCrefrange] = ACTIONS(6341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnewlabel] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6343), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHdef] = ACTIONS(6341), - [anon_sym_BSLASHlet] = ACTIONS(6341), - [anon_sym_BSLASHleft] = ACTIONS(6341), - [anon_sym_BSLASHbig] = ACTIONS(6341), - [anon_sym_BSLASHBig] = ACTIONS(6341), - [anon_sym_BSLASHbigg] = ACTIONS(6341), - [anon_sym_BSLASHBigg] = ACTIONS(6341), - [anon_sym_BSLASHbigl] = ACTIONS(6341), - [anon_sym_BSLASHBigl] = ACTIONS(6341), - [anon_sym_BSLASHbiggl] = ACTIONS(6341), - [anon_sym_BSLASHBiggl] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6341), - [anon_sym_BSLASHgls] = ACTIONS(6341), - [anon_sym_BSLASHGls] = ACTIONS(6341), - [anon_sym_BSLASHGLS] = ACTIONS(6341), - [anon_sym_BSLASHglspl] = ACTIONS(6341), - [anon_sym_BSLASHGlspl] = ACTIONS(6341), - [anon_sym_BSLASHGLSpl] = ACTIONS(6341), - [anon_sym_BSLASHglsdisp] = ACTIONS(6341), - [anon_sym_BSLASHglslink] = ACTIONS(6341), - [anon_sym_BSLASHglstext] = ACTIONS(6341), - [anon_sym_BSLASHGlstext] = ACTIONS(6341), - [anon_sym_BSLASHGLStext] = ACTIONS(6341), - [anon_sym_BSLASHglsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6341), - [anon_sym_BSLASHglsplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSplural] = ACTIONS(6341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHglsname] = ACTIONS(6341), - [anon_sym_BSLASHGlsname] = ACTIONS(6341), - [anon_sym_BSLASHGLSname] = ACTIONS(6341), - [anon_sym_BSLASHglssymbol] = ACTIONS(6341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6341), - [anon_sym_BSLASHglsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6341), - [anon_sym_BSLASHglsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6341), - [anon_sym_BSLASHglsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6341), - [anon_sym_BSLASHglsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6341), - [anon_sym_BSLASHglsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6341), - [anon_sym_BSLASHnewacronym] = ACTIONS(6341), - [anon_sym_BSLASHacrshort] = ACTIONS(6341), - [anon_sym_BSLASHAcrshort] = ACTIONS(6341), - [anon_sym_BSLASHACRshort] = ACTIONS(6341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6341), - [anon_sym_BSLASHacrlong] = ACTIONS(6341), - [anon_sym_BSLASHAcrlong] = ACTIONS(6341), - [anon_sym_BSLASHACRlong] = ACTIONS(6341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6341), - [anon_sym_BSLASHacrfull] = ACTIONS(6341), - [anon_sym_BSLASHAcrfull] = ACTIONS(6341), - [anon_sym_BSLASHACRfull] = ACTIONS(6341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6341), - [anon_sym_BSLASHacs] = ACTIONS(6341), - [anon_sym_BSLASHAcs] = ACTIONS(6341), - [anon_sym_BSLASHacsp] = ACTIONS(6341), - [anon_sym_BSLASHAcsp] = ACTIONS(6341), - [anon_sym_BSLASHacl] = ACTIONS(6341), - [anon_sym_BSLASHAcl] = ACTIONS(6341), - [anon_sym_BSLASHaclp] = ACTIONS(6341), - [anon_sym_BSLASHAclp] = ACTIONS(6341), - [anon_sym_BSLASHacf] = ACTIONS(6341), - [anon_sym_BSLASHAcf] = ACTIONS(6341), - [anon_sym_BSLASHacfp] = ACTIONS(6341), - [anon_sym_BSLASHAcfp] = ACTIONS(6341), - [anon_sym_BSLASHac] = ACTIONS(6341), - [anon_sym_BSLASHAc] = ACTIONS(6341), - [anon_sym_BSLASHacp] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6341), - [anon_sym_BSLASHcolor] = ACTIONS(6341), - [anon_sym_BSLASHcolorbox] = ACTIONS(6341), - [anon_sym_BSLASHtextcolor] = ACTIONS(6341), - [anon_sym_BSLASHpagecolor] = ACTIONS(6341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6341), - [anon_sym_BSLASHtext] = ACTIONS(6341), - [anon_sym_BSLASHintertext] = ACTIONS(6341), - [anon_sym_shortintertext] = ACTIONS(6341), - }, - [1614] = { - [sym_command_name] = ACTIONS(6121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6121), - [anon_sym_LBRACK] = ACTIONS(6123), - [anon_sym_RBRACK] = ACTIONS(6123), - [anon_sym_COMMA] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(6123), - [anon_sym_LPAREN] = ACTIONS(6123), - [anon_sym_RPAREN] = ACTIONS(6123), - [anon_sym_LBRACE] = ACTIONS(6123), - [anon_sym_RBRACE] = ACTIONS(6123), - [sym_word] = ACTIONS(6121), - [sym_placeholder] = ACTIONS(6123), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6123), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_LT] = ACTIONS(6121), - [anon_sym_GT] = ACTIONS(6121), - [anon_sym_BANG] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_SQUOTE] = ACTIONS(6121), - [anon_sym__] = ACTIONS(6123), - [anon_sym_CARET] = ACTIONS(6123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6123), - [anon_sym_DOLLAR] = ACTIONS(6121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6123), - [anon_sym_BSLASHtitle] = ACTIONS(6121), - [anon_sym_BSLASHauthor] = ACTIONS(6121), - [anon_sym_BSLASHusepackage] = ACTIONS(6121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6121), - [anon_sym_BSLASHinclude] = ACTIONS(6121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6121), - [anon_sym_BSLASHinput] = ACTIONS(6121), - [anon_sym_BSLASHsubfile] = ACTIONS(6121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6121), - [anon_sym_BSLASHbibliography] = ACTIONS(6121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6121), - [anon_sym_BSLASHincludesvg] = ACTIONS(6121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6121), - [anon_sym_BSLASHimport] = ACTIONS(6121), - [anon_sym_BSLASHsubimport] = ACTIONS(6121), - [anon_sym_BSLASHinputfrom] = ACTIONS(6121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6121), - [anon_sym_BSLASHincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHcaption] = ACTIONS(6121), - [anon_sym_BSLASHcite] = ACTIONS(6121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCite] = ACTIONS(6121), - [anon_sym_BSLASHnocite] = ACTIONS(6121), - [anon_sym_BSLASHcitet] = ACTIONS(6121), - [anon_sym_BSLASHcitep] = ACTIONS(6121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteauthor] = ACTIONS(6121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitetitle] = ACTIONS(6121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteyear] = ACTIONS(6121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitedate] = ACTIONS(6121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteurl] = ACTIONS(6121), - [anon_sym_BSLASHfullcite] = ACTIONS(6121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6121), - [anon_sym_BSLASHcitealt] = ACTIONS(6121), - [anon_sym_BSLASHcitealp] = ACTIONS(6121), - [anon_sym_BSLASHcitetext] = ACTIONS(6121), - [anon_sym_BSLASHparencite] = ACTIONS(6121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHParencite] = ACTIONS(6121), - [anon_sym_BSLASHfootcite] = ACTIONS(6121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6121), - [anon_sym_BSLASHtextcite] = ACTIONS(6121), - [anon_sym_BSLASHTextcite] = ACTIONS(6121), - [anon_sym_BSLASHsmartcite] = ACTIONS(6121), - [anon_sym_BSLASHSmartcite] = ACTIONS(6121), - [anon_sym_BSLASHsupercite] = ACTIONS(6121), - [anon_sym_BSLASHautocite] = ACTIONS(6121), - [anon_sym_BSLASHAutocite] = ACTIONS(6121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHvolcite] = ACTIONS(6121), - [anon_sym_BSLASHVolcite] = ACTIONS(6121), - [anon_sym_BSLASHpvolcite] = ACTIONS(6121), - [anon_sym_BSLASHPvolcite] = ACTIONS(6121), - [anon_sym_BSLASHfvolcite] = ACTIONS(6121), - [anon_sym_BSLASHftvolcite] = ACTIONS(6121), - [anon_sym_BSLASHsvolcite] = ACTIONS(6121), - [anon_sym_BSLASHSvolcite] = ACTIONS(6121), - [anon_sym_BSLASHtvolcite] = ACTIONS(6121), - [anon_sym_BSLASHTvolcite] = ACTIONS(6121), - [anon_sym_BSLASHavolcite] = ACTIONS(6121), - [anon_sym_BSLASHAvolcite] = ACTIONS(6121), - [anon_sym_BSLASHnotecite] = ACTIONS(6121), - [anon_sym_BSLASHNotecite] = ACTIONS(6121), - [anon_sym_BSLASHpnotecite] = ACTIONS(6121), - [anon_sym_BSLASHPnotecite] = ACTIONS(6121), - [anon_sym_BSLASHfnotecite] = ACTIONS(6121), - [anon_sym_BSLASHlabel] = ACTIONS(6121), - [anon_sym_BSLASHref] = ACTIONS(6121), - [anon_sym_BSLASHeqref] = ACTIONS(6121), - [anon_sym_BSLASHvref] = ACTIONS(6121), - [anon_sym_BSLASHVref] = ACTIONS(6121), - [anon_sym_BSLASHautoref] = ACTIONS(6121), - [anon_sym_BSLASHpageref] = ACTIONS(6121), - [anon_sym_BSLASHcref] = ACTIONS(6121), - [anon_sym_BSLASHCref] = ACTIONS(6121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnameCref] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHlabelcref] = ACTIONS(6121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCrefrange] = ACTIONS(6121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnewlabel] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6123), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHdef] = ACTIONS(6121), - [anon_sym_BSLASHlet] = ACTIONS(6121), - [anon_sym_BSLASHleft] = ACTIONS(6121), - [anon_sym_BSLASHbig] = ACTIONS(6121), - [anon_sym_BSLASHBig] = ACTIONS(6121), - [anon_sym_BSLASHbigg] = ACTIONS(6121), - [anon_sym_BSLASHBigg] = ACTIONS(6121), - [anon_sym_BSLASHbigl] = ACTIONS(6121), - [anon_sym_BSLASHBigl] = ACTIONS(6121), - [anon_sym_BSLASHbiggl] = ACTIONS(6121), - [anon_sym_BSLASHBiggl] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6121), - [anon_sym_BSLASHgls] = ACTIONS(6121), - [anon_sym_BSLASHGls] = ACTIONS(6121), - [anon_sym_BSLASHGLS] = ACTIONS(6121), - [anon_sym_BSLASHglspl] = ACTIONS(6121), - [anon_sym_BSLASHGlspl] = ACTIONS(6121), - [anon_sym_BSLASHGLSpl] = ACTIONS(6121), - [anon_sym_BSLASHglsdisp] = ACTIONS(6121), - [anon_sym_BSLASHglslink] = ACTIONS(6121), - [anon_sym_BSLASHglstext] = ACTIONS(6121), - [anon_sym_BSLASHGlstext] = ACTIONS(6121), - [anon_sym_BSLASHGLStext] = ACTIONS(6121), - [anon_sym_BSLASHglsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6121), - [anon_sym_BSLASHglsplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSplural] = ACTIONS(6121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHglsname] = ACTIONS(6121), - [anon_sym_BSLASHGlsname] = ACTIONS(6121), - [anon_sym_BSLASHGLSname] = ACTIONS(6121), - [anon_sym_BSLASHglssymbol] = ACTIONS(6121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6121), - [anon_sym_BSLASHglsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6121), - [anon_sym_BSLASHglsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6121), - [anon_sym_BSLASHglsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6121), - [anon_sym_BSLASHglsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6121), - [anon_sym_BSLASHglsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6121), - [anon_sym_BSLASHnewacronym] = ACTIONS(6121), - [anon_sym_BSLASHacrshort] = ACTIONS(6121), - [anon_sym_BSLASHAcrshort] = ACTIONS(6121), - [anon_sym_BSLASHACRshort] = ACTIONS(6121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6121), - [anon_sym_BSLASHacrlong] = ACTIONS(6121), - [anon_sym_BSLASHAcrlong] = ACTIONS(6121), - [anon_sym_BSLASHACRlong] = ACTIONS(6121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6121), - [anon_sym_BSLASHacrfull] = ACTIONS(6121), - [anon_sym_BSLASHAcrfull] = ACTIONS(6121), - [anon_sym_BSLASHACRfull] = ACTIONS(6121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6121), - [anon_sym_BSLASHacs] = ACTIONS(6121), - [anon_sym_BSLASHAcs] = ACTIONS(6121), - [anon_sym_BSLASHacsp] = ACTIONS(6121), - [anon_sym_BSLASHAcsp] = ACTIONS(6121), - [anon_sym_BSLASHacl] = ACTIONS(6121), - [anon_sym_BSLASHAcl] = ACTIONS(6121), - [anon_sym_BSLASHaclp] = ACTIONS(6121), - [anon_sym_BSLASHAclp] = ACTIONS(6121), - [anon_sym_BSLASHacf] = ACTIONS(6121), - [anon_sym_BSLASHAcf] = ACTIONS(6121), - [anon_sym_BSLASHacfp] = ACTIONS(6121), - [anon_sym_BSLASHAcfp] = ACTIONS(6121), - [anon_sym_BSLASHac] = ACTIONS(6121), - [anon_sym_BSLASHAc] = ACTIONS(6121), - [anon_sym_BSLASHacp] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6121), - [anon_sym_BSLASHcolor] = ACTIONS(6121), - [anon_sym_BSLASHcolorbox] = ACTIONS(6121), - [anon_sym_BSLASHtextcolor] = ACTIONS(6121), - [anon_sym_BSLASHpagecolor] = ACTIONS(6121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6121), - [anon_sym_BSLASHtext] = ACTIONS(6121), - [anon_sym_BSLASHintertext] = ACTIONS(6121), - [anon_sym_shortintertext] = ACTIONS(6121), - }, - [1615] = { - [sym_command_name] = ACTIONS(6337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6337), - [anon_sym_LBRACK] = ACTIONS(6339), - [anon_sym_RBRACK] = ACTIONS(6339), - [anon_sym_COMMA] = ACTIONS(6339), - [anon_sym_EQ] = ACTIONS(6339), - [anon_sym_LPAREN] = ACTIONS(6339), - [anon_sym_RPAREN] = ACTIONS(6339), - [anon_sym_LBRACE] = ACTIONS(6339), - [sym_word] = ACTIONS(6337), - [sym_placeholder] = ACTIONS(6339), - [anon_sym_PLUS] = ACTIONS(6339), - [anon_sym_DASH] = ACTIONS(6339), - [anon_sym_STAR] = ACTIONS(6339), - [anon_sym_SLASH] = ACTIONS(6339), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_COLON] = ACTIONS(6337), - [anon_sym_SQUOTE] = ACTIONS(6337), - [anon_sym__] = ACTIONS(6339), - [anon_sym_CARET] = ACTIONS(6339), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6339), - [anon_sym_DOLLAR] = ACTIONS(6337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6339), - [anon_sym_BSLASHbegin] = ACTIONS(6337), - [anon_sym_BSLASHtitle] = ACTIONS(6337), - [anon_sym_BSLASHauthor] = ACTIONS(6337), - [anon_sym_BSLASHusepackage] = ACTIONS(6337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6337), - [anon_sym_BSLASHinclude] = ACTIONS(6337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6337), - [anon_sym_BSLASHinput] = ACTIONS(6337), - [anon_sym_BSLASHsubfile] = ACTIONS(6337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6337), - [anon_sym_BSLASHbibliography] = ACTIONS(6337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6337), - [anon_sym_BSLASHincludesvg] = ACTIONS(6337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6337), - [anon_sym_BSLASHimport] = ACTIONS(6337), - [anon_sym_BSLASHsubimport] = ACTIONS(6337), - [anon_sym_BSLASHinputfrom] = ACTIONS(6337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6337), - [anon_sym_BSLASHincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHcaption] = ACTIONS(6337), - [anon_sym_BSLASHcite] = ACTIONS(6337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCite] = ACTIONS(6337), - [anon_sym_BSLASHnocite] = ACTIONS(6337), - [anon_sym_BSLASHcitet] = ACTIONS(6337), - [anon_sym_BSLASHcitep] = ACTIONS(6337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteauthor] = ACTIONS(6337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitetitle] = ACTIONS(6337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteyear] = ACTIONS(6337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitedate] = ACTIONS(6337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteurl] = ACTIONS(6337), - [anon_sym_BSLASHfullcite] = ACTIONS(6337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6337), - [anon_sym_BSLASHcitealt] = ACTIONS(6337), - [anon_sym_BSLASHcitealp] = ACTIONS(6337), - [anon_sym_BSLASHcitetext] = ACTIONS(6337), - [anon_sym_BSLASHparencite] = ACTIONS(6337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHParencite] = ACTIONS(6337), - [anon_sym_BSLASHfootcite] = ACTIONS(6337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6337), - [anon_sym_BSLASHtextcite] = ACTIONS(6337), - [anon_sym_BSLASHTextcite] = ACTIONS(6337), - [anon_sym_BSLASHsmartcite] = ACTIONS(6337), - [anon_sym_BSLASHSmartcite] = ACTIONS(6337), - [anon_sym_BSLASHsupercite] = ACTIONS(6337), - [anon_sym_BSLASHautocite] = ACTIONS(6337), - [anon_sym_BSLASHAutocite] = ACTIONS(6337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHvolcite] = ACTIONS(6337), - [anon_sym_BSLASHVolcite] = ACTIONS(6337), - [anon_sym_BSLASHpvolcite] = ACTIONS(6337), - [anon_sym_BSLASHPvolcite] = ACTIONS(6337), - [anon_sym_BSLASHfvolcite] = ACTIONS(6337), - [anon_sym_BSLASHftvolcite] = ACTIONS(6337), - [anon_sym_BSLASHsvolcite] = ACTIONS(6337), - [anon_sym_BSLASHSvolcite] = ACTIONS(6337), - [anon_sym_BSLASHtvolcite] = ACTIONS(6337), - [anon_sym_BSLASHTvolcite] = ACTIONS(6337), - [anon_sym_BSLASHavolcite] = ACTIONS(6337), - [anon_sym_BSLASHAvolcite] = ACTIONS(6337), - [anon_sym_BSLASHnotecite] = ACTIONS(6337), - [anon_sym_BSLASHNotecite] = ACTIONS(6337), - [anon_sym_BSLASHpnotecite] = ACTIONS(6337), - [anon_sym_BSLASHPnotecite] = ACTIONS(6337), - [anon_sym_BSLASHfnotecite] = ACTIONS(6337), - [anon_sym_BSLASHlabel] = ACTIONS(6337), - [anon_sym_BSLASHref] = ACTIONS(6337), - [anon_sym_BSLASHeqref] = ACTIONS(6337), - [anon_sym_BSLASHvref] = ACTIONS(6337), - [anon_sym_BSLASHVref] = ACTIONS(6337), - [anon_sym_BSLASHautoref] = ACTIONS(6337), - [anon_sym_BSLASHpageref] = ACTIONS(6337), - [anon_sym_BSLASHcref] = ACTIONS(6337), - [anon_sym_BSLASHCref] = ACTIONS(6337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnameCref] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHlabelcref] = ACTIONS(6337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCrefrange] = ACTIONS(6337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnewlabel] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6339), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHdef] = ACTIONS(6337), - [anon_sym_BSLASHlet] = ACTIONS(6337), - [anon_sym_BSLASHleft] = ACTIONS(6337), - [anon_sym_BSLASHbig] = ACTIONS(6337), - [anon_sym_BSLASHBig] = ACTIONS(6337), - [anon_sym_BSLASHbigg] = ACTIONS(6337), - [anon_sym_BSLASHBigg] = ACTIONS(6337), - [anon_sym_BSLASHbigl] = ACTIONS(6337), - [anon_sym_BSLASHBigl] = ACTIONS(6337), - [anon_sym_BSLASHbiggl] = ACTIONS(6337), - [anon_sym_BSLASHBiggl] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6337), - [anon_sym_BSLASHgls] = ACTIONS(6337), - [anon_sym_BSLASHGls] = ACTIONS(6337), - [anon_sym_BSLASHGLS] = ACTIONS(6337), - [anon_sym_BSLASHglspl] = ACTIONS(6337), - [anon_sym_BSLASHGlspl] = ACTIONS(6337), - [anon_sym_BSLASHGLSpl] = ACTIONS(6337), - [anon_sym_BSLASHglsdisp] = ACTIONS(6337), - [anon_sym_BSLASHglslink] = ACTIONS(6337), - [anon_sym_BSLASHglstext] = ACTIONS(6337), - [anon_sym_BSLASHGlstext] = ACTIONS(6337), - [anon_sym_BSLASHGLStext] = ACTIONS(6337), - [anon_sym_BSLASHglsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6337), - [anon_sym_BSLASHglsplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSplural] = ACTIONS(6337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHglsname] = ACTIONS(6337), - [anon_sym_BSLASHGlsname] = ACTIONS(6337), - [anon_sym_BSLASHGLSname] = ACTIONS(6337), - [anon_sym_BSLASHglssymbol] = ACTIONS(6337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6337), - [anon_sym_BSLASHglsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6337), - [anon_sym_BSLASHglsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6337), - [anon_sym_BSLASHglsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6337), - [anon_sym_BSLASHglsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6337), - [anon_sym_BSLASHglsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6337), - [anon_sym_BSLASHnewacronym] = ACTIONS(6337), - [anon_sym_BSLASHacrshort] = ACTIONS(6337), - [anon_sym_BSLASHAcrshort] = ACTIONS(6337), - [anon_sym_BSLASHACRshort] = ACTIONS(6337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6337), - [anon_sym_BSLASHacrlong] = ACTIONS(6337), - [anon_sym_BSLASHAcrlong] = ACTIONS(6337), - [anon_sym_BSLASHACRlong] = ACTIONS(6337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6337), - [anon_sym_BSLASHacrfull] = ACTIONS(6337), - [anon_sym_BSLASHAcrfull] = ACTIONS(6337), - [anon_sym_BSLASHACRfull] = ACTIONS(6337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6337), - [anon_sym_BSLASHacs] = ACTIONS(6337), - [anon_sym_BSLASHAcs] = ACTIONS(6337), - [anon_sym_BSLASHacsp] = ACTIONS(6337), - [anon_sym_BSLASHAcsp] = ACTIONS(6337), - [anon_sym_BSLASHacl] = ACTIONS(6337), - [anon_sym_BSLASHAcl] = ACTIONS(6337), - [anon_sym_BSLASHaclp] = ACTIONS(6337), - [anon_sym_BSLASHAclp] = ACTIONS(6337), - [anon_sym_BSLASHacf] = ACTIONS(6337), - [anon_sym_BSLASHAcf] = ACTIONS(6337), - [anon_sym_BSLASHacfp] = ACTIONS(6337), - [anon_sym_BSLASHAcfp] = ACTIONS(6337), - [anon_sym_BSLASHac] = ACTIONS(6337), - [anon_sym_BSLASHAc] = ACTIONS(6337), - [anon_sym_BSLASHacp] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6337), - [anon_sym_BSLASHcolor] = ACTIONS(6337), - [anon_sym_BSLASHcolorbox] = ACTIONS(6337), - [anon_sym_BSLASHtextcolor] = ACTIONS(6337), - [anon_sym_BSLASHpagecolor] = ACTIONS(6337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6337), - [anon_sym_BSLASHtext] = ACTIONS(6337), - [anon_sym_BSLASHintertext] = ACTIONS(6337), - [anon_sym_shortintertext] = ACTIONS(6337), - }, - [1616] = { - [sym_command_name] = ACTIONS(6293), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(6295), - [anon_sym_RBRACK] = ACTIONS(6295), - [anon_sym_COMMA] = ACTIONS(6295), - [anon_sym_EQ] = ACTIONS(6295), - [anon_sym_LPAREN] = ACTIONS(6295), - [anon_sym_RPAREN] = ACTIONS(6295), - [anon_sym_LBRACE] = ACTIONS(6295), - [anon_sym_RBRACE] = ACTIONS(6295), - [sym_word] = ACTIONS(6293), - [sym_placeholder] = ACTIONS(6295), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6295), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_LT] = ACTIONS(6293), - [anon_sym_GT] = ACTIONS(6293), - [anon_sym_BANG] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_SQUOTE] = ACTIONS(6293), - [anon_sym__] = ACTIONS(6295), - [anon_sym_CARET] = ACTIONS(6295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6295), - [anon_sym_DOLLAR] = ACTIONS(6293), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6295), - [anon_sym_BSLASHtitle] = ACTIONS(6293), - [anon_sym_BSLASHauthor] = ACTIONS(6293), - [anon_sym_BSLASHusepackage] = ACTIONS(6293), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6293), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6293), - [anon_sym_BSLASHinclude] = ACTIONS(6293), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6293), - [anon_sym_BSLASHinput] = ACTIONS(6293), - [anon_sym_BSLASHsubfile] = ACTIONS(6293), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6293), - [anon_sym_BSLASHbibliography] = ACTIONS(6293), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6293), - [anon_sym_BSLASHincludesvg] = ACTIONS(6293), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6293), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6293), - [anon_sym_BSLASHimport] = ACTIONS(6293), - [anon_sym_BSLASHsubimport] = ACTIONS(6293), - [anon_sym_BSLASHinputfrom] = ACTIONS(6293), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6293), - [anon_sym_BSLASHincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHcaption] = ACTIONS(6293), - [anon_sym_BSLASHcite] = ACTIONS(6293), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCite] = ACTIONS(6293), - [anon_sym_BSLASHnocite] = ACTIONS(6293), - [anon_sym_BSLASHcitet] = ACTIONS(6293), - [anon_sym_BSLASHcitep] = ACTIONS(6293), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteauthor] = ACTIONS(6293), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6293), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitetitle] = ACTIONS(6293), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteyear] = ACTIONS(6293), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitedate] = ACTIONS(6293), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteurl] = ACTIONS(6293), - [anon_sym_BSLASHfullcite] = ACTIONS(6293), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6293), - [anon_sym_BSLASHcitealt] = ACTIONS(6293), - [anon_sym_BSLASHcitealp] = ACTIONS(6293), - [anon_sym_BSLASHcitetext] = ACTIONS(6293), - [anon_sym_BSLASHparencite] = ACTIONS(6293), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHParencite] = ACTIONS(6293), - [anon_sym_BSLASHfootcite] = ACTIONS(6293), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6293), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6293), - [anon_sym_BSLASHtextcite] = ACTIONS(6293), - [anon_sym_BSLASHTextcite] = ACTIONS(6293), - [anon_sym_BSLASHsmartcite] = ACTIONS(6293), - [anon_sym_BSLASHSmartcite] = ACTIONS(6293), - [anon_sym_BSLASHsupercite] = ACTIONS(6293), - [anon_sym_BSLASHautocite] = ACTIONS(6293), - [anon_sym_BSLASHAutocite] = ACTIONS(6293), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHvolcite] = ACTIONS(6293), - [anon_sym_BSLASHVolcite] = ACTIONS(6293), - [anon_sym_BSLASHpvolcite] = ACTIONS(6293), - [anon_sym_BSLASHPvolcite] = ACTIONS(6293), - [anon_sym_BSLASHfvolcite] = ACTIONS(6293), - [anon_sym_BSLASHftvolcite] = ACTIONS(6293), - [anon_sym_BSLASHsvolcite] = ACTIONS(6293), - [anon_sym_BSLASHSvolcite] = ACTIONS(6293), - [anon_sym_BSLASHtvolcite] = ACTIONS(6293), - [anon_sym_BSLASHTvolcite] = ACTIONS(6293), - [anon_sym_BSLASHavolcite] = ACTIONS(6293), - [anon_sym_BSLASHAvolcite] = ACTIONS(6293), - [anon_sym_BSLASHnotecite] = ACTIONS(6293), - [anon_sym_BSLASHNotecite] = ACTIONS(6293), - [anon_sym_BSLASHpnotecite] = ACTIONS(6293), - [anon_sym_BSLASHPnotecite] = ACTIONS(6293), - [anon_sym_BSLASHfnotecite] = ACTIONS(6293), - [anon_sym_BSLASHlabel] = ACTIONS(6293), - [anon_sym_BSLASHref] = ACTIONS(6293), - [anon_sym_BSLASHeqref] = ACTIONS(6293), - [anon_sym_BSLASHvref] = ACTIONS(6293), - [anon_sym_BSLASHVref] = ACTIONS(6293), - [anon_sym_BSLASHautoref] = ACTIONS(6293), - [anon_sym_BSLASHpageref] = ACTIONS(6293), - [anon_sym_BSLASHcref] = ACTIONS(6293), - [anon_sym_BSLASHCref] = ACTIONS(6293), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnameCref] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHlabelcref] = ACTIONS(6293), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCrefrange] = ACTIONS(6293), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnewlabel] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6293), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6293), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6295), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHdef] = ACTIONS(6293), - [anon_sym_BSLASHlet] = ACTIONS(6293), - [anon_sym_BSLASHleft] = ACTIONS(6293), - [anon_sym_BSLASHbig] = ACTIONS(6293), - [anon_sym_BSLASHBig] = ACTIONS(6293), - [anon_sym_BSLASHbigg] = ACTIONS(6293), - [anon_sym_BSLASHBigg] = ACTIONS(6293), - [anon_sym_BSLASHbigl] = ACTIONS(6293), - [anon_sym_BSLASHBigl] = ACTIONS(6293), - [anon_sym_BSLASHbiggl] = ACTIONS(6293), - [anon_sym_BSLASHBiggl] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6293), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6293), - [anon_sym_BSLASHgls] = ACTIONS(6293), - [anon_sym_BSLASHGls] = ACTIONS(6293), - [anon_sym_BSLASHGLS] = ACTIONS(6293), - [anon_sym_BSLASHglspl] = ACTIONS(6293), - [anon_sym_BSLASHGlspl] = ACTIONS(6293), - [anon_sym_BSLASHGLSpl] = ACTIONS(6293), - [anon_sym_BSLASHglsdisp] = ACTIONS(6293), - [anon_sym_BSLASHglslink] = ACTIONS(6293), - [anon_sym_BSLASHglstext] = ACTIONS(6293), - [anon_sym_BSLASHGlstext] = ACTIONS(6293), - [anon_sym_BSLASHGLStext] = ACTIONS(6293), - [anon_sym_BSLASHglsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6293), - [anon_sym_BSLASHglsplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSplural] = ACTIONS(6293), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHglsname] = ACTIONS(6293), - [anon_sym_BSLASHGlsname] = ACTIONS(6293), - [anon_sym_BSLASHGLSname] = ACTIONS(6293), - [anon_sym_BSLASHglssymbol] = ACTIONS(6293), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6293), - [anon_sym_BSLASHglsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6293), - [anon_sym_BSLASHglsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6293), - [anon_sym_BSLASHglsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6293), - [anon_sym_BSLASHglsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6293), - [anon_sym_BSLASHglsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6293), - [anon_sym_BSLASHnewacronym] = ACTIONS(6293), - [anon_sym_BSLASHacrshort] = ACTIONS(6293), - [anon_sym_BSLASHAcrshort] = ACTIONS(6293), - [anon_sym_BSLASHACRshort] = ACTIONS(6293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6293), - [anon_sym_BSLASHacrlong] = ACTIONS(6293), - [anon_sym_BSLASHAcrlong] = ACTIONS(6293), - [anon_sym_BSLASHACRlong] = ACTIONS(6293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6293), - [anon_sym_BSLASHacrfull] = ACTIONS(6293), - [anon_sym_BSLASHAcrfull] = ACTIONS(6293), - [anon_sym_BSLASHACRfull] = ACTIONS(6293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6293), - [anon_sym_BSLASHacs] = ACTIONS(6293), - [anon_sym_BSLASHAcs] = ACTIONS(6293), - [anon_sym_BSLASHacsp] = ACTIONS(6293), - [anon_sym_BSLASHAcsp] = ACTIONS(6293), - [anon_sym_BSLASHacl] = ACTIONS(6293), - [anon_sym_BSLASHAcl] = ACTIONS(6293), - [anon_sym_BSLASHaclp] = ACTIONS(6293), - [anon_sym_BSLASHAclp] = ACTIONS(6293), - [anon_sym_BSLASHacf] = ACTIONS(6293), - [anon_sym_BSLASHAcf] = ACTIONS(6293), - [anon_sym_BSLASHacfp] = ACTIONS(6293), - [anon_sym_BSLASHAcfp] = ACTIONS(6293), - [anon_sym_BSLASHac] = ACTIONS(6293), - [anon_sym_BSLASHAc] = ACTIONS(6293), - [anon_sym_BSLASHacp] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6293), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6293), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6293), - [anon_sym_BSLASHcolor] = ACTIONS(6293), - [anon_sym_BSLASHcolorbox] = ACTIONS(6293), - [anon_sym_BSLASHtextcolor] = ACTIONS(6293), - [anon_sym_BSLASHpagecolor] = ACTIONS(6293), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6293), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6293), - [anon_sym_BSLASHtext] = ACTIONS(6293), - [anon_sym_BSLASHintertext] = ACTIONS(6293), - [anon_sym_shortintertext] = ACTIONS(6293), - }, - [1617] = { - [sym_command_name] = ACTIONS(6289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(6291), - [anon_sym_RBRACK] = ACTIONS(6291), - [anon_sym_COMMA] = ACTIONS(6291), - [anon_sym_EQ] = ACTIONS(6291), - [anon_sym_LPAREN] = ACTIONS(6291), - [anon_sym_RPAREN] = ACTIONS(6291), - [anon_sym_LBRACE] = ACTIONS(6291), - [anon_sym_RBRACE] = ACTIONS(6291), - [sym_word] = ACTIONS(6289), - [sym_placeholder] = ACTIONS(6291), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6291), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_LT] = ACTIONS(6289), - [anon_sym_GT] = ACTIONS(6289), - [anon_sym_BANG] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_SQUOTE] = ACTIONS(6289), - [anon_sym__] = ACTIONS(6291), - [anon_sym_CARET] = ACTIONS(6291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6291), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6291), - [anon_sym_DOLLAR] = ACTIONS(6289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6291), - [anon_sym_BSLASHtitle] = ACTIONS(6289), - [anon_sym_BSLASHauthor] = ACTIONS(6289), - [anon_sym_BSLASHusepackage] = ACTIONS(6289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), - [anon_sym_BSLASHinclude] = ACTIONS(6289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), - [anon_sym_BSLASHinput] = ACTIONS(6289), - [anon_sym_BSLASHsubfile] = ACTIONS(6289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), - [anon_sym_BSLASHbibliography] = ACTIONS(6289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), - [anon_sym_BSLASHincludesvg] = ACTIONS(6289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), - [anon_sym_BSLASHimport] = ACTIONS(6289), - [anon_sym_BSLASHsubimport] = ACTIONS(6289), - [anon_sym_BSLASHinputfrom] = ACTIONS(6289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), - [anon_sym_BSLASHincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHcaption] = ACTIONS(6289), - [anon_sym_BSLASHcite] = ACTIONS(6289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCite] = ACTIONS(6289), - [anon_sym_BSLASHnocite] = ACTIONS(6289), - [anon_sym_BSLASHcitet] = ACTIONS(6289), - [anon_sym_BSLASHcitep] = ACTIONS(6289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteauthor] = ACTIONS(6289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitetitle] = ACTIONS(6289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteyear] = ACTIONS(6289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitedate] = ACTIONS(6289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteurl] = ACTIONS(6289), - [anon_sym_BSLASHfullcite] = ACTIONS(6289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), - [anon_sym_BSLASHcitealt] = ACTIONS(6289), - [anon_sym_BSLASHcitealp] = ACTIONS(6289), - [anon_sym_BSLASHcitetext] = ACTIONS(6289), - [anon_sym_BSLASHparencite] = ACTIONS(6289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHParencite] = ACTIONS(6289), - [anon_sym_BSLASHfootcite] = ACTIONS(6289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), - [anon_sym_BSLASHtextcite] = ACTIONS(6289), - [anon_sym_BSLASHTextcite] = ACTIONS(6289), - [anon_sym_BSLASHsmartcite] = ACTIONS(6289), - [anon_sym_BSLASHSmartcite] = ACTIONS(6289), - [anon_sym_BSLASHsupercite] = ACTIONS(6289), - [anon_sym_BSLASHautocite] = ACTIONS(6289), - [anon_sym_BSLASHAutocite] = ACTIONS(6289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHvolcite] = ACTIONS(6289), - [anon_sym_BSLASHVolcite] = ACTIONS(6289), - [anon_sym_BSLASHpvolcite] = ACTIONS(6289), - [anon_sym_BSLASHPvolcite] = ACTIONS(6289), - [anon_sym_BSLASHfvolcite] = ACTIONS(6289), - [anon_sym_BSLASHftvolcite] = ACTIONS(6289), - [anon_sym_BSLASHsvolcite] = ACTIONS(6289), - [anon_sym_BSLASHSvolcite] = ACTIONS(6289), - [anon_sym_BSLASHtvolcite] = ACTIONS(6289), - [anon_sym_BSLASHTvolcite] = ACTIONS(6289), - [anon_sym_BSLASHavolcite] = ACTIONS(6289), - [anon_sym_BSLASHAvolcite] = ACTIONS(6289), - [anon_sym_BSLASHnotecite] = ACTIONS(6289), - [anon_sym_BSLASHNotecite] = ACTIONS(6289), - [anon_sym_BSLASHpnotecite] = ACTIONS(6289), - [anon_sym_BSLASHPnotecite] = ACTIONS(6289), - [anon_sym_BSLASHfnotecite] = ACTIONS(6289), - [anon_sym_BSLASHlabel] = ACTIONS(6289), - [anon_sym_BSLASHref] = ACTIONS(6289), - [anon_sym_BSLASHeqref] = ACTIONS(6289), - [anon_sym_BSLASHvref] = ACTIONS(6289), - [anon_sym_BSLASHVref] = ACTIONS(6289), - [anon_sym_BSLASHautoref] = ACTIONS(6289), - [anon_sym_BSLASHpageref] = ACTIONS(6289), - [anon_sym_BSLASHcref] = ACTIONS(6289), - [anon_sym_BSLASHCref] = ACTIONS(6289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnameCref] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHlabelcref] = ACTIONS(6289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCrefrange] = ACTIONS(6289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnewlabel] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHdef] = ACTIONS(6289), - [anon_sym_BSLASHlet] = ACTIONS(6289), - [anon_sym_BSLASHleft] = ACTIONS(6289), - [anon_sym_BSLASHbig] = ACTIONS(6289), - [anon_sym_BSLASHBig] = ACTIONS(6289), - [anon_sym_BSLASHbigg] = ACTIONS(6289), - [anon_sym_BSLASHBigg] = ACTIONS(6289), - [anon_sym_BSLASHbigl] = ACTIONS(6289), - [anon_sym_BSLASHBigl] = ACTIONS(6289), - [anon_sym_BSLASHbiggl] = ACTIONS(6289), - [anon_sym_BSLASHBiggl] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), - [anon_sym_BSLASHgls] = ACTIONS(6289), - [anon_sym_BSLASHGls] = ACTIONS(6289), - [anon_sym_BSLASHGLS] = ACTIONS(6289), - [anon_sym_BSLASHglspl] = ACTIONS(6289), - [anon_sym_BSLASHGlspl] = ACTIONS(6289), - [anon_sym_BSLASHGLSpl] = ACTIONS(6289), - [anon_sym_BSLASHglsdisp] = ACTIONS(6289), - [anon_sym_BSLASHglslink] = ACTIONS(6289), - [anon_sym_BSLASHglstext] = ACTIONS(6289), - [anon_sym_BSLASHGlstext] = ACTIONS(6289), - [anon_sym_BSLASHGLStext] = ACTIONS(6289), - [anon_sym_BSLASHglsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), - [anon_sym_BSLASHglsplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSplural] = ACTIONS(6289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHglsname] = ACTIONS(6289), - [anon_sym_BSLASHGlsname] = ACTIONS(6289), - [anon_sym_BSLASHGLSname] = ACTIONS(6289), - [anon_sym_BSLASHglssymbol] = ACTIONS(6289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), - [anon_sym_BSLASHglsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), - [anon_sym_BSLASHglsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), - [anon_sym_BSLASHglsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), - [anon_sym_BSLASHglsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), - [anon_sym_BSLASHglsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), - [anon_sym_BSLASHnewacronym] = ACTIONS(6289), - [anon_sym_BSLASHacrshort] = ACTIONS(6289), - [anon_sym_BSLASHAcrshort] = ACTIONS(6289), - [anon_sym_BSLASHACRshort] = ACTIONS(6289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), - [anon_sym_BSLASHacrlong] = ACTIONS(6289), - [anon_sym_BSLASHAcrlong] = ACTIONS(6289), - [anon_sym_BSLASHACRlong] = ACTIONS(6289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), - [anon_sym_BSLASHacrfull] = ACTIONS(6289), - [anon_sym_BSLASHAcrfull] = ACTIONS(6289), - [anon_sym_BSLASHACRfull] = ACTIONS(6289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), - [anon_sym_BSLASHacs] = ACTIONS(6289), - [anon_sym_BSLASHAcs] = ACTIONS(6289), - [anon_sym_BSLASHacsp] = ACTIONS(6289), - [anon_sym_BSLASHAcsp] = ACTIONS(6289), - [anon_sym_BSLASHacl] = ACTIONS(6289), - [anon_sym_BSLASHAcl] = ACTIONS(6289), - [anon_sym_BSLASHaclp] = ACTIONS(6289), - [anon_sym_BSLASHAclp] = ACTIONS(6289), - [anon_sym_BSLASHacf] = ACTIONS(6289), - [anon_sym_BSLASHAcf] = ACTIONS(6289), - [anon_sym_BSLASHacfp] = ACTIONS(6289), - [anon_sym_BSLASHAcfp] = ACTIONS(6289), - [anon_sym_BSLASHac] = ACTIONS(6289), - [anon_sym_BSLASHAc] = ACTIONS(6289), - [anon_sym_BSLASHacp] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), - [anon_sym_BSLASHcolor] = ACTIONS(6289), - [anon_sym_BSLASHcolorbox] = ACTIONS(6289), - [anon_sym_BSLASHtextcolor] = ACTIONS(6289), - [anon_sym_BSLASHpagecolor] = ACTIONS(6289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), - [anon_sym_BSLASHtext] = ACTIONS(6289), - [anon_sym_BSLASHintertext] = ACTIONS(6289), - [anon_sym_shortintertext] = ACTIONS(6289), - }, - [1618] = { - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASHbegin] = ACTIONS(195), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [1619] = { - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHbegin] = ACTIONS(199), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [1620] = { - [sym_command_name] = ACTIONS(6157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_EQ] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_LBRACE] = ACTIONS(6159), - [sym_word] = ACTIONS(6157), - [sym_placeholder] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6157), - [anon_sym_GT] = ACTIONS(6157), - [anon_sym_BANG] = ACTIONS(6157), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_SQUOTE] = ACTIONS(6157), - [anon_sym__] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6159), - [anon_sym_DOLLAR] = ACTIONS(6157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6159), - [anon_sym_BSLASHbegin] = ACTIONS(6157), - [anon_sym_BSLASHtitle] = ACTIONS(6157), - [anon_sym_BSLASHauthor] = ACTIONS(6157), - [anon_sym_BSLASHusepackage] = ACTIONS(6157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6157), - [anon_sym_BSLASHinclude] = ACTIONS(6157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6157), - [anon_sym_BSLASHinput] = ACTIONS(6157), - [anon_sym_BSLASHsubfile] = ACTIONS(6157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6157), - [anon_sym_BSLASHbibliography] = ACTIONS(6157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6157), - [anon_sym_BSLASHincludesvg] = ACTIONS(6157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6157), - [anon_sym_BSLASHimport] = ACTIONS(6157), - [anon_sym_BSLASHsubimport] = ACTIONS(6157), - [anon_sym_BSLASHinputfrom] = ACTIONS(6157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6157), - [anon_sym_BSLASHincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHcaption] = ACTIONS(6157), - [anon_sym_BSLASHcite] = ACTIONS(6157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCite] = ACTIONS(6157), - [anon_sym_BSLASHnocite] = ACTIONS(6157), - [anon_sym_BSLASHcitet] = ACTIONS(6157), - [anon_sym_BSLASHcitep] = ACTIONS(6157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteauthor] = ACTIONS(6157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitetitle] = ACTIONS(6157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteyear] = ACTIONS(6157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitedate] = ACTIONS(6157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteurl] = ACTIONS(6157), - [anon_sym_BSLASHfullcite] = ACTIONS(6157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6157), - [anon_sym_BSLASHcitealt] = ACTIONS(6157), - [anon_sym_BSLASHcitealp] = ACTIONS(6157), - [anon_sym_BSLASHcitetext] = ACTIONS(6157), - [anon_sym_BSLASHparencite] = ACTIONS(6157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHParencite] = ACTIONS(6157), - [anon_sym_BSLASHfootcite] = ACTIONS(6157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6157), - [anon_sym_BSLASHtextcite] = ACTIONS(6157), - [anon_sym_BSLASHTextcite] = ACTIONS(6157), - [anon_sym_BSLASHsmartcite] = ACTIONS(6157), - [anon_sym_BSLASHSmartcite] = ACTIONS(6157), - [anon_sym_BSLASHsupercite] = ACTIONS(6157), - [anon_sym_BSLASHautocite] = ACTIONS(6157), - [anon_sym_BSLASHAutocite] = ACTIONS(6157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHvolcite] = ACTIONS(6157), - [anon_sym_BSLASHVolcite] = ACTIONS(6157), - [anon_sym_BSLASHpvolcite] = ACTIONS(6157), - [anon_sym_BSLASHPvolcite] = ACTIONS(6157), - [anon_sym_BSLASHfvolcite] = ACTIONS(6157), - [anon_sym_BSLASHftvolcite] = ACTIONS(6157), - [anon_sym_BSLASHsvolcite] = ACTIONS(6157), - [anon_sym_BSLASHSvolcite] = ACTIONS(6157), - [anon_sym_BSLASHtvolcite] = ACTIONS(6157), - [anon_sym_BSLASHTvolcite] = ACTIONS(6157), - [anon_sym_BSLASHavolcite] = ACTIONS(6157), - [anon_sym_BSLASHAvolcite] = ACTIONS(6157), - [anon_sym_BSLASHnotecite] = ACTIONS(6157), - [anon_sym_BSLASHNotecite] = ACTIONS(6157), - [anon_sym_BSLASHpnotecite] = ACTIONS(6157), - [anon_sym_BSLASHPnotecite] = ACTIONS(6157), - [anon_sym_BSLASHfnotecite] = ACTIONS(6157), - [anon_sym_BSLASHlabel] = ACTIONS(6157), - [anon_sym_BSLASHref] = ACTIONS(6157), - [anon_sym_BSLASHeqref] = ACTIONS(6157), - [anon_sym_BSLASHvref] = ACTIONS(6157), - [anon_sym_BSLASHVref] = ACTIONS(6157), - [anon_sym_BSLASHautoref] = ACTIONS(6157), - [anon_sym_BSLASHpageref] = ACTIONS(6157), - [anon_sym_BSLASHcref] = ACTIONS(6157), - [anon_sym_BSLASHCref] = ACTIONS(6157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnameCref] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHlabelcref] = ACTIONS(6157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCrefrange] = ACTIONS(6157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnewlabel] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6159), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHdef] = ACTIONS(6157), - [anon_sym_BSLASHlet] = ACTIONS(6157), - [anon_sym_BSLASHleft] = ACTIONS(6157), - [anon_sym_BSLASHbig] = ACTIONS(6157), - [anon_sym_BSLASHBig] = ACTIONS(6157), - [anon_sym_BSLASHbigg] = ACTIONS(6157), - [anon_sym_BSLASHBigg] = ACTIONS(6157), - [anon_sym_BSLASHbigl] = ACTIONS(6157), - [anon_sym_BSLASHBigl] = ACTIONS(6157), - [anon_sym_BSLASHbiggl] = ACTIONS(6157), - [anon_sym_BSLASHBiggl] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6157), - [anon_sym_BSLASHgls] = ACTIONS(6157), - [anon_sym_BSLASHGls] = ACTIONS(6157), - [anon_sym_BSLASHGLS] = ACTIONS(6157), - [anon_sym_BSLASHglspl] = ACTIONS(6157), - [anon_sym_BSLASHGlspl] = ACTIONS(6157), - [anon_sym_BSLASHGLSpl] = ACTIONS(6157), - [anon_sym_BSLASHglsdisp] = ACTIONS(6157), - [anon_sym_BSLASHglslink] = ACTIONS(6157), - [anon_sym_BSLASHglstext] = ACTIONS(6157), - [anon_sym_BSLASHGlstext] = ACTIONS(6157), - [anon_sym_BSLASHGLStext] = ACTIONS(6157), - [anon_sym_BSLASHglsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6157), - [anon_sym_BSLASHglsplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSplural] = ACTIONS(6157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHglsname] = ACTIONS(6157), - [anon_sym_BSLASHGlsname] = ACTIONS(6157), - [anon_sym_BSLASHGLSname] = ACTIONS(6157), - [anon_sym_BSLASHglssymbol] = ACTIONS(6157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6157), - [anon_sym_BSLASHglsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6157), - [anon_sym_BSLASHglsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6157), - [anon_sym_BSLASHglsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6157), - [anon_sym_BSLASHglsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6157), - [anon_sym_BSLASHglsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6157), - [anon_sym_BSLASHnewacronym] = ACTIONS(6157), - [anon_sym_BSLASHacrshort] = ACTIONS(6157), - [anon_sym_BSLASHAcrshort] = ACTIONS(6157), - [anon_sym_BSLASHACRshort] = ACTIONS(6157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6157), - [anon_sym_BSLASHacrlong] = ACTIONS(6157), - [anon_sym_BSLASHAcrlong] = ACTIONS(6157), - [anon_sym_BSLASHACRlong] = ACTIONS(6157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6157), - [anon_sym_BSLASHacrfull] = ACTIONS(6157), - [anon_sym_BSLASHAcrfull] = ACTIONS(6157), - [anon_sym_BSLASHACRfull] = ACTIONS(6157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6157), - [anon_sym_BSLASHacs] = ACTIONS(6157), - [anon_sym_BSLASHAcs] = ACTIONS(6157), - [anon_sym_BSLASHacsp] = ACTIONS(6157), - [anon_sym_BSLASHAcsp] = ACTIONS(6157), - [anon_sym_BSLASHacl] = ACTIONS(6157), - [anon_sym_BSLASHAcl] = ACTIONS(6157), - [anon_sym_BSLASHaclp] = ACTIONS(6157), - [anon_sym_BSLASHAclp] = ACTIONS(6157), - [anon_sym_BSLASHacf] = ACTIONS(6157), - [anon_sym_BSLASHAcf] = ACTIONS(6157), - [anon_sym_BSLASHacfp] = ACTIONS(6157), - [anon_sym_BSLASHAcfp] = ACTIONS(6157), - [anon_sym_BSLASHac] = ACTIONS(6157), - [anon_sym_BSLASHAc] = ACTIONS(6157), - [anon_sym_BSLASHacp] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6157), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6157), - [anon_sym_BSLASHcolor] = ACTIONS(6157), - [anon_sym_BSLASHcolorbox] = ACTIONS(6157), - [anon_sym_BSLASHtextcolor] = ACTIONS(6157), - [anon_sym_BSLASHpagecolor] = ACTIONS(6157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6157), - [anon_sym_BSLASHtext] = ACTIONS(6157), - [anon_sym_BSLASHintertext] = ACTIONS(6157), - [anon_sym_shortintertext] = ACTIONS(6157), - }, - [1621] = { - [sym_command_name] = ACTIONS(6333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6333), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_LBRACE] = ACTIONS(6335), - [sym_word] = ACTIONS(6333), - [sym_placeholder] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6335), - [anon_sym_DASH] = ACTIONS(6335), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6333), - [anon_sym_GT] = ACTIONS(6333), - [anon_sym_BANG] = ACTIONS(6333), - [anon_sym_PIPE] = ACTIONS(6333), - [anon_sym_COLON] = ACTIONS(6333), - [anon_sym_SQUOTE] = ACTIONS(6333), - [anon_sym__] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6335), - [anon_sym_DOLLAR] = ACTIONS(6333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6335), - [anon_sym_BSLASHbegin] = ACTIONS(6333), - [anon_sym_BSLASHtitle] = ACTIONS(6333), - [anon_sym_BSLASHauthor] = ACTIONS(6333), - [anon_sym_BSLASHusepackage] = ACTIONS(6333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6333), - [anon_sym_BSLASHinclude] = ACTIONS(6333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6333), - [anon_sym_BSLASHinput] = ACTIONS(6333), - [anon_sym_BSLASHsubfile] = ACTIONS(6333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6333), - [anon_sym_BSLASHbibliography] = ACTIONS(6333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6333), - [anon_sym_BSLASHincludesvg] = ACTIONS(6333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6333), - [anon_sym_BSLASHimport] = ACTIONS(6333), - [anon_sym_BSLASHsubimport] = ACTIONS(6333), - [anon_sym_BSLASHinputfrom] = ACTIONS(6333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6333), - [anon_sym_BSLASHincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHcaption] = ACTIONS(6333), - [anon_sym_BSLASHcite] = ACTIONS(6333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCite] = ACTIONS(6333), - [anon_sym_BSLASHnocite] = ACTIONS(6333), - [anon_sym_BSLASHcitet] = ACTIONS(6333), - [anon_sym_BSLASHcitep] = ACTIONS(6333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteauthor] = ACTIONS(6333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitetitle] = ACTIONS(6333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteyear] = ACTIONS(6333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitedate] = ACTIONS(6333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteurl] = ACTIONS(6333), - [anon_sym_BSLASHfullcite] = ACTIONS(6333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6333), - [anon_sym_BSLASHcitealt] = ACTIONS(6333), - [anon_sym_BSLASHcitealp] = ACTIONS(6333), - [anon_sym_BSLASHcitetext] = ACTIONS(6333), - [anon_sym_BSLASHparencite] = ACTIONS(6333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHParencite] = ACTIONS(6333), - [anon_sym_BSLASHfootcite] = ACTIONS(6333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6333), - [anon_sym_BSLASHtextcite] = ACTIONS(6333), - [anon_sym_BSLASHTextcite] = ACTIONS(6333), - [anon_sym_BSLASHsmartcite] = ACTIONS(6333), - [anon_sym_BSLASHSmartcite] = ACTIONS(6333), - [anon_sym_BSLASHsupercite] = ACTIONS(6333), - [anon_sym_BSLASHautocite] = ACTIONS(6333), - [anon_sym_BSLASHAutocite] = ACTIONS(6333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHvolcite] = ACTIONS(6333), - [anon_sym_BSLASHVolcite] = ACTIONS(6333), - [anon_sym_BSLASHpvolcite] = ACTIONS(6333), - [anon_sym_BSLASHPvolcite] = ACTIONS(6333), - [anon_sym_BSLASHfvolcite] = ACTIONS(6333), - [anon_sym_BSLASHftvolcite] = ACTIONS(6333), - [anon_sym_BSLASHsvolcite] = ACTIONS(6333), - [anon_sym_BSLASHSvolcite] = ACTIONS(6333), - [anon_sym_BSLASHtvolcite] = ACTIONS(6333), - [anon_sym_BSLASHTvolcite] = ACTIONS(6333), - [anon_sym_BSLASHavolcite] = ACTIONS(6333), - [anon_sym_BSLASHAvolcite] = ACTIONS(6333), - [anon_sym_BSLASHnotecite] = ACTIONS(6333), - [anon_sym_BSLASHNotecite] = ACTIONS(6333), - [anon_sym_BSLASHpnotecite] = ACTIONS(6333), - [anon_sym_BSLASHPnotecite] = ACTIONS(6333), - [anon_sym_BSLASHfnotecite] = ACTIONS(6333), - [anon_sym_BSLASHlabel] = ACTIONS(6333), - [anon_sym_BSLASHref] = ACTIONS(6333), - [anon_sym_BSLASHeqref] = ACTIONS(6333), - [anon_sym_BSLASHvref] = ACTIONS(6333), - [anon_sym_BSLASHVref] = ACTIONS(6333), - [anon_sym_BSLASHautoref] = ACTIONS(6333), - [anon_sym_BSLASHpageref] = ACTIONS(6333), - [anon_sym_BSLASHcref] = ACTIONS(6333), - [anon_sym_BSLASHCref] = ACTIONS(6333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnameCref] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHlabelcref] = ACTIONS(6333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCrefrange] = ACTIONS(6333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnewlabel] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6335), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHdef] = ACTIONS(6333), - [anon_sym_BSLASHlet] = ACTIONS(6333), - [anon_sym_BSLASHleft] = ACTIONS(6333), - [anon_sym_BSLASHbig] = ACTIONS(6333), - [anon_sym_BSLASHBig] = ACTIONS(6333), - [anon_sym_BSLASHbigg] = ACTIONS(6333), - [anon_sym_BSLASHBigg] = ACTIONS(6333), - [anon_sym_BSLASHbigl] = ACTIONS(6333), - [anon_sym_BSLASHBigl] = ACTIONS(6333), - [anon_sym_BSLASHbiggl] = ACTIONS(6333), - [anon_sym_BSLASHBiggl] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6333), - [anon_sym_BSLASHgls] = ACTIONS(6333), - [anon_sym_BSLASHGls] = ACTIONS(6333), - [anon_sym_BSLASHGLS] = ACTIONS(6333), - [anon_sym_BSLASHglspl] = ACTIONS(6333), - [anon_sym_BSLASHGlspl] = ACTIONS(6333), - [anon_sym_BSLASHGLSpl] = ACTIONS(6333), - [anon_sym_BSLASHglsdisp] = ACTIONS(6333), - [anon_sym_BSLASHglslink] = ACTIONS(6333), - [anon_sym_BSLASHglstext] = ACTIONS(6333), - [anon_sym_BSLASHGlstext] = ACTIONS(6333), - [anon_sym_BSLASHGLStext] = ACTIONS(6333), - [anon_sym_BSLASHglsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6333), - [anon_sym_BSLASHglsplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSplural] = ACTIONS(6333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHglsname] = ACTIONS(6333), - [anon_sym_BSLASHGlsname] = ACTIONS(6333), - [anon_sym_BSLASHGLSname] = ACTIONS(6333), - [anon_sym_BSLASHglssymbol] = ACTIONS(6333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6333), - [anon_sym_BSLASHglsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6333), - [anon_sym_BSLASHglsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6333), - [anon_sym_BSLASHglsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6333), - [anon_sym_BSLASHglsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6333), - [anon_sym_BSLASHglsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6333), - [anon_sym_BSLASHnewacronym] = ACTIONS(6333), - [anon_sym_BSLASHacrshort] = ACTIONS(6333), - [anon_sym_BSLASHAcrshort] = ACTIONS(6333), - [anon_sym_BSLASHACRshort] = ACTIONS(6333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6333), - [anon_sym_BSLASHacrlong] = ACTIONS(6333), - [anon_sym_BSLASHAcrlong] = ACTIONS(6333), - [anon_sym_BSLASHACRlong] = ACTIONS(6333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6333), - [anon_sym_BSLASHacrfull] = ACTIONS(6333), - [anon_sym_BSLASHAcrfull] = ACTIONS(6333), - [anon_sym_BSLASHACRfull] = ACTIONS(6333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6333), - [anon_sym_BSLASHacs] = ACTIONS(6333), - [anon_sym_BSLASHAcs] = ACTIONS(6333), - [anon_sym_BSLASHacsp] = ACTIONS(6333), - [anon_sym_BSLASHAcsp] = ACTIONS(6333), - [anon_sym_BSLASHacl] = ACTIONS(6333), - [anon_sym_BSLASHAcl] = ACTIONS(6333), - [anon_sym_BSLASHaclp] = ACTIONS(6333), - [anon_sym_BSLASHAclp] = ACTIONS(6333), - [anon_sym_BSLASHacf] = ACTIONS(6333), - [anon_sym_BSLASHAcf] = ACTIONS(6333), - [anon_sym_BSLASHacfp] = ACTIONS(6333), - [anon_sym_BSLASHAcfp] = ACTIONS(6333), - [anon_sym_BSLASHac] = ACTIONS(6333), - [anon_sym_BSLASHAc] = ACTIONS(6333), - [anon_sym_BSLASHacp] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6333), - [anon_sym_BSLASHcolor] = ACTIONS(6333), - [anon_sym_BSLASHcolorbox] = ACTIONS(6333), - [anon_sym_BSLASHtextcolor] = ACTIONS(6333), - [anon_sym_BSLASHpagecolor] = ACTIONS(6333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6333), - [anon_sym_BSLASHtext] = ACTIONS(6333), - [anon_sym_BSLASHintertext] = ACTIONS(6333), - [anon_sym_shortintertext] = ACTIONS(6333), - }, - [1622] = { - [sym_command_name] = ACTIONS(6177), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6177), - [anon_sym_LBRACK] = ACTIONS(6179), - [anon_sym_RBRACK] = ACTIONS(6179), - [anon_sym_COMMA] = ACTIONS(6179), - [anon_sym_EQ] = ACTIONS(6179), - [anon_sym_LPAREN] = ACTIONS(6179), - [anon_sym_RPAREN] = ACTIONS(6179), - [anon_sym_LBRACE] = ACTIONS(6179), - [sym_word] = ACTIONS(6177), - [sym_placeholder] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6179), - [anon_sym_DASH] = ACTIONS(6179), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6177), - [anon_sym_GT] = ACTIONS(6177), - [anon_sym_BANG] = ACTIONS(6177), - [anon_sym_PIPE] = ACTIONS(6177), - [anon_sym_COLON] = ACTIONS(6177), - [anon_sym_SQUOTE] = ACTIONS(6177), - [anon_sym__] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6179), - [anon_sym_DOLLAR] = ACTIONS(6177), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6179), - [anon_sym_BSLASHbegin] = ACTIONS(6177), - [anon_sym_BSLASHtitle] = ACTIONS(6177), - [anon_sym_BSLASHauthor] = ACTIONS(6177), - [anon_sym_BSLASHusepackage] = ACTIONS(6177), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6177), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6177), - [anon_sym_BSLASHinclude] = ACTIONS(6177), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6177), - [anon_sym_BSLASHinput] = ACTIONS(6177), - [anon_sym_BSLASHsubfile] = ACTIONS(6177), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6177), - [anon_sym_BSLASHbibliography] = ACTIONS(6177), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6177), - [anon_sym_BSLASHincludesvg] = ACTIONS(6177), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6177), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6177), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6177), - [anon_sym_BSLASHimport] = ACTIONS(6177), - [anon_sym_BSLASHsubimport] = ACTIONS(6177), - [anon_sym_BSLASHinputfrom] = ACTIONS(6177), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6177), - [anon_sym_BSLASHincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6177), - [anon_sym_BSLASHcaption] = ACTIONS(6177), - [anon_sym_BSLASHcite] = ACTIONS(6177), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCite] = ACTIONS(6177), - [anon_sym_BSLASHnocite] = ACTIONS(6177), - [anon_sym_BSLASHcitet] = ACTIONS(6177), - [anon_sym_BSLASHcitep] = ACTIONS(6177), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteauthor] = ACTIONS(6177), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6177), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitetitle] = ACTIONS(6177), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteyear] = ACTIONS(6177), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6179), - [anon_sym_BSLASHcitedate] = ACTIONS(6177), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6179), - [anon_sym_BSLASHciteurl] = ACTIONS(6177), - [anon_sym_BSLASHfullcite] = ACTIONS(6177), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6177), - [anon_sym_BSLASHcitealt] = ACTIONS(6177), - [anon_sym_BSLASHcitealp] = ACTIONS(6177), - [anon_sym_BSLASHcitetext] = ACTIONS(6177), - [anon_sym_BSLASHparencite] = ACTIONS(6177), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHParencite] = ACTIONS(6177), - [anon_sym_BSLASHfootcite] = ACTIONS(6177), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6177), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6177), - [anon_sym_BSLASHtextcite] = ACTIONS(6177), - [anon_sym_BSLASHTextcite] = ACTIONS(6177), - [anon_sym_BSLASHsmartcite] = ACTIONS(6177), - [anon_sym_BSLASHSmartcite] = ACTIONS(6177), - [anon_sym_BSLASHsupercite] = ACTIONS(6177), - [anon_sym_BSLASHautocite] = ACTIONS(6177), - [anon_sym_BSLASHAutocite] = ACTIONS(6177), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6179), - [anon_sym_BSLASHvolcite] = ACTIONS(6177), - [anon_sym_BSLASHVolcite] = ACTIONS(6177), - [anon_sym_BSLASHpvolcite] = ACTIONS(6177), - [anon_sym_BSLASHPvolcite] = ACTIONS(6177), - [anon_sym_BSLASHfvolcite] = ACTIONS(6177), - [anon_sym_BSLASHftvolcite] = ACTIONS(6177), - [anon_sym_BSLASHsvolcite] = ACTIONS(6177), - [anon_sym_BSLASHSvolcite] = ACTIONS(6177), - [anon_sym_BSLASHtvolcite] = ACTIONS(6177), - [anon_sym_BSLASHTvolcite] = ACTIONS(6177), - [anon_sym_BSLASHavolcite] = ACTIONS(6177), - [anon_sym_BSLASHAvolcite] = ACTIONS(6177), - [anon_sym_BSLASHnotecite] = ACTIONS(6177), - [anon_sym_BSLASHNotecite] = ACTIONS(6177), - [anon_sym_BSLASHpnotecite] = ACTIONS(6177), - [anon_sym_BSLASHPnotecite] = ACTIONS(6177), - [anon_sym_BSLASHfnotecite] = ACTIONS(6177), - [anon_sym_BSLASHlabel] = ACTIONS(6177), - [anon_sym_BSLASHref] = ACTIONS(6177), - [anon_sym_BSLASHeqref] = ACTIONS(6177), - [anon_sym_BSLASHvref] = ACTIONS(6177), - [anon_sym_BSLASHVref] = ACTIONS(6177), - [anon_sym_BSLASHautoref] = ACTIONS(6177), - [anon_sym_BSLASHpageref] = ACTIONS(6177), - [anon_sym_BSLASHcref] = ACTIONS(6177), - [anon_sym_BSLASHCref] = ACTIONS(6177), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnameCref] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6177), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6177), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6177), - [anon_sym_BSLASHlabelcref] = ACTIONS(6177), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange] = ACTIONS(6177), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHCrefrange] = ACTIONS(6177), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6179), - [anon_sym_BSLASHnewlabel] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand] = ACTIONS(6177), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6177), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6179), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6177), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6179), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6177), - [anon_sym_BSLASHdef] = ACTIONS(6177), - [anon_sym_BSLASHlet] = ACTIONS(6177), - [anon_sym_BSLASHleft] = ACTIONS(6177), - [anon_sym_BSLASHbig] = ACTIONS(6177), - [anon_sym_BSLASHBig] = ACTIONS(6177), - [anon_sym_BSLASHbigg] = ACTIONS(6177), - [anon_sym_BSLASHBigg] = ACTIONS(6177), - [anon_sym_BSLASHbigl] = ACTIONS(6177), - [anon_sym_BSLASHBigl] = ACTIONS(6177), - [anon_sym_BSLASHbiggl] = ACTIONS(6177), - [anon_sym_BSLASHBiggl] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6177), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6177), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6177), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6177), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6177), - [anon_sym_BSLASHgls] = ACTIONS(6177), - [anon_sym_BSLASHGls] = ACTIONS(6177), - [anon_sym_BSLASHGLS] = ACTIONS(6177), - [anon_sym_BSLASHglspl] = ACTIONS(6177), - [anon_sym_BSLASHGlspl] = ACTIONS(6177), - [anon_sym_BSLASHGLSpl] = ACTIONS(6177), - [anon_sym_BSLASHglsdisp] = ACTIONS(6177), - [anon_sym_BSLASHglslink] = ACTIONS(6177), - [anon_sym_BSLASHglstext] = ACTIONS(6177), - [anon_sym_BSLASHGlstext] = ACTIONS(6177), - [anon_sym_BSLASHGLStext] = ACTIONS(6177), - [anon_sym_BSLASHglsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6177), - [anon_sym_BSLASHglsplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSplural] = ACTIONS(6177), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6177), - [anon_sym_BSLASHglsname] = ACTIONS(6177), - [anon_sym_BSLASHGlsname] = ACTIONS(6177), - [anon_sym_BSLASHGLSname] = ACTIONS(6177), - [anon_sym_BSLASHglssymbol] = ACTIONS(6177), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6177), - [anon_sym_BSLASHglsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6177), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6177), - [anon_sym_BSLASHglsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6177), - [anon_sym_BSLASHglsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6177), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6177), - [anon_sym_BSLASHglsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6177), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6177), - [anon_sym_BSLASHglsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6177), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6177), - [anon_sym_BSLASHnewacronym] = ACTIONS(6177), - [anon_sym_BSLASHacrshort] = ACTIONS(6177), - [anon_sym_BSLASHAcrshort] = ACTIONS(6177), - [anon_sym_BSLASHACRshort] = ACTIONS(6177), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6177), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6177), - [anon_sym_BSLASHacrlong] = ACTIONS(6177), - [anon_sym_BSLASHAcrlong] = ACTIONS(6177), - [anon_sym_BSLASHACRlong] = ACTIONS(6177), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6177), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6177), - [anon_sym_BSLASHacrfull] = ACTIONS(6177), - [anon_sym_BSLASHAcrfull] = ACTIONS(6177), - [anon_sym_BSLASHACRfull] = ACTIONS(6177), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6177), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6177), - [anon_sym_BSLASHacs] = ACTIONS(6177), - [anon_sym_BSLASHAcs] = ACTIONS(6177), - [anon_sym_BSLASHacsp] = ACTIONS(6177), - [anon_sym_BSLASHAcsp] = ACTIONS(6177), - [anon_sym_BSLASHacl] = ACTIONS(6177), - [anon_sym_BSLASHAcl] = ACTIONS(6177), - [anon_sym_BSLASHaclp] = ACTIONS(6177), - [anon_sym_BSLASHAclp] = ACTIONS(6177), - [anon_sym_BSLASHacf] = ACTIONS(6177), - [anon_sym_BSLASHAcf] = ACTIONS(6177), - [anon_sym_BSLASHacfp] = ACTIONS(6177), - [anon_sym_BSLASHAcfp] = ACTIONS(6177), - [anon_sym_BSLASHac] = ACTIONS(6177), - [anon_sym_BSLASHAc] = ACTIONS(6177), - [anon_sym_BSLASHacp] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6177), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6177), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6177), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6177), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6177), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6177), - [anon_sym_BSLASHcolor] = ACTIONS(6177), - [anon_sym_BSLASHcolorbox] = ACTIONS(6177), - [anon_sym_BSLASHtextcolor] = ACTIONS(6177), - [anon_sym_BSLASHpagecolor] = ACTIONS(6177), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6177), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6177), - [anon_sym_BSLASHtext] = ACTIONS(6177), - [anon_sym_BSLASHintertext] = ACTIONS(6177), - [anon_sym_shortintertext] = ACTIONS(6177), - }, - [1623] = { - [sym_command_name] = ACTIONS(6173), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6173), - [anon_sym_LBRACK] = ACTIONS(6175), - [anon_sym_RBRACK] = ACTIONS(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_EQ] = ACTIONS(6175), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_LBRACE] = ACTIONS(6175), - [sym_word] = ACTIONS(6173), - [sym_placeholder] = ACTIONS(6175), - [anon_sym_PLUS] = ACTIONS(6175), - [anon_sym_DASH] = ACTIONS(6175), - [anon_sym_STAR] = ACTIONS(6175), - [anon_sym_SLASH] = ACTIONS(6175), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_BANG] = ACTIONS(6173), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_COLON] = ACTIONS(6173), - [anon_sym_SQUOTE] = ACTIONS(6173), - [anon_sym__] = ACTIONS(6175), - [anon_sym_CARET] = ACTIONS(6175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6175), - [anon_sym_DOLLAR] = ACTIONS(6173), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6175), - [anon_sym_BSLASHbegin] = ACTIONS(6173), - [anon_sym_BSLASHtitle] = ACTIONS(6173), - [anon_sym_BSLASHauthor] = ACTIONS(6173), - [anon_sym_BSLASHusepackage] = ACTIONS(6173), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6173), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6173), - [anon_sym_BSLASHinclude] = ACTIONS(6173), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6173), - [anon_sym_BSLASHinput] = ACTIONS(6173), - [anon_sym_BSLASHsubfile] = ACTIONS(6173), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6173), - [anon_sym_BSLASHbibliography] = ACTIONS(6173), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6173), - [anon_sym_BSLASHincludesvg] = ACTIONS(6173), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6173), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6173), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6173), - [anon_sym_BSLASHimport] = ACTIONS(6173), - [anon_sym_BSLASHsubimport] = ACTIONS(6173), - [anon_sym_BSLASHinputfrom] = ACTIONS(6173), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6173), - [anon_sym_BSLASHincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6173), - [anon_sym_BSLASHcaption] = ACTIONS(6173), - [anon_sym_BSLASHcite] = ACTIONS(6173), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCite] = ACTIONS(6173), - [anon_sym_BSLASHnocite] = ACTIONS(6173), - [anon_sym_BSLASHcitet] = ACTIONS(6173), - [anon_sym_BSLASHcitep] = ACTIONS(6173), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteauthor] = ACTIONS(6173), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6173), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitetitle] = ACTIONS(6173), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteyear] = ACTIONS(6173), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6175), - [anon_sym_BSLASHcitedate] = ACTIONS(6173), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6175), - [anon_sym_BSLASHciteurl] = ACTIONS(6173), - [anon_sym_BSLASHfullcite] = ACTIONS(6173), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6173), - [anon_sym_BSLASHcitealt] = ACTIONS(6173), - [anon_sym_BSLASHcitealp] = ACTIONS(6173), - [anon_sym_BSLASHcitetext] = ACTIONS(6173), - [anon_sym_BSLASHparencite] = ACTIONS(6173), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHParencite] = ACTIONS(6173), - [anon_sym_BSLASHfootcite] = ACTIONS(6173), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6173), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6173), - [anon_sym_BSLASHtextcite] = ACTIONS(6173), - [anon_sym_BSLASHTextcite] = ACTIONS(6173), - [anon_sym_BSLASHsmartcite] = ACTIONS(6173), - [anon_sym_BSLASHSmartcite] = ACTIONS(6173), - [anon_sym_BSLASHsupercite] = ACTIONS(6173), - [anon_sym_BSLASHautocite] = ACTIONS(6173), - [anon_sym_BSLASHAutocite] = ACTIONS(6173), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6175), - [anon_sym_BSLASHvolcite] = ACTIONS(6173), - [anon_sym_BSLASHVolcite] = ACTIONS(6173), - [anon_sym_BSLASHpvolcite] = ACTIONS(6173), - [anon_sym_BSLASHPvolcite] = ACTIONS(6173), - [anon_sym_BSLASHfvolcite] = ACTIONS(6173), - [anon_sym_BSLASHftvolcite] = ACTIONS(6173), - [anon_sym_BSLASHsvolcite] = ACTIONS(6173), - [anon_sym_BSLASHSvolcite] = ACTIONS(6173), - [anon_sym_BSLASHtvolcite] = ACTIONS(6173), - [anon_sym_BSLASHTvolcite] = ACTIONS(6173), - [anon_sym_BSLASHavolcite] = ACTIONS(6173), - [anon_sym_BSLASHAvolcite] = ACTIONS(6173), - [anon_sym_BSLASHnotecite] = ACTIONS(6173), - [anon_sym_BSLASHNotecite] = ACTIONS(6173), - [anon_sym_BSLASHpnotecite] = ACTIONS(6173), - [anon_sym_BSLASHPnotecite] = ACTIONS(6173), - [anon_sym_BSLASHfnotecite] = ACTIONS(6173), - [anon_sym_BSLASHlabel] = ACTIONS(6173), - [anon_sym_BSLASHref] = ACTIONS(6173), - [anon_sym_BSLASHeqref] = ACTIONS(6173), - [anon_sym_BSLASHvref] = ACTIONS(6173), - [anon_sym_BSLASHVref] = ACTIONS(6173), - [anon_sym_BSLASHautoref] = ACTIONS(6173), - [anon_sym_BSLASHpageref] = ACTIONS(6173), - [anon_sym_BSLASHcref] = ACTIONS(6173), - [anon_sym_BSLASHCref] = ACTIONS(6173), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnameCref] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6173), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6173), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6173), - [anon_sym_BSLASHlabelcref] = ACTIONS(6173), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange] = ACTIONS(6173), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHCrefrange] = ACTIONS(6173), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6175), - [anon_sym_BSLASHnewlabel] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand] = ACTIONS(6173), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6173), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6175), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6173), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6175), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6173), - [anon_sym_BSLASHdef] = ACTIONS(6173), - [anon_sym_BSLASHlet] = ACTIONS(6173), - [anon_sym_BSLASHleft] = ACTIONS(6173), - [anon_sym_BSLASHbig] = ACTIONS(6173), - [anon_sym_BSLASHBig] = ACTIONS(6173), - [anon_sym_BSLASHbigg] = ACTIONS(6173), - [anon_sym_BSLASHBigg] = ACTIONS(6173), - [anon_sym_BSLASHbigl] = ACTIONS(6173), - [anon_sym_BSLASHBigl] = ACTIONS(6173), - [anon_sym_BSLASHbiggl] = ACTIONS(6173), - [anon_sym_BSLASHBiggl] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6173), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6173), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6173), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6173), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6173), - [anon_sym_BSLASHgls] = ACTIONS(6173), - [anon_sym_BSLASHGls] = ACTIONS(6173), - [anon_sym_BSLASHGLS] = ACTIONS(6173), - [anon_sym_BSLASHglspl] = ACTIONS(6173), - [anon_sym_BSLASHGlspl] = ACTIONS(6173), - [anon_sym_BSLASHGLSpl] = ACTIONS(6173), - [anon_sym_BSLASHglsdisp] = ACTIONS(6173), - [anon_sym_BSLASHglslink] = ACTIONS(6173), - [anon_sym_BSLASHglstext] = ACTIONS(6173), - [anon_sym_BSLASHGlstext] = ACTIONS(6173), - [anon_sym_BSLASHGLStext] = ACTIONS(6173), - [anon_sym_BSLASHglsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6173), - [anon_sym_BSLASHglsplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSplural] = ACTIONS(6173), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6173), - [anon_sym_BSLASHglsname] = ACTIONS(6173), - [anon_sym_BSLASHGlsname] = ACTIONS(6173), - [anon_sym_BSLASHGLSname] = ACTIONS(6173), - [anon_sym_BSLASHglssymbol] = ACTIONS(6173), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6173), - [anon_sym_BSLASHglsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6173), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6173), - [anon_sym_BSLASHglsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6173), - [anon_sym_BSLASHglsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6173), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6173), - [anon_sym_BSLASHglsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6173), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6173), - [anon_sym_BSLASHglsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6173), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6173), - [anon_sym_BSLASHnewacronym] = ACTIONS(6173), - [anon_sym_BSLASHacrshort] = ACTIONS(6173), - [anon_sym_BSLASHAcrshort] = ACTIONS(6173), - [anon_sym_BSLASHACRshort] = ACTIONS(6173), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6173), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6173), - [anon_sym_BSLASHacrlong] = ACTIONS(6173), - [anon_sym_BSLASHAcrlong] = ACTIONS(6173), - [anon_sym_BSLASHACRlong] = ACTIONS(6173), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6173), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6173), - [anon_sym_BSLASHacrfull] = ACTIONS(6173), - [anon_sym_BSLASHAcrfull] = ACTIONS(6173), - [anon_sym_BSLASHACRfull] = ACTIONS(6173), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6173), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6173), - [anon_sym_BSLASHacs] = ACTIONS(6173), - [anon_sym_BSLASHAcs] = ACTIONS(6173), - [anon_sym_BSLASHacsp] = ACTIONS(6173), - [anon_sym_BSLASHAcsp] = ACTIONS(6173), - [anon_sym_BSLASHacl] = ACTIONS(6173), - [anon_sym_BSLASHAcl] = ACTIONS(6173), - [anon_sym_BSLASHaclp] = ACTIONS(6173), - [anon_sym_BSLASHAclp] = ACTIONS(6173), - [anon_sym_BSLASHacf] = ACTIONS(6173), - [anon_sym_BSLASHAcf] = ACTIONS(6173), - [anon_sym_BSLASHacfp] = ACTIONS(6173), - [anon_sym_BSLASHAcfp] = ACTIONS(6173), - [anon_sym_BSLASHac] = ACTIONS(6173), - [anon_sym_BSLASHAc] = ACTIONS(6173), - [anon_sym_BSLASHacp] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6173), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6173), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6173), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6173), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6173), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6173), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6173), - [anon_sym_BSLASHcolor] = ACTIONS(6173), - [anon_sym_BSLASHcolorbox] = ACTIONS(6173), - [anon_sym_BSLASHtextcolor] = ACTIONS(6173), - [anon_sym_BSLASHpagecolor] = ACTIONS(6173), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6173), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6173), - [anon_sym_BSLASHtext] = ACTIONS(6173), - [anon_sym_BSLASHintertext] = ACTIONS(6173), - [anon_sym_shortintertext] = ACTIONS(6173), - }, - [1624] = { - [sym_command_name] = ACTIONS(6125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6127), - [anon_sym_RBRACK] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6127), - [anon_sym_EQ] = ACTIONS(6127), - [anon_sym_LPAREN] = ACTIONS(6127), - [anon_sym_RPAREN] = ACTIONS(6127), - [anon_sym_LBRACE] = ACTIONS(6127), - [sym_word] = ACTIONS(6125), - [sym_placeholder] = ACTIONS(6127), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_LT] = ACTIONS(6125), - [anon_sym_GT] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_SQUOTE] = ACTIONS(6125), - [anon_sym__] = ACTIONS(6127), - [anon_sym_CARET] = ACTIONS(6127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6127), - [anon_sym_DOLLAR] = ACTIONS(6125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6127), - [anon_sym_BSLASHbegin] = ACTIONS(6125), - [anon_sym_BSLASHtitle] = ACTIONS(6125), - [anon_sym_BSLASHauthor] = ACTIONS(6125), - [anon_sym_BSLASHusepackage] = ACTIONS(6125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6125), - [anon_sym_BSLASHinclude] = ACTIONS(6125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6125), - [anon_sym_BSLASHinput] = ACTIONS(6125), - [anon_sym_BSLASHsubfile] = ACTIONS(6125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6125), - [anon_sym_BSLASHbibliography] = ACTIONS(6125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6125), - [anon_sym_BSLASHincludesvg] = ACTIONS(6125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6125), - [anon_sym_BSLASHimport] = ACTIONS(6125), - [anon_sym_BSLASHsubimport] = ACTIONS(6125), - [anon_sym_BSLASHinputfrom] = ACTIONS(6125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6125), - [anon_sym_BSLASHincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHcaption] = ACTIONS(6125), - [anon_sym_BSLASHcite] = ACTIONS(6125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCite] = ACTIONS(6125), - [anon_sym_BSLASHnocite] = ACTIONS(6125), - [anon_sym_BSLASHcitet] = ACTIONS(6125), - [anon_sym_BSLASHcitep] = ACTIONS(6125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteauthor] = ACTIONS(6125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitetitle] = ACTIONS(6125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteyear] = ACTIONS(6125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitedate] = ACTIONS(6125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteurl] = ACTIONS(6125), - [anon_sym_BSLASHfullcite] = ACTIONS(6125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6125), - [anon_sym_BSLASHcitealt] = ACTIONS(6125), - [anon_sym_BSLASHcitealp] = ACTIONS(6125), - [anon_sym_BSLASHcitetext] = ACTIONS(6125), - [anon_sym_BSLASHparencite] = ACTIONS(6125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHParencite] = ACTIONS(6125), - [anon_sym_BSLASHfootcite] = ACTIONS(6125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6125), - [anon_sym_BSLASHtextcite] = ACTIONS(6125), - [anon_sym_BSLASHTextcite] = ACTIONS(6125), - [anon_sym_BSLASHsmartcite] = ACTIONS(6125), - [anon_sym_BSLASHSmartcite] = ACTIONS(6125), - [anon_sym_BSLASHsupercite] = ACTIONS(6125), - [anon_sym_BSLASHautocite] = ACTIONS(6125), - [anon_sym_BSLASHAutocite] = ACTIONS(6125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHvolcite] = ACTIONS(6125), - [anon_sym_BSLASHVolcite] = ACTIONS(6125), - [anon_sym_BSLASHpvolcite] = ACTIONS(6125), - [anon_sym_BSLASHPvolcite] = ACTIONS(6125), - [anon_sym_BSLASHfvolcite] = ACTIONS(6125), - [anon_sym_BSLASHftvolcite] = ACTIONS(6125), - [anon_sym_BSLASHsvolcite] = ACTIONS(6125), - [anon_sym_BSLASHSvolcite] = ACTIONS(6125), - [anon_sym_BSLASHtvolcite] = ACTIONS(6125), - [anon_sym_BSLASHTvolcite] = ACTIONS(6125), - [anon_sym_BSLASHavolcite] = ACTIONS(6125), - [anon_sym_BSLASHAvolcite] = ACTIONS(6125), - [anon_sym_BSLASHnotecite] = ACTIONS(6125), - [anon_sym_BSLASHNotecite] = ACTIONS(6125), - [anon_sym_BSLASHpnotecite] = ACTIONS(6125), - [anon_sym_BSLASHPnotecite] = ACTIONS(6125), - [anon_sym_BSLASHfnotecite] = ACTIONS(6125), - [anon_sym_BSLASHlabel] = ACTIONS(6125), - [anon_sym_BSLASHref] = ACTIONS(6125), - [anon_sym_BSLASHeqref] = ACTIONS(6125), - [anon_sym_BSLASHvref] = ACTIONS(6125), - [anon_sym_BSLASHVref] = ACTIONS(6125), - [anon_sym_BSLASHautoref] = ACTIONS(6125), - [anon_sym_BSLASHpageref] = ACTIONS(6125), - [anon_sym_BSLASHcref] = ACTIONS(6125), - [anon_sym_BSLASHCref] = ACTIONS(6125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnameCref] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHlabelcref] = ACTIONS(6125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCrefrange] = ACTIONS(6125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnewlabel] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6127), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHdef] = ACTIONS(6125), - [anon_sym_BSLASHlet] = ACTIONS(6125), - [anon_sym_BSLASHleft] = ACTIONS(6125), - [anon_sym_BSLASHbig] = ACTIONS(6125), - [anon_sym_BSLASHBig] = ACTIONS(6125), - [anon_sym_BSLASHbigg] = ACTIONS(6125), - [anon_sym_BSLASHBigg] = ACTIONS(6125), - [anon_sym_BSLASHbigl] = ACTIONS(6125), - [anon_sym_BSLASHBigl] = ACTIONS(6125), - [anon_sym_BSLASHbiggl] = ACTIONS(6125), - [anon_sym_BSLASHBiggl] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6125), - [anon_sym_BSLASHgls] = ACTIONS(6125), - [anon_sym_BSLASHGls] = ACTIONS(6125), - [anon_sym_BSLASHGLS] = ACTIONS(6125), - [anon_sym_BSLASHglspl] = ACTIONS(6125), - [anon_sym_BSLASHGlspl] = ACTIONS(6125), - [anon_sym_BSLASHGLSpl] = ACTIONS(6125), - [anon_sym_BSLASHglsdisp] = ACTIONS(6125), - [anon_sym_BSLASHglslink] = ACTIONS(6125), - [anon_sym_BSLASHglstext] = ACTIONS(6125), - [anon_sym_BSLASHGlstext] = ACTIONS(6125), - [anon_sym_BSLASHGLStext] = ACTIONS(6125), - [anon_sym_BSLASHglsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6125), - [anon_sym_BSLASHglsplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSplural] = ACTIONS(6125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHglsname] = ACTIONS(6125), - [anon_sym_BSLASHGlsname] = ACTIONS(6125), - [anon_sym_BSLASHGLSname] = ACTIONS(6125), - [anon_sym_BSLASHglssymbol] = ACTIONS(6125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6125), - [anon_sym_BSLASHglsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6125), - [anon_sym_BSLASHglsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6125), - [anon_sym_BSLASHglsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6125), - [anon_sym_BSLASHglsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6125), - [anon_sym_BSLASHglsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6125), - [anon_sym_BSLASHnewacronym] = ACTIONS(6125), - [anon_sym_BSLASHacrshort] = ACTIONS(6125), - [anon_sym_BSLASHAcrshort] = ACTIONS(6125), - [anon_sym_BSLASHACRshort] = ACTIONS(6125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6125), - [anon_sym_BSLASHacrlong] = ACTIONS(6125), - [anon_sym_BSLASHAcrlong] = ACTIONS(6125), - [anon_sym_BSLASHACRlong] = ACTIONS(6125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6125), - [anon_sym_BSLASHacrfull] = ACTIONS(6125), - [anon_sym_BSLASHAcrfull] = ACTIONS(6125), - [anon_sym_BSLASHACRfull] = ACTIONS(6125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6125), - [anon_sym_BSLASHacs] = ACTIONS(6125), - [anon_sym_BSLASHAcs] = ACTIONS(6125), - [anon_sym_BSLASHacsp] = ACTIONS(6125), - [anon_sym_BSLASHAcsp] = ACTIONS(6125), - [anon_sym_BSLASHacl] = ACTIONS(6125), - [anon_sym_BSLASHAcl] = ACTIONS(6125), - [anon_sym_BSLASHaclp] = ACTIONS(6125), - [anon_sym_BSLASHAclp] = ACTIONS(6125), - [anon_sym_BSLASHacf] = ACTIONS(6125), - [anon_sym_BSLASHAcf] = ACTIONS(6125), - [anon_sym_BSLASHacfp] = ACTIONS(6125), - [anon_sym_BSLASHAcfp] = ACTIONS(6125), - [anon_sym_BSLASHac] = ACTIONS(6125), - [anon_sym_BSLASHAc] = ACTIONS(6125), - [anon_sym_BSLASHacp] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6125), - [anon_sym_BSLASHcolor] = ACTIONS(6125), - [anon_sym_BSLASHcolorbox] = ACTIONS(6125), - [anon_sym_BSLASHtextcolor] = ACTIONS(6125), - [anon_sym_BSLASHpagecolor] = ACTIONS(6125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6125), - [anon_sym_BSLASHtext] = ACTIONS(6125), - [anon_sym_BSLASHintertext] = ACTIONS(6125), - [anon_sym_shortintertext] = ACTIONS(6125), - }, - [1625] = { - [sym_command_name] = ACTIONS(6329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6329), - [anon_sym_LBRACK] = ACTIONS(6331), - [anon_sym_RBRACK] = ACTIONS(6331), - [anon_sym_COMMA] = ACTIONS(6331), - [anon_sym_EQ] = ACTIONS(6331), - [anon_sym_LPAREN] = ACTIONS(6331), - [anon_sym_RPAREN] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6331), - [sym_word] = ACTIONS(6329), - [sym_placeholder] = ACTIONS(6331), - [anon_sym_PLUS] = ACTIONS(6331), - [anon_sym_DASH] = ACTIONS(6331), - [anon_sym_STAR] = ACTIONS(6331), - [anon_sym_SLASH] = ACTIONS(6331), - [anon_sym_LT] = ACTIONS(6329), - [anon_sym_GT] = ACTIONS(6329), - [anon_sym_BANG] = ACTIONS(6329), - [anon_sym_PIPE] = ACTIONS(6329), - [anon_sym_COLON] = ACTIONS(6329), - [anon_sym_SQUOTE] = ACTIONS(6329), - [anon_sym__] = ACTIONS(6331), - [anon_sym_CARET] = ACTIONS(6331), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6331), - [anon_sym_DOLLAR] = ACTIONS(6329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6331), - [anon_sym_BSLASHbegin] = ACTIONS(6329), - [anon_sym_BSLASHtitle] = ACTIONS(6329), - [anon_sym_BSLASHauthor] = ACTIONS(6329), - [anon_sym_BSLASHusepackage] = ACTIONS(6329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6329), - [anon_sym_BSLASHinclude] = ACTIONS(6329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6329), - [anon_sym_BSLASHinput] = ACTIONS(6329), - [anon_sym_BSLASHsubfile] = ACTIONS(6329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6329), - [anon_sym_BSLASHbibliography] = ACTIONS(6329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6329), - [anon_sym_BSLASHincludesvg] = ACTIONS(6329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6329), - [anon_sym_BSLASHimport] = ACTIONS(6329), - [anon_sym_BSLASHsubimport] = ACTIONS(6329), - [anon_sym_BSLASHinputfrom] = ACTIONS(6329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6329), - [anon_sym_BSLASHincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHcaption] = ACTIONS(6329), - [anon_sym_BSLASHcite] = ACTIONS(6329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCite] = ACTIONS(6329), - [anon_sym_BSLASHnocite] = ACTIONS(6329), - [anon_sym_BSLASHcitet] = ACTIONS(6329), - [anon_sym_BSLASHcitep] = ACTIONS(6329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteauthor] = ACTIONS(6329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitetitle] = ACTIONS(6329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteyear] = ACTIONS(6329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitedate] = ACTIONS(6329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteurl] = ACTIONS(6329), - [anon_sym_BSLASHfullcite] = ACTIONS(6329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6329), - [anon_sym_BSLASHcitealt] = ACTIONS(6329), - [anon_sym_BSLASHcitealp] = ACTIONS(6329), - [anon_sym_BSLASHcitetext] = ACTIONS(6329), - [anon_sym_BSLASHparencite] = ACTIONS(6329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHParencite] = ACTIONS(6329), - [anon_sym_BSLASHfootcite] = ACTIONS(6329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6329), - [anon_sym_BSLASHtextcite] = ACTIONS(6329), - [anon_sym_BSLASHTextcite] = ACTIONS(6329), - [anon_sym_BSLASHsmartcite] = ACTIONS(6329), - [anon_sym_BSLASHSmartcite] = ACTIONS(6329), - [anon_sym_BSLASHsupercite] = ACTIONS(6329), - [anon_sym_BSLASHautocite] = ACTIONS(6329), - [anon_sym_BSLASHAutocite] = ACTIONS(6329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHvolcite] = ACTIONS(6329), - [anon_sym_BSLASHVolcite] = ACTIONS(6329), - [anon_sym_BSLASHpvolcite] = ACTIONS(6329), - [anon_sym_BSLASHPvolcite] = ACTIONS(6329), - [anon_sym_BSLASHfvolcite] = ACTIONS(6329), - [anon_sym_BSLASHftvolcite] = ACTIONS(6329), - [anon_sym_BSLASHsvolcite] = ACTIONS(6329), - [anon_sym_BSLASHSvolcite] = ACTIONS(6329), - [anon_sym_BSLASHtvolcite] = ACTIONS(6329), - [anon_sym_BSLASHTvolcite] = ACTIONS(6329), - [anon_sym_BSLASHavolcite] = ACTIONS(6329), - [anon_sym_BSLASHAvolcite] = ACTIONS(6329), - [anon_sym_BSLASHnotecite] = ACTIONS(6329), - [anon_sym_BSLASHNotecite] = ACTIONS(6329), - [anon_sym_BSLASHpnotecite] = ACTIONS(6329), - [anon_sym_BSLASHPnotecite] = ACTIONS(6329), - [anon_sym_BSLASHfnotecite] = ACTIONS(6329), - [anon_sym_BSLASHlabel] = ACTIONS(6329), - [anon_sym_BSLASHref] = ACTIONS(6329), - [anon_sym_BSLASHeqref] = ACTIONS(6329), - [anon_sym_BSLASHvref] = ACTIONS(6329), - [anon_sym_BSLASHVref] = ACTIONS(6329), - [anon_sym_BSLASHautoref] = ACTIONS(6329), - [anon_sym_BSLASHpageref] = ACTIONS(6329), - [anon_sym_BSLASHcref] = ACTIONS(6329), - [anon_sym_BSLASHCref] = ACTIONS(6329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnameCref] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHlabelcref] = ACTIONS(6329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCrefrange] = ACTIONS(6329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnewlabel] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6331), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHdef] = ACTIONS(6329), - [anon_sym_BSLASHlet] = ACTIONS(6329), - [anon_sym_BSLASHleft] = ACTIONS(6329), - [anon_sym_BSLASHbig] = ACTIONS(6329), - [anon_sym_BSLASHBig] = ACTIONS(6329), - [anon_sym_BSLASHbigg] = ACTIONS(6329), - [anon_sym_BSLASHBigg] = ACTIONS(6329), - [anon_sym_BSLASHbigl] = ACTIONS(6329), - [anon_sym_BSLASHBigl] = ACTIONS(6329), - [anon_sym_BSLASHbiggl] = ACTIONS(6329), - [anon_sym_BSLASHBiggl] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6329), - [anon_sym_BSLASHgls] = ACTIONS(6329), - [anon_sym_BSLASHGls] = ACTIONS(6329), - [anon_sym_BSLASHGLS] = ACTIONS(6329), - [anon_sym_BSLASHglspl] = ACTIONS(6329), - [anon_sym_BSLASHGlspl] = ACTIONS(6329), - [anon_sym_BSLASHGLSpl] = ACTIONS(6329), - [anon_sym_BSLASHglsdisp] = ACTIONS(6329), - [anon_sym_BSLASHglslink] = ACTIONS(6329), - [anon_sym_BSLASHglstext] = ACTIONS(6329), - [anon_sym_BSLASHGlstext] = ACTIONS(6329), - [anon_sym_BSLASHGLStext] = ACTIONS(6329), - [anon_sym_BSLASHglsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6329), - [anon_sym_BSLASHglsplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSplural] = ACTIONS(6329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHglsname] = ACTIONS(6329), - [anon_sym_BSLASHGlsname] = ACTIONS(6329), - [anon_sym_BSLASHGLSname] = ACTIONS(6329), - [anon_sym_BSLASHglssymbol] = ACTIONS(6329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6329), - [anon_sym_BSLASHglsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6329), - [anon_sym_BSLASHglsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6329), - [anon_sym_BSLASHglsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6329), - [anon_sym_BSLASHglsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6329), - [anon_sym_BSLASHglsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6329), - [anon_sym_BSLASHnewacronym] = ACTIONS(6329), - [anon_sym_BSLASHacrshort] = ACTIONS(6329), - [anon_sym_BSLASHAcrshort] = ACTIONS(6329), - [anon_sym_BSLASHACRshort] = ACTIONS(6329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6329), - [anon_sym_BSLASHacrlong] = ACTIONS(6329), - [anon_sym_BSLASHAcrlong] = ACTIONS(6329), - [anon_sym_BSLASHACRlong] = ACTIONS(6329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6329), - [anon_sym_BSLASHacrfull] = ACTIONS(6329), - [anon_sym_BSLASHAcrfull] = ACTIONS(6329), - [anon_sym_BSLASHACRfull] = ACTIONS(6329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6329), - [anon_sym_BSLASHacs] = ACTIONS(6329), - [anon_sym_BSLASHAcs] = ACTIONS(6329), - [anon_sym_BSLASHacsp] = ACTIONS(6329), - [anon_sym_BSLASHAcsp] = ACTIONS(6329), - [anon_sym_BSLASHacl] = ACTIONS(6329), - [anon_sym_BSLASHAcl] = ACTIONS(6329), - [anon_sym_BSLASHaclp] = ACTIONS(6329), - [anon_sym_BSLASHAclp] = ACTIONS(6329), - [anon_sym_BSLASHacf] = ACTIONS(6329), - [anon_sym_BSLASHAcf] = ACTIONS(6329), - [anon_sym_BSLASHacfp] = ACTIONS(6329), - [anon_sym_BSLASHAcfp] = ACTIONS(6329), - [anon_sym_BSLASHac] = ACTIONS(6329), - [anon_sym_BSLASHAc] = ACTIONS(6329), - [anon_sym_BSLASHacp] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6329), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6329), - [anon_sym_BSLASHcolor] = ACTIONS(6329), - [anon_sym_BSLASHcolorbox] = ACTIONS(6329), - [anon_sym_BSLASHtextcolor] = ACTIONS(6329), - [anon_sym_BSLASHpagecolor] = ACTIONS(6329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6329), - [anon_sym_BSLASHtext] = ACTIONS(6329), - [anon_sym_BSLASHintertext] = ACTIONS(6329), - [anon_sym_shortintertext] = ACTIONS(6329), - }, - [1626] = { - [sym_command_name] = ACTIONS(6321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(6323), - [anon_sym_RBRACK] = ACTIONS(6323), - [anon_sym_COMMA] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(6323), - [anon_sym_LPAREN] = ACTIONS(6323), - [anon_sym_RPAREN] = ACTIONS(6323), - [anon_sym_LBRACE] = ACTIONS(6323), - [sym_word] = ACTIONS(6321), - [sym_placeholder] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6323), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_LT] = ACTIONS(6321), - [anon_sym_GT] = ACTIONS(6321), - [anon_sym_BANG] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_SQUOTE] = ACTIONS(6321), - [anon_sym__] = ACTIONS(6323), - [anon_sym_CARET] = ACTIONS(6323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6323), - [anon_sym_DOLLAR] = ACTIONS(6321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6323), - [anon_sym_BSLASHbegin] = ACTIONS(6321), - [anon_sym_BSLASHtitle] = ACTIONS(6321), - [anon_sym_BSLASHauthor] = ACTIONS(6321), - [anon_sym_BSLASHusepackage] = ACTIONS(6321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6321), - [anon_sym_BSLASHinclude] = ACTIONS(6321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6321), - [anon_sym_BSLASHinput] = ACTIONS(6321), - [anon_sym_BSLASHsubfile] = ACTIONS(6321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6321), - [anon_sym_BSLASHbibliography] = ACTIONS(6321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6321), - [anon_sym_BSLASHincludesvg] = ACTIONS(6321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6321), - [anon_sym_BSLASHimport] = ACTIONS(6321), - [anon_sym_BSLASHsubimport] = ACTIONS(6321), - [anon_sym_BSLASHinputfrom] = ACTIONS(6321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6321), - [anon_sym_BSLASHincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHcaption] = ACTIONS(6321), - [anon_sym_BSLASHcite] = ACTIONS(6321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCite] = ACTIONS(6321), - [anon_sym_BSLASHnocite] = ACTIONS(6321), - [anon_sym_BSLASHcitet] = ACTIONS(6321), - [anon_sym_BSLASHcitep] = ACTIONS(6321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteauthor] = ACTIONS(6321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitetitle] = ACTIONS(6321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteyear] = ACTIONS(6321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitedate] = ACTIONS(6321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteurl] = ACTIONS(6321), - [anon_sym_BSLASHfullcite] = ACTIONS(6321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6321), - [anon_sym_BSLASHcitealt] = ACTIONS(6321), - [anon_sym_BSLASHcitealp] = ACTIONS(6321), - [anon_sym_BSLASHcitetext] = ACTIONS(6321), - [anon_sym_BSLASHparencite] = ACTIONS(6321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHParencite] = ACTIONS(6321), - [anon_sym_BSLASHfootcite] = ACTIONS(6321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6321), - [anon_sym_BSLASHtextcite] = ACTIONS(6321), - [anon_sym_BSLASHTextcite] = ACTIONS(6321), - [anon_sym_BSLASHsmartcite] = ACTIONS(6321), - [anon_sym_BSLASHSmartcite] = ACTIONS(6321), - [anon_sym_BSLASHsupercite] = ACTIONS(6321), - [anon_sym_BSLASHautocite] = ACTIONS(6321), - [anon_sym_BSLASHAutocite] = ACTIONS(6321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHvolcite] = ACTIONS(6321), - [anon_sym_BSLASHVolcite] = ACTIONS(6321), - [anon_sym_BSLASHpvolcite] = ACTIONS(6321), - [anon_sym_BSLASHPvolcite] = ACTIONS(6321), - [anon_sym_BSLASHfvolcite] = ACTIONS(6321), - [anon_sym_BSLASHftvolcite] = ACTIONS(6321), - [anon_sym_BSLASHsvolcite] = ACTIONS(6321), - [anon_sym_BSLASHSvolcite] = ACTIONS(6321), - [anon_sym_BSLASHtvolcite] = ACTIONS(6321), - [anon_sym_BSLASHTvolcite] = ACTIONS(6321), - [anon_sym_BSLASHavolcite] = ACTIONS(6321), - [anon_sym_BSLASHAvolcite] = ACTIONS(6321), - [anon_sym_BSLASHnotecite] = ACTIONS(6321), - [anon_sym_BSLASHNotecite] = ACTIONS(6321), - [anon_sym_BSLASHpnotecite] = ACTIONS(6321), - [anon_sym_BSLASHPnotecite] = ACTIONS(6321), - [anon_sym_BSLASHfnotecite] = ACTIONS(6321), - [anon_sym_BSLASHlabel] = ACTIONS(6321), - [anon_sym_BSLASHref] = ACTIONS(6321), - [anon_sym_BSLASHeqref] = ACTIONS(6321), - [anon_sym_BSLASHvref] = ACTIONS(6321), - [anon_sym_BSLASHVref] = ACTIONS(6321), - [anon_sym_BSLASHautoref] = ACTIONS(6321), - [anon_sym_BSLASHpageref] = ACTIONS(6321), - [anon_sym_BSLASHcref] = ACTIONS(6321), - [anon_sym_BSLASHCref] = ACTIONS(6321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnameCref] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHlabelcref] = ACTIONS(6321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCrefrange] = ACTIONS(6321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnewlabel] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6323), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHdef] = ACTIONS(6321), - [anon_sym_BSLASHlet] = ACTIONS(6321), - [anon_sym_BSLASHleft] = ACTIONS(6321), - [anon_sym_BSLASHbig] = ACTIONS(6321), - [anon_sym_BSLASHBig] = ACTIONS(6321), - [anon_sym_BSLASHbigg] = ACTIONS(6321), - [anon_sym_BSLASHBigg] = ACTIONS(6321), - [anon_sym_BSLASHbigl] = ACTIONS(6321), - [anon_sym_BSLASHBigl] = ACTIONS(6321), - [anon_sym_BSLASHbiggl] = ACTIONS(6321), - [anon_sym_BSLASHBiggl] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6321), - [anon_sym_BSLASHgls] = ACTIONS(6321), - [anon_sym_BSLASHGls] = ACTIONS(6321), - [anon_sym_BSLASHGLS] = ACTIONS(6321), - [anon_sym_BSLASHglspl] = ACTIONS(6321), - [anon_sym_BSLASHGlspl] = ACTIONS(6321), - [anon_sym_BSLASHGLSpl] = ACTIONS(6321), - [anon_sym_BSLASHglsdisp] = ACTIONS(6321), - [anon_sym_BSLASHglslink] = ACTIONS(6321), - [anon_sym_BSLASHglstext] = ACTIONS(6321), - [anon_sym_BSLASHGlstext] = ACTIONS(6321), - [anon_sym_BSLASHGLStext] = ACTIONS(6321), - [anon_sym_BSLASHglsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6321), - [anon_sym_BSLASHglsplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSplural] = ACTIONS(6321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHglsname] = ACTIONS(6321), - [anon_sym_BSLASHGlsname] = ACTIONS(6321), - [anon_sym_BSLASHGLSname] = ACTIONS(6321), - [anon_sym_BSLASHglssymbol] = ACTIONS(6321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6321), - [anon_sym_BSLASHglsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6321), - [anon_sym_BSLASHglsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6321), - [anon_sym_BSLASHglsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6321), - [anon_sym_BSLASHglsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6321), - [anon_sym_BSLASHglsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6321), - [anon_sym_BSLASHnewacronym] = ACTIONS(6321), - [anon_sym_BSLASHacrshort] = ACTIONS(6321), - [anon_sym_BSLASHAcrshort] = ACTIONS(6321), - [anon_sym_BSLASHACRshort] = ACTIONS(6321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6321), - [anon_sym_BSLASHacrlong] = ACTIONS(6321), - [anon_sym_BSLASHAcrlong] = ACTIONS(6321), - [anon_sym_BSLASHACRlong] = ACTIONS(6321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6321), - [anon_sym_BSLASHacrfull] = ACTIONS(6321), - [anon_sym_BSLASHAcrfull] = ACTIONS(6321), - [anon_sym_BSLASHACRfull] = ACTIONS(6321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6321), - [anon_sym_BSLASHacs] = ACTIONS(6321), - [anon_sym_BSLASHAcs] = ACTIONS(6321), - [anon_sym_BSLASHacsp] = ACTIONS(6321), - [anon_sym_BSLASHAcsp] = ACTIONS(6321), - [anon_sym_BSLASHacl] = ACTIONS(6321), - [anon_sym_BSLASHAcl] = ACTIONS(6321), - [anon_sym_BSLASHaclp] = ACTIONS(6321), - [anon_sym_BSLASHAclp] = ACTIONS(6321), - [anon_sym_BSLASHacf] = ACTIONS(6321), - [anon_sym_BSLASHAcf] = ACTIONS(6321), - [anon_sym_BSLASHacfp] = ACTIONS(6321), - [anon_sym_BSLASHAcfp] = ACTIONS(6321), - [anon_sym_BSLASHac] = ACTIONS(6321), - [anon_sym_BSLASHAc] = ACTIONS(6321), - [anon_sym_BSLASHacp] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6321), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6321), - [anon_sym_BSLASHcolor] = ACTIONS(6321), - [anon_sym_BSLASHcolorbox] = ACTIONS(6321), - [anon_sym_BSLASHtextcolor] = ACTIONS(6321), - [anon_sym_BSLASHpagecolor] = ACTIONS(6321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6321), - [anon_sym_BSLASHtext] = ACTIONS(6321), - [anon_sym_BSLASHintertext] = ACTIONS(6321), - [anon_sym_shortintertext] = ACTIONS(6321), - }, - [1627] = { - [sym_command_name] = ACTIONS(6121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6121), - [anon_sym_LBRACK] = ACTIONS(6123), - [anon_sym_RBRACK] = ACTIONS(6123), - [anon_sym_COMMA] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(6123), - [anon_sym_LPAREN] = ACTIONS(6123), - [anon_sym_RPAREN] = ACTIONS(6123), - [anon_sym_LBRACE] = ACTIONS(6123), - [sym_word] = ACTIONS(6121), - [sym_placeholder] = ACTIONS(6123), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6123), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_LT] = ACTIONS(6121), - [anon_sym_GT] = ACTIONS(6121), - [anon_sym_BANG] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_SQUOTE] = ACTIONS(6121), - [anon_sym__] = ACTIONS(6123), - [anon_sym_CARET] = ACTIONS(6123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6123), - [anon_sym_DOLLAR] = ACTIONS(6121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6123), - [anon_sym_BSLASHbegin] = ACTIONS(6121), - [anon_sym_BSLASHtitle] = ACTIONS(6121), - [anon_sym_BSLASHauthor] = ACTIONS(6121), - [anon_sym_BSLASHusepackage] = ACTIONS(6121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6121), - [anon_sym_BSLASHinclude] = ACTIONS(6121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6121), - [anon_sym_BSLASHinput] = ACTIONS(6121), - [anon_sym_BSLASHsubfile] = ACTIONS(6121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6121), - [anon_sym_BSLASHbibliography] = ACTIONS(6121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6121), - [anon_sym_BSLASHincludesvg] = ACTIONS(6121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6121), - [anon_sym_BSLASHimport] = ACTIONS(6121), - [anon_sym_BSLASHsubimport] = ACTIONS(6121), - [anon_sym_BSLASHinputfrom] = ACTIONS(6121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6121), - [anon_sym_BSLASHincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHcaption] = ACTIONS(6121), - [anon_sym_BSLASHcite] = ACTIONS(6121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCite] = ACTIONS(6121), - [anon_sym_BSLASHnocite] = ACTIONS(6121), - [anon_sym_BSLASHcitet] = ACTIONS(6121), - [anon_sym_BSLASHcitep] = ACTIONS(6121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteauthor] = ACTIONS(6121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitetitle] = ACTIONS(6121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteyear] = ACTIONS(6121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitedate] = ACTIONS(6121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteurl] = ACTIONS(6121), - [anon_sym_BSLASHfullcite] = ACTIONS(6121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6121), - [anon_sym_BSLASHcitealt] = ACTIONS(6121), - [anon_sym_BSLASHcitealp] = ACTIONS(6121), - [anon_sym_BSLASHcitetext] = ACTIONS(6121), - [anon_sym_BSLASHparencite] = ACTIONS(6121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHParencite] = ACTIONS(6121), - [anon_sym_BSLASHfootcite] = ACTIONS(6121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6121), - [anon_sym_BSLASHtextcite] = ACTIONS(6121), - [anon_sym_BSLASHTextcite] = ACTIONS(6121), - [anon_sym_BSLASHsmartcite] = ACTIONS(6121), - [anon_sym_BSLASHSmartcite] = ACTIONS(6121), - [anon_sym_BSLASHsupercite] = ACTIONS(6121), - [anon_sym_BSLASHautocite] = ACTIONS(6121), - [anon_sym_BSLASHAutocite] = ACTIONS(6121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHvolcite] = ACTIONS(6121), - [anon_sym_BSLASHVolcite] = ACTIONS(6121), - [anon_sym_BSLASHpvolcite] = ACTIONS(6121), - [anon_sym_BSLASHPvolcite] = ACTIONS(6121), - [anon_sym_BSLASHfvolcite] = ACTIONS(6121), - [anon_sym_BSLASHftvolcite] = ACTIONS(6121), - [anon_sym_BSLASHsvolcite] = ACTIONS(6121), - [anon_sym_BSLASHSvolcite] = ACTIONS(6121), - [anon_sym_BSLASHtvolcite] = ACTIONS(6121), - [anon_sym_BSLASHTvolcite] = ACTIONS(6121), - [anon_sym_BSLASHavolcite] = ACTIONS(6121), - [anon_sym_BSLASHAvolcite] = ACTIONS(6121), - [anon_sym_BSLASHnotecite] = ACTIONS(6121), - [anon_sym_BSLASHNotecite] = ACTIONS(6121), - [anon_sym_BSLASHpnotecite] = ACTIONS(6121), - [anon_sym_BSLASHPnotecite] = ACTIONS(6121), - [anon_sym_BSLASHfnotecite] = ACTIONS(6121), - [anon_sym_BSLASHlabel] = ACTIONS(6121), - [anon_sym_BSLASHref] = ACTIONS(6121), - [anon_sym_BSLASHeqref] = ACTIONS(6121), - [anon_sym_BSLASHvref] = ACTIONS(6121), - [anon_sym_BSLASHVref] = ACTIONS(6121), - [anon_sym_BSLASHautoref] = ACTIONS(6121), - [anon_sym_BSLASHpageref] = ACTIONS(6121), - [anon_sym_BSLASHcref] = ACTIONS(6121), - [anon_sym_BSLASHCref] = ACTIONS(6121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnameCref] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHlabelcref] = ACTIONS(6121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCrefrange] = ACTIONS(6121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnewlabel] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6123), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHdef] = ACTIONS(6121), - [anon_sym_BSLASHlet] = ACTIONS(6121), - [anon_sym_BSLASHleft] = ACTIONS(6121), - [anon_sym_BSLASHbig] = ACTIONS(6121), - [anon_sym_BSLASHBig] = ACTIONS(6121), - [anon_sym_BSLASHbigg] = ACTIONS(6121), - [anon_sym_BSLASHBigg] = ACTIONS(6121), - [anon_sym_BSLASHbigl] = ACTIONS(6121), - [anon_sym_BSLASHBigl] = ACTIONS(6121), - [anon_sym_BSLASHbiggl] = ACTIONS(6121), - [anon_sym_BSLASHBiggl] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6121), - [anon_sym_BSLASHgls] = ACTIONS(6121), - [anon_sym_BSLASHGls] = ACTIONS(6121), - [anon_sym_BSLASHGLS] = ACTIONS(6121), - [anon_sym_BSLASHglspl] = ACTIONS(6121), - [anon_sym_BSLASHGlspl] = ACTIONS(6121), - [anon_sym_BSLASHGLSpl] = ACTIONS(6121), - [anon_sym_BSLASHglsdisp] = ACTIONS(6121), - [anon_sym_BSLASHglslink] = ACTIONS(6121), - [anon_sym_BSLASHglstext] = ACTIONS(6121), - [anon_sym_BSLASHGlstext] = ACTIONS(6121), - [anon_sym_BSLASHGLStext] = ACTIONS(6121), - [anon_sym_BSLASHglsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6121), - [anon_sym_BSLASHglsplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSplural] = ACTIONS(6121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHglsname] = ACTIONS(6121), - [anon_sym_BSLASHGlsname] = ACTIONS(6121), - [anon_sym_BSLASHGLSname] = ACTIONS(6121), - [anon_sym_BSLASHglssymbol] = ACTIONS(6121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6121), - [anon_sym_BSLASHglsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6121), - [anon_sym_BSLASHglsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6121), - [anon_sym_BSLASHglsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6121), - [anon_sym_BSLASHglsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6121), - [anon_sym_BSLASHglsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6121), - [anon_sym_BSLASHnewacronym] = ACTIONS(6121), - [anon_sym_BSLASHacrshort] = ACTIONS(6121), - [anon_sym_BSLASHAcrshort] = ACTIONS(6121), - [anon_sym_BSLASHACRshort] = ACTIONS(6121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6121), - [anon_sym_BSLASHacrlong] = ACTIONS(6121), - [anon_sym_BSLASHAcrlong] = ACTIONS(6121), - [anon_sym_BSLASHACRlong] = ACTIONS(6121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6121), - [anon_sym_BSLASHacrfull] = ACTIONS(6121), - [anon_sym_BSLASHAcrfull] = ACTIONS(6121), - [anon_sym_BSLASHACRfull] = ACTIONS(6121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6121), - [anon_sym_BSLASHacs] = ACTIONS(6121), - [anon_sym_BSLASHAcs] = ACTIONS(6121), - [anon_sym_BSLASHacsp] = ACTIONS(6121), - [anon_sym_BSLASHAcsp] = ACTIONS(6121), - [anon_sym_BSLASHacl] = ACTIONS(6121), - [anon_sym_BSLASHAcl] = ACTIONS(6121), - [anon_sym_BSLASHaclp] = ACTIONS(6121), - [anon_sym_BSLASHAclp] = ACTIONS(6121), - [anon_sym_BSLASHacf] = ACTIONS(6121), - [anon_sym_BSLASHAcf] = ACTIONS(6121), - [anon_sym_BSLASHacfp] = ACTIONS(6121), - [anon_sym_BSLASHAcfp] = ACTIONS(6121), - [anon_sym_BSLASHac] = ACTIONS(6121), - [anon_sym_BSLASHAc] = ACTIONS(6121), - [anon_sym_BSLASHacp] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6121), - [anon_sym_BSLASHcolor] = ACTIONS(6121), - [anon_sym_BSLASHcolorbox] = ACTIONS(6121), - [anon_sym_BSLASHtextcolor] = ACTIONS(6121), - [anon_sym_BSLASHpagecolor] = ACTIONS(6121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6121), - [anon_sym_BSLASHtext] = ACTIONS(6121), - [anon_sym_BSLASHintertext] = ACTIONS(6121), - [anon_sym_shortintertext] = ACTIONS(6121), - }, - [1628] = { - [sym_command_name] = ACTIONS(6189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6189), - [anon_sym_LBRACK] = ACTIONS(6191), - [anon_sym_RBRACK] = ACTIONS(6191), - [anon_sym_COMMA] = ACTIONS(6191), - [anon_sym_EQ] = ACTIONS(6191), - [anon_sym_LPAREN] = ACTIONS(6191), - [anon_sym_RPAREN] = ACTIONS(6191), - [anon_sym_LBRACE] = ACTIONS(6191), - [sym_word] = ACTIONS(6189), - [sym_placeholder] = ACTIONS(6191), - [anon_sym_PLUS] = ACTIONS(6191), - [anon_sym_DASH] = ACTIONS(6191), - [anon_sym_STAR] = ACTIONS(6191), - [anon_sym_SLASH] = ACTIONS(6191), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_COLON] = ACTIONS(6189), - [anon_sym_SQUOTE] = ACTIONS(6189), - [anon_sym__] = ACTIONS(6191), - [anon_sym_CARET] = ACTIONS(6191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), - [anon_sym_DOLLAR] = ACTIONS(6189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), - [anon_sym_BSLASHbegin] = ACTIONS(6189), - [anon_sym_BSLASHtitle] = ACTIONS(6189), - [anon_sym_BSLASHauthor] = ACTIONS(6189), - [anon_sym_BSLASHusepackage] = ACTIONS(6189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), - [anon_sym_BSLASHinclude] = ACTIONS(6189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), - [anon_sym_BSLASHinput] = ACTIONS(6189), - [anon_sym_BSLASHsubfile] = ACTIONS(6189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), - [anon_sym_BSLASHbibliography] = ACTIONS(6189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), - [anon_sym_BSLASHincludesvg] = ACTIONS(6189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), - [anon_sym_BSLASHimport] = ACTIONS(6189), - [anon_sym_BSLASHsubimport] = ACTIONS(6189), - [anon_sym_BSLASHinputfrom] = ACTIONS(6189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), - [anon_sym_BSLASHincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHcaption] = ACTIONS(6189), - [anon_sym_BSLASHcite] = ACTIONS(6189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCite] = ACTIONS(6189), - [anon_sym_BSLASHnocite] = ACTIONS(6189), - [anon_sym_BSLASHcitet] = ACTIONS(6189), - [anon_sym_BSLASHcitep] = ACTIONS(6189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteauthor] = ACTIONS(6189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitetitle] = ACTIONS(6189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteyear] = ACTIONS(6189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitedate] = ACTIONS(6189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteurl] = ACTIONS(6189), - [anon_sym_BSLASHfullcite] = ACTIONS(6189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), - [anon_sym_BSLASHcitealt] = ACTIONS(6189), - [anon_sym_BSLASHcitealp] = ACTIONS(6189), - [anon_sym_BSLASHcitetext] = ACTIONS(6189), - [anon_sym_BSLASHparencite] = ACTIONS(6189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHParencite] = ACTIONS(6189), - [anon_sym_BSLASHfootcite] = ACTIONS(6189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), - [anon_sym_BSLASHtextcite] = ACTIONS(6189), - [anon_sym_BSLASHTextcite] = ACTIONS(6189), - [anon_sym_BSLASHsmartcite] = ACTIONS(6189), - [anon_sym_BSLASHSmartcite] = ACTIONS(6189), - [anon_sym_BSLASHsupercite] = ACTIONS(6189), - [anon_sym_BSLASHautocite] = ACTIONS(6189), - [anon_sym_BSLASHAutocite] = ACTIONS(6189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHvolcite] = ACTIONS(6189), - [anon_sym_BSLASHVolcite] = ACTIONS(6189), - [anon_sym_BSLASHpvolcite] = ACTIONS(6189), - [anon_sym_BSLASHPvolcite] = ACTIONS(6189), - [anon_sym_BSLASHfvolcite] = ACTIONS(6189), - [anon_sym_BSLASHftvolcite] = ACTIONS(6189), - [anon_sym_BSLASHsvolcite] = ACTIONS(6189), - [anon_sym_BSLASHSvolcite] = ACTIONS(6189), - [anon_sym_BSLASHtvolcite] = ACTIONS(6189), - [anon_sym_BSLASHTvolcite] = ACTIONS(6189), - [anon_sym_BSLASHavolcite] = ACTIONS(6189), - [anon_sym_BSLASHAvolcite] = ACTIONS(6189), - [anon_sym_BSLASHnotecite] = ACTIONS(6189), - [anon_sym_BSLASHNotecite] = ACTIONS(6189), - [anon_sym_BSLASHpnotecite] = ACTIONS(6189), - [anon_sym_BSLASHPnotecite] = ACTIONS(6189), - [anon_sym_BSLASHfnotecite] = ACTIONS(6189), - [anon_sym_BSLASHlabel] = ACTIONS(6189), - [anon_sym_BSLASHref] = ACTIONS(6189), - [anon_sym_BSLASHeqref] = ACTIONS(6189), - [anon_sym_BSLASHvref] = ACTIONS(6189), - [anon_sym_BSLASHVref] = ACTIONS(6189), - [anon_sym_BSLASHautoref] = ACTIONS(6189), - [anon_sym_BSLASHpageref] = ACTIONS(6189), - [anon_sym_BSLASHcref] = ACTIONS(6189), - [anon_sym_BSLASHCref] = ACTIONS(6189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnameCref] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHlabelcref] = ACTIONS(6189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCrefrange] = ACTIONS(6189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnewlabel] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHdef] = ACTIONS(6189), - [anon_sym_BSLASHlet] = ACTIONS(6189), - [anon_sym_BSLASHleft] = ACTIONS(6189), - [anon_sym_BSLASHbig] = ACTIONS(6189), - [anon_sym_BSLASHBig] = ACTIONS(6189), - [anon_sym_BSLASHbigg] = ACTIONS(6189), - [anon_sym_BSLASHBigg] = ACTIONS(6189), - [anon_sym_BSLASHbigl] = ACTIONS(6189), - [anon_sym_BSLASHBigl] = ACTIONS(6189), - [anon_sym_BSLASHbiggl] = ACTIONS(6189), - [anon_sym_BSLASHBiggl] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), - [anon_sym_BSLASHgls] = ACTIONS(6189), - [anon_sym_BSLASHGls] = ACTIONS(6189), - [anon_sym_BSLASHGLS] = ACTIONS(6189), - [anon_sym_BSLASHglspl] = ACTIONS(6189), - [anon_sym_BSLASHGlspl] = ACTIONS(6189), - [anon_sym_BSLASHGLSpl] = ACTIONS(6189), - [anon_sym_BSLASHglsdisp] = ACTIONS(6189), - [anon_sym_BSLASHglslink] = ACTIONS(6189), - [anon_sym_BSLASHglstext] = ACTIONS(6189), - [anon_sym_BSLASHGlstext] = ACTIONS(6189), - [anon_sym_BSLASHGLStext] = ACTIONS(6189), - [anon_sym_BSLASHglsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), - [anon_sym_BSLASHglsplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSplural] = ACTIONS(6189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHglsname] = ACTIONS(6189), - [anon_sym_BSLASHGlsname] = ACTIONS(6189), - [anon_sym_BSLASHGLSname] = ACTIONS(6189), - [anon_sym_BSLASHglssymbol] = ACTIONS(6189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), - [anon_sym_BSLASHglsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), - [anon_sym_BSLASHglsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), - [anon_sym_BSLASHglsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), - [anon_sym_BSLASHglsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), - [anon_sym_BSLASHglsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), - [anon_sym_BSLASHnewacronym] = ACTIONS(6189), - [anon_sym_BSLASHacrshort] = ACTIONS(6189), - [anon_sym_BSLASHAcrshort] = ACTIONS(6189), - [anon_sym_BSLASHACRshort] = ACTIONS(6189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), - [anon_sym_BSLASHacrlong] = ACTIONS(6189), - [anon_sym_BSLASHAcrlong] = ACTIONS(6189), - [anon_sym_BSLASHACRlong] = ACTIONS(6189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), - [anon_sym_BSLASHacrfull] = ACTIONS(6189), - [anon_sym_BSLASHAcrfull] = ACTIONS(6189), - [anon_sym_BSLASHACRfull] = ACTIONS(6189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), - [anon_sym_BSLASHacs] = ACTIONS(6189), - [anon_sym_BSLASHAcs] = ACTIONS(6189), - [anon_sym_BSLASHacsp] = ACTIONS(6189), - [anon_sym_BSLASHAcsp] = ACTIONS(6189), - [anon_sym_BSLASHacl] = ACTIONS(6189), - [anon_sym_BSLASHAcl] = ACTIONS(6189), - [anon_sym_BSLASHaclp] = ACTIONS(6189), - [anon_sym_BSLASHAclp] = ACTIONS(6189), - [anon_sym_BSLASHacf] = ACTIONS(6189), - [anon_sym_BSLASHAcf] = ACTIONS(6189), - [anon_sym_BSLASHacfp] = ACTIONS(6189), - [anon_sym_BSLASHAcfp] = ACTIONS(6189), - [anon_sym_BSLASHac] = ACTIONS(6189), - [anon_sym_BSLASHAc] = ACTIONS(6189), - [anon_sym_BSLASHacp] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), - [anon_sym_BSLASHcolor] = ACTIONS(6189), - [anon_sym_BSLASHcolorbox] = ACTIONS(6189), - [anon_sym_BSLASHtextcolor] = ACTIONS(6189), - [anon_sym_BSLASHpagecolor] = ACTIONS(6189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), - [anon_sym_BSLASHtext] = ACTIONS(6189), - [anon_sym_BSLASHintertext] = ACTIONS(6189), - [anon_sym_shortintertext] = ACTIONS(6189), - }, - [1629] = { - [sym_command_name] = ACTIONS(6153), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6153), - [anon_sym_LBRACK] = ACTIONS(6155), - [anon_sym_RBRACK] = ACTIONS(6155), - [anon_sym_COMMA] = ACTIONS(6155), - [anon_sym_EQ] = ACTIONS(6155), - [anon_sym_LPAREN] = ACTIONS(6155), - [anon_sym_RPAREN] = ACTIONS(6155), - [anon_sym_LBRACE] = ACTIONS(6155), - [sym_word] = ACTIONS(6153), - [sym_placeholder] = ACTIONS(6155), - [anon_sym_PLUS] = ACTIONS(6155), - [anon_sym_DASH] = ACTIONS(6155), - [anon_sym_STAR] = ACTIONS(6155), - [anon_sym_SLASH] = ACTIONS(6155), - [anon_sym_LT] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6153), - [anon_sym_BANG] = ACTIONS(6153), - [anon_sym_PIPE] = ACTIONS(6153), - [anon_sym_COLON] = ACTIONS(6153), - [anon_sym_SQUOTE] = ACTIONS(6153), - [anon_sym__] = ACTIONS(6155), - [anon_sym_CARET] = ACTIONS(6155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6155), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6155), - [anon_sym_DOLLAR] = ACTIONS(6153), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6155), - [anon_sym_BSLASHbegin] = ACTIONS(6153), - [anon_sym_BSLASHtitle] = ACTIONS(6153), - [anon_sym_BSLASHauthor] = ACTIONS(6153), - [anon_sym_BSLASHusepackage] = ACTIONS(6153), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6153), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6153), - [anon_sym_BSLASHinclude] = ACTIONS(6153), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6153), - [anon_sym_BSLASHinput] = ACTIONS(6153), - [anon_sym_BSLASHsubfile] = ACTIONS(6153), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6153), - [anon_sym_BSLASHbibliography] = ACTIONS(6153), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6153), - [anon_sym_BSLASHincludesvg] = ACTIONS(6153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6153), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6153), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6153), - [anon_sym_BSLASHimport] = ACTIONS(6153), - [anon_sym_BSLASHsubimport] = ACTIONS(6153), - [anon_sym_BSLASHinputfrom] = ACTIONS(6153), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6153), - [anon_sym_BSLASHincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6153), - [anon_sym_BSLASHcaption] = ACTIONS(6153), - [anon_sym_BSLASHcite] = ACTIONS(6153), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCite] = ACTIONS(6153), - [anon_sym_BSLASHnocite] = ACTIONS(6153), - [anon_sym_BSLASHcitet] = ACTIONS(6153), - [anon_sym_BSLASHcitep] = ACTIONS(6153), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteauthor] = ACTIONS(6153), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6153), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitetitle] = ACTIONS(6153), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteyear] = ACTIONS(6153), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6155), - [anon_sym_BSLASHcitedate] = ACTIONS(6153), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6155), - [anon_sym_BSLASHciteurl] = ACTIONS(6153), - [anon_sym_BSLASHfullcite] = ACTIONS(6153), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6153), - [anon_sym_BSLASHcitealt] = ACTIONS(6153), - [anon_sym_BSLASHcitealp] = ACTIONS(6153), - [anon_sym_BSLASHcitetext] = ACTIONS(6153), - [anon_sym_BSLASHparencite] = ACTIONS(6153), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHParencite] = ACTIONS(6153), - [anon_sym_BSLASHfootcite] = ACTIONS(6153), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6153), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6153), - [anon_sym_BSLASHtextcite] = ACTIONS(6153), - [anon_sym_BSLASHTextcite] = ACTIONS(6153), - [anon_sym_BSLASHsmartcite] = ACTIONS(6153), - [anon_sym_BSLASHSmartcite] = ACTIONS(6153), - [anon_sym_BSLASHsupercite] = ACTIONS(6153), - [anon_sym_BSLASHautocite] = ACTIONS(6153), - [anon_sym_BSLASHAutocite] = ACTIONS(6153), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6155), - [anon_sym_BSLASHvolcite] = ACTIONS(6153), - [anon_sym_BSLASHVolcite] = ACTIONS(6153), - [anon_sym_BSLASHpvolcite] = ACTIONS(6153), - [anon_sym_BSLASHPvolcite] = ACTIONS(6153), - [anon_sym_BSLASHfvolcite] = ACTIONS(6153), - [anon_sym_BSLASHftvolcite] = ACTIONS(6153), - [anon_sym_BSLASHsvolcite] = ACTIONS(6153), - [anon_sym_BSLASHSvolcite] = ACTIONS(6153), - [anon_sym_BSLASHtvolcite] = ACTIONS(6153), - [anon_sym_BSLASHTvolcite] = ACTIONS(6153), - [anon_sym_BSLASHavolcite] = ACTIONS(6153), - [anon_sym_BSLASHAvolcite] = ACTIONS(6153), - [anon_sym_BSLASHnotecite] = ACTIONS(6153), - [anon_sym_BSLASHNotecite] = ACTIONS(6153), - [anon_sym_BSLASHpnotecite] = ACTIONS(6153), - [anon_sym_BSLASHPnotecite] = ACTIONS(6153), - [anon_sym_BSLASHfnotecite] = ACTIONS(6153), - [anon_sym_BSLASHlabel] = ACTIONS(6153), - [anon_sym_BSLASHref] = ACTIONS(6153), - [anon_sym_BSLASHeqref] = ACTIONS(6153), - [anon_sym_BSLASHvref] = ACTIONS(6153), - [anon_sym_BSLASHVref] = ACTIONS(6153), - [anon_sym_BSLASHautoref] = ACTIONS(6153), - [anon_sym_BSLASHpageref] = ACTIONS(6153), - [anon_sym_BSLASHcref] = ACTIONS(6153), - [anon_sym_BSLASHCref] = ACTIONS(6153), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnameCref] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6153), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6153), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6153), - [anon_sym_BSLASHlabelcref] = ACTIONS(6153), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange] = ACTIONS(6153), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHCrefrange] = ACTIONS(6153), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6155), - [anon_sym_BSLASHnewlabel] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand] = ACTIONS(6153), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6153), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6155), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6153), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6155), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6153), - [anon_sym_BSLASHdef] = ACTIONS(6153), - [anon_sym_BSLASHlet] = ACTIONS(6153), - [anon_sym_BSLASHleft] = ACTIONS(6153), - [anon_sym_BSLASHbig] = ACTIONS(6153), - [anon_sym_BSLASHBig] = ACTIONS(6153), - [anon_sym_BSLASHbigg] = ACTIONS(6153), - [anon_sym_BSLASHBigg] = ACTIONS(6153), - [anon_sym_BSLASHbigl] = ACTIONS(6153), - [anon_sym_BSLASHBigl] = ACTIONS(6153), - [anon_sym_BSLASHbiggl] = ACTIONS(6153), - [anon_sym_BSLASHBiggl] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6153), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6153), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6153), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6153), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6153), - [anon_sym_BSLASHgls] = ACTIONS(6153), - [anon_sym_BSLASHGls] = ACTIONS(6153), - [anon_sym_BSLASHGLS] = ACTIONS(6153), - [anon_sym_BSLASHglspl] = ACTIONS(6153), - [anon_sym_BSLASHGlspl] = ACTIONS(6153), - [anon_sym_BSLASHGLSpl] = ACTIONS(6153), - [anon_sym_BSLASHglsdisp] = ACTIONS(6153), - [anon_sym_BSLASHglslink] = ACTIONS(6153), - [anon_sym_BSLASHglstext] = ACTIONS(6153), - [anon_sym_BSLASHGlstext] = ACTIONS(6153), - [anon_sym_BSLASHGLStext] = ACTIONS(6153), - [anon_sym_BSLASHglsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6153), - [anon_sym_BSLASHglsplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSplural] = ACTIONS(6153), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6153), - [anon_sym_BSLASHglsname] = ACTIONS(6153), - [anon_sym_BSLASHGlsname] = ACTIONS(6153), - [anon_sym_BSLASHGLSname] = ACTIONS(6153), - [anon_sym_BSLASHglssymbol] = ACTIONS(6153), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6153), - [anon_sym_BSLASHglsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6153), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6153), - [anon_sym_BSLASHglsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6153), - [anon_sym_BSLASHglsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6153), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6153), - [anon_sym_BSLASHglsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6153), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6153), - [anon_sym_BSLASHglsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6153), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6153), - [anon_sym_BSLASHnewacronym] = ACTIONS(6153), - [anon_sym_BSLASHacrshort] = ACTIONS(6153), - [anon_sym_BSLASHAcrshort] = ACTIONS(6153), - [anon_sym_BSLASHACRshort] = ACTIONS(6153), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6153), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6153), - [anon_sym_BSLASHacrlong] = ACTIONS(6153), - [anon_sym_BSLASHAcrlong] = ACTIONS(6153), - [anon_sym_BSLASHACRlong] = ACTIONS(6153), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6153), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6153), - [anon_sym_BSLASHacrfull] = ACTIONS(6153), - [anon_sym_BSLASHAcrfull] = ACTIONS(6153), - [anon_sym_BSLASHACRfull] = ACTIONS(6153), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6153), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6153), - [anon_sym_BSLASHacs] = ACTIONS(6153), - [anon_sym_BSLASHAcs] = ACTIONS(6153), - [anon_sym_BSLASHacsp] = ACTIONS(6153), - [anon_sym_BSLASHAcsp] = ACTIONS(6153), - [anon_sym_BSLASHacl] = ACTIONS(6153), - [anon_sym_BSLASHAcl] = ACTIONS(6153), - [anon_sym_BSLASHaclp] = ACTIONS(6153), - [anon_sym_BSLASHAclp] = ACTIONS(6153), - [anon_sym_BSLASHacf] = ACTIONS(6153), - [anon_sym_BSLASHAcf] = ACTIONS(6153), - [anon_sym_BSLASHacfp] = ACTIONS(6153), - [anon_sym_BSLASHAcfp] = ACTIONS(6153), - [anon_sym_BSLASHac] = ACTIONS(6153), - [anon_sym_BSLASHAc] = ACTIONS(6153), - [anon_sym_BSLASHacp] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6153), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6153), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6153), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6153), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6153), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6153), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6153), - [anon_sym_BSLASHcolor] = ACTIONS(6153), - [anon_sym_BSLASHcolorbox] = ACTIONS(6153), - [anon_sym_BSLASHtextcolor] = ACTIONS(6153), - [anon_sym_BSLASHpagecolor] = ACTIONS(6153), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6153), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6153), - [anon_sym_BSLASHtext] = ACTIONS(6153), - [anon_sym_BSLASHintertext] = ACTIONS(6153), - [anon_sym_shortintertext] = ACTIONS(6153), - }, - [1630] = { - [sym_command_name] = ACTIONS(6149), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6149), - [anon_sym_LBRACK] = ACTIONS(6151), - [anon_sym_RBRACK] = ACTIONS(6151), - [anon_sym_COMMA] = ACTIONS(6151), - [anon_sym_EQ] = ACTIONS(6151), - [anon_sym_LPAREN] = ACTIONS(6151), - [anon_sym_RPAREN] = ACTIONS(6151), - [anon_sym_LBRACE] = ACTIONS(6151), - [sym_word] = ACTIONS(6149), - [sym_placeholder] = ACTIONS(6151), - [anon_sym_PLUS] = ACTIONS(6151), - [anon_sym_DASH] = ACTIONS(6151), - [anon_sym_STAR] = ACTIONS(6151), - [anon_sym_SLASH] = ACTIONS(6151), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_BANG] = ACTIONS(6149), - [anon_sym_PIPE] = ACTIONS(6149), - [anon_sym_COLON] = ACTIONS(6149), - [anon_sym_SQUOTE] = ACTIONS(6149), - [anon_sym__] = ACTIONS(6151), - [anon_sym_CARET] = ACTIONS(6151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6151), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6151), - [anon_sym_DOLLAR] = ACTIONS(6149), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6151), - [anon_sym_BSLASHbegin] = ACTIONS(6149), - [anon_sym_BSLASHtitle] = ACTIONS(6149), - [anon_sym_BSLASHauthor] = ACTIONS(6149), - [anon_sym_BSLASHusepackage] = ACTIONS(6149), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6149), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6149), - [anon_sym_BSLASHinclude] = ACTIONS(6149), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6149), - [anon_sym_BSLASHinput] = ACTIONS(6149), - [anon_sym_BSLASHsubfile] = ACTIONS(6149), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6149), - [anon_sym_BSLASHbibliography] = ACTIONS(6149), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6149), - [anon_sym_BSLASHincludesvg] = ACTIONS(6149), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6149), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6149), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6149), - [anon_sym_BSLASHimport] = ACTIONS(6149), - [anon_sym_BSLASHsubimport] = ACTIONS(6149), - [anon_sym_BSLASHinputfrom] = ACTIONS(6149), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6149), - [anon_sym_BSLASHincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6149), - [anon_sym_BSLASHcaption] = ACTIONS(6149), - [anon_sym_BSLASHcite] = ACTIONS(6149), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCite] = ACTIONS(6149), - [anon_sym_BSLASHnocite] = ACTIONS(6149), - [anon_sym_BSLASHcitet] = ACTIONS(6149), - [anon_sym_BSLASHcitep] = ACTIONS(6149), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteauthor] = ACTIONS(6149), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6149), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitetitle] = ACTIONS(6149), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteyear] = ACTIONS(6149), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6151), - [anon_sym_BSLASHcitedate] = ACTIONS(6149), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6151), - [anon_sym_BSLASHciteurl] = ACTIONS(6149), - [anon_sym_BSLASHfullcite] = ACTIONS(6149), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6149), - [anon_sym_BSLASHcitealt] = ACTIONS(6149), - [anon_sym_BSLASHcitealp] = ACTIONS(6149), - [anon_sym_BSLASHcitetext] = ACTIONS(6149), - [anon_sym_BSLASHparencite] = ACTIONS(6149), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHParencite] = ACTIONS(6149), - [anon_sym_BSLASHfootcite] = ACTIONS(6149), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6149), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6149), - [anon_sym_BSLASHtextcite] = ACTIONS(6149), - [anon_sym_BSLASHTextcite] = ACTIONS(6149), - [anon_sym_BSLASHsmartcite] = ACTIONS(6149), - [anon_sym_BSLASHSmartcite] = ACTIONS(6149), - [anon_sym_BSLASHsupercite] = ACTIONS(6149), - [anon_sym_BSLASHautocite] = ACTIONS(6149), - [anon_sym_BSLASHAutocite] = ACTIONS(6149), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6151), - [anon_sym_BSLASHvolcite] = ACTIONS(6149), - [anon_sym_BSLASHVolcite] = ACTIONS(6149), - [anon_sym_BSLASHpvolcite] = ACTIONS(6149), - [anon_sym_BSLASHPvolcite] = ACTIONS(6149), - [anon_sym_BSLASHfvolcite] = ACTIONS(6149), - [anon_sym_BSLASHftvolcite] = ACTIONS(6149), - [anon_sym_BSLASHsvolcite] = ACTIONS(6149), - [anon_sym_BSLASHSvolcite] = ACTIONS(6149), - [anon_sym_BSLASHtvolcite] = ACTIONS(6149), - [anon_sym_BSLASHTvolcite] = ACTIONS(6149), - [anon_sym_BSLASHavolcite] = ACTIONS(6149), - [anon_sym_BSLASHAvolcite] = ACTIONS(6149), - [anon_sym_BSLASHnotecite] = ACTIONS(6149), - [anon_sym_BSLASHNotecite] = ACTIONS(6149), - [anon_sym_BSLASHpnotecite] = ACTIONS(6149), - [anon_sym_BSLASHPnotecite] = ACTIONS(6149), - [anon_sym_BSLASHfnotecite] = ACTIONS(6149), - [anon_sym_BSLASHlabel] = ACTIONS(6149), - [anon_sym_BSLASHref] = ACTIONS(6149), - [anon_sym_BSLASHeqref] = ACTIONS(6149), - [anon_sym_BSLASHvref] = ACTIONS(6149), - [anon_sym_BSLASHVref] = ACTIONS(6149), - [anon_sym_BSLASHautoref] = ACTIONS(6149), - [anon_sym_BSLASHpageref] = ACTIONS(6149), - [anon_sym_BSLASHcref] = ACTIONS(6149), - [anon_sym_BSLASHCref] = ACTIONS(6149), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnameCref] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6149), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6149), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6149), - [anon_sym_BSLASHlabelcref] = ACTIONS(6149), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange] = ACTIONS(6149), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHCrefrange] = ACTIONS(6149), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6151), - [anon_sym_BSLASHnewlabel] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand] = ACTIONS(6149), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6149), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6151), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6149), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6151), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6149), - [anon_sym_BSLASHdef] = ACTIONS(6149), - [anon_sym_BSLASHlet] = ACTIONS(6149), - [anon_sym_BSLASHleft] = ACTIONS(6149), - [anon_sym_BSLASHbig] = ACTIONS(6149), - [anon_sym_BSLASHBig] = ACTIONS(6149), - [anon_sym_BSLASHbigg] = ACTIONS(6149), - [anon_sym_BSLASHBigg] = ACTIONS(6149), - [anon_sym_BSLASHbigl] = ACTIONS(6149), - [anon_sym_BSLASHBigl] = ACTIONS(6149), - [anon_sym_BSLASHbiggl] = ACTIONS(6149), - [anon_sym_BSLASHBiggl] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6149), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6149), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6149), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6149), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6149), - [anon_sym_BSLASHgls] = ACTIONS(6149), - [anon_sym_BSLASHGls] = ACTIONS(6149), - [anon_sym_BSLASHGLS] = ACTIONS(6149), - [anon_sym_BSLASHglspl] = ACTIONS(6149), - [anon_sym_BSLASHGlspl] = ACTIONS(6149), - [anon_sym_BSLASHGLSpl] = ACTIONS(6149), - [anon_sym_BSLASHglsdisp] = ACTIONS(6149), - [anon_sym_BSLASHglslink] = ACTIONS(6149), - [anon_sym_BSLASHglstext] = ACTIONS(6149), - [anon_sym_BSLASHGlstext] = ACTIONS(6149), - [anon_sym_BSLASHGLStext] = ACTIONS(6149), - [anon_sym_BSLASHglsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6149), - [anon_sym_BSLASHglsplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSplural] = ACTIONS(6149), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6149), - [anon_sym_BSLASHglsname] = ACTIONS(6149), - [anon_sym_BSLASHGlsname] = ACTIONS(6149), - [anon_sym_BSLASHGLSname] = ACTIONS(6149), - [anon_sym_BSLASHglssymbol] = ACTIONS(6149), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6149), - [anon_sym_BSLASHglsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6149), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6149), - [anon_sym_BSLASHglsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6149), - [anon_sym_BSLASHglsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6149), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6149), - [anon_sym_BSLASHglsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6149), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6149), - [anon_sym_BSLASHglsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6149), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6149), - [anon_sym_BSLASHnewacronym] = ACTIONS(6149), - [anon_sym_BSLASHacrshort] = ACTIONS(6149), - [anon_sym_BSLASHAcrshort] = ACTIONS(6149), - [anon_sym_BSLASHACRshort] = ACTIONS(6149), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6149), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6149), - [anon_sym_BSLASHacrlong] = ACTIONS(6149), - [anon_sym_BSLASHAcrlong] = ACTIONS(6149), - [anon_sym_BSLASHACRlong] = ACTIONS(6149), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6149), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6149), - [anon_sym_BSLASHacrfull] = ACTIONS(6149), - [anon_sym_BSLASHAcrfull] = ACTIONS(6149), - [anon_sym_BSLASHACRfull] = ACTIONS(6149), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6149), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6149), - [anon_sym_BSLASHacs] = ACTIONS(6149), - [anon_sym_BSLASHAcs] = ACTIONS(6149), - [anon_sym_BSLASHacsp] = ACTIONS(6149), - [anon_sym_BSLASHAcsp] = ACTIONS(6149), - [anon_sym_BSLASHacl] = ACTIONS(6149), - [anon_sym_BSLASHAcl] = ACTIONS(6149), - [anon_sym_BSLASHaclp] = ACTIONS(6149), - [anon_sym_BSLASHAclp] = ACTIONS(6149), - [anon_sym_BSLASHacf] = ACTIONS(6149), - [anon_sym_BSLASHAcf] = ACTIONS(6149), - [anon_sym_BSLASHacfp] = ACTIONS(6149), - [anon_sym_BSLASHAcfp] = ACTIONS(6149), - [anon_sym_BSLASHac] = ACTIONS(6149), - [anon_sym_BSLASHAc] = ACTIONS(6149), - [anon_sym_BSLASHacp] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6149), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6149), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6149), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6149), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6149), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6149), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6149), - [anon_sym_BSLASHcolor] = ACTIONS(6149), - [anon_sym_BSLASHcolorbox] = ACTIONS(6149), - [anon_sym_BSLASHtextcolor] = ACTIONS(6149), - [anon_sym_BSLASHpagecolor] = ACTIONS(6149), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6149), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6149), - [anon_sym_BSLASHtext] = ACTIONS(6149), - [anon_sym_BSLASHintertext] = ACTIONS(6149), - [anon_sym_shortintertext] = ACTIONS(6149), - }, - [1631] = { - [sym_command_name] = ACTIONS(6145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6145), - [anon_sym_LBRACK] = ACTIONS(6147), - [anon_sym_RBRACK] = ACTIONS(6147), - [anon_sym_COMMA] = ACTIONS(6147), - [anon_sym_EQ] = ACTIONS(6147), - [anon_sym_LPAREN] = ACTIONS(6147), - [anon_sym_RPAREN] = ACTIONS(6147), - [anon_sym_LBRACE] = ACTIONS(6147), - [sym_word] = ACTIONS(6145), - [sym_placeholder] = ACTIONS(6147), - [anon_sym_PLUS] = ACTIONS(6147), - [anon_sym_DASH] = ACTIONS(6147), - [anon_sym_STAR] = ACTIONS(6147), - [anon_sym_SLASH] = ACTIONS(6147), - [anon_sym_LT] = ACTIONS(6145), - [anon_sym_GT] = ACTIONS(6145), - [anon_sym_BANG] = ACTIONS(6145), - [anon_sym_PIPE] = ACTIONS(6145), - [anon_sym_COLON] = ACTIONS(6145), - [anon_sym_SQUOTE] = ACTIONS(6145), - [anon_sym__] = ACTIONS(6147), - [anon_sym_CARET] = ACTIONS(6147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6147), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6147), - [anon_sym_DOLLAR] = ACTIONS(6145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6147), - [anon_sym_BSLASHbegin] = ACTIONS(6145), - [anon_sym_BSLASHtitle] = ACTIONS(6145), - [anon_sym_BSLASHauthor] = ACTIONS(6145), - [anon_sym_BSLASHusepackage] = ACTIONS(6145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6145), - [anon_sym_BSLASHinclude] = ACTIONS(6145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6145), - [anon_sym_BSLASHinput] = ACTIONS(6145), - [anon_sym_BSLASHsubfile] = ACTIONS(6145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6145), - [anon_sym_BSLASHbibliography] = ACTIONS(6145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6145), - [anon_sym_BSLASHincludesvg] = ACTIONS(6145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6145), - [anon_sym_BSLASHimport] = ACTIONS(6145), - [anon_sym_BSLASHsubimport] = ACTIONS(6145), - [anon_sym_BSLASHinputfrom] = ACTIONS(6145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6145), - [anon_sym_BSLASHincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6145), - [anon_sym_BSLASHcaption] = ACTIONS(6145), - [anon_sym_BSLASHcite] = ACTIONS(6145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCite] = ACTIONS(6145), - [anon_sym_BSLASHnocite] = ACTIONS(6145), - [anon_sym_BSLASHcitet] = ACTIONS(6145), - [anon_sym_BSLASHcitep] = ACTIONS(6145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteauthor] = ACTIONS(6145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitetitle] = ACTIONS(6145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteyear] = ACTIONS(6145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6147), - [anon_sym_BSLASHcitedate] = ACTIONS(6145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6147), - [anon_sym_BSLASHciteurl] = ACTIONS(6145), - [anon_sym_BSLASHfullcite] = ACTIONS(6145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6145), - [anon_sym_BSLASHcitealt] = ACTIONS(6145), - [anon_sym_BSLASHcitealp] = ACTIONS(6145), - [anon_sym_BSLASHcitetext] = ACTIONS(6145), - [anon_sym_BSLASHparencite] = ACTIONS(6145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHParencite] = ACTIONS(6145), - [anon_sym_BSLASHfootcite] = ACTIONS(6145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6145), - [anon_sym_BSLASHtextcite] = ACTIONS(6145), - [anon_sym_BSLASHTextcite] = ACTIONS(6145), - [anon_sym_BSLASHsmartcite] = ACTIONS(6145), - [anon_sym_BSLASHSmartcite] = ACTIONS(6145), - [anon_sym_BSLASHsupercite] = ACTIONS(6145), - [anon_sym_BSLASHautocite] = ACTIONS(6145), - [anon_sym_BSLASHAutocite] = ACTIONS(6145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6147), - [anon_sym_BSLASHvolcite] = ACTIONS(6145), - [anon_sym_BSLASHVolcite] = ACTIONS(6145), - [anon_sym_BSLASHpvolcite] = ACTIONS(6145), - [anon_sym_BSLASHPvolcite] = ACTIONS(6145), - [anon_sym_BSLASHfvolcite] = ACTIONS(6145), - [anon_sym_BSLASHftvolcite] = ACTIONS(6145), - [anon_sym_BSLASHsvolcite] = ACTIONS(6145), - [anon_sym_BSLASHSvolcite] = ACTIONS(6145), - [anon_sym_BSLASHtvolcite] = ACTIONS(6145), - [anon_sym_BSLASHTvolcite] = ACTIONS(6145), - [anon_sym_BSLASHavolcite] = ACTIONS(6145), - [anon_sym_BSLASHAvolcite] = ACTIONS(6145), - [anon_sym_BSLASHnotecite] = ACTIONS(6145), - [anon_sym_BSLASHNotecite] = ACTIONS(6145), - [anon_sym_BSLASHpnotecite] = ACTIONS(6145), - [anon_sym_BSLASHPnotecite] = ACTIONS(6145), - [anon_sym_BSLASHfnotecite] = ACTIONS(6145), - [anon_sym_BSLASHlabel] = ACTIONS(6145), - [anon_sym_BSLASHref] = ACTIONS(6145), - [anon_sym_BSLASHeqref] = ACTIONS(6145), - [anon_sym_BSLASHvref] = ACTIONS(6145), - [anon_sym_BSLASHVref] = ACTIONS(6145), - [anon_sym_BSLASHautoref] = ACTIONS(6145), - [anon_sym_BSLASHpageref] = ACTIONS(6145), - [anon_sym_BSLASHcref] = ACTIONS(6145), - [anon_sym_BSLASHCref] = ACTIONS(6145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnameCref] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6145), - [anon_sym_BSLASHlabelcref] = ACTIONS(6145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange] = ACTIONS(6145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHCrefrange] = ACTIONS(6145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6147), - [anon_sym_BSLASHnewlabel] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand] = ACTIONS(6145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6147), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6147), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6145), - [anon_sym_BSLASHdef] = ACTIONS(6145), - [anon_sym_BSLASHlet] = ACTIONS(6145), - [anon_sym_BSLASHleft] = ACTIONS(6145), - [anon_sym_BSLASHbig] = ACTIONS(6145), - [anon_sym_BSLASHBig] = ACTIONS(6145), - [anon_sym_BSLASHbigg] = ACTIONS(6145), - [anon_sym_BSLASHBigg] = ACTIONS(6145), - [anon_sym_BSLASHbigl] = ACTIONS(6145), - [anon_sym_BSLASHBigl] = ACTIONS(6145), - [anon_sym_BSLASHbiggl] = ACTIONS(6145), - [anon_sym_BSLASHBiggl] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6145), - [anon_sym_BSLASHgls] = ACTIONS(6145), - [anon_sym_BSLASHGls] = ACTIONS(6145), - [anon_sym_BSLASHGLS] = ACTIONS(6145), - [anon_sym_BSLASHglspl] = ACTIONS(6145), - [anon_sym_BSLASHGlspl] = ACTIONS(6145), - [anon_sym_BSLASHGLSpl] = ACTIONS(6145), - [anon_sym_BSLASHglsdisp] = ACTIONS(6145), - [anon_sym_BSLASHglslink] = ACTIONS(6145), - [anon_sym_BSLASHglstext] = ACTIONS(6145), - [anon_sym_BSLASHGlstext] = ACTIONS(6145), - [anon_sym_BSLASHGLStext] = ACTIONS(6145), - [anon_sym_BSLASHglsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6145), - [anon_sym_BSLASHglsplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSplural] = ACTIONS(6145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6145), - [anon_sym_BSLASHglsname] = ACTIONS(6145), - [anon_sym_BSLASHGlsname] = ACTIONS(6145), - [anon_sym_BSLASHGLSname] = ACTIONS(6145), - [anon_sym_BSLASHglssymbol] = ACTIONS(6145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6145), - [anon_sym_BSLASHglsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6145), - [anon_sym_BSLASHglsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6145), - [anon_sym_BSLASHglsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6145), - [anon_sym_BSLASHglsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6145), - [anon_sym_BSLASHglsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6145), - [anon_sym_BSLASHnewacronym] = ACTIONS(6145), - [anon_sym_BSLASHacrshort] = ACTIONS(6145), - [anon_sym_BSLASHAcrshort] = ACTIONS(6145), - [anon_sym_BSLASHACRshort] = ACTIONS(6145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6145), - [anon_sym_BSLASHacrlong] = ACTIONS(6145), - [anon_sym_BSLASHAcrlong] = ACTIONS(6145), - [anon_sym_BSLASHACRlong] = ACTIONS(6145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6145), - [anon_sym_BSLASHacrfull] = ACTIONS(6145), - [anon_sym_BSLASHAcrfull] = ACTIONS(6145), - [anon_sym_BSLASHACRfull] = ACTIONS(6145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6145), - [anon_sym_BSLASHacs] = ACTIONS(6145), - [anon_sym_BSLASHAcs] = ACTIONS(6145), - [anon_sym_BSLASHacsp] = ACTIONS(6145), - [anon_sym_BSLASHAcsp] = ACTIONS(6145), - [anon_sym_BSLASHacl] = ACTIONS(6145), - [anon_sym_BSLASHAcl] = ACTIONS(6145), - [anon_sym_BSLASHaclp] = ACTIONS(6145), - [anon_sym_BSLASHAclp] = ACTIONS(6145), - [anon_sym_BSLASHacf] = ACTIONS(6145), - [anon_sym_BSLASHAcf] = ACTIONS(6145), - [anon_sym_BSLASHacfp] = ACTIONS(6145), - [anon_sym_BSLASHAcfp] = ACTIONS(6145), - [anon_sym_BSLASHac] = ACTIONS(6145), - [anon_sym_BSLASHAc] = ACTIONS(6145), - [anon_sym_BSLASHacp] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6145), - [anon_sym_BSLASHcolor] = ACTIONS(6145), - [anon_sym_BSLASHcolorbox] = ACTIONS(6145), - [anon_sym_BSLASHtextcolor] = ACTIONS(6145), - [anon_sym_BSLASHpagecolor] = ACTIONS(6145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6145), - [anon_sym_BSLASHtext] = ACTIONS(6145), - [anon_sym_BSLASHintertext] = ACTIONS(6145), - [anon_sym_shortintertext] = ACTIONS(6145), - }, - [1632] = { - [sym_command_name] = ACTIONS(6437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6437), - [anon_sym_LBRACK] = ACTIONS(6439), - [anon_sym_RBRACK] = ACTIONS(6439), - [anon_sym_COMMA] = ACTIONS(6439), - [anon_sym_EQ] = ACTIONS(6439), - [anon_sym_LPAREN] = ACTIONS(6439), - [anon_sym_RPAREN] = ACTIONS(6439), - [anon_sym_LBRACE] = ACTIONS(6439), - [anon_sym_RBRACE] = ACTIONS(6439), - [sym_word] = ACTIONS(6437), - [sym_placeholder] = ACTIONS(6439), - [anon_sym_PLUS] = ACTIONS(6439), - [anon_sym_DASH] = ACTIONS(6439), - [anon_sym_STAR] = ACTIONS(6439), - [anon_sym_SLASH] = ACTIONS(6439), - [anon_sym_LT] = ACTIONS(6437), - [anon_sym_GT] = ACTIONS(6437), - [anon_sym_BANG] = ACTIONS(6437), - [anon_sym_PIPE] = ACTIONS(6437), - [anon_sym_COLON] = ACTIONS(6437), - [anon_sym_SQUOTE] = ACTIONS(6437), - [anon_sym__] = ACTIONS(6439), - [anon_sym_CARET] = ACTIONS(6439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6439), - [anon_sym_DOLLAR] = ACTIONS(6437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6439), - [anon_sym_BSLASHtitle] = ACTIONS(6437), - [anon_sym_BSLASHauthor] = ACTIONS(6437), - [anon_sym_BSLASHusepackage] = ACTIONS(6437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6437), - [anon_sym_BSLASHinclude] = ACTIONS(6437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6437), - [anon_sym_BSLASHinput] = ACTIONS(6437), - [anon_sym_BSLASHsubfile] = ACTIONS(6437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6437), - [anon_sym_BSLASHbibliography] = ACTIONS(6437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6437), - [anon_sym_BSLASHincludesvg] = ACTIONS(6437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6437), - [anon_sym_BSLASHimport] = ACTIONS(6437), - [anon_sym_BSLASHsubimport] = ACTIONS(6437), - [anon_sym_BSLASHinputfrom] = ACTIONS(6437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6437), - [anon_sym_BSLASHincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHcaption] = ACTIONS(6437), - [anon_sym_BSLASHcite] = ACTIONS(6437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCite] = ACTIONS(6437), - [anon_sym_BSLASHnocite] = ACTIONS(6437), - [anon_sym_BSLASHcitet] = ACTIONS(6437), - [anon_sym_BSLASHcitep] = ACTIONS(6437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteauthor] = ACTIONS(6437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitetitle] = ACTIONS(6437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteyear] = ACTIONS(6437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitedate] = ACTIONS(6437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteurl] = ACTIONS(6437), - [anon_sym_BSLASHfullcite] = ACTIONS(6437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6437), - [anon_sym_BSLASHcitealt] = ACTIONS(6437), - [anon_sym_BSLASHcitealp] = ACTIONS(6437), - [anon_sym_BSLASHcitetext] = ACTIONS(6437), - [anon_sym_BSLASHparencite] = ACTIONS(6437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHParencite] = ACTIONS(6437), - [anon_sym_BSLASHfootcite] = ACTIONS(6437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6437), - [anon_sym_BSLASHtextcite] = ACTIONS(6437), - [anon_sym_BSLASHTextcite] = ACTIONS(6437), - [anon_sym_BSLASHsmartcite] = ACTIONS(6437), - [anon_sym_BSLASHSmartcite] = ACTIONS(6437), - [anon_sym_BSLASHsupercite] = ACTIONS(6437), - [anon_sym_BSLASHautocite] = ACTIONS(6437), - [anon_sym_BSLASHAutocite] = ACTIONS(6437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHvolcite] = ACTIONS(6437), - [anon_sym_BSLASHVolcite] = ACTIONS(6437), - [anon_sym_BSLASHpvolcite] = ACTIONS(6437), - [anon_sym_BSLASHPvolcite] = ACTIONS(6437), - [anon_sym_BSLASHfvolcite] = ACTIONS(6437), - [anon_sym_BSLASHftvolcite] = ACTIONS(6437), - [anon_sym_BSLASHsvolcite] = ACTIONS(6437), - [anon_sym_BSLASHSvolcite] = ACTIONS(6437), - [anon_sym_BSLASHtvolcite] = ACTIONS(6437), - [anon_sym_BSLASHTvolcite] = ACTIONS(6437), - [anon_sym_BSLASHavolcite] = ACTIONS(6437), - [anon_sym_BSLASHAvolcite] = ACTIONS(6437), - [anon_sym_BSLASHnotecite] = ACTIONS(6437), - [anon_sym_BSLASHNotecite] = ACTIONS(6437), - [anon_sym_BSLASHpnotecite] = ACTIONS(6437), - [anon_sym_BSLASHPnotecite] = ACTIONS(6437), - [anon_sym_BSLASHfnotecite] = ACTIONS(6437), - [anon_sym_BSLASHlabel] = ACTIONS(6437), - [anon_sym_BSLASHref] = ACTIONS(6437), - [anon_sym_BSLASHeqref] = ACTIONS(6437), - [anon_sym_BSLASHvref] = ACTIONS(6437), - [anon_sym_BSLASHVref] = ACTIONS(6437), - [anon_sym_BSLASHautoref] = ACTIONS(6437), - [anon_sym_BSLASHpageref] = ACTIONS(6437), - [anon_sym_BSLASHcref] = ACTIONS(6437), - [anon_sym_BSLASHCref] = ACTIONS(6437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnameCref] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHlabelcref] = ACTIONS(6437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCrefrange] = ACTIONS(6437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnewlabel] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6439), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHdef] = ACTIONS(6437), - [anon_sym_BSLASHlet] = ACTIONS(6437), - [anon_sym_BSLASHleft] = ACTIONS(6437), - [anon_sym_BSLASHbig] = ACTIONS(6437), - [anon_sym_BSLASHBig] = ACTIONS(6437), - [anon_sym_BSLASHbigg] = ACTIONS(6437), - [anon_sym_BSLASHBigg] = ACTIONS(6437), - [anon_sym_BSLASHbigl] = ACTIONS(6437), - [anon_sym_BSLASHBigl] = ACTIONS(6437), - [anon_sym_BSLASHbiggl] = ACTIONS(6437), - [anon_sym_BSLASHBiggl] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6437), - [anon_sym_BSLASHgls] = ACTIONS(6437), - [anon_sym_BSLASHGls] = ACTIONS(6437), - [anon_sym_BSLASHGLS] = ACTIONS(6437), - [anon_sym_BSLASHglspl] = ACTIONS(6437), - [anon_sym_BSLASHGlspl] = ACTIONS(6437), - [anon_sym_BSLASHGLSpl] = ACTIONS(6437), - [anon_sym_BSLASHglsdisp] = ACTIONS(6437), - [anon_sym_BSLASHglslink] = ACTIONS(6437), - [anon_sym_BSLASHglstext] = ACTIONS(6437), - [anon_sym_BSLASHGlstext] = ACTIONS(6437), - [anon_sym_BSLASHGLStext] = ACTIONS(6437), - [anon_sym_BSLASHglsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6437), - [anon_sym_BSLASHglsplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSplural] = ACTIONS(6437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHglsname] = ACTIONS(6437), - [anon_sym_BSLASHGlsname] = ACTIONS(6437), - [anon_sym_BSLASHGLSname] = ACTIONS(6437), - [anon_sym_BSLASHglssymbol] = ACTIONS(6437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6437), - [anon_sym_BSLASHglsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6437), - [anon_sym_BSLASHglsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6437), - [anon_sym_BSLASHglsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6437), - [anon_sym_BSLASHglsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6437), - [anon_sym_BSLASHglsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6437), - [anon_sym_BSLASHnewacronym] = ACTIONS(6437), - [anon_sym_BSLASHacrshort] = ACTIONS(6437), - [anon_sym_BSLASHAcrshort] = ACTIONS(6437), - [anon_sym_BSLASHACRshort] = ACTIONS(6437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6437), - [anon_sym_BSLASHacrlong] = ACTIONS(6437), - [anon_sym_BSLASHAcrlong] = ACTIONS(6437), - [anon_sym_BSLASHACRlong] = ACTIONS(6437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6437), - [anon_sym_BSLASHacrfull] = ACTIONS(6437), - [anon_sym_BSLASHAcrfull] = ACTIONS(6437), - [anon_sym_BSLASHACRfull] = ACTIONS(6437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6437), - [anon_sym_BSLASHacs] = ACTIONS(6437), - [anon_sym_BSLASHAcs] = ACTIONS(6437), - [anon_sym_BSLASHacsp] = ACTIONS(6437), - [anon_sym_BSLASHAcsp] = ACTIONS(6437), - [anon_sym_BSLASHacl] = ACTIONS(6437), - [anon_sym_BSLASHAcl] = ACTIONS(6437), - [anon_sym_BSLASHaclp] = ACTIONS(6437), - [anon_sym_BSLASHAclp] = ACTIONS(6437), - [anon_sym_BSLASHacf] = ACTIONS(6437), - [anon_sym_BSLASHAcf] = ACTIONS(6437), - [anon_sym_BSLASHacfp] = ACTIONS(6437), - [anon_sym_BSLASHAcfp] = ACTIONS(6437), - [anon_sym_BSLASHac] = ACTIONS(6437), - [anon_sym_BSLASHAc] = ACTIONS(6437), - [anon_sym_BSLASHacp] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6437), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6437), - [anon_sym_BSLASHcolor] = ACTIONS(6437), - [anon_sym_BSLASHcolorbox] = ACTIONS(6437), - [anon_sym_BSLASHtextcolor] = ACTIONS(6437), - [anon_sym_BSLASHpagecolor] = ACTIONS(6437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6437), - [anon_sym_BSLASHtext] = ACTIONS(6437), - [anon_sym_BSLASHintertext] = ACTIONS(6437), - [anon_sym_shortintertext] = ACTIONS(6437), - }, - [1633] = { - [sym_command_name] = ACTIONS(6141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6141), - [anon_sym_LBRACK] = ACTIONS(6143), - [anon_sym_RBRACK] = ACTIONS(6143), - [anon_sym_COMMA] = ACTIONS(6143), - [anon_sym_EQ] = ACTIONS(6143), - [anon_sym_LPAREN] = ACTIONS(6143), - [anon_sym_RPAREN] = ACTIONS(6143), - [anon_sym_LBRACE] = ACTIONS(6143), - [sym_word] = ACTIONS(6141), - [sym_placeholder] = ACTIONS(6143), - [anon_sym_PLUS] = ACTIONS(6143), - [anon_sym_DASH] = ACTIONS(6143), - [anon_sym_STAR] = ACTIONS(6143), - [anon_sym_SLASH] = ACTIONS(6143), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_GT] = ACTIONS(6141), - [anon_sym_BANG] = ACTIONS(6141), - [anon_sym_PIPE] = ACTIONS(6141), - [anon_sym_COLON] = ACTIONS(6141), - [anon_sym_SQUOTE] = ACTIONS(6141), - [anon_sym__] = ACTIONS(6143), - [anon_sym_CARET] = ACTIONS(6143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6143), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6143), - [anon_sym_DOLLAR] = ACTIONS(6141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6143), - [anon_sym_BSLASHbegin] = ACTIONS(6141), - [anon_sym_BSLASHtitle] = ACTIONS(6141), - [anon_sym_BSLASHauthor] = ACTIONS(6141), - [anon_sym_BSLASHusepackage] = ACTIONS(6141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6141), - [anon_sym_BSLASHinclude] = ACTIONS(6141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6141), - [anon_sym_BSLASHinput] = ACTIONS(6141), - [anon_sym_BSLASHsubfile] = ACTIONS(6141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6141), - [anon_sym_BSLASHbibliography] = ACTIONS(6141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6141), - [anon_sym_BSLASHincludesvg] = ACTIONS(6141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6141), - [anon_sym_BSLASHimport] = ACTIONS(6141), - [anon_sym_BSLASHsubimport] = ACTIONS(6141), - [anon_sym_BSLASHinputfrom] = ACTIONS(6141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6141), - [anon_sym_BSLASHincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6141), - [anon_sym_BSLASHcaption] = ACTIONS(6141), - [anon_sym_BSLASHcite] = ACTIONS(6141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCite] = ACTIONS(6141), - [anon_sym_BSLASHnocite] = ACTIONS(6141), - [anon_sym_BSLASHcitet] = ACTIONS(6141), - [anon_sym_BSLASHcitep] = ACTIONS(6141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteauthor] = ACTIONS(6141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitetitle] = ACTIONS(6141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteyear] = ACTIONS(6141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6143), - [anon_sym_BSLASHcitedate] = ACTIONS(6141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6143), - [anon_sym_BSLASHciteurl] = ACTIONS(6141), - [anon_sym_BSLASHfullcite] = ACTIONS(6141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6141), - [anon_sym_BSLASHcitealt] = ACTIONS(6141), - [anon_sym_BSLASHcitealp] = ACTIONS(6141), - [anon_sym_BSLASHcitetext] = ACTIONS(6141), - [anon_sym_BSLASHparencite] = ACTIONS(6141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHParencite] = ACTIONS(6141), - [anon_sym_BSLASHfootcite] = ACTIONS(6141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6141), - [anon_sym_BSLASHtextcite] = ACTIONS(6141), - [anon_sym_BSLASHTextcite] = ACTIONS(6141), - [anon_sym_BSLASHsmartcite] = ACTIONS(6141), - [anon_sym_BSLASHSmartcite] = ACTIONS(6141), - [anon_sym_BSLASHsupercite] = ACTIONS(6141), - [anon_sym_BSLASHautocite] = ACTIONS(6141), - [anon_sym_BSLASHAutocite] = ACTIONS(6141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6143), - [anon_sym_BSLASHvolcite] = ACTIONS(6141), - [anon_sym_BSLASHVolcite] = ACTIONS(6141), - [anon_sym_BSLASHpvolcite] = ACTIONS(6141), - [anon_sym_BSLASHPvolcite] = ACTIONS(6141), - [anon_sym_BSLASHfvolcite] = ACTIONS(6141), - [anon_sym_BSLASHftvolcite] = ACTIONS(6141), - [anon_sym_BSLASHsvolcite] = ACTIONS(6141), - [anon_sym_BSLASHSvolcite] = ACTIONS(6141), - [anon_sym_BSLASHtvolcite] = ACTIONS(6141), - [anon_sym_BSLASHTvolcite] = ACTIONS(6141), - [anon_sym_BSLASHavolcite] = ACTIONS(6141), - [anon_sym_BSLASHAvolcite] = ACTIONS(6141), - [anon_sym_BSLASHnotecite] = ACTIONS(6141), - [anon_sym_BSLASHNotecite] = ACTIONS(6141), - [anon_sym_BSLASHpnotecite] = ACTIONS(6141), - [anon_sym_BSLASHPnotecite] = ACTIONS(6141), - [anon_sym_BSLASHfnotecite] = ACTIONS(6141), - [anon_sym_BSLASHlabel] = ACTIONS(6141), - [anon_sym_BSLASHref] = ACTIONS(6141), - [anon_sym_BSLASHeqref] = ACTIONS(6141), - [anon_sym_BSLASHvref] = ACTIONS(6141), - [anon_sym_BSLASHVref] = ACTIONS(6141), - [anon_sym_BSLASHautoref] = ACTIONS(6141), - [anon_sym_BSLASHpageref] = ACTIONS(6141), - [anon_sym_BSLASHcref] = ACTIONS(6141), - [anon_sym_BSLASHCref] = ACTIONS(6141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnameCref] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6141), - [anon_sym_BSLASHlabelcref] = ACTIONS(6141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange] = ACTIONS(6141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHCrefrange] = ACTIONS(6141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6143), - [anon_sym_BSLASHnewlabel] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand] = ACTIONS(6141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6143), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6143), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6141), - [anon_sym_BSLASHdef] = ACTIONS(6141), - [anon_sym_BSLASHlet] = ACTIONS(6141), - [anon_sym_BSLASHleft] = ACTIONS(6141), - [anon_sym_BSLASHbig] = ACTIONS(6141), - [anon_sym_BSLASHBig] = ACTIONS(6141), - [anon_sym_BSLASHbigg] = ACTIONS(6141), - [anon_sym_BSLASHBigg] = ACTIONS(6141), - [anon_sym_BSLASHbigl] = ACTIONS(6141), - [anon_sym_BSLASHBigl] = ACTIONS(6141), - [anon_sym_BSLASHbiggl] = ACTIONS(6141), - [anon_sym_BSLASHBiggl] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6141), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6141), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6141), - [anon_sym_BSLASHgls] = ACTIONS(6141), - [anon_sym_BSLASHGls] = ACTIONS(6141), - [anon_sym_BSLASHGLS] = ACTIONS(6141), - [anon_sym_BSLASHglspl] = ACTIONS(6141), - [anon_sym_BSLASHGlspl] = ACTIONS(6141), - [anon_sym_BSLASHGLSpl] = ACTIONS(6141), - [anon_sym_BSLASHglsdisp] = ACTIONS(6141), - [anon_sym_BSLASHglslink] = ACTIONS(6141), - [anon_sym_BSLASHglstext] = ACTIONS(6141), - [anon_sym_BSLASHGlstext] = ACTIONS(6141), - [anon_sym_BSLASHGLStext] = ACTIONS(6141), - [anon_sym_BSLASHglsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6141), - [anon_sym_BSLASHglsplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSplural] = ACTIONS(6141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6141), - [anon_sym_BSLASHglsname] = ACTIONS(6141), - [anon_sym_BSLASHGlsname] = ACTIONS(6141), - [anon_sym_BSLASHGLSname] = ACTIONS(6141), - [anon_sym_BSLASHglssymbol] = ACTIONS(6141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6141), - [anon_sym_BSLASHglsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6141), - [anon_sym_BSLASHglsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6141), - [anon_sym_BSLASHglsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6141), - [anon_sym_BSLASHglsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6141), - [anon_sym_BSLASHglsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6141), - [anon_sym_BSLASHnewacronym] = ACTIONS(6141), - [anon_sym_BSLASHacrshort] = ACTIONS(6141), - [anon_sym_BSLASHAcrshort] = ACTIONS(6141), - [anon_sym_BSLASHACRshort] = ACTIONS(6141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6141), - [anon_sym_BSLASHacrlong] = ACTIONS(6141), - [anon_sym_BSLASHAcrlong] = ACTIONS(6141), - [anon_sym_BSLASHACRlong] = ACTIONS(6141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6141), - [anon_sym_BSLASHacrfull] = ACTIONS(6141), - [anon_sym_BSLASHAcrfull] = ACTIONS(6141), - [anon_sym_BSLASHACRfull] = ACTIONS(6141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6141), - [anon_sym_BSLASHacs] = ACTIONS(6141), - [anon_sym_BSLASHAcs] = ACTIONS(6141), - [anon_sym_BSLASHacsp] = ACTIONS(6141), - [anon_sym_BSLASHAcsp] = ACTIONS(6141), - [anon_sym_BSLASHacl] = ACTIONS(6141), - [anon_sym_BSLASHAcl] = ACTIONS(6141), - [anon_sym_BSLASHaclp] = ACTIONS(6141), - [anon_sym_BSLASHAclp] = ACTIONS(6141), - [anon_sym_BSLASHacf] = ACTIONS(6141), - [anon_sym_BSLASHAcf] = ACTIONS(6141), - [anon_sym_BSLASHacfp] = ACTIONS(6141), - [anon_sym_BSLASHAcfp] = ACTIONS(6141), - [anon_sym_BSLASHac] = ACTIONS(6141), - [anon_sym_BSLASHAc] = ACTIONS(6141), - [anon_sym_BSLASHacp] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6141), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6141), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6141), - [anon_sym_BSLASHcolor] = ACTIONS(6141), - [anon_sym_BSLASHcolorbox] = ACTIONS(6141), - [anon_sym_BSLASHtextcolor] = ACTIONS(6141), - [anon_sym_BSLASHpagecolor] = ACTIONS(6141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6141), - [anon_sym_BSLASHtext] = ACTIONS(6141), - [anon_sym_BSLASHintertext] = ACTIONS(6141), - [anon_sym_shortintertext] = ACTIONS(6141), - }, - [1634] = { - [sym_command_name] = ACTIONS(6293), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6293), - [anon_sym_LBRACK] = ACTIONS(6295), - [anon_sym_RBRACK] = ACTIONS(6295), - [anon_sym_COMMA] = ACTIONS(6295), - [anon_sym_EQ] = ACTIONS(6295), - [anon_sym_LPAREN] = ACTIONS(6295), - [anon_sym_RPAREN] = ACTIONS(6295), - [anon_sym_LBRACE] = ACTIONS(6295), - [sym_word] = ACTIONS(6293), - [sym_placeholder] = ACTIONS(6295), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6295), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_LT] = ACTIONS(6293), - [anon_sym_GT] = ACTIONS(6293), - [anon_sym_BANG] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_SQUOTE] = ACTIONS(6293), - [anon_sym__] = ACTIONS(6295), - [anon_sym_CARET] = ACTIONS(6295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6295), - [anon_sym_DOLLAR] = ACTIONS(6293), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6295), - [anon_sym_BSLASHbegin] = ACTIONS(6293), - [anon_sym_BSLASHtitle] = ACTIONS(6293), - [anon_sym_BSLASHauthor] = ACTIONS(6293), - [anon_sym_BSLASHusepackage] = ACTIONS(6293), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6293), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6293), - [anon_sym_BSLASHinclude] = ACTIONS(6293), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6293), - [anon_sym_BSLASHinput] = ACTIONS(6293), - [anon_sym_BSLASHsubfile] = ACTIONS(6293), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6293), - [anon_sym_BSLASHbibliography] = ACTIONS(6293), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6293), - [anon_sym_BSLASHincludesvg] = ACTIONS(6293), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6293), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6293), - [anon_sym_BSLASHimport] = ACTIONS(6293), - [anon_sym_BSLASHsubimport] = ACTIONS(6293), - [anon_sym_BSLASHinputfrom] = ACTIONS(6293), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6293), - [anon_sym_BSLASHincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHcaption] = ACTIONS(6293), - [anon_sym_BSLASHcite] = ACTIONS(6293), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCite] = ACTIONS(6293), - [anon_sym_BSLASHnocite] = ACTIONS(6293), - [anon_sym_BSLASHcitet] = ACTIONS(6293), - [anon_sym_BSLASHcitep] = ACTIONS(6293), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteauthor] = ACTIONS(6293), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6293), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitetitle] = ACTIONS(6293), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteyear] = ACTIONS(6293), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitedate] = ACTIONS(6293), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteurl] = ACTIONS(6293), - [anon_sym_BSLASHfullcite] = ACTIONS(6293), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6293), - [anon_sym_BSLASHcitealt] = ACTIONS(6293), - [anon_sym_BSLASHcitealp] = ACTIONS(6293), - [anon_sym_BSLASHcitetext] = ACTIONS(6293), - [anon_sym_BSLASHparencite] = ACTIONS(6293), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHParencite] = ACTIONS(6293), - [anon_sym_BSLASHfootcite] = ACTIONS(6293), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6293), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6293), - [anon_sym_BSLASHtextcite] = ACTIONS(6293), - [anon_sym_BSLASHTextcite] = ACTIONS(6293), - [anon_sym_BSLASHsmartcite] = ACTIONS(6293), - [anon_sym_BSLASHSmartcite] = ACTIONS(6293), - [anon_sym_BSLASHsupercite] = ACTIONS(6293), - [anon_sym_BSLASHautocite] = ACTIONS(6293), - [anon_sym_BSLASHAutocite] = ACTIONS(6293), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHvolcite] = ACTIONS(6293), - [anon_sym_BSLASHVolcite] = ACTIONS(6293), - [anon_sym_BSLASHpvolcite] = ACTIONS(6293), - [anon_sym_BSLASHPvolcite] = ACTIONS(6293), - [anon_sym_BSLASHfvolcite] = ACTIONS(6293), - [anon_sym_BSLASHftvolcite] = ACTIONS(6293), - [anon_sym_BSLASHsvolcite] = ACTIONS(6293), - [anon_sym_BSLASHSvolcite] = ACTIONS(6293), - [anon_sym_BSLASHtvolcite] = ACTIONS(6293), - [anon_sym_BSLASHTvolcite] = ACTIONS(6293), - [anon_sym_BSLASHavolcite] = ACTIONS(6293), - [anon_sym_BSLASHAvolcite] = ACTIONS(6293), - [anon_sym_BSLASHnotecite] = ACTIONS(6293), - [anon_sym_BSLASHNotecite] = ACTIONS(6293), - [anon_sym_BSLASHpnotecite] = ACTIONS(6293), - [anon_sym_BSLASHPnotecite] = ACTIONS(6293), - [anon_sym_BSLASHfnotecite] = ACTIONS(6293), - [anon_sym_BSLASHlabel] = ACTIONS(6293), - [anon_sym_BSLASHref] = ACTIONS(6293), - [anon_sym_BSLASHeqref] = ACTIONS(6293), - [anon_sym_BSLASHvref] = ACTIONS(6293), - [anon_sym_BSLASHVref] = ACTIONS(6293), - [anon_sym_BSLASHautoref] = ACTIONS(6293), - [anon_sym_BSLASHpageref] = ACTIONS(6293), - [anon_sym_BSLASHcref] = ACTIONS(6293), - [anon_sym_BSLASHCref] = ACTIONS(6293), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnameCref] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHlabelcref] = ACTIONS(6293), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCrefrange] = ACTIONS(6293), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnewlabel] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6293), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6293), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6295), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHdef] = ACTIONS(6293), - [anon_sym_BSLASHlet] = ACTIONS(6293), - [anon_sym_BSLASHleft] = ACTIONS(6293), - [anon_sym_BSLASHbig] = ACTIONS(6293), - [anon_sym_BSLASHBig] = ACTIONS(6293), - [anon_sym_BSLASHbigg] = ACTIONS(6293), - [anon_sym_BSLASHBigg] = ACTIONS(6293), - [anon_sym_BSLASHbigl] = ACTIONS(6293), - [anon_sym_BSLASHBigl] = ACTIONS(6293), - [anon_sym_BSLASHbiggl] = ACTIONS(6293), - [anon_sym_BSLASHBiggl] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6293), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6293), - [anon_sym_BSLASHgls] = ACTIONS(6293), - [anon_sym_BSLASHGls] = ACTIONS(6293), - [anon_sym_BSLASHGLS] = ACTIONS(6293), - [anon_sym_BSLASHglspl] = ACTIONS(6293), - [anon_sym_BSLASHGlspl] = ACTIONS(6293), - [anon_sym_BSLASHGLSpl] = ACTIONS(6293), - [anon_sym_BSLASHglsdisp] = ACTIONS(6293), - [anon_sym_BSLASHglslink] = ACTIONS(6293), - [anon_sym_BSLASHglstext] = ACTIONS(6293), - [anon_sym_BSLASHGlstext] = ACTIONS(6293), - [anon_sym_BSLASHGLStext] = ACTIONS(6293), - [anon_sym_BSLASHglsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6293), - [anon_sym_BSLASHglsplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSplural] = ACTIONS(6293), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHglsname] = ACTIONS(6293), - [anon_sym_BSLASHGlsname] = ACTIONS(6293), - [anon_sym_BSLASHGLSname] = ACTIONS(6293), - [anon_sym_BSLASHglssymbol] = ACTIONS(6293), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6293), - [anon_sym_BSLASHglsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6293), - [anon_sym_BSLASHglsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6293), - [anon_sym_BSLASHglsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6293), - [anon_sym_BSLASHglsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6293), - [anon_sym_BSLASHglsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6293), - [anon_sym_BSLASHnewacronym] = ACTIONS(6293), - [anon_sym_BSLASHacrshort] = ACTIONS(6293), - [anon_sym_BSLASHAcrshort] = ACTIONS(6293), - [anon_sym_BSLASHACRshort] = ACTIONS(6293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6293), - [anon_sym_BSLASHacrlong] = ACTIONS(6293), - [anon_sym_BSLASHAcrlong] = ACTIONS(6293), - [anon_sym_BSLASHACRlong] = ACTIONS(6293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6293), - [anon_sym_BSLASHacrfull] = ACTIONS(6293), - [anon_sym_BSLASHAcrfull] = ACTIONS(6293), - [anon_sym_BSLASHACRfull] = ACTIONS(6293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6293), - [anon_sym_BSLASHacs] = ACTIONS(6293), - [anon_sym_BSLASHAcs] = ACTIONS(6293), - [anon_sym_BSLASHacsp] = ACTIONS(6293), - [anon_sym_BSLASHAcsp] = ACTIONS(6293), - [anon_sym_BSLASHacl] = ACTIONS(6293), - [anon_sym_BSLASHAcl] = ACTIONS(6293), - [anon_sym_BSLASHaclp] = ACTIONS(6293), - [anon_sym_BSLASHAclp] = ACTIONS(6293), - [anon_sym_BSLASHacf] = ACTIONS(6293), - [anon_sym_BSLASHAcf] = ACTIONS(6293), - [anon_sym_BSLASHacfp] = ACTIONS(6293), - [anon_sym_BSLASHAcfp] = ACTIONS(6293), - [anon_sym_BSLASHac] = ACTIONS(6293), - [anon_sym_BSLASHAc] = ACTIONS(6293), - [anon_sym_BSLASHacp] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6293), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6293), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6293), - [anon_sym_BSLASHcolor] = ACTIONS(6293), - [anon_sym_BSLASHcolorbox] = ACTIONS(6293), - [anon_sym_BSLASHtextcolor] = ACTIONS(6293), - [anon_sym_BSLASHpagecolor] = ACTIONS(6293), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6293), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6293), - [anon_sym_BSLASHtext] = ACTIONS(6293), - [anon_sym_BSLASHintertext] = ACTIONS(6293), - [anon_sym_shortintertext] = ACTIONS(6293), - }, - [1635] = { - [sym_command_name] = ACTIONS(6433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6433), - [anon_sym_LBRACK] = ACTIONS(6435), - [anon_sym_RBRACK] = ACTIONS(6435), - [anon_sym_COMMA] = ACTIONS(6435), - [anon_sym_EQ] = ACTIONS(6435), - [anon_sym_LPAREN] = ACTIONS(6435), - [anon_sym_RPAREN] = ACTIONS(6435), - [anon_sym_LBRACE] = ACTIONS(6435), - [anon_sym_RBRACE] = ACTIONS(6435), - [sym_word] = ACTIONS(6433), - [sym_placeholder] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6435), - [anon_sym_DASH] = ACTIONS(6435), - [anon_sym_STAR] = ACTIONS(6435), - [anon_sym_SLASH] = ACTIONS(6435), - [anon_sym_LT] = ACTIONS(6433), - [anon_sym_GT] = ACTIONS(6433), - [anon_sym_BANG] = ACTIONS(6433), - [anon_sym_PIPE] = ACTIONS(6433), - [anon_sym_COLON] = ACTIONS(6433), - [anon_sym_SQUOTE] = ACTIONS(6433), - [anon_sym__] = ACTIONS(6435), - [anon_sym_CARET] = ACTIONS(6435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6435), - [anon_sym_DOLLAR] = ACTIONS(6433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6435), - [anon_sym_BSLASHtitle] = ACTIONS(6433), - [anon_sym_BSLASHauthor] = ACTIONS(6433), - [anon_sym_BSLASHusepackage] = ACTIONS(6433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6433), - [anon_sym_BSLASHinclude] = ACTIONS(6433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6433), - [anon_sym_BSLASHinput] = ACTIONS(6433), - [anon_sym_BSLASHsubfile] = ACTIONS(6433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6433), - [anon_sym_BSLASHbibliography] = ACTIONS(6433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6433), - [anon_sym_BSLASHincludesvg] = ACTIONS(6433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6433), - [anon_sym_BSLASHimport] = ACTIONS(6433), - [anon_sym_BSLASHsubimport] = ACTIONS(6433), - [anon_sym_BSLASHinputfrom] = ACTIONS(6433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6433), - [anon_sym_BSLASHincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHcaption] = ACTIONS(6433), - [anon_sym_BSLASHcite] = ACTIONS(6433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCite] = ACTIONS(6433), - [anon_sym_BSLASHnocite] = ACTIONS(6433), - [anon_sym_BSLASHcitet] = ACTIONS(6433), - [anon_sym_BSLASHcitep] = ACTIONS(6433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteauthor] = ACTIONS(6433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitetitle] = ACTIONS(6433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteyear] = ACTIONS(6433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitedate] = ACTIONS(6433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteurl] = ACTIONS(6433), - [anon_sym_BSLASHfullcite] = ACTIONS(6433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6433), - [anon_sym_BSLASHcitealt] = ACTIONS(6433), - [anon_sym_BSLASHcitealp] = ACTIONS(6433), - [anon_sym_BSLASHcitetext] = ACTIONS(6433), - [anon_sym_BSLASHparencite] = ACTIONS(6433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHParencite] = ACTIONS(6433), - [anon_sym_BSLASHfootcite] = ACTIONS(6433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6433), - [anon_sym_BSLASHtextcite] = ACTIONS(6433), - [anon_sym_BSLASHTextcite] = ACTIONS(6433), - [anon_sym_BSLASHsmartcite] = ACTIONS(6433), - [anon_sym_BSLASHSmartcite] = ACTIONS(6433), - [anon_sym_BSLASHsupercite] = ACTIONS(6433), - [anon_sym_BSLASHautocite] = ACTIONS(6433), - [anon_sym_BSLASHAutocite] = ACTIONS(6433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHvolcite] = ACTIONS(6433), - [anon_sym_BSLASHVolcite] = ACTIONS(6433), - [anon_sym_BSLASHpvolcite] = ACTIONS(6433), - [anon_sym_BSLASHPvolcite] = ACTIONS(6433), - [anon_sym_BSLASHfvolcite] = ACTIONS(6433), - [anon_sym_BSLASHftvolcite] = ACTIONS(6433), - [anon_sym_BSLASHsvolcite] = ACTIONS(6433), - [anon_sym_BSLASHSvolcite] = ACTIONS(6433), - [anon_sym_BSLASHtvolcite] = ACTIONS(6433), - [anon_sym_BSLASHTvolcite] = ACTIONS(6433), - [anon_sym_BSLASHavolcite] = ACTIONS(6433), - [anon_sym_BSLASHAvolcite] = ACTIONS(6433), - [anon_sym_BSLASHnotecite] = ACTIONS(6433), - [anon_sym_BSLASHNotecite] = ACTIONS(6433), - [anon_sym_BSLASHpnotecite] = ACTIONS(6433), - [anon_sym_BSLASHPnotecite] = ACTIONS(6433), - [anon_sym_BSLASHfnotecite] = ACTIONS(6433), - [anon_sym_BSLASHlabel] = ACTIONS(6433), - [anon_sym_BSLASHref] = ACTIONS(6433), - [anon_sym_BSLASHeqref] = ACTIONS(6433), - [anon_sym_BSLASHvref] = ACTIONS(6433), - [anon_sym_BSLASHVref] = ACTIONS(6433), - [anon_sym_BSLASHautoref] = ACTIONS(6433), - [anon_sym_BSLASHpageref] = ACTIONS(6433), - [anon_sym_BSLASHcref] = ACTIONS(6433), - [anon_sym_BSLASHCref] = ACTIONS(6433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnameCref] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHlabelcref] = ACTIONS(6433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCrefrange] = ACTIONS(6433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnewlabel] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6435), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHdef] = ACTIONS(6433), - [anon_sym_BSLASHlet] = ACTIONS(6433), - [anon_sym_BSLASHleft] = ACTIONS(6433), - [anon_sym_BSLASHbig] = ACTIONS(6433), - [anon_sym_BSLASHBig] = ACTIONS(6433), - [anon_sym_BSLASHbigg] = ACTIONS(6433), - [anon_sym_BSLASHBigg] = ACTIONS(6433), - [anon_sym_BSLASHbigl] = ACTIONS(6433), - [anon_sym_BSLASHBigl] = ACTIONS(6433), - [anon_sym_BSLASHbiggl] = ACTIONS(6433), - [anon_sym_BSLASHBiggl] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6433), - [anon_sym_BSLASHgls] = ACTIONS(6433), - [anon_sym_BSLASHGls] = ACTIONS(6433), - [anon_sym_BSLASHGLS] = ACTIONS(6433), - [anon_sym_BSLASHglspl] = ACTIONS(6433), - [anon_sym_BSLASHGlspl] = ACTIONS(6433), - [anon_sym_BSLASHGLSpl] = ACTIONS(6433), - [anon_sym_BSLASHglsdisp] = ACTIONS(6433), - [anon_sym_BSLASHglslink] = ACTIONS(6433), - [anon_sym_BSLASHglstext] = ACTIONS(6433), - [anon_sym_BSLASHGlstext] = ACTIONS(6433), - [anon_sym_BSLASHGLStext] = ACTIONS(6433), - [anon_sym_BSLASHglsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6433), - [anon_sym_BSLASHglsplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSplural] = ACTIONS(6433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHglsname] = ACTIONS(6433), - [anon_sym_BSLASHGlsname] = ACTIONS(6433), - [anon_sym_BSLASHGLSname] = ACTIONS(6433), - [anon_sym_BSLASHglssymbol] = ACTIONS(6433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6433), - [anon_sym_BSLASHglsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6433), - [anon_sym_BSLASHglsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6433), - [anon_sym_BSLASHglsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6433), - [anon_sym_BSLASHglsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6433), - [anon_sym_BSLASHglsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6433), - [anon_sym_BSLASHnewacronym] = ACTIONS(6433), - [anon_sym_BSLASHacrshort] = ACTIONS(6433), - [anon_sym_BSLASHAcrshort] = ACTIONS(6433), - [anon_sym_BSLASHACRshort] = ACTIONS(6433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6433), - [anon_sym_BSLASHacrlong] = ACTIONS(6433), - [anon_sym_BSLASHAcrlong] = ACTIONS(6433), - [anon_sym_BSLASHACRlong] = ACTIONS(6433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6433), - [anon_sym_BSLASHacrfull] = ACTIONS(6433), - [anon_sym_BSLASHAcrfull] = ACTIONS(6433), - [anon_sym_BSLASHACRfull] = ACTIONS(6433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6433), - [anon_sym_BSLASHacs] = ACTIONS(6433), - [anon_sym_BSLASHAcs] = ACTIONS(6433), - [anon_sym_BSLASHacsp] = ACTIONS(6433), - [anon_sym_BSLASHAcsp] = ACTIONS(6433), - [anon_sym_BSLASHacl] = ACTIONS(6433), - [anon_sym_BSLASHAcl] = ACTIONS(6433), - [anon_sym_BSLASHaclp] = ACTIONS(6433), - [anon_sym_BSLASHAclp] = ACTIONS(6433), - [anon_sym_BSLASHacf] = ACTIONS(6433), - [anon_sym_BSLASHAcf] = ACTIONS(6433), - [anon_sym_BSLASHacfp] = ACTIONS(6433), - [anon_sym_BSLASHAcfp] = ACTIONS(6433), - [anon_sym_BSLASHac] = ACTIONS(6433), - [anon_sym_BSLASHAc] = ACTIONS(6433), - [anon_sym_BSLASHacp] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6433), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6433), - [anon_sym_BSLASHcolor] = ACTIONS(6433), - [anon_sym_BSLASHcolorbox] = ACTIONS(6433), - [anon_sym_BSLASHtextcolor] = ACTIONS(6433), - [anon_sym_BSLASHpagecolor] = ACTIONS(6433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6433), - [anon_sym_BSLASHtext] = ACTIONS(6433), - [anon_sym_BSLASHintertext] = ACTIONS(6433), - [anon_sym_shortintertext] = ACTIONS(6433), - }, - [1636] = { - [sym_command_name] = ACTIONS(6413), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6413), - [anon_sym_LBRACK] = ACTIONS(6415), - [anon_sym_RBRACK] = ACTIONS(6415), - [anon_sym_COMMA] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(6415), - [anon_sym_LPAREN] = ACTIONS(6415), - [anon_sym_RPAREN] = ACTIONS(6415), - [anon_sym_LBRACE] = ACTIONS(6415), - [anon_sym_RBRACE] = ACTIONS(6415), - [sym_word] = ACTIONS(6413), - [sym_placeholder] = ACTIONS(6415), - [anon_sym_PLUS] = ACTIONS(6415), - [anon_sym_DASH] = ACTIONS(6415), - [anon_sym_STAR] = ACTIONS(6415), - [anon_sym_SLASH] = ACTIONS(6415), - [anon_sym_LT] = ACTIONS(6413), - [anon_sym_GT] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(6413), - [anon_sym_PIPE] = ACTIONS(6413), - [anon_sym_COLON] = ACTIONS(6413), - [anon_sym_SQUOTE] = ACTIONS(6413), - [anon_sym__] = ACTIONS(6415), - [anon_sym_CARET] = ACTIONS(6415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6415), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6415), - [anon_sym_DOLLAR] = ACTIONS(6413), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6415), - [anon_sym_BSLASHtitle] = ACTIONS(6413), - [anon_sym_BSLASHauthor] = ACTIONS(6413), - [anon_sym_BSLASHusepackage] = ACTIONS(6413), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6413), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6413), - [anon_sym_BSLASHinclude] = ACTIONS(6413), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6413), - [anon_sym_BSLASHinput] = ACTIONS(6413), - [anon_sym_BSLASHsubfile] = ACTIONS(6413), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6413), - [anon_sym_BSLASHbibliography] = ACTIONS(6413), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6413), - [anon_sym_BSLASHincludesvg] = ACTIONS(6413), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6413), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6413), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6413), - [anon_sym_BSLASHimport] = ACTIONS(6413), - [anon_sym_BSLASHsubimport] = ACTIONS(6413), - [anon_sym_BSLASHinputfrom] = ACTIONS(6413), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6413), - [anon_sym_BSLASHincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHcaption] = ACTIONS(6413), - [anon_sym_BSLASHcite] = ACTIONS(6413), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCite] = ACTIONS(6413), - [anon_sym_BSLASHnocite] = ACTIONS(6413), - [anon_sym_BSLASHcitet] = ACTIONS(6413), - [anon_sym_BSLASHcitep] = ACTIONS(6413), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteauthor] = ACTIONS(6413), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6413), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitetitle] = ACTIONS(6413), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteyear] = ACTIONS(6413), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitedate] = ACTIONS(6413), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteurl] = ACTIONS(6413), - [anon_sym_BSLASHfullcite] = ACTIONS(6413), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6413), - [anon_sym_BSLASHcitealt] = ACTIONS(6413), - [anon_sym_BSLASHcitealp] = ACTIONS(6413), - [anon_sym_BSLASHcitetext] = ACTIONS(6413), - [anon_sym_BSLASHparencite] = ACTIONS(6413), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHParencite] = ACTIONS(6413), - [anon_sym_BSLASHfootcite] = ACTIONS(6413), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6413), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6413), - [anon_sym_BSLASHtextcite] = ACTIONS(6413), - [anon_sym_BSLASHTextcite] = ACTIONS(6413), - [anon_sym_BSLASHsmartcite] = ACTIONS(6413), - [anon_sym_BSLASHSmartcite] = ACTIONS(6413), - [anon_sym_BSLASHsupercite] = ACTIONS(6413), - [anon_sym_BSLASHautocite] = ACTIONS(6413), - [anon_sym_BSLASHAutocite] = ACTIONS(6413), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHvolcite] = ACTIONS(6413), - [anon_sym_BSLASHVolcite] = ACTIONS(6413), - [anon_sym_BSLASHpvolcite] = ACTIONS(6413), - [anon_sym_BSLASHPvolcite] = ACTIONS(6413), - [anon_sym_BSLASHfvolcite] = ACTIONS(6413), - [anon_sym_BSLASHftvolcite] = ACTIONS(6413), - [anon_sym_BSLASHsvolcite] = ACTIONS(6413), - [anon_sym_BSLASHSvolcite] = ACTIONS(6413), - [anon_sym_BSLASHtvolcite] = ACTIONS(6413), - [anon_sym_BSLASHTvolcite] = ACTIONS(6413), - [anon_sym_BSLASHavolcite] = ACTIONS(6413), - [anon_sym_BSLASHAvolcite] = ACTIONS(6413), - [anon_sym_BSLASHnotecite] = ACTIONS(6413), - [anon_sym_BSLASHNotecite] = ACTIONS(6413), - [anon_sym_BSLASHpnotecite] = ACTIONS(6413), - [anon_sym_BSLASHPnotecite] = ACTIONS(6413), - [anon_sym_BSLASHfnotecite] = ACTIONS(6413), - [anon_sym_BSLASHlabel] = ACTIONS(6413), - [anon_sym_BSLASHref] = ACTIONS(6413), - [anon_sym_BSLASHeqref] = ACTIONS(6413), - [anon_sym_BSLASHvref] = ACTIONS(6413), - [anon_sym_BSLASHVref] = ACTIONS(6413), - [anon_sym_BSLASHautoref] = ACTIONS(6413), - [anon_sym_BSLASHpageref] = ACTIONS(6413), - [anon_sym_BSLASHcref] = ACTIONS(6413), - [anon_sym_BSLASHCref] = ACTIONS(6413), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnameCref] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHlabelcref] = ACTIONS(6413), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCrefrange] = ACTIONS(6413), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnewlabel] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6413), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6413), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6415), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHdef] = ACTIONS(6413), - [anon_sym_BSLASHlet] = ACTIONS(6413), - [anon_sym_BSLASHleft] = ACTIONS(6413), - [anon_sym_BSLASHbig] = ACTIONS(6413), - [anon_sym_BSLASHBig] = ACTIONS(6413), - [anon_sym_BSLASHbigg] = ACTIONS(6413), - [anon_sym_BSLASHBigg] = ACTIONS(6413), - [anon_sym_BSLASHbigl] = ACTIONS(6413), - [anon_sym_BSLASHBigl] = ACTIONS(6413), - [anon_sym_BSLASHbiggl] = ACTIONS(6413), - [anon_sym_BSLASHBiggl] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6413), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6413), - [anon_sym_BSLASHgls] = ACTIONS(6413), - [anon_sym_BSLASHGls] = ACTIONS(6413), - [anon_sym_BSLASHGLS] = ACTIONS(6413), - [anon_sym_BSLASHglspl] = ACTIONS(6413), - [anon_sym_BSLASHGlspl] = ACTIONS(6413), - [anon_sym_BSLASHGLSpl] = ACTIONS(6413), - [anon_sym_BSLASHglsdisp] = ACTIONS(6413), - [anon_sym_BSLASHglslink] = ACTIONS(6413), - [anon_sym_BSLASHglstext] = ACTIONS(6413), - [anon_sym_BSLASHGlstext] = ACTIONS(6413), - [anon_sym_BSLASHGLStext] = ACTIONS(6413), - [anon_sym_BSLASHglsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6413), - [anon_sym_BSLASHglsplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSplural] = ACTIONS(6413), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHglsname] = ACTIONS(6413), - [anon_sym_BSLASHGlsname] = ACTIONS(6413), - [anon_sym_BSLASHGLSname] = ACTIONS(6413), - [anon_sym_BSLASHglssymbol] = ACTIONS(6413), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6413), - [anon_sym_BSLASHglsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6413), - [anon_sym_BSLASHglsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6413), - [anon_sym_BSLASHglsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6413), - [anon_sym_BSLASHglsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6413), - [anon_sym_BSLASHglsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6413), - [anon_sym_BSLASHnewacronym] = ACTIONS(6413), - [anon_sym_BSLASHacrshort] = ACTIONS(6413), - [anon_sym_BSLASHAcrshort] = ACTIONS(6413), - [anon_sym_BSLASHACRshort] = ACTIONS(6413), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6413), - [anon_sym_BSLASHacrlong] = ACTIONS(6413), - [anon_sym_BSLASHAcrlong] = ACTIONS(6413), - [anon_sym_BSLASHACRlong] = ACTIONS(6413), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6413), - [anon_sym_BSLASHacrfull] = ACTIONS(6413), - [anon_sym_BSLASHAcrfull] = ACTIONS(6413), - [anon_sym_BSLASHACRfull] = ACTIONS(6413), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6413), - [anon_sym_BSLASHacs] = ACTIONS(6413), - [anon_sym_BSLASHAcs] = ACTIONS(6413), - [anon_sym_BSLASHacsp] = ACTIONS(6413), - [anon_sym_BSLASHAcsp] = ACTIONS(6413), - [anon_sym_BSLASHacl] = ACTIONS(6413), - [anon_sym_BSLASHAcl] = ACTIONS(6413), - [anon_sym_BSLASHaclp] = ACTIONS(6413), - [anon_sym_BSLASHAclp] = ACTIONS(6413), - [anon_sym_BSLASHacf] = ACTIONS(6413), - [anon_sym_BSLASHAcf] = ACTIONS(6413), - [anon_sym_BSLASHacfp] = ACTIONS(6413), - [anon_sym_BSLASHAcfp] = ACTIONS(6413), - [anon_sym_BSLASHac] = ACTIONS(6413), - [anon_sym_BSLASHAc] = ACTIONS(6413), - [anon_sym_BSLASHacp] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6413), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6413), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6413), - [anon_sym_BSLASHcolor] = ACTIONS(6413), - [anon_sym_BSLASHcolorbox] = ACTIONS(6413), - [anon_sym_BSLASHtextcolor] = ACTIONS(6413), - [anon_sym_BSLASHpagecolor] = ACTIONS(6413), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6413), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6413), - [anon_sym_BSLASHtext] = ACTIONS(6413), - [anon_sym_BSLASHintertext] = ACTIONS(6413), - [anon_sym_shortintertext] = ACTIONS(6413), - }, - [1637] = { - [sym_command_name] = ACTIONS(6409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6409), - [anon_sym_LBRACK] = ACTIONS(6411), - [anon_sym_RBRACK] = ACTIONS(6411), - [anon_sym_COMMA] = ACTIONS(6411), - [anon_sym_EQ] = ACTIONS(6411), - [anon_sym_LPAREN] = ACTIONS(6411), - [anon_sym_RPAREN] = ACTIONS(6411), - [anon_sym_LBRACE] = ACTIONS(6411), - [anon_sym_RBRACE] = ACTIONS(6411), - [sym_word] = ACTIONS(6409), - [sym_placeholder] = ACTIONS(6411), - [anon_sym_PLUS] = ACTIONS(6411), - [anon_sym_DASH] = ACTIONS(6411), - [anon_sym_STAR] = ACTIONS(6411), - [anon_sym_SLASH] = ACTIONS(6411), - [anon_sym_LT] = ACTIONS(6409), - [anon_sym_GT] = ACTIONS(6409), - [anon_sym_BANG] = ACTIONS(6409), - [anon_sym_PIPE] = ACTIONS(6409), - [anon_sym_COLON] = ACTIONS(6409), - [anon_sym_SQUOTE] = ACTIONS(6409), - [anon_sym__] = ACTIONS(6411), - [anon_sym_CARET] = ACTIONS(6411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6411), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6411), - [anon_sym_DOLLAR] = ACTIONS(6409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6411), - [anon_sym_BSLASHtitle] = ACTIONS(6409), - [anon_sym_BSLASHauthor] = ACTIONS(6409), - [anon_sym_BSLASHusepackage] = ACTIONS(6409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6409), - [anon_sym_BSLASHinclude] = ACTIONS(6409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6409), - [anon_sym_BSLASHinput] = ACTIONS(6409), - [anon_sym_BSLASHsubfile] = ACTIONS(6409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6409), - [anon_sym_BSLASHbibliography] = ACTIONS(6409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6409), - [anon_sym_BSLASHincludesvg] = ACTIONS(6409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6409), - [anon_sym_BSLASHimport] = ACTIONS(6409), - [anon_sym_BSLASHsubimport] = ACTIONS(6409), - [anon_sym_BSLASHinputfrom] = ACTIONS(6409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6409), - [anon_sym_BSLASHincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHcaption] = ACTIONS(6409), - [anon_sym_BSLASHcite] = ACTIONS(6409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCite] = ACTIONS(6409), - [anon_sym_BSLASHnocite] = ACTIONS(6409), - [anon_sym_BSLASHcitet] = ACTIONS(6409), - [anon_sym_BSLASHcitep] = ACTIONS(6409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteauthor] = ACTIONS(6409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitetitle] = ACTIONS(6409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteyear] = ACTIONS(6409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitedate] = ACTIONS(6409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteurl] = ACTIONS(6409), - [anon_sym_BSLASHfullcite] = ACTIONS(6409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6409), - [anon_sym_BSLASHcitealt] = ACTIONS(6409), - [anon_sym_BSLASHcitealp] = ACTIONS(6409), - [anon_sym_BSLASHcitetext] = ACTIONS(6409), - [anon_sym_BSLASHparencite] = ACTIONS(6409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHParencite] = ACTIONS(6409), - [anon_sym_BSLASHfootcite] = ACTIONS(6409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6409), - [anon_sym_BSLASHtextcite] = ACTIONS(6409), - [anon_sym_BSLASHTextcite] = ACTIONS(6409), - [anon_sym_BSLASHsmartcite] = ACTIONS(6409), - [anon_sym_BSLASHSmartcite] = ACTIONS(6409), - [anon_sym_BSLASHsupercite] = ACTIONS(6409), - [anon_sym_BSLASHautocite] = ACTIONS(6409), - [anon_sym_BSLASHAutocite] = ACTIONS(6409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHvolcite] = ACTIONS(6409), - [anon_sym_BSLASHVolcite] = ACTIONS(6409), - [anon_sym_BSLASHpvolcite] = ACTIONS(6409), - [anon_sym_BSLASHPvolcite] = ACTIONS(6409), - [anon_sym_BSLASHfvolcite] = ACTIONS(6409), - [anon_sym_BSLASHftvolcite] = ACTIONS(6409), - [anon_sym_BSLASHsvolcite] = ACTIONS(6409), - [anon_sym_BSLASHSvolcite] = ACTIONS(6409), - [anon_sym_BSLASHtvolcite] = ACTIONS(6409), - [anon_sym_BSLASHTvolcite] = ACTIONS(6409), - [anon_sym_BSLASHavolcite] = ACTIONS(6409), - [anon_sym_BSLASHAvolcite] = ACTIONS(6409), - [anon_sym_BSLASHnotecite] = ACTIONS(6409), - [anon_sym_BSLASHNotecite] = ACTIONS(6409), - [anon_sym_BSLASHpnotecite] = ACTIONS(6409), - [anon_sym_BSLASHPnotecite] = ACTIONS(6409), - [anon_sym_BSLASHfnotecite] = ACTIONS(6409), - [anon_sym_BSLASHlabel] = ACTIONS(6409), - [anon_sym_BSLASHref] = ACTIONS(6409), - [anon_sym_BSLASHeqref] = ACTIONS(6409), - [anon_sym_BSLASHvref] = ACTIONS(6409), - [anon_sym_BSLASHVref] = ACTIONS(6409), - [anon_sym_BSLASHautoref] = ACTIONS(6409), - [anon_sym_BSLASHpageref] = ACTIONS(6409), - [anon_sym_BSLASHcref] = ACTIONS(6409), - [anon_sym_BSLASHCref] = ACTIONS(6409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnameCref] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHlabelcref] = ACTIONS(6409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCrefrange] = ACTIONS(6409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnewlabel] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6411), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHdef] = ACTIONS(6409), - [anon_sym_BSLASHlet] = ACTIONS(6409), - [anon_sym_BSLASHleft] = ACTIONS(6409), - [anon_sym_BSLASHbig] = ACTIONS(6409), - [anon_sym_BSLASHBig] = ACTIONS(6409), - [anon_sym_BSLASHbigg] = ACTIONS(6409), - [anon_sym_BSLASHBigg] = ACTIONS(6409), - [anon_sym_BSLASHbigl] = ACTIONS(6409), - [anon_sym_BSLASHBigl] = ACTIONS(6409), - [anon_sym_BSLASHbiggl] = ACTIONS(6409), - [anon_sym_BSLASHBiggl] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6409), - [anon_sym_BSLASHgls] = ACTIONS(6409), - [anon_sym_BSLASHGls] = ACTIONS(6409), - [anon_sym_BSLASHGLS] = ACTIONS(6409), - [anon_sym_BSLASHglspl] = ACTIONS(6409), - [anon_sym_BSLASHGlspl] = ACTIONS(6409), - [anon_sym_BSLASHGLSpl] = ACTIONS(6409), - [anon_sym_BSLASHglsdisp] = ACTIONS(6409), - [anon_sym_BSLASHglslink] = ACTIONS(6409), - [anon_sym_BSLASHglstext] = ACTIONS(6409), - [anon_sym_BSLASHGlstext] = ACTIONS(6409), - [anon_sym_BSLASHGLStext] = ACTIONS(6409), - [anon_sym_BSLASHglsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6409), - [anon_sym_BSLASHglsplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSplural] = ACTIONS(6409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHglsname] = ACTIONS(6409), - [anon_sym_BSLASHGlsname] = ACTIONS(6409), - [anon_sym_BSLASHGLSname] = ACTIONS(6409), - [anon_sym_BSLASHglssymbol] = ACTIONS(6409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6409), - [anon_sym_BSLASHglsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6409), - [anon_sym_BSLASHglsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6409), - [anon_sym_BSLASHglsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6409), - [anon_sym_BSLASHglsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6409), - [anon_sym_BSLASHglsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6409), - [anon_sym_BSLASHnewacronym] = ACTIONS(6409), - [anon_sym_BSLASHacrshort] = ACTIONS(6409), - [anon_sym_BSLASHAcrshort] = ACTIONS(6409), - [anon_sym_BSLASHACRshort] = ACTIONS(6409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6409), - [anon_sym_BSLASHacrlong] = ACTIONS(6409), - [anon_sym_BSLASHAcrlong] = ACTIONS(6409), - [anon_sym_BSLASHACRlong] = ACTIONS(6409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6409), - [anon_sym_BSLASHacrfull] = ACTIONS(6409), - [anon_sym_BSLASHAcrfull] = ACTIONS(6409), - [anon_sym_BSLASHACRfull] = ACTIONS(6409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6409), - [anon_sym_BSLASHacs] = ACTIONS(6409), - [anon_sym_BSLASHAcs] = ACTIONS(6409), - [anon_sym_BSLASHacsp] = ACTIONS(6409), - [anon_sym_BSLASHAcsp] = ACTIONS(6409), - [anon_sym_BSLASHacl] = ACTIONS(6409), - [anon_sym_BSLASHAcl] = ACTIONS(6409), - [anon_sym_BSLASHaclp] = ACTIONS(6409), - [anon_sym_BSLASHAclp] = ACTIONS(6409), - [anon_sym_BSLASHacf] = ACTIONS(6409), - [anon_sym_BSLASHAcf] = ACTIONS(6409), - [anon_sym_BSLASHacfp] = ACTIONS(6409), - [anon_sym_BSLASHAcfp] = ACTIONS(6409), - [anon_sym_BSLASHac] = ACTIONS(6409), - [anon_sym_BSLASHAc] = ACTIONS(6409), - [anon_sym_BSLASHacp] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6409), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6409), - [anon_sym_BSLASHcolor] = ACTIONS(6409), - [anon_sym_BSLASHcolorbox] = ACTIONS(6409), - [anon_sym_BSLASHtextcolor] = ACTIONS(6409), - [anon_sym_BSLASHpagecolor] = ACTIONS(6409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6409), - [anon_sym_BSLASHtext] = ACTIONS(6409), - [anon_sym_BSLASHintertext] = ACTIONS(6409), - [anon_sym_shortintertext] = ACTIONS(6409), - }, - [1638] = { - [sym_command_name] = ACTIONS(6405), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6405), - [anon_sym_LBRACK] = ACTIONS(6407), - [anon_sym_RBRACK] = ACTIONS(6407), - [anon_sym_COMMA] = ACTIONS(6407), - [anon_sym_EQ] = ACTIONS(6407), - [anon_sym_LPAREN] = ACTIONS(6407), - [anon_sym_RPAREN] = ACTIONS(6407), - [anon_sym_LBRACE] = ACTIONS(6407), - [anon_sym_RBRACE] = ACTIONS(6407), - [sym_word] = ACTIONS(6405), - [sym_placeholder] = ACTIONS(6407), - [anon_sym_PLUS] = ACTIONS(6407), - [anon_sym_DASH] = ACTIONS(6407), - [anon_sym_STAR] = ACTIONS(6407), - [anon_sym_SLASH] = ACTIONS(6407), - [anon_sym_LT] = ACTIONS(6405), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(6405), - [anon_sym_PIPE] = ACTIONS(6405), - [anon_sym_COLON] = ACTIONS(6405), - [anon_sym_SQUOTE] = ACTIONS(6405), - [anon_sym__] = ACTIONS(6407), - [anon_sym_CARET] = ACTIONS(6407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6407), - [anon_sym_DOLLAR] = ACTIONS(6405), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6407), - [anon_sym_BSLASHtitle] = ACTIONS(6405), - [anon_sym_BSLASHauthor] = ACTIONS(6405), - [anon_sym_BSLASHusepackage] = ACTIONS(6405), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6405), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6405), - [anon_sym_BSLASHinclude] = ACTIONS(6405), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6405), - [anon_sym_BSLASHinput] = ACTIONS(6405), - [anon_sym_BSLASHsubfile] = ACTIONS(6405), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6405), - [anon_sym_BSLASHbibliography] = ACTIONS(6405), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6405), - [anon_sym_BSLASHincludesvg] = ACTIONS(6405), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6405), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6405), - [anon_sym_BSLASHimport] = ACTIONS(6405), - [anon_sym_BSLASHsubimport] = ACTIONS(6405), - [anon_sym_BSLASHinputfrom] = ACTIONS(6405), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6405), - [anon_sym_BSLASHincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHcaption] = ACTIONS(6405), - [anon_sym_BSLASHcite] = ACTIONS(6405), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCite] = ACTIONS(6405), - [anon_sym_BSLASHnocite] = ACTIONS(6405), - [anon_sym_BSLASHcitet] = ACTIONS(6405), - [anon_sym_BSLASHcitep] = ACTIONS(6405), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteauthor] = ACTIONS(6405), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6405), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitetitle] = ACTIONS(6405), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteyear] = ACTIONS(6405), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitedate] = ACTIONS(6405), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteurl] = ACTIONS(6405), - [anon_sym_BSLASHfullcite] = ACTIONS(6405), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6405), - [anon_sym_BSLASHcitealt] = ACTIONS(6405), - [anon_sym_BSLASHcitealp] = ACTIONS(6405), - [anon_sym_BSLASHcitetext] = ACTIONS(6405), - [anon_sym_BSLASHparencite] = ACTIONS(6405), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHParencite] = ACTIONS(6405), - [anon_sym_BSLASHfootcite] = ACTIONS(6405), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6405), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6405), - [anon_sym_BSLASHtextcite] = ACTIONS(6405), - [anon_sym_BSLASHTextcite] = ACTIONS(6405), - [anon_sym_BSLASHsmartcite] = ACTIONS(6405), - [anon_sym_BSLASHSmartcite] = ACTIONS(6405), - [anon_sym_BSLASHsupercite] = ACTIONS(6405), - [anon_sym_BSLASHautocite] = ACTIONS(6405), - [anon_sym_BSLASHAutocite] = ACTIONS(6405), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHvolcite] = ACTIONS(6405), - [anon_sym_BSLASHVolcite] = ACTIONS(6405), - [anon_sym_BSLASHpvolcite] = ACTIONS(6405), - [anon_sym_BSLASHPvolcite] = ACTIONS(6405), - [anon_sym_BSLASHfvolcite] = ACTIONS(6405), - [anon_sym_BSLASHftvolcite] = ACTIONS(6405), - [anon_sym_BSLASHsvolcite] = ACTIONS(6405), - [anon_sym_BSLASHSvolcite] = ACTIONS(6405), - [anon_sym_BSLASHtvolcite] = ACTIONS(6405), - [anon_sym_BSLASHTvolcite] = ACTIONS(6405), - [anon_sym_BSLASHavolcite] = ACTIONS(6405), - [anon_sym_BSLASHAvolcite] = ACTIONS(6405), - [anon_sym_BSLASHnotecite] = ACTIONS(6405), - [anon_sym_BSLASHNotecite] = ACTIONS(6405), - [anon_sym_BSLASHpnotecite] = ACTIONS(6405), - [anon_sym_BSLASHPnotecite] = ACTIONS(6405), - [anon_sym_BSLASHfnotecite] = ACTIONS(6405), - [anon_sym_BSLASHlabel] = ACTIONS(6405), - [anon_sym_BSLASHref] = ACTIONS(6405), - [anon_sym_BSLASHeqref] = ACTIONS(6405), - [anon_sym_BSLASHvref] = ACTIONS(6405), - [anon_sym_BSLASHVref] = ACTIONS(6405), - [anon_sym_BSLASHautoref] = ACTIONS(6405), - [anon_sym_BSLASHpageref] = ACTIONS(6405), - [anon_sym_BSLASHcref] = ACTIONS(6405), - [anon_sym_BSLASHCref] = ACTIONS(6405), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnameCref] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHlabelcref] = ACTIONS(6405), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCrefrange] = ACTIONS(6405), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnewlabel] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6405), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6405), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6407), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHdef] = ACTIONS(6405), - [anon_sym_BSLASHlet] = ACTIONS(6405), - [anon_sym_BSLASHleft] = ACTIONS(6405), - [anon_sym_BSLASHbig] = ACTIONS(6405), - [anon_sym_BSLASHBig] = ACTIONS(6405), - [anon_sym_BSLASHbigg] = ACTIONS(6405), - [anon_sym_BSLASHBigg] = ACTIONS(6405), - [anon_sym_BSLASHbigl] = ACTIONS(6405), - [anon_sym_BSLASHBigl] = ACTIONS(6405), - [anon_sym_BSLASHbiggl] = ACTIONS(6405), - [anon_sym_BSLASHBiggl] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6405), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6405), - [anon_sym_BSLASHgls] = ACTIONS(6405), - [anon_sym_BSLASHGls] = ACTIONS(6405), - [anon_sym_BSLASHGLS] = ACTIONS(6405), - [anon_sym_BSLASHglspl] = ACTIONS(6405), - [anon_sym_BSLASHGlspl] = ACTIONS(6405), - [anon_sym_BSLASHGLSpl] = ACTIONS(6405), - [anon_sym_BSLASHglsdisp] = ACTIONS(6405), - [anon_sym_BSLASHglslink] = ACTIONS(6405), - [anon_sym_BSLASHglstext] = ACTIONS(6405), - [anon_sym_BSLASHGlstext] = ACTIONS(6405), - [anon_sym_BSLASHGLStext] = ACTIONS(6405), - [anon_sym_BSLASHglsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6405), - [anon_sym_BSLASHglsplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSplural] = ACTIONS(6405), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHglsname] = ACTIONS(6405), - [anon_sym_BSLASHGlsname] = ACTIONS(6405), - [anon_sym_BSLASHGLSname] = ACTIONS(6405), - [anon_sym_BSLASHglssymbol] = ACTIONS(6405), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6405), - [anon_sym_BSLASHglsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6405), - [anon_sym_BSLASHglsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6405), - [anon_sym_BSLASHglsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6405), - [anon_sym_BSLASHglsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6405), - [anon_sym_BSLASHglsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6405), - [anon_sym_BSLASHnewacronym] = ACTIONS(6405), - [anon_sym_BSLASHacrshort] = ACTIONS(6405), - [anon_sym_BSLASHAcrshort] = ACTIONS(6405), - [anon_sym_BSLASHACRshort] = ACTIONS(6405), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6405), - [anon_sym_BSLASHacrlong] = ACTIONS(6405), - [anon_sym_BSLASHAcrlong] = ACTIONS(6405), - [anon_sym_BSLASHACRlong] = ACTIONS(6405), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6405), - [anon_sym_BSLASHacrfull] = ACTIONS(6405), - [anon_sym_BSLASHAcrfull] = ACTIONS(6405), - [anon_sym_BSLASHACRfull] = ACTIONS(6405), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6405), - [anon_sym_BSLASHacs] = ACTIONS(6405), - [anon_sym_BSLASHAcs] = ACTIONS(6405), - [anon_sym_BSLASHacsp] = ACTIONS(6405), - [anon_sym_BSLASHAcsp] = ACTIONS(6405), - [anon_sym_BSLASHacl] = ACTIONS(6405), - [anon_sym_BSLASHAcl] = ACTIONS(6405), - [anon_sym_BSLASHaclp] = ACTIONS(6405), - [anon_sym_BSLASHAclp] = ACTIONS(6405), - [anon_sym_BSLASHacf] = ACTIONS(6405), - [anon_sym_BSLASHAcf] = ACTIONS(6405), - [anon_sym_BSLASHacfp] = ACTIONS(6405), - [anon_sym_BSLASHAcfp] = ACTIONS(6405), - [anon_sym_BSLASHac] = ACTIONS(6405), - [anon_sym_BSLASHAc] = ACTIONS(6405), - [anon_sym_BSLASHacp] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6405), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6405), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6405), - [anon_sym_BSLASHcolor] = ACTIONS(6405), - [anon_sym_BSLASHcolorbox] = ACTIONS(6405), - [anon_sym_BSLASHtextcolor] = ACTIONS(6405), - [anon_sym_BSLASHpagecolor] = ACTIONS(6405), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6405), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6405), - [anon_sym_BSLASHtext] = ACTIONS(6405), - [anon_sym_BSLASHintertext] = ACTIONS(6405), - [anon_sym_shortintertext] = ACTIONS(6405), - }, - [1639] = { - [sym_command_name] = ACTIONS(6401), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6401), - [anon_sym_LBRACK] = ACTIONS(6403), - [anon_sym_RBRACK] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(6403), - [anon_sym_EQ] = ACTIONS(6403), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(6403), - [anon_sym_LBRACE] = ACTIONS(6403), - [anon_sym_RBRACE] = ACTIONS(6403), - [sym_word] = ACTIONS(6401), - [sym_placeholder] = ACTIONS(6403), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6403), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_LT] = ACTIONS(6401), - [anon_sym_GT] = ACTIONS(6401), - [anon_sym_BANG] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_SQUOTE] = ACTIONS(6401), - [anon_sym__] = ACTIONS(6403), - [anon_sym_CARET] = ACTIONS(6403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6403), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6403), - [anon_sym_DOLLAR] = ACTIONS(6401), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6403), - [anon_sym_BSLASHtitle] = ACTIONS(6401), - [anon_sym_BSLASHauthor] = ACTIONS(6401), - [anon_sym_BSLASHusepackage] = ACTIONS(6401), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6401), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6401), - [anon_sym_BSLASHinclude] = ACTIONS(6401), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6401), - [anon_sym_BSLASHinput] = ACTIONS(6401), - [anon_sym_BSLASHsubfile] = ACTIONS(6401), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6401), - [anon_sym_BSLASHbibliography] = ACTIONS(6401), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6401), - [anon_sym_BSLASHincludesvg] = ACTIONS(6401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6401), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6401), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6401), - [anon_sym_BSLASHimport] = ACTIONS(6401), - [anon_sym_BSLASHsubimport] = ACTIONS(6401), - [anon_sym_BSLASHinputfrom] = ACTIONS(6401), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6401), - [anon_sym_BSLASHincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHcaption] = ACTIONS(6401), - [anon_sym_BSLASHcite] = ACTIONS(6401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCite] = ACTIONS(6401), - [anon_sym_BSLASHnocite] = ACTIONS(6401), - [anon_sym_BSLASHcitet] = ACTIONS(6401), - [anon_sym_BSLASHcitep] = ACTIONS(6401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteauthor] = ACTIONS(6401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitetitle] = ACTIONS(6401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteyear] = ACTIONS(6401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitedate] = ACTIONS(6401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteurl] = ACTIONS(6401), - [anon_sym_BSLASHfullcite] = ACTIONS(6401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6401), - [anon_sym_BSLASHcitealt] = ACTIONS(6401), - [anon_sym_BSLASHcitealp] = ACTIONS(6401), - [anon_sym_BSLASHcitetext] = ACTIONS(6401), - [anon_sym_BSLASHparencite] = ACTIONS(6401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHParencite] = ACTIONS(6401), - [anon_sym_BSLASHfootcite] = ACTIONS(6401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6401), - [anon_sym_BSLASHtextcite] = ACTIONS(6401), - [anon_sym_BSLASHTextcite] = ACTIONS(6401), - [anon_sym_BSLASHsmartcite] = ACTIONS(6401), - [anon_sym_BSLASHSmartcite] = ACTIONS(6401), - [anon_sym_BSLASHsupercite] = ACTIONS(6401), - [anon_sym_BSLASHautocite] = ACTIONS(6401), - [anon_sym_BSLASHAutocite] = ACTIONS(6401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHvolcite] = ACTIONS(6401), - [anon_sym_BSLASHVolcite] = ACTIONS(6401), - [anon_sym_BSLASHpvolcite] = ACTIONS(6401), - [anon_sym_BSLASHPvolcite] = ACTIONS(6401), - [anon_sym_BSLASHfvolcite] = ACTIONS(6401), - [anon_sym_BSLASHftvolcite] = ACTIONS(6401), - [anon_sym_BSLASHsvolcite] = ACTIONS(6401), - [anon_sym_BSLASHSvolcite] = ACTIONS(6401), - [anon_sym_BSLASHtvolcite] = ACTIONS(6401), - [anon_sym_BSLASHTvolcite] = ACTIONS(6401), - [anon_sym_BSLASHavolcite] = ACTIONS(6401), - [anon_sym_BSLASHAvolcite] = ACTIONS(6401), - [anon_sym_BSLASHnotecite] = ACTIONS(6401), - [anon_sym_BSLASHNotecite] = ACTIONS(6401), - [anon_sym_BSLASHpnotecite] = ACTIONS(6401), - [anon_sym_BSLASHPnotecite] = ACTIONS(6401), - [anon_sym_BSLASHfnotecite] = ACTIONS(6401), - [anon_sym_BSLASHlabel] = ACTIONS(6401), - [anon_sym_BSLASHref] = ACTIONS(6401), - [anon_sym_BSLASHeqref] = ACTIONS(6401), - [anon_sym_BSLASHvref] = ACTIONS(6401), - [anon_sym_BSLASHVref] = ACTIONS(6401), - [anon_sym_BSLASHautoref] = ACTIONS(6401), - [anon_sym_BSLASHpageref] = ACTIONS(6401), - [anon_sym_BSLASHcref] = ACTIONS(6401), - [anon_sym_BSLASHCref] = ACTIONS(6401), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnameCref] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHlabelcref] = ACTIONS(6401), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCrefrange] = ACTIONS(6401), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnewlabel] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6401), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6401), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6403), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHdef] = ACTIONS(6401), - [anon_sym_BSLASHlet] = ACTIONS(6401), - [anon_sym_BSLASHleft] = ACTIONS(6401), - [anon_sym_BSLASHbig] = ACTIONS(6401), - [anon_sym_BSLASHBig] = ACTIONS(6401), - [anon_sym_BSLASHbigg] = ACTIONS(6401), - [anon_sym_BSLASHBigg] = ACTIONS(6401), - [anon_sym_BSLASHbigl] = ACTIONS(6401), - [anon_sym_BSLASHBigl] = ACTIONS(6401), - [anon_sym_BSLASHbiggl] = ACTIONS(6401), - [anon_sym_BSLASHBiggl] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6401), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6401), - [anon_sym_BSLASHgls] = ACTIONS(6401), - [anon_sym_BSLASHGls] = ACTIONS(6401), - [anon_sym_BSLASHGLS] = ACTIONS(6401), - [anon_sym_BSLASHglspl] = ACTIONS(6401), - [anon_sym_BSLASHGlspl] = ACTIONS(6401), - [anon_sym_BSLASHGLSpl] = ACTIONS(6401), - [anon_sym_BSLASHglsdisp] = ACTIONS(6401), - [anon_sym_BSLASHglslink] = ACTIONS(6401), - [anon_sym_BSLASHglstext] = ACTIONS(6401), - [anon_sym_BSLASHGlstext] = ACTIONS(6401), - [anon_sym_BSLASHGLStext] = ACTIONS(6401), - [anon_sym_BSLASHglsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6401), - [anon_sym_BSLASHglsplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSplural] = ACTIONS(6401), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHglsname] = ACTIONS(6401), - [anon_sym_BSLASHGlsname] = ACTIONS(6401), - [anon_sym_BSLASHGLSname] = ACTIONS(6401), - [anon_sym_BSLASHglssymbol] = ACTIONS(6401), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6401), - [anon_sym_BSLASHglsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6401), - [anon_sym_BSLASHglsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6401), - [anon_sym_BSLASHglsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6401), - [anon_sym_BSLASHglsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6401), - [anon_sym_BSLASHglsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6401), - [anon_sym_BSLASHnewacronym] = ACTIONS(6401), - [anon_sym_BSLASHacrshort] = ACTIONS(6401), - [anon_sym_BSLASHAcrshort] = ACTIONS(6401), - [anon_sym_BSLASHACRshort] = ACTIONS(6401), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6401), - [anon_sym_BSLASHacrlong] = ACTIONS(6401), - [anon_sym_BSLASHAcrlong] = ACTIONS(6401), - [anon_sym_BSLASHACRlong] = ACTIONS(6401), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6401), - [anon_sym_BSLASHacrfull] = ACTIONS(6401), - [anon_sym_BSLASHAcrfull] = ACTIONS(6401), - [anon_sym_BSLASHACRfull] = ACTIONS(6401), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6401), - [anon_sym_BSLASHacs] = ACTIONS(6401), - [anon_sym_BSLASHAcs] = ACTIONS(6401), - [anon_sym_BSLASHacsp] = ACTIONS(6401), - [anon_sym_BSLASHAcsp] = ACTIONS(6401), - [anon_sym_BSLASHacl] = ACTIONS(6401), - [anon_sym_BSLASHAcl] = ACTIONS(6401), - [anon_sym_BSLASHaclp] = ACTIONS(6401), - [anon_sym_BSLASHAclp] = ACTIONS(6401), - [anon_sym_BSLASHacf] = ACTIONS(6401), - [anon_sym_BSLASHAcf] = ACTIONS(6401), - [anon_sym_BSLASHacfp] = ACTIONS(6401), - [anon_sym_BSLASHAcfp] = ACTIONS(6401), - [anon_sym_BSLASHac] = ACTIONS(6401), - [anon_sym_BSLASHAc] = ACTIONS(6401), - [anon_sym_BSLASHacp] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6401), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6401), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6401), - [anon_sym_BSLASHcolor] = ACTIONS(6401), - [anon_sym_BSLASHcolorbox] = ACTIONS(6401), - [anon_sym_BSLASHtextcolor] = ACTIONS(6401), - [anon_sym_BSLASHpagecolor] = ACTIONS(6401), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6401), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6401), - [anon_sym_BSLASHtext] = ACTIONS(6401), - [anon_sym_BSLASHintertext] = ACTIONS(6401), - [anon_sym_shortintertext] = ACTIONS(6401), - }, - [1640] = { - [sym_command_name] = ACTIONS(6397), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6397), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(6399), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_LPAREN] = ACTIONS(6399), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_LBRACE] = ACTIONS(6399), - [anon_sym_RBRACE] = ACTIONS(6399), - [sym_word] = ACTIONS(6397), - [sym_placeholder] = ACTIONS(6399), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_LT] = ACTIONS(6397), - [anon_sym_GT] = ACTIONS(6397), - [anon_sym_BANG] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_SQUOTE] = ACTIONS(6397), - [anon_sym__] = ACTIONS(6399), - [anon_sym_CARET] = ACTIONS(6399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6399), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6399), - [anon_sym_DOLLAR] = ACTIONS(6397), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6399), - [anon_sym_BSLASHtitle] = ACTIONS(6397), - [anon_sym_BSLASHauthor] = ACTIONS(6397), - [anon_sym_BSLASHusepackage] = ACTIONS(6397), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6397), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6397), - [anon_sym_BSLASHinclude] = ACTIONS(6397), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6397), - [anon_sym_BSLASHinput] = ACTIONS(6397), - [anon_sym_BSLASHsubfile] = ACTIONS(6397), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6397), - [anon_sym_BSLASHbibliography] = ACTIONS(6397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6397), - [anon_sym_BSLASHincludesvg] = ACTIONS(6397), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6397), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6397), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6397), - [anon_sym_BSLASHimport] = ACTIONS(6397), - [anon_sym_BSLASHsubimport] = ACTIONS(6397), - [anon_sym_BSLASHinputfrom] = ACTIONS(6397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6397), - [anon_sym_BSLASHincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHcaption] = ACTIONS(6397), - [anon_sym_BSLASHcite] = ACTIONS(6397), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCite] = ACTIONS(6397), - [anon_sym_BSLASHnocite] = ACTIONS(6397), - [anon_sym_BSLASHcitet] = ACTIONS(6397), - [anon_sym_BSLASHcitep] = ACTIONS(6397), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteauthor] = ACTIONS(6397), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6397), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitetitle] = ACTIONS(6397), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteyear] = ACTIONS(6397), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitedate] = ACTIONS(6397), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteurl] = ACTIONS(6397), - [anon_sym_BSLASHfullcite] = ACTIONS(6397), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6397), - [anon_sym_BSLASHcitealt] = ACTIONS(6397), - [anon_sym_BSLASHcitealp] = ACTIONS(6397), - [anon_sym_BSLASHcitetext] = ACTIONS(6397), - [anon_sym_BSLASHparencite] = ACTIONS(6397), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHParencite] = ACTIONS(6397), - [anon_sym_BSLASHfootcite] = ACTIONS(6397), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6397), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6397), - [anon_sym_BSLASHtextcite] = ACTIONS(6397), - [anon_sym_BSLASHTextcite] = ACTIONS(6397), - [anon_sym_BSLASHsmartcite] = ACTIONS(6397), - [anon_sym_BSLASHSmartcite] = ACTIONS(6397), - [anon_sym_BSLASHsupercite] = ACTIONS(6397), - [anon_sym_BSLASHautocite] = ACTIONS(6397), - [anon_sym_BSLASHAutocite] = ACTIONS(6397), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHvolcite] = ACTIONS(6397), - [anon_sym_BSLASHVolcite] = ACTIONS(6397), - [anon_sym_BSLASHpvolcite] = ACTIONS(6397), - [anon_sym_BSLASHPvolcite] = ACTIONS(6397), - [anon_sym_BSLASHfvolcite] = ACTIONS(6397), - [anon_sym_BSLASHftvolcite] = ACTIONS(6397), - [anon_sym_BSLASHsvolcite] = ACTIONS(6397), - [anon_sym_BSLASHSvolcite] = ACTIONS(6397), - [anon_sym_BSLASHtvolcite] = ACTIONS(6397), - [anon_sym_BSLASHTvolcite] = ACTIONS(6397), - [anon_sym_BSLASHavolcite] = ACTIONS(6397), - [anon_sym_BSLASHAvolcite] = ACTIONS(6397), - [anon_sym_BSLASHnotecite] = ACTIONS(6397), - [anon_sym_BSLASHNotecite] = ACTIONS(6397), - [anon_sym_BSLASHpnotecite] = ACTIONS(6397), - [anon_sym_BSLASHPnotecite] = ACTIONS(6397), - [anon_sym_BSLASHfnotecite] = ACTIONS(6397), - [anon_sym_BSLASHlabel] = ACTIONS(6397), - [anon_sym_BSLASHref] = ACTIONS(6397), - [anon_sym_BSLASHeqref] = ACTIONS(6397), - [anon_sym_BSLASHvref] = ACTIONS(6397), - [anon_sym_BSLASHVref] = ACTIONS(6397), - [anon_sym_BSLASHautoref] = ACTIONS(6397), - [anon_sym_BSLASHpageref] = ACTIONS(6397), - [anon_sym_BSLASHcref] = ACTIONS(6397), - [anon_sym_BSLASHCref] = ACTIONS(6397), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnameCref] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHlabelcref] = ACTIONS(6397), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCrefrange] = ACTIONS(6397), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnewlabel] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6397), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6397), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6399), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHdef] = ACTIONS(6397), - [anon_sym_BSLASHlet] = ACTIONS(6397), - [anon_sym_BSLASHleft] = ACTIONS(6397), - [anon_sym_BSLASHbig] = ACTIONS(6397), - [anon_sym_BSLASHBig] = ACTIONS(6397), - [anon_sym_BSLASHbigg] = ACTIONS(6397), - [anon_sym_BSLASHBigg] = ACTIONS(6397), - [anon_sym_BSLASHbigl] = ACTIONS(6397), - [anon_sym_BSLASHBigl] = ACTIONS(6397), - [anon_sym_BSLASHbiggl] = ACTIONS(6397), - [anon_sym_BSLASHBiggl] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6397), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6397), - [anon_sym_BSLASHgls] = ACTIONS(6397), - [anon_sym_BSLASHGls] = ACTIONS(6397), - [anon_sym_BSLASHGLS] = ACTIONS(6397), - [anon_sym_BSLASHglspl] = ACTIONS(6397), - [anon_sym_BSLASHGlspl] = ACTIONS(6397), - [anon_sym_BSLASHGLSpl] = ACTIONS(6397), - [anon_sym_BSLASHglsdisp] = ACTIONS(6397), - [anon_sym_BSLASHglslink] = ACTIONS(6397), - [anon_sym_BSLASHglstext] = ACTIONS(6397), - [anon_sym_BSLASHGlstext] = ACTIONS(6397), - [anon_sym_BSLASHGLStext] = ACTIONS(6397), - [anon_sym_BSLASHglsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6397), - [anon_sym_BSLASHglsplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSplural] = ACTIONS(6397), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHglsname] = ACTIONS(6397), - [anon_sym_BSLASHGlsname] = ACTIONS(6397), - [anon_sym_BSLASHGLSname] = ACTIONS(6397), - [anon_sym_BSLASHglssymbol] = ACTIONS(6397), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6397), - [anon_sym_BSLASHglsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6397), - [anon_sym_BSLASHglsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6397), - [anon_sym_BSLASHglsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6397), - [anon_sym_BSLASHglsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6397), - [anon_sym_BSLASHglsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6397), - [anon_sym_BSLASHnewacronym] = ACTIONS(6397), - [anon_sym_BSLASHacrshort] = ACTIONS(6397), - [anon_sym_BSLASHAcrshort] = ACTIONS(6397), - [anon_sym_BSLASHACRshort] = ACTIONS(6397), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6397), - [anon_sym_BSLASHacrlong] = ACTIONS(6397), - [anon_sym_BSLASHAcrlong] = ACTIONS(6397), - [anon_sym_BSLASHACRlong] = ACTIONS(6397), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6397), - [anon_sym_BSLASHacrfull] = ACTIONS(6397), - [anon_sym_BSLASHAcrfull] = ACTIONS(6397), - [anon_sym_BSLASHACRfull] = ACTIONS(6397), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6397), - [anon_sym_BSLASHacs] = ACTIONS(6397), - [anon_sym_BSLASHAcs] = ACTIONS(6397), - [anon_sym_BSLASHacsp] = ACTIONS(6397), - [anon_sym_BSLASHAcsp] = ACTIONS(6397), - [anon_sym_BSLASHacl] = ACTIONS(6397), - [anon_sym_BSLASHAcl] = ACTIONS(6397), - [anon_sym_BSLASHaclp] = ACTIONS(6397), - [anon_sym_BSLASHAclp] = ACTIONS(6397), - [anon_sym_BSLASHacf] = ACTIONS(6397), - [anon_sym_BSLASHAcf] = ACTIONS(6397), - [anon_sym_BSLASHacfp] = ACTIONS(6397), - [anon_sym_BSLASHAcfp] = ACTIONS(6397), - [anon_sym_BSLASHac] = ACTIONS(6397), - [anon_sym_BSLASHAc] = ACTIONS(6397), - [anon_sym_BSLASHacp] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6397), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6397), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6397), - [anon_sym_BSLASHcolor] = ACTIONS(6397), - [anon_sym_BSLASHcolorbox] = ACTIONS(6397), - [anon_sym_BSLASHtextcolor] = ACTIONS(6397), - [anon_sym_BSLASHpagecolor] = ACTIONS(6397), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6397), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6397), - [anon_sym_BSLASHtext] = ACTIONS(6397), - [anon_sym_BSLASHintertext] = ACTIONS(6397), - [anon_sym_shortintertext] = ACTIONS(6397), - }, - [1641] = { - [sym_command_name] = ACTIONS(6393), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6393), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_RBRACK] = ACTIONS(6395), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_LPAREN] = ACTIONS(6395), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_LBRACE] = ACTIONS(6395), - [anon_sym_RBRACE] = ACTIONS(6395), - [sym_word] = ACTIONS(6393), - [sym_placeholder] = ACTIONS(6395), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6395), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_LT] = ACTIONS(6393), - [anon_sym_GT] = ACTIONS(6393), - [anon_sym_BANG] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_SQUOTE] = ACTIONS(6393), - [anon_sym__] = ACTIONS(6395), - [anon_sym_CARET] = ACTIONS(6395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6395), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6395), - [anon_sym_DOLLAR] = ACTIONS(6393), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6395), - [anon_sym_BSLASHtitle] = ACTIONS(6393), - [anon_sym_BSLASHauthor] = ACTIONS(6393), - [anon_sym_BSLASHusepackage] = ACTIONS(6393), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6393), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6393), - [anon_sym_BSLASHinclude] = ACTIONS(6393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6393), - [anon_sym_BSLASHinput] = ACTIONS(6393), - [anon_sym_BSLASHsubfile] = ACTIONS(6393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6393), - [anon_sym_BSLASHbibliography] = ACTIONS(6393), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6393), - [anon_sym_BSLASHincludesvg] = ACTIONS(6393), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6393), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6393), - [anon_sym_BSLASHimport] = ACTIONS(6393), - [anon_sym_BSLASHsubimport] = ACTIONS(6393), - [anon_sym_BSLASHinputfrom] = ACTIONS(6393), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6393), - [anon_sym_BSLASHincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHcaption] = ACTIONS(6393), - [anon_sym_BSLASHcite] = ACTIONS(6393), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCite] = ACTIONS(6393), - [anon_sym_BSLASHnocite] = ACTIONS(6393), - [anon_sym_BSLASHcitet] = ACTIONS(6393), - [anon_sym_BSLASHcitep] = ACTIONS(6393), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteauthor] = ACTIONS(6393), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6393), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitetitle] = ACTIONS(6393), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteyear] = ACTIONS(6393), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitedate] = ACTIONS(6393), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteurl] = ACTIONS(6393), - [anon_sym_BSLASHfullcite] = ACTIONS(6393), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6393), - [anon_sym_BSLASHcitealt] = ACTIONS(6393), - [anon_sym_BSLASHcitealp] = ACTIONS(6393), - [anon_sym_BSLASHcitetext] = ACTIONS(6393), - [anon_sym_BSLASHparencite] = ACTIONS(6393), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHParencite] = ACTIONS(6393), - [anon_sym_BSLASHfootcite] = ACTIONS(6393), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6393), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6393), - [anon_sym_BSLASHtextcite] = ACTIONS(6393), - [anon_sym_BSLASHTextcite] = ACTIONS(6393), - [anon_sym_BSLASHsmartcite] = ACTIONS(6393), - [anon_sym_BSLASHSmartcite] = ACTIONS(6393), - [anon_sym_BSLASHsupercite] = ACTIONS(6393), - [anon_sym_BSLASHautocite] = ACTIONS(6393), - [anon_sym_BSLASHAutocite] = ACTIONS(6393), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHvolcite] = ACTIONS(6393), - [anon_sym_BSLASHVolcite] = ACTIONS(6393), - [anon_sym_BSLASHpvolcite] = ACTIONS(6393), - [anon_sym_BSLASHPvolcite] = ACTIONS(6393), - [anon_sym_BSLASHfvolcite] = ACTIONS(6393), - [anon_sym_BSLASHftvolcite] = ACTIONS(6393), - [anon_sym_BSLASHsvolcite] = ACTIONS(6393), - [anon_sym_BSLASHSvolcite] = ACTIONS(6393), - [anon_sym_BSLASHtvolcite] = ACTIONS(6393), - [anon_sym_BSLASHTvolcite] = ACTIONS(6393), - [anon_sym_BSLASHavolcite] = ACTIONS(6393), - [anon_sym_BSLASHAvolcite] = ACTIONS(6393), - [anon_sym_BSLASHnotecite] = ACTIONS(6393), - [anon_sym_BSLASHNotecite] = ACTIONS(6393), - [anon_sym_BSLASHpnotecite] = ACTIONS(6393), - [anon_sym_BSLASHPnotecite] = ACTIONS(6393), - [anon_sym_BSLASHfnotecite] = ACTIONS(6393), - [anon_sym_BSLASHlabel] = ACTIONS(6393), - [anon_sym_BSLASHref] = ACTIONS(6393), - [anon_sym_BSLASHeqref] = ACTIONS(6393), - [anon_sym_BSLASHvref] = ACTIONS(6393), - [anon_sym_BSLASHVref] = ACTIONS(6393), - [anon_sym_BSLASHautoref] = ACTIONS(6393), - [anon_sym_BSLASHpageref] = ACTIONS(6393), - [anon_sym_BSLASHcref] = ACTIONS(6393), - [anon_sym_BSLASHCref] = ACTIONS(6393), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnameCref] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHlabelcref] = ACTIONS(6393), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCrefrange] = ACTIONS(6393), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnewlabel] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6393), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6393), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6395), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHdef] = ACTIONS(6393), - [anon_sym_BSLASHlet] = ACTIONS(6393), - [anon_sym_BSLASHleft] = ACTIONS(6393), - [anon_sym_BSLASHbig] = ACTIONS(6393), - [anon_sym_BSLASHBig] = ACTIONS(6393), - [anon_sym_BSLASHbigg] = ACTIONS(6393), - [anon_sym_BSLASHBigg] = ACTIONS(6393), - [anon_sym_BSLASHbigl] = ACTIONS(6393), - [anon_sym_BSLASHBigl] = ACTIONS(6393), - [anon_sym_BSLASHbiggl] = ACTIONS(6393), - [anon_sym_BSLASHBiggl] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6393), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6393), - [anon_sym_BSLASHgls] = ACTIONS(6393), - [anon_sym_BSLASHGls] = ACTIONS(6393), - [anon_sym_BSLASHGLS] = ACTIONS(6393), - [anon_sym_BSLASHglspl] = ACTIONS(6393), - [anon_sym_BSLASHGlspl] = ACTIONS(6393), - [anon_sym_BSLASHGLSpl] = ACTIONS(6393), - [anon_sym_BSLASHglsdisp] = ACTIONS(6393), - [anon_sym_BSLASHglslink] = ACTIONS(6393), - [anon_sym_BSLASHglstext] = ACTIONS(6393), - [anon_sym_BSLASHGlstext] = ACTIONS(6393), - [anon_sym_BSLASHGLStext] = ACTIONS(6393), - [anon_sym_BSLASHglsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6393), - [anon_sym_BSLASHglsplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSplural] = ACTIONS(6393), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHglsname] = ACTIONS(6393), - [anon_sym_BSLASHGlsname] = ACTIONS(6393), - [anon_sym_BSLASHGLSname] = ACTIONS(6393), - [anon_sym_BSLASHglssymbol] = ACTIONS(6393), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6393), - [anon_sym_BSLASHglsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6393), - [anon_sym_BSLASHglsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6393), - [anon_sym_BSLASHglsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6393), - [anon_sym_BSLASHglsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6393), - [anon_sym_BSLASHglsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6393), - [anon_sym_BSLASHnewacronym] = ACTIONS(6393), - [anon_sym_BSLASHacrshort] = ACTIONS(6393), - [anon_sym_BSLASHAcrshort] = ACTIONS(6393), - [anon_sym_BSLASHACRshort] = ACTIONS(6393), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6393), - [anon_sym_BSLASHacrlong] = ACTIONS(6393), - [anon_sym_BSLASHAcrlong] = ACTIONS(6393), - [anon_sym_BSLASHACRlong] = ACTIONS(6393), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6393), - [anon_sym_BSLASHacrfull] = ACTIONS(6393), - [anon_sym_BSLASHAcrfull] = ACTIONS(6393), - [anon_sym_BSLASHACRfull] = ACTIONS(6393), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6393), - [anon_sym_BSLASHacs] = ACTIONS(6393), - [anon_sym_BSLASHAcs] = ACTIONS(6393), - [anon_sym_BSLASHacsp] = ACTIONS(6393), - [anon_sym_BSLASHAcsp] = ACTIONS(6393), - [anon_sym_BSLASHacl] = ACTIONS(6393), - [anon_sym_BSLASHAcl] = ACTIONS(6393), - [anon_sym_BSLASHaclp] = ACTIONS(6393), - [anon_sym_BSLASHAclp] = ACTIONS(6393), - [anon_sym_BSLASHacf] = ACTIONS(6393), - [anon_sym_BSLASHAcf] = ACTIONS(6393), - [anon_sym_BSLASHacfp] = ACTIONS(6393), - [anon_sym_BSLASHAcfp] = ACTIONS(6393), - [anon_sym_BSLASHac] = ACTIONS(6393), - [anon_sym_BSLASHAc] = ACTIONS(6393), - [anon_sym_BSLASHacp] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6393), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6393), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6393), - [anon_sym_BSLASHcolor] = ACTIONS(6393), - [anon_sym_BSLASHcolorbox] = ACTIONS(6393), - [anon_sym_BSLASHtextcolor] = ACTIONS(6393), - [anon_sym_BSLASHpagecolor] = ACTIONS(6393), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6393), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6393), - [anon_sym_BSLASHtext] = ACTIONS(6393), - [anon_sym_BSLASHintertext] = ACTIONS(6393), - [anon_sym_shortintertext] = ACTIONS(6393), - }, - [1642] = { - [sym_command_name] = ACTIONS(6389), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(6391), - [anon_sym_RBRACK] = ACTIONS(6391), - [anon_sym_COMMA] = ACTIONS(6391), - [anon_sym_EQ] = ACTIONS(6391), - [anon_sym_LPAREN] = ACTIONS(6391), - [anon_sym_RPAREN] = ACTIONS(6391), - [anon_sym_LBRACE] = ACTIONS(6391), - [anon_sym_RBRACE] = ACTIONS(6391), - [sym_word] = ACTIONS(6389), - [sym_placeholder] = ACTIONS(6391), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6391), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_LT] = ACTIONS(6389), - [anon_sym_GT] = ACTIONS(6389), - [anon_sym_BANG] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_SQUOTE] = ACTIONS(6389), - [anon_sym__] = ACTIONS(6391), - [anon_sym_CARET] = ACTIONS(6391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6391), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6391), - [anon_sym_DOLLAR] = ACTIONS(6389), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6391), - [anon_sym_BSLASHtitle] = ACTIONS(6389), - [anon_sym_BSLASHauthor] = ACTIONS(6389), - [anon_sym_BSLASHusepackage] = ACTIONS(6389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6389), - [anon_sym_BSLASHinclude] = ACTIONS(6389), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6389), - [anon_sym_BSLASHinput] = ACTIONS(6389), - [anon_sym_BSLASHsubfile] = ACTIONS(6389), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6389), - [anon_sym_BSLASHbibliography] = ACTIONS(6389), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6389), - [anon_sym_BSLASHincludesvg] = ACTIONS(6389), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6389), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6389), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6389), - [anon_sym_BSLASHimport] = ACTIONS(6389), - [anon_sym_BSLASHsubimport] = ACTIONS(6389), - [anon_sym_BSLASHinputfrom] = ACTIONS(6389), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6389), - [anon_sym_BSLASHincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHcaption] = ACTIONS(6389), - [anon_sym_BSLASHcite] = ACTIONS(6389), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCite] = ACTIONS(6389), - [anon_sym_BSLASHnocite] = ACTIONS(6389), - [anon_sym_BSLASHcitet] = ACTIONS(6389), - [anon_sym_BSLASHcitep] = ACTIONS(6389), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteauthor] = ACTIONS(6389), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6389), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitetitle] = ACTIONS(6389), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteyear] = ACTIONS(6389), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitedate] = ACTIONS(6389), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteurl] = ACTIONS(6389), - [anon_sym_BSLASHfullcite] = ACTIONS(6389), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6389), - [anon_sym_BSLASHcitealt] = ACTIONS(6389), - [anon_sym_BSLASHcitealp] = ACTIONS(6389), - [anon_sym_BSLASHcitetext] = ACTIONS(6389), - [anon_sym_BSLASHparencite] = ACTIONS(6389), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHParencite] = ACTIONS(6389), - [anon_sym_BSLASHfootcite] = ACTIONS(6389), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6389), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6389), - [anon_sym_BSLASHtextcite] = ACTIONS(6389), - [anon_sym_BSLASHTextcite] = ACTIONS(6389), - [anon_sym_BSLASHsmartcite] = ACTIONS(6389), - [anon_sym_BSLASHSmartcite] = ACTIONS(6389), - [anon_sym_BSLASHsupercite] = ACTIONS(6389), - [anon_sym_BSLASHautocite] = ACTIONS(6389), - [anon_sym_BSLASHAutocite] = ACTIONS(6389), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHvolcite] = ACTIONS(6389), - [anon_sym_BSLASHVolcite] = ACTIONS(6389), - [anon_sym_BSLASHpvolcite] = ACTIONS(6389), - [anon_sym_BSLASHPvolcite] = ACTIONS(6389), - [anon_sym_BSLASHfvolcite] = ACTIONS(6389), - [anon_sym_BSLASHftvolcite] = ACTIONS(6389), - [anon_sym_BSLASHsvolcite] = ACTIONS(6389), - [anon_sym_BSLASHSvolcite] = ACTIONS(6389), - [anon_sym_BSLASHtvolcite] = ACTIONS(6389), - [anon_sym_BSLASHTvolcite] = ACTIONS(6389), - [anon_sym_BSLASHavolcite] = ACTIONS(6389), - [anon_sym_BSLASHAvolcite] = ACTIONS(6389), - [anon_sym_BSLASHnotecite] = ACTIONS(6389), - [anon_sym_BSLASHNotecite] = ACTIONS(6389), - [anon_sym_BSLASHpnotecite] = ACTIONS(6389), - [anon_sym_BSLASHPnotecite] = ACTIONS(6389), - [anon_sym_BSLASHfnotecite] = ACTIONS(6389), - [anon_sym_BSLASHlabel] = ACTIONS(6389), - [anon_sym_BSLASHref] = ACTIONS(6389), - [anon_sym_BSLASHeqref] = ACTIONS(6389), - [anon_sym_BSLASHvref] = ACTIONS(6389), - [anon_sym_BSLASHVref] = ACTIONS(6389), - [anon_sym_BSLASHautoref] = ACTIONS(6389), - [anon_sym_BSLASHpageref] = ACTIONS(6389), - [anon_sym_BSLASHcref] = ACTIONS(6389), - [anon_sym_BSLASHCref] = ACTIONS(6389), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnameCref] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHlabelcref] = ACTIONS(6389), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCrefrange] = ACTIONS(6389), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnewlabel] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6389), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6389), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6391), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHdef] = ACTIONS(6389), - [anon_sym_BSLASHlet] = ACTIONS(6389), - [anon_sym_BSLASHleft] = ACTIONS(6389), - [anon_sym_BSLASHbig] = ACTIONS(6389), - [anon_sym_BSLASHBig] = ACTIONS(6389), - [anon_sym_BSLASHbigg] = ACTIONS(6389), - [anon_sym_BSLASHBigg] = ACTIONS(6389), - [anon_sym_BSLASHbigl] = ACTIONS(6389), - [anon_sym_BSLASHBigl] = ACTIONS(6389), - [anon_sym_BSLASHbiggl] = ACTIONS(6389), - [anon_sym_BSLASHBiggl] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6389), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6389), - [anon_sym_BSLASHgls] = ACTIONS(6389), - [anon_sym_BSLASHGls] = ACTIONS(6389), - [anon_sym_BSLASHGLS] = ACTIONS(6389), - [anon_sym_BSLASHglspl] = ACTIONS(6389), - [anon_sym_BSLASHGlspl] = ACTIONS(6389), - [anon_sym_BSLASHGLSpl] = ACTIONS(6389), - [anon_sym_BSLASHglsdisp] = ACTIONS(6389), - [anon_sym_BSLASHglslink] = ACTIONS(6389), - [anon_sym_BSLASHglstext] = ACTIONS(6389), - [anon_sym_BSLASHGlstext] = ACTIONS(6389), - [anon_sym_BSLASHGLStext] = ACTIONS(6389), - [anon_sym_BSLASHglsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6389), - [anon_sym_BSLASHglsplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSplural] = ACTIONS(6389), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHglsname] = ACTIONS(6389), - [anon_sym_BSLASHGlsname] = ACTIONS(6389), - [anon_sym_BSLASHGLSname] = ACTIONS(6389), - [anon_sym_BSLASHglssymbol] = ACTIONS(6389), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6389), - [anon_sym_BSLASHglsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6389), - [anon_sym_BSLASHglsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6389), - [anon_sym_BSLASHglsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6389), - [anon_sym_BSLASHglsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6389), - [anon_sym_BSLASHglsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6389), - [anon_sym_BSLASHnewacronym] = ACTIONS(6389), - [anon_sym_BSLASHacrshort] = ACTIONS(6389), - [anon_sym_BSLASHAcrshort] = ACTIONS(6389), - [anon_sym_BSLASHACRshort] = ACTIONS(6389), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6389), - [anon_sym_BSLASHacrlong] = ACTIONS(6389), - [anon_sym_BSLASHAcrlong] = ACTIONS(6389), - [anon_sym_BSLASHACRlong] = ACTIONS(6389), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6389), - [anon_sym_BSLASHacrfull] = ACTIONS(6389), - [anon_sym_BSLASHAcrfull] = ACTIONS(6389), - [anon_sym_BSLASHACRfull] = ACTIONS(6389), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6389), - [anon_sym_BSLASHacs] = ACTIONS(6389), - [anon_sym_BSLASHAcs] = ACTIONS(6389), - [anon_sym_BSLASHacsp] = ACTIONS(6389), - [anon_sym_BSLASHAcsp] = ACTIONS(6389), - [anon_sym_BSLASHacl] = ACTIONS(6389), - [anon_sym_BSLASHAcl] = ACTIONS(6389), - [anon_sym_BSLASHaclp] = ACTIONS(6389), - [anon_sym_BSLASHAclp] = ACTIONS(6389), - [anon_sym_BSLASHacf] = ACTIONS(6389), - [anon_sym_BSLASHAcf] = ACTIONS(6389), - [anon_sym_BSLASHacfp] = ACTIONS(6389), - [anon_sym_BSLASHAcfp] = ACTIONS(6389), - [anon_sym_BSLASHac] = ACTIONS(6389), - [anon_sym_BSLASHAc] = ACTIONS(6389), - [anon_sym_BSLASHacp] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6389), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6389), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6389), - [anon_sym_BSLASHcolor] = ACTIONS(6389), - [anon_sym_BSLASHcolorbox] = ACTIONS(6389), - [anon_sym_BSLASHtextcolor] = ACTIONS(6389), - [anon_sym_BSLASHpagecolor] = ACTIONS(6389), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6389), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6389), - [anon_sym_BSLASHtext] = ACTIONS(6389), - [anon_sym_BSLASHintertext] = ACTIONS(6389), - [anon_sym_shortintertext] = ACTIONS(6389), - }, - [1643] = { - [sym_command_name] = ACTIONS(6289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6289), - [anon_sym_LBRACK] = ACTIONS(6291), - [anon_sym_RBRACK] = ACTIONS(6291), - [anon_sym_COMMA] = ACTIONS(6291), - [anon_sym_EQ] = ACTIONS(6291), - [anon_sym_LPAREN] = ACTIONS(6291), - [anon_sym_RPAREN] = ACTIONS(6291), - [anon_sym_LBRACE] = ACTIONS(6291), - [sym_word] = ACTIONS(6289), - [sym_placeholder] = ACTIONS(6291), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6291), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_LT] = ACTIONS(6289), - [anon_sym_GT] = ACTIONS(6289), - [anon_sym_BANG] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_SQUOTE] = ACTIONS(6289), - [anon_sym__] = ACTIONS(6291), - [anon_sym_CARET] = ACTIONS(6291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6291), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6291), - [anon_sym_DOLLAR] = ACTIONS(6289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6291), - [anon_sym_BSLASHbegin] = ACTIONS(6289), - [anon_sym_BSLASHtitle] = ACTIONS(6289), - [anon_sym_BSLASHauthor] = ACTIONS(6289), - [anon_sym_BSLASHusepackage] = ACTIONS(6289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), - [anon_sym_BSLASHinclude] = ACTIONS(6289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), - [anon_sym_BSLASHinput] = ACTIONS(6289), - [anon_sym_BSLASHsubfile] = ACTIONS(6289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), - [anon_sym_BSLASHbibliography] = ACTIONS(6289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), - [anon_sym_BSLASHincludesvg] = ACTIONS(6289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), - [anon_sym_BSLASHimport] = ACTIONS(6289), - [anon_sym_BSLASHsubimport] = ACTIONS(6289), - [anon_sym_BSLASHinputfrom] = ACTIONS(6289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), - [anon_sym_BSLASHincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHcaption] = ACTIONS(6289), - [anon_sym_BSLASHcite] = ACTIONS(6289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCite] = ACTIONS(6289), - [anon_sym_BSLASHnocite] = ACTIONS(6289), - [anon_sym_BSLASHcitet] = ACTIONS(6289), - [anon_sym_BSLASHcitep] = ACTIONS(6289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteauthor] = ACTIONS(6289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitetitle] = ACTIONS(6289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteyear] = ACTIONS(6289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitedate] = ACTIONS(6289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteurl] = ACTIONS(6289), - [anon_sym_BSLASHfullcite] = ACTIONS(6289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), - [anon_sym_BSLASHcitealt] = ACTIONS(6289), - [anon_sym_BSLASHcitealp] = ACTIONS(6289), - [anon_sym_BSLASHcitetext] = ACTIONS(6289), - [anon_sym_BSLASHparencite] = ACTIONS(6289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHParencite] = ACTIONS(6289), - [anon_sym_BSLASHfootcite] = ACTIONS(6289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), - [anon_sym_BSLASHtextcite] = ACTIONS(6289), - [anon_sym_BSLASHTextcite] = ACTIONS(6289), - [anon_sym_BSLASHsmartcite] = ACTIONS(6289), - [anon_sym_BSLASHSmartcite] = ACTIONS(6289), - [anon_sym_BSLASHsupercite] = ACTIONS(6289), - [anon_sym_BSLASHautocite] = ACTIONS(6289), - [anon_sym_BSLASHAutocite] = ACTIONS(6289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHvolcite] = ACTIONS(6289), - [anon_sym_BSLASHVolcite] = ACTIONS(6289), - [anon_sym_BSLASHpvolcite] = ACTIONS(6289), - [anon_sym_BSLASHPvolcite] = ACTIONS(6289), - [anon_sym_BSLASHfvolcite] = ACTIONS(6289), - [anon_sym_BSLASHftvolcite] = ACTIONS(6289), - [anon_sym_BSLASHsvolcite] = ACTIONS(6289), - [anon_sym_BSLASHSvolcite] = ACTIONS(6289), - [anon_sym_BSLASHtvolcite] = ACTIONS(6289), - [anon_sym_BSLASHTvolcite] = ACTIONS(6289), - [anon_sym_BSLASHavolcite] = ACTIONS(6289), - [anon_sym_BSLASHAvolcite] = ACTIONS(6289), - [anon_sym_BSLASHnotecite] = ACTIONS(6289), - [anon_sym_BSLASHNotecite] = ACTIONS(6289), - [anon_sym_BSLASHpnotecite] = ACTIONS(6289), - [anon_sym_BSLASHPnotecite] = ACTIONS(6289), - [anon_sym_BSLASHfnotecite] = ACTIONS(6289), - [anon_sym_BSLASHlabel] = ACTIONS(6289), - [anon_sym_BSLASHref] = ACTIONS(6289), - [anon_sym_BSLASHeqref] = ACTIONS(6289), - [anon_sym_BSLASHvref] = ACTIONS(6289), - [anon_sym_BSLASHVref] = ACTIONS(6289), - [anon_sym_BSLASHautoref] = ACTIONS(6289), - [anon_sym_BSLASHpageref] = ACTIONS(6289), - [anon_sym_BSLASHcref] = ACTIONS(6289), - [anon_sym_BSLASHCref] = ACTIONS(6289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnameCref] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHlabelcref] = ACTIONS(6289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCrefrange] = ACTIONS(6289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnewlabel] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHdef] = ACTIONS(6289), - [anon_sym_BSLASHlet] = ACTIONS(6289), - [anon_sym_BSLASHleft] = ACTIONS(6289), - [anon_sym_BSLASHbig] = ACTIONS(6289), - [anon_sym_BSLASHBig] = ACTIONS(6289), - [anon_sym_BSLASHbigg] = ACTIONS(6289), - [anon_sym_BSLASHBigg] = ACTIONS(6289), - [anon_sym_BSLASHbigl] = ACTIONS(6289), - [anon_sym_BSLASHBigl] = ACTIONS(6289), - [anon_sym_BSLASHbiggl] = ACTIONS(6289), - [anon_sym_BSLASHBiggl] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), - [anon_sym_BSLASHgls] = ACTIONS(6289), - [anon_sym_BSLASHGls] = ACTIONS(6289), - [anon_sym_BSLASHGLS] = ACTIONS(6289), - [anon_sym_BSLASHglspl] = ACTIONS(6289), - [anon_sym_BSLASHGlspl] = ACTIONS(6289), - [anon_sym_BSLASHGLSpl] = ACTIONS(6289), - [anon_sym_BSLASHglsdisp] = ACTIONS(6289), - [anon_sym_BSLASHglslink] = ACTIONS(6289), - [anon_sym_BSLASHglstext] = ACTIONS(6289), - [anon_sym_BSLASHGlstext] = ACTIONS(6289), - [anon_sym_BSLASHGLStext] = ACTIONS(6289), - [anon_sym_BSLASHglsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), - [anon_sym_BSLASHglsplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSplural] = ACTIONS(6289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHglsname] = ACTIONS(6289), - [anon_sym_BSLASHGlsname] = ACTIONS(6289), - [anon_sym_BSLASHGLSname] = ACTIONS(6289), - [anon_sym_BSLASHglssymbol] = ACTIONS(6289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), - [anon_sym_BSLASHglsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), - [anon_sym_BSLASHglsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), - [anon_sym_BSLASHglsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), - [anon_sym_BSLASHglsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), - [anon_sym_BSLASHglsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), - [anon_sym_BSLASHnewacronym] = ACTIONS(6289), - [anon_sym_BSLASHacrshort] = ACTIONS(6289), - [anon_sym_BSLASHAcrshort] = ACTIONS(6289), - [anon_sym_BSLASHACRshort] = ACTIONS(6289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), - [anon_sym_BSLASHacrlong] = ACTIONS(6289), - [anon_sym_BSLASHAcrlong] = ACTIONS(6289), - [anon_sym_BSLASHACRlong] = ACTIONS(6289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), - [anon_sym_BSLASHacrfull] = ACTIONS(6289), - [anon_sym_BSLASHAcrfull] = ACTIONS(6289), - [anon_sym_BSLASHACRfull] = ACTIONS(6289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), - [anon_sym_BSLASHacs] = ACTIONS(6289), - [anon_sym_BSLASHAcs] = ACTIONS(6289), - [anon_sym_BSLASHacsp] = ACTIONS(6289), - [anon_sym_BSLASHAcsp] = ACTIONS(6289), - [anon_sym_BSLASHacl] = ACTIONS(6289), - [anon_sym_BSLASHAcl] = ACTIONS(6289), - [anon_sym_BSLASHaclp] = ACTIONS(6289), - [anon_sym_BSLASHAclp] = ACTIONS(6289), - [anon_sym_BSLASHacf] = ACTIONS(6289), - [anon_sym_BSLASHAcf] = ACTIONS(6289), - [anon_sym_BSLASHacfp] = ACTIONS(6289), - [anon_sym_BSLASHAcfp] = ACTIONS(6289), - [anon_sym_BSLASHac] = ACTIONS(6289), - [anon_sym_BSLASHAc] = ACTIONS(6289), - [anon_sym_BSLASHacp] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), - [anon_sym_BSLASHcolor] = ACTIONS(6289), - [anon_sym_BSLASHcolorbox] = ACTIONS(6289), - [anon_sym_BSLASHtextcolor] = ACTIONS(6289), - [anon_sym_BSLASHpagecolor] = ACTIONS(6289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), - [anon_sym_BSLASHtext] = ACTIONS(6289), - [anon_sym_BSLASHintertext] = ACTIONS(6289), - [anon_sym_shortintertext] = ACTIONS(6289), - }, - [1644] = { - [sym_command_name] = ACTIONS(6273), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6273), - [anon_sym_LBRACK] = ACTIONS(6275), - [anon_sym_RBRACK] = ACTIONS(6275), - [anon_sym_COMMA] = ACTIONS(6275), - [anon_sym_EQ] = ACTIONS(6275), - [anon_sym_LPAREN] = ACTIONS(6275), - [anon_sym_RPAREN] = ACTIONS(6275), - [anon_sym_LBRACE] = ACTIONS(6275), - [anon_sym_RBRACE] = ACTIONS(6275), - [sym_word] = ACTIONS(6273), - [sym_placeholder] = ACTIONS(6275), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_SQUOTE] = ACTIONS(6273), - [anon_sym__] = ACTIONS(6275), - [anon_sym_CARET] = ACTIONS(6275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6275), - [anon_sym_DOLLAR] = ACTIONS(6273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6275), - [anon_sym_BSLASHtitle] = ACTIONS(6273), - [anon_sym_BSLASHauthor] = ACTIONS(6273), - [anon_sym_BSLASHusepackage] = ACTIONS(6273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6273), - [anon_sym_BSLASHinclude] = ACTIONS(6273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6273), - [anon_sym_BSLASHinput] = ACTIONS(6273), - [anon_sym_BSLASHsubfile] = ACTIONS(6273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6273), - [anon_sym_BSLASHbibliography] = ACTIONS(6273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6273), - [anon_sym_BSLASHincludesvg] = ACTIONS(6273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6273), - [anon_sym_BSLASHimport] = ACTIONS(6273), - [anon_sym_BSLASHsubimport] = ACTIONS(6273), - [anon_sym_BSLASHinputfrom] = ACTIONS(6273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6273), - [anon_sym_BSLASHincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHcaption] = ACTIONS(6273), - [anon_sym_BSLASHcite] = ACTIONS(6273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCite] = ACTIONS(6273), - [anon_sym_BSLASHnocite] = ACTIONS(6273), - [anon_sym_BSLASHcitet] = ACTIONS(6273), - [anon_sym_BSLASHcitep] = ACTIONS(6273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteauthor] = ACTIONS(6273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitetitle] = ACTIONS(6273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteyear] = ACTIONS(6273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitedate] = ACTIONS(6273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteurl] = ACTIONS(6273), - [anon_sym_BSLASHfullcite] = ACTIONS(6273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6273), - [anon_sym_BSLASHcitealt] = ACTIONS(6273), - [anon_sym_BSLASHcitealp] = ACTIONS(6273), - [anon_sym_BSLASHcitetext] = ACTIONS(6273), - [anon_sym_BSLASHparencite] = ACTIONS(6273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHParencite] = ACTIONS(6273), - [anon_sym_BSLASHfootcite] = ACTIONS(6273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6273), - [anon_sym_BSLASHtextcite] = ACTIONS(6273), - [anon_sym_BSLASHTextcite] = ACTIONS(6273), - [anon_sym_BSLASHsmartcite] = ACTIONS(6273), - [anon_sym_BSLASHSmartcite] = ACTIONS(6273), - [anon_sym_BSLASHsupercite] = ACTIONS(6273), - [anon_sym_BSLASHautocite] = ACTIONS(6273), - [anon_sym_BSLASHAutocite] = ACTIONS(6273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHvolcite] = ACTIONS(6273), - [anon_sym_BSLASHVolcite] = ACTIONS(6273), - [anon_sym_BSLASHpvolcite] = ACTIONS(6273), - [anon_sym_BSLASHPvolcite] = ACTIONS(6273), - [anon_sym_BSLASHfvolcite] = ACTIONS(6273), - [anon_sym_BSLASHftvolcite] = ACTIONS(6273), - [anon_sym_BSLASHsvolcite] = ACTIONS(6273), - [anon_sym_BSLASHSvolcite] = ACTIONS(6273), - [anon_sym_BSLASHtvolcite] = ACTIONS(6273), - [anon_sym_BSLASHTvolcite] = ACTIONS(6273), - [anon_sym_BSLASHavolcite] = ACTIONS(6273), - [anon_sym_BSLASHAvolcite] = ACTIONS(6273), - [anon_sym_BSLASHnotecite] = ACTIONS(6273), - [anon_sym_BSLASHNotecite] = ACTIONS(6273), - [anon_sym_BSLASHpnotecite] = ACTIONS(6273), - [anon_sym_BSLASHPnotecite] = ACTIONS(6273), - [anon_sym_BSLASHfnotecite] = ACTIONS(6273), - [anon_sym_BSLASHlabel] = ACTIONS(6273), - [anon_sym_BSLASHref] = ACTIONS(6273), - [anon_sym_BSLASHeqref] = ACTIONS(6273), - [anon_sym_BSLASHvref] = ACTIONS(6273), - [anon_sym_BSLASHVref] = ACTIONS(6273), - [anon_sym_BSLASHautoref] = ACTIONS(6273), - [anon_sym_BSLASHpageref] = ACTIONS(6273), - [anon_sym_BSLASHcref] = ACTIONS(6273), - [anon_sym_BSLASHCref] = ACTIONS(6273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnameCref] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHlabelcref] = ACTIONS(6273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCrefrange] = ACTIONS(6273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnewlabel] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6275), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHdef] = ACTIONS(6273), - [anon_sym_BSLASHlet] = ACTIONS(6273), - [anon_sym_BSLASHleft] = ACTIONS(6273), - [anon_sym_BSLASHbig] = ACTIONS(6273), - [anon_sym_BSLASHBig] = ACTIONS(6273), - [anon_sym_BSLASHbigg] = ACTIONS(6273), - [anon_sym_BSLASHBigg] = ACTIONS(6273), - [anon_sym_BSLASHbigl] = ACTIONS(6273), - [anon_sym_BSLASHBigl] = ACTIONS(6273), - [anon_sym_BSLASHbiggl] = ACTIONS(6273), - [anon_sym_BSLASHBiggl] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6273), - [anon_sym_BSLASHgls] = ACTIONS(6273), - [anon_sym_BSLASHGls] = ACTIONS(6273), - [anon_sym_BSLASHGLS] = ACTIONS(6273), - [anon_sym_BSLASHglspl] = ACTIONS(6273), - [anon_sym_BSLASHGlspl] = ACTIONS(6273), - [anon_sym_BSLASHGLSpl] = ACTIONS(6273), - [anon_sym_BSLASHglsdisp] = ACTIONS(6273), - [anon_sym_BSLASHglslink] = ACTIONS(6273), - [anon_sym_BSLASHglstext] = ACTIONS(6273), - [anon_sym_BSLASHGlstext] = ACTIONS(6273), - [anon_sym_BSLASHGLStext] = ACTIONS(6273), - [anon_sym_BSLASHglsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6273), - [anon_sym_BSLASHglsplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSplural] = ACTIONS(6273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHglsname] = ACTIONS(6273), - [anon_sym_BSLASHGlsname] = ACTIONS(6273), - [anon_sym_BSLASHGLSname] = ACTIONS(6273), - [anon_sym_BSLASHglssymbol] = ACTIONS(6273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6273), - [anon_sym_BSLASHglsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6273), - [anon_sym_BSLASHglsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6273), - [anon_sym_BSLASHglsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6273), - [anon_sym_BSLASHglsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6273), - [anon_sym_BSLASHglsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6273), - [anon_sym_BSLASHnewacronym] = ACTIONS(6273), - [anon_sym_BSLASHacrshort] = ACTIONS(6273), - [anon_sym_BSLASHAcrshort] = ACTIONS(6273), - [anon_sym_BSLASHACRshort] = ACTIONS(6273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6273), - [anon_sym_BSLASHacrlong] = ACTIONS(6273), - [anon_sym_BSLASHAcrlong] = ACTIONS(6273), - [anon_sym_BSLASHACRlong] = ACTIONS(6273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6273), - [anon_sym_BSLASHacrfull] = ACTIONS(6273), - [anon_sym_BSLASHAcrfull] = ACTIONS(6273), - [anon_sym_BSLASHACRfull] = ACTIONS(6273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6273), - [anon_sym_BSLASHacs] = ACTIONS(6273), - [anon_sym_BSLASHAcs] = ACTIONS(6273), - [anon_sym_BSLASHacsp] = ACTIONS(6273), - [anon_sym_BSLASHAcsp] = ACTIONS(6273), - [anon_sym_BSLASHacl] = ACTIONS(6273), - [anon_sym_BSLASHAcl] = ACTIONS(6273), - [anon_sym_BSLASHaclp] = ACTIONS(6273), - [anon_sym_BSLASHAclp] = ACTIONS(6273), - [anon_sym_BSLASHacf] = ACTIONS(6273), - [anon_sym_BSLASHAcf] = ACTIONS(6273), - [anon_sym_BSLASHacfp] = ACTIONS(6273), - [anon_sym_BSLASHAcfp] = ACTIONS(6273), - [anon_sym_BSLASHac] = ACTIONS(6273), - [anon_sym_BSLASHAc] = ACTIONS(6273), - [anon_sym_BSLASHacp] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6273), - [anon_sym_BSLASHcolor] = ACTIONS(6273), - [anon_sym_BSLASHcolorbox] = ACTIONS(6273), - [anon_sym_BSLASHtextcolor] = ACTIONS(6273), - [anon_sym_BSLASHpagecolor] = ACTIONS(6273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6273), - [anon_sym_BSLASHtext] = ACTIONS(6273), - [anon_sym_BSLASHintertext] = ACTIONS(6273), - [anon_sym_shortintertext] = ACTIONS(6273), - }, - [1645] = { - [sym_command_name] = ACTIONS(6185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_RBRACK] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_EQ] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_LBRACE] = ACTIONS(6187), - [sym_word] = ACTIONS(6185), - [sym_placeholder] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6187), - [anon_sym_DASH] = ACTIONS(6187), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_SQUOTE] = ACTIONS(6185), - [anon_sym__] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), - [anon_sym_DOLLAR] = ACTIONS(6185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), - [anon_sym_BSLASHbegin] = ACTIONS(6185), - [anon_sym_BSLASHtitle] = ACTIONS(6185), - [anon_sym_BSLASHauthor] = ACTIONS(6185), - [anon_sym_BSLASHusepackage] = ACTIONS(6185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), - [anon_sym_BSLASHinclude] = ACTIONS(6185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), - [anon_sym_BSLASHinput] = ACTIONS(6185), - [anon_sym_BSLASHsubfile] = ACTIONS(6185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), - [anon_sym_BSLASHbibliography] = ACTIONS(6185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), - [anon_sym_BSLASHincludesvg] = ACTIONS(6185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), - [anon_sym_BSLASHimport] = ACTIONS(6185), - [anon_sym_BSLASHsubimport] = ACTIONS(6185), - [anon_sym_BSLASHinputfrom] = ACTIONS(6185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), - [anon_sym_BSLASHincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHcaption] = ACTIONS(6185), - [anon_sym_BSLASHcite] = ACTIONS(6185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCite] = ACTIONS(6185), - [anon_sym_BSLASHnocite] = ACTIONS(6185), - [anon_sym_BSLASHcitet] = ACTIONS(6185), - [anon_sym_BSLASHcitep] = ACTIONS(6185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteauthor] = ACTIONS(6185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitetitle] = ACTIONS(6185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteyear] = ACTIONS(6185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitedate] = ACTIONS(6185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteurl] = ACTIONS(6185), - [anon_sym_BSLASHfullcite] = ACTIONS(6185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), - [anon_sym_BSLASHcitealt] = ACTIONS(6185), - [anon_sym_BSLASHcitealp] = ACTIONS(6185), - [anon_sym_BSLASHcitetext] = ACTIONS(6185), - [anon_sym_BSLASHparencite] = ACTIONS(6185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHParencite] = ACTIONS(6185), - [anon_sym_BSLASHfootcite] = ACTIONS(6185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), - [anon_sym_BSLASHtextcite] = ACTIONS(6185), - [anon_sym_BSLASHTextcite] = ACTIONS(6185), - [anon_sym_BSLASHsmartcite] = ACTIONS(6185), - [anon_sym_BSLASHSmartcite] = ACTIONS(6185), - [anon_sym_BSLASHsupercite] = ACTIONS(6185), - [anon_sym_BSLASHautocite] = ACTIONS(6185), - [anon_sym_BSLASHAutocite] = ACTIONS(6185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHvolcite] = ACTIONS(6185), - [anon_sym_BSLASHVolcite] = ACTIONS(6185), - [anon_sym_BSLASHpvolcite] = ACTIONS(6185), - [anon_sym_BSLASHPvolcite] = ACTIONS(6185), - [anon_sym_BSLASHfvolcite] = ACTIONS(6185), - [anon_sym_BSLASHftvolcite] = ACTIONS(6185), - [anon_sym_BSLASHsvolcite] = ACTIONS(6185), - [anon_sym_BSLASHSvolcite] = ACTIONS(6185), - [anon_sym_BSLASHtvolcite] = ACTIONS(6185), - [anon_sym_BSLASHTvolcite] = ACTIONS(6185), - [anon_sym_BSLASHavolcite] = ACTIONS(6185), - [anon_sym_BSLASHAvolcite] = ACTIONS(6185), - [anon_sym_BSLASHnotecite] = ACTIONS(6185), - [anon_sym_BSLASHNotecite] = ACTIONS(6185), - [anon_sym_BSLASHpnotecite] = ACTIONS(6185), - [anon_sym_BSLASHPnotecite] = ACTIONS(6185), - [anon_sym_BSLASHfnotecite] = ACTIONS(6185), - [anon_sym_BSLASHlabel] = ACTIONS(6185), - [anon_sym_BSLASHref] = ACTIONS(6185), - [anon_sym_BSLASHeqref] = ACTIONS(6185), - [anon_sym_BSLASHvref] = ACTIONS(6185), - [anon_sym_BSLASHVref] = ACTIONS(6185), - [anon_sym_BSLASHautoref] = ACTIONS(6185), - [anon_sym_BSLASHpageref] = ACTIONS(6185), - [anon_sym_BSLASHcref] = ACTIONS(6185), - [anon_sym_BSLASHCref] = ACTIONS(6185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnameCref] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHlabelcref] = ACTIONS(6185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCrefrange] = ACTIONS(6185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnewlabel] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHdef] = ACTIONS(6185), - [anon_sym_BSLASHlet] = ACTIONS(6185), - [anon_sym_BSLASHleft] = ACTIONS(6185), - [anon_sym_BSLASHbig] = ACTIONS(6185), - [anon_sym_BSLASHBig] = ACTIONS(6185), - [anon_sym_BSLASHbigg] = ACTIONS(6185), - [anon_sym_BSLASHBigg] = ACTIONS(6185), - [anon_sym_BSLASHbigl] = ACTIONS(6185), - [anon_sym_BSLASHBigl] = ACTIONS(6185), - [anon_sym_BSLASHbiggl] = ACTIONS(6185), - [anon_sym_BSLASHBiggl] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), - [anon_sym_BSLASHgls] = ACTIONS(6185), - [anon_sym_BSLASHGls] = ACTIONS(6185), - [anon_sym_BSLASHGLS] = ACTIONS(6185), - [anon_sym_BSLASHglspl] = ACTIONS(6185), - [anon_sym_BSLASHGlspl] = ACTIONS(6185), - [anon_sym_BSLASHGLSpl] = ACTIONS(6185), - [anon_sym_BSLASHglsdisp] = ACTIONS(6185), - [anon_sym_BSLASHglslink] = ACTIONS(6185), - [anon_sym_BSLASHglstext] = ACTIONS(6185), - [anon_sym_BSLASHGlstext] = ACTIONS(6185), - [anon_sym_BSLASHGLStext] = ACTIONS(6185), - [anon_sym_BSLASHglsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), - [anon_sym_BSLASHglsplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSplural] = ACTIONS(6185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHglsname] = ACTIONS(6185), - [anon_sym_BSLASHGlsname] = ACTIONS(6185), - [anon_sym_BSLASHGLSname] = ACTIONS(6185), - [anon_sym_BSLASHglssymbol] = ACTIONS(6185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), - [anon_sym_BSLASHglsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), - [anon_sym_BSLASHglsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), - [anon_sym_BSLASHglsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), - [anon_sym_BSLASHglsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), - [anon_sym_BSLASHglsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), - [anon_sym_BSLASHnewacronym] = ACTIONS(6185), - [anon_sym_BSLASHacrshort] = ACTIONS(6185), - [anon_sym_BSLASHAcrshort] = ACTIONS(6185), - [anon_sym_BSLASHACRshort] = ACTIONS(6185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), - [anon_sym_BSLASHacrlong] = ACTIONS(6185), - [anon_sym_BSLASHAcrlong] = ACTIONS(6185), - [anon_sym_BSLASHACRlong] = ACTIONS(6185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), - [anon_sym_BSLASHacrfull] = ACTIONS(6185), - [anon_sym_BSLASHAcrfull] = ACTIONS(6185), - [anon_sym_BSLASHACRfull] = ACTIONS(6185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), - [anon_sym_BSLASHacs] = ACTIONS(6185), - [anon_sym_BSLASHAcs] = ACTIONS(6185), - [anon_sym_BSLASHacsp] = ACTIONS(6185), - [anon_sym_BSLASHAcsp] = ACTIONS(6185), - [anon_sym_BSLASHacl] = ACTIONS(6185), - [anon_sym_BSLASHAcl] = ACTIONS(6185), - [anon_sym_BSLASHaclp] = ACTIONS(6185), - [anon_sym_BSLASHAclp] = ACTIONS(6185), - [anon_sym_BSLASHacf] = ACTIONS(6185), - [anon_sym_BSLASHAcf] = ACTIONS(6185), - [anon_sym_BSLASHacfp] = ACTIONS(6185), - [anon_sym_BSLASHAcfp] = ACTIONS(6185), - [anon_sym_BSLASHac] = ACTIONS(6185), - [anon_sym_BSLASHAc] = ACTIONS(6185), - [anon_sym_BSLASHacp] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), - [anon_sym_BSLASHcolor] = ACTIONS(6185), - [anon_sym_BSLASHcolorbox] = ACTIONS(6185), - [anon_sym_BSLASHtextcolor] = ACTIONS(6185), - [anon_sym_BSLASHpagecolor] = ACTIONS(6185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), - [anon_sym_BSLASHtext] = ACTIONS(6185), - [anon_sym_BSLASHintertext] = ACTIONS(6185), - [anon_sym_shortintertext] = ACTIONS(6185), - }, - [1646] = { - [sym_command_name] = ACTIONS(6029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6029), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_EQ] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_LBRACE] = ACTIONS(6031), - [anon_sym_RBRACE] = ACTIONS(6031), - [sym_word] = ACTIONS(6029), - [sym_placeholder] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6031), - [anon_sym_DASH] = ACTIONS(6031), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6029), - [anon_sym_GT] = ACTIONS(6029), - [anon_sym_BANG] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_COLON] = ACTIONS(6029), - [anon_sym_SQUOTE] = ACTIONS(6029), - [anon_sym__] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), - [anon_sym_BSLASHtitle] = ACTIONS(6029), - [anon_sym_BSLASHauthor] = ACTIONS(6029), - [anon_sym_BSLASHusepackage] = ACTIONS(6029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), - [anon_sym_BSLASHinclude] = ACTIONS(6029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), - [anon_sym_BSLASHinput] = ACTIONS(6029), - [anon_sym_BSLASHsubfile] = ACTIONS(6029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), - [anon_sym_BSLASHbibliography] = ACTIONS(6029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), - [anon_sym_BSLASHincludesvg] = ACTIONS(6029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), - [anon_sym_BSLASHimport] = ACTIONS(6029), - [anon_sym_BSLASHsubimport] = ACTIONS(6029), - [anon_sym_BSLASHinputfrom] = ACTIONS(6029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), - [anon_sym_BSLASHincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHcaption] = ACTIONS(6029), - [anon_sym_BSLASHcite] = ACTIONS(6029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCite] = ACTIONS(6029), - [anon_sym_BSLASHnocite] = ACTIONS(6029), - [anon_sym_BSLASHcitet] = ACTIONS(6029), - [anon_sym_BSLASHcitep] = ACTIONS(6029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteauthor] = ACTIONS(6029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitetitle] = ACTIONS(6029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteyear] = ACTIONS(6029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitedate] = ACTIONS(6029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteurl] = ACTIONS(6029), - [anon_sym_BSLASHfullcite] = ACTIONS(6029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), - [anon_sym_BSLASHcitealt] = ACTIONS(6029), - [anon_sym_BSLASHcitealp] = ACTIONS(6029), - [anon_sym_BSLASHcitetext] = ACTIONS(6029), - [anon_sym_BSLASHparencite] = ACTIONS(6029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHParencite] = ACTIONS(6029), - [anon_sym_BSLASHfootcite] = ACTIONS(6029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), - [anon_sym_BSLASHtextcite] = ACTIONS(6029), - [anon_sym_BSLASHTextcite] = ACTIONS(6029), - [anon_sym_BSLASHsmartcite] = ACTIONS(6029), - [anon_sym_BSLASHSmartcite] = ACTIONS(6029), - [anon_sym_BSLASHsupercite] = ACTIONS(6029), - [anon_sym_BSLASHautocite] = ACTIONS(6029), - [anon_sym_BSLASHAutocite] = ACTIONS(6029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHvolcite] = ACTIONS(6029), - [anon_sym_BSLASHVolcite] = ACTIONS(6029), - [anon_sym_BSLASHpvolcite] = ACTIONS(6029), - [anon_sym_BSLASHPvolcite] = ACTIONS(6029), - [anon_sym_BSLASHfvolcite] = ACTIONS(6029), - [anon_sym_BSLASHftvolcite] = ACTIONS(6029), - [anon_sym_BSLASHsvolcite] = ACTIONS(6029), - [anon_sym_BSLASHSvolcite] = ACTIONS(6029), - [anon_sym_BSLASHtvolcite] = ACTIONS(6029), - [anon_sym_BSLASHTvolcite] = ACTIONS(6029), - [anon_sym_BSLASHavolcite] = ACTIONS(6029), - [anon_sym_BSLASHAvolcite] = ACTIONS(6029), - [anon_sym_BSLASHnotecite] = ACTIONS(6029), - [anon_sym_BSLASHNotecite] = ACTIONS(6029), - [anon_sym_BSLASHpnotecite] = ACTIONS(6029), - [anon_sym_BSLASHPnotecite] = ACTIONS(6029), - [anon_sym_BSLASHfnotecite] = ACTIONS(6029), - [anon_sym_BSLASHlabel] = ACTIONS(6029), - [anon_sym_BSLASHref] = ACTIONS(6029), - [anon_sym_BSLASHeqref] = ACTIONS(6029), - [anon_sym_BSLASHvref] = ACTIONS(6029), - [anon_sym_BSLASHVref] = ACTIONS(6029), - [anon_sym_BSLASHautoref] = ACTIONS(6029), - [anon_sym_BSLASHpageref] = ACTIONS(6029), - [anon_sym_BSLASHcref] = ACTIONS(6029), - [anon_sym_BSLASHCref] = ACTIONS(6029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnameCref] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHlabelcref] = ACTIONS(6029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCrefrange] = ACTIONS(6029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnewlabel] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHdef] = ACTIONS(6029), - [anon_sym_BSLASHlet] = ACTIONS(6029), - [anon_sym_BSLASHleft] = ACTIONS(6029), - [anon_sym_BSLASHbig] = ACTIONS(6029), - [anon_sym_BSLASHBig] = ACTIONS(6029), - [anon_sym_BSLASHbigg] = ACTIONS(6029), - [anon_sym_BSLASHBigg] = ACTIONS(6029), - [anon_sym_BSLASHbigl] = ACTIONS(6029), - [anon_sym_BSLASHBigl] = ACTIONS(6029), - [anon_sym_BSLASHbiggl] = ACTIONS(6029), - [anon_sym_BSLASHBiggl] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), - [anon_sym_BSLASHgls] = ACTIONS(6029), - [anon_sym_BSLASHGls] = ACTIONS(6029), - [anon_sym_BSLASHGLS] = ACTIONS(6029), - [anon_sym_BSLASHglspl] = ACTIONS(6029), - [anon_sym_BSLASHGlspl] = ACTIONS(6029), - [anon_sym_BSLASHGLSpl] = ACTIONS(6029), - [anon_sym_BSLASHglsdisp] = ACTIONS(6029), - [anon_sym_BSLASHglslink] = ACTIONS(6029), - [anon_sym_BSLASHglstext] = ACTIONS(6029), - [anon_sym_BSLASHGlstext] = ACTIONS(6029), - [anon_sym_BSLASHGLStext] = ACTIONS(6029), - [anon_sym_BSLASHglsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), - [anon_sym_BSLASHglsplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSplural] = ACTIONS(6029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHglsname] = ACTIONS(6029), - [anon_sym_BSLASHGlsname] = ACTIONS(6029), - [anon_sym_BSLASHGLSname] = ACTIONS(6029), - [anon_sym_BSLASHglssymbol] = ACTIONS(6029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), - [anon_sym_BSLASHglsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), - [anon_sym_BSLASHglsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), - [anon_sym_BSLASHglsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), - [anon_sym_BSLASHglsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), - [anon_sym_BSLASHglsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), - [anon_sym_BSLASHnewacronym] = ACTIONS(6029), - [anon_sym_BSLASHacrshort] = ACTIONS(6029), - [anon_sym_BSLASHAcrshort] = ACTIONS(6029), - [anon_sym_BSLASHACRshort] = ACTIONS(6029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), - [anon_sym_BSLASHacrlong] = ACTIONS(6029), - [anon_sym_BSLASHAcrlong] = ACTIONS(6029), - [anon_sym_BSLASHACRlong] = ACTIONS(6029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), - [anon_sym_BSLASHacrfull] = ACTIONS(6029), - [anon_sym_BSLASHAcrfull] = ACTIONS(6029), - [anon_sym_BSLASHACRfull] = ACTIONS(6029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), - [anon_sym_BSLASHacs] = ACTIONS(6029), - [anon_sym_BSLASHAcs] = ACTIONS(6029), - [anon_sym_BSLASHacsp] = ACTIONS(6029), - [anon_sym_BSLASHAcsp] = ACTIONS(6029), - [anon_sym_BSLASHacl] = ACTIONS(6029), - [anon_sym_BSLASHAcl] = ACTIONS(6029), - [anon_sym_BSLASHaclp] = ACTIONS(6029), - [anon_sym_BSLASHAclp] = ACTIONS(6029), - [anon_sym_BSLASHacf] = ACTIONS(6029), - [anon_sym_BSLASHAcf] = ACTIONS(6029), - [anon_sym_BSLASHacfp] = ACTIONS(6029), - [anon_sym_BSLASHAcfp] = ACTIONS(6029), - [anon_sym_BSLASHac] = ACTIONS(6029), - [anon_sym_BSLASHAc] = ACTIONS(6029), - [anon_sym_BSLASHacp] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), - [anon_sym_BSLASHcolor] = ACTIONS(6029), - [anon_sym_BSLASHcolorbox] = ACTIONS(6029), - [anon_sym_BSLASHtextcolor] = ACTIONS(6029), - [anon_sym_BSLASHpagecolor] = ACTIONS(6029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), - [anon_sym_BSLASHtext] = ACTIONS(6029), - [anon_sym_BSLASHintertext] = ACTIONS(6029), - [anon_sym_shortintertext] = ACTIONS(6029), - }, - [1647] = { - [sym_command_name] = ACTIONS(6385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6387), - [anon_sym_RBRACK] = ACTIONS(6387), - [anon_sym_COMMA] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LPAREN] = ACTIONS(6387), - [anon_sym_RPAREN] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6387), - [anon_sym_RBRACE] = ACTIONS(6387), - [sym_word] = ACTIONS(6385), - [sym_placeholder] = ACTIONS(6387), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6387), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_LT] = ACTIONS(6385), - [anon_sym_GT] = ACTIONS(6385), - [anon_sym_BANG] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_SQUOTE] = ACTIONS(6385), - [anon_sym__] = ACTIONS(6387), - [anon_sym_CARET] = ACTIONS(6387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6387), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6387), - [anon_sym_DOLLAR] = ACTIONS(6385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6387), - [anon_sym_BSLASHtitle] = ACTIONS(6385), - [anon_sym_BSLASHauthor] = ACTIONS(6385), - [anon_sym_BSLASHusepackage] = ACTIONS(6385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6385), - [anon_sym_BSLASHinclude] = ACTIONS(6385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6385), - [anon_sym_BSLASHinput] = ACTIONS(6385), - [anon_sym_BSLASHsubfile] = ACTIONS(6385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6385), - [anon_sym_BSLASHbibliography] = ACTIONS(6385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6385), - [anon_sym_BSLASHincludesvg] = ACTIONS(6385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6385), - [anon_sym_BSLASHimport] = ACTIONS(6385), - [anon_sym_BSLASHsubimport] = ACTIONS(6385), - [anon_sym_BSLASHinputfrom] = ACTIONS(6385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6385), - [anon_sym_BSLASHincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHcaption] = ACTIONS(6385), - [anon_sym_BSLASHcite] = ACTIONS(6385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCite] = ACTIONS(6385), - [anon_sym_BSLASHnocite] = ACTIONS(6385), - [anon_sym_BSLASHcitet] = ACTIONS(6385), - [anon_sym_BSLASHcitep] = ACTIONS(6385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteauthor] = ACTIONS(6385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitetitle] = ACTIONS(6385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteyear] = ACTIONS(6385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitedate] = ACTIONS(6385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteurl] = ACTIONS(6385), - [anon_sym_BSLASHfullcite] = ACTIONS(6385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6385), - [anon_sym_BSLASHcitealt] = ACTIONS(6385), - [anon_sym_BSLASHcitealp] = ACTIONS(6385), - [anon_sym_BSLASHcitetext] = ACTIONS(6385), - [anon_sym_BSLASHparencite] = ACTIONS(6385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHParencite] = ACTIONS(6385), - [anon_sym_BSLASHfootcite] = ACTIONS(6385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6385), - [anon_sym_BSLASHtextcite] = ACTIONS(6385), - [anon_sym_BSLASHTextcite] = ACTIONS(6385), - [anon_sym_BSLASHsmartcite] = ACTIONS(6385), - [anon_sym_BSLASHSmartcite] = ACTIONS(6385), - [anon_sym_BSLASHsupercite] = ACTIONS(6385), - [anon_sym_BSLASHautocite] = ACTIONS(6385), - [anon_sym_BSLASHAutocite] = ACTIONS(6385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHvolcite] = ACTIONS(6385), - [anon_sym_BSLASHVolcite] = ACTIONS(6385), - [anon_sym_BSLASHpvolcite] = ACTIONS(6385), - [anon_sym_BSLASHPvolcite] = ACTIONS(6385), - [anon_sym_BSLASHfvolcite] = ACTIONS(6385), - [anon_sym_BSLASHftvolcite] = ACTIONS(6385), - [anon_sym_BSLASHsvolcite] = ACTIONS(6385), - [anon_sym_BSLASHSvolcite] = ACTIONS(6385), - [anon_sym_BSLASHtvolcite] = ACTIONS(6385), - [anon_sym_BSLASHTvolcite] = ACTIONS(6385), - [anon_sym_BSLASHavolcite] = ACTIONS(6385), - [anon_sym_BSLASHAvolcite] = ACTIONS(6385), - [anon_sym_BSLASHnotecite] = ACTIONS(6385), - [anon_sym_BSLASHNotecite] = ACTIONS(6385), - [anon_sym_BSLASHpnotecite] = ACTIONS(6385), - [anon_sym_BSLASHPnotecite] = ACTIONS(6385), - [anon_sym_BSLASHfnotecite] = ACTIONS(6385), - [anon_sym_BSLASHlabel] = ACTIONS(6385), - [anon_sym_BSLASHref] = ACTIONS(6385), - [anon_sym_BSLASHeqref] = ACTIONS(6385), - [anon_sym_BSLASHvref] = ACTIONS(6385), - [anon_sym_BSLASHVref] = ACTIONS(6385), - [anon_sym_BSLASHautoref] = ACTIONS(6385), - [anon_sym_BSLASHpageref] = ACTIONS(6385), - [anon_sym_BSLASHcref] = ACTIONS(6385), - [anon_sym_BSLASHCref] = ACTIONS(6385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnameCref] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHlabelcref] = ACTIONS(6385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCrefrange] = ACTIONS(6385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnewlabel] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6387), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHdef] = ACTIONS(6385), - [anon_sym_BSLASHlet] = ACTIONS(6385), - [anon_sym_BSLASHleft] = ACTIONS(6385), - [anon_sym_BSLASHbig] = ACTIONS(6385), - [anon_sym_BSLASHBig] = ACTIONS(6385), - [anon_sym_BSLASHbigg] = ACTIONS(6385), - [anon_sym_BSLASHBigg] = ACTIONS(6385), - [anon_sym_BSLASHbigl] = ACTIONS(6385), - [anon_sym_BSLASHBigl] = ACTIONS(6385), - [anon_sym_BSLASHbiggl] = ACTIONS(6385), - [anon_sym_BSLASHBiggl] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6385), - [anon_sym_BSLASHgls] = ACTIONS(6385), - [anon_sym_BSLASHGls] = ACTIONS(6385), - [anon_sym_BSLASHGLS] = ACTIONS(6385), - [anon_sym_BSLASHglspl] = ACTIONS(6385), - [anon_sym_BSLASHGlspl] = ACTIONS(6385), - [anon_sym_BSLASHGLSpl] = ACTIONS(6385), - [anon_sym_BSLASHglsdisp] = ACTIONS(6385), - [anon_sym_BSLASHglslink] = ACTIONS(6385), - [anon_sym_BSLASHglstext] = ACTIONS(6385), - [anon_sym_BSLASHGlstext] = ACTIONS(6385), - [anon_sym_BSLASHGLStext] = ACTIONS(6385), - [anon_sym_BSLASHglsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6385), - [anon_sym_BSLASHglsplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSplural] = ACTIONS(6385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHglsname] = ACTIONS(6385), - [anon_sym_BSLASHGlsname] = ACTIONS(6385), - [anon_sym_BSLASHGLSname] = ACTIONS(6385), - [anon_sym_BSLASHglssymbol] = ACTIONS(6385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6385), - [anon_sym_BSLASHglsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6385), - [anon_sym_BSLASHglsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6385), - [anon_sym_BSLASHglsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6385), - [anon_sym_BSLASHglsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6385), - [anon_sym_BSLASHglsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6385), - [anon_sym_BSLASHnewacronym] = ACTIONS(6385), - [anon_sym_BSLASHacrshort] = ACTIONS(6385), - [anon_sym_BSLASHAcrshort] = ACTIONS(6385), - [anon_sym_BSLASHACRshort] = ACTIONS(6385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6385), - [anon_sym_BSLASHacrlong] = ACTIONS(6385), - [anon_sym_BSLASHAcrlong] = ACTIONS(6385), - [anon_sym_BSLASHACRlong] = ACTIONS(6385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6385), - [anon_sym_BSLASHacrfull] = ACTIONS(6385), - [anon_sym_BSLASHAcrfull] = ACTIONS(6385), - [anon_sym_BSLASHACRfull] = ACTIONS(6385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6385), - [anon_sym_BSLASHacs] = ACTIONS(6385), - [anon_sym_BSLASHAcs] = ACTIONS(6385), - [anon_sym_BSLASHacsp] = ACTIONS(6385), - [anon_sym_BSLASHAcsp] = ACTIONS(6385), - [anon_sym_BSLASHacl] = ACTIONS(6385), - [anon_sym_BSLASHAcl] = ACTIONS(6385), - [anon_sym_BSLASHaclp] = ACTIONS(6385), - [anon_sym_BSLASHAclp] = ACTIONS(6385), - [anon_sym_BSLASHacf] = ACTIONS(6385), - [anon_sym_BSLASHAcf] = ACTIONS(6385), - [anon_sym_BSLASHacfp] = ACTIONS(6385), - [anon_sym_BSLASHAcfp] = ACTIONS(6385), - [anon_sym_BSLASHac] = ACTIONS(6385), - [anon_sym_BSLASHAc] = ACTIONS(6385), - [anon_sym_BSLASHacp] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6385), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6385), - [anon_sym_BSLASHcolor] = ACTIONS(6385), - [anon_sym_BSLASHcolorbox] = ACTIONS(6385), - [anon_sym_BSLASHtextcolor] = ACTIONS(6385), - [anon_sym_BSLASHpagecolor] = ACTIONS(6385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6385), - [anon_sym_BSLASHtext] = ACTIONS(6385), - [anon_sym_BSLASHintertext] = ACTIONS(6385), - [anon_sym_shortintertext] = ACTIONS(6385), - }, - [1648] = { - [sym_command_name] = ACTIONS(6381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(6383), - [anon_sym_RBRACK] = ACTIONS(6383), - [anon_sym_COMMA] = ACTIONS(6383), - [anon_sym_EQ] = ACTIONS(6383), - [anon_sym_LPAREN] = ACTIONS(6383), - [anon_sym_RPAREN] = ACTIONS(6383), - [anon_sym_LBRACE] = ACTIONS(6383), - [anon_sym_RBRACE] = ACTIONS(6383), - [sym_word] = ACTIONS(6381), - [sym_placeholder] = ACTIONS(6383), - [anon_sym_PLUS] = ACTIONS(6383), - [anon_sym_DASH] = ACTIONS(6383), - [anon_sym_STAR] = ACTIONS(6383), - [anon_sym_SLASH] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_COLON] = ACTIONS(6381), - [anon_sym_SQUOTE] = ACTIONS(6381), - [anon_sym__] = ACTIONS(6383), - [anon_sym_CARET] = ACTIONS(6383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6383), - [anon_sym_DOLLAR] = ACTIONS(6381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6383), - [anon_sym_BSLASHtitle] = ACTIONS(6381), - [anon_sym_BSLASHauthor] = ACTIONS(6381), - [anon_sym_BSLASHusepackage] = ACTIONS(6381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6381), - [anon_sym_BSLASHinclude] = ACTIONS(6381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6381), - [anon_sym_BSLASHinput] = ACTIONS(6381), - [anon_sym_BSLASHsubfile] = ACTIONS(6381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6381), - [anon_sym_BSLASHbibliography] = ACTIONS(6381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6381), - [anon_sym_BSLASHincludesvg] = ACTIONS(6381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6381), - [anon_sym_BSLASHimport] = ACTIONS(6381), - [anon_sym_BSLASHsubimport] = ACTIONS(6381), - [anon_sym_BSLASHinputfrom] = ACTIONS(6381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6381), - [anon_sym_BSLASHincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHcaption] = ACTIONS(6381), - [anon_sym_BSLASHcite] = ACTIONS(6381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCite] = ACTIONS(6381), - [anon_sym_BSLASHnocite] = ACTIONS(6381), - [anon_sym_BSLASHcitet] = ACTIONS(6381), - [anon_sym_BSLASHcitep] = ACTIONS(6381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteauthor] = ACTIONS(6381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitetitle] = ACTIONS(6381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteyear] = ACTIONS(6381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitedate] = ACTIONS(6381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteurl] = ACTIONS(6381), - [anon_sym_BSLASHfullcite] = ACTIONS(6381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6381), - [anon_sym_BSLASHcitealt] = ACTIONS(6381), - [anon_sym_BSLASHcitealp] = ACTIONS(6381), - [anon_sym_BSLASHcitetext] = ACTIONS(6381), - [anon_sym_BSLASHparencite] = ACTIONS(6381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHParencite] = ACTIONS(6381), - [anon_sym_BSLASHfootcite] = ACTIONS(6381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6381), - [anon_sym_BSLASHtextcite] = ACTIONS(6381), - [anon_sym_BSLASHTextcite] = ACTIONS(6381), - [anon_sym_BSLASHsmartcite] = ACTIONS(6381), - [anon_sym_BSLASHSmartcite] = ACTIONS(6381), - [anon_sym_BSLASHsupercite] = ACTIONS(6381), - [anon_sym_BSLASHautocite] = ACTIONS(6381), - [anon_sym_BSLASHAutocite] = ACTIONS(6381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHvolcite] = ACTIONS(6381), - [anon_sym_BSLASHVolcite] = ACTIONS(6381), - [anon_sym_BSLASHpvolcite] = ACTIONS(6381), - [anon_sym_BSLASHPvolcite] = ACTIONS(6381), - [anon_sym_BSLASHfvolcite] = ACTIONS(6381), - [anon_sym_BSLASHftvolcite] = ACTIONS(6381), - [anon_sym_BSLASHsvolcite] = ACTIONS(6381), - [anon_sym_BSLASHSvolcite] = ACTIONS(6381), - [anon_sym_BSLASHtvolcite] = ACTIONS(6381), - [anon_sym_BSLASHTvolcite] = ACTIONS(6381), - [anon_sym_BSLASHavolcite] = ACTIONS(6381), - [anon_sym_BSLASHAvolcite] = ACTIONS(6381), - [anon_sym_BSLASHnotecite] = ACTIONS(6381), - [anon_sym_BSLASHNotecite] = ACTIONS(6381), - [anon_sym_BSLASHpnotecite] = ACTIONS(6381), - [anon_sym_BSLASHPnotecite] = ACTIONS(6381), - [anon_sym_BSLASHfnotecite] = ACTIONS(6381), - [anon_sym_BSLASHlabel] = ACTIONS(6381), - [anon_sym_BSLASHref] = ACTIONS(6381), - [anon_sym_BSLASHeqref] = ACTIONS(6381), - [anon_sym_BSLASHvref] = ACTIONS(6381), - [anon_sym_BSLASHVref] = ACTIONS(6381), - [anon_sym_BSLASHautoref] = ACTIONS(6381), - [anon_sym_BSLASHpageref] = ACTIONS(6381), - [anon_sym_BSLASHcref] = ACTIONS(6381), - [anon_sym_BSLASHCref] = ACTIONS(6381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnameCref] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHlabelcref] = ACTIONS(6381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCrefrange] = ACTIONS(6381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnewlabel] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6383), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHdef] = ACTIONS(6381), - [anon_sym_BSLASHlet] = ACTIONS(6381), - [anon_sym_BSLASHleft] = ACTIONS(6381), - [anon_sym_BSLASHbig] = ACTIONS(6381), - [anon_sym_BSLASHBig] = ACTIONS(6381), - [anon_sym_BSLASHbigg] = ACTIONS(6381), - [anon_sym_BSLASHBigg] = ACTIONS(6381), - [anon_sym_BSLASHbigl] = ACTIONS(6381), - [anon_sym_BSLASHBigl] = ACTIONS(6381), - [anon_sym_BSLASHbiggl] = ACTIONS(6381), - [anon_sym_BSLASHBiggl] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6381), - [anon_sym_BSLASHgls] = ACTIONS(6381), - [anon_sym_BSLASHGls] = ACTIONS(6381), - [anon_sym_BSLASHGLS] = ACTIONS(6381), - [anon_sym_BSLASHglspl] = ACTIONS(6381), - [anon_sym_BSLASHGlspl] = ACTIONS(6381), - [anon_sym_BSLASHGLSpl] = ACTIONS(6381), - [anon_sym_BSLASHglsdisp] = ACTIONS(6381), - [anon_sym_BSLASHglslink] = ACTIONS(6381), - [anon_sym_BSLASHglstext] = ACTIONS(6381), - [anon_sym_BSLASHGlstext] = ACTIONS(6381), - [anon_sym_BSLASHGLStext] = ACTIONS(6381), - [anon_sym_BSLASHglsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6381), - [anon_sym_BSLASHglsplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSplural] = ACTIONS(6381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHglsname] = ACTIONS(6381), - [anon_sym_BSLASHGlsname] = ACTIONS(6381), - [anon_sym_BSLASHGLSname] = ACTIONS(6381), - [anon_sym_BSLASHglssymbol] = ACTIONS(6381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6381), - [anon_sym_BSLASHglsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6381), - [anon_sym_BSLASHglsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6381), - [anon_sym_BSLASHglsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6381), - [anon_sym_BSLASHglsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6381), - [anon_sym_BSLASHglsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6381), - [anon_sym_BSLASHnewacronym] = ACTIONS(6381), - [anon_sym_BSLASHacrshort] = ACTIONS(6381), - [anon_sym_BSLASHAcrshort] = ACTIONS(6381), - [anon_sym_BSLASHACRshort] = ACTIONS(6381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6381), - [anon_sym_BSLASHacrlong] = ACTIONS(6381), - [anon_sym_BSLASHAcrlong] = ACTIONS(6381), - [anon_sym_BSLASHACRlong] = ACTIONS(6381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6381), - [anon_sym_BSLASHacrfull] = ACTIONS(6381), - [anon_sym_BSLASHAcrfull] = ACTIONS(6381), - [anon_sym_BSLASHACRfull] = ACTIONS(6381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6381), - [anon_sym_BSLASHacs] = ACTIONS(6381), - [anon_sym_BSLASHAcs] = ACTIONS(6381), - [anon_sym_BSLASHacsp] = ACTIONS(6381), - [anon_sym_BSLASHAcsp] = ACTIONS(6381), - [anon_sym_BSLASHacl] = ACTIONS(6381), - [anon_sym_BSLASHAcl] = ACTIONS(6381), - [anon_sym_BSLASHaclp] = ACTIONS(6381), - [anon_sym_BSLASHAclp] = ACTIONS(6381), - [anon_sym_BSLASHacf] = ACTIONS(6381), - [anon_sym_BSLASHAcf] = ACTIONS(6381), - [anon_sym_BSLASHacfp] = ACTIONS(6381), - [anon_sym_BSLASHAcfp] = ACTIONS(6381), - [anon_sym_BSLASHac] = ACTIONS(6381), - [anon_sym_BSLASHAc] = ACTIONS(6381), - [anon_sym_BSLASHacp] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6381), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6381), - [anon_sym_BSLASHcolor] = ACTIONS(6381), - [anon_sym_BSLASHcolorbox] = ACTIONS(6381), - [anon_sym_BSLASHtextcolor] = ACTIONS(6381), - [anon_sym_BSLASHpagecolor] = ACTIONS(6381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6381), - [anon_sym_BSLASHtext] = ACTIONS(6381), - [anon_sym_BSLASHintertext] = ACTIONS(6381), - [anon_sym_shortintertext] = ACTIONS(6381), - }, - [1649] = { - [sym_command_name] = ACTIONS(6377), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6379), - [anon_sym_RBRACK] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_EQ] = ACTIONS(6379), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_LBRACE] = ACTIONS(6379), - [anon_sym_RBRACE] = ACTIONS(6379), - [sym_word] = ACTIONS(6377), - [sym_placeholder] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_SQUOTE] = ACTIONS(6377), - [anon_sym__] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6379), - [anon_sym_DOLLAR] = ACTIONS(6377), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6379), - [anon_sym_BSLASHtitle] = ACTIONS(6377), - [anon_sym_BSLASHauthor] = ACTIONS(6377), - [anon_sym_BSLASHusepackage] = ACTIONS(6377), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6377), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6377), - [anon_sym_BSLASHinclude] = ACTIONS(6377), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6377), - [anon_sym_BSLASHinput] = ACTIONS(6377), - [anon_sym_BSLASHsubfile] = ACTIONS(6377), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6377), - [anon_sym_BSLASHbibliography] = ACTIONS(6377), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6377), - [anon_sym_BSLASHincludesvg] = ACTIONS(6377), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6377), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6377), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6377), - [anon_sym_BSLASHimport] = ACTIONS(6377), - [anon_sym_BSLASHsubimport] = ACTIONS(6377), - [anon_sym_BSLASHinputfrom] = ACTIONS(6377), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6377), - [anon_sym_BSLASHincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHcaption] = ACTIONS(6377), - [anon_sym_BSLASHcite] = ACTIONS(6377), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCite] = ACTIONS(6377), - [anon_sym_BSLASHnocite] = ACTIONS(6377), - [anon_sym_BSLASHcitet] = ACTIONS(6377), - [anon_sym_BSLASHcitep] = ACTIONS(6377), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteauthor] = ACTIONS(6377), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6377), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitetitle] = ACTIONS(6377), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteyear] = ACTIONS(6377), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitedate] = ACTIONS(6377), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteurl] = ACTIONS(6377), - [anon_sym_BSLASHfullcite] = ACTIONS(6377), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6377), - [anon_sym_BSLASHcitealt] = ACTIONS(6377), - [anon_sym_BSLASHcitealp] = ACTIONS(6377), - [anon_sym_BSLASHcitetext] = ACTIONS(6377), - [anon_sym_BSLASHparencite] = ACTIONS(6377), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHParencite] = ACTIONS(6377), - [anon_sym_BSLASHfootcite] = ACTIONS(6377), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6377), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6377), - [anon_sym_BSLASHtextcite] = ACTIONS(6377), - [anon_sym_BSLASHTextcite] = ACTIONS(6377), - [anon_sym_BSLASHsmartcite] = ACTIONS(6377), - [anon_sym_BSLASHSmartcite] = ACTIONS(6377), - [anon_sym_BSLASHsupercite] = ACTIONS(6377), - [anon_sym_BSLASHautocite] = ACTIONS(6377), - [anon_sym_BSLASHAutocite] = ACTIONS(6377), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHvolcite] = ACTIONS(6377), - [anon_sym_BSLASHVolcite] = ACTIONS(6377), - [anon_sym_BSLASHpvolcite] = ACTIONS(6377), - [anon_sym_BSLASHPvolcite] = ACTIONS(6377), - [anon_sym_BSLASHfvolcite] = ACTIONS(6377), - [anon_sym_BSLASHftvolcite] = ACTIONS(6377), - [anon_sym_BSLASHsvolcite] = ACTIONS(6377), - [anon_sym_BSLASHSvolcite] = ACTIONS(6377), - [anon_sym_BSLASHtvolcite] = ACTIONS(6377), - [anon_sym_BSLASHTvolcite] = ACTIONS(6377), - [anon_sym_BSLASHavolcite] = ACTIONS(6377), - [anon_sym_BSLASHAvolcite] = ACTIONS(6377), - [anon_sym_BSLASHnotecite] = ACTIONS(6377), - [anon_sym_BSLASHNotecite] = ACTIONS(6377), - [anon_sym_BSLASHpnotecite] = ACTIONS(6377), - [anon_sym_BSLASHPnotecite] = ACTIONS(6377), - [anon_sym_BSLASHfnotecite] = ACTIONS(6377), - [anon_sym_BSLASHlabel] = ACTIONS(6377), - [anon_sym_BSLASHref] = ACTIONS(6377), - [anon_sym_BSLASHeqref] = ACTIONS(6377), - [anon_sym_BSLASHvref] = ACTIONS(6377), - [anon_sym_BSLASHVref] = ACTIONS(6377), - [anon_sym_BSLASHautoref] = ACTIONS(6377), - [anon_sym_BSLASHpageref] = ACTIONS(6377), - [anon_sym_BSLASHcref] = ACTIONS(6377), - [anon_sym_BSLASHCref] = ACTIONS(6377), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnameCref] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHlabelcref] = ACTIONS(6377), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCrefrange] = ACTIONS(6377), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnewlabel] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6377), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6377), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6379), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHdef] = ACTIONS(6377), - [anon_sym_BSLASHlet] = ACTIONS(6377), - [anon_sym_BSLASHleft] = ACTIONS(6377), - [anon_sym_BSLASHbig] = ACTIONS(6377), - [anon_sym_BSLASHBig] = ACTIONS(6377), - [anon_sym_BSLASHbigg] = ACTIONS(6377), - [anon_sym_BSLASHBigg] = ACTIONS(6377), - [anon_sym_BSLASHbigl] = ACTIONS(6377), - [anon_sym_BSLASHBigl] = ACTIONS(6377), - [anon_sym_BSLASHbiggl] = ACTIONS(6377), - [anon_sym_BSLASHBiggl] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6377), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6377), - [anon_sym_BSLASHgls] = ACTIONS(6377), - [anon_sym_BSLASHGls] = ACTIONS(6377), - [anon_sym_BSLASHGLS] = ACTIONS(6377), - [anon_sym_BSLASHglspl] = ACTIONS(6377), - [anon_sym_BSLASHGlspl] = ACTIONS(6377), - [anon_sym_BSLASHGLSpl] = ACTIONS(6377), - [anon_sym_BSLASHglsdisp] = ACTIONS(6377), - [anon_sym_BSLASHglslink] = ACTIONS(6377), - [anon_sym_BSLASHglstext] = ACTIONS(6377), - [anon_sym_BSLASHGlstext] = ACTIONS(6377), - [anon_sym_BSLASHGLStext] = ACTIONS(6377), - [anon_sym_BSLASHglsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6377), - [anon_sym_BSLASHglsplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSplural] = ACTIONS(6377), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHglsname] = ACTIONS(6377), - [anon_sym_BSLASHGlsname] = ACTIONS(6377), - [anon_sym_BSLASHGLSname] = ACTIONS(6377), - [anon_sym_BSLASHglssymbol] = ACTIONS(6377), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6377), - [anon_sym_BSLASHglsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6377), - [anon_sym_BSLASHglsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6377), - [anon_sym_BSLASHglsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6377), - [anon_sym_BSLASHglsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6377), - [anon_sym_BSLASHglsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6377), - [anon_sym_BSLASHnewacronym] = ACTIONS(6377), - [anon_sym_BSLASHacrshort] = ACTIONS(6377), - [anon_sym_BSLASHAcrshort] = ACTIONS(6377), - [anon_sym_BSLASHACRshort] = ACTIONS(6377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6377), - [anon_sym_BSLASHacrlong] = ACTIONS(6377), - [anon_sym_BSLASHAcrlong] = ACTIONS(6377), - [anon_sym_BSLASHACRlong] = ACTIONS(6377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6377), - [anon_sym_BSLASHacrfull] = ACTIONS(6377), - [anon_sym_BSLASHAcrfull] = ACTIONS(6377), - [anon_sym_BSLASHACRfull] = ACTIONS(6377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6377), - [anon_sym_BSLASHacs] = ACTIONS(6377), - [anon_sym_BSLASHAcs] = ACTIONS(6377), - [anon_sym_BSLASHacsp] = ACTIONS(6377), - [anon_sym_BSLASHAcsp] = ACTIONS(6377), - [anon_sym_BSLASHacl] = ACTIONS(6377), - [anon_sym_BSLASHAcl] = ACTIONS(6377), - [anon_sym_BSLASHaclp] = ACTIONS(6377), - [anon_sym_BSLASHAclp] = ACTIONS(6377), - [anon_sym_BSLASHacf] = ACTIONS(6377), - [anon_sym_BSLASHAcf] = ACTIONS(6377), - [anon_sym_BSLASHacfp] = ACTIONS(6377), - [anon_sym_BSLASHAcfp] = ACTIONS(6377), - [anon_sym_BSLASHac] = ACTIONS(6377), - [anon_sym_BSLASHAc] = ACTIONS(6377), - [anon_sym_BSLASHacp] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6377), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6377), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6377), - [anon_sym_BSLASHcolor] = ACTIONS(6377), - [anon_sym_BSLASHcolorbox] = ACTIONS(6377), - [anon_sym_BSLASHtextcolor] = ACTIONS(6377), - [anon_sym_BSLASHpagecolor] = ACTIONS(6377), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6377), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6377), - [anon_sym_BSLASHtext] = ACTIONS(6377), - [anon_sym_BSLASHintertext] = ACTIONS(6377), - [anon_sym_shortintertext] = ACTIONS(6377), - }, - [1650] = { - [sym_command_name] = ACTIONS(6273), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6273), - [anon_sym_LBRACK] = ACTIONS(6275), - [anon_sym_RBRACK] = ACTIONS(6275), - [anon_sym_COMMA] = ACTIONS(6275), - [anon_sym_EQ] = ACTIONS(6275), - [anon_sym_LPAREN] = ACTIONS(6275), - [anon_sym_RPAREN] = ACTIONS(6275), - [anon_sym_LBRACE] = ACTIONS(6275), - [sym_word] = ACTIONS(6273), - [sym_placeholder] = ACTIONS(6275), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_SQUOTE] = ACTIONS(6273), - [anon_sym__] = ACTIONS(6275), - [anon_sym_CARET] = ACTIONS(6275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6275), - [anon_sym_DOLLAR] = ACTIONS(6273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6275), - [anon_sym_BSLASHbegin] = ACTIONS(6273), - [anon_sym_BSLASHtitle] = ACTIONS(6273), - [anon_sym_BSLASHauthor] = ACTIONS(6273), - [anon_sym_BSLASHusepackage] = ACTIONS(6273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6273), - [anon_sym_BSLASHinclude] = ACTIONS(6273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6273), - [anon_sym_BSLASHinput] = ACTIONS(6273), - [anon_sym_BSLASHsubfile] = ACTIONS(6273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6273), - [anon_sym_BSLASHbibliography] = ACTIONS(6273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6273), - [anon_sym_BSLASHincludesvg] = ACTIONS(6273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6273), - [anon_sym_BSLASHimport] = ACTIONS(6273), - [anon_sym_BSLASHsubimport] = ACTIONS(6273), - [anon_sym_BSLASHinputfrom] = ACTIONS(6273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6273), - [anon_sym_BSLASHincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHcaption] = ACTIONS(6273), - [anon_sym_BSLASHcite] = ACTIONS(6273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCite] = ACTIONS(6273), - [anon_sym_BSLASHnocite] = ACTIONS(6273), - [anon_sym_BSLASHcitet] = ACTIONS(6273), - [anon_sym_BSLASHcitep] = ACTIONS(6273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteauthor] = ACTIONS(6273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitetitle] = ACTIONS(6273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteyear] = ACTIONS(6273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitedate] = ACTIONS(6273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteurl] = ACTIONS(6273), - [anon_sym_BSLASHfullcite] = ACTIONS(6273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6273), - [anon_sym_BSLASHcitealt] = ACTIONS(6273), - [anon_sym_BSLASHcitealp] = ACTIONS(6273), - [anon_sym_BSLASHcitetext] = ACTIONS(6273), - [anon_sym_BSLASHparencite] = ACTIONS(6273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHParencite] = ACTIONS(6273), - [anon_sym_BSLASHfootcite] = ACTIONS(6273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6273), - [anon_sym_BSLASHtextcite] = ACTIONS(6273), - [anon_sym_BSLASHTextcite] = ACTIONS(6273), - [anon_sym_BSLASHsmartcite] = ACTIONS(6273), - [anon_sym_BSLASHSmartcite] = ACTIONS(6273), - [anon_sym_BSLASHsupercite] = ACTIONS(6273), - [anon_sym_BSLASHautocite] = ACTIONS(6273), - [anon_sym_BSLASHAutocite] = ACTIONS(6273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHvolcite] = ACTIONS(6273), - [anon_sym_BSLASHVolcite] = ACTIONS(6273), - [anon_sym_BSLASHpvolcite] = ACTIONS(6273), - [anon_sym_BSLASHPvolcite] = ACTIONS(6273), - [anon_sym_BSLASHfvolcite] = ACTIONS(6273), - [anon_sym_BSLASHftvolcite] = ACTIONS(6273), - [anon_sym_BSLASHsvolcite] = ACTIONS(6273), - [anon_sym_BSLASHSvolcite] = ACTIONS(6273), - [anon_sym_BSLASHtvolcite] = ACTIONS(6273), - [anon_sym_BSLASHTvolcite] = ACTIONS(6273), - [anon_sym_BSLASHavolcite] = ACTIONS(6273), - [anon_sym_BSLASHAvolcite] = ACTIONS(6273), - [anon_sym_BSLASHnotecite] = ACTIONS(6273), - [anon_sym_BSLASHNotecite] = ACTIONS(6273), - [anon_sym_BSLASHpnotecite] = ACTIONS(6273), - [anon_sym_BSLASHPnotecite] = ACTIONS(6273), - [anon_sym_BSLASHfnotecite] = ACTIONS(6273), - [anon_sym_BSLASHlabel] = ACTIONS(6273), - [anon_sym_BSLASHref] = ACTIONS(6273), - [anon_sym_BSLASHeqref] = ACTIONS(6273), - [anon_sym_BSLASHvref] = ACTIONS(6273), - [anon_sym_BSLASHVref] = ACTIONS(6273), - [anon_sym_BSLASHautoref] = ACTIONS(6273), - [anon_sym_BSLASHpageref] = ACTIONS(6273), - [anon_sym_BSLASHcref] = ACTIONS(6273), - [anon_sym_BSLASHCref] = ACTIONS(6273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnameCref] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHlabelcref] = ACTIONS(6273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCrefrange] = ACTIONS(6273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnewlabel] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6275), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHdef] = ACTIONS(6273), - [anon_sym_BSLASHlet] = ACTIONS(6273), - [anon_sym_BSLASHleft] = ACTIONS(6273), - [anon_sym_BSLASHbig] = ACTIONS(6273), - [anon_sym_BSLASHBig] = ACTIONS(6273), - [anon_sym_BSLASHbigg] = ACTIONS(6273), - [anon_sym_BSLASHBigg] = ACTIONS(6273), - [anon_sym_BSLASHbigl] = ACTIONS(6273), - [anon_sym_BSLASHBigl] = ACTIONS(6273), - [anon_sym_BSLASHbiggl] = ACTIONS(6273), - [anon_sym_BSLASHBiggl] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6273), - [anon_sym_BSLASHgls] = ACTIONS(6273), - [anon_sym_BSLASHGls] = ACTIONS(6273), - [anon_sym_BSLASHGLS] = ACTIONS(6273), - [anon_sym_BSLASHglspl] = ACTIONS(6273), - [anon_sym_BSLASHGlspl] = ACTIONS(6273), - [anon_sym_BSLASHGLSpl] = ACTIONS(6273), - [anon_sym_BSLASHglsdisp] = ACTIONS(6273), - [anon_sym_BSLASHglslink] = ACTIONS(6273), - [anon_sym_BSLASHglstext] = ACTIONS(6273), - [anon_sym_BSLASHGlstext] = ACTIONS(6273), - [anon_sym_BSLASHGLStext] = ACTIONS(6273), - [anon_sym_BSLASHglsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6273), - [anon_sym_BSLASHglsplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSplural] = ACTIONS(6273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHglsname] = ACTIONS(6273), - [anon_sym_BSLASHGlsname] = ACTIONS(6273), - [anon_sym_BSLASHGLSname] = ACTIONS(6273), - [anon_sym_BSLASHglssymbol] = ACTIONS(6273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6273), - [anon_sym_BSLASHglsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6273), - [anon_sym_BSLASHglsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6273), - [anon_sym_BSLASHglsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6273), - [anon_sym_BSLASHglsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6273), - [anon_sym_BSLASHglsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6273), - [anon_sym_BSLASHnewacronym] = ACTIONS(6273), - [anon_sym_BSLASHacrshort] = ACTIONS(6273), - [anon_sym_BSLASHAcrshort] = ACTIONS(6273), - [anon_sym_BSLASHACRshort] = ACTIONS(6273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6273), - [anon_sym_BSLASHacrlong] = ACTIONS(6273), - [anon_sym_BSLASHAcrlong] = ACTIONS(6273), - [anon_sym_BSLASHACRlong] = ACTIONS(6273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6273), - [anon_sym_BSLASHacrfull] = ACTIONS(6273), - [anon_sym_BSLASHAcrfull] = ACTIONS(6273), - [anon_sym_BSLASHACRfull] = ACTIONS(6273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6273), - [anon_sym_BSLASHacs] = ACTIONS(6273), - [anon_sym_BSLASHAcs] = ACTIONS(6273), - [anon_sym_BSLASHacsp] = ACTIONS(6273), - [anon_sym_BSLASHAcsp] = ACTIONS(6273), - [anon_sym_BSLASHacl] = ACTIONS(6273), - [anon_sym_BSLASHAcl] = ACTIONS(6273), - [anon_sym_BSLASHaclp] = ACTIONS(6273), - [anon_sym_BSLASHAclp] = ACTIONS(6273), - [anon_sym_BSLASHacf] = ACTIONS(6273), - [anon_sym_BSLASHAcf] = ACTIONS(6273), - [anon_sym_BSLASHacfp] = ACTIONS(6273), - [anon_sym_BSLASHAcfp] = ACTIONS(6273), - [anon_sym_BSLASHac] = ACTIONS(6273), - [anon_sym_BSLASHAc] = ACTIONS(6273), - [anon_sym_BSLASHacp] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6273), - [anon_sym_BSLASHcolor] = ACTIONS(6273), - [anon_sym_BSLASHcolorbox] = ACTIONS(6273), - [anon_sym_BSLASHtextcolor] = ACTIONS(6273), - [anon_sym_BSLASHpagecolor] = ACTIONS(6273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6273), - [anon_sym_BSLASHtext] = ACTIONS(6273), - [anon_sym_BSLASHintertext] = ACTIONS(6273), - [anon_sym_shortintertext] = ACTIONS(6273), - }, - [1651] = { - [sym_command_name] = ACTIONS(6373), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6375), - [anon_sym_RBRACK] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_EQ] = ACTIONS(6375), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_RPAREN] = ACTIONS(6375), - [anon_sym_LBRACE] = ACTIONS(6375), - [anon_sym_RBRACE] = ACTIONS(6375), - [sym_word] = ACTIONS(6373), - [sym_placeholder] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6373), - [anon_sym_GT] = ACTIONS(6373), - [anon_sym_BANG] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_SQUOTE] = ACTIONS(6373), - [anon_sym__] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6375), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6375), - [anon_sym_DOLLAR] = ACTIONS(6373), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6375), - [anon_sym_BSLASHtitle] = ACTIONS(6373), - [anon_sym_BSLASHauthor] = ACTIONS(6373), - [anon_sym_BSLASHusepackage] = ACTIONS(6373), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6373), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6373), - [anon_sym_BSLASHinclude] = ACTIONS(6373), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6373), - [anon_sym_BSLASHinput] = ACTIONS(6373), - [anon_sym_BSLASHsubfile] = ACTIONS(6373), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6373), - [anon_sym_BSLASHbibliography] = ACTIONS(6373), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6373), - [anon_sym_BSLASHincludesvg] = ACTIONS(6373), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6373), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6373), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6373), - [anon_sym_BSLASHimport] = ACTIONS(6373), - [anon_sym_BSLASHsubimport] = ACTIONS(6373), - [anon_sym_BSLASHinputfrom] = ACTIONS(6373), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6373), - [anon_sym_BSLASHincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHcaption] = ACTIONS(6373), - [anon_sym_BSLASHcite] = ACTIONS(6373), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCite] = ACTIONS(6373), - [anon_sym_BSLASHnocite] = ACTIONS(6373), - [anon_sym_BSLASHcitet] = ACTIONS(6373), - [anon_sym_BSLASHcitep] = ACTIONS(6373), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteauthor] = ACTIONS(6373), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6373), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitetitle] = ACTIONS(6373), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteyear] = ACTIONS(6373), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitedate] = ACTIONS(6373), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteurl] = ACTIONS(6373), - [anon_sym_BSLASHfullcite] = ACTIONS(6373), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6373), - [anon_sym_BSLASHcitealt] = ACTIONS(6373), - [anon_sym_BSLASHcitealp] = ACTIONS(6373), - [anon_sym_BSLASHcitetext] = ACTIONS(6373), - [anon_sym_BSLASHparencite] = ACTIONS(6373), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHParencite] = ACTIONS(6373), - [anon_sym_BSLASHfootcite] = ACTIONS(6373), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6373), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6373), - [anon_sym_BSLASHtextcite] = ACTIONS(6373), - [anon_sym_BSLASHTextcite] = ACTIONS(6373), - [anon_sym_BSLASHsmartcite] = ACTIONS(6373), - [anon_sym_BSLASHSmartcite] = ACTIONS(6373), - [anon_sym_BSLASHsupercite] = ACTIONS(6373), - [anon_sym_BSLASHautocite] = ACTIONS(6373), - [anon_sym_BSLASHAutocite] = ACTIONS(6373), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHvolcite] = ACTIONS(6373), - [anon_sym_BSLASHVolcite] = ACTIONS(6373), - [anon_sym_BSLASHpvolcite] = ACTIONS(6373), - [anon_sym_BSLASHPvolcite] = ACTIONS(6373), - [anon_sym_BSLASHfvolcite] = ACTIONS(6373), - [anon_sym_BSLASHftvolcite] = ACTIONS(6373), - [anon_sym_BSLASHsvolcite] = ACTIONS(6373), - [anon_sym_BSLASHSvolcite] = ACTIONS(6373), - [anon_sym_BSLASHtvolcite] = ACTIONS(6373), - [anon_sym_BSLASHTvolcite] = ACTIONS(6373), - [anon_sym_BSLASHavolcite] = ACTIONS(6373), - [anon_sym_BSLASHAvolcite] = ACTIONS(6373), - [anon_sym_BSLASHnotecite] = ACTIONS(6373), - [anon_sym_BSLASHNotecite] = ACTIONS(6373), - [anon_sym_BSLASHpnotecite] = ACTIONS(6373), - [anon_sym_BSLASHPnotecite] = ACTIONS(6373), - [anon_sym_BSLASHfnotecite] = ACTIONS(6373), - [anon_sym_BSLASHlabel] = ACTIONS(6373), - [anon_sym_BSLASHref] = ACTIONS(6373), - [anon_sym_BSLASHeqref] = ACTIONS(6373), - [anon_sym_BSLASHvref] = ACTIONS(6373), - [anon_sym_BSLASHVref] = ACTIONS(6373), - [anon_sym_BSLASHautoref] = ACTIONS(6373), - [anon_sym_BSLASHpageref] = ACTIONS(6373), - [anon_sym_BSLASHcref] = ACTIONS(6373), - [anon_sym_BSLASHCref] = ACTIONS(6373), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnameCref] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHlabelcref] = ACTIONS(6373), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCrefrange] = ACTIONS(6373), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnewlabel] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6373), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6373), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6375), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHdef] = ACTIONS(6373), - [anon_sym_BSLASHlet] = ACTIONS(6373), - [anon_sym_BSLASHleft] = ACTIONS(6373), - [anon_sym_BSLASHbig] = ACTIONS(6373), - [anon_sym_BSLASHBig] = ACTIONS(6373), - [anon_sym_BSLASHbigg] = ACTIONS(6373), - [anon_sym_BSLASHBigg] = ACTIONS(6373), - [anon_sym_BSLASHbigl] = ACTIONS(6373), - [anon_sym_BSLASHBigl] = ACTIONS(6373), - [anon_sym_BSLASHbiggl] = ACTIONS(6373), - [anon_sym_BSLASHBiggl] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6373), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6373), - [anon_sym_BSLASHgls] = ACTIONS(6373), - [anon_sym_BSLASHGls] = ACTIONS(6373), - [anon_sym_BSLASHGLS] = ACTIONS(6373), - [anon_sym_BSLASHglspl] = ACTIONS(6373), - [anon_sym_BSLASHGlspl] = ACTIONS(6373), - [anon_sym_BSLASHGLSpl] = ACTIONS(6373), - [anon_sym_BSLASHglsdisp] = ACTIONS(6373), - [anon_sym_BSLASHglslink] = ACTIONS(6373), - [anon_sym_BSLASHglstext] = ACTIONS(6373), - [anon_sym_BSLASHGlstext] = ACTIONS(6373), - [anon_sym_BSLASHGLStext] = ACTIONS(6373), - [anon_sym_BSLASHglsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6373), - [anon_sym_BSLASHglsplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSplural] = ACTIONS(6373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHglsname] = ACTIONS(6373), - [anon_sym_BSLASHGlsname] = ACTIONS(6373), - [anon_sym_BSLASHGLSname] = ACTIONS(6373), - [anon_sym_BSLASHglssymbol] = ACTIONS(6373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6373), - [anon_sym_BSLASHglsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6373), - [anon_sym_BSLASHglsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6373), - [anon_sym_BSLASHglsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6373), - [anon_sym_BSLASHglsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6373), - [anon_sym_BSLASHglsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6373), - [anon_sym_BSLASHnewacronym] = ACTIONS(6373), - [anon_sym_BSLASHacrshort] = ACTIONS(6373), - [anon_sym_BSLASHAcrshort] = ACTIONS(6373), - [anon_sym_BSLASHACRshort] = ACTIONS(6373), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6373), - [anon_sym_BSLASHacrlong] = ACTIONS(6373), - [anon_sym_BSLASHAcrlong] = ACTIONS(6373), - [anon_sym_BSLASHACRlong] = ACTIONS(6373), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6373), - [anon_sym_BSLASHacrfull] = ACTIONS(6373), - [anon_sym_BSLASHAcrfull] = ACTIONS(6373), - [anon_sym_BSLASHACRfull] = ACTIONS(6373), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6373), - [anon_sym_BSLASHacs] = ACTIONS(6373), - [anon_sym_BSLASHAcs] = ACTIONS(6373), - [anon_sym_BSLASHacsp] = ACTIONS(6373), - [anon_sym_BSLASHAcsp] = ACTIONS(6373), - [anon_sym_BSLASHacl] = ACTIONS(6373), - [anon_sym_BSLASHAcl] = ACTIONS(6373), - [anon_sym_BSLASHaclp] = ACTIONS(6373), - [anon_sym_BSLASHAclp] = ACTIONS(6373), - [anon_sym_BSLASHacf] = ACTIONS(6373), - [anon_sym_BSLASHAcf] = ACTIONS(6373), - [anon_sym_BSLASHacfp] = ACTIONS(6373), - [anon_sym_BSLASHAcfp] = ACTIONS(6373), - [anon_sym_BSLASHac] = ACTIONS(6373), - [anon_sym_BSLASHAc] = ACTIONS(6373), - [anon_sym_BSLASHacp] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6373), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6373), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6373), - [anon_sym_BSLASHcolor] = ACTIONS(6373), - [anon_sym_BSLASHcolorbox] = ACTIONS(6373), - [anon_sym_BSLASHtextcolor] = ACTIONS(6373), - [anon_sym_BSLASHpagecolor] = ACTIONS(6373), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6373), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6373), - [anon_sym_BSLASHtext] = ACTIONS(6373), - [anon_sym_BSLASHintertext] = ACTIONS(6373), - [anon_sym_shortintertext] = ACTIONS(6373), - }, - [1652] = { - [sym_command_name] = ACTIONS(6241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6241), - [anon_sym_LBRACK] = ACTIONS(6243), - [anon_sym_RBRACK] = ACTIONS(6243), - [anon_sym_COMMA] = ACTIONS(6243), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_LPAREN] = ACTIONS(6243), - [anon_sym_RPAREN] = ACTIONS(6243), - [anon_sym_LBRACE] = ACTIONS(6243), - [anon_sym_RBRACE] = ACTIONS(6243), - [sym_word] = ACTIONS(6241), - [sym_placeholder] = ACTIONS(6243), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6243), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(6241), - [anon_sym_GT] = ACTIONS(6241), - [anon_sym_BANG] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_SQUOTE] = ACTIONS(6241), - [anon_sym__] = ACTIONS(6243), - [anon_sym_CARET] = ACTIONS(6243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), - [anon_sym_DOLLAR] = ACTIONS(6241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), - [anon_sym_BSLASHtitle] = ACTIONS(6241), - [anon_sym_BSLASHauthor] = ACTIONS(6241), - [anon_sym_BSLASHusepackage] = ACTIONS(6241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), - [anon_sym_BSLASHinclude] = ACTIONS(6241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), - [anon_sym_BSLASHinput] = ACTIONS(6241), - [anon_sym_BSLASHsubfile] = ACTIONS(6241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), - [anon_sym_BSLASHbibliography] = ACTIONS(6241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), - [anon_sym_BSLASHincludesvg] = ACTIONS(6241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), - [anon_sym_BSLASHimport] = ACTIONS(6241), - [anon_sym_BSLASHsubimport] = ACTIONS(6241), - [anon_sym_BSLASHinputfrom] = ACTIONS(6241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), - [anon_sym_BSLASHincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHcaption] = ACTIONS(6241), - [anon_sym_BSLASHcite] = ACTIONS(6241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCite] = ACTIONS(6241), - [anon_sym_BSLASHnocite] = ACTIONS(6241), - [anon_sym_BSLASHcitet] = ACTIONS(6241), - [anon_sym_BSLASHcitep] = ACTIONS(6241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteauthor] = ACTIONS(6241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitetitle] = ACTIONS(6241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteyear] = ACTIONS(6241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitedate] = ACTIONS(6241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteurl] = ACTIONS(6241), - [anon_sym_BSLASHfullcite] = ACTIONS(6241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), - [anon_sym_BSLASHcitealt] = ACTIONS(6241), - [anon_sym_BSLASHcitealp] = ACTIONS(6241), - [anon_sym_BSLASHcitetext] = ACTIONS(6241), - [anon_sym_BSLASHparencite] = ACTIONS(6241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHParencite] = ACTIONS(6241), - [anon_sym_BSLASHfootcite] = ACTIONS(6241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), - [anon_sym_BSLASHtextcite] = ACTIONS(6241), - [anon_sym_BSLASHTextcite] = ACTIONS(6241), - [anon_sym_BSLASHsmartcite] = ACTIONS(6241), - [anon_sym_BSLASHSmartcite] = ACTIONS(6241), - [anon_sym_BSLASHsupercite] = ACTIONS(6241), - [anon_sym_BSLASHautocite] = ACTIONS(6241), - [anon_sym_BSLASHAutocite] = ACTIONS(6241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHvolcite] = ACTIONS(6241), - [anon_sym_BSLASHVolcite] = ACTIONS(6241), - [anon_sym_BSLASHpvolcite] = ACTIONS(6241), - [anon_sym_BSLASHPvolcite] = ACTIONS(6241), - [anon_sym_BSLASHfvolcite] = ACTIONS(6241), - [anon_sym_BSLASHftvolcite] = ACTIONS(6241), - [anon_sym_BSLASHsvolcite] = ACTIONS(6241), - [anon_sym_BSLASHSvolcite] = ACTIONS(6241), - [anon_sym_BSLASHtvolcite] = ACTIONS(6241), - [anon_sym_BSLASHTvolcite] = ACTIONS(6241), - [anon_sym_BSLASHavolcite] = ACTIONS(6241), - [anon_sym_BSLASHAvolcite] = ACTIONS(6241), - [anon_sym_BSLASHnotecite] = ACTIONS(6241), - [anon_sym_BSLASHNotecite] = ACTIONS(6241), - [anon_sym_BSLASHpnotecite] = ACTIONS(6241), - [anon_sym_BSLASHPnotecite] = ACTIONS(6241), - [anon_sym_BSLASHfnotecite] = ACTIONS(6241), - [anon_sym_BSLASHlabel] = ACTIONS(6241), - [anon_sym_BSLASHref] = ACTIONS(6241), - [anon_sym_BSLASHeqref] = ACTIONS(6241), - [anon_sym_BSLASHvref] = ACTIONS(6241), - [anon_sym_BSLASHVref] = ACTIONS(6241), - [anon_sym_BSLASHautoref] = ACTIONS(6241), - [anon_sym_BSLASHpageref] = ACTIONS(6241), - [anon_sym_BSLASHcref] = ACTIONS(6241), - [anon_sym_BSLASHCref] = ACTIONS(6241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnameCref] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHlabelcref] = ACTIONS(6241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCrefrange] = ACTIONS(6241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnewlabel] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHdef] = ACTIONS(6241), - [anon_sym_BSLASHlet] = ACTIONS(6241), - [anon_sym_BSLASHleft] = ACTIONS(6241), - [anon_sym_BSLASHbig] = ACTIONS(6241), - [anon_sym_BSLASHBig] = ACTIONS(6241), - [anon_sym_BSLASHbigg] = ACTIONS(6241), - [anon_sym_BSLASHBigg] = ACTIONS(6241), - [anon_sym_BSLASHbigl] = ACTIONS(6241), - [anon_sym_BSLASHBigl] = ACTIONS(6241), - [anon_sym_BSLASHbiggl] = ACTIONS(6241), - [anon_sym_BSLASHBiggl] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), - [anon_sym_BSLASHgls] = ACTIONS(6241), - [anon_sym_BSLASHGls] = ACTIONS(6241), - [anon_sym_BSLASHGLS] = ACTIONS(6241), - [anon_sym_BSLASHglspl] = ACTIONS(6241), - [anon_sym_BSLASHGlspl] = ACTIONS(6241), - [anon_sym_BSLASHGLSpl] = ACTIONS(6241), - [anon_sym_BSLASHglsdisp] = ACTIONS(6241), - [anon_sym_BSLASHglslink] = ACTIONS(6241), - [anon_sym_BSLASHglstext] = ACTIONS(6241), - [anon_sym_BSLASHGlstext] = ACTIONS(6241), - [anon_sym_BSLASHGLStext] = ACTIONS(6241), - [anon_sym_BSLASHglsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), - [anon_sym_BSLASHglsplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSplural] = ACTIONS(6241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHglsname] = ACTIONS(6241), - [anon_sym_BSLASHGlsname] = ACTIONS(6241), - [anon_sym_BSLASHGLSname] = ACTIONS(6241), - [anon_sym_BSLASHglssymbol] = ACTIONS(6241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), - [anon_sym_BSLASHglsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), - [anon_sym_BSLASHglsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), - [anon_sym_BSLASHglsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), - [anon_sym_BSLASHglsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), - [anon_sym_BSLASHglsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), - [anon_sym_BSLASHnewacronym] = ACTIONS(6241), - [anon_sym_BSLASHacrshort] = ACTIONS(6241), - [anon_sym_BSLASHAcrshort] = ACTIONS(6241), - [anon_sym_BSLASHACRshort] = ACTIONS(6241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), - [anon_sym_BSLASHacrlong] = ACTIONS(6241), - [anon_sym_BSLASHAcrlong] = ACTIONS(6241), - [anon_sym_BSLASHACRlong] = ACTIONS(6241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), - [anon_sym_BSLASHacrfull] = ACTIONS(6241), - [anon_sym_BSLASHAcrfull] = ACTIONS(6241), - [anon_sym_BSLASHACRfull] = ACTIONS(6241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), - [anon_sym_BSLASHacs] = ACTIONS(6241), - [anon_sym_BSLASHAcs] = ACTIONS(6241), - [anon_sym_BSLASHacsp] = ACTIONS(6241), - [anon_sym_BSLASHAcsp] = ACTIONS(6241), - [anon_sym_BSLASHacl] = ACTIONS(6241), - [anon_sym_BSLASHAcl] = ACTIONS(6241), - [anon_sym_BSLASHaclp] = ACTIONS(6241), - [anon_sym_BSLASHAclp] = ACTIONS(6241), - [anon_sym_BSLASHacf] = ACTIONS(6241), - [anon_sym_BSLASHAcf] = ACTIONS(6241), - [anon_sym_BSLASHacfp] = ACTIONS(6241), - [anon_sym_BSLASHAcfp] = ACTIONS(6241), - [anon_sym_BSLASHac] = ACTIONS(6241), - [anon_sym_BSLASHAc] = ACTIONS(6241), - [anon_sym_BSLASHacp] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), - [anon_sym_BSLASHcolor] = ACTIONS(6241), - [anon_sym_BSLASHcolorbox] = ACTIONS(6241), - [anon_sym_BSLASHtextcolor] = ACTIONS(6241), - [anon_sym_BSLASHpagecolor] = ACTIONS(6241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), - [anon_sym_BSLASHtext] = ACTIONS(6241), - [anon_sym_BSLASHintertext] = ACTIONS(6241), - [anon_sym_shortintertext] = ACTIONS(6241), - }, - [1653] = { - [sym_command_name] = ACTIONS(6369), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6371), - [anon_sym_RBRACK] = ACTIONS(6371), - [anon_sym_COMMA] = ACTIONS(6371), - [anon_sym_EQ] = ACTIONS(6371), - [anon_sym_LPAREN] = ACTIONS(6371), - [anon_sym_RPAREN] = ACTIONS(6371), - [anon_sym_LBRACE] = ACTIONS(6371), - [anon_sym_RBRACE] = ACTIONS(6371), - [sym_word] = ACTIONS(6369), - [sym_placeholder] = ACTIONS(6371), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6371), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_LT] = ACTIONS(6369), - [anon_sym_GT] = ACTIONS(6369), - [anon_sym_BANG] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_SQUOTE] = ACTIONS(6369), - [anon_sym__] = ACTIONS(6371), - [anon_sym_CARET] = ACTIONS(6371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6371), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6371), - [anon_sym_DOLLAR] = ACTIONS(6369), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6371), - [anon_sym_BSLASHtitle] = ACTIONS(6369), - [anon_sym_BSLASHauthor] = ACTIONS(6369), - [anon_sym_BSLASHusepackage] = ACTIONS(6369), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6369), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6369), - [anon_sym_BSLASHinclude] = ACTIONS(6369), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6369), - [anon_sym_BSLASHinput] = ACTIONS(6369), - [anon_sym_BSLASHsubfile] = ACTIONS(6369), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6369), - [anon_sym_BSLASHbibliography] = ACTIONS(6369), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6369), - [anon_sym_BSLASHincludesvg] = ACTIONS(6369), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6369), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6369), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6369), - [anon_sym_BSLASHimport] = ACTIONS(6369), - [anon_sym_BSLASHsubimport] = ACTIONS(6369), - [anon_sym_BSLASHinputfrom] = ACTIONS(6369), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6369), - [anon_sym_BSLASHincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHcaption] = ACTIONS(6369), - [anon_sym_BSLASHcite] = ACTIONS(6369), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCite] = ACTIONS(6369), - [anon_sym_BSLASHnocite] = ACTIONS(6369), - [anon_sym_BSLASHcitet] = ACTIONS(6369), - [anon_sym_BSLASHcitep] = ACTIONS(6369), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteauthor] = ACTIONS(6369), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6369), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitetitle] = ACTIONS(6369), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteyear] = ACTIONS(6369), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitedate] = ACTIONS(6369), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteurl] = ACTIONS(6369), - [anon_sym_BSLASHfullcite] = ACTIONS(6369), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6369), - [anon_sym_BSLASHcitealt] = ACTIONS(6369), - [anon_sym_BSLASHcitealp] = ACTIONS(6369), - [anon_sym_BSLASHcitetext] = ACTIONS(6369), - [anon_sym_BSLASHparencite] = ACTIONS(6369), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHParencite] = ACTIONS(6369), - [anon_sym_BSLASHfootcite] = ACTIONS(6369), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6369), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6369), - [anon_sym_BSLASHtextcite] = ACTIONS(6369), - [anon_sym_BSLASHTextcite] = ACTIONS(6369), - [anon_sym_BSLASHsmartcite] = ACTIONS(6369), - [anon_sym_BSLASHSmartcite] = ACTIONS(6369), - [anon_sym_BSLASHsupercite] = ACTIONS(6369), - [anon_sym_BSLASHautocite] = ACTIONS(6369), - [anon_sym_BSLASHAutocite] = ACTIONS(6369), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHvolcite] = ACTIONS(6369), - [anon_sym_BSLASHVolcite] = ACTIONS(6369), - [anon_sym_BSLASHpvolcite] = ACTIONS(6369), - [anon_sym_BSLASHPvolcite] = ACTIONS(6369), - [anon_sym_BSLASHfvolcite] = ACTIONS(6369), - [anon_sym_BSLASHftvolcite] = ACTIONS(6369), - [anon_sym_BSLASHsvolcite] = ACTIONS(6369), - [anon_sym_BSLASHSvolcite] = ACTIONS(6369), - [anon_sym_BSLASHtvolcite] = ACTIONS(6369), - [anon_sym_BSLASHTvolcite] = ACTIONS(6369), - [anon_sym_BSLASHavolcite] = ACTIONS(6369), - [anon_sym_BSLASHAvolcite] = ACTIONS(6369), - [anon_sym_BSLASHnotecite] = ACTIONS(6369), - [anon_sym_BSLASHNotecite] = ACTIONS(6369), - [anon_sym_BSLASHpnotecite] = ACTIONS(6369), - [anon_sym_BSLASHPnotecite] = ACTIONS(6369), - [anon_sym_BSLASHfnotecite] = ACTIONS(6369), - [anon_sym_BSLASHlabel] = ACTIONS(6369), - [anon_sym_BSLASHref] = ACTIONS(6369), - [anon_sym_BSLASHeqref] = ACTIONS(6369), - [anon_sym_BSLASHvref] = ACTIONS(6369), - [anon_sym_BSLASHVref] = ACTIONS(6369), - [anon_sym_BSLASHautoref] = ACTIONS(6369), - [anon_sym_BSLASHpageref] = ACTIONS(6369), - [anon_sym_BSLASHcref] = ACTIONS(6369), - [anon_sym_BSLASHCref] = ACTIONS(6369), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnameCref] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHlabelcref] = ACTIONS(6369), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCrefrange] = ACTIONS(6369), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnewlabel] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6369), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6369), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6371), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHdef] = ACTIONS(6369), - [anon_sym_BSLASHlet] = ACTIONS(6369), - [anon_sym_BSLASHleft] = ACTIONS(6369), - [anon_sym_BSLASHbig] = ACTIONS(6369), - [anon_sym_BSLASHBig] = ACTIONS(6369), - [anon_sym_BSLASHbigg] = ACTIONS(6369), - [anon_sym_BSLASHBigg] = ACTIONS(6369), - [anon_sym_BSLASHbigl] = ACTIONS(6369), - [anon_sym_BSLASHBigl] = ACTIONS(6369), - [anon_sym_BSLASHbiggl] = ACTIONS(6369), - [anon_sym_BSLASHBiggl] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6369), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6369), - [anon_sym_BSLASHgls] = ACTIONS(6369), - [anon_sym_BSLASHGls] = ACTIONS(6369), - [anon_sym_BSLASHGLS] = ACTIONS(6369), - [anon_sym_BSLASHglspl] = ACTIONS(6369), - [anon_sym_BSLASHGlspl] = ACTIONS(6369), - [anon_sym_BSLASHGLSpl] = ACTIONS(6369), - [anon_sym_BSLASHglsdisp] = ACTIONS(6369), - [anon_sym_BSLASHglslink] = ACTIONS(6369), - [anon_sym_BSLASHglstext] = ACTIONS(6369), - [anon_sym_BSLASHGlstext] = ACTIONS(6369), - [anon_sym_BSLASHGLStext] = ACTIONS(6369), - [anon_sym_BSLASHglsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6369), - [anon_sym_BSLASHglsplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSplural] = ACTIONS(6369), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHglsname] = ACTIONS(6369), - [anon_sym_BSLASHGlsname] = ACTIONS(6369), - [anon_sym_BSLASHGLSname] = ACTIONS(6369), - [anon_sym_BSLASHglssymbol] = ACTIONS(6369), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6369), - [anon_sym_BSLASHglsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6369), - [anon_sym_BSLASHglsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6369), - [anon_sym_BSLASHglsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6369), - [anon_sym_BSLASHglsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6369), - [anon_sym_BSLASHglsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6369), - [anon_sym_BSLASHnewacronym] = ACTIONS(6369), - [anon_sym_BSLASHacrshort] = ACTIONS(6369), - [anon_sym_BSLASHAcrshort] = ACTIONS(6369), - [anon_sym_BSLASHACRshort] = ACTIONS(6369), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6369), - [anon_sym_BSLASHacrlong] = ACTIONS(6369), - [anon_sym_BSLASHAcrlong] = ACTIONS(6369), - [anon_sym_BSLASHACRlong] = ACTIONS(6369), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6369), - [anon_sym_BSLASHacrfull] = ACTIONS(6369), - [anon_sym_BSLASHAcrfull] = ACTIONS(6369), - [anon_sym_BSLASHACRfull] = ACTIONS(6369), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6369), - [anon_sym_BSLASHacs] = ACTIONS(6369), - [anon_sym_BSLASHAcs] = ACTIONS(6369), - [anon_sym_BSLASHacsp] = ACTIONS(6369), - [anon_sym_BSLASHAcsp] = ACTIONS(6369), - [anon_sym_BSLASHacl] = ACTIONS(6369), - [anon_sym_BSLASHAcl] = ACTIONS(6369), - [anon_sym_BSLASHaclp] = ACTIONS(6369), - [anon_sym_BSLASHAclp] = ACTIONS(6369), - [anon_sym_BSLASHacf] = ACTIONS(6369), - [anon_sym_BSLASHAcf] = ACTIONS(6369), - [anon_sym_BSLASHacfp] = ACTIONS(6369), - [anon_sym_BSLASHAcfp] = ACTIONS(6369), - [anon_sym_BSLASHac] = ACTIONS(6369), - [anon_sym_BSLASHAc] = ACTIONS(6369), - [anon_sym_BSLASHacp] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6369), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6369), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6369), - [anon_sym_BSLASHcolor] = ACTIONS(6369), - [anon_sym_BSLASHcolorbox] = ACTIONS(6369), - [anon_sym_BSLASHtextcolor] = ACTIONS(6369), - [anon_sym_BSLASHpagecolor] = ACTIONS(6369), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6369), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6369), - [anon_sym_BSLASHtext] = ACTIONS(6369), - [anon_sym_BSLASHintertext] = ACTIONS(6369), - [anon_sym_shortintertext] = ACTIONS(6369), - }, - [1654] = { - [sym_command_name] = ACTIONS(6029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6029), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_EQ] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_LBRACE] = ACTIONS(6031), - [sym_word] = ACTIONS(6029), - [sym_placeholder] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6031), - [anon_sym_DASH] = ACTIONS(6031), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6029), - [anon_sym_GT] = ACTIONS(6029), - [anon_sym_BANG] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_COLON] = ACTIONS(6029), - [anon_sym_SQUOTE] = ACTIONS(6029), - [anon_sym__] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), - [anon_sym_BSLASHbegin] = ACTIONS(6029), - [anon_sym_BSLASHtitle] = ACTIONS(6029), - [anon_sym_BSLASHauthor] = ACTIONS(6029), - [anon_sym_BSLASHusepackage] = ACTIONS(6029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), - [anon_sym_BSLASHinclude] = ACTIONS(6029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), - [anon_sym_BSLASHinput] = ACTIONS(6029), - [anon_sym_BSLASHsubfile] = ACTIONS(6029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), - [anon_sym_BSLASHbibliography] = ACTIONS(6029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), - [anon_sym_BSLASHincludesvg] = ACTIONS(6029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), - [anon_sym_BSLASHimport] = ACTIONS(6029), - [anon_sym_BSLASHsubimport] = ACTIONS(6029), - [anon_sym_BSLASHinputfrom] = ACTIONS(6029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), - [anon_sym_BSLASHincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHcaption] = ACTIONS(6029), - [anon_sym_BSLASHcite] = ACTIONS(6029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCite] = ACTIONS(6029), - [anon_sym_BSLASHnocite] = ACTIONS(6029), - [anon_sym_BSLASHcitet] = ACTIONS(6029), - [anon_sym_BSLASHcitep] = ACTIONS(6029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteauthor] = ACTIONS(6029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitetitle] = ACTIONS(6029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteyear] = ACTIONS(6029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitedate] = ACTIONS(6029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteurl] = ACTIONS(6029), - [anon_sym_BSLASHfullcite] = ACTIONS(6029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), - [anon_sym_BSLASHcitealt] = ACTIONS(6029), - [anon_sym_BSLASHcitealp] = ACTIONS(6029), - [anon_sym_BSLASHcitetext] = ACTIONS(6029), - [anon_sym_BSLASHparencite] = ACTIONS(6029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHParencite] = ACTIONS(6029), - [anon_sym_BSLASHfootcite] = ACTIONS(6029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), - [anon_sym_BSLASHtextcite] = ACTIONS(6029), - [anon_sym_BSLASHTextcite] = ACTIONS(6029), - [anon_sym_BSLASHsmartcite] = ACTIONS(6029), - [anon_sym_BSLASHSmartcite] = ACTIONS(6029), - [anon_sym_BSLASHsupercite] = ACTIONS(6029), - [anon_sym_BSLASHautocite] = ACTIONS(6029), - [anon_sym_BSLASHAutocite] = ACTIONS(6029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHvolcite] = ACTIONS(6029), - [anon_sym_BSLASHVolcite] = ACTIONS(6029), - [anon_sym_BSLASHpvolcite] = ACTIONS(6029), - [anon_sym_BSLASHPvolcite] = ACTIONS(6029), - [anon_sym_BSLASHfvolcite] = ACTIONS(6029), - [anon_sym_BSLASHftvolcite] = ACTIONS(6029), - [anon_sym_BSLASHsvolcite] = ACTIONS(6029), - [anon_sym_BSLASHSvolcite] = ACTIONS(6029), - [anon_sym_BSLASHtvolcite] = ACTIONS(6029), - [anon_sym_BSLASHTvolcite] = ACTIONS(6029), - [anon_sym_BSLASHavolcite] = ACTIONS(6029), - [anon_sym_BSLASHAvolcite] = ACTIONS(6029), - [anon_sym_BSLASHnotecite] = ACTIONS(6029), - [anon_sym_BSLASHNotecite] = ACTIONS(6029), - [anon_sym_BSLASHpnotecite] = ACTIONS(6029), - [anon_sym_BSLASHPnotecite] = ACTIONS(6029), - [anon_sym_BSLASHfnotecite] = ACTIONS(6029), - [anon_sym_BSLASHlabel] = ACTIONS(6029), - [anon_sym_BSLASHref] = ACTIONS(6029), - [anon_sym_BSLASHeqref] = ACTIONS(6029), - [anon_sym_BSLASHvref] = ACTIONS(6029), - [anon_sym_BSLASHVref] = ACTIONS(6029), - [anon_sym_BSLASHautoref] = ACTIONS(6029), - [anon_sym_BSLASHpageref] = ACTIONS(6029), - [anon_sym_BSLASHcref] = ACTIONS(6029), - [anon_sym_BSLASHCref] = ACTIONS(6029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnameCref] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHlabelcref] = ACTIONS(6029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCrefrange] = ACTIONS(6029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnewlabel] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHdef] = ACTIONS(6029), - [anon_sym_BSLASHlet] = ACTIONS(6029), - [anon_sym_BSLASHleft] = ACTIONS(6029), - [anon_sym_BSLASHbig] = ACTIONS(6029), - [anon_sym_BSLASHBig] = ACTIONS(6029), - [anon_sym_BSLASHbigg] = ACTIONS(6029), - [anon_sym_BSLASHBigg] = ACTIONS(6029), - [anon_sym_BSLASHbigl] = ACTIONS(6029), - [anon_sym_BSLASHBigl] = ACTIONS(6029), - [anon_sym_BSLASHbiggl] = ACTIONS(6029), - [anon_sym_BSLASHBiggl] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), - [anon_sym_BSLASHgls] = ACTIONS(6029), - [anon_sym_BSLASHGls] = ACTIONS(6029), - [anon_sym_BSLASHGLS] = ACTIONS(6029), - [anon_sym_BSLASHglspl] = ACTIONS(6029), - [anon_sym_BSLASHGlspl] = ACTIONS(6029), - [anon_sym_BSLASHGLSpl] = ACTIONS(6029), - [anon_sym_BSLASHglsdisp] = ACTIONS(6029), - [anon_sym_BSLASHglslink] = ACTIONS(6029), - [anon_sym_BSLASHglstext] = ACTIONS(6029), - [anon_sym_BSLASHGlstext] = ACTIONS(6029), - [anon_sym_BSLASHGLStext] = ACTIONS(6029), - [anon_sym_BSLASHglsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), - [anon_sym_BSLASHglsplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSplural] = ACTIONS(6029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHglsname] = ACTIONS(6029), - [anon_sym_BSLASHGlsname] = ACTIONS(6029), - [anon_sym_BSLASHGLSname] = ACTIONS(6029), - [anon_sym_BSLASHglssymbol] = ACTIONS(6029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), - [anon_sym_BSLASHglsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), - [anon_sym_BSLASHglsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), - [anon_sym_BSLASHglsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), - [anon_sym_BSLASHglsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), - [anon_sym_BSLASHglsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), - [anon_sym_BSLASHnewacronym] = ACTIONS(6029), - [anon_sym_BSLASHacrshort] = ACTIONS(6029), - [anon_sym_BSLASHAcrshort] = ACTIONS(6029), - [anon_sym_BSLASHACRshort] = ACTIONS(6029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), - [anon_sym_BSLASHacrlong] = ACTIONS(6029), - [anon_sym_BSLASHAcrlong] = ACTIONS(6029), - [anon_sym_BSLASHACRlong] = ACTIONS(6029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), - [anon_sym_BSLASHacrfull] = ACTIONS(6029), - [anon_sym_BSLASHAcrfull] = ACTIONS(6029), - [anon_sym_BSLASHACRfull] = ACTIONS(6029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), - [anon_sym_BSLASHacs] = ACTIONS(6029), - [anon_sym_BSLASHAcs] = ACTIONS(6029), - [anon_sym_BSLASHacsp] = ACTIONS(6029), - [anon_sym_BSLASHAcsp] = ACTIONS(6029), - [anon_sym_BSLASHacl] = ACTIONS(6029), - [anon_sym_BSLASHAcl] = ACTIONS(6029), - [anon_sym_BSLASHaclp] = ACTIONS(6029), - [anon_sym_BSLASHAclp] = ACTIONS(6029), - [anon_sym_BSLASHacf] = ACTIONS(6029), - [anon_sym_BSLASHAcf] = ACTIONS(6029), - [anon_sym_BSLASHacfp] = ACTIONS(6029), - [anon_sym_BSLASHAcfp] = ACTIONS(6029), - [anon_sym_BSLASHac] = ACTIONS(6029), - [anon_sym_BSLASHAc] = ACTIONS(6029), - [anon_sym_BSLASHacp] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), - [anon_sym_BSLASHcolor] = ACTIONS(6029), - [anon_sym_BSLASHcolorbox] = ACTIONS(6029), - [anon_sym_BSLASHtextcolor] = ACTIONS(6029), - [anon_sym_BSLASHpagecolor] = ACTIONS(6029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), - [anon_sym_BSLASHtext] = ACTIONS(6029), - [anon_sym_BSLASHintertext] = ACTIONS(6029), - [anon_sym_shortintertext] = ACTIONS(6029), - }, - [1655] = { - [sym_command_name] = ACTIONS(6725), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6725), - [anon_sym_LBRACK] = ACTIONS(6727), - [anon_sym_RBRACK] = ACTIONS(6727), - [anon_sym_COMMA] = ACTIONS(6727), - [anon_sym_EQ] = ACTIONS(6727), - [anon_sym_LPAREN] = ACTIONS(6727), - [anon_sym_RPAREN] = ACTIONS(6727), - [anon_sym_LBRACE] = ACTIONS(6727), - [sym_word] = ACTIONS(6725), - [sym_placeholder] = ACTIONS(6727), - [anon_sym_PLUS] = ACTIONS(6727), - [anon_sym_DASH] = ACTIONS(6727), - [anon_sym_STAR] = ACTIONS(6727), - [anon_sym_SLASH] = ACTIONS(6727), - [anon_sym_LT] = ACTIONS(6725), - [anon_sym_GT] = ACTIONS(6725), - [anon_sym_BANG] = ACTIONS(6725), - [anon_sym_PIPE] = ACTIONS(6725), - [anon_sym_COLON] = ACTIONS(6725), - [anon_sym_SQUOTE] = ACTIONS(6725), - [anon_sym__] = ACTIONS(6727), - [anon_sym_CARET] = ACTIONS(6727), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6727), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6727), - [anon_sym_DOLLAR] = ACTIONS(6725), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6727), - [anon_sym_BSLASHbegin] = ACTIONS(6725), - [anon_sym_BSLASHtitle] = ACTIONS(6725), - [anon_sym_BSLASHauthor] = ACTIONS(6725), - [anon_sym_BSLASHusepackage] = ACTIONS(6725), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6725), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6725), - [anon_sym_BSLASHinclude] = ACTIONS(6725), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6725), - [anon_sym_BSLASHinput] = ACTIONS(6725), - [anon_sym_BSLASHsubfile] = ACTIONS(6725), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6725), - [anon_sym_BSLASHbibliography] = ACTIONS(6725), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6725), - [anon_sym_BSLASHincludesvg] = ACTIONS(6725), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6725), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6725), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6725), - [anon_sym_BSLASHimport] = ACTIONS(6725), - [anon_sym_BSLASHsubimport] = ACTIONS(6725), - [anon_sym_BSLASHinputfrom] = ACTIONS(6725), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6725), - [anon_sym_BSLASHincludefrom] = ACTIONS(6725), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6725), - [anon_sym_BSLASHcaption] = ACTIONS(6725), - [anon_sym_BSLASHcite] = ACTIONS(6725), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6727), - [anon_sym_BSLASHCite] = ACTIONS(6725), - [anon_sym_BSLASHnocite] = ACTIONS(6725), - [anon_sym_BSLASHcitet] = ACTIONS(6725), - [anon_sym_BSLASHcitep] = ACTIONS(6725), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6727), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6727), - [anon_sym_BSLASHciteauthor] = ACTIONS(6725), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6727), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6725), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6727), - [anon_sym_BSLASHcitetitle] = ACTIONS(6725), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6727), - [anon_sym_BSLASHciteyear] = ACTIONS(6725), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6727), - [anon_sym_BSLASHcitedate] = ACTIONS(6725), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6727), - [anon_sym_BSLASHciteurl] = ACTIONS(6725), - [anon_sym_BSLASHfullcite] = ACTIONS(6725), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6725), - [anon_sym_BSLASHcitealt] = ACTIONS(6725), - [anon_sym_BSLASHcitealp] = ACTIONS(6725), - [anon_sym_BSLASHcitetext] = ACTIONS(6725), - [anon_sym_BSLASHparencite] = ACTIONS(6725), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6727), - [anon_sym_BSLASHParencite] = ACTIONS(6725), - [anon_sym_BSLASHfootcite] = ACTIONS(6725), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6725), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6725), - [anon_sym_BSLASHtextcite] = ACTIONS(6725), - [anon_sym_BSLASHTextcite] = ACTIONS(6725), - [anon_sym_BSLASHsmartcite] = ACTIONS(6725), - [anon_sym_BSLASHSmartcite] = ACTIONS(6725), - [anon_sym_BSLASHsupercite] = ACTIONS(6725), - [anon_sym_BSLASHautocite] = ACTIONS(6725), - [anon_sym_BSLASHAutocite] = ACTIONS(6725), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6727), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6727), - [anon_sym_BSLASHvolcite] = ACTIONS(6725), - [anon_sym_BSLASHVolcite] = ACTIONS(6725), - [anon_sym_BSLASHpvolcite] = ACTIONS(6725), - [anon_sym_BSLASHPvolcite] = ACTIONS(6725), - [anon_sym_BSLASHfvolcite] = ACTIONS(6725), - [anon_sym_BSLASHftvolcite] = ACTIONS(6725), - [anon_sym_BSLASHsvolcite] = ACTIONS(6725), - [anon_sym_BSLASHSvolcite] = ACTIONS(6725), - [anon_sym_BSLASHtvolcite] = ACTIONS(6725), - [anon_sym_BSLASHTvolcite] = ACTIONS(6725), - [anon_sym_BSLASHavolcite] = ACTIONS(6725), - [anon_sym_BSLASHAvolcite] = ACTIONS(6725), - [anon_sym_BSLASHnotecite] = ACTIONS(6725), - [anon_sym_BSLASHNotecite] = ACTIONS(6725), - [anon_sym_BSLASHpnotecite] = ACTIONS(6725), - [anon_sym_BSLASHPnotecite] = ACTIONS(6725), - [anon_sym_BSLASHfnotecite] = ACTIONS(6725), - [anon_sym_BSLASHlabel] = ACTIONS(6725), - [anon_sym_BSLASHref] = ACTIONS(6725), - [anon_sym_BSLASHeqref] = ACTIONS(6725), - [anon_sym_BSLASHvref] = ACTIONS(6725), - [anon_sym_BSLASHVref] = ACTIONS(6725), - [anon_sym_BSLASHautoref] = ACTIONS(6725), - [anon_sym_BSLASHpageref] = ACTIONS(6725), - [anon_sym_BSLASHcref] = ACTIONS(6725), - [anon_sym_BSLASHCref] = ACTIONS(6725), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6727), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6727), - [anon_sym_BSLASHnamecref] = ACTIONS(6725), - [anon_sym_BSLASHnameCref] = ACTIONS(6725), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6725), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6725), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6725), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6725), - [anon_sym_BSLASHlabelcref] = ACTIONS(6725), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6725), - [anon_sym_BSLASHcrefrange] = ACTIONS(6725), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6727), - [anon_sym_BSLASHCrefrange] = ACTIONS(6725), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6727), - [anon_sym_BSLASHnewlabel] = ACTIONS(6725), - [anon_sym_BSLASHnewcommand] = ACTIONS(6725), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6727), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6725), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6727), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6725), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6727), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6725), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6727), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHdef] = ACTIONS(6725), - [anon_sym_BSLASHlet] = ACTIONS(6725), - [anon_sym_BSLASHleft] = ACTIONS(6725), - [anon_sym_BSLASHbig] = ACTIONS(6725), - [anon_sym_BSLASHBig] = ACTIONS(6725), - [anon_sym_BSLASHbigg] = ACTIONS(6725), - [anon_sym_BSLASHBigg] = ACTIONS(6725), - [anon_sym_BSLASHbigl] = ACTIONS(6725), - [anon_sym_BSLASHBigl] = ACTIONS(6725), - [anon_sym_BSLASHbiggl] = ACTIONS(6725), - [anon_sym_BSLASHBiggl] = ACTIONS(6725), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6725), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6725), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6725), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6725), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6725), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6725), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6725), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6725), - [anon_sym_BSLASHgls] = ACTIONS(6725), - [anon_sym_BSLASHGls] = ACTIONS(6725), - [anon_sym_BSLASHGLS] = ACTIONS(6725), - [anon_sym_BSLASHglspl] = ACTIONS(6725), - [anon_sym_BSLASHGlspl] = ACTIONS(6725), - [anon_sym_BSLASHGLSpl] = ACTIONS(6725), - [anon_sym_BSLASHglsdisp] = ACTIONS(6725), - [anon_sym_BSLASHglslink] = ACTIONS(6725), - [anon_sym_BSLASHglstext] = ACTIONS(6725), - [anon_sym_BSLASHGlstext] = ACTIONS(6725), - [anon_sym_BSLASHGLStext] = ACTIONS(6725), - [anon_sym_BSLASHglsfirst] = ACTIONS(6725), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6725), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6725), - [anon_sym_BSLASHglsplural] = ACTIONS(6725), - [anon_sym_BSLASHGlsplural] = ACTIONS(6725), - [anon_sym_BSLASHGLSplural] = ACTIONS(6725), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6725), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6725), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6725), - [anon_sym_BSLASHglsname] = ACTIONS(6725), - [anon_sym_BSLASHGlsname] = ACTIONS(6725), - [anon_sym_BSLASHGLSname] = ACTIONS(6725), - [anon_sym_BSLASHglssymbol] = ACTIONS(6725), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6725), - [anon_sym_BSLASHglsdesc] = ACTIONS(6725), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6725), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6725), - [anon_sym_BSLASHglsuseri] = ACTIONS(6725), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6725), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6725), - [anon_sym_BSLASHglsuserii] = ACTIONS(6725), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6725), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6725), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6725), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6725), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6725), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6725), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6725), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6725), - [anon_sym_BSLASHglsuserv] = ACTIONS(6725), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6725), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6725), - [anon_sym_BSLASHglsuservi] = ACTIONS(6725), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6725), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6725), - [anon_sym_BSLASHnewacronym] = ACTIONS(6725), - [anon_sym_BSLASHacrshort] = ACTIONS(6725), - [anon_sym_BSLASHAcrshort] = ACTIONS(6725), - [anon_sym_BSLASHACRshort] = ACTIONS(6725), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6725), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6725), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6725), - [anon_sym_BSLASHacrlong] = ACTIONS(6725), - [anon_sym_BSLASHAcrlong] = ACTIONS(6725), - [anon_sym_BSLASHACRlong] = ACTIONS(6725), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6725), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6725), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6725), - [anon_sym_BSLASHacrfull] = ACTIONS(6725), - [anon_sym_BSLASHAcrfull] = ACTIONS(6725), - [anon_sym_BSLASHACRfull] = ACTIONS(6725), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6725), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6725), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6725), - [anon_sym_BSLASHacs] = ACTIONS(6725), - [anon_sym_BSLASHAcs] = ACTIONS(6725), - [anon_sym_BSLASHacsp] = ACTIONS(6725), - [anon_sym_BSLASHAcsp] = ACTIONS(6725), - [anon_sym_BSLASHacl] = ACTIONS(6725), - [anon_sym_BSLASHAcl] = ACTIONS(6725), - [anon_sym_BSLASHaclp] = ACTIONS(6725), - [anon_sym_BSLASHAclp] = ACTIONS(6725), - [anon_sym_BSLASHacf] = ACTIONS(6725), - [anon_sym_BSLASHAcf] = ACTIONS(6725), - [anon_sym_BSLASHacfp] = ACTIONS(6725), - [anon_sym_BSLASHAcfp] = ACTIONS(6725), - [anon_sym_BSLASHac] = ACTIONS(6725), - [anon_sym_BSLASHAc] = ACTIONS(6725), - [anon_sym_BSLASHacp] = ACTIONS(6725), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6725), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6725), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6725), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6725), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6725), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6725), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6725), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6725), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6725), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6725), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6725), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6727), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6725), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6727), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6725), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6725), - [anon_sym_BSLASHcolor] = ACTIONS(6725), - [anon_sym_BSLASHcolorbox] = ACTIONS(6725), - [anon_sym_BSLASHtextcolor] = ACTIONS(6725), - [anon_sym_BSLASHpagecolor] = ACTIONS(6725), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6725), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6725), - [anon_sym_BSLASHtext] = ACTIONS(6725), - [anon_sym_BSLASHintertext] = ACTIONS(6725), - [anon_sym_shortintertext] = ACTIONS(6725), - }, - [1656] = { - [sym_command_name] = ACTIONS(6053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6053), - [anon_sym_LBRACK] = ACTIONS(6055), - [anon_sym_RBRACK] = ACTIONS(6055), - [anon_sym_COMMA] = ACTIONS(6055), - [anon_sym_EQ] = ACTIONS(6055), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_LBRACE] = ACTIONS(6055), - [sym_word] = ACTIONS(6053), - [sym_placeholder] = ACTIONS(6055), - [anon_sym_PLUS] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(6055), - [anon_sym_STAR] = ACTIONS(6055), - [anon_sym_SLASH] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_COLON] = ACTIONS(6053), - [anon_sym_SQUOTE] = ACTIONS(6053), - [anon_sym__] = ACTIONS(6055), - [anon_sym_CARET] = ACTIONS(6055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), - [anon_sym_BSLASHbegin] = ACTIONS(6053), - [anon_sym_BSLASHtitle] = ACTIONS(6053), - [anon_sym_BSLASHauthor] = ACTIONS(6053), - [anon_sym_BSLASHusepackage] = ACTIONS(6053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), - [anon_sym_BSLASHinclude] = ACTIONS(6053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), - [anon_sym_BSLASHinput] = ACTIONS(6053), - [anon_sym_BSLASHsubfile] = ACTIONS(6053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), - [anon_sym_BSLASHbibliography] = ACTIONS(6053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), - [anon_sym_BSLASHincludesvg] = ACTIONS(6053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), - [anon_sym_BSLASHimport] = ACTIONS(6053), - [anon_sym_BSLASHsubimport] = ACTIONS(6053), - [anon_sym_BSLASHinputfrom] = ACTIONS(6053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), - [anon_sym_BSLASHincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHcaption] = ACTIONS(6053), - [anon_sym_BSLASHcite] = ACTIONS(6053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCite] = ACTIONS(6053), - [anon_sym_BSLASHnocite] = ACTIONS(6053), - [anon_sym_BSLASHcitet] = ACTIONS(6053), - [anon_sym_BSLASHcitep] = ACTIONS(6053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteauthor] = ACTIONS(6053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitetitle] = ACTIONS(6053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteyear] = ACTIONS(6053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitedate] = ACTIONS(6053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteurl] = ACTIONS(6053), - [anon_sym_BSLASHfullcite] = ACTIONS(6053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), - [anon_sym_BSLASHcitealt] = ACTIONS(6053), - [anon_sym_BSLASHcitealp] = ACTIONS(6053), - [anon_sym_BSLASHcitetext] = ACTIONS(6053), - [anon_sym_BSLASHparencite] = ACTIONS(6053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHParencite] = ACTIONS(6053), - [anon_sym_BSLASHfootcite] = ACTIONS(6053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), - [anon_sym_BSLASHtextcite] = ACTIONS(6053), - [anon_sym_BSLASHTextcite] = ACTIONS(6053), - [anon_sym_BSLASHsmartcite] = ACTIONS(6053), - [anon_sym_BSLASHSmartcite] = ACTIONS(6053), - [anon_sym_BSLASHsupercite] = ACTIONS(6053), - [anon_sym_BSLASHautocite] = ACTIONS(6053), - [anon_sym_BSLASHAutocite] = ACTIONS(6053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHvolcite] = ACTIONS(6053), - [anon_sym_BSLASHVolcite] = ACTIONS(6053), - [anon_sym_BSLASHpvolcite] = ACTIONS(6053), - [anon_sym_BSLASHPvolcite] = ACTIONS(6053), - [anon_sym_BSLASHfvolcite] = ACTIONS(6053), - [anon_sym_BSLASHftvolcite] = ACTIONS(6053), - [anon_sym_BSLASHsvolcite] = ACTIONS(6053), - [anon_sym_BSLASHSvolcite] = ACTIONS(6053), - [anon_sym_BSLASHtvolcite] = ACTIONS(6053), - [anon_sym_BSLASHTvolcite] = ACTIONS(6053), - [anon_sym_BSLASHavolcite] = ACTIONS(6053), - [anon_sym_BSLASHAvolcite] = ACTIONS(6053), - [anon_sym_BSLASHnotecite] = ACTIONS(6053), - [anon_sym_BSLASHNotecite] = ACTIONS(6053), - [anon_sym_BSLASHpnotecite] = ACTIONS(6053), - [anon_sym_BSLASHPnotecite] = ACTIONS(6053), - [anon_sym_BSLASHfnotecite] = ACTIONS(6053), - [anon_sym_BSLASHlabel] = ACTIONS(6053), - [anon_sym_BSLASHref] = ACTIONS(6053), - [anon_sym_BSLASHeqref] = ACTIONS(6053), - [anon_sym_BSLASHvref] = ACTIONS(6053), - [anon_sym_BSLASHVref] = ACTIONS(6053), - [anon_sym_BSLASHautoref] = ACTIONS(6053), - [anon_sym_BSLASHpageref] = ACTIONS(6053), - [anon_sym_BSLASHcref] = ACTIONS(6053), - [anon_sym_BSLASHCref] = ACTIONS(6053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnameCref] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHlabelcref] = ACTIONS(6053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCrefrange] = ACTIONS(6053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnewlabel] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHdef] = ACTIONS(6053), - [anon_sym_BSLASHlet] = ACTIONS(6053), - [anon_sym_BSLASHleft] = ACTIONS(6053), - [anon_sym_BSLASHbig] = ACTIONS(6053), - [anon_sym_BSLASHBig] = ACTIONS(6053), - [anon_sym_BSLASHbigg] = ACTIONS(6053), - [anon_sym_BSLASHBigg] = ACTIONS(6053), - [anon_sym_BSLASHbigl] = ACTIONS(6053), - [anon_sym_BSLASHBigl] = ACTIONS(6053), - [anon_sym_BSLASHbiggl] = ACTIONS(6053), - [anon_sym_BSLASHBiggl] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), - [anon_sym_BSLASHgls] = ACTIONS(6053), - [anon_sym_BSLASHGls] = ACTIONS(6053), - [anon_sym_BSLASHGLS] = ACTIONS(6053), - [anon_sym_BSLASHglspl] = ACTIONS(6053), - [anon_sym_BSLASHGlspl] = ACTIONS(6053), - [anon_sym_BSLASHGLSpl] = ACTIONS(6053), - [anon_sym_BSLASHglsdisp] = ACTIONS(6053), - [anon_sym_BSLASHglslink] = ACTIONS(6053), - [anon_sym_BSLASHglstext] = ACTIONS(6053), - [anon_sym_BSLASHGlstext] = ACTIONS(6053), - [anon_sym_BSLASHGLStext] = ACTIONS(6053), - [anon_sym_BSLASHglsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), - [anon_sym_BSLASHglsplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSplural] = ACTIONS(6053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHglsname] = ACTIONS(6053), - [anon_sym_BSLASHGlsname] = ACTIONS(6053), - [anon_sym_BSLASHGLSname] = ACTIONS(6053), - [anon_sym_BSLASHglssymbol] = ACTIONS(6053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), - [anon_sym_BSLASHglsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), - [anon_sym_BSLASHglsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), - [anon_sym_BSLASHglsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), - [anon_sym_BSLASHglsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), - [anon_sym_BSLASHglsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), - [anon_sym_BSLASHnewacronym] = ACTIONS(6053), - [anon_sym_BSLASHacrshort] = ACTIONS(6053), - [anon_sym_BSLASHAcrshort] = ACTIONS(6053), - [anon_sym_BSLASHACRshort] = ACTIONS(6053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), - [anon_sym_BSLASHacrlong] = ACTIONS(6053), - [anon_sym_BSLASHAcrlong] = ACTIONS(6053), - [anon_sym_BSLASHACRlong] = ACTIONS(6053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), - [anon_sym_BSLASHacrfull] = ACTIONS(6053), - [anon_sym_BSLASHAcrfull] = ACTIONS(6053), - [anon_sym_BSLASHACRfull] = ACTIONS(6053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), - [anon_sym_BSLASHacs] = ACTIONS(6053), - [anon_sym_BSLASHAcs] = ACTIONS(6053), - [anon_sym_BSLASHacsp] = ACTIONS(6053), - [anon_sym_BSLASHAcsp] = ACTIONS(6053), - [anon_sym_BSLASHacl] = ACTIONS(6053), - [anon_sym_BSLASHAcl] = ACTIONS(6053), - [anon_sym_BSLASHaclp] = ACTIONS(6053), - [anon_sym_BSLASHAclp] = ACTIONS(6053), - [anon_sym_BSLASHacf] = ACTIONS(6053), - [anon_sym_BSLASHAcf] = ACTIONS(6053), - [anon_sym_BSLASHacfp] = ACTIONS(6053), - [anon_sym_BSLASHAcfp] = ACTIONS(6053), - [anon_sym_BSLASHac] = ACTIONS(6053), - [anon_sym_BSLASHAc] = ACTIONS(6053), - [anon_sym_BSLASHacp] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), - [anon_sym_BSLASHcolor] = ACTIONS(6053), - [anon_sym_BSLASHcolorbox] = ACTIONS(6053), - [anon_sym_BSLASHtextcolor] = ACTIONS(6053), - [anon_sym_BSLASHpagecolor] = ACTIONS(6053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), - [anon_sym_BSLASHtext] = ACTIONS(6053), - [anon_sym_BSLASHintertext] = ACTIONS(6053), - [anon_sym_shortintertext] = ACTIONS(6053), - }, - [1657] = { - [sym_command_name] = ACTIONS(6237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6237), - [anon_sym_LBRACK] = ACTIONS(6239), - [anon_sym_RBRACK] = ACTIONS(6239), - [anon_sym_COMMA] = ACTIONS(6239), - [anon_sym_EQ] = ACTIONS(6239), - [anon_sym_LPAREN] = ACTIONS(6239), - [anon_sym_RPAREN] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6239), - [sym_word] = ACTIONS(6237), - [sym_placeholder] = ACTIONS(6239), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6239), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_BANG] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_SQUOTE] = ACTIONS(6237), - [anon_sym__] = ACTIONS(6239), - [anon_sym_CARET] = ACTIONS(6239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), - [anon_sym_DOLLAR] = ACTIONS(6237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), - [anon_sym_BSLASHbegin] = ACTIONS(6237), - [anon_sym_BSLASHtitle] = ACTIONS(6237), - [anon_sym_BSLASHauthor] = ACTIONS(6237), - [anon_sym_BSLASHusepackage] = ACTIONS(6237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6237), - [anon_sym_BSLASHinclude] = ACTIONS(6237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6237), - [anon_sym_BSLASHinput] = ACTIONS(6237), - [anon_sym_BSLASHsubfile] = ACTIONS(6237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6237), - [anon_sym_BSLASHbibliography] = ACTIONS(6237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6237), - [anon_sym_BSLASHincludesvg] = ACTIONS(6237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6237), - [anon_sym_BSLASHimport] = ACTIONS(6237), - [anon_sym_BSLASHsubimport] = ACTIONS(6237), - [anon_sym_BSLASHinputfrom] = ACTIONS(6237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6237), - [anon_sym_BSLASHincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHcaption] = ACTIONS(6237), - [anon_sym_BSLASHcite] = ACTIONS(6237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCite] = ACTIONS(6237), - [anon_sym_BSLASHnocite] = ACTIONS(6237), - [anon_sym_BSLASHcitet] = ACTIONS(6237), - [anon_sym_BSLASHcitep] = ACTIONS(6237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteauthor] = ACTIONS(6237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitetitle] = ACTIONS(6237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteyear] = ACTIONS(6237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitedate] = ACTIONS(6237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteurl] = ACTIONS(6237), - [anon_sym_BSLASHfullcite] = ACTIONS(6237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6237), - [anon_sym_BSLASHcitealt] = ACTIONS(6237), - [anon_sym_BSLASHcitealp] = ACTIONS(6237), - [anon_sym_BSLASHcitetext] = ACTIONS(6237), - [anon_sym_BSLASHparencite] = ACTIONS(6237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHParencite] = ACTIONS(6237), - [anon_sym_BSLASHfootcite] = ACTIONS(6237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6237), - [anon_sym_BSLASHtextcite] = ACTIONS(6237), - [anon_sym_BSLASHTextcite] = ACTIONS(6237), - [anon_sym_BSLASHsmartcite] = ACTIONS(6237), - [anon_sym_BSLASHSmartcite] = ACTIONS(6237), - [anon_sym_BSLASHsupercite] = ACTIONS(6237), - [anon_sym_BSLASHautocite] = ACTIONS(6237), - [anon_sym_BSLASHAutocite] = ACTIONS(6237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHvolcite] = ACTIONS(6237), - [anon_sym_BSLASHVolcite] = ACTIONS(6237), - [anon_sym_BSLASHpvolcite] = ACTIONS(6237), - [anon_sym_BSLASHPvolcite] = ACTIONS(6237), - [anon_sym_BSLASHfvolcite] = ACTIONS(6237), - [anon_sym_BSLASHftvolcite] = ACTIONS(6237), - [anon_sym_BSLASHsvolcite] = ACTIONS(6237), - [anon_sym_BSLASHSvolcite] = ACTIONS(6237), - [anon_sym_BSLASHtvolcite] = ACTIONS(6237), - [anon_sym_BSLASHTvolcite] = ACTIONS(6237), - [anon_sym_BSLASHavolcite] = ACTIONS(6237), - [anon_sym_BSLASHAvolcite] = ACTIONS(6237), - [anon_sym_BSLASHnotecite] = ACTIONS(6237), - [anon_sym_BSLASHNotecite] = ACTIONS(6237), - [anon_sym_BSLASHpnotecite] = ACTIONS(6237), - [anon_sym_BSLASHPnotecite] = ACTIONS(6237), - [anon_sym_BSLASHfnotecite] = ACTIONS(6237), - [anon_sym_BSLASHlabel] = ACTIONS(6237), - [anon_sym_BSLASHref] = ACTIONS(6237), - [anon_sym_BSLASHeqref] = ACTIONS(6237), - [anon_sym_BSLASHvref] = ACTIONS(6237), - [anon_sym_BSLASHVref] = ACTIONS(6237), - [anon_sym_BSLASHautoref] = ACTIONS(6237), - [anon_sym_BSLASHpageref] = ACTIONS(6237), - [anon_sym_BSLASHcref] = ACTIONS(6237), - [anon_sym_BSLASHCref] = ACTIONS(6237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnameCref] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHlabelcref] = ACTIONS(6237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCrefrange] = ACTIONS(6237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnewlabel] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHdef] = ACTIONS(6237), - [anon_sym_BSLASHlet] = ACTIONS(6237), - [anon_sym_BSLASHleft] = ACTIONS(6237), - [anon_sym_BSLASHbig] = ACTIONS(6237), - [anon_sym_BSLASHBig] = ACTIONS(6237), - [anon_sym_BSLASHbigg] = ACTIONS(6237), - [anon_sym_BSLASHBigg] = ACTIONS(6237), - [anon_sym_BSLASHbigl] = ACTIONS(6237), - [anon_sym_BSLASHBigl] = ACTIONS(6237), - [anon_sym_BSLASHbiggl] = ACTIONS(6237), - [anon_sym_BSLASHBiggl] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6237), - [anon_sym_BSLASHgls] = ACTIONS(6237), - [anon_sym_BSLASHGls] = ACTIONS(6237), - [anon_sym_BSLASHGLS] = ACTIONS(6237), - [anon_sym_BSLASHglspl] = ACTIONS(6237), - [anon_sym_BSLASHGlspl] = ACTIONS(6237), - [anon_sym_BSLASHGLSpl] = ACTIONS(6237), - [anon_sym_BSLASHglsdisp] = ACTIONS(6237), - [anon_sym_BSLASHglslink] = ACTIONS(6237), - [anon_sym_BSLASHglstext] = ACTIONS(6237), - [anon_sym_BSLASHGlstext] = ACTIONS(6237), - [anon_sym_BSLASHGLStext] = ACTIONS(6237), - [anon_sym_BSLASHglsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6237), - [anon_sym_BSLASHglsplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSplural] = ACTIONS(6237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHglsname] = ACTIONS(6237), - [anon_sym_BSLASHGlsname] = ACTIONS(6237), - [anon_sym_BSLASHGLSname] = ACTIONS(6237), - [anon_sym_BSLASHglssymbol] = ACTIONS(6237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6237), - [anon_sym_BSLASHglsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6237), - [anon_sym_BSLASHglsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6237), - [anon_sym_BSLASHglsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6237), - [anon_sym_BSLASHglsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6237), - [anon_sym_BSLASHglsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6237), - [anon_sym_BSLASHnewacronym] = ACTIONS(6237), - [anon_sym_BSLASHacrshort] = ACTIONS(6237), - [anon_sym_BSLASHAcrshort] = ACTIONS(6237), - [anon_sym_BSLASHACRshort] = ACTIONS(6237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6237), - [anon_sym_BSLASHacrlong] = ACTIONS(6237), - [anon_sym_BSLASHAcrlong] = ACTIONS(6237), - [anon_sym_BSLASHACRlong] = ACTIONS(6237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6237), - [anon_sym_BSLASHacrfull] = ACTIONS(6237), - [anon_sym_BSLASHAcrfull] = ACTIONS(6237), - [anon_sym_BSLASHACRfull] = ACTIONS(6237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6237), - [anon_sym_BSLASHacs] = ACTIONS(6237), - [anon_sym_BSLASHAcs] = ACTIONS(6237), - [anon_sym_BSLASHacsp] = ACTIONS(6237), - [anon_sym_BSLASHAcsp] = ACTIONS(6237), - [anon_sym_BSLASHacl] = ACTIONS(6237), - [anon_sym_BSLASHAcl] = ACTIONS(6237), - [anon_sym_BSLASHaclp] = ACTIONS(6237), - [anon_sym_BSLASHAclp] = ACTIONS(6237), - [anon_sym_BSLASHacf] = ACTIONS(6237), - [anon_sym_BSLASHAcf] = ACTIONS(6237), - [anon_sym_BSLASHacfp] = ACTIONS(6237), - [anon_sym_BSLASHAcfp] = ACTIONS(6237), - [anon_sym_BSLASHac] = ACTIONS(6237), - [anon_sym_BSLASHAc] = ACTIONS(6237), - [anon_sym_BSLASHacp] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6237), - [anon_sym_BSLASHcolor] = ACTIONS(6237), - [anon_sym_BSLASHcolorbox] = ACTIONS(6237), - [anon_sym_BSLASHtextcolor] = ACTIONS(6237), - [anon_sym_BSLASHpagecolor] = ACTIONS(6237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6237), - [anon_sym_BSLASHtext] = ACTIONS(6237), - [anon_sym_BSLASHintertext] = ACTIONS(6237), - [anon_sym_shortintertext] = ACTIONS(6237), - }, - [1658] = { - [sym_command_name] = ACTIONS(6221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6221), - [anon_sym_LBRACK] = ACTIONS(6223), - [anon_sym_RBRACK] = ACTIONS(6223), - [anon_sym_COMMA] = ACTIONS(6223), - [anon_sym_EQ] = ACTIONS(6223), - [anon_sym_LPAREN] = ACTIONS(6223), - [anon_sym_RPAREN] = ACTIONS(6223), - [anon_sym_LBRACE] = ACTIONS(6223), - [sym_word] = ACTIONS(6221), - [sym_placeholder] = ACTIONS(6223), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6223), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_LT] = ACTIONS(6221), - [anon_sym_GT] = ACTIONS(6221), - [anon_sym_BANG] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_SQUOTE] = ACTIONS(6221), - [anon_sym__] = ACTIONS(6223), - [anon_sym_CARET] = ACTIONS(6223), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6223), - [anon_sym_DOLLAR] = ACTIONS(6221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6223), - [anon_sym_BSLASHbegin] = ACTIONS(6221), - [anon_sym_BSLASHtitle] = ACTIONS(6221), - [anon_sym_BSLASHauthor] = ACTIONS(6221), - [anon_sym_BSLASHusepackage] = ACTIONS(6221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6221), - [anon_sym_BSLASHinclude] = ACTIONS(6221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6221), - [anon_sym_BSLASHinput] = ACTIONS(6221), - [anon_sym_BSLASHsubfile] = ACTIONS(6221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6221), - [anon_sym_BSLASHbibliography] = ACTIONS(6221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6221), - [anon_sym_BSLASHincludesvg] = ACTIONS(6221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6221), - [anon_sym_BSLASHimport] = ACTIONS(6221), - [anon_sym_BSLASHsubimport] = ACTIONS(6221), - [anon_sym_BSLASHinputfrom] = ACTIONS(6221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6221), - [anon_sym_BSLASHincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHcaption] = ACTIONS(6221), - [anon_sym_BSLASHcite] = ACTIONS(6221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCite] = ACTIONS(6221), - [anon_sym_BSLASHnocite] = ACTIONS(6221), - [anon_sym_BSLASHcitet] = ACTIONS(6221), - [anon_sym_BSLASHcitep] = ACTIONS(6221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteauthor] = ACTIONS(6221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitetitle] = ACTIONS(6221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteyear] = ACTIONS(6221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitedate] = ACTIONS(6221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteurl] = ACTIONS(6221), - [anon_sym_BSLASHfullcite] = ACTIONS(6221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6221), - [anon_sym_BSLASHcitealt] = ACTIONS(6221), - [anon_sym_BSLASHcitealp] = ACTIONS(6221), - [anon_sym_BSLASHcitetext] = ACTIONS(6221), - [anon_sym_BSLASHparencite] = ACTIONS(6221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHParencite] = ACTIONS(6221), - [anon_sym_BSLASHfootcite] = ACTIONS(6221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6221), - [anon_sym_BSLASHtextcite] = ACTIONS(6221), - [anon_sym_BSLASHTextcite] = ACTIONS(6221), - [anon_sym_BSLASHsmartcite] = ACTIONS(6221), - [anon_sym_BSLASHSmartcite] = ACTIONS(6221), - [anon_sym_BSLASHsupercite] = ACTIONS(6221), - [anon_sym_BSLASHautocite] = ACTIONS(6221), - [anon_sym_BSLASHAutocite] = ACTIONS(6221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHvolcite] = ACTIONS(6221), - [anon_sym_BSLASHVolcite] = ACTIONS(6221), - [anon_sym_BSLASHpvolcite] = ACTIONS(6221), - [anon_sym_BSLASHPvolcite] = ACTIONS(6221), - [anon_sym_BSLASHfvolcite] = ACTIONS(6221), - [anon_sym_BSLASHftvolcite] = ACTIONS(6221), - [anon_sym_BSLASHsvolcite] = ACTIONS(6221), - [anon_sym_BSLASHSvolcite] = ACTIONS(6221), - [anon_sym_BSLASHtvolcite] = ACTIONS(6221), - [anon_sym_BSLASHTvolcite] = ACTIONS(6221), - [anon_sym_BSLASHavolcite] = ACTIONS(6221), - [anon_sym_BSLASHAvolcite] = ACTIONS(6221), - [anon_sym_BSLASHnotecite] = ACTIONS(6221), - [anon_sym_BSLASHNotecite] = ACTIONS(6221), - [anon_sym_BSLASHpnotecite] = ACTIONS(6221), - [anon_sym_BSLASHPnotecite] = ACTIONS(6221), - [anon_sym_BSLASHfnotecite] = ACTIONS(6221), - [anon_sym_BSLASHlabel] = ACTIONS(6221), - [anon_sym_BSLASHref] = ACTIONS(6221), - [anon_sym_BSLASHeqref] = ACTIONS(6221), - [anon_sym_BSLASHvref] = ACTIONS(6221), - [anon_sym_BSLASHVref] = ACTIONS(6221), - [anon_sym_BSLASHautoref] = ACTIONS(6221), - [anon_sym_BSLASHpageref] = ACTIONS(6221), - [anon_sym_BSLASHcref] = ACTIONS(6221), - [anon_sym_BSLASHCref] = ACTIONS(6221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnameCref] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHlabelcref] = ACTIONS(6221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCrefrange] = ACTIONS(6221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnewlabel] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6223), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHdef] = ACTIONS(6221), - [anon_sym_BSLASHlet] = ACTIONS(6221), - [anon_sym_BSLASHleft] = ACTIONS(6221), - [anon_sym_BSLASHbig] = ACTIONS(6221), - [anon_sym_BSLASHBig] = ACTIONS(6221), - [anon_sym_BSLASHbigg] = ACTIONS(6221), - [anon_sym_BSLASHBigg] = ACTIONS(6221), - [anon_sym_BSLASHbigl] = ACTIONS(6221), - [anon_sym_BSLASHBigl] = ACTIONS(6221), - [anon_sym_BSLASHbiggl] = ACTIONS(6221), - [anon_sym_BSLASHBiggl] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6221), - [anon_sym_BSLASHgls] = ACTIONS(6221), - [anon_sym_BSLASHGls] = ACTIONS(6221), - [anon_sym_BSLASHGLS] = ACTIONS(6221), - [anon_sym_BSLASHglspl] = ACTIONS(6221), - [anon_sym_BSLASHGlspl] = ACTIONS(6221), - [anon_sym_BSLASHGLSpl] = ACTIONS(6221), - [anon_sym_BSLASHglsdisp] = ACTIONS(6221), - [anon_sym_BSLASHglslink] = ACTIONS(6221), - [anon_sym_BSLASHglstext] = ACTIONS(6221), - [anon_sym_BSLASHGlstext] = ACTIONS(6221), - [anon_sym_BSLASHGLStext] = ACTIONS(6221), - [anon_sym_BSLASHglsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6221), - [anon_sym_BSLASHglsplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSplural] = ACTIONS(6221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHglsname] = ACTIONS(6221), - [anon_sym_BSLASHGlsname] = ACTIONS(6221), - [anon_sym_BSLASHGLSname] = ACTIONS(6221), - [anon_sym_BSLASHglssymbol] = ACTIONS(6221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6221), - [anon_sym_BSLASHglsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6221), - [anon_sym_BSLASHglsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6221), - [anon_sym_BSLASHglsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6221), - [anon_sym_BSLASHglsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6221), - [anon_sym_BSLASHglsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6221), - [anon_sym_BSLASHnewacronym] = ACTIONS(6221), - [anon_sym_BSLASHacrshort] = ACTIONS(6221), - [anon_sym_BSLASHAcrshort] = ACTIONS(6221), - [anon_sym_BSLASHACRshort] = ACTIONS(6221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6221), - [anon_sym_BSLASHacrlong] = ACTIONS(6221), - [anon_sym_BSLASHAcrlong] = ACTIONS(6221), - [anon_sym_BSLASHACRlong] = ACTIONS(6221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6221), - [anon_sym_BSLASHacrfull] = ACTIONS(6221), - [anon_sym_BSLASHAcrfull] = ACTIONS(6221), - [anon_sym_BSLASHACRfull] = ACTIONS(6221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6221), - [anon_sym_BSLASHacs] = ACTIONS(6221), - [anon_sym_BSLASHAcs] = ACTIONS(6221), - [anon_sym_BSLASHacsp] = ACTIONS(6221), - [anon_sym_BSLASHAcsp] = ACTIONS(6221), - [anon_sym_BSLASHacl] = ACTIONS(6221), - [anon_sym_BSLASHAcl] = ACTIONS(6221), - [anon_sym_BSLASHaclp] = ACTIONS(6221), - [anon_sym_BSLASHAclp] = ACTIONS(6221), - [anon_sym_BSLASHacf] = ACTIONS(6221), - [anon_sym_BSLASHAcf] = ACTIONS(6221), - [anon_sym_BSLASHacfp] = ACTIONS(6221), - [anon_sym_BSLASHAcfp] = ACTIONS(6221), - [anon_sym_BSLASHac] = ACTIONS(6221), - [anon_sym_BSLASHAc] = ACTIONS(6221), - [anon_sym_BSLASHacp] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6221), - [anon_sym_BSLASHcolor] = ACTIONS(6221), - [anon_sym_BSLASHcolorbox] = ACTIONS(6221), - [anon_sym_BSLASHtextcolor] = ACTIONS(6221), - [anon_sym_BSLASHpagecolor] = ACTIONS(6221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6221), - [anon_sym_BSLASHtext] = ACTIONS(6221), - [anon_sym_BSLASHintertext] = ACTIONS(6221), - [anon_sym_shortintertext] = ACTIONS(6221), - }, - [1659] = { - [sym_command_name] = ACTIONS(6365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6367), - [anon_sym_RBRACK] = ACTIONS(6367), - [anon_sym_COMMA] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(6367), - [anon_sym_LPAREN] = ACTIONS(6367), - [anon_sym_RPAREN] = ACTIONS(6367), - [anon_sym_LBRACE] = ACTIONS(6367), - [anon_sym_RBRACE] = ACTIONS(6367), - [sym_word] = ACTIONS(6365), - [sym_placeholder] = ACTIONS(6367), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6367), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_LT] = ACTIONS(6365), - [anon_sym_GT] = ACTIONS(6365), - [anon_sym_BANG] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_SQUOTE] = ACTIONS(6365), - [anon_sym__] = ACTIONS(6367), - [anon_sym_CARET] = ACTIONS(6367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6367), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6367), - [anon_sym_DOLLAR] = ACTIONS(6365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6367), - [anon_sym_BSLASHtitle] = ACTIONS(6365), - [anon_sym_BSLASHauthor] = ACTIONS(6365), - [anon_sym_BSLASHusepackage] = ACTIONS(6365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6365), - [anon_sym_BSLASHinclude] = ACTIONS(6365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6365), - [anon_sym_BSLASHinput] = ACTIONS(6365), - [anon_sym_BSLASHsubfile] = ACTIONS(6365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6365), - [anon_sym_BSLASHbibliography] = ACTIONS(6365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6365), - [anon_sym_BSLASHincludesvg] = ACTIONS(6365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6365), - [anon_sym_BSLASHimport] = ACTIONS(6365), - [anon_sym_BSLASHsubimport] = ACTIONS(6365), - [anon_sym_BSLASHinputfrom] = ACTIONS(6365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6365), - [anon_sym_BSLASHincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHcaption] = ACTIONS(6365), - [anon_sym_BSLASHcite] = ACTIONS(6365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCite] = ACTIONS(6365), - [anon_sym_BSLASHnocite] = ACTIONS(6365), - [anon_sym_BSLASHcitet] = ACTIONS(6365), - [anon_sym_BSLASHcitep] = ACTIONS(6365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteauthor] = ACTIONS(6365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitetitle] = ACTIONS(6365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteyear] = ACTIONS(6365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitedate] = ACTIONS(6365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteurl] = ACTIONS(6365), - [anon_sym_BSLASHfullcite] = ACTIONS(6365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6365), - [anon_sym_BSLASHcitealt] = ACTIONS(6365), - [anon_sym_BSLASHcitealp] = ACTIONS(6365), - [anon_sym_BSLASHcitetext] = ACTIONS(6365), - [anon_sym_BSLASHparencite] = ACTIONS(6365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHParencite] = ACTIONS(6365), - [anon_sym_BSLASHfootcite] = ACTIONS(6365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6365), - [anon_sym_BSLASHtextcite] = ACTIONS(6365), - [anon_sym_BSLASHTextcite] = ACTIONS(6365), - [anon_sym_BSLASHsmartcite] = ACTIONS(6365), - [anon_sym_BSLASHSmartcite] = ACTIONS(6365), - [anon_sym_BSLASHsupercite] = ACTIONS(6365), - [anon_sym_BSLASHautocite] = ACTIONS(6365), - [anon_sym_BSLASHAutocite] = ACTIONS(6365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHvolcite] = ACTIONS(6365), - [anon_sym_BSLASHVolcite] = ACTIONS(6365), - [anon_sym_BSLASHpvolcite] = ACTIONS(6365), - [anon_sym_BSLASHPvolcite] = ACTIONS(6365), - [anon_sym_BSLASHfvolcite] = ACTIONS(6365), - [anon_sym_BSLASHftvolcite] = ACTIONS(6365), - [anon_sym_BSLASHsvolcite] = ACTIONS(6365), - [anon_sym_BSLASHSvolcite] = ACTIONS(6365), - [anon_sym_BSLASHtvolcite] = ACTIONS(6365), - [anon_sym_BSLASHTvolcite] = ACTIONS(6365), - [anon_sym_BSLASHavolcite] = ACTIONS(6365), - [anon_sym_BSLASHAvolcite] = ACTIONS(6365), - [anon_sym_BSLASHnotecite] = ACTIONS(6365), - [anon_sym_BSLASHNotecite] = ACTIONS(6365), - [anon_sym_BSLASHpnotecite] = ACTIONS(6365), - [anon_sym_BSLASHPnotecite] = ACTIONS(6365), - [anon_sym_BSLASHfnotecite] = ACTIONS(6365), - [anon_sym_BSLASHlabel] = ACTIONS(6365), - [anon_sym_BSLASHref] = ACTIONS(6365), - [anon_sym_BSLASHeqref] = ACTIONS(6365), - [anon_sym_BSLASHvref] = ACTIONS(6365), - [anon_sym_BSLASHVref] = ACTIONS(6365), - [anon_sym_BSLASHautoref] = ACTIONS(6365), - [anon_sym_BSLASHpageref] = ACTIONS(6365), - [anon_sym_BSLASHcref] = ACTIONS(6365), - [anon_sym_BSLASHCref] = ACTIONS(6365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnameCref] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHlabelcref] = ACTIONS(6365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCrefrange] = ACTIONS(6365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnewlabel] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6367), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHdef] = ACTIONS(6365), - [anon_sym_BSLASHlet] = ACTIONS(6365), - [anon_sym_BSLASHleft] = ACTIONS(6365), - [anon_sym_BSLASHbig] = ACTIONS(6365), - [anon_sym_BSLASHBig] = ACTIONS(6365), - [anon_sym_BSLASHbigg] = ACTIONS(6365), - [anon_sym_BSLASHBigg] = ACTIONS(6365), - [anon_sym_BSLASHbigl] = ACTIONS(6365), - [anon_sym_BSLASHBigl] = ACTIONS(6365), - [anon_sym_BSLASHbiggl] = ACTIONS(6365), - [anon_sym_BSLASHBiggl] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6365), - [anon_sym_BSLASHgls] = ACTIONS(6365), - [anon_sym_BSLASHGls] = ACTIONS(6365), - [anon_sym_BSLASHGLS] = ACTIONS(6365), - [anon_sym_BSLASHglspl] = ACTIONS(6365), - [anon_sym_BSLASHGlspl] = ACTIONS(6365), - [anon_sym_BSLASHGLSpl] = ACTIONS(6365), - [anon_sym_BSLASHglsdisp] = ACTIONS(6365), - [anon_sym_BSLASHglslink] = ACTIONS(6365), - [anon_sym_BSLASHglstext] = ACTIONS(6365), - [anon_sym_BSLASHGlstext] = ACTIONS(6365), - [anon_sym_BSLASHGLStext] = ACTIONS(6365), - [anon_sym_BSLASHglsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6365), - [anon_sym_BSLASHglsplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSplural] = ACTIONS(6365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHglsname] = ACTIONS(6365), - [anon_sym_BSLASHGlsname] = ACTIONS(6365), - [anon_sym_BSLASHGLSname] = ACTIONS(6365), - [anon_sym_BSLASHglssymbol] = ACTIONS(6365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6365), - [anon_sym_BSLASHglsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6365), - [anon_sym_BSLASHglsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6365), - [anon_sym_BSLASHglsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6365), - [anon_sym_BSLASHglsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6365), - [anon_sym_BSLASHglsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6365), - [anon_sym_BSLASHnewacronym] = ACTIONS(6365), - [anon_sym_BSLASHacrshort] = ACTIONS(6365), - [anon_sym_BSLASHAcrshort] = ACTIONS(6365), - [anon_sym_BSLASHACRshort] = ACTIONS(6365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6365), - [anon_sym_BSLASHacrlong] = ACTIONS(6365), - [anon_sym_BSLASHAcrlong] = ACTIONS(6365), - [anon_sym_BSLASHACRlong] = ACTIONS(6365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6365), - [anon_sym_BSLASHacrfull] = ACTIONS(6365), - [anon_sym_BSLASHAcrfull] = ACTIONS(6365), - [anon_sym_BSLASHACRfull] = ACTIONS(6365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6365), - [anon_sym_BSLASHacs] = ACTIONS(6365), - [anon_sym_BSLASHAcs] = ACTIONS(6365), - [anon_sym_BSLASHacsp] = ACTIONS(6365), - [anon_sym_BSLASHAcsp] = ACTIONS(6365), - [anon_sym_BSLASHacl] = ACTIONS(6365), - [anon_sym_BSLASHAcl] = ACTIONS(6365), - [anon_sym_BSLASHaclp] = ACTIONS(6365), - [anon_sym_BSLASHAclp] = ACTIONS(6365), - [anon_sym_BSLASHacf] = ACTIONS(6365), - [anon_sym_BSLASHAcf] = ACTIONS(6365), - [anon_sym_BSLASHacfp] = ACTIONS(6365), - [anon_sym_BSLASHAcfp] = ACTIONS(6365), - [anon_sym_BSLASHac] = ACTIONS(6365), - [anon_sym_BSLASHAc] = ACTIONS(6365), - [anon_sym_BSLASHacp] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6365), - [anon_sym_BSLASHcolor] = ACTIONS(6365), - [anon_sym_BSLASHcolorbox] = ACTIONS(6365), - [anon_sym_BSLASHtextcolor] = ACTIONS(6365), - [anon_sym_BSLASHpagecolor] = ACTIONS(6365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6365), - [anon_sym_BSLASHtext] = ACTIONS(6365), - [anon_sym_BSLASHintertext] = ACTIONS(6365), - [anon_sym_shortintertext] = ACTIONS(6365), - }, - [1660] = { - [sym_command_name] = ACTIONS(6361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6363), - [anon_sym_RBRACK] = ACTIONS(6363), - [anon_sym_COMMA] = ACTIONS(6363), - [anon_sym_EQ] = ACTIONS(6363), - [anon_sym_LPAREN] = ACTIONS(6363), - [anon_sym_RPAREN] = ACTIONS(6363), - [anon_sym_LBRACE] = ACTIONS(6363), - [anon_sym_RBRACE] = ACTIONS(6363), - [sym_word] = ACTIONS(6361), - [sym_placeholder] = ACTIONS(6363), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_LT] = ACTIONS(6361), - [anon_sym_GT] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6361), - [anon_sym__] = ACTIONS(6363), - [anon_sym_CARET] = ACTIONS(6363), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6363), - [anon_sym_DOLLAR] = ACTIONS(6361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6363), - [anon_sym_BSLASHtitle] = ACTIONS(6361), - [anon_sym_BSLASHauthor] = ACTIONS(6361), - [anon_sym_BSLASHusepackage] = ACTIONS(6361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6361), - [anon_sym_BSLASHinclude] = ACTIONS(6361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6361), - [anon_sym_BSLASHinput] = ACTIONS(6361), - [anon_sym_BSLASHsubfile] = ACTIONS(6361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6361), - [anon_sym_BSLASHbibliography] = ACTIONS(6361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6361), - [anon_sym_BSLASHincludesvg] = ACTIONS(6361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6361), - [anon_sym_BSLASHimport] = ACTIONS(6361), - [anon_sym_BSLASHsubimport] = ACTIONS(6361), - [anon_sym_BSLASHinputfrom] = ACTIONS(6361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6361), - [anon_sym_BSLASHincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHcaption] = ACTIONS(6361), - [anon_sym_BSLASHcite] = ACTIONS(6361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCite] = ACTIONS(6361), - [anon_sym_BSLASHnocite] = ACTIONS(6361), - [anon_sym_BSLASHcitet] = ACTIONS(6361), - [anon_sym_BSLASHcitep] = ACTIONS(6361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteauthor] = ACTIONS(6361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitetitle] = ACTIONS(6361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteyear] = ACTIONS(6361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitedate] = ACTIONS(6361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteurl] = ACTIONS(6361), - [anon_sym_BSLASHfullcite] = ACTIONS(6361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6361), - [anon_sym_BSLASHcitealt] = ACTIONS(6361), - [anon_sym_BSLASHcitealp] = ACTIONS(6361), - [anon_sym_BSLASHcitetext] = ACTIONS(6361), - [anon_sym_BSLASHparencite] = ACTIONS(6361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHParencite] = ACTIONS(6361), - [anon_sym_BSLASHfootcite] = ACTIONS(6361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6361), - [anon_sym_BSLASHtextcite] = ACTIONS(6361), - [anon_sym_BSLASHTextcite] = ACTIONS(6361), - [anon_sym_BSLASHsmartcite] = ACTIONS(6361), - [anon_sym_BSLASHSmartcite] = ACTIONS(6361), - [anon_sym_BSLASHsupercite] = ACTIONS(6361), - [anon_sym_BSLASHautocite] = ACTIONS(6361), - [anon_sym_BSLASHAutocite] = ACTIONS(6361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHvolcite] = ACTIONS(6361), - [anon_sym_BSLASHVolcite] = ACTIONS(6361), - [anon_sym_BSLASHpvolcite] = ACTIONS(6361), - [anon_sym_BSLASHPvolcite] = ACTIONS(6361), - [anon_sym_BSLASHfvolcite] = ACTIONS(6361), - [anon_sym_BSLASHftvolcite] = ACTIONS(6361), - [anon_sym_BSLASHsvolcite] = ACTIONS(6361), - [anon_sym_BSLASHSvolcite] = ACTIONS(6361), - [anon_sym_BSLASHtvolcite] = ACTIONS(6361), - [anon_sym_BSLASHTvolcite] = ACTIONS(6361), - [anon_sym_BSLASHavolcite] = ACTIONS(6361), - [anon_sym_BSLASHAvolcite] = ACTIONS(6361), - [anon_sym_BSLASHnotecite] = ACTIONS(6361), - [anon_sym_BSLASHNotecite] = ACTIONS(6361), - [anon_sym_BSLASHpnotecite] = ACTIONS(6361), - [anon_sym_BSLASHPnotecite] = ACTIONS(6361), - [anon_sym_BSLASHfnotecite] = ACTIONS(6361), - [anon_sym_BSLASHlabel] = ACTIONS(6361), - [anon_sym_BSLASHref] = ACTIONS(6361), - [anon_sym_BSLASHeqref] = ACTIONS(6361), - [anon_sym_BSLASHvref] = ACTIONS(6361), - [anon_sym_BSLASHVref] = ACTIONS(6361), - [anon_sym_BSLASHautoref] = ACTIONS(6361), - [anon_sym_BSLASHpageref] = ACTIONS(6361), - [anon_sym_BSLASHcref] = ACTIONS(6361), - [anon_sym_BSLASHCref] = ACTIONS(6361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnameCref] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHlabelcref] = ACTIONS(6361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCrefrange] = ACTIONS(6361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnewlabel] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6363), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHdef] = ACTIONS(6361), - [anon_sym_BSLASHlet] = ACTIONS(6361), - [anon_sym_BSLASHleft] = ACTIONS(6361), - [anon_sym_BSLASHbig] = ACTIONS(6361), - [anon_sym_BSLASHBig] = ACTIONS(6361), - [anon_sym_BSLASHbigg] = ACTIONS(6361), - [anon_sym_BSLASHBigg] = ACTIONS(6361), - [anon_sym_BSLASHbigl] = ACTIONS(6361), - [anon_sym_BSLASHBigl] = ACTIONS(6361), - [anon_sym_BSLASHbiggl] = ACTIONS(6361), - [anon_sym_BSLASHBiggl] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6361), - [anon_sym_BSLASHgls] = ACTIONS(6361), - [anon_sym_BSLASHGls] = ACTIONS(6361), - [anon_sym_BSLASHGLS] = ACTIONS(6361), - [anon_sym_BSLASHglspl] = ACTIONS(6361), - [anon_sym_BSLASHGlspl] = ACTIONS(6361), - [anon_sym_BSLASHGLSpl] = ACTIONS(6361), - [anon_sym_BSLASHglsdisp] = ACTIONS(6361), - [anon_sym_BSLASHglslink] = ACTIONS(6361), - [anon_sym_BSLASHglstext] = ACTIONS(6361), - [anon_sym_BSLASHGlstext] = ACTIONS(6361), - [anon_sym_BSLASHGLStext] = ACTIONS(6361), - [anon_sym_BSLASHglsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6361), - [anon_sym_BSLASHglsplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSplural] = ACTIONS(6361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHglsname] = ACTIONS(6361), - [anon_sym_BSLASHGlsname] = ACTIONS(6361), - [anon_sym_BSLASHGLSname] = ACTIONS(6361), - [anon_sym_BSLASHglssymbol] = ACTIONS(6361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6361), - [anon_sym_BSLASHglsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6361), - [anon_sym_BSLASHglsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6361), - [anon_sym_BSLASHglsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6361), - [anon_sym_BSLASHglsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6361), - [anon_sym_BSLASHglsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6361), - [anon_sym_BSLASHnewacronym] = ACTIONS(6361), - [anon_sym_BSLASHacrshort] = ACTIONS(6361), - [anon_sym_BSLASHAcrshort] = ACTIONS(6361), - [anon_sym_BSLASHACRshort] = ACTIONS(6361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6361), - [anon_sym_BSLASHacrlong] = ACTIONS(6361), - [anon_sym_BSLASHAcrlong] = ACTIONS(6361), - [anon_sym_BSLASHACRlong] = ACTIONS(6361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6361), - [anon_sym_BSLASHacrfull] = ACTIONS(6361), - [anon_sym_BSLASHAcrfull] = ACTIONS(6361), - [anon_sym_BSLASHACRfull] = ACTIONS(6361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6361), - [anon_sym_BSLASHacs] = ACTIONS(6361), - [anon_sym_BSLASHAcs] = ACTIONS(6361), - [anon_sym_BSLASHacsp] = ACTIONS(6361), - [anon_sym_BSLASHAcsp] = ACTIONS(6361), - [anon_sym_BSLASHacl] = ACTIONS(6361), - [anon_sym_BSLASHAcl] = ACTIONS(6361), - [anon_sym_BSLASHaclp] = ACTIONS(6361), - [anon_sym_BSLASHAclp] = ACTIONS(6361), - [anon_sym_BSLASHacf] = ACTIONS(6361), - [anon_sym_BSLASHAcf] = ACTIONS(6361), - [anon_sym_BSLASHacfp] = ACTIONS(6361), - [anon_sym_BSLASHAcfp] = ACTIONS(6361), - [anon_sym_BSLASHac] = ACTIONS(6361), - [anon_sym_BSLASHAc] = ACTIONS(6361), - [anon_sym_BSLASHacp] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6361), - [anon_sym_BSLASHcolor] = ACTIONS(6361), - [anon_sym_BSLASHcolorbox] = ACTIONS(6361), - [anon_sym_BSLASHtextcolor] = ACTIONS(6361), - [anon_sym_BSLASHpagecolor] = ACTIONS(6361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6361), - [anon_sym_BSLASHtext] = ACTIONS(6361), - [anon_sym_BSLASHintertext] = ACTIONS(6361), - [anon_sym_shortintertext] = ACTIONS(6361), - }, - [1661] = { - [sym_command_name] = ACTIONS(6357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(6359), - [anon_sym_RBRACK] = ACTIONS(6359), - [anon_sym_COMMA] = ACTIONS(6359), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LPAREN] = ACTIONS(6359), - [anon_sym_RPAREN] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6359), - [anon_sym_RBRACE] = ACTIONS(6359), - [sym_word] = ACTIONS(6357), - [sym_placeholder] = ACTIONS(6359), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6359), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_LT] = ACTIONS(6357), - [anon_sym_GT] = ACTIONS(6357), - [anon_sym_BANG] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_SQUOTE] = ACTIONS(6357), - [anon_sym__] = ACTIONS(6359), - [anon_sym_CARET] = ACTIONS(6359), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6359), - [anon_sym_DOLLAR] = ACTIONS(6357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6359), - [anon_sym_BSLASHtitle] = ACTIONS(6357), - [anon_sym_BSLASHauthor] = ACTIONS(6357), - [anon_sym_BSLASHusepackage] = ACTIONS(6357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6357), - [anon_sym_BSLASHinclude] = ACTIONS(6357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6357), - [anon_sym_BSLASHinput] = ACTIONS(6357), - [anon_sym_BSLASHsubfile] = ACTIONS(6357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6357), - [anon_sym_BSLASHbibliography] = ACTIONS(6357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6357), - [anon_sym_BSLASHincludesvg] = ACTIONS(6357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6357), - [anon_sym_BSLASHimport] = ACTIONS(6357), - [anon_sym_BSLASHsubimport] = ACTIONS(6357), - [anon_sym_BSLASHinputfrom] = ACTIONS(6357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6357), - [anon_sym_BSLASHincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHcaption] = ACTIONS(6357), - [anon_sym_BSLASHcite] = ACTIONS(6357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCite] = ACTIONS(6357), - [anon_sym_BSLASHnocite] = ACTIONS(6357), - [anon_sym_BSLASHcitet] = ACTIONS(6357), - [anon_sym_BSLASHcitep] = ACTIONS(6357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteauthor] = ACTIONS(6357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitetitle] = ACTIONS(6357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteyear] = ACTIONS(6357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitedate] = ACTIONS(6357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteurl] = ACTIONS(6357), - [anon_sym_BSLASHfullcite] = ACTIONS(6357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6357), - [anon_sym_BSLASHcitealt] = ACTIONS(6357), - [anon_sym_BSLASHcitealp] = ACTIONS(6357), - [anon_sym_BSLASHcitetext] = ACTIONS(6357), - [anon_sym_BSLASHparencite] = ACTIONS(6357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHParencite] = ACTIONS(6357), - [anon_sym_BSLASHfootcite] = ACTIONS(6357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6357), - [anon_sym_BSLASHtextcite] = ACTIONS(6357), - [anon_sym_BSLASHTextcite] = ACTIONS(6357), - [anon_sym_BSLASHsmartcite] = ACTIONS(6357), - [anon_sym_BSLASHSmartcite] = ACTIONS(6357), - [anon_sym_BSLASHsupercite] = ACTIONS(6357), - [anon_sym_BSLASHautocite] = ACTIONS(6357), - [anon_sym_BSLASHAutocite] = ACTIONS(6357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHvolcite] = ACTIONS(6357), - [anon_sym_BSLASHVolcite] = ACTIONS(6357), - [anon_sym_BSLASHpvolcite] = ACTIONS(6357), - [anon_sym_BSLASHPvolcite] = ACTIONS(6357), - [anon_sym_BSLASHfvolcite] = ACTIONS(6357), - [anon_sym_BSLASHftvolcite] = ACTIONS(6357), - [anon_sym_BSLASHsvolcite] = ACTIONS(6357), - [anon_sym_BSLASHSvolcite] = ACTIONS(6357), - [anon_sym_BSLASHtvolcite] = ACTIONS(6357), - [anon_sym_BSLASHTvolcite] = ACTIONS(6357), - [anon_sym_BSLASHavolcite] = ACTIONS(6357), - [anon_sym_BSLASHAvolcite] = ACTIONS(6357), - [anon_sym_BSLASHnotecite] = ACTIONS(6357), - [anon_sym_BSLASHNotecite] = ACTIONS(6357), - [anon_sym_BSLASHpnotecite] = ACTIONS(6357), - [anon_sym_BSLASHPnotecite] = ACTIONS(6357), - [anon_sym_BSLASHfnotecite] = ACTIONS(6357), - [anon_sym_BSLASHlabel] = ACTIONS(6357), - [anon_sym_BSLASHref] = ACTIONS(6357), - [anon_sym_BSLASHeqref] = ACTIONS(6357), - [anon_sym_BSLASHvref] = ACTIONS(6357), - [anon_sym_BSLASHVref] = ACTIONS(6357), - [anon_sym_BSLASHautoref] = ACTIONS(6357), - [anon_sym_BSLASHpageref] = ACTIONS(6357), - [anon_sym_BSLASHcref] = ACTIONS(6357), - [anon_sym_BSLASHCref] = ACTIONS(6357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnameCref] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHlabelcref] = ACTIONS(6357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCrefrange] = ACTIONS(6357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnewlabel] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6359), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHdef] = ACTIONS(6357), - [anon_sym_BSLASHlet] = ACTIONS(6357), - [anon_sym_BSLASHleft] = ACTIONS(6357), - [anon_sym_BSLASHbig] = ACTIONS(6357), - [anon_sym_BSLASHBig] = ACTIONS(6357), - [anon_sym_BSLASHbigg] = ACTIONS(6357), - [anon_sym_BSLASHBigg] = ACTIONS(6357), - [anon_sym_BSLASHbigl] = ACTIONS(6357), - [anon_sym_BSLASHBigl] = ACTIONS(6357), - [anon_sym_BSLASHbiggl] = ACTIONS(6357), - [anon_sym_BSLASHBiggl] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6357), - [anon_sym_BSLASHgls] = ACTIONS(6357), - [anon_sym_BSLASHGls] = ACTIONS(6357), - [anon_sym_BSLASHGLS] = ACTIONS(6357), - [anon_sym_BSLASHglspl] = ACTIONS(6357), - [anon_sym_BSLASHGlspl] = ACTIONS(6357), - [anon_sym_BSLASHGLSpl] = ACTIONS(6357), - [anon_sym_BSLASHglsdisp] = ACTIONS(6357), - [anon_sym_BSLASHglslink] = ACTIONS(6357), - [anon_sym_BSLASHglstext] = ACTIONS(6357), - [anon_sym_BSLASHGlstext] = ACTIONS(6357), - [anon_sym_BSLASHGLStext] = ACTIONS(6357), - [anon_sym_BSLASHglsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6357), - [anon_sym_BSLASHglsplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSplural] = ACTIONS(6357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHglsname] = ACTIONS(6357), - [anon_sym_BSLASHGlsname] = ACTIONS(6357), - [anon_sym_BSLASHGLSname] = ACTIONS(6357), - [anon_sym_BSLASHglssymbol] = ACTIONS(6357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6357), - [anon_sym_BSLASHglsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6357), - [anon_sym_BSLASHglsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6357), - [anon_sym_BSLASHglsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6357), - [anon_sym_BSLASHglsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6357), - [anon_sym_BSLASHglsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6357), - [anon_sym_BSLASHnewacronym] = ACTIONS(6357), - [anon_sym_BSLASHacrshort] = ACTIONS(6357), - [anon_sym_BSLASHAcrshort] = ACTIONS(6357), - [anon_sym_BSLASHACRshort] = ACTIONS(6357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6357), - [anon_sym_BSLASHacrlong] = ACTIONS(6357), - [anon_sym_BSLASHAcrlong] = ACTIONS(6357), - [anon_sym_BSLASHACRlong] = ACTIONS(6357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6357), - [anon_sym_BSLASHacrfull] = ACTIONS(6357), - [anon_sym_BSLASHAcrfull] = ACTIONS(6357), - [anon_sym_BSLASHACRfull] = ACTIONS(6357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6357), - [anon_sym_BSLASHacs] = ACTIONS(6357), - [anon_sym_BSLASHAcs] = ACTIONS(6357), - [anon_sym_BSLASHacsp] = ACTIONS(6357), - [anon_sym_BSLASHAcsp] = ACTIONS(6357), - [anon_sym_BSLASHacl] = ACTIONS(6357), - [anon_sym_BSLASHAcl] = ACTIONS(6357), - [anon_sym_BSLASHaclp] = ACTIONS(6357), - [anon_sym_BSLASHAclp] = ACTIONS(6357), - [anon_sym_BSLASHacf] = ACTIONS(6357), - [anon_sym_BSLASHAcf] = ACTIONS(6357), - [anon_sym_BSLASHacfp] = ACTIONS(6357), - [anon_sym_BSLASHAcfp] = ACTIONS(6357), - [anon_sym_BSLASHac] = ACTIONS(6357), - [anon_sym_BSLASHAc] = ACTIONS(6357), - [anon_sym_BSLASHacp] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6357), - [anon_sym_BSLASHcolor] = ACTIONS(6357), - [anon_sym_BSLASHcolorbox] = ACTIONS(6357), - [anon_sym_BSLASHtextcolor] = ACTIONS(6357), - [anon_sym_BSLASHpagecolor] = ACTIONS(6357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6357), - [anon_sym_BSLASHtext] = ACTIONS(6357), - [anon_sym_BSLASHintertext] = ACTIONS(6357), - [anon_sym_shortintertext] = ACTIONS(6357), - }, - [1662] = { - [sym_command_name] = ACTIONS(6353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6353), - [anon_sym_LBRACK] = ACTIONS(6355), - [anon_sym_RBRACK] = ACTIONS(6355), - [anon_sym_COMMA] = ACTIONS(6355), - [anon_sym_EQ] = ACTIONS(6355), - [anon_sym_LPAREN] = ACTIONS(6355), - [anon_sym_RPAREN] = ACTIONS(6355), - [anon_sym_LBRACE] = ACTIONS(6355), - [anon_sym_RBRACE] = ACTIONS(6355), - [sym_word] = ACTIONS(6353), - [sym_placeholder] = ACTIONS(6355), - [anon_sym_PLUS] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [anon_sym_STAR] = ACTIONS(6355), - [anon_sym_SLASH] = ACTIONS(6355), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_COLON] = ACTIONS(6353), - [anon_sym_SQUOTE] = ACTIONS(6353), - [anon_sym__] = ACTIONS(6355), - [anon_sym_CARET] = ACTIONS(6355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6355), - [anon_sym_DOLLAR] = ACTIONS(6353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6355), - [anon_sym_BSLASHtitle] = ACTIONS(6353), - [anon_sym_BSLASHauthor] = ACTIONS(6353), - [anon_sym_BSLASHusepackage] = ACTIONS(6353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6353), - [anon_sym_BSLASHinclude] = ACTIONS(6353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6353), - [anon_sym_BSLASHinput] = ACTIONS(6353), - [anon_sym_BSLASHsubfile] = ACTIONS(6353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6353), - [anon_sym_BSLASHbibliography] = ACTIONS(6353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6353), - [anon_sym_BSLASHincludesvg] = ACTIONS(6353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6353), - [anon_sym_BSLASHimport] = ACTIONS(6353), - [anon_sym_BSLASHsubimport] = ACTIONS(6353), - [anon_sym_BSLASHinputfrom] = ACTIONS(6353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6353), - [anon_sym_BSLASHincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHcaption] = ACTIONS(6353), - [anon_sym_BSLASHcite] = ACTIONS(6353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCite] = ACTIONS(6353), - [anon_sym_BSLASHnocite] = ACTIONS(6353), - [anon_sym_BSLASHcitet] = ACTIONS(6353), - [anon_sym_BSLASHcitep] = ACTIONS(6353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteauthor] = ACTIONS(6353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitetitle] = ACTIONS(6353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteyear] = ACTIONS(6353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitedate] = ACTIONS(6353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteurl] = ACTIONS(6353), - [anon_sym_BSLASHfullcite] = ACTIONS(6353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6353), - [anon_sym_BSLASHcitealt] = ACTIONS(6353), - [anon_sym_BSLASHcitealp] = ACTIONS(6353), - [anon_sym_BSLASHcitetext] = ACTIONS(6353), - [anon_sym_BSLASHparencite] = ACTIONS(6353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHParencite] = ACTIONS(6353), - [anon_sym_BSLASHfootcite] = ACTIONS(6353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6353), - [anon_sym_BSLASHtextcite] = ACTIONS(6353), - [anon_sym_BSLASHTextcite] = ACTIONS(6353), - [anon_sym_BSLASHsmartcite] = ACTIONS(6353), - [anon_sym_BSLASHSmartcite] = ACTIONS(6353), - [anon_sym_BSLASHsupercite] = ACTIONS(6353), - [anon_sym_BSLASHautocite] = ACTIONS(6353), - [anon_sym_BSLASHAutocite] = ACTIONS(6353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHvolcite] = ACTIONS(6353), - [anon_sym_BSLASHVolcite] = ACTIONS(6353), - [anon_sym_BSLASHpvolcite] = ACTIONS(6353), - [anon_sym_BSLASHPvolcite] = ACTIONS(6353), - [anon_sym_BSLASHfvolcite] = ACTIONS(6353), - [anon_sym_BSLASHftvolcite] = ACTIONS(6353), - [anon_sym_BSLASHsvolcite] = ACTIONS(6353), - [anon_sym_BSLASHSvolcite] = ACTIONS(6353), - [anon_sym_BSLASHtvolcite] = ACTIONS(6353), - [anon_sym_BSLASHTvolcite] = ACTIONS(6353), - [anon_sym_BSLASHavolcite] = ACTIONS(6353), - [anon_sym_BSLASHAvolcite] = ACTIONS(6353), - [anon_sym_BSLASHnotecite] = ACTIONS(6353), - [anon_sym_BSLASHNotecite] = ACTIONS(6353), - [anon_sym_BSLASHpnotecite] = ACTIONS(6353), - [anon_sym_BSLASHPnotecite] = ACTIONS(6353), - [anon_sym_BSLASHfnotecite] = ACTIONS(6353), - [anon_sym_BSLASHlabel] = ACTIONS(6353), - [anon_sym_BSLASHref] = ACTIONS(6353), - [anon_sym_BSLASHeqref] = ACTIONS(6353), - [anon_sym_BSLASHvref] = ACTIONS(6353), - [anon_sym_BSLASHVref] = ACTIONS(6353), - [anon_sym_BSLASHautoref] = ACTIONS(6353), - [anon_sym_BSLASHpageref] = ACTIONS(6353), - [anon_sym_BSLASHcref] = ACTIONS(6353), - [anon_sym_BSLASHCref] = ACTIONS(6353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnameCref] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHlabelcref] = ACTIONS(6353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCrefrange] = ACTIONS(6353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnewlabel] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6355), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHdef] = ACTIONS(6353), - [anon_sym_BSLASHlet] = ACTIONS(6353), - [anon_sym_BSLASHleft] = ACTIONS(6353), - [anon_sym_BSLASHbig] = ACTIONS(6353), - [anon_sym_BSLASHBig] = ACTIONS(6353), - [anon_sym_BSLASHbigg] = ACTIONS(6353), - [anon_sym_BSLASHBigg] = ACTIONS(6353), - [anon_sym_BSLASHbigl] = ACTIONS(6353), - [anon_sym_BSLASHBigl] = ACTIONS(6353), - [anon_sym_BSLASHbiggl] = ACTIONS(6353), - [anon_sym_BSLASHBiggl] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6353), - [anon_sym_BSLASHgls] = ACTIONS(6353), - [anon_sym_BSLASHGls] = ACTIONS(6353), - [anon_sym_BSLASHGLS] = ACTIONS(6353), - [anon_sym_BSLASHglspl] = ACTIONS(6353), - [anon_sym_BSLASHGlspl] = ACTIONS(6353), - [anon_sym_BSLASHGLSpl] = ACTIONS(6353), - [anon_sym_BSLASHglsdisp] = ACTIONS(6353), - [anon_sym_BSLASHglslink] = ACTIONS(6353), - [anon_sym_BSLASHglstext] = ACTIONS(6353), - [anon_sym_BSLASHGlstext] = ACTIONS(6353), - [anon_sym_BSLASHGLStext] = ACTIONS(6353), - [anon_sym_BSLASHglsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6353), - [anon_sym_BSLASHglsplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSplural] = ACTIONS(6353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHglsname] = ACTIONS(6353), - [anon_sym_BSLASHGlsname] = ACTIONS(6353), - [anon_sym_BSLASHGLSname] = ACTIONS(6353), - [anon_sym_BSLASHglssymbol] = ACTIONS(6353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6353), - [anon_sym_BSLASHglsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6353), - [anon_sym_BSLASHglsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6353), - [anon_sym_BSLASHglsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6353), - [anon_sym_BSLASHglsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6353), - [anon_sym_BSLASHglsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6353), - [anon_sym_BSLASHnewacronym] = ACTIONS(6353), - [anon_sym_BSLASHacrshort] = ACTIONS(6353), - [anon_sym_BSLASHAcrshort] = ACTIONS(6353), - [anon_sym_BSLASHACRshort] = ACTIONS(6353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6353), - [anon_sym_BSLASHacrlong] = ACTIONS(6353), - [anon_sym_BSLASHAcrlong] = ACTIONS(6353), - [anon_sym_BSLASHACRlong] = ACTIONS(6353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6353), - [anon_sym_BSLASHacrfull] = ACTIONS(6353), - [anon_sym_BSLASHAcrfull] = ACTIONS(6353), - [anon_sym_BSLASHACRfull] = ACTIONS(6353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6353), - [anon_sym_BSLASHacs] = ACTIONS(6353), - [anon_sym_BSLASHAcs] = ACTIONS(6353), - [anon_sym_BSLASHacsp] = ACTIONS(6353), - [anon_sym_BSLASHAcsp] = ACTIONS(6353), - [anon_sym_BSLASHacl] = ACTIONS(6353), - [anon_sym_BSLASHAcl] = ACTIONS(6353), - [anon_sym_BSLASHaclp] = ACTIONS(6353), - [anon_sym_BSLASHAclp] = ACTIONS(6353), - [anon_sym_BSLASHacf] = ACTIONS(6353), - [anon_sym_BSLASHAcf] = ACTIONS(6353), - [anon_sym_BSLASHacfp] = ACTIONS(6353), - [anon_sym_BSLASHAcfp] = ACTIONS(6353), - [anon_sym_BSLASHac] = ACTIONS(6353), - [anon_sym_BSLASHAc] = ACTIONS(6353), - [anon_sym_BSLASHacp] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6353), - [anon_sym_BSLASHcolor] = ACTIONS(6353), - [anon_sym_BSLASHcolorbox] = ACTIONS(6353), - [anon_sym_BSLASHtextcolor] = ACTIONS(6353), - [anon_sym_BSLASHpagecolor] = ACTIONS(6353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6353), - [anon_sym_BSLASHtext] = ACTIONS(6353), - [anon_sym_BSLASHintertext] = ACTIONS(6353), - [anon_sym_shortintertext] = ACTIONS(6353), - }, - [1663] = { - [sym_command_name] = ACTIONS(6201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6201), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_EQ] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6203), - [sym_word] = ACTIONS(6201), - [sym_placeholder] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_SQUOTE] = ACTIONS(6201), - [anon_sym__] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), - [anon_sym_DOLLAR] = ACTIONS(6201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), - [anon_sym_BSLASHbegin] = ACTIONS(6201), - [anon_sym_BSLASHtitle] = ACTIONS(6201), - [anon_sym_BSLASHauthor] = ACTIONS(6201), - [anon_sym_BSLASHusepackage] = ACTIONS(6201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), - [anon_sym_BSLASHinclude] = ACTIONS(6201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), - [anon_sym_BSLASHinput] = ACTIONS(6201), - [anon_sym_BSLASHsubfile] = ACTIONS(6201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), - [anon_sym_BSLASHbibliography] = ACTIONS(6201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), - [anon_sym_BSLASHincludesvg] = ACTIONS(6201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), - [anon_sym_BSLASHimport] = ACTIONS(6201), - [anon_sym_BSLASHsubimport] = ACTIONS(6201), - [anon_sym_BSLASHinputfrom] = ACTIONS(6201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), - [anon_sym_BSLASHincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHcaption] = ACTIONS(6201), - [anon_sym_BSLASHcite] = ACTIONS(6201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCite] = ACTIONS(6201), - [anon_sym_BSLASHnocite] = ACTIONS(6201), - [anon_sym_BSLASHcitet] = ACTIONS(6201), - [anon_sym_BSLASHcitep] = ACTIONS(6201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteauthor] = ACTIONS(6201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitetitle] = ACTIONS(6201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteyear] = ACTIONS(6201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitedate] = ACTIONS(6201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteurl] = ACTIONS(6201), - [anon_sym_BSLASHfullcite] = ACTIONS(6201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), - [anon_sym_BSLASHcitealt] = ACTIONS(6201), - [anon_sym_BSLASHcitealp] = ACTIONS(6201), - [anon_sym_BSLASHcitetext] = ACTIONS(6201), - [anon_sym_BSLASHparencite] = ACTIONS(6201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHParencite] = ACTIONS(6201), - [anon_sym_BSLASHfootcite] = ACTIONS(6201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), - [anon_sym_BSLASHtextcite] = ACTIONS(6201), - [anon_sym_BSLASHTextcite] = ACTIONS(6201), - [anon_sym_BSLASHsmartcite] = ACTIONS(6201), - [anon_sym_BSLASHSmartcite] = ACTIONS(6201), - [anon_sym_BSLASHsupercite] = ACTIONS(6201), - [anon_sym_BSLASHautocite] = ACTIONS(6201), - [anon_sym_BSLASHAutocite] = ACTIONS(6201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHvolcite] = ACTIONS(6201), - [anon_sym_BSLASHVolcite] = ACTIONS(6201), - [anon_sym_BSLASHpvolcite] = ACTIONS(6201), - [anon_sym_BSLASHPvolcite] = ACTIONS(6201), - [anon_sym_BSLASHfvolcite] = ACTIONS(6201), - [anon_sym_BSLASHftvolcite] = ACTIONS(6201), - [anon_sym_BSLASHsvolcite] = ACTIONS(6201), - [anon_sym_BSLASHSvolcite] = ACTIONS(6201), - [anon_sym_BSLASHtvolcite] = ACTIONS(6201), - [anon_sym_BSLASHTvolcite] = ACTIONS(6201), - [anon_sym_BSLASHavolcite] = ACTIONS(6201), - [anon_sym_BSLASHAvolcite] = ACTIONS(6201), - [anon_sym_BSLASHnotecite] = ACTIONS(6201), - [anon_sym_BSLASHNotecite] = ACTIONS(6201), - [anon_sym_BSLASHpnotecite] = ACTIONS(6201), - [anon_sym_BSLASHPnotecite] = ACTIONS(6201), - [anon_sym_BSLASHfnotecite] = ACTIONS(6201), - [anon_sym_BSLASHlabel] = ACTIONS(6201), - [anon_sym_BSLASHref] = ACTIONS(6201), - [anon_sym_BSLASHeqref] = ACTIONS(6201), - [anon_sym_BSLASHvref] = ACTIONS(6201), - [anon_sym_BSLASHVref] = ACTIONS(6201), - [anon_sym_BSLASHautoref] = ACTIONS(6201), - [anon_sym_BSLASHpageref] = ACTIONS(6201), - [anon_sym_BSLASHcref] = ACTIONS(6201), - [anon_sym_BSLASHCref] = ACTIONS(6201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnameCref] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHlabelcref] = ACTIONS(6201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCrefrange] = ACTIONS(6201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnewlabel] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHdef] = ACTIONS(6201), - [anon_sym_BSLASHlet] = ACTIONS(6201), - [anon_sym_BSLASHleft] = ACTIONS(6201), - [anon_sym_BSLASHbig] = ACTIONS(6201), - [anon_sym_BSLASHBig] = ACTIONS(6201), - [anon_sym_BSLASHbigg] = ACTIONS(6201), - [anon_sym_BSLASHBigg] = ACTIONS(6201), - [anon_sym_BSLASHbigl] = ACTIONS(6201), - [anon_sym_BSLASHBigl] = ACTIONS(6201), - [anon_sym_BSLASHbiggl] = ACTIONS(6201), - [anon_sym_BSLASHBiggl] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), - [anon_sym_BSLASHgls] = ACTIONS(6201), - [anon_sym_BSLASHGls] = ACTIONS(6201), - [anon_sym_BSLASHGLS] = ACTIONS(6201), - [anon_sym_BSLASHglspl] = ACTIONS(6201), - [anon_sym_BSLASHGlspl] = ACTIONS(6201), - [anon_sym_BSLASHGLSpl] = ACTIONS(6201), - [anon_sym_BSLASHglsdisp] = ACTIONS(6201), - [anon_sym_BSLASHglslink] = ACTIONS(6201), - [anon_sym_BSLASHglstext] = ACTIONS(6201), - [anon_sym_BSLASHGlstext] = ACTIONS(6201), - [anon_sym_BSLASHGLStext] = ACTIONS(6201), - [anon_sym_BSLASHglsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), - [anon_sym_BSLASHglsplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSplural] = ACTIONS(6201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHglsname] = ACTIONS(6201), - [anon_sym_BSLASHGlsname] = ACTIONS(6201), - [anon_sym_BSLASHGLSname] = ACTIONS(6201), - [anon_sym_BSLASHglssymbol] = ACTIONS(6201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), - [anon_sym_BSLASHglsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), - [anon_sym_BSLASHglsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), - [anon_sym_BSLASHglsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), - [anon_sym_BSLASHglsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), - [anon_sym_BSLASHglsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), - [anon_sym_BSLASHnewacronym] = ACTIONS(6201), - [anon_sym_BSLASHacrshort] = ACTIONS(6201), - [anon_sym_BSLASHAcrshort] = ACTIONS(6201), - [anon_sym_BSLASHACRshort] = ACTIONS(6201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), - [anon_sym_BSLASHacrlong] = ACTIONS(6201), - [anon_sym_BSLASHAcrlong] = ACTIONS(6201), - [anon_sym_BSLASHACRlong] = ACTIONS(6201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), - [anon_sym_BSLASHacrfull] = ACTIONS(6201), - [anon_sym_BSLASHAcrfull] = ACTIONS(6201), - [anon_sym_BSLASHACRfull] = ACTIONS(6201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), - [anon_sym_BSLASHacs] = ACTIONS(6201), - [anon_sym_BSLASHAcs] = ACTIONS(6201), - [anon_sym_BSLASHacsp] = ACTIONS(6201), - [anon_sym_BSLASHAcsp] = ACTIONS(6201), - [anon_sym_BSLASHacl] = ACTIONS(6201), - [anon_sym_BSLASHAcl] = ACTIONS(6201), - [anon_sym_BSLASHaclp] = ACTIONS(6201), - [anon_sym_BSLASHAclp] = ACTIONS(6201), - [anon_sym_BSLASHacf] = ACTIONS(6201), - [anon_sym_BSLASHAcf] = ACTIONS(6201), - [anon_sym_BSLASHacfp] = ACTIONS(6201), - [anon_sym_BSLASHAcfp] = ACTIONS(6201), - [anon_sym_BSLASHac] = ACTIONS(6201), - [anon_sym_BSLASHAc] = ACTIONS(6201), - [anon_sym_BSLASHacp] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), - [anon_sym_BSLASHcolor] = ACTIONS(6201), - [anon_sym_BSLASHcolorbox] = ACTIONS(6201), - [anon_sym_BSLASHtextcolor] = ACTIONS(6201), - [anon_sym_BSLASHpagecolor] = ACTIONS(6201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), - [anon_sym_BSLASHtext] = ACTIONS(6201), - [anon_sym_BSLASHintertext] = ACTIONS(6201), - [anon_sym_shortintertext] = ACTIONS(6201), - }, - [1664] = { - [sym_command_name] = ACTIONS(6237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6237), - [anon_sym_LBRACK] = ACTIONS(6239), - [anon_sym_RBRACK] = ACTIONS(6239), - [anon_sym_COMMA] = ACTIONS(6239), - [anon_sym_EQ] = ACTIONS(6239), - [anon_sym_LPAREN] = ACTIONS(6239), - [anon_sym_RPAREN] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6239), - [anon_sym_RBRACE] = ACTIONS(6239), - [sym_word] = ACTIONS(6237), - [sym_placeholder] = ACTIONS(6239), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6239), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_BANG] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_SQUOTE] = ACTIONS(6237), - [anon_sym__] = ACTIONS(6239), - [anon_sym_CARET] = ACTIONS(6239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), - [anon_sym_DOLLAR] = ACTIONS(6237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), - [anon_sym_BSLASHtitle] = ACTIONS(6237), - [anon_sym_BSLASHauthor] = ACTIONS(6237), - [anon_sym_BSLASHusepackage] = ACTIONS(6237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6237), - [anon_sym_BSLASHinclude] = ACTIONS(6237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6237), - [anon_sym_BSLASHinput] = ACTIONS(6237), - [anon_sym_BSLASHsubfile] = ACTIONS(6237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6237), - [anon_sym_BSLASHbibliography] = ACTIONS(6237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6237), - [anon_sym_BSLASHincludesvg] = ACTIONS(6237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6237), - [anon_sym_BSLASHimport] = ACTIONS(6237), - [anon_sym_BSLASHsubimport] = ACTIONS(6237), - [anon_sym_BSLASHinputfrom] = ACTIONS(6237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6237), - [anon_sym_BSLASHincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHcaption] = ACTIONS(6237), - [anon_sym_BSLASHcite] = ACTIONS(6237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCite] = ACTIONS(6237), - [anon_sym_BSLASHnocite] = ACTIONS(6237), - [anon_sym_BSLASHcitet] = ACTIONS(6237), - [anon_sym_BSLASHcitep] = ACTIONS(6237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteauthor] = ACTIONS(6237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitetitle] = ACTIONS(6237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteyear] = ACTIONS(6237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitedate] = ACTIONS(6237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteurl] = ACTIONS(6237), - [anon_sym_BSLASHfullcite] = ACTIONS(6237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6237), - [anon_sym_BSLASHcitealt] = ACTIONS(6237), - [anon_sym_BSLASHcitealp] = ACTIONS(6237), - [anon_sym_BSLASHcitetext] = ACTIONS(6237), - [anon_sym_BSLASHparencite] = ACTIONS(6237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHParencite] = ACTIONS(6237), - [anon_sym_BSLASHfootcite] = ACTIONS(6237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6237), - [anon_sym_BSLASHtextcite] = ACTIONS(6237), - [anon_sym_BSLASHTextcite] = ACTIONS(6237), - [anon_sym_BSLASHsmartcite] = ACTIONS(6237), - [anon_sym_BSLASHSmartcite] = ACTIONS(6237), - [anon_sym_BSLASHsupercite] = ACTIONS(6237), - [anon_sym_BSLASHautocite] = ACTIONS(6237), - [anon_sym_BSLASHAutocite] = ACTIONS(6237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHvolcite] = ACTIONS(6237), - [anon_sym_BSLASHVolcite] = ACTIONS(6237), - [anon_sym_BSLASHpvolcite] = ACTIONS(6237), - [anon_sym_BSLASHPvolcite] = ACTIONS(6237), - [anon_sym_BSLASHfvolcite] = ACTIONS(6237), - [anon_sym_BSLASHftvolcite] = ACTIONS(6237), - [anon_sym_BSLASHsvolcite] = ACTIONS(6237), - [anon_sym_BSLASHSvolcite] = ACTIONS(6237), - [anon_sym_BSLASHtvolcite] = ACTIONS(6237), - [anon_sym_BSLASHTvolcite] = ACTIONS(6237), - [anon_sym_BSLASHavolcite] = ACTIONS(6237), - [anon_sym_BSLASHAvolcite] = ACTIONS(6237), - [anon_sym_BSLASHnotecite] = ACTIONS(6237), - [anon_sym_BSLASHNotecite] = ACTIONS(6237), - [anon_sym_BSLASHpnotecite] = ACTIONS(6237), - [anon_sym_BSLASHPnotecite] = ACTIONS(6237), - [anon_sym_BSLASHfnotecite] = ACTIONS(6237), - [anon_sym_BSLASHlabel] = ACTIONS(6237), - [anon_sym_BSLASHref] = ACTIONS(6237), - [anon_sym_BSLASHeqref] = ACTIONS(6237), - [anon_sym_BSLASHvref] = ACTIONS(6237), - [anon_sym_BSLASHVref] = ACTIONS(6237), - [anon_sym_BSLASHautoref] = ACTIONS(6237), - [anon_sym_BSLASHpageref] = ACTIONS(6237), - [anon_sym_BSLASHcref] = ACTIONS(6237), - [anon_sym_BSLASHCref] = ACTIONS(6237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnameCref] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHlabelcref] = ACTIONS(6237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCrefrange] = ACTIONS(6237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnewlabel] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHdef] = ACTIONS(6237), - [anon_sym_BSLASHlet] = ACTIONS(6237), - [anon_sym_BSLASHleft] = ACTIONS(6237), - [anon_sym_BSLASHbig] = ACTIONS(6237), - [anon_sym_BSLASHBig] = ACTIONS(6237), - [anon_sym_BSLASHbigg] = ACTIONS(6237), - [anon_sym_BSLASHBigg] = ACTIONS(6237), - [anon_sym_BSLASHbigl] = ACTIONS(6237), - [anon_sym_BSLASHBigl] = ACTIONS(6237), - [anon_sym_BSLASHbiggl] = ACTIONS(6237), - [anon_sym_BSLASHBiggl] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6237), - [anon_sym_BSLASHgls] = ACTIONS(6237), - [anon_sym_BSLASHGls] = ACTIONS(6237), - [anon_sym_BSLASHGLS] = ACTIONS(6237), - [anon_sym_BSLASHglspl] = ACTIONS(6237), - [anon_sym_BSLASHGlspl] = ACTIONS(6237), - [anon_sym_BSLASHGLSpl] = ACTIONS(6237), - [anon_sym_BSLASHglsdisp] = ACTIONS(6237), - [anon_sym_BSLASHglslink] = ACTIONS(6237), - [anon_sym_BSLASHglstext] = ACTIONS(6237), - [anon_sym_BSLASHGlstext] = ACTIONS(6237), - [anon_sym_BSLASHGLStext] = ACTIONS(6237), - [anon_sym_BSLASHglsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6237), - [anon_sym_BSLASHglsplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSplural] = ACTIONS(6237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHglsname] = ACTIONS(6237), - [anon_sym_BSLASHGlsname] = ACTIONS(6237), - [anon_sym_BSLASHGLSname] = ACTIONS(6237), - [anon_sym_BSLASHglssymbol] = ACTIONS(6237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6237), - [anon_sym_BSLASHglsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6237), - [anon_sym_BSLASHglsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6237), - [anon_sym_BSLASHglsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6237), - [anon_sym_BSLASHglsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6237), - [anon_sym_BSLASHglsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6237), - [anon_sym_BSLASHnewacronym] = ACTIONS(6237), - [anon_sym_BSLASHacrshort] = ACTIONS(6237), - [anon_sym_BSLASHAcrshort] = ACTIONS(6237), - [anon_sym_BSLASHACRshort] = ACTIONS(6237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6237), - [anon_sym_BSLASHacrlong] = ACTIONS(6237), - [anon_sym_BSLASHAcrlong] = ACTIONS(6237), - [anon_sym_BSLASHACRlong] = ACTIONS(6237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6237), - [anon_sym_BSLASHacrfull] = ACTIONS(6237), - [anon_sym_BSLASHAcrfull] = ACTIONS(6237), - [anon_sym_BSLASHACRfull] = ACTIONS(6237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6237), - [anon_sym_BSLASHacs] = ACTIONS(6237), - [anon_sym_BSLASHAcs] = ACTIONS(6237), - [anon_sym_BSLASHacsp] = ACTIONS(6237), - [anon_sym_BSLASHAcsp] = ACTIONS(6237), - [anon_sym_BSLASHacl] = ACTIONS(6237), - [anon_sym_BSLASHAcl] = ACTIONS(6237), - [anon_sym_BSLASHaclp] = ACTIONS(6237), - [anon_sym_BSLASHAclp] = ACTIONS(6237), - [anon_sym_BSLASHacf] = ACTIONS(6237), - [anon_sym_BSLASHAcf] = ACTIONS(6237), - [anon_sym_BSLASHacfp] = ACTIONS(6237), - [anon_sym_BSLASHAcfp] = ACTIONS(6237), - [anon_sym_BSLASHac] = ACTIONS(6237), - [anon_sym_BSLASHAc] = ACTIONS(6237), - [anon_sym_BSLASHacp] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6237), - [anon_sym_BSLASHcolor] = ACTIONS(6237), - [anon_sym_BSLASHcolorbox] = ACTIONS(6237), - [anon_sym_BSLASHtextcolor] = ACTIONS(6237), - [anon_sym_BSLASHpagecolor] = ACTIONS(6237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6237), - [anon_sym_BSLASHtext] = ACTIONS(6237), - [anon_sym_BSLASHintertext] = ACTIONS(6237), - [anon_sym_shortintertext] = ACTIONS(6237), - }, - [1665] = { - [sym_command_name] = ACTIONS(6165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6165), - [anon_sym_LBRACK] = ACTIONS(6167), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_EQ] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_LBRACE] = ACTIONS(6167), - [sym_word] = ACTIONS(6165), - [sym_placeholder] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6167), - [anon_sym_DASH] = ACTIONS(6167), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_COLON] = ACTIONS(6165), - [anon_sym_SQUOTE] = ACTIONS(6165), - [anon_sym__] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6167), - [anon_sym_BSLASHbegin] = ACTIONS(6165), - [anon_sym_BSLASHtitle] = ACTIONS(6165), - [anon_sym_BSLASHauthor] = ACTIONS(6165), - [anon_sym_BSLASHusepackage] = ACTIONS(6165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6165), - [anon_sym_BSLASHinclude] = ACTIONS(6165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6165), - [anon_sym_BSLASHinput] = ACTIONS(6165), - [anon_sym_BSLASHsubfile] = ACTIONS(6165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6165), - [anon_sym_BSLASHbibliography] = ACTIONS(6165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6165), - [anon_sym_BSLASHincludesvg] = ACTIONS(6165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6165), - [anon_sym_BSLASHimport] = ACTIONS(6165), - [anon_sym_BSLASHsubimport] = ACTIONS(6165), - [anon_sym_BSLASHinputfrom] = ACTIONS(6165), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6165), - [anon_sym_BSLASHincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHcaption] = ACTIONS(6165), - [anon_sym_BSLASHcite] = ACTIONS(6165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCite] = ACTIONS(6165), - [anon_sym_BSLASHnocite] = ACTIONS(6165), - [anon_sym_BSLASHcitet] = ACTIONS(6165), - [anon_sym_BSLASHcitep] = ACTIONS(6165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteauthor] = ACTIONS(6165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitetitle] = ACTIONS(6165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteyear] = ACTIONS(6165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitedate] = ACTIONS(6165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteurl] = ACTIONS(6165), - [anon_sym_BSLASHfullcite] = ACTIONS(6165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6165), - [anon_sym_BSLASHcitealt] = ACTIONS(6165), - [anon_sym_BSLASHcitealp] = ACTIONS(6165), - [anon_sym_BSLASHcitetext] = ACTIONS(6165), - [anon_sym_BSLASHparencite] = ACTIONS(6165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHParencite] = ACTIONS(6165), - [anon_sym_BSLASHfootcite] = ACTIONS(6165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6165), - [anon_sym_BSLASHtextcite] = ACTIONS(6165), - [anon_sym_BSLASHTextcite] = ACTIONS(6165), - [anon_sym_BSLASHsmartcite] = ACTIONS(6165), - [anon_sym_BSLASHSmartcite] = ACTIONS(6165), - [anon_sym_BSLASHsupercite] = ACTIONS(6165), - [anon_sym_BSLASHautocite] = ACTIONS(6165), - [anon_sym_BSLASHAutocite] = ACTIONS(6165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHvolcite] = ACTIONS(6165), - [anon_sym_BSLASHVolcite] = ACTIONS(6165), - [anon_sym_BSLASHpvolcite] = ACTIONS(6165), - [anon_sym_BSLASHPvolcite] = ACTIONS(6165), - [anon_sym_BSLASHfvolcite] = ACTIONS(6165), - [anon_sym_BSLASHftvolcite] = ACTIONS(6165), - [anon_sym_BSLASHsvolcite] = ACTIONS(6165), - [anon_sym_BSLASHSvolcite] = ACTIONS(6165), - [anon_sym_BSLASHtvolcite] = ACTIONS(6165), - [anon_sym_BSLASHTvolcite] = ACTIONS(6165), - [anon_sym_BSLASHavolcite] = ACTIONS(6165), - [anon_sym_BSLASHAvolcite] = ACTIONS(6165), - [anon_sym_BSLASHnotecite] = ACTIONS(6165), - [anon_sym_BSLASHNotecite] = ACTIONS(6165), - [anon_sym_BSLASHpnotecite] = ACTIONS(6165), - [anon_sym_BSLASHPnotecite] = ACTIONS(6165), - [anon_sym_BSLASHfnotecite] = ACTIONS(6165), - [anon_sym_BSLASHlabel] = ACTIONS(6165), - [anon_sym_BSLASHref] = ACTIONS(6165), - [anon_sym_BSLASHeqref] = ACTIONS(6165), - [anon_sym_BSLASHvref] = ACTIONS(6165), - [anon_sym_BSLASHVref] = ACTIONS(6165), - [anon_sym_BSLASHautoref] = ACTIONS(6165), - [anon_sym_BSLASHpageref] = ACTIONS(6165), - [anon_sym_BSLASHcref] = ACTIONS(6165), - [anon_sym_BSLASHCref] = ACTIONS(6165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnameCref] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHlabelcref] = ACTIONS(6165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCrefrange] = ACTIONS(6165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnewlabel] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6167), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHdef] = ACTIONS(6165), - [anon_sym_BSLASHlet] = ACTIONS(6165), - [anon_sym_BSLASHleft] = ACTIONS(6165), - [anon_sym_BSLASHbig] = ACTIONS(6165), - [anon_sym_BSLASHBig] = ACTIONS(6165), - [anon_sym_BSLASHbigg] = ACTIONS(6165), - [anon_sym_BSLASHBigg] = ACTIONS(6165), - [anon_sym_BSLASHbigl] = ACTIONS(6165), - [anon_sym_BSLASHBigl] = ACTIONS(6165), - [anon_sym_BSLASHbiggl] = ACTIONS(6165), - [anon_sym_BSLASHBiggl] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6165), - [anon_sym_BSLASHgls] = ACTIONS(6165), - [anon_sym_BSLASHGls] = ACTIONS(6165), - [anon_sym_BSLASHGLS] = ACTIONS(6165), - [anon_sym_BSLASHglspl] = ACTIONS(6165), - [anon_sym_BSLASHGlspl] = ACTIONS(6165), - [anon_sym_BSLASHGLSpl] = ACTIONS(6165), - [anon_sym_BSLASHglsdisp] = ACTIONS(6165), - [anon_sym_BSLASHglslink] = ACTIONS(6165), - [anon_sym_BSLASHglstext] = ACTIONS(6165), - [anon_sym_BSLASHGlstext] = ACTIONS(6165), - [anon_sym_BSLASHGLStext] = ACTIONS(6165), - [anon_sym_BSLASHglsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6165), - [anon_sym_BSLASHglsplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSplural] = ACTIONS(6165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHglsname] = ACTIONS(6165), - [anon_sym_BSLASHGlsname] = ACTIONS(6165), - [anon_sym_BSLASHGLSname] = ACTIONS(6165), - [anon_sym_BSLASHglssymbol] = ACTIONS(6165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6165), - [anon_sym_BSLASHglsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6165), - [anon_sym_BSLASHglsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6165), - [anon_sym_BSLASHglsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6165), - [anon_sym_BSLASHglsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6165), - [anon_sym_BSLASHglsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6165), - [anon_sym_BSLASHnewacronym] = ACTIONS(6165), - [anon_sym_BSLASHacrshort] = ACTIONS(6165), - [anon_sym_BSLASHAcrshort] = ACTIONS(6165), - [anon_sym_BSLASHACRshort] = ACTIONS(6165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6165), - [anon_sym_BSLASHacrlong] = ACTIONS(6165), - [anon_sym_BSLASHAcrlong] = ACTIONS(6165), - [anon_sym_BSLASHACRlong] = ACTIONS(6165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6165), - [anon_sym_BSLASHacrfull] = ACTIONS(6165), - [anon_sym_BSLASHAcrfull] = ACTIONS(6165), - [anon_sym_BSLASHACRfull] = ACTIONS(6165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6165), - [anon_sym_BSLASHacs] = ACTIONS(6165), - [anon_sym_BSLASHAcs] = ACTIONS(6165), - [anon_sym_BSLASHacsp] = ACTIONS(6165), - [anon_sym_BSLASHAcsp] = ACTIONS(6165), - [anon_sym_BSLASHacl] = ACTIONS(6165), - [anon_sym_BSLASHAcl] = ACTIONS(6165), - [anon_sym_BSLASHaclp] = ACTIONS(6165), - [anon_sym_BSLASHAclp] = ACTIONS(6165), - [anon_sym_BSLASHacf] = ACTIONS(6165), - [anon_sym_BSLASHAcf] = ACTIONS(6165), - [anon_sym_BSLASHacfp] = ACTIONS(6165), - [anon_sym_BSLASHAcfp] = ACTIONS(6165), - [anon_sym_BSLASHac] = ACTIONS(6165), - [anon_sym_BSLASHAc] = ACTIONS(6165), - [anon_sym_BSLASHacp] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6165), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6165), - [anon_sym_BSLASHcolor] = ACTIONS(6165), - [anon_sym_BSLASHcolorbox] = ACTIONS(6165), - [anon_sym_BSLASHtextcolor] = ACTIONS(6165), - [anon_sym_BSLASHpagecolor] = ACTIONS(6165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6165), - [anon_sym_BSLASHtext] = ACTIONS(6165), - [anon_sym_BSLASHintertext] = ACTIONS(6165), - [anon_sym_shortintertext] = ACTIONS(6165), - }, - [1666] = { - [sym_command_name] = ACTIONS(6349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6349), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_EQ] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_LBRACE] = ACTIONS(6351), - [anon_sym_RBRACE] = ACTIONS(6351), - [sym_word] = ACTIONS(6349), - [sym_placeholder] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6351), - [anon_sym_DASH] = ACTIONS(6351), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_SQUOTE] = ACTIONS(6349), - [anon_sym__] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6351), - [anon_sym_DOLLAR] = ACTIONS(6349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6351), - [anon_sym_BSLASHtitle] = ACTIONS(6349), - [anon_sym_BSLASHauthor] = ACTIONS(6349), - [anon_sym_BSLASHusepackage] = ACTIONS(6349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6349), - [anon_sym_BSLASHinclude] = ACTIONS(6349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6349), - [anon_sym_BSLASHinput] = ACTIONS(6349), - [anon_sym_BSLASHsubfile] = ACTIONS(6349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6349), - [anon_sym_BSLASHbibliography] = ACTIONS(6349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6349), - [anon_sym_BSLASHincludesvg] = ACTIONS(6349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6349), - [anon_sym_BSLASHimport] = ACTIONS(6349), - [anon_sym_BSLASHsubimport] = ACTIONS(6349), - [anon_sym_BSLASHinputfrom] = ACTIONS(6349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6349), - [anon_sym_BSLASHincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHcaption] = ACTIONS(6349), - [anon_sym_BSLASHcite] = ACTIONS(6349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCite] = ACTIONS(6349), - [anon_sym_BSLASHnocite] = ACTIONS(6349), - [anon_sym_BSLASHcitet] = ACTIONS(6349), - [anon_sym_BSLASHcitep] = ACTIONS(6349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteauthor] = ACTIONS(6349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitetitle] = ACTIONS(6349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteyear] = ACTIONS(6349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitedate] = ACTIONS(6349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteurl] = ACTIONS(6349), - [anon_sym_BSLASHfullcite] = ACTIONS(6349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6349), - [anon_sym_BSLASHcitealt] = ACTIONS(6349), - [anon_sym_BSLASHcitealp] = ACTIONS(6349), - [anon_sym_BSLASHcitetext] = ACTIONS(6349), - [anon_sym_BSLASHparencite] = ACTIONS(6349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHParencite] = ACTIONS(6349), - [anon_sym_BSLASHfootcite] = ACTIONS(6349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6349), - [anon_sym_BSLASHtextcite] = ACTIONS(6349), - [anon_sym_BSLASHTextcite] = ACTIONS(6349), - [anon_sym_BSLASHsmartcite] = ACTIONS(6349), - [anon_sym_BSLASHSmartcite] = ACTIONS(6349), - [anon_sym_BSLASHsupercite] = ACTIONS(6349), - [anon_sym_BSLASHautocite] = ACTIONS(6349), - [anon_sym_BSLASHAutocite] = ACTIONS(6349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHvolcite] = ACTIONS(6349), - [anon_sym_BSLASHVolcite] = ACTIONS(6349), - [anon_sym_BSLASHpvolcite] = ACTIONS(6349), - [anon_sym_BSLASHPvolcite] = ACTIONS(6349), - [anon_sym_BSLASHfvolcite] = ACTIONS(6349), - [anon_sym_BSLASHftvolcite] = ACTIONS(6349), - [anon_sym_BSLASHsvolcite] = ACTIONS(6349), - [anon_sym_BSLASHSvolcite] = ACTIONS(6349), - [anon_sym_BSLASHtvolcite] = ACTIONS(6349), - [anon_sym_BSLASHTvolcite] = ACTIONS(6349), - [anon_sym_BSLASHavolcite] = ACTIONS(6349), - [anon_sym_BSLASHAvolcite] = ACTIONS(6349), - [anon_sym_BSLASHnotecite] = ACTIONS(6349), - [anon_sym_BSLASHNotecite] = ACTIONS(6349), - [anon_sym_BSLASHpnotecite] = ACTIONS(6349), - [anon_sym_BSLASHPnotecite] = ACTIONS(6349), - [anon_sym_BSLASHfnotecite] = ACTIONS(6349), - [anon_sym_BSLASHlabel] = ACTIONS(6349), - [anon_sym_BSLASHref] = ACTIONS(6349), - [anon_sym_BSLASHeqref] = ACTIONS(6349), - [anon_sym_BSLASHvref] = ACTIONS(6349), - [anon_sym_BSLASHVref] = ACTIONS(6349), - [anon_sym_BSLASHautoref] = ACTIONS(6349), - [anon_sym_BSLASHpageref] = ACTIONS(6349), - [anon_sym_BSLASHcref] = ACTIONS(6349), - [anon_sym_BSLASHCref] = ACTIONS(6349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnameCref] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHlabelcref] = ACTIONS(6349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCrefrange] = ACTIONS(6349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnewlabel] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6351), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHdef] = ACTIONS(6349), - [anon_sym_BSLASHlet] = ACTIONS(6349), - [anon_sym_BSLASHleft] = ACTIONS(6349), - [anon_sym_BSLASHbig] = ACTIONS(6349), - [anon_sym_BSLASHBig] = ACTIONS(6349), - [anon_sym_BSLASHbigg] = ACTIONS(6349), - [anon_sym_BSLASHBigg] = ACTIONS(6349), - [anon_sym_BSLASHbigl] = ACTIONS(6349), - [anon_sym_BSLASHBigl] = ACTIONS(6349), - [anon_sym_BSLASHbiggl] = ACTIONS(6349), - [anon_sym_BSLASHBiggl] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6349), - [anon_sym_BSLASHgls] = ACTIONS(6349), - [anon_sym_BSLASHGls] = ACTIONS(6349), - [anon_sym_BSLASHGLS] = ACTIONS(6349), - [anon_sym_BSLASHglspl] = ACTIONS(6349), - [anon_sym_BSLASHGlspl] = ACTIONS(6349), - [anon_sym_BSLASHGLSpl] = ACTIONS(6349), - [anon_sym_BSLASHglsdisp] = ACTIONS(6349), - [anon_sym_BSLASHglslink] = ACTIONS(6349), - [anon_sym_BSLASHglstext] = ACTIONS(6349), - [anon_sym_BSLASHGlstext] = ACTIONS(6349), - [anon_sym_BSLASHGLStext] = ACTIONS(6349), - [anon_sym_BSLASHglsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6349), - [anon_sym_BSLASHglsplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSplural] = ACTIONS(6349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHglsname] = ACTIONS(6349), - [anon_sym_BSLASHGlsname] = ACTIONS(6349), - [anon_sym_BSLASHGLSname] = ACTIONS(6349), - [anon_sym_BSLASHglssymbol] = ACTIONS(6349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6349), - [anon_sym_BSLASHglsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6349), - [anon_sym_BSLASHglsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6349), - [anon_sym_BSLASHglsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6349), - [anon_sym_BSLASHglsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6349), - [anon_sym_BSLASHglsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6349), - [anon_sym_BSLASHnewacronym] = ACTIONS(6349), - [anon_sym_BSLASHacrshort] = ACTIONS(6349), - [anon_sym_BSLASHAcrshort] = ACTIONS(6349), - [anon_sym_BSLASHACRshort] = ACTIONS(6349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6349), - [anon_sym_BSLASHacrlong] = ACTIONS(6349), - [anon_sym_BSLASHAcrlong] = ACTIONS(6349), - [anon_sym_BSLASHACRlong] = ACTIONS(6349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6349), - [anon_sym_BSLASHacrfull] = ACTIONS(6349), - [anon_sym_BSLASHAcrfull] = ACTIONS(6349), - [anon_sym_BSLASHACRfull] = ACTIONS(6349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6349), - [anon_sym_BSLASHacs] = ACTIONS(6349), - [anon_sym_BSLASHAcs] = ACTIONS(6349), - [anon_sym_BSLASHacsp] = ACTIONS(6349), - [anon_sym_BSLASHAcsp] = ACTIONS(6349), - [anon_sym_BSLASHacl] = ACTIONS(6349), - [anon_sym_BSLASHAcl] = ACTIONS(6349), - [anon_sym_BSLASHaclp] = ACTIONS(6349), - [anon_sym_BSLASHAclp] = ACTIONS(6349), - [anon_sym_BSLASHacf] = ACTIONS(6349), - [anon_sym_BSLASHAcf] = ACTIONS(6349), - [anon_sym_BSLASHacfp] = ACTIONS(6349), - [anon_sym_BSLASHAcfp] = ACTIONS(6349), - [anon_sym_BSLASHac] = ACTIONS(6349), - [anon_sym_BSLASHAc] = ACTIONS(6349), - [anon_sym_BSLASHacp] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6349), - [anon_sym_BSLASHcolor] = ACTIONS(6349), - [anon_sym_BSLASHcolorbox] = ACTIONS(6349), - [anon_sym_BSLASHtextcolor] = ACTIONS(6349), - [anon_sym_BSLASHpagecolor] = ACTIONS(6349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6349), - [anon_sym_BSLASHtext] = ACTIONS(6349), - [anon_sym_BSLASHintertext] = ACTIONS(6349), - [anon_sym_shortintertext] = ACTIONS(6349), - }, - [1667] = { - [sym_command_name] = ACTIONS(6221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6221), - [anon_sym_LBRACK] = ACTIONS(6223), - [anon_sym_RBRACK] = ACTIONS(6223), - [anon_sym_COMMA] = ACTIONS(6223), - [anon_sym_EQ] = ACTIONS(6223), - [anon_sym_LPAREN] = ACTIONS(6223), - [anon_sym_RPAREN] = ACTIONS(6223), - [anon_sym_LBRACE] = ACTIONS(6223), - [anon_sym_RBRACE] = ACTIONS(6223), - [sym_word] = ACTIONS(6221), - [sym_placeholder] = ACTIONS(6223), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6223), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_LT] = ACTIONS(6221), - [anon_sym_GT] = ACTIONS(6221), - [anon_sym_BANG] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_SQUOTE] = ACTIONS(6221), - [anon_sym__] = ACTIONS(6223), - [anon_sym_CARET] = ACTIONS(6223), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6223), - [anon_sym_DOLLAR] = ACTIONS(6221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6223), - [anon_sym_BSLASHtitle] = ACTIONS(6221), - [anon_sym_BSLASHauthor] = ACTIONS(6221), - [anon_sym_BSLASHusepackage] = ACTIONS(6221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6221), - [anon_sym_BSLASHinclude] = ACTIONS(6221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6221), - [anon_sym_BSLASHinput] = ACTIONS(6221), - [anon_sym_BSLASHsubfile] = ACTIONS(6221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6221), - [anon_sym_BSLASHbibliography] = ACTIONS(6221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6221), - [anon_sym_BSLASHincludesvg] = ACTIONS(6221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6221), - [anon_sym_BSLASHimport] = ACTIONS(6221), - [anon_sym_BSLASHsubimport] = ACTIONS(6221), - [anon_sym_BSLASHinputfrom] = ACTIONS(6221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6221), - [anon_sym_BSLASHincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHcaption] = ACTIONS(6221), - [anon_sym_BSLASHcite] = ACTIONS(6221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCite] = ACTIONS(6221), - [anon_sym_BSLASHnocite] = ACTIONS(6221), - [anon_sym_BSLASHcitet] = ACTIONS(6221), - [anon_sym_BSLASHcitep] = ACTIONS(6221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteauthor] = ACTIONS(6221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitetitle] = ACTIONS(6221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteyear] = ACTIONS(6221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitedate] = ACTIONS(6221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteurl] = ACTIONS(6221), - [anon_sym_BSLASHfullcite] = ACTIONS(6221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6221), - [anon_sym_BSLASHcitealt] = ACTIONS(6221), - [anon_sym_BSLASHcitealp] = ACTIONS(6221), - [anon_sym_BSLASHcitetext] = ACTIONS(6221), - [anon_sym_BSLASHparencite] = ACTIONS(6221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHParencite] = ACTIONS(6221), - [anon_sym_BSLASHfootcite] = ACTIONS(6221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6221), - [anon_sym_BSLASHtextcite] = ACTIONS(6221), - [anon_sym_BSLASHTextcite] = ACTIONS(6221), - [anon_sym_BSLASHsmartcite] = ACTIONS(6221), - [anon_sym_BSLASHSmartcite] = ACTIONS(6221), - [anon_sym_BSLASHsupercite] = ACTIONS(6221), - [anon_sym_BSLASHautocite] = ACTIONS(6221), - [anon_sym_BSLASHAutocite] = ACTIONS(6221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHvolcite] = ACTIONS(6221), - [anon_sym_BSLASHVolcite] = ACTIONS(6221), - [anon_sym_BSLASHpvolcite] = ACTIONS(6221), - [anon_sym_BSLASHPvolcite] = ACTIONS(6221), - [anon_sym_BSLASHfvolcite] = ACTIONS(6221), - [anon_sym_BSLASHftvolcite] = ACTIONS(6221), - [anon_sym_BSLASHsvolcite] = ACTIONS(6221), - [anon_sym_BSLASHSvolcite] = ACTIONS(6221), - [anon_sym_BSLASHtvolcite] = ACTIONS(6221), - [anon_sym_BSLASHTvolcite] = ACTIONS(6221), - [anon_sym_BSLASHavolcite] = ACTIONS(6221), - [anon_sym_BSLASHAvolcite] = ACTIONS(6221), - [anon_sym_BSLASHnotecite] = ACTIONS(6221), - [anon_sym_BSLASHNotecite] = ACTIONS(6221), - [anon_sym_BSLASHpnotecite] = ACTIONS(6221), - [anon_sym_BSLASHPnotecite] = ACTIONS(6221), - [anon_sym_BSLASHfnotecite] = ACTIONS(6221), - [anon_sym_BSLASHlabel] = ACTIONS(6221), - [anon_sym_BSLASHref] = ACTIONS(6221), - [anon_sym_BSLASHeqref] = ACTIONS(6221), - [anon_sym_BSLASHvref] = ACTIONS(6221), - [anon_sym_BSLASHVref] = ACTIONS(6221), - [anon_sym_BSLASHautoref] = ACTIONS(6221), - [anon_sym_BSLASHpageref] = ACTIONS(6221), - [anon_sym_BSLASHcref] = ACTIONS(6221), - [anon_sym_BSLASHCref] = ACTIONS(6221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnameCref] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHlabelcref] = ACTIONS(6221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCrefrange] = ACTIONS(6221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnewlabel] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6223), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHdef] = ACTIONS(6221), - [anon_sym_BSLASHlet] = ACTIONS(6221), - [anon_sym_BSLASHleft] = ACTIONS(6221), - [anon_sym_BSLASHbig] = ACTIONS(6221), - [anon_sym_BSLASHBig] = ACTIONS(6221), - [anon_sym_BSLASHbigg] = ACTIONS(6221), - [anon_sym_BSLASHBigg] = ACTIONS(6221), - [anon_sym_BSLASHbigl] = ACTIONS(6221), - [anon_sym_BSLASHBigl] = ACTIONS(6221), - [anon_sym_BSLASHbiggl] = ACTIONS(6221), - [anon_sym_BSLASHBiggl] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6221), - [anon_sym_BSLASHgls] = ACTIONS(6221), - [anon_sym_BSLASHGls] = ACTIONS(6221), - [anon_sym_BSLASHGLS] = ACTIONS(6221), - [anon_sym_BSLASHglspl] = ACTIONS(6221), - [anon_sym_BSLASHGlspl] = ACTIONS(6221), - [anon_sym_BSLASHGLSpl] = ACTIONS(6221), - [anon_sym_BSLASHglsdisp] = ACTIONS(6221), - [anon_sym_BSLASHglslink] = ACTIONS(6221), - [anon_sym_BSLASHglstext] = ACTIONS(6221), - [anon_sym_BSLASHGlstext] = ACTIONS(6221), - [anon_sym_BSLASHGLStext] = ACTIONS(6221), - [anon_sym_BSLASHglsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6221), - [anon_sym_BSLASHglsplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSplural] = ACTIONS(6221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHglsname] = ACTIONS(6221), - [anon_sym_BSLASHGlsname] = ACTIONS(6221), - [anon_sym_BSLASHGLSname] = ACTIONS(6221), - [anon_sym_BSLASHglssymbol] = ACTIONS(6221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6221), - [anon_sym_BSLASHglsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6221), - [anon_sym_BSLASHglsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6221), - [anon_sym_BSLASHglsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6221), - [anon_sym_BSLASHglsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6221), - [anon_sym_BSLASHglsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6221), - [anon_sym_BSLASHnewacronym] = ACTIONS(6221), - [anon_sym_BSLASHacrshort] = ACTIONS(6221), - [anon_sym_BSLASHAcrshort] = ACTIONS(6221), - [anon_sym_BSLASHACRshort] = ACTIONS(6221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6221), - [anon_sym_BSLASHacrlong] = ACTIONS(6221), - [anon_sym_BSLASHAcrlong] = ACTIONS(6221), - [anon_sym_BSLASHACRlong] = ACTIONS(6221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6221), - [anon_sym_BSLASHacrfull] = ACTIONS(6221), - [anon_sym_BSLASHAcrfull] = ACTIONS(6221), - [anon_sym_BSLASHACRfull] = ACTIONS(6221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6221), - [anon_sym_BSLASHacs] = ACTIONS(6221), - [anon_sym_BSLASHAcs] = ACTIONS(6221), - [anon_sym_BSLASHacsp] = ACTIONS(6221), - [anon_sym_BSLASHAcsp] = ACTIONS(6221), - [anon_sym_BSLASHacl] = ACTIONS(6221), - [anon_sym_BSLASHAcl] = ACTIONS(6221), - [anon_sym_BSLASHaclp] = ACTIONS(6221), - [anon_sym_BSLASHAclp] = ACTIONS(6221), - [anon_sym_BSLASHacf] = ACTIONS(6221), - [anon_sym_BSLASHAcf] = ACTIONS(6221), - [anon_sym_BSLASHacfp] = ACTIONS(6221), - [anon_sym_BSLASHAcfp] = ACTIONS(6221), - [anon_sym_BSLASHac] = ACTIONS(6221), - [anon_sym_BSLASHAc] = ACTIONS(6221), - [anon_sym_BSLASHacp] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6221), - [anon_sym_BSLASHcolor] = ACTIONS(6221), - [anon_sym_BSLASHcolorbox] = ACTIONS(6221), - [anon_sym_BSLASHtextcolor] = ACTIONS(6221), - [anon_sym_BSLASHpagecolor] = ACTIONS(6221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6221), - [anon_sym_BSLASHtext] = ACTIONS(6221), - [anon_sym_BSLASHintertext] = ACTIONS(6221), - [anon_sym_shortintertext] = ACTIONS(6221), - }, - [1668] = { - [sym_command_name] = ACTIONS(6345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6345), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_EQ] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_LBRACE] = ACTIONS(6347), - [anon_sym_RBRACE] = ACTIONS(6347), - [sym_word] = ACTIONS(6345), - [sym_placeholder] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6345), - [anon_sym_GT] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(6345), - [anon_sym_PIPE] = ACTIONS(6345), - [anon_sym_COLON] = ACTIONS(6345), - [anon_sym_SQUOTE] = ACTIONS(6345), - [anon_sym__] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6347), - [anon_sym_DOLLAR] = ACTIONS(6345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6347), - [anon_sym_BSLASHtitle] = ACTIONS(6345), - [anon_sym_BSLASHauthor] = ACTIONS(6345), - [anon_sym_BSLASHusepackage] = ACTIONS(6345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6345), - [anon_sym_BSLASHinclude] = ACTIONS(6345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6345), - [anon_sym_BSLASHinput] = ACTIONS(6345), - [anon_sym_BSLASHsubfile] = ACTIONS(6345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6345), - [anon_sym_BSLASHbibliography] = ACTIONS(6345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6345), - [anon_sym_BSLASHincludesvg] = ACTIONS(6345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6345), - [anon_sym_BSLASHimport] = ACTIONS(6345), - [anon_sym_BSLASHsubimport] = ACTIONS(6345), - [anon_sym_BSLASHinputfrom] = ACTIONS(6345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6345), - [anon_sym_BSLASHincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHcaption] = ACTIONS(6345), - [anon_sym_BSLASHcite] = ACTIONS(6345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCite] = ACTIONS(6345), - [anon_sym_BSLASHnocite] = ACTIONS(6345), - [anon_sym_BSLASHcitet] = ACTIONS(6345), - [anon_sym_BSLASHcitep] = ACTIONS(6345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteauthor] = ACTIONS(6345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitetitle] = ACTIONS(6345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteyear] = ACTIONS(6345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitedate] = ACTIONS(6345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteurl] = ACTIONS(6345), - [anon_sym_BSLASHfullcite] = ACTIONS(6345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6345), - [anon_sym_BSLASHcitealt] = ACTIONS(6345), - [anon_sym_BSLASHcitealp] = ACTIONS(6345), - [anon_sym_BSLASHcitetext] = ACTIONS(6345), - [anon_sym_BSLASHparencite] = ACTIONS(6345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHParencite] = ACTIONS(6345), - [anon_sym_BSLASHfootcite] = ACTIONS(6345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6345), - [anon_sym_BSLASHtextcite] = ACTIONS(6345), - [anon_sym_BSLASHTextcite] = ACTIONS(6345), - [anon_sym_BSLASHsmartcite] = ACTIONS(6345), - [anon_sym_BSLASHSmartcite] = ACTIONS(6345), - [anon_sym_BSLASHsupercite] = ACTIONS(6345), - [anon_sym_BSLASHautocite] = ACTIONS(6345), - [anon_sym_BSLASHAutocite] = ACTIONS(6345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHvolcite] = ACTIONS(6345), - [anon_sym_BSLASHVolcite] = ACTIONS(6345), - [anon_sym_BSLASHpvolcite] = ACTIONS(6345), - [anon_sym_BSLASHPvolcite] = ACTIONS(6345), - [anon_sym_BSLASHfvolcite] = ACTIONS(6345), - [anon_sym_BSLASHftvolcite] = ACTIONS(6345), - [anon_sym_BSLASHsvolcite] = ACTIONS(6345), - [anon_sym_BSLASHSvolcite] = ACTIONS(6345), - [anon_sym_BSLASHtvolcite] = ACTIONS(6345), - [anon_sym_BSLASHTvolcite] = ACTIONS(6345), - [anon_sym_BSLASHavolcite] = ACTIONS(6345), - [anon_sym_BSLASHAvolcite] = ACTIONS(6345), - [anon_sym_BSLASHnotecite] = ACTIONS(6345), - [anon_sym_BSLASHNotecite] = ACTIONS(6345), - [anon_sym_BSLASHpnotecite] = ACTIONS(6345), - [anon_sym_BSLASHPnotecite] = ACTIONS(6345), - [anon_sym_BSLASHfnotecite] = ACTIONS(6345), - [anon_sym_BSLASHlabel] = ACTIONS(6345), - [anon_sym_BSLASHref] = ACTIONS(6345), - [anon_sym_BSLASHeqref] = ACTIONS(6345), - [anon_sym_BSLASHvref] = ACTIONS(6345), - [anon_sym_BSLASHVref] = ACTIONS(6345), - [anon_sym_BSLASHautoref] = ACTIONS(6345), - [anon_sym_BSLASHpageref] = ACTIONS(6345), - [anon_sym_BSLASHcref] = ACTIONS(6345), - [anon_sym_BSLASHCref] = ACTIONS(6345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnameCref] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHlabelcref] = ACTIONS(6345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCrefrange] = ACTIONS(6345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnewlabel] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6347), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHdef] = ACTIONS(6345), - [anon_sym_BSLASHlet] = ACTIONS(6345), - [anon_sym_BSLASHleft] = ACTIONS(6345), - [anon_sym_BSLASHbig] = ACTIONS(6345), - [anon_sym_BSLASHBig] = ACTIONS(6345), - [anon_sym_BSLASHbigg] = ACTIONS(6345), - [anon_sym_BSLASHBigg] = ACTIONS(6345), - [anon_sym_BSLASHbigl] = ACTIONS(6345), - [anon_sym_BSLASHBigl] = ACTIONS(6345), - [anon_sym_BSLASHbiggl] = ACTIONS(6345), - [anon_sym_BSLASHBiggl] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6345), - [anon_sym_BSLASHgls] = ACTIONS(6345), - [anon_sym_BSLASHGls] = ACTIONS(6345), - [anon_sym_BSLASHGLS] = ACTIONS(6345), - [anon_sym_BSLASHglspl] = ACTIONS(6345), - [anon_sym_BSLASHGlspl] = ACTIONS(6345), - [anon_sym_BSLASHGLSpl] = ACTIONS(6345), - [anon_sym_BSLASHglsdisp] = ACTIONS(6345), - [anon_sym_BSLASHglslink] = ACTIONS(6345), - [anon_sym_BSLASHglstext] = ACTIONS(6345), - [anon_sym_BSLASHGlstext] = ACTIONS(6345), - [anon_sym_BSLASHGLStext] = ACTIONS(6345), - [anon_sym_BSLASHglsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6345), - [anon_sym_BSLASHglsplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSplural] = ACTIONS(6345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHglsname] = ACTIONS(6345), - [anon_sym_BSLASHGlsname] = ACTIONS(6345), - [anon_sym_BSLASHGLSname] = ACTIONS(6345), - [anon_sym_BSLASHglssymbol] = ACTIONS(6345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6345), - [anon_sym_BSLASHglsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6345), - [anon_sym_BSLASHglsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6345), - [anon_sym_BSLASHglsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6345), - [anon_sym_BSLASHglsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6345), - [anon_sym_BSLASHglsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6345), - [anon_sym_BSLASHnewacronym] = ACTIONS(6345), - [anon_sym_BSLASHacrshort] = ACTIONS(6345), - [anon_sym_BSLASHAcrshort] = ACTIONS(6345), - [anon_sym_BSLASHACRshort] = ACTIONS(6345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6345), - [anon_sym_BSLASHacrlong] = ACTIONS(6345), - [anon_sym_BSLASHAcrlong] = ACTIONS(6345), - [anon_sym_BSLASHACRlong] = ACTIONS(6345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6345), - [anon_sym_BSLASHacrfull] = ACTIONS(6345), - [anon_sym_BSLASHAcrfull] = ACTIONS(6345), - [anon_sym_BSLASHACRfull] = ACTIONS(6345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6345), - [anon_sym_BSLASHacs] = ACTIONS(6345), - [anon_sym_BSLASHAcs] = ACTIONS(6345), - [anon_sym_BSLASHacsp] = ACTIONS(6345), - [anon_sym_BSLASHAcsp] = ACTIONS(6345), - [anon_sym_BSLASHacl] = ACTIONS(6345), - [anon_sym_BSLASHAcl] = ACTIONS(6345), - [anon_sym_BSLASHaclp] = ACTIONS(6345), - [anon_sym_BSLASHAclp] = ACTIONS(6345), - [anon_sym_BSLASHacf] = ACTIONS(6345), - [anon_sym_BSLASHAcf] = ACTIONS(6345), - [anon_sym_BSLASHacfp] = ACTIONS(6345), - [anon_sym_BSLASHAcfp] = ACTIONS(6345), - [anon_sym_BSLASHac] = ACTIONS(6345), - [anon_sym_BSLASHAc] = ACTIONS(6345), - [anon_sym_BSLASHacp] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6345), - [anon_sym_BSLASHcolor] = ACTIONS(6345), - [anon_sym_BSLASHcolorbox] = ACTIONS(6345), - [anon_sym_BSLASHtextcolor] = ACTIONS(6345), - [anon_sym_BSLASHpagecolor] = ACTIONS(6345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6345), - [anon_sym_BSLASHtext] = ACTIONS(6345), - [anon_sym_BSLASHintertext] = ACTIONS(6345), - [anon_sym_shortintertext] = ACTIONS(6345), - }, - [1669] = { - [sym_command_name] = ACTIONS(6341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(6343), - [anon_sym_RBRACK] = ACTIONS(6343), - [anon_sym_COMMA] = ACTIONS(6343), - [anon_sym_EQ] = ACTIONS(6343), - [anon_sym_LPAREN] = ACTIONS(6343), - [anon_sym_RPAREN] = ACTIONS(6343), - [anon_sym_LBRACE] = ACTIONS(6343), - [anon_sym_RBRACE] = ACTIONS(6343), - [sym_word] = ACTIONS(6341), - [sym_placeholder] = ACTIONS(6343), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_LT] = ACTIONS(6341), - [anon_sym_GT] = ACTIONS(6341), - [anon_sym_BANG] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_SQUOTE] = ACTIONS(6341), - [anon_sym__] = ACTIONS(6343), - [anon_sym_CARET] = ACTIONS(6343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6343), - [anon_sym_DOLLAR] = ACTIONS(6341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6343), - [anon_sym_BSLASHtitle] = ACTIONS(6341), - [anon_sym_BSLASHauthor] = ACTIONS(6341), - [anon_sym_BSLASHusepackage] = ACTIONS(6341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6341), - [anon_sym_BSLASHinclude] = ACTIONS(6341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6341), - [anon_sym_BSLASHinput] = ACTIONS(6341), - [anon_sym_BSLASHsubfile] = ACTIONS(6341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6341), - [anon_sym_BSLASHbibliography] = ACTIONS(6341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6341), - [anon_sym_BSLASHincludesvg] = ACTIONS(6341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6341), - [anon_sym_BSLASHimport] = ACTIONS(6341), - [anon_sym_BSLASHsubimport] = ACTIONS(6341), - [anon_sym_BSLASHinputfrom] = ACTIONS(6341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6341), - [anon_sym_BSLASHincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHcaption] = ACTIONS(6341), - [anon_sym_BSLASHcite] = ACTIONS(6341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCite] = ACTIONS(6341), - [anon_sym_BSLASHnocite] = ACTIONS(6341), - [anon_sym_BSLASHcitet] = ACTIONS(6341), - [anon_sym_BSLASHcitep] = ACTIONS(6341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteauthor] = ACTIONS(6341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitetitle] = ACTIONS(6341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteyear] = ACTIONS(6341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitedate] = ACTIONS(6341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteurl] = ACTIONS(6341), - [anon_sym_BSLASHfullcite] = ACTIONS(6341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6341), - [anon_sym_BSLASHcitealt] = ACTIONS(6341), - [anon_sym_BSLASHcitealp] = ACTIONS(6341), - [anon_sym_BSLASHcitetext] = ACTIONS(6341), - [anon_sym_BSLASHparencite] = ACTIONS(6341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHParencite] = ACTIONS(6341), - [anon_sym_BSLASHfootcite] = ACTIONS(6341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6341), - [anon_sym_BSLASHtextcite] = ACTIONS(6341), - [anon_sym_BSLASHTextcite] = ACTIONS(6341), - [anon_sym_BSLASHsmartcite] = ACTIONS(6341), - [anon_sym_BSLASHSmartcite] = ACTIONS(6341), - [anon_sym_BSLASHsupercite] = ACTIONS(6341), - [anon_sym_BSLASHautocite] = ACTIONS(6341), - [anon_sym_BSLASHAutocite] = ACTIONS(6341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHvolcite] = ACTIONS(6341), - [anon_sym_BSLASHVolcite] = ACTIONS(6341), - [anon_sym_BSLASHpvolcite] = ACTIONS(6341), - [anon_sym_BSLASHPvolcite] = ACTIONS(6341), - [anon_sym_BSLASHfvolcite] = ACTIONS(6341), - [anon_sym_BSLASHftvolcite] = ACTIONS(6341), - [anon_sym_BSLASHsvolcite] = ACTIONS(6341), - [anon_sym_BSLASHSvolcite] = ACTIONS(6341), - [anon_sym_BSLASHtvolcite] = ACTIONS(6341), - [anon_sym_BSLASHTvolcite] = ACTIONS(6341), - [anon_sym_BSLASHavolcite] = ACTIONS(6341), - [anon_sym_BSLASHAvolcite] = ACTIONS(6341), - [anon_sym_BSLASHnotecite] = ACTIONS(6341), - [anon_sym_BSLASHNotecite] = ACTIONS(6341), - [anon_sym_BSLASHpnotecite] = ACTIONS(6341), - [anon_sym_BSLASHPnotecite] = ACTIONS(6341), - [anon_sym_BSLASHfnotecite] = ACTIONS(6341), - [anon_sym_BSLASHlabel] = ACTIONS(6341), - [anon_sym_BSLASHref] = ACTIONS(6341), - [anon_sym_BSLASHeqref] = ACTIONS(6341), - [anon_sym_BSLASHvref] = ACTIONS(6341), - [anon_sym_BSLASHVref] = ACTIONS(6341), - [anon_sym_BSLASHautoref] = ACTIONS(6341), - [anon_sym_BSLASHpageref] = ACTIONS(6341), - [anon_sym_BSLASHcref] = ACTIONS(6341), - [anon_sym_BSLASHCref] = ACTIONS(6341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnameCref] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHlabelcref] = ACTIONS(6341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCrefrange] = ACTIONS(6341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnewlabel] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6343), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHdef] = ACTIONS(6341), - [anon_sym_BSLASHlet] = ACTIONS(6341), - [anon_sym_BSLASHleft] = ACTIONS(6341), - [anon_sym_BSLASHbig] = ACTIONS(6341), - [anon_sym_BSLASHBig] = ACTIONS(6341), - [anon_sym_BSLASHbigg] = ACTIONS(6341), - [anon_sym_BSLASHBigg] = ACTIONS(6341), - [anon_sym_BSLASHbigl] = ACTIONS(6341), - [anon_sym_BSLASHBigl] = ACTIONS(6341), - [anon_sym_BSLASHbiggl] = ACTIONS(6341), - [anon_sym_BSLASHBiggl] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6341), - [anon_sym_BSLASHgls] = ACTIONS(6341), - [anon_sym_BSLASHGls] = ACTIONS(6341), - [anon_sym_BSLASHGLS] = ACTIONS(6341), - [anon_sym_BSLASHglspl] = ACTIONS(6341), - [anon_sym_BSLASHGlspl] = ACTIONS(6341), - [anon_sym_BSLASHGLSpl] = ACTIONS(6341), - [anon_sym_BSLASHglsdisp] = ACTIONS(6341), - [anon_sym_BSLASHglslink] = ACTIONS(6341), - [anon_sym_BSLASHglstext] = ACTIONS(6341), - [anon_sym_BSLASHGlstext] = ACTIONS(6341), - [anon_sym_BSLASHGLStext] = ACTIONS(6341), - [anon_sym_BSLASHglsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6341), - [anon_sym_BSLASHglsplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSplural] = ACTIONS(6341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHglsname] = ACTIONS(6341), - [anon_sym_BSLASHGlsname] = ACTIONS(6341), - [anon_sym_BSLASHGLSname] = ACTIONS(6341), - [anon_sym_BSLASHglssymbol] = ACTIONS(6341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6341), - [anon_sym_BSLASHglsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6341), - [anon_sym_BSLASHglsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6341), - [anon_sym_BSLASHglsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6341), - [anon_sym_BSLASHglsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6341), - [anon_sym_BSLASHglsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6341), - [anon_sym_BSLASHnewacronym] = ACTIONS(6341), - [anon_sym_BSLASHacrshort] = ACTIONS(6341), - [anon_sym_BSLASHAcrshort] = ACTIONS(6341), - [anon_sym_BSLASHACRshort] = ACTIONS(6341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6341), - [anon_sym_BSLASHacrlong] = ACTIONS(6341), - [anon_sym_BSLASHAcrlong] = ACTIONS(6341), - [anon_sym_BSLASHACRlong] = ACTIONS(6341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6341), - [anon_sym_BSLASHacrfull] = ACTIONS(6341), - [anon_sym_BSLASHAcrfull] = ACTIONS(6341), - [anon_sym_BSLASHACRfull] = ACTIONS(6341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6341), - [anon_sym_BSLASHacs] = ACTIONS(6341), - [anon_sym_BSLASHAcs] = ACTIONS(6341), - [anon_sym_BSLASHacsp] = ACTIONS(6341), - [anon_sym_BSLASHAcsp] = ACTIONS(6341), - [anon_sym_BSLASHacl] = ACTIONS(6341), - [anon_sym_BSLASHAcl] = ACTIONS(6341), - [anon_sym_BSLASHaclp] = ACTIONS(6341), - [anon_sym_BSLASHAclp] = ACTIONS(6341), - [anon_sym_BSLASHacf] = ACTIONS(6341), - [anon_sym_BSLASHAcf] = ACTIONS(6341), - [anon_sym_BSLASHacfp] = ACTIONS(6341), - [anon_sym_BSLASHAcfp] = ACTIONS(6341), - [anon_sym_BSLASHac] = ACTIONS(6341), - [anon_sym_BSLASHAc] = ACTIONS(6341), - [anon_sym_BSLASHacp] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6341), - [anon_sym_BSLASHcolor] = ACTIONS(6341), - [anon_sym_BSLASHcolorbox] = ACTIONS(6341), - [anon_sym_BSLASHtextcolor] = ACTIONS(6341), - [anon_sym_BSLASHpagecolor] = ACTIONS(6341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6341), - [anon_sym_BSLASHtext] = ACTIONS(6341), - [anon_sym_BSLASHintertext] = ACTIONS(6341), - [anon_sym_shortintertext] = ACTIONS(6341), - }, - [1670] = { - [sym_command_name] = ACTIONS(6337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6337), - [anon_sym_LBRACK] = ACTIONS(6339), - [anon_sym_RBRACK] = ACTIONS(6339), - [anon_sym_COMMA] = ACTIONS(6339), - [anon_sym_EQ] = ACTIONS(6339), - [anon_sym_LPAREN] = ACTIONS(6339), - [anon_sym_RPAREN] = ACTIONS(6339), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(6339), - [sym_word] = ACTIONS(6337), - [sym_placeholder] = ACTIONS(6339), - [anon_sym_PLUS] = ACTIONS(6339), - [anon_sym_DASH] = ACTIONS(6339), - [anon_sym_STAR] = ACTIONS(6339), - [anon_sym_SLASH] = ACTIONS(6339), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_COLON] = ACTIONS(6337), - [anon_sym_SQUOTE] = ACTIONS(6337), - [anon_sym__] = ACTIONS(6339), - [anon_sym_CARET] = ACTIONS(6339), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6339), - [anon_sym_DOLLAR] = ACTIONS(6337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6339), - [anon_sym_BSLASHtitle] = ACTIONS(6337), - [anon_sym_BSLASHauthor] = ACTIONS(6337), - [anon_sym_BSLASHusepackage] = ACTIONS(6337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6337), - [anon_sym_BSLASHinclude] = ACTIONS(6337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6337), - [anon_sym_BSLASHinput] = ACTIONS(6337), - [anon_sym_BSLASHsubfile] = ACTIONS(6337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6337), - [anon_sym_BSLASHbibliography] = ACTIONS(6337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6337), - [anon_sym_BSLASHincludesvg] = ACTIONS(6337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6337), - [anon_sym_BSLASHimport] = ACTIONS(6337), - [anon_sym_BSLASHsubimport] = ACTIONS(6337), - [anon_sym_BSLASHinputfrom] = ACTIONS(6337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6337), - [anon_sym_BSLASHincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHcaption] = ACTIONS(6337), - [anon_sym_BSLASHcite] = ACTIONS(6337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCite] = ACTIONS(6337), - [anon_sym_BSLASHnocite] = ACTIONS(6337), - [anon_sym_BSLASHcitet] = ACTIONS(6337), - [anon_sym_BSLASHcitep] = ACTIONS(6337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteauthor] = ACTIONS(6337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitetitle] = ACTIONS(6337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteyear] = ACTIONS(6337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitedate] = ACTIONS(6337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteurl] = ACTIONS(6337), - [anon_sym_BSLASHfullcite] = ACTIONS(6337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6337), - [anon_sym_BSLASHcitealt] = ACTIONS(6337), - [anon_sym_BSLASHcitealp] = ACTIONS(6337), - [anon_sym_BSLASHcitetext] = ACTIONS(6337), - [anon_sym_BSLASHparencite] = ACTIONS(6337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHParencite] = ACTIONS(6337), - [anon_sym_BSLASHfootcite] = ACTIONS(6337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6337), - [anon_sym_BSLASHtextcite] = ACTIONS(6337), - [anon_sym_BSLASHTextcite] = ACTIONS(6337), - [anon_sym_BSLASHsmartcite] = ACTIONS(6337), - [anon_sym_BSLASHSmartcite] = ACTIONS(6337), - [anon_sym_BSLASHsupercite] = ACTIONS(6337), - [anon_sym_BSLASHautocite] = ACTIONS(6337), - [anon_sym_BSLASHAutocite] = ACTIONS(6337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHvolcite] = ACTIONS(6337), - [anon_sym_BSLASHVolcite] = ACTIONS(6337), - [anon_sym_BSLASHpvolcite] = ACTIONS(6337), - [anon_sym_BSLASHPvolcite] = ACTIONS(6337), - [anon_sym_BSLASHfvolcite] = ACTIONS(6337), - [anon_sym_BSLASHftvolcite] = ACTIONS(6337), - [anon_sym_BSLASHsvolcite] = ACTIONS(6337), - [anon_sym_BSLASHSvolcite] = ACTIONS(6337), - [anon_sym_BSLASHtvolcite] = ACTIONS(6337), - [anon_sym_BSLASHTvolcite] = ACTIONS(6337), - [anon_sym_BSLASHavolcite] = ACTIONS(6337), - [anon_sym_BSLASHAvolcite] = ACTIONS(6337), - [anon_sym_BSLASHnotecite] = ACTIONS(6337), - [anon_sym_BSLASHNotecite] = ACTIONS(6337), - [anon_sym_BSLASHpnotecite] = ACTIONS(6337), - [anon_sym_BSLASHPnotecite] = ACTIONS(6337), - [anon_sym_BSLASHfnotecite] = ACTIONS(6337), - [anon_sym_BSLASHlabel] = ACTIONS(6337), - [anon_sym_BSLASHref] = ACTIONS(6337), - [anon_sym_BSLASHeqref] = ACTIONS(6337), - [anon_sym_BSLASHvref] = ACTIONS(6337), - [anon_sym_BSLASHVref] = ACTIONS(6337), - [anon_sym_BSLASHautoref] = ACTIONS(6337), - [anon_sym_BSLASHpageref] = ACTIONS(6337), - [anon_sym_BSLASHcref] = ACTIONS(6337), - [anon_sym_BSLASHCref] = ACTIONS(6337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnameCref] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHlabelcref] = ACTIONS(6337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCrefrange] = ACTIONS(6337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnewlabel] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6339), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHdef] = ACTIONS(6337), - [anon_sym_BSLASHlet] = ACTIONS(6337), - [anon_sym_BSLASHleft] = ACTIONS(6337), - [anon_sym_BSLASHbig] = ACTIONS(6337), - [anon_sym_BSLASHBig] = ACTIONS(6337), - [anon_sym_BSLASHbigg] = ACTIONS(6337), - [anon_sym_BSLASHBigg] = ACTIONS(6337), - [anon_sym_BSLASHbigl] = ACTIONS(6337), - [anon_sym_BSLASHBigl] = ACTIONS(6337), - [anon_sym_BSLASHbiggl] = ACTIONS(6337), - [anon_sym_BSLASHBiggl] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6337), - [anon_sym_BSLASHgls] = ACTIONS(6337), - [anon_sym_BSLASHGls] = ACTIONS(6337), - [anon_sym_BSLASHGLS] = ACTIONS(6337), - [anon_sym_BSLASHglspl] = ACTIONS(6337), - [anon_sym_BSLASHGlspl] = ACTIONS(6337), - [anon_sym_BSLASHGLSpl] = ACTIONS(6337), - [anon_sym_BSLASHglsdisp] = ACTIONS(6337), - [anon_sym_BSLASHglslink] = ACTIONS(6337), - [anon_sym_BSLASHglstext] = ACTIONS(6337), - [anon_sym_BSLASHGlstext] = ACTIONS(6337), - [anon_sym_BSLASHGLStext] = ACTIONS(6337), - [anon_sym_BSLASHglsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6337), - [anon_sym_BSLASHglsplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSplural] = ACTIONS(6337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHglsname] = ACTIONS(6337), - [anon_sym_BSLASHGlsname] = ACTIONS(6337), - [anon_sym_BSLASHGLSname] = ACTIONS(6337), - [anon_sym_BSLASHglssymbol] = ACTIONS(6337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6337), - [anon_sym_BSLASHglsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6337), - [anon_sym_BSLASHglsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6337), - [anon_sym_BSLASHglsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6337), - [anon_sym_BSLASHglsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6337), - [anon_sym_BSLASHglsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6337), - [anon_sym_BSLASHnewacronym] = ACTIONS(6337), - [anon_sym_BSLASHacrshort] = ACTIONS(6337), - [anon_sym_BSLASHAcrshort] = ACTIONS(6337), - [anon_sym_BSLASHACRshort] = ACTIONS(6337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6337), - [anon_sym_BSLASHacrlong] = ACTIONS(6337), - [anon_sym_BSLASHAcrlong] = ACTIONS(6337), - [anon_sym_BSLASHACRlong] = ACTIONS(6337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6337), - [anon_sym_BSLASHacrfull] = ACTIONS(6337), - [anon_sym_BSLASHAcrfull] = ACTIONS(6337), - [anon_sym_BSLASHACRfull] = ACTIONS(6337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6337), - [anon_sym_BSLASHacs] = ACTIONS(6337), - [anon_sym_BSLASHAcs] = ACTIONS(6337), - [anon_sym_BSLASHacsp] = ACTIONS(6337), - [anon_sym_BSLASHAcsp] = ACTIONS(6337), - [anon_sym_BSLASHacl] = ACTIONS(6337), - [anon_sym_BSLASHAcl] = ACTIONS(6337), - [anon_sym_BSLASHaclp] = ACTIONS(6337), - [anon_sym_BSLASHAclp] = ACTIONS(6337), - [anon_sym_BSLASHacf] = ACTIONS(6337), - [anon_sym_BSLASHAcf] = ACTIONS(6337), - [anon_sym_BSLASHacfp] = ACTIONS(6337), - [anon_sym_BSLASHAcfp] = ACTIONS(6337), - [anon_sym_BSLASHac] = ACTIONS(6337), - [anon_sym_BSLASHAc] = ACTIONS(6337), - [anon_sym_BSLASHacp] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6337), - [anon_sym_BSLASHcolor] = ACTIONS(6337), - [anon_sym_BSLASHcolorbox] = ACTIONS(6337), - [anon_sym_BSLASHtextcolor] = ACTIONS(6337), - [anon_sym_BSLASHpagecolor] = ACTIONS(6337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6337), - [anon_sym_BSLASHtext] = ACTIONS(6337), - [anon_sym_BSLASHintertext] = ACTIONS(6337), - [anon_sym_shortintertext] = ACTIONS(6337), - }, - [1671] = { - [sym_command_name] = ACTIONS(6181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6181), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_EQ] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_LBRACE] = ACTIONS(6183), - [sym_word] = ACTIONS(6181), - [sym_placeholder] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6183), - [anon_sym_DASH] = ACTIONS(6183), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_COLON] = ACTIONS(6181), - [anon_sym_SQUOTE] = ACTIONS(6181), - [anon_sym__] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), - [anon_sym_BSLASHbegin] = ACTIONS(6181), - [anon_sym_BSLASHtitle] = ACTIONS(6181), - [anon_sym_BSLASHauthor] = ACTIONS(6181), - [anon_sym_BSLASHusepackage] = ACTIONS(6181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), - [anon_sym_BSLASHinclude] = ACTIONS(6181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), - [anon_sym_BSLASHinput] = ACTIONS(6181), - [anon_sym_BSLASHsubfile] = ACTIONS(6181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), - [anon_sym_BSLASHbibliography] = ACTIONS(6181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), - [anon_sym_BSLASHincludesvg] = ACTIONS(6181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), - [anon_sym_BSLASHimport] = ACTIONS(6181), - [anon_sym_BSLASHsubimport] = ACTIONS(6181), - [anon_sym_BSLASHinputfrom] = ACTIONS(6181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), - [anon_sym_BSLASHincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHcaption] = ACTIONS(6181), - [anon_sym_BSLASHcite] = ACTIONS(6181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCite] = ACTIONS(6181), - [anon_sym_BSLASHnocite] = ACTIONS(6181), - [anon_sym_BSLASHcitet] = ACTIONS(6181), - [anon_sym_BSLASHcitep] = ACTIONS(6181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteauthor] = ACTIONS(6181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitetitle] = ACTIONS(6181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteyear] = ACTIONS(6181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitedate] = ACTIONS(6181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteurl] = ACTIONS(6181), - [anon_sym_BSLASHfullcite] = ACTIONS(6181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), - [anon_sym_BSLASHcitealt] = ACTIONS(6181), - [anon_sym_BSLASHcitealp] = ACTIONS(6181), - [anon_sym_BSLASHcitetext] = ACTIONS(6181), - [anon_sym_BSLASHparencite] = ACTIONS(6181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHParencite] = ACTIONS(6181), - [anon_sym_BSLASHfootcite] = ACTIONS(6181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), - [anon_sym_BSLASHtextcite] = ACTIONS(6181), - [anon_sym_BSLASHTextcite] = ACTIONS(6181), - [anon_sym_BSLASHsmartcite] = ACTIONS(6181), - [anon_sym_BSLASHSmartcite] = ACTIONS(6181), - [anon_sym_BSLASHsupercite] = ACTIONS(6181), - [anon_sym_BSLASHautocite] = ACTIONS(6181), - [anon_sym_BSLASHAutocite] = ACTIONS(6181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHvolcite] = ACTIONS(6181), - [anon_sym_BSLASHVolcite] = ACTIONS(6181), - [anon_sym_BSLASHpvolcite] = ACTIONS(6181), - [anon_sym_BSLASHPvolcite] = ACTIONS(6181), - [anon_sym_BSLASHfvolcite] = ACTIONS(6181), - [anon_sym_BSLASHftvolcite] = ACTIONS(6181), - [anon_sym_BSLASHsvolcite] = ACTIONS(6181), - [anon_sym_BSLASHSvolcite] = ACTIONS(6181), - [anon_sym_BSLASHtvolcite] = ACTIONS(6181), - [anon_sym_BSLASHTvolcite] = ACTIONS(6181), - [anon_sym_BSLASHavolcite] = ACTIONS(6181), - [anon_sym_BSLASHAvolcite] = ACTIONS(6181), - [anon_sym_BSLASHnotecite] = ACTIONS(6181), - [anon_sym_BSLASHNotecite] = ACTIONS(6181), - [anon_sym_BSLASHpnotecite] = ACTIONS(6181), - [anon_sym_BSLASHPnotecite] = ACTIONS(6181), - [anon_sym_BSLASHfnotecite] = ACTIONS(6181), - [anon_sym_BSLASHlabel] = ACTIONS(6181), - [anon_sym_BSLASHref] = ACTIONS(6181), - [anon_sym_BSLASHeqref] = ACTIONS(6181), - [anon_sym_BSLASHvref] = ACTIONS(6181), - [anon_sym_BSLASHVref] = ACTIONS(6181), - [anon_sym_BSLASHautoref] = ACTIONS(6181), - [anon_sym_BSLASHpageref] = ACTIONS(6181), - [anon_sym_BSLASHcref] = ACTIONS(6181), - [anon_sym_BSLASHCref] = ACTIONS(6181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnameCref] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHlabelcref] = ACTIONS(6181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCrefrange] = ACTIONS(6181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnewlabel] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHdef] = ACTIONS(6181), - [anon_sym_BSLASHlet] = ACTIONS(6181), - [anon_sym_BSLASHleft] = ACTIONS(6181), - [anon_sym_BSLASHbig] = ACTIONS(6181), - [anon_sym_BSLASHBig] = ACTIONS(6181), - [anon_sym_BSLASHbigg] = ACTIONS(6181), - [anon_sym_BSLASHBigg] = ACTIONS(6181), - [anon_sym_BSLASHbigl] = ACTIONS(6181), - [anon_sym_BSLASHBigl] = ACTIONS(6181), - [anon_sym_BSLASHbiggl] = ACTIONS(6181), - [anon_sym_BSLASHBiggl] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), - [anon_sym_BSLASHgls] = ACTIONS(6181), - [anon_sym_BSLASHGls] = ACTIONS(6181), - [anon_sym_BSLASHGLS] = ACTIONS(6181), - [anon_sym_BSLASHglspl] = ACTIONS(6181), - [anon_sym_BSLASHGlspl] = ACTIONS(6181), - [anon_sym_BSLASHGLSpl] = ACTIONS(6181), - [anon_sym_BSLASHglsdisp] = ACTIONS(6181), - [anon_sym_BSLASHglslink] = ACTIONS(6181), - [anon_sym_BSLASHglstext] = ACTIONS(6181), - [anon_sym_BSLASHGlstext] = ACTIONS(6181), - [anon_sym_BSLASHGLStext] = ACTIONS(6181), - [anon_sym_BSLASHglsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), - [anon_sym_BSLASHglsplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSplural] = ACTIONS(6181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHglsname] = ACTIONS(6181), - [anon_sym_BSLASHGlsname] = ACTIONS(6181), - [anon_sym_BSLASHGLSname] = ACTIONS(6181), - [anon_sym_BSLASHglssymbol] = ACTIONS(6181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), - [anon_sym_BSLASHglsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), - [anon_sym_BSLASHglsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), - [anon_sym_BSLASHglsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), - [anon_sym_BSLASHglsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), - [anon_sym_BSLASHglsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), - [anon_sym_BSLASHnewacronym] = ACTIONS(6181), - [anon_sym_BSLASHacrshort] = ACTIONS(6181), - [anon_sym_BSLASHAcrshort] = ACTIONS(6181), - [anon_sym_BSLASHACRshort] = ACTIONS(6181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), - [anon_sym_BSLASHacrlong] = ACTIONS(6181), - [anon_sym_BSLASHAcrlong] = ACTIONS(6181), - [anon_sym_BSLASHACRlong] = ACTIONS(6181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), - [anon_sym_BSLASHacrfull] = ACTIONS(6181), - [anon_sym_BSLASHAcrfull] = ACTIONS(6181), - [anon_sym_BSLASHACRfull] = ACTIONS(6181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), - [anon_sym_BSLASHacs] = ACTIONS(6181), - [anon_sym_BSLASHAcs] = ACTIONS(6181), - [anon_sym_BSLASHacsp] = ACTIONS(6181), - [anon_sym_BSLASHAcsp] = ACTIONS(6181), - [anon_sym_BSLASHacl] = ACTIONS(6181), - [anon_sym_BSLASHAcl] = ACTIONS(6181), - [anon_sym_BSLASHaclp] = ACTIONS(6181), - [anon_sym_BSLASHAclp] = ACTIONS(6181), - [anon_sym_BSLASHacf] = ACTIONS(6181), - [anon_sym_BSLASHAcf] = ACTIONS(6181), - [anon_sym_BSLASHacfp] = ACTIONS(6181), - [anon_sym_BSLASHAcfp] = ACTIONS(6181), - [anon_sym_BSLASHac] = ACTIONS(6181), - [anon_sym_BSLASHAc] = ACTIONS(6181), - [anon_sym_BSLASHacp] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), - [anon_sym_BSLASHcolor] = ACTIONS(6181), - [anon_sym_BSLASHcolorbox] = ACTIONS(6181), - [anon_sym_BSLASHtextcolor] = ACTIONS(6181), - [anon_sym_BSLASHpagecolor] = ACTIONS(6181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), - [anon_sym_BSLASHtext] = ACTIONS(6181), - [anon_sym_BSLASHintertext] = ACTIONS(6181), - [anon_sym_shortintertext] = ACTIONS(6181), - }, - [1672] = { - [sym_command_name] = ACTIONS(6249), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_RBRACK] = ACTIONS(6251), - [anon_sym_COMMA] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(6251), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_LBRACE] = ACTIONS(6251), - [sym_word] = ACTIONS(6249), - [sym_placeholder] = ACTIONS(6251), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6251), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_LT] = ACTIONS(6249), - [anon_sym_GT] = ACTIONS(6249), - [anon_sym_BANG] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_SQUOTE] = ACTIONS(6249), - [anon_sym__] = ACTIONS(6251), - [anon_sym_CARET] = ACTIONS(6251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), - [anon_sym_DOLLAR] = ACTIONS(6249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), - [anon_sym_BSLASHbegin] = ACTIONS(6249), - [anon_sym_BSLASHtitle] = ACTIONS(6249), - [anon_sym_BSLASHauthor] = ACTIONS(6249), - [anon_sym_BSLASHusepackage] = ACTIONS(6249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), - [anon_sym_BSLASHinclude] = ACTIONS(6249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), - [anon_sym_BSLASHinput] = ACTIONS(6249), - [anon_sym_BSLASHsubfile] = ACTIONS(6249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), - [anon_sym_BSLASHbibliography] = ACTIONS(6249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), - [anon_sym_BSLASHincludesvg] = ACTIONS(6249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), - [anon_sym_BSLASHimport] = ACTIONS(6249), - [anon_sym_BSLASHsubimport] = ACTIONS(6249), - [anon_sym_BSLASHinputfrom] = ACTIONS(6249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), - [anon_sym_BSLASHincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHcaption] = ACTIONS(6249), - [anon_sym_BSLASHcite] = ACTIONS(6249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCite] = ACTIONS(6249), - [anon_sym_BSLASHnocite] = ACTIONS(6249), - [anon_sym_BSLASHcitet] = ACTIONS(6249), - [anon_sym_BSLASHcitep] = ACTIONS(6249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteauthor] = ACTIONS(6249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitetitle] = ACTIONS(6249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteyear] = ACTIONS(6249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitedate] = ACTIONS(6249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteurl] = ACTIONS(6249), - [anon_sym_BSLASHfullcite] = ACTIONS(6249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), - [anon_sym_BSLASHcitealt] = ACTIONS(6249), - [anon_sym_BSLASHcitealp] = ACTIONS(6249), - [anon_sym_BSLASHcitetext] = ACTIONS(6249), - [anon_sym_BSLASHparencite] = ACTIONS(6249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHParencite] = ACTIONS(6249), - [anon_sym_BSLASHfootcite] = ACTIONS(6249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), - [anon_sym_BSLASHtextcite] = ACTIONS(6249), - [anon_sym_BSLASHTextcite] = ACTIONS(6249), - [anon_sym_BSLASHsmartcite] = ACTIONS(6249), - [anon_sym_BSLASHSmartcite] = ACTIONS(6249), - [anon_sym_BSLASHsupercite] = ACTIONS(6249), - [anon_sym_BSLASHautocite] = ACTIONS(6249), - [anon_sym_BSLASHAutocite] = ACTIONS(6249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHvolcite] = ACTIONS(6249), - [anon_sym_BSLASHVolcite] = ACTIONS(6249), - [anon_sym_BSLASHpvolcite] = ACTIONS(6249), - [anon_sym_BSLASHPvolcite] = ACTIONS(6249), - [anon_sym_BSLASHfvolcite] = ACTIONS(6249), - [anon_sym_BSLASHftvolcite] = ACTIONS(6249), - [anon_sym_BSLASHsvolcite] = ACTIONS(6249), - [anon_sym_BSLASHSvolcite] = ACTIONS(6249), - [anon_sym_BSLASHtvolcite] = ACTIONS(6249), - [anon_sym_BSLASHTvolcite] = ACTIONS(6249), - [anon_sym_BSLASHavolcite] = ACTIONS(6249), - [anon_sym_BSLASHAvolcite] = ACTIONS(6249), - [anon_sym_BSLASHnotecite] = ACTIONS(6249), - [anon_sym_BSLASHNotecite] = ACTIONS(6249), - [anon_sym_BSLASHpnotecite] = ACTIONS(6249), - [anon_sym_BSLASHPnotecite] = ACTIONS(6249), - [anon_sym_BSLASHfnotecite] = ACTIONS(6249), - [anon_sym_BSLASHlabel] = ACTIONS(6249), - [anon_sym_BSLASHref] = ACTIONS(6249), - [anon_sym_BSLASHeqref] = ACTIONS(6249), - [anon_sym_BSLASHvref] = ACTIONS(6249), - [anon_sym_BSLASHVref] = ACTIONS(6249), - [anon_sym_BSLASHautoref] = ACTIONS(6249), - [anon_sym_BSLASHpageref] = ACTIONS(6249), - [anon_sym_BSLASHcref] = ACTIONS(6249), - [anon_sym_BSLASHCref] = ACTIONS(6249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnameCref] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHlabelcref] = ACTIONS(6249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCrefrange] = ACTIONS(6249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnewlabel] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHdef] = ACTIONS(6249), - [anon_sym_BSLASHlet] = ACTIONS(6249), - [anon_sym_BSLASHleft] = ACTIONS(6249), - [anon_sym_BSLASHbig] = ACTIONS(6249), - [anon_sym_BSLASHBig] = ACTIONS(6249), - [anon_sym_BSLASHbigg] = ACTIONS(6249), - [anon_sym_BSLASHBigg] = ACTIONS(6249), - [anon_sym_BSLASHbigl] = ACTIONS(6249), - [anon_sym_BSLASHBigl] = ACTIONS(6249), - [anon_sym_BSLASHbiggl] = ACTIONS(6249), - [anon_sym_BSLASHBiggl] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), - [anon_sym_BSLASHgls] = ACTIONS(6249), - [anon_sym_BSLASHGls] = ACTIONS(6249), - [anon_sym_BSLASHGLS] = ACTIONS(6249), - [anon_sym_BSLASHglspl] = ACTIONS(6249), - [anon_sym_BSLASHGlspl] = ACTIONS(6249), - [anon_sym_BSLASHGLSpl] = ACTIONS(6249), - [anon_sym_BSLASHglsdisp] = ACTIONS(6249), - [anon_sym_BSLASHglslink] = ACTIONS(6249), - [anon_sym_BSLASHglstext] = ACTIONS(6249), - [anon_sym_BSLASHGlstext] = ACTIONS(6249), - [anon_sym_BSLASHGLStext] = ACTIONS(6249), - [anon_sym_BSLASHglsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), - [anon_sym_BSLASHglsplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSplural] = ACTIONS(6249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHglsname] = ACTIONS(6249), - [anon_sym_BSLASHGlsname] = ACTIONS(6249), - [anon_sym_BSLASHGLSname] = ACTIONS(6249), - [anon_sym_BSLASHglssymbol] = ACTIONS(6249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), - [anon_sym_BSLASHglsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), - [anon_sym_BSLASHglsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), - [anon_sym_BSLASHglsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), - [anon_sym_BSLASHglsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), - [anon_sym_BSLASHglsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), - [anon_sym_BSLASHnewacronym] = ACTIONS(6249), - [anon_sym_BSLASHacrshort] = ACTIONS(6249), - [anon_sym_BSLASHAcrshort] = ACTIONS(6249), - [anon_sym_BSLASHACRshort] = ACTIONS(6249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), - [anon_sym_BSLASHacrlong] = ACTIONS(6249), - [anon_sym_BSLASHAcrlong] = ACTIONS(6249), - [anon_sym_BSLASHACRlong] = ACTIONS(6249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), - [anon_sym_BSLASHacrfull] = ACTIONS(6249), - [anon_sym_BSLASHAcrfull] = ACTIONS(6249), - [anon_sym_BSLASHACRfull] = ACTIONS(6249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), - [anon_sym_BSLASHacs] = ACTIONS(6249), - [anon_sym_BSLASHAcs] = ACTIONS(6249), - [anon_sym_BSLASHacsp] = ACTIONS(6249), - [anon_sym_BSLASHAcsp] = ACTIONS(6249), - [anon_sym_BSLASHacl] = ACTIONS(6249), - [anon_sym_BSLASHAcl] = ACTIONS(6249), - [anon_sym_BSLASHaclp] = ACTIONS(6249), - [anon_sym_BSLASHAclp] = ACTIONS(6249), - [anon_sym_BSLASHacf] = ACTIONS(6249), - [anon_sym_BSLASHAcf] = ACTIONS(6249), - [anon_sym_BSLASHacfp] = ACTIONS(6249), - [anon_sym_BSLASHAcfp] = ACTIONS(6249), - [anon_sym_BSLASHac] = ACTIONS(6249), - [anon_sym_BSLASHAc] = ACTIONS(6249), - [anon_sym_BSLASHacp] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), - [anon_sym_BSLASHcolor] = ACTIONS(6249), - [anon_sym_BSLASHcolorbox] = ACTIONS(6249), - [anon_sym_BSLASHtextcolor] = ACTIONS(6249), - [anon_sym_BSLASHpagecolor] = ACTIONS(6249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), - [anon_sym_BSLASHtext] = ACTIONS(6249), - [anon_sym_BSLASHintertext] = ACTIONS(6249), - [anon_sym_shortintertext] = ACTIONS(6249), - }, - [1673] = { - [sym_command_name] = ACTIONS(6169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6169), - [anon_sym_LBRACK] = ACTIONS(6171), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_EQ] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_LBRACE] = ACTIONS(6171), - [sym_word] = ACTIONS(6169), - [sym_placeholder] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6171), - [anon_sym_DASH] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_COLON] = ACTIONS(6169), - [anon_sym_SQUOTE] = ACTIONS(6169), - [anon_sym__] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6171), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6171), - [anon_sym_DOLLAR] = ACTIONS(6169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6171), - [anon_sym_BSLASHbegin] = ACTIONS(6169), - [anon_sym_BSLASHtitle] = ACTIONS(6169), - [anon_sym_BSLASHauthor] = ACTIONS(6169), - [anon_sym_BSLASHusepackage] = ACTIONS(6169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6169), - [anon_sym_BSLASHinclude] = ACTIONS(6169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6169), - [anon_sym_BSLASHinput] = ACTIONS(6169), - [anon_sym_BSLASHsubfile] = ACTIONS(6169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6169), - [anon_sym_BSLASHbibliography] = ACTIONS(6169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6169), - [anon_sym_BSLASHincludesvg] = ACTIONS(6169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6169), - [anon_sym_BSLASHimport] = ACTIONS(6169), - [anon_sym_BSLASHsubimport] = ACTIONS(6169), - [anon_sym_BSLASHinputfrom] = ACTIONS(6169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6169), - [anon_sym_BSLASHincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHcaption] = ACTIONS(6169), - [anon_sym_BSLASHcite] = ACTIONS(6169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCite] = ACTIONS(6169), - [anon_sym_BSLASHnocite] = ACTIONS(6169), - [anon_sym_BSLASHcitet] = ACTIONS(6169), - [anon_sym_BSLASHcitep] = ACTIONS(6169), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteauthor] = ACTIONS(6169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitetitle] = ACTIONS(6169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteyear] = ACTIONS(6169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitedate] = ACTIONS(6169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteurl] = ACTIONS(6169), - [anon_sym_BSLASHfullcite] = ACTIONS(6169), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6169), - [anon_sym_BSLASHcitealt] = ACTIONS(6169), - [anon_sym_BSLASHcitealp] = ACTIONS(6169), - [anon_sym_BSLASHcitetext] = ACTIONS(6169), - [anon_sym_BSLASHparencite] = ACTIONS(6169), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHParencite] = ACTIONS(6169), - [anon_sym_BSLASHfootcite] = ACTIONS(6169), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6169), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6169), - [anon_sym_BSLASHtextcite] = ACTIONS(6169), - [anon_sym_BSLASHTextcite] = ACTIONS(6169), - [anon_sym_BSLASHsmartcite] = ACTIONS(6169), - [anon_sym_BSLASHSmartcite] = ACTIONS(6169), - [anon_sym_BSLASHsupercite] = ACTIONS(6169), - [anon_sym_BSLASHautocite] = ACTIONS(6169), - [anon_sym_BSLASHAutocite] = ACTIONS(6169), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHvolcite] = ACTIONS(6169), - [anon_sym_BSLASHVolcite] = ACTIONS(6169), - [anon_sym_BSLASHpvolcite] = ACTIONS(6169), - [anon_sym_BSLASHPvolcite] = ACTIONS(6169), - [anon_sym_BSLASHfvolcite] = ACTIONS(6169), - [anon_sym_BSLASHftvolcite] = ACTIONS(6169), - [anon_sym_BSLASHsvolcite] = ACTIONS(6169), - [anon_sym_BSLASHSvolcite] = ACTIONS(6169), - [anon_sym_BSLASHtvolcite] = ACTIONS(6169), - [anon_sym_BSLASHTvolcite] = ACTIONS(6169), - [anon_sym_BSLASHavolcite] = ACTIONS(6169), - [anon_sym_BSLASHAvolcite] = ACTIONS(6169), - [anon_sym_BSLASHnotecite] = ACTIONS(6169), - [anon_sym_BSLASHNotecite] = ACTIONS(6169), - [anon_sym_BSLASHpnotecite] = ACTIONS(6169), - [anon_sym_BSLASHPnotecite] = ACTIONS(6169), - [anon_sym_BSLASHfnotecite] = ACTIONS(6169), - [anon_sym_BSLASHlabel] = ACTIONS(6169), - [anon_sym_BSLASHref] = ACTIONS(6169), - [anon_sym_BSLASHeqref] = ACTIONS(6169), - [anon_sym_BSLASHvref] = ACTIONS(6169), - [anon_sym_BSLASHVref] = ACTIONS(6169), - [anon_sym_BSLASHautoref] = ACTIONS(6169), - [anon_sym_BSLASHpageref] = ACTIONS(6169), - [anon_sym_BSLASHcref] = ACTIONS(6169), - [anon_sym_BSLASHCref] = ACTIONS(6169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnameCref] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHlabelcref] = ACTIONS(6169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCrefrange] = ACTIONS(6169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnewlabel] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6171), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHdef] = ACTIONS(6169), - [anon_sym_BSLASHlet] = ACTIONS(6169), - [anon_sym_BSLASHleft] = ACTIONS(6169), - [anon_sym_BSLASHbig] = ACTIONS(6169), - [anon_sym_BSLASHBig] = ACTIONS(6169), - [anon_sym_BSLASHbigg] = ACTIONS(6169), - [anon_sym_BSLASHBigg] = ACTIONS(6169), - [anon_sym_BSLASHbigl] = ACTIONS(6169), - [anon_sym_BSLASHBigl] = ACTIONS(6169), - [anon_sym_BSLASHbiggl] = ACTIONS(6169), - [anon_sym_BSLASHBiggl] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6169), - [anon_sym_BSLASHgls] = ACTIONS(6169), - [anon_sym_BSLASHGls] = ACTIONS(6169), - [anon_sym_BSLASHGLS] = ACTIONS(6169), - [anon_sym_BSLASHglspl] = ACTIONS(6169), - [anon_sym_BSLASHGlspl] = ACTIONS(6169), - [anon_sym_BSLASHGLSpl] = ACTIONS(6169), - [anon_sym_BSLASHglsdisp] = ACTIONS(6169), - [anon_sym_BSLASHglslink] = ACTIONS(6169), - [anon_sym_BSLASHglstext] = ACTIONS(6169), - [anon_sym_BSLASHGlstext] = ACTIONS(6169), - [anon_sym_BSLASHGLStext] = ACTIONS(6169), - [anon_sym_BSLASHglsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6169), - [anon_sym_BSLASHglsplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSplural] = ACTIONS(6169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHglsname] = ACTIONS(6169), - [anon_sym_BSLASHGlsname] = ACTIONS(6169), - [anon_sym_BSLASHGLSname] = ACTIONS(6169), - [anon_sym_BSLASHglssymbol] = ACTIONS(6169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6169), - [anon_sym_BSLASHglsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6169), - [anon_sym_BSLASHglsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6169), - [anon_sym_BSLASHglsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6169), - [anon_sym_BSLASHglsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6169), - [anon_sym_BSLASHglsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6169), - [anon_sym_BSLASHnewacronym] = ACTIONS(6169), - [anon_sym_BSLASHacrshort] = ACTIONS(6169), - [anon_sym_BSLASHAcrshort] = ACTIONS(6169), - [anon_sym_BSLASHACRshort] = ACTIONS(6169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6169), - [anon_sym_BSLASHacrlong] = ACTIONS(6169), - [anon_sym_BSLASHAcrlong] = ACTIONS(6169), - [anon_sym_BSLASHACRlong] = ACTIONS(6169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6169), - [anon_sym_BSLASHacrfull] = ACTIONS(6169), - [anon_sym_BSLASHAcrfull] = ACTIONS(6169), - [anon_sym_BSLASHACRfull] = ACTIONS(6169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6169), - [anon_sym_BSLASHacs] = ACTIONS(6169), - [anon_sym_BSLASHAcs] = ACTIONS(6169), - [anon_sym_BSLASHacsp] = ACTIONS(6169), - [anon_sym_BSLASHAcsp] = ACTIONS(6169), - [anon_sym_BSLASHacl] = ACTIONS(6169), - [anon_sym_BSLASHAcl] = ACTIONS(6169), - [anon_sym_BSLASHaclp] = ACTIONS(6169), - [anon_sym_BSLASHAclp] = ACTIONS(6169), - [anon_sym_BSLASHacf] = ACTIONS(6169), - [anon_sym_BSLASHAcf] = ACTIONS(6169), - [anon_sym_BSLASHacfp] = ACTIONS(6169), - [anon_sym_BSLASHAcfp] = ACTIONS(6169), - [anon_sym_BSLASHac] = ACTIONS(6169), - [anon_sym_BSLASHAc] = ACTIONS(6169), - [anon_sym_BSLASHacp] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6169), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6169), - [anon_sym_BSLASHcolor] = ACTIONS(6169), - [anon_sym_BSLASHcolorbox] = ACTIONS(6169), - [anon_sym_BSLASHtextcolor] = ACTIONS(6169), - [anon_sym_BSLASHpagecolor] = ACTIONS(6169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6169), - [anon_sym_BSLASHtext] = ACTIONS(6169), - [anon_sym_BSLASHintertext] = ACTIONS(6169), - [anon_sym_shortintertext] = ACTIONS(6169), - }, - [1674] = { - [sym_command_name] = ACTIONS(6157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_EQ] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_LBRACE] = ACTIONS(6159), - [anon_sym_RBRACE] = ACTIONS(6159), - [sym_word] = ACTIONS(6157), - [sym_placeholder] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6157), - [anon_sym_GT] = ACTIONS(6157), - [anon_sym_BANG] = ACTIONS(6157), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_SQUOTE] = ACTIONS(6157), - [anon_sym__] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6159), - [anon_sym_DOLLAR] = ACTIONS(6157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6159), - [anon_sym_BSLASHtitle] = ACTIONS(6157), - [anon_sym_BSLASHauthor] = ACTIONS(6157), - [anon_sym_BSLASHusepackage] = ACTIONS(6157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6157), - [anon_sym_BSLASHinclude] = ACTIONS(6157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6157), - [anon_sym_BSLASHinput] = ACTIONS(6157), - [anon_sym_BSLASHsubfile] = ACTIONS(6157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6157), - [anon_sym_BSLASHbibliography] = ACTIONS(6157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6157), - [anon_sym_BSLASHincludesvg] = ACTIONS(6157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6157), - [anon_sym_BSLASHimport] = ACTIONS(6157), - [anon_sym_BSLASHsubimport] = ACTIONS(6157), - [anon_sym_BSLASHinputfrom] = ACTIONS(6157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6157), - [anon_sym_BSLASHincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHcaption] = ACTIONS(6157), - [anon_sym_BSLASHcite] = ACTIONS(6157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCite] = ACTIONS(6157), - [anon_sym_BSLASHnocite] = ACTIONS(6157), - [anon_sym_BSLASHcitet] = ACTIONS(6157), - [anon_sym_BSLASHcitep] = ACTIONS(6157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteauthor] = ACTIONS(6157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitetitle] = ACTIONS(6157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteyear] = ACTIONS(6157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitedate] = ACTIONS(6157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteurl] = ACTIONS(6157), - [anon_sym_BSLASHfullcite] = ACTIONS(6157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6157), - [anon_sym_BSLASHcitealt] = ACTIONS(6157), - [anon_sym_BSLASHcitealp] = ACTIONS(6157), - [anon_sym_BSLASHcitetext] = ACTIONS(6157), - [anon_sym_BSLASHparencite] = ACTIONS(6157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHParencite] = ACTIONS(6157), - [anon_sym_BSLASHfootcite] = ACTIONS(6157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6157), - [anon_sym_BSLASHtextcite] = ACTIONS(6157), - [anon_sym_BSLASHTextcite] = ACTIONS(6157), - [anon_sym_BSLASHsmartcite] = ACTIONS(6157), - [anon_sym_BSLASHSmartcite] = ACTIONS(6157), - [anon_sym_BSLASHsupercite] = ACTIONS(6157), - [anon_sym_BSLASHautocite] = ACTIONS(6157), - [anon_sym_BSLASHAutocite] = ACTIONS(6157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHvolcite] = ACTIONS(6157), - [anon_sym_BSLASHVolcite] = ACTIONS(6157), - [anon_sym_BSLASHpvolcite] = ACTIONS(6157), - [anon_sym_BSLASHPvolcite] = ACTIONS(6157), - [anon_sym_BSLASHfvolcite] = ACTIONS(6157), - [anon_sym_BSLASHftvolcite] = ACTIONS(6157), - [anon_sym_BSLASHsvolcite] = ACTIONS(6157), - [anon_sym_BSLASHSvolcite] = ACTIONS(6157), - [anon_sym_BSLASHtvolcite] = ACTIONS(6157), - [anon_sym_BSLASHTvolcite] = ACTIONS(6157), - [anon_sym_BSLASHavolcite] = ACTIONS(6157), - [anon_sym_BSLASHAvolcite] = ACTIONS(6157), - [anon_sym_BSLASHnotecite] = ACTIONS(6157), - [anon_sym_BSLASHNotecite] = ACTIONS(6157), - [anon_sym_BSLASHpnotecite] = ACTIONS(6157), - [anon_sym_BSLASHPnotecite] = ACTIONS(6157), - [anon_sym_BSLASHfnotecite] = ACTIONS(6157), - [anon_sym_BSLASHlabel] = ACTIONS(6157), - [anon_sym_BSLASHref] = ACTIONS(6157), - [anon_sym_BSLASHeqref] = ACTIONS(6157), - [anon_sym_BSLASHvref] = ACTIONS(6157), - [anon_sym_BSLASHVref] = ACTIONS(6157), - [anon_sym_BSLASHautoref] = ACTIONS(6157), - [anon_sym_BSLASHpageref] = ACTIONS(6157), - [anon_sym_BSLASHcref] = ACTIONS(6157), - [anon_sym_BSLASHCref] = ACTIONS(6157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnameCref] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHlabelcref] = ACTIONS(6157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCrefrange] = ACTIONS(6157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnewlabel] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6159), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHdef] = ACTIONS(6157), - [anon_sym_BSLASHlet] = ACTIONS(6157), - [anon_sym_BSLASHleft] = ACTIONS(6157), - [anon_sym_BSLASHbig] = ACTIONS(6157), - [anon_sym_BSLASHBig] = ACTIONS(6157), - [anon_sym_BSLASHbigg] = ACTIONS(6157), - [anon_sym_BSLASHBigg] = ACTIONS(6157), - [anon_sym_BSLASHbigl] = ACTIONS(6157), - [anon_sym_BSLASHBigl] = ACTIONS(6157), - [anon_sym_BSLASHbiggl] = ACTIONS(6157), - [anon_sym_BSLASHBiggl] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6157), - [anon_sym_BSLASHgls] = ACTIONS(6157), - [anon_sym_BSLASHGls] = ACTIONS(6157), - [anon_sym_BSLASHGLS] = ACTIONS(6157), - [anon_sym_BSLASHglspl] = ACTIONS(6157), - [anon_sym_BSLASHGlspl] = ACTIONS(6157), - [anon_sym_BSLASHGLSpl] = ACTIONS(6157), - [anon_sym_BSLASHglsdisp] = ACTIONS(6157), - [anon_sym_BSLASHglslink] = ACTIONS(6157), - [anon_sym_BSLASHglstext] = ACTIONS(6157), - [anon_sym_BSLASHGlstext] = ACTIONS(6157), - [anon_sym_BSLASHGLStext] = ACTIONS(6157), - [anon_sym_BSLASHglsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6157), - [anon_sym_BSLASHglsplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSplural] = ACTIONS(6157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHglsname] = ACTIONS(6157), - [anon_sym_BSLASHGlsname] = ACTIONS(6157), - [anon_sym_BSLASHGLSname] = ACTIONS(6157), - [anon_sym_BSLASHglssymbol] = ACTIONS(6157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6157), - [anon_sym_BSLASHglsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6157), - [anon_sym_BSLASHglsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6157), - [anon_sym_BSLASHglsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6157), - [anon_sym_BSLASHglsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6157), - [anon_sym_BSLASHglsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6157), - [anon_sym_BSLASHnewacronym] = ACTIONS(6157), - [anon_sym_BSLASHacrshort] = ACTIONS(6157), - [anon_sym_BSLASHAcrshort] = ACTIONS(6157), - [anon_sym_BSLASHACRshort] = ACTIONS(6157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6157), - [anon_sym_BSLASHacrlong] = ACTIONS(6157), - [anon_sym_BSLASHAcrlong] = ACTIONS(6157), - [anon_sym_BSLASHACRlong] = ACTIONS(6157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6157), - [anon_sym_BSLASHacrfull] = ACTIONS(6157), - [anon_sym_BSLASHAcrfull] = ACTIONS(6157), - [anon_sym_BSLASHACRfull] = ACTIONS(6157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6157), - [anon_sym_BSLASHacs] = ACTIONS(6157), - [anon_sym_BSLASHAcs] = ACTIONS(6157), - [anon_sym_BSLASHacsp] = ACTIONS(6157), - [anon_sym_BSLASHAcsp] = ACTIONS(6157), - [anon_sym_BSLASHacl] = ACTIONS(6157), - [anon_sym_BSLASHAcl] = ACTIONS(6157), - [anon_sym_BSLASHaclp] = ACTIONS(6157), - [anon_sym_BSLASHAclp] = ACTIONS(6157), - [anon_sym_BSLASHacf] = ACTIONS(6157), - [anon_sym_BSLASHAcf] = ACTIONS(6157), - [anon_sym_BSLASHacfp] = ACTIONS(6157), - [anon_sym_BSLASHAcfp] = ACTIONS(6157), - [anon_sym_BSLASHac] = ACTIONS(6157), - [anon_sym_BSLASHAc] = ACTIONS(6157), - [anon_sym_BSLASHacp] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6157), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6157), - [anon_sym_BSLASHcolor] = ACTIONS(6157), - [anon_sym_BSLASHcolorbox] = ACTIONS(6157), - [anon_sym_BSLASHtextcolor] = ACTIONS(6157), - [anon_sym_BSLASHpagecolor] = ACTIONS(6157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6157), - [anon_sym_BSLASHtext] = ACTIONS(6157), - [anon_sym_BSLASHintertext] = ACTIONS(6157), - [anon_sym_shortintertext] = ACTIONS(6157), - }, - [1675] = { - [sym_command_name] = ACTIONS(6333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6333), - [anon_sym_LBRACK] = ACTIONS(6335), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(6335), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_LBRACE] = ACTIONS(6335), - [anon_sym_RBRACE] = ACTIONS(6335), - [sym_word] = ACTIONS(6333), - [sym_placeholder] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6335), - [anon_sym_DASH] = ACTIONS(6335), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6333), - [anon_sym_GT] = ACTIONS(6333), - [anon_sym_BANG] = ACTIONS(6333), - [anon_sym_PIPE] = ACTIONS(6333), - [anon_sym_COLON] = ACTIONS(6333), - [anon_sym_SQUOTE] = ACTIONS(6333), - [anon_sym__] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6335), - [anon_sym_DOLLAR] = ACTIONS(6333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6335), - [anon_sym_BSLASHtitle] = ACTIONS(6333), - [anon_sym_BSLASHauthor] = ACTIONS(6333), - [anon_sym_BSLASHusepackage] = ACTIONS(6333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6333), - [anon_sym_BSLASHinclude] = ACTIONS(6333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6333), - [anon_sym_BSLASHinput] = ACTIONS(6333), - [anon_sym_BSLASHsubfile] = ACTIONS(6333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6333), - [anon_sym_BSLASHbibliography] = ACTIONS(6333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6333), - [anon_sym_BSLASHincludesvg] = ACTIONS(6333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6333), - [anon_sym_BSLASHimport] = ACTIONS(6333), - [anon_sym_BSLASHsubimport] = ACTIONS(6333), - [anon_sym_BSLASHinputfrom] = ACTIONS(6333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6333), - [anon_sym_BSLASHincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHcaption] = ACTIONS(6333), - [anon_sym_BSLASHcite] = ACTIONS(6333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCite] = ACTIONS(6333), - [anon_sym_BSLASHnocite] = ACTIONS(6333), - [anon_sym_BSLASHcitet] = ACTIONS(6333), - [anon_sym_BSLASHcitep] = ACTIONS(6333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteauthor] = ACTIONS(6333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitetitle] = ACTIONS(6333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteyear] = ACTIONS(6333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitedate] = ACTIONS(6333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteurl] = ACTIONS(6333), - [anon_sym_BSLASHfullcite] = ACTIONS(6333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6333), - [anon_sym_BSLASHcitealt] = ACTIONS(6333), - [anon_sym_BSLASHcitealp] = ACTIONS(6333), - [anon_sym_BSLASHcitetext] = ACTIONS(6333), - [anon_sym_BSLASHparencite] = ACTIONS(6333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHParencite] = ACTIONS(6333), - [anon_sym_BSLASHfootcite] = ACTIONS(6333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6333), - [anon_sym_BSLASHtextcite] = ACTIONS(6333), - [anon_sym_BSLASHTextcite] = ACTIONS(6333), - [anon_sym_BSLASHsmartcite] = ACTIONS(6333), - [anon_sym_BSLASHSmartcite] = ACTIONS(6333), - [anon_sym_BSLASHsupercite] = ACTIONS(6333), - [anon_sym_BSLASHautocite] = ACTIONS(6333), - [anon_sym_BSLASHAutocite] = ACTIONS(6333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHvolcite] = ACTIONS(6333), - [anon_sym_BSLASHVolcite] = ACTIONS(6333), - [anon_sym_BSLASHpvolcite] = ACTIONS(6333), - [anon_sym_BSLASHPvolcite] = ACTIONS(6333), - [anon_sym_BSLASHfvolcite] = ACTIONS(6333), - [anon_sym_BSLASHftvolcite] = ACTIONS(6333), - [anon_sym_BSLASHsvolcite] = ACTIONS(6333), - [anon_sym_BSLASHSvolcite] = ACTIONS(6333), - [anon_sym_BSLASHtvolcite] = ACTIONS(6333), - [anon_sym_BSLASHTvolcite] = ACTIONS(6333), - [anon_sym_BSLASHavolcite] = ACTIONS(6333), - [anon_sym_BSLASHAvolcite] = ACTIONS(6333), - [anon_sym_BSLASHnotecite] = ACTIONS(6333), - [anon_sym_BSLASHNotecite] = ACTIONS(6333), - [anon_sym_BSLASHpnotecite] = ACTIONS(6333), - [anon_sym_BSLASHPnotecite] = ACTIONS(6333), - [anon_sym_BSLASHfnotecite] = ACTIONS(6333), - [anon_sym_BSLASHlabel] = ACTIONS(6333), - [anon_sym_BSLASHref] = ACTIONS(6333), - [anon_sym_BSLASHeqref] = ACTIONS(6333), - [anon_sym_BSLASHvref] = ACTIONS(6333), - [anon_sym_BSLASHVref] = ACTIONS(6333), - [anon_sym_BSLASHautoref] = ACTIONS(6333), - [anon_sym_BSLASHpageref] = ACTIONS(6333), - [anon_sym_BSLASHcref] = ACTIONS(6333), - [anon_sym_BSLASHCref] = ACTIONS(6333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnameCref] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHlabelcref] = ACTIONS(6333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCrefrange] = ACTIONS(6333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnewlabel] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6335), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHdef] = ACTIONS(6333), - [anon_sym_BSLASHlet] = ACTIONS(6333), - [anon_sym_BSLASHleft] = ACTIONS(6333), - [anon_sym_BSLASHbig] = ACTIONS(6333), - [anon_sym_BSLASHBig] = ACTIONS(6333), - [anon_sym_BSLASHbigg] = ACTIONS(6333), - [anon_sym_BSLASHBigg] = ACTIONS(6333), - [anon_sym_BSLASHbigl] = ACTIONS(6333), - [anon_sym_BSLASHBigl] = ACTIONS(6333), - [anon_sym_BSLASHbiggl] = ACTIONS(6333), - [anon_sym_BSLASHBiggl] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6333), - [anon_sym_BSLASHgls] = ACTIONS(6333), - [anon_sym_BSLASHGls] = ACTIONS(6333), - [anon_sym_BSLASHGLS] = ACTIONS(6333), - [anon_sym_BSLASHglspl] = ACTIONS(6333), - [anon_sym_BSLASHGlspl] = ACTIONS(6333), - [anon_sym_BSLASHGLSpl] = ACTIONS(6333), - [anon_sym_BSLASHglsdisp] = ACTIONS(6333), - [anon_sym_BSLASHglslink] = ACTIONS(6333), - [anon_sym_BSLASHglstext] = ACTIONS(6333), - [anon_sym_BSLASHGlstext] = ACTIONS(6333), - [anon_sym_BSLASHGLStext] = ACTIONS(6333), - [anon_sym_BSLASHglsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6333), - [anon_sym_BSLASHglsplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSplural] = ACTIONS(6333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHglsname] = ACTIONS(6333), - [anon_sym_BSLASHGlsname] = ACTIONS(6333), - [anon_sym_BSLASHGLSname] = ACTIONS(6333), - [anon_sym_BSLASHglssymbol] = ACTIONS(6333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6333), - [anon_sym_BSLASHglsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6333), - [anon_sym_BSLASHglsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6333), - [anon_sym_BSLASHglsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6333), - [anon_sym_BSLASHglsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6333), - [anon_sym_BSLASHglsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6333), - [anon_sym_BSLASHnewacronym] = ACTIONS(6333), - [anon_sym_BSLASHacrshort] = ACTIONS(6333), - [anon_sym_BSLASHAcrshort] = ACTIONS(6333), - [anon_sym_BSLASHACRshort] = ACTIONS(6333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6333), - [anon_sym_BSLASHacrlong] = ACTIONS(6333), - [anon_sym_BSLASHAcrlong] = ACTIONS(6333), - [anon_sym_BSLASHACRlong] = ACTIONS(6333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6333), - [anon_sym_BSLASHacrfull] = ACTIONS(6333), - [anon_sym_BSLASHAcrfull] = ACTIONS(6333), - [anon_sym_BSLASHACRfull] = ACTIONS(6333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6333), - [anon_sym_BSLASHacs] = ACTIONS(6333), - [anon_sym_BSLASHAcs] = ACTIONS(6333), - [anon_sym_BSLASHacsp] = ACTIONS(6333), - [anon_sym_BSLASHAcsp] = ACTIONS(6333), - [anon_sym_BSLASHacl] = ACTIONS(6333), - [anon_sym_BSLASHAcl] = ACTIONS(6333), - [anon_sym_BSLASHaclp] = ACTIONS(6333), - [anon_sym_BSLASHAclp] = ACTIONS(6333), - [anon_sym_BSLASHacf] = ACTIONS(6333), - [anon_sym_BSLASHAcf] = ACTIONS(6333), - [anon_sym_BSLASHacfp] = ACTIONS(6333), - [anon_sym_BSLASHAcfp] = ACTIONS(6333), - [anon_sym_BSLASHac] = ACTIONS(6333), - [anon_sym_BSLASHAc] = ACTIONS(6333), - [anon_sym_BSLASHacp] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6333), - [anon_sym_BSLASHcolor] = ACTIONS(6333), - [anon_sym_BSLASHcolorbox] = ACTIONS(6333), - [anon_sym_BSLASHtextcolor] = ACTIONS(6333), - [anon_sym_BSLASHpagecolor] = ACTIONS(6333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6333), - [anon_sym_BSLASHtext] = ACTIONS(6333), - [anon_sym_BSLASHintertext] = ACTIONS(6333), - [anon_sym_shortintertext] = ACTIONS(6333), - }, - [1676] = { - [sym_command_name] = ACTIONS(6117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6117), - [anon_sym_LBRACK] = ACTIONS(6119), - [anon_sym_RBRACK] = ACTIONS(6119), - [anon_sym_COMMA] = ACTIONS(6119), - [anon_sym_EQ] = ACTIONS(6119), - [anon_sym_LPAREN] = ACTIONS(6119), - [anon_sym_RPAREN] = ACTIONS(6119), - [anon_sym_LBRACE] = ACTIONS(6119), - [sym_word] = ACTIONS(6117), - [sym_placeholder] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6119), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_LT] = ACTIONS(6117), - [anon_sym_GT] = ACTIONS(6117), - [anon_sym_BANG] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_SQUOTE] = ACTIONS(6117), - [anon_sym__] = ACTIONS(6119), - [anon_sym_CARET] = ACTIONS(6119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6119), - [anon_sym_DOLLAR] = ACTIONS(6117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6119), - [anon_sym_BSLASHbegin] = ACTIONS(6117), - [anon_sym_BSLASHtitle] = ACTIONS(6117), - [anon_sym_BSLASHauthor] = ACTIONS(6117), - [anon_sym_BSLASHusepackage] = ACTIONS(6117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6117), - [anon_sym_BSLASHinclude] = ACTIONS(6117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6117), - [anon_sym_BSLASHinput] = ACTIONS(6117), - [anon_sym_BSLASHsubfile] = ACTIONS(6117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6117), - [anon_sym_BSLASHbibliography] = ACTIONS(6117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6117), - [anon_sym_BSLASHincludesvg] = ACTIONS(6117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6117), - [anon_sym_BSLASHimport] = ACTIONS(6117), - [anon_sym_BSLASHsubimport] = ACTIONS(6117), - [anon_sym_BSLASHinputfrom] = ACTIONS(6117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6117), - [anon_sym_BSLASHincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHcaption] = ACTIONS(6117), - [anon_sym_BSLASHcite] = ACTIONS(6117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCite] = ACTIONS(6117), - [anon_sym_BSLASHnocite] = ACTIONS(6117), - [anon_sym_BSLASHcitet] = ACTIONS(6117), - [anon_sym_BSLASHcitep] = ACTIONS(6117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteauthor] = ACTIONS(6117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitetitle] = ACTIONS(6117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteyear] = ACTIONS(6117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitedate] = ACTIONS(6117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteurl] = ACTIONS(6117), - [anon_sym_BSLASHfullcite] = ACTIONS(6117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6117), - [anon_sym_BSLASHcitealt] = ACTIONS(6117), - [anon_sym_BSLASHcitealp] = ACTIONS(6117), - [anon_sym_BSLASHcitetext] = ACTIONS(6117), - [anon_sym_BSLASHparencite] = ACTIONS(6117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHParencite] = ACTIONS(6117), - [anon_sym_BSLASHfootcite] = ACTIONS(6117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6117), - [anon_sym_BSLASHtextcite] = ACTIONS(6117), - [anon_sym_BSLASHTextcite] = ACTIONS(6117), - [anon_sym_BSLASHsmartcite] = ACTIONS(6117), - [anon_sym_BSLASHSmartcite] = ACTIONS(6117), - [anon_sym_BSLASHsupercite] = ACTIONS(6117), - [anon_sym_BSLASHautocite] = ACTIONS(6117), - [anon_sym_BSLASHAutocite] = ACTIONS(6117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHvolcite] = ACTIONS(6117), - [anon_sym_BSLASHVolcite] = ACTIONS(6117), - [anon_sym_BSLASHpvolcite] = ACTIONS(6117), - [anon_sym_BSLASHPvolcite] = ACTIONS(6117), - [anon_sym_BSLASHfvolcite] = ACTIONS(6117), - [anon_sym_BSLASHftvolcite] = ACTIONS(6117), - [anon_sym_BSLASHsvolcite] = ACTIONS(6117), - [anon_sym_BSLASHSvolcite] = ACTIONS(6117), - [anon_sym_BSLASHtvolcite] = ACTIONS(6117), - [anon_sym_BSLASHTvolcite] = ACTIONS(6117), - [anon_sym_BSLASHavolcite] = ACTIONS(6117), - [anon_sym_BSLASHAvolcite] = ACTIONS(6117), - [anon_sym_BSLASHnotecite] = ACTIONS(6117), - [anon_sym_BSLASHNotecite] = ACTIONS(6117), - [anon_sym_BSLASHpnotecite] = ACTIONS(6117), - [anon_sym_BSLASHPnotecite] = ACTIONS(6117), - [anon_sym_BSLASHfnotecite] = ACTIONS(6117), - [anon_sym_BSLASHlabel] = ACTIONS(6117), - [anon_sym_BSLASHref] = ACTIONS(6117), - [anon_sym_BSLASHeqref] = ACTIONS(6117), - [anon_sym_BSLASHvref] = ACTIONS(6117), - [anon_sym_BSLASHVref] = ACTIONS(6117), - [anon_sym_BSLASHautoref] = ACTIONS(6117), - [anon_sym_BSLASHpageref] = ACTIONS(6117), - [anon_sym_BSLASHcref] = ACTIONS(6117), - [anon_sym_BSLASHCref] = ACTIONS(6117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnameCref] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHlabelcref] = ACTIONS(6117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCrefrange] = ACTIONS(6117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnewlabel] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6119), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHdef] = ACTIONS(6117), - [anon_sym_BSLASHlet] = ACTIONS(6117), - [anon_sym_BSLASHleft] = ACTIONS(6117), - [anon_sym_BSLASHbig] = ACTIONS(6117), - [anon_sym_BSLASHBig] = ACTIONS(6117), - [anon_sym_BSLASHbigg] = ACTIONS(6117), - [anon_sym_BSLASHBigg] = ACTIONS(6117), - [anon_sym_BSLASHbigl] = ACTIONS(6117), - [anon_sym_BSLASHBigl] = ACTIONS(6117), - [anon_sym_BSLASHbiggl] = ACTIONS(6117), - [anon_sym_BSLASHBiggl] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6117), - [anon_sym_BSLASHgls] = ACTIONS(6117), - [anon_sym_BSLASHGls] = ACTIONS(6117), - [anon_sym_BSLASHGLS] = ACTIONS(6117), - [anon_sym_BSLASHglspl] = ACTIONS(6117), - [anon_sym_BSLASHGlspl] = ACTIONS(6117), - [anon_sym_BSLASHGLSpl] = ACTIONS(6117), - [anon_sym_BSLASHglsdisp] = ACTIONS(6117), - [anon_sym_BSLASHglslink] = ACTIONS(6117), - [anon_sym_BSLASHglstext] = ACTIONS(6117), - [anon_sym_BSLASHGlstext] = ACTIONS(6117), - [anon_sym_BSLASHGLStext] = ACTIONS(6117), - [anon_sym_BSLASHglsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6117), - [anon_sym_BSLASHglsplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSplural] = ACTIONS(6117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHglsname] = ACTIONS(6117), - [anon_sym_BSLASHGlsname] = ACTIONS(6117), - [anon_sym_BSLASHGLSname] = ACTIONS(6117), - [anon_sym_BSLASHglssymbol] = ACTIONS(6117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6117), - [anon_sym_BSLASHglsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6117), - [anon_sym_BSLASHglsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6117), - [anon_sym_BSLASHglsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6117), - [anon_sym_BSLASHglsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6117), - [anon_sym_BSLASHglsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6117), - [anon_sym_BSLASHnewacronym] = ACTIONS(6117), - [anon_sym_BSLASHacrshort] = ACTIONS(6117), - [anon_sym_BSLASHAcrshort] = ACTIONS(6117), - [anon_sym_BSLASHACRshort] = ACTIONS(6117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6117), - [anon_sym_BSLASHacrlong] = ACTIONS(6117), - [anon_sym_BSLASHAcrlong] = ACTIONS(6117), - [anon_sym_BSLASHACRlong] = ACTIONS(6117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6117), - [anon_sym_BSLASHacrfull] = ACTIONS(6117), - [anon_sym_BSLASHAcrfull] = ACTIONS(6117), - [anon_sym_BSLASHACRfull] = ACTIONS(6117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6117), - [anon_sym_BSLASHacs] = ACTIONS(6117), - [anon_sym_BSLASHAcs] = ACTIONS(6117), - [anon_sym_BSLASHacsp] = ACTIONS(6117), - [anon_sym_BSLASHAcsp] = ACTIONS(6117), - [anon_sym_BSLASHacl] = ACTIONS(6117), - [anon_sym_BSLASHAcl] = ACTIONS(6117), - [anon_sym_BSLASHaclp] = ACTIONS(6117), - [anon_sym_BSLASHAclp] = ACTIONS(6117), - [anon_sym_BSLASHacf] = ACTIONS(6117), - [anon_sym_BSLASHAcf] = ACTIONS(6117), - [anon_sym_BSLASHacfp] = ACTIONS(6117), - [anon_sym_BSLASHAcfp] = ACTIONS(6117), - [anon_sym_BSLASHac] = ACTIONS(6117), - [anon_sym_BSLASHAc] = ACTIONS(6117), - [anon_sym_BSLASHacp] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6117), - [anon_sym_BSLASHcolor] = ACTIONS(6117), - [anon_sym_BSLASHcolorbox] = ACTIONS(6117), - [anon_sym_BSLASHtextcolor] = ACTIONS(6117), - [anon_sym_BSLASHpagecolor] = ACTIONS(6117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6117), - [anon_sym_BSLASHtext] = ACTIONS(6117), - [anon_sym_BSLASHintertext] = ACTIONS(6117), - [anon_sym_shortintertext] = ACTIONS(6117), - }, - [1677] = { - [sym_command_name] = ACTIONS(6329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6329), - [anon_sym_LBRACK] = ACTIONS(6331), - [anon_sym_RBRACK] = ACTIONS(6331), - [anon_sym_COMMA] = ACTIONS(6331), - [anon_sym_EQ] = ACTIONS(6331), - [anon_sym_LPAREN] = ACTIONS(6331), - [anon_sym_RPAREN] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6331), - [anon_sym_RBRACE] = ACTIONS(6331), - [sym_word] = ACTIONS(6329), - [sym_placeholder] = ACTIONS(6331), - [anon_sym_PLUS] = ACTIONS(6331), - [anon_sym_DASH] = ACTIONS(6331), - [anon_sym_STAR] = ACTIONS(6331), - [anon_sym_SLASH] = ACTIONS(6331), - [anon_sym_LT] = ACTIONS(6329), - [anon_sym_GT] = ACTIONS(6329), - [anon_sym_BANG] = ACTIONS(6329), - [anon_sym_PIPE] = ACTIONS(6329), - [anon_sym_COLON] = ACTIONS(6329), - [anon_sym_SQUOTE] = ACTIONS(6329), - [anon_sym__] = ACTIONS(6331), - [anon_sym_CARET] = ACTIONS(6331), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6331), - [anon_sym_DOLLAR] = ACTIONS(6329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6331), - [anon_sym_BSLASHtitle] = ACTIONS(6329), - [anon_sym_BSLASHauthor] = ACTIONS(6329), - [anon_sym_BSLASHusepackage] = ACTIONS(6329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6329), - [anon_sym_BSLASHinclude] = ACTIONS(6329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6329), - [anon_sym_BSLASHinput] = ACTIONS(6329), - [anon_sym_BSLASHsubfile] = ACTIONS(6329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6329), - [anon_sym_BSLASHbibliography] = ACTIONS(6329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6329), - [anon_sym_BSLASHincludesvg] = ACTIONS(6329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6329), - [anon_sym_BSLASHimport] = ACTIONS(6329), - [anon_sym_BSLASHsubimport] = ACTIONS(6329), - [anon_sym_BSLASHinputfrom] = ACTIONS(6329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6329), - [anon_sym_BSLASHincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHcaption] = ACTIONS(6329), - [anon_sym_BSLASHcite] = ACTIONS(6329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCite] = ACTIONS(6329), - [anon_sym_BSLASHnocite] = ACTIONS(6329), - [anon_sym_BSLASHcitet] = ACTIONS(6329), - [anon_sym_BSLASHcitep] = ACTIONS(6329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteauthor] = ACTIONS(6329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitetitle] = ACTIONS(6329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteyear] = ACTIONS(6329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitedate] = ACTIONS(6329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteurl] = ACTIONS(6329), - [anon_sym_BSLASHfullcite] = ACTIONS(6329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6329), - [anon_sym_BSLASHcitealt] = ACTIONS(6329), - [anon_sym_BSLASHcitealp] = ACTIONS(6329), - [anon_sym_BSLASHcitetext] = ACTIONS(6329), - [anon_sym_BSLASHparencite] = ACTIONS(6329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHParencite] = ACTIONS(6329), - [anon_sym_BSLASHfootcite] = ACTIONS(6329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6329), - [anon_sym_BSLASHtextcite] = ACTIONS(6329), - [anon_sym_BSLASHTextcite] = ACTIONS(6329), - [anon_sym_BSLASHsmartcite] = ACTIONS(6329), - [anon_sym_BSLASHSmartcite] = ACTIONS(6329), - [anon_sym_BSLASHsupercite] = ACTIONS(6329), - [anon_sym_BSLASHautocite] = ACTIONS(6329), - [anon_sym_BSLASHAutocite] = ACTIONS(6329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHvolcite] = ACTIONS(6329), - [anon_sym_BSLASHVolcite] = ACTIONS(6329), - [anon_sym_BSLASHpvolcite] = ACTIONS(6329), - [anon_sym_BSLASHPvolcite] = ACTIONS(6329), - [anon_sym_BSLASHfvolcite] = ACTIONS(6329), - [anon_sym_BSLASHftvolcite] = ACTIONS(6329), - [anon_sym_BSLASHsvolcite] = ACTIONS(6329), - [anon_sym_BSLASHSvolcite] = ACTIONS(6329), - [anon_sym_BSLASHtvolcite] = ACTIONS(6329), - [anon_sym_BSLASHTvolcite] = ACTIONS(6329), - [anon_sym_BSLASHavolcite] = ACTIONS(6329), - [anon_sym_BSLASHAvolcite] = ACTIONS(6329), - [anon_sym_BSLASHnotecite] = ACTIONS(6329), - [anon_sym_BSLASHNotecite] = ACTIONS(6329), - [anon_sym_BSLASHpnotecite] = ACTIONS(6329), - [anon_sym_BSLASHPnotecite] = ACTIONS(6329), - [anon_sym_BSLASHfnotecite] = ACTIONS(6329), - [anon_sym_BSLASHlabel] = ACTIONS(6329), - [anon_sym_BSLASHref] = ACTIONS(6329), - [anon_sym_BSLASHeqref] = ACTIONS(6329), - [anon_sym_BSLASHvref] = ACTIONS(6329), - [anon_sym_BSLASHVref] = ACTIONS(6329), - [anon_sym_BSLASHautoref] = ACTIONS(6329), - [anon_sym_BSLASHpageref] = ACTIONS(6329), - [anon_sym_BSLASHcref] = ACTIONS(6329), - [anon_sym_BSLASHCref] = ACTIONS(6329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnameCref] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHlabelcref] = ACTIONS(6329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCrefrange] = ACTIONS(6329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnewlabel] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6331), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHdef] = ACTIONS(6329), - [anon_sym_BSLASHlet] = ACTIONS(6329), - [anon_sym_BSLASHleft] = ACTIONS(6329), - [anon_sym_BSLASHbig] = ACTIONS(6329), - [anon_sym_BSLASHBig] = ACTIONS(6329), - [anon_sym_BSLASHbigg] = ACTIONS(6329), - [anon_sym_BSLASHBigg] = ACTIONS(6329), - [anon_sym_BSLASHbigl] = ACTIONS(6329), - [anon_sym_BSLASHBigl] = ACTIONS(6329), - [anon_sym_BSLASHbiggl] = ACTIONS(6329), - [anon_sym_BSLASHBiggl] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6329), - [anon_sym_BSLASHgls] = ACTIONS(6329), - [anon_sym_BSLASHGls] = ACTIONS(6329), - [anon_sym_BSLASHGLS] = ACTIONS(6329), - [anon_sym_BSLASHglspl] = ACTIONS(6329), - [anon_sym_BSLASHGlspl] = ACTIONS(6329), - [anon_sym_BSLASHGLSpl] = ACTIONS(6329), - [anon_sym_BSLASHglsdisp] = ACTIONS(6329), - [anon_sym_BSLASHglslink] = ACTIONS(6329), - [anon_sym_BSLASHglstext] = ACTIONS(6329), - [anon_sym_BSLASHGlstext] = ACTIONS(6329), - [anon_sym_BSLASHGLStext] = ACTIONS(6329), - [anon_sym_BSLASHglsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6329), - [anon_sym_BSLASHglsplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSplural] = ACTIONS(6329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHglsname] = ACTIONS(6329), - [anon_sym_BSLASHGlsname] = ACTIONS(6329), - [anon_sym_BSLASHGLSname] = ACTIONS(6329), - [anon_sym_BSLASHglssymbol] = ACTIONS(6329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6329), - [anon_sym_BSLASHglsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6329), - [anon_sym_BSLASHglsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6329), - [anon_sym_BSLASHglsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6329), - [anon_sym_BSLASHglsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6329), - [anon_sym_BSLASHglsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6329), - [anon_sym_BSLASHnewacronym] = ACTIONS(6329), - [anon_sym_BSLASHacrshort] = ACTIONS(6329), - [anon_sym_BSLASHAcrshort] = ACTIONS(6329), - [anon_sym_BSLASHACRshort] = ACTIONS(6329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6329), - [anon_sym_BSLASHacrlong] = ACTIONS(6329), - [anon_sym_BSLASHAcrlong] = ACTIONS(6329), - [anon_sym_BSLASHACRlong] = ACTIONS(6329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6329), - [anon_sym_BSLASHacrfull] = ACTIONS(6329), - [anon_sym_BSLASHAcrfull] = ACTIONS(6329), - [anon_sym_BSLASHACRfull] = ACTIONS(6329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6329), - [anon_sym_BSLASHacs] = ACTIONS(6329), - [anon_sym_BSLASHAcs] = ACTIONS(6329), - [anon_sym_BSLASHacsp] = ACTIONS(6329), - [anon_sym_BSLASHAcsp] = ACTIONS(6329), - [anon_sym_BSLASHacl] = ACTIONS(6329), - [anon_sym_BSLASHAcl] = ACTIONS(6329), - [anon_sym_BSLASHaclp] = ACTIONS(6329), - [anon_sym_BSLASHAclp] = ACTIONS(6329), - [anon_sym_BSLASHacf] = ACTIONS(6329), - [anon_sym_BSLASHAcf] = ACTIONS(6329), - [anon_sym_BSLASHacfp] = ACTIONS(6329), - [anon_sym_BSLASHAcfp] = ACTIONS(6329), - [anon_sym_BSLASHac] = ACTIONS(6329), - [anon_sym_BSLASHAc] = ACTIONS(6329), - [anon_sym_BSLASHacp] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6329), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6329), - [anon_sym_BSLASHcolor] = ACTIONS(6329), - [anon_sym_BSLASHcolorbox] = ACTIONS(6329), - [anon_sym_BSLASHtextcolor] = ACTIONS(6329), - [anon_sym_BSLASHpagecolor] = ACTIONS(6329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6329), - [anon_sym_BSLASHtext] = ACTIONS(6329), - [anon_sym_BSLASHintertext] = ACTIONS(6329), - [anon_sym_shortintertext] = ACTIONS(6329), - }, - [1678] = { - [sym_command_name] = ACTIONS(6201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6201), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_EQ] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6203), - [anon_sym_RBRACE] = ACTIONS(6203), - [sym_word] = ACTIONS(6201), - [sym_placeholder] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_SQUOTE] = ACTIONS(6201), - [anon_sym__] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), - [anon_sym_DOLLAR] = ACTIONS(6201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), - [anon_sym_BSLASHtitle] = ACTIONS(6201), - [anon_sym_BSLASHauthor] = ACTIONS(6201), - [anon_sym_BSLASHusepackage] = ACTIONS(6201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), - [anon_sym_BSLASHinclude] = ACTIONS(6201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), - [anon_sym_BSLASHinput] = ACTIONS(6201), - [anon_sym_BSLASHsubfile] = ACTIONS(6201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), - [anon_sym_BSLASHbibliography] = ACTIONS(6201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), - [anon_sym_BSLASHincludesvg] = ACTIONS(6201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), - [anon_sym_BSLASHimport] = ACTIONS(6201), - [anon_sym_BSLASHsubimport] = ACTIONS(6201), - [anon_sym_BSLASHinputfrom] = ACTIONS(6201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), - [anon_sym_BSLASHincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHcaption] = ACTIONS(6201), - [anon_sym_BSLASHcite] = ACTIONS(6201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCite] = ACTIONS(6201), - [anon_sym_BSLASHnocite] = ACTIONS(6201), - [anon_sym_BSLASHcitet] = ACTIONS(6201), - [anon_sym_BSLASHcitep] = ACTIONS(6201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteauthor] = ACTIONS(6201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitetitle] = ACTIONS(6201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteyear] = ACTIONS(6201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitedate] = ACTIONS(6201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteurl] = ACTIONS(6201), - [anon_sym_BSLASHfullcite] = ACTIONS(6201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), - [anon_sym_BSLASHcitealt] = ACTIONS(6201), - [anon_sym_BSLASHcitealp] = ACTIONS(6201), - [anon_sym_BSLASHcitetext] = ACTIONS(6201), - [anon_sym_BSLASHparencite] = ACTIONS(6201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHParencite] = ACTIONS(6201), - [anon_sym_BSLASHfootcite] = ACTIONS(6201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), - [anon_sym_BSLASHtextcite] = ACTIONS(6201), - [anon_sym_BSLASHTextcite] = ACTIONS(6201), - [anon_sym_BSLASHsmartcite] = ACTIONS(6201), - [anon_sym_BSLASHSmartcite] = ACTIONS(6201), - [anon_sym_BSLASHsupercite] = ACTIONS(6201), - [anon_sym_BSLASHautocite] = ACTIONS(6201), - [anon_sym_BSLASHAutocite] = ACTIONS(6201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHvolcite] = ACTIONS(6201), - [anon_sym_BSLASHVolcite] = ACTIONS(6201), - [anon_sym_BSLASHpvolcite] = ACTIONS(6201), - [anon_sym_BSLASHPvolcite] = ACTIONS(6201), - [anon_sym_BSLASHfvolcite] = ACTIONS(6201), - [anon_sym_BSLASHftvolcite] = ACTIONS(6201), - [anon_sym_BSLASHsvolcite] = ACTIONS(6201), - [anon_sym_BSLASHSvolcite] = ACTIONS(6201), - [anon_sym_BSLASHtvolcite] = ACTIONS(6201), - [anon_sym_BSLASHTvolcite] = ACTIONS(6201), - [anon_sym_BSLASHavolcite] = ACTIONS(6201), - [anon_sym_BSLASHAvolcite] = ACTIONS(6201), - [anon_sym_BSLASHnotecite] = ACTIONS(6201), - [anon_sym_BSLASHNotecite] = ACTIONS(6201), - [anon_sym_BSLASHpnotecite] = ACTIONS(6201), - [anon_sym_BSLASHPnotecite] = ACTIONS(6201), - [anon_sym_BSLASHfnotecite] = ACTIONS(6201), - [anon_sym_BSLASHlabel] = ACTIONS(6201), - [anon_sym_BSLASHref] = ACTIONS(6201), - [anon_sym_BSLASHeqref] = ACTIONS(6201), - [anon_sym_BSLASHvref] = ACTIONS(6201), - [anon_sym_BSLASHVref] = ACTIONS(6201), - [anon_sym_BSLASHautoref] = ACTIONS(6201), - [anon_sym_BSLASHpageref] = ACTIONS(6201), - [anon_sym_BSLASHcref] = ACTIONS(6201), - [anon_sym_BSLASHCref] = ACTIONS(6201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnameCref] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHlabelcref] = ACTIONS(6201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCrefrange] = ACTIONS(6201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnewlabel] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHdef] = ACTIONS(6201), - [anon_sym_BSLASHlet] = ACTIONS(6201), - [anon_sym_BSLASHleft] = ACTIONS(6201), - [anon_sym_BSLASHbig] = ACTIONS(6201), - [anon_sym_BSLASHBig] = ACTIONS(6201), - [anon_sym_BSLASHbigg] = ACTIONS(6201), - [anon_sym_BSLASHBigg] = ACTIONS(6201), - [anon_sym_BSLASHbigl] = ACTIONS(6201), - [anon_sym_BSLASHBigl] = ACTIONS(6201), - [anon_sym_BSLASHbiggl] = ACTIONS(6201), - [anon_sym_BSLASHBiggl] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), - [anon_sym_BSLASHgls] = ACTIONS(6201), - [anon_sym_BSLASHGls] = ACTIONS(6201), - [anon_sym_BSLASHGLS] = ACTIONS(6201), - [anon_sym_BSLASHglspl] = ACTIONS(6201), - [anon_sym_BSLASHGlspl] = ACTIONS(6201), - [anon_sym_BSLASHGLSpl] = ACTIONS(6201), - [anon_sym_BSLASHglsdisp] = ACTIONS(6201), - [anon_sym_BSLASHglslink] = ACTIONS(6201), - [anon_sym_BSLASHglstext] = ACTIONS(6201), - [anon_sym_BSLASHGlstext] = ACTIONS(6201), - [anon_sym_BSLASHGLStext] = ACTIONS(6201), - [anon_sym_BSLASHglsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), - [anon_sym_BSLASHglsplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSplural] = ACTIONS(6201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHglsname] = ACTIONS(6201), - [anon_sym_BSLASHGlsname] = ACTIONS(6201), - [anon_sym_BSLASHGLSname] = ACTIONS(6201), - [anon_sym_BSLASHglssymbol] = ACTIONS(6201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), - [anon_sym_BSLASHglsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), - [anon_sym_BSLASHglsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), - [anon_sym_BSLASHglsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), - [anon_sym_BSLASHglsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), - [anon_sym_BSLASHglsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), - [anon_sym_BSLASHnewacronym] = ACTIONS(6201), - [anon_sym_BSLASHacrshort] = ACTIONS(6201), - [anon_sym_BSLASHAcrshort] = ACTIONS(6201), - [anon_sym_BSLASHACRshort] = ACTIONS(6201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), - [anon_sym_BSLASHacrlong] = ACTIONS(6201), - [anon_sym_BSLASHAcrlong] = ACTIONS(6201), - [anon_sym_BSLASHACRlong] = ACTIONS(6201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), - [anon_sym_BSLASHacrfull] = ACTIONS(6201), - [anon_sym_BSLASHAcrfull] = ACTIONS(6201), - [anon_sym_BSLASHACRfull] = ACTIONS(6201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), - [anon_sym_BSLASHacs] = ACTIONS(6201), - [anon_sym_BSLASHAcs] = ACTIONS(6201), - [anon_sym_BSLASHacsp] = ACTIONS(6201), - [anon_sym_BSLASHAcsp] = ACTIONS(6201), - [anon_sym_BSLASHacl] = ACTIONS(6201), - [anon_sym_BSLASHAcl] = ACTIONS(6201), - [anon_sym_BSLASHaclp] = ACTIONS(6201), - [anon_sym_BSLASHAclp] = ACTIONS(6201), - [anon_sym_BSLASHacf] = ACTIONS(6201), - [anon_sym_BSLASHAcf] = ACTIONS(6201), - [anon_sym_BSLASHacfp] = ACTIONS(6201), - [anon_sym_BSLASHAcfp] = ACTIONS(6201), - [anon_sym_BSLASHac] = ACTIONS(6201), - [anon_sym_BSLASHAc] = ACTIONS(6201), - [anon_sym_BSLASHacp] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), - [anon_sym_BSLASHcolor] = ACTIONS(6201), - [anon_sym_BSLASHcolorbox] = ACTIONS(6201), - [anon_sym_BSLASHtextcolor] = ACTIONS(6201), - [anon_sym_BSLASHpagecolor] = ACTIONS(6201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), - [anon_sym_BSLASHtext] = ACTIONS(6201), - [anon_sym_BSLASHintertext] = ACTIONS(6201), - [anon_sym_shortintertext] = ACTIONS(6201), - }, - [1679] = { - [sym_command_name] = ACTIONS(6181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6181), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_EQ] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_LBRACE] = ACTIONS(6183), - [anon_sym_RBRACE] = ACTIONS(6183), - [sym_word] = ACTIONS(6181), - [sym_placeholder] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6183), - [anon_sym_DASH] = ACTIONS(6183), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_COLON] = ACTIONS(6181), - [anon_sym_SQUOTE] = ACTIONS(6181), - [anon_sym__] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), - [anon_sym_BSLASHtitle] = ACTIONS(6181), - [anon_sym_BSLASHauthor] = ACTIONS(6181), - [anon_sym_BSLASHusepackage] = ACTIONS(6181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), - [anon_sym_BSLASHinclude] = ACTIONS(6181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), - [anon_sym_BSLASHinput] = ACTIONS(6181), - [anon_sym_BSLASHsubfile] = ACTIONS(6181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), - [anon_sym_BSLASHbibliography] = ACTIONS(6181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), - [anon_sym_BSLASHincludesvg] = ACTIONS(6181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), - [anon_sym_BSLASHimport] = ACTIONS(6181), - [anon_sym_BSLASHsubimport] = ACTIONS(6181), - [anon_sym_BSLASHinputfrom] = ACTIONS(6181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), - [anon_sym_BSLASHincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHcaption] = ACTIONS(6181), - [anon_sym_BSLASHcite] = ACTIONS(6181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCite] = ACTIONS(6181), - [anon_sym_BSLASHnocite] = ACTIONS(6181), - [anon_sym_BSLASHcitet] = ACTIONS(6181), - [anon_sym_BSLASHcitep] = ACTIONS(6181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteauthor] = ACTIONS(6181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitetitle] = ACTIONS(6181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteyear] = ACTIONS(6181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitedate] = ACTIONS(6181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteurl] = ACTIONS(6181), - [anon_sym_BSLASHfullcite] = ACTIONS(6181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), - [anon_sym_BSLASHcitealt] = ACTIONS(6181), - [anon_sym_BSLASHcitealp] = ACTIONS(6181), - [anon_sym_BSLASHcitetext] = ACTIONS(6181), - [anon_sym_BSLASHparencite] = ACTIONS(6181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHParencite] = ACTIONS(6181), - [anon_sym_BSLASHfootcite] = ACTIONS(6181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), - [anon_sym_BSLASHtextcite] = ACTIONS(6181), - [anon_sym_BSLASHTextcite] = ACTIONS(6181), - [anon_sym_BSLASHsmartcite] = ACTIONS(6181), - [anon_sym_BSLASHSmartcite] = ACTIONS(6181), - [anon_sym_BSLASHsupercite] = ACTIONS(6181), - [anon_sym_BSLASHautocite] = ACTIONS(6181), - [anon_sym_BSLASHAutocite] = ACTIONS(6181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHvolcite] = ACTIONS(6181), - [anon_sym_BSLASHVolcite] = ACTIONS(6181), - [anon_sym_BSLASHpvolcite] = ACTIONS(6181), - [anon_sym_BSLASHPvolcite] = ACTIONS(6181), - [anon_sym_BSLASHfvolcite] = ACTIONS(6181), - [anon_sym_BSLASHftvolcite] = ACTIONS(6181), - [anon_sym_BSLASHsvolcite] = ACTIONS(6181), - [anon_sym_BSLASHSvolcite] = ACTIONS(6181), - [anon_sym_BSLASHtvolcite] = ACTIONS(6181), - [anon_sym_BSLASHTvolcite] = ACTIONS(6181), - [anon_sym_BSLASHavolcite] = ACTIONS(6181), - [anon_sym_BSLASHAvolcite] = ACTIONS(6181), - [anon_sym_BSLASHnotecite] = ACTIONS(6181), - [anon_sym_BSLASHNotecite] = ACTIONS(6181), - [anon_sym_BSLASHpnotecite] = ACTIONS(6181), - [anon_sym_BSLASHPnotecite] = ACTIONS(6181), - [anon_sym_BSLASHfnotecite] = ACTIONS(6181), - [anon_sym_BSLASHlabel] = ACTIONS(6181), - [anon_sym_BSLASHref] = ACTIONS(6181), - [anon_sym_BSLASHeqref] = ACTIONS(6181), - [anon_sym_BSLASHvref] = ACTIONS(6181), - [anon_sym_BSLASHVref] = ACTIONS(6181), - [anon_sym_BSLASHautoref] = ACTIONS(6181), - [anon_sym_BSLASHpageref] = ACTIONS(6181), - [anon_sym_BSLASHcref] = ACTIONS(6181), - [anon_sym_BSLASHCref] = ACTIONS(6181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnameCref] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHlabelcref] = ACTIONS(6181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCrefrange] = ACTIONS(6181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnewlabel] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHdef] = ACTIONS(6181), - [anon_sym_BSLASHlet] = ACTIONS(6181), - [anon_sym_BSLASHleft] = ACTIONS(6181), - [anon_sym_BSLASHbig] = ACTIONS(6181), - [anon_sym_BSLASHBig] = ACTIONS(6181), - [anon_sym_BSLASHbigg] = ACTIONS(6181), - [anon_sym_BSLASHBigg] = ACTIONS(6181), - [anon_sym_BSLASHbigl] = ACTIONS(6181), - [anon_sym_BSLASHBigl] = ACTIONS(6181), - [anon_sym_BSLASHbiggl] = ACTIONS(6181), - [anon_sym_BSLASHBiggl] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), - [anon_sym_BSLASHgls] = ACTIONS(6181), - [anon_sym_BSLASHGls] = ACTIONS(6181), - [anon_sym_BSLASHGLS] = ACTIONS(6181), - [anon_sym_BSLASHglspl] = ACTIONS(6181), - [anon_sym_BSLASHGlspl] = ACTIONS(6181), - [anon_sym_BSLASHGLSpl] = ACTIONS(6181), - [anon_sym_BSLASHglsdisp] = ACTIONS(6181), - [anon_sym_BSLASHglslink] = ACTIONS(6181), - [anon_sym_BSLASHglstext] = ACTIONS(6181), - [anon_sym_BSLASHGlstext] = ACTIONS(6181), - [anon_sym_BSLASHGLStext] = ACTIONS(6181), - [anon_sym_BSLASHglsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), - [anon_sym_BSLASHglsplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSplural] = ACTIONS(6181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHglsname] = ACTIONS(6181), - [anon_sym_BSLASHGlsname] = ACTIONS(6181), - [anon_sym_BSLASHGLSname] = ACTIONS(6181), - [anon_sym_BSLASHglssymbol] = ACTIONS(6181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), - [anon_sym_BSLASHglsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), - [anon_sym_BSLASHglsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), - [anon_sym_BSLASHglsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), - [anon_sym_BSLASHglsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), - [anon_sym_BSLASHglsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), - [anon_sym_BSLASHnewacronym] = ACTIONS(6181), - [anon_sym_BSLASHacrshort] = ACTIONS(6181), - [anon_sym_BSLASHAcrshort] = ACTIONS(6181), - [anon_sym_BSLASHACRshort] = ACTIONS(6181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), - [anon_sym_BSLASHacrlong] = ACTIONS(6181), - [anon_sym_BSLASHAcrlong] = ACTIONS(6181), - [anon_sym_BSLASHACRlong] = ACTIONS(6181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), - [anon_sym_BSLASHacrfull] = ACTIONS(6181), - [anon_sym_BSLASHAcrfull] = ACTIONS(6181), - [anon_sym_BSLASHACRfull] = ACTIONS(6181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), - [anon_sym_BSLASHacs] = ACTIONS(6181), - [anon_sym_BSLASHAcs] = ACTIONS(6181), - [anon_sym_BSLASHacsp] = ACTIONS(6181), - [anon_sym_BSLASHAcsp] = ACTIONS(6181), - [anon_sym_BSLASHacl] = ACTIONS(6181), - [anon_sym_BSLASHAcl] = ACTIONS(6181), - [anon_sym_BSLASHaclp] = ACTIONS(6181), - [anon_sym_BSLASHAclp] = ACTIONS(6181), - [anon_sym_BSLASHacf] = ACTIONS(6181), - [anon_sym_BSLASHAcf] = ACTIONS(6181), - [anon_sym_BSLASHacfp] = ACTIONS(6181), - [anon_sym_BSLASHAcfp] = ACTIONS(6181), - [anon_sym_BSLASHac] = ACTIONS(6181), - [anon_sym_BSLASHAc] = ACTIONS(6181), - [anon_sym_BSLASHacp] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), - [anon_sym_BSLASHcolor] = ACTIONS(6181), - [anon_sym_BSLASHcolorbox] = ACTIONS(6181), - [anon_sym_BSLASHtextcolor] = ACTIONS(6181), - [anon_sym_BSLASHpagecolor] = ACTIONS(6181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), - [anon_sym_BSLASHtext] = ACTIONS(6181), - [anon_sym_BSLASHintertext] = ACTIONS(6181), - [anon_sym_shortintertext] = ACTIONS(6181), - }, - [1680] = { - [sym_command_name] = ACTIONS(6249), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(6251), - [anon_sym_RBRACK] = ACTIONS(6251), - [anon_sym_COMMA] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(6251), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_LBRACE] = ACTIONS(6251), - [anon_sym_RBRACE] = ACTIONS(6251), - [sym_word] = ACTIONS(6249), - [sym_placeholder] = ACTIONS(6251), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6251), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_LT] = ACTIONS(6249), - [anon_sym_GT] = ACTIONS(6249), - [anon_sym_BANG] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_SQUOTE] = ACTIONS(6249), - [anon_sym__] = ACTIONS(6251), - [anon_sym_CARET] = ACTIONS(6251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), - [anon_sym_DOLLAR] = ACTIONS(6249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), - [anon_sym_BSLASHtitle] = ACTIONS(6249), - [anon_sym_BSLASHauthor] = ACTIONS(6249), - [anon_sym_BSLASHusepackage] = ACTIONS(6249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), - [anon_sym_BSLASHinclude] = ACTIONS(6249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), - [anon_sym_BSLASHinput] = ACTIONS(6249), - [anon_sym_BSLASHsubfile] = ACTIONS(6249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), - [anon_sym_BSLASHbibliography] = ACTIONS(6249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), - [anon_sym_BSLASHincludesvg] = ACTIONS(6249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), - [anon_sym_BSLASHimport] = ACTIONS(6249), - [anon_sym_BSLASHsubimport] = ACTIONS(6249), - [anon_sym_BSLASHinputfrom] = ACTIONS(6249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), - [anon_sym_BSLASHincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHcaption] = ACTIONS(6249), - [anon_sym_BSLASHcite] = ACTIONS(6249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCite] = ACTIONS(6249), - [anon_sym_BSLASHnocite] = ACTIONS(6249), - [anon_sym_BSLASHcitet] = ACTIONS(6249), - [anon_sym_BSLASHcitep] = ACTIONS(6249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteauthor] = ACTIONS(6249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitetitle] = ACTIONS(6249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteyear] = ACTIONS(6249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitedate] = ACTIONS(6249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteurl] = ACTIONS(6249), - [anon_sym_BSLASHfullcite] = ACTIONS(6249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), - [anon_sym_BSLASHcitealt] = ACTIONS(6249), - [anon_sym_BSLASHcitealp] = ACTIONS(6249), - [anon_sym_BSLASHcitetext] = ACTIONS(6249), - [anon_sym_BSLASHparencite] = ACTIONS(6249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHParencite] = ACTIONS(6249), - [anon_sym_BSLASHfootcite] = ACTIONS(6249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), - [anon_sym_BSLASHtextcite] = ACTIONS(6249), - [anon_sym_BSLASHTextcite] = ACTIONS(6249), - [anon_sym_BSLASHsmartcite] = ACTIONS(6249), - [anon_sym_BSLASHSmartcite] = ACTIONS(6249), - [anon_sym_BSLASHsupercite] = ACTIONS(6249), - [anon_sym_BSLASHautocite] = ACTIONS(6249), - [anon_sym_BSLASHAutocite] = ACTIONS(6249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHvolcite] = ACTIONS(6249), - [anon_sym_BSLASHVolcite] = ACTIONS(6249), - [anon_sym_BSLASHpvolcite] = ACTIONS(6249), - [anon_sym_BSLASHPvolcite] = ACTIONS(6249), - [anon_sym_BSLASHfvolcite] = ACTIONS(6249), - [anon_sym_BSLASHftvolcite] = ACTIONS(6249), - [anon_sym_BSLASHsvolcite] = ACTIONS(6249), - [anon_sym_BSLASHSvolcite] = ACTIONS(6249), - [anon_sym_BSLASHtvolcite] = ACTIONS(6249), - [anon_sym_BSLASHTvolcite] = ACTIONS(6249), - [anon_sym_BSLASHavolcite] = ACTIONS(6249), - [anon_sym_BSLASHAvolcite] = ACTIONS(6249), - [anon_sym_BSLASHnotecite] = ACTIONS(6249), - [anon_sym_BSLASHNotecite] = ACTIONS(6249), - [anon_sym_BSLASHpnotecite] = ACTIONS(6249), - [anon_sym_BSLASHPnotecite] = ACTIONS(6249), - [anon_sym_BSLASHfnotecite] = ACTIONS(6249), - [anon_sym_BSLASHlabel] = ACTIONS(6249), - [anon_sym_BSLASHref] = ACTIONS(6249), - [anon_sym_BSLASHeqref] = ACTIONS(6249), - [anon_sym_BSLASHvref] = ACTIONS(6249), - [anon_sym_BSLASHVref] = ACTIONS(6249), - [anon_sym_BSLASHautoref] = ACTIONS(6249), - [anon_sym_BSLASHpageref] = ACTIONS(6249), - [anon_sym_BSLASHcref] = ACTIONS(6249), - [anon_sym_BSLASHCref] = ACTIONS(6249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnameCref] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHlabelcref] = ACTIONS(6249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCrefrange] = ACTIONS(6249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnewlabel] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHdef] = ACTIONS(6249), - [anon_sym_BSLASHlet] = ACTIONS(6249), - [anon_sym_BSLASHleft] = ACTIONS(6249), - [anon_sym_BSLASHbig] = ACTIONS(6249), - [anon_sym_BSLASHBig] = ACTIONS(6249), - [anon_sym_BSLASHbigg] = ACTIONS(6249), - [anon_sym_BSLASHBigg] = ACTIONS(6249), - [anon_sym_BSLASHbigl] = ACTIONS(6249), - [anon_sym_BSLASHBigl] = ACTIONS(6249), - [anon_sym_BSLASHbiggl] = ACTIONS(6249), - [anon_sym_BSLASHBiggl] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), - [anon_sym_BSLASHgls] = ACTIONS(6249), - [anon_sym_BSLASHGls] = ACTIONS(6249), - [anon_sym_BSLASHGLS] = ACTIONS(6249), - [anon_sym_BSLASHglspl] = ACTIONS(6249), - [anon_sym_BSLASHGlspl] = ACTIONS(6249), - [anon_sym_BSLASHGLSpl] = ACTIONS(6249), - [anon_sym_BSLASHglsdisp] = ACTIONS(6249), - [anon_sym_BSLASHglslink] = ACTIONS(6249), - [anon_sym_BSLASHglstext] = ACTIONS(6249), - [anon_sym_BSLASHGlstext] = ACTIONS(6249), - [anon_sym_BSLASHGLStext] = ACTIONS(6249), - [anon_sym_BSLASHglsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), - [anon_sym_BSLASHglsplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSplural] = ACTIONS(6249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHglsname] = ACTIONS(6249), - [anon_sym_BSLASHGlsname] = ACTIONS(6249), - [anon_sym_BSLASHGLSname] = ACTIONS(6249), - [anon_sym_BSLASHglssymbol] = ACTIONS(6249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), - [anon_sym_BSLASHglsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), - [anon_sym_BSLASHglsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), - [anon_sym_BSLASHglsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), - [anon_sym_BSLASHglsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), - [anon_sym_BSLASHglsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), - [anon_sym_BSLASHnewacronym] = ACTIONS(6249), - [anon_sym_BSLASHacrshort] = ACTIONS(6249), - [anon_sym_BSLASHAcrshort] = ACTIONS(6249), - [anon_sym_BSLASHACRshort] = ACTIONS(6249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), - [anon_sym_BSLASHacrlong] = ACTIONS(6249), - [anon_sym_BSLASHAcrlong] = ACTIONS(6249), - [anon_sym_BSLASHACRlong] = ACTIONS(6249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), - [anon_sym_BSLASHacrfull] = ACTIONS(6249), - [anon_sym_BSLASHAcrfull] = ACTIONS(6249), - [anon_sym_BSLASHACRfull] = ACTIONS(6249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), - [anon_sym_BSLASHacs] = ACTIONS(6249), - [anon_sym_BSLASHAcs] = ACTIONS(6249), - [anon_sym_BSLASHacsp] = ACTIONS(6249), - [anon_sym_BSLASHAcsp] = ACTIONS(6249), - [anon_sym_BSLASHacl] = ACTIONS(6249), - [anon_sym_BSLASHAcl] = ACTIONS(6249), - [anon_sym_BSLASHaclp] = ACTIONS(6249), - [anon_sym_BSLASHAclp] = ACTIONS(6249), - [anon_sym_BSLASHacf] = ACTIONS(6249), - [anon_sym_BSLASHAcf] = ACTIONS(6249), - [anon_sym_BSLASHacfp] = ACTIONS(6249), - [anon_sym_BSLASHAcfp] = ACTIONS(6249), - [anon_sym_BSLASHac] = ACTIONS(6249), - [anon_sym_BSLASHAc] = ACTIONS(6249), - [anon_sym_BSLASHacp] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), - [anon_sym_BSLASHcolor] = ACTIONS(6249), - [anon_sym_BSLASHcolorbox] = ACTIONS(6249), - [anon_sym_BSLASHtextcolor] = ACTIONS(6249), - [anon_sym_BSLASHpagecolor] = ACTIONS(6249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), - [anon_sym_BSLASHtext] = ACTIONS(6249), - [anon_sym_BSLASHintertext] = ACTIONS(6249), - [anon_sym_shortintertext] = ACTIONS(6249), - }, - [1681] = { - [sym_command_name] = ACTIONS(6169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6169), - [anon_sym_LBRACK] = ACTIONS(6171), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_EQ] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_LBRACE] = ACTIONS(6171), - [anon_sym_RBRACE] = ACTIONS(6171), - [sym_word] = ACTIONS(6169), - [sym_placeholder] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6171), - [anon_sym_DASH] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_COLON] = ACTIONS(6169), - [anon_sym_SQUOTE] = ACTIONS(6169), - [anon_sym__] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6171), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6171), - [anon_sym_DOLLAR] = ACTIONS(6169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6171), - [anon_sym_BSLASHtitle] = ACTIONS(6169), - [anon_sym_BSLASHauthor] = ACTIONS(6169), - [anon_sym_BSLASHusepackage] = ACTIONS(6169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6169), - [anon_sym_BSLASHinclude] = ACTIONS(6169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6169), - [anon_sym_BSLASHinput] = ACTIONS(6169), - [anon_sym_BSLASHsubfile] = ACTIONS(6169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6169), - [anon_sym_BSLASHbibliography] = ACTIONS(6169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6169), - [anon_sym_BSLASHincludesvg] = ACTIONS(6169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6169), - [anon_sym_BSLASHimport] = ACTIONS(6169), - [anon_sym_BSLASHsubimport] = ACTIONS(6169), - [anon_sym_BSLASHinputfrom] = ACTIONS(6169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6169), - [anon_sym_BSLASHincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHcaption] = ACTIONS(6169), - [anon_sym_BSLASHcite] = ACTIONS(6169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCite] = ACTIONS(6169), - [anon_sym_BSLASHnocite] = ACTIONS(6169), - [anon_sym_BSLASHcitet] = ACTIONS(6169), - [anon_sym_BSLASHcitep] = ACTIONS(6169), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteauthor] = ACTIONS(6169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitetitle] = ACTIONS(6169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteyear] = ACTIONS(6169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitedate] = ACTIONS(6169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteurl] = ACTIONS(6169), - [anon_sym_BSLASHfullcite] = ACTIONS(6169), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6169), - [anon_sym_BSLASHcitealt] = ACTIONS(6169), - [anon_sym_BSLASHcitealp] = ACTIONS(6169), - [anon_sym_BSLASHcitetext] = ACTIONS(6169), - [anon_sym_BSLASHparencite] = ACTIONS(6169), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHParencite] = ACTIONS(6169), - [anon_sym_BSLASHfootcite] = ACTIONS(6169), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6169), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6169), - [anon_sym_BSLASHtextcite] = ACTIONS(6169), - [anon_sym_BSLASHTextcite] = ACTIONS(6169), - [anon_sym_BSLASHsmartcite] = ACTIONS(6169), - [anon_sym_BSLASHSmartcite] = ACTIONS(6169), - [anon_sym_BSLASHsupercite] = ACTIONS(6169), - [anon_sym_BSLASHautocite] = ACTIONS(6169), - [anon_sym_BSLASHAutocite] = ACTIONS(6169), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHvolcite] = ACTIONS(6169), - [anon_sym_BSLASHVolcite] = ACTIONS(6169), - [anon_sym_BSLASHpvolcite] = ACTIONS(6169), - [anon_sym_BSLASHPvolcite] = ACTIONS(6169), - [anon_sym_BSLASHfvolcite] = ACTIONS(6169), - [anon_sym_BSLASHftvolcite] = ACTIONS(6169), - [anon_sym_BSLASHsvolcite] = ACTIONS(6169), - [anon_sym_BSLASHSvolcite] = ACTIONS(6169), - [anon_sym_BSLASHtvolcite] = ACTIONS(6169), - [anon_sym_BSLASHTvolcite] = ACTIONS(6169), - [anon_sym_BSLASHavolcite] = ACTIONS(6169), - [anon_sym_BSLASHAvolcite] = ACTIONS(6169), - [anon_sym_BSLASHnotecite] = ACTIONS(6169), - [anon_sym_BSLASHNotecite] = ACTIONS(6169), - [anon_sym_BSLASHpnotecite] = ACTIONS(6169), - [anon_sym_BSLASHPnotecite] = ACTIONS(6169), - [anon_sym_BSLASHfnotecite] = ACTIONS(6169), - [anon_sym_BSLASHlabel] = ACTIONS(6169), - [anon_sym_BSLASHref] = ACTIONS(6169), - [anon_sym_BSLASHeqref] = ACTIONS(6169), - [anon_sym_BSLASHvref] = ACTIONS(6169), - [anon_sym_BSLASHVref] = ACTIONS(6169), - [anon_sym_BSLASHautoref] = ACTIONS(6169), - [anon_sym_BSLASHpageref] = ACTIONS(6169), - [anon_sym_BSLASHcref] = ACTIONS(6169), - [anon_sym_BSLASHCref] = ACTIONS(6169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnameCref] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHlabelcref] = ACTIONS(6169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCrefrange] = ACTIONS(6169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnewlabel] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6171), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHdef] = ACTIONS(6169), - [anon_sym_BSLASHlet] = ACTIONS(6169), - [anon_sym_BSLASHleft] = ACTIONS(6169), - [anon_sym_BSLASHbig] = ACTIONS(6169), - [anon_sym_BSLASHBig] = ACTIONS(6169), - [anon_sym_BSLASHbigg] = ACTIONS(6169), - [anon_sym_BSLASHBigg] = ACTIONS(6169), - [anon_sym_BSLASHbigl] = ACTIONS(6169), - [anon_sym_BSLASHBigl] = ACTIONS(6169), - [anon_sym_BSLASHbiggl] = ACTIONS(6169), - [anon_sym_BSLASHBiggl] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6169), - [anon_sym_BSLASHgls] = ACTIONS(6169), - [anon_sym_BSLASHGls] = ACTIONS(6169), - [anon_sym_BSLASHGLS] = ACTIONS(6169), - [anon_sym_BSLASHglspl] = ACTIONS(6169), - [anon_sym_BSLASHGlspl] = ACTIONS(6169), - [anon_sym_BSLASHGLSpl] = ACTIONS(6169), - [anon_sym_BSLASHglsdisp] = ACTIONS(6169), - [anon_sym_BSLASHglslink] = ACTIONS(6169), - [anon_sym_BSLASHglstext] = ACTIONS(6169), - [anon_sym_BSLASHGlstext] = ACTIONS(6169), - [anon_sym_BSLASHGLStext] = ACTIONS(6169), - [anon_sym_BSLASHglsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6169), - [anon_sym_BSLASHglsplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSplural] = ACTIONS(6169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHglsname] = ACTIONS(6169), - [anon_sym_BSLASHGlsname] = ACTIONS(6169), - [anon_sym_BSLASHGLSname] = ACTIONS(6169), - [anon_sym_BSLASHglssymbol] = ACTIONS(6169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6169), - [anon_sym_BSLASHglsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6169), - [anon_sym_BSLASHglsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6169), - [anon_sym_BSLASHglsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6169), - [anon_sym_BSLASHglsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6169), - [anon_sym_BSLASHglsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6169), - [anon_sym_BSLASHnewacronym] = ACTIONS(6169), - [anon_sym_BSLASHacrshort] = ACTIONS(6169), - [anon_sym_BSLASHAcrshort] = ACTIONS(6169), - [anon_sym_BSLASHACRshort] = ACTIONS(6169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6169), - [anon_sym_BSLASHacrlong] = ACTIONS(6169), - [anon_sym_BSLASHAcrlong] = ACTIONS(6169), - [anon_sym_BSLASHACRlong] = ACTIONS(6169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6169), - [anon_sym_BSLASHacrfull] = ACTIONS(6169), - [anon_sym_BSLASHAcrfull] = ACTIONS(6169), - [anon_sym_BSLASHACRfull] = ACTIONS(6169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6169), - [anon_sym_BSLASHacs] = ACTIONS(6169), - [anon_sym_BSLASHAcs] = ACTIONS(6169), - [anon_sym_BSLASHacsp] = ACTIONS(6169), - [anon_sym_BSLASHAcsp] = ACTIONS(6169), - [anon_sym_BSLASHacl] = ACTIONS(6169), - [anon_sym_BSLASHAcl] = ACTIONS(6169), - [anon_sym_BSLASHaclp] = ACTIONS(6169), - [anon_sym_BSLASHAclp] = ACTIONS(6169), - [anon_sym_BSLASHacf] = ACTIONS(6169), - [anon_sym_BSLASHAcf] = ACTIONS(6169), - [anon_sym_BSLASHacfp] = ACTIONS(6169), - [anon_sym_BSLASHAcfp] = ACTIONS(6169), - [anon_sym_BSLASHac] = ACTIONS(6169), - [anon_sym_BSLASHAc] = ACTIONS(6169), - [anon_sym_BSLASHacp] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6169), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6169), - [anon_sym_BSLASHcolor] = ACTIONS(6169), - [anon_sym_BSLASHcolorbox] = ACTIONS(6169), - [anon_sym_BSLASHtextcolor] = ACTIONS(6169), - [anon_sym_BSLASHpagecolor] = ACTIONS(6169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6169), - [anon_sym_BSLASHtext] = ACTIONS(6169), - [anon_sym_BSLASHintertext] = ACTIONS(6169), - [anon_sym_shortintertext] = ACTIONS(6169), - }, - [1682] = { - [sym_command_name] = ACTIONS(6113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6115), - [anon_sym_RBRACK] = ACTIONS(6115), - [anon_sym_COMMA] = ACTIONS(6115), - [anon_sym_EQ] = ACTIONS(6115), - [anon_sym_LPAREN] = ACTIONS(6115), - [anon_sym_RPAREN] = ACTIONS(6115), - [anon_sym_LBRACE] = ACTIONS(6115), - [sym_word] = ACTIONS(6113), - [sym_placeholder] = ACTIONS(6115), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_LT] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6113), - [anon_sym_BANG] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_SQUOTE] = ACTIONS(6113), - [anon_sym__] = ACTIONS(6115), - [anon_sym_CARET] = ACTIONS(6115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6115), - [anon_sym_DOLLAR] = ACTIONS(6113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6115), - [anon_sym_BSLASHbegin] = ACTIONS(6113), - [anon_sym_BSLASHtitle] = ACTIONS(6113), - [anon_sym_BSLASHauthor] = ACTIONS(6113), - [anon_sym_BSLASHusepackage] = ACTIONS(6113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), - [anon_sym_BSLASHinclude] = ACTIONS(6113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), - [anon_sym_BSLASHinput] = ACTIONS(6113), - [anon_sym_BSLASHsubfile] = ACTIONS(6113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), - [anon_sym_BSLASHbibliography] = ACTIONS(6113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), - [anon_sym_BSLASHincludesvg] = ACTIONS(6113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), - [anon_sym_BSLASHimport] = ACTIONS(6113), - [anon_sym_BSLASHsubimport] = ACTIONS(6113), - [anon_sym_BSLASHinputfrom] = ACTIONS(6113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), - [anon_sym_BSLASHincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHcaption] = ACTIONS(6113), - [anon_sym_BSLASHcite] = ACTIONS(6113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCite] = ACTIONS(6113), - [anon_sym_BSLASHnocite] = ACTIONS(6113), - [anon_sym_BSLASHcitet] = ACTIONS(6113), - [anon_sym_BSLASHcitep] = ACTIONS(6113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteauthor] = ACTIONS(6113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitetitle] = ACTIONS(6113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteyear] = ACTIONS(6113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitedate] = ACTIONS(6113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteurl] = ACTIONS(6113), - [anon_sym_BSLASHfullcite] = ACTIONS(6113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), - [anon_sym_BSLASHcitealt] = ACTIONS(6113), - [anon_sym_BSLASHcitealp] = ACTIONS(6113), - [anon_sym_BSLASHcitetext] = ACTIONS(6113), - [anon_sym_BSLASHparencite] = ACTIONS(6113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHParencite] = ACTIONS(6113), - [anon_sym_BSLASHfootcite] = ACTIONS(6113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), - [anon_sym_BSLASHtextcite] = ACTIONS(6113), - [anon_sym_BSLASHTextcite] = ACTIONS(6113), - [anon_sym_BSLASHsmartcite] = ACTIONS(6113), - [anon_sym_BSLASHSmartcite] = ACTIONS(6113), - [anon_sym_BSLASHsupercite] = ACTIONS(6113), - [anon_sym_BSLASHautocite] = ACTIONS(6113), - [anon_sym_BSLASHAutocite] = ACTIONS(6113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHvolcite] = ACTIONS(6113), - [anon_sym_BSLASHVolcite] = ACTIONS(6113), - [anon_sym_BSLASHpvolcite] = ACTIONS(6113), - [anon_sym_BSLASHPvolcite] = ACTIONS(6113), - [anon_sym_BSLASHfvolcite] = ACTIONS(6113), - [anon_sym_BSLASHftvolcite] = ACTIONS(6113), - [anon_sym_BSLASHsvolcite] = ACTIONS(6113), - [anon_sym_BSLASHSvolcite] = ACTIONS(6113), - [anon_sym_BSLASHtvolcite] = ACTIONS(6113), - [anon_sym_BSLASHTvolcite] = ACTIONS(6113), - [anon_sym_BSLASHavolcite] = ACTIONS(6113), - [anon_sym_BSLASHAvolcite] = ACTIONS(6113), - [anon_sym_BSLASHnotecite] = ACTIONS(6113), - [anon_sym_BSLASHNotecite] = ACTIONS(6113), - [anon_sym_BSLASHpnotecite] = ACTIONS(6113), - [anon_sym_BSLASHPnotecite] = ACTIONS(6113), - [anon_sym_BSLASHfnotecite] = ACTIONS(6113), - [anon_sym_BSLASHlabel] = ACTIONS(6113), - [anon_sym_BSLASHref] = ACTIONS(6113), - [anon_sym_BSLASHeqref] = ACTIONS(6113), - [anon_sym_BSLASHvref] = ACTIONS(6113), - [anon_sym_BSLASHVref] = ACTIONS(6113), - [anon_sym_BSLASHautoref] = ACTIONS(6113), - [anon_sym_BSLASHpageref] = ACTIONS(6113), - [anon_sym_BSLASHcref] = ACTIONS(6113), - [anon_sym_BSLASHCref] = ACTIONS(6113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnameCref] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHlabelcref] = ACTIONS(6113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCrefrange] = ACTIONS(6113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnewlabel] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6115), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHdef] = ACTIONS(6113), - [anon_sym_BSLASHlet] = ACTIONS(6113), - [anon_sym_BSLASHleft] = ACTIONS(6113), - [anon_sym_BSLASHbig] = ACTIONS(6113), - [anon_sym_BSLASHBig] = ACTIONS(6113), - [anon_sym_BSLASHbigg] = ACTIONS(6113), - [anon_sym_BSLASHBigg] = ACTIONS(6113), - [anon_sym_BSLASHbigl] = ACTIONS(6113), - [anon_sym_BSLASHBigl] = ACTIONS(6113), - [anon_sym_BSLASHbiggl] = ACTIONS(6113), - [anon_sym_BSLASHBiggl] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), - [anon_sym_BSLASHgls] = ACTIONS(6113), - [anon_sym_BSLASHGls] = ACTIONS(6113), - [anon_sym_BSLASHGLS] = ACTIONS(6113), - [anon_sym_BSLASHglspl] = ACTIONS(6113), - [anon_sym_BSLASHGlspl] = ACTIONS(6113), - [anon_sym_BSLASHGLSpl] = ACTIONS(6113), - [anon_sym_BSLASHglsdisp] = ACTIONS(6113), - [anon_sym_BSLASHglslink] = ACTIONS(6113), - [anon_sym_BSLASHglstext] = ACTIONS(6113), - [anon_sym_BSLASHGlstext] = ACTIONS(6113), - [anon_sym_BSLASHGLStext] = ACTIONS(6113), - [anon_sym_BSLASHglsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), - [anon_sym_BSLASHglsplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSplural] = ACTIONS(6113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHglsname] = ACTIONS(6113), - [anon_sym_BSLASHGlsname] = ACTIONS(6113), - [anon_sym_BSLASHGLSname] = ACTIONS(6113), - [anon_sym_BSLASHglssymbol] = ACTIONS(6113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), - [anon_sym_BSLASHglsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), - [anon_sym_BSLASHglsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), - [anon_sym_BSLASHglsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), - [anon_sym_BSLASHglsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), - [anon_sym_BSLASHglsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), - [anon_sym_BSLASHnewacronym] = ACTIONS(6113), - [anon_sym_BSLASHacrshort] = ACTIONS(6113), - [anon_sym_BSLASHAcrshort] = ACTIONS(6113), - [anon_sym_BSLASHACRshort] = ACTIONS(6113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), - [anon_sym_BSLASHacrlong] = ACTIONS(6113), - [anon_sym_BSLASHAcrlong] = ACTIONS(6113), - [anon_sym_BSLASHACRlong] = ACTIONS(6113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), - [anon_sym_BSLASHacrfull] = ACTIONS(6113), - [anon_sym_BSLASHAcrfull] = ACTIONS(6113), - [anon_sym_BSLASHACRfull] = ACTIONS(6113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), - [anon_sym_BSLASHacs] = ACTIONS(6113), - [anon_sym_BSLASHAcs] = ACTIONS(6113), - [anon_sym_BSLASHacsp] = ACTIONS(6113), - [anon_sym_BSLASHAcsp] = ACTIONS(6113), - [anon_sym_BSLASHacl] = ACTIONS(6113), - [anon_sym_BSLASHAcl] = ACTIONS(6113), - [anon_sym_BSLASHaclp] = ACTIONS(6113), - [anon_sym_BSLASHAclp] = ACTIONS(6113), - [anon_sym_BSLASHacf] = ACTIONS(6113), - [anon_sym_BSLASHAcf] = ACTIONS(6113), - [anon_sym_BSLASHacfp] = ACTIONS(6113), - [anon_sym_BSLASHAcfp] = ACTIONS(6113), - [anon_sym_BSLASHac] = ACTIONS(6113), - [anon_sym_BSLASHAc] = ACTIONS(6113), - [anon_sym_BSLASHacp] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), - [anon_sym_BSLASHcolor] = ACTIONS(6113), - [anon_sym_BSLASHcolorbox] = ACTIONS(6113), - [anon_sym_BSLASHtextcolor] = ACTIONS(6113), - [anon_sym_BSLASHpagecolor] = ACTIONS(6113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), - [anon_sym_BSLASHtext] = ACTIONS(6113), - [anon_sym_BSLASHintertext] = ACTIONS(6113), - [anon_sym_shortintertext] = ACTIONS(6113), - }, - [1683] = { - [sym_command_name] = ACTIONS(6117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6117), - [anon_sym_LBRACK] = ACTIONS(6119), - [anon_sym_RBRACK] = ACTIONS(6119), - [anon_sym_COMMA] = ACTIONS(6119), - [anon_sym_EQ] = ACTIONS(6119), - [anon_sym_LPAREN] = ACTIONS(6119), - [anon_sym_RPAREN] = ACTIONS(6119), - [anon_sym_LBRACE] = ACTIONS(6119), - [anon_sym_RBRACE] = ACTIONS(6119), - [sym_word] = ACTIONS(6117), - [sym_placeholder] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6119), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_LT] = ACTIONS(6117), - [anon_sym_GT] = ACTIONS(6117), - [anon_sym_BANG] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_SQUOTE] = ACTIONS(6117), - [anon_sym__] = ACTIONS(6119), - [anon_sym_CARET] = ACTIONS(6119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6119), - [anon_sym_DOLLAR] = ACTIONS(6117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6119), - [anon_sym_BSLASHtitle] = ACTIONS(6117), - [anon_sym_BSLASHauthor] = ACTIONS(6117), - [anon_sym_BSLASHusepackage] = ACTIONS(6117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6117), - [anon_sym_BSLASHinclude] = ACTIONS(6117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6117), - [anon_sym_BSLASHinput] = ACTIONS(6117), - [anon_sym_BSLASHsubfile] = ACTIONS(6117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6117), - [anon_sym_BSLASHbibliography] = ACTIONS(6117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6117), - [anon_sym_BSLASHincludesvg] = ACTIONS(6117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6117), - [anon_sym_BSLASHimport] = ACTIONS(6117), - [anon_sym_BSLASHsubimport] = ACTIONS(6117), - [anon_sym_BSLASHinputfrom] = ACTIONS(6117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6117), - [anon_sym_BSLASHincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHcaption] = ACTIONS(6117), - [anon_sym_BSLASHcite] = ACTIONS(6117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCite] = ACTIONS(6117), - [anon_sym_BSLASHnocite] = ACTIONS(6117), - [anon_sym_BSLASHcitet] = ACTIONS(6117), - [anon_sym_BSLASHcitep] = ACTIONS(6117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteauthor] = ACTIONS(6117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitetitle] = ACTIONS(6117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteyear] = ACTIONS(6117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitedate] = ACTIONS(6117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteurl] = ACTIONS(6117), - [anon_sym_BSLASHfullcite] = ACTIONS(6117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6117), - [anon_sym_BSLASHcitealt] = ACTIONS(6117), - [anon_sym_BSLASHcitealp] = ACTIONS(6117), - [anon_sym_BSLASHcitetext] = ACTIONS(6117), - [anon_sym_BSLASHparencite] = ACTIONS(6117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHParencite] = ACTIONS(6117), - [anon_sym_BSLASHfootcite] = ACTIONS(6117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6117), - [anon_sym_BSLASHtextcite] = ACTIONS(6117), - [anon_sym_BSLASHTextcite] = ACTIONS(6117), - [anon_sym_BSLASHsmartcite] = ACTIONS(6117), - [anon_sym_BSLASHSmartcite] = ACTIONS(6117), - [anon_sym_BSLASHsupercite] = ACTIONS(6117), - [anon_sym_BSLASHautocite] = ACTIONS(6117), - [anon_sym_BSLASHAutocite] = ACTIONS(6117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHvolcite] = ACTIONS(6117), - [anon_sym_BSLASHVolcite] = ACTIONS(6117), - [anon_sym_BSLASHpvolcite] = ACTIONS(6117), - [anon_sym_BSLASHPvolcite] = ACTIONS(6117), - [anon_sym_BSLASHfvolcite] = ACTIONS(6117), - [anon_sym_BSLASHftvolcite] = ACTIONS(6117), - [anon_sym_BSLASHsvolcite] = ACTIONS(6117), - [anon_sym_BSLASHSvolcite] = ACTIONS(6117), - [anon_sym_BSLASHtvolcite] = ACTIONS(6117), - [anon_sym_BSLASHTvolcite] = ACTIONS(6117), - [anon_sym_BSLASHavolcite] = ACTIONS(6117), - [anon_sym_BSLASHAvolcite] = ACTIONS(6117), - [anon_sym_BSLASHnotecite] = ACTIONS(6117), - [anon_sym_BSLASHNotecite] = ACTIONS(6117), - [anon_sym_BSLASHpnotecite] = ACTIONS(6117), - [anon_sym_BSLASHPnotecite] = ACTIONS(6117), - [anon_sym_BSLASHfnotecite] = ACTIONS(6117), - [anon_sym_BSLASHlabel] = ACTIONS(6117), - [anon_sym_BSLASHref] = ACTIONS(6117), - [anon_sym_BSLASHeqref] = ACTIONS(6117), - [anon_sym_BSLASHvref] = ACTIONS(6117), - [anon_sym_BSLASHVref] = ACTIONS(6117), - [anon_sym_BSLASHautoref] = ACTIONS(6117), - [anon_sym_BSLASHpageref] = ACTIONS(6117), - [anon_sym_BSLASHcref] = ACTIONS(6117), - [anon_sym_BSLASHCref] = ACTIONS(6117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnameCref] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHlabelcref] = ACTIONS(6117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCrefrange] = ACTIONS(6117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnewlabel] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6119), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHdef] = ACTIONS(6117), - [anon_sym_BSLASHlet] = ACTIONS(6117), - [anon_sym_BSLASHleft] = ACTIONS(6117), - [anon_sym_BSLASHbig] = ACTIONS(6117), - [anon_sym_BSLASHBig] = ACTIONS(6117), - [anon_sym_BSLASHbigg] = ACTIONS(6117), - [anon_sym_BSLASHBigg] = ACTIONS(6117), - [anon_sym_BSLASHbigl] = ACTIONS(6117), - [anon_sym_BSLASHBigl] = ACTIONS(6117), - [anon_sym_BSLASHbiggl] = ACTIONS(6117), - [anon_sym_BSLASHBiggl] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6117), - [anon_sym_BSLASHgls] = ACTIONS(6117), - [anon_sym_BSLASHGls] = ACTIONS(6117), - [anon_sym_BSLASHGLS] = ACTIONS(6117), - [anon_sym_BSLASHglspl] = ACTIONS(6117), - [anon_sym_BSLASHGlspl] = ACTIONS(6117), - [anon_sym_BSLASHGLSpl] = ACTIONS(6117), - [anon_sym_BSLASHglsdisp] = ACTIONS(6117), - [anon_sym_BSLASHglslink] = ACTIONS(6117), - [anon_sym_BSLASHglstext] = ACTIONS(6117), - [anon_sym_BSLASHGlstext] = ACTIONS(6117), - [anon_sym_BSLASHGLStext] = ACTIONS(6117), - [anon_sym_BSLASHglsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6117), - [anon_sym_BSLASHglsplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSplural] = ACTIONS(6117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHglsname] = ACTIONS(6117), - [anon_sym_BSLASHGlsname] = ACTIONS(6117), - [anon_sym_BSLASHGLSname] = ACTIONS(6117), - [anon_sym_BSLASHglssymbol] = ACTIONS(6117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6117), - [anon_sym_BSLASHglsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6117), - [anon_sym_BSLASHglsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6117), - [anon_sym_BSLASHglsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6117), - [anon_sym_BSLASHglsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6117), - [anon_sym_BSLASHglsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6117), - [anon_sym_BSLASHnewacronym] = ACTIONS(6117), - [anon_sym_BSLASHacrshort] = ACTIONS(6117), - [anon_sym_BSLASHAcrshort] = ACTIONS(6117), - [anon_sym_BSLASHACRshort] = ACTIONS(6117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6117), - [anon_sym_BSLASHacrlong] = ACTIONS(6117), - [anon_sym_BSLASHAcrlong] = ACTIONS(6117), - [anon_sym_BSLASHACRlong] = ACTIONS(6117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6117), - [anon_sym_BSLASHacrfull] = ACTIONS(6117), - [anon_sym_BSLASHAcrfull] = ACTIONS(6117), - [anon_sym_BSLASHACRfull] = ACTIONS(6117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6117), - [anon_sym_BSLASHacs] = ACTIONS(6117), - [anon_sym_BSLASHAcs] = ACTIONS(6117), - [anon_sym_BSLASHacsp] = ACTIONS(6117), - [anon_sym_BSLASHAcsp] = ACTIONS(6117), - [anon_sym_BSLASHacl] = ACTIONS(6117), - [anon_sym_BSLASHAcl] = ACTIONS(6117), - [anon_sym_BSLASHaclp] = ACTIONS(6117), - [anon_sym_BSLASHAclp] = ACTIONS(6117), - [anon_sym_BSLASHacf] = ACTIONS(6117), - [anon_sym_BSLASHAcf] = ACTIONS(6117), - [anon_sym_BSLASHacfp] = ACTIONS(6117), - [anon_sym_BSLASHAcfp] = ACTIONS(6117), - [anon_sym_BSLASHac] = ACTIONS(6117), - [anon_sym_BSLASHAc] = ACTIONS(6117), - [anon_sym_BSLASHacp] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6117), - [anon_sym_BSLASHcolor] = ACTIONS(6117), - [anon_sym_BSLASHcolorbox] = ACTIONS(6117), - [anon_sym_BSLASHtextcolor] = ACTIONS(6117), - [anon_sym_BSLASHpagecolor] = ACTIONS(6117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6117), - [anon_sym_BSLASHtext] = ACTIONS(6117), - [anon_sym_BSLASHintertext] = ACTIONS(6117), - [anon_sym_shortintertext] = ACTIONS(6117), - }, - [1684] = { - [sym_command_name] = ACTIONS(6113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6115), - [anon_sym_RBRACK] = ACTIONS(6115), - [anon_sym_COMMA] = ACTIONS(6115), - [anon_sym_EQ] = ACTIONS(6115), - [anon_sym_LPAREN] = ACTIONS(6115), - [anon_sym_RPAREN] = ACTIONS(6115), - [anon_sym_LBRACE] = ACTIONS(6115), - [anon_sym_RBRACE] = ACTIONS(6115), - [sym_word] = ACTIONS(6113), - [sym_placeholder] = ACTIONS(6115), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_LT] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6113), - [anon_sym_BANG] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_SQUOTE] = ACTIONS(6113), - [anon_sym__] = ACTIONS(6115), - [anon_sym_CARET] = ACTIONS(6115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6115), - [anon_sym_DOLLAR] = ACTIONS(6113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6115), - [anon_sym_BSLASHtitle] = ACTIONS(6113), - [anon_sym_BSLASHauthor] = ACTIONS(6113), - [anon_sym_BSLASHusepackage] = ACTIONS(6113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), - [anon_sym_BSLASHinclude] = ACTIONS(6113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), - [anon_sym_BSLASHinput] = ACTIONS(6113), - [anon_sym_BSLASHsubfile] = ACTIONS(6113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), - [anon_sym_BSLASHbibliography] = ACTIONS(6113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), - [anon_sym_BSLASHincludesvg] = ACTIONS(6113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), - [anon_sym_BSLASHimport] = ACTIONS(6113), - [anon_sym_BSLASHsubimport] = ACTIONS(6113), - [anon_sym_BSLASHinputfrom] = ACTIONS(6113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), - [anon_sym_BSLASHincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHcaption] = ACTIONS(6113), - [anon_sym_BSLASHcite] = ACTIONS(6113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCite] = ACTIONS(6113), - [anon_sym_BSLASHnocite] = ACTIONS(6113), - [anon_sym_BSLASHcitet] = ACTIONS(6113), - [anon_sym_BSLASHcitep] = ACTIONS(6113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteauthor] = ACTIONS(6113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitetitle] = ACTIONS(6113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteyear] = ACTIONS(6113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitedate] = ACTIONS(6113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteurl] = ACTIONS(6113), - [anon_sym_BSLASHfullcite] = ACTIONS(6113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), - [anon_sym_BSLASHcitealt] = ACTIONS(6113), - [anon_sym_BSLASHcitealp] = ACTIONS(6113), - [anon_sym_BSLASHcitetext] = ACTIONS(6113), - [anon_sym_BSLASHparencite] = ACTIONS(6113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHParencite] = ACTIONS(6113), - [anon_sym_BSLASHfootcite] = ACTIONS(6113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), - [anon_sym_BSLASHtextcite] = ACTIONS(6113), - [anon_sym_BSLASHTextcite] = ACTIONS(6113), - [anon_sym_BSLASHsmartcite] = ACTIONS(6113), - [anon_sym_BSLASHSmartcite] = ACTIONS(6113), - [anon_sym_BSLASHsupercite] = ACTIONS(6113), - [anon_sym_BSLASHautocite] = ACTIONS(6113), - [anon_sym_BSLASHAutocite] = ACTIONS(6113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHvolcite] = ACTIONS(6113), - [anon_sym_BSLASHVolcite] = ACTIONS(6113), - [anon_sym_BSLASHpvolcite] = ACTIONS(6113), - [anon_sym_BSLASHPvolcite] = ACTIONS(6113), - [anon_sym_BSLASHfvolcite] = ACTIONS(6113), - [anon_sym_BSLASHftvolcite] = ACTIONS(6113), - [anon_sym_BSLASHsvolcite] = ACTIONS(6113), - [anon_sym_BSLASHSvolcite] = ACTIONS(6113), - [anon_sym_BSLASHtvolcite] = ACTIONS(6113), - [anon_sym_BSLASHTvolcite] = ACTIONS(6113), - [anon_sym_BSLASHavolcite] = ACTIONS(6113), - [anon_sym_BSLASHAvolcite] = ACTIONS(6113), - [anon_sym_BSLASHnotecite] = ACTIONS(6113), - [anon_sym_BSLASHNotecite] = ACTIONS(6113), - [anon_sym_BSLASHpnotecite] = ACTIONS(6113), - [anon_sym_BSLASHPnotecite] = ACTIONS(6113), - [anon_sym_BSLASHfnotecite] = ACTIONS(6113), - [anon_sym_BSLASHlabel] = ACTIONS(6113), - [anon_sym_BSLASHref] = ACTIONS(6113), - [anon_sym_BSLASHeqref] = ACTIONS(6113), - [anon_sym_BSLASHvref] = ACTIONS(6113), - [anon_sym_BSLASHVref] = ACTIONS(6113), - [anon_sym_BSLASHautoref] = ACTIONS(6113), - [anon_sym_BSLASHpageref] = ACTIONS(6113), - [anon_sym_BSLASHcref] = ACTIONS(6113), - [anon_sym_BSLASHCref] = ACTIONS(6113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnameCref] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHlabelcref] = ACTIONS(6113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCrefrange] = ACTIONS(6113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnewlabel] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6115), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHdef] = ACTIONS(6113), - [anon_sym_BSLASHlet] = ACTIONS(6113), - [anon_sym_BSLASHleft] = ACTIONS(6113), - [anon_sym_BSLASHbig] = ACTIONS(6113), - [anon_sym_BSLASHBig] = ACTIONS(6113), - [anon_sym_BSLASHbigg] = ACTIONS(6113), - [anon_sym_BSLASHBigg] = ACTIONS(6113), - [anon_sym_BSLASHbigl] = ACTIONS(6113), - [anon_sym_BSLASHBigl] = ACTIONS(6113), - [anon_sym_BSLASHbiggl] = ACTIONS(6113), - [anon_sym_BSLASHBiggl] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), - [anon_sym_BSLASHgls] = ACTIONS(6113), - [anon_sym_BSLASHGls] = ACTIONS(6113), - [anon_sym_BSLASHGLS] = ACTIONS(6113), - [anon_sym_BSLASHglspl] = ACTIONS(6113), - [anon_sym_BSLASHGlspl] = ACTIONS(6113), - [anon_sym_BSLASHGLSpl] = ACTIONS(6113), - [anon_sym_BSLASHglsdisp] = ACTIONS(6113), - [anon_sym_BSLASHglslink] = ACTIONS(6113), - [anon_sym_BSLASHglstext] = ACTIONS(6113), - [anon_sym_BSLASHGlstext] = ACTIONS(6113), - [anon_sym_BSLASHGLStext] = ACTIONS(6113), - [anon_sym_BSLASHglsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), - [anon_sym_BSLASHglsplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSplural] = ACTIONS(6113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHglsname] = ACTIONS(6113), - [anon_sym_BSLASHGlsname] = ACTIONS(6113), - [anon_sym_BSLASHGLSname] = ACTIONS(6113), - [anon_sym_BSLASHglssymbol] = ACTIONS(6113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), - [anon_sym_BSLASHglsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), - [anon_sym_BSLASHglsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), - [anon_sym_BSLASHglsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), - [anon_sym_BSLASHglsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), - [anon_sym_BSLASHglsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), - [anon_sym_BSLASHnewacronym] = ACTIONS(6113), - [anon_sym_BSLASHacrshort] = ACTIONS(6113), - [anon_sym_BSLASHAcrshort] = ACTIONS(6113), - [anon_sym_BSLASHACRshort] = ACTIONS(6113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), - [anon_sym_BSLASHacrlong] = ACTIONS(6113), - [anon_sym_BSLASHAcrlong] = ACTIONS(6113), - [anon_sym_BSLASHACRlong] = ACTIONS(6113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), - [anon_sym_BSLASHacrfull] = ACTIONS(6113), - [anon_sym_BSLASHAcrfull] = ACTIONS(6113), - [anon_sym_BSLASHACRfull] = ACTIONS(6113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), - [anon_sym_BSLASHacs] = ACTIONS(6113), - [anon_sym_BSLASHAcs] = ACTIONS(6113), - [anon_sym_BSLASHacsp] = ACTIONS(6113), - [anon_sym_BSLASHAcsp] = ACTIONS(6113), - [anon_sym_BSLASHacl] = ACTIONS(6113), - [anon_sym_BSLASHAcl] = ACTIONS(6113), - [anon_sym_BSLASHaclp] = ACTIONS(6113), - [anon_sym_BSLASHAclp] = ACTIONS(6113), - [anon_sym_BSLASHacf] = ACTIONS(6113), - [anon_sym_BSLASHAcf] = ACTIONS(6113), - [anon_sym_BSLASHacfp] = ACTIONS(6113), - [anon_sym_BSLASHAcfp] = ACTIONS(6113), - [anon_sym_BSLASHac] = ACTIONS(6113), - [anon_sym_BSLASHAc] = ACTIONS(6113), - [anon_sym_BSLASHacp] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), - [anon_sym_BSLASHcolor] = ACTIONS(6113), - [anon_sym_BSLASHcolorbox] = ACTIONS(6113), - [anon_sym_BSLASHtextcolor] = ACTIONS(6113), - [anon_sym_BSLASHpagecolor] = ACTIONS(6113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), - [anon_sym_BSLASHtext] = ACTIONS(6113), - [anon_sym_BSLASHintertext] = ACTIONS(6113), - [anon_sym_shortintertext] = ACTIONS(6113), - }, - [1685] = { - [sym_command_name] = ACTIONS(6109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6109), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_RBRACK] = ACTIONS(6111), - [anon_sym_COMMA] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_LPAREN] = ACTIONS(6111), - [anon_sym_RPAREN] = ACTIONS(6111), - [anon_sym_LBRACE] = ACTIONS(6111), - [sym_word] = ACTIONS(6109), - [sym_placeholder] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6109), - [anon_sym_GT] = ACTIONS(6109), - [anon_sym_BANG] = ACTIONS(6109), - [anon_sym_PIPE] = ACTIONS(6109), - [anon_sym_COLON] = ACTIONS(6109), - [anon_sym_SQUOTE] = ACTIONS(6109), - [anon_sym__] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), - [anon_sym_DOLLAR] = ACTIONS(6109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), - [anon_sym_BSLASHbegin] = ACTIONS(6109), - [anon_sym_BSLASHtitle] = ACTIONS(6109), - [anon_sym_BSLASHauthor] = ACTIONS(6109), - [anon_sym_BSLASHusepackage] = ACTIONS(6109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), - [anon_sym_BSLASHinclude] = ACTIONS(6109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), - [anon_sym_BSLASHinput] = ACTIONS(6109), - [anon_sym_BSLASHsubfile] = ACTIONS(6109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), - [anon_sym_BSLASHbibliography] = ACTIONS(6109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), - [anon_sym_BSLASHincludesvg] = ACTIONS(6109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), - [anon_sym_BSLASHimport] = ACTIONS(6109), - [anon_sym_BSLASHsubimport] = ACTIONS(6109), - [anon_sym_BSLASHinputfrom] = ACTIONS(6109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), - [anon_sym_BSLASHincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHcaption] = ACTIONS(6109), - [anon_sym_BSLASHcite] = ACTIONS(6109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCite] = ACTIONS(6109), - [anon_sym_BSLASHnocite] = ACTIONS(6109), - [anon_sym_BSLASHcitet] = ACTIONS(6109), - [anon_sym_BSLASHcitep] = ACTIONS(6109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteauthor] = ACTIONS(6109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitetitle] = ACTIONS(6109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteyear] = ACTIONS(6109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitedate] = ACTIONS(6109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteurl] = ACTIONS(6109), - [anon_sym_BSLASHfullcite] = ACTIONS(6109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), - [anon_sym_BSLASHcitealt] = ACTIONS(6109), - [anon_sym_BSLASHcitealp] = ACTIONS(6109), - [anon_sym_BSLASHcitetext] = ACTIONS(6109), - [anon_sym_BSLASHparencite] = ACTIONS(6109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHParencite] = ACTIONS(6109), - [anon_sym_BSLASHfootcite] = ACTIONS(6109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), - [anon_sym_BSLASHtextcite] = ACTIONS(6109), - [anon_sym_BSLASHTextcite] = ACTIONS(6109), - [anon_sym_BSLASHsmartcite] = ACTIONS(6109), - [anon_sym_BSLASHSmartcite] = ACTIONS(6109), - [anon_sym_BSLASHsupercite] = ACTIONS(6109), - [anon_sym_BSLASHautocite] = ACTIONS(6109), - [anon_sym_BSLASHAutocite] = ACTIONS(6109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHvolcite] = ACTIONS(6109), - [anon_sym_BSLASHVolcite] = ACTIONS(6109), - [anon_sym_BSLASHpvolcite] = ACTIONS(6109), - [anon_sym_BSLASHPvolcite] = ACTIONS(6109), - [anon_sym_BSLASHfvolcite] = ACTIONS(6109), - [anon_sym_BSLASHftvolcite] = ACTIONS(6109), - [anon_sym_BSLASHsvolcite] = ACTIONS(6109), - [anon_sym_BSLASHSvolcite] = ACTIONS(6109), - [anon_sym_BSLASHtvolcite] = ACTIONS(6109), - [anon_sym_BSLASHTvolcite] = ACTIONS(6109), - [anon_sym_BSLASHavolcite] = ACTIONS(6109), - [anon_sym_BSLASHAvolcite] = ACTIONS(6109), - [anon_sym_BSLASHnotecite] = ACTIONS(6109), - [anon_sym_BSLASHNotecite] = ACTIONS(6109), - [anon_sym_BSLASHpnotecite] = ACTIONS(6109), - [anon_sym_BSLASHPnotecite] = ACTIONS(6109), - [anon_sym_BSLASHfnotecite] = ACTIONS(6109), - [anon_sym_BSLASHlabel] = ACTIONS(6109), - [anon_sym_BSLASHref] = ACTIONS(6109), - [anon_sym_BSLASHeqref] = ACTIONS(6109), - [anon_sym_BSLASHvref] = ACTIONS(6109), - [anon_sym_BSLASHVref] = ACTIONS(6109), - [anon_sym_BSLASHautoref] = ACTIONS(6109), - [anon_sym_BSLASHpageref] = ACTIONS(6109), - [anon_sym_BSLASHcref] = ACTIONS(6109), - [anon_sym_BSLASHCref] = ACTIONS(6109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnameCref] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHlabelcref] = ACTIONS(6109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCrefrange] = ACTIONS(6109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnewlabel] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHdef] = ACTIONS(6109), - [anon_sym_BSLASHlet] = ACTIONS(6109), - [anon_sym_BSLASHleft] = ACTIONS(6109), - [anon_sym_BSLASHbig] = ACTIONS(6109), - [anon_sym_BSLASHBig] = ACTIONS(6109), - [anon_sym_BSLASHbigg] = ACTIONS(6109), - [anon_sym_BSLASHBigg] = ACTIONS(6109), - [anon_sym_BSLASHbigl] = ACTIONS(6109), - [anon_sym_BSLASHBigl] = ACTIONS(6109), - [anon_sym_BSLASHbiggl] = ACTIONS(6109), - [anon_sym_BSLASHBiggl] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), - [anon_sym_BSLASHgls] = ACTIONS(6109), - [anon_sym_BSLASHGls] = ACTIONS(6109), - [anon_sym_BSLASHGLS] = ACTIONS(6109), - [anon_sym_BSLASHglspl] = ACTIONS(6109), - [anon_sym_BSLASHGlspl] = ACTIONS(6109), - [anon_sym_BSLASHGLSpl] = ACTIONS(6109), - [anon_sym_BSLASHglsdisp] = ACTIONS(6109), - [anon_sym_BSLASHglslink] = ACTIONS(6109), - [anon_sym_BSLASHglstext] = ACTIONS(6109), - [anon_sym_BSLASHGlstext] = ACTIONS(6109), - [anon_sym_BSLASHGLStext] = ACTIONS(6109), - [anon_sym_BSLASHglsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), - [anon_sym_BSLASHglsplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSplural] = ACTIONS(6109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHglsname] = ACTIONS(6109), - [anon_sym_BSLASHGlsname] = ACTIONS(6109), - [anon_sym_BSLASHGLSname] = ACTIONS(6109), - [anon_sym_BSLASHglssymbol] = ACTIONS(6109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), - [anon_sym_BSLASHglsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), - [anon_sym_BSLASHglsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), - [anon_sym_BSLASHglsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), - [anon_sym_BSLASHglsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), - [anon_sym_BSLASHglsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), - [anon_sym_BSLASHnewacronym] = ACTIONS(6109), - [anon_sym_BSLASHacrshort] = ACTIONS(6109), - [anon_sym_BSLASHAcrshort] = ACTIONS(6109), - [anon_sym_BSLASHACRshort] = ACTIONS(6109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), - [anon_sym_BSLASHacrlong] = ACTIONS(6109), - [anon_sym_BSLASHAcrlong] = ACTIONS(6109), - [anon_sym_BSLASHACRlong] = ACTIONS(6109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), - [anon_sym_BSLASHacrfull] = ACTIONS(6109), - [anon_sym_BSLASHAcrfull] = ACTIONS(6109), - [anon_sym_BSLASHACRfull] = ACTIONS(6109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), - [anon_sym_BSLASHacs] = ACTIONS(6109), - [anon_sym_BSLASHAcs] = ACTIONS(6109), - [anon_sym_BSLASHacsp] = ACTIONS(6109), - [anon_sym_BSLASHAcsp] = ACTIONS(6109), - [anon_sym_BSLASHacl] = ACTIONS(6109), - [anon_sym_BSLASHAcl] = ACTIONS(6109), - [anon_sym_BSLASHaclp] = ACTIONS(6109), - [anon_sym_BSLASHAclp] = ACTIONS(6109), - [anon_sym_BSLASHacf] = ACTIONS(6109), - [anon_sym_BSLASHAcf] = ACTIONS(6109), - [anon_sym_BSLASHacfp] = ACTIONS(6109), - [anon_sym_BSLASHAcfp] = ACTIONS(6109), - [anon_sym_BSLASHac] = ACTIONS(6109), - [anon_sym_BSLASHAc] = ACTIONS(6109), - [anon_sym_BSLASHacp] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), - [anon_sym_BSLASHcolor] = ACTIONS(6109), - [anon_sym_BSLASHcolorbox] = ACTIONS(6109), - [anon_sym_BSLASHtextcolor] = ACTIONS(6109), - [anon_sym_BSLASHpagecolor] = ACTIONS(6109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), - [anon_sym_BSLASHtext] = ACTIONS(6109), - [anon_sym_BSLASHintertext] = ACTIONS(6109), - [anon_sym_shortintertext] = ACTIONS(6109), - }, - [1686] = { - [sym_command_name] = ACTIONS(6109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6109), - [anon_sym_LBRACK] = ACTIONS(6111), - [anon_sym_RBRACK] = ACTIONS(6111), - [anon_sym_COMMA] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_LPAREN] = ACTIONS(6111), - [anon_sym_RPAREN] = ACTIONS(6111), - [anon_sym_LBRACE] = ACTIONS(6111), - [anon_sym_RBRACE] = ACTIONS(6111), - [sym_word] = ACTIONS(6109), - [sym_placeholder] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6109), - [anon_sym_GT] = ACTIONS(6109), - [anon_sym_BANG] = ACTIONS(6109), - [anon_sym_PIPE] = ACTIONS(6109), - [anon_sym_COLON] = ACTIONS(6109), - [anon_sym_SQUOTE] = ACTIONS(6109), - [anon_sym__] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), - [anon_sym_DOLLAR] = ACTIONS(6109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), - [anon_sym_BSLASHtitle] = ACTIONS(6109), - [anon_sym_BSLASHauthor] = ACTIONS(6109), - [anon_sym_BSLASHusepackage] = ACTIONS(6109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), - [anon_sym_BSLASHinclude] = ACTIONS(6109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), - [anon_sym_BSLASHinput] = ACTIONS(6109), - [anon_sym_BSLASHsubfile] = ACTIONS(6109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), - [anon_sym_BSLASHbibliography] = ACTIONS(6109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), - [anon_sym_BSLASHincludesvg] = ACTIONS(6109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), - [anon_sym_BSLASHimport] = ACTIONS(6109), - [anon_sym_BSLASHsubimport] = ACTIONS(6109), - [anon_sym_BSLASHinputfrom] = ACTIONS(6109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), - [anon_sym_BSLASHincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHcaption] = ACTIONS(6109), - [anon_sym_BSLASHcite] = ACTIONS(6109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCite] = ACTIONS(6109), - [anon_sym_BSLASHnocite] = ACTIONS(6109), - [anon_sym_BSLASHcitet] = ACTIONS(6109), - [anon_sym_BSLASHcitep] = ACTIONS(6109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteauthor] = ACTIONS(6109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitetitle] = ACTIONS(6109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteyear] = ACTIONS(6109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitedate] = ACTIONS(6109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteurl] = ACTIONS(6109), - [anon_sym_BSLASHfullcite] = ACTIONS(6109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), - [anon_sym_BSLASHcitealt] = ACTIONS(6109), - [anon_sym_BSLASHcitealp] = ACTIONS(6109), - [anon_sym_BSLASHcitetext] = ACTIONS(6109), - [anon_sym_BSLASHparencite] = ACTIONS(6109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHParencite] = ACTIONS(6109), - [anon_sym_BSLASHfootcite] = ACTIONS(6109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), - [anon_sym_BSLASHtextcite] = ACTIONS(6109), - [anon_sym_BSLASHTextcite] = ACTIONS(6109), - [anon_sym_BSLASHsmartcite] = ACTIONS(6109), - [anon_sym_BSLASHSmartcite] = ACTIONS(6109), - [anon_sym_BSLASHsupercite] = ACTIONS(6109), - [anon_sym_BSLASHautocite] = ACTIONS(6109), - [anon_sym_BSLASHAutocite] = ACTIONS(6109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHvolcite] = ACTIONS(6109), - [anon_sym_BSLASHVolcite] = ACTIONS(6109), - [anon_sym_BSLASHpvolcite] = ACTIONS(6109), - [anon_sym_BSLASHPvolcite] = ACTIONS(6109), - [anon_sym_BSLASHfvolcite] = ACTIONS(6109), - [anon_sym_BSLASHftvolcite] = ACTIONS(6109), - [anon_sym_BSLASHsvolcite] = ACTIONS(6109), - [anon_sym_BSLASHSvolcite] = ACTIONS(6109), - [anon_sym_BSLASHtvolcite] = ACTIONS(6109), - [anon_sym_BSLASHTvolcite] = ACTIONS(6109), - [anon_sym_BSLASHavolcite] = ACTIONS(6109), - [anon_sym_BSLASHAvolcite] = ACTIONS(6109), - [anon_sym_BSLASHnotecite] = ACTIONS(6109), - [anon_sym_BSLASHNotecite] = ACTIONS(6109), - [anon_sym_BSLASHpnotecite] = ACTIONS(6109), - [anon_sym_BSLASHPnotecite] = ACTIONS(6109), - [anon_sym_BSLASHfnotecite] = ACTIONS(6109), - [anon_sym_BSLASHlabel] = ACTIONS(6109), - [anon_sym_BSLASHref] = ACTIONS(6109), - [anon_sym_BSLASHeqref] = ACTIONS(6109), - [anon_sym_BSLASHvref] = ACTIONS(6109), - [anon_sym_BSLASHVref] = ACTIONS(6109), - [anon_sym_BSLASHautoref] = ACTIONS(6109), - [anon_sym_BSLASHpageref] = ACTIONS(6109), - [anon_sym_BSLASHcref] = ACTIONS(6109), - [anon_sym_BSLASHCref] = ACTIONS(6109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnameCref] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHlabelcref] = ACTIONS(6109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCrefrange] = ACTIONS(6109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnewlabel] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHdef] = ACTIONS(6109), - [anon_sym_BSLASHlet] = ACTIONS(6109), - [anon_sym_BSLASHleft] = ACTIONS(6109), - [anon_sym_BSLASHbig] = ACTIONS(6109), - [anon_sym_BSLASHBig] = ACTIONS(6109), - [anon_sym_BSLASHbigg] = ACTIONS(6109), - [anon_sym_BSLASHBigg] = ACTIONS(6109), - [anon_sym_BSLASHbigl] = ACTIONS(6109), - [anon_sym_BSLASHBigl] = ACTIONS(6109), - [anon_sym_BSLASHbiggl] = ACTIONS(6109), - [anon_sym_BSLASHBiggl] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), - [anon_sym_BSLASHgls] = ACTIONS(6109), - [anon_sym_BSLASHGls] = ACTIONS(6109), - [anon_sym_BSLASHGLS] = ACTIONS(6109), - [anon_sym_BSLASHglspl] = ACTIONS(6109), - [anon_sym_BSLASHGlspl] = ACTIONS(6109), - [anon_sym_BSLASHGLSpl] = ACTIONS(6109), - [anon_sym_BSLASHglsdisp] = ACTIONS(6109), - [anon_sym_BSLASHglslink] = ACTIONS(6109), - [anon_sym_BSLASHglstext] = ACTIONS(6109), - [anon_sym_BSLASHGlstext] = ACTIONS(6109), - [anon_sym_BSLASHGLStext] = ACTIONS(6109), - [anon_sym_BSLASHglsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), - [anon_sym_BSLASHglsplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSplural] = ACTIONS(6109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHglsname] = ACTIONS(6109), - [anon_sym_BSLASHGlsname] = ACTIONS(6109), - [anon_sym_BSLASHGLSname] = ACTIONS(6109), - [anon_sym_BSLASHglssymbol] = ACTIONS(6109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), - [anon_sym_BSLASHglsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), - [anon_sym_BSLASHglsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), - [anon_sym_BSLASHglsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), - [anon_sym_BSLASHglsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), - [anon_sym_BSLASHglsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), - [anon_sym_BSLASHnewacronym] = ACTIONS(6109), - [anon_sym_BSLASHacrshort] = ACTIONS(6109), - [anon_sym_BSLASHAcrshort] = ACTIONS(6109), - [anon_sym_BSLASHACRshort] = ACTIONS(6109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), - [anon_sym_BSLASHacrlong] = ACTIONS(6109), - [anon_sym_BSLASHAcrlong] = ACTIONS(6109), - [anon_sym_BSLASHACRlong] = ACTIONS(6109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), - [anon_sym_BSLASHacrfull] = ACTIONS(6109), - [anon_sym_BSLASHAcrfull] = ACTIONS(6109), - [anon_sym_BSLASHACRfull] = ACTIONS(6109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), - [anon_sym_BSLASHacs] = ACTIONS(6109), - [anon_sym_BSLASHAcs] = ACTIONS(6109), - [anon_sym_BSLASHacsp] = ACTIONS(6109), - [anon_sym_BSLASHAcsp] = ACTIONS(6109), - [anon_sym_BSLASHacl] = ACTIONS(6109), - [anon_sym_BSLASHAcl] = ACTIONS(6109), - [anon_sym_BSLASHaclp] = ACTIONS(6109), - [anon_sym_BSLASHAclp] = ACTIONS(6109), - [anon_sym_BSLASHacf] = ACTIONS(6109), - [anon_sym_BSLASHAcf] = ACTIONS(6109), - [anon_sym_BSLASHacfp] = ACTIONS(6109), - [anon_sym_BSLASHAcfp] = ACTIONS(6109), - [anon_sym_BSLASHac] = ACTIONS(6109), - [anon_sym_BSLASHAc] = ACTIONS(6109), - [anon_sym_BSLASHacp] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), - [anon_sym_BSLASHcolor] = ACTIONS(6109), - [anon_sym_BSLASHcolorbox] = ACTIONS(6109), - [anon_sym_BSLASHtextcolor] = ACTIONS(6109), - [anon_sym_BSLASHpagecolor] = ACTIONS(6109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), - [anon_sym_BSLASHtext] = ACTIONS(6109), - [anon_sym_BSLASHintertext] = ACTIONS(6109), - [anon_sym_shortintertext] = ACTIONS(6109), - }, - [1687] = { - [sym_command_name] = ACTIONS(6057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6057), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6059), - [anon_sym_RBRACE] = ACTIONS(6059), - [sym_word] = ACTIONS(6057), - [sym_placeholder] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_BANG] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_SQUOTE] = ACTIONS(6057), - [anon_sym__] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), - [anon_sym_BSLASHtitle] = ACTIONS(6057), - [anon_sym_BSLASHauthor] = ACTIONS(6057), - [anon_sym_BSLASHusepackage] = ACTIONS(6057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), - [anon_sym_BSLASHinclude] = ACTIONS(6057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), - [anon_sym_BSLASHinput] = ACTIONS(6057), - [anon_sym_BSLASHsubfile] = ACTIONS(6057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), - [anon_sym_BSLASHbibliography] = ACTIONS(6057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), - [anon_sym_BSLASHincludesvg] = ACTIONS(6057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), - [anon_sym_BSLASHimport] = ACTIONS(6057), - [anon_sym_BSLASHsubimport] = ACTIONS(6057), - [anon_sym_BSLASHinputfrom] = ACTIONS(6057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), - [anon_sym_BSLASHincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHcaption] = ACTIONS(6057), - [anon_sym_BSLASHcite] = ACTIONS(6057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCite] = ACTIONS(6057), - [anon_sym_BSLASHnocite] = ACTIONS(6057), - [anon_sym_BSLASHcitet] = ACTIONS(6057), - [anon_sym_BSLASHcitep] = ACTIONS(6057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteauthor] = ACTIONS(6057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitetitle] = ACTIONS(6057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteyear] = ACTIONS(6057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitedate] = ACTIONS(6057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteurl] = ACTIONS(6057), - [anon_sym_BSLASHfullcite] = ACTIONS(6057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), - [anon_sym_BSLASHcitealt] = ACTIONS(6057), - [anon_sym_BSLASHcitealp] = ACTIONS(6057), - [anon_sym_BSLASHcitetext] = ACTIONS(6057), - [anon_sym_BSLASHparencite] = ACTIONS(6057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHParencite] = ACTIONS(6057), - [anon_sym_BSLASHfootcite] = ACTIONS(6057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), - [anon_sym_BSLASHtextcite] = ACTIONS(6057), - [anon_sym_BSLASHTextcite] = ACTIONS(6057), - [anon_sym_BSLASHsmartcite] = ACTIONS(6057), - [anon_sym_BSLASHSmartcite] = ACTIONS(6057), - [anon_sym_BSLASHsupercite] = ACTIONS(6057), - [anon_sym_BSLASHautocite] = ACTIONS(6057), - [anon_sym_BSLASHAutocite] = ACTIONS(6057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHvolcite] = ACTIONS(6057), - [anon_sym_BSLASHVolcite] = ACTIONS(6057), - [anon_sym_BSLASHpvolcite] = ACTIONS(6057), - [anon_sym_BSLASHPvolcite] = ACTIONS(6057), - [anon_sym_BSLASHfvolcite] = ACTIONS(6057), - [anon_sym_BSLASHftvolcite] = ACTIONS(6057), - [anon_sym_BSLASHsvolcite] = ACTIONS(6057), - [anon_sym_BSLASHSvolcite] = ACTIONS(6057), - [anon_sym_BSLASHtvolcite] = ACTIONS(6057), - [anon_sym_BSLASHTvolcite] = ACTIONS(6057), - [anon_sym_BSLASHavolcite] = ACTIONS(6057), - [anon_sym_BSLASHAvolcite] = ACTIONS(6057), - [anon_sym_BSLASHnotecite] = ACTIONS(6057), - [anon_sym_BSLASHNotecite] = ACTIONS(6057), - [anon_sym_BSLASHpnotecite] = ACTIONS(6057), - [anon_sym_BSLASHPnotecite] = ACTIONS(6057), - [anon_sym_BSLASHfnotecite] = ACTIONS(6057), - [anon_sym_BSLASHlabel] = ACTIONS(6057), - [anon_sym_BSLASHref] = ACTIONS(6057), - [anon_sym_BSLASHeqref] = ACTIONS(6057), - [anon_sym_BSLASHvref] = ACTIONS(6057), - [anon_sym_BSLASHVref] = ACTIONS(6057), - [anon_sym_BSLASHautoref] = ACTIONS(6057), - [anon_sym_BSLASHpageref] = ACTIONS(6057), - [anon_sym_BSLASHcref] = ACTIONS(6057), - [anon_sym_BSLASHCref] = ACTIONS(6057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnameCref] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHlabelcref] = ACTIONS(6057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCrefrange] = ACTIONS(6057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnewlabel] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHdef] = ACTIONS(6057), - [anon_sym_BSLASHlet] = ACTIONS(6057), - [anon_sym_BSLASHleft] = ACTIONS(6057), - [anon_sym_BSLASHbig] = ACTIONS(6057), - [anon_sym_BSLASHBig] = ACTIONS(6057), - [anon_sym_BSLASHbigg] = ACTIONS(6057), - [anon_sym_BSLASHBigg] = ACTIONS(6057), - [anon_sym_BSLASHbigl] = ACTIONS(6057), - [anon_sym_BSLASHBigl] = ACTIONS(6057), - [anon_sym_BSLASHbiggl] = ACTIONS(6057), - [anon_sym_BSLASHBiggl] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), - [anon_sym_BSLASHgls] = ACTIONS(6057), - [anon_sym_BSLASHGls] = ACTIONS(6057), - [anon_sym_BSLASHGLS] = ACTIONS(6057), - [anon_sym_BSLASHglspl] = ACTIONS(6057), - [anon_sym_BSLASHGlspl] = ACTIONS(6057), - [anon_sym_BSLASHGLSpl] = ACTIONS(6057), - [anon_sym_BSLASHglsdisp] = ACTIONS(6057), - [anon_sym_BSLASHglslink] = ACTIONS(6057), - [anon_sym_BSLASHglstext] = ACTIONS(6057), - [anon_sym_BSLASHGlstext] = ACTIONS(6057), - [anon_sym_BSLASHGLStext] = ACTIONS(6057), - [anon_sym_BSLASHglsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), - [anon_sym_BSLASHglsplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSplural] = ACTIONS(6057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHglsname] = ACTIONS(6057), - [anon_sym_BSLASHGlsname] = ACTIONS(6057), - [anon_sym_BSLASHGLSname] = ACTIONS(6057), - [anon_sym_BSLASHglssymbol] = ACTIONS(6057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), - [anon_sym_BSLASHglsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), - [anon_sym_BSLASHglsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), - [anon_sym_BSLASHglsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), - [anon_sym_BSLASHglsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), - [anon_sym_BSLASHglsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), - [anon_sym_BSLASHnewacronym] = ACTIONS(6057), - [anon_sym_BSLASHacrshort] = ACTIONS(6057), - [anon_sym_BSLASHAcrshort] = ACTIONS(6057), - [anon_sym_BSLASHACRshort] = ACTIONS(6057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), - [anon_sym_BSLASHacrlong] = ACTIONS(6057), - [anon_sym_BSLASHAcrlong] = ACTIONS(6057), - [anon_sym_BSLASHACRlong] = ACTIONS(6057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), - [anon_sym_BSLASHacrfull] = ACTIONS(6057), - [anon_sym_BSLASHAcrfull] = ACTIONS(6057), - [anon_sym_BSLASHACRfull] = ACTIONS(6057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), - [anon_sym_BSLASHacs] = ACTIONS(6057), - [anon_sym_BSLASHAcs] = ACTIONS(6057), - [anon_sym_BSLASHacsp] = ACTIONS(6057), - [anon_sym_BSLASHAcsp] = ACTIONS(6057), - [anon_sym_BSLASHacl] = ACTIONS(6057), - [anon_sym_BSLASHAcl] = ACTIONS(6057), - [anon_sym_BSLASHaclp] = ACTIONS(6057), - [anon_sym_BSLASHAclp] = ACTIONS(6057), - [anon_sym_BSLASHacf] = ACTIONS(6057), - [anon_sym_BSLASHAcf] = ACTIONS(6057), - [anon_sym_BSLASHacfp] = ACTIONS(6057), - [anon_sym_BSLASHAcfp] = ACTIONS(6057), - [anon_sym_BSLASHac] = ACTIONS(6057), - [anon_sym_BSLASHAc] = ACTIONS(6057), - [anon_sym_BSLASHacp] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), - [anon_sym_BSLASHcolor] = ACTIONS(6057), - [anon_sym_BSLASHcolorbox] = ACTIONS(6057), - [anon_sym_BSLASHtextcolor] = ACTIONS(6057), - [anon_sym_BSLASHpagecolor] = ACTIONS(6057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), - [anon_sym_BSLASHtext] = ACTIONS(6057), - [anon_sym_BSLASHintertext] = ACTIONS(6057), - [anon_sym_shortintertext] = ACTIONS(6057), - }, - [1688] = { - [sym_command_name] = ACTIONS(6057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6057), - [anon_sym_LBRACK] = ACTIONS(6059), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(6059), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6059), - [sym_word] = ACTIONS(6057), - [sym_placeholder] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_BANG] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_SQUOTE] = ACTIONS(6057), - [anon_sym__] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), - [anon_sym_BSLASHbegin] = ACTIONS(6057), - [anon_sym_BSLASHtitle] = ACTIONS(6057), - [anon_sym_BSLASHauthor] = ACTIONS(6057), - [anon_sym_BSLASHusepackage] = ACTIONS(6057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), - [anon_sym_BSLASHinclude] = ACTIONS(6057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), - [anon_sym_BSLASHinput] = ACTIONS(6057), - [anon_sym_BSLASHsubfile] = ACTIONS(6057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), - [anon_sym_BSLASHbibliography] = ACTIONS(6057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), - [anon_sym_BSLASHincludesvg] = ACTIONS(6057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), - [anon_sym_BSLASHimport] = ACTIONS(6057), - [anon_sym_BSLASHsubimport] = ACTIONS(6057), - [anon_sym_BSLASHinputfrom] = ACTIONS(6057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), - [anon_sym_BSLASHincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHcaption] = ACTIONS(6057), - [anon_sym_BSLASHcite] = ACTIONS(6057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCite] = ACTIONS(6057), - [anon_sym_BSLASHnocite] = ACTIONS(6057), - [anon_sym_BSLASHcitet] = ACTIONS(6057), - [anon_sym_BSLASHcitep] = ACTIONS(6057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteauthor] = ACTIONS(6057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitetitle] = ACTIONS(6057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteyear] = ACTIONS(6057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitedate] = ACTIONS(6057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteurl] = ACTIONS(6057), - [anon_sym_BSLASHfullcite] = ACTIONS(6057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), - [anon_sym_BSLASHcitealt] = ACTIONS(6057), - [anon_sym_BSLASHcitealp] = ACTIONS(6057), - [anon_sym_BSLASHcitetext] = ACTIONS(6057), - [anon_sym_BSLASHparencite] = ACTIONS(6057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHParencite] = ACTIONS(6057), - [anon_sym_BSLASHfootcite] = ACTIONS(6057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), - [anon_sym_BSLASHtextcite] = ACTIONS(6057), - [anon_sym_BSLASHTextcite] = ACTIONS(6057), - [anon_sym_BSLASHsmartcite] = ACTIONS(6057), - [anon_sym_BSLASHSmartcite] = ACTIONS(6057), - [anon_sym_BSLASHsupercite] = ACTIONS(6057), - [anon_sym_BSLASHautocite] = ACTIONS(6057), - [anon_sym_BSLASHAutocite] = ACTIONS(6057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHvolcite] = ACTIONS(6057), - [anon_sym_BSLASHVolcite] = ACTIONS(6057), - [anon_sym_BSLASHpvolcite] = ACTIONS(6057), - [anon_sym_BSLASHPvolcite] = ACTIONS(6057), - [anon_sym_BSLASHfvolcite] = ACTIONS(6057), - [anon_sym_BSLASHftvolcite] = ACTIONS(6057), - [anon_sym_BSLASHsvolcite] = ACTIONS(6057), - [anon_sym_BSLASHSvolcite] = ACTIONS(6057), - [anon_sym_BSLASHtvolcite] = ACTIONS(6057), - [anon_sym_BSLASHTvolcite] = ACTIONS(6057), - [anon_sym_BSLASHavolcite] = ACTIONS(6057), - [anon_sym_BSLASHAvolcite] = ACTIONS(6057), - [anon_sym_BSLASHnotecite] = ACTIONS(6057), - [anon_sym_BSLASHNotecite] = ACTIONS(6057), - [anon_sym_BSLASHpnotecite] = ACTIONS(6057), - [anon_sym_BSLASHPnotecite] = ACTIONS(6057), - [anon_sym_BSLASHfnotecite] = ACTIONS(6057), - [anon_sym_BSLASHlabel] = ACTIONS(6057), - [anon_sym_BSLASHref] = ACTIONS(6057), - [anon_sym_BSLASHeqref] = ACTIONS(6057), - [anon_sym_BSLASHvref] = ACTIONS(6057), - [anon_sym_BSLASHVref] = ACTIONS(6057), - [anon_sym_BSLASHautoref] = ACTIONS(6057), - [anon_sym_BSLASHpageref] = ACTIONS(6057), - [anon_sym_BSLASHcref] = ACTIONS(6057), - [anon_sym_BSLASHCref] = ACTIONS(6057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnameCref] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHlabelcref] = ACTIONS(6057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCrefrange] = ACTIONS(6057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnewlabel] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHdef] = ACTIONS(6057), - [anon_sym_BSLASHlet] = ACTIONS(6057), - [anon_sym_BSLASHleft] = ACTIONS(6057), - [anon_sym_BSLASHbig] = ACTIONS(6057), - [anon_sym_BSLASHBig] = ACTIONS(6057), - [anon_sym_BSLASHbigg] = ACTIONS(6057), - [anon_sym_BSLASHBigg] = ACTIONS(6057), - [anon_sym_BSLASHbigl] = ACTIONS(6057), - [anon_sym_BSLASHBigl] = ACTIONS(6057), - [anon_sym_BSLASHbiggl] = ACTIONS(6057), - [anon_sym_BSLASHBiggl] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), - [anon_sym_BSLASHgls] = ACTIONS(6057), - [anon_sym_BSLASHGls] = ACTIONS(6057), - [anon_sym_BSLASHGLS] = ACTIONS(6057), - [anon_sym_BSLASHglspl] = ACTIONS(6057), - [anon_sym_BSLASHGlspl] = ACTIONS(6057), - [anon_sym_BSLASHGLSpl] = ACTIONS(6057), - [anon_sym_BSLASHglsdisp] = ACTIONS(6057), - [anon_sym_BSLASHglslink] = ACTIONS(6057), - [anon_sym_BSLASHglstext] = ACTIONS(6057), - [anon_sym_BSLASHGlstext] = ACTIONS(6057), - [anon_sym_BSLASHGLStext] = ACTIONS(6057), - [anon_sym_BSLASHglsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), - [anon_sym_BSLASHglsplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSplural] = ACTIONS(6057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHglsname] = ACTIONS(6057), - [anon_sym_BSLASHGlsname] = ACTIONS(6057), - [anon_sym_BSLASHGLSname] = ACTIONS(6057), - [anon_sym_BSLASHglssymbol] = ACTIONS(6057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), - [anon_sym_BSLASHglsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), - [anon_sym_BSLASHglsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), - [anon_sym_BSLASHglsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), - [anon_sym_BSLASHglsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), - [anon_sym_BSLASHglsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), - [anon_sym_BSLASHnewacronym] = ACTIONS(6057), - [anon_sym_BSLASHacrshort] = ACTIONS(6057), - [anon_sym_BSLASHAcrshort] = ACTIONS(6057), - [anon_sym_BSLASHACRshort] = ACTIONS(6057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), - [anon_sym_BSLASHacrlong] = ACTIONS(6057), - [anon_sym_BSLASHAcrlong] = ACTIONS(6057), - [anon_sym_BSLASHACRlong] = ACTIONS(6057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), - [anon_sym_BSLASHacrfull] = ACTIONS(6057), - [anon_sym_BSLASHAcrfull] = ACTIONS(6057), - [anon_sym_BSLASHACRfull] = ACTIONS(6057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), - [anon_sym_BSLASHacs] = ACTIONS(6057), - [anon_sym_BSLASHAcs] = ACTIONS(6057), - [anon_sym_BSLASHacsp] = ACTIONS(6057), - [anon_sym_BSLASHAcsp] = ACTIONS(6057), - [anon_sym_BSLASHacl] = ACTIONS(6057), - [anon_sym_BSLASHAcl] = ACTIONS(6057), - [anon_sym_BSLASHaclp] = ACTIONS(6057), - [anon_sym_BSLASHAclp] = ACTIONS(6057), - [anon_sym_BSLASHacf] = ACTIONS(6057), - [anon_sym_BSLASHAcf] = ACTIONS(6057), - [anon_sym_BSLASHacfp] = ACTIONS(6057), - [anon_sym_BSLASHAcfp] = ACTIONS(6057), - [anon_sym_BSLASHac] = ACTIONS(6057), - [anon_sym_BSLASHAc] = ACTIONS(6057), - [anon_sym_BSLASHacp] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), - [anon_sym_BSLASHcolor] = ACTIONS(6057), - [anon_sym_BSLASHcolorbox] = ACTIONS(6057), - [anon_sym_BSLASHtextcolor] = ACTIONS(6057), - [anon_sym_BSLASHpagecolor] = ACTIONS(6057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), - [anon_sym_BSLASHtext] = ACTIONS(6057), - [anon_sym_BSLASHintertext] = ACTIONS(6057), - [anon_sym_shortintertext] = ACTIONS(6057), - }, - [1689] = { - [sym_command_name] = ACTIONS(6453), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6453), - [anon_sym_LBRACK] = ACTIONS(6455), - [anon_sym_RBRACK] = ACTIONS(6455), - [anon_sym_COMMA] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(6455), - [anon_sym_LPAREN] = ACTIONS(6455), - [anon_sym_RPAREN] = ACTIONS(6455), - [anon_sym_LBRACE] = ACTIONS(6455), - [anon_sym_RBRACE] = ACTIONS(6455), - [sym_word] = ACTIONS(6453), - [sym_placeholder] = ACTIONS(6455), - [anon_sym_PLUS] = ACTIONS(6455), - [anon_sym_DASH] = ACTIONS(6455), - [anon_sym_STAR] = ACTIONS(6455), - [anon_sym_SLASH] = ACTIONS(6455), - [anon_sym_LT] = ACTIONS(6453), - [anon_sym_GT] = ACTIONS(6453), - [anon_sym_BANG] = ACTIONS(6453), - [anon_sym_PIPE] = ACTIONS(6453), - [anon_sym_COLON] = ACTIONS(6453), - [anon_sym_SQUOTE] = ACTIONS(6453), - [anon_sym__] = ACTIONS(6455), - [anon_sym_CARET] = ACTIONS(6455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6455), - [anon_sym_DOLLAR] = ACTIONS(6453), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6455), - [anon_sym_BSLASHtitle] = ACTIONS(6453), - [anon_sym_BSLASHauthor] = ACTIONS(6453), - [anon_sym_BSLASHusepackage] = ACTIONS(6453), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6453), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6453), - [anon_sym_BSLASHinclude] = ACTIONS(6453), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6453), - [anon_sym_BSLASHinput] = ACTIONS(6453), - [anon_sym_BSLASHsubfile] = ACTIONS(6453), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6453), - [anon_sym_BSLASHbibliography] = ACTIONS(6453), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6453), - [anon_sym_BSLASHincludesvg] = ACTIONS(6453), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6453), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6453), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6453), - [anon_sym_BSLASHimport] = ACTIONS(6453), - [anon_sym_BSLASHsubimport] = ACTIONS(6453), - [anon_sym_BSLASHinputfrom] = ACTIONS(6453), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6453), - [anon_sym_BSLASHincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHcaption] = ACTIONS(6453), - [anon_sym_BSLASHcite] = ACTIONS(6453), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCite] = ACTIONS(6453), - [anon_sym_BSLASHnocite] = ACTIONS(6453), - [anon_sym_BSLASHcitet] = ACTIONS(6453), - [anon_sym_BSLASHcitep] = ACTIONS(6453), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteauthor] = ACTIONS(6453), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6453), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitetitle] = ACTIONS(6453), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteyear] = ACTIONS(6453), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitedate] = ACTIONS(6453), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteurl] = ACTIONS(6453), - [anon_sym_BSLASHfullcite] = ACTIONS(6453), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6453), - [anon_sym_BSLASHcitealt] = ACTIONS(6453), - [anon_sym_BSLASHcitealp] = ACTIONS(6453), - [anon_sym_BSLASHcitetext] = ACTIONS(6453), - [anon_sym_BSLASHparencite] = ACTIONS(6453), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHParencite] = ACTIONS(6453), - [anon_sym_BSLASHfootcite] = ACTIONS(6453), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6453), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6453), - [anon_sym_BSLASHtextcite] = ACTIONS(6453), - [anon_sym_BSLASHTextcite] = ACTIONS(6453), - [anon_sym_BSLASHsmartcite] = ACTIONS(6453), - [anon_sym_BSLASHSmartcite] = ACTIONS(6453), - [anon_sym_BSLASHsupercite] = ACTIONS(6453), - [anon_sym_BSLASHautocite] = ACTIONS(6453), - [anon_sym_BSLASHAutocite] = ACTIONS(6453), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHvolcite] = ACTIONS(6453), - [anon_sym_BSLASHVolcite] = ACTIONS(6453), - [anon_sym_BSLASHpvolcite] = ACTIONS(6453), - [anon_sym_BSLASHPvolcite] = ACTIONS(6453), - [anon_sym_BSLASHfvolcite] = ACTIONS(6453), - [anon_sym_BSLASHftvolcite] = ACTIONS(6453), - [anon_sym_BSLASHsvolcite] = ACTIONS(6453), - [anon_sym_BSLASHSvolcite] = ACTIONS(6453), - [anon_sym_BSLASHtvolcite] = ACTIONS(6453), - [anon_sym_BSLASHTvolcite] = ACTIONS(6453), - [anon_sym_BSLASHavolcite] = ACTIONS(6453), - [anon_sym_BSLASHAvolcite] = ACTIONS(6453), - [anon_sym_BSLASHnotecite] = ACTIONS(6453), - [anon_sym_BSLASHNotecite] = ACTIONS(6453), - [anon_sym_BSLASHpnotecite] = ACTIONS(6453), - [anon_sym_BSLASHPnotecite] = ACTIONS(6453), - [anon_sym_BSLASHfnotecite] = ACTIONS(6453), - [anon_sym_BSLASHlabel] = ACTIONS(6453), - [anon_sym_BSLASHref] = ACTIONS(6453), - [anon_sym_BSLASHeqref] = ACTIONS(6453), - [anon_sym_BSLASHvref] = ACTIONS(6453), - [anon_sym_BSLASHVref] = ACTIONS(6453), - [anon_sym_BSLASHautoref] = ACTIONS(6453), - [anon_sym_BSLASHpageref] = ACTIONS(6453), - [anon_sym_BSLASHcref] = ACTIONS(6453), - [anon_sym_BSLASHCref] = ACTIONS(6453), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnameCref] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHlabelcref] = ACTIONS(6453), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCrefrange] = ACTIONS(6453), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnewlabel] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6453), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6453), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6455), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHdef] = ACTIONS(6453), - [anon_sym_BSLASHlet] = ACTIONS(6453), - [anon_sym_BSLASHleft] = ACTIONS(6453), - [anon_sym_BSLASHbig] = ACTIONS(6453), - [anon_sym_BSLASHBig] = ACTIONS(6453), - [anon_sym_BSLASHbigg] = ACTIONS(6453), - [anon_sym_BSLASHBigg] = ACTIONS(6453), - [anon_sym_BSLASHbigl] = ACTIONS(6453), - [anon_sym_BSLASHBigl] = ACTIONS(6453), - [anon_sym_BSLASHbiggl] = ACTIONS(6453), - [anon_sym_BSLASHBiggl] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6453), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6453), - [anon_sym_BSLASHgls] = ACTIONS(6453), - [anon_sym_BSLASHGls] = ACTIONS(6453), - [anon_sym_BSLASHGLS] = ACTIONS(6453), - [anon_sym_BSLASHglspl] = ACTIONS(6453), - [anon_sym_BSLASHGlspl] = ACTIONS(6453), - [anon_sym_BSLASHGLSpl] = ACTIONS(6453), - [anon_sym_BSLASHglsdisp] = ACTIONS(6453), - [anon_sym_BSLASHglslink] = ACTIONS(6453), - [anon_sym_BSLASHglstext] = ACTIONS(6453), - [anon_sym_BSLASHGlstext] = ACTIONS(6453), - [anon_sym_BSLASHGLStext] = ACTIONS(6453), - [anon_sym_BSLASHglsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6453), - [anon_sym_BSLASHglsplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSplural] = ACTIONS(6453), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHglsname] = ACTIONS(6453), - [anon_sym_BSLASHGlsname] = ACTIONS(6453), - [anon_sym_BSLASHGLSname] = ACTIONS(6453), - [anon_sym_BSLASHglssymbol] = ACTIONS(6453), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6453), - [anon_sym_BSLASHglsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6453), - [anon_sym_BSLASHglsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6453), - [anon_sym_BSLASHglsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6453), - [anon_sym_BSLASHglsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6453), - [anon_sym_BSLASHglsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6453), - [anon_sym_BSLASHnewacronym] = ACTIONS(6453), - [anon_sym_BSLASHacrshort] = ACTIONS(6453), - [anon_sym_BSLASHAcrshort] = ACTIONS(6453), - [anon_sym_BSLASHACRshort] = ACTIONS(6453), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6453), - [anon_sym_BSLASHacrlong] = ACTIONS(6453), - [anon_sym_BSLASHAcrlong] = ACTIONS(6453), - [anon_sym_BSLASHACRlong] = ACTIONS(6453), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6453), - [anon_sym_BSLASHacrfull] = ACTIONS(6453), - [anon_sym_BSLASHAcrfull] = ACTIONS(6453), - [anon_sym_BSLASHACRfull] = ACTIONS(6453), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6453), - [anon_sym_BSLASHacs] = ACTIONS(6453), - [anon_sym_BSLASHAcs] = ACTIONS(6453), - [anon_sym_BSLASHacsp] = ACTIONS(6453), - [anon_sym_BSLASHAcsp] = ACTIONS(6453), - [anon_sym_BSLASHacl] = ACTIONS(6453), - [anon_sym_BSLASHAcl] = ACTIONS(6453), - [anon_sym_BSLASHaclp] = ACTIONS(6453), - [anon_sym_BSLASHAclp] = ACTIONS(6453), - [anon_sym_BSLASHacf] = ACTIONS(6453), - [anon_sym_BSLASHAcf] = ACTIONS(6453), - [anon_sym_BSLASHacfp] = ACTIONS(6453), - [anon_sym_BSLASHAcfp] = ACTIONS(6453), - [anon_sym_BSLASHac] = ACTIONS(6453), - [anon_sym_BSLASHAc] = ACTIONS(6453), - [anon_sym_BSLASHacp] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6453), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6453), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6453), - [anon_sym_BSLASHcolor] = ACTIONS(6453), - [anon_sym_BSLASHcolorbox] = ACTIONS(6453), - [anon_sym_BSLASHtextcolor] = ACTIONS(6453), - [anon_sym_BSLASHpagecolor] = ACTIONS(6453), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6453), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6453), - [anon_sym_BSLASHtext] = ACTIONS(6453), - [anon_sym_BSLASHintertext] = ACTIONS(6453), - [anon_sym_shortintertext] = ACTIONS(6453), - }, - [1690] = { - [sym_command_name] = ACTIONS(6049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6049), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_LBRACE] = ACTIONS(6051), - [sym_word] = ACTIONS(6049), - [sym_placeholder] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6051), - [anon_sym_DASH] = ACTIONS(6051), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6049), - [anon_sym_GT] = ACTIONS(6049), - [anon_sym_BANG] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6049), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_SQUOTE] = ACTIONS(6049), - [anon_sym__] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), - [anon_sym_BSLASHbegin] = ACTIONS(6049), - [anon_sym_BSLASHtitle] = ACTIONS(6049), - [anon_sym_BSLASHauthor] = ACTIONS(6049), - [anon_sym_BSLASHusepackage] = ACTIONS(6049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6049), - [anon_sym_BSLASHinclude] = ACTIONS(6049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6049), - [anon_sym_BSLASHinput] = ACTIONS(6049), - [anon_sym_BSLASHsubfile] = ACTIONS(6049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6049), - [anon_sym_BSLASHbibliography] = ACTIONS(6049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6049), - [anon_sym_BSLASHincludesvg] = ACTIONS(6049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6049), - [anon_sym_BSLASHimport] = ACTIONS(6049), - [anon_sym_BSLASHsubimport] = ACTIONS(6049), - [anon_sym_BSLASHinputfrom] = ACTIONS(6049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6049), - [anon_sym_BSLASHincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHcaption] = ACTIONS(6049), - [anon_sym_BSLASHcite] = ACTIONS(6049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCite] = ACTIONS(6049), - [anon_sym_BSLASHnocite] = ACTIONS(6049), - [anon_sym_BSLASHcitet] = ACTIONS(6049), - [anon_sym_BSLASHcitep] = ACTIONS(6049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteauthor] = ACTIONS(6049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitetitle] = ACTIONS(6049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteyear] = ACTIONS(6049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitedate] = ACTIONS(6049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteurl] = ACTIONS(6049), - [anon_sym_BSLASHfullcite] = ACTIONS(6049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6049), - [anon_sym_BSLASHcitealt] = ACTIONS(6049), - [anon_sym_BSLASHcitealp] = ACTIONS(6049), - [anon_sym_BSLASHcitetext] = ACTIONS(6049), - [anon_sym_BSLASHparencite] = ACTIONS(6049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHParencite] = ACTIONS(6049), - [anon_sym_BSLASHfootcite] = ACTIONS(6049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6049), - [anon_sym_BSLASHtextcite] = ACTIONS(6049), - [anon_sym_BSLASHTextcite] = ACTIONS(6049), - [anon_sym_BSLASHsmartcite] = ACTIONS(6049), - [anon_sym_BSLASHSmartcite] = ACTIONS(6049), - [anon_sym_BSLASHsupercite] = ACTIONS(6049), - [anon_sym_BSLASHautocite] = ACTIONS(6049), - [anon_sym_BSLASHAutocite] = ACTIONS(6049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHvolcite] = ACTIONS(6049), - [anon_sym_BSLASHVolcite] = ACTIONS(6049), - [anon_sym_BSLASHpvolcite] = ACTIONS(6049), - [anon_sym_BSLASHPvolcite] = ACTIONS(6049), - [anon_sym_BSLASHfvolcite] = ACTIONS(6049), - [anon_sym_BSLASHftvolcite] = ACTIONS(6049), - [anon_sym_BSLASHsvolcite] = ACTIONS(6049), - [anon_sym_BSLASHSvolcite] = ACTIONS(6049), - [anon_sym_BSLASHtvolcite] = ACTIONS(6049), - [anon_sym_BSLASHTvolcite] = ACTIONS(6049), - [anon_sym_BSLASHavolcite] = ACTIONS(6049), - [anon_sym_BSLASHAvolcite] = ACTIONS(6049), - [anon_sym_BSLASHnotecite] = ACTIONS(6049), - [anon_sym_BSLASHNotecite] = ACTIONS(6049), - [anon_sym_BSLASHpnotecite] = ACTIONS(6049), - [anon_sym_BSLASHPnotecite] = ACTIONS(6049), - [anon_sym_BSLASHfnotecite] = ACTIONS(6049), - [anon_sym_BSLASHlabel] = ACTIONS(6049), - [anon_sym_BSLASHref] = ACTIONS(6049), - [anon_sym_BSLASHeqref] = ACTIONS(6049), - [anon_sym_BSLASHvref] = ACTIONS(6049), - [anon_sym_BSLASHVref] = ACTIONS(6049), - [anon_sym_BSLASHautoref] = ACTIONS(6049), - [anon_sym_BSLASHpageref] = ACTIONS(6049), - [anon_sym_BSLASHcref] = ACTIONS(6049), - [anon_sym_BSLASHCref] = ACTIONS(6049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnameCref] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHlabelcref] = ACTIONS(6049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCrefrange] = ACTIONS(6049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnewlabel] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHdef] = ACTIONS(6049), - [anon_sym_BSLASHlet] = ACTIONS(6049), - [anon_sym_BSLASHleft] = ACTIONS(6049), - [anon_sym_BSLASHbig] = ACTIONS(6049), - [anon_sym_BSLASHBig] = ACTIONS(6049), - [anon_sym_BSLASHbigg] = ACTIONS(6049), - [anon_sym_BSLASHBigg] = ACTIONS(6049), - [anon_sym_BSLASHbigl] = ACTIONS(6049), - [anon_sym_BSLASHBigl] = ACTIONS(6049), - [anon_sym_BSLASHbiggl] = ACTIONS(6049), - [anon_sym_BSLASHBiggl] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6049), - [anon_sym_BSLASHgls] = ACTIONS(6049), - [anon_sym_BSLASHGls] = ACTIONS(6049), - [anon_sym_BSLASHGLS] = ACTIONS(6049), - [anon_sym_BSLASHglspl] = ACTIONS(6049), - [anon_sym_BSLASHGlspl] = ACTIONS(6049), - [anon_sym_BSLASHGLSpl] = ACTIONS(6049), - [anon_sym_BSLASHglsdisp] = ACTIONS(6049), - [anon_sym_BSLASHglslink] = ACTIONS(6049), - [anon_sym_BSLASHglstext] = ACTIONS(6049), - [anon_sym_BSLASHGlstext] = ACTIONS(6049), - [anon_sym_BSLASHGLStext] = ACTIONS(6049), - [anon_sym_BSLASHglsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6049), - [anon_sym_BSLASHglsplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSplural] = ACTIONS(6049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHglsname] = ACTIONS(6049), - [anon_sym_BSLASHGlsname] = ACTIONS(6049), - [anon_sym_BSLASHGLSname] = ACTIONS(6049), - [anon_sym_BSLASHglssymbol] = ACTIONS(6049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6049), - [anon_sym_BSLASHglsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6049), - [anon_sym_BSLASHglsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6049), - [anon_sym_BSLASHglsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6049), - [anon_sym_BSLASHglsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6049), - [anon_sym_BSLASHglsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6049), - [anon_sym_BSLASHnewacronym] = ACTIONS(6049), - [anon_sym_BSLASHacrshort] = ACTIONS(6049), - [anon_sym_BSLASHAcrshort] = ACTIONS(6049), - [anon_sym_BSLASHACRshort] = ACTIONS(6049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6049), - [anon_sym_BSLASHacrlong] = ACTIONS(6049), - [anon_sym_BSLASHAcrlong] = ACTIONS(6049), - [anon_sym_BSLASHACRlong] = ACTIONS(6049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6049), - [anon_sym_BSLASHacrfull] = ACTIONS(6049), - [anon_sym_BSLASHAcrfull] = ACTIONS(6049), - [anon_sym_BSLASHACRfull] = ACTIONS(6049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6049), - [anon_sym_BSLASHacs] = ACTIONS(6049), - [anon_sym_BSLASHAcs] = ACTIONS(6049), - [anon_sym_BSLASHacsp] = ACTIONS(6049), - [anon_sym_BSLASHAcsp] = ACTIONS(6049), - [anon_sym_BSLASHacl] = ACTIONS(6049), - [anon_sym_BSLASHAcl] = ACTIONS(6049), - [anon_sym_BSLASHaclp] = ACTIONS(6049), - [anon_sym_BSLASHAclp] = ACTIONS(6049), - [anon_sym_BSLASHacf] = ACTIONS(6049), - [anon_sym_BSLASHAcf] = ACTIONS(6049), - [anon_sym_BSLASHacfp] = ACTIONS(6049), - [anon_sym_BSLASHAcfp] = ACTIONS(6049), - [anon_sym_BSLASHac] = ACTIONS(6049), - [anon_sym_BSLASHAc] = ACTIONS(6049), - [anon_sym_BSLASHacp] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6049), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6049), - [anon_sym_BSLASHcolor] = ACTIONS(6049), - [anon_sym_BSLASHcolorbox] = ACTIONS(6049), - [anon_sym_BSLASHtextcolor] = ACTIONS(6049), - [anon_sym_BSLASHpagecolor] = ACTIONS(6049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6049), - [anon_sym_BSLASHtext] = ACTIONS(6049), - [anon_sym_BSLASHintertext] = ACTIONS(6049), - [anon_sym_shortintertext] = ACTIONS(6049), - }, - [1691] = { - [sym_command_name] = ACTIONS(6045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6045), - [anon_sym_LBRACK] = ACTIONS(6047), - [anon_sym_RBRACK] = ACTIONS(6047), - [anon_sym_COMMA] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(6047), - [anon_sym_LPAREN] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_LBRACE] = ACTIONS(6047), - [sym_word] = ACTIONS(6045), - [sym_placeholder] = ACTIONS(6047), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6047), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_BANG] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_SQUOTE] = ACTIONS(6045), - [anon_sym__] = ACTIONS(6047), - [anon_sym_CARET] = ACTIONS(6047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6047), - [anon_sym_BSLASHbegin] = ACTIONS(6045), - [anon_sym_BSLASHtitle] = ACTIONS(6045), - [anon_sym_BSLASHauthor] = ACTIONS(6045), - [anon_sym_BSLASHusepackage] = ACTIONS(6045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6045), - [anon_sym_BSLASHinclude] = ACTIONS(6045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6045), - [anon_sym_BSLASHinput] = ACTIONS(6045), - [anon_sym_BSLASHsubfile] = ACTIONS(6045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6045), - [anon_sym_BSLASHbibliography] = ACTIONS(6045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6045), - [anon_sym_BSLASHincludesvg] = ACTIONS(6045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6045), - [anon_sym_BSLASHimport] = ACTIONS(6045), - [anon_sym_BSLASHsubimport] = ACTIONS(6045), - [anon_sym_BSLASHinputfrom] = ACTIONS(6045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6045), - [anon_sym_BSLASHincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHcaption] = ACTIONS(6045), - [anon_sym_BSLASHcite] = ACTIONS(6045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCite] = ACTIONS(6045), - [anon_sym_BSLASHnocite] = ACTIONS(6045), - [anon_sym_BSLASHcitet] = ACTIONS(6045), - [anon_sym_BSLASHcitep] = ACTIONS(6045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteauthor] = ACTIONS(6045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitetitle] = ACTIONS(6045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteyear] = ACTIONS(6045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitedate] = ACTIONS(6045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteurl] = ACTIONS(6045), - [anon_sym_BSLASHfullcite] = ACTIONS(6045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6045), - [anon_sym_BSLASHcitealt] = ACTIONS(6045), - [anon_sym_BSLASHcitealp] = ACTIONS(6045), - [anon_sym_BSLASHcitetext] = ACTIONS(6045), - [anon_sym_BSLASHparencite] = ACTIONS(6045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHParencite] = ACTIONS(6045), - [anon_sym_BSLASHfootcite] = ACTIONS(6045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6045), - [anon_sym_BSLASHtextcite] = ACTIONS(6045), - [anon_sym_BSLASHTextcite] = ACTIONS(6045), - [anon_sym_BSLASHsmartcite] = ACTIONS(6045), - [anon_sym_BSLASHSmartcite] = ACTIONS(6045), - [anon_sym_BSLASHsupercite] = ACTIONS(6045), - [anon_sym_BSLASHautocite] = ACTIONS(6045), - [anon_sym_BSLASHAutocite] = ACTIONS(6045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHvolcite] = ACTIONS(6045), - [anon_sym_BSLASHVolcite] = ACTIONS(6045), - [anon_sym_BSLASHpvolcite] = ACTIONS(6045), - [anon_sym_BSLASHPvolcite] = ACTIONS(6045), - [anon_sym_BSLASHfvolcite] = ACTIONS(6045), - [anon_sym_BSLASHftvolcite] = ACTIONS(6045), - [anon_sym_BSLASHsvolcite] = ACTIONS(6045), - [anon_sym_BSLASHSvolcite] = ACTIONS(6045), - [anon_sym_BSLASHtvolcite] = ACTIONS(6045), - [anon_sym_BSLASHTvolcite] = ACTIONS(6045), - [anon_sym_BSLASHavolcite] = ACTIONS(6045), - [anon_sym_BSLASHAvolcite] = ACTIONS(6045), - [anon_sym_BSLASHnotecite] = ACTIONS(6045), - [anon_sym_BSLASHNotecite] = ACTIONS(6045), - [anon_sym_BSLASHpnotecite] = ACTIONS(6045), - [anon_sym_BSLASHPnotecite] = ACTIONS(6045), - [anon_sym_BSLASHfnotecite] = ACTIONS(6045), - [anon_sym_BSLASHlabel] = ACTIONS(6045), - [anon_sym_BSLASHref] = ACTIONS(6045), - [anon_sym_BSLASHeqref] = ACTIONS(6045), - [anon_sym_BSLASHvref] = ACTIONS(6045), - [anon_sym_BSLASHVref] = ACTIONS(6045), - [anon_sym_BSLASHautoref] = ACTIONS(6045), - [anon_sym_BSLASHpageref] = ACTIONS(6045), - [anon_sym_BSLASHcref] = ACTIONS(6045), - [anon_sym_BSLASHCref] = ACTIONS(6045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnameCref] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHlabelcref] = ACTIONS(6045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCrefrange] = ACTIONS(6045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnewlabel] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6047), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHdef] = ACTIONS(6045), - [anon_sym_BSLASHlet] = ACTIONS(6045), - [anon_sym_BSLASHleft] = ACTIONS(6045), - [anon_sym_BSLASHbig] = ACTIONS(6045), - [anon_sym_BSLASHBig] = ACTIONS(6045), - [anon_sym_BSLASHbigg] = ACTIONS(6045), - [anon_sym_BSLASHBigg] = ACTIONS(6045), - [anon_sym_BSLASHbigl] = ACTIONS(6045), - [anon_sym_BSLASHBigl] = ACTIONS(6045), - [anon_sym_BSLASHbiggl] = ACTIONS(6045), - [anon_sym_BSLASHBiggl] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6045), - [anon_sym_BSLASHgls] = ACTIONS(6045), - [anon_sym_BSLASHGls] = ACTIONS(6045), - [anon_sym_BSLASHGLS] = ACTIONS(6045), - [anon_sym_BSLASHglspl] = ACTIONS(6045), - [anon_sym_BSLASHGlspl] = ACTIONS(6045), - [anon_sym_BSLASHGLSpl] = ACTIONS(6045), - [anon_sym_BSLASHglsdisp] = ACTIONS(6045), - [anon_sym_BSLASHglslink] = ACTIONS(6045), - [anon_sym_BSLASHglstext] = ACTIONS(6045), - [anon_sym_BSLASHGlstext] = ACTIONS(6045), - [anon_sym_BSLASHGLStext] = ACTIONS(6045), - [anon_sym_BSLASHglsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6045), - [anon_sym_BSLASHglsplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSplural] = ACTIONS(6045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHglsname] = ACTIONS(6045), - [anon_sym_BSLASHGlsname] = ACTIONS(6045), - [anon_sym_BSLASHGLSname] = ACTIONS(6045), - [anon_sym_BSLASHglssymbol] = ACTIONS(6045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6045), - [anon_sym_BSLASHglsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6045), - [anon_sym_BSLASHglsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6045), - [anon_sym_BSLASHglsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6045), - [anon_sym_BSLASHglsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6045), - [anon_sym_BSLASHglsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6045), - [anon_sym_BSLASHnewacronym] = ACTIONS(6045), - [anon_sym_BSLASHacrshort] = ACTIONS(6045), - [anon_sym_BSLASHAcrshort] = ACTIONS(6045), - [anon_sym_BSLASHACRshort] = ACTIONS(6045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6045), - [anon_sym_BSLASHacrlong] = ACTIONS(6045), - [anon_sym_BSLASHAcrlong] = ACTIONS(6045), - [anon_sym_BSLASHACRlong] = ACTIONS(6045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6045), - [anon_sym_BSLASHacrfull] = ACTIONS(6045), - [anon_sym_BSLASHAcrfull] = ACTIONS(6045), - [anon_sym_BSLASHACRfull] = ACTIONS(6045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6045), - [anon_sym_BSLASHacs] = ACTIONS(6045), - [anon_sym_BSLASHAcs] = ACTIONS(6045), - [anon_sym_BSLASHacsp] = ACTIONS(6045), - [anon_sym_BSLASHAcsp] = ACTIONS(6045), - [anon_sym_BSLASHacl] = ACTIONS(6045), - [anon_sym_BSLASHAcl] = ACTIONS(6045), - [anon_sym_BSLASHaclp] = ACTIONS(6045), - [anon_sym_BSLASHAclp] = ACTIONS(6045), - [anon_sym_BSLASHacf] = ACTIONS(6045), - [anon_sym_BSLASHAcf] = ACTIONS(6045), - [anon_sym_BSLASHacfp] = ACTIONS(6045), - [anon_sym_BSLASHAcfp] = ACTIONS(6045), - [anon_sym_BSLASHac] = ACTIONS(6045), - [anon_sym_BSLASHAc] = ACTIONS(6045), - [anon_sym_BSLASHacp] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6045), - [anon_sym_BSLASHcolor] = ACTIONS(6045), - [anon_sym_BSLASHcolorbox] = ACTIONS(6045), - [anon_sym_BSLASHtextcolor] = ACTIONS(6045), - [anon_sym_BSLASHpagecolor] = ACTIONS(6045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6045), - [anon_sym_BSLASHtext] = ACTIONS(6045), - [anon_sym_BSLASHintertext] = ACTIONS(6045), - [anon_sym_shortintertext] = ACTIONS(6045), - }, - [1692] = { - [sym_command_name] = ACTIONS(6053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6053), - [anon_sym_LBRACK] = ACTIONS(6055), - [anon_sym_RBRACK] = ACTIONS(6055), - [anon_sym_COMMA] = ACTIONS(6055), - [anon_sym_EQ] = ACTIONS(6055), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_LBRACE] = ACTIONS(6055), - [anon_sym_RBRACE] = ACTIONS(6055), - [sym_word] = ACTIONS(6053), - [sym_placeholder] = ACTIONS(6055), - [anon_sym_PLUS] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(6055), - [anon_sym_STAR] = ACTIONS(6055), - [anon_sym_SLASH] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_COLON] = ACTIONS(6053), - [anon_sym_SQUOTE] = ACTIONS(6053), - [anon_sym__] = ACTIONS(6055), - [anon_sym_CARET] = ACTIONS(6055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), - [anon_sym_BSLASHtitle] = ACTIONS(6053), - [anon_sym_BSLASHauthor] = ACTIONS(6053), - [anon_sym_BSLASHusepackage] = ACTIONS(6053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), - [anon_sym_BSLASHinclude] = ACTIONS(6053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), - [anon_sym_BSLASHinput] = ACTIONS(6053), - [anon_sym_BSLASHsubfile] = ACTIONS(6053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), - [anon_sym_BSLASHbibliography] = ACTIONS(6053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), - [anon_sym_BSLASHincludesvg] = ACTIONS(6053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), - [anon_sym_BSLASHimport] = ACTIONS(6053), - [anon_sym_BSLASHsubimport] = ACTIONS(6053), - [anon_sym_BSLASHinputfrom] = ACTIONS(6053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), - [anon_sym_BSLASHincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHcaption] = ACTIONS(6053), - [anon_sym_BSLASHcite] = ACTIONS(6053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCite] = ACTIONS(6053), - [anon_sym_BSLASHnocite] = ACTIONS(6053), - [anon_sym_BSLASHcitet] = ACTIONS(6053), - [anon_sym_BSLASHcitep] = ACTIONS(6053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteauthor] = ACTIONS(6053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitetitle] = ACTIONS(6053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteyear] = ACTIONS(6053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitedate] = ACTIONS(6053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteurl] = ACTIONS(6053), - [anon_sym_BSLASHfullcite] = ACTIONS(6053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), - [anon_sym_BSLASHcitealt] = ACTIONS(6053), - [anon_sym_BSLASHcitealp] = ACTIONS(6053), - [anon_sym_BSLASHcitetext] = ACTIONS(6053), - [anon_sym_BSLASHparencite] = ACTIONS(6053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHParencite] = ACTIONS(6053), - [anon_sym_BSLASHfootcite] = ACTIONS(6053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), - [anon_sym_BSLASHtextcite] = ACTIONS(6053), - [anon_sym_BSLASHTextcite] = ACTIONS(6053), - [anon_sym_BSLASHsmartcite] = ACTIONS(6053), - [anon_sym_BSLASHSmartcite] = ACTIONS(6053), - [anon_sym_BSLASHsupercite] = ACTIONS(6053), - [anon_sym_BSLASHautocite] = ACTIONS(6053), - [anon_sym_BSLASHAutocite] = ACTIONS(6053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHvolcite] = ACTIONS(6053), - [anon_sym_BSLASHVolcite] = ACTIONS(6053), - [anon_sym_BSLASHpvolcite] = ACTIONS(6053), - [anon_sym_BSLASHPvolcite] = ACTIONS(6053), - [anon_sym_BSLASHfvolcite] = ACTIONS(6053), - [anon_sym_BSLASHftvolcite] = ACTIONS(6053), - [anon_sym_BSLASHsvolcite] = ACTIONS(6053), - [anon_sym_BSLASHSvolcite] = ACTIONS(6053), - [anon_sym_BSLASHtvolcite] = ACTIONS(6053), - [anon_sym_BSLASHTvolcite] = ACTIONS(6053), - [anon_sym_BSLASHavolcite] = ACTIONS(6053), - [anon_sym_BSLASHAvolcite] = ACTIONS(6053), - [anon_sym_BSLASHnotecite] = ACTIONS(6053), - [anon_sym_BSLASHNotecite] = ACTIONS(6053), - [anon_sym_BSLASHpnotecite] = ACTIONS(6053), - [anon_sym_BSLASHPnotecite] = ACTIONS(6053), - [anon_sym_BSLASHfnotecite] = ACTIONS(6053), - [anon_sym_BSLASHlabel] = ACTIONS(6053), - [anon_sym_BSLASHref] = ACTIONS(6053), - [anon_sym_BSLASHeqref] = ACTIONS(6053), - [anon_sym_BSLASHvref] = ACTIONS(6053), - [anon_sym_BSLASHVref] = ACTIONS(6053), - [anon_sym_BSLASHautoref] = ACTIONS(6053), - [anon_sym_BSLASHpageref] = ACTIONS(6053), - [anon_sym_BSLASHcref] = ACTIONS(6053), - [anon_sym_BSLASHCref] = ACTIONS(6053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnameCref] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHlabelcref] = ACTIONS(6053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCrefrange] = ACTIONS(6053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnewlabel] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHdef] = ACTIONS(6053), - [anon_sym_BSLASHlet] = ACTIONS(6053), - [anon_sym_BSLASHleft] = ACTIONS(6053), - [anon_sym_BSLASHbig] = ACTIONS(6053), - [anon_sym_BSLASHBig] = ACTIONS(6053), - [anon_sym_BSLASHbigg] = ACTIONS(6053), - [anon_sym_BSLASHBigg] = ACTIONS(6053), - [anon_sym_BSLASHbigl] = ACTIONS(6053), - [anon_sym_BSLASHBigl] = ACTIONS(6053), - [anon_sym_BSLASHbiggl] = ACTIONS(6053), - [anon_sym_BSLASHBiggl] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), - [anon_sym_BSLASHgls] = ACTIONS(6053), - [anon_sym_BSLASHGls] = ACTIONS(6053), - [anon_sym_BSLASHGLS] = ACTIONS(6053), - [anon_sym_BSLASHglspl] = ACTIONS(6053), - [anon_sym_BSLASHGlspl] = ACTIONS(6053), - [anon_sym_BSLASHGLSpl] = ACTIONS(6053), - [anon_sym_BSLASHglsdisp] = ACTIONS(6053), - [anon_sym_BSLASHglslink] = ACTIONS(6053), - [anon_sym_BSLASHglstext] = ACTIONS(6053), - [anon_sym_BSLASHGlstext] = ACTIONS(6053), - [anon_sym_BSLASHGLStext] = ACTIONS(6053), - [anon_sym_BSLASHglsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), - [anon_sym_BSLASHglsplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSplural] = ACTIONS(6053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHglsname] = ACTIONS(6053), - [anon_sym_BSLASHGlsname] = ACTIONS(6053), - [anon_sym_BSLASHGLSname] = ACTIONS(6053), - [anon_sym_BSLASHglssymbol] = ACTIONS(6053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), - [anon_sym_BSLASHglsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), - [anon_sym_BSLASHglsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), - [anon_sym_BSLASHglsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), - [anon_sym_BSLASHglsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), - [anon_sym_BSLASHglsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), - [anon_sym_BSLASHnewacronym] = ACTIONS(6053), - [anon_sym_BSLASHacrshort] = ACTIONS(6053), - [anon_sym_BSLASHAcrshort] = ACTIONS(6053), - [anon_sym_BSLASHACRshort] = ACTIONS(6053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), - [anon_sym_BSLASHacrlong] = ACTIONS(6053), - [anon_sym_BSLASHAcrlong] = ACTIONS(6053), - [anon_sym_BSLASHACRlong] = ACTIONS(6053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), - [anon_sym_BSLASHacrfull] = ACTIONS(6053), - [anon_sym_BSLASHAcrfull] = ACTIONS(6053), - [anon_sym_BSLASHACRfull] = ACTIONS(6053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), - [anon_sym_BSLASHacs] = ACTIONS(6053), - [anon_sym_BSLASHAcs] = ACTIONS(6053), - [anon_sym_BSLASHacsp] = ACTIONS(6053), - [anon_sym_BSLASHAcsp] = ACTIONS(6053), - [anon_sym_BSLASHacl] = ACTIONS(6053), - [anon_sym_BSLASHAcl] = ACTIONS(6053), - [anon_sym_BSLASHaclp] = ACTIONS(6053), - [anon_sym_BSLASHAclp] = ACTIONS(6053), - [anon_sym_BSLASHacf] = ACTIONS(6053), - [anon_sym_BSLASHAcf] = ACTIONS(6053), - [anon_sym_BSLASHacfp] = ACTIONS(6053), - [anon_sym_BSLASHAcfp] = ACTIONS(6053), - [anon_sym_BSLASHac] = ACTIONS(6053), - [anon_sym_BSLASHAc] = ACTIONS(6053), - [anon_sym_BSLASHacp] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), - [anon_sym_BSLASHcolor] = ACTIONS(6053), - [anon_sym_BSLASHcolorbox] = ACTIONS(6053), - [anon_sym_BSLASHtextcolor] = ACTIONS(6053), - [anon_sym_BSLASHpagecolor] = ACTIONS(6053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), - [anon_sym_BSLASHtext] = ACTIONS(6053), - [anon_sym_BSLASHintertext] = ACTIONS(6053), - [anon_sym_shortintertext] = ACTIONS(6053), - }, - [1693] = { - [sym_command_name] = ACTIONS(6049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6049), - [anon_sym_LBRACK] = ACTIONS(6051), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(6051), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_LBRACE] = ACTIONS(6051), - [anon_sym_RBRACE] = ACTIONS(6051), - [sym_word] = ACTIONS(6049), - [sym_placeholder] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6051), - [anon_sym_DASH] = ACTIONS(6051), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6049), - [anon_sym_GT] = ACTIONS(6049), - [anon_sym_BANG] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6049), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_SQUOTE] = ACTIONS(6049), - [anon_sym__] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), - [anon_sym_BSLASHtitle] = ACTIONS(6049), - [anon_sym_BSLASHauthor] = ACTIONS(6049), - [anon_sym_BSLASHusepackage] = ACTIONS(6049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6049), - [anon_sym_BSLASHinclude] = ACTIONS(6049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6049), - [anon_sym_BSLASHinput] = ACTIONS(6049), - [anon_sym_BSLASHsubfile] = ACTIONS(6049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6049), - [anon_sym_BSLASHbibliography] = ACTIONS(6049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6049), - [anon_sym_BSLASHincludesvg] = ACTIONS(6049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6049), - [anon_sym_BSLASHimport] = ACTIONS(6049), - [anon_sym_BSLASHsubimport] = ACTIONS(6049), - [anon_sym_BSLASHinputfrom] = ACTIONS(6049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6049), - [anon_sym_BSLASHincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHcaption] = ACTIONS(6049), - [anon_sym_BSLASHcite] = ACTIONS(6049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCite] = ACTIONS(6049), - [anon_sym_BSLASHnocite] = ACTIONS(6049), - [anon_sym_BSLASHcitet] = ACTIONS(6049), - [anon_sym_BSLASHcitep] = ACTIONS(6049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteauthor] = ACTIONS(6049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitetitle] = ACTIONS(6049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteyear] = ACTIONS(6049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitedate] = ACTIONS(6049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteurl] = ACTIONS(6049), - [anon_sym_BSLASHfullcite] = ACTIONS(6049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6049), - [anon_sym_BSLASHcitealt] = ACTIONS(6049), - [anon_sym_BSLASHcitealp] = ACTIONS(6049), - [anon_sym_BSLASHcitetext] = ACTIONS(6049), - [anon_sym_BSLASHparencite] = ACTIONS(6049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHParencite] = ACTIONS(6049), - [anon_sym_BSLASHfootcite] = ACTIONS(6049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6049), - [anon_sym_BSLASHtextcite] = ACTIONS(6049), - [anon_sym_BSLASHTextcite] = ACTIONS(6049), - [anon_sym_BSLASHsmartcite] = ACTIONS(6049), - [anon_sym_BSLASHSmartcite] = ACTIONS(6049), - [anon_sym_BSLASHsupercite] = ACTIONS(6049), - [anon_sym_BSLASHautocite] = ACTIONS(6049), - [anon_sym_BSLASHAutocite] = ACTIONS(6049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHvolcite] = ACTIONS(6049), - [anon_sym_BSLASHVolcite] = ACTIONS(6049), - [anon_sym_BSLASHpvolcite] = ACTIONS(6049), - [anon_sym_BSLASHPvolcite] = ACTIONS(6049), - [anon_sym_BSLASHfvolcite] = ACTIONS(6049), - [anon_sym_BSLASHftvolcite] = ACTIONS(6049), - [anon_sym_BSLASHsvolcite] = ACTIONS(6049), - [anon_sym_BSLASHSvolcite] = ACTIONS(6049), - [anon_sym_BSLASHtvolcite] = ACTIONS(6049), - [anon_sym_BSLASHTvolcite] = ACTIONS(6049), - [anon_sym_BSLASHavolcite] = ACTIONS(6049), - [anon_sym_BSLASHAvolcite] = ACTIONS(6049), - [anon_sym_BSLASHnotecite] = ACTIONS(6049), - [anon_sym_BSLASHNotecite] = ACTIONS(6049), - [anon_sym_BSLASHpnotecite] = ACTIONS(6049), - [anon_sym_BSLASHPnotecite] = ACTIONS(6049), - [anon_sym_BSLASHfnotecite] = ACTIONS(6049), - [anon_sym_BSLASHlabel] = ACTIONS(6049), - [anon_sym_BSLASHref] = ACTIONS(6049), - [anon_sym_BSLASHeqref] = ACTIONS(6049), - [anon_sym_BSLASHvref] = ACTIONS(6049), - [anon_sym_BSLASHVref] = ACTIONS(6049), - [anon_sym_BSLASHautoref] = ACTIONS(6049), - [anon_sym_BSLASHpageref] = ACTIONS(6049), - [anon_sym_BSLASHcref] = ACTIONS(6049), - [anon_sym_BSLASHCref] = ACTIONS(6049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnameCref] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHlabelcref] = ACTIONS(6049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCrefrange] = ACTIONS(6049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnewlabel] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHdef] = ACTIONS(6049), - [anon_sym_BSLASHlet] = ACTIONS(6049), - [anon_sym_BSLASHleft] = ACTIONS(6049), - [anon_sym_BSLASHbig] = ACTIONS(6049), - [anon_sym_BSLASHBig] = ACTIONS(6049), - [anon_sym_BSLASHbigg] = ACTIONS(6049), - [anon_sym_BSLASHBigg] = ACTIONS(6049), - [anon_sym_BSLASHbigl] = ACTIONS(6049), - [anon_sym_BSLASHBigl] = ACTIONS(6049), - [anon_sym_BSLASHbiggl] = ACTIONS(6049), - [anon_sym_BSLASHBiggl] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6049), - [anon_sym_BSLASHgls] = ACTIONS(6049), - [anon_sym_BSLASHGls] = ACTIONS(6049), - [anon_sym_BSLASHGLS] = ACTIONS(6049), - [anon_sym_BSLASHglspl] = ACTIONS(6049), - [anon_sym_BSLASHGlspl] = ACTIONS(6049), - [anon_sym_BSLASHGLSpl] = ACTIONS(6049), - [anon_sym_BSLASHglsdisp] = ACTIONS(6049), - [anon_sym_BSLASHglslink] = ACTIONS(6049), - [anon_sym_BSLASHglstext] = ACTIONS(6049), - [anon_sym_BSLASHGlstext] = ACTIONS(6049), - [anon_sym_BSLASHGLStext] = ACTIONS(6049), - [anon_sym_BSLASHglsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6049), - [anon_sym_BSLASHglsplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSplural] = ACTIONS(6049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHglsname] = ACTIONS(6049), - [anon_sym_BSLASHGlsname] = ACTIONS(6049), - [anon_sym_BSLASHGLSname] = ACTIONS(6049), - [anon_sym_BSLASHglssymbol] = ACTIONS(6049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6049), - [anon_sym_BSLASHglsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6049), - [anon_sym_BSLASHglsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6049), - [anon_sym_BSLASHglsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6049), - [anon_sym_BSLASHglsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6049), - [anon_sym_BSLASHglsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6049), - [anon_sym_BSLASHnewacronym] = ACTIONS(6049), - [anon_sym_BSLASHacrshort] = ACTIONS(6049), - [anon_sym_BSLASHAcrshort] = ACTIONS(6049), - [anon_sym_BSLASHACRshort] = ACTIONS(6049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6049), - [anon_sym_BSLASHacrlong] = ACTIONS(6049), - [anon_sym_BSLASHAcrlong] = ACTIONS(6049), - [anon_sym_BSLASHACRlong] = ACTIONS(6049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6049), - [anon_sym_BSLASHacrfull] = ACTIONS(6049), - [anon_sym_BSLASHAcrfull] = ACTIONS(6049), - [anon_sym_BSLASHACRfull] = ACTIONS(6049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6049), - [anon_sym_BSLASHacs] = ACTIONS(6049), - [anon_sym_BSLASHAcs] = ACTIONS(6049), - [anon_sym_BSLASHacsp] = ACTIONS(6049), - [anon_sym_BSLASHAcsp] = ACTIONS(6049), - [anon_sym_BSLASHacl] = ACTIONS(6049), - [anon_sym_BSLASHAcl] = ACTIONS(6049), - [anon_sym_BSLASHaclp] = ACTIONS(6049), - [anon_sym_BSLASHAclp] = ACTIONS(6049), - [anon_sym_BSLASHacf] = ACTIONS(6049), - [anon_sym_BSLASHAcf] = ACTIONS(6049), - [anon_sym_BSLASHacfp] = ACTIONS(6049), - [anon_sym_BSLASHAcfp] = ACTIONS(6049), - [anon_sym_BSLASHac] = ACTIONS(6049), - [anon_sym_BSLASHAc] = ACTIONS(6049), - [anon_sym_BSLASHacp] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6049), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6049), - [anon_sym_BSLASHcolor] = ACTIONS(6049), - [anon_sym_BSLASHcolorbox] = ACTIONS(6049), - [anon_sym_BSLASHtextcolor] = ACTIONS(6049), - [anon_sym_BSLASHpagecolor] = ACTIONS(6049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6049), - [anon_sym_BSLASHtext] = ACTIONS(6049), - [anon_sym_BSLASHintertext] = ACTIONS(6049), - [anon_sym_shortintertext] = ACTIONS(6049), - }, - [1694] = { - [sym_command_name] = ACTIONS(6045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6045), - [anon_sym_LBRACK] = ACTIONS(6047), - [anon_sym_RBRACK] = ACTIONS(6047), - [anon_sym_COMMA] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(6047), - [anon_sym_LPAREN] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_LBRACE] = ACTIONS(6047), - [anon_sym_RBRACE] = ACTIONS(6047), - [sym_word] = ACTIONS(6045), - [sym_placeholder] = ACTIONS(6047), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6047), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_BANG] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_SQUOTE] = ACTIONS(6045), - [anon_sym__] = ACTIONS(6047), - [anon_sym_CARET] = ACTIONS(6047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6047), - [anon_sym_BSLASHtitle] = ACTIONS(6045), - [anon_sym_BSLASHauthor] = ACTIONS(6045), - [anon_sym_BSLASHusepackage] = ACTIONS(6045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6045), - [anon_sym_BSLASHinclude] = ACTIONS(6045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6045), - [anon_sym_BSLASHinput] = ACTIONS(6045), - [anon_sym_BSLASHsubfile] = ACTIONS(6045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6045), - [anon_sym_BSLASHbibliography] = ACTIONS(6045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6045), - [anon_sym_BSLASHincludesvg] = ACTIONS(6045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6045), - [anon_sym_BSLASHimport] = ACTIONS(6045), - [anon_sym_BSLASHsubimport] = ACTIONS(6045), - [anon_sym_BSLASHinputfrom] = ACTIONS(6045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6045), - [anon_sym_BSLASHincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHcaption] = ACTIONS(6045), - [anon_sym_BSLASHcite] = ACTIONS(6045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCite] = ACTIONS(6045), - [anon_sym_BSLASHnocite] = ACTIONS(6045), - [anon_sym_BSLASHcitet] = ACTIONS(6045), - [anon_sym_BSLASHcitep] = ACTIONS(6045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteauthor] = ACTIONS(6045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitetitle] = ACTIONS(6045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteyear] = ACTIONS(6045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitedate] = ACTIONS(6045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteurl] = ACTIONS(6045), - [anon_sym_BSLASHfullcite] = ACTIONS(6045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6045), - [anon_sym_BSLASHcitealt] = ACTIONS(6045), - [anon_sym_BSLASHcitealp] = ACTIONS(6045), - [anon_sym_BSLASHcitetext] = ACTIONS(6045), - [anon_sym_BSLASHparencite] = ACTIONS(6045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHParencite] = ACTIONS(6045), - [anon_sym_BSLASHfootcite] = ACTIONS(6045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6045), - [anon_sym_BSLASHtextcite] = ACTIONS(6045), - [anon_sym_BSLASHTextcite] = ACTIONS(6045), - [anon_sym_BSLASHsmartcite] = ACTIONS(6045), - [anon_sym_BSLASHSmartcite] = ACTIONS(6045), - [anon_sym_BSLASHsupercite] = ACTIONS(6045), - [anon_sym_BSLASHautocite] = ACTIONS(6045), - [anon_sym_BSLASHAutocite] = ACTIONS(6045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHvolcite] = ACTIONS(6045), - [anon_sym_BSLASHVolcite] = ACTIONS(6045), - [anon_sym_BSLASHpvolcite] = ACTIONS(6045), - [anon_sym_BSLASHPvolcite] = ACTIONS(6045), - [anon_sym_BSLASHfvolcite] = ACTIONS(6045), - [anon_sym_BSLASHftvolcite] = ACTIONS(6045), - [anon_sym_BSLASHsvolcite] = ACTIONS(6045), - [anon_sym_BSLASHSvolcite] = ACTIONS(6045), - [anon_sym_BSLASHtvolcite] = ACTIONS(6045), - [anon_sym_BSLASHTvolcite] = ACTIONS(6045), - [anon_sym_BSLASHavolcite] = ACTIONS(6045), - [anon_sym_BSLASHAvolcite] = ACTIONS(6045), - [anon_sym_BSLASHnotecite] = ACTIONS(6045), - [anon_sym_BSLASHNotecite] = ACTIONS(6045), - [anon_sym_BSLASHpnotecite] = ACTIONS(6045), - [anon_sym_BSLASHPnotecite] = ACTIONS(6045), - [anon_sym_BSLASHfnotecite] = ACTIONS(6045), - [anon_sym_BSLASHlabel] = ACTIONS(6045), - [anon_sym_BSLASHref] = ACTIONS(6045), - [anon_sym_BSLASHeqref] = ACTIONS(6045), - [anon_sym_BSLASHvref] = ACTIONS(6045), - [anon_sym_BSLASHVref] = ACTIONS(6045), - [anon_sym_BSLASHautoref] = ACTIONS(6045), - [anon_sym_BSLASHpageref] = ACTIONS(6045), - [anon_sym_BSLASHcref] = ACTIONS(6045), - [anon_sym_BSLASHCref] = ACTIONS(6045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnameCref] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHlabelcref] = ACTIONS(6045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCrefrange] = ACTIONS(6045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnewlabel] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6047), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHdef] = ACTIONS(6045), - [anon_sym_BSLASHlet] = ACTIONS(6045), - [anon_sym_BSLASHleft] = ACTIONS(6045), - [anon_sym_BSLASHbig] = ACTIONS(6045), - [anon_sym_BSLASHBig] = ACTIONS(6045), - [anon_sym_BSLASHbigg] = ACTIONS(6045), - [anon_sym_BSLASHBigg] = ACTIONS(6045), - [anon_sym_BSLASHbigl] = ACTIONS(6045), - [anon_sym_BSLASHBigl] = ACTIONS(6045), - [anon_sym_BSLASHbiggl] = ACTIONS(6045), - [anon_sym_BSLASHBiggl] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6045), - [anon_sym_BSLASHgls] = ACTIONS(6045), - [anon_sym_BSLASHGls] = ACTIONS(6045), - [anon_sym_BSLASHGLS] = ACTIONS(6045), - [anon_sym_BSLASHglspl] = ACTIONS(6045), - [anon_sym_BSLASHGlspl] = ACTIONS(6045), - [anon_sym_BSLASHGLSpl] = ACTIONS(6045), - [anon_sym_BSLASHglsdisp] = ACTIONS(6045), - [anon_sym_BSLASHglslink] = ACTIONS(6045), - [anon_sym_BSLASHglstext] = ACTIONS(6045), - [anon_sym_BSLASHGlstext] = ACTIONS(6045), - [anon_sym_BSLASHGLStext] = ACTIONS(6045), - [anon_sym_BSLASHglsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6045), - [anon_sym_BSLASHglsplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSplural] = ACTIONS(6045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHglsname] = ACTIONS(6045), - [anon_sym_BSLASHGlsname] = ACTIONS(6045), - [anon_sym_BSLASHGLSname] = ACTIONS(6045), - [anon_sym_BSLASHglssymbol] = ACTIONS(6045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6045), - [anon_sym_BSLASHglsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6045), - [anon_sym_BSLASHglsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6045), - [anon_sym_BSLASHglsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6045), - [anon_sym_BSLASHglsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6045), - [anon_sym_BSLASHglsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6045), - [anon_sym_BSLASHnewacronym] = ACTIONS(6045), - [anon_sym_BSLASHacrshort] = ACTIONS(6045), - [anon_sym_BSLASHAcrshort] = ACTIONS(6045), - [anon_sym_BSLASHACRshort] = ACTIONS(6045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6045), - [anon_sym_BSLASHacrlong] = ACTIONS(6045), - [anon_sym_BSLASHAcrlong] = ACTIONS(6045), - [anon_sym_BSLASHACRlong] = ACTIONS(6045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6045), - [anon_sym_BSLASHacrfull] = ACTIONS(6045), - [anon_sym_BSLASHAcrfull] = ACTIONS(6045), - [anon_sym_BSLASHACRfull] = ACTIONS(6045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6045), - [anon_sym_BSLASHacs] = ACTIONS(6045), - [anon_sym_BSLASHAcs] = ACTIONS(6045), - [anon_sym_BSLASHacsp] = ACTIONS(6045), - [anon_sym_BSLASHAcsp] = ACTIONS(6045), - [anon_sym_BSLASHacl] = ACTIONS(6045), - [anon_sym_BSLASHAcl] = ACTIONS(6045), - [anon_sym_BSLASHaclp] = ACTIONS(6045), - [anon_sym_BSLASHAclp] = ACTIONS(6045), - [anon_sym_BSLASHacf] = ACTIONS(6045), - [anon_sym_BSLASHAcf] = ACTIONS(6045), - [anon_sym_BSLASHacfp] = ACTIONS(6045), - [anon_sym_BSLASHAcfp] = ACTIONS(6045), - [anon_sym_BSLASHac] = ACTIONS(6045), - [anon_sym_BSLASHAc] = ACTIONS(6045), - [anon_sym_BSLASHacp] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6045), - [anon_sym_BSLASHcolor] = ACTIONS(6045), - [anon_sym_BSLASHcolorbox] = ACTIONS(6045), - [anon_sym_BSLASHtextcolor] = ACTIONS(6045), - [anon_sym_BSLASHpagecolor] = ACTIONS(6045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6045), - [anon_sym_BSLASHtext] = ACTIONS(6045), - [anon_sym_BSLASHintertext] = ACTIONS(6045), - [anon_sym_shortintertext] = ACTIONS(6045), - }, - [1695] = { - [sym_command_name] = ACTIONS(6165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6165), - [anon_sym_LBRACK] = ACTIONS(6167), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_EQ] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_LBRACE] = ACTIONS(6167), - [anon_sym_RBRACE] = ACTIONS(6167), - [sym_word] = ACTIONS(6165), - [sym_placeholder] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6167), - [anon_sym_DASH] = ACTIONS(6167), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_COLON] = ACTIONS(6165), - [anon_sym_SQUOTE] = ACTIONS(6165), - [anon_sym__] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6167), - [anon_sym_BSLASHtitle] = ACTIONS(6165), - [anon_sym_BSLASHauthor] = ACTIONS(6165), - [anon_sym_BSLASHusepackage] = ACTIONS(6165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6165), - [anon_sym_BSLASHinclude] = ACTIONS(6165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6165), - [anon_sym_BSLASHinput] = ACTIONS(6165), - [anon_sym_BSLASHsubfile] = ACTIONS(6165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6165), - [anon_sym_BSLASHbibliography] = ACTIONS(6165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6165), - [anon_sym_BSLASHincludesvg] = ACTIONS(6165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6165), - [anon_sym_BSLASHimport] = ACTIONS(6165), - [anon_sym_BSLASHsubimport] = ACTIONS(6165), - [anon_sym_BSLASHinputfrom] = ACTIONS(6165), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6165), - [anon_sym_BSLASHincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHcaption] = ACTIONS(6165), - [anon_sym_BSLASHcite] = ACTIONS(6165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCite] = ACTIONS(6165), - [anon_sym_BSLASHnocite] = ACTIONS(6165), - [anon_sym_BSLASHcitet] = ACTIONS(6165), - [anon_sym_BSLASHcitep] = ACTIONS(6165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteauthor] = ACTIONS(6165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitetitle] = ACTIONS(6165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteyear] = ACTIONS(6165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitedate] = ACTIONS(6165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteurl] = ACTIONS(6165), - [anon_sym_BSLASHfullcite] = ACTIONS(6165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6165), - [anon_sym_BSLASHcitealt] = ACTIONS(6165), - [anon_sym_BSLASHcitealp] = ACTIONS(6165), - [anon_sym_BSLASHcitetext] = ACTIONS(6165), - [anon_sym_BSLASHparencite] = ACTIONS(6165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHParencite] = ACTIONS(6165), - [anon_sym_BSLASHfootcite] = ACTIONS(6165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6165), - [anon_sym_BSLASHtextcite] = ACTIONS(6165), - [anon_sym_BSLASHTextcite] = ACTIONS(6165), - [anon_sym_BSLASHsmartcite] = ACTIONS(6165), - [anon_sym_BSLASHSmartcite] = ACTIONS(6165), - [anon_sym_BSLASHsupercite] = ACTIONS(6165), - [anon_sym_BSLASHautocite] = ACTIONS(6165), - [anon_sym_BSLASHAutocite] = ACTIONS(6165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHvolcite] = ACTIONS(6165), - [anon_sym_BSLASHVolcite] = ACTIONS(6165), - [anon_sym_BSLASHpvolcite] = ACTIONS(6165), - [anon_sym_BSLASHPvolcite] = ACTIONS(6165), - [anon_sym_BSLASHfvolcite] = ACTIONS(6165), - [anon_sym_BSLASHftvolcite] = ACTIONS(6165), - [anon_sym_BSLASHsvolcite] = ACTIONS(6165), - [anon_sym_BSLASHSvolcite] = ACTIONS(6165), - [anon_sym_BSLASHtvolcite] = ACTIONS(6165), - [anon_sym_BSLASHTvolcite] = ACTIONS(6165), - [anon_sym_BSLASHavolcite] = ACTIONS(6165), - [anon_sym_BSLASHAvolcite] = ACTIONS(6165), - [anon_sym_BSLASHnotecite] = ACTIONS(6165), - [anon_sym_BSLASHNotecite] = ACTIONS(6165), - [anon_sym_BSLASHpnotecite] = ACTIONS(6165), - [anon_sym_BSLASHPnotecite] = ACTIONS(6165), - [anon_sym_BSLASHfnotecite] = ACTIONS(6165), - [anon_sym_BSLASHlabel] = ACTIONS(6165), - [anon_sym_BSLASHref] = ACTIONS(6165), - [anon_sym_BSLASHeqref] = ACTIONS(6165), - [anon_sym_BSLASHvref] = ACTIONS(6165), - [anon_sym_BSLASHVref] = ACTIONS(6165), - [anon_sym_BSLASHautoref] = ACTIONS(6165), - [anon_sym_BSLASHpageref] = ACTIONS(6165), - [anon_sym_BSLASHcref] = ACTIONS(6165), - [anon_sym_BSLASHCref] = ACTIONS(6165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnameCref] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHlabelcref] = ACTIONS(6165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCrefrange] = ACTIONS(6165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnewlabel] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6167), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHdef] = ACTIONS(6165), - [anon_sym_BSLASHlet] = ACTIONS(6165), - [anon_sym_BSLASHleft] = ACTIONS(6165), - [anon_sym_BSLASHbig] = ACTIONS(6165), - [anon_sym_BSLASHBig] = ACTIONS(6165), - [anon_sym_BSLASHbigg] = ACTIONS(6165), - [anon_sym_BSLASHBigg] = ACTIONS(6165), - [anon_sym_BSLASHbigl] = ACTIONS(6165), - [anon_sym_BSLASHBigl] = ACTIONS(6165), - [anon_sym_BSLASHbiggl] = ACTIONS(6165), - [anon_sym_BSLASHBiggl] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6165), - [anon_sym_BSLASHgls] = ACTIONS(6165), - [anon_sym_BSLASHGls] = ACTIONS(6165), - [anon_sym_BSLASHGLS] = ACTIONS(6165), - [anon_sym_BSLASHglspl] = ACTIONS(6165), - [anon_sym_BSLASHGlspl] = ACTIONS(6165), - [anon_sym_BSLASHGLSpl] = ACTIONS(6165), - [anon_sym_BSLASHglsdisp] = ACTIONS(6165), - [anon_sym_BSLASHglslink] = ACTIONS(6165), - [anon_sym_BSLASHglstext] = ACTIONS(6165), - [anon_sym_BSLASHGlstext] = ACTIONS(6165), - [anon_sym_BSLASHGLStext] = ACTIONS(6165), - [anon_sym_BSLASHglsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6165), - [anon_sym_BSLASHglsplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSplural] = ACTIONS(6165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHglsname] = ACTIONS(6165), - [anon_sym_BSLASHGlsname] = ACTIONS(6165), - [anon_sym_BSLASHGLSname] = ACTIONS(6165), - [anon_sym_BSLASHglssymbol] = ACTIONS(6165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6165), - [anon_sym_BSLASHglsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6165), - [anon_sym_BSLASHglsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6165), - [anon_sym_BSLASHglsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6165), - [anon_sym_BSLASHglsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6165), - [anon_sym_BSLASHglsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6165), - [anon_sym_BSLASHnewacronym] = ACTIONS(6165), - [anon_sym_BSLASHacrshort] = ACTIONS(6165), - [anon_sym_BSLASHAcrshort] = ACTIONS(6165), - [anon_sym_BSLASHACRshort] = ACTIONS(6165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6165), - [anon_sym_BSLASHacrlong] = ACTIONS(6165), - [anon_sym_BSLASHAcrlong] = ACTIONS(6165), - [anon_sym_BSLASHACRlong] = ACTIONS(6165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6165), - [anon_sym_BSLASHacrfull] = ACTIONS(6165), - [anon_sym_BSLASHAcrfull] = ACTIONS(6165), - [anon_sym_BSLASHACRfull] = ACTIONS(6165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6165), - [anon_sym_BSLASHacs] = ACTIONS(6165), - [anon_sym_BSLASHAcs] = ACTIONS(6165), - [anon_sym_BSLASHacsp] = ACTIONS(6165), - [anon_sym_BSLASHAcsp] = ACTIONS(6165), - [anon_sym_BSLASHacl] = ACTIONS(6165), - [anon_sym_BSLASHAcl] = ACTIONS(6165), - [anon_sym_BSLASHaclp] = ACTIONS(6165), - [anon_sym_BSLASHAclp] = ACTIONS(6165), - [anon_sym_BSLASHacf] = ACTIONS(6165), - [anon_sym_BSLASHAcf] = ACTIONS(6165), - [anon_sym_BSLASHacfp] = ACTIONS(6165), - [anon_sym_BSLASHAcfp] = ACTIONS(6165), - [anon_sym_BSLASHac] = ACTIONS(6165), - [anon_sym_BSLASHAc] = ACTIONS(6165), - [anon_sym_BSLASHacp] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6165), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6165), - [anon_sym_BSLASHcolor] = ACTIONS(6165), - [anon_sym_BSLASHcolorbox] = ACTIONS(6165), - [anon_sym_BSLASHtextcolor] = ACTIONS(6165), - [anon_sym_BSLASHpagecolor] = ACTIONS(6165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6165), - [anon_sym_BSLASHtext] = ACTIONS(6165), - [anon_sym_BSLASHintertext] = ACTIONS(6165), - [anon_sym_shortintertext] = ACTIONS(6165), - }, - [1696] = { - [sym_command_name] = ACTIONS(6025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6025), - [anon_sym_LBRACK] = ACTIONS(6027), - [anon_sym_RBRACK] = ACTIONS(6027), - [anon_sym_COMMA] = ACTIONS(6027), - [anon_sym_EQ] = ACTIONS(6027), - [anon_sym_LPAREN] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_LBRACE] = ACTIONS(6027), - [anon_sym_RBRACE] = ACTIONS(6027), - [sym_word] = ACTIONS(6025), - [sym_placeholder] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6025), - [anon_sym_GT] = ACTIONS(6025), - [anon_sym_BANG] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_SQUOTE] = ACTIONS(6025), - [anon_sym__] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), - [anon_sym_BSLASHtitle] = ACTIONS(6025), - [anon_sym_BSLASHauthor] = ACTIONS(6025), - [anon_sym_BSLASHusepackage] = ACTIONS(6025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), - [anon_sym_BSLASHinclude] = ACTIONS(6025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), - [anon_sym_BSLASHinput] = ACTIONS(6025), - [anon_sym_BSLASHsubfile] = ACTIONS(6025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), - [anon_sym_BSLASHbibliography] = ACTIONS(6025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), - [anon_sym_BSLASHincludesvg] = ACTIONS(6025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), - [anon_sym_BSLASHimport] = ACTIONS(6025), - [anon_sym_BSLASHsubimport] = ACTIONS(6025), - [anon_sym_BSLASHinputfrom] = ACTIONS(6025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), - [anon_sym_BSLASHincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHcaption] = ACTIONS(6025), - [anon_sym_BSLASHcite] = ACTIONS(6025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCite] = ACTIONS(6025), - [anon_sym_BSLASHnocite] = ACTIONS(6025), - [anon_sym_BSLASHcitet] = ACTIONS(6025), - [anon_sym_BSLASHcitep] = ACTIONS(6025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteauthor] = ACTIONS(6025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitetitle] = ACTIONS(6025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteyear] = ACTIONS(6025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitedate] = ACTIONS(6025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteurl] = ACTIONS(6025), - [anon_sym_BSLASHfullcite] = ACTIONS(6025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), - [anon_sym_BSLASHcitealt] = ACTIONS(6025), - [anon_sym_BSLASHcitealp] = ACTIONS(6025), - [anon_sym_BSLASHcitetext] = ACTIONS(6025), - [anon_sym_BSLASHparencite] = ACTIONS(6025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHParencite] = ACTIONS(6025), - [anon_sym_BSLASHfootcite] = ACTIONS(6025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), - [anon_sym_BSLASHtextcite] = ACTIONS(6025), - [anon_sym_BSLASHTextcite] = ACTIONS(6025), - [anon_sym_BSLASHsmartcite] = ACTIONS(6025), - [anon_sym_BSLASHSmartcite] = ACTIONS(6025), - [anon_sym_BSLASHsupercite] = ACTIONS(6025), - [anon_sym_BSLASHautocite] = ACTIONS(6025), - [anon_sym_BSLASHAutocite] = ACTIONS(6025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHvolcite] = ACTIONS(6025), - [anon_sym_BSLASHVolcite] = ACTIONS(6025), - [anon_sym_BSLASHpvolcite] = ACTIONS(6025), - [anon_sym_BSLASHPvolcite] = ACTIONS(6025), - [anon_sym_BSLASHfvolcite] = ACTIONS(6025), - [anon_sym_BSLASHftvolcite] = ACTIONS(6025), - [anon_sym_BSLASHsvolcite] = ACTIONS(6025), - [anon_sym_BSLASHSvolcite] = ACTIONS(6025), - [anon_sym_BSLASHtvolcite] = ACTIONS(6025), - [anon_sym_BSLASHTvolcite] = ACTIONS(6025), - [anon_sym_BSLASHavolcite] = ACTIONS(6025), - [anon_sym_BSLASHAvolcite] = ACTIONS(6025), - [anon_sym_BSLASHnotecite] = ACTIONS(6025), - [anon_sym_BSLASHNotecite] = ACTIONS(6025), - [anon_sym_BSLASHpnotecite] = ACTIONS(6025), - [anon_sym_BSLASHPnotecite] = ACTIONS(6025), - [anon_sym_BSLASHfnotecite] = ACTIONS(6025), - [anon_sym_BSLASHlabel] = ACTIONS(6025), - [anon_sym_BSLASHref] = ACTIONS(6025), - [anon_sym_BSLASHeqref] = ACTIONS(6025), - [anon_sym_BSLASHvref] = ACTIONS(6025), - [anon_sym_BSLASHVref] = ACTIONS(6025), - [anon_sym_BSLASHautoref] = ACTIONS(6025), - [anon_sym_BSLASHpageref] = ACTIONS(6025), - [anon_sym_BSLASHcref] = ACTIONS(6025), - [anon_sym_BSLASHCref] = ACTIONS(6025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnameCref] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHlabelcref] = ACTIONS(6025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCrefrange] = ACTIONS(6025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnewlabel] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHdef] = ACTIONS(6025), - [anon_sym_BSLASHlet] = ACTIONS(6025), - [anon_sym_BSLASHleft] = ACTIONS(6025), - [anon_sym_BSLASHbig] = ACTIONS(6025), - [anon_sym_BSLASHBig] = ACTIONS(6025), - [anon_sym_BSLASHbigg] = ACTIONS(6025), - [anon_sym_BSLASHBigg] = ACTIONS(6025), - [anon_sym_BSLASHbigl] = ACTIONS(6025), - [anon_sym_BSLASHBigl] = ACTIONS(6025), - [anon_sym_BSLASHbiggl] = ACTIONS(6025), - [anon_sym_BSLASHBiggl] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), - [anon_sym_BSLASHgls] = ACTIONS(6025), - [anon_sym_BSLASHGls] = ACTIONS(6025), - [anon_sym_BSLASHGLS] = ACTIONS(6025), - [anon_sym_BSLASHglspl] = ACTIONS(6025), - [anon_sym_BSLASHGlspl] = ACTIONS(6025), - [anon_sym_BSLASHGLSpl] = ACTIONS(6025), - [anon_sym_BSLASHglsdisp] = ACTIONS(6025), - [anon_sym_BSLASHglslink] = ACTIONS(6025), - [anon_sym_BSLASHglstext] = ACTIONS(6025), - [anon_sym_BSLASHGlstext] = ACTIONS(6025), - [anon_sym_BSLASHGLStext] = ACTIONS(6025), - [anon_sym_BSLASHglsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), - [anon_sym_BSLASHglsplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSplural] = ACTIONS(6025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHglsname] = ACTIONS(6025), - [anon_sym_BSLASHGlsname] = ACTIONS(6025), - [anon_sym_BSLASHGLSname] = ACTIONS(6025), - [anon_sym_BSLASHglssymbol] = ACTIONS(6025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), - [anon_sym_BSLASHglsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), - [anon_sym_BSLASHglsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), - [anon_sym_BSLASHglsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), - [anon_sym_BSLASHglsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), - [anon_sym_BSLASHglsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), - [anon_sym_BSLASHnewacronym] = ACTIONS(6025), - [anon_sym_BSLASHacrshort] = ACTIONS(6025), - [anon_sym_BSLASHAcrshort] = ACTIONS(6025), - [anon_sym_BSLASHACRshort] = ACTIONS(6025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), - [anon_sym_BSLASHacrlong] = ACTIONS(6025), - [anon_sym_BSLASHAcrlong] = ACTIONS(6025), - [anon_sym_BSLASHACRlong] = ACTIONS(6025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), - [anon_sym_BSLASHacrfull] = ACTIONS(6025), - [anon_sym_BSLASHAcrfull] = ACTIONS(6025), - [anon_sym_BSLASHACRfull] = ACTIONS(6025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), - [anon_sym_BSLASHacs] = ACTIONS(6025), - [anon_sym_BSLASHAcs] = ACTIONS(6025), - [anon_sym_BSLASHacsp] = ACTIONS(6025), - [anon_sym_BSLASHAcsp] = ACTIONS(6025), - [anon_sym_BSLASHacl] = ACTIONS(6025), - [anon_sym_BSLASHAcl] = ACTIONS(6025), - [anon_sym_BSLASHaclp] = ACTIONS(6025), - [anon_sym_BSLASHAclp] = ACTIONS(6025), - [anon_sym_BSLASHacf] = ACTIONS(6025), - [anon_sym_BSLASHAcf] = ACTIONS(6025), - [anon_sym_BSLASHacfp] = ACTIONS(6025), - [anon_sym_BSLASHAcfp] = ACTIONS(6025), - [anon_sym_BSLASHac] = ACTIONS(6025), - [anon_sym_BSLASHAc] = ACTIONS(6025), - [anon_sym_BSLASHacp] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), - [anon_sym_BSLASHcolor] = ACTIONS(6025), - [anon_sym_BSLASHcolorbox] = ACTIONS(6025), - [anon_sym_BSLASHtextcolor] = ACTIONS(6025), - [anon_sym_BSLASHpagecolor] = ACTIONS(6025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), - [anon_sym_BSLASHtext] = ACTIONS(6025), - [anon_sym_BSLASHintertext] = ACTIONS(6025), - [anon_sym_shortintertext] = ACTIONS(6025), - }, - [1697] = { - [sym_command_name] = ACTIONS(6041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6041), - [anon_sym_LBRACK] = ACTIONS(6043), - [anon_sym_RBRACK] = ACTIONS(6043), - [anon_sym_COMMA] = ACTIONS(6043), - [anon_sym_EQ] = ACTIONS(6043), - [anon_sym_LPAREN] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_LBRACE] = ACTIONS(6043), - [anon_sym_RBRACE] = ACTIONS(6043), - [sym_word] = ACTIONS(6041), - [sym_placeholder] = ACTIONS(6043), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6043), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6041), - [anon_sym_GT] = ACTIONS(6041), - [anon_sym_BANG] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_SQUOTE] = ACTIONS(6041), - [anon_sym__] = ACTIONS(6043), - [anon_sym_CARET] = ACTIONS(6043), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6043), - [anon_sym_BSLASHtitle] = ACTIONS(6041), - [anon_sym_BSLASHauthor] = ACTIONS(6041), - [anon_sym_BSLASHusepackage] = ACTIONS(6041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6041), - [anon_sym_BSLASHinclude] = ACTIONS(6041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6041), - [anon_sym_BSLASHinput] = ACTIONS(6041), - [anon_sym_BSLASHsubfile] = ACTIONS(6041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6041), - [anon_sym_BSLASHbibliography] = ACTIONS(6041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6041), - [anon_sym_BSLASHincludesvg] = ACTIONS(6041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6041), - [anon_sym_BSLASHimport] = ACTIONS(6041), - [anon_sym_BSLASHsubimport] = ACTIONS(6041), - [anon_sym_BSLASHinputfrom] = ACTIONS(6041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6041), - [anon_sym_BSLASHincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHcaption] = ACTIONS(6041), - [anon_sym_BSLASHcite] = ACTIONS(6041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCite] = ACTIONS(6041), - [anon_sym_BSLASHnocite] = ACTIONS(6041), - [anon_sym_BSLASHcitet] = ACTIONS(6041), - [anon_sym_BSLASHcitep] = ACTIONS(6041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteauthor] = ACTIONS(6041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitetitle] = ACTIONS(6041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteyear] = ACTIONS(6041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitedate] = ACTIONS(6041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteurl] = ACTIONS(6041), - [anon_sym_BSLASHfullcite] = ACTIONS(6041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6041), - [anon_sym_BSLASHcitealt] = ACTIONS(6041), - [anon_sym_BSLASHcitealp] = ACTIONS(6041), - [anon_sym_BSLASHcitetext] = ACTIONS(6041), - [anon_sym_BSLASHparencite] = ACTIONS(6041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHParencite] = ACTIONS(6041), - [anon_sym_BSLASHfootcite] = ACTIONS(6041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6041), - [anon_sym_BSLASHtextcite] = ACTIONS(6041), - [anon_sym_BSLASHTextcite] = ACTIONS(6041), - [anon_sym_BSLASHsmartcite] = ACTIONS(6041), - [anon_sym_BSLASHSmartcite] = ACTIONS(6041), - [anon_sym_BSLASHsupercite] = ACTIONS(6041), - [anon_sym_BSLASHautocite] = ACTIONS(6041), - [anon_sym_BSLASHAutocite] = ACTIONS(6041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHvolcite] = ACTIONS(6041), - [anon_sym_BSLASHVolcite] = ACTIONS(6041), - [anon_sym_BSLASHpvolcite] = ACTIONS(6041), - [anon_sym_BSLASHPvolcite] = ACTIONS(6041), - [anon_sym_BSLASHfvolcite] = ACTIONS(6041), - [anon_sym_BSLASHftvolcite] = ACTIONS(6041), - [anon_sym_BSLASHsvolcite] = ACTIONS(6041), - [anon_sym_BSLASHSvolcite] = ACTIONS(6041), - [anon_sym_BSLASHtvolcite] = ACTIONS(6041), - [anon_sym_BSLASHTvolcite] = ACTIONS(6041), - [anon_sym_BSLASHavolcite] = ACTIONS(6041), - [anon_sym_BSLASHAvolcite] = ACTIONS(6041), - [anon_sym_BSLASHnotecite] = ACTIONS(6041), - [anon_sym_BSLASHNotecite] = ACTIONS(6041), - [anon_sym_BSLASHpnotecite] = ACTIONS(6041), - [anon_sym_BSLASHPnotecite] = ACTIONS(6041), - [anon_sym_BSLASHfnotecite] = ACTIONS(6041), - [anon_sym_BSLASHlabel] = ACTIONS(6041), - [anon_sym_BSLASHref] = ACTIONS(6041), - [anon_sym_BSLASHeqref] = ACTIONS(6041), - [anon_sym_BSLASHvref] = ACTIONS(6041), - [anon_sym_BSLASHVref] = ACTIONS(6041), - [anon_sym_BSLASHautoref] = ACTIONS(6041), - [anon_sym_BSLASHpageref] = ACTIONS(6041), - [anon_sym_BSLASHcref] = ACTIONS(6041), - [anon_sym_BSLASHCref] = ACTIONS(6041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnameCref] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHlabelcref] = ACTIONS(6041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCrefrange] = ACTIONS(6041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnewlabel] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6043), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHdef] = ACTIONS(6041), - [anon_sym_BSLASHlet] = ACTIONS(6041), - [anon_sym_BSLASHleft] = ACTIONS(6041), - [anon_sym_BSLASHbig] = ACTIONS(6041), - [anon_sym_BSLASHBig] = ACTIONS(6041), - [anon_sym_BSLASHbigg] = ACTIONS(6041), - [anon_sym_BSLASHBigg] = ACTIONS(6041), - [anon_sym_BSLASHbigl] = ACTIONS(6041), - [anon_sym_BSLASHBigl] = ACTIONS(6041), - [anon_sym_BSLASHbiggl] = ACTIONS(6041), - [anon_sym_BSLASHBiggl] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6041), - [anon_sym_BSLASHgls] = ACTIONS(6041), - [anon_sym_BSLASHGls] = ACTIONS(6041), - [anon_sym_BSLASHGLS] = ACTIONS(6041), - [anon_sym_BSLASHglspl] = ACTIONS(6041), - [anon_sym_BSLASHGlspl] = ACTIONS(6041), - [anon_sym_BSLASHGLSpl] = ACTIONS(6041), - [anon_sym_BSLASHglsdisp] = ACTIONS(6041), - [anon_sym_BSLASHglslink] = ACTIONS(6041), - [anon_sym_BSLASHglstext] = ACTIONS(6041), - [anon_sym_BSLASHGlstext] = ACTIONS(6041), - [anon_sym_BSLASHGLStext] = ACTIONS(6041), - [anon_sym_BSLASHglsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6041), - [anon_sym_BSLASHglsplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSplural] = ACTIONS(6041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHglsname] = ACTIONS(6041), - [anon_sym_BSLASHGlsname] = ACTIONS(6041), - [anon_sym_BSLASHGLSname] = ACTIONS(6041), - [anon_sym_BSLASHglssymbol] = ACTIONS(6041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6041), - [anon_sym_BSLASHglsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6041), - [anon_sym_BSLASHglsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6041), - [anon_sym_BSLASHglsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6041), - [anon_sym_BSLASHglsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6041), - [anon_sym_BSLASHglsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6041), - [anon_sym_BSLASHnewacronym] = ACTIONS(6041), - [anon_sym_BSLASHacrshort] = ACTIONS(6041), - [anon_sym_BSLASHAcrshort] = ACTIONS(6041), - [anon_sym_BSLASHACRshort] = ACTIONS(6041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6041), - [anon_sym_BSLASHacrlong] = ACTIONS(6041), - [anon_sym_BSLASHAcrlong] = ACTIONS(6041), - [anon_sym_BSLASHACRlong] = ACTIONS(6041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6041), - [anon_sym_BSLASHacrfull] = ACTIONS(6041), - [anon_sym_BSLASHAcrfull] = ACTIONS(6041), - [anon_sym_BSLASHACRfull] = ACTIONS(6041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6041), - [anon_sym_BSLASHacs] = ACTIONS(6041), - [anon_sym_BSLASHAcs] = ACTIONS(6041), - [anon_sym_BSLASHacsp] = ACTIONS(6041), - [anon_sym_BSLASHAcsp] = ACTIONS(6041), - [anon_sym_BSLASHacl] = ACTIONS(6041), - [anon_sym_BSLASHAcl] = ACTIONS(6041), - [anon_sym_BSLASHaclp] = ACTIONS(6041), - [anon_sym_BSLASHAclp] = ACTIONS(6041), - [anon_sym_BSLASHacf] = ACTIONS(6041), - [anon_sym_BSLASHAcf] = ACTIONS(6041), - [anon_sym_BSLASHacfp] = ACTIONS(6041), - [anon_sym_BSLASHAcfp] = ACTIONS(6041), - [anon_sym_BSLASHac] = ACTIONS(6041), - [anon_sym_BSLASHAc] = ACTIONS(6041), - [anon_sym_BSLASHacp] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6041), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6041), - [anon_sym_BSLASHcolor] = ACTIONS(6041), - [anon_sym_BSLASHcolorbox] = ACTIONS(6041), - [anon_sym_BSLASHtextcolor] = ACTIONS(6041), - [anon_sym_BSLASHpagecolor] = ACTIONS(6041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6041), - [anon_sym_BSLASHtext] = ACTIONS(6041), - [anon_sym_BSLASHintertext] = ACTIONS(6041), - [anon_sym_shortintertext] = ACTIONS(6041), - }, - [1698] = { - [sym_command_name] = ACTIONS(6037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6037), - [anon_sym_LBRACK] = ACTIONS(6039), - [anon_sym_RBRACK] = ACTIONS(6039), - [anon_sym_COMMA] = ACTIONS(6039), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_LPAREN] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_LBRACE] = ACTIONS(6039), - [anon_sym_RBRACE] = ACTIONS(6039), - [sym_word] = ACTIONS(6037), - [sym_placeholder] = ACTIONS(6039), - [anon_sym_PLUS] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [anon_sym_STAR] = ACTIONS(6039), - [anon_sym_SLASH] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6037), - [anon_sym_GT] = ACTIONS(6037), - [anon_sym_BANG] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_COLON] = ACTIONS(6037), - [anon_sym_SQUOTE] = ACTIONS(6037), - [anon_sym__] = ACTIONS(6039), - [anon_sym_CARET] = ACTIONS(6039), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6039), - [anon_sym_BSLASHtitle] = ACTIONS(6037), - [anon_sym_BSLASHauthor] = ACTIONS(6037), - [anon_sym_BSLASHusepackage] = ACTIONS(6037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6037), - [anon_sym_BSLASHinclude] = ACTIONS(6037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6037), - [anon_sym_BSLASHinput] = ACTIONS(6037), - [anon_sym_BSLASHsubfile] = ACTIONS(6037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6037), - [anon_sym_BSLASHbibliography] = ACTIONS(6037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6037), - [anon_sym_BSLASHincludesvg] = ACTIONS(6037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6037), - [anon_sym_BSLASHimport] = ACTIONS(6037), - [anon_sym_BSLASHsubimport] = ACTIONS(6037), - [anon_sym_BSLASHinputfrom] = ACTIONS(6037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6037), - [anon_sym_BSLASHincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHcaption] = ACTIONS(6037), - [anon_sym_BSLASHcite] = ACTIONS(6037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCite] = ACTIONS(6037), - [anon_sym_BSLASHnocite] = ACTIONS(6037), - [anon_sym_BSLASHcitet] = ACTIONS(6037), - [anon_sym_BSLASHcitep] = ACTIONS(6037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteauthor] = ACTIONS(6037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitetitle] = ACTIONS(6037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteyear] = ACTIONS(6037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitedate] = ACTIONS(6037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteurl] = ACTIONS(6037), - [anon_sym_BSLASHfullcite] = ACTIONS(6037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6037), - [anon_sym_BSLASHcitealt] = ACTIONS(6037), - [anon_sym_BSLASHcitealp] = ACTIONS(6037), - [anon_sym_BSLASHcitetext] = ACTIONS(6037), - [anon_sym_BSLASHparencite] = ACTIONS(6037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHParencite] = ACTIONS(6037), - [anon_sym_BSLASHfootcite] = ACTIONS(6037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6037), - [anon_sym_BSLASHtextcite] = ACTIONS(6037), - [anon_sym_BSLASHTextcite] = ACTIONS(6037), - [anon_sym_BSLASHsmartcite] = ACTIONS(6037), - [anon_sym_BSLASHSmartcite] = ACTIONS(6037), - [anon_sym_BSLASHsupercite] = ACTIONS(6037), - [anon_sym_BSLASHautocite] = ACTIONS(6037), - [anon_sym_BSLASHAutocite] = ACTIONS(6037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHvolcite] = ACTIONS(6037), - [anon_sym_BSLASHVolcite] = ACTIONS(6037), - [anon_sym_BSLASHpvolcite] = ACTIONS(6037), - [anon_sym_BSLASHPvolcite] = ACTIONS(6037), - [anon_sym_BSLASHfvolcite] = ACTIONS(6037), - [anon_sym_BSLASHftvolcite] = ACTIONS(6037), - [anon_sym_BSLASHsvolcite] = ACTIONS(6037), - [anon_sym_BSLASHSvolcite] = ACTIONS(6037), - [anon_sym_BSLASHtvolcite] = ACTIONS(6037), - [anon_sym_BSLASHTvolcite] = ACTIONS(6037), - [anon_sym_BSLASHavolcite] = ACTIONS(6037), - [anon_sym_BSLASHAvolcite] = ACTIONS(6037), - [anon_sym_BSLASHnotecite] = ACTIONS(6037), - [anon_sym_BSLASHNotecite] = ACTIONS(6037), - [anon_sym_BSLASHpnotecite] = ACTIONS(6037), - [anon_sym_BSLASHPnotecite] = ACTIONS(6037), - [anon_sym_BSLASHfnotecite] = ACTIONS(6037), - [anon_sym_BSLASHlabel] = ACTIONS(6037), - [anon_sym_BSLASHref] = ACTIONS(6037), - [anon_sym_BSLASHeqref] = ACTIONS(6037), - [anon_sym_BSLASHvref] = ACTIONS(6037), - [anon_sym_BSLASHVref] = ACTIONS(6037), - [anon_sym_BSLASHautoref] = ACTIONS(6037), - [anon_sym_BSLASHpageref] = ACTIONS(6037), - [anon_sym_BSLASHcref] = ACTIONS(6037), - [anon_sym_BSLASHCref] = ACTIONS(6037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnameCref] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHlabelcref] = ACTIONS(6037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCrefrange] = ACTIONS(6037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnewlabel] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6039), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHdef] = ACTIONS(6037), - [anon_sym_BSLASHlet] = ACTIONS(6037), - [anon_sym_BSLASHleft] = ACTIONS(6037), - [anon_sym_BSLASHbig] = ACTIONS(6037), - [anon_sym_BSLASHBig] = ACTIONS(6037), - [anon_sym_BSLASHbigg] = ACTIONS(6037), - [anon_sym_BSLASHBigg] = ACTIONS(6037), - [anon_sym_BSLASHbigl] = ACTIONS(6037), - [anon_sym_BSLASHBigl] = ACTIONS(6037), - [anon_sym_BSLASHbiggl] = ACTIONS(6037), - [anon_sym_BSLASHBiggl] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6037), - [anon_sym_BSLASHgls] = ACTIONS(6037), - [anon_sym_BSLASHGls] = ACTIONS(6037), - [anon_sym_BSLASHGLS] = ACTIONS(6037), - [anon_sym_BSLASHglspl] = ACTIONS(6037), - [anon_sym_BSLASHGlspl] = ACTIONS(6037), - [anon_sym_BSLASHGLSpl] = ACTIONS(6037), - [anon_sym_BSLASHglsdisp] = ACTIONS(6037), - [anon_sym_BSLASHglslink] = ACTIONS(6037), - [anon_sym_BSLASHglstext] = ACTIONS(6037), - [anon_sym_BSLASHGlstext] = ACTIONS(6037), - [anon_sym_BSLASHGLStext] = ACTIONS(6037), - [anon_sym_BSLASHglsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6037), - [anon_sym_BSLASHglsplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSplural] = ACTIONS(6037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHglsname] = ACTIONS(6037), - [anon_sym_BSLASHGlsname] = ACTIONS(6037), - [anon_sym_BSLASHGLSname] = ACTIONS(6037), - [anon_sym_BSLASHglssymbol] = ACTIONS(6037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6037), - [anon_sym_BSLASHglsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6037), - [anon_sym_BSLASHglsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6037), - [anon_sym_BSLASHglsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6037), - [anon_sym_BSLASHglsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6037), - [anon_sym_BSLASHglsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6037), - [anon_sym_BSLASHnewacronym] = ACTIONS(6037), - [anon_sym_BSLASHacrshort] = ACTIONS(6037), - [anon_sym_BSLASHAcrshort] = ACTIONS(6037), - [anon_sym_BSLASHACRshort] = ACTIONS(6037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6037), - [anon_sym_BSLASHacrlong] = ACTIONS(6037), - [anon_sym_BSLASHAcrlong] = ACTIONS(6037), - [anon_sym_BSLASHACRlong] = ACTIONS(6037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6037), - [anon_sym_BSLASHacrfull] = ACTIONS(6037), - [anon_sym_BSLASHAcrfull] = ACTIONS(6037), - [anon_sym_BSLASHACRfull] = ACTIONS(6037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6037), - [anon_sym_BSLASHacs] = ACTIONS(6037), - [anon_sym_BSLASHAcs] = ACTIONS(6037), - [anon_sym_BSLASHacsp] = ACTIONS(6037), - [anon_sym_BSLASHAcsp] = ACTIONS(6037), - [anon_sym_BSLASHacl] = ACTIONS(6037), - [anon_sym_BSLASHAcl] = ACTIONS(6037), - [anon_sym_BSLASHaclp] = ACTIONS(6037), - [anon_sym_BSLASHAclp] = ACTIONS(6037), - [anon_sym_BSLASHacf] = ACTIONS(6037), - [anon_sym_BSLASHAcf] = ACTIONS(6037), - [anon_sym_BSLASHacfp] = ACTIONS(6037), - [anon_sym_BSLASHAcfp] = ACTIONS(6037), - [anon_sym_BSLASHac] = ACTIONS(6037), - [anon_sym_BSLASHAc] = ACTIONS(6037), - [anon_sym_BSLASHacp] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6037), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6037), - [anon_sym_BSLASHcolor] = ACTIONS(6037), - [anon_sym_BSLASHcolorbox] = ACTIONS(6037), - [anon_sym_BSLASHtextcolor] = ACTIONS(6037), - [anon_sym_BSLASHpagecolor] = ACTIONS(6037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6037), - [anon_sym_BSLASHtext] = ACTIONS(6037), - [anon_sym_BSLASHintertext] = ACTIONS(6037), - [anon_sym_shortintertext] = ACTIONS(6037), - }, - [1699] = { - [sym_command_name] = ACTIONS(6161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_EQ] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_LBRACE] = ACTIONS(6163), - [anon_sym_RBRACE] = ACTIONS(6163), - [sym_word] = ACTIONS(6161), - [sym_placeholder] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6163), - [anon_sym_DASH] = ACTIONS(6163), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_COLON] = ACTIONS(6161), - [anon_sym_SQUOTE] = ACTIONS(6161), - [anon_sym__] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6163), - [anon_sym_DOLLAR] = ACTIONS(6161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6163), - [anon_sym_BSLASHtitle] = ACTIONS(6161), - [anon_sym_BSLASHauthor] = ACTIONS(6161), - [anon_sym_BSLASHusepackage] = ACTIONS(6161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6161), - [anon_sym_BSLASHinclude] = ACTIONS(6161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6161), - [anon_sym_BSLASHinput] = ACTIONS(6161), - [anon_sym_BSLASHsubfile] = ACTIONS(6161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6161), - [anon_sym_BSLASHbibliography] = ACTIONS(6161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6161), - [anon_sym_BSLASHincludesvg] = ACTIONS(6161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6161), - [anon_sym_BSLASHimport] = ACTIONS(6161), - [anon_sym_BSLASHsubimport] = ACTIONS(6161), - [anon_sym_BSLASHinputfrom] = ACTIONS(6161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6161), - [anon_sym_BSLASHincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHcaption] = ACTIONS(6161), - [anon_sym_BSLASHcite] = ACTIONS(6161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCite] = ACTIONS(6161), - [anon_sym_BSLASHnocite] = ACTIONS(6161), - [anon_sym_BSLASHcitet] = ACTIONS(6161), - [anon_sym_BSLASHcitep] = ACTIONS(6161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteauthor] = ACTIONS(6161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitetitle] = ACTIONS(6161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteyear] = ACTIONS(6161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitedate] = ACTIONS(6161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteurl] = ACTIONS(6161), - [anon_sym_BSLASHfullcite] = ACTIONS(6161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6161), - [anon_sym_BSLASHcitealt] = ACTIONS(6161), - [anon_sym_BSLASHcitealp] = ACTIONS(6161), - [anon_sym_BSLASHcitetext] = ACTIONS(6161), - [anon_sym_BSLASHparencite] = ACTIONS(6161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHParencite] = ACTIONS(6161), - [anon_sym_BSLASHfootcite] = ACTIONS(6161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6161), - [anon_sym_BSLASHtextcite] = ACTIONS(6161), - [anon_sym_BSLASHTextcite] = ACTIONS(6161), - [anon_sym_BSLASHsmartcite] = ACTIONS(6161), - [anon_sym_BSLASHSmartcite] = ACTIONS(6161), - [anon_sym_BSLASHsupercite] = ACTIONS(6161), - [anon_sym_BSLASHautocite] = ACTIONS(6161), - [anon_sym_BSLASHAutocite] = ACTIONS(6161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHvolcite] = ACTIONS(6161), - [anon_sym_BSLASHVolcite] = ACTIONS(6161), - [anon_sym_BSLASHpvolcite] = ACTIONS(6161), - [anon_sym_BSLASHPvolcite] = ACTIONS(6161), - [anon_sym_BSLASHfvolcite] = ACTIONS(6161), - [anon_sym_BSLASHftvolcite] = ACTIONS(6161), - [anon_sym_BSLASHsvolcite] = ACTIONS(6161), - [anon_sym_BSLASHSvolcite] = ACTIONS(6161), - [anon_sym_BSLASHtvolcite] = ACTIONS(6161), - [anon_sym_BSLASHTvolcite] = ACTIONS(6161), - [anon_sym_BSLASHavolcite] = ACTIONS(6161), - [anon_sym_BSLASHAvolcite] = ACTIONS(6161), - [anon_sym_BSLASHnotecite] = ACTIONS(6161), - [anon_sym_BSLASHNotecite] = ACTIONS(6161), - [anon_sym_BSLASHpnotecite] = ACTIONS(6161), - [anon_sym_BSLASHPnotecite] = ACTIONS(6161), - [anon_sym_BSLASHfnotecite] = ACTIONS(6161), - [anon_sym_BSLASHlabel] = ACTIONS(6161), - [anon_sym_BSLASHref] = ACTIONS(6161), - [anon_sym_BSLASHeqref] = ACTIONS(6161), - [anon_sym_BSLASHvref] = ACTIONS(6161), - [anon_sym_BSLASHVref] = ACTIONS(6161), - [anon_sym_BSLASHautoref] = ACTIONS(6161), - [anon_sym_BSLASHpageref] = ACTIONS(6161), - [anon_sym_BSLASHcref] = ACTIONS(6161), - [anon_sym_BSLASHCref] = ACTIONS(6161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnameCref] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHlabelcref] = ACTIONS(6161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCrefrange] = ACTIONS(6161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnewlabel] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6163), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHdef] = ACTIONS(6161), - [anon_sym_BSLASHlet] = ACTIONS(6161), - [anon_sym_BSLASHleft] = ACTIONS(6161), - [anon_sym_BSLASHbig] = ACTIONS(6161), - [anon_sym_BSLASHBig] = ACTIONS(6161), - [anon_sym_BSLASHbigg] = ACTIONS(6161), - [anon_sym_BSLASHBigg] = ACTIONS(6161), - [anon_sym_BSLASHbigl] = ACTIONS(6161), - [anon_sym_BSLASHBigl] = ACTIONS(6161), - [anon_sym_BSLASHbiggl] = ACTIONS(6161), - [anon_sym_BSLASHBiggl] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6161), - [anon_sym_BSLASHgls] = ACTIONS(6161), - [anon_sym_BSLASHGls] = ACTIONS(6161), - [anon_sym_BSLASHGLS] = ACTIONS(6161), - [anon_sym_BSLASHglspl] = ACTIONS(6161), - [anon_sym_BSLASHGlspl] = ACTIONS(6161), - [anon_sym_BSLASHGLSpl] = ACTIONS(6161), - [anon_sym_BSLASHglsdisp] = ACTIONS(6161), - [anon_sym_BSLASHglslink] = ACTIONS(6161), - [anon_sym_BSLASHglstext] = ACTIONS(6161), - [anon_sym_BSLASHGlstext] = ACTIONS(6161), - [anon_sym_BSLASHGLStext] = ACTIONS(6161), - [anon_sym_BSLASHglsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6161), - [anon_sym_BSLASHglsplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSplural] = ACTIONS(6161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHglsname] = ACTIONS(6161), - [anon_sym_BSLASHGlsname] = ACTIONS(6161), - [anon_sym_BSLASHGLSname] = ACTIONS(6161), - [anon_sym_BSLASHglssymbol] = ACTIONS(6161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6161), - [anon_sym_BSLASHglsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6161), - [anon_sym_BSLASHglsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6161), - [anon_sym_BSLASHglsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6161), - [anon_sym_BSLASHglsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6161), - [anon_sym_BSLASHglsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6161), - [anon_sym_BSLASHnewacronym] = ACTIONS(6161), - [anon_sym_BSLASHacrshort] = ACTIONS(6161), - [anon_sym_BSLASHAcrshort] = ACTIONS(6161), - [anon_sym_BSLASHACRshort] = ACTIONS(6161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6161), - [anon_sym_BSLASHacrlong] = ACTIONS(6161), - [anon_sym_BSLASHAcrlong] = ACTIONS(6161), - [anon_sym_BSLASHACRlong] = ACTIONS(6161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6161), - [anon_sym_BSLASHacrfull] = ACTIONS(6161), - [anon_sym_BSLASHAcrfull] = ACTIONS(6161), - [anon_sym_BSLASHACRfull] = ACTIONS(6161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6161), - [anon_sym_BSLASHacs] = ACTIONS(6161), - [anon_sym_BSLASHAcs] = ACTIONS(6161), - [anon_sym_BSLASHacsp] = ACTIONS(6161), - [anon_sym_BSLASHAcsp] = ACTIONS(6161), - [anon_sym_BSLASHacl] = ACTIONS(6161), - [anon_sym_BSLASHAcl] = ACTIONS(6161), - [anon_sym_BSLASHaclp] = ACTIONS(6161), - [anon_sym_BSLASHAclp] = ACTIONS(6161), - [anon_sym_BSLASHacf] = ACTIONS(6161), - [anon_sym_BSLASHAcf] = ACTIONS(6161), - [anon_sym_BSLASHacfp] = ACTIONS(6161), - [anon_sym_BSLASHAcfp] = ACTIONS(6161), - [anon_sym_BSLASHac] = ACTIONS(6161), - [anon_sym_BSLASHAc] = ACTIONS(6161), - [anon_sym_BSLASHacp] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6161), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6161), - [anon_sym_BSLASHcolor] = ACTIONS(6161), - [anon_sym_BSLASHcolorbox] = ACTIONS(6161), - [anon_sym_BSLASHtextcolor] = ACTIONS(6161), - [anon_sym_BSLASHpagecolor] = ACTIONS(6161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6161), - [anon_sym_BSLASHtext] = ACTIONS(6161), - [anon_sym_BSLASHintertext] = ACTIONS(6161), - [anon_sym_shortintertext] = ACTIONS(6161), - }, - [1700] = { - [sym_command_name] = ACTIONS(6033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6033), - [anon_sym_LBRACK] = ACTIONS(6035), - [anon_sym_RBRACK] = ACTIONS(6035), - [anon_sym_COMMA] = ACTIONS(6035), - [anon_sym_EQ] = ACTIONS(6035), - [anon_sym_LPAREN] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_LBRACE] = ACTIONS(6035), - [anon_sym_RBRACE] = ACTIONS(6035), - [sym_word] = ACTIONS(6033), - [sym_placeholder] = ACTIONS(6035), - [anon_sym_PLUS] = ACTIONS(6035), - [anon_sym_DASH] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6035), - [anon_sym_SLASH] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_COLON] = ACTIONS(6033), - [anon_sym_SQUOTE] = ACTIONS(6033), - [anon_sym__] = ACTIONS(6035), - [anon_sym_CARET] = ACTIONS(6035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6035), - [anon_sym_BSLASHtitle] = ACTIONS(6033), - [anon_sym_BSLASHauthor] = ACTIONS(6033), - [anon_sym_BSLASHusepackage] = ACTIONS(6033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), - [anon_sym_BSLASHinclude] = ACTIONS(6033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), - [anon_sym_BSLASHinput] = ACTIONS(6033), - [anon_sym_BSLASHsubfile] = ACTIONS(6033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), - [anon_sym_BSLASHbibliography] = ACTIONS(6033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), - [anon_sym_BSLASHincludesvg] = ACTIONS(6033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), - [anon_sym_BSLASHimport] = ACTIONS(6033), - [anon_sym_BSLASHsubimport] = ACTIONS(6033), - [anon_sym_BSLASHinputfrom] = ACTIONS(6033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), - [anon_sym_BSLASHincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHcaption] = ACTIONS(6033), - [anon_sym_BSLASHcite] = ACTIONS(6033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCite] = ACTIONS(6033), - [anon_sym_BSLASHnocite] = ACTIONS(6033), - [anon_sym_BSLASHcitet] = ACTIONS(6033), - [anon_sym_BSLASHcitep] = ACTIONS(6033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteauthor] = ACTIONS(6033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitetitle] = ACTIONS(6033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteyear] = ACTIONS(6033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitedate] = ACTIONS(6033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteurl] = ACTIONS(6033), - [anon_sym_BSLASHfullcite] = ACTIONS(6033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), - [anon_sym_BSLASHcitealt] = ACTIONS(6033), - [anon_sym_BSLASHcitealp] = ACTIONS(6033), - [anon_sym_BSLASHcitetext] = ACTIONS(6033), - [anon_sym_BSLASHparencite] = ACTIONS(6033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHParencite] = ACTIONS(6033), - [anon_sym_BSLASHfootcite] = ACTIONS(6033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), - [anon_sym_BSLASHtextcite] = ACTIONS(6033), - [anon_sym_BSLASHTextcite] = ACTIONS(6033), - [anon_sym_BSLASHsmartcite] = ACTIONS(6033), - [anon_sym_BSLASHSmartcite] = ACTIONS(6033), - [anon_sym_BSLASHsupercite] = ACTIONS(6033), - [anon_sym_BSLASHautocite] = ACTIONS(6033), - [anon_sym_BSLASHAutocite] = ACTIONS(6033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHvolcite] = ACTIONS(6033), - [anon_sym_BSLASHVolcite] = ACTIONS(6033), - [anon_sym_BSLASHpvolcite] = ACTIONS(6033), - [anon_sym_BSLASHPvolcite] = ACTIONS(6033), - [anon_sym_BSLASHfvolcite] = ACTIONS(6033), - [anon_sym_BSLASHftvolcite] = ACTIONS(6033), - [anon_sym_BSLASHsvolcite] = ACTIONS(6033), - [anon_sym_BSLASHSvolcite] = ACTIONS(6033), - [anon_sym_BSLASHtvolcite] = ACTIONS(6033), - [anon_sym_BSLASHTvolcite] = ACTIONS(6033), - [anon_sym_BSLASHavolcite] = ACTIONS(6033), - [anon_sym_BSLASHAvolcite] = ACTIONS(6033), - [anon_sym_BSLASHnotecite] = ACTIONS(6033), - [anon_sym_BSLASHNotecite] = ACTIONS(6033), - [anon_sym_BSLASHpnotecite] = ACTIONS(6033), - [anon_sym_BSLASHPnotecite] = ACTIONS(6033), - [anon_sym_BSLASHfnotecite] = ACTIONS(6033), - [anon_sym_BSLASHlabel] = ACTIONS(6033), - [anon_sym_BSLASHref] = ACTIONS(6033), - [anon_sym_BSLASHeqref] = ACTIONS(6033), - [anon_sym_BSLASHvref] = ACTIONS(6033), - [anon_sym_BSLASHVref] = ACTIONS(6033), - [anon_sym_BSLASHautoref] = ACTIONS(6033), - [anon_sym_BSLASHpageref] = ACTIONS(6033), - [anon_sym_BSLASHcref] = ACTIONS(6033), - [anon_sym_BSLASHCref] = ACTIONS(6033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnameCref] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHlabelcref] = ACTIONS(6033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCrefrange] = ACTIONS(6033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnewlabel] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6035), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHdef] = ACTIONS(6033), - [anon_sym_BSLASHlet] = ACTIONS(6033), - [anon_sym_BSLASHleft] = ACTIONS(6033), - [anon_sym_BSLASHbig] = ACTIONS(6033), - [anon_sym_BSLASHBig] = ACTIONS(6033), - [anon_sym_BSLASHbigg] = ACTIONS(6033), - [anon_sym_BSLASHBigg] = ACTIONS(6033), - [anon_sym_BSLASHbigl] = ACTIONS(6033), - [anon_sym_BSLASHBigl] = ACTIONS(6033), - [anon_sym_BSLASHbiggl] = ACTIONS(6033), - [anon_sym_BSLASHBiggl] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), - [anon_sym_BSLASHgls] = ACTIONS(6033), - [anon_sym_BSLASHGls] = ACTIONS(6033), - [anon_sym_BSLASHGLS] = ACTIONS(6033), - [anon_sym_BSLASHglspl] = ACTIONS(6033), - [anon_sym_BSLASHGlspl] = ACTIONS(6033), - [anon_sym_BSLASHGLSpl] = ACTIONS(6033), - [anon_sym_BSLASHglsdisp] = ACTIONS(6033), - [anon_sym_BSLASHglslink] = ACTIONS(6033), - [anon_sym_BSLASHglstext] = ACTIONS(6033), - [anon_sym_BSLASHGlstext] = ACTIONS(6033), - [anon_sym_BSLASHGLStext] = ACTIONS(6033), - [anon_sym_BSLASHglsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), - [anon_sym_BSLASHglsplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSplural] = ACTIONS(6033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHglsname] = ACTIONS(6033), - [anon_sym_BSLASHGlsname] = ACTIONS(6033), - [anon_sym_BSLASHGLSname] = ACTIONS(6033), - [anon_sym_BSLASHglssymbol] = ACTIONS(6033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), - [anon_sym_BSLASHglsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), - [anon_sym_BSLASHglsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), - [anon_sym_BSLASHglsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), - [anon_sym_BSLASHglsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), - [anon_sym_BSLASHglsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), - [anon_sym_BSLASHnewacronym] = ACTIONS(6033), - [anon_sym_BSLASHacrshort] = ACTIONS(6033), - [anon_sym_BSLASHAcrshort] = ACTIONS(6033), - [anon_sym_BSLASHACRshort] = ACTIONS(6033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), - [anon_sym_BSLASHacrlong] = ACTIONS(6033), - [anon_sym_BSLASHAcrlong] = ACTIONS(6033), - [anon_sym_BSLASHACRlong] = ACTIONS(6033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), - [anon_sym_BSLASHacrfull] = ACTIONS(6033), - [anon_sym_BSLASHAcrfull] = ACTIONS(6033), - [anon_sym_BSLASHACRfull] = ACTIONS(6033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), - [anon_sym_BSLASHacs] = ACTIONS(6033), - [anon_sym_BSLASHAcs] = ACTIONS(6033), - [anon_sym_BSLASHacsp] = ACTIONS(6033), - [anon_sym_BSLASHAcsp] = ACTIONS(6033), - [anon_sym_BSLASHacl] = ACTIONS(6033), - [anon_sym_BSLASHAcl] = ACTIONS(6033), - [anon_sym_BSLASHaclp] = ACTIONS(6033), - [anon_sym_BSLASHAclp] = ACTIONS(6033), - [anon_sym_BSLASHacf] = ACTIONS(6033), - [anon_sym_BSLASHAcf] = ACTIONS(6033), - [anon_sym_BSLASHacfp] = ACTIONS(6033), - [anon_sym_BSLASHAcfp] = ACTIONS(6033), - [anon_sym_BSLASHac] = ACTIONS(6033), - [anon_sym_BSLASHAc] = ACTIONS(6033), - [anon_sym_BSLASHacp] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), - [anon_sym_BSLASHcolor] = ACTIONS(6033), - [anon_sym_BSLASHcolorbox] = ACTIONS(6033), - [anon_sym_BSLASHtextcolor] = ACTIONS(6033), - [anon_sym_BSLASHpagecolor] = ACTIONS(6033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), - [anon_sym_BSLASHtext] = ACTIONS(6033), - [anon_sym_BSLASHintertext] = ACTIONS(6033), - [anon_sym_shortintertext] = ACTIONS(6033), - }, - [1701] = { - [sym_command_name] = ACTIONS(6393), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6393), - [anon_sym_LBRACK] = ACTIONS(6395), - [anon_sym_RBRACK] = ACTIONS(6395), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_LPAREN] = ACTIONS(6395), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_LBRACE] = ACTIONS(6395), - [sym_word] = ACTIONS(6393), - [sym_placeholder] = ACTIONS(6395), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6395), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_LT] = ACTIONS(6393), - [anon_sym_GT] = ACTIONS(6393), - [anon_sym_BANG] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_SQUOTE] = ACTIONS(6393), - [anon_sym__] = ACTIONS(6395), - [anon_sym_CARET] = ACTIONS(6395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6395), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6395), - [anon_sym_DOLLAR] = ACTIONS(6393), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6395), - [anon_sym_BSLASHbegin] = ACTIONS(6393), - [anon_sym_BSLASHtitle] = ACTIONS(6393), - [anon_sym_BSLASHauthor] = ACTIONS(6393), - [anon_sym_BSLASHusepackage] = ACTIONS(6393), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6393), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6393), - [anon_sym_BSLASHinclude] = ACTIONS(6393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6393), - [anon_sym_BSLASHinput] = ACTIONS(6393), - [anon_sym_BSLASHsubfile] = ACTIONS(6393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6393), - [anon_sym_BSLASHbibliography] = ACTIONS(6393), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6393), - [anon_sym_BSLASHincludesvg] = ACTIONS(6393), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6393), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6393), - [anon_sym_BSLASHimport] = ACTIONS(6393), - [anon_sym_BSLASHsubimport] = ACTIONS(6393), - [anon_sym_BSLASHinputfrom] = ACTIONS(6393), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6393), - [anon_sym_BSLASHincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHcaption] = ACTIONS(6393), - [anon_sym_BSLASHcite] = ACTIONS(6393), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCite] = ACTIONS(6393), - [anon_sym_BSLASHnocite] = ACTIONS(6393), - [anon_sym_BSLASHcitet] = ACTIONS(6393), - [anon_sym_BSLASHcitep] = ACTIONS(6393), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteauthor] = ACTIONS(6393), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6393), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitetitle] = ACTIONS(6393), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteyear] = ACTIONS(6393), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitedate] = ACTIONS(6393), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteurl] = ACTIONS(6393), - [anon_sym_BSLASHfullcite] = ACTIONS(6393), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6393), - [anon_sym_BSLASHcitealt] = ACTIONS(6393), - [anon_sym_BSLASHcitealp] = ACTIONS(6393), - [anon_sym_BSLASHcitetext] = ACTIONS(6393), - [anon_sym_BSLASHparencite] = ACTIONS(6393), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHParencite] = ACTIONS(6393), - [anon_sym_BSLASHfootcite] = ACTIONS(6393), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6393), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6393), - [anon_sym_BSLASHtextcite] = ACTIONS(6393), - [anon_sym_BSLASHTextcite] = ACTIONS(6393), - [anon_sym_BSLASHsmartcite] = ACTIONS(6393), - [anon_sym_BSLASHSmartcite] = ACTIONS(6393), - [anon_sym_BSLASHsupercite] = ACTIONS(6393), - [anon_sym_BSLASHautocite] = ACTIONS(6393), - [anon_sym_BSLASHAutocite] = ACTIONS(6393), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHvolcite] = ACTIONS(6393), - [anon_sym_BSLASHVolcite] = ACTIONS(6393), - [anon_sym_BSLASHpvolcite] = ACTIONS(6393), - [anon_sym_BSLASHPvolcite] = ACTIONS(6393), - [anon_sym_BSLASHfvolcite] = ACTIONS(6393), - [anon_sym_BSLASHftvolcite] = ACTIONS(6393), - [anon_sym_BSLASHsvolcite] = ACTIONS(6393), - [anon_sym_BSLASHSvolcite] = ACTIONS(6393), - [anon_sym_BSLASHtvolcite] = ACTIONS(6393), - [anon_sym_BSLASHTvolcite] = ACTIONS(6393), - [anon_sym_BSLASHavolcite] = ACTIONS(6393), - [anon_sym_BSLASHAvolcite] = ACTIONS(6393), - [anon_sym_BSLASHnotecite] = ACTIONS(6393), - [anon_sym_BSLASHNotecite] = ACTIONS(6393), - [anon_sym_BSLASHpnotecite] = ACTIONS(6393), - [anon_sym_BSLASHPnotecite] = ACTIONS(6393), - [anon_sym_BSLASHfnotecite] = ACTIONS(6393), - [anon_sym_BSLASHlabel] = ACTIONS(6393), - [anon_sym_BSLASHref] = ACTIONS(6393), - [anon_sym_BSLASHeqref] = ACTIONS(6393), - [anon_sym_BSLASHvref] = ACTIONS(6393), - [anon_sym_BSLASHVref] = ACTIONS(6393), - [anon_sym_BSLASHautoref] = ACTIONS(6393), - [anon_sym_BSLASHpageref] = ACTIONS(6393), - [anon_sym_BSLASHcref] = ACTIONS(6393), - [anon_sym_BSLASHCref] = ACTIONS(6393), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnameCref] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHlabelcref] = ACTIONS(6393), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCrefrange] = ACTIONS(6393), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnewlabel] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6393), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6393), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6395), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHdef] = ACTIONS(6393), - [anon_sym_BSLASHlet] = ACTIONS(6393), - [anon_sym_BSLASHleft] = ACTIONS(6393), - [anon_sym_BSLASHbig] = ACTIONS(6393), - [anon_sym_BSLASHBig] = ACTIONS(6393), - [anon_sym_BSLASHbigg] = ACTIONS(6393), - [anon_sym_BSLASHBigg] = ACTIONS(6393), - [anon_sym_BSLASHbigl] = ACTIONS(6393), - [anon_sym_BSLASHBigl] = ACTIONS(6393), - [anon_sym_BSLASHbiggl] = ACTIONS(6393), - [anon_sym_BSLASHBiggl] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6393), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6393), - [anon_sym_BSLASHgls] = ACTIONS(6393), - [anon_sym_BSLASHGls] = ACTIONS(6393), - [anon_sym_BSLASHGLS] = ACTIONS(6393), - [anon_sym_BSLASHglspl] = ACTIONS(6393), - [anon_sym_BSLASHGlspl] = ACTIONS(6393), - [anon_sym_BSLASHGLSpl] = ACTIONS(6393), - [anon_sym_BSLASHglsdisp] = ACTIONS(6393), - [anon_sym_BSLASHglslink] = ACTIONS(6393), - [anon_sym_BSLASHglstext] = ACTIONS(6393), - [anon_sym_BSLASHGlstext] = ACTIONS(6393), - [anon_sym_BSLASHGLStext] = ACTIONS(6393), - [anon_sym_BSLASHglsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6393), - [anon_sym_BSLASHglsplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSplural] = ACTIONS(6393), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHglsname] = ACTIONS(6393), - [anon_sym_BSLASHGlsname] = ACTIONS(6393), - [anon_sym_BSLASHGLSname] = ACTIONS(6393), - [anon_sym_BSLASHglssymbol] = ACTIONS(6393), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6393), - [anon_sym_BSLASHglsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6393), - [anon_sym_BSLASHglsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6393), - [anon_sym_BSLASHglsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6393), - [anon_sym_BSLASHglsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6393), - [anon_sym_BSLASHglsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6393), - [anon_sym_BSLASHnewacronym] = ACTIONS(6393), - [anon_sym_BSLASHacrshort] = ACTIONS(6393), - [anon_sym_BSLASHAcrshort] = ACTIONS(6393), - [anon_sym_BSLASHACRshort] = ACTIONS(6393), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6393), - [anon_sym_BSLASHacrlong] = ACTIONS(6393), - [anon_sym_BSLASHAcrlong] = ACTIONS(6393), - [anon_sym_BSLASHACRlong] = ACTIONS(6393), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6393), - [anon_sym_BSLASHacrfull] = ACTIONS(6393), - [anon_sym_BSLASHAcrfull] = ACTIONS(6393), - [anon_sym_BSLASHACRfull] = ACTIONS(6393), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6393), - [anon_sym_BSLASHacs] = ACTIONS(6393), - [anon_sym_BSLASHAcs] = ACTIONS(6393), - [anon_sym_BSLASHacsp] = ACTIONS(6393), - [anon_sym_BSLASHAcsp] = ACTIONS(6393), - [anon_sym_BSLASHacl] = ACTIONS(6393), - [anon_sym_BSLASHAcl] = ACTIONS(6393), - [anon_sym_BSLASHaclp] = ACTIONS(6393), - [anon_sym_BSLASHAclp] = ACTIONS(6393), - [anon_sym_BSLASHacf] = ACTIONS(6393), - [anon_sym_BSLASHAcf] = ACTIONS(6393), - [anon_sym_BSLASHacfp] = ACTIONS(6393), - [anon_sym_BSLASHAcfp] = ACTIONS(6393), - [anon_sym_BSLASHac] = ACTIONS(6393), - [anon_sym_BSLASHAc] = ACTIONS(6393), - [anon_sym_BSLASHacp] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6393), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6393), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6393), - [anon_sym_BSLASHcolor] = ACTIONS(6393), - [anon_sym_BSLASHcolorbox] = ACTIONS(6393), - [anon_sym_BSLASHtextcolor] = ACTIONS(6393), - [anon_sym_BSLASHpagecolor] = ACTIONS(6393), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6393), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6393), - [anon_sym_BSLASHtext] = ACTIONS(6393), - [anon_sym_BSLASHintertext] = ACTIONS(6393), - [anon_sym_shortintertext] = ACTIONS(6393), - }, - [1702] = { - [sym_command_name] = ACTIONS(6397), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6397), - [anon_sym_LBRACK] = ACTIONS(6399), - [anon_sym_RBRACK] = ACTIONS(6399), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_LPAREN] = ACTIONS(6399), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_LBRACE] = ACTIONS(6399), - [sym_word] = ACTIONS(6397), - [sym_placeholder] = ACTIONS(6399), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_LT] = ACTIONS(6397), - [anon_sym_GT] = ACTIONS(6397), - [anon_sym_BANG] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_SQUOTE] = ACTIONS(6397), - [anon_sym__] = ACTIONS(6399), - [anon_sym_CARET] = ACTIONS(6399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6399), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6399), - [anon_sym_DOLLAR] = ACTIONS(6397), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6399), - [anon_sym_BSLASHbegin] = ACTIONS(6397), - [anon_sym_BSLASHtitle] = ACTIONS(6397), - [anon_sym_BSLASHauthor] = ACTIONS(6397), - [anon_sym_BSLASHusepackage] = ACTIONS(6397), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6397), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6397), - [anon_sym_BSLASHinclude] = ACTIONS(6397), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6397), - [anon_sym_BSLASHinput] = ACTIONS(6397), - [anon_sym_BSLASHsubfile] = ACTIONS(6397), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6397), - [anon_sym_BSLASHbibliography] = ACTIONS(6397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6397), - [anon_sym_BSLASHincludesvg] = ACTIONS(6397), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6397), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6397), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6397), - [anon_sym_BSLASHimport] = ACTIONS(6397), - [anon_sym_BSLASHsubimport] = ACTIONS(6397), - [anon_sym_BSLASHinputfrom] = ACTIONS(6397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6397), - [anon_sym_BSLASHincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHcaption] = ACTIONS(6397), - [anon_sym_BSLASHcite] = ACTIONS(6397), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCite] = ACTIONS(6397), - [anon_sym_BSLASHnocite] = ACTIONS(6397), - [anon_sym_BSLASHcitet] = ACTIONS(6397), - [anon_sym_BSLASHcitep] = ACTIONS(6397), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteauthor] = ACTIONS(6397), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6397), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitetitle] = ACTIONS(6397), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteyear] = ACTIONS(6397), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitedate] = ACTIONS(6397), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteurl] = ACTIONS(6397), - [anon_sym_BSLASHfullcite] = ACTIONS(6397), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6397), - [anon_sym_BSLASHcitealt] = ACTIONS(6397), - [anon_sym_BSLASHcitealp] = ACTIONS(6397), - [anon_sym_BSLASHcitetext] = ACTIONS(6397), - [anon_sym_BSLASHparencite] = ACTIONS(6397), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHParencite] = ACTIONS(6397), - [anon_sym_BSLASHfootcite] = ACTIONS(6397), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6397), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6397), - [anon_sym_BSLASHtextcite] = ACTIONS(6397), - [anon_sym_BSLASHTextcite] = ACTIONS(6397), - [anon_sym_BSLASHsmartcite] = ACTIONS(6397), - [anon_sym_BSLASHSmartcite] = ACTIONS(6397), - [anon_sym_BSLASHsupercite] = ACTIONS(6397), - [anon_sym_BSLASHautocite] = ACTIONS(6397), - [anon_sym_BSLASHAutocite] = ACTIONS(6397), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHvolcite] = ACTIONS(6397), - [anon_sym_BSLASHVolcite] = ACTIONS(6397), - [anon_sym_BSLASHpvolcite] = ACTIONS(6397), - [anon_sym_BSLASHPvolcite] = ACTIONS(6397), - [anon_sym_BSLASHfvolcite] = ACTIONS(6397), - [anon_sym_BSLASHftvolcite] = ACTIONS(6397), - [anon_sym_BSLASHsvolcite] = ACTIONS(6397), - [anon_sym_BSLASHSvolcite] = ACTIONS(6397), - [anon_sym_BSLASHtvolcite] = ACTIONS(6397), - [anon_sym_BSLASHTvolcite] = ACTIONS(6397), - [anon_sym_BSLASHavolcite] = ACTIONS(6397), - [anon_sym_BSLASHAvolcite] = ACTIONS(6397), - [anon_sym_BSLASHnotecite] = ACTIONS(6397), - [anon_sym_BSLASHNotecite] = ACTIONS(6397), - [anon_sym_BSLASHpnotecite] = ACTIONS(6397), - [anon_sym_BSLASHPnotecite] = ACTIONS(6397), - [anon_sym_BSLASHfnotecite] = ACTIONS(6397), - [anon_sym_BSLASHlabel] = ACTIONS(6397), - [anon_sym_BSLASHref] = ACTIONS(6397), - [anon_sym_BSLASHeqref] = ACTIONS(6397), - [anon_sym_BSLASHvref] = ACTIONS(6397), - [anon_sym_BSLASHVref] = ACTIONS(6397), - [anon_sym_BSLASHautoref] = ACTIONS(6397), - [anon_sym_BSLASHpageref] = ACTIONS(6397), - [anon_sym_BSLASHcref] = ACTIONS(6397), - [anon_sym_BSLASHCref] = ACTIONS(6397), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnameCref] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHlabelcref] = ACTIONS(6397), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCrefrange] = ACTIONS(6397), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnewlabel] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6397), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6397), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6399), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHdef] = ACTIONS(6397), - [anon_sym_BSLASHlet] = ACTIONS(6397), - [anon_sym_BSLASHleft] = ACTIONS(6397), - [anon_sym_BSLASHbig] = ACTIONS(6397), - [anon_sym_BSLASHBig] = ACTIONS(6397), - [anon_sym_BSLASHbigg] = ACTIONS(6397), - [anon_sym_BSLASHBigg] = ACTIONS(6397), - [anon_sym_BSLASHbigl] = ACTIONS(6397), - [anon_sym_BSLASHBigl] = ACTIONS(6397), - [anon_sym_BSLASHbiggl] = ACTIONS(6397), - [anon_sym_BSLASHBiggl] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6397), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6397), - [anon_sym_BSLASHgls] = ACTIONS(6397), - [anon_sym_BSLASHGls] = ACTIONS(6397), - [anon_sym_BSLASHGLS] = ACTIONS(6397), - [anon_sym_BSLASHglspl] = ACTIONS(6397), - [anon_sym_BSLASHGlspl] = ACTIONS(6397), - [anon_sym_BSLASHGLSpl] = ACTIONS(6397), - [anon_sym_BSLASHglsdisp] = ACTIONS(6397), - [anon_sym_BSLASHglslink] = ACTIONS(6397), - [anon_sym_BSLASHglstext] = ACTIONS(6397), - [anon_sym_BSLASHGlstext] = ACTIONS(6397), - [anon_sym_BSLASHGLStext] = ACTIONS(6397), - [anon_sym_BSLASHglsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6397), - [anon_sym_BSLASHglsplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSplural] = ACTIONS(6397), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHglsname] = ACTIONS(6397), - [anon_sym_BSLASHGlsname] = ACTIONS(6397), - [anon_sym_BSLASHGLSname] = ACTIONS(6397), - [anon_sym_BSLASHglssymbol] = ACTIONS(6397), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6397), - [anon_sym_BSLASHglsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6397), - [anon_sym_BSLASHglsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6397), - [anon_sym_BSLASHglsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6397), - [anon_sym_BSLASHglsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6397), - [anon_sym_BSLASHglsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6397), - [anon_sym_BSLASHnewacronym] = ACTIONS(6397), - [anon_sym_BSLASHacrshort] = ACTIONS(6397), - [anon_sym_BSLASHAcrshort] = ACTIONS(6397), - [anon_sym_BSLASHACRshort] = ACTIONS(6397), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6397), - [anon_sym_BSLASHacrlong] = ACTIONS(6397), - [anon_sym_BSLASHAcrlong] = ACTIONS(6397), - [anon_sym_BSLASHACRlong] = ACTIONS(6397), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6397), - [anon_sym_BSLASHacrfull] = ACTIONS(6397), - [anon_sym_BSLASHAcrfull] = ACTIONS(6397), - [anon_sym_BSLASHACRfull] = ACTIONS(6397), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6397), - [anon_sym_BSLASHacs] = ACTIONS(6397), - [anon_sym_BSLASHAcs] = ACTIONS(6397), - [anon_sym_BSLASHacsp] = ACTIONS(6397), - [anon_sym_BSLASHAcsp] = ACTIONS(6397), - [anon_sym_BSLASHacl] = ACTIONS(6397), - [anon_sym_BSLASHAcl] = ACTIONS(6397), - [anon_sym_BSLASHaclp] = ACTIONS(6397), - [anon_sym_BSLASHAclp] = ACTIONS(6397), - [anon_sym_BSLASHacf] = ACTIONS(6397), - [anon_sym_BSLASHAcf] = ACTIONS(6397), - [anon_sym_BSLASHacfp] = ACTIONS(6397), - [anon_sym_BSLASHAcfp] = ACTIONS(6397), - [anon_sym_BSLASHac] = ACTIONS(6397), - [anon_sym_BSLASHAc] = ACTIONS(6397), - [anon_sym_BSLASHacp] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6397), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6397), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6397), - [anon_sym_BSLASHcolor] = ACTIONS(6397), - [anon_sym_BSLASHcolorbox] = ACTIONS(6397), - [anon_sym_BSLASHtextcolor] = ACTIONS(6397), - [anon_sym_BSLASHpagecolor] = ACTIONS(6397), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6397), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6397), - [anon_sym_BSLASHtext] = ACTIONS(6397), - [anon_sym_BSLASHintertext] = ACTIONS(6397), - [anon_sym_shortintertext] = ACTIONS(6397), - }, - [1703] = { - [sym_command_name] = ACTIONS(6401), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6401), - [anon_sym_LBRACK] = ACTIONS(6403), - [anon_sym_RBRACK] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(6403), - [anon_sym_EQ] = ACTIONS(6403), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(6403), - [anon_sym_LBRACE] = ACTIONS(6403), - [sym_word] = ACTIONS(6401), - [sym_placeholder] = ACTIONS(6403), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6403), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_LT] = ACTIONS(6401), - [anon_sym_GT] = ACTIONS(6401), - [anon_sym_BANG] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_SQUOTE] = ACTIONS(6401), - [anon_sym__] = ACTIONS(6403), - [anon_sym_CARET] = ACTIONS(6403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6403), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6403), - [anon_sym_DOLLAR] = ACTIONS(6401), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6403), - [anon_sym_BSLASHbegin] = ACTIONS(6401), - [anon_sym_BSLASHtitle] = ACTIONS(6401), - [anon_sym_BSLASHauthor] = ACTIONS(6401), - [anon_sym_BSLASHusepackage] = ACTIONS(6401), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6401), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6401), - [anon_sym_BSLASHinclude] = ACTIONS(6401), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6401), - [anon_sym_BSLASHinput] = ACTIONS(6401), - [anon_sym_BSLASHsubfile] = ACTIONS(6401), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6401), - [anon_sym_BSLASHbibliography] = ACTIONS(6401), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6401), - [anon_sym_BSLASHincludesvg] = ACTIONS(6401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6401), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6401), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6401), - [anon_sym_BSLASHimport] = ACTIONS(6401), - [anon_sym_BSLASHsubimport] = ACTIONS(6401), - [anon_sym_BSLASHinputfrom] = ACTIONS(6401), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6401), - [anon_sym_BSLASHincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHcaption] = ACTIONS(6401), - [anon_sym_BSLASHcite] = ACTIONS(6401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCite] = ACTIONS(6401), - [anon_sym_BSLASHnocite] = ACTIONS(6401), - [anon_sym_BSLASHcitet] = ACTIONS(6401), - [anon_sym_BSLASHcitep] = ACTIONS(6401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteauthor] = ACTIONS(6401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitetitle] = ACTIONS(6401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteyear] = ACTIONS(6401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitedate] = ACTIONS(6401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteurl] = ACTIONS(6401), - [anon_sym_BSLASHfullcite] = ACTIONS(6401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6401), - [anon_sym_BSLASHcitealt] = ACTIONS(6401), - [anon_sym_BSLASHcitealp] = ACTIONS(6401), - [anon_sym_BSLASHcitetext] = ACTIONS(6401), - [anon_sym_BSLASHparencite] = ACTIONS(6401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHParencite] = ACTIONS(6401), - [anon_sym_BSLASHfootcite] = ACTIONS(6401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6401), - [anon_sym_BSLASHtextcite] = ACTIONS(6401), - [anon_sym_BSLASHTextcite] = ACTIONS(6401), - [anon_sym_BSLASHsmartcite] = ACTIONS(6401), - [anon_sym_BSLASHSmartcite] = ACTIONS(6401), - [anon_sym_BSLASHsupercite] = ACTIONS(6401), - [anon_sym_BSLASHautocite] = ACTIONS(6401), - [anon_sym_BSLASHAutocite] = ACTIONS(6401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHvolcite] = ACTIONS(6401), - [anon_sym_BSLASHVolcite] = ACTIONS(6401), - [anon_sym_BSLASHpvolcite] = ACTIONS(6401), - [anon_sym_BSLASHPvolcite] = ACTIONS(6401), - [anon_sym_BSLASHfvolcite] = ACTIONS(6401), - [anon_sym_BSLASHftvolcite] = ACTIONS(6401), - [anon_sym_BSLASHsvolcite] = ACTIONS(6401), - [anon_sym_BSLASHSvolcite] = ACTIONS(6401), - [anon_sym_BSLASHtvolcite] = ACTIONS(6401), - [anon_sym_BSLASHTvolcite] = ACTIONS(6401), - [anon_sym_BSLASHavolcite] = ACTIONS(6401), - [anon_sym_BSLASHAvolcite] = ACTIONS(6401), - [anon_sym_BSLASHnotecite] = ACTIONS(6401), - [anon_sym_BSLASHNotecite] = ACTIONS(6401), - [anon_sym_BSLASHpnotecite] = ACTIONS(6401), - [anon_sym_BSLASHPnotecite] = ACTIONS(6401), - [anon_sym_BSLASHfnotecite] = ACTIONS(6401), - [anon_sym_BSLASHlabel] = ACTIONS(6401), - [anon_sym_BSLASHref] = ACTIONS(6401), - [anon_sym_BSLASHeqref] = ACTIONS(6401), - [anon_sym_BSLASHvref] = ACTIONS(6401), - [anon_sym_BSLASHVref] = ACTIONS(6401), - [anon_sym_BSLASHautoref] = ACTIONS(6401), - [anon_sym_BSLASHpageref] = ACTIONS(6401), - [anon_sym_BSLASHcref] = ACTIONS(6401), - [anon_sym_BSLASHCref] = ACTIONS(6401), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnameCref] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHlabelcref] = ACTIONS(6401), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCrefrange] = ACTIONS(6401), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnewlabel] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6401), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6401), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6403), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHdef] = ACTIONS(6401), - [anon_sym_BSLASHlet] = ACTIONS(6401), - [anon_sym_BSLASHleft] = ACTIONS(6401), - [anon_sym_BSLASHbig] = ACTIONS(6401), - [anon_sym_BSLASHBig] = ACTIONS(6401), - [anon_sym_BSLASHbigg] = ACTIONS(6401), - [anon_sym_BSLASHBigg] = ACTIONS(6401), - [anon_sym_BSLASHbigl] = ACTIONS(6401), - [anon_sym_BSLASHBigl] = ACTIONS(6401), - [anon_sym_BSLASHbiggl] = ACTIONS(6401), - [anon_sym_BSLASHBiggl] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6401), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6401), - [anon_sym_BSLASHgls] = ACTIONS(6401), - [anon_sym_BSLASHGls] = ACTIONS(6401), - [anon_sym_BSLASHGLS] = ACTIONS(6401), - [anon_sym_BSLASHglspl] = ACTIONS(6401), - [anon_sym_BSLASHGlspl] = ACTIONS(6401), - [anon_sym_BSLASHGLSpl] = ACTIONS(6401), - [anon_sym_BSLASHglsdisp] = ACTIONS(6401), - [anon_sym_BSLASHglslink] = ACTIONS(6401), - [anon_sym_BSLASHglstext] = ACTIONS(6401), - [anon_sym_BSLASHGlstext] = ACTIONS(6401), - [anon_sym_BSLASHGLStext] = ACTIONS(6401), - [anon_sym_BSLASHglsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6401), - [anon_sym_BSLASHglsplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSplural] = ACTIONS(6401), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHglsname] = ACTIONS(6401), - [anon_sym_BSLASHGlsname] = ACTIONS(6401), - [anon_sym_BSLASHGLSname] = ACTIONS(6401), - [anon_sym_BSLASHglssymbol] = ACTIONS(6401), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6401), - [anon_sym_BSLASHglsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6401), - [anon_sym_BSLASHglsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6401), - [anon_sym_BSLASHglsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6401), - [anon_sym_BSLASHglsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6401), - [anon_sym_BSLASHglsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6401), - [anon_sym_BSLASHnewacronym] = ACTIONS(6401), - [anon_sym_BSLASHacrshort] = ACTIONS(6401), - [anon_sym_BSLASHAcrshort] = ACTIONS(6401), - [anon_sym_BSLASHACRshort] = ACTIONS(6401), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6401), - [anon_sym_BSLASHacrlong] = ACTIONS(6401), - [anon_sym_BSLASHAcrlong] = ACTIONS(6401), - [anon_sym_BSLASHACRlong] = ACTIONS(6401), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6401), - [anon_sym_BSLASHacrfull] = ACTIONS(6401), - [anon_sym_BSLASHAcrfull] = ACTIONS(6401), - [anon_sym_BSLASHACRfull] = ACTIONS(6401), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6401), - [anon_sym_BSLASHacs] = ACTIONS(6401), - [anon_sym_BSLASHAcs] = ACTIONS(6401), - [anon_sym_BSLASHacsp] = ACTIONS(6401), - [anon_sym_BSLASHAcsp] = ACTIONS(6401), - [anon_sym_BSLASHacl] = ACTIONS(6401), - [anon_sym_BSLASHAcl] = ACTIONS(6401), - [anon_sym_BSLASHaclp] = ACTIONS(6401), - [anon_sym_BSLASHAclp] = ACTIONS(6401), - [anon_sym_BSLASHacf] = ACTIONS(6401), - [anon_sym_BSLASHAcf] = ACTIONS(6401), - [anon_sym_BSLASHacfp] = ACTIONS(6401), - [anon_sym_BSLASHAcfp] = ACTIONS(6401), - [anon_sym_BSLASHac] = ACTIONS(6401), - [anon_sym_BSLASHAc] = ACTIONS(6401), - [anon_sym_BSLASHacp] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6401), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6401), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6401), - [anon_sym_BSLASHcolor] = ACTIONS(6401), - [anon_sym_BSLASHcolorbox] = ACTIONS(6401), - [anon_sym_BSLASHtextcolor] = ACTIONS(6401), - [anon_sym_BSLASHpagecolor] = ACTIONS(6401), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6401), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6401), - [anon_sym_BSLASHtext] = ACTIONS(6401), - [anon_sym_BSLASHintertext] = ACTIONS(6401), - [anon_sym_shortintertext] = ACTIONS(6401), - }, - [1704] = { - [sym_command_name] = ACTIONS(6129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(6131), - [anon_sym_RBRACK] = ACTIONS(6131), - [anon_sym_COMMA] = ACTIONS(6131), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_LPAREN] = ACTIONS(6131), - [anon_sym_RPAREN] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(6131), - [anon_sym_RBRACE] = ACTIONS(6131), - [sym_word] = ACTIONS(6129), - [sym_placeholder] = ACTIONS(6131), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_BANG] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_SQUOTE] = ACTIONS(6129), - [anon_sym__] = ACTIONS(6131), - [anon_sym_CARET] = ACTIONS(6131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6131), - [anon_sym_DOLLAR] = ACTIONS(6129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6131), - [anon_sym_BSLASHtitle] = ACTIONS(6129), - [anon_sym_BSLASHauthor] = ACTIONS(6129), - [anon_sym_BSLASHusepackage] = ACTIONS(6129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6129), - [anon_sym_BSLASHinclude] = ACTIONS(6129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6129), - [anon_sym_BSLASHinput] = ACTIONS(6129), - [anon_sym_BSLASHsubfile] = ACTIONS(6129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6129), - [anon_sym_BSLASHbibliography] = ACTIONS(6129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6129), - [anon_sym_BSLASHincludesvg] = ACTIONS(6129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6129), - [anon_sym_BSLASHimport] = ACTIONS(6129), - [anon_sym_BSLASHsubimport] = ACTIONS(6129), - [anon_sym_BSLASHinputfrom] = ACTIONS(6129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6129), - [anon_sym_BSLASHincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHcaption] = ACTIONS(6129), - [anon_sym_BSLASHcite] = ACTIONS(6129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCite] = ACTIONS(6129), - [anon_sym_BSLASHnocite] = ACTIONS(6129), - [anon_sym_BSLASHcitet] = ACTIONS(6129), - [anon_sym_BSLASHcitep] = ACTIONS(6129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteauthor] = ACTIONS(6129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitetitle] = ACTIONS(6129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteyear] = ACTIONS(6129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitedate] = ACTIONS(6129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteurl] = ACTIONS(6129), - [anon_sym_BSLASHfullcite] = ACTIONS(6129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6129), - [anon_sym_BSLASHcitealt] = ACTIONS(6129), - [anon_sym_BSLASHcitealp] = ACTIONS(6129), - [anon_sym_BSLASHcitetext] = ACTIONS(6129), - [anon_sym_BSLASHparencite] = ACTIONS(6129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHParencite] = ACTIONS(6129), - [anon_sym_BSLASHfootcite] = ACTIONS(6129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6129), - [anon_sym_BSLASHtextcite] = ACTIONS(6129), - [anon_sym_BSLASHTextcite] = ACTIONS(6129), - [anon_sym_BSLASHsmartcite] = ACTIONS(6129), - [anon_sym_BSLASHSmartcite] = ACTIONS(6129), - [anon_sym_BSLASHsupercite] = ACTIONS(6129), - [anon_sym_BSLASHautocite] = ACTIONS(6129), - [anon_sym_BSLASHAutocite] = ACTIONS(6129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHvolcite] = ACTIONS(6129), - [anon_sym_BSLASHVolcite] = ACTIONS(6129), - [anon_sym_BSLASHpvolcite] = ACTIONS(6129), - [anon_sym_BSLASHPvolcite] = ACTIONS(6129), - [anon_sym_BSLASHfvolcite] = ACTIONS(6129), - [anon_sym_BSLASHftvolcite] = ACTIONS(6129), - [anon_sym_BSLASHsvolcite] = ACTIONS(6129), - [anon_sym_BSLASHSvolcite] = ACTIONS(6129), - [anon_sym_BSLASHtvolcite] = ACTIONS(6129), - [anon_sym_BSLASHTvolcite] = ACTIONS(6129), - [anon_sym_BSLASHavolcite] = ACTIONS(6129), - [anon_sym_BSLASHAvolcite] = ACTIONS(6129), - [anon_sym_BSLASHnotecite] = ACTIONS(6129), - [anon_sym_BSLASHNotecite] = ACTIONS(6129), - [anon_sym_BSLASHpnotecite] = ACTIONS(6129), - [anon_sym_BSLASHPnotecite] = ACTIONS(6129), - [anon_sym_BSLASHfnotecite] = ACTIONS(6129), - [anon_sym_BSLASHlabel] = ACTIONS(6129), - [anon_sym_BSLASHref] = ACTIONS(6129), - [anon_sym_BSLASHeqref] = ACTIONS(6129), - [anon_sym_BSLASHvref] = ACTIONS(6129), - [anon_sym_BSLASHVref] = ACTIONS(6129), - [anon_sym_BSLASHautoref] = ACTIONS(6129), - [anon_sym_BSLASHpageref] = ACTIONS(6129), - [anon_sym_BSLASHcref] = ACTIONS(6129), - [anon_sym_BSLASHCref] = ACTIONS(6129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnameCref] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHlabelcref] = ACTIONS(6129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCrefrange] = ACTIONS(6129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnewlabel] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6131), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHdef] = ACTIONS(6129), - [anon_sym_BSLASHlet] = ACTIONS(6129), - [anon_sym_BSLASHleft] = ACTIONS(6129), - [anon_sym_BSLASHbig] = ACTIONS(6129), - [anon_sym_BSLASHBig] = ACTIONS(6129), - [anon_sym_BSLASHbigg] = ACTIONS(6129), - [anon_sym_BSLASHBigg] = ACTIONS(6129), - [anon_sym_BSLASHbigl] = ACTIONS(6129), - [anon_sym_BSLASHBigl] = ACTIONS(6129), - [anon_sym_BSLASHbiggl] = ACTIONS(6129), - [anon_sym_BSLASHBiggl] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6129), - [anon_sym_BSLASHgls] = ACTIONS(6129), - [anon_sym_BSLASHGls] = ACTIONS(6129), - [anon_sym_BSLASHGLS] = ACTIONS(6129), - [anon_sym_BSLASHglspl] = ACTIONS(6129), - [anon_sym_BSLASHGlspl] = ACTIONS(6129), - [anon_sym_BSLASHGLSpl] = ACTIONS(6129), - [anon_sym_BSLASHglsdisp] = ACTIONS(6129), - [anon_sym_BSLASHglslink] = ACTIONS(6129), - [anon_sym_BSLASHglstext] = ACTIONS(6129), - [anon_sym_BSLASHGlstext] = ACTIONS(6129), - [anon_sym_BSLASHGLStext] = ACTIONS(6129), - [anon_sym_BSLASHglsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6129), - [anon_sym_BSLASHglsplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSplural] = ACTIONS(6129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHglsname] = ACTIONS(6129), - [anon_sym_BSLASHGlsname] = ACTIONS(6129), - [anon_sym_BSLASHGLSname] = ACTIONS(6129), - [anon_sym_BSLASHglssymbol] = ACTIONS(6129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6129), - [anon_sym_BSLASHglsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6129), - [anon_sym_BSLASHglsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6129), - [anon_sym_BSLASHglsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6129), - [anon_sym_BSLASHglsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6129), - [anon_sym_BSLASHglsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6129), - [anon_sym_BSLASHnewacronym] = ACTIONS(6129), - [anon_sym_BSLASHacrshort] = ACTIONS(6129), - [anon_sym_BSLASHAcrshort] = ACTIONS(6129), - [anon_sym_BSLASHACRshort] = ACTIONS(6129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6129), - [anon_sym_BSLASHacrlong] = ACTIONS(6129), - [anon_sym_BSLASHAcrlong] = ACTIONS(6129), - [anon_sym_BSLASHACRlong] = ACTIONS(6129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6129), - [anon_sym_BSLASHacrfull] = ACTIONS(6129), - [anon_sym_BSLASHAcrfull] = ACTIONS(6129), - [anon_sym_BSLASHACRfull] = ACTIONS(6129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6129), - [anon_sym_BSLASHacs] = ACTIONS(6129), - [anon_sym_BSLASHAcs] = ACTIONS(6129), - [anon_sym_BSLASHacsp] = ACTIONS(6129), - [anon_sym_BSLASHAcsp] = ACTIONS(6129), - [anon_sym_BSLASHacl] = ACTIONS(6129), - [anon_sym_BSLASHAcl] = ACTIONS(6129), - [anon_sym_BSLASHaclp] = ACTIONS(6129), - [anon_sym_BSLASHAclp] = ACTIONS(6129), - [anon_sym_BSLASHacf] = ACTIONS(6129), - [anon_sym_BSLASHAcf] = ACTIONS(6129), - [anon_sym_BSLASHacfp] = ACTIONS(6129), - [anon_sym_BSLASHAcfp] = ACTIONS(6129), - [anon_sym_BSLASHac] = ACTIONS(6129), - [anon_sym_BSLASHAc] = ACTIONS(6129), - [anon_sym_BSLASHacp] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6129), - [anon_sym_BSLASHcolor] = ACTIONS(6129), - [anon_sym_BSLASHcolorbox] = ACTIONS(6129), - [anon_sym_BSLASHtextcolor] = ACTIONS(6129), - [anon_sym_BSLASHpagecolor] = ACTIONS(6129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6129), - [anon_sym_BSLASHtext] = ACTIONS(6129), - [anon_sym_BSLASHintertext] = ACTIONS(6129), - [anon_sym_shortintertext] = ACTIONS(6129), - }, - [1705] = { - [sym_command_name] = ACTIONS(6133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6133), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_EQ] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_LBRACE] = ACTIONS(6135), - [anon_sym_RBRACE] = ACTIONS(6135), - [sym_word] = ACTIONS(6133), - [sym_placeholder] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6135), - [anon_sym_DASH] = ACTIONS(6135), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6133), - [anon_sym_GT] = ACTIONS(6133), - [anon_sym_BANG] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6133), - [anon_sym_COLON] = ACTIONS(6133), - [anon_sym_SQUOTE] = ACTIONS(6133), - [anon_sym__] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6135), - [anon_sym_DOLLAR] = ACTIONS(6133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6135), - [anon_sym_BSLASHtitle] = ACTIONS(6133), - [anon_sym_BSLASHauthor] = ACTIONS(6133), - [anon_sym_BSLASHusepackage] = ACTIONS(6133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6133), - [anon_sym_BSLASHinclude] = ACTIONS(6133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6133), - [anon_sym_BSLASHinput] = ACTIONS(6133), - [anon_sym_BSLASHsubfile] = ACTIONS(6133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6133), - [anon_sym_BSLASHbibliography] = ACTIONS(6133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6133), - [anon_sym_BSLASHincludesvg] = ACTIONS(6133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6133), - [anon_sym_BSLASHimport] = ACTIONS(6133), - [anon_sym_BSLASHsubimport] = ACTIONS(6133), - [anon_sym_BSLASHinputfrom] = ACTIONS(6133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6133), - [anon_sym_BSLASHincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHcaption] = ACTIONS(6133), - [anon_sym_BSLASHcite] = ACTIONS(6133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCite] = ACTIONS(6133), - [anon_sym_BSLASHnocite] = ACTIONS(6133), - [anon_sym_BSLASHcitet] = ACTIONS(6133), - [anon_sym_BSLASHcitep] = ACTIONS(6133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteauthor] = ACTIONS(6133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitetitle] = ACTIONS(6133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteyear] = ACTIONS(6133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitedate] = ACTIONS(6133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteurl] = ACTIONS(6133), - [anon_sym_BSLASHfullcite] = ACTIONS(6133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6133), - [anon_sym_BSLASHcitealt] = ACTIONS(6133), - [anon_sym_BSLASHcitealp] = ACTIONS(6133), - [anon_sym_BSLASHcitetext] = ACTIONS(6133), - [anon_sym_BSLASHparencite] = ACTIONS(6133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHParencite] = ACTIONS(6133), - [anon_sym_BSLASHfootcite] = ACTIONS(6133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6133), - [anon_sym_BSLASHtextcite] = ACTIONS(6133), - [anon_sym_BSLASHTextcite] = ACTIONS(6133), - [anon_sym_BSLASHsmartcite] = ACTIONS(6133), - [anon_sym_BSLASHSmartcite] = ACTIONS(6133), - [anon_sym_BSLASHsupercite] = ACTIONS(6133), - [anon_sym_BSLASHautocite] = ACTIONS(6133), - [anon_sym_BSLASHAutocite] = ACTIONS(6133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHvolcite] = ACTIONS(6133), - [anon_sym_BSLASHVolcite] = ACTIONS(6133), - [anon_sym_BSLASHpvolcite] = ACTIONS(6133), - [anon_sym_BSLASHPvolcite] = ACTIONS(6133), - [anon_sym_BSLASHfvolcite] = ACTIONS(6133), - [anon_sym_BSLASHftvolcite] = ACTIONS(6133), - [anon_sym_BSLASHsvolcite] = ACTIONS(6133), - [anon_sym_BSLASHSvolcite] = ACTIONS(6133), - [anon_sym_BSLASHtvolcite] = ACTIONS(6133), - [anon_sym_BSLASHTvolcite] = ACTIONS(6133), - [anon_sym_BSLASHavolcite] = ACTIONS(6133), - [anon_sym_BSLASHAvolcite] = ACTIONS(6133), - [anon_sym_BSLASHnotecite] = ACTIONS(6133), - [anon_sym_BSLASHNotecite] = ACTIONS(6133), - [anon_sym_BSLASHpnotecite] = ACTIONS(6133), - [anon_sym_BSLASHPnotecite] = ACTIONS(6133), - [anon_sym_BSLASHfnotecite] = ACTIONS(6133), - [anon_sym_BSLASHlabel] = ACTIONS(6133), - [anon_sym_BSLASHref] = ACTIONS(6133), - [anon_sym_BSLASHeqref] = ACTIONS(6133), - [anon_sym_BSLASHvref] = ACTIONS(6133), - [anon_sym_BSLASHVref] = ACTIONS(6133), - [anon_sym_BSLASHautoref] = ACTIONS(6133), - [anon_sym_BSLASHpageref] = ACTIONS(6133), - [anon_sym_BSLASHcref] = ACTIONS(6133), - [anon_sym_BSLASHCref] = ACTIONS(6133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnameCref] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHlabelcref] = ACTIONS(6133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCrefrange] = ACTIONS(6133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnewlabel] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6135), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHdef] = ACTIONS(6133), - [anon_sym_BSLASHlet] = ACTIONS(6133), - [anon_sym_BSLASHleft] = ACTIONS(6133), - [anon_sym_BSLASHbig] = ACTIONS(6133), - [anon_sym_BSLASHBig] = ACTIONS(6133), - [anon_sym_BSLASHbigg] = ACTIONS(6133), - [anon_sym_BSLASHBigg] = ACTIONS(6133), - [anon_sym_BSLASHbigl] = ACTIONS(6133), - [anon_sym_BSLASHBigl] = ACTIONS(6133), - [anon_sym_BSLASHbiggl] = ACTIONS(6133), - [anon_sym_BSLASHBiggl] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6133), - [anon_sym_BSLASHgls] = ACTIONS(6133), - [anon_sym_BSLASHGls] = ACTIONS(6133), - [anon_sym_BSLASHGLS] = ACTIONS(6133), - [anon_sym_BSLASHglspl] = ACTIONS(6133), - [anon_sym_BSLASHGlspl] = ACTIONS(6133), - [anon_sym_BSLASHGLSpl] = ACTIONS(6133), - [anon_sym_BSLASHglsdisp] = ACTIONS(6133), - [anon_sym_BSLASHglslink] = ACTIONS(6133), - [anon_sym_BSLASHglstext] = ACTIONS(6133), - [anon_sym_BSLASHGlstext] = ACTIONS(6133), - [anon_sym_BSLASHGLStext] = ACTIONS(6133), - [anon_sym_BSLASHglsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6133), - [anon_sym_BSLASHglsplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSplural] = ACTIONS(6133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHglsname] = ACTIONS(6133), - [anon_sym_BSLASHGlsname] = ACTIONS(6133), - [anon_sym_BSLASHGLSname] = ACTIONS(6133), - [anon_sym_BSLASHglssymbol] = ACTIONS(6133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6133), - [anon_sym_BSLASHglsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6133), - [anon_sym_BSLASHglsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6133), - [anon_sym_BSLASHglsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6133), - [anon_sym_BSLASHglsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6133), - [anon_sym_BSLASHglsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6133), - [anon_sym_BSLASHnewacronym] = ACTIONS(6133), - [anon_sym_BSLASHacrshort] = ACTIONS(6133), - [anon_sym_BSLASHAcrshort] = ACTIONS(6133), - [anon_sym_BSLASHACRshort] = ACTIONS(6133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6133), - [anon_sym_BSLASHacrlong] = ACTIONS(6133), - [anon_sym_BSLASHAcrlong] = ACTIONS(6133), - [anon_sym_BSLASHACRlong] = ACTIONS(6133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6133), - [anon_sym_BSLASHacrfull] = ACTIONS(6133), - [anon_sym_BSLASHAcrfull] = ACTIONS(6133), - [anon_sym_BSLASHACRfull] = ACTIONS(6133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6133), - [anon_sym_BSLASHacs] = ACTIONS(6133), - [anon_sym_BSLASHAcs] = ACTIONS(6133), - [anon_sym_BSLASHacsp] = ACTIONS(6133), - [anon_sym_BSLASHAcsp] = ACTIONS(6133), - [anon_sym_BSLASHacl] = ACTIONS(6133), - [anon_sym_BSLASHAcl] = ACTIONS(6133), - [anon_sym_BSLASHaclp] = ACTIONS(6133), - [anon_sym_BSLASHAclp] = ACTIONS(6133), - [anon_sym_BSLASHacf] = ACTIONS(6133), - [anon_sym_BSLASHAcf] = ACTIONS(6133), - [anon_sym_BSLASHacfp] = ACTIONS(6133), - [anon_sym_BSLASHAcfp] = ACTIONS(6133), - [anon_sym_BSLASHac] = ACTIONS(6133), - [anon_sym_BSLASHAc] = ACTIONS(6133), - [anon_sym_BSLASHacp] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6133), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6133), - [anon_sym_BSLASHcolor] = ACTIONS(6133), - [anon_sym_BSLASHcolorbox] = ACTIONS(6133), - [anon_sym_BSLASHtextcolor] = ACTIONS(6133), - [anon_sym_BSLASHpagecolor] = ACTIONS(6133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6133), - [anon_sym_BSLASHtext] = ACTIONS(6133), - [anon_sym_BSLASHintertext] = ACTIONS(6133), - [anon_sym_shortintertext] = ACTIONS(6133), - }, - [1706] = { - [sym_command_name] = ACTIONS(6405), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6405), - [anon_sym_LBRACK] = ACTIONS(6407), - [anon_sym_RBRACK] = ACTIONS(6407), - [anon_sym_COMMA] = ACTIONS(6407), - [anon_sym_EQ] = ACTIONS(6407), - [anon_sym_LPAREN] = ACTIONS(6407), - [anon_sym_RPAREN] = ACTIONS(6407), - [anon_sym_LBRACE] = ACTIONS(6407), - [sym_word] = ACTIONS(6405), - [sym_placeholder] = ACTIONS(6407), - [anon_sym_PLUS] = ACTIONS(6407), - [anon_sym_DASH] = ACTIONS(6407), - [anon_sym_STAR] = ACTIONS(6407), - [anon_sym_SLASH] = ACTIONS(6407), - [anon_sym_LT] = ACTIONS(6405), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(6405), - [anon_sym_PIPE] = ACTIONS(6405), - [anon_sym_COLON] = ACTIONS(6405), - [anon_sym_SQUOTE] = ACTIONS(6405), - [anon_sym__] = ACTIONS(6407), - [anon_sym_CARET] = ACTIONS(6407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6407), - [anon_sym_DOLLAR] = ACTIONS(6405), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6407), - [anon_sym_BSLASHbegin] = ACTIONS(6405), - [anon_sym_BSLASHtitle] = ACTIONS(6405), - [anon_sym_BSLASHauthor] = ACTIONS(6405), - [anon_sym_BSLASHusepackage] = ACTIONS(6405), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6405), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6405), - [anon_sym_BSLASHinclude] = ACTIONS(6405), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6405), - [anon_sym_BSLASHinput] = ACTIONS(6405), - [anon_sym_BSLASHsubfile] = ACTIONS(6405), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6405), - [anon_sym_BSLASHbibliography] = ACTIONS(6405), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6405), - [anon_sym_BSLASHincludesvg] = ACTIONS(6405), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6405), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6405), - [anon_sym_BSLASHimport] = ACTIONS(6405), - [anon_sym_BSLASHsubimport] = ACTIONS(6405), - [anon_sym_BSLASHinputfrom] = ACTIONS(6405), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6405), - [anon_sym_BSLASHincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHcaption] = ACTIONS(6405), - [anon_sym_BSLASHcite] = ACTIONS(6405), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCite] = ACTIONS(6405), - [anon_sym_BSLASHnocite] = ACTIONS(6405), - [anon_sym_BSLASHcitet] = ACTIONS(6405), - [anon_sym_BSLASHcitep] = ACTIONS(6405), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteauthor] = ACTIONS(6405), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6405), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitetitle] = ACTIONS(6405), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteyear] = ACTIONS(6405), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitedate] = ACTIONS(6405), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteurl] = ACTIONS(6405), - [anon_sym_BSLASHfullcite] = ACTIONS(6405), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6405), - [anon_sym_BSLASHcitealt] = ACTIONS(6405), - [anon_sym_BSLASHcitealp] = ACTIONS(6405), - [anon_sym_BSLASHcitetext] = ACTIONS(6405), - [anon_sym_BSLASHparencite] = ACTIONS(6405), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHParencite] = ACTIONS(6405), - [anon_sym_BSLASHfootcite] = ACTIONS(6405), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6405), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6405), - [anon_sym_BSLASHtextcite] = ACTIONS(6405), - [anon_sym_BSLASHTextcite] = ACTIONS(6405), - [anon_sym_BSLASHsmartcite] = ACTIONS(6405), - [anon_sym_BSLASHSmartcite] = ACTIONS(6405), - [anon_sym_BSLASHsupercite] = ACTIONS(6405), - [anon_sym_BSLASHautocite] = ACTIONS(6405), - [anon_sym_BSLASHAutocite] = ACTIONS(6405), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHvolcite] = ACTIONS(6405), - [anon_sym_BSLASHVolcite] = ACTIONS(6405), - [anon_sym_BSLASHpvolcite] = ACTIONS(6405), - [anon_sym_BSLASHPvolcite] = ACTIONS(6405), - [anon_sym_BSLASHfvolcite] = ACTIONS(6405), - [anon_sym_BSLASHftvolcite] = ACTIONS(6405), - [anon_sym_BSLASHsvolcite] = ACTIONS(6405), - [anon_sym_BSLASHSvolcite] = ACTIONS(6405), - [anon_sym_BSLASHtvolcite] = ACTIONS(6405), - [anon_sym_BSLASHTvolcite] = ACTIONS(6405), - [anon_sym_BSLASHavolcite] = ACTIONS(6405), - [anon_sym_BSLASHAvolcite] = ACTIONS(6405), - [anon_sym_BSLASHnotecite] = ACTIONS(6405), - [anon_sym_BSLASHNotecite] = ACTIONS(6405), - [anon_sym_BSLASHpnotecite] = ACTIONS(6405), - [anon_sym_BSLASHPnotecite] = ACTIONS(6405), - [anon_sym_BSLASHfnotecite] = ACTIONS(6405), - [anon_sym_BSLASHlabel] = ACTIONS(6405), - [anon_sym_BSLASHref] = ACTIONS(6405), - [anon_sym_BSLASHeqref] = ACTIONS(6405), - [anon_sym_BSLASHvref] = ACTIONS(6405), - [anon_sym_BSLASHVref] = ACTIONS(6405), - [anon_sym_BSLASHautoref] = ACTIONS(6405), - [anon_sym_BSLASHpageref] = ACTIONS(6405), - [anon_sym_BSLASHcref] = ACTIONS(6405), - [anon_sym_BSLASHCref] = ACTIONS(6405), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnameCref] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHlabelcref] = ACTIONS(6405), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCrefrange] = ACTIONS(6405), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnewlabel] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6405), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6405), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6407), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHdef] = ACTIONS(6405), - [anon_sym_BSLASHlet] = ACTIONS(6405), - [anon_sym_BSLASHleft] = ACTIONS(6405), - [anon_sym_BSLASHbig] = ACTIONS(6405), - [anon_sym_BSLASHBig] = ACTIONS(6405), - [anon_sym_BSLASHbigg] = ACTIONS(6405), - [anon_sym_BSLASHBigg] = ACTIONS(6405), - [anon_sym_BSLASHbigl] = ACTIONS(6405), - [anon_sym_BSLASHBigl] = ACTIONS(6405), - [anon_sym_BSLASHbiggl] = ACTIONS(6405), - [anon_sym_BSLASHBiggl] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6405), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6405), - [anon_sym_BSLASHgls] = ACTIONS(6405), - [anon_sym_BSLASHGls] = ACTIONS(6405), - [anon_sym_BSLASHGLS] = ACTIONS(6405), - [anon_sym_BSLASHglspl] = ACTIONS(6405), - [anon_sym_BSLASHGlspl] = ACTIONS(6405), - [anon_sym_BSLASHGLSpl] = ACTIONS(6405), - [anon_sym_BSLASHglsdisp] = ACTIONS(6405), - [anon_sym_BSLASHglslink] = ACTIONS(6405), - [anon_sym_BSLASHglstext] = ACTIONS(6405), - [anon_sym_BSLASHGlstext] = ACTIONS(6405), - [anon_sym_BSLASHGLStext] = ACTIONS(6405), - [anon_sym_BSLASHglsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6405), - [anon_sym_BSLASHglsplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSplural] = ACTIONS(6405), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHglsname] = ACTIONS(6405), - [anon_sym_BSLASHGlsname] = ACTIONS(6405), - [anon_sym_BSLASHGLSname] = ACTIONS(6405), - [anon_sym_BSLASHglssymbol] = ACTIONS(6405), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6405), - [anon_sym_BSLASHglsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6405), - [anon_sym_BSLASHglsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6405), - [anon_sym_BSLASHglsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6405), - [anon_sym_BSLASHglsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6405), - [anon_sym_BSLASHglsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6405), - [anon_sym_BSLASHnewacronym] = ACTIONS(6405), - [anon_sym_BSLASHacrshort] = ACTIONS(6405), - [anon_sym_BSLASHAcrshort] = ACTIONS(6405), - [anon_sym_BSLASHACRshort] = ACTIONS(6405), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6405), - [anon_sym_BSLASHacrlong] = ACTIONS(6405), - [anon_sym_BSLASHAcrlong] = ACTIONS(6405), - [anon_sym_BSLASHACRlong] = ACTIONS(6405), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6405), - [anon_sym_BSLASHacrfull] = ACTIONS(6405), - [anon_sym_BSLASHAcrfull] = ACTIONS(6405), - [anon_sym_BSLASHACRfull] = ACTIONS(6405), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6405), - [anon_sym_BSLASHacs] = ACTIONS(6405), - [anon_sym_BSLASHAcs] = ACTIONS(6405), - [anon_sym_BSLASHacsp] = ACTIONS(6405), - [anon_sym_BSLASHAcsp] = ACTIONS(6405), - [anon_sym_BSLASHacl] = ACTIONS(6405), - [anon_sym_BSLASHAcl] = ACTIONS(6405), - [anon_sym_BSLASHaclp] = ACTIONS(6405), - [anon_sym_BSLASHAclp] = ACTIONS(6405), - [anon_sym_BSLASHacf] = ACTIONS(6405), - [anon_sym_BSLASHAcf] = ACTIONS(6405), - [anon_sym_BSLASHacfp] = ACTIONS(6405), - [anon_sym_BSLASHAcfp] = ACTIONS(6405), - [anon_sym_BSLASHac] = ACTIONS(6405), - [anon_sym_BSLASHAc] = ACTIONS(6405), - [anon_sym_BSLASHacp] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6405), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6405), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6405), - [anon_sym_BSLASHcolor] = ACTIONS(6405), - [anon_sym_BSLASHcolorbox] = ACTIONS(6405), - [anon_sym_BSLASHtextcolor] = ACTIONS(6405), - [anon_sym_BSLASHpagecolor] = ACTIONS(6405), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6405), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6405), - [anon_sym_BSLASHtext] = ACTIONS(6405), - [anon_sym_BSLASHintertext] = ACTIONS(6405), - [anon_sym_shortintertext] = ACTIONS(6405), - }, - [1707] = { - [sym_command_name] = ACTIONS(6409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6409), - [anon_sym_LBRACK] = ACTIONS(6411), - [anon_sym_RBRACK] = ACTIONS(6411), - [anon_sym_COMMA] = ACTIONS(6411), - [anon_sym_EQ] = ACTIONS(6411), - [anon_sym_LPAREN] = ACTIONS(6411), - [anon_sym_RPAREN] = ACTIONS(6411), - [anon_sym_LBRACE] = ACTIONS(6411), - [sym_word] = ACTIONS(6409), - [sym_placeholder] = ACTIONS(6411), - [anon_sym_PLUS] = ACTIONS(6411), - [anon_sym_DASH] = ACTIONS(6411), - [anon_sym_STAR] = ACTIONS(6411), - [anon_sym_SLASH] = ACTIONS(6411), - [anon_sym_LT] = ACTIONS(6409), - [anon_sym_GT] = ACTIONS(6409), - [anon_sym_BANG] = ACTIONS(6409), - [anon_sym_PIPE] = ACTIONS(6409), - [anon_sym_COLON] = ACTIONS(6409), - [anon_sym_SQUOTE] = ACTIONS(6409), - [anon_sym__] = ACTIONS(6411), - [anon_sym_CARET] = ACTIONS(6411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6411), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6411), - [anon_sym_DOLLAR] = ACTIONS(6409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6411), - [anon_sym_BSLASHbegin] = ACTIONS(6409), - [anon_sym_BSLASHtitle] = ACTIONS(6409), - [anon_sym_BSLASHauthor] = ACTIONS(6409), - [anon_sym_BSLASHusepackage] = ACTIONS(6409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6409), - [anon_sym_BSLASHinclude] = ACTIONS(6409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6409), - [anon_sym_BSLASHinput] = ACTIONS(6409), - [anon_sym_BSLASHsubfile] = ACTIONS(6409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6409), - [anon_sym_BSLASHbibliography] = ACTIONS(6409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6409), - [anon_sym_BSLASHincludesvg] = ACTIONS(6409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6409), - [anon_sym_BSLASHimport] = ACTIONS(6409), - [anon_sym_BSLASHsubimport] = ACTIONS(6409), - [anon_sym_BSLASHinputfrom] = ACTIONS(6409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6409), - [anon_sym_BSLASHincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHcaption] = ACTIONS(6409), - [anon_sym_BSLASHcite] = ACTIONS(6409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCite] = ACTIONS(6409), - [anon_sym_BSLASHnocite] = ACTIONS(6409), - [anon_sym_BSLASHcitet] = ACTIONS(6409), - [anon_sym_BSLASHcitep] = ACTIONS(6409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteauthor] = ACTIONS(6409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitetitle] = ACTIONS(6409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteyear] = ACTIONS(6409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitedate] = ACTIONS(6409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteurl] = ACTIONS(6409), - [anon_sym_BSLASHfullcite] = ACTIONS(6409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6409), - [anon_sym_BSLASHcitealt] = ACTIONS(6409), - [anon_sym_BSLASHcitealp] = ACTIONS(6409), - [anon_sym_BSLASHcitetext] = ACTIONS(6409), - [anon_sym_BSLASHparencite] = ACTIONS(6409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHParencite] = ACTIONS(6409), - [anon_sym_BSLASHfootcite] = ACTIONS(6409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6409), - [anon_sym_BSLASHtextcite] = ACTIONS(6409), - [anon_sym_BSLASHTextcite] = ACTIONS(6409), - [anon_sym_BSLASHsmartcite] = ACTIONS(6409), - [anon_sym_BSLASHSmartcite] = ACTIONS(6409), - [anon_sym_BSLASHsupercite] = ACTIONS(6409), - [anon_sym_BSLASHautocite] = ACTIONS(6409), - [anon_sym_BSLASHAutocite] = ACTIONS(6409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHvolcite] = ACTIONS(6409), - [anon_sym_BSLASHVolcite] = ACTIONS(6409), - [anon_sym_BSLASHpvolcite] = ACTIONS(6409), - [anon_sym_BSLASHPvolcite] = ACTIONS(6409), - [anon_sym_BSLASHfvolcite] = ACTIONS(6409), - [anon_sym_BSLASHftvolcite] = ACTIONS(6409), - [anon_sym_BSLASHsvolcite] = ACTIONS(6409), - [anon_sym_BSLASHSvolcite] = ACTIONS(6409), - [anon_sym_BSLASHtvolcite] = ACTIONS(6409), - [anon_sym_BSLASHTvolcite] = ACTIONS(6409), - [anon_sym_BSLASHavolcite] = ACTIONS(6409), - [anon_sym_BSLASHAvolcite] = ACTIONS(6409), - [anon_sym_BSLASHnotecite] = ACTIONS(6409), - [anon_sym_BSLASHNotecite] = ACTIONS(6409), - [anon_sym_BSLASHpnotecite] = ACTIONS(6409), - [anon_sym_BSLASHPnotecite] = ACTIONS(6409), - [anon_sym_BSLASHfnotecite] = ACTIONS(6409), - [anon_sym_BSLASHlabel] = ACTIONS(6409), - [anon_sym_BSLASHref] = ACTIONS(6409), - [anon_sym_BSLASHeqref] = ACTIONS(6409), - [anon_sym_BSLASHvref] = ACTIONS(6409), - [anon_sym_BSLASHVref] = ACTIONS(6409), - [anon_sym_BSLASHautoref] = ACTIONS(6409), - [anon_sym_BSLASHpageref] = ACTIONS(6409), - [anon_sym_BSLASHcref] = ACTIONS(6409), - [anon_sym_BSLASHCref] = ACTIONS(6409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnameCref] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHlabelcref] = ACTIONS(6409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCrefrange] = ACTIONS(6409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnewlabel] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6411), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHdef] = ACTIONS(6409), - [anon_sym_BSLASHlet] = ACTIONS(6409), - [anon_sym_BSLASHleft] = ACTIONS(6409), - [anon_sym_BSLASHbig] = ACTIONS(6409), - [anon_sym_BSLASHBig] = ACTIONS(6409), - [anon_sym_BSLASHbigg] = ACTIONS(6409), - [anon_sym_BSLASHBigg] = ACTIONS(6409), - [anon_sym_BSLASHbigl] = ACTIONS(6409), - [anon_sym_BSLASHBigl] = ACTIONS(6409), - [anon_sym_BSLASHbiggl] = ACTIONS(6409), - [anon_sym_BSLASHBiggl] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6409), - [anon_sym_BSLASHgls] = ACTIONS(6409), - [anon_sym_BSLASHGls] = ACTIONS(6409), - [anon_sym_BSLASHGLS] = ACTIONS(6409), - [anon_sym_BSLASHglspl] = ACTIONS(6409), - [anon_sym_BSLASHGlspl] = ACTIONS(6409), - [anon_sym_BSLASHGLSpl] = ACTIONS(6409), - [anon_sym_BSLASHglsdisp] = ACTIONS(6409), - [anon_sym_BSLASHglslink] = ACTIONS(6409), - [anon_sym_BSLASHglstext] = ACTIONS(6409), - [anon_sym_BSLASHGlstext] = ACTIONS(6409), - [anon_sym_BSLASHGLStext] = ACTIONS(6409), - [anon_sym_BSLASHglsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6409), - [anon_sym_BSLASHglsplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSplural] = ACTIONS(6409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHglsname] = ACTIONS(6409), - [anon_sym_BSLASHGlsname] = ACTIONS(6409), - [anon_sym_BSLASHGLSname] = ACTIONS(6409), - [anon_sym_BSLASHglssymbol] = ACTIONS(6409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6409), - [anon_sym_BSLASHglsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6409), - [anon_sym_BSLASHglsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6409), - [anon_sym_BSLASHglsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6409), - [anon_sym_BSLASHglsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6409), - [anon_sym_BSLASHglsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6409), - [anon_sym_BSLASHnewacronym] = ACTIONS(6409), - [anon_sym_BSLASHacrshort] = ACTIONS(6409), - [anon_sym_BSLASHAcrshort] = ACTIONS(6409), - [anon_sym_BSLASHACRshort] = ACTIONS(6409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6409), - [anon_sym_BSLASHacrlong] = ACTIONS(6409), - [anon_sym_BSLASHAcrlong] = ACTIONS(6409), - [anon_sym_BSLASHACRlong] = ACTIONS(6409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6409), - [anon_sym_BSLASHacrfull] = ACTIONS(6409), - [anon_sym_BSLASHAcrfull] = ACTIONS(6409), - [anon_sym_BSLASHACRfull] = ACTIONS(6409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6409), - [anon_sym_BSLASHacs] = ACTIONS(6409), - [anon_sym_BSLASHAcs] = ACTIONS(6409), - [anon_sym_BSLASHacsp] = ACTIONS(6409), - [anon_sym_BSLASHAcsp] = ACTIONS(6409), - [anon_sym_BSLASHacl] = ACTIONS(6409), - [anon_sym_BSLASHAcl] = ACTIONS(6409), - [anon_sym_BSLASHaclp] = ACTIONS(6409), - [anon_sym_BSLASHAclp] = ACTIONS(6409), - [anon_sym_BSLASHacf] = ACTIONS(6409), - [anon_sym_BSLASHAcf] = ACTIONS(6409), - [anon_sym_BSLASHacfp] = ACTIONS(6409), - [anon_sym_BSLASHAcfp] = ACTIONS(6409), - [anon_sym_BSLASHac] = ACTIONS(6409), - [anon_sym_BSLASHAc] = ACTIONS(6409), - [anon_sym_BSLASHacp] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6409), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6409), - [anon_sym_BSLASHcolor] = ACTIONS(6409), - [anon_sym_BSLASHcolorbox] = ACTIONS(6409), - [anon_sym_BSLASHtextcolor] = ACTIONS(6409), - [anon_sym_BSLASHpagecolor] = ACTIONS(6409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6409), - [anon_sym_BSLASHtext] = ACTIONS(6409), - [anon_sym_BSLASHintertext] = ACTIONS(6409), - [anon_sym_shortintertext] = ACTIONS(6409), - }, - [1708] = { - [sym_command_name] = ACTIONS(6413), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6413), - [anon_sym_LBRACK] = ACTIONS(6415), - [anon_sym_RBRACK] = ACTIONS(6415), - [anon_sym_COMMA] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(6415), - [anon_sym_LPAREN] = ACTIONS(6415), - [anon_sym_RPAREN] = ACTIONS(6415), - [anon_sym_LBRACE] = ACTIONS(6415), - [sym_word] = ACTIONS(6413), - [sym_placeholder] = ACTIONS(6415), - [anon_sym_PLUS] = ACTIONS(6415), - [anon_sym_DASH] = ACTIONS(6415), - [anon_sym_STAR] = ACTIONS(6415), - [anon_sym_SLASH] = ACTIONS(6415), - [anon_sym_LT] = ACTIONS(6413), - [anon_sym_GT] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(6413), - [anon_sym_PIPE] = ACTIONS(6413), - [anon_sym_COLON] = ACTIONS(6413), - [anon_sym_SQUOTE] = ACTIONS(6413), - [anon_sym__] = ACTIONS(6415), - [anon_sym_CARET] = ACTIONS(6415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6415), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6415), - [anon_sym_DOLLAR] = ACTIONS(6413), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6415), - [anon_sym_BSLASHbegin] = ACTIONS(6413), - [anon_sym_BSLASHtitle] = ACTIONS(6413), - [anon_sym_BSLASHauthor] = ACTIONS(6413), - [anon_sym_BSLASHusepackage] = ACTIONS(6413), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6413), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6413), - [anon_sym_BSLASHinclude] = ACTIONS(6413), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6413), - [anon_sym_BSLASHinput] = ACTIONS(6413), - [anon_sym_BSLASHsubfile] = ACTIONS(6413), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6413), - [anon_sym_BSLASHbibliography] = ACTIONS(6413), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6413), - [anon_sym_BSLASHincludesvg] = ACTIONS(6413), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6413), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6413), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6413), - [anon_sym_BSLASHimport] = ACTIONS(6413), - [anon_sym_BSLASHsubimport] = ACTIONS(6413), - [anon_sym_BSLASHinputfrom] = ACTIONS(6413), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6413), - [anon_sym_BSLASHincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHcaption] = ACTIONS(6413), - [anon_sym_BSLASHcite] = ACTIONS(6413), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCite] = ACTIONS(6413), - [anon_sym_BSLASHnocite] = ACTIONS(6413), - [anon_sym_BSLASHcitet] = ACTIONS(6413), - [anon_sym_BSLASHcitep] = ACTIONS(6413), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteauthor] = ACTIONS(6413), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6413), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitetitle] = ACTIONS(6413), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteyear] = ACTIONS(6413), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitedate] = ACTIONS(6413), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteurl] = ACTIONS(6413), - [anon_sym_BSLASHfullcite] = ACTIONS(6413), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6413), - [anon_sym_BSLASHcitealt] = ACTIONS(6413), - [anon_sym_BSLASHcitealp] = ACTIONS(6413), - [anon_sym_BSLASHcitetext] = ACTIONS(6413), - [anon_sym_BSLASHparencite] = ACTIONS(6413), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHParencite] = ACTIONS(6413), - [anon_sym_BSLASHfootcite] = ACTIONS(6413), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6413), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6413), - [anon_sym_BSLASHtextcite] = ACTIONS(6413), - [anon_sym_BSLASHTextcite] = ACTIONS(6413), - [anon_sym_BSLASHsmartcite] = ACTIONS(6413), - [anon_sym_BSLASHSmartcite] = ACTIONS(6413), - [anon_sym_BSLASHsupercite] = ACTIONS(6413), - [anon_sym_BSLASHautocite] = ACTIONS(6413), - [anon_sym_BSLASHAutocite] = ACTIONS(6413), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHvolcite] = ACTIONS(6413), - [anon_sym_BSLASHVolcite] = ACTIONS(6413), - [anon_sym_BSLASHpvolcite] = ACTIONS(6413), - [anon_sym_BSLASHPvolcite] = ACTIONS(6413), - [anon_sym_BSLASHfvolcite] = ACTIONS(6413), - [anon_sym_BSLASHftvolcite] = ACTIONS(6413), - [anon_sym_BSLASHsvolcite] = ACTIONS(6413), - [anon_sym_BSLASHSvolcite] = ACTIONS(6413), - [anon_sym_BSLASHtvolcite] = ACTIONS(6413), - [anon_sym_BSLASHTvolcite] = ACTIONS(6413), - [anon_sym_BSLASHavolcite] = ACTIONS(6413), - [anon_sym_BSLASHAvolcite] = ACTIONS(6413), - [anon_sym_BSLASHnotecite] = ACTIONS(6413), - [anon_sym_BSLASHNotecite] = ACTIONS(6413), - [anon_sym_BSLASHpnotecite] = ACTIONS(6413), - [anon_sym_BSLASHPnotecite] = ACTIONS(6413), - [anon_sym_BSLASHfnotecite] = ACTIONS(6413), - [anon_sym_BSLASHlabel] = ACTIONS(6413), - [anon_sym_BSLASHref] = ACTIONS(6413), - [anon_sym_BSLASHeqref] = ACTIONS(6413), - [anon_sym_BSLASHvref] = ACTIONS(6413), - [anon_sym_BSLASHVref] = ACTIONS(6413), - [anon_sym_BSLASHautoref] = ACTIONS(6413), - [anon_sym_BSLASHpageref] = ACTIONS(6413), - [anon_sym_BSLASHcref] = ACTIONS(6413), - [anon_sym_BSLASHCref] = ACTIONS(6413), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnameCref] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHlabelcref] = ACTIONS(6413), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCrefrange] = ACTIONS(6413), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnewlabel] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6413), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6413), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6415), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHdef] = ACTIONS(6413), - [anon_sym_BSLASHlet] = ACTIONS(6413), - [anon_sym_BSLASHleft] = ACTIONS(6413), - [anon_sym_BSLASHbig] = ACTIONS(6413), - [anon_sym_BSLASHBig] = ACTIONS(6413), - [anon_sym_BSLASHbigg] = ACTIONS(6413), - [anon_sym_BSLASHBigg] = ACTIONS(6413), - [anon_sym_BSLASHbigl] = ACTIONS(6413), - [anon_sym_BSLASHBigl] = ACTIONS(6413), - [anon_sym_BSLASHbiggl] = ACTIONS(6413), - [anon_sym_BSLASHBiggl] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6413), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6413), - [anon_sym_BSLASHgls] = ACTIONS(6413), - [anon_sym_BSLASHGls] = ACTIONS(6413), - [anon_sym_BSLASHGLS] = ACTIONS(6413), - [anon_sym_BSLASHglspl] = ACTIONS(6413), - [anon_sym_BSLASHGlspl] = ACTIONS(6413), - [anon_sym_BSLASHGLSpl] = ACTIONS(6413), - [anon_sym_BSLASHglsdisp] = ACTIONS(6413), - [anon_sym_BSLASHglslink] = ACTIONS(6413), - [anon_sym_BSLASHglstext] = ACTIONS(6413), - [anon_sym_BSLASHGlstext] = ACTIONS(6413), - [anon_sym_BSLASHGLStext] = ACTIONS(6413), - [anon_sym_BSLASHglsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6413), - [anon_sym_BSLASHglsplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSplural] = ACTIONS(6413), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHglsname] = ACTIONS(6413), - [anon_sym_BSLASHGlsname] = ACTIONS(6413), - [anon_sym_BSLASHGLSname] = ACTIONS(6413), - [anon_sym_BSLASHglssymbol] = ACTIONS(6413), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6413), - [anon_sym_BSLASHglsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6413), - [anon_sym_BSLASHglsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6413), - [anon_sym_BSLASHglsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6413), - [anon_sym_BSLASHglsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6413), - [anon_sym_BSLASHglsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6413), - [anon_sym_BSLASHnewacronym] = ACTIONS(6413), - [anon_sym_BSLASHacrshort] = ACTIONS(6413), - [anon_sym_BSLASHAcrshort] = ACTIONS(6413), - [anon_sym_BSLASHACRshort] = ACTIONS(6413), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6413), - [anon_sym_BSLASHacrlong] = ACTIONS(6413), - [anon_sym_BSLASHAcrlong] = ACTIONS(6413), - [anon_sym_BSLASHACRlong] = ACTIONS(6413), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6413), - [anon_sym_BSLASHacrfull] = ACTIONS(6413), - [anon_sym_BSLASHAcrfull] = ACTIONS(6413), - [anon_sym_BSLASHACRfull] = ACTIONS(6413), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6413), - [anon_sym_BSLASHacs] = ACTIONS(6413), - [anon_sym_BSLASHAcs] = ACTIONS(6413), - [anon_sym_BSLASHacsp] = ACTIONS(6413), - [anon_sym_BSLASHAcsp] = ACTIONS(6413), - [anon_sym_BSLASHacl] = ACTIONS(6413), - [anon_sym_BSLASHAcl] = ACTIONS(6413), - [anon_sym_BSLASHaclp] = ACTIONS(6413), - [anon_sym_BSLASHAclp] = ACTIONS(6413), - [anon_sym_BSLASHacf] = ACTIONS(6413), - [anon_sym_BSLASHAcf] = ACTIONS(6413), - [anon_sym_BSLASHacfp] = ACTIONS(6413), - [anon_sym_BSLASHAcfp] = ACTIONS(6413), - [anon_sym_BSLASHac] = ACTIONS(6413), - [anon_sym_BSLASHAc] = ACTIONS(6413), - [anon_sym_BSLASHacp] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6413), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6413), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6413), - [anon_sym_BSLASHcolor] = ACTIONS(6413), - [anon_sym_BSLASHcolorbox] = ACTIONS(6413), - [anon_sym_BSLASHtextcolor] = ACTIONS(6413), - [anon_sym_BSLASHpagecolor] = ACTIONS(6413), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6413), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6413), - [anon_sym_BSLASHtext] = ACTIONS(6413), - [anon_sym_BSLASHintertext] = ACTIONS(6413), - [anon_sym_shortintertext] = ACTIONS(6413), - }, - [1709] = { - [sym_command_name] = ACTIONS(6193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6193), - [anon_sym_LBRACK] = ACTIONS(6195), - [anon_sym_RBRACK] = ACTIONS(6195), - [anon_sym_COMMA] = ACTIONS(6195), - [anon_sym_EQ] = ACTIONS(6195), - [anon_sym_LPAREN] = ACTIONS(6195), - [anon_sym_RPAREN] = ACTIONS(6195), - [anon_sym_LBRACE] = ACTIONS(6195), - [sym_word] = ACTIONS(6193), - [sym_placeholder] = ACTIONS(6195), - [anon_sym_PLUS] = ACTIONS(6195), - [anon_sym_DASH] = ACTIONS(6195), - [anon_sym_STAR] = ACTIONS(6195), - [anon_sym_SLASH] = ACTIONS(6195), - [anon_sym_LT] = ACTIONS(6193), - [anon_sym_GT] = ACTIONS(6193), - [anon_sym_BANG] = ACTIONS(6193), - [anon_sym_PIPE] = ACTIONS(6193), - [anon_sym_COLON] = ACTIONS(6193), - [anon_sym_SQUOTE] = ACTIONS(6193), - [anon_sym__] = ACTIONS(6195), - [anon_sym_CARET] = ACTIONS(6195), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6195), - [anon_sym_DOLLAR] = ACTIONS(6193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6195), - [anon_sym_BSLASHbegin] = ACTIONS(6193), - [anon_sym_BSLASHtitle] = ACTIONS(6193), - [anon_sym_BSLASHauthor] = ACTIONS(6193), - [anon_sym_BSLASHusepackage] = ACTIONS(6193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6193), - [anon_sym_BSLASHinclude] = ACTIONS(6193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6193), - [anon_sym_BSLASHinput] = ACTIONS(6193), - [anon_sym_BSLASHsubfile] = ACTIONS(6193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6193), - [anon_sym_BSLASHbibliography] = ACTIONS(6193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6193), - [anon_sym_BSLASHincludesvg] = ACTIONS(6193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6193), - [anon_sym_BSLASHimport] = ACTIONS(6193), - [anon_sym_BSLASHsubimport] = ACTIONS(6193), - [anon_sym_BSLASHinputfrom] = ACTIONS(6193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6193), - [anon_sym_BSLASHincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6193), - [anon_sym_BSLASHcaption] = ACTIONS(6193), - [anon_sym_BSLASHcite] = ACTIONS(6193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCite] = ACTIONS(6193), - [anon_sym_BSLASHnocite] = ACTIONS(6193), - [anon_sym_BSLASHcitet] = ACTIONS(6193), - [anon_sym_BSLASHcitep] = ACTIONS(6193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteauthor] = ACTIONS(6193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitetitle] = ACTIONS(6193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteyear] = ACTIONS(6193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6195), - [anon_sym_BSLASHcitedate] = ACTIONS(6193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6195), - [anon_sym_BSLASHciteurl] = ACTIONS(6193), - [anon_sym_BSLASHfullcite] = ACTIONS(6193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6193), - [anon_sym_BSLASHcitealt] = ACTIONS(6193), - [anon_sym_BSLASHcitealp] = ACTIONS(6193), - [anon_sym_BSLASHcitetext] = ACTIONS(6193), - [anon_sym_BSLASHparencite] = ACTIONS(6193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHParencite] = ACTIONS(6193), - [anon_sym_BSLASHfootcite] = ACTIONS(6193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6193), - [anon_sym_BSLASHtextcite] = ACTIONS(6193), - [anon_sym_BSLASHTextcite] = ACTIONS(6193), - [anon_sym_BSLASHsmartcite] = ACTIONS(6193), - [anon_sym_BSLASHSmartcite] = ACTIONS(6193), - [anon_sym_BSLASHsupercite] = ACTIONS(6193), - [anon_sym_BSLASHautocite] = ACTIONS(6193), - [anon_sym_BSLASHAutocite] = ACTIONS(6193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6195), - [anon_sym_BSLASHvolcite] = ACTIONS(6193), - [anon_sym_BSLASHVolcite] = ACTIONS(6193), - [anon_sym_BSLASHpvolcite] = ACTIONS(6193), - [anon_sym_BSLASHPvolcite] = ACTIONS(6193), - [anon_sym_BSLASHfvolcite] = ACTIONS(6193), - [anon_sym_BSLASHftvolcite] = ACTIONS(6193), - [anon_sym_BSLASHsvolcite] = ACTIONS(6193), - [anon_sym_BSLASHSvolcite] = ACTIONS(6193), - [anon_sym_BSLASHtvolcite] = ACTIONS(6193), - [anon_sym_BSLASHTvolcite] = ACTIONS(6193), - [anon_sym_BSLASHavolcite] = ACTIONS(6193), - [anon_sym_BSLASHAvolcite] = ACTIONS(6193), - [anon_sym_BSLASHnotecite] = ACTIONS(6193), - [anon_sym_BSLASHNotecite] = ACTIONS(6193), - [anon_sym_BSLASHpnotecite] = ACTIONS(6193), - [anon_sym_BSLASHPnotecite] = ACTIONS(6193), - [anon_sym_BSLASHfnotecite] = ACTIONS(6193), - [anon_sym_BSLASHlabel] = ACTIONS(6193), - [anon_sym_BSLASHref] = ACTIONS(6193), - [anon_sym_BSLASHeqref] = ACTIONS(6193), - [anon_sym_BSLASHvref] = ACTIONS(6193), - [anon_sym_BSLASHVref] = ACTIONS(6193), - [anon_sym_BSLASHautoref] = ACTIONS(6193), - [anon_sym_BSLASHpageref] = ACTIONS(6193), - [anon_sym_BSLASHcref] = ACTIONS(6193), - [anon_sym_BSLASHCref] = ACTIONS(6193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnameCref] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6193), - [anon_sym_BSLASHlabelcref] = ACTIONS(6193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange] = ACTIONS(6193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHCrefrange] = ACTIONS(6193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6195), - [anon_sym_BSLASHnewlabel] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand] = ACTIONS(6193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6195), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6193), - [anon_sym_BSLASHdef] = ACTIONS(6193), - [anon_sym_BSLASHlet] = ACTIONS(6193), - [anon_sym_BSLASHleft] = ACTIONS(6193), - [anon_sym_BSLASHbig] = ACTIONS(6193), - [anon_sym_BSLASHBig] = ACTIONS(6193), - [anon_sym_BSLASHbigg] = ACTIONS(6193), - [anon_sym_BSLASHBigg] = ACTIONS(6193), - [anon_sym_BSLASHbigl] = ACTIONS(6193), - [anon_sym_BSLASHBigl] = ACTIONS(6193), - [anon_sym_BSLASHbiggl] = ACTIONS(6193), - [anon_sym_BSLASHBiggl] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6193), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6193), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6193), - [anon_sym_BSLASHgls] = ACTIONS(6193), - [anon_sym_BSLASHGls] = ACTIONS(6193), - [anon_sym_BSLASHGLS] = ACTIONS(6193), - [anon_sym_BSLASHglspl] = ACTIONS(6193), - [anon_sym_BSLASHGlspl] = ACTIONS(6193), - [anon_sym_BSLASHGLSpl] = ACTIONS(6193), - [anon_sym_BSLASHglsdisp] = ACTIONS(6193), - [anon_sym_BSLASHglslink] = ACTIONS(6193), - [anon_sym_BSLASHglstext] = ACTIONS(6193), - [anon_sym_BSLASHGlstext] = ACTIONS(6193), - [anon_sym_BSLASHGLStext] = ACTIONS(6193), - [anon_sym_BSLASHglsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6193), - [anon_sym_BSLASHglsplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSplural] = ACTIONS(6193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6193), - [anon_sym_BSLASHglsname] = ACTIONS(6193), - [anon_sym_BSLASHGlsname] = ACTIONS(6193), - [anon_sym_BSLASHGLSname] = ACTIONS(6193), - [anon_sym_BSLASHglssymbol] = ACTIONS(6193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6193), - [anon_sym_BSLASHglsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6193), - [anon_sym_BSLASHglsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6193), - [anon_sym_BSLASHglsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6193), - [anon_sym_BSLASHglsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6193), - [anon_sym_BSLASHglsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6193), - [anon_sym_BSLASHnewacronym] = ACTIONS(6193), - [anon_sym_BSLASHacrshort] = ACTIONS(6193), - [anon_sym_BSLASHAcrshort] = ACTIONS(6193), - [anon_sym_BSLASHACRshort] = ACTIONS(6193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6193), - [anon_sym_BSLASHacrlong] = ACTIONS(6193), - [anon_sym_BSLASHAcrlong] = ACTIONS(6193), - [anon_sym_BSLASHACRlong] = ACTIONS(6193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6193), - [anon_sym_BSLASHacrfull] = ACTIONS(6193), - [anon_sym_BSLASHAcrfull] = ACTIONS(6193), - [anon_sym_BSLASHACRfull] = ACTIONS(6193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6193), - [anon_sym_BSLASHacs] = ACTIONS(6193), - [anon_sym_BSLASHAcs] = ACTIONS(6193), - [anon_sym_BSLASHacsp] = ACTIONS(6193), - [anon_sym_BSLASHAcsp] = ACTIONS(6193), - [anon_sym_BSLASHacl] = ACTIONS(6193), - [anon_sym_BSLASHAcl] = ACTIONS(6193), - [anon_sym_BSLASHaclp] = ACTIONS(6193), - [anon_sym_BSLASHAclp] = ACTIONS(6193), - [anon_sym_BSLASHacf] = ACTIONS(6193), - [anon_sym_BSLASHAcf] = ACTIONS(6193), - [anon_sym_BSLASHacfp] = ACTIONS(6193), - [anon_sym_BSLASHAcfp] = ACTIONS(6193), - [anon_sym_BSLASHac] = ACTIONS(6193), - [anon_sym_BSLASHAc] = ACTIONS(6193), - [anon_sym_BSLASHacp] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6193), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6193), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6195), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), - [anon_sym_BSLASHcolor] = ACTIONS(6193), - [anon_sym_BSLASHcolorbox] = ACTIONS(6193), - [anon_sym_BSLASHtextcolor] = ACTIONS(6193), - [anon_sym_BSLASHpagecolor] = ACTIONS(6193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6193), - [anon_sym_BSLASHtext] = ACTIONS(6193), - [anon_sym_BSLASHintertext] = ACTIONS(6193), - [anon_sym_shortintertext] = ACTIONS(6193), - }, - [1710] = { - [sym_command_name] = ACTIONS(6197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6197), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_RBRACK] = ACTIONS(6199), - [anon_sym_COMMA] = ACTIONS(6199), - [anon_sym_EQ] = ACTIONS(6199), - [anon_sym_LPAREN] = ACTIONS(6199), - [anon_sym_RPAREN] = ACTIONS(6199), - [anon_sym_LBRACE] = ACTIONS(6199), - [sym_word] = ACTIONS(6197), - [sym_placeholder] = ACTIONS(6199), - [anon_sym_PLUS] = ACTIONS(6199), - [anon_sym_DASH] = ACTIONS(6199), - [anon_sym_STAR] = ACTIONS(6199), - [anon_sym_SLASH] = ACTIONS(6199), - [anon_sym_LT] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6197), - [anon_sym_BANG] = ACTIONS(6197), - [anon_sym_PIPE] = ACTIONS(6197), - [anon_sym_COLON] = ACTIONS(6197), - [anon_sym_SQUOTE] = ACTIONS(6197), - [anon_sym__] = ACTIONS(6199), - [anon_sym_CARET] = ACTIONS(6199), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6199), - [anon_sym_DOLLAR] = ACTIONS(6197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6199), - [anon_sym_BSLASHbegin] = ACTIONS(6197), - [anon_sym_BSLASHtitle] = ACTIONS(6197), - [anon_sym_BSLASHauthor] = ACTIONS(6197), - [anon_sym_BSLASHusepackage] = ACTIONS(6197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6197), - [anon_sym_BSLASHinclude] = ACTIONS(6197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6197), - [anon_sym_BSLASHinput] = ACTIONS(6197), - [anon_sym_BSLASHsubfile] = ACTIONS(6197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6197), - [anon_sym_BSLASHbibliography] = ACTIONS(6197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6197), - [anon_sym_BSLASHincludesvg] = ACTIONS(6197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6197), - [anon_sym_BSLASHimport] = ACTIONS(6197), - [anon_sym_BSLASHsubimport] = ACTIONS(6197), - [anon_sym_BSLASHinputfrom] = ACTIONS(6197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6197), - [anon_sym_BSLASHincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6197), - [anon_sym_BSLASHcaption] = ACTIONS(6197), - [anon_sym_BSLASHcite] = ACTIONS(6197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCite] = ACTIONS(6197), - [anon_sym_BSLASHnocite] = ACTIONS(6197), - [anon_sym_BSLASHcitet] = ACTIONS(6197), - [anon_sym_BSLASHcitep] = ACTIONS(6197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteauthor] = ACTIONS(6197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitetitle] = ACTIONS(6197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteyear] = ACTIONS(6197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6199), - [anon_sym_BSLASHcitedate] = ACTIONS(6197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6199), - [anon_sym_BSLASHciteurl] = ACTIONS(6197), - [anon_sym_BSLASHfullcite] = ACTIONS(6197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6197), - [anon_sym_BSLASHcitealt] = ACTIONS(6197), - [anon_sym_BSLASHcitealp] = ACTIONS(6197), - [anon_sym_BSLASHcitetext] = ACTIONS(6197), - [anon_sym_BSLASHparencite] = ACTIONS(6197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHParencite] = ACTIONS(6197), - [anon_sym_BSLASHfootcite] = ACTIONS(6197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6197), - [anon_sym_BSLASHtextcite] = ACTIONS(6197), - [anon_sym_BSLASHTextcite] = ACTIONS(6197), - [anon_sym_BSLASHsmartcite] = ACTIONS(6197), - [anon_sym_BSLASHSmartcite] = ACTIONS(6197), - [anon_sym_BSLASHsupercite] = ACTIONS(6197), - [anon_sym_BSLASHautocite] = ACTIONS(6197), - [anon_sym_BSLASHAutocite] = ACTIONS(6197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6199), - [anon_sym_BSLASHvolcite] = ACTIONS(6197), - [anon_sym_BSLASHVolcite] = ACTIONS(6197), - [anon_sym_BSLASHpvolcite] = ACTIONS(6197), - [anon_sym_BSLASHPvolcite] = ACTIONS(6197), - [anon_sym_BSLASHfvolcite] = ACTIONS(6197), - [anon_sym_BSLASHftvolcite] = ACTIONS(6197), - [anon_sym_BSLASHsvolcite] = ACTIONS(6197), - [anon_sym_BSLASHSvolcite] = ACTIONS(6197), - [anon_sym_BSLASHtvolcite] = ACTIONS(6197), - [anon_sym_BSLASHTvolcite] = ACTIONS(6197), - [anon_sym_BSLASHavolcite] = ACTIONS(6197), - [anon_sym_BSLASHAvolcite] = ACTIONS(6197), - [anon_sym_BSLASHnotecite] = ACTIONS(6197), - [anon_sym_BSLASHNotecite] = ACTIONS(6197), - [anon_sym_BSLASHpnotecite] = ACTIONS(6197), - [anon_sym_BSLASHPnotecite] = ACTIONS(6197), - [anon_sym_BSLASHfnotecite] = ACTIONS(6197), - [anon_sym_BSLASHlabel] = ACTIONS(6197), - [anon_sym_BSLASHref] = ACTIONS(6197), - [anon_sym_BSLASHeqref] = ACTIONS(6197), - [anon_sym_BSLASHvref] = ACTIONS(6197), - [anon_sym_BSLASHVref] = ACTIONS(6197), - [anon_sym_BSLASHautoref] = ACTIONS(6197), - [anon_sym_BSLASHpageref] = ACTIONS(6197), - [anon_sym_BSLASHcref] = ACTIONS(6197), - [anon_sym_BSLASHCref] = ACTIONS(6197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnameCref] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6197), - [anon_sym_BSLASHlabelcref] = ACTIONS(6197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange] = ACTIONS(6197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHCrefrange] = ACTIONS(6197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6199), - [anon_sym_BSLASHnewlabel] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand] = ACTIONS(6197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6199), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6197), - [anon_sym_BSLASHdef] = ACTIONS(6197), - [anon_sym_BSLASHlet] = ACTIONS(6197), - [anon_sym_BSLASHleft] = ACTIONS(6197), - [anon_sym_BSLASHbig] = ACTIONS(6197), - [anon_sym_BSLASHBig] = ACTIONS(6197), - [anon_sym_BSLASHbigg] = ACTIONS(6197), - [anon_sym_BSLASHBigg] = ACTIONS(6197), - [anon_sym_BSLASHbigl] = ACTIONS(6197), - [anon_sym_BSLASHBigl] = ACTIONS(6197), - [anon_sym_BSLASHbiggl] = ACTIONS(6197), - [anon_sym_BSLASHBiggl] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6197), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6197), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6197), - [anon_sym_BSLASHgls] = ACTIONS(6197), - [anon_sym_BSLASHGls] = ACTIONS(6197), - [anon_sym_BSLASHGLS] = ACTIONS(6197), - [anon_sym_BSLASHglspl] = ACTIONS(6197), - [anon_sym_BSLASHGlspl] = ACTIONS(6197), - [anon_sym_BSLASHGLSpl] = ACTIONS(6197), - [anon_sym_BSLASHglsdisp] = ACTIONS(6197), - [anon_sym_BSLASHglslink] = ACTIONS(6197), - [anon_sym_BSLASHglstext] = ACTIONS(6197), - [anon_sym_BSLASHGlstext] = ACTIONS(6197), - [anon_sym_BSLASHGLStext] = ACTIONS(6197), - [anon_sym_BSLASHglsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6197), - [anon_sym_BSLASHglsplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSplural] = ACTIONS(6197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6197), - [anon_sym_BSLASHglsname] = ACTIONS(6197), - [anon_sym_BSLASHGlsname] = ACTIONS(6197), - [anon_sym_BSLASHGLSname] = ACTIONS(6197), - [anon_sym_BSLASHglssymbol] = ACTIONS(6197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6197), - [anon_sym_BSLASHglsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6197), - [anon_sym_BSLASHglsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6197), - [anon_sym_BSLASHglsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6197), - [anon_sym_BSLASHglsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6197), - [anon_sym_BSLASHglsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6197), - [anon_sym_BSLASHnewacronym] = ACTIONS(6197), - [anon_sym_BSLASHacrshort] = ACTIONS(6197), - [anon_sym_BSLASHAcrshort] = ACTIONS(6197), - [anon_sym_BSLASHACRshort] = ACTIONS(6197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6197), - [anon_sym_BSLASHacrlong] = ACTIONS(6197), - [anon_sym_BSLASHAcrlong] = ACTIONS(6197), - [anon_sym_BSLASHACRlong] = ACTIONS(6197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6197), - [anon_sym_BSLASHacrfull] = ACTIONS(6197), - [anon_sym_BSLASHAcrfull] = ACTIONS(6197), - [anon_sym_BSLASHACRfull] = ACTIONS(6197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6197), - [anon_sym_BSLASHacs] = ACTIONS(6197), - [anon_sym_BSLASHAcs] = ACTIONS(6197), - [anon_sym_BSLASHacsp] = ACTIONS(6197), - [anon_sym_BSLASHAcsp] = ACTIONS(6197), - [anon_sym_BSLASHacl] = ACTIONS(6197), - [anon_sym_BSLASHAcl] = ACTIONS(6197), - [anon_sym_BSLASHaclp] = ACTIONS(6197), - [anon_sym_BSLASHAclp] = ACTIONS(6197), - [anon_sym_BSLASHacf] = ACTIONS(6197), - [anon_sym_BSLASHAcf] = ACTIONS(6197), - [anon_sym_BSLASHacfp] = ACTIONS(6197), - [anon_sym_BSLASHAcfp] = ACTIONS(6197), - [anon_sym_BSLASHac] = ACTIONS(6197), - [anon_sym_BSLASHAc] = ACTIONS(6197), - [anon_sym_BSLASHacp] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6197), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6197), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6199), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6197), - [anon_sym_BSLASHcolor] = ACTIONS(6197), - [anon_sym_BSLASHcolorbox] = ACTIONS(6197), - [anon_sym_BSLASHtextcolor] = ACTIONS(6197), - [anon_sym_BSLASHpagecolor] = ACTIONS(6197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6197), - [anon_sym_BSLASHtext] = ACTIONS(6197), - [anon_sym_BSLASHintertext] = ACTIONS(6197), - [anon_sym_shortintertext] = ACTIONS(6197), - }, - [1711] = { - [sym_command_name] = ACTIONS(6205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6205), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_RBRACK] = ACTIONS(6207), - [anon_sym_COMMA] = ACTIONS(6207), - [anon_sym_EQ] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_RPAREN] = ACTIONS(6207), - [anon_sym_LBRACE] = ACTIONS(6207), - [sym_word] = ACTIONS(6205), - [sym_placeholder] = ACTIONS(6207), - [anon_sym_PLUS] = ACTIONS(6207), - [anon_sym_DASH] = ACTIONS(6207), - [anon_sym_STAR] = ACTIONS(6207), - [anon_sym_SLASH] = ACTIONS(6207), - [anon_sym_LT] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6205), - [anon_sym_BANG] = ACTIONS(6205), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_COLON] = ACTIONS(6205), - [anon_sym_SQUOTE] = ACTIONS(6205), - [anon_sym__] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6207), - [anon_sym_DOLLAR] = ACTIONS(6205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6207), - [anon_sym_BSLASHbegin] = ACTIONS(6205), - [anon_sym_BSLASHtitle] = ACTIONS(6205), - [anon_sym_BSLASHauthor] = ACTIONS(6205), - [anon_sym_BSLASHusepackage] = ACTIONS(6205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6205), - [anon_sym_BSLASHinclude] = ACTIONS(6205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6205), - [anon_sym_BSLASHinput] = ACTIONS(6205), - [anon_sym_BSLASHsubfile] = ACTIONS(6205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6205), - [anon_sym_BSLASHbibliography] = ACTIONS(6205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6205), - [anon_sym_BSLASHincludesvg] = ACTIONS(6205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6205), - [anon_sym_BSLASHimport] = ACTIONS(6205), - [anon_sym_BSLASHsubimport] = ACTIONS(6205), - [anon_sym_BSLASHinputfrom] = ACTIONS(6205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6205), - [anon_sym_BSLASHincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6205), - [anon_sym_BSLASHcaption] = ACTIONS(6205), - [anon_sym_BSLASHcite] = ACTIONS(6205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCite] = ACTIONS(6205), - [anon_sym_BSLASHnocite] = ACTIONS(6205), - [anon_sym_BSLASHcitet] = ACTIONS(6205), - [anon_sym_BSLASHcitep] = ACTIONS(6205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteauthor] = ACTIONS(6205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitetitle] = ACTIONS(6205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteyear] = ACTIONS(6205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6207), - [anon_sym_BSLASHcitedate] = ACTIONS(6205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6207), - [anon_sym_BSLASHciteurl] = ACTIONS(6205), - [anon_sym_BSLASHfullcite] = ACTIONS(6205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6205), - [anon_sym_BSLASHcitealt] = ACTIONS(6205), - [anon_sym_BSLASHcitealp] = ACTIONS(6205), - [anon_sym_BSLASHcitetext] = ACTIONS(6205), - [anon_sym_BSLASHparencite] = ACTIONS(6205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHParencite] = ACTIONS(6205), - [anon_sym_BSLASHfootcite] = ACTIONS(6205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6205), - [anon_sym_BSLASHtextcite] = ACTIONS(6205), - [anon_sym_BSLASHTextcite] = ACTIONS(6205), - [anon_sym_BSLASHsmartcite] = ACTIONS(6205), - [anon_sym_BSLASHSmartcite] = ACTIONS(6205), - [anon_sym_BSLASHsupercite] = ACTIONS(6205), - [anon_sym_BSLASHautocite] = ACTIONS(6205), - [anon_sym_BSLASHAutocite] = ACTIONS(6205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6207), - [anon_sym_BSLASHvolcite] = ACTIONS(6205), - [anon_sym_BSLASHVolcite] = ACTIONS(6205), - [anon_sym_BSLASHpvolcite] = ACTIONS(6205), - [anon_sym_BSLASHPvolcite] = ACTIONS(6205), - [anon_sym_BSLASHfvolcite] = ACTIONS(6205), - [anon_sym_BSLASHftvolcite] = ACTIONS(6205), - [anon_sym_BSLASHsvolcite] = ACTIONS(6205), - [anon_sym_BSLASHSvolcite] = ACTIONS(6205), - [anon_sym_BSLASHtvolcite] = ACTIONS(6205), - [anon_sym_BSLASHTvolcite] = ACTIONS(6205), - [anon_sym_BSLASHavolcite] = ACTIONS(6205), - [anon_sym_BSLASHAvolcite] = ACTIONS(6205), - [anon_sym_BSLASHnotecite] = ACTIONS(6205), - [anon_sym_BSLASHNotecite] = ACTIONS(6205), - [anon_sym_BSLASHpnotecite] = ACTIONS(6205), - [anon_sym_BSLASHPnotecite] = ACTIONS(6205), - [anon_sym_BSLASHfnotecite] = ACTIONS(6205), - [anon_sym_BSLASHlabel] = ACTIONS(6205), - [anon_sym_BSLASHref] = ACTIONS(6205), - [anon_sym_BSLASHeqref] = ACTIONS(6205), - [anon_sym_BSLASHvref] = ACTIONS(6205), - [anon_sym_BSLASHVref] = ACTIONS(6205), - [anon_sym_BSLASHautoref] = ACTIONS(6205), - [anon_sym_BSLASHpageref] = ACTIONS(6205), - [anon_sym_BSLASHcref] = ACTIONS(6205), - [anon_sym_BSLASHCref] = ACTIONS(6205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnameCref] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6205), - [anon_sym_BSLASHlabelcref] = ACTIONS(6205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange] = ACTIONS(6205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHCrefrange] = ACTIONS(6205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6207), - [anon_sym_BSLASHnewlabel] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand] = ACTIONS(6205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6205), - [anon_sym_BSLASHdef] = ACTIONS(6205), - [anon_sym_BSLASHlet] = ACTIONS(6205), - [anon_sym_BSLASHleft] = ACTIONS(6205), - [anon_sym_BSLASHbig] = ACTIONS(6205), - [anon_sym_BSLASHBig] = ACTIONS(6205), - [anon_sym_BSLASHbigg] = ACTIONS(6205), - [anon_sym_BSLASHBigg] = ACTIONS(6205), - [anon_sym_BSLASHbigl] = ACTIONS(6205), - [anon_sym_BSLASHBigl] = ACTIONS(6205), - [anon_sym_BSLASHbiggl] = ACTIONS(6205), - [anon_sym_BSLASHBiggl] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6205), - [anon_sym_BSLASHgls] = ACTIONS(6205), - [anon_sym_BSLASHGls] = ACTIONS(6205), - [anon_sym_BSLASHGLS] = ACTIONS(6205), - [anon_sym_BSLASHglspl] = ACTIONS(6205), - [anon_sym_BSLASHGlspl] = ACTIONS(6205), - [anon_sym_BSLASHGLSpl] = ACTIONS(6205), - [anon_sym_BSLASHglsdisp] = ACTIONS(6205), - [anon_sym_BSLASHglslink] = ACTIONS(6205), - [anon_sym_BSLASHglstext] = ACTIONS(6205), - [anon_sym_BSLASHGlstext] = ACTIONS(6205), - [anon_sym_BSLASHGLStext] = ACTIONS(6205), - [anon_sym_BSLASHglsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6205), - [anon_sym_BSLASHglsplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSplural] = ACTIONS(6205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6205), - [anon_sym_BSLASHglsname] = ACTIONS(6205), - [anon_sym_BSLASHGlsname] = ACTIONS(6205), - [anon_sym_BSLASHGLSname] = ACTIONS(6205), - [anon_sym_BSLASHglssymbol] = ACTIONS(6205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6205), - [anon_sym_BSLASHglsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6205), - [anon_sym_BSLASHglsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6205), - [anon_sym_BSLASHglsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6205), - [anon_sym_BSLASHglsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6205), - [anon_sym_BSLASHglsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6205), - [anon_sym_BSLASHnewacronym] = ACTIONS(6205), - [anon_sym_BSLASHacrshort] = ACTIONS(6205), - [anon_sym_BSLASHAcrshort] = ACTIONS(6205), - [anon_sym_BSLASHACRshort] = ACTIONS(6205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6205), - [anon_sym_BSLASHacrlong] = ACTIONS(6205), - [anon_sym_BSLASHAcrlong] = ACTIONS(6205), - [anon_sym_BSLASHACRlong] = ACTIONS(6205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6205), - [anon_sym_BSLASHacrfull] = ACTIONS(6205), - [anon_sym_BSLASHAcrfull] = ACTIONS(6205), - [anon_sym_BSLASHACRfull] = ACTIONS(6205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6205), - [anon_sym_BSLASHacs] = ACTIONS(6205), - [anon_sym_BSLASHAcs] = ACTIONS(6205), - [anon_sym_BSLASHacsp] = ACTIONS(6205), - [anon_sym_BSLASHAcsp] = ACTIONS(6205), - [anon_sym_BSLASHacl] = ACTIONS(6205), - [anon_sym_BSLASHAcl] = ACTIONS(6205), - [anon_sym_BSLASHaclp] = ACTIONS(6205), - [anon_sym_BSLASHAclp] = ACTIONS(6205), - [anon_sym_BSLASHacf] = ACTIONS(6205), - [anon_sym_BSLASHAcf] = ACTIONS(6205), - [anon_sym_BSLASHacfp] = ACTIONS(6205), - [anon_sym_BSLASHAcfp] = ACTIONS(6205), - [anon_sym_BSLASHac] = ACTIONS(6205), - [anon_sym_BSLASHAc] = ACTIONS(6205), - [anon_sym_BSLASHacp] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6205), - [anon_sym_BSLASHcolor] = ACTIONS(6205), - [anon_sym_BSLASHcolorbox] = ACTIONS(6205), - [anon_sym_BSLASHtextcolor] = ACTIONS(6205), - [anon_sym_BSLASHpagecolor] = ACTIONS(6205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6205), - [anon_sym_BSLASHtext] = ACTIONS(6205), - [anon_sym_BSLASHintertext] = ACTIONS(6205), - [anon_sym_shortintertext] = ACTIONS(6205), - }, - [1712] = { - [sym_curly_group] = STATE(1819), - [sym_brack_group_text] = STATE(2760), - [sym_command_name] = ACTIONS(5987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_LPAREN] = ACTIONS(5991), - [anon_sym_RPAREN] = ACTIONS(5991), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5991), - [anon_sym_BSLASHand] = ACTIONS(5987), - [sym_word] = ACTIONS(5987), - [sym_placeholder] = ACTIONS(5991), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_SQUOTE] = ACTIONS(5987), - [anon_sym__] = ACTIONS(5991), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5991), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5991), - [anon_sym_DOLLAR] = ACTIONS(5987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5991), - [anon_sym_BSLASHtitle] = ACTIONS(5987), - [anon_sym_BSLASHauthor] = ACTIONS(5987), - [anon_sym_BSLASHusepackage] = ACTIONS(5987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), - [anon_sym_BSLASHinclude] = ACTIONS(5987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), - [anon_sym_BSLASHinput] = ACTIONS(5987), - [anon_sym_BSLASHsubfile] = ACTIONS(5987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), - [anon_sym_BSLASHbibliography] = ACTIONS(5987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), - [anon_sym_BSLASHincludesvg] = ACTIONS(5987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), - [anon_sym_BSLASHimport] = ACTIONS(5987), - [anon_sym_BSLASHsubimport] = ACTIONS(5987), - [anon_sym_BSLASHinputfrom] = ACTIONS(5987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), - [anon_sym_BSLASHincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHcaption] = ACTIONS(5987), - [anon_sym_BSLASHcite] = ACTIONS(5987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCite] = ACTIONS(5987), - [anon_sym_BSLASHnocite] = ACTIONS(5987), - [anon_sym_BSLASHcitet] = ACTIONS(5987), - [anon_sym_BSLASHcitep] = ACTIONS(5987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteauthor] = ACTIONS(5987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitetitle] = ACTIONS(5987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteyear] = ACTIONS(5987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitedate] = ACTIONS(5987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteurl] = ACTIONS(5987), - [anon_sym_BSLASHfullcite] = ACTIONS(5987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), - [anon_sym_BSLASHcitealt] = ACTIONS(5987), - [anon_sym_BSLASHcitealp] = ACTIONS(5987), - [anon_sym_BSLASHcitetext] = ACTIONS(5987), - [anon_sym_BSLASHparencite] = ACTIONS(5987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHParencite] = ACTIONS(5987), - [anon_sym_BSLASHfootcite] = ACTIONS(5987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), - [anon_sym_BSLASHtextcite] = ACTIONS(5987), - [anon_sym_BSLASHTextcite] = ACTIONS(5987), - [anon_sym_BSLASHsmartcite] = ACTIONS(5987), - [anon_sym_BSLASHSmartcite] = ACTIONS(5987), - [anon_sym_BSLASHsupercite] = ACTIONS(5987), - [anon_sym_BSLASHautocite] = ACTIONS(5987), - [anon_sym_BSLASHAutocite] = ACTIONS(5987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHvolcite] = ACTIONS(5987), - [anon_sym_BSLASHVolcite] = ACTIONS(5987), - [anon_sym_BSLASHpvolcite] = ACTIONS(5987), - [anon_sym_BSLASHPvolcite] = ACTIONS(5987), - [anon_sym_BSLASHfvolcite] = ACTIONS(5987), - [anon_sym_BSLASHftvolcite] = ACTIONS(5987), - [anon_sym_BSLASHsvolcite] = ACTIONS(5987), - [anon_sym_BSLASHSvolcite] = ACTIONS(5987), - [anon_sym_BSLASHtvolcite] = ACTIONS(5987), - [anon_sym_BSLASHTvolcite] = ACTIONS(5987), - [anon_sym_BSLASHavolcite] = ACTIONS(5987), - [anon_sym_BSLASHAvolcite] = ACTIONS(5987), - [anon_sym_BSLASHnotecite] = ACTIONS(5987), - [anon_sym_BSLASHNotecite] = ACTIONS(5987), - [anon_sym_BSLASHpnotecite] = ACTIONS(5987), - [anon_sym_BSLASHPnotecite] = ACTIONS(5987), - [anon_sym_BSLASHfnotecite] = ACTIONS(5987), - [anon_sym_BSLASHlabel] = ACTIONS(5987), - [anon_sym_BSLASHref] = ACTIONS(5987), - [anon_sym_BSLASHeqref] = ACTIONS(5987), - [anon_sym_BSLASHvref] = ACTIONS(5987), - [anon_sym_BSLASHVref] = ACTIONS(5987), - [anon_sym_BSLASHautoref] = ACTIONS(5987), - [anon_sym_BSLASHpageref] = ACTIONS(5987), - [anon_sym_BSLASHcref] = ACTIONS(5987), - [anon_sym_BSLASHCref] = ACTIONS(5987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnameCref] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHlabelcref] = ACTIONS(5987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCrefrange] = ACTIONS(5987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnewlabel] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5991), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHdef] = ACTIONS(5987), - [anon_sym_BSLASHlet] = ACTIONS(5987), - [anon_sym_BSLASHleft] = ACTIONS(5987), - [anon_sym_BSLASHbig] = ACTIONS(5987), - [anon_sym_BSLASHBig] = ACTIONS(5987), - [anon_sym_BSLASHbigg] = ACTIONS(5987), - [anon_sym_BSLASHBigg] = ACTIONS(5987), - [anon_sym_BSLASHbigl] = ACTIONS(5987), - [anon_sym_BSLASHBigl] = ACTIONS(5987), - [anon_sym_BSLASHbiggl] = ACTIONS(5987), - [anon_sym_BSLASHBiggl] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), - [anon_sym_BSLASHgls] = ACTIONS(5987), - [anon_sym_BSLASHGls] = ACTIONS(5987), - [anon_sym_BSLASHGLS] = ACTIONS(5987), - [anon_sym_BSLASHglspl] = ACTIONS(5987), - [anon_sym_BSLASHGlspl] = ACTIONS(5987), - [anon_sym_BSLASHGLSpl] = ACTIONS(5987), - [anon_sym_BSLASHglsdisp] = ACTIONS(5987), - [anon_sym_BSLASHglslink] = ACTIONS(5987), - [anon_sym_BSLASHglstext] = ACTIONS(5987), - [anon_sym_BSLASHGlstext] = ACTIONS(5987), - [anon_sym_BSLASHGLStext] = ACTIONS(5987), - [anon_sym_BSLASHglsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), - [anon_sym_BSLASHglsplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSplural] = ACTIONS(5987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHglsname] = ACTIONS(5987), - [anon_sym_BSLASHGlsname] = ACTIONS(5987), - [anon_sym_BSLASHGLSname] = ACTIONS(5987), - [anon_sym_BSLASHglssymbol] = ACTIONS(5987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), - [anon_sym_BSLASHglsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), - [anon_sym_BSLASHglsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), - [anon_sym_BSLASHglsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), - [anon_sym_BSLASHglsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), - [anon_sym_BSLASHglsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), - [anon_sym_BSLASHnewacronym] = ACTIONS(5987), - [anon_sym_BSLASHacrshort] = ACTIONS(5987), - [anon_sym_BSLASHAcrshort] = ACTIONS(5987), - [anon_sym_BSLASHACRshort] = ACTIONS(5987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), - [anon_sym_BSLASHacrlong] = ACTIONS(5987), - [anon_sym_BSLASHAcrlong] = ACTIONS(5987), - [anon_sym_BSLASHACRlong] = ACTIONS(5987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), - [anon_sym_BSLASHacrfull] = ACTIONS(5987), - [anon_sym_BSLASHAcrfull] = ACTIONS(5987), - [anon_sym_BSLASHACRfull] = ACTIONS(5987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), - [anon_sym_BSLASHacs] = ACTIONS(5987), - [anon_sym_BSLASHAcs] = ACTIONS(5987), - [anon_sym_BSLASHacsp] = ACTIONS(5987), - [anon_sym_BSLASHAcsp] = ACTIONS(5987), - [anon_sym_BSLASHacl] = ACTIONS(5987), - [anon_sym_BSLASHAcl] = ACTIONS(5987), - [anon_sym_BSLASHaclp] = ACTIONS(5987), - [anon_sym_BSLASHAclp] = ACTIONS(5987), - [anon_sym_BSLASHacf] = ACTIONS(5987), - [anon_sym_BSLASHAcf] = ACTIONS(5987), - [anon_sym_BSLASHacfp] = ACTIONS(5987), - [anon_sym_BSLASHAcfp] = ACTIONS(5987), - [anon_sym_BSLASHac] = ACTIONS(5987), - [anon_sym_BSLASHAc] = ACTIONS(5987), - [anon_sym_BSLASHacp] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), - [anon_sym_BSLASHcolor] = ACTIONS(5987), - [anon_sym_BSLASHcolorbox] = ACTIONS(5987), - [anon_sym_BSLASHtextcolor] = ACTIONS(5987), - [anon_sym_BSLASHpagecolor] = ACTIONS(5987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), - [anon_sym_BSLASHtext] = ACTIONS(5987), - [anon_sym_BSLASHintertext] = ACTIONS(5987), - [anon_sym_shortintertext] = ACTIONS(5987), - }, - [1713] = { - [sym_command_name] = ACTIONS(6209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6209), - [anon_sym_LBRACK] = ACTIONS(6211), - [anon_sym_RBRACK] = ACTIONS(6211), - [anon_sym_COMMA] = ACTIONS(6211), - [anon_sym_EQ] = ACTIONS(6211), - [anon_sym_LPAREN] = ACTIONS(6211), - [anon_sym_RPAREN] = ACTIONS(6211), - [anon_sym_LBRACE] = ACTIONS(6211), - [sym_word] = ACTIONS(6209), - [sym_placeholder] = ACTIONS(6211), - [anon_sym_PLUS] = ACTIONS(6211), - [anon_sym_DASH] = ACTIONS(6211), - [anon_sym_STAR] = ACTIONS(6211), - [anon_sym_SLASH] = ACTIONS(6211), - [anon_sym_LT] = ACTIONS(6209), - [anon_sym_GT] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [anon_sym_PIPE] = ACTIONS(6209), - [anon_sym_COLON] = ACTIONS(6209), - [anon_sym_SQUOTE] = ACTIONS(6209), - [anon_sym__] = ACTIONS(6211), - [anon_sym_CARET] = ACTIONS(6211), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6211), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6211), - [anon_sym_DOLLAR] = ACTIONS(6209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6211), - [anon_sym_BSLASHbegin] = ACTIONS(6209), - [anon_sym_BSLASHtitle] = ACTIONS(6209), - [anon_sym_BSLASHauthor] = ACTIONS(6209), - [anon_sym_BSLASHusepackage] = ACTIONS(6209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6209), - [anon_sym_BSLASHinclude] = ACTIONS(6209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6209), - [anon_sym_BSLASHinput] = ACTIONS(6209), - [anon_sym_BSLASHsubfile] = ACTIONS(6209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6209), - [anon_sym_BSLASHbibliography] = ACTIONS(6209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6209), - [anon_sym_BSLASHincludesvg] = ACTIONS(6209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6209), - [anon_sym_BSLASHimport] = ACTIONS(6209), - [anon_sym_BSLASHsubimport] = ACTIONS(6209), - [anon_sym_BSLASHinputfrom] = ACTIONS(6209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6209), - [anon_sym_BSLASHincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6209), - [anon_sym_BSLASHcaption] = ACTIONS(6209), - [anon_sym_BSLASHcite] = ACTIONS(6209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCite] = ACTIONS(6209), - [anon_sym_BSLASHnocite] = ACTIONS(6209), - [anon_sym_BSLASHcitet] = ACTIONS(6209), - [anon_sym_BSLASHcitep] = ACTIONS(6209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteauthor] = ACTIONS(6209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitetitle] = ACTIONS(6209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteyear] = ACTIONS(6209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6211), - [anon_sym_BSLASHcitedate] = ACTIONS(6209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6211), - [anon_sym_BSLASHciteurl] = ACTIONS(6209), - [anon_sym_BSLASHfullcite] = ACTIONS(6209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6209), - [anon_sym_BSLASHcitealt] = ACTIONS(6209), - [anon_sym_BSLASHcitealp] = ACTIONS(6209), - [anon_sym_BSLASHcitetext] = ACTIONS(6209), - [anon_sym_BSLASHparencite] = ACTIONS(6209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHParencite] = ACTIONS(6209), - [anon_sym_BSLASHfootcite] = ACTIONS(6209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6209), - [anon_sym_BSLASHtextcite] = ACTIONS(6209), - [anon_sym_BSLASHTextcite] = ACTIONS(6209), - [anon_sym_BSLASHsmartcite] = ACTIONS(6209), - [anon_sym_BSLASHSmartcite] = ACTIONS(6209), - [anon_sym_BSLASHsupercite] = ACTIONS(6209), - [anon_sym_BSLASHautocite] = ACTIONS(6209), - [anon_sym_BSLASHAutocite] = ACTIONS(6209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6211), - [anon_sym_BSLASHvolcite] = ACTIONS(6209), - [anon_sym_BSLASHVolcite] = ACTIONS(6209), - [anon_sym_BSLASHpvolcite] = ACTIONS(6209), - [anon_sym_BSLASHPvolcite] = ACTIONS(6209), - [anon_sym_BSLASHfvolcite] = ACTIONS(6209), - [anon_sym_BSLASHftvolcite] = ACTIONS(6209), - [anon_sym_BSLASHsvolcite] = ACTIONS(6209), - [anon_sym_BSLASHSvolcite] = ACTIONS(6209), - [anon_sym_BSLASHtvolcite] = ACTIONS(6209), - [anon_sym_BSLASHTvolcite] = ACTIONS(6209), - [anon_sym_BSLASHavolcite] = ACTIONS(6209), - [anon_sym_BSLASHAvolcite] = ACTIONS(6209), - [anon_sym_BSLASHnotecite] = ACTIONS(6209), - [anon_sym_BSLASHNotecite] = ACTIONS(6209), - [anon_sym_BSLASHpnotecite] = ACTIONS(6209), - [anon_sym_BSLASHPnotecite] = ACTIONS(6209), - [anon_sym_BSLASHfnotecite] = ACTIONS(6209), - [anon_sym_BSLASHlabel] = ACTIONS(6209), - [anon_sym_BSLASHref] = ACTIONS(6209), - [anon_sym_BSLASHeqref] = ACTIONS(6209), - [anon_sym_BSLASHvref] = ACTIONS(6209), - [anon_sym_BSLASHVref] = ACTIONS(6209), - [anon_sym_BSLASHautoref] = ACTIONS(6209), - [anon_sym_BSLASHpageref] = ACTIONS(6209), - [anon_sym_BSLASHcref] = ACTIONS(6209), - [anon_sym_BSLASHCref] = ACTIONS(6209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnameCref] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6209), - [anon_sym_BSLASHlabelcref] = ACTIONS(6209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange] = ACTIONS(6209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHCrefrange] = ACTIONS(6209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6211), - [anon_sym_BSLASHnewlabel] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand] = ACTIONS(6209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6211), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6211), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6209), - [anon_sym_BSLASHdef] = ACTIONS(6209), - [anon_sym_BSLASHlet] = ACTIONS(6209), - [anon_sym_BSLASHleft] = ACTIONS(6209), - [anon_sym_BSLASHbig] = ACTIONS(6209), - [anon_sym_BSLASHBig] = ACTIONS(6209), - [anon_sym_BSLASHbigg] = ACTIONS(6209), - [anon_sym_BSLASHBigg] = ACTIONS(6209), - [anon_sym_BSLASHbigl] = ACTIONS(6209), - [anon_sym_BSLASHBigl] = ACTIONS(6209), - [anon_sym_BSLASHbiggl] = ACTIONS(6209), - [anon_sym_BSLASHBiggl] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6209), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6209), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6209), - [anon_sym_BSLASHgls] = ACTIONS(6209), - [anon_sym_BSLASHGls] = ACTIONS(6209), - [anon_sym_BSLASHGLS] = ACTIONS(6209), - [anon_sym_BSLASHglspl] = ACTIONS(6209), - [anon_sym_BSLASHGlspl] = ACTIONS(6209), - [anon_sym_BSLASHGLSpl] = ACTIONS(6209), - [anon_sym_BSLASHglsdisp] = ACTIONS(6209), - [anon_sym_BSLASHglslink] = ACTIONS(6209), - [anon_sym_BSLASHglstext] = ACTIONS(6209), - [anon_sym_BSLASHGlstext] = ACTIONS(6209), - [anon_sym_BSLASHGLStext] = ACTIONS(6209), - [anon_sym_BSLASHglsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6209), - [anon_sym_BSLASHglsplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSplural] = ACTIONS(6209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6209), - [anon_sym_BSLASHglsname] = ACTIONS(6209), - [anon_sym_BSLASHGlsname] = ACTIONS(6209), - [anon_sym_BSLASHGLSname] = ACTIONS(6209), - [anon_sym_BSLASHglssymbol] = ACTIONS(6209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6209), - [anon_sym_BSLASHglsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6209), - [anon_sym_BSLASHglsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6209), - [anon_sym_BSLASHglsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6209), - [anon_sym_BSLASHglsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6209), - [anon_sym_BSLASHglsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6209), - [anon_sym_BSLASHnewacronym] = ACTIONS(6209), - [anon_sym_BSLASHacrshort] = ACTIONS(6209), - [anon_sym_BSLASHAcrshort] = ACTIONS(6209), - [anon_sym_BSLASHACRshort] = ACTIONS(6209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6209), - [anon_sym_BSLASHacrlong] = ACTIONS(6209), - [anon_sym_BSLASHAcrlong] = ACTIONS(6209), - [anon_sym_BSLASHACRlong] = ACTIONS(6209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6209), - [anon_sym_BSLASHacrfull] = ACTIONS(6209), - [anon_sym_BSLASHAcrfull] = ACTIONS(6209), - [anon_sym_BSLASHACRfull] = ACTIONS(6209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6209), - [anon_sym_BSLASHacs] = ACTIONS(6209), - [anon_sym_BSLASHAcs] = ACTIONS(6209), - [anon_sym_BSLASHacsp] = ACTIONS(6209), - [anon_sym_BSLASHAcsp] = ACTIONS(6209), - [anon_sym_BSLASHacl] = ACTIONS(6209), - [anon_sym_BSLASHAcl] = ACTIONS(6209), - [anon_sym_BSLASHaclp] = ACTIONS(6209), - [anon_sym_BSLASHAclp] = ACTIONS(6209), - [anon_sym_BSLASHacf] = ACTIONS(6209), - [anon_sym_BSLASHAcf] = ACTIONS(6209), - [anon_sym_BSLASHacfp] = ACTIONS(6209), - [anon_sym_BSLASHAcfp] = ACTIONS(6209), - [anon_sym_BSLASHac] = ACTIONS(6209), - [anon_sym_BSLASHAc] = ACTIONS(6209), - [anon_sym_BSLASHacp] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6209), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6209), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6211), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6209), - [anon_sym_BSLASHcolor] = ACTIONS(6209), - [anon_sym_BSLASHcolorbox] = ACTIONS(6209), - [anon_sym_BSLASHtextcolor] = ACTIONS(6209), - [anon_sym_BSLASHpagecolor] = ACTIONS(6209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6209), - [anon_sym_BSLASHtext] = ACTIONS(6209), - [anon_sym_BSLASHintertext] = ACTIONS(6209), - [anon_sym_shortintertext] = ACTIONS(6209), - }, - [1714] = { - [sym_command_name] = ACTIONS(6213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(6215), - [anon_sym_RBRACK] = ACTIONS(6215), - [anon_sym_COMMA] = ACTIONS(6215), - [anon_sym_EQ] = ACTIONS(6215), - [anon_sym_LPAREN] = ACTIONS(6215), - [anon_sym_RPAREN] = ACTIONS(6215), - [anon_sym_LBRACE] = ACTIONS(6215), - [sym_word] = ACTIONS(6213), - [sym_placeholder] = ACTIONS(6215), - [anon_sym_PLUS] = ACTIONS(6215), - [anon_sym_DASH] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6215), - [anon_sym_SLASH] = ACTIONS(6215), - [anon_sym_LT] = ACTIONS(6213), - [anon_sym_GT] = ACTIONS(6213), - [anon_sym_BANG] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6213), - [anon_sym_COLON] = ACTIONS(6213), - [anon_sym_SQUOTE] = ACTIONS(6213), - [anon_sym__] = ACTIONS(6215), - [anon_sym_CARET] = ACTIONS(6215), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6215), - [anon_sym_DOLLAR] = ACTIONS(6213), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6215), - [anon_sym_BSLASHbegin] = ACTIONS(6213), - [anon_sym_BSLASHtitle] = ACTIONS(6213), - [anon_sym_BSLASHauthor] = ACTIONS(6213), - [anon_sym_BSLASHusepackage] = ACTIONS(6213), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6213), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6213), - [anon_sym_BSLASHinclude] = ACTIONS(6213), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6213), - [anon_sym_BSLASHinput] = ACTIONS(6213), - [anon_sym_BSLASHsubfile] = ACTIONS(6213), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6213), - [anon_sym_BSLASHbibliography] = ACTIONS(6213), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6213), - [anon_sym_BSLASHincludesvg] = ACTIONS(6213), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6213), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6213), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6213), - [anon_sym_BSLASHimport] = ACTIONS(6213), - [anon_sym_BSLASHsubimport] = ACTIONS(6213), - [anon_sym_BSLASHinputfrom] = ACTIONS(6213), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6213), - [anon_sym_BSLASHincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6213), - [anon_sym_BSLASHcaption] = ACTIONS(6213), - [anon_sym_BSLASHcite] = ACTIONS(6213), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCite] = ACTIONS(6213), - [anon_sym_BSLASHnocite] = ACTIONS(6213), - [anon_sym_BSLASHcitet] = ACTIONS(6213), - [anon_sym_BSLASHcitep] = ACTIONS(6213), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteauthor] = ACTIONS(6213), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6213), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitetitle] = ACTIONS(6213), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteyear] = ACTIONS(6213), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6215), - [anon_sym_BSLASHcitedate] = ACTIONS(6213), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6215), - [anon_sym_BSLASHciteurl] = ACTIONS(6213), - [anon_sym_BSLASHfullcite] = ACTIONS(6213), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6213), - [anon_sym_BSLASHcitealt] = ACTIONS(6213), - [anon_sym_BSLASHcitealp] = ACTIONS(6213), - [anon_sym_BSLASHcitetext] = ACTIONS(6213), - [anon_sym_BSLASHparencite] = ACTIONS(6213), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHParencite] = ACTIONS(6213), - [anon_sym_BSLASHfootcite] = ACTIONS(6213), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6213), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6213), - [anon_sym_BSLASHtextcite] = ACTIONS(6213), - [anon_sym_BSLASHTextcite] = ACTIONS(6213), - [anon_sym_BSLASHsmartcite] = ACTIONS(6213), - [anon_sym_BSLASHSmartcite] = ACTIONS(6213), - [anon_sym_BSLASHsupercite] = ACTIONS(6213), - [anon_sym_BSLASHautocite] = ACTIONS(6213), - [anon_sym_BSLASHAutocite] = ACTIONS(6213), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6215), - [anon_sym_BSLASHvolcite] = ACTIONS(6213), - [anon_sym_BSLASHVolcite] = ACTIONS(6213), - [anon_sym_BSLASHpvolcite] = ACTIONS(6213), - [anon_sym_BSLASHPvolcite] = ACTIONS(6213), - [anon_sym_BSLASHfvolcite] = ACTIONS(6213), - [anon_sym_BSLASHftvolcite] = ACTIONS(6213), - [anon_sym_BSLASHsvolcite] = ACTIONS(6213), - [anon_sym_BSLASHSvolcite] = ACTIONS(6213), - [anon_sym_BSLASHtvolcite] = ACTIONS(6213), - [anon_sym_BSLASHTvolcite] = ACTIONS(6213), - [anon_sym_BSLASHavolcite] = ACTIONS(6213), - [anon_sym_BSLASHAvolcite] = ACTIONS(6213), - [anon_sym_BSLASHnotecite] = ACTIONS(6213), - [anon_sym_BSLASHNotecite] = ACTIONS(6213), - [anon_sym_BSLASHpnotecite] = ACTIONS(6213), - [anon_sym_BSLASHPnotecite] = ACTIONS(6213), - [anon_sym_BSLASHfnotecite] = ACTIONS(6213), - [anon_sym_BSLASHlabel] = ACTIONS(6213), - [anon_sym_BSLASHref] = ACTIONS(6213), - [anon_sym_BSLASHeqref] = ACTIONS(6213), - [anon_sym_BSLASHvref] = ACTIONS(6213), - [anon_sym_BSLASHVref] = ACTIONS(6213), - [anon_sym_BSLASHautoref] = ACTIONS(6213), - [anon_sym_BSLASHpageref] = ACTIONS(6213), - [anon_sym_BSLASHcref] = ACTIONS(6213), - [anon_sym_BSLASHCref] = ACTIONS(6213), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnameCref] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6213), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6213), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6213), - [anon_sym_BSLASHlabelcref] = ACTIONS(6213), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange] = ACTIONS(6213), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHCrefrange] = ACTIONS(6213), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6215), - [anon_sym_BSLASHnewlabel] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand] = ACTIONS(6213), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6213), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6213), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6215), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6213), - [anon_sym_BSLASHdef] = ACTIONS(6213), - [anon_sym_BSLASHlet] = ACTIONS(6213), - [anon_sym_BSLASHleft] = ACTIONS(6213), - [anon_sym_BSLASHbig] = ACTIONS(6213), - [anon_sym_BSLASHBig] = ACTIONS(6213), - [anon_sym_BSLASHbigg] = ACTIONS(6213), - [anon_sym_BSLASHBigg] = ACTIONS(6213), - [anon_sym_BSLASHbigl] = ACTIONS(6213), - [anon_sym_BSLASHBigl] = ACTIONS(6213), - [anon_sym_BSLASHbiggl] = ACTIONS(6213), - [anon_sym_BSLASHBiggl] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6213), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6213), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6213), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6213), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6213), - [anon_sym_BSLASHgls] = ACTIONS(6213), - [anon_sym_BSLASHGls] = ACTIONS(6213), - [anon_sym_BSLASHGLS] = ACTIONS(6213), - [anon_sym_BSLASHglspl] = ACTIONS(6213), - [anon_sym_BSLASHGlspl] = ACTIONS(6213), - [anon_sym_BSLASHGLSpl] = ACTIONS(6213), - [anon_sym_BSLASHglsdisp] = ACTIONS(6213), - [anon_sym_BSLASHglslink] = ACTIONS(6213), - [anon_sym_BSLASHglstext] = ACTIONS(6213), - [anon_sym_BSLASHGlstext] = ACTIONS(6213), - [anon_sym_BSLASHGLStext] = ACTIONS(6213), - [anon_sym_BSLASHglsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6213), - [anon_sym_BSLASHglsplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSplural] = ACTIONS(6213), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6213), - [anon_sym_BSLASHglsname] = ACTIONS(6213), - [anon_sym_BSLASHGlsname] = ACTIONS(6213), - [anon_sym_BSLASHGLSname] = ACTIONS(6213), - [anon_sym_BSLASHglssymbol] = ACTIONS(6213), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6213), - [anon_sym_BSLASHglsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6213), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6213), - [anon_sym_BSLASHglsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6213), - [anon_sym_BSLASHglsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6213), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6213), - [anon_sym_BSLASHglsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6213), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6213), - [anon_sym_BSLASHglsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6213), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6213), - [anon_sym_BSLASHnewacronym] = ACTIONS(6213), - [anon_sym_BSLASHacrshort] = ACTIONS(6213), - [anon_sym_BSLASHAcrshort] = ACTIONS(6213), - [anon_sym_BSLASHACRshort] = ACTIONS(6213), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6213), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6213), - [anon_sym_BSLASHacrlong] = ACTIONS(6213), - [anon_sym_BSLASHAcrlong] = ACTIONS(6213), - [anon_sym_BSLASHACRlong] = ACTIONS(6213), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6213), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6213), - [anon_sym_BSLASHacrfull] = ACTIONS(6213), - [anon_sym_BSLASHAcrfull] = ACTIONS(6213), - [anon_sym_BSLASHACRfull] = ACTIONS(6213), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6213), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6213), - [anon_sym_BSLASHacs] = ACTIONS(6213), - [anon_sym_BSLASHAcs] = ACTIONS(6213), - [anon_sym_BSLASHacsp] = ACTIONS(6213), - [anon_sym_BSLASHAcsp] = ACTIONS(6213), - [anon_sym_BSLASHacl] = ACTIONS(6213), - [anon_sym_BSLASHAcl] = ACTIONS(6213), - [anon_sym_BSLASHaclp] = ACTIONS(6213), - [anon_sym_BSLASHAclp] = ACTIONS(6213), - [anon_sym_BSLASHacf] = ACTIONS(6213), - [anon_sym_BSLASHAcf] = ACTIONS(6213), - [anon_sym_BSLASHacfp] = ACTIONS(6213), - [anon_sym_BSLASHAcfp] = ACTIONS(6213), - [anon_sym_BSLASHac] = ACTIONS(6213), - [anon_sym_BSLASHAc] = ACTIONS(6213), - [anon_sym_BSLASHacp] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6213), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6213), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6213), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6213), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6213), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6215), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6213), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6213), - [anon_sym_BSLASHcolor] = ACTIONS(6213), - [anon_sym_BSLASHcolorbox] = ACTIONS(6213), - [anon_sym_BSLASHtextcolor] = ACTIONS(6213), - [anon_sym_BSLASHpagecolor] = ACTIONS(6213), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6213), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6213), - [anon_sym_BSLASHtext] = ACTIONS(6213), - [anon_sym_BSLASHintertext] = ACTIONS(6213), - [anon_sym_shortintertext] = ACTIONS(6213), - }, - [1715] = { - [sym_command_name] = ACTIONS(6025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6025), - [anon_sym_LBRACK] = ACTIONS(6027), - [anon_sym_RBRACK] = ACTIONS(6027), - [anon_sym_COMMA] = ACTIONS(6027), - [anon_sym_EQ] = ACTIONS(6027), - [anon_sym_LPAREN] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_LBRACE] = ACTIONS(6027), - [sym_word] = ACTIONS(6025), - [sym_placeholder] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6025), - [anon_sym_GT] = ACTIONS(6025), - [anon_sym_BANG] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_SQUOTE] = ACTIONS(6025), - [anon_sym__] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), - [anon_sym_BSLASHbegin] = ACTIONS(6025), - [anon_sym_BSLASHtitle] = ACTIONS(6025), - [anon_sym_BSLASHauthor] = ACTIONS(6025), - [anon_sym_BSLASHusepackage] = ACTIONS(6025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), - [anon_sym_BSLASHinclude] = ACTIONS(6025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), - [anon_sym_BSLASHinput] = ACTIONS(6025), - [anon_sym_BSLASHsubfile] = ACTIONS(6025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), - [anon_sym_BSLASHbibliography] = ACTIONS(6025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), - [anon_sym_BSLASHincludesvg] = ACTIONS(6025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), - [anon_sym_BSLASHimport] = ACTIONS(6025), - [anon_sym_BSLASHsubimport] = ACTIONS(6025), - [anon_sym_BSLASHinputfrom] = ACTIONS(6025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), - [anon_sym_BSLASHincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHcaption] = ACTIONS(6025), - [anon_sym_BSLASHcite] = ACTIONS(6025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCite] = ACTIONS(6025), - [anon_sym_BSLASHnocite] = ACTIONS(6025), - [anon_sym_BSLASHcitet] = ACTIONS(6025), - [anon_sym_BSLASHcitep] = ACTIONS(6025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteauthor] = ACTIONS(6025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitetitle] = ACTIONS(6025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteyear] = ACTIONS(6025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitedate] = ACTIONS(6025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteurl] = ACTIONS(6025), - [anon_sym_BSLASHfullcite] = ACTIONS(6025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), - [anon_sym_BSLASHcitealt] = ACTIONS(6025), - [anon_sym_BSLASHcitealp] = ACTIONS(6025), - [anon_sym_BSLASHcitetext] = ACTIONS(6025), - [anon_sym_BSLASHparencite] = ACTIONS(6025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHParencite] = ACTIONS(6025), - [anon_sym_BSLASHfootcite] = ACTIONS(6025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), - [anon_sym_BSLASHtextcite] = ACTIONS(6025), - [anon_sym_BSLASHTextcite] = ACTIONS(6025), - [anon_sym_BSLASHsmartcite] = ACTIONS(6025), - [anon_sym_BSLASHSmartcite] = ACTIONS(6025), - [anon_sym_BSLASHsupercite] = ACTIONS(6025), - [anon_sym_BSLASHautocite] = ACTIONS(6025), - [anon_sym_BSLASHAutocite] = ACTIONS(6025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHvolcite] = ACTIONS(6025), - [anon_sym_BSLASHVolcite] = ACTIONS(6025), - [anon_sym_BSLASHpvolcite] = ACTIONS(6025), - [anon_sym_BSLASHPvolcite] = ACTIONS(6025), - [anon_sym_BSLASHfvolcite] = ACTIONS(6025), - [anon_sym_BSLASHftvolcite] = ACTIONS(6025), - [anon_sym_BSLASHsvolcite] = ACTIONS(6025), - [anon_sym_BSLASHSvolcite] = ACTIONS(6025), - [anon_sym_BSLASHtvolcite] = ACTIONS(6025), - [anon_sym_BSLASHTvolcite] = ACTIONS(6025), - [anon_sym_BSLASHavolcite] = ACTIONS(6025), - [anon_sym_BSLASHAvolcite] = ACTIONS(6025), - [anon_sym_BSLASHnotecite] = ACTIONS(6025), - [anon_sym_BSLASHNotecite] = ACTIONS(6025), - [anon_sym_BSLASHpnotecite] = ACTIONS(6025), - [anon_sym_BSLASHPnotecite] = ACTIONS(6025), - [anon_sym_BSLASHfnotecite] = ACTIONS(6025), - [anon_sym_BSLASHlabel] = ACTIONS(6025), - [anon_sym_BSLASHref] = ACTIONS(6025), - [anon_sym_BSLASHeqref] = ACTIONS(6025), - [anon_sym_BSLASHvref] = ACTIONS(6025), - [anon_sym_BSLASHVref] = ACTIONS(6025), - [anon_sym_BSLASHautoref] = ACTIONS(6025), - [anon_sym_BSLASHpageref] = ACTIONS(6025), - [anon_sym_BSLASHcref] = ACTIONS(6025), - [anon_sym_BSLASHCref] = ACTIONS(6025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnameCref] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHlabelcref] = ACTIONS(6025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCrefrange] = ACTIONS(6025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnewlabel] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHdef] = ACTIONS(6025), - [anon_sym_BSLASHlet] = ACTIONS(6025), - [anon_sym_BSLASHleft] = ACTIONS(6025), - [anon_sym_BSLASHbig] = ACTIONS(6025), - [anon_sym_BSLASHBig] = ACTIONS(6025), - [anon_sym_BSLASHbigg] = ACTIONS(6025), - [anon_sym_BSLASHBigg] = ACTIONS(6025), - [anon_sym_BSLASHbigl] = ACTIONS(6025), - [anon_sym_BSLASHBigl] = ACTIONS(6025), - [anon_sym_BSLASHbiggl] = ACTIONS(6025), - [anon_sym_BSLASHBiggl] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), - [anon_sym_BSLASHgls] = ACTIONS(6025), - [anon_sym_BSLASHGls] = ACTIONS(6025), - [anon_sym_BSLASHGLS] = ACTIONS(6025), - [anon_sym_BSLASHglspl] = ACTIONS(6025), - [anon_sym_BSLASHGlspl] = ACTIONS(6025), - [anon_sym_BSLASHGLSpl] = ACTIONS(6025), - [anon_sym_BSLASHglsdisp] = ACTIONS(6025), - [anon_sym_BSLASHglslink] = ACTIONS(6025), - [anon_sym_BSLASHglstext] = ACTIONS(6025), - [anon_sym_BSLASHGlstext] = ACTIONS(6025), - [anon_sym_BSLASHGLStext] = ACTIONS(6025), - [anon_sym_BSLASHglsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), - [anon_sym_BSLASHglsplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSplural] = ACTIONS(6025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHglsname] = ACTIONS(6025), - [anon_sym_BSLASHGlsname] = ACTIONS(6025), - [anon_sym_BSLASHGLSname] = ACTIONS(6025), - [anon_sym_BSLASHglssymbol] = ACTIONS(6025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), - [anon_sym_BSLASHglsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), - [anon_sym_BSLASHglsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), - [anon_sym_BSLASHglsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), - [anon_sym_BSLASHglsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), - [anon_sym_BSLASHglsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), - [anon_sym_BSLASHnewacronym] = ACTIONS(6025), - [anon_sym_BSLASHacrshort] = ACTIONS(6025), - [anon_sym_BSLASHAcrshort] = ACTIONS(6025), - [anon_sym_BSLASHACRshort] = ACTIONS(6025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), - [anon_sym_BSLASHacrlong] = ACTIONS(6025), - [anon_sym_BSLASHAcrlong] = ACTIONS(6025), - [anon_sym_BSLASHACRlong] = ACTIONS(6025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), - [anon_sym_BSLASHacrfull] = ACTIONS(6025), - [anon_sym_BSLASHAcrfull] = ACTIONS(6025), - [anon_sym_BSLASHACRfull] = ACTIONS(6025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), - [anon_sym_BSLASHacs] = ACTIONS(6025), - [anon_sym_BSLASHAcs] = ACTIONS(6025), - [anon_sym_BSLASHacsp] = ACTIONS(6025), - [anon_sym_BSLASHAcsp] = ACTIONS(6025), - [anon_sym_BSLASHacl] = ACTIONS(6025), - [anon_sym_BSLASHAcl] = ACTIONS(6025), - [anon_sym_BSLASHaclp] = ACTIONS(6025), - [anon_sym_BSLASHAclp] = ACTIONS(6025), - [anon_sym_BSLASHacf] = ACTIONS(6025), - [anon_sym_BSLASHAcf] = ACTIONS(6025), - [anon_sym_BSLASHacfp] = ACTIONS(6025), - [anon_sym_BSLASHAcfp] = ACTIONS(6025), - [anon_sym_BSLASHac] = ACTIONS(6025), - [anon_sym_BSLASHAc] = ACTIONS(6025), - [anon_sym_BSLASHacp] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), - [anon_sym_BSLASHcolor] = ACTIONS(6025), - [anon_sym_BSLASHcolorbox] = ACTIONS(6025), - [anon_sym_BSLASHtextcolor] = ACTIONS(6025), - [anon_sym_BSLASHpagecolor] = ACTIONS(6025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), - [anon_sym_BSLASHtext] = ACTIONS(6025), - [anon_sym_BSLASHintertext] = ACTIONS(6025), - [anon_sym_shortintertext] = ACTIONS(6025), - }, - [1716] = { - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASHbegin] = ACTIONS(189), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [1717] = { - [sym_command_name] = ACTIONS(6217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6217), - [anon_sym_LBRACK] = ACTIONS(6219), - [anon_sym_RBRACK] = ACTIONS(6219), - [anon_sym_COMMA] = ACTIONS(6219), - [anon_sym_EQ] = ACTIONS(6219), - [anon_sym_LPAREN] = ACTIONS(6219), - [anon_sym_RPAREN] = ACTIONS(6219), - [anon_sym_LBRACE] = ACTIONS(6219), - [sym_word] = ACTIONS(6217), - [sym_placeholder] = ACTIONS(6219), - [anon_sym_PLUS] = ACTIONS(6219), - [anon_sym_DASH] = ACTIONS(6219), - [anon_sym_STAR] = ACTIONS(6219), - [anon_sym_SLASH] = ACTIONS(6219), - [anon_sym_LT] = ACTIONS(6217), - [anon_sym_GT] = ACTIONS(6217), - [anon_sym_BANG] = ACTIONS(6217), - [anon_sym_PIPE] = ACTIONS(6217), - [anon_sym_COLON] = ACTIONS(6217), - [anon_sym_SQUOTE] = ACTIONS(6217), - [anon_sym__] = ACTIONS(6219), - [anon_sym_CARET] = ACTIONS(6219), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6219), - [anon_sym_DOLLAR] = ACTIONS(6217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6219), - [anon_sym_BSLASHbegin] = ACTIONS(6217), - [anon_sym_BSLASHtitle] = ACTIONS(6217), - [anon_sym_BSLASHauthor] = ACTIONS(6217), - [anon_sym_BSLASHusepackage] = ACTIONS(6217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6217), - [anon_sym_BSLASHinclude] = ACTIONS(6217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6217), - [anon_sym_BSLASHinput] = ACTIONS(6217), - [anon_sym_BSLASHsubfile] = ACTIONS(6217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6217), - [anon_sym_BSLASHbibliography] = ACTIONS(6217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6217), - [anon_sym_BSLASHincludesvg] = ACTIONS(6217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6217), - [anon_sym_BSLASHimport] = ACTIONS(6217), - [anon_sym_BSLASHsubimport] = ACTIONS(6217), - [anon_sym_BSLASHinputfrom] = ACTIONS(6217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6217), - [anon_sym_BSLASHincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6217), - [anon_sym_BSLASHcaption] = ACTIONS(6217), - [anon_sym_BSLASHcite] = ACTIONS(6217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCite] = ACTIONS(6217), - [anon_sym_BSLASHnocite] = ACTIONS(6217), - [anon_sym_BSLASHcitet] = ACTIONS(6217), - [anon_sym_BSLASHcitep] = ACTIONS(6217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteauthor] = ACTIONS(6217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitetitle] = ACTIONS(6217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteyear] = ACTIONS(6217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6219), - [anon_sym_BSLASHcitedate] = ACTIONS(6217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6219), - [anon_sym_BSLASHciteurl] = ACTIONS(6217), - [anon_sym_BSLASHfullcite] = ACTIONS(6217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6217), - [anon_sym_BSLASHcitealt] = ACTIONS(6217), - [anon_sym_BSLASHcitealp] = ACTIONS(6217), - [anon_sym_BSLASHcitetext] = ACTIONS(6217), - [anon_sym_BSLASHparencite] = ACTIONS(6217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHParencite] = ACTIONS(6217), - [anon_sym_BSLASHfootcite] = ACTIONS(6217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6217), - [anon_sym_BSLASHtextcite] = ACTIONS(6217), - [anon_sym_BSLASHTextcite] = ACTIONS(6217), - [anon_sym_BSLASHsmartcite] = ACTIONS(6217), - [anon_sym_BSLASHSmartcite] = ACTIONS(6217), - [anon_sym_BSLASHsupercite] = ACTIONS(6217), - [anon_sym_BSLASHautocite] = ACTIONS(6217), - [anon_sym_BSLASHAutocite] = ACTIONS(6217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6219), - [anon_sym_BSLASHvolcite] = ACTIONS(6217), - [anon_sym_BSLASHVolcite] = ACTIONS(6217), - [anon_sym_BSLASHpvolcite] = ACTIONS(6217), - [anon_sym_BSLASHPvolcite] = ACTIONS(6217), - [anon_sym_BSLASHfvolcite] = ACTIONS(6217), - [anon_sym_BSLASHftvolcite] = ACTIONS(6217), - [anon_sym_BSLASHsvolcite] = ACTIONS(6217), - [anon_sym_BSLASHSvolcite] = ACTIONS(6217), - [anon_sym_BSLASHtvolcite] = ACTIONS(6217), - [anon_sym_BSLASHTvolcite] = ACTIONS(6217), - [anon_sym_BSLASHavolcite] = ACTIONS(6217), - [anon_sym_BSLASHAvolcite] = ACTIONS(6217), - [anon_sym_BSLASHnotecite] = ACTIONS(6217), - [anon_sym_BSLASHNotecite] = ACTIONS(6217), - [anon_sym_BSLASHpnotecite] = ACTIONS(6217), - [anon_sym_BSLASHPnotecite] = ACTIONS(6217), - [anon_sym_BSLASHfnotecite] = ACTIONS(6217), - [anon_sym_BSLASHlabel] = ACTIONS(6217), - [anon_sym_BSLASHref] = ACTIONS(6217), - [anon_sym_BSLASHeqref] = ACTIONS(6217), - [anon_sym_BSLASHvref] = ACTIONS(6217), - [anon_sym_BSLASHVref] = ACTIONS(6217), - [anon_sym_BSLASHautoref] = ACTIONS(6217), - [anon_sym_BSLASHpageref] = ACTIONS(6217), - [anon_sym_BSLASHcref] = ACTIONS(6217), - [anon_sym_BSLASHCref] = ACTIONS(6217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnameCref] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6217), - [anon_sym_BSLASHlabelcref] = ACTIONS(6217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange] = ACTIONS(6217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHCrefrange] = ACTIONS(6217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6219), - [anon_sym_BSLASHnewlabel] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand] = ACTIONS(6217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6219), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6217), - [anon_sym_BSLASHdef] = ACTIONS(6217), - [anon_sym_BSLASHlet] = ACTIONS(6217), - [anon_sym_BSLASHleft] = ACTIONS(6217), - [anon_sym_BSLASHbig] = ACTIONS(6217), - [anon_sym_BSLASHBig] = ACTIONS(6217), - [anon_sym_BSLASHbigg] = ACTIONS(6217), - [anon_sym_BSLASHBigg] = ACTIONS(6217), - [anon_sym_BSLASHbigl] = ACTIONS(6217), - [anon_sym_BSLASHBigl] = ACTIONS(6217), - [anon_sym_BSLASHbiggl] = ACTIONS(6217), - [anon_sym_BSLASHBiggl] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6217), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6217), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6217), - [anon_sym_BSLASHgls] = ACTIONS(6217), - [anon_sym_BSLASHGls] = ACTIONS(6217), - [anon_sym_BSLASHGLS] = ACTIONS(6217), - [anon_sym_BSLASHglspl] = ACTIONS(6217), - [anon_sym_BSLASHGlspl] = ACTIONS(6217), - [anon_sym_BSLASHGLSpl] = ACTIONS(6217), - [anon_sym_BSLASHglsdisp] = ACTIONS(6217), - [anon_sym_BSLASHglslink] = ACTIONS(6217), - [anon_sym_BSLASHglstext] = ACTIONS(6217), - [anon_sym_BSLASHGlstext] = ACTIONS(6217), - [anon_sym_BSLASHGLStext] = ACTIONS(6217), - [anon_sym_BSLASHglsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6217), - [anon_sym_BSLASHglsplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSplural] = ACTIONS(6217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6217), - [anon_sym_BSLASHglsname] = ACTIONS(6217), - [anon_sym_BSLASHGlsname] = ACTIONS(6217), - [anon_sym_BSLASHGLSname] = ACTIONS(6217), - [anon_sym_BSLASHglssymbol] = ACTIONS(6217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6217), - [anon_sym_BSLASHglsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6217), - [anon_sym_BSLASHglsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6217), - [anon_sym_BSLASHglsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6217), - [anon_sym_BSLASHglsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6217), - [anon_sym_BSLASHglsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6217), - [anon_sym_BSLASHnewacronym] = ACTIONS(6217), - [anon_sym_BSLASHacrshort] = ACTIONS(6217), - [anon_sym_BSLASHAcrshort] = ACTIONS(6217), - [anon_sym_BSLASHACRshort] = ACTIONS(6217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6217), - [anon_sym_BSLASHacrlong] = ACTIONS(6217), - [anon_sym_BSLASHAcrlong] = ACTIONS(6217), - [anon_sym_BSLASHACRlong] = ACTIONS(6217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6217), - [anon_sym_BSLASHacrfull] = ACTIONS(6217), - [anon_sym_BSLASHAcrfull] = ACTIONS(6217), - [anon_sym_BSLASHACRfull] = ACTIONS(6217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6217), - [anon_sym_BSLASHacs] = ACTIONS(6217), - [anon_sym_BSLASHAcs] = ACTIONS(6217), - [anon_sym_BSLASHacsp] = ACTIONS(6217), - [anon_sym_BSLASHAcsp] = ACTIONS(6217), - [anon_sym_BSLASHacl] = ACTIONS(6217), - [anon_sym_BSLASHAcl] = ACTIONS(6217), - [anon_sym_BSLASHaclp] = ACTIONS(6217), - [anon_sym_BSLASHAclp] = ACTIONS(6217), - [anon_sym_BSLASHacf] = ACTIONS(6217), - [anon_sym_BSLASHAcf] = ACTIONS(6217), - [anon_sym_BSLASHacfp] = ACTIONS(6217), - [anon_sym_BSLASHAcfp] = ACTIONS(6217), - [anon_sym_BSLASHac] = ACTIONS(6217), - [anon_sym_BSLASHAc] = ACTIONS(6217), - [anon_sym_BSLASHacp] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6217), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6217), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6219), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6217), - [anon_sym_BSLASHcolor] = ACTIONS(6217), - [anon_sym_BSLASHcolorbox] = ACTIONS(6217), - [anon_sym_BSLASHtextcolor] = ACTIONS(6217), - [anon_sym_BSLASHpagecolor] = ACTIONS(6217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6217), - [anon_sym_BSLASHtext] = ACTIONS(6217), - [anon_sym_BSLASHintertext] = ACTIONS(6217), - [anon_sym_shortintertext] = ACTIONS(6217), - }, - [1718] = { - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHbegin] = ACTIONS(205), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [1719] = { - [sym_command_name] = ACTIONS(6041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6041), - [anon_sym_LBRACK] = ACTIONS(6043), - [anon_sym_RBRACK] = ACTIONS(6043), - [anon_sym_COMMA] = ACTIONS(6043), - [anon_sym_EQ] = ACTIONS(6043), - [anon_sym_LPAREN] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_LBRACE] = ACTIONS(6043), - [sym_word] = ACTIONS(6041), - [sym_placeholder] = ACTIONS(6043), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6043), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6041), - [anon_sym_GT] = ACTIONS(6041), - [anon_sym_BANG] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_SQUOTE] = ACTIONS(6041), - [anon_sym__] = ACTIONS(6043), - [anon_sym_CARET] = ACTIONS(6043), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6043), - [anon_sym_BSLASHbegin] = ACTIONS(6041), - [anon_sym_BSLASHtitle] = ACTIONS(6041), - [anon_sym_BSLASHauthor] = ACTIONS(6041), - [anon_sym_BSLASHusepackage] = ACTIONS(6041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6041), - [anon_sym_BSLASHinclude] = ACTIONS(6041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6041), - [anon_sym_BSLASHinput] = ACTIONS(6041), - [anon_sym_BSLASHsubfile] = ACTIONS(6041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6041), - [anon_sym_BSLASHbibliography] = ACTIONS(6041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6041), - [anon_sym_BSLASHincludesvg] = ACTIONS(6041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6041), - [anon_sym_BSLASHimport] = ACTIONS(6041), - [anon_sym_BSLASHsubimport] = ACTIONS(6041), - [anon_sym_BSLASHinputfrom] = ACTIONS(6041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6041), - [anon_sym_BSLASHincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHcaption] = ACTIONS(6041), - [anon_sym_BSLASHcite] = ACTIONS(6041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCite] = ACTIONS(6041), - [anon_sym_BSLASHnocite] = ACTIONS(6041), - [anon_sym_BSLASHcitet] = ACTIONS(6041), - [anon_sym_BSLASHcitep] = ACTIONS(6041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteauthor] = ACTIONS(6041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitetitle] = ACTIONS(6041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteyear] = ACTIONS(6041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitedate] = ACTIONS(6041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteurl] = ACTIONS(6041), - [anon_sym_BSLASHfullcite] = ACTIONS(6041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6041), - [anon_sym_BSLASHcitealt] = ACTIONS(6041), - [anon_sym_BSLASHcitealp] = ACTIONS(6041), - [anon_sym_BSLASHcitetext] = ACTIONS(6041), - [anon_sym_BSLASHparencite] = ACTIONS(6041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHParencite] = ACTIONS(6041), - [anon_sym_BSLASHfootcite] = ACTIONS(6041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6041), - [anon_sym_BSLASHtextcite] = ACTIONS(6041), - [anon_sym_BSLASHTextcite] = ACTIONS(6041), - [anon_sym_BSLASHsmartcite] = ACTIONS(6041), - [anon_sym_BSLASHSmartcite] = ACTIONS(6041), - [anon_sym_BSLASHsupercite] = ACTIONS(6041), - [anon_sym_BSLASHautocite] = ACTIONS(6041), - [anon_sym_BSLASHAutocite] = ACTIONS(6041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHvolcite] = ACTIONS(6041), - [anon_sym_BSLASHVolcite] = ACTIONS(6041), - [anon_sym_BSLASHpvolcite] = ACTIONS(6041), - [anon_sym_BSLASHPvolcite] = ACTIONS(6041), - [anon_sym_BSLASHfvolcite] = ACTIONS(6041), - [anon_sym_BSLASHftvolcite] = ACTIONS(6041), - [anon_sym_BSLASHsvolcite] = ACTIONS(6041), - [anon_sym_BSLASHSvolcite] = ACTIONS(6041), - [anon_sym_BSLASHtvolcite] = ACTIONS(6041), - [anon_sym_BSLASHTvolcite] = ACTIONS(6041), - [anon_sym_BSLASHavolcite] = ACTIONS(6041), - [anon_sym_BSLASHAvolcite] = ACTIONS(6041), - [anon_sym_BSLASHnotecite] = ACTIONS(6041), - [anon_sym_BSLASHNotecite] = ACTIONS(6041), - [anon_sym_BSLASHpnotecite] = ACTIONS(6041), - [anon_sym_BSLASHPnotecite] = ACTIONS(6041), - [anon_sym_BSLASHfnotecite] = ACTIONS(6041), - [anon_sym_BSLASHlabel] = ACTIONS(6041), - [anon_sym_BSLASHref] = ACTIONS(6041), - [anon_sym_BSLASHeqref] = ACTIONS(6041), - [anon_sym_BSLASHvref] = ACTIONS(6041), - [anon_sym_BSLASHVref] = ACTIONS(6041), - [anon_sym_BSLASHautoref] = ACTIONS(6041), - [anon_sym_BSLASHpageref] = ACTIONS(6041), - [anon_sym_BSLASHcref] = ACTIONS(6041), - [anon_sym_BSLASHCref] = ACTIONS(6041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnameCref] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHlabelcref] = ACTIONS(6041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCrefrange] = ACTIONS(6041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnewlabel] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6043), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHdef] = ACTIONS(6041), - [anon_sym_BSLASHlet] = ACTIONS(6041), - [anon_sym_BSLASHleft] = ACTIONS(6041), - [anon_sym_BSLASHbig] = ACTIONS(6041), - [anon_sym_BSLASHBig] = ACTIONS(6041), - [anon_sym_BSLASHbigg] = ACTIONS(6041), - [anon_sym_BSLASHBigg] = ACTIONS(6041), - [anon_sym_BSLASHbigl] = ACTIONS(6041), - [anon_sym_BSLASHBigl] = ACTIONS(6041), - [anon_sym_BSLASHbiggl] = ACTIONS(6041), - [anon_sym_BSLASHBiggl] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6041), - [anon_sym_BSLASHgls] = ACTIONS(6041), - [anon_sym_BSLASHGls] = ACTIONS(6041), - [anon_sym_BSLASHGLS] = ACTIONS(6041), - [anon_sym_BSLASHglspl] = ACTIONS(6041), - [anon_sym_BSLASHGlspl] = ACTIONS(6041), - [anon_sym_BSLASHGLSpl] = ACTIONS(6041), - [anon_sym_BSLASHglsdisp] = ACTIONS(6041), - [anon_sym_BSLASHglslink] = ACTIONS(6041), - [anon_sym_BSLASHglstext] = ACTIONS(6041), - [anon_sym_BSLASHGlstext] = ACTIONS(6041), - [anon_sym_BSLASHGLStext] = ACTIONS(6041), - [anon_sym_BSLASHglsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6041), - [anon_sym_BSLASHglsplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSplural] = ACTIONS(6041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHglsname] = ACTIONS(6041), - [anon_sym_BSLASHGlsname] = ACTIONS(6041), - [anon_sym_BSLASHGLSname] = ACTIONS(6041), - [anon_sym_BSLASHglssymbol] = ACTIONS(6041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6041), - [anon_sym_BSLASHglsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6041), - [anon_sym_BSLASHglsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6041), - [anon_sym_BSLASHglsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6041), - [anon_sym_BSLASHglsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6041), - [anon_sym_BSLASHglsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6041), - [anon_sym_BSLASHnewacronym] = ACTIONS(6041), - [anon_sym_BSLASHacrshort] = ACTIONS(6041), - [anon_sym_BSLASHAcrshort] = ACTIONS(6041), - [anon_sym_BSLASHACRshort] = ACTIONS(6041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6041), - [anon_sym_BSLASHacrlong] = ACTIONS(6041), - [anon_sym_BSLASHAcrlong] = ACTIONS(6041), - [anon_sym_BSLASHACRlong] = ACTIONS(6041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6041), - [anon_sym_BSLASHacrfull] = ACTIONS(6041), - [anon_sym_BSLASHAcrfull] = ACTIONS(6041), - [anon_sym_BSLASHACRfull] = ACTIONS(6041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6041), - [anon_sym_BSLASHacs] = ACTIONS(6041), - [anon_sym_BSLASHAcs] = ACTIONS(6041), - [anon_sym_BSLASHacsp] = ACTIONS(6041), - [anon_sym_BSLASHAcsp] = ACTIONS(6041), - [anon_sym_BSLASHacl] = ACTIONS(6041), - [anon_sym_BSLASHAcl] = ACTIONS(6041), - [anon_sym_BSLASHaclp] = ACTIONS(6041), - [anon_sym_BSLASHAclp] = ACTIONS(6041), - [anon_sym_BSLASHacf] = ACTIONS(6041), - [anon_sym_BSLASHAcf] = ACTIONS(6041), - [anon_sym_BSLASHacfp] = ACTIONS(6041), - [anon_sym_BSLASHAcfp] = ACTIONS(6041), - [anon_sym_BSLASHac] = ACTIONS(6041), - [anon_sym_BSLASHAc] = ACTIONS(6041), - [anon_sym_BSLASHacp] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6041), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6041), - [anon_sym_BSLASHcolor] = ACTIONS(6041), - [anon_sym_BSLASHcolorbox] = ACTIONS(6041), - [anon_sym_BSLASHtextcolor] = ACTIONS(6041), - [anon_sym_BSLASHpagecolor] = ACTIONS(6041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6041), - [anon_sym_BSLASHtext] = ACTIONS(6041), - [anon_sym_BSLASHintertext] = ACTIONS(6041), - [anon_sym_shortintertext] = ACTIONS(6041), - }, - [1720] = { - [sym_command_name] = ACTIONS(6037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6037), - [anon_sym_LBRACK] = ACTIONS(6039), - [anon_sym_RBRACK] = ACTIONS(6039), - [anon_sym_COMMA] = ACTIONS(6039), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_LPAREN] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_LBRACE] = ACTIONS(6039), - [sym_word] = ACTIONS(6037), - [sym_placeholder] = ACTIONS(6039), - [anon_sym_PLUS] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [anon_sym_STAR] = ACTIONS(6039), - [anon_sym_SLASH] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6037), - [anon_sym_GT] = ACTIONS(6037), - [anon_sym_BANG] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_COLON] = ACTIONS(6037), - [anon_sym_SQUOTE] = ACTIONS(6037), - [anon_sym__] = ACTIONS(6039), - [anon_sym_CARET] = ACTIONS(6039), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6039), - [anon_sym_BSLASHbegin] = ACTIONS(6037), - [anon_sym_BSLASHtitle] = ACTIONS(6037), - [anon_sym_BSLASHauthor] = ACTIONS(6037), - [anon_sym_BSLASHusepackage] = ACTIONS(6037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6037), - [anon_sym_BSLASHinclude] = ACTIONS(6037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6037), - [anon_sym_BSLASHinput] = ACTIONS(6037), - [anon_sym_BSLASHsubfile] = ACTIONS(6037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6037), - [anon_sym_BSLASHbibliography] = ACTIONS(6037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6037), - [anon_sym_BSLASHincludesvg] = ACTIONS(6037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6037), - [anon_sym_BSLASHimport] = ACTIONS(6037), - [anon_sym_BSLASHsubimport] = ACTIONS(6037), - [anon_sym_BSLASHinputfrom] = ACTIONS(6037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6037), - [anon_sym_BSLASHincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHcaption] = ACTIONS(6037), - [anon_sym_BSLASHcite] = ACTIONS(6037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCite] = ACTIONS(6037), - [anon_sym_BSLASHnocite] = ACTIONS(6037), - [anon_sym_BSLASHcitet] = ACTIONS(6037), - [anon_sym_BSLASHcitep] = ACTIONS(6037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteauthor] = ACTIONS(6037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitetitle] = ACTIONS(6037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteyear] = ACTIONS(6037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitedate] = ACTIONS(6037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteurl] = ACTIONS(6037), - [anon_sym_BSLASHfullcite] = ACTIONS(6037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6037), - [anon_sym_BSLASHcitealt] = ACTIONS(6037), - [anon_sym_BSLASHcitealp] = ACTIONS(6037), - [anon_sym_BSLASHcitetext] = ACTIONS(6037), - [anon_sym_BSLASHparencite] = ACTIONS(6037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHParencite] = ACTIONS(6037), - [anon_sym_BSLASHfootcite] = ACTIONS(6037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6037), - [anon_sym_BSLASHtextcite] = ACTIONS(6037), - [anon_sym_BSLASHTextcite] = ACTIONS(6037), - [anon_sym_BSLASHsmartcite] = ACTIONS(6037), - [anon_sym_BSLASHSmartcite] = ACTIONS(6037), - [anon_sym_BSLASHsupercite] = ACTIONS(6037), - [anon_sym_BSLASHautocite] = ACTIONS(6037), - [anon_sym_BSLASHAutocite] = ACTIONS(6037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHvolcite] = ACTIONS(6037), - [anon_sym_BSLASHVolcite] = ACTIONS(6037), - [anon_sym_BSLASHpvolcite] = ACTIONS(6037), - [anon_sym_BSLASHPvolcite] = ACTIONS(6037), - [anon_sym_BSLASHfvolcite] = ACTIONS(6037), - [anon_sym_BSLASHftvolcite] = ACTIONS(6037), - [anon_sym_BSLASHsvolcite] = ACTIONS(6037), - [anon_sym_BSLASHSvolcite] = ACTIONS(6037), - [anon_sym_BSLASHtvolcite] = ACTIONS(6037), - [anon_sym_BSLASHTvolcite] = ACTIONS(6037), - [anon_sym_BSLASHavolcite] = ACTIONS(6037), - [anon_sym_BSLASHAvolcite] = ACTIONS(6037), - [anon_sym_BSLASHnotecite] = ACTIONS(6037), - [anon_sym_BSLASHNotecite] = ACTIONS(6037), - [anon_sym_BSLASHpnotecite] = ACTIONS(6037), - [anon_sym_BSLASHPnotecite] = ACTIONS(6037), - [anon_sym_BSLASHfnotecite] = ACTIONS(6037), - [anon_sym_BSLASHlabel] = ACTIONS(6037), - [anon_sym_BSLASHref] = ACTIONS(6037), - [anon_sym_BSLASHeqref] = ACTIONS(6037), - [anon_sym_BSLASHvref] = ACTIONS(6037), - [anon_sym_BSLASHVref] = ACTIONS(6037), - [anon_sym_BSLASHautoref] = ACTIONS(6037), - [anon_sym_BSLASHpageref] = ACTIONS(6037), - [anon_sym_BSLASHcref] = ACTIONS(6037), - [anon_sym_BSLASHCref] = ACTIONS(6037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnameCref] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHlabelcref] = ACTIONS(6037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCrefrange] = ACTIONS(6037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnewlabel] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6039), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHdef] = ACTIONS(6037), - [anon_sym_BSLASHlet] = ACTIONS(6037), - [anon_sym_BSLASHleft] = ACTIONS(6037), - [anon_sym_BSLASHbig] = ACTIONS(6037), - [anon_sym_BSLASHBig] = ACTIONS(6037), - [anon_sym_BSLASHbigg] = ACTIONS(6037), - [anon_sym_BSLASHBigg] = ACTIONS(6037), - [anon_sym_BSLASHbigl] = ACTIONS(6037), - [anon_sym_BSLASHBigl] = ACTIONS(6037), - [anon_sym_BSLASHbiggl] = ACTIONS(6037), - [anon_sym_BSLASHBiggl] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6037), - [anon_sym_BSLASHgls] = ACTIONS(6037), - [anon_sym_BSLASHGls] = ACTIONS(6037), - [anon_sym_BSLASHGLS] = ACTIONS(6037), - [anon_sym_BSLASHglspl] = ACTIONS(6037), - [anon_sym_BSLASHGlspl] = ACTIONS(6037), - [anon_sym_BSLASHGLSpl] = ACTIONS(6037), - [anon_sym_BSLASHglsdisp] = ACTIONS(6037), - [anon_sym_BSLASHglslink] = ACTIONS(6037), - [anon_sym_BSLASHglstext] = ACTIONS(6037), - [anon_sym_BSLASHGlstext] = ACTIONS(6037), - [anon_sym_BSLASHGLStext] = ACTIONS(6037), - [anon_sym_BSLASHglsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6037), - [anon_sym_BSLASHglsplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSplural] = ACTIONS(6037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHglsname] = ACTIONS(6037), - [anon_sym_BSLASHGlsname] = ACTIONS(6037), - [anon_sym_BSLASHGLSname] = ACTIONS(6037), - [anon_sym_BSLASHglssymbol] = ACTIONS(6037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6037), - [anon_sym_BSLASHglsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6037), - [anon_sym_BSLASHglsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6037), - [anon_sym_BSLASHglsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6037), - [anon_sym_BSLASHglsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6037), - [anon_sym_BSLASHglsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6037), - [anon_sym_BSLASHnewacronym] = ACTIONS(6037), - [anon_sym_BSLASHacrshort] = ACTIONS(6037), - [anon_sym_BSLASHAcrshort] = ACTIONS(6037), - [anon_sym_BSLASHACRshort] = ACTIONS(6037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6037), - [anon_sym_BSLASHacrlong] = ACTIONS(6037), - [anon_sym_BSLASHAcrlong] = ACTIONS(6037), - [anon_sym_BSLASHACRlong] = ACTIONS(6037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6037), - [anon_sym_BSLASHacrfull] = ACTIONS(6037), - [anon_sym_BSLASHAcrfull] = ACTIONS(6037), - [anon_sym_BSLASHACRfull] = ACTIONS(6037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6037), - [anon_sym_BSLASHacs] = ACTIONS(6037), - [anon_sym_BSLASHAcs] = ACTIONS(6037), - [anon_sym_BSLASHacsp] = ACTIONS(6037), - [anon_sym_BSLASHAcsp] = ACTIONS(6037), - [anon_sym_BSLASHacl] = ACTIONS(6037), - [anon_sym_BSLASHAcl] = ACTIONS(6037), - [anon_sym_BSLASHaclp] = ACTIONS(6037), - [anon_sym_BSLASHAclp] = ACTIONS(6037), - [anon_sym_BSLASHacf] = ACTIONS(6037), - [anon_sym_BSLASHAcf] = ACTIONS(6037), - [anon_sym_BSLASHacfp] = ACTIONS(6037), - [anon_sym_BSLASHAcfp] = ACTIONS(6037), - [anon_sym_BSLASHac] = ACTIONS(6037), - [anon_sym_BSLASHAc] = ACTIONS(6037), - [anon_sym_BSLASHacp] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6037), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6037), - [anon_sym_BSLASHcolor] = ACTIONS(6037), - [anon_sym_BSLASHcolorbox] = ACTIONS(6037), - [anon_sym_BSLASHtextcolor] = ACTIONS(6037), - [anon_sym_BSLASHpagecolor] = ACTIONS(6037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6037), - [anon_sym_BSLASHtext] = ACTIONS(6037), - [anon_sym_BSLASHintertext] = ACTIONS(6037), - [anon_sym_shortintertext] = ACTIONS(6037), - }, - [1721] = { - [sym_command_name] = ACTIONS(6161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_EQ] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_LBRACE] = ACTIONS(6163), - [sym_word] = ACTIONS(6161), - [sym_placeholder] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6163), - [anon_sym_DASH] = ACTIONS(6163), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_COLON] = ACTIONS(6161), - [anon_sym_SQUOTE] = ACTIONS(6161), - [anon_sym__] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6163), - [anon_sym_DOLLAR] = ACTIONS(6161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6163), - [anon_sym_BSLASHbegin] = ACTIONS(6161), - [anon_sym_BSLASHtitle] = ACTIONS(6161), - [anon_sym_BSLASHauthor] = ACTIONS(6161), - [anon_sym_BSLASHusepackage] = ACTIONS(6161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6161), - [anon_sym_BSLASHinclude] = ACTIONS(6161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6161), - [anon_sym_BSLASHinput] = ACTIONS(6161), - [anon_sym_BSLASHsubfile] = ACTIONS(6161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6161), - [anon_sym_BSLASHbibliography] = ACTIONS(6161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6161), - [anon_sym_BSLASHincludesvg] = ACTIONS(6161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6161), - [anon_sym_BSLASHimport] = ACTIONS(6161), - [anon_sym_BSLASHsubimport] = ACTIONS(6161), - [anon_sym_BSLASHinputfrom] = ACTIONS(6161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6161), - [anon_sym_BSLASHincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHcaption] = ACTIONS(6161), - [anon_sym_BSLASHcite] = ACTIONS(6161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCite] = ACTIONS(6161), - [anon_sym_BSLASHnocite] = ACTIONS(6161), - [anon_sym_BSLASHcitet] = ACTIONS(6161), - [anon_sym_BSLASHcitep] = ACTIONS(6161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteauthor] = ACTIONS(6161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitetitle] = ACTIONS(6161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteyear] = ACTIONS(6161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitedate] = ACTIONS(6161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteurl] = ACTIONS(6161), - [anon_sym_BSLASHfullcite] = ACTIONS(6161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6161), - [anon_sym_BSLASHcitealt] = ACTIONS(6161), - [anon_sym_BSLASHcitealp] = ACTIONS(6161), - [anon_sym_BSLASHcitetext] = ACTIONS(6161), - [anon_sym_BSLASHparencite] = ACTIONS(6161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHParencite] = ACTIONS(6161), - [anon_sym_BSLASHfootcite] = ACTIONS(6161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6161), - [anon_sym_BSLASHtextcite] = ACTIONS(6161), - [anon_sym_BSLASHTextcite] = ACTIONS(6161), - [anon_sym_BSLASHsmartcite] = ACTIONS(6161), - [anon_sym_BSLASHSmartcite] = ACTIONS(6161), - [anon_sym_BSLASHsupercite] = ACTIONS(6161), - [anon_sym_BSLASHautocite] = ACTIONS(6161), - [anon_sym_BSLASHAutocite] = ACTIONS(6161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHvolcite] = ACTIONS(6161), - [anon_sym_BSLASHVolcite] = ACTIONS(6161), - [anon_sym_BSLASHpvolcite] = ACTIONS(6161), - [anon_sym_BSLASHPvolcite] = ACTIONS(6161), - [anon_sym_BSLASHfvolcite] = ACTIONS(6161), - [anon_sym_BSLASHftvolcite] = ACTIONS(6161), - [anon_sym_BSLASHsvolcite] = ACTIONS(6161), - [anon_sym_BSLASHSvolcite] = ACTIONS(6161), - [anon_sym_BSLASHtvolcite] = ACTIONS(6161), - [anon_sym_BSLASHTvolcite] = ACTIONS(6161), - [anon_sym_BSLASHavolcite] = ACTIONS(6161), - [anon_sym_BSLASHAvolcite] = ACTIONS(6161), - [anon_sym_BSLASHnotecite] = ACTIONS(6161), - [anon_sym_BSLASHNotecite] = ACTIONS(6161), - [anon_sym_BSLASHpnotecite] = ACTIONS(6161), - [anon_sym_BSLASHPnotecite] = ACTIONS(6161), - [anon_sym_BSLASHfnotecite] = ACTIONS(6161), - [anon_sym_BSLASHlabel] = ACTIONS(6161), - [anon_sym_BSLASHref] = ACTIONS(6161), - [anon_sym_BSLASHeqref] = ACTIONS(6161), - [anon_sym_BSLASHvref] = ACTIONS(6161), - [anon_sym_BSLASHVref] = ACTIONS(6161), - [anon_sym_BSLASHautoref] = ACTIONS(6161), - [anon_sym_BSLASHpageref] = ACTIONS(6161), - [anon_sym_BSLASHcref] = ACTIONS(6161), - [anon_sym_BSLASHCref] = ACTIONS(6161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnameCref] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHlabelcref] = ACTIONS(6161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCrefrange] = ACTIONS(6161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnewlabel] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6163), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHdef] = ACTIONS(6161), - [anon_sym_BSLASHlet] = ACTIONS(6161), - [anon_sym_BSLASHleft] = ACTIONS(6161), - [anon_sym_BSLASHbig] = ACTIONS(6161), - [anon_sym_BSLASHBig] = ACTIONS(6161), - [anon_sym_BSLASHbigg] = ACTIONS(6161), - [anon_sym_BSLASHBigg] = ACTIONS(6161), - [anon_sym_BSLASHbigl] = ACTIONS(6161), - [anon_sym_BSLASHBigl] = ACTIONS(6161), - [anon_sym_BSLASHbiggl] = ACTIONS(6161), - [anon_sym_BSLASHBiggl] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6161), - [anon_sym_BSLASHgls] = ACTIONS(6161), - [anon_sym_BSLASHGls] = ACTIONS(6161), - [anon_sym_BSLASHGLS] = ACTIONS(6161), - [anon_sym_BSLASHglspl] = ACTIONS(6161), - [anon_sym_BSLASHGlspl] = ACTIONS(6161), - [anon_sym_BSLASHGLSpl] = ACTIONS(6161), - [anon_sym_BSLASHglsdisp] = ACTIONS(6161), - [anon_sym_BSLASHglslink] = ACTIONS(6161), - [anon_sym_BSLASHglstext] = ACTIONS(6161), - [anon_sym_BSLASHGlstext] = ACTIONS(6161), - [anon_sym_BSLASHGLStext] = ACTIONS(6161), - [anon_sym_BSLASHglsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6161), - [anon_sym_BSLASHglsplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSplural] = ACTIONS(6161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHglsname] = ACTIONS(6161), - [anon_sym_BSLASHGlsname] = ACTIONS(6161), - [anon_sym_BSLASHGLSname] = ACTIONS(6161), - [anon_sym_BSLASHglssymbol] = ACTIONS(6161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6161), - [anon_sym_BSLASHglsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6161), - [anon_sym_BSLASHglsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6161), - [anon_sym_BSLASHglsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6161), - [anon_sym_BSLASHglsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6161), - [anon_sym_BSLASHglsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6161), - [anon_sym_BSLASHnewacronym] = ACTIONS(6161), - [anon_sym_BSLASHacrshort] = ACTIONS(6161), - [anon_sym_BSLASHAcrshort] = ACTIONS(6161), - [anon_sym_BSLASHACRshort] = ACTIONS(6161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6161), - [anon_sym_BSLASHacrlong] = ACTIONS(6161), - [anon_sym_BSLASHAcrlong] = ACTIONS(6161), - [anon_sym_BSLASHACRlong] = ACTIONS(6161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6161), - [anon_sym_BSLASHacrfull] = ACTIONS(6161), - [anon_sym_BSLASHAcrfull] = ACTIONS(6161), - [anon_sym_BSLASHACRfull] = ACTIONS(6161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6161), - [anon_sym_BSLASHacs] = ACTIONS(6161), - [anon_sym_BSLASHAcs] = ACTIONS(6161), - [anon_sym_BSLASHacsp] = ACTIONS(6161), - [anon_sym_BSLASHAcsp] = ACTIONS(6161), - [anon_sym_BSLASHacl] = ACTIONS(6161), - [anon_sym_BSLASHAcl] = ACTIONS(6161), - [anon_sym_BSLASHaclp] = ACTIONS(6161), - [anon_sym_BSLASHAclp] = ACTIONS(6161), - [anon_sym_BSLASHacf] = ACTIONS(6161), - [anon_sym_BSLASHAcf] = ACTIONS(6161), - [anon_sym_BSLASHacfp] = ACTIONS(6161), - [anon_sym_BSLASHAcfp] = ACTIONS(6161), - [anon_sym_BSLASHac] = ACTIONS(6161), - [anon_sym_BSLASHAc] = ACTIONS(6161), - [anon_sym_BSLASHacp] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6161), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6161), - [anon_sym_BSLASHcolor] = ACTIONS(6161), - [anon_sym_BSLASHcolorbox] = ACTIONS(6161), - [anon_sym_BSLASHtextcolor] = ACTIONS(6161), - [anon_sym_BSLASHpagecolor] = ACTIONS(6161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6161), - [anon_sym_BSLASHtext] = ACTIONS(6161), - [anon_sym_BSLASHintertext] = ACTIONS(6161), - [anon_sym_shortintertext] = ACTIONS(6161), - }, - [1722] = { - [sym_command_name] = ACTIONS(6033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6033), - [anon_sym_LBRACK] = ACTIONS(6035), - [anon_sym_RBRACK] = ACTIONS(6035), - [anon_sym_COMMA] = ACTIONS(6035), - [anon_sym_EQ] = ACTIONS(6035), - [anon_sym_LPAREN] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_LBRACE] = ACTIONS(6035), - [sym_word] = ACTIONS(6033), - [sym_placeholder] = ACTIONS(6035), - [anon_sym_PLUS] = ACTIONS(6035), - [anon_sym_DASH] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6035), - [anon_sym_SLASH] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_COLON] = ACTIONS(6033), - [anon_sym_SQUOTE] = ACTIONS(6033), - [anon_sym__] = ACTIONS(6035), - [anon_sym_CARET] = ACTIONS(6035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6035), - [anon_sym_BSLASHbegin] = ACTIONS(6033), - [anon_sym_BSLASHtitle] = ACTIONS(6033), - [anon_sym_BSLASHauthor] = ACTIONS(6033), - [anon_sym_BSLASHusepackage] = ACTIONS(6033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), - [anon_sym_BSLASHinclude] = ACTIONS(6033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), - [anon_sym_BSLASHinput] = ACTIONS(6033), - [anon_sym_BSLASHsubfile] = ACTIONS(6033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), - [anon_sym_BSLASHbibliography] = ACTIONS(6033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), - [anon_sym_BSLASHincludesvg] = ACTIONS(6033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), - [anon_sym_BSLASHimport] = ACTIONS(6033), - [anon_sym_BSLASHsubimport] = ACTIONS(6033), - [anon_sym_BSLASHinputfrom] = ACTIONS(6033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), - [anon_sym_BSLASHincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHcaption] = ACTIONS(6033), - [anon_sym_BSLASHcite] = ACTIONS(6033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCite] = ACTIONS(6033), - [anon_sym_BSLASHnocite] = ACTIONS(6033), - [anon_sym_BSLASHcitet] = ACTIONS(6033), - [anon_sym_BSLASHcitep] = ACTIONS(6033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteauthor] = ACTIONS(6033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitetitle] = ACTIONS(6033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteyear] = ACTIONS(6033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitedate] = ACTIONS(6033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteurl] = ACTIONS(6033), - [anon_sym_BSLASHfullcite] = ACTIONS(6033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), - [anon_sym_BSLASHcitealt] = ACTIONS(6033), - [anon_sym_BSLASHcitealp] = ACTIONS(6033), - [anon_sym_BSLASHcitetext] = ACTIONS(6033), - [anon_sym_BSLASHparencite] = ACTIONS(6033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHParencite] = ACTIONS(6033), - [anon_sym_BSLASHfootcite] = ACTIONS(6033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), - [anon_sym_BSLASHtextcite] = ACTIONS(6033), - [anon_sym_BSLASHTextcite] = ACTIONS(6033), - [anon_sym_BSLASHsmartcite] = ACTIONS(6033), - [anon_sym_BSLASHSmartcite] = ACTIONS(6033), - [anon_sym_BSLASHsupercite] = ACTIONS(6033), - [anon_sym_BSLASHautocite] = ACTIONS(6033), - [anon_sym_BSLASHAutocite] = ACTIONS(6033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHvolcite] = ACTIONS(6033), - [anon_sym_BSLASHVolcite] = ACTIONS(6033), - [anon_sym_BSLASHpvolcite] = ACTIONS(6033), - [anon_sym_BSLASHPvolcite] = ACTIONS(6033), - [anon_sym_BSLASHfvolcite] = ACTIONS(6033), - [anon_sym_BSLASHftvolcite] = ACTIONS(6033), - [anon_sym_BSLASHsvolcite] = ACTIONS(6033), - [anon_sym_BSLASHSvolcite] = ACTIONS(6033), - [anon_sym_BSLASHtvolcite] = ACTIONS(6033), - [anon_sym_BSLASHTvolcite] = ACTIONS(6033), - [anon_sym_BSLASHavolcite] = ACTIONS(6033), - [anon_sym_BSLASHAvolcite] = ACTIONS(6033), - [anon_sym_BSLASHnotecite] = ACTIONS(6033), - [anon_sym_BSLASHNotecite] = ACTIONS(6033), - [anon_sym_BSLASHpnotecite] = ACTIONS(6033), - [anon_sym_BSLASHPnotecite] = ACTIONS(6033), - [anon_sym_BSLASHfnotecite] = ACTIONS(6033), - [anon_sym_BSLASHlabel] = ACTIONS(6033), - [anon_sym_BSLASHref] = ACTIONS(6033), - [anon_sym_BSLASHeqref] = ACTIONS(6033), - [anon_sym_BSLASHvref] = ACTIONS(6033), - [anon_sym_BSLASHVref] = ACTIONS(6033), - [anon_sym_BSLASHautoref] = ACTIONS(6033), - [anon_sym_BSLASHpageref] = ACTIONS(6033), - [anon_sym_BSLASHcref] = ACTIONS(6033), - [anon_sym_BSLASHCref] = ACTIONS(6033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnameCref] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHlabelcref] = ACTIONS(6033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCrefrange] = ACTIONS(6033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnewlabel] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6035), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHdef] = ACTIONS(6033), - [anon_sym_BSLASHlet] = ACTIONS(6033), - [anon_sym_BSLASHleft] = ACTIONS(6033), - [anon_sym_BSLASHbig] = ACTIONS(6033), - [anon_sym_BSLASHBig] = ACTIONS(6033), - [anon_sym_BSLASHbigg] = ACTIONS(6033), - [anon_sym_BSLASHBigg] = ACTIONS(6033), - [anon_sym_BSLASHbigl] = ACTIONS(6033), - [anon_sym_BSLASHBigl] = ACTIONS(6033), - [anon_sym_BSLASHbiggl] = ACTIONS(6033), - [anon_sym_BSLASHBiggl] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), - [anon_sym_BSLASHgls] = ACTIONS(6033), - [anon_sym_BSLASHGls] = ACTIONS(6033), - [anon_sym_BSLASHGLS] = ACTIONS(6033), - [anon_sym_BSLASHglspl] = ACTIONS(6033), - [anon_sym_BSLASHGlspl] = ACTIONS(6033), - [anon_sym_BSLASHGLSpl] = ACTIONS(6033), - [anon_sym_BSLASHglsdisp] = ACTIONS(6033), - [anon_sym_BSLASHglslink] = ACTIONS(6033), - [anon_sym_BSLASHglstext] = ACTIONS(6033), - [anon_sym_BSLASHGlstext] = ACTIONS(6033), - [anon_sym_BSLASHGLStext] = ACTIONS(6033), - [anon_sym_BSLASHglsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), - [anon_sym_BSLASHglsplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSplural] = ACTIONS(6033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHglsname] = ACTIONS(6033), - [anon_sym_BSLASHGlsname] = ACTIONS(6033), - [anon_sym_BSLASHGLSname] = ACTIONS(6033), - [anon_sym_BSLASHglssymbol] = ACTIONS(6033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), - [anon_sym_BSLASHglsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), - [anon_sym_BSLASHglsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), - [anon_sym_BSLASHglsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), - [anon_sym_BSLASHglsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), - [anon_sym_BSLASHglsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), - [anon_sym_BSLASHnewacronym] = ACTIONS(6033), - [anon_sym_BSLASHacrshort] = ACTIONS(6033), - [anon_sym_BSLASHAcrshort] = ACTIONS(6033), - [anon_sym_BSLASHACRshort] = ACTIONS(6033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), - [anon_sym_BSLASHacrlong] = ACTIONS(6033), - [anon_sym_BSLASHAcrlong] = ACTIONS(6033), - [anon_sym_BSLASHACRlong] = ACTIONS(6033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), - [anon_sym_BSLASHacrfull] = ACTIONS(6033), - [anon_sym_BSLASHAcrfull] = ACTIONS(6033), - [anon_sym_BSLASHACRfull] = ACTIONS(6033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), - [anon_sym_BSLASHacs] = ACTIONS(6033), - [anon_sym_BSLASHAcs] = ACTIONS(6033), - [anon_sym_BSLASHacsp] = ACTIONS(6033), - [anon_sym_BSLASHAcsp] = ACTIONS(6033), - [anon_sym_BSLASHacl] = ACTIONS(6033), - [anon_sym_BSLASHAcl] = ACTIONS(6033), - [anon_sym_BSLASHaclp] = ACTIONS(6033), - [anon_sym_BSLASHAclp] = ACTIONS(6033), - [anon_sym_BSLASHacf] = ACTIONS(6033), - [anon_sym_BSLASHAcf] = ACTIONS(6033), - [anon_sym_BSLASHacfp] = ACTIONS(6033), - [anon_sym_BSLASHAcfp] = ACTIONS(6033), - [anon_sym_BSLASHac] = ACTIONS(6033), - [anon_sym_BSLASHAc] = ACTIONS(6033), - [anon_sym_BSLASHacp] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), - [anon_sym_BSLASHcolor] = ACTIONS(6033), - [anon_sym_BSLASHcolorbox] = ACTIONS(6033), - [anon_sym_BSLASHtextcolor] = ACTIONS(6033), - [anon_sym_BSLASHpagecolor] = ACTIONS(6033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), - [anon_sym_BSLASHtext] = ACTIONS(6033), - [anon_sym_BSLASHintertext] = ACTIONS(6033), - [anon_sym_shortintertext] = ACTIONS(6033), - }, - [1723] = { - [sym_command_name] = ACTIONS(6225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6225), - [anon_sym_LBRACK] = ACTIONS(6227), - [anon_sym_RBRACK] = ACTIONS(6227), - [anon_sym_COMMA] = ACTIONS(6227), - [anon_sym_EQ] = ACTIONS(6227), - [anon_sym_LPAREN] = ACTIONS(6227), - [anon_sym_RPAREN] = ACTIONS(6227), - [anon_sym_LBRACE] = ACTIONS(6227), - [sym_word] = ACTIONS(6225), - [sym_placeholder] = ACTIONS(6227), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6227), - [anon_sym_SLASH] = ACTIONS(6227), - [anon_sym_LT] = ACTIONS(6225), - [anon_sym_GT] = ACTIONS(6225), - [anon_sym_BANG] = ACTIONS(6225), - [anon_sym_PIPE] = ACTIONS(6225), - [anon_sym_COLON] = ACTIONS(6225), - [anon_sym_SQUOTE] = ACTIONS(6225), - [anon_sym__] = ACTIONS(6227), - [anon_sym_CARET] = ACTIONS(6227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6227), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6227), - [anon_sym_DOLLAR] = ACTIONS(6225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6227), - [anon_sym_BSLASHbegin] = ACTIONS(6225), - [anon_sym_BSLASHtitle] = ACTIONS(6225), - [anon_sym_BSLASHauthor] = ACTIONS(6225), - [anon_sym_BSLASHusepackage] = ACTIONS(6225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6225), - [anon_sym_BSLASHinclude] = ACTIONS(6225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6225), - [anon_sym_BSLASHinput] = ACTIONS(6225), - [anon_sym_BSLASHsubfile] = ACTIONS(6225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6225), - [anon_sym_BSLASHbibliography] = ACTIONS(6225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6225), - [anon_sym_BSLASHincludesvg] = ACTIONS(6225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6225), - [anon_sym_BSLASHimport] = ACTIONS(6225), - [anon_sym_BSLASHsubimport] = ACTIONS(6225), - [anon_sym_BSLASHinputfrom] = ACTIONS(6225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6225), - [anon_sym_BSLASHincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6225), - [anon_sym_BSLASHcaption] = ACTIONS(6225), - [anon_sym_BSLASHcite] = ACTIONS(6225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCite] = ACTIONS(6225), - [anon_sym_BSLASHnocite] = ACTIONS(6225), - [anon_sym_BSLASHcitet] = ACTIONS(6225), - [anon_sym_BSLASHcitep] = ACTIONS(6225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteauthor] = ACTIONS(6225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitetitle] = ACTIONS(6225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteyear] = ACTIONS(6225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6227), - [anon_sym_BSLASHcitedate] = ACTIONS(6225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6227), - [anon_sym_BSLASHciteurl] = ACTIONS(6225), - [anon_sym_BSLASHfullcite] = ACTIONS(6225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6225), - [anon_sym_BSLASHcitealt] = ACTIONS(6225), - [anon_sym_BSLASHcitealp] = ACTIONS(6225), - [anon_sym_BSLASHcitetext] = ACTIONS(6225), - [anon_sym_BSLASHparencite] = ACTIONS(6225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHParencite] = ACTIONS(6225), - [anon_sym_BSLASHfootcite] = ACTIONS(6225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6225), - [anon_sym_BSLASHtextcite] = ACTIONS(6225), - [anon_sym_BSLASHTextcite] = ACTIONS(6225), - [anon_sym_BSLASHsmartcite] = ACTIONS(6225), - [anon_sym_BSLASHSmartcite] = ACTIONS(6225), - [anon_sym_BSLASHsupercite] = ACTIONS(6225), - [anon_sym_BSLASHautocite] = ACTIONS(6225), - [anon_sym_BSLASHAutocite] = ACTIONS(6225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6227), - [anon_sym_BSLASHvolcite] = ACTIONS(6225), - [anon_sym_BSLASHVolcite] = ACTIONS(6225), - [anon_sym_BSLASHpvolcite] = ACTIONS(6225), - [anon_sym_BSLASHPvolcite] = ACTIONS(6225), - [anon_sym_BSLASHfvolcite] = ACTIONS(6225), - [anon_sym_BSLASHftvolcite] = ACTIONS(6225), - [anon_sym_BSLASHsvolcite] = ACTIONS(6225), - [anon_sym_BSLASHSvolcite] = ACTIONS(6225), - [anon_sym_BSLASHtvolcite] = ACTIONS(6225), - [anon_sym_BSLASHTvolcite] = ACTIONS(6225), - [anon_sym_BSLASHavolcite] = ACTIONS(6225), - [anon_sym_BSLASHAvolcite] = ACTIONS(6225), - [anon_sym_BSLASHnotecite] = ACTIONS(6225), - [anon_sym_BSLASHNotecite] = ACTIONS(6225), - [anon_sym_BSLASHpnotecite] = ACTIONS(6225), - [anon_sym_BSLASHPnotecite] = ACTIONS(6225), - [anon_sym_BSLASHfnotecite] = ACTIONS(6225), - [anon_sym_BSLASHlabel] = ACTIONS(6225), - [anon_sym_BSLASHref] = ACTIONS(6225), - [anon_sym_BSLASHeqref] = ACTIONS(6225), - [anon_sym_BSLASHvref] = ACTIONS(6225), - [anon_sym_BSLASHVref] = ACTIONS(6225), - [anon_sym_BSLASHautoref] = ACTIONS(6225), - [anon_sym_BSLASHpageref] = ACTIONS(6225), - [anon_sym_BSLASHcref] = ACTIONS(6225), - [anon_sym_BSLASHCref] = ACTIONS(6225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnameCref] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6225), - [anon_sym_BSLASHlabelcref] = ACTIONS(6225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange] = ACTIONS(6225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHCrefrange] = ACTIONS(6225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6227), - [anon_sym_BSLASHnewlabel] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand] = ACTIONS(6225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6227), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6227), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6225), - [anon_sym_BSLASHdef] = ACTIONS(6225), - [anon_sym_BSLASHlet] = ACTIONS(6225), - [anon_sym_BSLASHleft] = ACTIONS(6225), - [anon_sym_BSLASHbig] = ACTIONS(6225), - [anon_sym_BSLASHBig] = ACTIONS(6225), - [anon_sym_BSLASHbigg] = ACTIONS(6225), - [anon_sym_BSLASHBigg] = ACTIONS(6225), - [anon_sym_BSLASHbigl] = ACTIONS(6225), - [anon_sym_BSLASHBigl] = ACTIONS(6225), - [anon_sym_BSLASHbiggl] = ACTIONS(6225), - [anon_sym_BSLASHBiggl] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6225), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6225), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6225), - [anon_sym_BSLASHgls] = ACTIONS(6225), - [anon_sym_BSLASHGls] = ACTIONS(6225), - [anon_sym_BSLASHGLS] = ACTIONS(6225), - [anon_sym_BSLASHglspl] = ACTIONS(6225), - [anon_sym_BSLASHGlspl] = ACTIONS(6225), - [anon_sym_BSLASHGLSpl] = ACTIONS(6225), - [anon_sym_BSLASHglsdisp] = ACTIONS(6225), - [anon_sym_BSLASHglslink] = ACTIONS(6225), - [anon_sym_BSLASHglstext] = ACTIONS(6225), - [anon_sym_BSLASHGlstext] = ACTIONS(6225), - [anon_sym_BSLASHGLStext] = ACTIONS(6225), - [anon_sym_BSLASHglsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6225), - [anon_sym_BSLASHglsplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSplural] = ACTIONS(6225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6225), - [anon_sym_BSLASHglsname] = ACTIONS(6225), - [anon_sym_BSLASHGlsname] = ACTIONS(6225), - [anon_sym_BSLASHGLSname] = ACTIONS(6225), - [anon_sym_BSLASHglssymbol] = ACTIONS(6225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6225), - [anon_sym_BSLASHglsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6225), - [anon_sym_BSLASHglsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6225), - [anon_sym_BSLASHglsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6225), - [anon_sym_BSLASHglsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6225), - [anon_sym_BSLASHglsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6225), - [anon_sym_BSLASHnewacronym] = ACTIONS(6225), - [anon_sym_BSLASHacrshort] = ACTIONS(6225), - [anon_sym_BSLASHAcrshort] = ACTIONS(6225), - [anon_sym_BSLASHACRshort] = ACTIONS(6225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6225), - [anon_sym_BSLASHacrlong] = ACTIONS(6225), - [anon_sym_BSLASHAcrlong] = ACTIONS(6225), - [anon_sym_BSLASHACRlong] = ACTIONS(6225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6225), - [anon_sym_BSLASHacrfull] = ACTIONS(6225), - [anon_sym_BSLASHAcrfull] = ACTIONS(6225), - [anon_sym_BSLASHACRfull] = ACTIONS(6225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6225), - [anon_sym_BSLASHacs] = ACTIONS(6225), - [anon_sym_BSLASHAcs] = ACTIONS(6225), - [anon_sym_BSLASHacsp] = ACTIONS(6225), - [anon_sym_BSLASHAcsp] = ACTIONS(6225), - [anon_sym_BSLASHacl] = ACTIONS(6225), - [anon_sym_BSLASHAcl] = ACTIONS(6225), - [anon_sym_BSLASHaclp] = ACTIONS(6225), - [anon_sym_BSLASHAclp] = ACTIONS(6225), - [anon_sym_BSLASHacf] = ACTIONS(6225), - [anon_sym_BSLASHAcf] = ACTIONS(6225), - [anon_sym_BSLASHacfp] = ACTIONS(6225), - [anon_sym_BSLASHAcfp] = ACTIONS(6225), - [anon_sym_BSLASHac] = ACTIONS(6225), - [anon_sym_BSLASHAc] = ACTIONS(6225), - [anon_sym_BSLASHacp] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6225), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6225), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6225), - [anon_sym_BSLASHcolor] = ACTIONS(6225), - [anon_sym_BSLASHcolorbox] = ACTIONS(6225), - [anon_sym_BSLASHtextcolor] = ACTIONS(6225), - [anon_sym_BSLASHpagecolor] = ACTIONS(6225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6225), - [anon_sym_BSLASHtext] = ACTIONS(6225), - [anon_sym_BSLASHintertext] = ACTIONS(6225), - [anon_sym_shortintertext] = ACTIONS(6225), - }, - [1724] = { - [sym_command_name] = ACTIONS(6229), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6229), - [anon_sym_LBRACK] = ACTIONS(6231), - [anon_sym_RBRACK] = ACTIONS(6231), - [anon_sym_COMMA] = ACTIONS(6231), - [anon_sym_EQ] = ACTIONS(6231), - [anon_sym_LPAREN] = ACTIONS(6231), - [anon_sym_RPAREN] = ACTIONS(6231), - [anon_sym_LBRACE] = ACTIONS(6231), - [sym_word] = ACTIONS(6229), - [sym_placeholder] = ACTIONS(6231), - [anon_sym_PLUS] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(6231), - [anon_sym_SLASH] = ACTIONS(6231), - [anon_sym_LT] = ACTIONS(6229), - [anon_sym_GT] = ACTIONS(6229), - [anon_sym_BANG] = ACTIONS(6229), - [anon_sym_PIPE] = ACTIONS(6229), - [anon_sym_COLON] = ACTIONS(6229), - [anon_sym_SQUOTE] = ACTIONS(6229), - [anon_sym__] = ACTIONS(6231), - [anon_sym_CARET] = ACTIONS(6231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6231), - [anon_sym_DOLLAR] = ACTIONS(6229), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6231), - [anon_sym_BSLASHbegin] = ACTIONS(6229), - [anon_sym_BSLASHtitle] = ACTIONS(6229), - [anon_sym_BSLASHauthor] = ACTIONS(6229), - [anon_sym_BSLASHusepackage] = ACTIONS(6229), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6229), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6229), - [anon_sym_BSLASHinclude] = ACTIONS(6229), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6229), - [anon_sym_BSLASHinput] = ACTIONS(6229), - [anon_sym_BSLASHsubfile] = ACTIONS(6229), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6229), - [anon_sym_BSLASHbibliography] = ACTIONS(6229), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6229), - [anon_sym_BSLASHincludesvg] = ACTIONS(6229), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6229), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6229), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6229), - [anon_sym_BSLASHimport] = ACTIONS(6229), - [anon_sym_BSLASHsubimport] = ACTIONS(6229), - [anon_sym_BSLASHinputfrom] = ACTIONS(6229), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6229), - [anon_sym_BSLASHincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6229), - [anon_sym_BSLASHcaption] = ACTIONS(6229), - [anon_sym_BSLASHcite] = ACTIONS(6229), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCite] = ACTIONS(6229), - [anon_sym_BSLASHnocite] = ACTIONS(6229), - [anon_sym_BSLASHcitet] = ACTIONS(6229), - [anon_sym_BSLASHcitep] = ACTIONS(6229), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteauthor] = ACTIONS(6229), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6229), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitetitle] = ACTIONS(6229), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteyear] = ACTIONS(6229), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6231), - [anon_sym_BSLASHcitedate] = ACTIONS(6229), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6231), - [anon_sym_BSLASHciteurl] = ACTIONS(6229), - [anon_sym_BSLASHfullcite] = ACTIONS(6229), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6229), - [anon_sym_BSLASHcitealt] = ACTIONS(6229), - [anon_sym_BSLASHcitealp] = ACTIONS(6229), - [anon_sym_BSLASHcitetext] = ACTIONS(6229), - [anon_sym_BSLASHparencite] = ACTIONS(6229), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHParencite] = ACTIONS(6229), - [anon_sym_BSLASHfootcite] = ACTIONS(6229), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6229), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6229), - [anon_sym_BSLASHtextcite] = ACTIONS(6229), - [anon_sym_BSLASHTextcite] = ACTIONS(6229), - [anon_sym_BSLASHsmartcite] = ACTIONS(6229), - [anon_sym_BSLASHSmartcite] = ACTIONS(6229), - [anon_sym_BSLASHsupercite] = ACTIONS(6229), - [anon_sym_BSLASHautocite] = ACTIONS(6229), - [anon_sym_BSLASHAutocite] = ACTIONS(6229), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6231), - [anon_sym_BSLASHvolcite] = ACTIONS(6229), - [anon_sym_BSLASHVolcite] = ACTIONS(6229), - [anon_sym_BSLASHpvolcite] = ACTIONS(6229), - [anon_sym_BSLASHPvolcite] = ACTIONS(6229), - [anon_sym_BSLASHfvolcite] = ACTIONS(6229), - [anon_sym_BSLASHftvolcite] = ACTIONS(6229), - [anon_sym_BSLASHsvolcite] = ACTIONS(6229), - [anon_sym_BSLASHSvolcite] = ACTIONS(6229), - [anon_sym_BSLASHtvolcite] = ACTIONS(6229), - [anon_sym_BSLASHTvolcite] = ACTIONS(6229), - [anon_sym_BSLASHavolcite] = ACTIONS(6229), - [anon_sym_BSLASHAvolcite] = ACTIONS(6229), - [anon_sym_BSLASHnotecite] = ACTIONS(6229), - [anon_sym_BSLASHNotecite] = ACTIONS(6229), - [anon_sym_BSLASHpnotecite] = ACTIONS(6229), - [anon_sym_BSLASHPnotecite] = ACTIONS(6229), - [anon_sym_BSLASHfnotecite] = ACTIONS(6229), - [anon_sym_BSLASHlabel] = ACTIONS(6229), - [anon_sym_BSLASHref] = ACTIONS(6229), - [anon_sym_BSLASHeqref] = ACTIONS(6229), - [anon_sym_BSLASHvref] = ACTIONS(6229), - [anon_sym_BSLASHVref] = ACTIONS(6229), - [anon_sym_BSLASHautoref] = ACTIONS(6229), - [anon_sym_BSLASHpageref] = ACTIONS(6229), - [anon_sym_BSLASHcref] = ACTIONS(6229), - [anon_sym_BSLASHCref] = ACTIONS(6229), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnameCref] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6229), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6229), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6229), - [anon_sym_BSLASHlabelcref] = ACTIONS(6229), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange] = ACTIONS(6229), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHCrefrange] = ACTIONS(6229), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6231), - [anon_sym_BSLASHnewlabel] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand] = ACTIONS(6229), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6229), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6231), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6229), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6231), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6229), - [anon_sym_BSLASHdef] = ACTIONS(6229), - [anon_sym_BSLASHlet] = ACTIONS(6229), - [anon_sym_BSLASHleft] = ACTIONS(6229), - [anon_sym_BSLASHbig] = ACTIONS(6229), - [anon_sym_BSLASHBig] = ACTIONS(6229), - [anon_sym_BSLASHbigg] = ACTIONS(6229), - [anon_sym_BSLASHBigg] = ACTIONS(6229), - [anon_sym_BSLASHbigl] = ACTIONS(6229), - [anon_sym_BSLASHBigl] = ACTIONS(6229), - [anon_sym_BSLASHbiggl] = ACTIONS(6229), - [anon_sym_BSLASHBiggl] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6229), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6229), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6229), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6229), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6229), - [anon_sym_BSLASHgls] = ACTIONS(6229), - [anon_sym_BSLASHGls] = ACTIONS(6229), - [anon_sym_BSLASHGLS] = ACTIONS(6229), - [anon_sym_BSLASHglspl] = ACTIONS(6229), - [anon_sym_BSLASHGlspl] = ACTIONS(6229), - [anon_sym_BSLASHGLSpl] = ACTIONS(6229), - [anon_sym_BSLASHglsdisp] = ACTIONS(6229), - [anon_sym_BSLASHglslink] = ACTIONS(6229), - [anon_sym_BSLASHglstext] = ACTIONS(6229), - [anon_sym_BSLASHGlstext] = ACTIONS(6229), - [anon_sym_BSLASHGLStext] = ACTIONS(6229), - [anon_sym_BSLASHglsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6229), - [anon_sym_BSLASHglsplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSplural] = ACTIONS(6229), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6229), - [anon_sym_BSLASHglsname] = ACTIONS(6229), - [anon_sym_BSLASHGlsname] = ACTIONS(6229), - [anon_sym_BSLASHGLSname] = ACTIONS(6229), - [anon_sym_BSLASHglssymbol] = ACTIONS(6229), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6229), - [anon_sym_BSLASHglsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6229), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6229), - [anon_sym_BSLASHglsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6229), - [anon_sym_BSLASHglsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6229), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6229), - [anon_sym_BSLASHglsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6229), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6229), - [anon_sym_BSLASHglsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6229), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6229), - [anon_sym_BSLASHnewacronym] = ACTIONS(6229), - [anon_sym_BSLASHacrshort] = ACTIONS(6229), - [anon_sym_BSLASHAcrshort] = ACTIONS(6229), - [anon_sym_BSLASHACRshort] = ACTIONS(6229), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6229), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6229), - [anon_sym_BSLASHacrlong] = ACTIONS(6229), - [anon_sym_BSLASHAcrlong] = ACTIONS(6229), - [anon_sym_BSLASHACRlong] = ACTIONS(6229), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6229), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6229), - [anon_sym_BSLASHacrfull] = ACTIONS(6229), - [anon_sym_BSLASHAcrfull] = ACTIONS(6229), - [anon_sym_BSLASHACRfull] = ACTIONS(6229), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6229), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6229), - [anon_sym_BSLASHacs] = ACTIONS(6229), - [anon_sym_BSLASHAcs] = ACTIONS(6229), - [anon_sym_BSLASHacsp] = ACTIONS(6229), - [anon_sym_BSLASHAcsp] = ACTIONS(6229), - [anon_sym_BSLASHacl] = ACTIONS(6229), - [anon_sym_BSLASHAcl] = ACTIONS(6229), - [anon_sym_BSLASHaclp] = ACTIONS(6229), - [anon_sym_BSLASHAclp] = ACTIONS(6229), - [anon_sym_BSLASHacf] = ACTIONS(6229), - [anon_sym_BSLASHAcf] = ACTIONS(6229), - [anon_sym_BSLASHacfp] = ACTIONS(6229), - [anon_sym_BSLASHAcfp] = ACTIONS(6229), - [anon_sym_BSLASHac] = ACTIONS(6229), - [anon_sym_BSLASHAc] = ACTIONS(6229), - [anon_sym_BSLASHacp] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6229), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6229), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6229), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6229), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6229), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6229), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6229), - [anon_sym_BSLASHcolor] = ACTIONS(6229), - [anon_sym_BSLASHcolorbox] = ACTIONS(6229), - [anon_sym_BSLASHtextcolor] = ACTIONS(6229), - [anon_sym_BSLASHpagecolor] = ACTIONS(6229), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6229), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6229), - [anon_sym_BSLASHtext] = ACTIONS(6229), - [anon_sym_BSLASHintertext] = ACTIONS(6229), - [anon_sym_shortintertext] = ACTIONS(6229), - }, - [1725] = { - [sym_command_name] = ACTIONS(6233), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_RBRACK] = ACTIONS(6235), - [anon_sym_COMMA] = ACTIONS(6235), - [anon_sym_EQ] = ACTIONS(6235), - [anon_sym_LPAREN] = ACTIONS(6235), - [anon_sym_RPAREN] = ACTIONS(6235), - [anon_sym_LBRACE] = ACTIONS(6235), - [sym_word] = ACTIONS(6233), - [sym_placeholder] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_LT] = ACTIONS(6233), - [anon_sym_GT] = ACTIONS(6233), - [anon_sym_BANG] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(6233), - [anon_sym_SQUOTE] = ACTIONS(6233), - [anon_sym__] = ACTIONS(6235), - [anon_sym_CARET] = ACTIONS(6235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6235), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6235), - [anon_sym_DOLLAR] = ACTIONS(6233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6235), - [anon_sym_BSLASHbegin] = ACTIONS(6233), - [anon_sym_BSLASHtitle] = ACTIONS(6233), - [anon_sym_BSLASHauthor] = ACTIONS(6233), - [anon_sym_BSLASHusepackage] = ACTIONS(6233), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6233), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6233), - [anon_sym_BSLASHinclude] = ACTIONS(6233), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6233), - [anon_sym_BSLASHinput] = ACTIONS(6233), - [anon_sym_BSLASHsubfile] = ACTIONS(6233), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6233), - [anon_sym_BSLASHbibliography] = ACTIONS(6233), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6233), - [anon_sym_BSLASHincludesvg] = ACTIONS(6233), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6233), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6233), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6233), - [anon_sym_BSLASHimport] = ACTIONS(6233), - [anon_sym_BSLASHsubimport] = ACTIONS(6233), - [anon_sym_BSLASHinputfrom] = ACTIONS(6233), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6233), - [anon_sym_BSLASHincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6233), - [anon_sym_BSLASHcaption] = ACTIONS(6233), - [anon_sym_BSLASHcite] = ACTIONS(6233), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCite] = ACTIONS(6233), - [anon_sym_BSLASHnocite] = ACTIONS(6233), - [anon_sym_BSLASHcitet] = ACTIONS(6233), - [anon_sym_BSLASHcitep] = ACTIONS(6233), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteauthor] = ACTIONS(6233), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6233), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitetitle] = ACTIONS(6233), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteyear] = ACTIONS(6233), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6235), - [anon_sym_BSLASHcitedate] = ACTIONS(6233), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6235), - [anon_sym_BSLASHciteurl] = ACTIONS(6233), - [anon_sym_BSLASHfullcite] = ACTIONS(6233), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6233), - [anon_sym_BSLASHcitealt] = ACTIONS(6233), - [anon_sym_BSLASHcitealp] = ACTIONS(6233), - [anon_sym_BSLASHcitetext] = ACTIONS(6233), - [anon_sym_BSLASHparencite] = ACTIONS(6233), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHParencite] = ACTIONS(6233), - [anon_sym_BSLASHfootcite] = ACTIONS(6233), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6233), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6233), - [anon_sym_BSLASHtextcite] = ACTIONS(6233), - [anon_sym_BSLASHTextcite] = ACTIONS(6233), - [anon_sym_BSLASHsmartcite] = ACTIONS(6233), - [anon_sym_BSLASHSmartcite] = ACTIONS(6233), - [anon_sym_BSLASHsupercite] = ACTIONS(6233), - [anon_sym_BSLASHautocite] = ACTIONS(6233), - [anon_sym_BSLASHAutocite] = ACTIONS(6233), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6235), - [anon_sym_BSLASHvolcite] = ACTIONS(6233), - [anon_sym_BSLASHVolcite] = ACTIONS(6233), - [anon_sym_BSLASHpvolcite] = ACTIONS(6233), - [anon_sym_BSLASHPvolcite] = ACTIONS(6233), - [anon_sym_BSLASHfvolcite] = ACTIONS(6233), - [anon_sym_BSLASHftvolcite] = ACTIONS(6233), - [anon_sym_BSLASHsvolcite] = ACTIONS(6233), - [anon_sym_BSLASHSvolcite] = ACTIONS(6233), - [anon_sym_BSLASHtvolcite] = ACTIONS(6233), - [anon_sym_BSLASHTvolcite] = ACTIONS(6233), - [anon_sym_BSLASHavolcite] = ACTIONS(6233), - [anon_sym_BSLASHAvolcite] = ACTIONS(6233), - [anon_sym_BSLASHnotecite] = ACTIONS(6233), - [anon_sym_BSLASHNotecite] = ACTIONS(6233), - [anon_sym_BSLASHpnotecite] = ACTIONS(6233), - [anon_sym_BSLASHPnotecite] = ACTIONS(6233), - [anon_sym_BSLASHfnotecite] = ACTIONS(6233), - [anon_sym_BSLASHlabel] = ACTIONS(6233), - [anon_sym_BSLASHref] = ACTIONS(6233), - [anon_sym_BSLASHeqref] = ACTIONS(6233), - [anon_sym_BSLASHvref] = ACTIONS(6233), - [anon_sym_BSLASHVref] = ACTIONS(6233), - [anon_sym_BSLASHautoref] = ACTIONS(6233), - [anon_sym_BSLASHpageref] = ACTIONS(6233), - [anon_sym_BSLASHcref] = ACTIONS(6233), - [anon_sym_BSLASHCref] = ACTIONS(6233), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnameCref] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6233), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6233), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6233), - [anon_sym_BSLASHlabelcref] = ACTIONS(6233), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange] = ACTIONS(6233), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHCrefrange] = ACTIONS(6233), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6235), - [anon_sym_BSLASHnewlabel] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand] = ACTIONS(6233), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6233), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6235), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6233), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6235), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6233), - [anon_sym_BSLASHdef] = ACTIONS(6233), - [anon_sym_BSLASHlet] = ACTIONS(6233), - [anon_sym_BSLASHleft] = ACTIONS(6233), - [anon_sym_BSLASHbig] = ACTIONS(6233), - [anon_sym_BSLASHBig] = ACTIONS(6233), - [anon_sym_BSLASHbigg] = ACTIONS(6233), - [anon_sym_BSLASHBigg] = ACTIONS(6233), - [anon_sym_BSLASHbigl] = ACTIONS(6233), - [anon_sym_BSLASHBigl] = ACTIONS(6233), - [anon_sym_BSLASHbiggl] = ACTIONS(6233), - [anon_sym_BSLASHBiggl] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6233), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6233), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6233), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6233), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6233), - [anon_sym_BSLASHgls] = ACTIONS(6233), - [anon_sym_BSLASHGls] = ACTIONS(6233), - [anon_sym_BSLASHGLS] = ACTIONS(6233), - [anon_sym_BSLASHglspl] = ACTIONS(6233), - [anon_sym_BSLASHGlspl] = ACTIONS(6233), - [anon_sym_BSLASHGLSpl] = ACTIONS(6233), - [anon_sym_BSLASHglsdisp] = ACTIONS(6233), - [anon_sym_BSLASHglslink] = ACTIONS(6233), - [anon_sym_BSLASHglstext] = ACTIONS(6233), - [anon_sym_BSLASHGlstext] = ACTIONS(6233), - [anon_sym_BSLASHGLStext] = ACTIONS(6233), - [anon_sym_BSLASHglsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6233), - [anon_sym_BSLASHglsplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSplural] = ACTIONS(6233), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6233), - [anon_sym_BSLASHglsname] = ACTIONS(6233), - [anon_sym_BSLASHGlsname] = ACTIONS(6233), - [anon_sym_BSLASHGLSname] = ACTIONS(6233), - [anon_sym_BSLASHglssymbol] = ACTIONS(6233), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6233), - [anon_sym_BSLASHglsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6233), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6233), - [anon_sym_BSLASHglsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6233), - [anon_sym_BSLASHglsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6233), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6233), - [anon_sym_BSLASHglsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6233), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6233), - [anon_sym_BSLASHglsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6233), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6233), - [anon_sym_BSLASHnewacronym] = ACTIONS(6233), - [anon_sym_BSLASHacrshort] = ACTIONS(6233), - [anon_sym_BSLASHAcrshort] = ACTIONS(6233), - [anon_sym_BSLASHACRshort] = ACTIONS(6233), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6233), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6233), - [anon_sym_BSLASHacrlong] = ACTIONS(6233), - [anon_sym_BSLASHAcrlong] = ACTIONS(6233), - [anon_sym_BSLASHACRlong] = ACTIONS(6233), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6233), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6233), - [anon_sym_BSLASHacrfull] = ACTIONS(6233), - [anon_sym_BSLASHAcrfull] = ACTIONS(6233), - [anon_sym_BSLASHACRfull] = ACTIONS(6233), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6233), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6233), - [anon_sym_BSLASHacs] = ACTIONS(6233), - [anon_sym_BSLASHAcs] = ACTIONS(6233), - [anon_sym_BSLASHacsp] = ACTIONS(6233), - [anon_sym_BSLASHAcsp] = ACTIONS(6233), - [anon_sym_BSLASHacl] = ACTIONS(6233), - [anon_sym_BSLASHAcl] = ACTIONS(6233), - [anon_sym_BSLASHaclp] = ACTIONS(6233), - [anon_sym_BSLASHAclp] = ACTIONS(6233), - [anon_sym_BSLASHacf] = ACTIONS(6233), - [anon_sym_BSLASHAcf] = ACTIONS(6233), - [anon_sym_BSLASHacfp] = ACTIONS(6233), - [anon_sym_BSLASHAcfp] = ACTIONS(6233), - [anon_sym_BSLASHac] = ACTIONS(6233), - [anon_sym_BSLASHAc] = ACTIONS(6233), - [anon_sym_BSLASHacp] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6233), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6233), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6233), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6233), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6233), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6233), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6233), - [anon_sym_BSLASHcolor] = ACTIONS(6233), - [anon_sym_BSLASHcolorbox] = ACTIONS(6233), - [anon_sym_BSLASHtextcolor] = ACTIONS(6233), - [anon_sym_BSLASHpagecolor] = ACTIONS(6233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6233), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6233), - [anon_sym_BSLASHtext] = ACTIONS(6233), - [anon_sym_BSLASHintertext] = ACTIONS(6233), - [anon_sym_shortintertext] = ACTIONS(6233), - }, - [1726] = { - [sym_command_name] = ACTIONS(6297), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6297), - [anon_sym_LBRACK] = ACTIONS(6299), - [anon_sym_RBRACK] = ACTIONS(6299), - [anon_sym_COMMA] = ACTIONS(6299), - [anon_sym_EQ] = ACTIONS(6299), - [anon_sym_LPAREN] = ACTIONS(6299), - [anon_sym_RPAREN] = ACTIONS(6299), - [anon_sym_LBRACE] = ACTIONS(6299), - [sym_word] = ACTIONS(6297), - [sym_placeholder] = ACTIONS(6299), - [anon_sym_PLUS] = ACTIONS(6299), - [anon_sym_DASH] = ACTIONS(6299), - [anon_sym_STAR] = ACTIONS(6299), - [anon_sym_SLASH] = ACTIONS(6299), - [anon_sym_LT] = ACTIONS(6297), - [anon_sym_GT] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(6297), - [anon_sym_PIPE] = ACTIONS(6297), - [anon_sym_COLON] = ACTIONS(6297), - [anon_sym_SQUOTE] = ACTIONS(6297), - [anon_sym__] = ACTIONS(6299), - [anon_sym_CARET] = ACTIONS(6299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6299), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6299), - [anon_sym_DOLLAR] = ACTIONS(6297), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6299), - [anon_sym_BSLASHbegin] = ACTIONS(6297), - [anon_sym_BSLASHtitle] = ACTIONS(6297), - [anon_sym_BSLASHauthor] = ACTIONS(6297), - [anon_sym_BSLASHusepackage] = ACTIONS(6297), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6297), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6297), - [anon_sym_BSLASHinclude] = ACTIONS(6297), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6297), - [anon_sym_BSLASHinput] = ACTIONS(6297), - [anon_sym_BSLASHsubfile] = ACTIONS(6297), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6297), - [anon_sym_BSLASHbibliography] = ACTIONS(6297), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6297), - [anon_sym_BSLASHincludesvg] = ACTIONS(6297), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6297), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6297), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6297), - [anon_sym_BSLASHimport] = ACTIONS(6297), - [anon_sym_BSLASHsubimport] = ACTIONS(6297), - [anon_sym_BSLASHinputfrom] = ACTIONS(6297), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6297), - [anon_sym_BSLASHincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6297), - [anon_sym_BSLASHcaption] = ACTIONS(6297), - [anon_sym_BSLASHcite] = ACTIONS(6297), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCite] = ACTIONS(6297), - [anon_sym_BSLASHnocite] = ACTIONS(6297), - [anon_sym_BSLASHcitet] = ACTIONS(6297), - [anon_sym_BSLASHcitep] = ACTIONS(6297), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteauthor] = ACTIONS(6297), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6297), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitetitle] = ACTIONS(6297), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteyear] = ACTIONS(6297), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6299), - [anon_sym_BSLASHcitedate] = ACTIONS(6297), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6299), - [anon_sym_BSLASHciteurl] = ACTIONS(6297), - [anon_sym_BSLASHfullcite] = ACTIONS(6297), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6297), - [anon_sym_BSLASHcitealt] = ACTIONS(6297), - [anon_sym_BSLASHcitealp] = ACTIONS(6297), - [anon_sym_BSLASHcitetext] = ACTIONS(6297), - [anon_sym_BSLASHparencite] = ACTIONS(6297), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHParencite] = ACTIONS(6297), - [anon_sym_BSLASHfootcite] = ACTIONS(6297), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6297), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6297), - [anon_sym_BSLASHtextcite] = ACTIONS(6297), - [anon_sym_BSLASHTextcite] = ACTIONS(6297), - [anon_sym_BSLASHsmartcite] = ACTIONS(6297), - [anon_sym_BSLASHSmartcite] = ACTIONS(6297), - [anon_sym_BSLASHsupercite] = ACTIONS(6297), - [anon_sym_BSLASHautocite] = ACTIONS(6297), - [anon_sym_BSLASHAutocite] = ACTIONS(6297), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6299), - [anon_sym_BSLASHvolcite] = ACTIONS(6297), - [anon_sym_BSLASHVolcite] = ACTIONS(6297), - [anon_sym_BSLASHpvolcite] = ACTIONS(6297), - [anon_sym_BSLASHPvolcite] = ACTIONS(6297), - [anon_sym_BSLASHfvolcite] = ACTIONS(6297), - [anon_sym_BSLASHftvolcite] = ACTIONS(6297), - [anon_sym_BSLASHsvolcite] = ACTIONS(6297), - [anon_sym_BSLASHSvolcite] = ACTIONS(6297), - [anon_sym_BSLASHtvolcite] = ACTIONS(6297), - [anon_sym_BSLASHTvolcite] = ACTIONS(6297), - [anon_sym_BSLASHavolcite] = ACTIONS(6297), - [anon_sym_BSLASHAvolcite] = ACTIONS(6297), - [anon_sym_BSLASHnotecite] = ACTIONS(6297), - [anon_sym_BSLASHNotecite] = ACTIONS(6297), - [anon_sym_BSLASHpnotecite] = ACTIONS(6297), - [anon_sym_BSLASHPnotecite] = ACTIONS(6297), - [anon_sym_BSLASHfnotecite] = ACTIONS(6297), - [anon_sym_BSLASHlabel] = ACTIONS(6297), - [anon_sym_BSLASHref] = ACTIONS(6297), - [anon_sym_BSLASHeqref] = ACTIONS(6297), - [anon_sym_BSLASHvref] = ACTIONS(6297), - [anon_sym_BSLASHVref] = ACTIONS(6297), - [anon_sym_BSLASHautoref] = ACTIONS(6297), - [anon_sym_BSLASHpageref] = ACTIONS(6297), - [anon_sym_BSLASHcref] = ACTIONS(6297), - [anon_sym_BSLASHCref] = ACTIONS(6297), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnameCref] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6297), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6297), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6297), - [anon_sym_BSLASHlabelcref] = ACTIONS(6297), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange] = ACTIONS(6297), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHCrefrange] = ACTIONS(6297), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6299), - [anon_sym_BSLASHnewlabel] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand] = ACTIONS(6297), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6297), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6299), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6297), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6299), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6297), - [anon_sym_BSLASHdef] = ACTIONS(6297), - [anon_sym_BSLASHlet] = ACTIONS(6297), - [anon_sym_BSLASHleft] = ACTIONS(6297), - [anon_sym_BSLASHbig] = ACTIONS(6297), - [anon_sym_BSLASHBig] = ACTIONS(6297), - [anon_sym_BSLASHbigg] = ACTIONS(6297), - [anon_sym_BSLASHBigg] = ACTIONS(6297), - [anon_sym_BSLASHbigl] = ACTIONS(6297), - [anon_sym_BSLASHBigl] = ACTIONS(6297), - [anon_sym_BSLASHbiggl] = ACTIONS(6297), - [anon_sym_BSLASHBiggl] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6297), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6297), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6297), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6297), - [anon_sym_BSLASHgls] = ACTIONS(6297), - [anon_sym_BSLASHGls] = ACTIONS(6297), - [anon_sym_BSLASHGLS] = ACTIONS(6297), - [anon_sym_BSLASHglspl] = ACTIONS(6297), - [anon_sym_BSLASHGlspl] = ACTIONS(6297), - [anon_sym_BSLASHGLSpl] = ACTIONS(6297), - [anon_sym_BSLASHglsdisp] = ACTIONS(6297), - [anon_sym_BSLASHglslink] = ACTIONS(6297), - [anon_sym_BSLASHglstext] = ACTIONS(6297), - [anon_sym_BSLASHGlstext] = ACTIONS(6297), - [anon_sym_BSLASHGLStext] = ACTIONS(6297), - [anon_sym_BSLASHglsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6297), - [anon_sym_BSLASHglsplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSplural] = ACTIONS(6297), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6297), - [anon_sym_BSLASHglsname] = ACTIONS(6297), - [anon_sym_BSLASHGlsname] = ACTIONS(6297), - [anon_sym_BSLASHGLSname] = ACTIONS(6297), - [anon_sym_BSLASHglssymbol] = ACTIONS(6297), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6297), - [anon_sym_BSLASHglsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6297), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6297), - [anon_sym_BSLASHglsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6297), - [anon_sym_BSLASHglsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6297), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6297), - [anon_sym_BSLASHglsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6297), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6297), - [anon_sym_BSLASHglsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6297), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6297), - [anon_sym_BSLASHnewacronym] = ACTIONS(6297), - [anon_sym_BSLASHacrshort] = ACTIONS(6297), - [anon_sym_BSLASHAcrshort] = ACTIONS(6297), - [anon_sym_BSLASHACRshort] = ACTIONS(6297), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6297), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6297), - [anon_sym_BSLASHacrlong] = ACTIONS(6297), - [anon_sym_BSLASHAcrlong] = ACTIONS(6297), - [anon_sym_BSLASHACRlong] = ACTIONS(6297), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6297), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6297), - [anon_sym_BSLASHacrfull] = ACTIONS(6297), - [anon_sym_BSLASHAcrfull] = ACTIONS(6297), - [anon_sym_BSLASHACRfull] = ACTIONS(6297), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6297), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6297), - [anon_sym_BSLASHacs] = ACTIONS(6297), - [anon_sym_BSLASHAcs] = ACTIONS(6297), - [anon_sym_BSLASHacsp] = ACTIONS(6297), - [anon_sym_BSLASHAcsp] = ACTIONS(6297), - [anon_sym_BSLASHacl] = ACTIONS(6297), - [anon_sym_BSLASHAcl] = ACTIONS(6297), - [anon_sym_BSLASHaclp] = ACTIONS(6297), - [anon_sym_BSLASHAclp] = ACTIONS(6297), - [anon_sym_BSLASHacf] = ACTIONS(6297), - [anon_sym_BSLASHAcf] = ACTIONS(6297), - [anon_sym_BSLASHacfp] = ACTIONS(6297), - [anon_sym_BSLASHAcfp] = ACTIONS(6297), - [anon_sym_BSLASHac] = ACTIONS(6297), - [anon_sym_BSLASHAc] = ACTIONS(6297), - [anon_sym_BSLASHacp] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6297), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6297), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6297), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6297), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6297), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6297), - [anon_sym_BSLASHcolor] = ACTIONS(6297), - [anon_sym_BSLASHcolorbox] = ACTIONS(6297), - [anon_sym_BSLASHtextcolor] = ACTIONS(6297), - [anon_sym_BSLASHpagecolor] = ACTIONS(6297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6297), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6297), - [anon_sym_BSLASHtext] = ACTIONS(6297), - [anon_sym_BSLASHintertext] = ACTIONS(6297), - [anon_sym_shortintertext] = ACTIONS(6297), - }, - [1727] = { - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [1728] = { - [sym_command_name] = ACTIONS(6301), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6301), - [anon_sym_LBRACK] = ACTIONS(6303), - [anon_sym_RBRACK] = ACTIONS(6303), - [anon_sym_COMMA] = ACTIONS(6303), - [anon_sym_EQ] = ACTIONS(6303), - [anon_sym_LPAREN] = ACTIONS(6303), - [anon_sym_RPAREN] = ACTIONS(6303), - [anon_sym_LBRACE] = ACTIONS(6303), - [sym_word] = ACTIONS(6301), - [sym_placeholder] = ACTIONS(6303), - [anon_sym_PLUS] = ACTIONS(6303), - [anon_sym_DASH] = ACTIONS(6303), - [anon_sym_STAR] = ACTIONS(6303), - [anon_sym_SLASH] = ACTIONS(6303), - [anon_sym_LT] = ACTIONS(6301), - [anon_sym_GT] = ACTIONS(6301), - [anon_sym_BANG] = ACTIONS(6301), - [anon_sym_PIPE] = ACTIONS(6301), - [anon_sym_COLON] = ACTIONS(6301), - [anon_sym_SQUOTE] = ACTIONS(6301), - [anon_sym__] = ACTIONS(6303), - [anon_sym_CARET] = ACTIONS(6303), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6303), - [anon_sym_DOLLAR] = ACTIONS(6301), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6303), - [anon_sym_BSLASHbegin] = ACTIONS(6301), - [anon_sym_BSLASHtitle] = ACTIONS(6301), - [anon_sym_BSLASHauthor] = ACTIONS(6301), - [anon_sym_BSLASHusepackage] = ACTIONS(6301), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6301), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6301), - [anon_sym_BSLASHinclude] = ACTIONS(6301), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6301), - [anon_sym_BSLASHinput] = ACTIONS(6301), - [anon_sym_BSLASHsubfile] = ACTIONS(6301), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6301), - [anon_sym_BSLASHbibliography] = ACTIONS(6301), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6301), - [anon_sym_BSLASHincludesvg] = ACTIONS(6301), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6301), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6301), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6301), - [anon_sym_BSLASHimport] = ACTIONS(6301), - [anon_sym_BSLASHsubimport] = ACTIONS(6301), - [anon_sym_BSLASHinputfrom] = ACTIONS(6301), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6301), - [anon_sym_BSLASHincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6301), - [anon_sym_BSLASHcaption] = ACTIONS(6301), - [anon_sym_BSLASHcite] = ACTIONS(6301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCite] = ACTIONS(6301), - [anon_sym_BSLASHnocite] = ACTIONS(6301), - [anon_sym_BSLASHcitet] = ACTIONS(6301), - [anon_sym_BSLASHcitep] = ACTIONS(6301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteauthor] = ACTIONS(6301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitetitle] = ACTIONS(6301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteyear] = ACTIONS(6301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6303), - [anon_sym_BSLASHcitedate] = ACTIONS(6301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6303), - [anon_sym_BSLASHciteurl] = ACTIONS(6301), - [anon_sym_BSLASHfullcite] = ACTIONS(6301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6301), - [anon_sym_BSLASHcitealt] = ACTIONS(6301), - [anon_sym_BSLASHcitealp] = ACTIONS(6301), - [anon_sym_BSLASHcitetext] = ACTIONS(6301), - [anon_sym_BSLASHparencite] = ACTIONS(6301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHParencite] = ACTIONS(6301), - [anon_sym_BSLASHfootcite] = ACTIONS(6301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6301), - [anon_sym_BSLASHtextcite] = ACTIONS(6301), - [anon_sym_BSLASHTextcite] = ACTIONS(6301), - [anon_sym_BSLASHsmartcite] = ACTIONS(6301), - [anon_sym_BSLASHSmartcite] = ACTIONS(6301), - [anon_sym_BSLASHsupercite] = ACTIONS(6301), - [anon_sym_BSLASHautocite] = ACTIONS(6301), - [anon_sym_BSLASHAutocite] = ACTIONS(6301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6303), - [anon_sym_BSLASHvolcite] = ACTIONS(6301), - [anon_sym_BSLASHVolcite] = ACTIONS(6301), - [anon_sym_BSLASHpvolcite] = ACTIONS(6301), - [anon_sym_BSLASHPvolcite] = ACTIONS(6301), - [anon_sym_BSLASHfvolcite] = ACTIONS(6301), - [anon_sym_BSLASHftvolcite] = ACTIONS(6301), - [anon_sym_BSLASHsvolcite] = ACTIONS(6301), - [anon_sym_BSLASHSvolcite] = ACTIONS(6301), - [anon_sym_BSLASHtvolcite] = ACTIONS(6301), - [anon_sym_BSLASHTvolcite] = ACTIONS(6301), - [anon_sym_BSLASHavolcite] = ACTIONS(6301), - [anon_sym_BSLASHAvolcite] = ACTIONS(6301), - [anon_sym_BSLASHnotecite] = ACTIONS(6301), - [anon_sym_BSLASHNotecite] = ACTIONS(6301), - [anon_sym_BSLASHpnotecite] = ACTIONS(6301), - [anon_sym_BSLASHPnotecite] = ACTIONS(6301), - [anon_sym_BSLASHfnotecite] = ACTIONS(6301), - [anon_sym_BSLASHlabel] = ACTIONS(6301), - [anon_sym_BSLASHref] = ACTIONS(6301), - [anon_sym_BSLASHeqref] = ACTIONS(6301), - [anon_sym_BSLASHvref] = ACTIONS(6301), - [anon_sym_BSLASHVref] = ACTIONS(6301), - [anon_sym_BSLASHautoref] = ACTIONS(6301), - [anon_sym_BSLASHpageref] = ACTIONS(6301), - [anon_sym_BSLASHcref] = ACTIONS(6301), - [anon_sym_BSLASHCref] = ACTIONS(6301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnameCref] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6301), - [anon_sym_BSLASHlabelcref] = ACTIONS(6301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange] = ACTIONS(6301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHCrefrange] = ACTIONS(6301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6303), - [anon_sym_BSLASHnewlabel] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand] = ACTIONS(6301), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6301), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6301), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6303), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6301), - [anon_sym_BSLASHdef] = ACTIONS(6301), - [anon_sym_BSLASHlet] = ACTIONS(6301), - [anon_sym_BSLASHleft] = ACTIONS(6301), - [anon_sym_BSLASHbig] = ACTIONS(6301), - [anon_sym_BSLASHBig] = ACTIONS(6301), - [anon_sym_BSLASHbigg] = ACTIONS(6301), - [anon_sym_BSLASHBigg] = ACTIONS(6301), - [anon_sym_BSLASHbigl] = ACTIONS(6301), - [anon_sym_BSLASHBigl] = ACTIONS(6301), - [anon_sym_BSLASHbiggl] = ACTIONS(6301), - [anon_sym_BSLASHBiggl] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6301), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6301), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6301), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6301), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6301), - [anon_sym_BSLASHgls] = ACTIONS(6301), - [anon_sym_BSLASHGls] = ACTIONS(6301), - [anon_sym_BSLASHGLS] = ACTIONS(6301), - [anon_sym_BSLASHglspl] = ACTIONS(6301), - [anon_sym_BSLASHGlspl] = ACTIONS(6301), - [anon_sym_BSLASHGLSpl] = ACTIONS(6301), - [anon_sym_BSLASHglsdisp] = ACTIONS(6301), - [anon_sym_BSLASHglslink] = ACTIONS(6301), - [anon_sym_BSLASHglstext] = ACTIONS(6301), - [anon_sym_BSLASHGlstext] = ACTIONS(6301), - [anon_sym_BSLASHGLStext] = ACTIONS(6301), - [anon_sym_BSLASHglsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6301), - [anon_sym_BSLASHglsplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSplural] = ACTIONS(6301), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6301), - [anon_sym_BSLASHglsname] = ACTIONS(6301), - [anon_sym_BSLASHGlsname] = ACTIONS(6301), - [anon_sym_BSLASHGLSname] = ACTIONS(6301), - [anon_sym_BSLASHglssymbol] = ACTIONS(6301), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6301), - [anon_sym_BSLASHglsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6301), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6301), - [anon_sym_BSLASHglsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6301), - [anon_sym_BSLASHglsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6301), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6301), - [anon_sym_BSLASHglsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6301), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6301), - [anon_sym_BSLASHglsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6301), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6301), - [anon_sym_BSLASHnewacronym] = ACTIONS(6301), - [anon_sym_BSLASHacrshort] = ACTIONS(6301), - [anon_sym_BSLASHAcrshort] = ACTIONS(6301), - [anon_sym_BSLASHACRshort] = ACTIONS(6301), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6301), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6301), - [anon_sym_BSLASHacrlong] = ACTIONS(6301), - [anon_sym_BSLASHAcrlong] = ACTIONS(6301), - [anon_sym_BSLASHACRlong] = ACTIONS(6301), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6301), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6301), - [anon_sym_BSLASHacrfull] = ACTIONS(6301), - [anon_sym_BSLASHAcrfull] = ACTIONS(6301), - [anon_sym_BSLASHACRfull] = ACTIONS(6301), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6301), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6301), - [anon_sym_BSLASHacs] = ACTIONS(6301), - [anon_sym_BSLASHAcs] = ACTIONS(6301), - [anon_sym_BSLASHacsp] = ACTIONS(6301), - [anon_sym_BSLASHAcsp] = ACTIONS(6301), - [anon_sym_BSLASHacl] = ACTIONS(6301), - [anon_sym_BSLASHAcl] = ACTIONS(6301), - [anon_sym_BSLASHaclp] = ACTIONS(6301), - [anon_sym_BSLASHAclp] = ACTIONS(6301), - [anon_sym_BSLASHacf] = ACTIONS(6301), - [anon_sym_BSLASHAcf] = ACTIONS(6301), - [anon_sym_BSLASHacfp] = ACTIONS(6301), - [anon_sym_BSLASHAcfp] = ACTIONS(6301), - [anon_sym_BSLASHac] = ACTIONS(6301), - [anon_sym_BSLASHAc] = ACTIONS(6301), - [anon_sym_BSLASHacp] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6301), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6301), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6301), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6301), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6301), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6303), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6301), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6301), - [anon_sym_BSLASHcolor] = ACTIONS(6301), - [anon_sym_BSLASHcolorbox] = ACTIONS(6301), - [anon_sym_BSLASHtextcolor] = ACTIONS(6301), - [anon_sym_BSLASHpagecolor] = ACTIONS(6301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6301), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6301), - [anon_sym_BSLASHtext] = ACTIONS(6301), - [anon_sym_BSLASHintertext] = ACTIONS(6301), - [anon_sym_shortintertext] = ACTIONS(6301), - }, - [1729] = { - [sym_command_name] = ACTIONS(6417), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6417), - [anon_sym_LBRACK] = ACTIONS(6419), - [anon_sym_RBRACK] = ACTIONS(6419), - [anon_sym_COMMA] = ACTIONS(6419), - [anon_sym_EQ] = ACTIONS(6419), - [anon_sym_LPAREN] = ACTIONS(6419), - [anon_sym_RPAREN] = ACTIONS(6419), - [anon_sym_LBRACE] = ACTIONS(6419), - [sym_word] = ACTIONS(6417), - [sym_placeholder] = ACTIONS(6419), - [anon_sym_PLUS] = ACTIONS(6419), - [anon_sym_DASH] = ACTIONS(6419), - [anon_sym_STAR] = ACTIONS(6419), - [anon_sym_SLASH] = ACTIONS(6419), - [anon_sym_LT] = ACTIONS(6417), - [anon_sym_GT] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(6417), - [anon_sym_PIPE] = ACTIONS(6417), - [anon_sym_COLON] = ACTIONS(6417), - [anon_sym_SQUOTE] = ACTIONS(6417), - [anon_sym__] = ACTIONS(6419), - [anon_sym_CARET] = ACTIONS(6419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6419), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6419), - [anon_sym_DOLLAR] = ACTIONS(6417), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6419), - [anon_sym_BSLASHbegin] = ACTIONS(6417), - [anon_sym_BSLASHtitle] = ACTIONS(6417), - [anon_sym_BSLASHauthor] = ACTIONS(6417), - [anon_sym_BSLASHusepackage] = ACTIONS(6417), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6417), - [anon_sym_BSLASHinclude] = ACTIONS(6417), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6417), - [anon_sym_BSLASHinput] = ACTIONS(6417), - [anon_sym_BSLASHsubfile] = ACTIONS(6417), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6417), - [anon_sym_BSLASHbibliography] = ACTIONS(6417), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6417), - [anon_sym_BSLASHincludesvg] = ACTIONS(6417), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6417), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6417), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6417), - [anon_sym_BSLASHimport] = ACTIONS(6417), - [anon_sym_BSLASHsubimport] = ACTIONS(6417), - [anon_sym_BSLASHinputfrom] = ACTIONS(6417), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6417), - [anon_sym_BSLASHincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHcaption] = ACTIONS(6417), - [anon_sym_BSLASHcite] = ACTIONS(6417), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCite] = ACTIONS(6417), - [anon_sym_BSLASHnocite] = ACTIONS(6417), - [anon_sym_BSLASHcitet] = ACTIONS(6417), - [anon_sym_BSLASHcitep] = ACTIONS(6417), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteauthor] = ACTIONS(6417), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6417), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitetitle] = ACTIONS(6417), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteyear] = ACTIONS(6417), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitedate] = ACTIONS(6417), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteurl] = ACTIONS(6417), - [anon_sym_BSLASHfullcite] = ACTIONS(6417), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6417), - [anon_sym_BSLASHcitealt] = ACTIONS(6417), - [anon_sym_BSLASHcitealp] = ACTIONS(6417), - [anon_sym_BSLASHcitetext] = ACTIONS(6417), - [anon_sym_BSLASHparencite] = ACTIONS(6417), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHParencite] = ACTIONS(6417), - [anon_sym_BSLASHfootcite] = ACTIONS(6417), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6417), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6417), - [anon_sym_BSLASHtextcite] = ACTIONS(6417), - [anon_sym_BSLASHTextcite] = ACTIONS(6417), - [anon_sym_BSLASHsmartcite] = ACTIONS(6417), - [anon_sym_BSLASHSmartcite] = ACTIONS(6417), - [anon_sym_BSLASHsupercite] = ACTIONS(6417), - [anon_sym_BSLASHautocite] = ACTIONS(6417), - [anon_sym_BSLASHAutocite] = ACTIONS(6417), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHvolcite] = ACTIONS(6417), - [anon_sym_BSLASHVolcite] = ACTIONS(6417), - [anon_sym_BSLASHpvolcite] = ACTIONS(6417), - [anon_sym_BSLASHPvolcite] = ACTIONS(6417), - [anon_sym_BSLASHfvolcite] = ACTIONS(6417), - [anon_sym_BSLASHftvolcite] = ACTIONS(6417), - [anon_sym_BSLASHsvolcite] = ACTIONS(6417), - [anon_sym_BSLASHSvolcite] = ACTIONS(6417), - [anon_sym_BSLASHtvolcite] = ACTIONS(6417), - [anon_sym_BSLASHTvolcite] = ACTIONS(6417), - [anon_sym_BSLASHavolcite] = ACTIONS(6417), - [anon_sym_BSLASHAvolcite] = ACTIONS(6417), - [anon_sym_BSLASHnotecite] = ACTIONS(6417), - [anon_sym_BSLASHNotecite] = ACTIONS(6417), - [anon_sym_BSLASHpnotecite] = ACTIONS(6417), - [anon_sym_BSLASHPnotecite] = ACTIONS(6417), - [anon_sym_BSLASHfnotecite] = ACTIONS(6417), - [anon_sym_BSLASHlabel] = ACTIONS(6417), - [anon_sym_BSLASHref] = ACTIONS(6417), - [anon_sym_BSLASHeqref] = ACTIONS(6417), - [anon_sym_BSLASHvref] = ACTIONS(6417), - [anon_sym_BSLASHVref] = ACTIONS(6417), - [anon_sym_BSLASHautoref] = ACTIONS(6417), - [anon_sym_BSLASHpageref] = ACTIONS(6417), - [anon_sym_BSLASHcref] = ACTIONS(6417), - [anon_sym_BSLASHCref] = ACTIONS(6417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnameCref] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHlabelcref] = ACTIONS(6417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCrefrange] = ACTIONS(6417), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnewlabel] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6419), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHdef] = ACTIONS(6417), - [anon_sym_BSLASHlet] = ACTIONS(6417), - [anon_sym_BSLASHleft] = ACTIONS(6417), - [anon_sym_BSLASHbig] = ACTIONS(6417), - [anon_sym_BSLASHBig] = ACTIONS(6417), - [anon_sym_BSLASHbigg] = ACTIONS(6417), - [anon_sym_BSLASHBigg] = ACTIONS(6417), - [anon_sym_BSLASHbigl] = ACTIONS(6417), - [anon_sym_BSLASHBigl] = ACTIONS(6417), - [anon_sym_BSLASHbiggl] = ACTIONS(6417), - [anon_sym_BSLASHBiggl] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6417), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6417), - [anon_sym_BSLASHgls] = ACTIONS(6417), - [anon_sym_BSLASHGls] = ACTIONS(6417), - [anon_sym_BSLASHGLS] = ACTIONS(6417), - [anon_sym_BSLASHglspl] = ACTIONS(6417), - [anon_sym_BSLASHGlspl] = ACTIONS(6417), - [anon_sym_BSLASHGLSpl] = ACTIONS(6417), - [anon_sym_BSLASHglsdisp] = ACTIONS(6417), - [anon_sym_BSLASHglslink] = ACTIONS(6417), - [anon_sym_BSLASHglstext] = ACTIONS(6417), - [anon_sym_BSLASHGlstext] = ACTIONS(6417), - [anon_sym_BSLASHGLStext] = ACTIONS(6417), - [anon_sym_BSLASHglsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6417), - [anon_sym_BSLASHglsplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSplural] = ACTIONS(6417), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHglsname] = ACTIONS(6417), - [anon_sym_BSLASHGlsname] = ACTIONS(6417), - [anon_sym_BSLASHGLSname] = ACTIONS(6417), - [anon_sym_BSLASHglssymbol] = ACTIONS(6417), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6417), - [anon_sym_BSLASHglsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6417), - [anon_sym_BSLASHglsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6417), - [anon_sym_BSLASHglsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6417), - [anon_sym_BSLASHglsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6417), - [anon_sym_BSLASHglsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6417), - [anon_sym_BSLASHnewacronym] = ACTIONS(6417), - [anon_sym_BSLASHacrshort] = ACTIONS(6417), - [anon_sym_BSLASHAcrshort] = ACTIONS(6417), - [anon_sym_BSLASHACRshort] = ACTIONS(6417), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6417), - [anon_sym_BSLASHacrlong] = ACTIONS(6417), - [anon_sym_BSLASHAcrlong] = ACTIONS(6417), - [anon_sym_BSLASHACRlong] = ACTIONS(6417), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6417), - [anon_sym_BSLASHacrfull] = ACTIONS(6417), - [anon_sym_BSLASHAcrfull] = ACTIONS(6417), - [anon_sym_BSLASHACRfull] = ACTIONS(6417), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6417), - [anon_sym_BSLASHacs] = ACTIONS(6417), - [anon_sym_BSLASHAcs] = ACTIONS(6417), - [anon_sym_BSLASHacsp] = ACTIONS(6417), - [anon_sym_BSLASHAcsp] = ACTIONS(6417), - [anon_sym_BSLASHacl] = ACTIONS(6417), - [anon_sym_BSLASHAcl] = ACTIONS(6417), - [anon_sym_BSLASHaclp] = ACTIONS(6417), - [anon_sym_BSLASHAclp] = ACTIONS(6417), - [anon_sym_BSLASHacf] = ACTIONS(6417), - [anon_sym_BSLASHAcf] = ACTIONS(6417), - [anon_sym_BSLASHacfp] = ACTIONS(6417), - [anon_sym_BSLASHAcfp] = ACTIONS(6417), - [anon_sym_BSLASHac] = ACTIONS(6417), - [anon_sym_BSLASHAc] = ACTIONS(6417), - [anon_sym_BSLASHacp] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6417), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6417), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6417), - [anon_sym_BSLASHcolor] = ACTIONS(6417), - [anon_sym_BSLASHcolorbox] = ACTIONS(6417), - [anon_sym_BSLASHtextcolor] = ACTIONS(6417), - [anon_sym_BSLASHpagecolor] = ACTIONS(6417), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6417), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6417), - [anon_sym_BSLASHtext] = ACTIONS(6417), - [anon_sym_BSLASHintertext] = ACTIONS(6417), - [anon_sym_shortintertext] = ACTIONS(6417), - }, - [1730] = { - [sym_command_name] = ACTIONS(6421), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6421), - [anon_sym_LBRACK] = ACTIONS(6423), - [anon_sym_RBRACK] = ACTIONS(6423), - [anon_sym_COMMA] = ACTIONS(6423), - [anon_sym_EQ] = ACTIONS(6423), - [anon_sym_LPAREN] = ACTIONS(6423), - [anon_sym_RPAREN] = ACTIONS(6423), - [anon_sym_LBRACE] = ACTIONS(6423), - [sym_word] = ACTIONS(6421), - [sym_placeholder] = ACTIONS(6423), - [anon_sym_PLUS] = ACTIONS(6423), - [anon_sym_DASH] = ACTIONS(6423), - [anon_sym_STAR] = ACTIONS(6423), - [anon_sym_SLASH] = ACTIONS(6423), - [anon_sym_LT] = ACTIONS(6421), - [anon_sym_GT] = ACTIONS(6421), - [anon_sym_BANG] = ACTIONS(6421), - [anon_sym_PIPE] = ACTIONS(6421), - [anon_sym_COLON] = ACTIONS(6421), - [anon_sym_SQUOTE] = ACTIONS(6421), - [anon_sym__] = ACTIONS(6423), - [anon_sym_CARET] = ACTIONS(6423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6423), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6423), - [anon_sym_DOLLAR] = ACTIONS(6421), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6423), - [anon_sym_BSLASHbegin] = ACTIONS(6421), - [anon_sym_BSLASHtitle] = ACTIONS(6421), - [anon_sym_BSLASHauthor] = ACTIONS(6421), - [anon_sym_BSLASHusepackage] = ACTIONS(6421), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6421), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6421), - [anon_sym_BSLASHinclude] = ACTIONS(6421), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6421), - [anon_sym_BSLASHinput] = ACTIONS(6421), - [anon_sym_BSLASHsubfile] = ACTIONS(6421), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6421), - [anon_sym_BSLASHbibliography] = ACTIONS(6421), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6421), - [anon_sym_BSLASHincludesvg] = ACTIONS(6421), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6421), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6421), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6421), - [anon_sym_BSLASHimport] = ACTIONS(6421), - [anon_sym_BSLASHsubimport] = ACTIONS(6421), - [anon_sym_BSLASHinputfrom] = ACTIONS(6421), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6421), - [anon_sym_BSLASHincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHcaption] = ACTIONS(6421), - [anon_sym_BSLASHcite] = ACTIONS(6421), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCite] = ACTIONS(6421), - [anon_sym_BSLASHnocite] = ACTIONS(6421), - [anon_sym_BSLASHcitet] = ACTIONS(6421), - [anon_sym_BSLASHcitep] = ACTIONS(6421), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteauthor] = ACTIONS(6421), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6421), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitetitle] = ACTIONS(6421), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteyear] = ACTIONS(6421), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitedate] = ACTIONS(6421), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteurl] = ACTIONS(6421), - [anon_sym_BSLASHfullcite] = ACTIONS(6421), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6421), - [anon_sym_BSLASHcitealt] = ACTIONS(6421), - [anon_sym_BSLASHcitealp] = ACTIONS(6421), - [anon_sym_BSLASHcitetext] = ACTIONS(6421), - [anon_sym_BSLASHparencite] = ACTIONS(6421), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHParencite] = ACTIONS(6421), - [anon_sym_BSLASHfootcite] = ACTIONS(6421), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6421), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6421), - [anon_sym_BSLASHtextcite] = ACTIONS(6421), - [anon_sym_BSLASHTextcite] = ACTIONS(6421), - [anon_sym_BSLASHsmartcite] = ACTIONS(6421), - [anon_sym_BSLASHSmartcite] = ACTIONS(6421), - [anon_sym_BSLASHsupercite] = ACTIONS(6421), - [anon_sym_BSLASHautocite] = ACTIONS(6421), - [anon_sym_BSLASHAutocite] = ACTIONS(6421), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHvolcite] = ACTIONS(6421), - [anon_sym_BSLASHVolcite] = ACTIONS(6421), - [anon_sym_BSLASHpvolcite] = ACTIONS(6421), - [anon_sym_BSLASHPvolcite] = ACTIONS(6421), - [anon_sym_BSLASHfvolcite] = ACTIONS(6421), - [anon_sym_BSLASHftvolcite] = ACTIONS(6421), - [anon_sym_BSLASHsvolcite] = ACTIONS(6421), - [anon_sym_BSLASHSvolcite] = ACTIONS(6421), - [anon_sym_BSLASHtvolcite] = ACTIONS(6421), - [anon_sym_BSLASHTvolcite] = ACTIONS(6421), - [anon_sym_BSLASHavolcite] = ACTIONS(6421), - [anon_sym_BSLASHAvolcite] = ACTIONS(6421), - [anon_sym_BSLASHnotecite] = ACTIONS(6421), - [anon_sym_BSLASHNotecite] = ACTIONS(6421), - [anon_sym_BSLASHpnotecite] = ACTIONS(6421), - [anon_sym_BSLASHPnotecite] = ACTIONS(6421), - [anon_sym_BSLASHfnotecite] = ACTIONS(6421), - [anon_sym_BSLASHlabel] = ACTIONS(6421), - [anon_sym_BSLASHref] = ACTIONS(6421), - [anon_sym_BSLASHeqref] = ACTIONS(6421), - [anon_sym_BSLASHvref] = ACTIONS(6421), - [anon_sym_BSLASHVref] = ACTIONS(6421), - [anon_sym_BSLASHautoref] = ACTIONS(6421), - [anon_sym_BSLASHpageref] = ACTIONS(6421), - [anon_sym_BSLASHcref] = ACTIONS(6421), - [anon_sym_BSLASHCref] = ACTIONS(6421), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnameCref] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHlabelcref] = ACTIONS(6421), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCrefrange] = ACTIONS(6421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnewlabel] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6421), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6421), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6423), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHdef] = ACTIONS(6421), - [anon_sym_BSLASHlet] = ACTIONS(6421), - [anon_sym_BSLASHleft] = ACTIONS(6421), - [anon_sym_BSLASHbig] = ACTIONS(6421), - [anon_sym_BSLASHBig] = ACTIONS(6421), - [anon_sym_BSLASHbigg] = ACTIONS(6421), - [anon_sym_BSLASHBigg] = ACTIONS(6421), - [anon_sym_BSLASHbigl] = ACTIONS(6421), - [anon_sym_BSLASHBigl] = ACTIONS(6421), - [anon_sym_BSLASHbiggl] = ACTIONS(6421), - [anon_sym_BSLASHBiggl] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6421), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6421), - [anon_sym_BSLASHgls] = ACTIONS(6421), - [anon_sym_BSLASHGls] = ACTIONS(6421), - [anon_sym_BSLASHGLS] = ACTIONS(6421), - [anon_sym_BSLASHglspl] = ACTIONS(6421), - [anon_sym_BSLASHGlspl] = ACTIONS(6421), - [anon_sym_BSLASHGLSpl] = ACTIONS(6421), - [anon_sym_BSLASHglsdisp] = ACTIONS(6421), - [anon_sym_BSLASHglslink] = ACTIONS(6421), - [anon_sym_BSLASHglstext] = ACTIONS(6421), - [anon_sym_BSLASHGlstext] = ACTIONS(6421), - [anon_sym_BSLASHGLStext] = ACTIONS(6421), - [anon_sym_BSLASHglsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6421), - [anon_sym_BSLASHglsplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSplural] = ACTIONS(6421), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHglsname] = ACTIONS(6421), - [anon_sym_BSLASHGlsname] = ACTIONS(6421), - [anon_sym_BSLASHGLSname] = ACTIONS(6421), - [anon_sym_BSLASHglssymbol] = ACTIONS(6421), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6421), - [anon_sym_BSLASHglsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6421), - [anon_sym_BSLASHglsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6421), - [anon_sym_BSLASHglsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6421), - [anon_sym_BSLASHglsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6421), - [anon_sym_BSLASHglsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6421), - [anon_sym_BSLASHnewacronym] = ACTIONS(6421), - [anon_sym_BSLASHacrshort] = ACTIONS(6421), - [anon_sym_BSLASHAcrshort] = ACTIONS(6421), - [anon_sym_BSLASHACRshort] = ACTIONS(6421), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6421), - [anon_sym_BSLASHacrlong] = ACTIONS(6421), - [anon_sym_BSLASHAcrlong] = ACTIONS(6421), - [anon_sym_BSLASHACRlong] = ACTIONS(6421), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6421), - [anon_sym_BSLASHacrfull] = ACTIONS(6421), - [anon_sym_BSLASHAcrfull] = ACTIONS(6421), - [anon_sym_BSLASHACRfull] = ACTIONS(6421), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6421), - [anon_sym_BSLASHacs] = ACTIONS(6421), - [anon_sym_BSLASHAcs] = ACTIONS(6421), - [anon_sym_BSLASHacsp] = ACTIONS(6421), - [anon_sym_BSLASHAcsp] = ACTIONS(6421), - [anon_sym_BSLASHacl] = ACTIONS(6421), - [anon_sym_BSLASHAcl] = ACTIONS(6421), - [anon_sym_BSLASHaclp] = ACTIONS(6421), - [anon_sym_BSLASHAclp] = ACTIONS(6421), - [anon_sym_BSLASHacf] = ACTIONS(6421), - [anon_sym_BSLASHAcf] = ACTIONS(6421), - [anon_sym_BSLASHacfp] = ACTIONS(6421), - [anon_sym_BSLASHAcfp] = ACTIONS(6421), - [anon_sym_BSLASHac] = ACTIONS(6421), - [anon_sym_BSLASHAc] = ACTIONS(6421), - [anon_sym_BSLASHacp] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6421), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6421), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6421), - [anon_sym_BSLASHcolor] = ACTIONS(6421), - [anon_sym_BSLASHcolorbox] = ACTIONS(6421), - [anon_sym_BSLASHtextcolor] = ACTIONS(6421), - [anon_sym_BSLASHpagecolor] = ACTIONS(6421), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6421), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6421), - [anon_sym_BSLASHtext] = ACTIONS(6421), - [anon_sym_BSLASHintertext] = ACTIONS(6421), - [anon_sym_shortintertext] = ACTIONS(6421), - }, - [1731] = { - [sym_command_name] = ACTIONS(6425), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6425), - [anon_sym_LBRACK] = ACTIONS(6427), - [anon_sym_RBRACK] = ACTIONS(6427), - [anon_sym_COMMA] = ACTIONS(6427), - [anon_sym_EQ] = ACTIONS(6427), - [anon_sym_LPAREN] = ACTIONS(6427), - [anon_sym_RPAREN] = ACTIONS(6427), - [anon_sym_LBRACE] = ACTIONS(6427), - [sym_word] = ACTIONS(6425), - [sym_placeholder] = ACTIONS(6427), - [anon_sym_PLUS] = ACTIONS(6427), - [anon_sym_DASH] = ACTIONS(6427), - [anon_sym_STAR] = ACTIONS(6427), - [anon_sym_SLASH] = ACTIONS(6427), - [anon_sym_LT] = ACTIONS(6425), - [anon_sym_GT] = ACTIONS(6425), - [anon_sym_BANG] = ACTIONS(6425), - [anon_sym_PIPE] = ACTIONS(6425), - [anon_sym_COLON] = ACTIONS(6425), - [anon_sym_SQUOTE] = ACTIONS(6425), - [anon_sym__] = ACTIONS(6427), - [anon_sym_CARET] = ACTIONS(6427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6427), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6427), - [anon_sym_DOLLAR] = ACTIONS(6425), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6427), - [anon_sym_BSLASHbegin] = ACTIONS(6425), - [anon_sym_BSLASHtitle] = ACTIONS(6425), - [anon_sym_BSLASHauthor] = ACTIONS(6425), - [anon_sym_BSLASHusepackage] = ACTIONS(6425), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6425), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6425), - [anon_sym_BSLASHinclude] = ACTIONS(6425), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6425), - [anon_sym_BSLASHinput] = ACTIONS(6425), - [anon_sym_BSLASHsubfile] = ACTIONS(6425), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6425), - [anon_sym_BSLASHbibliography] = ACTIONS(6425), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6425), - [anon_sym_BSLASHincludesvg] = ACTIONS(6425), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6425), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6425), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6425), - [anon_sym_BSLASHimport] = ACTIONS(6425), - [anon_sym_BSLASHsubimport] = ACTIONS(6425), - [anon_sym_BSLASHinputfrom] = ACTIONS(6425), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6425), - [anon_sym_BSLASHincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHcaption] = ACTIONS(6425), - [anon_sym_BSLASHcite] = ACTIONS(6425), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCite] = ACTIONS(6425), - [anon_sym_BSLASHnocite] = ACTIONS(6425), - [anon_sym_BSLASHcitet] = ACTIONS(6425), - [anon_sym_BSLASHcitep] = ACTIONS(6425), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteauthor] = ACTIONS(6425), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6425), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitetitle] = ACTIONS(6425), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteyear] = ACTIONS(6425), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitedate] = ACTIONS(6425), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteurl] = ACTIONS(6425), - [anon_sym_BSLASHfullcite] = ACTIONS(6425), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6425), - [anon_sym_BSLASHcitealt] = ACTIONS(6425), - [anon_sym_BSLASHcitealp] = ACTIONS(6425), - [anon_sym_BSLASHcitetext] = ACTIONS(6425), - [anon_sym_BSLASHparencite] = ACTIONS(6425), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHParencite] = ACTIONS(6425), - [anon_sym_BSLASHfootcite] = ACTIONS(6425), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6425), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6425), - [anon_sym_BSLASHtextcite] = ACTIONS(6425), - [anon_sym_BSLASHTextcite] = ACTIONS(6425), - [anon_sym_BSLASHsmartcite] = ACTIONS(6425), - [anon_sym_BSLASHSmartcite] = ACTIONS(6425), - [anon_sym_BSLASHsupercite] = ACTIONS(6425), - [anon_sym_BSLASHautocite] = ACTIONS(6425), - [anon_sym_BSLASHAutocite] = ACTIONS(6425), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHvolcite] = ACTIONS(6425), - [anon_sym_BSLASHVolcite] = ACTIONS(6425), - [anon_sym_BSLASHpvolcite] = ACTIONS(6425), - [anon_sym_BSLASHPvolcite] = ACTIONS(6425), - [anon_sym_BSLASHfvolcite] = ACTIONS(6425), - [anon_sym_BSLASHftvolcite] = ACTIONS(6425), - [anon_sym_BSLASHsvolcite] = ACTIONS(6425), - [anon_sym_BSLASHSvolcite] = ACTIONS(6425), - [anon_sym_BSLASHtvolcite] = ACTIONS(6425), - [anon_sym_BSLASHTvolcite] = ACTIONS(6425), - [anon_sym_BSLASHavolcite] = ACTIONS(6425), - [anon_sym_BSLASHAvolcite] = ACTIONS(6425), - [anon_sym_BSLASHnotecite] = ACTIONS(6425), - [anon_sym_BSLASHNotecite] = ACTIONS(6425), - [anon_sym_BSLASHpnotecite] = ACTIONS(6425), - [anon_sym_BSLASHPnotecite] = ACTIONS(6425), - [anon_sym_BSLASHfnotecite] = ACTIONS(6425), - [anon_sym_BSLASHlabel] = ACTIONS(6425), - [anon_sym_BSLASHref] = ACTIONS(6425), - [anon_sym_BSLASHeqref] = ACTIONS(6425), - [anon_sym_BSLASHvref] = ACTIONS(6425), - [anon_sym_BSLASHVref] = ACTIONS(6425), - [anon_sym_BSLASHautoref] = ACTIONS(6425), - [anon_sym_BSLASHpageref] = ACTIONS(6425), - [anon_sym_BSLASHcref] = ACTIONS(6425), - [anon_sym_BSLASHCref] = ACTIONS(6425), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnameCref] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHlabelcref] = ACTIONS(6425), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCrefrange] = ACTIONS(6425), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnewlabel] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6425), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6425), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6427), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHdef] = ACTIONS(6425), - [anon_sym_BSLASHlet] = ACTIONS(6425), - [anon_sym_BSLASHleft] = ACTIONS(6425), - [anon_sym_BSLASHbig] = ACTIONS(6425), - [anon_sym_BSLASHBig] = ACTIONS(6425), - [anon_sym_BSLASHbigg] = ACTIONS(6425), - [anon_sym_BSLASHBigg] = ACTIONS(6425), - [anon_sym_BSLASHbigl] = ACTIONS(6425), - [anon_sym_BSLASHBigl] = ACTIONS(6425), - [anon_sym_BSLASHbiggl] = ACTIONS(6425), - [anon_sym_BSLASHBiggl] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6425), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6425), - [anon_sym_BSLASHgls] = ACTIONS(6425), - [anon_sym_BSLASHGls] = ACTIONS(6425), - [anon_sym_BSLASHGLS] = ACTIONS(6425), - [anon_sym_BSLASHglspl] = ACTIONS(6425), - [anon_sym_BSLASHGlspl] = ACTIONS(6425), - [anon_sym_BSLASHGLSpl] = ACTIONS(6425), - [anon_sym_BSLASHglsdisp] = ACTIONS(6425), - [anon_sym_BSLASHglslink] = ACTIONS(6425), - [anon_sym_BSLASHglstext] = ACTIONS(6425), - [anon_sym_BSLASHGlstext] = ACTIONS(6425), - [anon_sym_BSLASHGLStext] = ACTIONS(6425), - [anon_sym_BSLASHglsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6425), - [anon_sym_BSLASHglsplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSplural] = ACTIONS(6425), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHglsname] = ACTIONS(6425), - [anon_sym_BSLASHGlsname] = ACTIONS(6425), - [anon_sym_BSLASHGLSname] = ACTIONS(6425), - [anon_sym_BSLASHglssymbol] = ACTIONS(6425), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6425), - [anon_sym_BSLASHglsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6425), - [anon_sym_BSLASHglsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6425), - [anon_sym_BSLASHglsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6425), - [anon_sym_BSLASHglsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6425), - [anon_sym_BSLASHglsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6425), - [anon_sym_BSLASHnewacronym] = ACTIONS(6425), - [anon_sym_BSLASHacrshort] = ACTIONS(6425), - [anon_sym_BSLASHAcrshort] = ACTIONS(6425), - [anon_sym_BSLASHACRshort] = ACTIONS(6425), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6425), - [anon_sym_BSLASHacrlong] = ACTIONS(6425), - [anon_sym_BSLASHAcrlong] = ACTIONS(6425), - [anon_sym_BSLASHACRlong] = ACTIONS(6425), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6425), - [anon_sym_BSLASHacrfull] = ACTIONS(6425), - [anon_sym_BSLASHAcrfull] = ACTIONS(6425), - [anon_sym_BSLASHACRfull] = ACTIONS(6425), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6425), - [anon_sym_BSLASHacs] = ACTIONS(6425), - [anon_sym_BSLASHAcs] = ACTIONS(6425), - [anon_sym_BSLASHacsp] = ACTIONS(6425), - [anon_sym_BSLASHAcsp] = ACTIONS(6425), - [anon_sym_BSLASHacl] = ACTIONS(6425), - [anon_sym_BSLASHAcl] = ACTIONS(6425), - [anon_sym_BSLASHaclp] = ACTIONS(6425), - [anon_sym_BSLASHAclp] = ACTIONS(6425), - [anon_sym_BSLASHacf] = ACTIONS(6425), - [anon_sym_BSLASHAcf] = ACTIONS(6425), - [anon_sym_BSLASHacfp] = ACTIONS(6425), - [anon_sym_BSLASHAcfp] = ACTIONS(6425), - [anon_sym_BSLASHac] = ACTIONS(6425), - [anon_sym_BSLASHAc] = ACTIONS(6425), - [anon_sym_BSLASHacp] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6425), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6425), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6425), - [anon_sym_BSLASHcolor] = ACTIONS(6425), - [anon_sym_BSLASHcolorbox] = ACTIONS(6425), - [anon_sym_BSLASHtextcolor] = ACTIONS(6425), - [anon_sym_BSLASHpagecolor] = ACTIONS(6425), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6425), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6425), - [anon_sym_BSLASHtext] = ACTIONS(6425), - [anon_sym_BSLASHintertext] = ACTIONS(6425), - [anon_sym_shortintertext] = ACTIONS(6425), - }, - [1732] = { - [sym_command_name] = ACTIONS(6429), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6429), - [anon_sym_LBRACK] = ACTIONS(6431), - [anon_sym_RBRACK] = ACTIONS(6431), - [anon_sym_COMMA] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(6431), - [anon_sym_LPAREN] = ACTIONS(6431), - [anon_sym_RPAREN] = ACTIONS(6431), - [anon_sym_LBRACE] = ACTIONS(6431), - [sym_word] = ACTIONS(6429), - [sym_placeholder] = ACTIONS(6431), - [anon_sym_PLUS] = ACTIONS(6431), - [anon_sym_DASH] = ACTIONS(6431), - [anon_sym_STAR] = ACTIONS(6431), - [anon_sym_SLASH] = ACTIONS(6431), - [anon_sym_LT] = ACTIONS(6429), - [anon_sym_GT] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(6429), - [anon_sym_PIPE] = ACTIONS(6429), - [anon_sym_COLON] = ACTIONS(6429), - [anon_sym_SQUOTE] = ACTIONS(6429), - [anon_sym__] = ACTIONS(6431), - [anon_sym_CARET] = ACTIONS(6431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6431), - [anon_sym_DOLLAR] = ACTIONS(6429), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6431), - [anon_sym_BSLASHbegin] = ACTIONS(6429), - [anon_sym_BSLASHtitle] = ACTIONS(6429), - [anon_sym_BSLASHauthor] = ACTIONS(6429), - [anon_sym_BSLASHusepackage] = ACTIONS(6429), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6429), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6429), - [anon_sym_BSLASHinclude] = ACTIONS(6429), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6429), - [anon_sym_BSLASHinput] = ACTIONS(6429), - [anon_sym_BSLASHsubfile] = ACTIONS(6429), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6429), - [anon_sym_BSLASHbibliography] = ACTIONS(6429), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6429), - [anon_sym_BSLASHincludesvg] = ACTIONS(6429), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6429), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6429), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6429), - [anon_sym_BSLASHimport] = ACTIONS(6429), - [anon_sym_BSLASHsubimport] = ACTIONS(6429), - [anon_sym_BSLASHinputfrom] = ACTIONS(6429), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6429), - [anon_sym_BSLASHincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHcaption] = ACTIONS(6429), - [anon_sym_BSLASHcite] = ACTIONS(6429), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCite] = ACTIONS(6429), - [anon_sym_BSLASHnocite] = ACTIONS(6429), - [anon_sym_BSLASHcitet] = ACTIONS(6429), - [anon_sym_BSLASHcitep] = ACTIONS(6429), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteauthor] = ACTIONS(6429), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6429), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitetitle] = ACTIONS(6429), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteyear] = ACTIONS(6429), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitedate] = ACTIONS(6429), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteurl] = ACTIONS(6429), - [anon_sym_BSLASHfullcite] = ACTIONS(6429), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6429), - [anon_sym_BSLASHcitealt] = ACTIONS(6429), - [anon_sym_BSLASHcitealp] = ACTIONS(6429), - [anon_sym_BSLASHcitetext] = ACTIONS(6429), - [anon_sym_BSLASHparencite] = ACTIONS(6429), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHParencite] = ACTIONS(6429), - [anon_sym_BSLASHfootcite] = ACTIONS(6429), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6429), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6429), - [anon_sym_BSLASHtextcite] = ACTIONS(6429), - [anon_sym_BSLASHTextcite] = ACTIONS(6429), - [anon_sym_BSLASHsmartcite] = ACTIONS(6429), - [anon_sym_BSLASHSmartcite] = ACTIONS(6429), - [anon_sym_BSLASHsupercite] = ACTIONS(6429), - [anon_sym_BSLASHautocite] = ACTIONS(6429), - [anon_sym_BSLASHAutocite] = ACTIONS(6429), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHvolcite] = ACTIONS(6429), - [anon_sym_BSLASHVolcite] = ACTIONS(6429), - [anon_sym_BSLASHpvolcite] = ACTIONS(6429), - [anon_sym_BSLASHPvolcite] = ACTIONS(6429), - [anon_sym_BSLASHfvolcite] = ACTIONS(6429), - [anon_sym_BSLASHftvolcite] = ACTIONS(6429), - [anon_sym_BSLASHsvolcite] = ACTIONS(6429), - [anon_sym_BSLASHSvolcite] = ACTIONS(6429), - [anon_sym_BSLASHtvolcite] = ACTIONS(6429), - [anon_sym_BSLASHTvolcite] = ACTIONS(6429), - [anon_sym_BSLASHavolcite] = ACTIONS(6429), - [anon_sym_BSLASHAvolcite] = ACTIONS(6429), - [anon_sym_BSLASHnotecite] = ACTIONS(6429), - [anon_sym_BSLASHNotecite] = ACTIONS(6429), - [anon_sym_BSLASHpnotecite] = ACTIONS(6429), - [anon_sym_BSLASHPnotecite] = ACTIONS(6429), - [anon_sym_BSLASHfnotecite] = ACTIONS(6429), - [anon_sym_BSLASHlabel] = ACTIONS(6429), - [anon_sym_BSLASHref] = ACTIONS(6429), - [anon_sym_BSLASHeqref] = ACTIONS(6429), - [anon_sym_BSLASHvref] = ACTIONS(6429), - [anon_sym_BSLASHVref] = ACTIONS(6429), - [anon_sym_BSLASHautoref] = ACTIONS(6429), - [anon_sym_BSLASHpageref] = ACTIONS(6429), - [anon_sym_BSLASHcref] = ACTIONS(6429), - [anon_sym_BSLASHCref] = ACTIONS(6429), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnameCref] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHlabelcref] = ACTIONS(6429), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCrefrange] = ACTIONS(6429), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnewlabel] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6429), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6429), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6431), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHdef] = ACTIONS(6429), - [anon_sym_BSLASHlet] = ACTIONS(6429), - [anon_sym_BSLASHleft] = ACTIONS(6429), - [anon_sym_BSLASHbig] = ACTIONS(6429), - [anon_sym_BSLASHBig] = ACTIONS(6429), - [anon_sym_BSLASHbigg] = ACTIONS(6429), - [anon_sym_BSLASHBigg] = ACTIONS(6429), - [anon_sym_BSLASHbigl] = ACTIONS(6429), - [anon_sym_BSLASHBigl] = ACTIONS(6429), - [anon_sym_BSLASHbiggl] = ACTIONS(6429), - [anon_sym_BSLASHBiggl] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6429), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6429), - [anon_sym_BSLASHgls] = ACTIONS(6429), - [anon_sym_BSLASHGls] = ACTIONS(6429), - [anon_sym_BSLASHGLS] = ACTIONS(6429), - [anon_sym_BSLASHglspl] = ACTIONS(6429), - [anon_sym_BSLASHGlspl] = ACTIONS(6429), - [anon_sym_BSLASHGLSpl] = ACTIONS(6429), - [anon_sym_BSLASHglsdisp] = ACTIONS(6429), - [anon_sym_BSLASHglslink] = ACTIONS(6429), - [anon_sym_BSLASHglstext] = ACTIONS(6429), - [anon_sym_BSLASHGlstext] = ACTIONS(6429), - [anon_sym_BSLASHGLStext] = ACTIONS(6429), - [anon_sym_BSLASHglsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6429), - [anon_sym_BSLASHglsplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSplural] = ACTIONS(6429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHglsname] = ACTIONS(6429), - [anon_sym_BSLASHGlsname] = ACTIONS(6429), - [anon_sym_BSLASHGLSname] = ACTIONS(6429), - [anon_sym_BSLASHglssymbol] = ACTIONS(6429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6429), - [anon_sym_BSLASHglsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6429), - [anon_sym_BSLASHglsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6429), - [anon_sym_BSLASHglsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6429), - [anon_sym_BSLASHglsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6429), - [anon_sym_BSLASHglsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6429), - [anon_sym_BSLASHnewacronym] = ACTIONS(6429), - [anon_sym_BSLASHacrshort] = ACTIONS(6429), - [anon_sym_BSLASHAcrshort] = ACTIONS(6429), - [anon_sym_BSLASHACRshort] = ACTIONS(6429), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6429), - [anon_sym_BSLASHacrlong] = ACTIONS(6429), - [anon_sym_BSLASHAcrlong] = ACTIONS(6429), - [anon_sym_BSLASHACRlong] = ACTIONS(6429), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6429), - [anon_sym_BSLASHacrfull] = ACTIONS(6429), - [anon_sym_BSLASHAcrfull] = ACTIONS(6429), - [anon_sym_BSLASHACRfull] = ACTIONS(6429), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6429), - [anon_sym_BSLASHacs] = ACTIONS(6429), - [anon_sym_BSLASHAcs] = ACTIONS(6429), - [anon_sym_BSLASHacsp] = ACTIONS(6429), - [anon_sym_BSLASHAcsp] = ACTIONS(6429), - [anon_sym_BSLASHacl] = ACTIONS(6429), - [anon_sym_BSLASHAcl] = ACTIONS(6429), - [anon_sym_BSLASHaclp] = ACTIONS(6429), - [anon_sym_BSLASHAclp] = ACTIONS(6429), - [anon_sym_BSLASHacf] = ACTIONS(6429), - [anon_sym_BSLASHAcf] = ACTIONS(6429), - [anon_sym_BSLASHacfp] = ACTIONS(6429), - [anon_sym_BSLASHAcfp] = ACTIONS(6429), - [anon_sym_BSLASHac] = ACTIONS(6429), - [anon_sym_BSLASHAc] = ACTIONS(6429), - [anon_sym_BSLASHacp] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6429), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6429), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6429), - [anon_sym_BSLASHcolor] = ACTIONS(6429), - [anon_sym_BSLASHcolorbox] = ACTIONS(6429), - [anon_sym_BSLASHtextcolor] = ACTIONS(6429), - [anon_sym_BSLASHpagecolor] = ACTIONS(6429), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6429), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6429), - [anon_sym_BSLASHtext] = ACTIONS(6429), - [anon_sym_BSLASHintertext] = ACTIONS(6429), - [anon_sym_shortintertext] = ACTIONS(6429), - }, - [1733] = { - [sym_command_name] = ACTIONS(6433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6433), - [anon_sym_LBRACK] = ACTIONS(6435), - [anon_sym_RBRACK] = ACTIONS(6435), - [anon_sym_COMMA] = ACTIONS(6435), - [anon_sym_EQ] = ACTIONS(6435), - [anon_sym_LPAREN] = ACTIONS(6435), - [anon_sym_RPAREN] = ACTIONS(6435), - [anon_sym_LBRACE] = ACTIONS(6435), - [sym_word] = ACTIONS(6433), - [sym_placeholder] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6435), - [anon_sym_DASH] = ACTIONS(6435), - [anon_sym_STAR] = ACTIONS(6435), - [anon_sym_SLASH] = ACTIONS(6435), - [anon_sym_LT] = ACTIONS(6433), - [anon_sym_GT] = ACTIONS(6433), - [anon_sym_BANG] = ACTIONS(6433), - [anon_sym_PIPE] = ACTIONS(6433), - [anon_sym_COLON] = ACTIONS(6433), - [anon_sym_SQUOTE] = ACTIONS(6433), - [anon_sym__] = ACTIONS(6435), - [anon_sym_CARET] = ACTIONS(6435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6435), - [anon_sym_DOLLAR] = ACTIONS(6433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6435), - [anon_sym_BSLASHbegin] = ACTIONS(6433), - [anon_sym_BSLASHtitle] = ACTIONS(6433), - [anon_sym_BSLASHauthor] = ACTIONS(6433), - [anon_sym_BSLASHusepackage] = ACTIONS(6433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6433), - [anon_sym_BSLASHinclude] = ACTIONS(6433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6433), - [anon_sym_BSLASHinput] = ACTIONS(6433), - [anon_sym_BSLASHsubfile] = ACTIONS(6433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6433), - [anon_sym_BSLASHbibliography] = ACTIONS(6433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6433), - [anon_sym_BSLASHincludesvg] = ACTIONS(6433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6433), - [anon_sym_BSLASHimport] = ACTIONS(6433), - [anon_sym_BSLASHsubimport] = ACTIONS(6433), - [anon_sym_BSLASHinputfrom] = ACTIONS(6433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6433), - [anon_sym_BSLASHincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHcaption] = ACTIONS(6433), - [anon_sym_BSLASHcite] = ACTIONS(6433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCite] = ACTIONS(6433), - [anon_sym_BSLASHnocite] = ACTIONS(6433), - [anon_sym_BSLASHcitet] = ACTIONS(6433), - [anon_sym_BSLASHcitep] = ACTIONS(6433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteauthor] = ACTIONS(6433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitetitle] = ACTIONS(6433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteyear] = ACTIONS(6433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitedate] = ACTIONS(6433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteurl] = ACTIONS(6433), - [anon_sym_BSLASHfullcite] = ACTIONS(6433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6433), - [anon_sym_BSLASHcitealt] = ACTIONS(6433), - [anon_sym_BSLASHcitealp] = ACTIONS(6433), - [anon_sym_BSLASHcitetext] = ACTIONS(6433), - [anon_sym_BSLASHparencite] = ACTIONS(6433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHParencite] = ACTIONS(6433), - [anon_sym_BSLASHfootcite] = ACTIONS(6433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6433), - [anon_sym_BSLASHtextcite] = ACTIONS(6433), - [anon_sym_BSLASHTextcite] = ACTIONS(6433), - [anon_sym_BSLASHsmartcite] = ACTIONS(6433), - [anon_sym_BSLASHSmartcite] = ACTIONS(6433), - [anon_sym_BSLASHsupercite] = ACTIONS(6433), - [anon_sym_BSLASHautocite] = ACTIONS(6433), - [anon_sym_BSLASHAutocite] = ACTIONS(6433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHvolcite] = ACTIONS(6433), - [anon_sym_BSLASHVolcite] = ACTIONS(6433), - [anon_sym_BSLASHpvolcite] = ACTIONS(6433), - [anon_sym_BSLASHPvolcite] = ACTIONS(6433), - [anon_sym_BSLASHfvolcite] = ACTIONS(6433), - [anon_sym_BSLASHftvolcite] = ACTIONS(6433), - [anon_sym_BSLASHsvolcite] = ACTIONS(6433), - [anon_sym_BSLASHSvolcite] = ACTIONS(6433), - [anon_sym_BSLASHtvolcite] = ACTIONS(6433), - [anon_sym_BSLASHTvolcite] = ACTIONS(6433), - [anon_sym_BSLASHavolcite] = ACTIONS(6433), - [anon_sym_BSLASHAvolcite] = ACTIONS(6433), - [anon_sym_BSLASHnotecite] = ACTIONS(6433), - [anon_sym_BSLASHNotecite] = ACTIONS(6433), - [anon_sym_BSLASHpnotecite] = ACTIONS(6433), - [anon_sym_BSLASHPnotecite] = ACTIONS(6433), - [anon_sym_BSLASHfnotecite] = ACTIONS(6433), - [anon_sym_BSLASHlabel] = ACTIONS(6433), - [anon_sym_BSLASHref] = ACTIONS(6433), - [anon_sym_BSLASHeqref] = ACTIONS(6433), - [anon_sym_BSLASHvref] = ACTIONS(6433), - [anon_sym_BSLASHVref] = ACTIONS(6433), - [anon_sym_BSLASHautoref] = ACTIONS(6433), - [anon_sym_BSLASHpageref] = ACTIONS(6433), - [anon_sym_BSLASHcref] = ACTIONS(6433), - [anon_sym_BSLASHCref] = ACTIONS(6433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnameCref] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHlabelcref] = ACTIONS(6433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCrefrange] = ACTIONS(6433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnewlabel] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6435), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHdef] = ACTIONS(6433), - [anon_sym_BSLASHlet] = ACTIONS(6433), - [anon_sym_BSLASHleft] = ACTIONS(6433), - [anon_sym_BSLASHbig] = ACTIONS(6433), - [anon_sym_BSLASHBig] = ACTIONS(6433), - [anon_sym_BSLASHbigg] = ACTIONS(6433), - [anon_sym_BSLASHBigg] = ACTIONS(6433), - [anon_sym_BSLASHbigl] = ACTIONS(6433), - [anon_sym_BSLASHBigl] = ACTIONS(6433), - [anon_sym_BSLASHbiggl] = ACTIONS(6433), - [anon_sym_BSLASHBiggl] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6433), - [anon_sym_BSLASHgls] = ACTIONS(6433), - [anon_sym_BSLASHGls] = ACTIONS(6433), - [anon_sym_BSLASHGLS] = ACTIONS(6433), - [anon_sym_BSLASHglspl] = ACTIONS(6433), - [anon_sym_BSLASHGlspl] = ACTIONS(6433), - [anon_sym_BSLASHGLSpl] = ACTIONS(6433), - [anon_sym_BSLASHglsdisp] = ACTIONS(6433), - [anon_sym_BSLASHglslink] = ACTIONS(6433), - [anon_sym_BSLASHglstext] = ACTIONS(6433), - [anon_sym_BSLASHGlstext] = ACTIONS(6433), - [anon_sym_BSLASHGLStext] = ACTIONS(6433), - [anon_sym_BSLASHglsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6433), - [anon_sym_BSLASHglsplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSplural] = ACTIONS(6433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHglsname] = ACTIONS(6433), - [anon_sym_BSLASHGlsname] = ACTIONS(6433), - [anon_sym_BSLASHGLSname] = ACTIONS(6433), - [anon_sym_BSLASHglssymbol] = ACTIONS(6433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6433), - [anon_sym_BSLASHglsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6433), - [anon_sym_BSLASHglsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6433), - [anon_sym_BSLASHglsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6433), - [anon_sym_BSLASHglsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6433), - [anon_sym_BSLASHglsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6433), - [anon_sym_BSLASHnewacronym] = ACTIONS(6433), - [anon_sym_BSLASHacrshort] = ACTIONS(6433), - [anon_sym_BSLASHAcrshort] = ACTIONS(6433), - [anon_sym_BSLASHACRshort] = ACTIONS(6433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6433), - [anon_sym_BSLASHacrlong] = ACTIONS(6433), - [anon_sym_BSLASHAcrlong] = ACTIONS(6433), - [anon_sym_BSLASHACRlong] = ACTIONS(6433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6433), - [anon_sym_BSLASHacrfull] = ACTIONS(6433), - [anon_sym_BSLASHAcrfull] = ACTIONS(6433), - [anon_sym_BSLASHACRfull] = ACTIONS(6433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6433), - [anon_sym_BSLASHacs] = ACTIONS(6433), - [anon_sym_BSLASHAcs] = ACTIONS(6433), - [anon_sym_BSLASHacsp] = ACTIONS(6433), - [anon_sym_BSLASHAcsp] = ACTIONS(6433), - [anon_sym_BSLASHacl] = ACTIONS(6433), - [anon_sym_BSLASHAcl] = ACTIONS(6433), - [anon_sym_BSLASHaclp] = ACTIONS(6433), - [anon_sym_BSLASHAclp] = ACTIONS(6433), - [anon_sym_BSLASHacf] = ACTIONS(6433), - [anon_sym_BSLASHAcf] = ACTIONS(6433), - [anon_sym_BSLASHacfp] = ACTIONS(6433), - [anon_sym_BSLASHAcfp] = ACTIONS(6433), - [anon_sym_BSLASHac] = ACTIONS(6433), - [anon_sym_BSLASHAc] = ACTIONS(6433), - [anon_sym_BSLASHacp] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6433), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6433), - [anon_sym_BSLASHcolor] = ACTIONS(6433), - [anon_sym_BSLASHcolorbox] = ACTIONS(6433), - [anon_sym_BSLASHtextcolor] = ACTIONS(6433), - [anon_sym_BSLASHpagecolor] = ACTIONS(6433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6433), - [anon_sym_BSLASHtext] = ACTIONS(6433), - [anon_sym_BSLASHintertext] = ACTIONS(6433), - [anon_sym_shortintertext] = ACTIONS(6433), - }, - [1734] = { - [sym_command_name] = ACTIONS(6437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6437), - [anon_sym_LBRACK] = ACTIONS(6439), - [anon_sym_RBRACK] = ACTIONS(6439), - [anon_sym_COMMA] = ACTIONS(6439), - [anon_sym_EQ] = ACTIONS(6439), - [anon_sym_LPAREN] = ACTIONS(6439), - [anon_sym_RPAREN] = ACTIONS(6439), - [anon_sym_LBRACE] = ACTIONS(6439), - [sym_word] = ACTIONS(6437), - [sym_placeholder] = ACTIONS(6439), - [anon_sym_PLUS] = ACTIONS(6439), - [anon_sym_DASH] = ACTIONS(6439), - [anon_sym_STAR] = ACTIONS(6439), - [anon_sym_SLASH] = ACTIONS(6439), - [anon_sym_LT] = ACTIONS(6437), - [anon_sym_GT] = ACTIONS(6437), - [anon_sym_BANG] = ACTIONS(6437), - [anon_sym_PIPE] = ACTIONS(6437), - [anon_sym_COLON] = ACTIONS(6437), - [anon_sym_SQUOTE] = ACTIONS(6437), - [anon_sym__] = ACTIONS(6439), - [anon_sym_CARET] = ACTIONS(6439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6439), - [anon_sym_DOLLAR] = ACTIONS(6437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6439), - [anon_sym_BSLASHbegin] = ACTIONS(6437), - [anon_sym_BSLASHtitle] = ACTIONS(6437), - [anon_sym_BSLASHauthor] = ACTIONS(6437), - [anon_sym_BSLASHusepackage] = ACTIONS(6437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6437), - [anon_sym_BSLASHinclude] = ACTIONS(6437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6437), - [anon_sym_BSLASHinput] = ACTIONS(6437), - [anon_sym_BSLASHsubfile] = ACTIONS(6437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6437), - [anon_sym_BSLASHbibliography] = ACTIONS(6437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6437), - [anon_sym_BSLASHincludesvg] = ACTIONS(6437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6437), - [anon_sym_BSLASHimport] = ACTIONS(6437), - [anon_sym_BSLASHsubimport] = ACTIONS(6437), - [anon_sym_BSLASHinputfrom] = ACTIONS(6437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6437), - [anon_sym_BSLASHincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHcaption] = ACTIONS(6437), - [anon_sym_BSLASHcite] = ACTIONS(6437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCite] = ACTIONS(6437), - [anon_sym_BSLASHnocite] = ACTIONS(6437), - [anon_sym_BSLASHcitet] = ACTIONS(6437), - [anon_sym_BSLASHcitep] = ACTIONS(6437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteauthor] = ACTIONS(6437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitetitle] = ACTIONS(6437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteyear] = ACTIONS(6437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitedate] = ACTIONS(6437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteurl] = ACTIONS(6437), - [anon_sym_BSLASHfullcite] = ACTIONS(6437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6437), - [anon_sym_BSLASHcitealt] = ACTIONS(6437), - [anon_sym_BSLASHcitealp] = ACTIONS(6437), - [anon_sym_BSLASHcitetext] = ACTIONS(6437), - [anon_sym_BSLASHparencite] = ACTIONS(6437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHParencite] = ACTIONS(6437), - [anon_sym_BSLASHfootcite] = ACTIONS(6437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6437), - [anon_sym_BSLASHtextcite] = ACTIONS(6437), - [anon_sym_BSLASHTextcite] = ACTIONS(6437), - [anon_sym_BSLASHsmartcite] = ACTIONS(6437), - [anon_sym_BSLASHSmartcite] = ACTIONS(6437), - [anon_sym_BSLASHsupercite] = ACTIONS(6437), - [anon_sym_BSLASHautocite] = ACTIONS(6437), - [anon_sym_BSLASHAutocite] = ACTIONS(6437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHvolcite] = ACTIONS(6437), - [anon_sym_BSLASHVolcite] = ACTIONS(6437), - [anon_sym_BSLASHpvolcite] = ACTIONS(6437), - [anon_sym_BSLASHPvolcite] = ACTIONS(6437), - [anon_sym_BSLASHfvolcite] = ACTIONS(6437), - [anon_sym_BSLASHftvolcite] = ACTIONS(6437), - [anon_sym_BSLASHsvolcite] = ACTIONS(6437), - [anon_sym_BSLASHSvolcite] = ACTIONS(6437), - [anon_sym_BSLASHtvolcite] = ACTIONS(6437), - [anon_sym_BSLASHTvolcite] = ACTIONS(6437), - [anon_sym_BSLASHavolcite] = ACTIONS(6437), - [anon_sym_BSLASHAvolcite] = ACTIONS(6437), - [anon_sym_BSLASHnotecite] = ACTIONS(6437), - [anon_sym_BSLASHNotecite] = ACTIONS(6437), - [anon_sym_BSLASHpnotecite] = ACTIONS(6437), - [anon_sym_BSLASHPnotecite] = ACTIONS(6437), - [anon_sym_BSLASHfnotecite] = ACTIONS(6437), - [anon_sym_BSLASHlabel] = ACTIONS(6437), - [anon_sym_BSLASHref] = ACTIONS(6437), - [anon_sym_BSLASHeqref] = ACTIONS(6437), - [anon_sym_BSLASHvref] = ACTIONS(6437), - [anon_sym_BSLASHVref] = ACTIONS(6437), - [anon_sym_BSLASHautoref] = ACTIONS(6437), - [anon_sym_BSLASHpageref] = ACTIONS(6437), - [anon_sym_BSLASHcref] = ACTIONS(6437), - [anon_sym_BSLASHCref] = ACTIONS(6437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnameCref] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHlabelcref] = ACTIONS(6437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCrefrange] = ACTIONS(6437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnewlabel] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6439), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHdef] = ACTIONS(6437), - [anon_sym_BSLASHlet] = ACTIONS(6437), - [anon_sym_BSLASHleft] = ACTIONS(6437), - [anon_sym_BSLASHbig] = ACTIONS(6437), - [anon_sym_BSLASHBig] = ACTIONS(6437), - [anon_sym_BSLASHbigg] = ACTIONS(6437), - [anon_sym_BSLASHBigg] = ACTIONS(6437), - [anon_sym_BSLASHbigl] = ACTIONS(6437), - [anon_sym_BSLASHBigl] = ACTIONS(6437), - [anon_sym_BSLASHbiggl] = ACTIONS(6437), - [anon_sym_BSLASHBiggl] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6437), - [anon_sym_BSLASHgls] = ACTIONS(6437), - [anon_sym_BSLASHGls] = ACTIONS(6437), - [anon_sym_BSLASHGLS] = ACTIONS(6437), - [anon_sym_BSLASHglspl] = ACTIONS(6437), - [anon_sym_BSLASHGlspl] = ACTIONS(6437), - [anon_sym_BSLASHGLSpl] = ACTIONS(6437), - [anon_sym_BSLASHglsdisp] = ACTIONS(6437), - [anon_sym_BSLASHglslink] = ACTIONS(6437), - [anon_sym_BSLASHglstext] = ACTIONS(6437), - [anon_sym_BSLASHGlstext] = ACTIONS(6437), - [anon_sym_BSLASHGLStext] = ACTIONS(6437), - [anon_sym_BSLASHglsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6437), - [anon_sym_BSLASHglsplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSplural] = ACTIONS(6437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHglsname] = ACTIONS(6437), - [anon_sym_BSLASHGlsname] = ACTIONS(6437), - [anon_sym_BSLASHGLSname] = ACTIONS(6437), - [anon_sym_BSLASHglssymbol] = ACTIONS(6437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6437), - [anon_sym_BSLASHglsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6437), - [anon_sym_BSLASHglsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6437), - [anon_sym_BSLASHglsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6437), - [anon_sym_BSLASHglsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6437), - [anon_sym_BSLASHglsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6437), - [anon_sym_BSLASHnewacronym] = ACTIONS(6437), - [anon_sym_BSLASHacrshort] = ACTIONS(6437), - [anon_sym_BSLASHAcrshort] = ACTIONS(6437), - [anon_sym_BSLASHACRshort] = ACTIONS(6437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6437), - [anon_sym_BSLASHacrlong] = ACTIONS(6437), - [anon_sym_BSLASHAcrlong] = ACTIONS(6437), - [anon_sym_BSLASHACRlong] = ACTIONS(6437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6437), - [anon_sym_BSLASHacrfull] = ACTIONS(6437), - [anon_sym_BSLASHAcrfull] = ACTIONS(6437), - [anon_sym_BSLASHACRfull] = ACTIONS(6437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6437), - [anon_sym_BSLASHacs] = ACTIONS(6437), - [anon_sym_BSLASHAcs] = ACTIONS(6437), - [anon_sym_BSLASHacsp] = ACTIONS(6437), - [anon_sym_BSLASHAcsp] = ACTIONS(6437), - [anon_sym_BSLASHacl] = ACTIONS(6437), - [anon_sym_BSLASHAcl] = ACTIONS(6437), - [anon_sym_BSLASHaclp] = ACTIONS(6437), - [anon_sym_BSLASHAclp] = ACTIONS(6437), - [anon_sym_BSLASHacf] = ACTIONS(6437), - [anon_sym_BSLASHAcf] = ACTIONS(6437), - [anon_sym_BSLASHacfp] = ACTIONS(6437), - [anon_sym_BSLASHAcfp] = ACTIONS(6437), - [anon_sym_BSLASHac] = ACTIONS(6437), - [anon_sym_BSLASHAc] = ACTIONS(6437), - [anon_sym_BSLASHacp] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6437), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6437), - [anon_sym_BSLASHcolor] = ACTIONS(6437), - [anon_sym_BSLASHcolorbox] = ACTIONS(6437), - [anon_sym_BSLASHtextcolor] = ACTIONS(6437), - [anon_sym_BSLASHpagecolor] = ACTIONS(6437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6437), - [anon_sym_BSLASHtext] = ACTIONS(6437), - [anon_sym_BSLASHintertext] = ACTIONS(6437), - [anon_sym_shortintertext] = ACTIONS(6437), - }, - [1735] = { - [sym_command_name] = ACTIONS(6441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6441), - [anon_sym_LBRACK] = ACTIONS(6443), - [anon_sym_RBRACK] = ACTIONS(6443), - [anon_sym_COMMA] = ACTIONS(6443), - [anon_sym_EQ] = ACTIONS(6443), - [anon_sym_LPAREN] = ACTIONS(6443), - [anon_sym_RPAREN] = ACTIONS(6443), - [anon_sym_LBRACE] = ACTIONS(6443), - [sym_word] = ACTIONS(6441), - [sym_placeholder] = ACTIONS(6443), - [anon_sym_PLUS] = ACTIONS(6443), - [anon_sym_DASH] = ACTIONS(6443), - [anon_sym_STAR] = ACTIONS(6443), - [anon_sym_SLASH] = ACTIONS(6443), - [anon_sym_LT] = ACTIONS(6441), - [anon_sym_GT] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(6441), - [anon_sym_PIPE] = ACTIONS(6441), - [anon_sym_COLON] = ACTIONS(6441), - [anon_sym_SQUOTE] = ACTIONS(6441), - [anon_sym__] = ACTIONS(6443), - [anon_sym_CARET] = ACTIONS(6443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6443), - [anon_sym_DOLLAR] = ACTIONS(6441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6443), - [anon_sym_BSLASHbegin] = ACTIONS(6441), - [anon_sym_BSLASHtitle] = ACTIONS(6441), - [anon_sym_BSLASHauthor] = ACTIONS(6441), - [anon_sym_BSLASHusepackage] = ACTIONS(6441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6441), - [anon_sym_BSLASHinclude] = ACTIONS(6441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6441), - [anon_sym_BSLASHinput] = ACTIONS(6441), - [anon_sym_BSLASHsubfile] = ACTIONS(6441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6441), - [anon_sym_BSLASHbibliography] = ACTIONS(6441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6441), - [anon_sym_BSLASHincludesvg] = ACTIONS(6441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6441), - [anon_sym_BSLASHimport] = ACTIONS(6441), - [anon_sym_BSLASHsubimport] = ACTIONS(6441), - [anon_sym_BSLASHinputfrom] = ACTIONS(6441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6441), - [anon_sym_BSLASHincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHcaption] = ACTIONS(6441), - [anon_sym_BSLASHcite] = ACTIONS(6441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCite] = ACTIONS(6441), - [anon_sym_BSLASHnocite] = ACTIONS(6441), - [anon_sym_BSLASHcitet] = ACTIONS(6441), - [anon_sym_BSLASHcitep] = ACTIONS(6441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteauthor] = ACTIONS(6441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitetitle] = ACTIONS(6441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteyear] = ACTIONS(6441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitedate] = ACTIONS(6441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteurl] = ACTIONS(6441), - [anon_sym_BSLASHfullcite] = ACTIONS(6441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6441), - [anon_sym_BSLASHcitealt] = ACTIONS(6441), - [anon_sym_BSLASHcitealp] = ACTIONS(6441), - [anon_sym_BSLASHcitetext] = ACTIONS(6441), - [anon_sym_BSLASHparencite] = ACTIONS(6441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHParencite] = ACTIONS(6441), - [anon_sym_BSLASHfootcite] = ACTIONS(6441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6441), - [anon_sym_BSLASHtextcite] = ACTIONS(6441), - [anon_sym_BSLASHTextcite] = ACTIONS(6441), - [anon_sym_BSLASHsmartcite] = ACTIONS(6441), - [anon_sym_BSLASHSmartcite] = ACTIONS(6441), - [anon_sym_BSLASHsupercite] = ACTIONS(6441), - [anon_sym_BSLASHautocite] = ACTIONS(6441), - [anon_sym_BSLASHAutocite] = ACTIONS(6441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHvolcite] = ACTIONS(6441), - [anon_sym_BSLASHVolcite] = ACTIONS(6441), - [anon_sym_BSLASHpvolcite] = ACTIONS(6441), - [anon_sym_BSLASHPvolcite] = ACTIONS(6441), - [anon_sym_BSLASHfvolcite] = ACTIONS(6441), - [anon_sym_BSLASHftvolcite] = ACTIONS(6441), - [anon_sym_BSLASHsvolcite] = ACTIONS(6441), - [anon_sym_BSLASHSvolcite] = ACTIONS(6441), - [anon_sym_BSLASHtvolcite] = ACTIONS(6441), - [anon_sym_BSLASHTvolcite] = ACTIONS(6441), - [anon_sym_BSLASHavolcite] = ACTIONS(6441), - [anon_sym_BSLASHAvolcite] = ACTIONS(6441), - [anon_sym_BSLASHnotecite] = ACTIONS(6441), - [anon_sym_BSLASHNotecite] = ACTIONS(6441), - [anon_sym_BSLASHpnotecite] = ACTIONS(6441), - [anon_sym_BSLASHPnotecite] = ACTIONS(6441), - [anon_sym_BSLASHfnotecite] = ACTIONS(6441), - [anon_sym_BSLASHlabel] = ACTIONS(6441), - [anon_sym_BSLASHref] = ACTIONS(6441), - [anon_sym_BSLASHeqref] = ACTIONS(6441), - [anon_sym_BSLASHvref] = ACTIONS(6441), - [anon_sym_BSLASHVref] = ACTIONS(6441), - [anon_sym_BSLASHautoref] = ACTIONS(6441), - [anon_sym_BSLASHpageref] = ACTIONS(6441), - [anon_sym_BSLASHcref] = ACTIONS(6441), - [anon_sym_BSLASHCref] = ACTIONS(6441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnameCref] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHlabelcref] = ACTIONS(6441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCrefrange] = ACTIONS(6441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnewlabel] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6443), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHdef] = ACTIONS(6441), - [anon_sym_BSLASHlet] = ACTIONS(6441), - [anon_sym_BSLASHleft] = ACTIONS(6441), - [anon_sym_BSLASHbig] = ACTIONS(6441), - [anon_sym_BSLASHBig] = ACTIONS(6441), - [anon_sym_BSLASHbigg] = ACTIONS(6441), - [anon_sym_BSLASHBigg] = ACTIONS(6441), - [anon_sym_BSLASHbigl] = ACTIONS(6441), - [anon_sym_BSLASHBigl] = ACTIONS(6441), - [anon_sym_BSLASHbiggl] = ACTIONS(6441), - [anon_sym_BSLASHBiggl] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6441), - [anon_sym_BSLASHgls] = ACTIONS(6441), - [anon_sym_BSLASHGls] = ACTIONS(6441), - [anon_sym_BSLASHGLS] = ACTIONS(6441), - [anon_sym_BSLASHglspl] = ACTIONS(6441), - [anon_sym_BSLASHGlspl] = ACTIONS(6441), - [anon_sym_BSLASHGLSpl] = ACTIONS(6441), - [anon_sym_BSLASHglsdisp] = ACTIONS(6441), - [anon_sym_BSLASHglslink] = ACTIONS(6441), - [anon_sym_BSLASHglstext] = ACTIONS(6441), - [anon_sym_BSLASHGlstext] = ACTIONS(6441), - [anon_sym_BSLASHGLStext] = ACTIONS(6441), - [anon_sym_BSLASHglsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6441), - [anon_sym_BSLASHglsplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSplural] = ACTIONS(6441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHglsname] = ACTIONS(6441), - [anon_sym_BSLASHGlsname] = ACTIONS(6441), - [anon_sym_BSLASHGLSname] = ACTIONS(6441), - [anon_sym_BSLASHglssymbol] = ACTIONS(6441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6441), - [anon_sym_BSLASHglsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6441), - [anon_sym_BSLASHglsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6441), - [anon_sym_BSLASHglsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6441), - [anon_sym_BSLASHglsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6441), - [anon_sym_BSLASHglsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6441), - [anon_sym_BSLASHnewacronym] = ACTIONS(6441), - [anon_sym_BSLASHacrshort] = ACTIONS(6441), - [anon_sym_BSLASHAcrshort] = ACTIONS(6441), - [anon_sym_BSLASHACRshort] = ACTIONS(6441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6441), - [anon_sym_BSLASHacrlong] = ACTIONS(6441), - [anon_sym_BSLASHAcrlong] = ACTIONS(6441), - [anon_sym_BSLASHACRlong] = ACTIONS(6441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6441), - [anon_sym_BSLASHacrfull] = ACTIONS(6441), - [anon_sym_BSLASHAcrfull] = ACTIONS(6441), - [anon_sym_BSLASHACRfull] = ACTIONS(6441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6441), - [anon_sym_BSLASHacs] = ACTIONS(6441), - [anon_sym_BSLASHAcs] = ACTIONS(6441), - [anon_sym_BSLASHacsp] = ACTIONS(6441), - [anon_sym_BSLASHAcsp] = ACTIONS(6441), - [anon_sym_BSLASHacl] = ACTIONS(6441), - [anon_sym_BSLASHAcl] = ACTIONS(6441), - [anon_sym_BSLASHaclp] = ACTIONS(6441), - [anon_sym_BSLASHAclp] = ACTIONS(6441), - [anon_sym_BSLASHacf] = ACTIONS(6441), - [anon_sym_BSLASHAcf] = ACTIONS(6441), - [anon_sym_BSLASHacfp] = ACTIONS(6441), - [anon_sym_BSLASHAcfp] = ACTIONS(6441), - [anon_sym_BSLASHac] = ACTIONS(6441), - [anon_sym_BSLASHAc] = ACTIONS(6441), - [anon_sym_BSLASHacp] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6441), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6441), - [anon_sym_BSLASHcolor] = ACTIONS(6441), - [anon_sym_BSLASHcolorbox] = ACTIONS(6441), - [anon_sym_BSLASHtextcolor] = ACTIONS(6441), - [anon_sym_BSLASHpagecolor] = ACTIONS(6441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6441), - [anon_sym_BSLASHtext] = ACTIONS(6441), - [anon_sym_BSLASHintertext] = ACTIONS(6441), - [anon_sym_shortintertext] = ACTIONS(6441), - }, - [1736] = { - [sym_command_name] = ACTIONS(6445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6445), - [anon_sym_LBRACK] = ACTIONS(6447), - [anon_sym_RBRACK] = ACTIONS(6447), - [anon_sym_COMMA] = ACTIONS(6447), - [anon_sym_EQ] = ACTIONS(6447), - [anon_sym_LPAREN] = ACTIONS(6447), - [anon_sym_RPAREN] = ACTIONS(6447), - [anon_sym_LBRACE] = ACTIONS(6447), - [sym_word] = ACTIONS(6445), - [sym_placeholder] = ACTIONS(6447), - [anon_sym_PLUS] = ACTIONS(6447), - [anon_sym_DASH] = ACTIONS(6447), - [anon_sym_STAR] = ACTIONS(6447), - [anon_sym_SLASH] = ACTIONS(6447), - [anon_sym_LT] = ACTIONS(6445), - [anon_sym_GT] = ACTIONS(6445), - [anon_sym_BANG] = ACTIONS(6445), - [anon_sym_PIPE] = ACTIONS(6445), - [anon_sym_COLON] = ACTIONS(6445), - [anon_sym_SQUOTE] = ACTIONS(6445), - [anon_sym__] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6447), - [anon_sym_DOLLAR] = ACTIONS(6445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6447), - [anon_sym_BSLASHbegin] = ACTIONS(6445), - [anon_sym_BSLASHtitle] = ACTIONS(6445), - [anon_sym_BSLASHauthor] = ACTIONS(6445), - [anon_sym_BSLASHusepackage] = ACTIONS(6445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6445), - [anon_sym_BSLASHinclude] = ACTIONS(6445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6445), - [anon_sym_BSLASHinput] = ACTIONS(6445), - [anon_sym_BSLASHsubfile] = ACTIONS(6445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6445), - [anon_sym_BSLASHbibliography] = ACTIONS(6445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6445), - [anon_sym_BSLASHincludesvg] = ACTIONS(6445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6445), - [anon_sym_BSLASHimport] = ACTIONS(6445), - [anon_sym_BSLASHsubimport] = ACTIONS(6445), - [anon_sym_BSLASHinputfrom] = ACTIONS(6445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6445), - [anon_sym_BSLASHincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHcaption] = ACTIONS(6445), - [anon_sym_BSLASHcite] = ACTIONS(6445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCite] = ACTIONS(6445), - [anon_sym_BSLASHnocite] = ACTIONS(6445), - [anon_sym_BSLASHcitet] = ACTIONS(6445), - [anon_sym_BSLASHcitep] = ACTIONS(6445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteauthor] = ACTIONS(6445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitetitle] = ACTIONS(6445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteyear] = ACTIONS(6445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitedate] = ACTIONS(6445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteurl] = ACTIONS(6445), - [anon_sym_BSLASHfullcite] = ACTIONS(6445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6445), - [anon_sym_BSLASHcitealt] = ACTIONS(6445), - [anon_sym_BSLASHcitealp] = ACTIONS(6445), - [anon_sym_BSLASHcitetext] = ACTIONS(6445), - [anon_sym_BSLASHparencite] = ACTIONS(6445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHParencite] = ACTIONS(6445), - [anon_sym_BSLASHfootcite] = ACTIONS(6445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6445), - [anon_sym_BSLASHtextcite] = ACTIONS(6445), - [anon_sym_BSLASHTextcite] = ACTIONS(6445), - [anon_sym_BSLASHsmartcite] = ACTIONS(6445), - [anon_sym_BSLASHSmartcite] = ACTIONS(6445), - [anon_sym_BSLASHsupercite] = ACTIONS(6445), - [anon_sym_BSLASHautocite] = ACTIONS(6445), - [anon_sym_BSLASHAutocite] = ACTIONS(6445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHvolcite] = ACTIONS(6445), - [anon_sym_BSLASHVolcite] = ACTIONS(6445), - [anon_sym_BSLASHpvolcite] = ACTIONS(6445), - [anon_sym_BSLASHPvolcite] = ACTIONS(6445), - [anon_sym_BSLASHfvolcite] = ACTIONS(6445), - [anon_sym_BSLASHftvolcite] = ACTIONS(6445), - [anon_sym_BSLASHsvolcite] = ACTIONS(6445), - [anon_sym_BSLASHSvolcite] = ACTIONS(6445), - [anon_sym_BSLASHtvolcite] = ACTIONS(6445), - [anon_sym_BSLASHTvolcite] = ACTIONS(6445), - [anon_sym_BSLASHavolcite] = ACTIONS(6445), - [anon_sym_BSLASHAvolcite] = ACTIONS(6445), - [anon_sym_BSLASHnotecite] = ACTIONS(6445), - [anon_sym_BSLASHNotecite] = ACTIONS(6445), - [anon_sym_BSLASHpnotecite] = ACTIONS(6445), - [anon_sym_BSLASHPnotecite] = ACTIONS(6445), - [anon_sym_BSLASHfnotecite] = ACTIONS(6445), - [anon_sym_BSLASHlabel] = ACTIONS(6445), - [anon_sym_BSLASHref] = ACTIONS(6445), - [anon_sym_BSLASHeqref] = ACTIONS(6445), - [anon_sym_BSLASHvref] = ACTIONS(6445), - [anon_sym_BSLASHVref] = ACTIONS(6445), - [anon_sym_BSLASHautoref] = ACTIONS(6445), - [anon_sym_BSLASHpageref] = ACTIONS(6445), - [anon_sym_BSLASHcref] = ACTIONS(6445), - [anon_sym_BSLASHCref] = ACTIONS(6445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnameCref] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHlabelcref] = ACTIONS(6445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCrefrange] = ACTIONS(6445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnewlabel] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6447), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHdef] = ACTIONS(6445), - [anon_sym_BSLASHlet] = ACTIONS(6445), - [anon_sym_BSLASHleft] = ACTIONS(6445), - [anon_sym_BSLASHbig] = ACTIONS(6445), - [anon_sym_BSLASHBig] = ACTIONS(6445), - [anon_sym_BSLASHbigg] = ACTIONS(6445), - [anon_sym_BSLASHBigg] = ACTIONS(6445), - [anon_sym_BSLASHbigl] = ACTIONS(6445), - [anon_sym_BSLASHBigl] = ACTIONS(6445), - [anon_sym_BSLASHbiggl] = ACTIONS(6445), - [anon_sym_BSLASHBiggl] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6445), - [anon_sym_BSLASHgls] = ACTIONS(6445), - [anon_sym_BSLASHGls] = ACTIONS(6445), - [anon_sym_BSLASHGLS] = ACTIONS(6445), - [anon_sym_BSLASHglspl] = ACTIONS(6445), - [anon_sym_BSLASHGlspl] = ACTIONS(6445), - [anon_sym_BSLASHGLSpl] = ACTIONS(6445), - [anon_sym_BSLASHglsdisp] = ACTIONS(6445), - [anon_sym_BSLASHglslink] = ACTIONS(6445), - [anon_sym_BSLASHglstext] = ACTIONS(6445), - [anon_sym_BSLASHGlstext] = ACTIONS(6445), - [anon_sym_BSLASHGLStext] = ACTIONS(6445), - [anon_sym_BSLASHglsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6445), - [anon_sym_BSLASHglsplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSplural] = ACTIONS(6445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHglsname] = ACTIONS(6445), - [anon_sym_BSLASHGlsname] = ACTIONS(6445), - [anon_sym_BSLASHGLSname] = ACTIONS(6445), - [anon_sym_BSLASHglssymbol] = ACTIONS(6445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6445), - [anon_sym_BSLASHglsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6445), - [anon_sym_BSLASHglsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6445), - [anon_sym_BSLASHglsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6445), - [anon_sym_BSLASHglsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6445), - [anon_sym_BSLASHglsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6445), - [anon_sym_BSLASHnewacronym] = ACTIONS(6445), - [anon_sym_BSLASHacrshort] = ACTIONS(6445), - [anon_sym_BSLASHAcrshort] = ACTIONS(6445), - [anon_sym_BSLASHACRshort] = ACTIONS(6445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6445), - [anon_sym_BSLASHacrlong] = ACTIONS(6445), - [anon_sym_BSLASHAcrlong] = ACTIONS(6445), - [anon_sym_BSLASHACRlong] = ACTIONS(6445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6445), - [anon_sym_BSLASHacrfull] = ACTIONS(6445), - [anon_sym_BSLASHAcrfull] = ACTIONS(6445), - [anon_sym_BSLASHACRfull] = ACTIONS(6445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6445), - [anon_sym_BSLASHacs] = ACTIONS(6445), - [anon_sym_BSLASHAcs] = ACTIONS(6445), - [anon_sym_BSLASHacsp] = ACTIONS(6445), - [anon_sym_BSLASHAcsp] = ACTIONS(6445), - [anon_sym_BSLASHacl] = ACTIONS(6445), - [anon_sym_BSLASHAcl] = ACTIONS(6445), - [anon_sym_BSLASHaclp] = ACTIONS(6445), - [anon_sym_BSLASHAclp] = ACTIONS(6445), - [anon_sym_BSLASHacf] = ACTIONS(6445), - [anon_sym_BSLASHAcf] = ACTIONS(6445), - [anon_sym_BSLASHacfp] = ACTIONS(6445), - [anon_sym_BSLASHAcfp] = ACTIONS(6445), - [anon_sym_BSLASHac] = ACTIONS(6445), - [anon_sym_BSLASHAc] = ACTIONS(6445), - [anon_sym_BSLASHacp] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6445), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6445), - [anon_sym_BSLASHcolor] = ACTIONS(6445), - [anon_sym_BSLASHcolorbox] = ACTIONS(6445), - [anon_sym_BSLASHtextcolor] = ACTIONS(6445), - [anon_sym_BSLASHpagecolor] = ACTIONS(6445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6445), - [anon_sym_BSLASHtext] = ACTIONS(6445), - [anon_sym_BSLASHintertext] = ACTIONS(6445), - [anon_sym_shortintertext] = ACTIONS(6445), - }, - [1737] = { - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHbegin] = ACTIONS(187), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [1738] = { - [sym_command_name] = ACTIONS(6449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6449), - [anon_sym_LBRACK] = ACTIONS(6451), - [anon_sym_RBRACK] = ACTIONS(6451), - [anon_sym_COMMA] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(6451), - [anon_sym_LPAREN] = ACTIONS(6451), - [anon_sym_RPAREN] = ACTIONS(6451), - [anon_sym_LBRACE] = ACTIONS(6451), - [sym_word] = ACTIONS(6449), - [sym_placeholder] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6451), - [anon_sym_DASH] = ACTIONS(6451), - [anon_sym_STAR] = ACTIONS(6451), - [anon_sym_SLASH] = ACTIONS(6451), - [anon_sym_LT] = ACTIONS(6449), - [anon_sym_GT] = ACTIONS(6449), - [anon_sym_BANG] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6449), - [anon_sym_COLON] = ACTIONS(6449), - [anon_sym_SQUOTE] = ACTIONS(6449), - [anon_sym__] = ACTIONS(6451), - [anon_sym_CARET] = ACTIONS(6451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6451), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6451), - [anon_sym_DOLLAR] = ACTIONS(6449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6451), - [anon_sym_BSLASHbegin] = ACTIONS(6449), - [anon_sym_BSLASHtitle] = ACTIONS(6449), - [anon_sym_BSLASHauthor] = ACTIONS(6449), - [anon_sym_BSLASHusepackage] = ACTIONS(6449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6449), - [anon_sym_BSLASHinclude] = ACTIONS(6449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6449), - [anon_sym_BSLASHinput] = ACTIONS(6449), - [anon_sym_BSLASHsubfile] = ACTIONS(6449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6449), - [anon_sym_BSLASHbibliography] = ACTIONS(6449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6449), - [anon_sym_BSLASHincludesvg] = ACTIONS(6449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6449), - [anon_sym_BSLASHimport] = ACTIONS(6449), - [anon_sym_BSLASHsubimport] = ACTIONS(6449), - [anon_sym_BSLASHinputfrom] = ACTIONS(6449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6449), - [anon_sym_BSLASHincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHcaption] = ACTIONS(6449), - [anon_sym_BSLASHcite] = ACTIONS(6449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCite] = ACTIONS(6449), - [anon_sym_BSLASHnocite] = ACTIONS(6449), - [anon_sym_BSLASHcitet] = ACTIONS(6449), - [anon_sym_BSLASHcitep] = ACTIONS(6449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteauthor] = ACTIONS(6449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitetitle] = ACTIONS(6449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteyear] = ACTIONS(6449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitedate] = ACTIONS(6449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteurl] = ACTIONS(6449), - [anon_sym_BSLASHfullcite] = ACTIONS(6449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6449), - [anon_sym_BSLASHcitealt] = ACTIONS(6449), - [anon_sym_BSLASHcitealp] = ACTIONS(6449), - [anon_sym_BSLASHcitetext] = ACTIONS(6449), - [anon_sym_BSLASHparencite] = ACTIONS(6449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHParencite] = ACTIONS(6449), - [anon_sym_BSLASHfootcite] = ACTIONS(6449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6449), - [anon_sym_BSLASHtextcite] = ACTIONS(6449), - [anon_sym_BSLASHTextcite] = ACTIONS(6449), - [anon_sym_BSLASHsmartcite] = ACTIONS(6449), - [anon_sym_BSLASHSmartcite] = ACTIONS(6449), - [anon_sym_BSLASHsupercite] = ACTIONS(6449), - [anon_sym_BSLASHautocite] = ACTIONS(6449), - [anon_sym_BSLASHAutocite] = ACTIONS(6449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHvolcite] = ACTIONS(6449), - [anon_sym_BSLASHVolcite] = ACTIONS(6449), - [anon_sym_BSLASHpvolcite] = ACTIONS(6449), - [anon_sym_BSLASHPvolcite] = ACTIONS(6449), - [anon_sym_BSLASHfvolcite] = ACTIONS(6449), - [anon_sym_BSLASHftvolcite] = ACTIONS(6449), - [anon_sym_BSLASHsvolcite] = ACTIONS(6449), - [anon_sym_BSLASHSvolcite] = ACTIONS(6449), - [anon_sym_BSLASHtvolcite] = ACTIONS(6449), - [anon_sym_BSLASHTvolcite] = ACTIONS(6449), - [anon_sym_BSLASHavolcite] = ACTIONS(6449), - [anon_sym_BSLASHAvolcite] = ACTIONS(6449), - [anon_sym_BSLASHnotecite] = ACTIONS(6449), - [anon_sym_BSLASHNotecite] = ACTIONS(6449), - [anon_sym_BSLASHpnotecite] = ACTIONS(6449), - [anon_sym_BSLASHPnotecite] = ACTIONS(6449), - [anon_sym_BSLASHfnotecite] = ACTIONS(6449), - [anon_sym_BSLASHlabel] = ACTIONS(6449), - [anon_sym_BSLASHref] = ACTIONS(6449), - [anon_sym_BSLASHeqref] = ACTIONS(6449), - [anon_sym_BSLASHvref] = ACTIONS(6449), - [anon_sym_BSLASHVref] = ACTIONS(6449), - [anon_sym_BSLASHautoref] = ACTIONS(6449), - [anon_sym_BSLASHpageref] = ACTIONS(6449), - [anon_sym_BSLASHcref] = ACTIONS(6449), - [anon_sym_BSLASHCref] = ACTIONS(6449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnameCref] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHlabelcref] = ACTIONS(6449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCrefrange] = ACTIONS(6449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnewlabel] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6451), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHdef] = ACTIONS(6449), - [anon_sym_BSLASHlet] = ACTIONS(6449), - [anon_sym_BSLASHleft] = ACTIONS(6449), - [anon_sym_BSLASHbig] = ACTIONS(6449), - [anon_sym_BSLASHBig] = ACTIONS(6449), - [anon_sym_BSLASHbigg] = ACTIONS(6449), - [anon_sym_BSLASHBigg] = ACTIONS(6449), - [anon_sym_BSLASHbigl] = ACTIONS(6449), - [anon_sym_BSLASHBigl] = ACTIONS(6449), - [anon_sym_BSLASHbiggl] = ACTIONS(6449), - [anon_sym_BSLASHBiggl] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6449), - [anon_sym_BSLASHgls] = ACTIONS(6449), - [anon_sym_BSLASHGls] = ACTIONS(6449), - [anon_sym_BSLASHGLS] = ACTIONS(6449), - [anon_sym_BSLASHglspl] = ACTIONS(6449), - [anon_sym_BSLASHGlspl] = ACTIONS(6449), - [anon_sym_BSLASHGLSpl] = ACTIONS(6449), - [anon_sym_BSLASHglsdisp] = ACTIONS(6449), - [anon_sym_BSLASHglslink] = ACTIONS(6449), - [anon_sym_BSLASHglstext] = ACTIONS(6449), - [anon_sym_BSLASHGlstext] = ACTIONS(6449), - [anon_sym_BSLASHGLStext] = ACTIONS(6449), - [anon_sym_BSLASHglsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6449), - [anon_sym_BSLASHglsplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSplural] = ACTIONS(6449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHglsname] = ACTIONS(6449), - [anon_sym_BSLASHGlsname] = ACTIONS(6449), - [anon_sym_BSLASHGLSname] = ACTIONS(6449), - [anon_sym_BSLASHglssymbol] = ACTIONS(6449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6449), - [anon_sym_BSLASHglsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6449), - [anon_sym_BSLASHglsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6449), - [anon_sym_BSLASHglsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6449), - [anon_sym_BSLASHglsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6449), - [anon_sym_BSLASHglsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6449), - [anon_sym_BSLASHnewacronym] = ACTIONS(6449), - [anon_sym_BSLASHacrshort] = ACTIONS(6449), - [anon_sym_BSLASHAcrshort] = ACTIONS(6449), - [anon_sym_BSLASHACRshort] = ACTIONS(6449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6449), - [anon_sym_BSLASHacrlong] = ACTIONS(6449), - [anon_sym_BSLASHAcrlong] = ACTIONS(6449), - [anon_sym_BSLASHACRlong] = ACTIONS(6449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6449), - [anon_sym_BSLASHacrfull] = ACTIONS(6449), - [anon_sym_BSLASHAcrfull] = ACTIONS(6449), - [anon_sym_BSLASHACRfull] = ACTIONS(6449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6449), - [anon_sym_BSLASHacs] = ACTIONS(6449), - [anon_sym_BSLASHAcs] = ACTIONS(6449), - [anon_sym_BSLASHacsp] = ACTIONS(6449), - [anon_sym_BSLASHAcsp] = ACTIONS(6449), - [anon_sym_BSLASHacl] = ACTIONS(6449), - [anon_sym_BSLASHAcl] = ACTIONS(6449), - [anon_sym_BSLASHaclp] = ACTIONS(6449), - [anon_sym_BSLASHAclp] = ACTIONS(6449), - [anon_sym_BSLASHacf] = ACTIONS(6449), - [anon_sym_BSLASHAcf] = ACTIONS(6449), - [anon_sym_BSLASHacfp] = ACTIONS(6449), - [anon_sym_BSLASHAcfp] = ACTIONS(6449), - [anon_sym_BSLASHac] = ACTIONS(6449), - [anon_sym_BSLASHAc] = ACTIONS(6449), - [anon_sym_BSLASHacp] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6449), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6449), - [anon_sym_BSLASHcolor] = ACTIONS(6449), - [anon_sym_BSLASHcolorbox] = ACTIONS(6449), - [anon_sym_BSLASHtextcolor] = ACTIONS(6449), - [anon_sym_BSLASHpagecolor] = ACTIONS(6449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6449), - [anon_sym_BSLASHtext] = ACTIONS(6449), - [anon_sym_BSLASHintertext] = ACTIONS(6449), - [anon_sym_shortintertext] = ACTIONS(6449), - }, - [1739] = { - [sym_command_name] = ACTIONS(6453), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6453), - [anon_sym_LBRACK] = ACTIONS(6455), - [anon_sym_RBRACK] = ACTIONS(6455), - [anon_sym_COMMA] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(6455), - [anon_sym_LPAREN] = ACTIONS(6455), - [anon_sym_RPAREN] = ACTIONS(6455), - [anon_sym_LBRACE] = ACTIONS(6455), - [sym_word] = ACTIONS(6453), - [sym_placeholder] = ACTIONS(6455), - [anon_sym_PLUS] = ACTIONS(6455), - [anon_sym_DASH] = ACTIONS(6455), - [anon_sym_STAR] = ACTIONS(6455), - [anon_sym_SLASH] = ACTIONS(6455), - [anon_sym_LT] = ACTIONS(6453), - [anon_sym_GT] = ACTIONS(6453), - [anon_sym_BANG] = ACTIONS(6453), - [anon_sym_PIPE] = ACTIONS(6453), - [anon_sym_COLON] = ACTIONS(6453), - [anon_sym_SQUOTE] = ACTIONS(6453), - [anon_sym__] = ACTIONS(6455), - [anon_sym_CARET] = ACTIONS(6455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6455), - [anon_sym_DOLLAR] = ACTIONS(6453), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6455), - [anon_sym_BSLASHbegin] = ACTIONS(6453), - [anon_sym_BSLASHtitle] = ACTIONS(6453), - [anon_sym_BSLASHauthor] = ACTIONS(6453), - [anon_sym_BSLASHusepackage] = ACTIONS(6453), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6453), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6453), - [anon_sym_BSLASHinclude] = ACTIONS(6453), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6453), - [anon_sym_BSLASHinput] = ACTIONS(6453), - [anon_sym_BSLASHsubfile] = ACTIONS(6453), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6453), - [anon_sym_BSLASHbibliography] = ACTIONS(6453), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6453), - [anon_sym_BSLASHincludesvg] = ACTIONS(6453), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6453), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6453), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6453), - [anon_sym_BSLASHimport] = ACTIONS(6453), - [anon_sym_BSLASHsubimport] = ACTIONS(6453), - [anon_sym_BSLASHinputfrom] = ACTIONS(6453), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6453), - [anon_sym_BSLASHincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHcaption] = ACTIONS(6453), - [anon_sym_BSLASHcite] = ACTIONS(6453), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCite] = ACTIONS(6453), - [anon_sym_BSLASHnocite] = ACTIONS(6453), - [anon_sym_BSLASHcitet] = ACTIONS(6453), - [anon_sym_BSLASHcitep] = ACTIONS(6453), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteauthor] = ACTIONS(6453), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6453), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitetitle] = ACTIONS(6453), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteyear] = ACTIONS(6453), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitedate] = ACTIONS(6453), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteurl] = ACTIONS(6453), - [anon_sym_BSLASHfullcite] = ACTIONS(6453), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6453), - [anon_sym_BSLASHcitealt] = ACTIONS(6453), - [anon_sym_BSLASHcitealp] = ACTIONS(6453), - [anon_sym_BSLASHcitetext] = ACTIONS(6453), - [anon_sym_BSLASHparencite] = ACTIONS(6453), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHParencite] = ACTIONS(6453), - [anon_sym_BSLASHfootcite] = ACTIONS(6453), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6453), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6453), - [anon_sym_BSLASHtextcite] = ACTIONS(6453), - [anon_sym_BSLASHTextcite] = ACTIONS(6453), - [anon_sym_BSLASHsmartcite] = ACTIONS(6453), - [anon_sym_BSLASHSmartcite] = ACTIONS(6453), - [anon_sym_BSLASHsupercite] = ACTIONS(6453), - [anon_sym_BSLASHautocite] = ACTIONS(6453), - [anon_sym_BSLASHAutocite] = ACTIONS(6453), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHvolcite] = ACTIONS(6453), - [anon_sym_BSLASHVolcite] = ACTIONS(6453), - [anon_sym_BSLASHpvolcite] = ACTIONS(6453), - [anon_sym_BSLASHPvolcite] = ACTIONS(6453), - [anon_sym_BSLASHfvolcite] = ACTIONS(6453), - [anon_sym_BSLASHftvolcite] = ACTIONS(6453), - [anon_sym_BSLASHsvolcite] = ACTIONS(6453), - [anon_sym_BSLASHSvolcite] = ACTIONS(6453), - [anon_sym_BSLASHtvolcite] = ACTIONS(6453), - [anon_sym_BSLASHTvolcite] = ACTIONS(6453), - [anon_sym_BSLASHavolcite] = ACTIONS(6453), - [anon_sym_BSLASHAvolcite] = ACTIONS(6453), - [anon_sym_BSLASHnotecite] = ACTIONS(6453), - [anon_sym_BSLASHNotecite] = ACTIONS(6453), - [anon_sym_BSLASHpnotecite] = ACTIONS(6453), - [anon_sym_BSLASHPnotecite] = ACTIONS(6453), - [anon_sym_BSLASHfnotecite] = ACTIONS(6453), - [anon_sym_BSLASHlabel] = ACTIONS(6453), - [anon_sym_BSLASHref] = ACTIONS(6453), - [anon_sym_BSLASHeqref] = ACTIONS(6453), - [anon_sym_BSLASHvref] = ACTIONS(6453), - [anon_sym_BSLASHVref] = ACTIONS(6453), - [anon_sym_BSLASHautoref] = ACTIONS(6453), - [anon_sym_BSLASHpageref] = ACTIONS(6453), - [anon_sym_BSLASHcref] = ACTIONS(6453), - [anon_sym_BSLASHCref] = ACTIONS(6453), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnameCref] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHlabelcref] = ACTIONS(6453), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCrefrange] = ACTIONS(6453), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnewlabel] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6453), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6453), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6455), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHdef] = ACTIONS(6453), - [anon_sym_BSLASHlet] = ACTIONS(6453), - [anon_sym_BSLASHleft] = ACTIONS(6453), - [anon_sym_BSLASHbig] = ACTIONS(6453), - [anon_sym_BSLASHBig] = ACTIONS(6453), - [anon_sym_BSLASHbigg] = ACTIONS(6453), - [anon_sym_BSLASHBigg] = ACTIONS(6453), - [anon_sym_BSLASHbigl] = ACTIONS(6453), - [anon_sym_BSLASHBigl] = ACTIONS(6453), - [anon_sym_BSLASHbiggl] = ACTIONS(6453), - [anon_sym_BSLASHBiggl] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6453), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6453), - [anon_sym_BSLASHgls] = ACTIONS(6453), - [anon_sym_BSLASHGls] = ACTIONS(6453), - [anon_sym_BSLASHGLS] = ACTIONS(6453), - [anon_sym_BSLASHglspl] = ACTIONS(6453), - [anon_sym_BSLASHGlspl] = ACTIONS(6453), - [anon_sym_BSLASHGLSpl] = ACTIONS(6453), - [anon_sym_BSLASHglsdisp] = ACTIONS(6453), - [anon_sym_BSLASHglslink] = ACTIONS(6453), - [anon_sym_BSLASHglstext] = ACTIONS(6453), - [anon_sym_BSLASHGlstext] = ACTIONS(6453), - [anon_sym_BSLASHGLStext] = ACTIONS(6453), - [anon_sym_BSLASHglsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6453), - [anon_sym_BSLASHglsplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSplural] = ACTIONS(6453), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHglsname] = ACTIONS(6453), - [anon_sym_BSLASHGlsname] = ACTIONS(6453), - [anon_sym_BSLASHGLSname] = ACTIONS(6453), - [anon_sym_BSLASHglssymbol] = ACTIONS(6453), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6453), - [anon_sym_BSLASHglsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6453), - [anon_sym_BSLASHglsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6453), - [anon_sym_BSLASHglsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6453), - [anon_sym_BSLASHglsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6453), - [anon_sym_BSLASHglsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6453), - [anon_sym_BSLASHnewacronym] = ACTIONS(6453), - [anon_sym_BSLASHacrshort] = ACTIONS(6453), - [anon_sym_BSLASHAcrshort] = ACTIONS(6453), - [anon_sym_BSLASHACRshort] = ACTIONS(6453), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6453), - [anon_sym_BSLASHacrlong] = ACTIONS(6453), - [anon_sym_BSLASHAcrlong] = ACTIONS(6453), - [anon_sym_BSLASHACRlong] = ACTIONS(6453), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6453), - [anon_sym_BSLASHacrfull] = ACTIONS(6453), - [anon_sym_BSLASHAcrfull] = ACTIONS(6453), - [anon_sym_BSLASHACRfull] = ACTIONS(6453), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6453), - [anon_sym_BSLASHacs] = ACTIONS(6453), - [anon_sym_BSLASHAcs] = ACTIONS(6453), - [anon_sym_BSLASHacsp] = ACTIONS(6453), - [anon_sym_BSLASHAcsp] = ACTIONS(6453), - [anon_sym_BSLASHacl] = ACTIONS(6453), - [anon_sym_BSLASHAcl] = ACTIONS(6453), - [anon_sym_BSLASHaclp] = ACTIONS(6453), - [anon_sym_BSLASHAclp] = ACTIONS(6453), - [anon_sym_BSLASHacf] = ACTIONS(6453), - [anon_sym_BSLASHAcf] = ACTIONS(6453), - [anon_sym_BSLASHacfp] = ACTIONS(6453), - [anon_sym_BSLASHAcfp] = ACTIONS(6453), - [anon_sym_BSLASHac] = ACTIONS(6453), - [anon_sym_BSLASHAc] = ACTIONS(6453), - [anon_sym_BSLASHacp] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6453), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6453), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6453), - [anon_sym_BSLASHcolor] = ACTIONS(6453), - [anon_sym_BSLASHcolorbox] = ACTIONS(6453), - [anon_sym_BSLASHtextcolor] = ACTIONS(6453), - [anon_sym_BSLASHpagecolor] = ACTIONS(6453), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6453), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6453), - [anon_sym_BSLASHtext] = ACTIONS(6453), - [anon_sym_BSLASHintertext] = ACTIONS(6453), - [anon_sym_shortintertext] = ACTIONS(6453), - }, - [1740] = { - [sym_command_name] = ACTIONS(6457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6457), - [anon_sym_LBRACK] = ACTIONS(6459), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(6459), - [anon_sym_LPAREN] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LBRACE] = ACTIONS(6459), - [sym_word] = ACTIONS(6457), - [sym_placeholder] = ACTIONS(6459), - [anon_sym_PLUS] = ACTIONS(6459), - [anon_sym_DASH] = ACTIONS(6459), - [anon_sym_STAR] = ACTIONS(6459), - [anon_sym_SLASH] = ACTIONS(6459), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_BANG] = ACTIONS(6457), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_SQUOTE] = ACTIONS(6457), - [anon_sym__] = ACTIONS(6459), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6459), - [anon_sym_DOLLAR] = ACTIONS(6457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6459), - [anon_sym_BSLASHbegin] = ACTIONS(6457), - [anon_sym_BSLASHtitle] = ACTIONS(6457), - [anon_sym_BSLASHauthor] = ACTIONS(6457), - [anon_sym_BSLASHusepackage] = ACTIONS(6457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6457), - [anon_sym_BSLASHinclude] = ACTIONS(6457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6457), - [anon_sym_BSLASHinput] = ACTIONS(6457), - [anon_sym_BSLASHsubfile] = ACTIONS(6457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6457), - [anon_sym_BSLASHbibliography] = ACTIONS(6457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6457), - [anon_sym_BSLASHincludesvg] = ACTIONS(6457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6457), - [anon_sym_BSLASHimport] = ACTIONS(6457), - [anon_sym_BSLASHsubimport] = ACTIONS(6457), - [anon_sym_BSLASHinputfrom] = ACTIONS(6457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6457), - [anon_sym_BSLASHincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHcaption] = ACTIONS(6457), - [anon_sym_BSLASHcite] = ACTIONS(6457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCite] = ACTIONS(6457), - [anon_sym_BSLASHnocite] = ACTIONS(6457), - [anon_sym_BSLASHcitet] = ACTIONS(6457), - [anon_sym_BSLASHcitep] = ACTIONS(6457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteauthor] = ACTIONS(6457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitetitle] = ACTIONS(6457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteyear] = ACTIONS(6457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitedate] = ACTIONS(6457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteurl] = ACTIONS(6457), - [anon_sym_BSLASHfullcite] = ACTIONS(6457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6457), - [anon_sym_BSLASHcitealt] = ACTIONS(6457), - [anon_sym_BSLASHcitealp] = ACTIONS(6457), - [anon_sym_BSLASHcitetext] = ACTIONS(6457), - [anon_sym_BSLASHparencite] = ACTIONS(6457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHParencite] = ACTIONS(6457), - [anon_sym_BSLASHfootcite] = ACTIONS(6457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6457), - [anon_sym_BSLASHtextcite] = ACTIONS(6457), - [anon_sym_BSLASHTextcite] = ACTIONS(6457), - [anon_sym_BSLASHsmartcite] = ACTIONS(6457), - [anon_sym_BSLASHSmartcite] = ACTIONS(6457), - [anon_sym_BSLASHsupercite] = ACTIONS(6457), - [anon_sym_BSLASHautocite] = ACTIONS(6457), - [anon_sym_BSLASHAutocite] = ACTIONS(6457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHvolcite] = ACTIONS(6457), - [anon_sym_BSLASHVolcite] = ACTIONS(6457), - [anon_sym_BSLASHpvolcite] = ACTIONS(6457), - [anon_sym_BSLASHPvolcite] = ACTIONS(6457), - [anon_sym_BSLASHfvolcite] = ACTIONS(6457), - [anon_sym_BSLASHftvolcite] = ACTIONS(6457), - [anon_sym_BSLASHsvolcite] = ACTIONS(6457), - [anon_sym_BSLASHSvolcite] = ACTIONS(6457), - [anon_sym_BSLASHtvolcite] = ACTIONS(6457), - [anon_sym_BSLASHTvolcite] = ACTIONS(6457), - [anon_sym_BSLASHavolcite] = ACTIONS(6457), - [anon_sym_BSLASHAvolcite] = ACTIONS(6457), - [anon_sym_BSLASHnotecite] = ACTIONS(6457), - [anon_sym_BSLASHNotecite] = ACTIONS(6457), - [anon_sym_BSLASHpnotecite] = ACTIONS(6457), - [anon_sym_BSLASHPnotecite] = ACTIONS(6457), - [anon_sym_BSLASHfnotecite] = ACTIONS(6457), - [anon_sym_BSLASHlabel] = ACTIONS(6457), - [anon_sym_BSLASHref] = ACTIONS(6457), - [anon_sym_BSLASHeqref] = ACTIONS(6457), - [anon_sym_BSLASHvref] = ACTIONS(6457), - [anon_sym_BSLASHVref] = ACTIONS(6457), - [anon_sym_BSLASHautoref] = ACTIONS(6457), - [anon_sym_BSLASHpageref] = ACTIONS(6457), - [anon_sym_BSLASHcref] = ACTIONS(6457), - [anon_sym_BSLASHCref] = ACTIONS(6457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnameCref] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHlabelcref] = ACTIONS(6457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCrefrange] = ACTIONS(6457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnewlabel] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6459), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHdef] = ACTIONS(6457), - [anon_sym_BSLASHlet] = ACTIONS(6457), - [anon_sym_BSLASHleft] = ACTIONS(6457), - [anon_sym_BSLASHbig] = ACTIONS(6457), - [anon_sym_BSLASHBig] = ACTIONS(6457), - [anon_sym_BSLASHbigg] = ACTIONS(6457), - [anon_sym_BSLASHBigg] = ACTIONS(6457), - [anon_sym_BSLASHbigl] = ACTIONS(6457), - [anon_sym_BSLASHBigl] = ACTIONS(6457), - [anon_sym_BSLASHbiggl] = ACTIONS(6457), - [anon_sym_BSLASHBiggl] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6457), - [anon_sym_BSLASHgls] = ACTIONS(6457), - [anon_sym_BSLASHGls] = ACTIONS(6457), - [anon_sym_BSLASHGLS] = ACTIONS(6457), - [anon_sym_BSLASHglspl] = ACTIONS(6457), - [anon_sym_BSLASHGlspl] = ACTIONS(6457), - [anon_sym_BSLASHGLSpl] = ACTIONS(6457), - [anon_sym_BSLASHglsdisp] = ACTIONS(6457), - [anon_sym_BSLASHglslink] = ACTIONS(6457), - [anon_sym_BSLASHglstext] = ACTIONS(6457), - [anon_sym_BSLASHGlstext] = ACTIONS(6457), - [anon_sym_BSLASHGLStext] = ACTIONS(6457), - [anon_sym_BSLASHglsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6457), - [anon_sym_BSLASHglsplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSplural] = ACTIONS(6457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHglsname] = ACTIONS(6457), - [anon_sym_BSLASHGlsname] = ACTIONS(6457), - [anon_sym_BSLASHGLSname] = ACTIONS(6457), - [anon_sym_BSLASHglssymbol] = ACTIONS(6457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6457), - [anon_sym_BSLASHglsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6457), - [anon_sym_BSLASHglsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6457), - [anon_sym_BSLASHglsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6457), - [anon_sym_BSLASHglsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6457), - [anon_sym_BSLASHglsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6457), - [anon_sym_BSLASHnewacronym] = ACTIONS(6457), - [anon_sym_BSLASHacrshort] = ACTIONS(6457), - [anon_sym_BSLASHAcrshort] = ACTIONS(6457), - [anon_sym_BSLASHACRshort] = ACTIONS(6457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6457), - [anon_sym_BSLASHacrlong] = ACTIONS(6457), - [anon_sym_BSLASHAcrlong] = ACTIONS(6457), - [anon_sym_BSLASHACRlong] = ACTIONS(6457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6457), - [anon_sym_BSLASHacrfull] = ACTIONS(6457), - [anon_sym_BSLASHAcrfull] = ACTIONS(6457), - [anon_sym_BSLASHACRfull] = ACTIONS(6457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6457), - [anon_sym_BSLASHacs] = ACTIONS(6457), - [anon_sym_BSLASHAcs] = ACTIONS(6457), - [anon_sym_BSLASHacsp] = ACTIONS(6457), - [anon_sym_BSLASHAcsp] = ACTIONS(6457), - [anon_sym_BSLASHacl] = ACTIONS(6457), - [anon_sym_BSLASHAcl] = ACTIONS(6457), - [anon_sym_BSLASHaclp] = ACTIONS(6457), - [anon_sym_BSLASHAclp] = ACTIONS(6457), - [anon_sym_BSLASHacf] = ACTIONS(6457), - [anon_sym_BSLASHAcf] = ACTIONS(6457), - [anon_sym_BSLASHacfp] = ACTIONS(6457), - [anon_sym_BSLASHAcfp] = ACTIONS(6457), - [anon_sym_BSLASHac] = ACTIONS(6457), - [anon_sym_BSLASHAc] = ACTIONS(6457), - [anon_sym_BSLASHacp] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6457), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6457), - [anon_sym_BSLASHcolor] = ACTIONS(6457), - [anon_sym_BSLASHcolorbox] = ACTIONS(6457), - [anon_sym_BSLASHtextcolor] = ACTIONS(6457), - [anon_sym_BSLASHpagecolor] = ACTIONS(6457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6457), - [anon_sym_BSLASHtext] = ACTIONS(6457), - [anon_sym_BSLASHintertext] = ACTIONS(6457), - [anon_sym_shortintertext] = ACTIONS(6457), - }, - [1741] = { - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LBRACK] = ACTIONS(185), - [anon_sym_RBRACK] = ACTIONS(185), - [anon_sym_COMMA] = ACTIONS(185), - [anon_sym_EQ] = ACTIONS(185), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(185), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [1742] = { - [sym_command_name] = ACTIONS(6461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6461), - [anon_sym_LBRACK] = ACTIONS(6463), - [anon_sym_RBRACK] = ACTIONS(6463), - [anon_sym_COMMA] = ACTIONS(6463), - [anon_sym_EQ] = ACTIONS(6463), - [anon_sym_LPAREN] = ACTIONS(6463), - [anon_sym_RPAREN] = ACTIONS(6463), - [anon_sym_LBRACE] = ACTIONS(6463), - [sym_word] = ACTIONS(6461), - [sym_placeholder] = ACTIONS(6463), - [anon_sym_PLUS] = ACTIONS(6463), - [anon_sym_DASH] = ACTIONS(6463), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6463), - [anon_sym_LT] = ACTIONS(6461), - [anon_sym_GT] = ACTIONS(6461), - [anon_sym_BANG] = ACTIONS(6461), - [anon_sym_PIPE] = ACTIONS(6461), - [anon_sym_COLON] = ACTIONS(6461), - [anon_sym_SQUOTE] = ACTIONS(6461), - [anon_sym__] = ACTIONS(6463), - [anon_sym_CARET] = ACTIONS(6463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6463), - [anon_sym_DOLLAR] = ACTIONS(6461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6463), - [anon_sym_BSLASHbegin] = ACTIONS(6461), - [anon_sym_BSLASHtitle] = ACTIONS(6461), - [anon_sym_BSLASHauthor] = ACTIONS(6461), - [anon_sym_BSLASHusepackage] = ACTIONS(6461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6461), - [anon_sym_BSLASHinclude] = ACTIONS(6461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6461), - [anon_sym_BSLASHinput] = ACTIONS(6461), - [anon_sym_BSLASHsubfile] = ACTIONS(6461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6461), - [anon_sym_BSLASHbibliography] = ACTIONS(6461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6461), - [anon_sym_BSLASHincludesvg] = ACTIONS(6461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6461), - [anon_sym_BSLASHimport] = ACTIONS(6461), - [anon_sym_BSLASHsubimport] = ACTIONS(6461), - [anon_sym_BSLASHinputfrom] = ACTIONS(6461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6461), - [anon_sym_BSLASHincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHcaption] = ACTIONS(6461), - [anon_sym_BSLASHcite] = ACTIONS(6461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCite] = ACTIONS(6461), - [anon_sym_BSLASHnocite] = ACTIONS(6461), - [anon_sym_BSLASHcitet] = ACTIONS(6461), - [anon_sym_BSLASHcitep] = ACTIONS(6461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteauthor] = ACTIONS(6461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitetitle] = ACTIONS(6461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteyear] = ACTIONS(6461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitedate] = ACTIONS(6461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteurl] = ACTIONS(6461), - [anon_sym_BSLASHfullcite] = ACTIONS(6461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6461), - [anon_sym_BSLASHcitealt] = ACTIONS(6461), - [anon_sym_BSLASHcitealp] = ACTIONS(6461), - [anon_sym_BSLASHcitetext] = ACTIONS(6461), - [anon_sym_BSLASHparencite] = ACTIONS(6461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHParencite] = ACTIONS(6461), - [anon_sym_BSLASHfootcite] = ACTIONS(6461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6461), - [anon_sym_BSLASHtextcite] = ACTIONS(6461), - [anon_sym_BSLASHTextcite] = ACTIONS(6461), - [anon_sym_BSLASHsmartcite] = ACTIONS(6461), - [anon_sym_BSLASHSmartcite] = ACTIONS(6461), - [anon_sym_BSLASHsupercite] = ACTIONS(6461), - [anon_sym_BSLASHautocite] = ACTIONS(6461), - [anon_sym_BSLASHAutocite] = ACTIONS(6461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHvolcite] = ACTIONS(6461), - [anon_sym_BSLASHVolcite] = ACTIONS(6461), - [anon_sym_BSLASHpvolcite] = ACTIONS(6461), - [anon_sym_BSLASHPvolcite] = ACTIONS(6461), - [anon_sym_BSLASHfvolcite] = ACTIONS(6461), - [anon_sym_BSLASHftvolcite] = ACTIONS(6461), - [anon_sym_BSLASHsvolcite] = ACTIONS(6461), - [anon_sym_BSLASHSvolcite] = ACTIONS(6461), - [anon_sym_BSLASHtvolcite] = ACTIONS(6461), - [anon_sym_BSLASHTvolcite] = ACTIONS(6461), - [anon_sym_BSLASHavolcite] = ACTIONS(6461), - [anon_sym_BSLASHAvolcite] = ACTIONS(6461), - [anon_sym_BSLASHnotecite] = ACTIONS(6461), - [anon_sym_BSLASHNotecite] = ACTIONS(6461), - [anon_sym_BSLASHpnotecite] = ACTIONS(6461), - [anon_sym_BSLASHPnotecite] = ACTIONS(6461), - [anon_sym_BSLASHfnotecite] = ACTIONS(6461), - [anon_sym_BSLASHlabel] = ACTIONS(6461), - [anon_sym_BSLASHref] = ACTIONS(6461), - [anon_sym_BSLASHeqref] = ACTIONS(6461), - [anon_sym_BSLASHvref] = ACTIONS(6461), - [anon_sym_BSLASHVref] = ACTIONS(6461), - [anon_sym_BSLASHautoref] = ACTIONS(6461), - [anon_sym_BSLASHpageref] = ACTIONS(6461), - [anon_sym_BSLASHcref] = ACTIONS(6461), - [anon_sym_BSLASHCref] = ACTIONS(6461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnameCref] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHlabelcref] = ACTIONS(6461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCrefrange] = ACTIONS(6461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnewlabel] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6463), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHdef] = ACTIONS(6461), - [anon_sym_BSLASHlet] = ACTIONS(6461), - [anon_sym_BSLASHleft] = ACTIONS(6461), - [anon_sym_BSLASHbig] = ACTIONS(6461), - [anon_sym_BSLASHBig] = ACTIONS(6461), - [anon_sym_BSLASHbigg] = ACTIONS(6461), - [anon_sym_BSLASHBigg] = ACTIONS(6461), - [anon_sym_BSLASHbigl] = ACTIONS(6461), - [anon_sym_BSLASHBigl] = ACTIONS(6461), - [anon_sym_BSLASHbiggl] = ACTIONS(6461), - [anon_sym_BSLASHBiggl] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6461), - [anon_sym_BSLASHgls] = ACTIONS(6461), - [anon_sym_BSLASHGls] = ACTIONS(6461), - [anon_sym_BSLASHGLS] = ACTIONS(6461), - [anon_sym_BSLASHglspl] = ACTIONS(6461), - [anon_sym_BSLASHGlspl] = ACTIONS(6461), - [anon_sym_BSLASHGLSpl] = ACTIONS(6461), - [anon_sym_BSLASHglsdisp] = ACTIONS(6461), - [anon_sym_BSLASHglslink] = ACTIONS(6461), - [anon_sym_BSLASHglstext] = ACTIONS(6461), - [anon_sym_BSLASHGlstext] = ACTIONS(6461), - [anon_sym_BSLASHGLStext] = ACTIONS(6461), - [anon_sym_BSLASHglsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6461), - [anon_sym_BSLASHglsplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSplural] = ACTIONS(6461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHglsname] = ACTIONS(6461), - [anon_sym_BSLASHGlsname] = ACTIONS(6461), - [anon_sym_BSLASHGLSname] = ACTIONS(6461), - [anon_sym_BSLASHglssymbol] = ACTIONS(6461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6461), - [anon_sym_BSLASHglsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6461), - [anon_sym_BSLASHglsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6461), - [anon_sym_BSLASHglsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6461), - [anon_sym_BSLASHglsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6461), - [anon_sym_BSLASHglsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6461), - [anon_sym_BSLASHnewacronym] = ACTIONS(6461), - [anon_sym_BSLASHacrshort] = ACTIONS(6461), - [anon_sym_BSLASHAcrshort] = ACTIONS(6461), - [anon_sym_BSLASHACRshort] = ACTIONS(6461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6461), - [anon_sym_BSLASHacrlong] = ACTIONS(6461), - [anon_sym_BSLASHAcrlong] = ACTIONS(6461), - [anon_sym_BSLASHACRlong] = ACTIONS(6461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6461), - [anon_sym_BSLASHacrfull] = ACTIONS(6461), - [anon_sym_BSLASHAcrfull] = ACTIONS(6461), - [anon_sym_BSLASHACRfull] = ACTIONS(6461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6461), - [anon_sym_BSLASHacs] = ACTIONS(6461), - [anon_sym_BSLASHAcs] = ACTIONS(6461), - [anon_sym_BSLASHacsp] = ACTIONS(6461), - [anon_sym_BSLASHAcsp] = ACTIONS(6461), - [anon_sym_BSLASHacl] = ACTIONS(6461), - [anon_sym_BSLASHAcl] = ACTIONS(6461), - [anon_sym_BSLASHaclp] = ACTIONS(6461), - [anon_sym_BSLASHAclp] = ACTIONS(6461), - [anon_sym_BSLASHacf] = ACTIONS(6461), - [anon_sym_BSLASHAcf] = ACTIONS(6461), - [anon_sym_BSLASHacfp] = ACTIONS(6461), - [anon_sym_BSLASHAcfp] = ACTIONS(6461), - [anon_sym_BSLASHac] = ACTIONS(6461), - [anon_sym_BSLASHAc] = ACTIONS(6461), - [anon_sym_BSLASHacp] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6461), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6461), - [anon_sym_BSLASHcolor] = ACTIONS(6461), - [anon_sym_BSLASHcolorbox] = ACTIONS(6461), - [anon_sym_BSLASHtextcolor] = ACTIONS(6461), - [anon_sym_BSLASHpagecolor] = ACTIONS(6461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6461), - [anon_sym_BSLASHtext] = ACTIONS(6461), - [anon_sym_BSLASHintertext] = ACTIONS(6461), - [anon_sym_shortintertext] = ACTIONS(6461), - }, - [1743] = { - [sym_command_name] = ACTIONS(6465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6465), - [anon_sym_LBRACK] = ACTIONS(6467), - [anon_sym_RBRACK] = ACTIONS(6467), - [anon_sym_COMMA] = ACTIONS(6467), - [anon_sym_EQ] = ACTIONS(6467), - [anon_sym_LPAREN] = ACTIONS(6467), - [anon_sym_RPAREN] = ACTIONS(6467), - [anon_sym_LBRACE] = ACTIONS(6467), - [sym_word] = ACTIONS(6465), - [sym_placeholder] = ACTIONS(6467), - [anon_sym_PLUS] = ACTIONS(6467), - [anon_sym_DASH] = ACTIONS(6467), - [anon_sym_STAR] = ACTIONS(6467), - [anon_sym_SLASH] = ACTIONS(6467), - [anon_sym_LT] = ACTIONS(6465), - [anon_sym_GT] = ACTIONS(6465), - [anon_sym_BANG] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6465), - [anon_sym_COLON] = ACTIONS(6465), - [anon_sym_SQUOTE] = ACTIONS(6465), - [anon_sym__] = ACTIONS(6467), - [anon_sym_CARET] = ACTIONS(6467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6467), - [anon_sym_DOLLAR] = ACTIONS(6465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6467), - [anon_sym_BSLASHbegin] = ACTIONS(6465), - [anon_sym_BSLASHtitle] = ACTIONS(6465), - [anon_sym_BSLASHauthor] = ACTIONS(6465), - [anon_sym_BSLASHusepackage] = ACTIONS(6465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6465), - [anon_sym_BSLASHinclude] = ACTIONS(6465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6465), - [anon_sym_BSLASHinput] = ACTIONS(6465), - [anon_sym_BSLASHsubfile] = ACTIONS(6465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6465), - [anon_sym_BSLASHbibliography] = ACTIONS(6465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6465), - [anon_sym_BSLASHincludesvg] = ACTIONS(6465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6465), - [anon_sym_BSLASHimport] = ACTIONS(6465), - [anon_sym_BSLASHsubimport] = ACTIONS(6465), - [anon_sym_BSLASHinputfrom] = ACTIONS(6465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6465), - [anon_sym_BSLASHincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHcaption] = ACTIONS(6465), - [anon_sym_BSLASHcite] = ACTIONS(6465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCite] = ACTIONS(6465), - [anon_sym_BSLASHnocite] = ACTIONS(6465), - [anon_sym_BSLASHcitet] = ACTIONS(6465), - [anon_sym_BSLASHcitep] = ACTIONS(6465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteauthor] = ACTIONS(6465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitetitle] = ACTIONS(6465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteyear] = ACTIONS(6465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitedate] = ACTIONS(6465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteurl] = ACTIONS(6465), - [anon_sym_BSLASHfullcite] = ACTIONS(6465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6465), - [anon_sym_BSLASHcitealt] = ACTIONS(6465), - [anon_sym_BSLASHcitealp] = ACTIONS(6465), - [anon_sym_BSLASHcitetext] = ACTIONS(6465), - [anon_sym_BSLASHparencite] = ACTIONS(6465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHParencite] = ACTIONS(6465), - [anon_sym_BSLASHfootcite] = ACTIONS(6465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6465), - [anon_sym_BSLASHtextcite] = ACTIONS(6465), - [anon_sym_BSLASHTextcite] = ACTIONS(6465), - [anon_sym_BSLASHsmartcite] = ACTIONS(6465), - [anon_sym_BSLASHSmartcite] = ACTIONS(6465), - [anon_sym_BSLASHsupercite] = ACTIONS(6465), - [anon_sym_BSLASHautocite] = ACTIONS(6465), - [anon_sym_BSLASHAutocite] = ACTIONS(6465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHvolcite] = ACTIONS(6465), - [anon_sym_BSLASHVolcite] = ACTIONS(6465), - [anon_sym_BSLASHpvolcite] = ACTIONS(6465), - [anon_sym_BSLASHPvolcite] = ACTIONS(6465), - [anon_sym_BSLASHfvolcite] = ACTIONS(6465), - [anon_sym_BSLASHftvolcite] = ACTIONS(6465), - [anon_sym_BSLASHsvolcite] = ACTIONS(6465), - [anon_sym_BSLASHSvolcite] = ACTIONS(6465), - [anon_sym_BSLASHtvolcite] = ACTIONS(6465), - [anon_sym_BSLASHTvolcite] = ACTIONS(6465), - [anon_sym_BSLASHavolcite] = ACTIONS(6465), - [anon_sym_BSLASHAvolcite] = ACTIONS(6465), - [anon_sym_BSLASHnotecite] = ACTIONS(6465), - [anon_sym_BSLASHNotecite] = ACTIONS(6465), - [anon_sym_BSLASHpnotecite] = ACTIONS(6465), - [anon_sym_BSLASHPnotecite] = ACTIONS(6465), - [anon_sym_BSLASHfnotecite] = ACTIONS(6465), - [anon_sym_BSLASHlabel] = ACTIONS(6465), - [anon_sym_BSLASHref] = ACTIONS(6465), - [anon_sym_BSLASHeqref] = ACTIONS(6465), - [anon_sym_BSLASHvref] = ACTIONS(6465), - [anon_sym_BSLASHVref] = ACTIONS(6465), - [anon_sym_BSLASHautoref] = ACTIONS(6465), - [anon_sym_BSLASHpageref] = ACTIONS(6465), - [anon_sym_BSLASHcref] = ACTIONS(6465), - [anon_sym_BSLASHCref] = ACTIONS(6465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnameCref] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHlabelcref] = ACTIONS(6465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCrefrange] = ACTIONS(6465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnewlabel] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6467), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHdef] = ACTIONS(6465), - [anon_sym_BSLASHlet] = ACTIONS(6465), - [anon_sym_BSLASHleft] = ACTIONS(6465), - [anon_sym_BSLASHbig] = ACTIONS(6465), - [anon_sym_BSLASHBig] = ACTIONS(6465), - [anon_sym_BSLASHbigg] = ACTIONS(6465), - [anon_sym_BSLASHBigg] = ACTIONS(6465), - [anon_sym_BSLASHbigl] = ACTIONS(6465), - [anon_sym_BSLASHBigl] = ACTIONS(6465), - [anon_sym_BSLASHbiggl] = ACTIONS(6465), - [anon_sym_BSLASHBiggl] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6465), - [anon_sym_BSLASHgls] = ACTIONS(6465), - [anon_sym_BSLASHGls] = ACTIONS(6465), - [anon_sym_BSLASHGLS] = ACTIONS(6465), - [anon_sym_BSLASHglspl] = ACTIONS(6465), - [anon_sym_BSLASHGlspl] = ACTIONS(6465), - [anon_sym_BSLASHGLSpl] = ACTIONS(6465), - [anon_sym_BSLASHglsdisp] = ACTIONS(6465), - [anon_sym_BSLASHglslink] = ACTIONS(6465), - [anon_sym_BSLASHglstext] = ACTIONS(6465), - [anon_sym_BSLASHGlstext] = ACTIONS(6465), - [anon_sym_BSLASHGLStext] = ACTIONS(6465), - [anon_sym_BSLASHglsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6465), - [anon_sym_BSLASHglsplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSplural] = ACTIONS(6465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHglsname] = ACTIONS(6465), - [anon_sym_BSLASHGlsname] = ACTIONS(6465), - [anon_sym_BSLASHGLSname] = ACTIONS(6465), - [anon_sym_BSLASHglssymbol] = ACTIONS(6465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6465), - [anon_sym_BSLASHglsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6465), - [anon_sym_BSLASHglsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6465), - [anon_sym_BSLASHglsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6465), - [anon_sym_BSLASHglsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6465), - [anon_sym_BSLASHglsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6465), - [anon_sym_BSLASHnewacronym] = ACTIONS(6465), - [anon_sym_BSLASHacrshort] = ACTIONS(6465), - [anon_sym_BSLASHAcrshort] = ACTIONS(6465), - [anon_sym_BSLASHACRshort] = ACTIONS(6465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6465), - [anon_sym_BSLASHacrlong] = ACTIONS(6465), - [anon_sym_BSLASHAcrlong] = ACTIONS(6465), - [anon_sym_BSLASHACRlong] = ACTIONS(6465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6465), - [anon_sym_BSLASHacrfull] = ACTIONS(6465), - [anon_sym_BSLASHAcrfull] = ACTIONS(6465), - [anon_sym_BSLASHACRfull] = ACTIONS(6465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6465), - [anon_sym_BSLASHacs] = ACTIONS(6465), - [anon_sym_BSLASHAcs] = ACTIONS(6465), - [anon_sym_BSLASHacsp] = ACTIONS(6465), - [anon_sym_BSLASHAcsp] = ACTIONS(6465), - [anon_sym_BSLASHacl] = ACTIONS(6465), - [anon_sym_BSLASHAcl] = ACTIONS(6465), - [anon_sym_BSLASHaclp] = ACTIONS(6465), - [anon_sym_BSLASHAclp] = ACTIONS(6465), - [anon_sym_BSLASHacf] = ACTIONS(6465), - [anon_sym_BSLASHAcf] = ACTIONS(6465), - [anon_sym_BSLASHacfp] = ACTIONS(6465), - [anon_sym_BSLASHAcfp] = ACTIONS(6465), - [anon_sym_BSLASHac] = ACTIONS(6465), - [anon_sym_BSLASHAc] = ACTIONS(6465), - [anon_sym_BSLASHacp] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6465), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6465), - [anon_sym_BSLASHcolor] = ACTIONS(6465), - [anon_sym_BSLASHcolorbox] = ACTIONS(6465), - [anon_sym_BSLASHtextcolor] = ACTIONS(6465), - [anon_sym_BSLASHpagecolor] = ACTIONS(6465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6465), - [anon_sym_BSLASHtext] = ACTIONS(6465), - [anon_sym_BSLASHintertext] = ACTIONS(6465), - [anon_sym_shortintertext] = ACTIONS(6465), - }, - [1744] = { - [sym_command_name] = ACTIONS(6469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6471), - [anon_sym_RBRACK] = ACTIONS(6471), - [anon_sym_COMMA] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(6471), - [anon_sym_LPAREN] = ACTIONS(6471), - [anon_sym_RPAREN] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6471), - [sym_word] = ACTIONS(6469), - [sym_placeholder] = ACTIONS(6471), - [anon_sym_PLUS] = ACTIONS(6471), - [anon_sym_DASH] = ACTIONS(6471), - [anon_sym_STAR] = ACTIONS(6471), - [anon_sym_SLASH] = ACTIONS(6471), - [anon_sym_LT] = ACTIONS(6469), - [anon_sym_GT] = ACTIONS(6469), - [anon_sym_BANG] = ACTIONS(6469), - [anon_sym_PIPE] = ACTIONS(6469), - [anon_sym_COLON] = ACTIONS(6469), - [anon_sym_SQUOTE] = ACTIONS(6469), - [anon_sym__] = ACTIONS(6471), - [anon_sym_CARET] = ACTIONS(6471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6471), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6471), - [anon_sym_DOLLAR] = ACTIONS(6469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6471), - [anon_sym_BSLASHbegin] = ACTIONS(6469), - [anon_sym_BSLASHtitle] = ACTIONS(6469), - [anon_sym_BSLASHauthor] = ACTIONS(6469), - [anon_sym_BSLASHusepackage] = ACTIONS(6469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6469), - [anon_sym_BSLASHinclude] = ACTIONS(6469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6469), - [anon_sym_BSLASHinput] = ACTIONS(6469), - [anon_sym_BSLASHsubfile] = ACTIONS(6469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6469), - [anon_sym_BSLASHbibliography] = ACTIONS(6469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6469), - [anon_sym_BSLASHincludesvg] = ACTIONS(6469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6469), - [anon_sym_BSLASHimport] = ACTIONS(6469), - [anon_sym_BSLASHsubimport] = ACTIONS(6469), - [anon_sym_BSLASHinputfrom] = ACTIONS(6469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6469), - [anon_sym_BSLASHincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHcaption] = ACTIONS(6469), - [anon_sym_BSLASHcite] = ACTIONS(6469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCite] = ACTIONS(6469), - [anon_sym_BSLASHnocite] = ACTIONS(6469), - [anon_sym_BSLASHcitet] = ACTIONS(6469), - [anon_sym_BSLASHcitep] = ACTIONS(6469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteauthor] = ACTIONS(6469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitetitle] = ACTIONS(6469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteyear] = ACTIONS(6469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitedate] = ACTIONS(6469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteurl] = ACTIONS(6469), - [anon_sym_BSLASHfullcite] = ACTIONS(6469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6469), - [anon_sym_BSLASHcitealt] = ACTIONS(6469), - [anon_sym_BSLASHcitealp] = ACTIONS(6469), - [anon_sym_BSLASHcitetext] = ACTIONS(6469), - [anon_sym_BSLASHparencite] = ACTIONS(6469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHParencite] = ACTIONS(6469), - [anon_sym_BSLASHfootcite] = ACTIONS(6469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6469), - [anon_sym_BSLASHtextcite] = ACTIONS(6469), - [anon_sym_BSLASHTextcite] = ACTIONS(6469), - [anon_sym_BSLASHsmartcite] = ACTIONS(6469), - [anon_sym_BSLASHSmartcite] = ACTIONS(6469), - [anon_sym_BSLASHsupercite] = ACTIONS(6469), - [anon_sym_BSLASHautocite] = ACTIONS(6469), - [anon_sym_BSLASHAutocite] = ACTIONS(6469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHvolcite] = ACTIONS(6469), - [anon_sym_BSLASHVolcite] = ACTIONS(6469), - [anon_sym_BSLASHpvolcite] = ACTIONS(6469), - [anon_sym_BSLASHPvolcite] = ACTIONS(6469), - [anon_sym_BSLASHfvolcite] = ACTIONS(6469), - [anon_sym_BSLASHftvolcite] = ACTIONS(6469), - [anon_sym_BSLASHsvolcite] = ACTIONS(6469), - [anon_sym_BSLASHSvolcite] = ACTIONS(6469), - [anon_sym_BSLASHtvolcite] = ACTIONS(6469), - [anon_sym_BSLASHTvolcite] = ACTIONS(6469), - [anon_sym_BSLASHavolcite] = ACTIONS(6469), - [anon_sym_BSLASHAvolcite] = ACTIONS(6469), - [anon_sym_BSLASHnotecite] = ACTIONS(6469), - [anon_sym_BSLASHNotecite] = ACTIONS(6469), - [anon_sym_BSLASHpnotecite] = ACTIONS(6469), - [anon_sym_BSLASHPnotecite] = ACTIONS(6469), - [anon_sym_BSLASHfnotecite] = ACTIONS(6469), - [anon_sym_BSLASHlabel] = ACTIONS(6469), - [anon_sym_BSLASHref] = ACTIONS(6469), - [anon_sym_BSLASHeqref] = ACTIONS(6469), - [anon_sym_BSLASHvref] = ACTIONS(6469), - [anon_sym_BSLASHVref] = ACTIONS(6469), - [anon_sym_BSLASHautoref] = ACTIONS(6469), - [anon_sym_BSLASHpageref] = ACTIONS(6469), - [anon_sym_BSLASHcref] = ACTIONS(6469), - [anon_sym_BSLASHCref] = ACTIONS(6469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnameCref] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHlabelcref] = ACTIONS(6469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCrefrange] = ACTIONS(6469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnewlabel] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6471), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHdef] = ACTIONS(6469), - [anon_sym_BSLASHlet] = ACTIONS(6469), - [anon_sym_BSLASHleft] = ACTIONS(6469), - [anon_sym_BSLASHbig] = ACTIONS(6469), - [anon_sym_BSLASHBig] = ACTIONS(6469), - [anon_sym_BSLASHbigg] = ACTIONS(6469), - [anon_sym_BSLASHBigg] = ACTIONS(6469), - [anon_sym_BSLASHbigl] = ACTIONS(6469), - [anon_sym_BSLASHBigl] = ACTIONS(6469), - [anon_sym_BSLASHbiggl] = ACTIONS(6469), - [anon_sym_BSLASHBiggl] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6469), - [anon_sym_BSLASHgls] = ACTIONS(6469), - [anon_sym_BSLASHGls] = ACTIONS(6469), - [anon_sym_BSLASHGLS] = ACTIONS(6469), - [anon_sym_BSLASHglspl] = ACTIONS(6469), - [anon_sym_BSLASHGlspl] = ACTIONS(6469), - [anon_sym_BSLASHGLSpl] = ACTIONS(6469), - [anon_sym_BSLASHglsdisp] = ACTIONS(6469), - [anon_sym_BSLASHglslink] = ACTIONS(6469), - [anon_sym_BSLASHglstext] = ACTIONS(6469), - [anon_sym_BSLASHGlstext] = ACTIONS(6469), - [anon_sym_BSLASHGLStext] = ACTIONS(6469), - [anon_sym_BSLASHglsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6469), - [anon_sym_BSLASHglsplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSplural] = ACTIONS(6469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHglsname] = ACTIONS(6469), - [anon_sym_BSLASHGlsname] = ACTIONS(6469), - [anon_sym_BSLASHGLSname] = ACTIONS(6469), - [anon_sym_BSLASHglssymbol] = ACTIONS(6469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6469), - [anon_sym_BSLASHglsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6469), - [anon_sym_BSLASHglsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6469), - [anon_sym_BSLASHglsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6469), - [anon_sym_BSLASHglsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6469), - [anon_sym_BSLASHglsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6469), - [anon_sym_BSLASHnewacronym] = ACTIONS(6469), - [anon_sym_BSLASHacrshort] = ACTIONS(6469), - [anon_sym_BSLASHAcrshort] = ACTIONS(6469), - [anon_sym_BSLASHACRshort] = ACTIONS(6469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6469), - [anon_sym_BSLASHacrlong] = ACTIONS(6469), - [anon_sym_BSLASHAcrlong] = ACTIONS(6469), - [anon_sym_BSLASHACRlong] = ACTIONS(6469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6469), - [anon_sym_BSLASHacrfull] = ACTIONS(6469), - [anon_sym_BSLASHAcrfull] = ACTIONS(6469), - [anon_sym_BSLASHACRfull] = ACTIONS(6469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6469), - [anon_sym_BSLASHacs] = ACTIONS(6469), - [anon_sym_BSLASHAcs] = ACTIONS(6469), - [anon_sym_BSLASHacsp] = ACTIONS(6469), - [anon_sym_BSLASHAcsp] = ACTIONS(6469), - [anon_sym_BSLASHacl] = ACTIONS(6469), - [anon_sym_BSLASHAcl] = ACTIONS(6469), - [anon_sym_BSLASHaclp] = ACTIONS(6469), - [anon_sym_BSLASHAclp] = ACTIONS(6469), - [anon_sym_BSLASHacf] = ACTIONS(6469), - [anon_sym_BSLASHAcf] = ACTIONS(6469), - [anon_sym_BSLASHacfp] = ACTIONS(6469), - [anon_sym_BSLASHAcfp] = ACTIONS(6469), - [anon_sym_BSLASHac] = ACTIONS(6469), - [anon_sym_BSLASHAc] = ACTIONS(6469), - [anon_sym_BSLASHacp] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6469), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6469), - [anon_sym_BSLASHcolor] = ACTIONS(6469), - [anon_sym_BSLASHcolorbox] = ACTIONS(6469), - [anon_sym_BSLASHtextcolor] = ACTIONS(6469), - [anon_sym_BSLASHpagecolor] = ACTIONS(6469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6469), - [anon_sym_BSLASHtext] = ACTIONS(6469), - [anon_sym_BSLASHintertext] = ACTIONS(6469), - [anon_sym_shortintertext] = ACTIONS(6469), - }, - [1745] = { - [sym_curly_group] = STATE(1818), - [sym_brack_group_text] = STATE(2772), - [sym_command_name] = ACTIONS(5993), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_LPAREN] = ACTIONS(5995), - [anon_sym_RPAREN] = ACTIONS(5995), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5995), - [anon_sym_BSLASHand] = ACTIONS(5993), - [sym_word] = ACTIONS(5993), - [sym_placeholder] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_BANG] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_SQUOTE] = ACTIONS(5993), - [anon_sym__] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5995), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5995), - [anon_sym_DOLLAR] = ACTIONS(5993), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5995), - [anon_sym_BSLASHtitle] = ACTIONS(5993), - [anon_sym_BSLASHauthor] = ACTIONS(5993), - [anon_sym_BSLASHusepackage] = ACTIONS(5993), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5993), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5993), - [anon_sym_BSLASHinclude] = ACTIONS(5993), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5993), - [anon_sym_BSLASHinput] = ACTIONS(5993), - [anon_sym_BSLASHsubfile] = ACTIONS(5993), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5993), - [anon_sym_BSLASHbibliography] = ACTIONS(5993), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5993), - [anon_sym_BSLASHincludesvg] = ACTIONS(5993), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5993), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5993), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5993), - [anon_sym_BSLASHimport] = ACTIONS(5993), - [anon_sym_BSLASHsubimport] = ACTIONS(5993), - [anon_sym_BSLASHinputfrom] = ACTIONS(5993), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5993), - [anon_sym_BSLASHincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHcaption] = ACTIONS(5993), - [anon_sym_BSLASHcite] = ACTIONS(5993), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCite] = ACTIONS(5993), - [anon_sym_BSLASHnocite] = ACTIONS(5993), - [anon_sym_BSLASHcitet] = ACTIONS(5993), - [anon_sym_BSLASHcitep] = ACTIONS(5993), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteauthor] = ACTIONS(5993), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5993), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitetitle] = ACTIONS(5993), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteyear] = ACTIONS(5993), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitedate] = ACTIONS(5993), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteurl] = ACTIONS(5993), - [anon_sym_BSLASHfullcite] = ACTIONS(5993), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5993), - [anon_sym_BSLASHcitealt] = ACTIONS(5993), - [anon_sym_BSLASHcitealp] = ACTIONS(5993), - [anon_sym_BSLASHcitetext] = ACTIONS(5993), - [anon_sym_BSLASHparencite] = ACTIONS(5993), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHParencite] = ACTIONS(5993), - [anon_sym_BSLASHfootcite] = ACTIONS(5993), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5993), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5993), - [anon_sym_BSLASHtextcite] = ACTIONS(5993), - [anon_sym_BSLASHTextcite] = ACTIONS(5993), - [anon_sym_BSLASHsmartcite] = ACTIONS(5993), - [anon_sym_BSLASHSmartcite] = ACTIONS(5993), - [anon_sym_BSLASHsupercite] = ACTIONS(5993), - [anon_sym_BSLASHautocite] = ACTIONS(5993), - [anon_sym_BSLASHAutocite] = ACTIONS(5993), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHvolcite] = ACTIONS(5993), - [anon_sym_BSLASHVolcite] = ACTIONS(5993), - [anon_sym_BSLASHpvolcite] = ACTIONS(5993), - [anon_sym_BSLASHPvolcite] = ACTIONS(5993), - [anon_sym_BSLASHfvolcite] = ACTIONS(5993), - [anon_sym_BSLASHftvolcite] = ACTIONS(5993), - [anon_sym_BSLASHsvolcite] = ACTIONS(5993), - [anon_sym_BSLASHSvolcite] = ACTIONS(5993), - [anon_sym_BSLASHtvolcite] = ACTIONS(5993), - [anon_sym_BSLASHTvolcite] = ACTIONS(5993), - [anon_sym_BSLASHavolcite] = ACTIONS(5993), - [anon_sym_BSLASHAvolcite] = ACTIONS(5993), - [anon_sym_BSLASHnotecite] = ACTIONS(5993), - [anon_sym_BSLASHNotecite] = ACTIONS(5993), - [anon_sym_BSLASHpnotecite] = ACTIONS(5993), - [anon_sym_BSLASHPnotecite] = ACTIONS(5993), - [anon_sym_BSLASHfnotecite] = ACTIONS(5993), - [anon_sym_BSLASHlabel] = ACTIONS(5993), - [anon_sym_BSLASHref] = ACTIONS(5993), - [anon_sym_BSLASHeqref] = ACTIONS(5993), - [anon_sym_BSLASHvref] = ACTIONS(5993), - [anon_sym_BSLASHVref] = ACTIONS(5993), - [anon_sym_BSLASHautoref] = ACTIONS(5993), - [anon_sym_BSLASHpageref] = ACTIONS(5993), - [anon_sym_BSLASHcref] = ACTIONS(5993), - [anon_sym_BSLASHCref] = ACTIONS(5993), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnameCref] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHlabelcref] = ACTIONS(5993), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCrefrange] = ACTIONS(5993), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnewlabel] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5993), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5993), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5995), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHdef] = ACTIONS(5993), - [anon_sym_BSLASHlet] = ACTIONS(5993), - [anon_sym_BSLASHleft] = ACTIONS(5993), - [anon_sym_BSLASHbig] = ACTIONS(5993), - [anon_sym_BSLASHBig] = ACTIONS(5993), - [anon_sym_BSLASHbigg] = ACTIONS(5993), - [anon_sym_BSLASHBigg] = ACTIONS(5993), - [anon_sym_BSLASHbigl] = ACTIONS(5993), - [anon_sym_BSLASHBigl] = ACTIONS(5993), - [anon_sym_BSLASHbiggl] = ACTIONS(5993), - [anon_sym_BSLASHBiggl] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5993), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5993), - [anon_sym_BSLASHgls] = ACTIONS(5993), - [anon_sym_BSLASHGls] = ACTIONS(5993), - [anon_sym_BSLASHGLS] = ACTIONS(5993), - [anon_sym_BSLASHglspl] = ACTIONS(5993), - [anon_sym_BSLASHGlspl] = ACTIONS(5993), - [anon_sym_BSLASHGLSpl] = ACTIONS(5993), - [anon_sym_BSLASHglsdisp] = ACTIONS(5993), - [anon_sym_BSLASHglslink] = ACTIONS(5993), - [anon_sym_BSLASHglstext] = ACTIONS(5993), - [anon_sym_BSLASHGlstext] = ACTIONS(5993), - [anon_sym_BSLASHGLStext] = ACTIONS(5993), - [anon_sym_BSLASHglsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5993), - [anon_sym_BSLASHglsplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSplural] = ACTIONS(5993), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHglsname] = ACTIONS(5993), - [anon_sym_BSLASHGlsname] = ACTIONS(5993), - [anon_sym_BSLASHGLSname] = ACTIONS(5993), - [anon_sym_BSLASHglssymbol] = ACTIONS(5993), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5993), - [anon_sym_BSLASHglsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5993), - [anon_sym_BSLASHglsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5993), - [anon_sym_BSLASHglsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5993), - [anon_sym_BSLASHglsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5993), - [anon_sym_BSLASHglsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5993), - [anon_sym_BSLASHnewacronym] = ACTIONS(5993), - [anon_sym_BSLASHacrshort] = ACTIONS(5993), - [anon_sym_BSLASHAcrshort] = ACTIONS(5993), - [anon_sym_BSLASHACRshort] = ACTIONS(5993), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5993), - [anon_sym_BSLASHacrlong] = ACTIONS(5993), - [anon_sym_BSLASHAcrlong] = ACTIONS(5993), - [anon_sym_BSLASHACRlong] = ACTIONS(5993), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5993), - [anon_sym_BSLASHacrfull] = ACTIONS(5993), - [anon_sym_BSLASHAcrfull] = ACTIONS(5993), - [anon_sym_BSLASHACRfull] = ACTIONS(5993), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5993), - [anon_sym_BSLASHacs] = ACTIONS(5993), - [anon_sym_BSLASHAcs] = ACTIONS(5993), - [anon_sym_BSLASHacsp] = ACTIONS(5993), - [anon_sym_BSLASHAcsp] = ACTIONS(5993), - [anon_sym_BSLASHacl] = ACTIONS(5993), - [anon_sym_BSLASHAcl] = ACTIONS(5993), - [anon_sym_BSLASHaclp] = ACTIONS(5993), - [anon_sym_BSLASHAclp] = ACTIONS(5993), - [anon_sym_BSLASHacf] = ACTIONS(5993), - [anon_sym_BSLASHAcf] = ACTIONS(5993), - [anon_sym_BSLASHacfp] = ACTIONS(5993), - [anon_sym_BSLASHAcfp] = ACTIONS(5993), - [anon_sym_BSLASHac] = ACTIONS(5993), - [anon_sym_BSLASHAc] = ACTIONS(5993), - [anon_sym_BSLASHacp] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5993), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5993), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5993), - [anon_sym_BSLASHcolor] = ACTIONS(5993), - [anon_sym_BSLASHcolorbox] = ACTIONS(5993), - [anon_sym_BSLASHtextcolor] = ACTIONS(5993), - [anon_sym_BSLASHpagecolor] = ACTIONS(5993), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5993), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5993), - [anon_sym_BSLASHtext] = ACTIONS(5993), - [anon_sym_BSLASHintertext] = ACTIONS(5993), - [anon_sym_shortintertext] = ACTIONS(5993), - }, - [1746] = { - [sym_command_name] = ACTIONS(6321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(6323), - [anon_sym_RBRACK] = ACTIONS(6323), - [anon_sym_COMMA] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(6323), - [anon_sym_LPAREN] = ACTIONS(6323), - [anon_sym_RPAREN] = ACTIONS(6323), - [anon_sym_LBRACE] = ACTIONS(6323), - [anon_sym_RBRACE] = ACTIONS(6323), - [sym_word] = ACTIONS(6321), - [sym_placeholder] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6323), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_LT] = ACTIONS(6321), - [anon_sym_GT] = ACTIONS(6321), - [anon_sym_BANG] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_SQUOTE] = ACTIONS(6321), - [anon_sym__] = ACTIONS(6323), - [anon_sym_CARET] = ACTIONS(6323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6323), - [anon_sym_DOLLAR] = ACTIONS(6321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6323), - [anon_sym_BSLASHtitle] = ACTIONS(6321), - [anon_sym_BSLASHauthor] = ACTIONS(6321), - [anon_sym_BSLASHusepackage] = ACTIONS(6321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6321), - [anon_sym_BSLASHinclude] = ACTIONS(6321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6321), - [anon_sym_BSLASHinput] = ACTIONS(6321), - [anon_sym_BSLASHsubfile] = ACTIONS(6321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6321), - [anon_sym_BSLASHbibliography] = ACTIONS(6321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6321), - [anon_sym_BSLASHincludesvg] = ACTIONS(6321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6321), - [anon_sym_BSLASHimport] = ACTIONS(6321), - [anon_sym_BSLASHsubimport] = ACTIONS(6321), - [anon_sym_BSLASHinputfrom] = ACTIONS(6321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6321), - [anon_sym_BSLASHincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHcaption] = ACTIONS(6321), - [anon_sym_BSLASHcite] = ACTIONS(6321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCite] = ACTIONS(6321), - [anon_sym_BSLASHnocite] = ACTIONS(6321), - [anon_sym_BSLASHcitet] = ACTIONS(6321), - [anon_sym_BSLASHcitep] = ACTIONS(6321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteauthor] = ACTIONS(6321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitetitle] = ACTIONS(6321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteyear] = ACTIONS(6321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitedate] = ACTIONS(6321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteurl] = ACTIONS(6321), - [anon_sym_BSLASHfullcite] = ACTIONS(6321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6321), - [anon_sym_BSLASHcitealt] = ACTIONS(6321), - [anon_sym_BSLASHcitealp] = ACTIONS(6321), - [anon_sym_BSLASHcitetext] = ACTIONS(6321), - [anon_sym_BSLASHparencite] = ACTIONS(6321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHParencite] = ACTIONS(6321), - [anon_sym_BSLASHfootcite] = ACTIONS(6321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6321), - [anon_sym_BSLASHtextcite] = ACTIONS(6321), - [anon_sym_BSLASHTextcite] = ACTIONS(6321), - [anon_sym_BSLASHsmartcite] = ACTIONS(6321), - [anon_sym_BSLASHSmartcite] = ACTIONS(6321), - [anon_sym_BSLASHsupercite] = ACTIONS(6321), - [anon_sym_BSLASHautocite] = ACTIONS(6321), - [anon_sym_BSLASHAutocite] = ACTIONS(6321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHvolcite] = ACTIONS(6321), - [anon_sym_BSLASHVolcite] = ACTIONS(6321), - [anon_sym_BSLASHpvolcite] = ACTIONS(6321), - [anon_sym_BSLASHPvolcite] = ACTIONS(6321), - [anon_sym_BSLASHfvolcite] = ACTIONS(6321), - [anon_sym_BSLASHftvolcite] = ACTIONS(6321), - [anon_sym_BSLASHsvolcite] = ACTIONS(6321), - [anon_sym_BSLASHSvolcite] = ACTIONS(6321), - [anon_sym_BSLASHtvolcite] = ACTIONS(6321), - [anon_sym_BSLASHTvolcite] = ACTIONS(6321), - [anon_sym_BSLASHavolcite] = ACTIONS(6321), - [anon_sym_BSLASHAvolcite] = ACTIONS(6321), - [anon_sym_BSLASHnotecite] = ACTIONS(6321), - [anon_sym_BSLASHNotecite] = ACTIONS(6321), - [anon_sym_BSLASHpnotecite] = ACTIONS(6321), - [anon_sym_BSLASHPnotecite] = ACTIONS(6321), - [anon_sym_BSLASHfnotecite] = ACTIONS(6321), - [anon_sym_BSLASHlabel] = ACTIONS(6321), - [anon_sym_BSLASHref] = ACTIONS(6321), - [anon_sym_BSLASHeqref] = ACTIONS(6321), - [anon_sym_BSLASHvref] = ACTIONS(6321), - [anon_sym_BSLASHVref] = ACTIONS(6321), - [anon_sym_BSLASHautoref] = ACTIONS(6321), - [anon_sym_BSLASHpageref] = ACTIONS(6321), - [anon_sym_BSLASHcref] = ACTIONS(6321), - [anon_sym_BSLASHCref] = ACTIONS(6321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnameCref] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHlabelcref] = ACTIONS(6321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCrefrange] = ACTIONS(6321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnewlabel] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6323), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHdef] = ACTIONS(6321), - [anon_sym_BSLASHlet] = ACTIONS(6321), - [anon_sym_BSLASHleft] = ACTIONS(6321), - [anon_sym_BSLASHbig] = ACTIONS(6321), - [anon_sym_BSLASHBig] = ACTIONS(6321), - [anon_sym_BSLASHbigg] = ACTIONS(6321), - [anon_sym_BSLASHBigg] = ACTIONS(6321), - [anon_sym_BSLASHbigl] = ACTIONS(6321), - [anon_sym_BSLASHBigl] = ACTIONS(6321), - [anon_sym_BSLASHbiggl] = ACTIONS(6321), - [anon_sym_BSLASHBiggl] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6321), - [anon_sym_BSLASHgls] = ACTIONS(6321), - [anon_sym_BSLASHGls] = ACTIONS(6321), - [anon_sym_BSLASHGLS] = ACTIONS(6321), - [anon_sym_BSLASHglspl] = ACTIONS(6321), - [anon_sym_BSLASHGlspl] = ACTIONS(6321), - [anon_sym_BSLASHGLSpl] = ACTIONS(6321), - [anon_sym_BSLASHglsdisp] = ACTIONS(6321), - [anon_sym_BSLASHglslink] = ACTIONS(6321), - [anon_sym_BSLASHglstext] = ACTIONS(6321), - [anon_sym_BSLASHGlstext] = ACTIONS(6321), - [anon_sym_BSLASHGLStext] = ACTIONS(6321), - [anon_sym_BSLASHglsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6321), - [anon_sym_BSLASHglsplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSplural] = ACTIONS(6321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHglsname] = ACTIONS(6321), - [anon_sym_BSLASHGlsname] = ACTIONS(6321), - [anon_sym_BSLASHGLSname] = ACTIONS(6321), - [anon_sym_BSLASHglssymbol] = ACTIONS(6321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6321), - [anon_sym_BSLASHglsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6321), - [anon_sym_BSLASHglsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6321), - [anon_sym_BSLASHglsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6321), - [anon_sym_BSLASHglsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6321), - [anon_sym_BSLASHglsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6321), - [anon_sym_BSLASHnewacronym] = ACTIONS(6321), - [anon_sym_BSLASHacrshort] = ACTIONS(6321), - [anon_sym_BSLASHAcrshort] = ACTIONS(6321), - [anon_sym_BSLASHACRshort] = ACTIONS(6321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6321), - [anon_sym_BSLASHacrlong] = ACTIONS(6321), - [anon_sym_BSLASHAcrlong] = ACTIONS(6321), - [anon_sym_BSLASHACRlong] = ACTIONS(6321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6321), - [anon_sym_BSLASHacrfull] = ACTIONS(6321), - [anon_sym_BSLASHAcrfull] = ACTIONS(6321), - [anon_sym_BSLASHACRfull] = ACTIONS(6321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6321), - [anon_sym_BSLASHacs] = ACTIONS(6321), - [anon_sym_BSLASHAcs] = ACTIONS(6321), - [anon_sym_BSLASHacsp] = ACTIONS(6321), - [anon_sym_BSLASHAcsp] = ACTIONS(6321), - [anon_sym_BSLASHacl] = ACTIONS(6321), - [anon_sym_BSLASHAcl] = ACTIONS(6321), - [anon_sym_BSLASHaclp] = ACTIONS(6321), - [anon_sym_BSLASHAclp] = ACTIONS(6321), - [anon_sym_BSLASHacf] = ACTIONS(6321), - [anon_sym_BSLASHAcf] = ACTIONS(6321), - [anon_sym_BSLASHacfp] = ACTIONS(6321), - [anon_sym_BSLASHAcfp] = ACTIONS(6321), - [anon_sym_BSLASHac] = ACTIONS(6321), - [anon_sym_BSLASHAc] = ACTIONS(6321), - [anon_sym_BSLASHacp] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6321), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6321), - [anon_sym_BSLASHcolor] = ACTIONS(6321), - [anon_sym_BSLASHcolorbox] = ACTIONS(6321), - [anon_sym_BSLASHtextcolor] = ACTIONS(6321), - [anon_sym_BSLASHpagecolor] = ACTIONS(6321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6321), - [anon_sym_BSLASHtext] = ACTIONS(6321), - [anon_sym_BSLASHintertext] = ACTIONS(6321), - [anon_sym_shortintertext] = ACTIONS(6321), - }, - [1747] = { - [sym_command_name] = ACTIONS(6305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6305), - [anon_sym_LBRACK] = ACTIONS(6307), - [anon_sym_RBRACK] = ACTIONS(6307), - [anon_sym_COMMA] = ACTIONS(6307), - [anon_sym_EQ] = ACTIONS(6307), - [anon_sym_LPAREN] = ACTIONS(6307), - [anon_sym_RPAREN] = ACTIONS(6307), - [anon_sym_LBRACE] = ACTIONS(6307), - [sym_word] = ACTIONS(6305), - [sym_placeholder] = ACTIONS(6307), - [anon_sym_PLUS] = ACTIONS(6307), - [anon_sym_DASH] = ACTIONS(6307), - [anon_sym_STAR] = ACTIONS(6307), - [anon_sym_SLASH] = ACTIONS(6307), - [anon_sym_LT] = ACTIONS(6305), - [anon_sym_GT] = ACTIONS(6305), - [anon_sym_BANG] = ACTIONS(6305), - [anon_sym_PIPE] = ACTIONS(6305), - [anon_sym_COLON] = ACTIONS(6305), - [anon_sym_SQUOTE] = ACTIONS(6305), - [anon_sym__] = ACTIONS(6307), - [anon_sym_CARET] = ACTIONS(6307), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6307), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6307), - [anon_sym_DOLLAR] = ACTIONS(6305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6307), - [anon_sym_BSLASHbegin] = ACTIONS(6305), - [anon_sym_BSLASHtitle] = ACTIONS(6305), - [anon_sym_BSLASHauthor] = ACTIONS(6305), - [anon_sym_BSLASHusepackage] = ACTIONS(6305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6305), - [anon_sym_BSLASHinclude] = ACTIONS(6305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6305), - [anon_sym_BSLASHinput] = ACTIONS(6305), - [anon_sym_BSLASHsubfile] = ACTIONS(6305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6305), - [anon_sym_BSLASHbibliography] = ACTIONS(6305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6305), - [anon_sym_BSLASHincludesvg] = ACTIONS(6305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6305), - [anon_sym_BSLASHimport] = ACTIONS(6305), - [anon_sym_BSLASHsubimport] = ACTIONS(6305), - [anon_sym_BSLASHinputfrom] = ACTIONS(6305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6305), - [anon_sym_BSLASHincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6305), - [anon_sym_BSLASHcaption] = ACTIONS(6305), - [anon_sym_BSLASHcite] = ACTIONS(6305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCite] = ACTIONS(6305), - [anon_sym_BSLASHnocite] = ACTIONS(6305), - [anon_sym_BSLASHcitet] = ACTIONS(6305), - [anon_sym_BSLASHcitep] = ACTIONS(6305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteauthor] = ACTIONS(6305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitetitle] = ACTIONS(6305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteyear] = ACTIONS(6305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6307), - [anon_sym_BSLASHcitedate] = ACTIONS(6305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6307), - [anon_sym_BSLASHciteurl] = ACTIONS(6305), - [anon_sym_BSLASHfullcite] = ACTIONS(6305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6305), - [anon_sym_BSLASHcitealt] = ACTIONS(6305), - [anon_sym_BSLASHcitealp] = ACTIONS(6305), - [anon_sym_BSLASHcitetext] = ACTIONS(6305), - [anon_sym_BSLASHparencite] = ACTIONS(6305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHParencite] = ACTIONS(6305), - [anon_sym_BSLASHfootcite] = ACTIONS(6305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6305), - [anon_sym_BSLASHtextcite] = ACTIONS(6305), - [anon_sym_BSLASHTextcite] = ACTIONS(6305), - [anon_sym_BSLASHsmartcite] = ACTIONS(6305), - [anon_sym_BSLASHSmartcite] = ACTIONS(6305), - [anon_sym_BSLASHsupercite] = ACTIONS(6305), - [anon_sym_BSLASHautocite] = ACTIONS(6305), - [anon_sym_BSLASHAutocite] = ACTIONS(6305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6307), - [anon_sym_BSLASHvolcite] = ACTIONS(6305), - [anon_sym_BSLASHVolcite] = ACTIONS(6305), - [anon_sym_BSLASHpvolcite] = ACTIONS(6305), - [anon_sym_BSLASHPvolcite] = ACTIONS(6305), - [anon_sym_BSLASHfvolcite] = ACTIONS(6305), - [anon_sym_BSLASHftvolcite] = ACTIONS(6305), - [anon_sym_BSLASHsvolcite] = ACTIONS(6305), - [anon_sym_BSLASHSvolcite] = ACTIONS(6305), - [anon_sym_BSLASHtvolcite] = ACTIONS(6305), - [anon_sym_BSLASHTvolcite] = ACTIONS(6305), - [anon_sym_BSLASHavolcite] = ACTIONS(6305), - [anon_sym_BSLASHAvolcite] = ACTIONS(6305), - [anon_sym_BSLASHnotecite] = ACTIONS(6305), - [anon_sym_BSLASHNotecite] = ACTIONS(6305), - [anon_sym_BSLASHpnotecite] = ACTIONS(6305), - [anon_sym_BSLASHPnotecite] = ACTIONS(6305), - [anon_sym_BSLASHfnotecite] = ACTIONS(6305), - [anon_sym_BSLASHlabel] = ACTIONS(6305), - [anon_sym_BSLASHref] = ACTIONS(6305), - [anon_sym_BSLASHeqref] = ACTIONS(6305), - [anon_sym_BSLASHvref] = ACTIONS(6305), - [anon_sym_BSLASHVref] = ACTIONS(6305), - [anon_sym_BSLASHautoref] = ACTIONS(6305), - [anon_sym_BSLASHpageref] = ACTIONS(6305), - [anon_sym_BSLASHcref] = ACTIONS(6305), - [anon_sym_BSLASHCref] = ACTIONS(6305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnameCref] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6305), - [anon_sym_BSLASHlabelcref] = ACTIONS(6305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange] = ACTIONS(6305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHCrefrange] = ACTIONS(6305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6307), - [anon_sym_BSLASHnewlabel] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand] = ACTIONS(6305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6307), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6307), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6305), - [anon_sym_BSLASHdef] = ACTIONS(6305), - [anon_sym_BSLASHlet] = ACTIONS(6305), - [anon_sym_BSLASHleft] = ACTIONS(6305), - [anon_sym_BSLASHbig] = ACTIONS(6305), - [anon_sym_BSLASHBig] = ACTIONS(6305), - [anon_sym_BSLASHbigg] = ACTIONS(6305), - [anon_sym_BSLASHBigg] = ACTIONS(6305), - [anon_sym_BSLASHbigl] = ACTIONS(6305), - [anon_sym_BSLASHBigl] = ACTIONS(6305), - [anon_sym_BSLASHbiggl] = ACTIONS(6305), - [anon_sym_BSLASHBiggl] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6305), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6305), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6305), - [anon_sym_BSLASHgls] = ACTIONS(6305), - [anon_sym_BSLASHGls] = ACTIONS(6305), - [anon_sym_BSLASHGLS] = ACTIONS(6305), - [anon_sym_BSLASHglspl] = ACTIONS(6305), - [anon_sym_BSLASHGlspl] = ACTIONS(6305), - [anon_sym_BSLASHGLSpl] = ACTIONS(6305), - [anon_sym_BSLASHglsdisp] = ACTIONS(6305), - [anon_sym_BSLASHglslink] = ACTIONS(6305), - [anon_sym_BSLASHglstext] = ACTIONS(6305), - [anon_sym_BSLASHGlstext] = ACTIONS(6305), - [anon_sym_BSLASHGLStext] = ACTIONS(6305), - [anon_sym_BSLASHglsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6305), - [anon_sym_BSLASHglsplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSplural] = ACTIONS(6305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6305), - [anon_sym_BSLASHglsname] = ACTIONS(6305), - [anon_sym_BSLASHGlsname] = ACTIONS(6305), - [anon_sym_BSLASHGLSname] = ACTIONS(6305), - [anon_sym_BSLASHglssymbol] = ACTIONS(6305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6305), - [anon_sym_BSLASHglsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6305), - [anon_sym_BSLASHglsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6305), - [anon_sym_BSLASHglsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6305), - [anon_sym_BSLASHglsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6305), - [anon_sym_BSLASHglsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6305), - [anon_sym_BSLASHnewacronym] = ACTIONS(6305), - [anon_sym_BSLASHacrshort] = ACTIONS(6305), - [anon_sym_BSLASHAcrshort] = ACTIONS(6305), - [anon_sym_BSLASHACRshort] = ACTIONS(6305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6305), - [anon_sym_BSLASHacrlong] = ACTIONS(6305), - [anon_sym_BSLASHAcrlong] = ACTIONS(6305), - [anon_sym_BSLASHACRlong] = ACTIONS(6305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6305), - [anon_sym_BSLASHacrfull] = ACTIONS(6305), - [anon_sym_BSLASHAcrfull] = ACTIONS(6305), - [anon_sym_BSLASHACRfull] = ACTIONS(6305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6305), - [anon_sym_BSLASHacs] = ACTIONS(6305), - [anon_sym_BSLASHAcs] = ACTIONS(6305), - [anon_sym_BSLASHacsp] = ACTIONS(6305), - [anon_sym_BSLASHAcsp] = ACTIONS(6305), - [anon_sym_BSLASHacl] = ACTIONS(6305), - [anon_sym_BSLASHAcl] = ACTIONS(6305), - [anon_sym_BSLASHaclp] = ACTIONS(6305), - [anon_sym_BSLASHAclp] = ACTIONS(6305), - [anon_sym_BSLASHacf] = ACTIONS(6305), - [anon_sym_BSLASHAcf] = ACTIONS(6305), - [anon_sym_BSLASHacfp] = ACTIONS(6305), - [anon_sym_BSLASHAcfp] = ACTIONS(6305), - [anon_sym_BSLASHac] = ACTIONS(6305), - [anon_sym_BSLASHAc] = ACTIONS(6305), - [anon_sym_BSLASHacp] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6305), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6305), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6307), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6305), - [anon_sym_BSLASHcolor] = ACTIONS(6305), - [anon_sym_BSLASHcolorbox] = ACTIONS(6305), - [anon_sym_BSLASHtextcolor] = ACTIONS(6305), - [anon_sym_BSLASHpagecolor] = ACTIONS(6305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6305), - [anon_sym_BSLASHtext] = ACTIONS(6305), - [anon_sym_BSLASHintertext] = ACTIONS(6305), - [anon_sym_shortintertext] = ACTIONS(6305), - }, - [1748] = { - [sym_command_name] = ACTIONS(6441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6441), - [anon_sym_LBRACK] = ACTIONS(6443), - [anon_sym_RBRACK] = ACTIONS(6443), - [anon_sym_COMMA] = ACTIONS(6443), - [anon_sym_EQ] = ACTIONS(6443), - [anon_sym_LPAREN] = ACTIONS(6443), - [anon_sym_RPAREN] = ACTIONS(6443), - [anon_sym_LBRACE] = ACTIONS(6443), - [anon_sym_RBRACE] = ACTIONS(6443), - [sym_word] = ACTIONS(6441), - [sym_placeholder] = ACTIONS(6443), - [anon_sym_PLUS] = ACTIONS(6443), - [anon_sym_DASH] = ACTIONS(6443), - [anon_sym_STAR] = ACTIONS(6443), - [anon_sym_SLASH] = ACTIONS(6443), - [anon_sym_LT] = ACTIONS(6441), - [anon_sym_GT] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(6441), - [anon_sym_PIPE] = ACTIONS(6441), - [anon_sym_COLON] = ACTIONS(6441), - [anon_sym_SQUOTE] = ACTIONS(6441), - [anon_sym__] = ACTIONS(6443), - [anon_sym_CARET] = ACTIONS(6443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6443), - [anon_sym_DOLLAR] = ACTIONS(6441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6443), - [anon_sym_BSLASHtitle] = ACTIONS(6441), - [anon_sym_BSLASHauthor] = ACTIONS(6441), - [anon_sym_BSLASHusepackage] = ACTIONS(6441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6441), - [anon_sym_BSLASHinclude] = ACTIONS(6441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6441), - [anon_sym_BSLASHinput] = ACTIONS(6441), - [anon_sym_BSLASHsubfile] = ACTIONS(6441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6441), - [anon_sym_BSLASHbibliography] = ACTIONS(6441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6441), - [anon_sym_BSLASHincludesvg] = ACTIONS(6441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6441), - [anon_sym_BSLASHimport] = ACTIONS(6441), - [anon_sym_BSLASHsubimport] = ACTIONS(6441), - [anon_sym_BSLASHinputfrom] = ACTIONS(6441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6441), - [anon_sym_BSLASHincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHcaption] = ACTIONS(6441), - [anon_sym_BSLASHcite] = ACTIONS(6441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCite] = ACTIONS(6441), - [anon_sym_BSLASHnocite] = ACTIONS(6441), - [anon_sym_BSLASHcitet] = ACTIONS(6441), - [anon_sym_BSLASHcitep] = ACTIONS(6441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteauthor] = ACTIONS(6441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitetitle] = ACTIONS(6441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteyear] = ACTIONS(6441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitedate] = ACTIONS(6441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteurl] = ACTIONS(6441), - [anon_sym_BSLASHfullcite] = ACTIONS(6441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6441), - [anon_sym_BSLASHcitealt] = ACTIONS(6441), - [anon_sym_BSLASHcitealp] = ACTIONS(6441), - [anon_sym_BSLASHcitetext] = ACTIONS(6441), - [anon_sym_BSLASHparencite] = ACTIONS(6441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHParencite] = ACTIONS(6441), - [anon_sym_BSLASHfootcite] = ACTIONS(6441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6441), - [anon_sym_BSLASHtextcite] = ACTIONS(6441), - [anon_sym_BSLASHTextcite] = ACTIONS(6441), - [anon_sym_BSLASHsmartcite] = ACTIONS(6441), - [anon_sym_BSLASHSmartcite] = ACTIONS(6441), - [anon_sym_BSLASHsupercite] = ACTIONS(6441), - [anon_sym_BSLASHautocite] = ACTIONS(6441), - [anon_sym_BSLASHAutocite] = ACTIONS(6441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHvolcite] = ACTIONS(6441), - [anon_sym_BSLASHVolcite] = ACTIONS(6441), - [anon_sym_BSLASHpvolcite] = ACTIONS(6441), - [anon_sym_BSLASHPvolcite] = ACTIONS(6441), - [anon_sym_BSLASHfvolcite] = ACTIONS(6441), - [anon_sym_BSLASHftvolcite] = ACTIONS(6441), - [anon_sym_BSLASHsvolcite] = ACTIONS(6441), - [anon_sym_BSLASHSvolcite] = ACTIONS(6441), - [anon_sym_BSLASHtvolcite] = ACTIONS(6441), - [anon_sym_BSLASHTvolcite] = ACTIONS(6441), - [anon_sym_BSLASHavolcite] = ACTIONS(6441), - [anon_sym_BSLASHAvolcite] = ACTIONS(6441), - [anon_sym_BSLASHnotecite] = ACTIONS(6441), - [anon_sym_BSLASHNotecite] = ACTIONS(6441), - [anon_sym_BSLASHpnotecite] = ACTIONS(6441), - [anon_sym_BSLASHPnotecite] = ACTIONS(6441), - [anon_sym_BSLASHfnotecite] = ACTIONS(6441), - [anon_sym_BSLASHlabel] = ACTIONS(6441), - [anon_sym_BSLASHref] = ACTIONS(6441), - [anon_sym_BSLASHeqref] = ACTIONS(6441), - [anon_sym_BSLASHvref] = ACTIONS(6441), - [anon_sym_BSLASHVref] = ACTIONS(6441), - [anon_sym_BSLASHautoref] = ACTIONS(6441), - [anon_sym_BSLASHpageref] = ACTIONS(6441), - [anon_sym_BSLASHcref] = ACTIONS(6441), - [anon_sym_BSLASHCref] = ACTIONS(6441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnameCref] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHlabelcref] = ACTIONS(6441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCrefrange] = ACTIONS(6441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnewlabel] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6443), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHdef] = ACTIONS(6441), - [anon_sym_BSLASHlet] = ACTIONS(6441), - [anon_sym_BSLASHleft] = ACTIONS(6441), - [anon_sym_BSLASHbig] = ACTIONS(6441), - [anon_sym_BSLASHBig] = ACTIONS(6441), - [anon_sym_BSLASHbigg] = ACTIONS(6441), - [anon_sym_BSLASHBigg] = ACTIONS(6441), - [anon_sym_BSLASHbigl] = ACTIONS(6441), - [anon_sym_BSLASHBigl] = ACTIONS(6441), - [anon_sym_BSLASHbiggl] = ACTIONS(6441), - [anon_sym_BSLASHBiggl] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6441), - [anon_sym_BSLASHgls] = ACTIONS(6441), - [anon_sym_BSLASHGls] = ACTIONS(6441), - [anon_sym_BSLASHGLS] = ACTIONS(6441), - [anon_sym_BSLASHglspl] = ACTIONS(6441), - [anon_sym_BSLASHGlspl] = ACTIONS(6441), - [anon_sym_BSLASHGLSpl] = ACTIONS(6441), - [anon_sym_BSLASHglsdisp] = ACTIONS(6441), - [anon_sym_BSLASHglslink] = ACTIONS(6441), - [anon_sym_BSLASHglstext] = ACTIONS(6441), - [anon_sym_BSLASHGlstext] = ACTIONS(6441), - [anon_sym_BSLASHGLStext] = ACTIONS(6441), - [anon_sym_BSLASHglsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6441), - [anon_sym_BSLASHglsplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSplural] = ACTIONS(6441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHglsname] = ACTIONS(6441), - [anon_sym_BSLASHGlsname] = ACTIONS(6441), - [anon_sym_BSLASHGLSname] = ACTIONS(6441), - [anon_sym_BSLASHglssymbol] = ACTIONS(6441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6441), - [anon_sym_BSLASHglsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6441), - [anon_sym_BSLASHglsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6441), - [anon_sym_BSLASHglsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6441), - [anon_sym_BSLASHglsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6441), - [anon_sym_BSLASHglsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6441), - [anon_sym_BSLASHnewacronym] = ACTIONS(6441), - [anon_sym_BSLASHacrshort] = ACTIONS(6441), - [anon_sym_BSLASHAcrshort] = ACTIONS(6441), - [anon_sym_BSLASHACRshort] = ACTIONS(6441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6441), - [anon_sym_BSLASHacrlong] = ACTIONS(6441), - [anon_sym_BSLASHAcrlong] = ACTIONS(6441), - [anon_sym_BSLASHACRlong] = ACTIONS(6441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6441), - [anon_sym_BSLASHacrfull] = ACTIONS(6441), - [anon_sym_BSLASHAcrfull] = ACTIONS(6441), - [anon_sym_BSLASHACRfull] = ACTIONS(6441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6441), - [anon_sym_BSLASHacs] = ACTIONS(6441), - [anon_sym_BSLASHAcs] = ACTIONS(6441), - [anon_sym_BSLASHacsp] = ACTIONS(6441), - [anon_sym_BSLASHAcsp] = ACTIONS(6441), - [anon_sym_BSLASHacl] = ACTIONS(6441), - [anon_sym_BSLASHAcl] = ACTIONS(6441), - [anon_sym_BSLASHaclp] = ACTIONS(6441), - [anon_sym_BSLASHAclp] = ACTIONS(6441), - [anon_sym_BSLASHacf] = ACTIONS(6441), - [anon_sym_BSLASHAcf] = ACTIONS(6441), - [anon_sym_BSLASHacfp] = ACTIONS(6441), - [anon_sym_BSLASHAcfp] = ACTIONS(6441), - [anon_sym_BSLASHac] = ACTIONS(6441), - [anon_sym_BSLASHAc] = ACTIONS(6441), - [anon_sym_BSLASHacp] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6441), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6441), - [anon_sym_BSLASHcolor] = ACTIONS(6441), - [anon_sym_BSLASHcolorbox] = ACTIONS(6441), - [anon_sym_BSLASHtextcolor] = ACTIONS(6441), - [anon_sym_BSLASHpagecolor] = ACTIONS(6441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6441), - [anon_sym_BSLASHtext] = ACTIONS(6441), - [anon_sym_BSLASHintertext] = ACTIONS(6441), - [anon_sym_shortintertext] = ACTIONS(6441), - }, - [1749] = { - [sym_command_name] = ACTIONS(6129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(6131), - [anon_sym_RBRACK] = ACTIONS(6131), - [anon_sym_COMMA] = ACTIONS(6131), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_LPAREN] = ACTIONS(6131), - [anon_sym_RPAREN] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(6131), - [sym_word] = ACTIONS(6129), - [sym_placeholder] = ACTIONS(6131), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_BANG] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_SQUOTE] = ACTIONS(6129), - [anon_sym__] = ACTIONS(6131), - [anon_sym_CARET] = ACTIONS(6131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6131), - [anon_sym_DOLLAR] = ACTIONS(6129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6131), - [anon_sym_BSLASHbegin] = ACTIONS(6129), - [anon_sym_BSLASHtitle] = ACTIONS(6129), - [anon_sym_BSLASHauthor] = ACTIONS(6129), - [anon_sym_BSLASHusepackage] = ACTIONS(6129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6129), - [anon_sym_BSLASHinclude] = ACTIONS(6129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6129), - [anon_sym_BSLASHinput] = ACTIONS(6129), - [anon_sym_BSLASHsubfile] = ACTIONS(6129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6129), - [anon_sym_BSLASHbibliography] = ACTIONS(6129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6129), - [anon_sym_BSLASHincludesvg] = ACTIONS(6129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6129), - [anon_sym_BSLASHimport] = ACTIONS(6129), - [anon_sym_BSLASHsubimport] = ACTIONS(6129), - [anon_sym_BSLASHinputfrom] = ACTIONS(6129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6129), - [anon_sym_BSLASHincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHcaption] = ACTIONS(6129), - [anon_sym_BSLASHcite] = ACTIONS(6129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCite] = ACTIONS(6129), - [anon_sym_BSLASHnocite] = ACTIONS(6129), - [anon_sym_BSLASHcitet] = ACTIONS(6129), - [anon_sym_BSLASHcitep] = ACTIONS(6129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteauthor] = ACTIONS(6129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitetitle] = ACTIONS(6129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteyear] = ACTIONS(6129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitedate] = ACTIONS(6129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteurl] = ACTIONS(6129), - [anon_sym_BSLASHfullcite] = ACTIONS(6129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6129), - [anon_sym_BSLASHcitealt] = ACTIONS(6129), - [anon_sym_BSLASHcitealp] = ACTIONS(6129), - [anon_sym_BSLASHcitetext] = ACTIONS(6129), - [anon_sym_BSLASHparencite] = ACTIONS(6129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHParencite] = ACTIONS(6129), - [anon_sym_BSLASHfootcite] = ACTIONS(6129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6129), - [anon_sym_BSLASHtextcite] = ACTIONS(6129), - [anon_sym_BSLASHTextcite] = ACTIONS(6129), - [anon_sym_BSLASHsmartcite] = ACTIONS(6129), - [anon_sym_BSLASHSmartcite] = ACTIONS(6129), - [anon_sym_BSLASHsupercite] = ACTIONS(6129), - [anon_sym_BSLASHautocite] = ACTIONS(6129), - [anon_sym_BSLASHAutocite] = ACTIONS(6129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHvolcite] = ACTIONS(6129), - [anon_sym_BSLASHVolcite] = ACTIONS(6129), - [anon_sym_BSLASHpvolcite] = ACTIONS(6129), - [anon_sym_BSLASHPvolcite] = ACTIONS(6129), - [anon_sym_BSLASHfvolcite] = ACTIONS(6129), - [anon_sym_BSLASHftvolcite] = ACTIONS(6129), - [anon_sym_BSLASHsvolcite] = ACTIONS(6129), - [anon_sym_BSLASHSvolcite] = ACTIONS(6129), - [anon_sym_BSLASHtvolcite] = ACTIONS(6129), - [anon_sym_BSLASHTvolcite] = ACTIONS(6129), - [anon_sym_BSLASHavolcite] = ACTIONS(6129), - [anon_sym_BSLASHAvolcite] = ACTIONS(6129), - [anon_sym_BSLASHnotecite] = ACTIONS(6129), - [anon_sym_BSLASHNotecite] = ACTIONS(6129), - [anon_sym_BSLASHpnotecite] = ACTIONS(6129), - [anon_sym_BSLASHPnotecite] = ACTIONS(6129), - [anon_sym_BSLASHfnotecite] = ACTIONS(6129), - [anon_sym_BSLASHlabel] = ACTIONS(6129), - [anon_sym_BSLASHref] = ACTIONS(6129), - [anon_sym_BSLASHeqref] = ACTIONS(6129), - [anon_sym_BSLASHvref] = ACTIONS(6129), - [anon_sym_BSLASHVref] = ACTIONS(6129), - [anon_sym_BSLASHautoref] = ACTIONS(6129), - [anon_sym_BSLASHpageref] = ACTIONS(6129), - [anon_sym_BSLASHcref] = ACTIONS(6129), - [anon_sym_BSLASHCref] = ACTIONS(6129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnameCref] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHlabelcref] = ACTIONS(6129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCrefrange] = ACTIONS(6129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnewlabel] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6131), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHdef] = ACTIONS(6129), - [anon_sym_BSLASHlet] = ACTIONS(6129), - [anon_sym_BSLASHleft] = ACTIONS(6129), - [anon_sym_BSLASHbig] = ACTIONS(6129), - [anon_sym_BSLASHBig] = ACTIONS(6129), - [anon_sym_BSLASHbigg] = ACTIONS(6129), - [anon_sym_BSLASHBigg] = ACTIONS(6129), - [anon_sym_BSLASHbigl] = ACTIONS(6129), - [anon_sym_BSLASHBigl] = ACTIONS(6129), - [anon_sym_BSLASHbiggl] = ACTIONS(6129), - [anon_sym_BSLASHBiggl] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6129), - [anon_sym_BSLASHgls] = ACTIONS(6129), - [anon_sym_BSLASHGls] = ACTIONS(6129), - [anon_sym_BSLASHGLS] = ACTIONS(6129), - [anon_sym_BSLASHglspl] = ACTIONS(6129), - [anon_sym_BSLASHGlspl] = ACTIONS(6129), - [anon_sym_BSLASHGLSpl] = ACTIONS(6129), - [anon_sym_BSLASHglsdisp] = ACTIONS(6129), - [anon_sym_BSLASHglslink] = ACTIONS(6129), - [anon_sym_BSLASHglstext] = ACTIONS(6129), - [anon_sym_BSLASHGlstext] = ACTIONS(6129), - [anon_sym_BSLASHGLStext] = ACTIONS(6129), - [anon_sym_BSLASHglsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6129), - [anon_sym_BSLASHglsplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSplural] = ACTIONS(6129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHglsname] = ACTIONS(6129), - [anon_sym_BSLASHGlsname] = ACTIONS(6129), - [anon_sym_BSLASHGLSname] = ACTIONS(6129), - [anon_sym_BSLASHglssymbol] = ACTIONS(6129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6129), - [anon_sym_BSLASHglsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6129), - [anon_sym_BSLASHglsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6129), - [anon_sym_BSLASHglsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6129), - [anon_sym_BSLASHglsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6129), - [anon_sym_BSLASHglsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6129), - [anon_sym_BSLASHnewacronym] = ACTIONS(6129), - [anon_sym_BSLASHacrshort] = ACTIONS(6129), - [anon_sym_BSLASHAcrshort] = ACTIONS(6129), - [anon_sym_BSLASHACRshort] = ACTIONS(6129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6129), - [anon_sym_BSLASHacrlong] = ACTIONS(6129), - [anon_sym_BSLASHAcrlong] = ACTIONS(6129), - [anon_sym_BSLASHACRlong] = ACTIONS(6129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6129), - [anon_sym_BSLASHacrfull] = ACTIONS(6129), - [anon_sym_BSLASHAcrfull] = ACTIONS(6129), - [anon_sym_BSLASHACRfull] = ACTIONS(6129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6129), - [anon_sym_BSLASHacs] = ACTIONS(6129), - [anon_sym_BSLASHAcs] = ACTIONS(6129), - [anon_sym_BSLASHacsp] = ACTIONS(6129), - [anon_sym_BSLASHAcsp] = ACTIONS(6129), - [anon_sym_BSLASHacl] = ACTIONS(6129), - [anon_sym_BSLASHAcl] = ACTIONS(6129), - [anon_sym_BSLASHaclp] = ACTIONS(6129), - [anon_sym_BSLASHAclp] = ACTIONS(6129), - [anon_sym_BSLASHacf] = ACTIONS(6129), - [anon_sym_BSLASHAcf] = ACTIONS(6129), - [anon_sym_BSLASHacfp] = ACTIONS(6129), - [anon_sym_BSLASHAcfp] = ACTIONS(6129), - [anon_sym_BSLASHac] = ACTIONS(6129), - [anon_sym_BSLASHAc] = ACTIONS(6129), - [anon_sym_BSLASHacp] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6129), - [anon_sym_BSLASHcolor] = ACTIONS(6129), - [anon_sym_BSLASHcolorbox] = ACTIONS(6129), - [anon_sym_BSLASHtextcolor] = ACTIONS(6129), - [anon_sym_BSLASHpagecolor] = ACTIONS(6129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6129), - [anon_sym_BSLASHtext] = ACTIONS(6129), - [anon_sym_BSLASHintertext] = ACTIONS(6129), - [anon_sym_shortintertext] = ACTIONS(6129), - }, - [1750] = { - [sym_command_name] = ACTIONS(6133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6133), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_EQ] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_LBRACE] = ACTIONS(6135), - [sym_word] = ACTIONS(6133), - [sym_placeholder] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6135), - [anon_sym_DASH] = ACTIONS(6135), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6133), - [anon_sym_GT] = ACTIONS(6133), - [anon_sym_BANG] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6133), - [anon_sym_COLON] = ACTIONS(6133), - [anon_sym_SQUOTE] = ACTIONS(6133), - [anon_sym__] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6135), - [anon_sym_DOLLAR] = ACTIONS(6133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6135), - [anon_sym_BSLASHbegin] = ACTIONS(6133), - [anon_sym_BSLASHtitle] = ACTIONS(6133), - [anon_sym_BSLASHauthor] = ACTIONS(6133), - [anon_sym_BSLASHusepackage] = ACTIONS(6133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6133), - [anon_sym_BSLASHinclude] = ACTIONS(6133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6133), - [anon_sym_BSLASHinput] = ACTIONS(6133), - [anon_sym_BSLASHsubfile] = ACTIONS(6133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6133), - [anon_sym_BSLASHbibliography] = ACTIONS(6133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6133), - [anon_sym_BSLASHincludesvg] = ACTIONS(6133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6133), - [anon_sym_BSLASHimport] = ACTIONS(6133), - [anon_sym_BSLASHsubimport] = ACTIONS(6133), - [anon_sym_BSLASHinputfrom] = ACTIONS(6133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6133), - [anon_sym_BSLASHincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHcaption] = ACTIONS(6133), - [anon_sym_BSLASHcite] = ACTIONS(6133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCite] = ACTIONS(6133), - [anon_sym_BSLASHnocite] = ACTIONS(6133), - [anon_sym_BSLASHcitet] = ACTIONS(6133), - [anon_sym_BSLASHcitep] = ACTIONS(6133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteauthor] = ACTIONS(6133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitetitle] = ACTIONS(6133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteyear] = ACTIONS(6133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitedate] = ACTIONS(6133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteurl] = ACTIONS(6133), - [anon_sym_BSLASHfullcite] = ACTIONS(6133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6133), - [anon_sym_BSLASHcitealt] = ACTIONS(6133), - [anon_sym_BSLASHcitealp] = ACTIONS(6133), - [anon_sym_BSLASHcitetext] = ACTIONS(6133), - [anon_sym_BSLASHparencite] = ACTIONS(6133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHParencite] = ACTIONS(6133), - [anon_sym_BSLASHfootcite] = ACTIONS(6133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6133), - [anon_sym_BSLASHtextcite] = ACTIONS(6133), - [anon_sym_BSLASHTextcite] = ACTIONS(6133), - [anon_sym_BSLASHsmartcite] = ACTIONS(6133), - [anon_sym_BSLASHSmartcite] = ACTIONS(6133), - [anon_sym_BSLASHsupercite] = ACTIONS(6133), - [anon_sym_BSLASHautocite] = ACTIONS(6133), - [anon_sym_BSLASHAutocite] = ACTIONS(6133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHvolcite] = ACTIONS(6133), - [anon_sym_BSLASHVolcite] = ACTIONS(6133), - [anon_sym_BSLASHpvolcite] = ACTIONS(6133), - [anon_sym_BSLASHPvolcite] = ACTIONS(6133), - [anon_sym_BSLASHfvolcite] = ACTIONS(6133), - [anon_sym_BSLASHftvolcite] = ACTIONS(6133), - [anon_sym_BSLASHsvolcite] = ACTIONS(6133), - [anon_sym_BSLASHSvolcite] = ACTIONS(6133), - [anon_sym_BSLASHtvolcite] = ACTIONS(6133), - [anon_sym_BSLASHTvolcite] = ACTIONS(6133), - [anon_sym_BSLASHavolcite] = ACTIONS(6133), - [anon_sym_BSLASHAvolcite] = ACTIONS(6133), - [anon_sym_BSLASHnotecite] = ACTIONS(6133), - [anon_sym_BSLASHNotecite] = ACTIONS(6133), - [anon_sym_BSLASHpnotecite] = ACTIONS(6133), - [anon_sym_BSLASHPnotecite] = ACTIONS(6133), - [anon_sym_BSLASHfnotecite] = ACTIONS(6133), - [anon_sym_BSLASHlabel] = ACTIONS(6133), - [anon_sym_BSLASHref] = ACTIONS(6133), - [anon_sym_BSLASHeqref] = ACTIONS(6133), - [anon_sym_BSLASHvref] = ACTIONS(6133), - [anon_sym_BSLASHVref] = ACTIONS(6133), - [anon_sym_BSLASHautoref] = ACTIONS(6133), - [anon_sym_BSLASHpageref] = ACTIONS(6133), - [anon_sym_BSLASHcref] = ACTIONS(6133), - [anon_sym_BSLASHCref] = ACTIONS(6133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnameCref] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHlabelcref] = ACTIONS(6133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCrefrange] = ACTIONS(6133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnewlabel] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6135), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHdef] = ACTIONS(6133), - [anon_sym_BSLASHlet] = ACTIONS(6133), - [anon_sym_BSLASHleft] = ACTIONS(6133), - [anon_sym_BSLASHbig] = ACTIONS(6133), - [anon_sym_BSLASHBig] = ACTIONS(6133), - [anon_sym_BSLASHbigg] = ACTIONS(6133), - [anon_sym_BSLASHBigg] = ACTIONS(6133), - [anon_sym_BSLASHbigl] = ACTIONS(6133), - [anon_sym_BSLASHBigl] = ACTIONS(6133), - [anon_sym_BSLASHbiggl] = ACTIONS(6133), - [anon_sym_BSLASHBiggl] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6133), - [anon_sym_BSLASHgls] = ACTIONS(6133), - [anon_sym_BSLASHGls] = ACTIONS(6133), - [anon_sym_BSLASHGLS] = ACTIONS(6133), - [anon_sym_BSLASHglspl] = ACTIONS(6133), - [anon_sym_BSLASHGlspl] = ACTIONS(6133), - [anon_sym_BSLASHGLSpl] = ACTIONS(6133), - [anon_sym_BSLASHglsdisp] = ACTIONS(6133), - [anon_sym_BSLASHglslink] = ACTIONS(6133), - [anon_sym_BSLASHglstext] = ACTIONS(6133), - [anon_sym_BSLASHGlstext] = ACTIONS(6133), - [anon_sym_BSLASHGLStext] = ACTIONS(6133), - [anon_sym_BSLASHglsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6133), - [anon_sym_BSLASHglsplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSplural] = ACTIONS(6133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHglsname] = ACTIONS(6133), - [anon_sym_BSLASHGlsname] = ACTIONS(6133), - [anon_sym_BSLASHGLSname] = ACTIONS(6133), - [anon_sym_BSLASHglssymbol] = ACTIONS(6133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6133), - [anon_sym_BSLASHglsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6133), - [anon_sym_BSLASHglsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6133), - [anon_sym_BSLASHglsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6133), - [anon_sym_BSLASHglsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6133), - [anon_sym_BSLASHglsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6133), - [anon_sym_BSLASHnewacronym] = ACTIONS(6133), - [anon_sym_BSLASHacrshort] = ACTIONS(6133), - [anon_sym_BSLASHAcrshort] = ACTIONS(6133), - [anon_sym_BSLASHACRshort] = ACTIONS(6133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6133), - [anon_sym_BSLASHacrlong] = ACTIONS(6133), - [anon_sym_BSLASHAcrlong] = ACTIONS(6133), - [anon_sym_BSLASHACRlong] = ACTIONS(6133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6133), - [anon_sym_BSLASHacrfull] = ACTIONS(6133), - [anon_sym_BSLASHAcrfull] = ACTIONS(6133), - [anon_sym_BSLASHACRfull] = ACTIONS(6133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6133), - [anon_sym_BSLASHacs] = ACTIONS(6133), - [anon_sym_BSLASHAcs] = ACTIONS(6133), - [anon_sym_BSLASHacsp] = ACTIONS(6133), - [anon_sym_BSLASHAcsp] = ACTIONS(6133), - [anon_sym_BSLASHacl] = ACTIONS(6133), - [anon_sym_BSLASHAcl] = ACTIONS(6133), - [anon_sym_BSLASHaclp] = ACTIONS(6133), - [anon_sym_BSLASHAclp] = ACTIONS(6133), - [anon_sym_BSLASHacf] = ACTIONS(6133), - [anon_sym_BSLASHAcf] = ACTIONS(6133), - [anon_sym_BSLASHacfp] = ACTIONS(6133), - [anon_sym_BSLASHAcfp] = ACTIONS(6133), - [anon_sym_BSLASHac] = ACTIONS(6133), - [anon_sym_BSLASHAc] = ACTIONS(6133), - [anon_sym_BSLASHacp] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6133), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6133), - [anon_sym_BSLASHcolor] = ACTIONS(6133), - [anon_sym_BSLASHcolorbox] = ACTIONS(6133), - [anon_sym_BSLASHtextcolor] = ACTIONS(6133), - [anon_sym_BSLASHpagecolor] = ACTIONS(6133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6133), - [anon_sym_BSLASHtext] = ACTIONS(6133), - [anon_sym_BSLASHintertext] = ACTIONS(6133), - [anon_sym_shortintertext] = ACTIONS(6133), - }, - [1751] = { - [sym_command_name] = ACTIONS(6445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6445), - [anon_sym_LBRACK] = ACTIONS(6447), - [anon_sym_RBRACK] = ACTIONS(6447), - [anon_sym_COMMA] = ACTIONS(6447), - [anon_sym_EQ] = ACTIONS(6447), - [anon_sym_LPAREN] = ACTIONS(6447), - [anon_sym_RPAREN] = ACTIONS(6447), - [anon_sym_LBRACE] = ACTIONS(6447), - [anon_sym_RBRACE] = ACTIONS(6447), - [sym_word] = ACTIONS(6445), - [sym_placeholder] = ACTIONS(6447), - [anon_sym_PLUS] = ACTIONS(6447), - [anon_sym_DASH] = ACTIONS(6447), - [anon_sym_STAR] = ACTIONS(6447), - [anon_sym_SLASH] = ACTIONS(6447), - [anon_sym_LT] = ACTIONS(6445), - [anon_sym_GT] = ACTIONS(6445), - [anon_sym_BANG] = ACTIONS(6445), - [anon_sym_PIPE] = ACTIONS(6445), - [anon_sym_COLON] = ACTIONS(6445), - [anon_sym_SQUOTE] = ACTIONS(6445), - [anon_sym__] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6447), - [anon_sym_DOLLAR] = ACTIONS(6445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6447), - [anon_sym_BSLASHtitle] = ACTIONS(6445), - [anon_sym_BSLASHauthor] = ACTIONS(6445), - [anon_sym_BSLASHusepackage] = ACTIONS(6445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6445), - [anon_sym_BSLASHinclude] = ACTIONS(6445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6445), - [anon_sym_BSLASHinput] = ACTIONS(6445), - [anon_sym_BSLASHsubfile] = ACTIONS(6445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6445), - [anon_sym_BSLASHbibliography] = ACTIONS(6445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6445), - [anon_sym_BSLASHincludesvg] = ACTIONS(6445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6445), - [anon_sym_BSLASHimport] = ACTIONS(6445), - [anon_sym_BSLASHsubimport] = ACTIONS(6445), - [anon_sym_BSLASHinputfrom] = ACTIONS(6445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6445), - [anon_sym_BSLASHincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHcaption] = ACTIONS(6445), - [anon_sym_BSLASHcite] = ACTIONS(6445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCite] = ACTIONS(6445), - [anon_sym_BSLASHnocite] = ACTIONS(6445), - [anon_sym_BSLASHcitet] = ACTIONS(6445), - [anon_sym_BSLASHcitep] = ACTIONS(6445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteauthor] = ACTIONS(6445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitetitle] = ACTIONS(6445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteyear] = ACTIONS(6445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitedate] = ACTIONS(6445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteurl] = ACTIONS(6445), - [anon_sym_BSLASHfullcite] = ACTIONS(6445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6445), - [anon_sym_BSLASHcitealt] = ACTIONS(6445), - [anon_sym_BSLASHcitealp] = ACTIONS(6445), - [anon_sym_BSLASHcitetext] = ACTIONS(6445), - [anon_sym_BSLASHparencite] = ACTIONS(6445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHParencite] = ACTIONS(6445), - [anon_sym_BSLASHfootcite] = ACTIONS(6445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6445), - [anon_sym_BSLASHtextcite] = ACTIONS(6445), - [anon_sym_BSLASHTextcite] = ACTIONS(6445), - [anon_sym_BSLASHsmartcite] = ACTIONS(6445), - [anon_sym_BSLASHSmartcite] = ACTIONS(6445), - [anon_sym_BSLASHsupercite] = ACTIONS(6445), - [anon_sym_BSLASHautocite] = ACTIONS(6445), - [anon_sym_BSLASHAutocite] = ACTIONS(6445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHvolcite] = ACTIONS(6445), - [anon_sym_BSLASHVolcite] = ACTIONS(6445), - [anon_sym_BSLASHpvolcite] = ACTIONS(6445), - [anon_sym_BSLASHPvolcite] = ACTIONS(6445), - [anon_sym_BSLASHfvolcite] = ACTIONS(6445), - [anon_sym_BSLASHftvolcite] = ACTIONS(6445), - [anon_sym_BSLASHsvolcite] = ACTIONS(6445), - [anon_sym_BSLASHSvolcite] = ACTIONS(6445), - [anon_sym_BSLASHtvolcite] = ACTIONS(6445), - [anon_sym_BSLASHTvolcite] = ACTIONS(6445), - [anon_sym_BSLASHavolcite] = ACTIONS(6445), - [anon_sym_BSLASHAvolcite] = ACTIONS(6445), - [anon_sym_BSLASHnotecite] = ACTIONS(6445), - [anon_sym_BSLASHNotecite] = ACTIONS(6445), - [anon_sym_BSLASHpnotecite] = ACTIONS(6445), - [anon_sym_BSLASHPnotecite] = ACTIONS(6445), - [anon_sym_BSLASHfnotecite] = ACTIONS(6445), - [anon_sym_BSLASHlabel] = ACTIONS(6445), - [anon_sym_BSLASHref] = ACTIONS(6445), - [anon_sym_BSLASHeqref] = ACTIONS(6445), - [anon_sym_BSLASHvref] = ACTIONS(6445), - [anon_sym_BSLASHVref] = ACTIONS(6445), - [anon_sym_BSLASHautoref] = ACTIONS(6445), - [anon_sym_BSLASHpageref] = ACTIONS(6445), - [anon_sym_BSLASHcref] = ACTIONS(6445), - [anon_sym_BSLASHCref] = ACTIONS(6445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnameCref] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHlabelcref] = ACTIONS(6445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCrefrange] = ACTIONS(6445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnewlabel] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6447), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHdef] = ACTIONS(6445), - [anon_sym_BSLASHlet] = ACTIONS(6445), - [anon_sym_BSLASHleft] = ACTIONS(6445), - [anon_sym_BSLASHbig] = ACTIONS(6445), - [anon_sym_BSLASHBig] = ACTIONS(6445), - [anon_sym_BSLASHbigg] = ACTIONS(6445), - [anon_sym_BSLASHBigg] = ACTIONS(6445), - [anon_sym_BSLASHbigl] = ACTIONS(6445), - [anon_sym_BSLASHBigl] = ACTIONS(6445), - [anon_sym_BSLASHbiggl] = ACTIONS(6445), - [anon_sym_BSLASHBiggl] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6445), - [anon_sym_BSLASHgls] = ACTIONS(6445), - [anon_sym_BSLASHGls] = ACTIONS(6445), - [anon_sym_BSLASHGLS] = ACTIONS(6445), - [anon_sym_BSLASHglspl] = ACTIONS(6445), - [anon_sym_BSLASHGlspl] = ACTIONS(6445), - [anon_sym_BSLASHGLSpl] = ACTIONS(6445), - [anon_sym_BSLASHglsdisp] = ACTIONS(6445), - [anon_sym_BSLASHglslink] = ACTIONS(6445), - [anon_sym_BSLASHglstext] = ACTIONS(6445), - [anon_sym_BSLASHGlstext] = ACTIONS(6445), - [anon_sym_BSLASHGLStext] = ACTIONS(6445), - [anon_sym_BSLASHglsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6445), - [anon_sym_BSLASHglsplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSplural] = ACTIONS(6445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHglsname] = ACTIONS(6445), - [anon_sym_BSLASHGlsname] = ACTIONS(6445), - [anon_sym_BSLASHGLSname] = ACTIONS(6445), - [anon_sym_BSLASHglssymbol] = ACTIONS(6445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6445), - [anon_sym_BSLASHglsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6445), - [anon_sym_BSLASHglsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6445), - [anon_sym_BSLASHglsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6445), - [anon_sym_BSLASHglsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6445), - [anon_sym_BSLASHglsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6445), - [anon_sym_BSLASHnewacronym] = ACTIONS(6445), - [anon_sym_BSLASHacrshort] = ACTIONS(6445), - [anon_sym_BSLASHAcrshort] = ACTIONS(6445), - [anon_sym_BSLASHACRshort] = ACTIONS(6445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6445), - [anon_sym_BSLASHacrlong] = ACTIONS(6445), - [anon_sym_BSLASHAcrlong] = ACTIONS(6445), - [anon_sym_BSLASHACRlong] = ACTIONS(6445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6445), - [anon_sym_BSLASHacrfull] = ACTIONS(6445), - [anon_sym_BSLASHAcrfull] = ACTIONS(6445), - [anon_sym_BSLASHACRfull] = ACTIONS(6445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6445), - [anon_sym_BSLASHacs] = ACTIONS(6445), - [anon_sym_BSLASHAcs] = ACTIONS(6445), - [anon_sym_BSLASHacsp] = ACTIONS(6445), - [anon_sym_BSLASHAcsp] = ACTIONS(6445), - [anon_sym_BSLASHacl] = ACTIONS(6445), - [anon_sym_BSLASHAcl] = ACTIONS(6445), - [anon_sym_BSLASHaclp] = ACTIONS(6445), - [anon_sym_BSLASHAclp] = ACTIONS(6445), - [anon_sym_BSLASHacf] = ACTIONS(6445), - [anon_sym_BSLASHAcf] = ACTIONS(6445), - [anon_sym_BSLASHacfp] = ACTIONS(6445), - [anon_sym_BSLASHAcfp] = ACTIONS(6445), - [anon_sym_BSLASHac] = ACTIONS(6445), - [anon_sym_BSLASHAc] = ACTIONS(6445), - [anon_sym_BSLASHacp] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6445), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6445), - [anon_sym_BSLASHcolor] = ACTIONS(6445), - [anon_sym_BSLASHcolorbox] = ACTIONS(6445), - [anon_sym_BSLASHtextcolor] = ACTIONS(6445), - [anon_sym_BSLASHpagecolor] = ACTIONS(6445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6445), - [anon_sym_BSLASHtext] = ACTIONS(6445), - [anon_sym_BSLASHintertext] = ACTIONS(6445), - [anon_sym_shortintertext] = ACTIONS(6445), - }, - [1752] = { - [sym_command_name] = ACTIONS(6309), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6309), - [anon_sym_LBRACK] = ACTIONS(6311), - [anon_sym_RBRACK] = ACTIONS(6311), - [anon_sym_COMMA] = ACTIONS(6311), - [anon_sym_EQ] = ACTIONS(6311), - [anon_sym_LPAREN] = ACTIONS(6311), - [anon_sym_RPAREN] = ACTIONS(6311), - [anon_sym_LBRACE] = ACTIONS(6311), - [sym_word] = ACTIONS(6309), - [sym_placeholder] = ACTIONS(6311), - [anon_sym_PLUS] = ACTIONS(6311), - [anon_sym_DASH] = ACTIONS(6311), - [anon_sym_STAR] = ACTIONS(6311), - [anon_sym_SLASH] = ACTIONS(6311), - [anon_sym_LT] = ACTIONS(6309), - [anon_sym_GT] = ACTIONS(6309), - [anon_sym_BANG] = ACTIONS(6309), - [anon_sym_PIPE] = ACTIONS(6309), - [anon_sym_COLON] = ACTIONS(6309), - [anon_sym_SQUOTE] = ACTIONS(6309), - [anon_sym__] = ACTIONS(6311), - [anon_sym_CARET] = ACTIONS(6311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6311), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6311), - [anon_sym_DOLLAR] = ACTIONS(6309), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6311), - [anon_sym_BSLASHbegin] = ACTIONS(6309), - [anon_sym_BSLASHtitle] = ACTIONS(6309), - [anon_sym_BSLASHauthor] = ACTIONS(6309), - [anon_sym_BSLASHusepackage] = ACTIONS(6309), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6309), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6309), - [anon_sym_BSLASHinclude] = ACTIONS(6309), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6309), - [anon_sym_BSLASHinput] = ACTIONS(6309), - [anon_sym_BSLASHsubfile] = ACTIONS(6309), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6309), - [anon_sym_BSLASHbibliography] = ACTIONS(6309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6309), - [anon_sym_BSLASHincludesvg] = ACTIONS(6309), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6309), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6309), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6309), - [anon_sym_BSLASHimport] = ACTIONS(6309), - [anon_sym_BSLASHsubimport] = ACTIONS(6309), - [anon_sym_BSLASHinputfrom] = ACTIONS(6309), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6309), - [anon_sym_BSLASHincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6309), - [anon_sym_BSLASHcaption] = ACTIONS(6309), - [anon_sym_BSLASHcite] = ACTIONS(6309), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCite] = ACTIONS(6309), - [anon_sym_BSLASHnocite] = ACTIONS(6309), - [anon_sym_BSLASHcitet] = ACTIONS(6309), - [anon_sym_BSLASHcitep] = ACTIONS(6309), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteauthor] = ACTIONS(6309), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6309), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitetitle] = ACTIONS(6309), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteyear] = ACTIONS(6309), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6311), - [anon_sym_BSLASHcitedate] = ACTIONS(6309), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6311), - [anon_sym_BSLASHciteurl] = ACTIONS(6309), - [anon_sym_BSLASHfullcite] = ACTIONS(6309), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6309), - [anon_sym_BSLASHcitealt] = ACTIONS(6309), - [anon_sym_BSLASHcitealp] = ACTIONS(6309), - [anon_sym_BSLASHcitetext] = ACTIONS(6309), - [anon_sym_BSLASHparencite] = ACTIONS(6309), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHParencite] = ACTIONS(6309), - [anon_sym_BSLASHfootcite] = ACTIONS(6309), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6309), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6309), - [anon_sym_BSLASHtextcite] = ACTIONS(6309), - [anon_sym_BSLASHTextcite] = ACTIONS(6309), - [anon_sym_BSLASHsmartcite] = ACTIONS(6309), - [anon_sym_BSLASHSmartcite] = ACTIONS(6309), - [anon_sym_BSLASHsupercite] = ACTIONS(6309), - [anon_sym_BSLASHautocite] = ACTIONS(6309), - [anon_sym_BSLASHAutocite] = ACTIONS(6309), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6311), - [anon_sym_BSLASHvolcite] = ACTIONS(6309), - [anon_sym_BSLASHVolcite] = ACTIONS(6309), - [anon_sym_BSLASHpvolcite] = ACTIONS(6309), - [anon_sym_BSLASHPvolcite] = ACTIONS(6309), - [anon_sym_BSLASHfvolcite] = ACTIONS(6309), - [anon_sym_BSLASHftvolcite] = ACTIONS(6309), - [anon_sym_BSLASHsvolcite] = ACTIONS(6309), - [anon_sym_BSLASHSvolcite] = ACTIONS(6309), - [anon_sym_BSLASHtvolcite] = ACTIONS(6309), - [anon_sym_BSLASHTvolcite] = ACTIONS(6309), - [anon_sym_BSLASHavolcite] = ACTIONS(6309), - [anon_sym_BSLASHAvolcite] = ACTIONS(6309), - [anon_sym_BSLASHnotecite] = ACTIONS(6309), - [anon_sym_BSLASHNotecite] = ACTIONS(6309), - [anon_sym_BSLASHpnotecite] = ACTIONS(6309), - [anon_sym_BSLASHPnotecite] = ACTIONS(6309), - [anon_sym_BSLASHfnotecite] = ACTIONS(6309), - [anon_sym_BSLASHlabel] = ACTIONS(6309), - [anon_sym_BSLASHref] = ACTIONS(6309), - [anon_sym_BSLASHeqref] = ACTIONS(6309), - [anon_sym_BSLASHvref] = ACTIONS(6309), - [anon_sym_BSLASHVref] = ACTIONS(6309), - [anon_sym_BSLASHautoref] = ACTIONS(6309), - [anon_sym_BSLASHpageref] = ACTIONS(6309), - [anon_sym_BSLASHcref] = ACTIONS(6309), - [anon_sym_BSLASHCref] = ACTIONS(6309), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnameCref] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6309), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6309), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6309), - [anon_sym_BSLASHlabelcref] = ACTIONS(6309), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange] = ACTIONS(6309), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHCrefrange] = ACTIONS(6309), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6311), - [anon_sym_BSLASHnewlabel] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand] = ACTIONS(6309), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6309), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6311), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6309), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6311), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6309), - [anon_sym_BSLASHdef] = ACTIONS(6309), - [anon_sym_BSLASHlet] = ACTIONS(6309), - [anon_sym_BSLASHleft] = ACTIONS(6309), - [anon_sym_BSLASHbig] = ACTIONS(6309), - [anon_sym_BSLASHBig] = ACTIONS(6309), - [anon_sym_BSLASHbigg] = ACTIONS(6309), - [anon_sym_BSLASHBigg] = ACTIONS(6309), - [anon_sym_BSLASHbigl] = ACTIONS(6309), - [anon_sym_BSLASHBigl] = ACTIONS(6309), - [anon_sym_BSLASHbiggl] = ACTIONS(6309), - [anon_sym_BSLASHBiggl] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6309), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6309), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6309), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6309), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6309), - [anon_sym_BSLASHgls] = ACTIONS(6309), - [anon_sym_BSLASHGls] = ACTIONS(6309), - [anon_sym_BSLASHGLS] = ACTIONS(6309), - [anon_sym_BSLASHglspl] = ACTIONS(6309), - [anon_sym_BSLASHGlspl] = ACTIONS(6309), - [anon_sym_BSLASHGLSpl] = ACTIONS(6309), - [anon_sym_BSLASHglsdisp] = ACTIONS(6309), - [anon_sym_BSLASHglslink] = ACTIONS(6309), - [anon_sym_BSLASHglstext] = ACTIONS(6309), - [anon_sym_BSLASHGlstext] = ACTIONS(6309), - [anon_sym_BSLASHGLStext] = ACTIONS(6309), - [anon_sym_BSLASHglsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6309), - [anon_sym_BSLASHglsplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSplural] = ACTIONS(6309), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6309), - [anon_sym_BSLASHglsname] = ACTIONS(6309), - [anon_sym_BSLASHGlsname] = ACTIONS(6309), - [anon_sym_BSLASHGLSname] = ACTIONS(6309), - [anon_sym_BSLASHglssymbol] = ACTIONS(6309), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6309), - [anon_sym_BSLASHglsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6309), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6309), - [anon_sym_BSLASHglsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6309), - [anon_sym_BSLASHglsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6309), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6309), - [anon_sym_BSLASHglsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6309), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6309), - [anon_sym_BSLASHglsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6309), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6309), - [anon_sym_BSLASHnewacronym] = ACTIONS(6309), - [anon_sym_BSLASHacrshort] = ACTIONS(6309), - [anon_sym_BSLASHAcrshort] = ACTIONS(6309), - [anon_sym_BSLASHACRshort] = ACTIONS(6309), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6309), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6309), - [anon_sym_BSLASHacrlong] = ACTIONS(6309), - [anon_sym_BSLASHAcrlong] = ACTIONS(6309), - [anon_sym_BSLASHACRlong] = ACTIONS(6309), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6309), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6309), - [anon_sym_BSLASHacrfull] = ACTIONS(6309), - [anon_sym_BSLASHAcrfull] = ACTIONS(6309), - [anon_sym_BSLASHACRfull] = ACTIONS(6309), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6309), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6309), - [anon_sym_BSLASHacs] = ACTIONS(6309), - [anon_sym_BSLASHAcs] = ACTIONS(6309), - [anon_sym_BSLASHacsp] = ACTIONS(6309), - [anon_sym_BSLASHAcsp] = ACTIONS(6309), - [anon_sym_BSLASHacl] = ACTIONS(6309), - [anon_sym_BSLASHAcl] = ACTIONS(6309), - [anon_sym_BSLASHaclp] = ACTIONS(6309), - [anon_sym_BSLASHAclp] = ACTIONS(6309), - [anon_sym_BSLASHacf] = ACTIONS(6309), - [anon_sym_BSLASHAcf] = ACTIONS(6309), - [anon_sym_BSLASHacfp] = ACTIONS(6309), - [anon_sym_BSLASHAcfp] = ACTIONS(6309), - [anon_sym_BSLASHac] = ACTIONS(6309), - [anon_sym_BSLASHAc] = ACTIONS(6309), - [anon_sym_BSLASHacp] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6309), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6309), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6309), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6309), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6309), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6309), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6309), - [anon_sym_BSLASHcolor] = ACTIONS(6309), - [anon_sym_BSLASHcolorbox] = ACTIONS(6309), - [anon_sym_BSLASHtextcolor] = ACTIONS(6309), - [anon_sym_BSLASHpagecolor] = ACTIONS(6309), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6309), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6309), - [anon_sym_BSLASHtext] = ACTIONS(6309), - [anon_sym_BSLASHintertext] = ACTIONS(6309), - [anon_sym_shortintertext] = ACTIONS(6309), - }, - [1753] = { - [sym_command_name] = ACTIONS(6313), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6313), - [anon_sym_LBRACK] = ACTIONS(6315), - [anon_sym_RBRACK] = ACTIONS(6315), - [anon_sym_COMMA] = ACTIONS(6315), - [anon_sym_EQ] = ACTIONS(6315), - [anon_sym_LPAREN] = ACTIONS(6315), - [anon_sym_RPAREN] = ACTIONS(6315), - [anon_sym_LBRACE] = ACTIONS(6315), - [sym_word] = ACTIONS(6313), - [sym_placeholder] = ACTIONS(6315), - [anon_sym_PLUS] = ACTIONS(6315), - [anon_sym_DASH] = ACTIONS(6315), - [anon_sym_STAR] = ACTIONS(6315), - [anon_sym_SLASH] = ACTIONS(6315), - [anon_sym_LT] = ACTIONS(6313), - [anon_sym_GT] = ACTIONS(6313), - [anon_sym_BANG] = ACTIONS(6313), - [anon_sym_PIPE] = ACTIONS(6313), - [anon_sym_COLON] = ACTIONS(6313), - [anon_sym_SQUOTE] = ACTIONS(6313), - [anon_sym__] = ACTIONS(6315), - [anon_sym_CARET] = ACTIONS(6315), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6315), - [anon_sym_DOLLAR] = ACTIONS(6313), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6315), - [anon_sym_BSLASHbegin] = ACTIONS(6313), - [anon_sym_BSLASHtitle] = ACTIONS(6313), - [anon_sym_BSLASHauthor] = ACTIONS(6313), - [anon_sym_BSLASHusepackage] = ACTIONS(6313), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6313), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6313), - [anon_sym_BSLASHinclude] = ACTIONS(6313), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6313), - [anon_sym_BSLASHinput] = ACTIONS(6313), - [anon_sym_BSLASHsubfile] = ACTIONS(6313), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6313), - [anon_sym_BSLASHbibliography] = ACTIONS(6313), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6313), - [anon_sym_BSLASHincludesvg] = ACTIONS(6313), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6313), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6313), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6313), - [anon_sym_BSLASHimport] = ACTIONS(6313), - [anon_sym_BSLASHsubimport] = ACTIONS(6313), - [anon_sym_BSLASHinputfrom] = ACTIONS(6313), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6313), - [anon_sym_BSLASHincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6313), - [anon_sym_BSLASHcaption] = ACTIONS(6313), - [anon_sym_BSLASHcite] = ACTIONS(6313), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCite] = ACTIONS(6313), - [anon_sym_BSLASHnocite] = ACTIONS(6313), - [anon_sym_BSLASHcitet] = ACTIONS(6313), - [anon_sym_BSLASHcitep] = ACTIONS(6313), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteauthor] = ACTIONS(6313), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6313), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitetitle] = ACTIONS(6313), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteyear] = ACTIONS(6313), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6315), - [anon_sym_BSLASHcitedate] = ACTIONS(6313), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6315), - [anon_sym_BSLASHciteurl] = ACTIONS(6313), - [anon_sym_BSLASHfullcite] = ACTIONS(6313), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6313), - [anon_sym_BSLASHcitealt] = ACTIONS(6313), - [anon_sym_BSLASHcitealp] = ACTIONS(6313), - [anon_sym_BSLASHcitetext] = ACTIONS(6313), - [anon_sym_BSLASHparencite] = ACTIONS(6313), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHParencite] = ACTIONS(6313), - [anon_sym_BSLASHfootcite] = ACTIONS(6313), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6313), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6313), - [anon_sym_BSLASHtextcite] = ACTIONS(6313), - [anon_sym_BSLASHTextcite] = ACTIONS(6313), - [anon_sym_BSLASHsmartcite] = ACTIONS(6313), - [anon_sym_BSLASHSmartcite] = ACTIONS(6313), - [anon_sym_BSLASHsupercite] = ACTIONS(6313), - [anon_sym_BSLASHautocite] = ACTIONS(6313), - [anon_sym_BSLASHAutocite] = ACTIONS(6313), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6315), - [anon_sym_BSLASHvolcite] = ACTIONS(6313), - [anon_sym_BSLASHVolcite] = ACTIONS(6313), - [anon_sym_BSLASHpvolcite] = ACTIONS(6313), - [anon_sym_BSLASHPvolcite] = ACTIONS(6313), - [anon_sym_BSLASHfvolcite] = ACTIONS(6313), - [anon_sym_BSLASHftvolcite] = ACTIONS(6313), - [anon_sym_BSLASHsvolcite] = ACTIONS(6313), - [anon_sym_BSLASHSvolcite] = ACTIONS(6313), - [anon_sym_BSLASHtvolcite] = ACTIONS(6313), - [anon_sym_BSLASHTvolcite] = ACTIONS(6313), - [anon_sym_BSLASHavolcite] = ACTIONS(6313), - [anon_sym_BSLASHAvolcite] = ACTIONS(6313), - [anon_sym_BSLASHnotecite] = ACTIONS(6313), - [anon_sym_BSLASHNotecite] = ACTIONS(6313), - [anon_sym_BSLASHpnotecite] = ACTIONS(6313), - [anon_sym_BSLASHPnotecite] = ACTIONS(6313), - [anon_sym_BSLASHfnotecite] = ACTIONS(6313), - [anon_sym_BSLASHlabel] = ACTIONS(6313), - [anon_sym_BSLASHref] = ACTIONS(6313), - [anon_sym_BSLASHeqref] = ACTIONS(6313), - [anon_sym_BSLASHvref] = ACTIONS(6313), - [anon_sym_BSLASHVref] = ACTIONS(6313), - [anon_sym_BSLASHautoref] = ACTIONS(6313), - [anon_sym_BSLASHpageref] = ACTIONS(6313), - [anon_sym_BSLASHcref] = ACTIONS(6313), - [anon_sym_BSLASHCref] = ACTIONS(6313), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnameCref] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6313), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6313), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6313), - [anon_sym_BSLASHlabelcref] = ACTIONS(6313), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange] = ACTIONS(6313), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHCrefrange] = ACTIONS(6313), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6315), - [anon_sym_BSLASHnewlabel] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand] = ACTIONS(6313), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6313), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6313), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6315), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6313), - [anon_sym_BSLASHdef] = ACTIONS(6313), - [anon_sym_BSLASHlet] = ACTIONS(6313), - [anon_sym_BSLASHleft] = ACTIONS(6313), - [anon_sym_BSLASHbig] = ACTIONS(6313), - [anon_sym_BSLASHBig] = ACTIONS(6313), - [anon_sym_BSLASHbigg] = ACTIONS(6313), - [anon_sym_BSLASHBigg] = ACTIONS(6313), - [anon_sym_BSLASHbigl] = ACTIONS(6313), - [anon_sym_BSLASHBigl] = ACTIONS(6313), - [anon_sym_BSLASHbiggl] = ACTIONS(6313), - [anon_sym_BSLASHBiggl] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6313), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6313), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6313), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6313), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6313), - [anon_sym_BSLASHgls] = ACTIONS(6313), - [anon_sym_BSLASHGls] = ACTIONS(6313), - [anon_sym_BSLASHGLS] = ACTIONS(6313), - [anon_sym_BSLASHglspl] = ACTIONS(6313), - [anon_sym_BSLASHGlspl] = ACTIONS(6313), - [anon_sym_BSLASHGLSpl] = ACTIONS(6313), - [anon_sym_BSLASHglsdisp] = ACTIONS(6313), - [anon_sym_BSLASHglslink] = ACTIONS(6313), - [anon_sym_BSLASHglstext] = ACTIONS(6313), - [anon_sym_BSLASHGlstext] = ACTIONS(6313), - [anon_sym_BSLASHGLStext] = ACTIONS(6313), - [anon_sym_BSLASHglsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6313), - [anon_sym_BSLASHglsplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSplural] = ACTIONS(6313), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6313), - [anon_sym_BSLASHglsname] = ACTIONS(6313), - [anon_sym_BSLASHGlsname] = ACTIONS(6313), - [anon_sym_BSLASHGLSname] = ACTIONS(6313), - [anon_sym_BSLASHglssymbol] = ACTIONS(6313), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6313), - [anon_sym_BSLASHglsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6313), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6313), - [anon_sym_BSLASHglsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6313), - [anon_sym_BSLASHglsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6313), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6313), - [anon_sym_BSLASHglsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6313), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6313), - [anon_sym_BSLASHglsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6313), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6313), - [anon_sym_BSLASHnewacronym] = ACTIONS(6313), - [anon_sym_BSLASHacrshort] = ACTIONS(6313), - [anon_sym_BSLASHAcrshort] = ACTIONS(6313), - [anon_sym_BSLASHACRshort] = ACTIONS(6313), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6313), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6313), - [anon_sym_BSLASHacrlong] = ACTIONS(6313), - [anon_sym_BSLASHAcrlong] = ACTIONS(6313), - [anon_sym_BSLASHACRlong] = ACTIONS(6313), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6313), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6313), - [anon_sym_BSLASHacrfull] = ACTIONS(6313), - [anon_sym_BSLASHAcrfull] = ACTIONS(6313), - [anon_sym_BSLASHACRfull] = ACTIONS(6313), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6313), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6313), - [anon_sym_BSLASHacs] = ACTIONS(6313), - [anon_sym_BSLASHAcs] = ACTIONS(6313), - [anon_sym_BSLASHacsp] = ACTIONS(6313), - [anon_sym_BSLASHAcsp] = ACTIONS(6313), - [anon_sym_BSLASHacl] = ACTIONS(6313), - [anon_sym_BSLASHAcl] = ACTIONS(6313), - [anon_sym_BSLASHaclp] = ACTIONS(6313), - [anon_sym_BSLASHAclp] = ACTIONS(6313), - [anon_sym_BSLASHacf] = ACTIONS(6313), - [anon_sym_BSLASHAcf] = ACTIONS(6313), - [anon_sym_BSLASHacfp] = ACTIONS(6313), - [anon_sym_BSLASHAcfp] = ACTIONS(6313), - [anon_sym_BSLASHac] = ACTIONS(6313), - [anon_sym_BSLASHAc] = ACTIONS(6313), - [anon_sym_BSLASHacp] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6313), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6313), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6313), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6313), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6313), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6315), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6313), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6313), - [anon_sym_BSLASHcolor] = ACTIONS(6313), - [anon_sym_BSLASHcolorbox] = ACTIONS(6313), - [anon_sym_BSLASHtextcolor] = ACTIONS(6313), - [anon_sym_BSLASHpagecolor] = ACTIONS(6313), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6313), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6313), - [anon_sym_BSLASHtext] = ACTIONS(6313), - [anon_sym_BSLASHintertext] = ACTIONS(6313), - [anon_sym_shortintertext] = ACTIONS(6313), - }, - [1754] = { - [sym_command_name] = ACTIONS(6317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6317), - [anon_sym_LBRACK] = ACTIONS(6319), - [anon_sym_RBRACK] = ACTIONS(6319), - [anon_sym_COMMA] = ACTIONS(6319), - [anon_sym_EQ] = ACTIONS(6319), - [anon_sym_LPAREN] = ACTIONS(6319), - [anon_sym_RPAREN] = ACTIONS(6319), - [anon_sym_LBRACE] = ACTIONS(6319), - [sym_word] = ACTIONS(6317), - [sym_placeholder] = ACTIONS(6319), - [anon_sym_PLUS] = ACTIONS(6319), - [anon_sym_DASH] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(6319), - [anon_sym_SLASH] = ACTIONS(6319), - [anon_sym_LT] = ACTIONS(6317), - [anon_sym_GT] = ACTIONS(6317), - [anon_sym_BANG] = ACTIONS(6317), - [anon_sym_PIPE] = ACTIONS(6317), - [anon_sym_COLON] = ACTIONS(6317), - [anon_sym_SQUOTE] = ACTIONS(6317), - [anon_sym__] = ACTIONS(6319), - [anon_sym_CARET] = ACTIONS(6319), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6319), - [anon_sym_DOLLAR] = ACTIONS(6317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6319), - [anon_sym_BSLASHbegin] = ACTIONS(6317), - [anon_sym_BSLASHtitle] = ACTIONS(6317), - [anon_sym_BSLASHauthor] = ACTIONS(6317), - [anon_sym_BSLASHusepackage] = ACTIONS(6317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6317), - [anon_sym_BSLASHinclude] = ACTIONS(6317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6317), - [anon_sym_BSLASHinput] = ACTIONS(6317), - [anon_sym_BSLASHsubfile] = ACTIONS(6317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6317), - [anon_sym_BSLASHbibliography] = ACTIONS(6317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6317), - [anon_sym_BSLASHincludesvg] = ACTIONS(6317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6317), - [anon_sym_BSLASHimport] = ACTIONS(6317), - [anon_sym_BSLASHsubimport] = ACTIONS(6317), - [anon_sym_BSLASHinputfrom] = ACTIONS(6317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6317), - [anon_sym_BSLASHincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6317), - [anon_sym_BSLASHcaption] = ACTIONS(6317), - [anon_sym_BSLASHcite] = ACTIONS(6317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCite] = ACTIONS(6317), - [anon_sym_BSLASHnocite] = ACTIONS(6317), - [anon_sym_BSLASHcitet] = ACTIONS(6317), - [anon_sym_BSLASHcitep] = ACTIONS(6317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteauthor] = ACTIONS(6317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitetitle] = ACTIONS(6317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteyear] = ACTIONS(6317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6319), - [anon_sym_BSLASHcitedate] = ACTIONS(6317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6319), - [anon_sym_BSLASHciteurl] = ACTIONS(6317), - [anon_sym_BSLASHfullcite] = ACTIONS(6317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6317), - [anon_sym_BSLASHcitealt] = ACTIONS(6317), - [anon_sym_BSLASHcitealp] = ACTIONS(6317), - [anon_sym_BSLASHcitetext] = ACTIONS(6317), - [anon_sym_BSLASHparencite] = ACTIONS(6317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHParencite] = ACTIONS(6317), - [anon_sym_BSLASHfootcite] = ACTIONS(6317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6317), - [anon_sym_BSLASHtextcite] = ACTIONS(6317), - [anon_sym_BSLASHTextcite] = ACTIONS(6317), - [anon_sym_BSLASHsmartcite] = ACTIONS(6317), - [anon_sym_BSLASHSmartcite] = ACTIONS(6317), - [anon_sym_BSLASHsupercite] = ACTIONS(6317), - [anon_sym_BSLASHautocite] = ACTIONS(6317), - [anon_sym_BSLASHAutocite] = ACTIONS(6317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6319), - [anon_sym_BSLASHvolcite] = ACTIONS(6317), - [anon_sym_BSLASHVolcite] = ACTIONS(6317), - [anon_sym_BSLASHpvolcite] = ACTIONS(6317), - [anon_sym_BSLASHPvolcite] = ACTIONS(6317), - [anon_sym_BSLASHfvolcite] = ACTIONS(6317), - [anon_sym_BSLASHftvolcite] = ACTIONS(6317), - [anon_sym_BSLASHsvolcite] = ACTIONS(6317), - [anon_sym_BSLASHSvolcite] = ACTIONS(6317), - [anon_sym_BSLASHtvolcite] = ACTIONS(6317), - [anon_sym_BSLASHTvolcite] = ACTIONS(6317), - [anon_sym_BSLASHavolcite] = ACTIONS(6317), - [anon_sym_BSLASHAvolcite] = ACTIONS(6317), - [anon_sym_BSLASHnotecite] = ACTIONS(6317), - [anon_sym_BSLASHNotecite] = ACTIONS(6317), - [anon_sym_BSLASHpnotecite] = ACTIONS(6317), - [anon_sym_BSLASHPnotecite] = ACTIONS(6317), - [anon_sym_BSLASHfnotecite] = ACTIONS(6317), - [anon_sym_BSLASHlabel] = ACTIONS(6317), - [anon_sym_BSLASHref] = ACTIONS(6317), - [anon_sym_BSLASHeqref] = ACTIONS(6317), - [anon_sym_BSLASHvref] = ACTIONS(6317), - [anon_sym_BSLASHVref] = ACTIONS(6317), - [anon_sym_BSLASHautoref] = ACTIONS(6317), - [anon_sym_BSLASHpageref] = ACTIONS(6317), - [anon_sym_BSLASHcref] = ACTIONS(6317), - [anon_sym_BSLASHCref] = ACTIONS(6317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnameCref] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6317), - [anon_sym_BSLASHlabelcref] = ACTIONS(6317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange] = ACTIONS(6317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHCrefrange] = ACTIONS(6317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6319), - [anon_sym_BSLASHnewlabel] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand] = ACTIONS(6317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6319), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6317), - [anon_sym_BSLASHdef] = ACTIONS(6317), - [anon_sym_BSLASHlet] = ACTIONS(6317), - [anon_sym_BSLASHleft] = ACTIONS(6317), - [anon_sym_BSLASHbig] = ACTIONS(6317), - [anon_sym_BSLASHBig] = ACTIONS(6317), - [anon_sym_BSLASHbigg] = ACTIONS(6317), - [anon_sym_BSLASHBigg] = ACTIONS(6317), - [anon_sym_BSLASHbigl] = ACTIONS(6317), - [anon_sym_BSLASHBigl] = ACTIONS(6317), - [anon_sym_BSLASHbiggl] = ACTIONS(6317), - [anon_sym_BSLASHBiggl] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6317), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6317), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6317), - [anon_sym_BSLASHgls] = ACTIONS(6317), - [anon_sym_BSLASHGls] = ACTIONS(6317), - [anon_sym_BSLASHGLS] = ACTIONS(6317), - [anon_sym_BSLASHglspl] = ACTIONS(6317), - [anon_sym_BSLASHGlspl] = ACTIONS(6317), - [anon_sym_BSLASHGLSpl] = ACTIONS(6317), - [anon_sym_BSLASHglsdisp] = ACTIONS(6317), - [anon_sym_BSLASHglslink] = ACTIONS(6317), - [anon_sym_BSLASHglstext] = ACTIONS(6317), - [anon_sym_BSLASHGlstext] = ACTIONS(6317), - [anon_sym_BSLASHGLStext] = ACTIONS(6317), - [anon_sym_BSLASHglsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6317), - [anon_sym_BSLASHglsplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSplural] = ACTIONS(6317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6317), - [anon_sym_BSLASHglsname] = ACTIONS(6317), - [anon_sym_BSLASHGlsname] = ACTIONS(6317), - [anon_sym_BSLASHGLSname] = ACTIONS(6317), - [anon_sym_BSLASHglssymbol] = ACTIONS(6317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6317), - [anon_sym_BSLASHglsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6317), - [anon_sym_BSLASHglsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6317), - [anon_sym_BSLASHglsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6317), - [anon_sym_BSLASHglsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6317), - [anon_sym_BSLASHglsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6317), - [anon_sym_BSLASHnewacronym] = ACTIONS(6317), - [anon_sym_BSLASHacrshort] = ACTIONS(6317), - [anon_sym_BSLASHAcrshort] = ACTIONS(6317), - [anon_sym_BSLASHACRshort] = ACTIONS(6317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6317), - [anon_sym_BSLASHacrlong] = ACTIONS(6317), - [anon_sym_BSLASHAcrlong] = ACTIONS(6317), - [anon_sym_BSLASHACRlong] = ACTIONS(6317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6317), - [anon_sym_BSLASHacrfull] = ACTIONS(6317), - [anon_sym_BSLASHAcrfull] = ACTIONS(6317), - [anon_sym_BSLASHACRfull] = ACTIONS(6317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6317), - [anon_sym_BSLASHacs] = ACTIONS(6317), - [anon_sym_BSLASHAcs] = ACTIONS(6317), - [anon_sym_BSLASHacsp] = ACTIONS(6317), - [anon_sym_BSLASHAcsp] = ACTIONS(6317), - [anon_sym_BSLASHacl] = ACTIONS(6317), - [anon_sym_BSLASHAcl] = ACTIONS(6317), - [anon_sym_BSLASHaclp] = ACTIONS(6317), - [anon_sym_BSLASHAclp] = ACTIONS(6317), - [anon_sym_BSLASHacf] = ACTIONS(6317), - [anon_sym_BSLASHAcf] = ACTIONS(6317), - [anon_sym_BSLASHacfp] = ACTIONS(6317), - [anon_sym_BSLASHAcfp] = ACTIONS(6317), - [anon_sym_BSLASHac] = ACTIONS(6317), - [anon_sym_BSLASHAc] = ACTIONS(6317), - [anon_sym_BSLASHacp] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6317), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6317), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6319), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6317), - [anon_sym_BSLASHcolor] = ACTIONS(6317), - [anon_sym_BSLASHcolorbox] = ACTIONS(6317), - [anon_sym_BSLASHtextcolor] = ACTIONS(6317), - [anon_sym_BSLASHpagecolor] = ACTIONS(6317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6317), - [anon_sym_BSLASHtext] = ACTIONS(6317), - [anon_sym_BSLASHintertext] = ACTIONS(6317), - [anon_sym_shortintertext] = ACTIONS(6317), - }, - [1755] = { - [sym_command_name] = ACTIONS(6325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6325), - [anon_sym_LBRACK] = ACTIONS(6327), - [anon_sym_RBRACK] = ACTIONS(6327), - [anon_sym_COMMA] = ACTIONS(6327), - [anon_sym_EQ] = ACTIONS(6327), - [anon_sym_LPAREN] = ACTIONS(6327), - [anon_sym_RPAREN] = ACTIONS(6327), - [anon_sym_LBRACE] = ACTIONS(6327), - [sym_word] = ACTIONS(6325), - [sym_placeholder] = ACTIONS(6327), - [anon_sym_PLUS] = ACTIONS(6327), - [anon_sym_DASH] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6327), - [anon_sym_SLASH] = ACTIONS(6327), - [anon_sym_LT] = ACTIONS(6325), - [anon_sym_GT] = ACTIONS(6325), - [anon_sym_BANG] = ACTIONS(6325), - [anon_sym_PIPE] = ACTIONS(6325), - [anon_sym_COLON] = ACTIONS(6325), - [anon_sym_SQUOTE] = ACTIONS(6325), - [anon_sym__] = ACTIONS(6327), - [anon_sym_CARET] = ACTIONS(6327), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6327), - [anon_sym_DOLLAR] = ACTIONS(6325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6327), - [anon_sym_BSLASHbegin] = ACTIONS(6325), - [anon_sym_BSLASHtitle] = ACTIONS(6325), - [anon_sym_BSLASHauthor] = ACTIONS(6325), - [anon_sym_BSLASHusepackage] = ACTIONS(6325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6325), - [anon_sym_BSLASHinclude] = ACTIONS(6325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6325), - [anon_sym_BSLASHinput] = ACTIONS(6325), - [anon_sym_BSLASHsubfile] = ACTIONS(6325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6325), - [anon_sym_BSLASHbibliography] = ACTIONS(6325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6325), - [anon_sym_BSLASHincludesvg] = ACTIONS(6325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6325), - [anon_sym_BSLASHimport] = ACTIONS(6325), - [anon_sym_BSLASHsubimport] = ACTIONS(6325), - [anon_sym_BSLASHinputfrom] = ACTIONS(6325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6325), - [anon_sym_BSLASHincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6325), - [anon_sym_BSLASHcaption] = ACTIONS(6325), - [anon_sym_BSLASHcite] = ACTIONS(6325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCite] = ACTIONS(6325), - [anon_sym_BSLASHnocite] = ACTIONS(6325), - [anon_sym_BSLASHcitet] = ACTIONS(6325), - [anon_sym_BSLASHcitep] = ACTIONS(6325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteauthor] = ACTIONS(6325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitetitle] = ACTIONS(6325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteyear] = ACTIONS(6325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6327), - [anon_sym_BSLASHcitedate] = ACTIONS(6325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6327), - [anon_sym_BSLASHciteurl] = ACTIONS(6325), - [anon_sym_BSLASHfullcite] = ACTIONS(6325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6325), - [anon_sym_BSLASHcitealt] = ACTIONS(6325), - [anon_sym_BSLASHcitealp] = ACTIONS(6325), - [anon_sym_BSLASHcitetext] = ACTIONS(6325), - [anon_sym_BSLASHparencite] = ACTIONS(6325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHParencite] = ACTIONS(6325), - [anon_sym_BSLASHfootcite] = ACTIONS(6325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6325), - [anon_sym_BSLASHtextcite] = ACTIONS(6325), - [anon_sym_BSLASHTextcite] = ACTIONS(6325), - [anon_sym_BSLASHsmartcite] = ACTIONS(6325), - [anon_sym_BSLASHSmartcite] = ACTIONS(6325), - [anon_sym_BSLASHsupercite] = ACTIONS(6325), - [anon_sym_BSLASHautocite] = ACTIONS(6325), - [anon_sym_BSLASHAutocite] = ACTIONS(6325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6327), - [anon_sym_BSLASHvolcite] = ACTIONS(6325), - [anon_sym_BSLASHVolcite] = ACTIONS(6325), - [anon_sym_BSLASHpvolcite] = ACTIONS(6325), - [anon_sym_BSLASHPvolcite] = ACTIONS(6325), - [anon_sym_BSLASHfvolcite] = ACTIONS(6325), - [anon_sym_BSLASHftvolcite] = ACTIONS(6325), - [anon_sym_BSLASHsvolcite] = ACTIONS(6325), - [anon_sym_BSLASHSvolcite] = ACTIONS(6325), - [anon_sym_BSLASHtvolcite] = ACTIONS(6325), - [anon_sym_BSLASHTvolcite] = ACTIONS(6325), - [anon_sym_BSLASHavolcite] = ACTIONS(6325), - [anon_sym_BSLASHAvolcite] = ACTIONS(6325), - [anon_sym_BSLASHnotecite] = ACTIONS(6325), - [anon_sym_BSLASHNotecite] = ACTIONS(6325), - [anon_sym_BSLASHpnotecite] = ACTIONS(6325), - [anon_sym_BSLASHPnotecite] = ACTIONS(6325), - [anon_sym_BSLASHfnotecite] = ACTIONS(6325), - [anon_sym_BSLASHlabel] = ACTIONS(6325), - [anon_sym_BSLASHref] = ACTIONS(6325), - [anon_sym_BSLASHeqref] = ACTIONS(6325), - [anon_sym_BSLASHvref] = ACTIONS(6325), - [anon_sym_BSLASHVref] = ACTIONS(6325), - [anon_sym_BSLASHautoref] = ACTIONS(6325), - [anon_sym_BSLASHpageref] = ACTIONS(6325), - [anon_sym_BSLASHcref] = ACTIONS(6325), - [anon_sym_BSLASHCref] = ACTIONS(6325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnameCref] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6325), - [anon_sym_BSLASHlabelcref] = ACTIONS(6325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange] = ACTIONS(6325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHCrefrange] = ACTIONS(6325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6327), - [anon_sym_BSLASHnewlabel] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand] = ACTIONS(6325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6327), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6325), - [anon_sym_BSLASHdef] = ACTIONS(6325), - [anon_sym_BSLASHlet] = ACTIONS(6325), - [anon_sym_BSLASHleft] = ACTIONS(6325), - [anon_sym_BSLASHbig] = ACTIONS(6325), - [anon_sym_BSLASHBig] = ACTIONS(6325), - [anon_sym_BSLASHbigg] = ACTIONS(6325), - [anon_sym_BSLASHBigg] = ACTIONS(6325), - [anon_sym_BSLASHbigl] = ACTIONS(6325), - [anon_sym_BSLASHBigl] = ACTIONS(6325), - [anon_sym_BSLASHbiggl] = ACTIONS(6325), - [anon_sym_BSLASHBiggl] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6325), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6325), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6325), - [anon_sym_BSLASHgls] = ACTIONS(6325), - [anon_sym_BSLASHGls] = ACTIONS(6325), - [anon_sym_BSLASHGLS] = ACTIONS(6325), - [anon_sym_BSLASHglspl] = ACTIONS(6325), - [anon_sym_BSLASHGlspl] = ACTIONS(6325), - [anon_sym_BSLASHGLSpl] = ACTIONS(6325), - [anon_sym_BSLASHglsdisp] = ACTIONS(6325), - [anon_sym_BSLASHglslink] = ACTIONS(6325), - [anon_sym_BSLASHglstext] = ACTIONS(6325), - [anon_sym_BSLASHGlstext] = ACTIONS(6325), - [anon_sym_BSLASHGLStext] = ACTIONS(6325), - [anon_sym_BSLASHglsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6325), - [anon_sym_BSLASHglsplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSplural] = ACTIONS(6325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6325), - [anon_sym_BSLASHglsname] = ACTIONS(6325), - [anon_sym_BSLASHGlsname] = ACTIONS(6325), - [anon_sym_BSLASHGLSname] = ACTIONS(6325), - [anon_sym_BSLASHglssymbol] = ACTIONS(6325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6325), - [anon_sym_BSLASHglsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6325), - [anon_sym_BSLASHglsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6325), - [anon_sym_BSLASHglsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6325), - [anon_sym_BSLASHglsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6325), - [anon_sym_BSLASHglsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6325), - [anon_sym_BSLASHnewacronym] = ACTIONS(6325), - [anon_sym_BSLASHacrshort] = ACTIONS(6325), - [anon_sym_BSLASHAcrshort] = ACTIONS(6325), - [anon_sym_BSLASHACRshort] = ACTIONS(6325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6325), - [anon_sym_BSLASHacrlong] = ACTIONS(6325), - [anon_sym_BSLASHAcrlong] = ACTIONS(6325), - [anon_sym_BSLASHACRlong] = ACTIONS(6325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6325), - [anon_sym_BSLASHacrfull] = ACTIONS(6325), - [anon_sym_BSLASHAcrfull] = ACTIONS(6325), - [anon_sym_BSLASHACRfull] = ACTIONS(6325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6325), - [anon_sym_BSLASHacs] = ACTIONS(6325), - [anon_sym_BSLASHAcs] = ACTIONS(6325), - [anon_sym_BSLASHacsp] = ACTIONS(6325), - [anon_sym_BSLASHAcsp] = ACTIONS(6325), - [anon_sym_BSLASHacl] = ACTIONS(6325), - [anon_sym_BSLASHAcl] = ACTIONS(6325), - [anon_sym_BSLASHaclp] = ACTIONS(6325), - [anon_sym_BSLASHAclp] = ACTIONS(6325), - [anon_sym_BSLASHacf] = ACTIONS(6325), - [anon_sym_BSLASHAcf] = ACTIONS(6325), - [anon_sym_BSLASHacfp] = ACTIONS(6325), - [anon_sym_BSLASHAcfp] = ACTIONS(6325), - [anon_sym_BSLASHac] = ACTIONS(6325), - [anon_sym_BSLASHAc] = ACTIONS(6325), - [anon_sym_BSLASHacp] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6325), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6325), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6327), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6325), - [anon_sym_BSLASHcolor] = ACTIONS(6325), - [anon_sym_BSLASHcolorbox] = ACTIONS(6325), - [anon_sym_BSLASHtextcolor] = ACTIONS(6325), - [anon_sym_BSLASHpagecolor] = ACTIONS(6325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6325), - [anon_sym_BSLASHtext] = ACTIONS(6325), - [anon_sym_BSLASHintertext] = ACTIONS(6325), - [anon_sym_shortintertext] = ACTIONS(6325), - }, - [1756] = { - [sym_command_name] = ACTIONS(6473), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6473), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_RBRACK] = ACTIONS(6475), - [anon_sym_COMMA] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6475), - [anon_sym_LPAREN] = ACTIONS(6475), - [anon_sym_RPAREN] = ACTIONS(6475), - [anon_sym_LBRACE] = ACTIONS(6475), - [sym_word] = ACTIONS(6473), - [sym_placeholder] = ACTIONS(6475), - [anon_sym_PLUS] = ACTIONS(6475), - [anon_sym_DASH] = ACTIONS(6475), - [anon_sym_STAR] = ACTIONS(6475), - [anon_sym_SLASH] = ACTIONS(6475), - [anon_sym_LT] = ACTIONS(6473), - [anon_sym_GT] = ACTIONS(6473), - [anon_sym_BANG] = ACTIONS(6473), - [anon_sym_PIPE] = ACTIONS(6473), - [anon_sym_COLON] = ACTIONS(6473), - [anon_sym_SQUOTE] = ACTIONS(6473), - [anon_sym__] = ACTIONS(6475), - [anon_sym_CARET] = ACTIONS(6475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6475), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6475), - [anon_sym_DOLLAR] = ACTIONS(6473), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6475), - [anon_sym_BSLASHbegin] = ACTIONS(6473), - [anon_sym_BSLASHtitle] = ACTIONS(6473), - [anon_sym_BSLASHauthor] = ACTIONS(6473), - [anon_sym_BSLASHusepackage] = ACTIONS(6473), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6473), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6473), - [anon_sym_BSLASHinclude] = ACTIONS(6473), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6473), - [anon_sym_BSLASHinput] = ACTIONS(6473), - [anon_sym_BSLASHsubfile] = ACTIONS(6473), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6473), - [anon_sym_BSLASHbibliography] = ACTIONS(6473), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6473), - [anon_sym_BSLASHincludesvg] = ACTIONS(6473), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6473), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6473), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6473), - [anon_sym_BSLASHimport] = ACTIONS(6473), - [anon_sym_BSLASHsubimport] = ACTIONS(6473), - [anon_sym_BSLASHinputfrom] = ACTIONS(6473), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6473), - [anon_sym_BSLASHincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHcaption] = ACTIONS(6473), - [anon_sym_BSLASHcite] = ACTIONS(6473), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCite] = ACTIONS(6473), - [anon_sym_BSLASHnocite] = ACTIONS(6473), - [anon_sym_BSLASHcitet] = ACTIONS(6473), - [anon_sym_BSLASHcitep] = ACTIONS(6473), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteauthor] = ACTIONS(6473), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6473), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitetitle] = ACTIONS(6473), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteyear] = ACTIONS(6473), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitedate] = ACTIONS(6473), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteurl] = ACTIONS(6473), - [anon_sym_BSLASHfullcite] = ACTIONS(6473), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6473), - [anon_sym_BSLASHcitealt] = ACTIONS(6473), - [anon_sym_BSLASHcitealp] = ACTIONS(6473), - [anon_sym_BSLASHcitetext] = ACTIONS(6473), - [anon_sym_BSLASHparencite] = ACTIONS(6473), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHParencite] = ACTIONS(6473), - [anon_sym_BSLASHfootcite] = ACTIONS(6473), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6473), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6473), - [anon_sym_BSLASHtextcite] = ACTIONS(6473), - [anon_sym_BSLASHTextcite] = ACTIONS(6473), - [anon_sym_BSLASHsmartcite] = ACTIONS(6473), - [anon_sym_BSLASHSmartcite] = ACTIONS(6473), - [anon_sym_BSLASHsupercite] = ACTIONS(6473), - [anon_sym_BSLASHautocite] = ACTIONS(6473), - [anon_sym_BSLASHAutocite] = ACTIONS(6473), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHvolcite] = ACTIONS(6473), - [anon_sym_BSLASHVolcite] = ACTIONS(6473), - [anon_sym_BSLASHpvolcite] = ACTIONS(6473), - [anon_sym_BSLASHPvolcite] = ACTIONS(6473), - [anon_sym_BSLASHfvolcite] = ACTIONS(6473), - [anon_sym_BSLASHftvolcite] = ACTIONS(6473), - [anon_sym_BSLASHsvolcite] = ACTIONS(6473), - [anon_sym_BSLASHSvolcite] = ACTIONS(6473), - [anon_sym_BSLASHtvolcite] = ACTIONS(6473), - [anon_sym_BSLASHTvolcite] = ACTIONS(6473), - [anon_sym_BSLASHavolcite] = ACTIONS(6473), - [anon_sym_BSLASHAvolcite] = ACTIONS(6473), - [anon_sym_BSLASHnotecite] = ACTIONS(6473), - [anon_sym_BSLASHNotecite] = ACTIONS(6473), - [anon_sym_BSLASHpnotecite] = ACTIONS(6473), - [anon_sym_BSLASHPnotecite] = ACTIONS(6473), - [anon_sym_BSLASHfnotecite] = ACTIONS(6473), - [anon_sym_BSLASHlabel] = ACTIONS(6473), - [anon_sym_BSLASHref] = ACTIONS(6473), - [anon_sym_BSLASHeqref] = ACTIONS(6473), - [anon_sym_BSLASHvref] = ACTIONS(6473), - [anon_sym_BSLASHVref] = ACTIONS(6473), - [anon_sym_BSLASHautoref] = ACTIONS(6473), - [anon_sym_BSLASHpageref] = ACTIONS(6473), - [anon_sym_BSLASHcref] = ACTIONS(6473), - [anon_sym_BSLASHCref] = ACTIONS(6473), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnameCref] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHlabelcref] = ACTIONS(6473), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCrefrange] = ACTIONS(6473), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnewlabel] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6473), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6473), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6475), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHdef] = ACTIONS(6473), - [anon_sym_BSLASHlet] = ACTIONS(6473), - [anon_sym_BSLASHleft] = ACTIONS(6473), - [anon_sym_BSLASHbig] = ACTIONS(6473), - [anon_sym_BSLASHBig] = ACTIONS(6473), - [anon_sym_BSLASHbigg] = ACTIONS(6473), - [anon_sym_BSLASHBigg] = ACTIONS(6473), - [anon_sym_BSLASHbigl] = ACTIONS(6473), - [anon_sym_BSLASHBigl] = ACTIONS(6473), - [anon_sym_BSLASHbiggl] = ACTIONS(6473), - [anon_sym_BSLASHBiggl] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6473), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6473), - [anon_sym_BSLASHgls] = ACTIONS(6473), - [anon_sym_BSLASHGls] = ACTIONS(6473), - [anon_sym_BSLASHGLS] = ACTIONS(6473), - [anon_sym_BSLASHglspl] = ACTIONS(6473), - [anon_sym_BSLASHGlspl] = ACTIONS(6473), - [anon_sym_BSLASHGLSpl] = ACTIONS(6473), - [anon_sym_BSLASHglsdisp] = ACTIONS(6473), - [anon_sym_BSLASHglslink] = ACTIONS(6473), - [anon_sym_BSLASHglstext] = ACTIONS(6473), - [anon_sym_BSLASHGlstext] = ACTIONS(6473), - [anon_sym_BSLASHGLStext] = ACTIONS(6473), - [anon_sym_BSLASHglsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6473), - [anon_sym_BSLASHglsplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSplural] = ACTIONS(6473), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHglsname] = ACTIONS(6473), - [anon_sym_BSLASHGlsname] = ACTIONS(6473), - [anon_sym_BSLASHGLSname] = ACTIONS(6473), - [anon_sym_BSLASHglssymbol] = ACTIONS(6473), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6473), - [anon_sym_BSLASHglsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6473), - [anon_sym_BSLASHglsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6473), - [anon_sym_BSLASHglsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6473), - [anon_sym_BSLASHglsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6473), - [anon_sym_BSLASHglsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6473), - [anon_sym_BSLASHnewacronym] = ACTIONS(6473), - [anon_sym_BSLASHacrshort] = ACTIONS(6473), - [anon_sym_BSLASHAcrshort] = ACTIONS(6473), - [anon_sym_BSLASHACRshort] = ACTIONS(6473), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6473), - [anon_sym_BSLASHacrlong] = ACTIONS(6473), - [anon_sym_BSLASHAcrlong] = ACTIONS(6473), - [anon_sym_BSLASHACRlong] = ACTIONS(6473), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6473), - [anon_sym_BSLASHacrfull] = ACTIONS(6473), - [anon_sym_BSLASHAcrfull] = ACTIONS(6473), - [anon_sym_BSLASHACRfull] = ACTIONS(6473), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6473), - [anon_sym_BSLASHacs] = ACTIONS(6473), - [anon_sym_BSLASHAcs] = ACTIONS(6473), - [anon_sym_BSLASHacsp] = ACTIONS(6473), - [anon_sym_BSLASHAcsp] = ACTIONS(6473), - [anon_sym_BSLASHacl] = ACTIONS(6473), - [anon_sym_BSLASHAcl] = ACTIONS(6473), - [anon_sym_BSLASHaclp] = ACTIONS(6473), - [anon_sym_BSLASHAclp] = ACTIONS(6473), - [anon_sym_BSLASHacf] = ACTIONS(6473), - [anon_sym_BSLASHAcf] = ACTIONS(6473), - [anon_sym_BSLASHacfp] = ACTIONS(6473), - [anon_sym_BSLASHAcfp] = ACTIONS(6473), - [anon_sym_BSLASHac] = ACTIONS(6473), - [anon_sym_BSLASHAc] = ACTIONS(6473), - [anon_sym_BSLASHacp] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6473), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6473), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6473), - [anon_sym_BSLASHcolor] = ACTIONS(6473), - [anon_sym_BSLASHcolorbox] = ACTIONS(6473), - [anon_sym_BSLASHtextcolor] = ACTIONS(6473), - [anon_sym_BSLASHpagecolor] = ACTIONS(6473), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6473), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6473), - [anon_sym_BSLASHtext] = ACTIONS(6473), - [anon_sym_BSLASHintertext] = ACTIONS(6473), - [anon_sym_shortintertext] = ACTIONS(6473), - }, - [1757] = { - [sym_command_name] = ACTIONS(6477), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6477), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_RBRACK] = ACTIONS(6479), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_LPAREN] = ACTIONS(6479), - [anon_sym_RPAREN] = ACTIONS(6479), - [anon_sym_LBRACE] = ACTIONS(6479), - [sym_word] = ACTIONS(6477), - [sym_placeholder] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6477), - [anon_sym_GT] = ACTIONS(6477), - [anon_sym_BANG] = ACTIONS(6477), - [anon_sym_PIPE] = ACTIONS(6477), - [anon_sym_COLON] = ACTIONS(6477), - [anon_sym_SQUOTE] = ACTIONS(6477), - [anon_sym__] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6479), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6479), - [anon_sym_DOLLAR] = ACTIONS(6477), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6479), - [anon_sym_BSLASHbegin] = ACTIONS(6477), - [anon_sym_BSLASHtitle] = ACTIONS(6477), - [anon_sym_BSLASHauthor] = ACTIONS(6477), - [anon_sym_BSLASHusepackage] = ACTIONS(6477), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6477), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6477), - [anon_sym_BSLASHinclude] = ACTIONS(6477), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6477), - [anon_sym_BSLASHinput] = ACTIONS(6477), - [anon_sym_BSLASHsubfile] = ACTIONS(6477), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6477), - [anon_sym_BSLASHbibliography] = ACTIONS(6477), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6477), - [anon_sym_BSLASHincludesvg] = ACTIONS(6477), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6477), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6477), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6477), - [anon_sym_BSLASHimport] = ACTIONS(6477), - [anon_sym_BSLASHsubimport] = ACTIONS(6477), - [anon_sym_BSLASHinputfrom] = ACTIONS(6477), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6477), - [anon_sym_BSLASHincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHcaption] = ACTIONS(6477), - [anon_sym_BSLASHcite] = ACTIONS(6477), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCite] = ACTIONS(6477), - [anon_sym_BSLASHnocite] = ACTIONS(6477), - [anon_sym_BSLASHcitet] = ACTIONS(6477), - [anon_sym_BSLASHcitep] = ACTIONS(6477), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteauthor] = ACTIONS(6477), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6477), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitetitle] = ACTIONS(6477), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteyear] = ACTIONS(6477), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitedate] = ACTIONS(6477), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteurl] = ACTIONS(6477), - [anon_sym_BSLASHfullcite] = ACTIONS(6477), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6477), - [anon_sym_BSLASHcitealt] = ACTIONS(6477), - [anon_sym_BSLASHcitealp] = ACTIONS(6477), - [anon_sym_BSLASHcitetext] = ACTIONS(6477), - [anon_sym_BSLASHparencite] = ACTIONS(6477), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHParencite] = ACTIONS(6477), - [anon_sym_BSLASHfootcite] = ACTIONS(6477), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6477), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6477), - [anon_sym_BSLASHtextcite] = ACTIONS(6477), - [anon_sym_BSLASHTextcite] = ACTIONS(6477), - [anon_sym_BSLASHsmartcite] = ACTIONS(6477), - [anon_sym_BSLASHSmartcite] = ACTIONS(6477), - [anon_sym_BSLASHsupercite] = ACTIONS(6477), - [anon_sym_BSLASHautocite] = ACTIONS(6477), - [anon_sym_BSLASHAutocite] = ACTIONS(6477), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHvolcite] = ACTIONS(6477), - [anon_sym_BSLASHVolcite] = ACTIONS(6477), - [anon_sym_BSLASHpvolcite] = ACTIONS(6477), - [anon_sym_BSLASHPvolcite] = ACTIONS(6477), - [anon_sym_BSLASHfvolcite] = ACTIONS(6477), - [anon_sym_BSLASHftvolcite] = ACTIONS(6477), - [anon_sym_BSLASHsvolcite] = ACTIONS(6477), - [anon_sym_BSLASHSvolcite] = ACTIONS(6477), - [anon_sym_BSLASHtvolcite] = ACTIONS(6477), - [anon_sym_BSLASHTvolcite] = ACTIONS(6477), - [anon_sym_BSLASHavolcite] = ACTIONS(6477), - [anon_sym_BSLASHAvolcite] = ACTIONS(6477), - [anon_sym_BSLASHnotecite] = ACTIONS(6477), - [anon_sym_BSLASHNotecite] = ACTIONS(6477), - [anon_sym_BSLASHpnotecite] = ACTIONS(6477), - [anon_sym_BSLASHPnotecite] = ACTIONS(6477), - [anon_sym_BSLASHfnotecite] = ACTIONS(6477), - [anon_sym_BSLASHlabel] = ACTIONS(6477), - [anon_sym_BSLASHref] = ACTIONS(6477), - [anon_sym_BSLASHeqref] = ACTIONS(6477), - [anon_sym_BSLASHvref] = ACTIONS(6477), - [anon_sym_BSLASHVref] = ACTIONS(6477), - [anon_sym_BSLASHautoref] = ACTIONS(6477), - [anon_sym_BSLASHpageref] = ACTIONS(6477), - [anon_sym_BSLASHcref] = ACTIONS(6477), - [anon_sym_BSLASHCref] = ACTIONS(6477), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnameCref] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHlabelcref] = ACTIONS(6477), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCrefrange] = ACTIONS(6477), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnewlabel] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6477), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6477), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6479), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHdef] = ACTIONS(6477), - [anon_sym_BSLASHlet] = ACTIONS(6477), - [anon_sym_BSLASHleft] = ACTIONS(6477), - [anon_sym_BSLASHbig] = ACTIONS(6477), - [anon_sym_BSLASHBig] = ACTIONS(6477), - [anon_sym_BSLASHbigg] = ACTIONS(6477), - [anon_sym_BSLASHBigg] = ACTIONS(6477), - [anon_sym_BSLASHbigl] = ACTIONS(6477), - [anon_sym_BSLASHBigl] = ACTIONS(6477), - [anon_sym_BSLASHbiggl] = ACTIONS(6477), - [anon_sym_BSLASHBiggl] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6477), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6477), - [anon_sym_BSLASHgls] = ACTIONS(6477), - [anon_sym_BSLASHGls] = ACTIONS(6477), - [anon_sym_BSLASHGLS] = ACTIONS(6477), - [anon_sym_BSLASHglspl] = ACTIONS(6477), - [anon_sym_BSLASHGlspl] = ACTIONS(6477), - [anon_sym_BSLASHGLSpl] = ACTIONS(6477), - [anon_sym_BSLASHglsdisp] = ACTIONS(6477), - [anon_sym_BSLASHglslink] = ACTIONS(6477), - [anon_sym_BSLASHglstext] = ACTIONS(6477), - [anon_sym_BSLASHGlstext] = ACTIONS(6477), - [anon_sym_BSLASHGLStext] = ACTIONS(6477), - [anon_sym_BSLASHglsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6477), - [anon_sym_BSLASHglsplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSplural] = ACTIONS(6477), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHglsname] = ACTIONS(6477), - [anon_sym_BSLASHGlsname] = ACTIONS(6477), - [anon_sym_BSLASHGLSname] = ACTIONS(6477), - [anon_sym_BSLASHglssymbol] = ACTIONS(6477), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6477), - [anon_sym_BSLASHglsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6477), - [anon_sym_BSLASHglsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6477), - [anon_sym_BSLASHglsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6477), - [anon_sym_BSLASHglsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6477), - [anon_sym_BSLASHglsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6477), - [anon_sym_BSLASHnewacronym] = ACTIONS(6477), - [anon_sym_BSLASHacrshort] = ACTIONS(6477), - [anon_sym_BSLASHAcrshort] = ACTIONS(6477), - [anon_sym_BSLASHACRshort] = ACTIONS(6477), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6477), - [anon_sym_BSLASHacrlong] = ACTIONS(6477), - [anon_sym_BSLASHAcrlong] = ACTIONS(6477), - [anon_sym_BSLASHACRlong] = ACTIONS(6477), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6477), - [anon_sym_BSLASHacrfull] = ACTIONS(6477), - [anon_sym_BSLASHAcrfull] = ACTIONS(6477), - [anon_sym_BSLASHACRfull] = ACTIONS(6477), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6477), - [anon_sym_BSLASHacs] = ACTIONS(6477), - [anon_sym_BSLASHAcs] = ACTIONS(6477), - [anon_sym_BSLASHacsp] = ACTIONS(6477), - [anon_sym_BSLASHAcsp] = ACTIONS(6477), - [anon_sym_BSLASHacl] = ACTIONS(6477), - [anon_sym_BSLASHAcl] = ACTIONS(6477), - [anon_sym_BSLASHaclp] = ACTIONS(6477), - [anon_sym_BSLASHAclp] = ACTIONS(6477), - [anon_sym_BSLASHacf] = ACTIONS(6477), - [anon_sym_BSLASHAcf] = ACTIONS(6477), - [anon_sym_BSLASHacfp] = ACTIONS(6477), - [anon_sym_BSLASHAcfp] = ACTIONS(6477), - [anon_sym_BSLASHac] = ACTIONS(6477), - [anon_sym_BSLASHAc] = ACTIONS(6477), - [anon_sym_BSLASHacp] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6477), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6477), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6477), - [anon_sym_BSLASHcolor] = ACTIONS(6477), - [anon_sym_BSLASHcolorbox] = ACTIONS(6477), - [anon_sym_BSLASHtextcolor] = ACTIONS(6477), - [anon_sym_BSLASHpagecolor] = ACTIONS(6477), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6477), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6477), - [anon_sym_BSLASHtext] = ACTIONS(6477), - [anon_sym_BSLASHintertext] = ACTIONS(6477), - [anon_sym_shortintertext] = ACTIONS(6477), - }, - [1758] = { - [sym_command_name] = ACTIONS(6481), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(6483), - [anon_sym_COMMA] = ACTIONS(6483), - [anon_sym_EQ] = ACTIONS(6483), - [anon_sym_LPAREN] = ACTIONS(6483), - [anon_sym_RPAREN] = ACTIONS(6483), - [anon_sym_LBRACE] = ACTIONS(6483), - [sym_word] = ACTIONS(6481), - [sym_placeholder] = ACTIONS(6483), - [anon_sym_PLUS] = ACTIONS(6483), - [anon_sym_DASH] = ACTIONS(6483), - [anon_sym_STAR] = ACTIONS(6483), - [anon_sym_SLASH] = ACTIONS(6483), - [anon_sym_LT] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6481), - [anon_sym_BANG] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6481), - [anon_sym_COLON] = ACTIONS(6481), - [anon_sym_SQUOTE] = ACTIONS(6481), - [anon_sym__] = ACTIONS(6483), - [anon_sym_CARET] = ACTIONS(6483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6483), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6483), - [anon_sym_DOLLAR] = ACTIONS(6481), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6483), - [anon_sym_BSLASHbegin] = ACTIONS(6481), - [anon_sym_BSLASHtitle] = ACTIONS(6481), - [anon_sym_BSLASHauthor] = ACTIONS(6481), - [anon_sym_BSLASHusepackage] = ACTIONS(6481), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6481), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6481), - [anon_sym_BSLASHinclude] = ACTIONS(6481), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6481), - [anon_sym_BSLASHinput] = ACTIONS(6481), - [anon_sym_BSLASHsubfile] = ACTIONS(6481), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6481), - [anon_sym_BSLASHbibliography] = ACTIONS(6481), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6481), - [anon_sym_BSLASHincludesvg] = ACTIONS(6481), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6481), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6481), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6481), - [anon_sym_BSLASHimport] = ACTIONS(6481), - [anon_sym_BSLASHsubimport] = ACTIONS(6481), - [anon_sym_BSLASHinputfrom] = ACTIONS(6481), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6481), - [anon_sym_BSLASHincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHcaption] = ACTIONS(6481), - [anon_sym_BSLASHcite] = ACTIONS(6481), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCite] = ACTIONS(6481), - [anon_sym_BSLASHnocite] = ACTIONS(6481), - [anon_sym_BSLASHcitet] = ACTIONS(6481), - [anon_sym_BSLASHcitep] = ACTIONS(6481), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteauthor] = ACTIONS(6481), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6481), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitetitle] = ACTIONS(6481), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteyear] = ACTIONS(6481), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitedate] = ACTIONS(6481), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteurl] = ACTIONS(6481), - [anon_sym_BSLASHfullcite] = ACTIONS(6481), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6481), - [anon_sym_BSLASHcitealt] = ACTIONS(6481), - [anon_sym_BSLASHcitealp] = ACTIONS(6481), - [anon_sym_BSLASHcitetext] = ACTIONS(6481), - [anon_sym_BSLASHparencite] = ACTIONS(6481), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHParencite] = ACTIONS(6481), - [anon_sym_BSLASHfootcite] = ACTIONS(6481), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6481), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6481), - [anon_sym_BSLASHtextcite] = ACTIONS(6481), - [anon_sym_BSLASHTextcite] = ACTIONS(6481), - [anon_sym_BSLASHsmartcite] = ACTIONS(6481), - [anon_sym_BSLASHSmartcite] = ACTIONS(6481), - [anon_sym_BSLASHsupercite] = ACTIONS(6481), - [anon_sym_BSLASHautocite] = ACTIONS(6481), - [anon_sym_BSLASHAutocite] = ACTIONS(6481), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHvolcite] = ACTIONS(6481), - [anon_sym_BSLASHVolcite] = ACTIONS(6481), - [anon_sym_BSLASHpvolcite] = ACTIONS(6481), - [anon_sym_BSLASHPvolcite] = ACTIONS(6481), - [anon_sym_BSLASHfvolcite] = ACTIONS(6481), - [anon_sym_BSLASHftvolcite] = ACTIONS(6481), - [anon_sym_BSLASHsvolcite] = ACTIONS(6481), - [anon_sym_BSLASHSvolcite] = ACTIONS(6481), - [anon_sym_BSLASHtvolcite] = ACTIONS(6481), - [anon_sym_BSLASHTvolcite] = ACTIONS(6481), - [anon_sym_BSLASHavolcite] = ACTIONS(6481), - [anon_sym_BSLASHAvolcite] = ACTIONS(6481), - [anon_sym_BSLASHnotecite] = ACTIONS(6481), - [anon_sym_BSLASHNotecite] = ACTIONS(6481), - [anon_sym_BSLASHpnotecite] = ACTIONS(6481), - [anon_sym_BSLASHPnotecite] = ACTIONS(6481), - [anon_sym_BSLASHfnotecite] = ACTIONS(6481), - [anon_sym_BSLASHlabel] = ACTIONS(6481), - [anon_sym_BSLASHref] = ACTIONS(6481), - [anon_sym_BSLASHeqref] = ACTIONS(6481), - [anon_sym_BSLASHvref] = ACTIONS(6481), - [anon_sym_BSLASHVref] = ACTIONS(6481), - [anon_sym_BSLASHautoref] = ACTIONS(6481), - [anon_sym_BSLASHpageref] = ACTIONS(6481), - [anon_sym_BSLASHcref] = ACTIONS(6481), - [anon_sym_BSLASHCref] = ACTIONS(6481), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnameCref] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHlabelcref] = ACTIONS(6481), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCrefrange] = ACTIONS(6481), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnewlabel] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6481), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6481), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6483), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHdef] = ACTIONS(6481), - [anon_sym_BSLASHlet] = ACTIONS(6481), - [anon_sym_BSLASHleft] = ACTIONS(6481), - [anon_sym_BSLASHbig] = ACTIONS(6481), - [anon_sym_BSLASHBig] = ACTIONS(6481), - [anon_sym_BSLASHbigg] = ACTIONS(6481), - [anon_sym_BSLASHBigg] = ACTIONS(6481), - [anon_sym_BSLASHbigl] = ACTIONS(6481), - [anon_sym_BSLASHBigl] = ACTIONS(6481), - [anon_sym_BSLASHbiggl] = ACTIONS(6481), - [anon_sym_BSLASHBiggl] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6481), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6481), - [anon_sym_BSLASHgls] = ACTIONS(6481), - [anon_sym_BSLASHGls] = ACTIONS(6481), - [anon_sym_BSLASHGLS] = ACTIONS(6481), - [anon_sym_BSLASHglspl] = ACTIONS(6481), - [anon_sym_BSLASHGlspl] = ACTIONS(6481), - [anon_sym_BSLASHGLSpl] = ACTIONS(6481), - [anon_sym_BSLASHglsdisp] = ACTIONS(6481), - [anon_sym_BSLASHglslink] = ACTIONS(6481), - [anon_sym_BSLASHglstext] = ACTIONS(6481), - [anon_sym_BSLASHGlstext] = ACTIONS(6481), - [anon_sym_BSLASHGLStext] = ACTIONS(6481), - [anon_sym_BSLASHglsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6481), - [anon_sym_BSLASHglsplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSplural] = ACTIONS(6481), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHglsname] = ACTIONS(6481), - [anon_sym_BSLASHGlsname] = ACTIONS(6481), - [anon_sym_BSLASHGLSname] = ACTIONS(6481), - [anon_sym_BSLASHglssymbol] = ACTIONS(6481), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6481), - [anon_sym_BSLASHglsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6481), - [anon_sym_BSLASHglsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6481), - [anon_sym_BSLASHglsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6481), - [anon_sym_BSLASHglsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6481), - [anon_sym_BSLASHglsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6481), - [anon_sym_BSLASHnewacronym] = ACTIONS(6481), - [anon_sym_BSLASHacrshort] = ACTIONS(6481), - [anon_sym_BSLASHAcrshort] = ACTIONS(6481), - [anon_sym_BSLASHACRshort] = ACTIONS(6481), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6481), - [anon_sym_BSLASHacrlong] = ACTIONS(6481), - [anon_sym_BSLASHAcrlong] = ACTIONS(6481), - [anon_sym_BSLASHACRlong] = ACTIONS(6481), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6481), - [anon_sym_BSLASHacrfull] = ACTIONS(6481), - [anon_sym_BSLASHAcrfull] = ACTIONS(6481), - [anon_sym_BSLASHACRfull] = ACTIONS(6481), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6481), - [anon_sym_BSLASHacs] = ACTIONS(6481), - [anon_sym_BSLASHAcs] = ACTIONS(6481), - [anon_sym_BSLASHacsp] = ACTIONS(6481), - [anon_sym_BSLASHAcsp] = ACTIONS(6481), - [anon_sym_BSLASHacl] = ACTIONS(6481), - [anon_sym_BSLASHAcl] = ACTIONS(6481), - [anon_sym_BSLASHaclp] = ACTIONS(6481), - [anon_sym_BSLASHAclp] = ACTIONS(6481), - [anon_sym_BSLASHacf] = ACTIONS(6481), - [anon_sym_BSLASHAcf] = ACTIONS(6481), - [anon_sym_BSLASHacfp] = ACTIONS(6481), - [anon_sym_BSLASHAcfp] = ACTIONS(6481), - [anon_sym_BSLASHac] = ACTIONS(6481), - [anon_sym_BSLASHAc] = ACTIONS(6481), - [anon_sym_BSLASHacp] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6481), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6481), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6481), - [anon_sym_BSLASHcolor] = ACTIONS(6481), - [anon_sym_BSLASHcolorbox] = ACTIONS(6481), - [anon_sym_BSLASHtextcolor] = ACTIONS(6481), - [anon_sym_BSLASHpagecolor] = ACTIONS(6481), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6481), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6481), - [anon_sym_BSLASHtext] = ACTIONS(6481), - [anon_sym_BSLASHintertext] = ACTIONS(6481), - [anon_sym_shortintertext] = ACTIONS(6481), - }, - [1759] = { - [sym_command_name] = ACTIONS(6485), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6485), - [anon_sym_LBRACK] = ACTIONS(6487), - [anon_sym_RBRACK] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(6487), - [anon_sym_EQ] = ACTIONS(6487), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(6487), - [anon_sym_LBRACE] = ACTIONS(6487), - [sym_word] = ACTIONS(6485), - [sym_placeholder] = ACTIONS(6487), - [anon_sym_PLUS] = ACTIONS(6487), - [anon_sym_DASH] = ACTIONS(6487), - [anon_sym_STAR] = ACTIONS(6487), - [anon_sym_SLASH] = ACTIONS(6487), - [anon_sym_LT] = ACTIONS(6485), - [anon_sym_GT] = ACTIONS(6485), - [anon_sym_BANG] = ACTIONS(6485), - [anon_sym_PIPE] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6485), - [anon_sym_SQUOTE] = ACTIONS(6485), - [anon_sym__] = ACTIONS(6487), - [anon_sym_CARET] = ACTIONS(6487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6487), - [anon_sym_DOLLAR] = ACTIONS(6485), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6487), - [anon_sym_BSLASHbegin] = ACTIONS(6485), - [anon_sym_BSLASHtitle] = ACTIONS(6485), - [anon_sym_BSLASHauthor] = ACTIONS(6485), - [anon_sym_BSLASHusepackage] = ACTIONS(6485), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6485), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6485), - [anon_sym_BSLASHinclude] = ACTIONS(6485), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6485), - [anon_sym_BSLASHinput] = ACTIONS(6485), - [anon_sym_BSLASHsubfile] = ACTIONS(6485), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6485), - [anon_sym_BSLASHbibliography] = ACTIONS(6485), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6485), - [anon_sym_BSLASHincludesvg] = ACTIONS(6485), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6485), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6485), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6485), - [anon_sym_BSLASHimport] = ACTIONS(6485), - [anon_sym_BSLASHsubimport] = ACTIONS(6485), - [anon_sym_BSLASHinputfrom] = ACTIONS(6485), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6485), - [anon_sym_BSLASHincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHcaption] = ACTIONS(6485), - [anon_sym_BSLASHcite] = ACTIONS(6485), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCite] = ACTIONS(6485), - [anon_sym_BSLASHnocite] = ACTIONS(6485), - [anon_sym_BSLASHcitet] = ACTIONS(6485), - [anon_sym_BSLASHcitep] = ACTIONS(6485), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteauthor] = ACTIONS(6485), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6485), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitetitle] = ACTIONS(6485), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteyear] = ACTIONS(6485), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitedate] = ACTIONS(6485), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteurl] = ACTIONS(6485), - [anon_sym_BSLASHfullcite] = ACTIONS(6485), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6485), - [anon_sym_BSLASHcitealt] = ACTIONS(6485), - [anon_sym_BSLASHcitealp] = ACTIONS(6485), - [anon_sym_BSLASHcitetext] = ACTIONS(6485), - [anon_sym_BSLASHparencite] = ACTIONS(6485), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHParencite] = ACTIONS(6485), - [anon_sym_BSLASHfootcite] = ACTIONS(6485), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6485), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6485), - [anon_sym_BSLASHtextcite] = ACTIONS(6485), - [anon_sym_BSLASHTextcite] = ACTIONS(6485), - [anon_sym_BSLASHsmartcite] = ACTIONS(6485), - [anon_sym_BSLASHSmartcite] = ACTIONS(6485), - [anon_sym_BSLASHsupercite] = ACTIONS(6485), - [anon_sym_BSLASHautocite] = ACTIONS(6485), - [anon_sym_BSLASHAutocite] = ACTIONS(6485), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHvolcite] = ACTIONS(6485), - [anon_sym_BSLASHVolcite] = ACTIONS(6485), - [anon_sym_BSLASHpvolcite] = ACTIONS(6485), - [anon_sym_BSLASHPvolcite] = ACTIONS(6485), - [anon_sym_BSLASHfvolcite] = ACTIONS(6485), - [anon_sym_BSLASHftvolcite] = ACTIONS(6485), - [anon_sym_BSLASHsvolcite] = ACTIONS(6485), - [anon_sym_BSLASHSvolcite] = ACTIONS(6485), - [anon_sym_BSLASHtvolcite] = ACTIONS(6485), - [anon_sym_BSLASHTvolcite] = ACTIONS(6485), - [anon_sym_BSLASHavolcite] = ACTIONS(6485), - [anon_sym_BSLASHAvolcite] = ACTIONS(6485), - [anon_sym_BSLASHnotecite] = ACTIONS(6485), - [anon_sym_BSLASHNotecite] = ACTIONS(6485), - [anon_sym_BSLASHpnotecite] = ACTIONS(6485), - [anon_sym_BSLASHPnotecite] = ACTIONS(6485), - [anon_sym_BSLASHfnotecite] = ACTIONS(6485), - [anon_sym_BSLASHlabel] = ACTIONS(6485), - [anon_sym_BSLASHref] = ACTIONS(6485), - [anon_sym_BSLASHeqref] = ACTIONS(6485), - [anon_sym_BSLASHvref] = ACTIONS(6485), - [anon_sym_BSLASHVref] = ACTIONS(6485), - [anon_sym_BSLASHautoref] = ACTIONS(6485), - [anon_sym_BSLASHpageref] = ACTIONS(6485), - [anon_sym_BSLASHcref] = ACTIONS(6485), - [anon_sym_BSLASHCref] = ACTIONS(6485), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnameCref] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHlabelcref] = ACTIONS(6485), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCrefrange] = ACTIONS(6485), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnewlabel] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6485), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6485), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6487), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHdef] = ACTIONS(6485), - [anon_sym_BSLASHlet] = ACTIONS(6485), - [anon_sym_BSLASHleft] = ACTIONS(6485), - [anon_sym_BSLASHbig] = ACTIONS(6485), - [anon_sym_BSLASHBig] = ACTIONS(6485), - [anon_sym_BSLASHbigg] = ACTIONS(6485), - [anon_sym_BSLASHBigg] = ACTIONS(6485), - [anon_sym_BSLASHbigl] = ACTIONS(6485), - [anon_sym_BSLASHBigl] = ACTIONS(6485), - [anon_sym_BSLASHbiggl] = ACTIONS(6485), - [anon_sym_BSLASHBiggl] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6485), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6485), - [anon_sym_BSLASHgls] = ACTIONS(6485), - [anon_sym_BSLASHGls] = ACTIONS(6485), - [anon_sym_BSLASHGLS] = ACTIONS(6485), - [anon_sym_BSLASHglspl] = ACTIONS(6485), - [anon_sym_BSLASHGlspl] = ACTIONS(6485), - [anon_sym_BSLASHGLSpl] = ACTIONS(6485), - [anon_sym_BSLASHglsdisp] = ACTIONS(6485), - [anon_sym_BSLASHglslink] = ACTIONS(6485), - [anon_sym_BSLASHglstext] = ACTIONS(6485), - [anon_sym_BSLASHGlstext] = ACTIONS(6485), - [anon_sym_BSLASHGLStext] = ACTIONS(6485), - [anon_sym_BSLASHglsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6485), - [anon_sym_BSLASHglsplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSplural] = ACTIONS(6485), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHglsname] = ACTIONS(6485), - [anon_sym_BSLASHGlsname] = ACTIONS(6485), - [anon_sym_BSLASHGLSname] = ACTIONS(6485), - [anon_sym_BSLASHglssymbol] = ACTIONS(6485), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6485), - [anon_sym_BSLASHglsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6485), - [anon_sym_BSLASHglsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6485), - [anon_sym_BSLASHglsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6485), - [anon_sym_BSLASHglsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6485), - [anon_sym_BSLASHglsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6485), - [anon_sym_BSLASHnewacronym] = ACTIONS(6485), - [anon_sym_BSLASHacrshort] = ACTIONS(6485), - [anon_sym_BSLASHAcrshort] = ACTIONS(6485), - [anon_sym_BSLASHACRshort] = ACTIONS(6485), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6485), - [anon_sym_BSLASHacrlong] = ACTIONS(6485), - [anon_sym_BSLASHAcrlong] = ACTIONS(6485), - [anon_sym_BSLASHACRlong] = ACTIONS(6485), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6485), - [anon_sym_BSLASHacrfull] = ACTIONS(6485), - [anon_sym_BSLASHAcrfull] = ACTIONS(6485), - [anon_sym_BSLASHACRfull] = ACTIONS(6485), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6485), - [anon_sym_BSLASHacs] = ACTIONS(6485), - [anon_sym_BSLASHAcs] = ACTIONS(6485), - [anon_sym_BSLASHacsp] = ACTIONS(6485), - [anon_sym_BSLASHAcsp] = ACTIONS(6485), - [anon_sym_BSLASHacl] = ACTIONS(6485), - [anon_sym_BSLASHAcl] = ACTIONS(6485), - [anon_sym_BSLASHaclp] = ACTIONS(6485), - [anon_sym_BSLASHAclp] = ACTIONS(6485), - [anon_sym_BSLASHacf] = ACTIONS(6485), - [anon_sym_BSLASHAcf] = ACTIONS(6485), - [anon_sym_BSLASHacfp] = ACTIONS(6485), - [anon_sym_BSLASHAcfp] = ACTIONS(6485), - [anon_sym_BSLASHac] = ACTIONS(6485), - [anon_sym_BSLASHAc] = ACTIONS(6485), - [anon_sym_BSLASHacp] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6485), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6485), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6485), - [anon_sym_BSLASHcolor] = ACTIONS(6485), - [anon_sym_BSLASHcolorbox] = ACTIONS(6485), - [anon_sym_BSLASHtextcolor] = ACTIONS(6485), - [anon_sym_BSLASHpagecolor] = ACTIONS(6485), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6485), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6485), - [anon_sym_BSLASHtext] = ACTIONS(6485), - [anon_sym_BSLASHintertext] = ACTIONS(6485), - [anon_sym_shortintertext] = ACTIONS(6485), - }, - [1760] = { - [sym_command_name] = ACTIONS(6345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6345), - [anon_sym_LBRACK] = ACTIONS(6347), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_EQ] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_LBRACE] = ACTIONS(6347), - [sym_word] = ACTIONS(6345), - [sym_placeholder] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6345), - [anon_sym_GT] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(6345), - [anon_sym_PIPE] = ACTIONS(6345), - [anon_sym_COLON] = ACTIONS(6345), - [anon_sym_SQUOTE] = ACTIONS(6345), - [anon_sym__] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6347), - [anon_sym_DOLLAR] = ACTIONS(6345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6347), - [anon_sym_BSLASHbegin] = ACTIONS(6345), - [anon_sym_BSLASHtitle] = ACTIONS(6345), - [anon_sym_BSLASHauthor] = ACTIONS(6345), - [anon_sym_BSLASHusepackage] = ACTIONS(6345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6345), - [anon_sym_BSLASHinclude] = ACTIONS(6345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6345), - [anon_sym_BSLASHinput] = ACTIONS(6345), - [anon_sym_BSLASHsubfile] = ACTIONS(6345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6345), - [anon_sym_BSLASHbibliography] = ACTIONS(6345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6345), - [anon_sym_BSLASHincludesvg] = ACTIONS(6345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6345), - [anon_sym_BSLASHimport] = ACTIONS(6345), - [anon_sym_BSLASHsubimport] = ACTIONS(6345), - [anon_sym_BSLASHinputfrom] = ACTIONS(6345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6345), - [anon_sym_BSLASHincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHcaption] = ACTIONS(6345), - [anon_sym_BSLASHcite] = ACTIONS(6345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCite] = ACTIONS(6345), - [anon_sym_BSLASHnocite] = ACTIONS(6345), - [anon_sym_BSLASHcitet] = ACTIONS(6345), - [anon_sym_BSLASHcitep] = ACTIONS(6345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteauthor] = ACTIONS(6345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitetitle] = ACTIONS(6345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteyear] = ACTIONS(6345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitedate] = ACTIONS(6345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteurl] = ACTIONS(6345), - [anon_sym_BSLASHfullcite] = ACTIONS(6345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6345), - [anon_sym_BSLASHcitealt] = ACTIONS(6345), - [anon_sym_BSLASHcitealp] = ACTIONS(6345), - [anon_sym_BSLASHcitetext] = ACTIONS(6345), - [anon_sym_BSLASHparencite] = ACTIONS(6345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHParencite] = ACTIONS(6345), - [anon_sym_BSLASHfootcite] = ACTIONS(6345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6345), - [anon_sym_BSLASHtextcite] = ACTIONS(6345), - [anon_sym_BSLASHTextcite] = ACTIONS(6345), - [anon_sym_BSLASHsmartcite] = ACTIONS(6345), - [anon_sym_BSLASHSmartcite] = ACTIONS(6345), - [anon_sym_BSLASHsupercite] = ACTIONS(6345), - [anon_sym_BSLASHautocite] = ACTIONS(6345), - [anon_sym_BSLASHAutocite] = ACTIONS(6345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHvolcite] = ACTIONS(6345), - [anon_sym_BSLASHVolcite] = ACTIONS(6345), - [anon_sym_BSLASHpvolcite] = ACTIONS(6345), - [anon_sym_BSLASHPvolcite] = ACTIONS(6345), - [anon_sym_BSLASHfvolcite] = ACTIONS(6345), - [anon_sym_BSLASHftvolcite] = ACTIONS(6345), - [anon_sym_BSLASHsvolcite] = ACTIONS(6345), - [anon_sym_BSLASHSvolcite] = ACTIONS(6345), - [anon_sym_BSLASHtvolcite] = ACTIONS(6345), - [anon_sym_BSLASHTvolcite] = ACTIONS(6345), - [anon_sym_BSLASHavolcite] = ACTIONS(6345), - [anon_sym_BSLASHAvolcite] = ACTIONS(6345), - [anon_sym_BSLASHnotecite] = ACTIONS(6345), - [anon_sym_BSLASHNotecite] = ACTIONS(6345), - [anon_sym_BSLASHpnotecite] = ACTIONS(6345), - [anon_sym_BSLASHPnotecite] = ACTIONS(6345), - [anon_sym_BSLASHfnotecite] = ACTIONS(6345), - [anon_sym_BSLASHlabel] = ACTIONS(6345), - [anon_sym_BSLASHref] = ACTIONS(6345), - [anon_sym_BSLASHeqref] = ACTIONS(6345), - [anon_sym_BSLASHvref] = ACTIONS(6345), - [anon_sym_BSLASHVref] = ACTIONS(6345), - [anon_sym_BSLASHautoref] = ACTIONS(6345), - [anon_sym_BSLASHpageref] = ACTIONS(6345), - [anon_sym_BSLASHcref] = ACTIONS(6345), - [anon_sym_BSLASHCref] = ACTIONS(6345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnameCref] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHlabelcref] = ACTIONS(6345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCrefrange] = ACTIONS(6345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnewlabel] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6347), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHdef] = ACTIONS(6345), - [anon_sym_BSLASHlet] = ACTIONS(6345), - [anon_sym_BSLASHleft] = ACTIONS(6345), - [anon_sym_BSLASHbig] = ACTIONS(6345), - [anon_sym_BSLASHBig] = ACTIONS(6345), - [anon_sym_BSLASHbigg] = ACTIONS(6345), - [anon_sym_BSLASHBigg] = ACTIONS(6345), - [anon_sym_BSLASHbigl] = ACTIONS(6345), - [anon_sym_BSLASHBigl] = ACTIONS(6345), - [anon_sym_BSLASHbiggl] = ACTIONS(6345), - [anon_sym_BSLASHBiggl] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6345), - [anon_sym_BSLASHgls] = ACTIONS(6345), - [anon_sym_BSLASHGls] = ACTIONS(6345), - [anon_sym_BSLASHGLS] = ACTIONS(6345), - [anon_sym_BSLASHglspl] = ACTIONS(6345), - [anon_sym_BSLASHGlspl] = ACTIONS(6345), - [anon_sym_BSLASHGLSpl] = ACTIONS(6345), - [anon_sym_BSLASHglsdisp] = ACTIONS(6345), - [anon_sym_BSLASHglslink] = ACTIONS(6345), - [anon_sym_BSLASHglstext] = ACTIONS(6345), - [anon_sym_BSLASHGlstext] = ACTIONS(6345), - [anon_sym_BSLASHGLStext] = ACTIONS(6345), - [anon_sym_BSLASHglsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6345), - [anon_sym_BSLASHglsplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSplural] = ACTIONS(6345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHglsname] = ACTIONS(6345), - [anon_sym_BSLASHGlsname] = ACTIONS(6345), - [anon_sym_BSLASHGLSname] = ACTIONS(6345), - [anon_sym_BSLASHglssymbol] = ACTIONS(6345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6345), - [anon_sym_BSLASHglsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6345), - [anon_sym_BSLASHglsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6345), - [anon_sym_BSLASHglsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6345), - [anon_sym_BSLASHglsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6345), - [anon_sym_BSLASHglsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6345), - [anon_sym_BSLASHnewacronym] = ACTIONS(6345), - [anon_sym_BSLASHacrshort] = ACTIONS(6345), - [anon_sym_BSLASHAcrshort] = ACTIONS(6345), - [anon_sym_BSLASHACRshort] = ACTIONS(6345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6345), - [anon_sym_BSLASHacrlong] = ACTIONS(6345), - [anon_sym_BSLASHAcrlong] = ACTIONS(6345), - [anon_sym_BSLASHACRlong] = ACTIONS(6345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6345), - [anon_sym_BSLASHacrfull] = ACTIONS(6345), - [anon_sym_BSLASHAcrfull] = ACTIONS(6345), - [anon_sym_BSLASHACRfull] = ACTIONS(6345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6345), - [anon_sym_BSLASHacs] = ACTIONS(6345), - [anon_sym_BSLASHAcs] = ACTIONS(6345), - [anon_sym_BSLASHacsp] = ACTIONS(6345), - [anon_sym_BSLASHAcsp] = ACTIONS(6345), - [anon_sym_BSLASHacl] = ACTIONS(6345), - [anon_sym_BSLASHAcl] = ACTIONS(6345), - [anon_sym_BSLASHaclp] = ACTIONS(6345), - [anon_sym_BSLASHAclp] = ACTIONS(6345), - [anon_sym_BSLASHacf] = ACTIONS(6345), - [anon_sym_BSLASHAcf] = ACTIONS(6345), - [anon_sym_BSLASHacfp] = ACTIONS(6345), - [anon_sym_BSLASHAcfp] = ACTIONS(6345), - [anon_sym_BSLASHac] = ACTIONS(6345), - [anon_sym_BSLASHAc] = ACTIONS(6345), - [anon_sym_BSLASHacp] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6345), - [anon_sym_BSLASHcolor] = ACTIONS(6345), - [anon_sym_BSLASHcolorbox] = ACTIONS(6345), - [anon_sym_BSLASHtextcolor] = ACTIONS(6345), - [anon_sym_BSLASHpagecolor] = ACTIONS(6345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6345), - [anon_sym_BSLASHtext] = ACTIONS(6345), - [anon_sym_BSLASHintertext] = ACTIONS(6345), - [anon_sym_shortintertext] = ACTIONS(6345), - }, - [1761] = { - [sym_command_name] = ACTIONS(6349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6349), - [anon_sym_LBRACK] = ACTIONS(6351), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_EQ] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_LBRACE] = ACTIONS(6351), - [sym_word] = ACTIONS(6349), - [sym_placeholder] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6351), - [anon_sym_DASH] = ACTIONS(6351), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_SQUOTE] = ACTIONS(6349), - [anon_sym__] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6351), - [anon_sym_DOLLAR] = ACTIONS(6349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6351), - [anon_sym_BSLASHbegin] = ACTIONS(6349), - [anon_sym_BSLASHtitle] = ACTIONS(6349), - [anon_sym_BSLASHauthor] = ACTIONS(6349), - [anon_sym_BSLASHusepackage] = ACTIONS(6349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6349), - [anon_sym_BSLASHinclude] = ACTIONS(6349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6349), - [anon_sym_BSLASHinput] = ACTIONS(6349), - [anon_sym_BSLASHsubfile] = ACTIONS(6349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6349), - [anon_sym_BSLASHbibliography] = ACTIONS(6349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6349), - [anon_sym_BSLASHincludesvg] = ACTIONS(6349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6349), - [anon_sym_BSLASHimport] = ACTIONS(6349), - [anon_sym_BSLASHsubimport] = ACTIONS(6349), - [anon_sym_BSLASHinputfrom] = ACTIONS(6349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6349), - [anon_sym_BSLASHincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHcaption] = ACTIONS(6349), - [anon_sym_BSLASHcite] = ACTIONS(6349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCite] = ACTIONS(6349), - [anon_sym_BSLASHnocite] = ACTIONS(6349), - [anon_sym_BSLASHcitet] = ACTIONS(6349), - [anon_sym_BSLASHcitep] = ACTIONS(6349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteauthor] = ACTIONS(6349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitetitle] = ACTIONS(6349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteyear] = ACTIONS(6349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitedate] = ACTIONS(6349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteurl] = ACTIONS(6349), - [anon_sym_BSLASHfullcite] = ACTIONS(6349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6349), - [anon_sym_BSLASHcitealt] = ACTIONS(6349), - [anon_sym_BSLASHcitealp] = ACTIONS(6349), - [anon_sym_BSLASHcitetext] = ACTIONS(6349), - [anon_sym_BSLASHparencite] = ACTIONS(6349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHParencite] = ACTIONS(6349), - [anon_sym_BSLASHfootcite] = ACTIONS(6349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6349), - [anon_sym_BSLASHtextcite] = ACTIONS(6349), - [anon_sym_BSLASHTextcite] = ACTIONS(6349), - [anon_sym_BSLASHsmartcite] = ACTIONS(6349), - [anon_sym_BSLASHSmartcite] = ACTIONS(6349), - [anon_sym_BSLASHsupercite] = ACTIONS(6349), - [anon_sym_BSLASHautocite] = ACTIONS(6349), - [anon_sym_BSLASHAutocite] = ACTIONS(6349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHvolcite] = ACTIONS(6349), - [anon_sym_BSLASHVolcite] = ACTIONS(6349), - [anon_sym_BSLASHpvolcite] = ACTIONS(6349), - [anon_sym_BSLASHPvolcite] = ACTIONS(6349), - [anon_sym_BSLASHfvolcite] = ACTIONS(6349), - [anon_sym_BSLASHftvolcite] = ACTIONS(6349), - [anon_sym_BSLASHsvolcite] = ACTIONS(6349), - [anon_sym_BSLASHSvolcite] = ACTIONS(6349), - [anon_sym_BSLASHtvolcite] = ACTIONS(6349), - [anon_sym_BSLASHTvolcite] = ACTIONS(6349), - [anon_sym_BSLASHavolcite] = ACTIONS(6349), - [anon_sym_BSLASHAvolcite] = ACTIONS(6349), - [anon_sym_BSLASHnotecite] = ACTIONS(6349), - [anon_sym_BSLASHNotecite] = ACTIONS(6349), - [anon_sym_BSLASHpnotecite] = ACTIONS(6349), - [anon_sym_BSLASHPnotecite] = ACTIONS(6349), - [anon_sym_BSLASHfnotecite] = ACTIONS(6349), - [anon_sym_BSLASHlabel] = ACTIONS(6349), - [anon_sym_BSLASHref] = ACTIONS(6349), - [anon_sym_BSLASHeqref] = ACTIONS(6349), - [anon_sym_BSLASHvref] = ACTIONS(6349), - [anon_sym_BSLASHVref] = ACTIONS(6349), - [anon_sym_BSLASHautoref] = ACTIONS(6349), - [anon_sym_BSLASHpageref] = ACTIONS(6349), - [anon_sym_BSLASHcref] = ACTIONS(6349), - [anon_sym_BSLASHCref] = ACTIONS(6349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnameCref] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHlabelcref] = ACTIONS(6349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCrefrange] = ACTIONS(6349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnewlabel] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6351), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHdef] = ACTIONS(6349), - [anon_sym_BSLASHlet] = ACTIONS(6349), - [anon_sym_BSLASHleft] = ACTIONS(6349), - [anon_sym_BSLASHbig] = ACTIONS(6349), - [anon_sym_BSLASHBig] = ACTIONS(6349), - [anon_sym_BSLASHbigg] = ACTIONS(6349), - [anon_sym_BSLASHBigg] = ACTIONS(6349), - [anon_sym_BSLASHbigl] = ACTIONS(6349), - [anon_sym_BSLASHBigl] = ACTIONS(6349), - [anon_sym_BSLASHbiggl] = ACTIONS(6349), - [anon_sym_BSLASHBiggl] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6349), - [anon_sym_BSLASHgls] = ACTIONS(6349), - [anon_sym_BSLASHGls] = ACTIONS(6349), - [anon_sym_BSLASHGLS] = ACTIONS(6349), - [anon_sym_BSLASHglspl] = ACTIONS(6349), - [anon_sym_BSLASHGlspl] = ACTIONS(6349), - [anon_sym_BSLASHGLSpl] = ACTIONS(6349), - [anon_sym_BSLASHglsdisp] = ACTIONS(6349), - [anon_sym_BSLASHglslink] = ACTIONS(6349), - [anon_sym_BSLASHglstext] = ACTIONS(6349), - [anon_sym_BSLASHGlstext] = ACTIONS(6349), - [anon_sym_BSLASHGLStext] = ACTIONS(6349), - [anon_sym_BSLASHglsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6349), - [anon_sym_BSLASHglsplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSplural] = ACTIONS(6349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHglsname] = ACTIONS(6349), - [anon_sym_BSLASHGlsname] = ACTIONS(6349), - [anon_sym_BSLASHGLSname] = ACTIONS(6349), - [anon_sym_BSLASHglssymbol] = ACTIONS(6349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6349), - [anon_sym_BSLASHglsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6349), - [anon_sym_BSLASHglsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6349), - [anon_sym_BSLASHglsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6349), - [anon_sym_BSLASHglsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6349), - [anon_sym_BSLASHglsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6349), - [anon_sym_BSLASHnewacronym] = ACTIONS(6349), - [anon_sym_BSLASHacrshort] = ACTIONS(6349), - [anon_sym_BSLASHAcrshort] = ACTIONS(6349), - [anon_sym_BSLASHACRshort] = ACTIONS(6349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6349), - [anon_sym_BSLASHacrlong] = ACTIONS(6349), - [anon_sym_BSLASHAcrlong] = ACTIONS(6349), - [anon_sym_BSLASHACRlong] = ACTIONS(6349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6349), - [anon_sym_BSLASHacrfull] = ACTIONS(6349), - [anon_sym_BSLASHAcrfull] = ACTIONS(6349), - [anon_sym_BSLASHACRfull] = ACTIONS(6349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6349), - [anon_sym_BSLASHacs] = ACTIONS(6349), - [anon_sym_BSLASHAcs] = ACTIONS(6349), - [anon_sym_BSLASHacsp] = ACTIONS(6349), - [anon_sym_BSLASHAcsp] = ACTIONS(6349), - [anon_sym_BSLASHacl] = ACTIONS(6349), - [anon_sym_BSLASHAcl] = ACTIONS(6349), - [anon_sym_BSLASHaclp] = ACTIONS(6349), - [anon_sym_BSLASHAclp] = ACTIONS(6349), - [anon_sym_BSLASHacf] = ACTIONS(6349), - [anon_sym_BSLASHAcf] = ACTIONS(6349), - [anon_sym_BSLASHacfp] = ACTIONS(6349), - [anon_sym_BSLASHAcfp] = ACTIONS(6349), - [anon_sym_BSLASHac] = ACTIONS(6349), - [anon_sym_BSLASHAc] = ACTIONS(6349), - [anon_sym_BSLASHacp] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6349), - [anon_sym_BSLASHcolor] = ACTIONS(6349), - [anon_sym_BSLASHcolorbox] = ACTIONS(6349), - [anon_sym_BSLASHtextcolor] = ACTIONS(6349), - [anon_sym_BSLASHpagecolor] = ACTIONS(6349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6349), - [anon_sym_BSLASHtext] = ACTIONS(6349), - [anon_sym_BSLASHintertext] = ACTIONS(6349), - [anon_sym_shortintertext] = ACTIONS(6349), - }, - [1762] = { - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHbegin] = ACTIONS(145), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [1763] = { - [sym_command_name] = ACTIONS(6489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6489), - [anon_sym_LBRACK] = ACTIONS(6491), - [anon_sym_RBRACK] = ACTIONS(6491), - [anon_sym_COMMA] = ACTIONS(6491), - [anon_sym_EQ] = ACTIONS(6491), - [anon_sym_LPAREN] = ACTIONS(6491), - [anon_sym_RPAREN] = ACTIONS(6491), - [anon_sym_LBRACE] = ACTIONS(6491), - [sym_word] = ACTIONS(6489), - [sym_placeholder] = ACTIONS(6491), - [anon_sym_PLUS] = ACTIONS(6491), - [anon_sym_DASH] = ACTIONS(6491), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_LT] = ACTIONS(6489), - [anon_sym_GT] = ACTIONS(6489), - [anon_sym_BANG] = ACTIONS(6489), - [anon_sym_PIPE] = ACTIONS(6489), - [anon_sym_COLON] = ACTIONS(6489), - [anon_sym_SQUOTE] = ACTIONS(6489), - [anon_sym__] = ACTIONS(6491), - [anon_sym_CARET] = ACTIONS(6491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6491), - [anon_sym_DOLLAR] = ACTIONS(6489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6491), - [anon_sym_BSLASHbegin] = ACTIONS(6489), - [anon_sym_BSLASHtitle] = ACTIONS(6489), - [anon_sym_BSLASHauthor] = ACTIONS(6489), - [anon_sym_BSLASHusepackage] = ACTIONS(6489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6489), - [anon_sym_BSLASHinclude] = ACTIONS(6489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6489), - [anon_sym_BSLASHinput] = ACTIONS(6489), - [anon_sym_BSLASHsubfile] = ACTIONS(6489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6489), - [anon_sym_BSLASHbibliography] = ACTIONS(6489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6489), - [anon_sym_BSLASHincludesvg] = ACTIONS(6489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6489), - [anon_sym_BSLASHimport] = ACTIONS(6489), - [anon_sym_BSLASHsubimport] = ACTIONS(6489), - [anon_sym_BSLASHinputfrom] = ACTIONS(6489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6489), - [anon_sym_BSLASHincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHcaption] = ACTIONS(6489), - [anon_sym_BSLASHcite] = ACTIONS(6489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCite] = ACTIONS(6489), - [anon_sym_BSLASHnocite] = ACTIONS(6489), - [anon_sym_BSLASHcitet] = ACTIONS(6489), - [anon_sym_BSLASHcitep] = ACTIONS(6489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteauthor] = ACTIONS(6489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitetitle] = ACTIONS(6489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteyear] = ACTIONS(6489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitedate] = ACTIONS(6489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteurl] = ACTIONS(6489), - [anon_sym_BSLASHfullcite] = ACTIONS(6489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6489), - [anon_sym_BSLASHcitealt] = ACTIONS(6489), - [anon_sym_BSLASHcitealp] = ACTIONS(6489), - [anon_sym_BSLASHcitetext] = ACTIONS(6489), - [anon_sym_BSLASHparencite] = ACTIONS(6489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHParencite] = ACTIONS(6489), - [anon_sym_BSLASHfootcite] = ACTIONS(6489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6489), - [anon_sym_BSLASHtextcite] = ACTIONS(6489), - [anon_sym_BSLASHTextcite] = ACTIONS(6489), - [anon_sym_BSLASHsmartcite] = ACTIONS(6489), - [anon_sym_BSLASHSmartcite] = ACTIONS(6489), - [anon_sym_BSLASHsupercite] = ACTIONS(6489), - [anon_sym_BSLASHautocite] = ACTIONS(6489), - [anon_sym_BSLASHAutocite] = ACTIONS(6489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHvolcite] = ACTIONS(6489), - [anon_sym_BSLASHVolcite] = ACTIONS(6489), - [anon_sym_BSLASHpvolcite] = ACTIONS(6489), - [anon_sym_BSLASHPvolcite] = ACTIONS(6489), - [anon_sym_BSLASHfvolcite] = ACTIONS(6489), - [anon_sym_BSLASHftvolcite] = ACTIONS(6489), - [anon_sym_BSLASHsvolcite] = ACTIONS(6489), - [anon_sym_BSLASHSvolcite] = ACTIONS(6489), - [anon_sym_BSLASHtvolcite] = ACTIONS(6489), - [anon_sym_BSLASHTvolcite] = ACTIONS(6489), - [anon_sym_BSLASHavolcite] = ACTIONS(6489), - [anon_sym_BSLASHAvolcite] = ACTIONS(6489), - [anon_sym_BSLASHnotecite] = ACTIONS(6489), - [anon_sym_BSLASHNotecite] = ACTIONS(6489), - [anon_sym_BSLASHpnotecite] = ACTIONS(6489), - [anon_sym_BSLASHPnotecite] = ACTIONS(6489), - [anon_sym_BSLASHfnotecite] = ACTIONS(6489), - [anon_sym_BSLASHlabel] = ACTIONS(6489), - [anon_sym_BSLASHref] = ACTIONS(6489), - [anon_sym_BSLASHeqref] = ACTIONS(6489), - [anon_sym_BSLASHvref] = ACTIONS(6489), - [anon_sym_BSLASHVref] = ACTIONS(6489), - [anon_sym_BSLASHautoref] = ACTIONS(6489), - [anon_sym_BSLASHpageref] = ACTIONS(6489), - [anon_sym_BSLASHcref] = ACTIONS(6489), - [anon_sym_BSLASHCref] = ACTIONS(6489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnameCref] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHlabelcref] = ACTIONS(6489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCrefrange] = ACTIONS(6489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnewlabel] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6491), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHdef] = ACTIONS(6489), - [anon_sym_BSLASHlet] = ACTIONS(6489), - [anon_sym_BSLASHleft] = ACTIONS(6489), - [anon_sym_BSLASHbig] = ACTIONS(6489), - [anon_sym_BSLASHBig] = ACTIONS(6489), - [anon_sym_BSLASHbigg] = ACTIONS(6489), - [anon_sym_BSLASHBigg] = ACTIONS(6489), - [anon_sym_BSLASHbigl] = ACTIONS(6489), - [anon_sym_BSLASHBigl] = ACTIONS(6489), - [anon_sym_BSLASHbiggl] = ACTIONS(6489), - [anon_sym_BSLASHBiggl] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6489), - [anon_sym_BSLASHgls] = ACTIONS(6489), - [anon_sym_BSLASHGls] = ACTIONS(6489), - [anon_sym_BSLASHGLS] = ACTIONS(6489), - [anon_sym_BSLASHglspl] = ACTIONS(6489), - [anon_sym_BSLASHGlspl] = ACTIONS(6489), - [anon_sym_BSLASHGLSpl] = ACTIONS(6489), - [anon_sym_BSLASHglsdisp] = ACTIONS(6489), - [anon_sym_BSLASHglslink] = ACTIONS(6489), - [anon_sym_BSLASHglstext] = ACTIONS(6489), - [anon_sym_BSLASHGlstext] = ACTIONS(6489), - [anon_sym_BSLASHGLStext] = ACTIONS(6489), - [anon_sym_BSLASHglsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6489), - [anon_sym_BSLASHglsplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSplural] = ACTIONS(6489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHglsname] = ACTIONS(6489), - [anon_sym_BSLASHGlsname] = ACTIONS(6489), - [anon_sym_BSLASHGLSname] = ACTIONS(6489), - [anon_sym_BSLASHglssymbol] = ACTIONS(6489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6489), - [anon_sym_BSLASHglsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6489), - [anon_sym_BSLASHglsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6489), - [anon_sym_BSLASHglsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6489), - [anon_sym_BSLASHglsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6489), - [anon_sym_BSLASHglsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6489), - [anon_sym_BSLASHnewacronym] = ACTIONS(6489), - [anon_sym_BSLASHacrshort] = ACTIONS(6489), - [anon_sym_BSLASHAcrshort] = ACTIONS(6489), - [anon_sym_BSLASHACRshort] = ACTIONS(6489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6489), - [anon_sym_BSLASHacrlong] = ACTIONS(6489), - [anon_sym_BSLASHAcrlong] = ACTIONS(6489), - [anon_sym_BSLASHACRlong] = ACTIONS(6489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6489), - [anon_sym_BSLASHacrfull] = ACTIONS(6489), - [anon_sym_BSLASHAcrfull] = ACTIONS(6489), - [anon_sym_BSLASHACRfull] = ACTIONS(6489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6489), - [anon_sym_BSLASHacs] = ACTIONS(6489), - [anon_sym_BSLASHAcs] = ACTIONS(6489), - [anon_sym_BSLASHacsp] = ACTIONS(6489), - [anon_sym_BSLASHAcsp] = ACTIONS(6489), - [anon_sym_BSLASHacl] = ACTIONS(6489), - [anon_sym_BSLASHAcl] = ACTIONS(6489), - [anon_sym_BSLASHaclp] = ACTIONS(6489), - [anon_sym_BSLASHAclp] = ACTIONS(6489), - [anon_sym_BSLASHacf] = ACTIONS(6489), - [anon_sym_BSLASHAcf] = ACTIONS(6489), - [anon_sym_BSLASHacfp] = ACTIONS(6489), - [anon_sym_BSLASHAcfp] = ACTIONS(6489), - [anon_sym_BSLASHac] = ACTIONS(6489), - [anon_sym_BSLASHAc] = ACTIONS(6489), - [anon_sym_BSLASHacp] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6489), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6489), - [anon_sym_BSLASHcolor] = ACTIONS(6489), - [anon_sym_BSLASHcolorbox] = ACTIONS(6489), - [anon_sym_BSLASHtextcolor] = ACTIONS(6489), - [anon_sym_BSLASHpagecolor] = ACTIONS(6489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6489), - [anon_sym_BSLASHtext] = ACTIONS(6489), - [anon_sym_BSLASHintertext] = ACTIONS(6489), - [anon_sym_shortintertext] = ACTIONS(6489), - }, - [1764] = { - [sym_command_name] = ACTIONS(6493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6495), - [anon_sym_RBRACK] = ACTIONS(6495), - [anon_sym_COMMA] = ACTIONS(6495), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_LPAREN] = ACTIONS(6495), - [anon_sym_RPAREN] = ACTIONS(6495), - [anon_sym_LBRACE] = ACTIONS(6495), - [sym_word] = ACTIONS(6493), - [sym_placeholder] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6495), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6493), - [anon_sym_GT] = ACTIONS(6493), - [anon_sym_BANG] = ACTIONS(6493), - [anon_sym_PIPE] = ACTIONS(6493), - [anon_sym_COLON] = ACTIONS(6493), - [anon_sym_SQUOTE] = ACTIONS(6493), - [anon_sym__] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6495), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6495), - [anon_sym_DOLLAR] = ACTIONS(6493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6495), - [anon_sym_BSLASHbegin] = ACTIONS(6493), - [anon_sym_BSLASHtitle] = ACTIONS(6493), - [anon_sym_BSLASHauthor] = ACTIONS(6493), - [anon_sym_BSLASHusepackage] = ACTIONS(6493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6493), - [anon_sym_BSLASHinclude] = ACTIONS(6493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6493), - [anon_sym_BSLASHinput] = ACTIONS(6493), - [anon_sym_BSLASHsubfile] = ACTIONS(6493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6493), - [anon_sym_BSLASHbibliography] = ACTIONS(6493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6493), - [anon_sym_BSLASHincludesvg] = ACTIONS(6493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6493), - [anon_sym_BSLASHimport] = ACTIONS(6493), - [anon_sym_BSLASHsubimport] = ACTIONS(6493), - [anon_sym_BSLASHinputfrom] = ACTIONS(6493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6493), - [anon_sym_BSLASHincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHcaption] = ACTIONS(6493), - [anon_sym_BSLASHcite] = ACTIONS(6493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCite] = ACTIONS(6493), - [anon_sym_BSLASHnocite] = ACTIONS(6493), - [anon_sym_BSLASHcitet] = ACTIONS(6493), - [anon_sym_BSLASHcitep] = ACTIONS(6493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteauthor] = ACTIONS(6493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitetitle] = ACTIONS(6493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteyear] = ACTIONS(6493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitedate] = ACTIONS(6493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteurl] = ACTIONS(6493), - [anon_sym_BSLASHfullcite] = ACTIONS(6493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6493), - [anon_sym_BSLASHcitealt] = ACTIONS(6493), - [anon_sym_BSLASHcitealp] = ACTIONS(6493), - [anon_sym_BSLASHcitetext] = ACTIONS(6493), - [anon_sym_BSLASHparencite] = ACTIONS(6493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHParencite] = ACTIONS(6493), - [anon_sym_BSLASHfootcite] = ACTIONS(6493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6493), - [anon_sym_BSLASHtextcite] = ACTIONS(6493), - [anon_sym_BSLASHTextcite] = ACTIONS(6493), - [anon_sym_BSLASHsmartcite] = ACTIONS(6493), - [anon_sym_BSLASHSmartcite] = ACTIONS(6493), - [anon_sym_BSLASHsupercite] = ACTIONS(6493), - [anon_sym_BSLASHautocite] = ACTIONS(6493), - [anon_sym_BSLASHAutocite] = ACTIONS(6493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHvolcite] = ACTIONS(6493), - [anon_sym_BSLASHVolcite] = ACTIONS(6493), - [anon_sym_BSLASHpvolcite] = ACTIONS(6493), - [anon_sym_BSLASHPvolcite] = ACTIONS(6493), - [anon_sym_BSLASHfvolcite] = ACTIONS(6493), - [anon_sym_BSLASHftvolcite] = ACTIONS(6493), - [anon_sym_BSLASHsvolcite] = ACTIONS(6493), - [anon_sym_BSLASHSvolcite] = ACTIONS(6493), - [anon_sym_BSLASHtvolcite] = ACTIONS(6493), - [anon_sym_BSLASHTvolcite] = ACTIONS(6493), - [anon_sym_BSLASHavolcite] = ACTIONS(6493), - [anon_sym_BSLASHAvolcite] = ACTIONS(6493), - [anon_sym_BSLASHnotecite] = ACTIONS(6493), - [anon_sym_BSLASHNotecite] = ACTIONS(6493), - [anon_sym_BSLASHpnotecite] = ACTIONS(6493), - [anon_sym_BSLASHPnotecite] = ACTIONS(6493), - [anon_sym_BSLASHfnotecite] = ACTIONS(6493), - [anon_sym_BSLASHlabel] = ACTIONS(6493), - [anon_sym_BSLASHref] = ACTIONS(6493), - [anon_sym_BSLASHeqref] = ACTIONS(6493), - [anon_sym_BSLASHvref] = ACTIONS(6493), - [anon_sym_BSLASHVref] = ACTIONS(6493), - [anon_sym_BSLASHautoref] = ACTIONS(6493), - [anon_sym_BSLASHpageref] = ACTIONS(6493), - [anon_sym_BSLASHcref] = ACTIONS(6493), - [anon_sym_BSLASHCref] = ACTIONS(6493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnameCref] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHlabelcref] = ACTIONS(6493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCrefrange] = ACTIONS(6493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnewlabel] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6495), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHdef] = ACTIONS(6493), - [anon_sym_BSLASHlet] = ACTIONS(6493), - [anon_sym_BSLASHleft] = ACTIONS(6493), - [anon_sym_BSLASHbig] = ACTIONS(6493), - [anon_sym_BSLASHBig] = ACTIONS(6493), - [anon_sym_BSLASHbigg] = ACTIONS(6493), - [anon_sym_BSLASHBigg] = ACTIONS(6493), - [anon_sym_BSLASHbigl] = ACTIONS(6493), - [anon_sym_BSLASHBigl] = ACTIONS(6493), - [anon_sym_BSLASHbiggl] = ACTIONS(6493), - [anon_sym_BSLASHBiggl] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6493), - [anon_sym_BSLASHgls] = ACTIONS(6493), - [anon_sym_BSLASHGls] = ACTIONS(6493), - [anon_sym_BSLASHGLS] = ACTIONS(6493), - [anon_sym_BSLASHglspl] = ACTIONS(6493), - [anon_sym_BSLASHGlspl] = ACTIONS(6493), - [anon_sym_BSLASHGLSpl] = ACTIONS(6493), - [anon_sym_BSLASHglsdisp] = ACTIONS(6493), - [anon_sym_BSLASHglslink] = ACTIONS(6493), - [anon_sym_BSLASHglstext] = ACTIONS(6493), - [anon_sym_BSLASHGlstext] = ACTIONS(6493), - [anon_sym_BSLASHGLStext] = ACTIONS(6493), - [anon_sym_BSLASHglsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6493), - [anon_sym_BSLASHglsplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSplural] = ACTIONS(6493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHglsname] = ACTIONS(6493), - [anon_sym_BSLASHGlsname] = ACTIONS(6493), - [anon_sym_BSLASHGLSname] = ACTIONS(6493), - [anon_sym_BSLASHglssymbol] = ACTIONS(6493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6493), - [anon_sym_BSLASHglsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6493), - [anon_sym_BSLASHglsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6493), - [anon_sym_BSLASHglsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6493), - [anon_sym_BSLASHglsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6493), - [anon_sym_BSLASHglsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6493), - [anon_sym_BSLASHnewacronym] = ACTIONS(6493), - [anon_sym_BSLASHacrshort] = ACTIONS(6493), - [anon_sym_BSLASHAcrshort] = ACTIONS(6493), - [anon_sym_BSLASHACRshort] = ACTIONS(6493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6493), - [anon_sym_BSLASHacrlong] = ACTIONS(6493), - [anon_sym_BSLASHAcrlong] = ACTIONS(6493), - [anon_sym_BSLASHACRlong] = ACTIONS(6493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6493), - [anon_sym_BSLASHacrfull] = ACTIONS(6493), - [anon_sym_BSLASHAcrfull] = ACTIONS(6493), - [anon_sym_BSLASHACRfull] = ACTIONS(6493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6493), - [anon_sym_BSLASHacs] = ACTIONS(6493), - [anon_sym_BSLASHAcs] = ACTIONS(6493), - [anon_sym_BSLASHacsp] = ACTIONS(6493), - [anon_sym_BSLASHAcsp] = ACTIONS(6493), - [anon_sym_BSLASHacl] = ACTIONS(6493), - [anon_sym_BSLASHAcl] = ACTIONS(6493), - [anon_sym_BSLASHaclp] = ACTIONS(6493), - [anon_sym_BSLASHAclp] = ACTIONS(6493), - [anon_sym_BSLASHacf] = ACTIONS(6493), - [anon_sym_BSLASHAcf] = ACTIONS(6493), - [anon_sym_BSLASHacfp] = ACTIONS(6493), - [anon_sym_BSLASHAcfp] = ACTIONS(6493), - [anon_sym_BSLASHac] = ACTIONS(6493), - [anon_sym_BSLASHAc] = ACTIONS(6493), - [anon_sym_BSLASHacp] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6493), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6493), - [anon_sym_BSLASHcolor] = ACTIONS(6493), - [anon_sym_BSLASHcolorbox] = ACTIONS(6493), - [anon_sym_BSLASHtextcolor] = ACTIONS(6493), - [anon_sym_BSLASHpagecolor] = ACTIONS(6493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6493), - [anon_sym_BSLASHtext] = ACTIONS(6493), - [anon_sym_BSLASHintertext] = ACTIONS(6493), - [anon_sym_shortintertext] = ACTIONS(6493), - }, - [1765] = { - [sym_command_name] = ACTIONS(6497), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(6499), - [anon_sym_RBRACK] = ACTIONS(6499), - [anon_sym_COMMA] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(6499), - [anon_sym_LPAREN] = ACTIONS(6499), - [anon_sym_RPAREN] = ACTIONS(6499), - [anon_sym_LBRACE] = ACTIONS(6499), - [sym_word] = ACTIONS(6497), - [sym_placeholder] = ACTIONS(6499), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_STAR] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6499), - [anon_sym_LT] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6497), - [anon_sym_BANG] = ACTIONS(6497), - [anon_sym_PIPE] = ACTIONS(6497), - [anon_sym_COLON] = ACTIONS(6497), - [anon_sym_SQUOTE] = ACTIONS(6497), - [anon_sym__] = ACTIONS(6499), - [anon_sym_CARET] = ACTIONS(6499), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6499), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6499), - [anon_sym_DOLLAR] = ACTIONS(6497), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6499), - [anon_sym_BSLASHbegin] = ACTIONS(6497), - [anon_sym_BSLASHtitle] = ACTIONS(6497), - [anon_sym_BSLASHauthor] = ACTIONS(6497), - [anon_sym_BSLASHusepackage] = ACTIONS(6497), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6497), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6497), - [anon_sym_BSLASHinclude] = ACTIONS(6497), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6497), - [anon_sym_BSLASHinput] = ACTIONS(6497), - [anon_sym_BSLASHsubfile] = ACTIONS(6497), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6497), - [anon_sym_BSLASHbibliography] = ACTIONS(6497), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6497), - [anon_sym_BSLASHincludesvg] = ACTIONS(6497), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6497), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6497), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6497), - [anon_sym_BSLASHimport] = ACTIONS(6497), - [anon_sym_BSLASHsubimport] = ACTIONS(6497), - [anon_sym_BSLASHinputfrom] = ACTIONS(6497), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6497), - [anon_sym_BSLASHincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHcaption] = ACTIONS(6497), - [anon_sym_BSLASHcite] = ACTIONS(6497), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCite] = ACTIONS(6497), - [anon_sym_BSLASHnocite] = ACTIONS(6497), - [anon_sym_BSLASHcitet] = ACTIONS(6497), - [anon_sym_BSLASHcitep] = ACTIONS(6497), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteauthor] = ACTIONS(6497), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6497), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitetitle] = ACTIONS(6497), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteyear] = ACTIONS(6497), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitedate] = ACTIONS(6497), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteurl] = ACTIONS(6497), - [anon_sym_BSLASHfullcite] = ACTIONS(6497), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6497), - [anon_sym_BSLASHcitealt] = ACTIONS(6497), - [anon_sym_BSLASHcitealp] = ACTIONS(6497), - [anon_sym_BSLASHcitetext] = ACTIONS(6497), - [anon_sym_BSLASHparencite] = ACTIONS(6497), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHParencite] = ACTIONS(6497), - [anon_sym_BSLASHfootcite] = ACTIONS(6497), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6497), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6497), - [anon_sym_BSLASHtextcite] = ACTIONS(6497), - [anon_sym_BSLASHTextcite] = ACTIONS(6497), - [anon_sym_BSLASHsmartcite] = ACTIONS(6497), - [anon_sym_BSLASHSmartcite] = ACTIONS(6497), - [anon_sym_BSLASHsupercite] = ACTIONS(6497), - [anon_sym_BSLASHautocite] = ACTIONS(6497), - [anon_sym_BSLASHAutocite] = ACTIONS(6497), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHvolcite] = ACTIONS(6497), - [anon_sym_BSLASHVolcite] = ACTIONS(6497), - [anon_sym_BSLASHpvolcite] = ACTIONS(6497), - [anon_sym_BSLASHPvolcite] = ACTIONS(6497), - [anon_sym_BSLASHfvolcite] = ACTIONS(6497), - [anon_sym_BSLASHftvolcite] = ACTIONS(6497), - [anon_sym_BSLASHsvolcite] = ACTIONS(6497), - [anon_sym_BSLASHSvolcite] = ACTIONS(6497), - [anon_sym_BSLASHtvolcite] = ACTIONS(6497), - [anon_sym_BSLASHTvolcite] = ACTIONS(6497), - [anon_sym_BSLASHavolcite] = ACTIONS(6497), - [anon_sym_BSLASHAvolcite] = ACTIONS(6497), - [anon_sym_BSLASHnotecite] = ACTIONS(6497), - [anon_sym_BSLASHNotecite] = ACTIONS(6497), - [anon_sym_BSLASHpnotecite] = ACTIONS(6497), - [anon_sym_BSLASHPnotecite] = ACTIONS(6497), - [anon_sym_BSLASHfnotecite] = ACTIONS(6497), - [anon_sym_BSLASHlabel] = ACTIONS(6497), - [anon_sym_BSLASHref] = ACTIONS(6497), - [anon_sym_BSLASHeqref] = ACTIONS(6497), - [anon_sym_BSLASHvref] = ACTIONS(6497), - [anon_sym_BSLASHVref] = ACTIONS(6497), - [anon_sym_BSLASHautoref] = ACTIONS(6497), - [anon_sym_BSLASHpageref] = ACTIONS(6497), - [anon_sym_BSLASHcref] = ACTIONS(6497), - [anon_sym_BSLASHCref] = ACTIONS(6497), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnameCref] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHlabelcref] = ACTIONS(6497), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCrefrange] = ACTIONS(6497), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnewlabel] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6497), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6497), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6499), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHdef] = ACTIONS(6497), - [anon_sym_BSLASHlet] = ACTIONS(6497), - [anon_sym_BSLASHleft] = ACTIONS(6497), - [anon_sym_BSLASHbig] = ACTIONS(6497), - [anon_sym_BSLASHBig] = ACTIONS(6497), - [anon_sym_BSLASHbigg] = ACTIONS(6497), - [anon_sym_BSLASHBigg] = ACTIONS(6497), - [anon_sym_BSLASHbigl] = ACTIONS(6497), - [anon_sym_BSLASHBigl] = ACTIONS(6497), - [anon_sym_BSLASHbiggl] = ACTIONS(6497), - [anon_sym_BSLASHBiggl] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6497), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6497), - [anon_sym_BSLASHgls] = ACTIONS(6497), - [anon_sym_BSLASHGls] = ACTIONS(6497), - [anon_sym_BSLASHGLS] = ACTIONS(6497), - [anon_sym_BSLASHglspl] = ACTIONS(6497), - [anon_sym_BSLASHGlspl] = ACTIONS(6497), - [anon_sym_BSLASHGLSpl] = ACTIONS(6497), - [anon_sym_BSLASHglsdisp] = ACTIONS(6497), - [anon_sym_BSLASHglslink] = ACTIONS(6497), - [anon_sym_BSLASHglstext] = ACTIONS(6497), - [anon_sym_BSLASHGlstext] = ACTIONS(6497), - [anon_sym_BSLASHGLStext] = ACTIONS(6497), - [anon_sym_BSLASHglsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6497), - [anon_sym_BSLASHglsplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSplural] = ACTIONS(6497), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHglsname] = ACTIONS(6497), - [anon_sym_BSLASHGlsname] = ACTIONS(6497), - [anon_sym_BSLASHGLSname] = ACTIONS(6497), - [anon_sym_BSLASHglssymbol] = ACTIONS(6497), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6497), - [anon_sym_BSLASHglsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6497), - [anon_sym_BSLASHglsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6497), - [anon_sym_BSLASHglsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6497), - [anon_sym_BSLASHglsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6497), - [anon_sym_BSLASHglsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6497), - [anon_sym_BSLASHnewacronym] = ACTIONS(6497), - [anon_sym_BSLASHacrshort] = ACTIONS(6497), - [anon_sym_BSLASHAcrshort] = ACTIONS(6497), - [anon_sym_BSLASHACRshort] = ACTIONS(6497), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6497), - [anon_sym_BSLASHacrlong] = ACTIONS(6497), - [anon_sym_BSLASHAcrlong] = ACTIONS(6497), - [anon_sym_BSLASHACRlong] = ACTIONS(6497), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6497), - [anon_sym_BSLASHacrfull] = ACTIONS(6497), - [anon_sym_BSLASHAcrfull] = ACTIONS(6497), - [anon_sym_BSLASHACRfull] = ACTIONS(6497), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6497), - [anon_sym_BSLASHacs] = ACTIONS(6497), - [anon_sym_BSLASHAcs] = ACTIONS(6497), - [anon_sym_BSLASHacsp] = ACTIONS(6497), - [anon_sym_BSLASHAcsp] = ACTIONS(6497), - [anon_sym_BSLASHacl] = ACTIONS(6497), - [anon_sym_BSLASHAcl] = ACTIONS(6497), - [anon_sym_BSLASHaclp] = ACTIONS(6497), - [anon_sym_BSLASHAclp] = ACTIONS(6497), - [anon_sym_BSLASHacf] = ACTIONS(6497), - [anon_sym_BSLASHAcf] = ACTIONS(6497), - [anon_sym_BSLASHacfp] = ACTIONS(6497), - [anon_sym_BSLASHAcfp] = ACTIONS(6497), - [anon_sym_BSLASHac] = ACTIONS(6497), - [anon_sym_BSLASHAc] = ACTIONS(6497), - [anon_sym_BSLASHacp] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6497), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6497), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6497), - [anon_sym_BSLASHcolor] = ACTIONS(6497), - [anon_sym_BSLASHcolorbox] = ACTIONS(6497), - [anon_sym_BSLASHtextcolor] = ACTIONS(6497), - [anon_sym_BSLASHpagecolor] = ACTIONS(6497), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6497), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6497), - [anon_sym_BSLASHtext] = ACTIONS(6497), - [anon_sym_BSLASHintertext] = ACTIONS(6497), - [anon_sym_shortintertext] = ACTIONS(6497), - }, - [1766] = { - [sym_command_name] = ACTIONS(6501), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6501), - [anon_sym_LBRACK] = ACTIONS(6503), - [anon_sym_RBRACK] = ACTIONS(6503), - [anon_sym_COMMA] = ACTIONS(6503), - [anon_sym_EQ] = ACTIONS(6503), - [anon_sym_LPAREN] = ACTIONS(6503), - [anon_sym_RPAREN] = ACTIONS(6503), - [anon_sym_LBRACE] = ACTIONS(6503), - [sym_word] = ACTIONS(6501), - [sym_placeholder] = ACTIONS(6503), - [anon_sym_PLUS] = ACTIONS(6503), - [anon_sym_DASH] = ACTIONS(6503), - [anon_sym_STAR] = ACTIONS(6503), - [anon_sym_SLASH] = ACTIONS(6503), - [anon_sym_LT] = ACTIONS(6501), - [anon_sym_GT] = ACTIONS(6501), - [anon_sym_BANG] = ACTIONS(6501), - [anon_sym_PIPE] = ACTIONS(6501), - [anon_sym_COLON] = ACTIONS(6501), - [anon_sym_SQUOTE] = ACTIONS(6501), - [anon_sym__] = ACTIONS(6503), - [anon_sym_CARET] = ACTIONS(6503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6503), - [anon_sym_DOLLAR] = ACTIONS(6501), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6503), - [anon_sym_BSLASHbegin] = ACTIONS(6501), - [anon_sym_BSLASHtitle] = ACTIONS(6501), - [anon_sym_BSLASHauthor] = ACTIONS(6501), - [anon_sym_BSLASHusepackage] = ACTIONS(6501), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6501), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6501), - [anon_sym_BSLASHinclude] = ACTIONS(6501), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6501), - [anon_sym_BSLASHinput] = ACTIONS(6501), - [anon_sym_BSLASHsubfile] = ACTIONS(6501), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6501), - [anon_sym_BSLASHbibliography] = ACTIONS(6501), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6501), - [anon_sym_BSLASHincludesvg] = ACTIONS(6501), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6501), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6501), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6501), - [anon_sym_BSLASHimport] = ACTIONS(6501), - [anon_sym_BSLASHsubimport] = ACTIONS(6501), - [anon_sym_BSLASHinputfrom] = ACTIONS(6501), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6501), - [anon_sym_BSLASHincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHcaption] = ACTIONS(6501), - [anon_sym_BSLASHcite] = ACTIONS(6501), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCite] = ACTIONS(6501), - [anon_sym_BSLASHnocite] = ACTIONS(6501), - [anon_sym_BSLASHcitet] = ACTIONS(6501), - [anon_sym_BSLASHcitep] = ACTIONS(6501), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteauthor] = ACTIONS(6501), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6501), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitetitle] = ACTIONS(6501), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteyear] = ACTIONS(6501), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitedate] = ACTIONS(6501), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteurl] = ACTIONS(6501), - [anon_sym_BSLASHfullcite] = ACTIONS(6501), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6501), - [anon_sym_BSLASHcitealt] = ACTIONS(6501), - [anon_sym_BSLASHcitealp] = ACTIONS(6501), - [anon_sym_BSLASHcitetext] = ACTIONS(6501), - [anon_sym_BSLASHparencite] = ACTIONS(6501), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHParencite] = ACTIONS(6501), - [anon_sym_BSLASHfootcite] = ACTIONS(6501), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6501), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6501), - [anon_sym_BSLASHtextcite] = ACTIONS(6501), - [anon_sym_BSLASHTextcite] = ACTIONS(6501), - [anon_sym_BSLASHsmartcite] = ACTIONS(6501), - [anon_sym_BSLASHSmartcite] = ACTIONS(6501), - [anon_sym_BSLASHsupercite] = ACTIONS(6501), - [anon_sym_BSLASHautocite] = ACTIONS(6501), - [anon_sym_BSLASHAutocite] = ACTIONS(6501), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHvolcite] = ACTIONS(6501), - [anon_sym_BSLASHVolcite] = ACTIONS(6501), - [anon_sym_BSLASHpvolcite] = ACTIONS(6501), - [anon_sym_BSLASHPvolcite] = ACTIONS(6501), - [anon_sym_BSLASHfvolcite] = ACTIONS(6501), - [anon_sym_BSLASHftvolcite] = ACTIONS(6501), - [anon_sym_BSLASHsvolcite] = ACTIONS(6501), - [anon_sym_BSLASHSvolcite] = ACTIONS(6501), - [anon_sym_BSLASHtvolcite] = ACTIONS(6501), - [anon_sym_BSLASHTvolcite] = ACTIONS(6501), - [anon_sym_BSLASHavolcite] = ACTIONS(6501), - [anon_sym_BSLASHAvolcite] = ACTIONS(6501), - [anon_sym_BSLASHnotecite] = ACTIONS(6501), - [anon_sym_BSLASHNotecite] = ACTIONS(6501), - [anon_sym_BSLASHpnotecite] = ACTIONS(6501), - [anon_sym_BSLASHPnotecite] = ACTIONS(6501), - [anon_sym_BSLASHfnotecite] = ACTIONS(6501), - [anon_sym_BSLASHlabel] = ACTIONS(6501), - [anon_sym_BSLASHref] = ACTIONS(6501), - [anon_sym_BSLASHeqref] = ACTIONS(6501), - [anon_sym_BSLASHvref] = ACTIONS(6501), - [anon_sym_BSLASHVref] = ACTIONS(6501), - [anon_sym_BSLASHautoref] = ACTIONS(6501), - [anon_sym_BSLASHpageref] = ACTIONS(6501), - [anon_sym_BSLASHcref] = ACTIONS(6501), - [anon_sym_BSLASHCref] = ACTIONS(6501), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnameCref] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHlabelcref] = ACTIONS(6501), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCrefrange] = ACTIONS(6501), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnewlabel] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6501), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6501), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6503), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHdef] = ACTIONS(6501), - [anon_sym_BSLASHlet] = ACTIONS(6501), - [anon_sym_BSLASHleft] = ACTIONS(6501), - [anon_sym_BSLASHbig] = ACTIONS(6501), - [anon_sym_BSLASHBig] = ACTIONS(6501), - [anon_sym_BSLASHbigg] = ACTIONS(6501), - [anon_sym_BSLASHBigg] = ACTIONS(6501), - [anon_sym_BSLASHbigl] = ACTIONS(6501), - [anon_sym_BSLASHBigl] = ACTIONS(6501), - [anon_sym_BSLASHbiggl] = ACTIONS(6501), - [anon_sym_BSLASHBiggl] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6501), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6501), - [anon_sym_BSLASHgls] = ACTIONS(6501), - [anon_sym_BSLASHGls] = ACTIONS(6501), - [anon_sym_BSLASHGLS] = ACTIONS(6501), - [anon_sym_BSLASHglspl] = ACTIONS(6501), - [anon_sym_BSLASHGlspl] = ACTIONS(6501), - [anon_sym_BSLASHGLSpl] = ACTIONS(6501), - [anon_sym_BSLASHglsdisp] = ACTIONS(6501), - [anon_sym_BSLASHglslink] = ACTIONS(6501), - [anon_sym_BSLASHglstext] = ACTIONS(6501), - [anon_sym_BSLASHGlstext] = ACTIONS(6501), - [anon_sym_BSLASHGLStext] = ACTIONS(6501), - [anon_sym_BSLASHglsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6501), - [anon_sym_BSLASHglsplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSplural] = ACTIONS(6501), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHglsname] = ACTIONS(6501), - [anon_sym_BSLASHGlsname] = ACTIONS(6501), - [anon_sym_BSLASHGLSname] = ACTIONS(6501), - [anon_sym_BSLASHglssymbol] = ACTIONS(6501), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6501), - [anon_sym_BSLASHglsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6501), - [anon_sym_BSLASHglsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6501), - [anon_sym_BSLASHglsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6501), - [anon_sym_BSLASHglsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6501), - [anon_sym_BSLASHglsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6501), - [anon_sym_BSLASHnewacronym] = ACTIONS(6501), - [anon_sym_BSLASHacrshort] = ACTIONS(6501), - [anon_sym_BSLASHAcrshort] = ACTIONS(6501), - [anon_sym_BSLASHACRshort] = ACTIONS(6501), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6501), - [anon_sym_BSLASHacrlong] = ACTIONS(6501), - [anon_sym_BSLASHAcrlong] = ACTIONS(6501), - [anon_sym_BSLASHACRlong] = ACTIONS(6501), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6501), - [anon_sym_BSLASHacrfull] = ACTIONS(6501), - [anon_sym_BSLASHAcrfull] = ACTIONS(6501), - [anon_sym_BSLASHACRfull] = ACTIONS(6501), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6501), - [anon_sym_BSLASHacs] = ACTIONS(6501), - [anon_sym_BSLASHAcs] = ACTIONS(6501), - [anon_sym_BSLASHacsp] = ACTIONS(6501), - [anon_sym_BSLASHAcsp] = ACTIONS(6501), - [anon_sym_BSLASHacl] = ACTIONS(6501), - [anon_sym_BSLASHAcl] = ACTIONS(6501), - [anon_sym_BSLASHaclp] = ACTIONS(6501), - [anon_sym_BSLASHAclp] = ACTIONS(6501), - [anon_sym_BSLASHacf] = ACTIONS(6501), - [anon_sym_BSLASHAcf] = ACTIONS(6501), - [anon_sym_BSLASHacfp] = ACTIONS(6501), - [anon_sym_BSLASHAcfp] = ACTIONS(6501), - [anon_sym_BSLASHac] = ACTIONS(6501), - [anon_sym_BSLASHAc] = ACTIONS(6501), - [anon_sym_BSLASHacp] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6501), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6501), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6501), - [anon_sym_BSLASHcolor] = ACTIONS(6501), - [anon_sym_BSLASHcolorbox] = ACTIONS(6501), - [anon_sym_BSLASHtextcolor] = ACTIONS(6501), - [anon_sym_BSLASHpagecolor] = ACTIONS(6501), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6501), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6501), - [anon_sym_BSLASHtext] = ACTIONS(6501), - [anon_sym_BSLASHintertext] = ACTIONS(6501), - [anon_sym_shortintertext] = ACTIONS(6501), - }, - [1767] = { - [sym_command_name] = ACTIONS(6429), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6429), - [anon_sym_LBRACK] = ACTIONS(6431), - [anon_sym_RBRACK] = ACTIONS(6431), - [anon_sym_COMMA] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(6431), - [anon_sym_LPAREN] = ACTIONS(6431), - [anon_sym_RPAREN] = ACTIONS(6431), - [anon_sym_LBRACE] = ACTIONS(6431), - [anon_sym_RBRACE] = ACTIONS(6431), - [sym_word] = ACTIONS(6429), - [sym_placeholder] = ACTIONS(6431), - [anon_sym_PLUS] = ACTIONS(6431), - [anon_sym_DASH] = ACTIONS(6431), - [anon_sym_STAR] = ACTIONS(6431), - [anon_sym_SLASH] = ACTIONS(6431), - [anon_sym_LT] = ACTIONS(6429), - [anon_sym_GT] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(6429), - [anon_sym_PIPE] = ACTIONS(6429), - [anon_sym_COLON] = ACTIONS(6429), - [anon_sym_SQUOTE] = ACTIONS(6429), - [anon_sym__] = ACTIONS(6431), - [anon_sym_CARET] = ACTIONS(6431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6431), - [anon_sym_DOLLAR] = ACTIONS(6429), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6431), - [anon_sym_BSLASHtitle] = ACTIONS(6429), - [anon_sym_BSLASHauthor] = ACTIONS(6429), - [anon_sym_BSLASHusepackage] = ACTIONS(6429), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6429), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6429), - [anon_sym_BSLASHinclude] = ACTIONS(6429), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6429), - [anon_sym_BSLASHinput] = ACTIONS(6429), - [anon_sym_BSLASHsubfile] = ACTIONS(6429), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6429), - [anon_sym_BSLASHbibliography] = ACTIONS(6429), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6429), - [anon_sym_BSLASHincludesvg] = ACTIONS(6429), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6429), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6429), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6429), - [anon_sym_BSLASHimport] = ACTIONS(6429), - [anon_sym_BSLASHsubimport] = ACTIONS(6429), - [anon_sym_BSLASHinputfrom] = ACTIONS(6429), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6429), - [anon_sym_BSLASHincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHcaption] = ACTIONS(6429), - [anon_sym_BSLASHcite] = ACTIONS(6429), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCite] = ACTIONS(6429), - [anon_sym_BSLASHnocite] = ACTIONS(6429), - [anon_sym_BSLASHcitet] = ACTIONS(6429), - [anon_sym_BSLASHcitep] = ACTIONS(6429), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteauthor] = ACTIONS(6429), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6429), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitetitle] = ACTIONS(6429), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteyear] = ACTIONS(6429), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitedate] = ACTIONS(6429), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteurl] = ACTIONS(6429), - [anon_sym_BSLASHfullcite] = ACTIONS(6429), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6429), - [anon_sym_BSLASHcitealt] = ACTIONS(6429), - [anon_sym_BSLASHcitealp] = ACTIONS(6429), - [anon_sym_BSLASHcitetext] = ACTIONS(6429), - [anon_sym_BSLASHparencite] = ACTIONS(6429), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHParencite] = ACTIONS(6429), - [anon_sym_BSLASHfootcite] = ACTIONS(6429), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6429), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6429), - [anon_sym_BSLASHtextcite] = ACTIONS(6429), - [anon_sym_BSLASHTextcite] = ACTIONS(6429), - [anon_sym_BSLASHsmartcite] = ACTIONS(6429), - [anon_sym_BSLASHSmartcite] = ACTIONS(6429), - [anon_sym_BSLASHsupercite] = ACTIONS(6429), - [anon_sym_BSLASHautocite] = ACTIONS(6429), - [anon_sym_BSLASHAutocite] = ACTIONS(6429), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHvolcite] = ACTIONS(6429), - [anon_sym_BSLASHVolcite] = ACTIONS(6429), - [anon_sym_BSLASHpvolcite] = ACTIONS(6429), - [anon_sym_BSLASHPvolcite] = ACTIONS(6429), - [anon_sym_BSLASHfvolcite] = ACTIONS(6429), - [anon_sym_BSLASHftvolcite] = ACTIONS(6429), - [anon_sym_BSLASHsvolcite] = ACTIONS(6429), - [anon_sym_BSLASHSvolcite] = ACTIONS(6429), - [anon_sym_BSLASHtvolcite] = ACTIONS(6429), - [anon_sym_BSLASHTvolcite] = ACTIONS(6429), - [anon_sym_BSLASHavolcite] = ACTIONS(6429), - [anon_sym_BSLASHAvolcite] = ACTIONS(6429), - [anon_sym_BSLASHnotecite] = ACTIONS(6429), - [anon_sym_BSLASHNotecite] = ACTIONS(6429), - [anon_sym_BSLASHpnotecite] = ACTIONS(6429), - [anon_sym_BSLASHPnotecite] = ACTIONS(6429), - [anon_sym_BSLASHfnotecite] = ACTIONS(6429), - [anon_sym_BSLASHlabel] = ACTIONS(6429), - [anon_sym_BSLASHref] = ACTIONS(6429), - [anon_sym_BSLASHeqref] = ACTIONS(6429), - [anon_sym_BSLASHvref] = ACTIONS(6429), - [anon_sym_BSLASHVref] = ACTIONS(6429), - [anon_sym_BSLASHautoref] = ACTIONS(6429), - [anon_sym_BSLASHpageref] = ACTIONS(6429), - [anon_sym_BSLASHcref] = ACTIONS(6429), - [anon_sym_BSLASHCref] = ACTIONS(6429), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnameCref] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHlabelcref] = ACTIONS(6429), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCrefrange] = ACTIONS(6429), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnewlabel] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6429), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6429), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6431), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHdef] = ACTIONS(6429), - [anon_sym_BSLASHlet] = ACTIONS(6429), - [anon_sym_BSLASHleft] = ACTIONS(6429), - [anon_sym_BSLASHbig] = ACTIONS(6429), - [anon_sym_BSLASHBig] = ACTIONS(6429), - [anon_sym_BSLASHbigg] = ACTIONS(6429), - [anon_sym_BSLASHBigg] = ACTIONS(6429), - [anon_sym_BSLASHbigl] = ACTIONS(6429), - [anon_sym_BSLASHBigl] = ACTIONS(6429), - [anon_sym_BSLASHbiggl] = ACTIONS(6429), - [anon_sym_BSLASHBiggl] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6429), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6429), - [anon_sym_BSLASHgls] = ACTIONS(6429), - [anon_sym_BSLASHGls] = ACTIONS(6429), - [anon_sym_BSLASHGLS] = ACTIONS(6429), - [anon_sym_BSLASHglspl] = ACTIONS(6429), - [anon_sym_BSLASHGlspl] = ACTIONS(6429), - [anon_sym_BSLASHGLSpl] = ACTIONS(6429), - [anon_sym_BSLASHglsdisp] = ACTIONS(6429), - [anon_sym_BSLASHglslink] = ACTIONS(6429), - [anon_sym_BSLASHglstext] = ACTIONS(6429), - [anon_sym_BSLASHGlstext] = ACTIONS(6429), - [anon_sym_BSLASHGLStext] = ACTIONS(6429), - [anon_sym_BSLASHglsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6429), - [anon_sym_BSLASHglsplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSplural] = ACTIONS(6429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHglsname] = ACTIONS(6429), - [anon_sym_BSLASHGlsname] = ACTIONS(6429), - [anon_sym_BSLASHGLSname] = ACTIONS(6429), - [anon_sym_BSLASHglssymbol] = ACTIONS(6429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6429), - [anon_sym_BSLASHglsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6429), - [anon_sym_BSLASHglsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6429), - [anon_sym_BSLASHglsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6429), - [anon_sym_BSLASHglsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6429), - [anon_sym_BSLASHglsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6429), - [anon_sym_BSLASHnewacronym] = ACTIONS(6429), - [anon_sym_BSLASHacrshort] = ACTIONS(6429), - [anon_sym_BSLASHAcrshort] = ACTIONS(6429), - [anon_sym_BSLASHACRshort] = ACTIONS(6429), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6429), - [anon_sym_BSLASHacrlong] = ACTIONS(6429), - [anon_sym_BSLASHAcrlong] = ACTIONS(6429), - [anon_sym_BSLASHACRlong] = ACTIONS(6429), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6429), - [anon_sym_BSLASHacrfull] = ACTIONS(6429), - [anon_sym_BSLASHAcrfull] = ACTIONS(6429), - [anon_sym_BSLASHACRfull] = ACTIONS(6429), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6429), - [anon_sym_BSLASHacs] = ACTIONS(6429), - [anon_sym_BSLASHAcs] = ACTIONS(6429), - [anon_sym_BSLASHacsp] = ACTIONS(6429), - [anon_sym_BSLASHAcsp] = ACTIONS(6429), - [anon_sym_BSLASHacl] = ACTIONS(6429), - [anon_sym_BSLASHAcl] = ACTIONS(6429), - [anon_sym_BSLASHaclp] = ACTIONS(6429), - [anon_sym_BSLASHAclp] = ACTIONS(6429), - [anon_sym_BSLASHacf] = ACTIONS(6429), - [anon_sym_BSLASHAcf] = ACTIONS(6429), - [anon_sym_BSLASHacfp] = ACTIONS(6429), - [anon_sym_BSLASHAcfp] = ACTIONS(6429), - [anon_sym_BSLASHac] = ACTIONS(6429), - [anon_sym_BSLASHAc] = ACTIONS(6429), - [anon_sym_BSLASHacp] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6429), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6429), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6429), - [anon_sym_BSLASHcolor] = ACTIONS(6429), - [anon_sym_BSLASHcolorbox] = ACTIONS(6429), - [anon_sym_BSLASHtextcolor] = ACTIONS(6429), - [anon_sym_BSLASHpagecolor] = ACTIONS(6429), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6429), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6429), - [anon_sym_BSLASHtext] = ACTIONS(6429), - [anon_sym_BSLASHintertext] = ACTIONS(6429), - [anon_sym_shortintertext] = ACTIONS(6429), - }, - [1768] = { - [sym_command_name] = ACTIONS(6509), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6509), - [anon_sym_LBRACK] = ACTIONS(6511), - [anon_sym_RBRACK] = ACTIONS(6511), - [anon_sym_COMMA] = ACTIONS(6511), - [anon_sym_EQ] = ACTIONS(6511), - [anon_sym_LPAREN] = ACTIONS(6511), - [anon_sym_RPAREN] = ACTIONS(6511), - [anon_sym_LBRACE] = ACTIONS(6511), - [sym_word] = ACTIONS(6509), - [sym_placeholder] = ACTIONS(6511), - [anon_sym_PLUS] = ACTIONS(6511), - [anon_sym_DASH] = ACTIONS(6511), - [anon_sym_STAR] = ACTIONS(6511), - [anon_sym_SLASH] = ACTIONS(6511), - [anon_sym_LT] = ACTIONS(6509), - [anon_sym_GT] = ACTIONS(6509), - [anon_sym_BANG] = ACTIONS(6509), - [anon_sym_PIPE] = ACTIONS(6509), - [anon_sym_COLON] = ACTIONS(6509), - [anon_sym_SQUOTE] = ACTIONS(6509), - [anon_sym__] = ACTIONS(6511), - [anon_sym_CARET] = ACTIONS(6511), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6511), - [anon_sym_DOLLAR] = ACTIONS(6509), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6511), - [anon_sym_BSLASHbegin] = ACTIONS(6509), - [anon_sym_BSLASHtitle] = ACTIONS(6509), - [anon_sym_BSLASHauthor] = ACTIONS(6509), - [anon_sym_BSLASHusepackage] = ACTIONS(6509), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6509), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6509), - [anon_sym_BSLASHinclude] = ACTIONS(6509), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6509), - [anon_sym_BSLASHinput] = ACTIONS(6509), - [anon_sym_BSLASHsubfile] = ACTIONS(6509), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6509), - [anon_sym_BSLASHbibliography] = ACTIONS(6509), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6509), - [anon_sym_BSLASHincludesvg] = ACTIONS(6509), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6509), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6509), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6509), - [anon_sym_BSLASHimport] = ACTIONS(6509), - [anon_sym_BSLASHsubimport] = ACTIONS(6509), - [anon_sym_BSLASHinputfrom] = ACTIONS(6509), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6509), - [anon_sym_BSLASHincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHcaption] = ACTIONS(6509), - [anon_sym_BSLASHcite] = ACTIONS(6509), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCite] = ACTIONS(6509), - [anon_sym_BSLASHnocite] = ACTIONS(6509), - [anon_sym_BSLASHcitet] = ACTIONS(6509), - [anon_sym_BSLASHcitep] = ACTIONS(6509), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteauthor] = ACTIONS(6509), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6509), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitetitle] = ACTIONS(6509), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteyear] = ACTIONS(6509), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitedate] = ACTIONS(6509), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteurl] = ACTIONS(6509), - [anon_sym_BSLASHfullcite] = ACTIONS(6509), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6509), - [anon_sym_BSLASHcitealt] = ACTIONS(6509), - [anon_sym_BSLASHcitealp] = ACTIONS(6509), - [anon_sym_BSLASHcitetext] = ACTIONS(6509), - [anon_sym_BSLASHparencite] = ACTIONS(6509), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHParencite] = ACTIONS(6509), - [anon_sym_BSLASHfootcite] = ACTIONS(6509), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6509), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6509), - [anon_sym_BSLASHtextcite] = ACTIONS(6509), - [anon_sym_BSLASHTextcite] = ACTIONS(6509), - [anon_sym_BSLASHsmartcite] = ACTIONS(6509), - [anon_sym_BSLASHSmartcite] = ACTIONS(6509), - [anon_sym_BSLASHsupercite] = ACTIONS(6509), - [anon_sym_BSLASHautocite] = ACTIONS(6509), - [anon_sym_BSLASHAutocite] = ACTIONS(6509), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHvolcite] = ACTIONS(6509), - [anon_sym_BSLASHVolcite] = ACTIONS(6509), - [anon_sym_BSLASHpvolcite] = ACTIONS(6509), - [anon_sym_BSLASHPvolcite] = ACTIONS(6509), - [anon_sym_BSLASHfvolcite] = ACTIONS(6509), - [anon_sym_BSLASHftvolcite] = ACTIONS(6509), - [anon_sym_BSLASHsvolcite] = ACTIONS(6509), - [anon_sym_BSLASHSvolcite] = ACTIONS(6509), - [anon_sym_BSLASHtvolcite] = ACTIONS(6509), - [anon_sym_BSLASHTvolcite] = ACTIONS(6509), - [anon_sym_BSLASHavolcite] = ACTIONS(6509), - [anon_sym_BSLASHAvolcite] = ACTIONS(6509), - [anon_sym_BSLASHnotecite] = ACTIONS(6509), - [anon_sym_BSLASHNotecite] = ACTIONS(6509), - [anon_sym_BSLASHpnotecite] = ACTIONS(6509), - [anon_sym_BSLASHPnotecite] = ACTIONS(6509), - [anon_sym_BSLASHfnotecite] = ACTIONS(6509), - [anon_sym_BSLASHlabel] = ACTIONS(6509), - [anon_sym_BSLASHref] = ACTIONS(6509), - [anon_sym_BSLASHeqref] = ACTIONS(6509), - [anon_sym_BSLASHvref] = ACTIONS(6509), - [anon_sym_BSLASHVref] = ACTIONS(6509), - [anon_sym_BSLASHautoref] = ACTIONS(6509), - [anon_sym_BSLASHpageref] = ACTIONS(6509), - [anon_sym_BSLASHcref] = ACTIONS(6509), - [anon_sym_BSLASHCref] = ACTIONS(6509), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnameCref] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHlabelcref] = ACTIONS(6509), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCrefrange] = ACTIONS(6509), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnewlabel] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6509), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6509), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6511), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHdef] = ACTIONS(6509), - [anon_sym_BSLASHlet] = ACTIONS(6509), - [anon_sym_BSLASHleft] = ACTIONS(6509), - [anon_sym_BSLASHbig] = ACTIONS(6509), - [anon_sym_BSLASHBig] = ACTIONS(6509), - [anon_sym_BSLASHbigg] = ACTIONS(6509), - [anon_sym_BSLASHBigg] = ACTIONS(6509), - [anon_sym_BSLASHbigl] = ACTIONS(6509), - [anon_sym_BSLASHBigl] = ACTIONS(6509), - [anon_sym_BSLASHbiggl] = ACTIONS(6509), - [anon_sym_BSLASHBiggl] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6509), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6509), - [anon_sym_BSLASHgls] = ACTIONS(6509), - [anon_sym_BSLASHGls] = ACTIONS(6509), - [anon_sym_BSLASHGLS] = ACTIONS(6509), - [anon_sym_BSLASHglspl] = ACTIONS(6509), - [anon_sym_BSLASHGlspl] = ACTIONS(6509), - [anon_sym_BSLASHGLSpl] = ACTIONS(6509), - [anon_sym_BSLASHglsdisp] = ACTIONS(6509), - [anon_sym_BSLASHglslink] = ACTIONS(6509), - [anon_sym_BSLASHglstext] = ACTIONS(6509), - [anon_sym_BSLASHGlstext] = ACTIONS(6509), - [anon_sym_BSLASHGLStext] = ACTIONS(6509), - [anon_sym_BSLASHglsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6509), - [anon_sym_BSLASHglsplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSplural] = ACTIONS(6509), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHglsname] = ACTIONS(6509), - [anon_sym_BSLASHGlsname] = ACTIONS(6509), - [anon_sym_BSLASHGLSname] = ACTIONS(6509), - [anon_sym_BSLASHglssymbol] = ACTIONS(6509), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6509), - [anon_sym_BSLASHglsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6509), - [anon_sym_BSLASHglsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6509), - [anon_sym_BSLASHglsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6509), - [anon_sym_BSLASHglsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6509), - [anon_sym_BSLASHglsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6509), - [anon_sym_BSLASHnewacronym] = ACTIONS(6509), - [anon_sym_BSLASHacrshort] = ACTIONS(6509), - [anon_sym_BSLASHAcrshort] = ACTIONS(6509), - [anon_sym_BSLASHACRshort] = ACTIONS(6509), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6509), - [anon_sym_BSLASHacrlong] = ACTIONS(6509), - [anon_sym_BSLASHAcrlong] = ACTIONS(6509), - [anon_sym_BSLASHACRlong] = ACTIONS(6509), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6509), - [anon_sym_BSLASHacrfull] = ACTIONS(6509), - [anon_sym_BSLASHAcrfull] = ACTIONS(6509), - [anon_sym_BSLASHACRfull] = ACTIONS(6509), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6509), - [anon_sym_BSLASHacs] = ACTIONS(6509), - [anon_sym_BSLASHAcs] = ACTIONS(6509), - [anon_sym_BSLASHacsp] = ACTIONS(6509), - [anon_sym_BSLASHAcsp] = ACTIONS(6509), - [anon_sym_BSLASHacl] = ACTIONS(6509), - [anon_sym_BSLASHAcl] = ACTIONS(6509), - [anon_sym_BSLASHaclp] = ACTIONS(6509), - [anon_sym_BSLASHAclp] = ACTIONS(6509), - [anon_sym_BSLASHacf] = ACTIONS(6509), - [anon_sym_BSLASHAcf] = ACTIONS(6509), - [anon_sym_BSLASHacfp] = ACTIONS(6509), - [anon_sym_BSLASHAcfp] = ACTIONS(6509), - [anon_sym_BSLASHac] = ACTIONS(6509), - [anon_sym_BSLASHAc] = ACTIONS(6509), - [anon_sym_BSLASHacp] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6509), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6509), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6509), - [anon_sym_BSLASHcolor] = ACTIONS(6509), - [anon_sym_BSLASHcolorbox] = ACTIONS(6509), - [anon_sym_BSLASHtextcolor] = ACTIONS(6509), - [anon_sym_BSLASHpagecolor] = ACTIONS(6509), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6509), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6509), - [anon_sym_BSLASHtext] = ACTIONS(6509), - [anon_sym_BSLASHintertext] = ACTIONS(6509), - [anon_sym_shortintertext] = ACTIONS(6509), - }, - [1769] = { - [sym_command_name] = ACTIONS(6513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6513), - [anon_sym_LBRACK] = ACTIONS(6515), - [anon_sym_RBRACK] = ACTIONS(6515), - [anon_sym_COMMA] = ACTIONS(6515), - [anon_sym_EQ] = ACTIONS(6515), - [anon_sym_LPAREN] = ACTIONS(6515), - [anon_sym_RPAREN] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(6515), - [sym_word] = ACTIONS(6513), - [sym_placeholder] = ACTIONS(6515), - [anon_sym_PLUS] = ACTIONS(6515), - [anon_sym_DASH] = ACTIONS(6515), - [anon_sym_STAR] = ACTIONS(6515), - [anon_sym_SLASH] = ACTIONS(6515), - [anon_sym_LT] = ACTIONS(6513), - [anon_sym_GT] = ACTIONS(6513), - [anon_sym_BANG] = ACTIONS(6513), - [anon_sym_PIPE] = ACTIONS(6513), - [anon_sym_COLON] = ACTIONS(6513), - [anon_sym_SQUOTE] = ACTIONS(6513), - [anon_sym__] = ACTIONS(6515), - [anon_sym_CARET] = ACTIONS(6515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6515), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6515), - [anon_sym_DOLLAR] = ACTIONS(6513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6515), - [anon_sym_BSLASHbegin] = ACTIONS(6513), - [anon_sym_BSLASHtitle] = ACTIONS(6513), - [anon_sym_BSLASHauthor] = ACTIONS(6513), - [anon_sym_BSLASHusepackage] = ACTIONS(6513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6513), - [anon_sym_BSLASHinclude] = ACTIONS(6513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6513), - [anon_sym_BSLASHinput] = ACTIONS(6513), - [anon_sym_BSLASHsubfile] = ACTIONS(6513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6513), - [anon_sym_BSLASHbibliography] = ACTIONS(6513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6513), - [anon_sym_BSLASHincludesvg] = ACTIONS(6513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6513), - [anon_sym_BSLASHimport] = ACTIONS(6513), - [anon_sym_BSLASHsubimport] = ACTIONS(6513), - [anon_sym_BSLASHinputfrom] = ACTIONS(6513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6513), - [anon_sym_BSLASHincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHcaption] = ACTIONS(6513), - [anon_sym_BSLASHcite] = ACTIONS(6513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCite] = ACTIONS(6513), - [anon_sym_BSLASHnocite] = ACTIONS(6513), - [anon_sym_BSLASHcitet] = ACTIONS(6513), - [anon_sym_BSLASHcitep] = ACTIONS(6513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteauthor] = ACTIONS(6513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitetitle] = ACTIONS(6513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteyear] = ACTIONS(6513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitedate] = ACTIONS(6513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteurl] = ACTIONS(6513), - [anon_sym_BSLASHfullcite] = ACTIONS(6513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6513), - [anon_sym_BSLASHcitealt] = ACTIONS(6513), - [anon_sym_BSLASHcitealp] = ACTIONS(6513), - [anon_sym_BSLASHcitetext] = ACTIONS(6513), - [anon_sym_BSLASHparencite] = ACTIONS(6513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHParencite] = ACTIONS(6513), - [anon_sym_BSLASHfootcite] = ACTIONS(6513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6513), - [anon_sym_BSLASHtextcite] = ACTIONS(6513), - [anon_sym_BSLASHTextcite] = ACTIONS(6513), - [anon_sym_BSLASHsmartcite] = ACTIONS(6513), - [anon_sym_BSLASHSmartcite] = ACTIONS(6513), - [anon_sym_BSLASHsupercite] = ACTIONS(6513), - [anon_sym_BSLASHautocite] = ACTIONS(6513), - [anon_sym_BSLASHAutocite] = ACTIONS(6513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHvolcite] = ACTIONS(6513), - [anon_sym_BSLASHVolcite] = ACTIONS(6513), - [anon_sym_BSLASHpvolcite] = ACTIONS(6513), - [anon_sym_BSLASHPvolcite] = ACTIONS(6513), - [anon_sym_BSLASHfvolcite] = ACTIONS(6513), - [anon_sym_BSLASHftvolcite] = ACTIONS(6513), - [anon_sym_BSLASHsvolcite] = ACTIONS(6513), - [anon_sym_BSLASHSvolcite] = ACTIONS(6513), - [anon_sym_BSLASHtvolcite] = ACTIONS(6513), - [anon_sym_BSLASHTvolcite] = ACTIONS(6513), - [anon_sym_BSLASHavolcite] = ACTIONS(6513), - [anon_sym_BSLASHAvolcite] = ACTIONS(6513), - [anon_sym_BSLASHnotecite] = ACTIONS(6513), - [anon_sym_BSLASHNotecite] = ACTIONS(6513), - [anon_sym_BSLASHpnotecite] = ACTIONS(6513), - [anon_sym_BSLASHPnotecite] = ACTIONS(6513), - [anon_sym_BSLASHfnotecite] = ACTIONS(6513), - [anon_sym_BSLASHlabel] = ACTIONS(6513), - [anon_sym_BSLASHref] = ACTIONS(6513), - [anon_sym_BSLASHeqref] = ACTIONS(6513), - [anon_sym_BSLASHvref] = ACTIONS(6513), - [anon_sym_BSLASHVref] = ACTIONS(6513), - [anon_sym_BSLASHautoref] = ACTIONS(6513), - [anon_sym_BSLASHpageref] = ACTIONS(6513), - [anon_sym_BSLASHcref] = ACTIONS(6513), - [anon_sym_BSLASHCref] = ACTIONS(6513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnameCref] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHlabelcref] = ACTIONS(6513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCrefrange] = ACTIONS(6513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnewlabel] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6515), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHdef] = ACTIONS(6513), - [anon_sym_BSLASHlet] = ACTIONS(6513), - [anon_sym_BSLASHleft] = ACTIONS(6513), - [anon_sym_BSLASHbig] = ACTIONS(6513), - [anon_sym_BSLASHBig] = ACTIONS(6513), - [anon_sym_BSLASHbigg] = ACTIONS(6513), - [anon_sym_BSLASHBigg] = ACTIONS(6513), - [anon_sym_BSLASHbigl] = ACTIONS(6513), - [anon_sym_BSLASHBigl] = ACTIONS(6513), - [anon_sym_BSLASHbiggl] = ACTIONS(6513), - [anon_sym_BSLASHBiggl] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6513), - [anon_sym_BSLASHgls] = ACTIONS(6513), - [anon_sym_BSLASHGls] = ACTIONS(6513), - [anon_sym_BSLASHGLS] = ACTIONS(6513), - [anon_sym_BSLASHglspl] = ACTIONS(6513), - [anon_sym_BSLASHGlspl] = ACTIONS(6513), - [anon_sym_BSLASHGLSpl] = ACTIONS(6513), - [anon_sym_BSLASHglsdisp] = ACTIONS(6513), - [anon_sym_BSLASHglslink] = ACTIONS(6513), - [anon_sym_BSLASHglstext] = ACTIONS(6513), - [anon_sym_BSLASHGlstext] = ACTIONS(6513), - [anon_sym_BSLASHGLStext] = ACTIONS(6513), - [anon_sym_BSLASHglsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6513), - [anon_sym_BSLASHglsplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSplural] = ACTIONS(6513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHglsname] = ACTIONS(6513), - [anon_sym_BSLASHGlsname] = ACTIONS(6513), - [anon_sym_BSLASHGLSname] = ACTIONS(6513), - [anon_sym_BSLASHglssymbol] = ACTIONS(6513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6513), - [anon_sym_BSLASHglsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6513), - [anon_sym_BSLASHglsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6513), - [anon_sym_BSLASHglsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6513), - [anon_sym_BSLASHglsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6513), - [anon_sym_BSLASHglsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6513), - [anon_sym_BSLASHnewacronym] = ACTIONS(6513), - [anon_sym_BSLASHacrshort] = ACTIONS(6513), - [anon_sym_BSLASHAcrshort] = ACTIONS(6513), - [anon_sym_BSLASHACRshort] = ACTIONS(6513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6513), - [anon_sym_BSLASHacrlong] = ACTIONS(6513), - [anon_sym_BSLASHAcrlong] = ACTIONS(6513), - [anon_sym_BSLASHACRlong] = ACTIONS(6513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6513), - [anon_sym_BSLASHacrfull] = ACTIONS(6513), - [anon_sym_BSLASHAcrfull] = ACTIONS(6513), - [anon_sym_BSLASHACRfull] = ACTIONS(6513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6513), - [anon_sym_BSLASHacs] = ACTIONS(6513), - [anon_sym_BSLASHAcs] = ACTIONS(6513), - [anon_sym_BSLASHacsp] = ACTIONS(6513), - [anon_sym_BSLASHAcsp] = ACTIONS(6513), - [anon_sym_BSLASHacl] = ACTIONS(6513), - [anon_sym_BSLASHAcl] = ACTIONS(6513), - [anon_sym_BSLASHaclp] = ACTIONS(6513), - [anon_sym_BSLASHAclp] = ACTIONS(6513), - [anon_sym_BSLASHacf] = ACTIONS(6513), - [anon_sym_BSLASHAcf] = ACTIONS(6513), - [anon_sym_BSLASHacfp] = ACTIONS(6513), - [anon_sym_BSLASHAcfp] = ACTIONS(6513), - [anon_sym_BSLASHac] = ACTIONS(6513), - [anon_sym_BSLASHAc] = ACTIONS(6513), - [anon_sym_BSLASHacp] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6513), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6513), - [anon_sym_BSLASHcolor] = ACTIONS(6513), - [anon_sym_BSLASHcolorbox] = ACTIONS(6513), - [anon_sym_BSLASHtextcolor] = ACTIONS(6513), - [anon_sym_BSLASHpagecolor] = ACTIONS(6513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6513), - [anon_sym_BSLASHtext] = ACTIONS(6513), - [anon_sym_BSLASHintertext] = ACTIONS(6513), - [anon_sym_shortintertext] = ACTIONS(6513), - }, - [1770] = { - [sym_command_name] = ACTIONS(6517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6517), - [anon_sym_LBRACK] = ACTIONS(6519), - [anon_sym_RBRACK] = ACTIONS(6519), - [anon_sym_COMMA] = ACTIONS(6519), - [anon_sym_EQ] = ACTIONS(6519), - [anon_sym_LPAREN] = ACTIONS(6519), - [anon_sym_RPAREN] = ACTIONS(6519), - [anon_sym_LBRACE] = ACTIONS(6519), - [sym_word] = ACTIONS(6517), - [sym_placeholder] = ACTIONS(6519), - [anon_sym_PLUS] = ACTIONS(6519), - [anon_sym_DASH] = ACTIONS(6519), - [anon_sym_STAR] = ACTIONS(6519), - [anon_sym_SLASH] = ACTIONS(6519), - [anon_sym_LT] = ACTIONS(6517), - [anon_sym_GT] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(6517), - [anon_sym_PIPE] = ACTIONS(6517), - [anon_sym_COLON] = ACTIONS(6517), - [anon_sym_SQUOTE] = ACTIONS(6517), - [anon_sym__] = ACTIONS(6519), - [anon_sym_CARET] = ACTIONS(6519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6519), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6519), - [anon_sym_DOLLAR] = ACTIONS(6517), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6519), - [anon_sym_BSLASHbegin] = ACTIONS(6517), - [anon_sym_BSLASHtitle] = ACTIONS(6517), - [anon_sym_BSLASHauthor] = ACTIONS(6517), - [anon_sym_BSLASHusepackage] = ACTIONS(6517), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6517), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6517), - [anon_sym_BSLASHinclude] = ACTIONS(6517), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6517), - [anon_sym_BSLASHinput] = ACTIONS(6517), - [anon_sym_BSLASHsubfile] = ACTIONS(6517), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6517), - [anon_sym_BSLASHbibliography] = ACTIONS(6517), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6517), - [anon_sym_BSLASHincludesvg] = ACTIONS(6517), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6517), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6517), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6517), - [anon_sym_BSLASHimport] = ACTIONS(6517), - [anon_sym_BSLASHsubimport] = ACTIONS(6517), - [anon_sym_BSLASHinputfrom] = ACTIONS(6517), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6517), - [anon_sym_BSLASHincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHcaption] = ACTIONS(6517), - [anon_sym_BSLASHcite] = ACTIONS(6517), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCite] = ACTIONS(6517), - [anon_sym_BSLASHnocite] = ACTIONS(6517), - [anon_sym_BSLASHcitet] = ACTIONS(6517), - [anon_sym_BSLASHcitep] = ACTIONS(6517), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteauthor] = ACTIONS(6517), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6517), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitetitle] = ACTIONS(6517), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteyear] = ACTIONS(6517), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitedate] = ACTIONS(6517), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteurl] = ACTIONS(6517), - [anon_sym_BSLASHfullcite] = ACTIONS(6517), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6517), - [anon_sym_BSLASHcitealt] = ACTIONS(6517), - [anon_sym_BSLASHcitealp] = ACTIONS(6517), - [anon_sym_BSLASHcitetext] = ACTIONS(6517), - [anon_sym_BSLASHparencite] = ACTIONS(6517), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHParencite] = ACTIONS(6517), - [anon_sym_BSLASHfootcite] = ACTIONS(6517), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6517), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6517), - [anon_sym_BSLASHtextcite] = ACTIONS(6517), - [anon_sym_BSLASHTextcite] = ACTIONS(6517), - [anon_sym_BSLASHsmartcite] = ACTIONS(6517), - [anon_sym_BSLASHSmartcite] = ACTIONS(6517), - [anon_sym_BSLASHsupercite] = ACTIONS(6517), - [anon_sym_BSLASHautocite] = ACTIONS(6517), - [anon_sym_BSLASHAutocite] = ACTIONS(6517), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHvolcite] = ACTIONS(6517), - [anon_sym_BSLASHVolcite] = ACTIONS(6517), - [anon_sym_BSLASHpvolcite] = ACTIONS(6517), - [anon_sym_BSLASHPvolcite] = ACTIONS(6517), - [anon_sym_BSLASHfvolcite] = ACTIONS(6517), - [anon_sym_BSLASHftvolcite] = ACTIONS(6517), - [anon_sym_BSLASHsvolcite] = ACTIONS(6517), - [anon_sym_BSLASHSvolcite] = ACTIONS(6517), - [anon_sym_BSLASHtvolcite] = ACTIONS(6517), - [anon_sym_BSLASHTvolcite] = ACTIONS(6517), - [anon_sym_BSLASHavolcite] = ACTIONS(6517), - [anon_sym_BSLASHAvolcite] = ACTIONS(6517), - [anon_sym_BSLASHnotecite] = ACTIONS(6517), - [anon_sym_BSLASHNotecite] = ACTIONS(6517), - [anon_sym_BSLASHpnotecite] = ACTIONS(6517), - [anon_sym_BSLASHPnotecite] = ACTIONS(6517), - [anon_sym_BSLASHfnotecite] = ACTIONS(6517), - [anon_sym_BSLASHlabel] = ACTIONS(6517), - [anon_sym_BSLASHref] = ACTIONS(6517), - [anon_sym_BSLASHeqref] = ACTIONS(6517), - [anon_sym_BSLASHvref] = ACTIONS(6517), - [anon_sym_BSLASHVref] = ACTIONS(6517), - [anon_sym_BSLASHautoref] = ACTIONS(6517), - [anon_sym_BSLASHpageref] = ACTIONS(6517), - [anon_sym_BSLASHcref] = ACTIONS(6517), - [anon_sym_BSLASHCref] = ACTIONS(6517), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnameCref] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHlabelcref] = ACTIONS(6517), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCrefrange] = ACTIONS(6517), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnewlabel] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6517), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6517), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6519), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHdef] = ACTIONS(6517), - [anon_sym_BSLASHlet] = ACTIONS(6517), - [anon_sym_BSLASHleft] = ACTIONS(6517), - [anon_sym_BSLASHbig] = ACTIONS(6517), - [anon_sym_BSLASHBig] = ACTIONS(6517), - [anon_sym_BSLASHbigg] = ACTIONS(6517), - [anon_sym_BSLASHBigg] = ACTIONS(6517), - [anon_sym_BSLASHbigl] = ACTIONS(6517), - [anon_sym_BSLASHBigl] = ACTIONS(6517), - [anon_sym_BSLASHbiggl] = ACTIONS(6517), - [anon_sym_BSLASHBiggl] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6517), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6517), - [anon_sym_BSLASHgls] = ACTIONS(6517), - [anon_sym_BSLASHGls] = ACTIONS(6517), - [anon_sym_BSLASHGLS] = ACTIONS(6517), - [anon_sym_BSLASHglspl] = ACTIONS(6517), - [anon_sym_BSLASHGlspl] = ACTIONS(6517), - [anon_sym_BSLASHGLSpl] = ACTIONS(6517), - [anon_sym_BSLASHglsdisp] = ACTIONS(6517), - [anon_sym_BSLASHglslink] = ACTIONS(6517), - [anon_sym_BSLASHglstext] = ACTIONS(6517), - [anon_sym_BSLASHGlstext] = ACTIONS(6517), - [anon_sym_BSLASHGLStext] = ACTIONS(6517), - [anon_sym_BSLASHglsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6517), - [anon_sym_BSLASHglsplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSplural] = ACTIONS(6517), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHglsname] = ACTIONS(6517), - [anon_sym_BSLASHGlsname] = ACTIONS(6517), - [anon_sym_BSLASHGLSname] = ACTIONS(6517), - [anon_sym_BSLASHglssymbol] = ACTIONS(6517), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6517), - [anon_sym_BSLASHglsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6517), - [anon_sym_BSLASHglsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6517), - [anon_sym_BSLASHglsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6517), - [anon_sym_BSLASHglsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6517), - [anon_sym_BSLASHglsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6517), - [anon_sym_BSLASHnewacronym] = ACTIONS(6517), - [anon_sym_BSLASHacrshort] = ACTIONS(6517), - [anon_sym_BSLASHAcrshort] = ACTIONS(6517), - [anon_sym_BSLASHACRshort] = ACTIONS(6517), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6517), - [anon_sym_BSLASHacrlong] = ACTIONS(6517), - [anon_sym_BSLASHAcrlong] = ACTIONS(6517), - [anon_sym_BSLASHACRlong] = ACTIONS(6517), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6517), - [anon_sym_BSLASHacrfull] = ACTIONS(6517), - [anon_sym_BSLASHAcrfull] = ACTIONS(6517), - [anon_sym_BSLASHACRfull] = ACTIONS(6517), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6517), - [anon_sym_BSLASHacs] = ACTIONS(6517), - [anon_sym_BSLASHAcs] = ACTIONS(6517), - [anon_sym_BSLASHacsp] = ACTIONS(6517), - [anon_sym_BSLASHAcsp] = ACTIONS(6517), - [anon_sym_BSLASHacl] = ACTIONS(6517), - [anon_sym_BSLASHAcl] = ACTIONS(6517), - [anon_sym_BSLASHaclp] = ACTIONS(6517), - [anon_sym_BSLASHAclp] = ACTIONS(6517), - [anon_sym_BSLASHacf] = ACTIONS(6517), - [anon_sym_BSLASHAcf] = ACTIONS(6517), - [anon_sym_BSLASHacfp] = ACTIONS(6517), - [anon_sym_BSLASHAcfp] = ACTIONS(6517), - [anon_sym_BSLASHac] = ACTIONS(6517), - [anon_sym_BSLASHAc] = ACTIONS(6517), - [anon_sym_BSLASHacp] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6517), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6517), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6517), - [anon_sym_BSLASHcolor] = ACTIONS(6517), - [anon_sym_BSLASHcolorbox] = ACTIONS(6517), - [anon_sym_BSLASHtextcolor] = ACTIONS(6517), - [anon_sym_BSLASHpagecolor] = ACTIONS(6517), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6517), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6517), - [anon_sym_BSLASHtext] = ACTIONS(6517), - [anon_sym_BSLASHintertext] = ACTIONS(6517), - [anon_sym_shortintertext] = ACTIONS(6517), - }, - [1771] = { - [sym_command_name] = ACTIONS(6521), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6521), - [anon_sym_LBRACK] = ACTIONS(6523), - [anon_sym_RBRACK] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_EQ] = ACTIONS(6523), - [anon_sym_LPAREN] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_LBRACE] = ACTIONS(6523), - [sym_word] = ACTIONS(6521), - [sym_placeholder] = ACTIONS(6523), - [anon_sym_PLUS] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6523), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_BANG] = ACTIONS(6521), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6521), - [anon_sym_SQUOTE] = ACTIONS(6521), - [anon_sym__] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6523), - [anon_sym_DOLLAR] = ACTIONS(6521), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6523), - [anon_sym_BSLASHbegin] = ACTIONS(6521), - [anon_sym_BSLASHtitle] = ACTIONS(6521), - [anon_sym_BSLASHauthor] = ACTIONS(6521), - [anon_sym_BSLASHusepackage] = ACTIONS(6521), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6521), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6521), - [anon_sym_BSLASHinclude] = ACTIONS(6521), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6521), - [anon_sym_BSLASHinput] = ACTIONS(6521), - [anon_sym_BSLASHsubfile] = ACTIONS(6521), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6521), - [anon_sym_BSLASHbibliography] = ACTIONS(6521), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6521), - [anon_sym_BSLASHincludesvg] = ACTIONS(6521), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6521), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6521), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6521), - [anon_sym_BSLASHimport] = ACTIONS(6521), - [anon_sym_BSLASHsubimport] = ACTIONS(6521), - [anon_sym_BSLASHinputfrom] = ACTIONS(6521), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6521), - [anon_sym_BSLASHincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHcaption] = ACTIONS(6521), - [anon_sym_BSLASHcite] = ACTIONS(6521), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCite] = ACTIONS(6521), - [anon_sym_BSLASHnocite] = ACTIONS(6521), - [anon_sym_BSLASHcitet] = ACTIONS(6521), - [anon_sym_BSLASHcitep] = ACTIONS(6521), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteauthor] = ACTIONS(6521), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6521), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitetitle] = ACTIONS(6521), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteyear] = ACTIONS(6521), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitedate] = ACTIONS(6521), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteurl] = ACTIONS(6521), - [anon_sym_BSLASHfullcite] = ACTIONS(6521), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6521), - [anon_sym_BSLASHcitealt] = ACTIONS(6521), - [anon_sym_BSLASHcitealp] = ACTIONS(6521), - [anon_sym_BSLASHcitetext] = ACTIONS(6521), - [anon_sym_BSLASHparencite] = ACTIONS(6521), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHParencite] = ACTIONS(6521), - [anon_sym_BSLASHfootcite] = ACTIONS(6521), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6521), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6521), - [anon_sym_BSLASHtextcite] = ACTIONS(6521), - [anon_sym_BSLASHTextcite] = ACTIONS(6521), - [anon_sym_BSLASHsmartcite] = ACTIONS(6521), - [anon_sym_BSLASHSmartcite] = ACTIONS(6521), - [anon_sym_BSLASHsupercite] = ACTIONS(6521), - [anon_sym_BSLASHautocite] = ACTIONS(6521), - [anon_sym_BSLASHAutocite] = ACTIONS(6521), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHvolcite] = ACTIONS(6521), - [anon_sym_BSLASHVolcite] = ACTIONS(6521), - [anon_sym_BSLASHpvolcite] = ACTIONS(6521), - [anon_sym_BSLASHPvolcite] = ACTIONS(6521), - [anon_sym_BSLASHfvolcite] = ACTIONS(6521), - [anon_sym_BSLASHftvolcite] = ACTIONS(6521), - [anon_sym_BSLASHsvolcite] = ACTIONS(6521), - [anon_sym_BSLASHSvolcite] = ACTIONS(6521), - [anon_sym_BSLASHtvolcite] = ACTIONS(6521), - [anon_sym_BSLASHTvolcite] = ACTIONS(6521), - [anon_sym_BSLASHavolcite] = ACTIONS(6521), - [anon_sym_BSLASHAvolcite] = ACTIONS(6521), - [anon_sym_BSLASHnotecite] = ACTIONS(6521), - [anon_sym_BSLASHNotecite] = ACTIONS(6521), - [anon_sym_BSLASHpnotecite] = ACTIONS(6521), - [anon_sym_BSLASHPnotecite] = ACTIONS(6521), - [anon_sym_BSLASHfnotecite] = ACTIONS(6521), - [anon_sym_BSLASHlabel] = ACTIONS(6521), - [anon_sym_BSLASHref] = ACTIONS(6521), - [anon_sym_BSLASHeqref] = ACTIONS(6521), - [anon_sym_BSLASHvref] = ACTIONS(6521), - [anon_sym_BSLASHVref] = ACTIONS(6521), - [anon_sym_BSLASHautoref] = ACTIONS(6521), - [anon_sym_BSLASHpageref] = ACTIONS(6521), - [anon_sym_BSLASHcref] = ACTIONS(6521), - [anon_sym_BSLASHCref] = ACTIONS(6521), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnameCref] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHlabelcref] = ACTIONS(6521), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCrefrange] = ACTIONS(6521), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnewlabel] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6521), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6521), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6523), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHdef] = ACTIONS(6521), - [anon_sym_BSLASHlet] = ACTIONS(6521), - [anon_sym_BSLASHleft] = ACTIONS(6521), - [anon_sym_BSLASHbig] = ACTIONS(6521), - [anon_sym_BSLASHBig] = ACTIONS(6521), - [anon_sym_BSLASHbigg] = ACTIONS(6521), - [anon_sym_BSLASHBigg] = ACTIONS(6521), - [anon_sym_BSLASHbigl] = ACTIONS(6521), - [anon_sym_BSLASHBigl] = ACTIONS(6521), - [anon_sym_BSLASHbiggl] = ACTIONS(6521), - [anon_sym_BSLASHBiggl] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6521), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6521), - [anon_sym_BSLASHgls] = ACTIONS(6521), - [anon_sym_BSLASHGls] = ACTIONS(6521), - [anon_sym_BSLASHGLS] = ACTIONS(6521), - [anon_sym_BSLASHglspl] = ACTIONS(6521), - [anon_sym_BSLASHGlspl] = ACTIONS(6521), - [anon_sym_BSLASHGLSpl] = ACTIONS(6521), - [anon_sym_BSLASHglsdisp] = ACTIONS(6521), - [anon_sym_BSLASHglslink] = ACTIONS(6521), - [anon_sym_BSLASHglstext] = ACTIONS(6521), - [anon_sym_BSLASHGlstext] = ACTIONS(6521), - [anon_sym_BSLASHGLStext] = ACTIONS(6521), - [anon_sym_BSLASHglsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6521), - [anon_sym_BSLASHglsplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSplural] = ACTIONS(6521), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHglsname] = ACTIONS(6521), - [anon_sym_BSLASHGlsname] = ACTIONS(6521), - [anon_sym_BSLASHGLSname] = ACTIONS(6521), - [anon_sym_BSLASHglssymbol] = ACTIONS(6521), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6521), - [anon_sym_BSLASHglsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6521), - [anon_sym_BSLASHglsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6521), - [anon_sym_BSLASHglsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6521), - [anon_sym_BSLASHglsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6521), - [anon_sym_BSLASHglsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6521), - [anon_sym_BSLASHnewacronym] = ACTIONS(6521), - [anon_sym_BSLASHacrshort] = ACTIONS(6521), - [anon_sym_BSLASHAcrshort] = ACTIONS(6521), - [anon_sym_BSLASHACRshort] = ACTIONS(6521), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6521), - [anon_sym_BSLASHacrlong] = ACTIONS(6521), - [anon_sym_BSLASHAcrlong] = ACTIONS(6521), - [anon_sym_BSLASHACRlong] = ACTIONS(6521), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6521), - [anon_sym_BSLASHacrfull] = ACTIONS(6521), - [anon_sym_BSLASHAcrfull] = ACTIONS(6521), - [anon_sym_BSLASHACRfull] = ACTIONS(6521), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6521), - [anon_sym_BSLASHacs] = ACTIONS(6521), - [anon_sym_BSLASHAcs] = ACTIONS(6521), - [anon_sym_BSLASHacsp] = ACTIONS(6521), - [anon_sym_BSLASHAcsp] = ACTIONS(6521), - [anon_sym_BSLASHacl] = ACTIONS(6521), - [anon_sym_BSLASHAcl] = ACTIONS(6521), - [anon_sym_BSLASHaclp] = ACTIONS(6521), - [anon_sym_BSLASHAclp] = ACTIONS(6521), - [anon_sym_BSLASHacf] = ACTIONS(6521), - [anon_sym_BSLASHAcf] = ACTIONS(6521), - [anon_sym_BSLASHacfp] = ACTIONS(6521), - [anon_sym_BSLASHAcfp] = ACTIONS(6521), - [anon_sym_BSLASHac] = ACTIONS(6521), - [anon_sym_BSLASHAc] = ACTIONS(6521), - [anon_sym_BSLASHacp] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6521), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6521), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6521), - [anon_sym_BSLASHcolor] = ACTIONS(6521), - [anon_sym_BSLASHcolorbox] = ACTIONS(6521), - [anon_sym_BSLASHtextcolor] = ACTIONS(6521), - [anon_sym_BSLASHpagecolor] = ACTIONS(6521), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6521), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6521), - [anon_sym_BSLASHtext] = ACTIONS(6521), - [anon_sym_BSLASHintertext] = ACTIONS(6521), - [anon_sym_shortintertext] = ACTIONS(6521), - }, - [1772] = { - [sym_command_name] = ACTIONS(6525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6527), - [anon_sym_LPAREN] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_LBRACE] = ACTIONS(6527), - [sym_word] = ACTIONS(6525), - [sym_placeholder] = ACTIONS(6527), - [anon_sym_PLUS] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6527), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6527), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_BANG] = ACTIONS(6525), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_SQUOTE] = ACTIONS(6525), - [anon_sym__] = ACTIONS(6527), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6527), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6527), - [anon_sym_DOLLAR] = ACTIONS(6525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6527), - [anon_sym_BSLASHbegin] = ACTIONS(6525), - [anon_sym_BSLASHtitle] = ACTIONS(6525), - [anon_sym_BSLASHauthor] = ACTIONS(6525), - [anon_sym_BSLASHusepackage] = ACTIONS(6525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6525), - [anon_sym_BSLASHinclude] = ACTIONS(6525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6525), - [anon_sym_BSLASHinput] = ACTIONS(6525), - [anon_sym_BSLASHsubfile] = ACTIONS(6525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6525), - [anon_sym_BSLASHbibliography] = ACTIONS(6525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6525), - [anon_sym_BSLASHincludesvg] = ACTIONS(6525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6525), - [anon_sym_BSLASHimport] = ACTIONS(6525), - [anon_sym_BSLASHsubimport] = ACTIONS(6525), - [anon_sym_BSLASHinputfrom] = ACTIONS(6525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6525), - [anon_sym_BSLASHincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHcaption] = ACTIONS(6525), - [anon_sym_BSLASHcite] = ACTIONS(6525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCite] = ACTIONS(6525), - [anon_sym_BSLASHnocite] = ACTIONS(6525), - [anon_sym_BSLASHcitet] = ACTIONS(6525), - [anon_sym_BSLASHcitep] = ACTIONS(6525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteauthor] = ACTIONS(6525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitetitle] = ACTIONS(6525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteyear] = ACTIONS(6525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitedate] = ACTIONS(6525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteurl] = ACTIONS(6525), - [anon_sym_BSLASHfullcite] = ACTIONS(6525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6525), - [anon_sym_BSLASHcitealt] = ACTIONS(6525), - [anon_sym_BSLASHcitealp] = ACTIONS(6525), - [anon_sym_BSLASHcitetext] = ACTIONS(6525), - [anon_sym_BSLASHparencite] = ACTIONS(6525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHParencite] = ACTIONS(6525), - [anon_sym_BSLASHfootcite] = ACTIONS(6525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6525), - [anon_sym_BSLASHtextcite] = ACTIONS(6525), - [anon_sym_BSLASHTextcite] = ACTIONS(6525), - [anon_sym_BSLASHsmartcite] = ACTIONS(6525), - [anon_sym_BSLASHSmartcite] = ACTIONS(6525), - [anon_sym_BSLASHsupercite] = ACTIONS(6525), - [anon_sym_BSLASHautocite] = ACTIONS(6525), - [anon_sym_BSLASHAutocite] = ACTIONS(6525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHvolcite] = ACTIONS(6525), - [anon_sym_BSLASHVolcite] = ACTIONS(6525), - [anon_sym_BSLASHpvolcite] = ACTIONS(6525), - [anon_sym_BSLASHPvolcite] = ACTIONS(6525), - [anon_sym_BSLASHfvolcite] = ACTIONS(6525), - [anon_sym_BSLASHftvolcite] = ACTIONS(6525), - [anon_sym_BSLASHsvolcite] = ACTIONS(6525), - [anon_sym_BSLASHSvolcite] = ACTIONS(6525), - [anon_sym_BSLASHtvolcite] = ACTIONS(6525), - [anon_sym_BSLASHTvolcite] = ACTIONS(6525), - [anon_sym_BSLASHavolcite] = ACTIONS(6525), - [anon_sym_BSLASHAvolcite] = ACTIONS(6525), - [anon_sym_BSLASHnotecite] = ACTIONS(6525), - [anon_sym_BSLASHNotecite] = ACTIONS(6525), - [anon_sym_BSLASHpnotecite] = ACTIONS(6525), - [anon_sym_BSLASHPnotecite] = ACTIONS(6525), - [anon_sym_BSLASHfnotecite] = ACTIONS(6525), - [anon_sym_BSLASHlabel] = ACTIONS(6525), - [anon_sym_BSLASHref] = ACTIONS(6525), - [anon_sym_BSLASHeqref] = ACTIONS(6525), - [anon_sym_BSLASHvref] = ACTIONS(6525), - [anon_sym_BSLASHVref] = ACTIONS(6525), - [anon_sym_BSLASHautoref] = ACTIONS(6525), - [anon_sym_BSLASHpageref] = ACTIONS(6525), - [anon_sym_BSLASHcref] = ACTIONS(6525), - [anon_sym_BSLASHCref] = ACTIONS(6525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnameCref] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHlabelcref] = ACTIONS(6525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCrefrange] = ACTIONS(6525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnewlabel] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6527), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHdef] = ACTIONS(6525), - [anon_sym_BSLASHlet] = ACTIONS(6525), - [anon_sym_BSLASHleft] = ACTIONS(6525), - [anon_sym_BSLASHbig] = ACTIONS(6525), - [anon_sym_BSLASHBig] = ACTIONS(6525), - [anon_sym_BSLASHbigg] = ACTIONS(6525), - [anon_sym_BSLASHBigg] = ACTIONS(6525), - [anon_sym_BSLASHbigl] = ACTIONS(6525), - [anon_sym_BSLASHBigl] = ACTIONS(6525), - [anon_sym_BSLASHbiggl] = ACTIONS(6525), - [anon_sym_BSLASHBiggl] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6525), - [anon_sym_BSLASHgls] = ACTIONS(6525), - [anon_sym_BSLASHGls] = ACTIONS(6525), - [anon_sym_BSLASHGLS] = ACTIONS(6525), - [anon_sym_BSLASHglspl] = ACTIONS(6525), - [anon_sym_BSLASHGlspl] = ACTIONS(6525), - [anon_sym_BSLASHGLSpl] = ACTIONS(6525), - [anon_sym_BSLASHglsdisp] = ACTIONS(6525), - [anon_sym_BSLASHglslink] = ACTIONS(6525), - [anon_sym_BSLASHglstext] = ACTIONS(6525), - [anon_sym_BSLASHGlstext] = ACTIONS(6525), - [anon_sym_BSLASHGLStext] = ACTIONS(6525), - [anon_sym_BSLASHglsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6525), - [anon_sym_BSLASHglsplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSplural] = ACTIONS(6525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHglsname] = ACTIONS(6525), - [anon_sym_BSLASHGlsname] = ACTIONS(6525), - [anon_sym_BSLASHGLSname] = ACTIONS(6525), - [anon_sym_BSLASHglssymbol] = ACTIONS(6525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6525), - [anon_sym_BSLASHglsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6525), - [anon_sym_BSLASHglsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6525), - [anon_sym_BSLASHglsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6525), - [anon_sym_BSLASHglsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6525), - [anon_sym_BSLASHglsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6525), - [anon_sym_BSLASHnewacronym] = ACTIONS(6525), - [anon_sym_BSLASHacrshort] = ACTIONS(6525), - [anon_sym_BSLASHAcrshort] = ACTIONS(6525), - [anon_sym_BSLASHACRshort] = ACTIONS(6525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6525), - [anon_sym_BSLASHacrlong] = ACTIONS(6525), - [anon_sym_BSLASHAcrlong] = ACTIONS(6525), - [anon_sym_BSLASHACRlong] = ACTIONS(6525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6525), - [anon_sym_BSLASHacrfull] = ACTIONS(6525), - [anon_sym_BSLASHAcrfull] = ACTIONS(6525), - [anon_sym_BSLASHACRfull] = ACTIONS(6525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6525), - [anon_sym_BSLASHacs] = ACTIONS(6525), - [anon_sym_BSLASHAcs] = ACTIONS(6525), - [anon_sym_BSLASHacsp] = ACTIONS(6525), - [anon_sym_BSLASHAcsp] = ACTIONS(6525), - [anon_sym_BSLASHacl] = ACTIONS(6525), - [anon_sym_BSLASHAcl] = ACTIONS(6525), - [anon_sym_BSLASHaclp] = ACTIONS(6525), - [anon_sym_BSLASHAclp] = ACTIONS(6525), - [anon_sym_BSLASHacf] = ACTIONS(6525), - [anon_sym_BSLASHAcf] = ACTIONS(6525), - [anon_sym_BSLASHacfp] = ACTIONS(6525), - [anon_sym_BSLASHAcfp] = ACTIONS(6525), - [anon_sym_BSLASHac] = ACTIONS(6525), - [anon_sym_BSLASHAc] = ACTIONS(6525), - [anon_sym_BSLASHacp] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6525), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6525), - [anon_sym_BSLASHcolor] = ACTIONS(6525), - [anon_sym_BSLASHcolorbox] = ACTIONS(6525), - [anon_sym_BSLASHtextcolor] = ACTIONS(6525), - [anon_sym_BSLASHpagecolor] = ACTIONS(6525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6525), - [anon_sym_BSLASHtext] = ACTIONS(6525), - [anon_sym_BSLASHintertext] = ACTIONS(6525), - [anon_sym_shortintertext] = ACTIONS(6525), - }, - [1773] = { - [sym_command_name] = ACTIONS(6529), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6529), - [anon_sym_LBRACK] = ACTIONS(6531), - [anon_sym_RBRACK] = ACTIONS(6531), - [anon_sym_COMMA] = ACTIONS(6531), - [anon_sym_EQ] = ACTIONS(6531), - [anon_sym_LPAREN] = ACTIONS(6531), - [anon_sym_RPAREN] = ACTIONS(6531), - [anon_sym_LBRACE] = ACTIONS(6531), - [sym_word] = ACTIONS(6529), - [sym_placeholder] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6531), - [anon_sym_DASH] = ACTIONS(6531), - [anon_sym_STAR] = ACTIONS(6531), - [anon_sym_SLASH] = ACTIONS(6531), - [anon_sym_LT] = ACTIONS(6529), - [anon_sym_GT] = ACTIONS(6529), - [anon_sym_BANG] = ACTIONS(6529), - [anon_sym_PIPE] = ACTIONS(6529), - [anon_sym_COLON] = ACTIONS(6529), - [anon_sym_SQUOTE] = ACTIONS(6529), - [anon_sym__] = ACTIONS(6531), - [anon_sym_CARET] = ACTIONS(6531), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6531), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6531), - [anon_sym_DOLLAR] = ACTIONS(6529), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6531), - [anon_sym_BSLASHbegin] = ACTIONS(6529), - [anon_sym_BSLASHtitle] = ACTIONS(6529), - [anon_sym_BSLASHauthor] = ACTIONS(6529), - [anon_sym_BSLASHusepackage] = ACTIONS(6529), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6529), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6529), - [anon_sym_BSLASHinclude] = ACTIONS(6529), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6529), - [anon_sym_BSLASHinput] = ACTIONS(6529), - [anon_sym_BSLASHsubfile] = ACTIONS(6529), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6529), - [anon_sym_BSLASHbibliography] = ACTIONS(6529), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6529), - [anon_sym_BSLASHincludesvg] = ACTIONS(6529), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6529), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6529), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6529), - [anon_sym_BSLASHimport] = ACTIONS(6529), - [anon_sym_BSLASHsubimport] = ACTIONS(6529), - [anon_sym_BSLASHinputfrom] = ACTIONS(6529), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6529), - [anon_sym_BSLASHincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHcaption] = ACTIONS(6529), - [anon_sym_BSLASHcite] = ACTIONS(6529), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCite] = ACTIONS(6529), - [anon_sym_BSLASHnocite] = ACTIONS(6529), - [anon_sym_BSLASHcitet] = ACTIONS(6529), - [anon_sym_BSLASHcitep] = ACTIONS(6529), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteauthor] = ACTIONS(6529), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6529), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitetitle] = ACTIONS(6529), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteyear] = ACTIONS(6529), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitedate] = ACTIONS(6529), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteurl] = ACTIONS(6529), - [anon_sym_BSLASHfullcite] = ACTIONS(6529), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6529), - [anon_sym_BSLASHcitealt] = ACTIONS(6529), - [anon_sym_BSLASHcitealp] = ACTIONS(6529), - [anon_sym_BSLASHcitetext] = ACTIONS(6529), - [anon_sym_BSLASHparencite] = ACTIONS(6529), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHParencite] = ACTIONS(6529), - [anon_sym_BSLASHfootcite] = ACTIONS(6529), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6529), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6529), - [anon_sym_BSLASHtextcite] = ACTIONS(6529), - [anon_sym_BSLASHTextcite] = ACTIONS(6529), - [anon_sym_BSLASHsmartcite] = ACTIONS(6529), - [anon_sym_BSLASHSmartcite] = ACTIONS(6529), - [anon_sym_BSLASHsupercite] = ACTIONS(6529), - [anon_sym_BSLASHautocite] = ACTIONS(6529), - [anon_sym_BSLASHAutocite] = ACTIONS(6529), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHvolcite] = ACTIONS(6529), - [anon_sym_BSLASHVolcite] = ACTIONS(6529), - [anon_sym_BSLASHpvolcite] = ACTIONS(6529), - [anon_sym_BSLASHPvolcite] = ACTIONS(6529), - [anon_sym_BSLASHfvolcite] = ACTIONS(6529), - [anon_sym_BSLASHftvolcite] = ACTIONS(6529), - [anon_sym_BSLASHsvolcite] = ACTIONS(6529), - [anon_sym_BSLASHSvolcite] = ACTIONS(6529), - [anon_sym_BSLASHtvolcite] = ACTIONS(6529), - [anon_sym_BSLASHTvolcite] = ACTIONS(6529), - [anon_sym_BSLASHavolcite] = ACTIONS(6529), - [anon_sym_BSLASHAvolcite] = ACTIONS(6529), - [anon_sym_BSLASHnotecite] = ACTIONS(6529), - [anon_sym_BSLASHNotecite] = ACTIONS(6529), - [anon_sym_BSLASHpnotecite] = ACTIONS(6529), - [anon_sym_BSLASHPnotecite] = ACTIONS(6529), - [anon_sym_BSLASHfnotecite] = ACTIONS(6529), - [anon_sym_BSLASHlabel] = ACTIONS(6529), - [anon_sym_BSLASHref] = ACTIONS(6529), - [anon_sym_BSLASHeqref] = ACTIONS(6529), - [anon_sym_BSLASHvref] = ACTIONS(6529), - [anon_sym_BSLASHVref] = ACTIONS(6529), - [anon_sym_BSLASHautoref] = ACTIONS(6529), - [anon_sym_BSLASHpageref] = ACTIONS(6529), - [anon_sym_BSLASHcref] = ACTIONS(6529), - [anon_sym_BSLASHCref] = ACTIONS(6529), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnameCref] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHlabelcref] = ACTIONS(6529), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCrefrange] = ACTIONS(6529), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnewlabel] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6529), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6529), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6531), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHdef] = ACTIONS(6529), - [anon_sym_BSLASHlet] = ACTIONS(6529), - [anon_sym_BSLASHleft] = ACTIONS(6529), - [anon_sym_BSLASHbig] = ACTIONS(6529), - [anon_sym_BSLASHBig] = ACTIONS(6529), - [anon_sym_BSLASHbigg] = ACTIONS(6529), - [anon_sym_BSLASHBigg] = ACTIONS(6529), - [anon_sym_BSLASHbigl] = ACTIONS(6529), - [anon_sym_BSLASHBigl] = ACTIONS(6529), - [anon_sym_BSLASHbiggl] = ACTIONS(6529), - [anon_sym_BSLASHBiggl] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6529), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6529), - [anon_sym_BSLASHgls] = ACTIONS(6529), - [anon_sym_BSLASHGls] = ACTIONS(6529), - [anon_sym_BSLASHGLS] = ACTIONS(6529), - [anon_sym_BSLASHglspl] = ACTIONS(6529), - [anon_sym_BSLASHGlspl] = ACTIONS(6529), - [anon_sym_BSLASHGLSpl] = ACTIONS(6529), - [anon_sym_BSLASHglsdisp] = ACTIONS(6529), - [anon_sym_BSLASHglslink] = ACTIONS(6529), - [anon_sym_BSLASHglstext] = ACTIONS(6529), - [anon_sym_BSLASHGlstext] = ACTIONS(6529), - [anon_sym_BSLASHGLStext] = ACTIONS(6529), - [anon_sym_BSLASHglsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6529), - [anon_sym_BSLASHglsplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSplural] = ACTIONS(6529), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHglsname] = ACTIONS(6529), - [anon_sym_BSLASHGlsname] = ACTIONS(6529), - [anon_sym_BSLASHGLSname] = ACTIONS(6529), - [anon_sym_BSLASHglssymbol] = ACTIONS(6529), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6529), - [anon_sym_BSLASHglsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6529), - [anon_sym_BSLASHglsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6529), - [anon_sym_BSLASHglsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6529), - [anon_sym_BSLASHglsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6529), - [anon_sym_BSLASHglsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6529), - [anon_sym_BSLASHnewacronym] = ACTIONS(6529), - [anon_sym_BSLASHacrshort] = ACTIONS(6529), - [anon_sym_BSLASHAcrshort] = ACTIONS(6529), - [anon_sym_BSLASHACRshort] = ACTIONS(6529), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6529), - [anon_sym_BSLASHacrlong] = ACTIONS(6529), - [anon_sym_BSLASHAcrlong] = ACTIONS(6529), - [anon_sym_BSLASHACRlong] = ACTIONS(6529), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6529), - [anon_sym_BSLASHacrfull] = ACTIONS(6529), - [anon_sym_BSLASHAcrfull] = ACTIONS(6529), - [anon_sym_BSLASHACRfull] = ACTIONS(6529), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6529), - [anon_sym_BSLASHacs] = ACTIONS(6529), - [anon_sym_BSLASHAcs] = ACTIONS(6529), - [anon_sym_BSLASHacsp] = ACTIONS(6529), - [anon_sym_BSLASHAcsp] = ACTIONS(6529), - [anon_sym_BSLASHacl] = ACTIONS(6529), - [anon_sym_BSLASHAcl] = ACTIONS(6529), - [anon_sym_BSLASHaclp] = ACTIONS(6529), - [anon_sym_BSLASHAclp] = ACTIONS(6529), - [anon_sym_BSLASHacf] = ACTIONS(6529), - [anon_sym_BSLASHAcf] = ACTIONS(6529), - [anon_sym_BSLASHacfp] = ACTIONS(6529), - [anon_sym_BSLASHAcfp] = ACTIONS(6529), - [anon_sym_BSLASHac] = ACTIONS(6529), - [anon_sym_BSLASHAc] = ACTIONS(6529), - [anon_sym_BSLASHacp] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6529), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6529), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6529), - [anon_sym_BSLASHcolor] = ACTIONS(6529), - [anon_sym_BSLASHcolorbox] = ACTIONS(6529), - [anon_sym_BSLASHtextcolor] = ACTIONS(6529), - [anon_sym_BSLASHpagecolor] = ACTIONS(6529), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6529), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6529), - [anon_sym_BSLASHtext] = ACTIONS(6529), - [anon_sym_BSLASHintertext] = ACTIONS(6529), - [anon_sym_shortintertext] = ACTIONS(6529), - }, - [1774] = { - [sym_command_name] = ACTIONS(6185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6185), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_RBRACK] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_EQ] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_LBRACE] = ACTIONS(6187), - [anon_sym_RBRACE] = ACTIONS(6187), - [sym_word] = ACTIONS(6185), - [sym_placeholder] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6187), - [anon_sym_DASH] = ACTIONS(6187), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_SQUOTE] = ACTIONS(6185), - [anon_sym__] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), - [anon_sym_DOLLAR] = ACTIONS(6185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), - [anon_sym_BSLASHtitle] = ACTIONS(6185), - [anon_sym_BSLASHauthor] = ACTIONS(6185), - [anon_sym_BSLASHusepackage] = ACTIONS(6185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), - [anon_sym_BSLASHinclude] = ACTIONS(6185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), - [anon_sym_BSLASHinput] = ACTIONS(6185), - [anon_sym_BSLASHsubfile] = ACTIONS(6185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), - [anon_sym_BSLASHbibliography] = ACTIONS(6185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), - [anon_sym_BSLASHincludesvg] = ACTIONS(6185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), - [anon_sym_BSLASHimport] = ACTIONS(6185), - [anon_sym_BSLASHsubimport] = ACTIONS(6185), - [anon_sym_BSLASHinputfrom] = ACTIONS(6185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), - [anon_sym_BSLASHincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHcaption] = ACTIONS(6185), - [anon_sym_BSLASHcite] = ACTIONS(6185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCite] = ACTIONS(6185), - [anon_sym_BSLASHnocite] = ACTIONS(6185), - [anon_sym_BSLASHcitet] = ACTIONS(6185), - [anon_sym_BSLASHcitep] = ACTIONS(6185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteauthor] = ACTIONS(6185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitetitle] = ACTIONS(6185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteyear] = ACTIONS(6185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitedate] = ACTIONS(6185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteurl] = ACTIONS(6185), - [anon_sym_BSLASHfullcite] = ACTIONS(6185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), - [anon_sym_BSLASHcitealt] = ACTIONS(6185), - [anon_sym_BSLASHcitealp] = ACTIONS(6185), - [anon_sym_BSLASHcitetext] = ACTIONS(6185), - [anon_sym_BSLASHparencite] = ACTIONS(6185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHParencite] = ACTIONS(6185), - [anon_sym_BSLASHfootcite] = ACTIONS(6185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), - [anon_sym_BSLASHtextcite] = ACTIONS(6185), - [anon_sym_BSLASHTextcite] = ACTIONS(6185), - [anon_sym_BSLASHsmartcite] = ACTIONS(6185), - [anon_sym_BSLASHSmartcite] = ACTIONS(6185), - [anon_sym_BSLASHsupercite] = ACTIONS(6185), - [anon_sym_BSLASHautocite] = ACTIONS(6185), - [anon_sym_BSLASHAutocite] = ACTIONS(6185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHvolcite] = ACTIONS(6185), - [anon_sym_BSLASHVolcite] = ACTIONS(6185), - [anon_sym_BSLASHpvolcite] = ACTIONS(6185), - [anon_sym_BSLASHPvolcite] = ACTIONS(6185), - [anon_sym_BSLASHfvolcite] = ACTIONS(6185), - [anon_sym_BSLASHftvolcite] = ACTIONS(6185), - [anon_sym_BSLASHsvolcite] = ACTIONS(6185), - [anon_sym_BSLASHSvolcite] = ACTIONS(6185), - [anon_sym_BSLASHtvolcite] = ACTIONS(6185), - [anon_sym_BSLASHTvolcite] = ACTIONS(6185), - [anon_sym_BSLASHavolcite] = ACTIONS(6185), - [anon_sym_BSLASHAvolcite] = ACTIONS(6185), - [anon_sym_BSLASHnotecite] = ACTIONS(6185), - [anon_sym_BSLASHNotecite] = ACTIONS(6185), - [anon_sym_BSLASHpnotecite] = ACTIONS(6185), - [anon_sym_BSLASHPnotecite] = ACTIONS(6185), - [anon_sym_BSLASHfnotecite] = ACTIONS(6185), - [anon_sym_BSLASHlabel] = ACTIONS(6185), - [anon_sym_BSLASHref] = ACTIONS(6185), - [anon_sym_BSLASHeqref] = ACTIONS(6185), - [anon_sym_BSLASHvref] = ACTIONS(6185), - [anon_sym_BSLASHVref] = ACTIONS(6185), - [anon_sym_BSLASHautoref] = ACTIONS(6185), - [anon_sym_BSLASHpageref] = ACTIONS(6185), - [anon_sym_BSLASHcref] = ACTIONS(6185), - [anon_sym_BSLASHCref] = ACTIONS(6185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnameCref] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHlabelcref] = ACTIONS(6185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCrefrange] = ACTIONS(6185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnewlabel] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHdef] = ACTIONS(6185), - [anon_sym_BSLASHlet] = ACTIONS(6185), - [anon_sym_BSLASHleft] = ACTIONS(6185), - [anon_sym_BSLASHbig] = ACTIONS(6185), - [anon_sym_BSLASHBig] = ACTIONS(6185), - [anon_sym_BSLASHbigg] = ACTIONS(6185), - [anon_sym_BSLASHBigg] = ACTIONS(6185), - [anon_sym_BSLASHbigl] = ACTIONS(6185), - [anon_sym_BSLASHBigl] = ACTIONS(6185), - [anon_sym_BSLASHbiggl] = ACTIONS(6185), - [anon_sym_BSLASHBiggl] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), - [anon_sym_BSLASHgls] = ACTIONS(6185), - [anon_sym_BSLASHGls] = ACTIONS(6185), - [anon_sym_BSLASHGLS] = ACTIONS(6185), - [anon_sym_BSLASHglspl] = ACTIONS(6185), - [anon_sym_BSLASHGlspl] = ACTIONS(6185), - [anon_sym_BSLASHGLSpl] = ACTIONS(6185), - [anon_sym_BSLASHglsdisp] = ACTIONS(6185), - [anon_sym_BSLASHglslink] = ACTIONS(6185), - [anon_sym_BSLASHglstext] = ACTIONS(6185), - [anon_sym_BSLASHGlstext] = ACTIONS(6185), - [anon_sym_BSLASHGLStext] = ACTIONS(6185), - [anon_sym_BSLASHglsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), - [anon_sym_BSLASHglsplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSplural] = ACTIONS(6185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHglsname] = ACTIONS(6185), - [anon_sym_BSLASHGlsname] = ACTIONS(6185), - [anon_sym_BSLASHGLSname] = ACTIONS(6185), - [anon_sym_BSLASHglssymbol] = ACTIONS(6185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), - [anon_sym_BSLASHglsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), - [anon_sym_BSLASHglsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), - [anon_sym_BSLASHglsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), - [anon_sym_BSLASHglsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), - [anon_sym_BSLASHglsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), - [anon_sym_BSLASHnewacronym] = ACTIONS(6185), - [anon_sym_BSLASHacrshort] = ACTIONS(6185), - [anon_sym_BSLASHAcrshort] = ACTIONS(6185), - [anon_sym_BSLASHACRshort] = ACTIONS(6185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), - [anon_sym_BSLASHacrlong] = ACTIONS(6185), - [anon_sym_BSLASHAcrlong] = ACTIONS(6185), - [anon_sym_BSLASHACRlong] = ACTIONS(6185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), - [anon_sym_BSLASHacrfull] = ACTIONS(6185), - [anon_sym_BSLASHAcrfull] = ACTIONS(6185), - [anon_sym_BSLASHACRfull] = ACTIONS(6185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), - [anon_sym_BSLASHacs] = ACTIONS(6185), - [anon_sym_BSLASHAcs] = ACTIONS(6185), - [anon_sym_BSLASHacsp] = ACTIONS(6185), - [anon_sym_BSLASHAcsp] = ACTIONS(6185), - [anon_sym_BSLASHacl] = ACTIONS(6185), - [anon_sym_BSLASHAcl] = ACTIONS(6185), - [anon_sym_BSLASHaclp] = ACTIONS(6185), - [anon_sym_BSLASHAclp] = ACTIONS(6185), - [anon_sym_BSLASHacf] = ACTIONS(6185), - [anon_sym_BSLASHAcf] = ACTIONS(6185), - [anon_sym_BSLASHacfp] = ACTIONS(6185), - [anon_sym_BSLASHAcfp] = ACTIONS(6185), - [anon_sym_BSLASHac] = ACTIONS(6185), - [anon_sym_BSLASHAc] = ACTIONS(6185), - [anon_sym_BSLASHacp] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), - [anon_sym_BSLASHcolor] = ACTIONS(6185), - [anon_sym_BSLASHcolorbox] = ACTIONS(6185), - [anon_sym_BSLASHtextcolor] = ACTIONS(6185), - [anon_sym_BSLASHpagecolor] = ACTIONS(6185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), - [anon_sym_BSLASHtext] = ACTIONS(6185), - [anon_sym_BSLASHintertext] = ACTIONS(6185), - [anon_sym_shortintertext] = ACTIONS(6185), - }, - [1775] = { - [sym_command_name] = ACTIONS(6449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6449), - [anon_sym_LBRACK] = ACTIONS(6451), - [anon_sym_RBRACK] = ACTIONS(6451), - [anon_sym_COMMA] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(6451), - [anon_sym_LPAREN] = ACTIONS(6451), - [anon_sym_RPAREN] = ACTIONS(6451), - [anon_sym_LBRACE] = ACTIONS(6451), - [anon_sym_RBRACE] = ACTIONS(6451), - [sym_word] = ACTIONS(6449), - [sym_placeholder] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6451), - [anon_sym_DASH] = ACTIONS(6451), - [anon_sym_STAR] = ACTIONS(6451), - [anon_sym_SLASH] = ACTIONS(6451), - [anon_sym_LT] = ACTIONS(6449), - [anon_sym_GT] = ACTIONS(6449), - [anon_sym_BANG] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6449), - [anon_sym_COLON] = ACTIONS(6449), - [anon_sym_SQUOTE] = ACTIONS(6449), - [anon_sym__] = ACTIONS(6451), - [anon_sym_CARET] = ACTIONS(6451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6451), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6451), - [anon_sym_DOLLAR] = ACTIONS(6449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6451), - [anon_sym_BSLASHtitle] = ACTIONS(6449), - [anon_sym_BSLASHauthor] = ACTIONS(6449), - [anon_sym_BSLASHusepackage] = ACTIONS(6449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6449), - [anon_sym_BSLASHinclude] = ACTIONS(6449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6449), - [anon_sym_BSLASHinput] = ACTIONS(6449), - [anon_sym_BSLASHsubfile] = ACTIONS(6449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6449), - [anon_sym_BSLASHbibliography] = ACTIONS(6449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6449), - [anon_sym_BSLASHincludesvg] = ACTIONS(6449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6449), - [anon_sym_BSLASHimport] = ACTIONS(6449), - [anon_sym_BSLASHsubimport] = ACTIONS(6449), - [anon_sym_BSLASHinputfrom] = ACTIONS(6449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6449), - [anon_sym_BSLASHincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHcaption] = ACTIONS(6449), - [anon_sym_BSLASHcite] = ACTIONS(6449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCite] = ACTIONS(6449), - [anon_sym_BSLASHnocite] = ACTIONS(6449), - [anon_sym_BSLASHcitet] = ACTIONS(6449), - [anon_sym_BSLASHcitep] = ACTIONS(6449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteauthor] = ACTIONS(6449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitetitle] = ACTIONS(6449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteyear] = ACTIONS(6449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitedate] = ACTIONS(6449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteurl] = ACTIONS(6449), - [anon_sym_BSLASHfullcite] = ACTIONS(6449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6449), - [anon_sym_BSLASHcitealt] = ACTIONS(6449), - [anon_sym_BSLASHcitealp] = ACTIONS(6449), - [anon_sym_BSLASHcitetext] = ACTIONS(6449), - [anon_sym_BSLASHparencite] = ACTIONS(6449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHParencite] = ACTIONS(6449), - [anon_sym_BSLASHfootcite] = ACTIONS(6449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6449), - [anon_sym_BSLASHtextcite] = ACTIONS(6449), - [anon_sym_BSLASHTextcite] = ACTIONS(6449), - [anon_sym_BSLASHsmartcite] = ACTIONS(6449), - [anon_sym_BSLASHSmartcite] = ACTIONS(6449), - [anon_sym_BSLASHsupercite] = ACTIONS(6449), - [anon_sym_BSLASHautocite] = ACTIONS(6449), - [anon_sym_BSLASHAutocite] = ACTIONS(6449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHvolcite] = ACTIONS(6449), - [anon_sym_BSLASHVolcite] = ACTIONS(6449), - [anon_sym_BSLASHpvolcite] = ACTIONS(6449), - [anon_sym_BSLASHPvolcite] = ACTIONS(6449), - [anon_sym_BSLASHfvolcite] = ACTIONS(6449), - [anon_sym_BSLASHftvolcite] = ACTIONS(6449), - [anon_sym_BSLASHsvolcite] = ACTIONS(6449), - [anon_sym_BSLASHSvolcite] = ACTIONS(6449), - [anon_sym_BSLASHtvolcite] = ACTIONS(6449), - [anon_sym_BSLASHTvolcite] = ACTIONS(6449), - [anon_sym_BSLASHavolcite] = ACTIONS(6449), - [anon_sym_BSLASHAvolcite] = ACTIONS(6449), - [anon_sym_BSLASHnotecite] = ACTIONS(6449), - [anon_sym_BSLASHNotecite] = ACTIONS(6449), - [anon_sym_BSLASHpnotecite] = ACTIONS(6449), - [anon_sym_BSLASHPnotecite] = ACTIONS(6449), - [anon_sym_BSLASHfnotecite] = ACTIONS(6449), - [anon_sym_BSLASHlabel] = ACTIONS(6449), - [anon_sym_BSLASHref] = ACTIONS(6449), - [anon_sym_BSLASHeqref] = ACTIONS(6449), - [anon_sym_BSLASHvref] = ACTIONS(6449), - [anon_sym_BSLASHVref] = ACTIONS(6449), - [anon_sym_BSLASHautoref] = ACTIONS(6449), - [anon_sym_BSLASHpageref] = ACTIONS(6449), - [anon_sym_BSLASHcref] = ACTIONS(6449), - [anon_sym_BSLASHCref] = ACTIONS(6449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnameCref] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHlabelcref] = ACTIONS(6449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCrefrange] = ACTIONS(6449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnewlabel] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6451), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHdef] = ACTIONS(6449), - [anon_sym_BSLASHlet] = ACTIONS(6449), - [anon_sym_BSLASHleft] = ACTIONS(6449), - [anon_sym_BSLASHbig] = ACTIONS(6449), - [anon_sym_BSLASHBig] = ACTIONS(6449), - [anon_sym_BSLASHbigg] = ACTIONS(6449), - [anon_sym_BSLASHBigg] = ACTIONS(6449), - [anon_sym_BSLASHbigl] = ACTIONS(6449), - [anon_sym_BSLASHBigl] = ACTIONS(6449), - [anon_sym_BSLASHbiggl] = ACTIONS(6449), - [anon_sym_BSLASHBiggl] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6449), - [anon_sym_BSLASHgls] = ACTIONS(6449), - [anon_sym_BSLASHGls] = ACTIONS(6449), - [anon_sym_BSLASHGLS] = ACTIONS(6449), - [anon_sym_BSLASHglspl] = ACTIONS(6449), - [anon_sym_BSLASHGlspl] = ACTIONS(6449), - [anon_sym_BSLASHGLSpl] = ACTIONS(6449), - [anon_sym_BSLASHglsdisp] = ACTIONS(6449), - [anon_sym_BSLASHglslink] = ACTIONS(6449), - [anon_sym_BSLASHglstext] = ACTIONS(6449), - [anon_sym_BSLASHGlstext] = ACTIONS(6449), - [anon_sym_BSLASHGLStext] = ACTIONS(6449), - [anon_sym_BSLASHglsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6449), - [anon_sym_BSLASHglsplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSplural] = ACTIONS(6449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHglsname] = ACTIONS(6449), - [anon_sym_BSLASHGlsname] = ACTIONS(6449), - [anon_sym_BSLASHGLSname] = ACTIONS(6449), - [anon_sym_BSLASHglssymbol] = ACTIONS(6449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6449), - [anon_sym_BSLASHglsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6449), - [anon_sym_BSLASHglsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6449), - [anon_sym_BSLASHglsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6449), - [anon_sym_BSLASHglsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6449), - [anon_sym_BSLASHglsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6449), - [anon_sym_BSLASHnewacronym] = ACTIONS(6449), - [anon_sym_BSLASHacrshort] = ACTIONS(6449), - [anon_sym_BSLASHAcrshort] = ACTIONS(6449), - [anon_sym_BSLASHACRshort] = ACTIONS(6449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6449), - [anon_sym_BSLASHacrlong] = ACTIONS(6449), - [anon_sym_BSLASHAcrlong] = ACTIONS(6449), - [anon_sym_BSLASHACRlong] = ACTIONS(6449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6449), - [anon_sym_BSLASHacrfull] = ACTIONS(6449), - [anon_sym_BSLASHAcrfull] = ACTIONS(6449), - [anon_sym_BSLASHACRfull] = ACTIONS(6449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6449), - [anon_sym_BSLASHacs] = ACTIONS(6449), - [anon_sym_BSLASHAcs] = ACTIONS(6449), - [anon_sym_BSLASHacsp] = ACTIONS(6449), - [anon_sym_BSLASHAcsp] = ACTIONS(6449), - [anon_sym_BSLASHacl] = ACTIONS(6449), - [anon_sym_BSLASHAcl] = ACTIONS(6449), - [anon_sym_BSLASHaclp] = ACTIONS(6449), - [anon_sym_BSLASHAclp] = ACTIONS(6449), - [anon_sym_BSLASHacf] = ACTIONS(6449), - [anon_sym_BSLASHAcf] = ACTIONS(6449), - [anon_sym_BSLASHacfp] = ACTIONS(6449), - [anon_sym_BSLASHAcfp] = ACTIONS(6449), - [anon_sym_BSLASHac] = ACTIONS(6449), - [anon_sym_BSLASHAc] = ACTIONS(6449), - [anon_sym_BSLASHacp] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6449), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6449), - [anon_sym_BSLASHcolor] = ACTIONS(6449), - [anon_sym_BSLASHcolorbox] = ACTIONS(6449), - [anon_sym_BSLASHtextcolor] = ACTIONS(6449), - [anon_sym_BSLASHpagecolor] = ACTIONS(6449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6449), - [anon_sym_BSLASHtext] = ACTIONS(6449), - [anon_sym_BSLASHintertext] = ACTIONS(6449), - [anon_sym_shortintertext] = ACTIONS(6449), - }, - [1776] = { - [sym_command_name] = ACTIONS(6389), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(6391), - [anon_sym_RBRACK] = ACTIONS(6391), - [anon_sym_COMMA] = ACTIONS(6391), - [anon_sym_EQ] = ACTIONS(6391), - [anon_sym_LPAREN] = ACTIONS(6391), - [anon_sym_RPAREN] = ACTIONS(6391), - [anon_sym_LBRACE] = ACTIONS(6391), - [sym_word] = ACTIONS(6389), - [sym_placeholder] = ACTIONS(6391), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6391), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_LT] = ACTIONS(6389), - [anon_sym_GT] = ACTIONS(6389), - [anon_sym_BANG] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_SQUOTE] = ACTIONS(6389), - [anon_sym__] = ACTIONS(6391), - [anon_sym_CARET] = ACTIONS(6391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6391), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6391), - [anon_sym_DOLLAR] = ACTIONS(6389), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6391), - [anon_sym_BSLASHbegin] = ACTIONS(6389), - [anon_sym_BSLASHtitle] = ACTIONS(6389), - [anon_sym_BSLASHauthor] = ACTIONS(6389), - [anon_sym_BSLASHusepackage] = ACTIONS(6389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6389), - [anon_sym_BSLASHinclude] = ACTIONS(6389), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6389), - [anon_sym_BSLASHinput] = ACTIONS(6389), - [anon_sym_BSLASHsubfile] = ACTIONS(6389), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6389), - [anon_sym_BSLASHbibliography] = ACTIONS(6389), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6389), - [anon_sym_BSLASHincludesvg] = ACTIONS(6389), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6389), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6389), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6389), - [anon_sym_BSLASHimport] = ACTIONS(6389), - [anon_sym_BSLASHsubimport] = ACTIONS(6389), - [anon_sym_BSLASHinputfrom] = ACTIONS(6389), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6389), - [anon_sym_BSLASHincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHcaption] = ACTIONS(6389), - [anon_sym_BSLASHcite] = ACTIONS(6389), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCite] = ACTIONS(6389), - [anon_sym_BSLASHnocite] = ACTIONS(6389), - [anon_sym_BSLASHcitet] = ACTIONS(6389), - [anon_sym_BSLASHcitep] = ACTIONS(6389), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteauthor] = ACTIONS(6389), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6389), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitetitle] = ACTIONS(6389), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteyear] = ACTIONS(6389), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitedate] = ACTIONS(6389), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteurl] = ACTIONS(6389), - [anon_sym_BSLASHfullcite] = ACTIONS(6389), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6389), - [anon_sym_BSLASHcitealt] = ACTIONS(6389), - [anon_sym_BSLASHcitealp] = ACTIONS(6389), - [anon_sym_BSLASHcitetext] = ACTIONS(6389), - [anon_sym_BSLASHparencite] = ACTIONS(6389), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHParencite] = ACTIONS(6389), - [anon_sym_BSLASHfootcite] = ACTIONS(6389), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6389), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6389), - [anon_sym_BSLASHtextcite] = ACTIONS(6389), - [anon_sym_BSLASHTextcite] = ACTIONS(6389), - [anon_sym_BSLASHsmartcite] = ACTIONS(6389), - [anon_sym_BSLASHSmartcite] = ACTIONS(6389), - [anon_sym_BSLASHsupercite] = ACTIONS(6389), - [anon_sym_BSLASHautocite] = ACTIONS(6389), - [anon_sym_BSLASHAutocite] = ACTIONS(6389), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHvolcite] = ACTIONS(6389), - [anon_sym_BSLASHVolcite] = ACTIONS(6389), - [anon_sym_BSLASHpvolcite] = ACTIONS(6389), - [anon_sym_BSLASHPvolcite] = ACTIONS(6389), - [anon_sym_BSLASHfvolcite] = ACTIONS(6389), - [anon_sym_BSLASHftvolcite] = ACTIONS(6389), - [anon_sym_BSLASHsvolcite] = ACTIONS(6389), - [anon_sym_BSLASHSvolcite] = ACTIONS(6389), - [anon_sym_BSLASHtvolcite] = ACTIONS(6389), - [anon_sym_BSLASHTvolcite] = ACTIONS(6389), - [anon_sym_BSLASHavolcite] = ACTIONS(6389), - [anon_sym_BSLASHAvolcite] = ACTIONS(6389), - [anon_sym_BSLASHnotecite] = ACTIONS(6389), - [anon_sym_BSLASHNotecite] = ACTIONS(6389), - [anon_sym_BSLASHpnotecite] = ACTIONS(6389), - [anon_sym_BSLASHPnotecite] = ACTIONS(6389), - [anon_sym_BSLASHfnotecite] = ACTIONS(6389), - [anon_sym_BSLASHlabel] = ACTIONS(6389), - [anon_sym_BSLASHref] = ACTIONS(6389), - [anon_sym_BSLASHeqref] = ACTIONS(6389), - [anon_sym_BSLASHvref] = ACTIONS(6389), - [anon_sym_BSLASHVref] = ACTIONS(6389), - [anon_sym_BSLASHautoref] = ACTIONS(6389), - [anon_sym_BSLASHpageref] = ACTIONS(6389), - [anon_sym_BSLASHcref] = ACTIONS(6389), - [anon_sym_BSLASHCref] = ACTIONS(6389), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnameCref] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHlabelcref] = ACTIONS(6389), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCrefrange] = ACTIONS(6389), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnewlabel] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6389), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6389), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6391), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHdef] = ACTIONS(6389), - [anon_sym_BSLASHlet] = ACTIONS(6389), - [anon_sym_BSLASHleft] = ACTIONS(6389), - [anon_sym_BSLASHbig] = ACTIONS(6389), - [anon_sym_BSLASHBig] = ACTIONS(6389), - [anon_sym_BSLASHbigg] = ACTIONS(6389), - [anon_sym_BSLASHBigg] = ACTIONS(6389), - [anon_sym_BSLASHbigl] = ACTIONS(6389), - [anon_sym_BSLASHBigl] = ACTIONS(6389), - [anon_sym_BSLASHbiggl] = ACTIONS(6389), - [anon_sym_BSLASHBiggl] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6389), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6389), - [anon_sym_BSLASHgls] = ACTIONS(6389), - [anon_sym_BSLASHGls] = ACTIONS(6389), - [anon_sym_BSLASHGLS] = ACTIONS(6389), - [anon_sym_BSLASHglspl] = ACTIONS(6389), - [anon_sym_BSLASHGlspl] = ACTIONS(6389), - [anon_sym_BSLASHGLSpl] = ACTIONS(6389), - [anon_sym_BSLASHglsdisp] = ACTIONS(6389), - [anon_sym_BSLASHglslink] = ACTIONS(6389), - [anon_sym_BSLASHglstext] = ACTIONS(6389), - [anon_sym_BSLASHGlstext] = ACTIONS(6389), - [anon_sym_BSLASHGLStext] = ACTIONS(6389), - [anon_sym_BSLASHglsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6389), - [anon_sym_BSLASHglsplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSplural] = ACTIONS(6389), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHglsname] = ACTIONS(6389), - [anon_sym_BSLASHGlsname] = ACTIONS(6389), - [anon_sym_BSLASHGLSname] = ACTIONS(6389), - [anon_sym_BSLASHglssymbol] = ACTIONS(6389), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6389), - [anon_sym_BSLASHglsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6389), - [anon_sym_BSLASHglsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6389), - [anon_sym_BSLASHglsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6389), - [anon_sym_BSLASHglsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6389), - [anon_sym_BSLASHglsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6389), - [anon_sym_BSLASHnewacronym] = ACTIONS(6389), - [anon_sym_BSLASHacrshort] = ACTIONS(6389), - [anon_sym_BSLASHAcrshort] = ACTIONS(6389), - [anon_sym_BSLASHACRshort] = ACTIONS(6389), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6389), - [anon_sym_BSLASHacrlong] = ACTIONS(6389), - [anon_sym_BSLASHAcrlong] = ACTIONS(6389), - [anon_sym_BSLASHACRlong] = ACTIONS(6389), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6389), - [anon_sym_BSLASHacrfull] = ACTIONS(6389), - [anon_sym_BSLASHAcrfull] = ACTIONS(6389), - [anon_sym_BSLASHACRfull] = ACTIONS(6389), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6389), - [anon_sym_BSLASHacs] = ACTIONS(6389), - [anon_sym_BSLASHAcs] = ACTIONS(6389), - [anon_sym_BSLASHacsp] = ACTIONS(6389), - [anon_sym_BSLASHAcsp] = ACTIONS(6389), - [anon_sym_BSLASHacl] = ACTIONS(6389), - [anon_sym_BSLASHAcl] = ACTIONS(6389), - [anon_sym_BSLASHaclp] = ACTIONS(6389), - [anon_sym_BSLASHAclp] = ACTIONS(6389), - [anon_sym_BSLASHacf] = ACTIONS(6389), - [anon_sym_BSLASHAcf] = ACTIONS(6389), - [anon_sym_BSLASHacfp] = ACTIONS(6389), - [anon_sym_BSLASHAcfp] = ACTIONS(6389), - [anon_sym_BSLASHac] = ACTIONS(6389), - [anon_sym_BSLASHAc] = ACTIONS(6389), - [anon_sym_BSLASHacp] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6389), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6389), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6389), - [anon_sym_BSLASHcolor] = ACTIONS(6389), - [anon_sym_BSLASHcolorbox] = ACTIONS(6389), - [anon_sym_BSLASHtextcolor] = ACTIONS(6389), - [anon_sym_BSLASHpagecolor] = ACTIONS(6389), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6389), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6389), - [anon_sym_BSLASHtext] = ACTIONS(6389), - [anon_sym_BSLASHintertext] = ACTIONS(6389), - [anon_sym_shortintertext] = ACTIONS(6389), - }, - [1777] = { - [sym_command_name] = ACTIONS(6189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6189), - [anon_sym_LBRACK] = ACTIONS(6191), - [anon_sym_RBRACK] = ACTIONS(6191), - [anon_sym_COMMA] = ACTIONS(6191), - [anon_sym_EQ] = ACTIONS(6191), - [anon_sym_LPAREN] = ACTIONS(6191), - [anon_sym_RPAREN] = ACTIONS(6191), - [anon_sym_LBRACE] = ACTIONS(6191), - [anon_sym_RBRACE] = ACTIONS(6191), - [sym_word] = ACTIONS(6189), - [sym_placeholder] = ACTIONS(6191), - [anon_sym_PLUS] = ACTIONS(6191), - [anon_sym_DASH] = ACTIONS(6191), - [anon_sym_STAR] = ACTIONS(6191), - [anon_sym_SLASH] = ACTIONS(6191), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_COLON] = ACTIONS(6189), - [anon_sym_SQUOTE] = ACTIONS(6189), - [anon_sym__] = ACTIONS(6191), - [anon_sym_CARET] = ACTIONS(6191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), - [anon_sym_DOLLAR] = ACTIONS(6189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), - [anon_sym_BSLASHtitle] = ACTIONS(6189), - [anon_sym_BSLASHauthor] = ACTIONS(6189), - [anon_sym_BSLASHusepackage] = ACTIONS(6189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), - [anon_sym_BSLASHinclude] = ACTIONS(6189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), - [anon_sym_BSLASHinput] = ACTIONS(6189), - [anon_sym_BSLASHsubfile] = ACTIONS(6189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), - [anon_sym_BSLASHbibliography] = ACTIONS(6189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), - [anon_sym_BSLASHincludesvg] = ACTIONS(6189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), - [anon_sym_BSLASHimport] = ACTIONS(6189), - [anon_sym_BSLASHsubimport] = ACTIONS(6189), - [anon_sym_BSLASHinputfrom] = ACTIONS(6189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), - [anon_sym_BSLASHincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHcaption] = ACTIONS(6189), - [anon_sym_BSLASHcite] = ACTIONS(6189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCite] = ACTIONS(6189), - [anon_sym_BSLASHnocite] = ACTIONS(6189), - [anon_sym_BSLASHcitet] = ACTIONS(6189), - [anon_sym_BSLASHcitep] = ACTIONS(6189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteauthor] = ACTIONS(6189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitetitle] = ACTIONS(6189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteyear] = ACTIONS(6189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitedate] = ACTIONS(6189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteurl] = ACTIONS(6189), - [anon_sym_BSLASHfullcite] = ACTIONS(6189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), - [anon_sym_BSLASHcitealt] = ACTIONS(6189), - [anon_sym_BSLASHcitealp] = ACTIONS(6189), - [anon_sym_BSLASHcitetext] = ACTIONS(6189), - [anon_sym_BSLASHparencite] = ACTIONS(6189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHParencite] = ACTIONS(6189), - [anon_sym_BSLASHfootcite] = ACTIONS(6189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), - [anon_sym_BSLASHtextcite] = ACTIONS(6189), - [anon_sym_BSLASHTextcite] = ACTIONS(6189), - [anon_sym_BSLASHsmartcite] = ACTIONS(6189), - [anon_sym_BSLASHSmartcite] = ACTIONS(6189), - [anon_sym_BSLASHsupercite] = ACTIONS(6189), - [anon_sym_BSLASHautocite] = ACTIONS(6189), - [anon_sym_BSLASHAutocite] = ACTIONS(6189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHvolcite] = ACTIONS(6189), - [anon_sym_BSLASHVolcite] = ACTIONS(6189), - [anon_sym_BSLASHpvolcite] = ACTIONS(6189), - [anon_sym_BSLASHPvolcite] = ACTIONS(6189), - [anon_sym_BSLASHfvolcite] = ACTIONS(6189), - [anon_sym_BSLASHftvolcite] = ACTIONS(6189), - [anon_sym_BSLASHsvolcite] = ACTIONS(6189), - [anon_sym_BSLASHSvolcite] = ACTIONS(6189), - [anon_sym_BSLASHtvolcite] = ACTIONS(6189), - [anon_sym_BSLASHTvolcite] = ACTIONS(6189), - [anon_sym_BSLASHavolcite] = ACTIONS(6189), - [anon_sym_BSLASHAvolcite] = ACTIONS(6189), - [anon_sym_BSLASHnotecite] = ACTIONS(6189), - [anon_sym_BSLASHNotecite] = ACTIONS(6189), - [anon_sym_BSLASHpnotecite] = ACTIONS(6189), - [anon_sym_BSLASHPnotecite] = ACTIONS(6189), - [anon_sym_BSLASHfnotecite] = ACTIONS(6189), - [anon_sym_BSLASHlabel] = ACTIONS(6189), - [anon_sym_BSLASHref] = ACTIONS(6189), - [anon_sym_BSLASHeqref] = ACTIONS(6189), - [anon_sym_BSLASHvref] = ACTIONS(6189), - [anon_sym_BSLASHVref] = ACTIONS(6189), - [anon_sym_BSLASHautoref] = ACTIONS(6189), - [anon_sym_BSLASHpageref] = ACTIONS(6189), - [anon_sym_BSLASHcref] = ACTIONS(6189), - [anon_sym_BSLASHCref] = ACTIONS(6189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnameCref] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHlabelcref] = ACTIONS(6189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCrefrange] = ACTIONS(6189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnewlabel] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHdef] = ACTIONS(6189), - [anon_sym_BSLASHlet] = ACTIONS(6189), - [anon_sym_BSLASHleft] = ACTIONS(6189), - [anon_sym_BSLASHbig] = ACTIONS(6189), - [anon_sym_BSLASHBig] = ACTIONS(6189), - [anon_sym_BSLASHbigg] = ACTIONS(6189), - [anon_sym_BSLASHBigg] = ACTIONS(6189), - [anon_sym_BSLASHbigl] = ACTIONS(6189), - [anon_sym_BSLASHBigl] = ACTIONS(6189), - [anon_sym_BSLASHbiggl] = ACTIONS(6189), - [anon_sym_BSLASHBiggl] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), - [anon_sym_BSLASHgls] = ACTIONS(6189), - [anon_sym_BSLASHGls] = ACTIONS(6189), - [anon_sym_BSLASHGLS] = ACTIONS(6189), - [anon_sym_BSLASHglspl] = ACTIONS(6189), - [anon_sym_BSLASHGlspl] = ACTIONS(6189), - [anon_sym_BSLASHGLSpl] = ACTIONS(6189), - [anon_sym_BSLASHglsdisp] = ACTIONS(6189), - [anon_sym_BSLASHglslink] = ACTIONS(6189), - [anon_sym_BSLASHglstext] = ACTIONS(6189), - [anon_sym_BSLASHGlstext] = ACTIONS(6189), - [anon_sym_BSLASHGLStext] = ACTIONS(6189), - [anon_sym_BSLASHglsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), - [anon_sym_BSLASHglsplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSplural] = ACTIONS(6189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHglsname] = ACTIONS(6189), - [anon_sym_BSLASHGlsname] = ACTIONS(6189), - [anon_sym_BSLASHGLSname] = ACTIONS(6189), - [anon_sym_BSLASHglssymbol] = ACTIONS(6189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), - [anon_sym_BSLASHglsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), - [anon_sym_BSLASHglsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), - [anon_sym_BSLASHglsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), - [anon_sym_BSLASHglsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), - [anon_sym_BSLASHglsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), - [anon_sym_BSLASHnewacronym] = ACTIONS(6189), - [anon_sym_BSLASHacrshort] = ACTIONS(6189), - [anon_sym_BSLASHAcrshort] = ACTIONS(6189), - [anon_sym_BSLASHACRshort] = ACTIONS(6189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), - [anon_sym_BSLASHacrlong] = ACTIONS(6189), - [anon_sym_BSLASHAcrlong] = ACTIONS(6189), - [anon_sym_BSLASHACRlong] = ACTIONS(6189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), - [anon_sym_BSLASHacrfull] = ACTIONS(6189), - [anon_sym_BSLASHAcrfull] = ACTIONS(6189), - [anon_sym_BSLASHACRfull] = ACTIONS(6189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), - [anon_sym_BSLASHacs] = ACTIONS(6189), - [anon_sym_BSLASHAcs] = ACTIONS(6189), - [anon_sym_BSLASHacsp] = ACTIONS(6189), - [anon_sym_BSLASHAcsp] = ACTIONS(6189), - [anon_sym_BSLASHacl] = ACTIONS(6189), - [anon_sym_BSLASHAcl] = ACTIONS(6189), - [anon_sym_BSLASHaclp] = ACTIONS(6189), - [anon_sym_BSLASHAclp] = ACTIONS(6189), - [anon_sym_BSLASHacf] = ACTIONS(6189), - [anon_sym_BSLASHAcf] = ACTIONS(6189), - [anon_sym_BSLASHacfp] = ACTIONS(6189), - [anon_sym_BSLASHAcfp] = ACTIONS(6189), - [anon_sym_BSLASHac] = ACTIONS(6189), - [anon_sym_BSLASHAc] = ACTIONS(6189), - [anon_sym_BSLASHacp] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), - [anon_sym_BSLASHcolor] = ACTIONS(6189), - [anon_sym_BSLASHcolorbox] = ACTIONS(6189), - [anon_sym_BSLASHtextcolor] = ACTIONS(6189), - [anon_sym_BSLASHpagecolor] = ACTIONS(6189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), - [anon_sym_BSLASHtext] = ACTIONS(6189), - [anon_sym_BSLASHintertext] = ACTIONS(6189), - [anon_sym_shortintertext] = ACTIONS(6189), - }, - [1778] = { - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LBRACK] = ACTIONS(197), - [anon_sym_RBRACK] = ACTIONS(197), - [anon_sym_COMMA] = ACTIONS(197), - [anon_sym_EQ] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(197), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [1779] = { - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LBRACK] = ACTIONS(201), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_COMMA] = ACTIONS(201), - [anon_sym_EQ] = ACTIONS(201), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(201), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [1780] = { - [sym_command_name] = ACTIONS(6241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6241), - [anon_sym_LBRACK] = ACTIONS(6243), - [anon_sym_RBRACK] = ACTIONS(6243), - [anon_sym_COMMA] = ACTIONS(6243), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_LPAREN] = ACTIONS(6243), - [anon_sym_RPAREN] = ACTIONS(6243), - [anon_sym_LBRACE] = ACTIONS(6243), - [sym_word] = ACTIONS(6241), - [sym_placeholder] = ACTIONS(6243), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6243), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(6241), - [anon_sym_GT] = ACTIONS(6241), - [anon_sym_BANG] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_SQUOTE] = ACTIONS(6241), - [anon_sym__] = ACTIONS(6243), - [anon_sym_CARET] = ACTIONS(6243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), - [anon_sym_DOLLAR] = ACTIONS(6241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), - [anon_sym_BSLASHbegin] = ACTIONS(6241), - [anon_sym_BSLASHtitle] = ACTIONS(6241), - [anon_sym_BSLASHauthor] = ACTIONS(6241), - [anon_sym_BSLASHusepackage] = ACTIONS(6241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), - [anon_sym_BSLASHinclude] = ACTIONS(6241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), - [anon_sym_BSLASHinput] = ACTIONS(6241), - [anon_sym_BSLASHsubfile] = ACTIONS(6241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), - [anon_sym_BSLASHbibliography] = ACTIONS(6241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), - [anon_sym_BSLASHincludesvg] = ACTIONS(6241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), - [anon_sym_BSLASHimport] = ACTIONS(6241), - [anon_sym_BSLASHsubimport] = ACTIONS(6241), - [anon_sym_BSLASHinputfrom] = ACTIONS(6241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), - [anon_sym_BSLASHincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHcaption] = ACTIONS(6241), - [anon_sym_BSLASHcite] = ACTIONS(6241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCite] = ACTIONS(6241), - [anon_sym_BSLASHnocite] = ACTIONS(6241), - [anon_sym_BSLASHcitet] = ACTIONS(6241), - [anon_sym_BSLASHcitep] = ACTIONS(6241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteauthor] = ACTIONS(6241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitetitle] = ACTIONS(6241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteyear] = ACTIONS(6241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitedate] = ACTIONS(6241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteurl] = ACTIONS(6241), - [anon_sym_BSLASHfullcite] = ACTIONS(6241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), - [anon_sym_BSLASHcitealt] = ACTIONS(6241), - [anon_sym_BSLASHcitealp] = ACTIONS(6241), - [anon_sym_BSLASHcitetext] = ACTIONS(6241), - [anon_sym_BSLASHparencite] = ACTIONS(6241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHParencite] = ACTIONS(6241), - [anon_sym_BSLASHfootcite] = ACTIONS(6241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), - [anon_sym_BSLASHtextcite] = ACTIONS(6241), - [anon_sym_BSLASHTextcite] = ACTIONS(6241), - [anon_sym_BSLASHsmartcite] = ACTIONS(6241), - [anon_sym_BSLASHSmartcite] = ACTIONS(6241), - [anon_sym_BSLASHsupercite] = ACTIONS(6241), - [anon_sym_BSLASHautocite] = ACTIONS(6241), - [anon_sym_BSLASHAutocite] = ACTIONS(6241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHvolcite] = ACTIONS(6241), - [anon_sym_BSLASHVolcite] = ACTIONS(6241), - [anon_sym_BSLASHpvolcite] = ACTIONS(6241), - [anon_sym_BSLASHPvolcite] = ACTIONS(6241), - [anon_sym_BSLASHfvolcite] = ACTIONS(6241), - [anon_sym_BSLASHftvolcite] = ACTIONS(6241), - [anon_sym_BSLASHsvolcite] = ACTIONS(6241), - [anon_sym_BSLASHSvolcite] = ACTIONS(6241), - [anon_sym_BSLASHtvolcite] = ACTIONS(6241), - [anon_sym_BSLASHTvolcite] = ACTIONS(6241), - [anon_sym_BSLASHavolcite] = ACTIONS(6241), - [anon_sym_BSLASHAvolcite] = ACTIONS(6241), - [anon_sym_BSLASHnotecite] = ACTIONS(6241), - [anon_sym_BSLASHNotecite] = ACTIONS(6241), - [anon_sym_BSLASHpnotecite] = ACTIONS(6241), - [anon_sym_BSLASHPnotecite] = ACTIONS(6241), - [anon_sym_BSLASHfnotecite] = ACTIONS(6241), - [anon_sym_BSLASHlabel] = ACTIONS(6241), - [anon_sym_BSLASHref] = ACTIONS(6241), - [anon_sym_BSLASHeqref] = ACTIONS(6241), - [anon_sym_BSLASHvref] = ACTIONS(6241), - [anon_sym_BSLASHVref] = ACTIONS(6241), - [anon_sym_BSLASHautoref] = ACTIONS(6241), - [anon_sym_BSLASHpageref] = ACTIONS(6241), - [anon_sym_BSLASHcref] = ACTIONS(6241), - [anon_sym_BSLASHCref] = ACTIONS(6241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnameCref] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHlabelcref] = ACTIONS(6241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCrefrange] = ACTIONS(6241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnewlabel] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHdef] = ACTIONS(6241), - [anon_sym_BSLASHlet] = ACTIONS(6241), - [anon_sym_BSLASHleft] = ACTIONS(6241), - [anon_sym_BSLASHbig] = ACTIONS(6241), - [anon_sym_BSLASHBig] = ACTIONS(6241), - [anon_sym_BSLASHbigg] = ACTIONS(6241), - [anon_sym_BSLASHBigg] = ACTIONS(6241), - [anon_sym_BSLASHbigl] = ACTIONS(6241), - [anon_sym_BSLASHBigl] = ACTIONS(6241), - [anon_sym_BSLASHbiggl] = ACTIONS(6241), - [anon_sym_BSLASHBiggl] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), - [anon_sym_BSLASHgls] = ACTIONS(6241), - [anon_sym_BSLASHGls] = ACTIONS(6241), - [anon_sym_BSLASHGLS] = ACTIONS(6241), - [anon_sym_BSLASHglspl] = ACTIONS(6241), - [anon_sym_BSLASHGlspl] = ACTIONS(6241), - [anon_sym_BSLASHGLSpl] = ACTIONS(6241), - [anon_sym_BSLASHglsdisp] = ACTIONS(6241), - [anon_sym_BSLASHglslink] = ACTIONS(6241), - [anon_sym_BSLASHglstext] = ACTIONS(6241), - [anon_sym_BSLASHGlstext] = ACTIONS(6241), - [anon_sym_BSLASHGLStext] = ACTIONS(6241), - [anon_sym_BSLASHglsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), - [anon_sym_BSLASHglsplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSplural] = ACTIONS(6241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHglsname] = ACTIONS(6241), - [anon_sym_BSLASHGlsname] = ACTIONS(6241), - [anon_sym_BSLASHGLSname] = ACTIONS(6241), - [anon_sym_BSLASHglssymbol] = ACTIONS(6241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), - [anon_sym_BSLASHglsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), - [anon_sym_BSLASHglsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), - [anon_sym_BSLASHglsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), - [anon_sym_BSLASHglsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), - [anon_sym_BSLASHglsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), - [anon_sym_BSLASHnewacronym] = ACTIONS(6241), - [anon_sym_BSLASHacrshort] = ACTIONS(6241), - [anon_sym_BSLASHAcrshort] = ACTIONS(6241), - [anon_sym_BSLASHACRshort] = ACTIONS(6241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), - [anon_sym_BSLASHacrlong] = ACTIONS(6241), - [anon_sym_BSLASHAcrlong] = ACTIONS(6241), - [anon_sym_BSLASHACRlong] = ACTIONS(6241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), - [anon_sym_BSLASHacrfull] = ACTIONS(6241), - [anon_sym_BSLASHAcrfull] = ACTIONS(6241), - [anon_sym_BSLASHACRfull] = ACTIONS(6241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), - [anon_sym_BSLASHacs] = ACTIONS(6241), - [anon_sym_BSLASHAcs] = ACTIONS(6241), - [anon_sym_BSLASHacsp] = ACTIONS(6241), - [anon_sym_BSLASHAcsp] = ACTIONS(6241), - [anon_sym_BSLASHacl] = ACTIONS(6241), - [anon_sym_BSLASHAcl] = ACTIONS(6241), - [anon_sym_BSLASHaclp] = ACTIONS(6241), - [anon_sym_BSLASHAclp] = ACTIONS(6241), - [anon_sym_BSLASHacf] = ACTIONS(6241), - [anon_sym_BSLASHAcf] = ACTIONS(6241), - [anon_sym_BSLASHacfp] = ACTIONS(6241), - [anon_sym_BSLASHAcfp] = ACTIONS(6241), - [anon_sym_BSLASHac] = ACTIONS(6241), - [anon_sym_BSLASHAc] = ACTIONS(6241), - [anon_sym_BSLASHacp] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), - [anon_sym_BSLASHcolor] = ACTIONS(6241), - [anon_sym_BSLASHcolorbox] = ACTIONS(6241), - [anon_sym_BSLASHtextcolor] = ACTIONS(6241), - [anon_sym_BSLASHpagecolor] = ACTIONS(6241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), - [anon_sym_BSLASHtext] = ACTIONS(6241), - [anon_sym_BSLASHintertext] = ACTIONS(6241), - [anon_sym_shortintertext] = ACTIONS(6241), - }, - [1781] = { - [sym_command_name] = ACTIONS(6381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6381), - [anon_sym_LBRACK] = ACTIONS(6383), - [anon_sym_RBRACK] = ACTIONS(6383), - [anon_sym_COMMA] = ACTIONS(6383), - [anon_sym_EQ] = ACTIONS(6383), - [anon_sym_LPAREN] = ACTIONS(6383), - [anon_sym_RPAREN] = ACTIONS(6383), - [anon_sym_LBRACE] = ACTIONS(6383), - [sym_word] = ACTIONS(6381), - [sym_placeholder] = ACTIONS(6383), - [anon_sym_PLUS] = ACTIONS(6383), - [anon_sym_DASH] = ACTIONS(6383), - [anon_sym_STAR] = ACTIONS(6383), - [anon_sym_SLASH] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_COLON] = ACTIONS(6381), - [anon_sym_SQUOTE] = ACTIONS(6381), - [anon_sym__] = ACTIONS(6383), - [anon_sym_CARET] = ACTIONS(6383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6383), - [anon_sym_DOLLAR] = ACTIONS(6381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6383), - [anon_sym_BSLASHbegin] = ACTIONS(6381), - [anon_sym_BSLASHtitle] = ACTIONS(6381), - [anon_sym_BSLASHauthor] = ACTIONS(6381), - [anon_sym_BSLASHusepackage] = ACTIONS(6381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6381), - [anon_sym_BSLASHinclude] = ACTIONS(6381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6381), - [anon_sym_BSLASHinput] = ACTIONS(6381), - [anon_sym_BSLASHsubfile] = ACTIONS(6381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6381), - [anon_sym_BSLASHbibliography] = ACTIONS(6381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6381), - [anon_sym_BSLASHincludesvg] = ACTIONS(6381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6381), - [anon_sym_BSLASHimport] = ACTIONS(6381), - [anon_sym_BSLASHsubimport] = ACTIONS(6381), - [anon_sym_BSLASHinputfrom] = ACTIONS(6381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6381), - [anon_sym_BSLASHincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHcaption] = ACTIONS(6381), - [anon_sym_BSLASHcite] = ACTIONS(6381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCite] = ACTIONS(6381), - [anon_sym_BSLASHnocite] = ACTIONS(6381), - [anon_sym_BSLASHcitet] = ACTIONS(6381), - [anon_sym_BSLASHcitep] = ACTIONS(6381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteauthor] = ACTIONS(6381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitetitle] = ACTIONS(6381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteyear] = ACTIONS(6381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitedate] = ACTIONS(6381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteurl] = ACTIONS(6381), - [anon_sym_BSLASHfullcite] = ACTIONS(6381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6381), - [anon_sym_BSLASHcitealt] = ACTIONS(6381), - [anon_sym_BSLASHcitealp] = ACTIONS(6381), - [anon_sym_BSLASHcitetext] = ACTIONS(6381), - [anon_sym_BSLASHparencite] = ACTIONS(6381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHParencite] = ACTIONS(6381), - [anon_sym_BSLASHfootcite] = ACTIONS(6381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6381), - [anon_sym_BSLASHtextcite] = ACTIONS(6381), - [anon_sym_BSLASHTextcite] = ACTIONS(6381), - [anon_sym_BSLASHsmartcite] = ACTIONS(6381), - [anon_sym_BSLASHSmartcite] = ACTIONS(6381), - [anon_sym_BSLASHsupercite] = ACTIONS(6381), - [anon_sym_BSLASHautocite] = ACTIONS(6381), - [anon_sym_BSLASHAutocite] = ACTIONS(6381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHvolcite] = ACTIONS(6381), - [anon_sym_BSLASHVolcite] = ACTIONS(6381), - [anon_sym_BSLASHpvolcite] = ACTIONS(6381), - [anon_sym_BSLASHPvolcite] = ACTIONS(6381), - [anon_sym_BSLASHfvolcite] = ACTIONS(6381), - [anon_sym_BSLASHftvolcite] = ACTIONS(6381), - [anon_sym_BSLASHsvolcite] = ACTIONS(6381), - [anon_sym_BSLASHSvolcite] = ACTIONS(6381), - [anon_sym_BSLASHtvolcite] = ACTIONS(6381), - [anon_sym_BSLASHTvolcite] = ACTIONS(6381), - [anon_sym_BSLASHavolcite] = ACTIONS(6381), - [anon_sym_BSLASHAvolcite] = ACTIONS(6381), - [anon_sym_BSLASHnotecite] = ACTIONS(6381), - [anon_sym_BSLASHNotecite] = ACTIONS(6381), - [anon_sym_BSLASHpnotecite] = ACTIONS(6381), - [anon_sym_BSLASHPnotecite] = ACTIONS(6381), - [anon_sym_BSLASHfnotecite] = ACTIONS(6381), - [anon_sym_BSLASHlabel] = ACTIONS(6381), - [anon_sym_BSLASHref] = ACTIONS(6381), - [anon_sym_BSLASHeqref] = ACTIONS(6381), - [anon_sym_BSLASHvref] = ACTIONS(6381), - [anon_sym_BSLASHVref] = ACTIONS(6381), - [anon_sym_BSLASHautoref] = ACTIONS(6381), - [anon_sym_BSLASHpageref] = ACTIONS(6381), - [anon_sym_BSLASHcref] = ACTIONS(6381), - [anon_sym_BSLASHCref] = ACTIONS(6381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnameCref] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHlabelcref] = ACTIONS(6381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCrefrange] = ACTIONS(6381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnewlabel] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6383), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHdef] = ACTIONS(6381), - [anon_sym_BSLASHlet] = ACTIONS(6381), - [anon_sym_BSLASHleft] = ACTIONS(6381), - [anon_sym_BSLASHbig] = ACTIONS(6381), - [anon_sym_BSLASHBig] = ACTIONS(6381), - [anon_sym_BSLASHbigg] = ACTIONS(6381), - [anon_sym_BSLASHBigg] = ACTIONS(6381), - [anon_sym_BSLASHbigl] = ACTIONS(6381), - [anon_sym_BSLASHBigl] = ACTIONS(6381), - [anon_sym_BSLASHbiggl] = ACTIONS(6381), - [anon_sym_BSLASHBiggl] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6381), - [anon_sym_BSLASHgls] = ACTIONS(6381), - [anon_sym_BSLASHGls] = ACTIONS(6381), - [anon_sym_BSLASHGLS] = ACTIONS(6381), - [anon_sym_BSLASHglspl] = ACTIONS(6381), - [anon_sym_BSLASHGlspl] = ACTIONS(6381), - [anon_sym_BSLASHGLSpl] = ACTIONS(6381), - [anon_sym_BSLASHglsdisp] = ACTIONS(6381), - [anon_sym_BSLASHglslink] = ACTIONS(6381), - [anon_sym_BSLASHglstext] = ACTIONS(6381), - [anon_sym_BSLASHGlstext] = ACTIONS(6381), - [anon_sym_BSLASHGLStext] = ACTIONS(6381), - [anon_sym_BSLASHglsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6381), - [anon_sym_BSLASHglsplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSplural] = ACTIONS(6381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHglsname] = ACTIONS(6381), - [anon_sym_BSLASHGlsname] = ACTIONS(6381), - [anon_sym_BSLASHGLSname] = ACTIONS(6381), - [anon_sym_BSLASHglssymbol] = ACTIONS(6381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6381), - [anon_sym_BSLASHglsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6381), - [anon_sym_BSLASHglsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6381), - [anon_sym_BSLASHglsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6381), - [anon_sym_BSLASHglsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6381), - [anon_sym_BSLASHglsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6381), - [anon_sym_BSLASHnewacronym] = ACTIONS(6381), - [anon_sym_BSLASHacrshort] = ACTIONS(6381), - [anon_sym_BSLASHAcrshort] = ACTIONS(6381), - [anon_sym_BSLASHACRshort] = ACTIONS(6381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6381), - [anon_sym_BSLASHacrlong] = ACTIONS(6381), - [anon_sym_BSLASHAcrlong] = ACTIONS(6381), - [anon_sym_BSLASHACRlong] = ACTIONS(6381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6381), - [anon_sym_BSLASHacrfull] = ACTIONS(6381), - [anon_sym_BSLASHAcrfull] = ACTIONS(6381), - [anon_sym_BSLASHACRfull] = ACTIONS(6381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6381), - [anon_sym_BSLASHacs] = ACTIONS(6381), - [anon_sym_BSLASHAcs] = ACTIONS(6381), - [anon_sym_BSLASHacsp] = ACTIONS(6381), - [anon_sym_BSLASHAcsp] = ACTIONS(6381), - [anon_sym_BSLASHacl] = ACTIONS(6381), - [anon_sym_BSLASHAcl] = ACTIONS(6381), - [anon_sym_BSLASHaclp] = ACTIONS(6381), - [anon_sym_BSLASHAclp] = ACTIONS(6381), - [anon_sym_BSLASHacf] = ACTIONS(6381), - [anon_sym_BSLASHAcf] = ACTIONS(6381), - [anon_sym_BSLASHacfp] = ACTIONS(6381), - [anon_sym_BSLASHAcfp] = ACTIONS(6381), - [anon_sym_BSLASHac] = ACTIONS(6381), - [anon_sym_BSLASHAc] = ACTIONS(6381), - [anon_sym_BSLASHacp] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6381), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6381), - [anon_sym_BSLASHcolor] = ACTIONS(6381), - [anon_sym_BSLASHcolorbox] = ACTIONS(6381), - [anon_sym_BSLASHtextcolor] = ACTIONS(6381), - [anon_sym_BSLASHpagecolor] = ACTIONS(6381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6381), - [anon_sym_BSLASHtext] = ACTIONS(6381), - [anon_sym_BSLASHintertext] = ACTIONS(6381), - [anon_sym_shortintertext] = ACTIONS(6381), - }, - [1782] = { - [sym_command_name] = ACTIONS(6125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6127), - [anon_sym_RBRACK] = ACTIONS(6127), - [anon_sym_COMMA] = ACTIONS(6127), - [anon_sym_EQ] = ACTIONS(6127), - [anon_sym_LPAREN] = ACTIONS(6127), - [anon_sym_RPAREN] = ACTIONS(6127), - [anon_sym_LBRACE] = ACTIONS(6127), - [anon_sym_RBRACE] = ACTIONS(6127), - [sym_word] = ACTIONS(6125), - [sym_placeholder] = ACTIONS(6127), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_LT] = ACTIONS(6125), - [anon_sym_GT] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_SQUOTE] = ACTIONS(6125), - [anon_sym__] = ACTIONS(6127), - [anon_sym_CARET] = ACTIONS(6127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6127), - [anon_sym_DOLLAR] = ACTIONS(6125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6127), - [anon_sym_BSLASHtitle] = ACTIONS(6125), - [anon_sym_BSLASHauthor] = ACTIONS(6125), - [anon_sym_BSLASHusepackage] = ACTIONS(6125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6125), - [anon_sym_BSLASHinclude] = ACTIONS(6125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6125), - [anon_sym_BSLASHinput] = ACTIONS(6125), - [anon_sym_BSLASHsubfile] = ACTIONS(6125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6125), - [anon_sym_BSLASHbibliography] = ACTIONS(6125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6125), - [anon_sym_BSLASHincludesvg] = ACTIONS(6125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6125), - [anon_sym_BSLASHimport] = ACTIONS(6125), - [anon_sym_BSLASHsubimport] = ACTIONS(6125), - [anon_sym_BSLASHinputfrom] = ACTIONS(6125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6125), - [anon_sym_BSLASHincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHcaption] = ACTIONS(6125), - [anon_sym_BSLASHcite] = ACTIONS(6125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCite] = ACTIONS(6125), - [anon_sym_BSLASHnocite] = ACTIONS(6125), - [anon_sym_BSLASHcitet] = ACTIONS(6125), - [anon_sym_BSLASHcitep] = ACTIONS(6125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteauthor] = ACTIONS(6125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitetitle] = ACTIONS(6125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteyear] = ACTIONS(6125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitedate] = ACTIONS(6125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteurl] = ACTIONS(6125), - [anon_sym_BSLASHfullcite] = ACTIONS(6125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6125), - [anon_sym_BSLASHcitealt] = ACTIONS(6125), - [anon_sym_BSLASHcitealp] = ACTIONS(6125), - [anon_sym_BSLASHcitetext] = ACTIONS(6125), - [anon_sym_BSLASHparencite] = ACTIONS(6125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHParencite] = ACTIONS(6125), - [anon_sym_BSLASHfootcite] = ACTIONS(6125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6125), - [anon_sym_BSLASHtextcite] = ACTIONS(6125), - [anon_sym_BSLASHTextcite] = ACTIONS(6125), - [anon_sym_BSLASHsmartcite] = ACTIONS(6125), - [anon_sym_BSLASHSmartcite] = ACTIONS(6125), - [anon_sym_BSLASHsupercite] = ACTIONS(6125), - [anon_sym_BSLASHautocite] = ACTIONS(6125), - [anon_sym_BSLASHAutocite] = ACTIONS(6125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHvolcite] = ACTIONS(6125), - [anon_sym_BSLASHVolcite] = ACTIONS(6125), - [anon_sym_BSLASHpvolcite] = ACTIONS(6125), - [anon_sym_BSLASHPvolcite] = ACTIONS(6125), - [anon_sym_BSLASHfvolcite] = ACTIONS(6125), - [anon_sym_BSLASHftvolcite] = ACTIONS(6125), - [anon_sym_BSLASHsvolcite] = ACTIONS(6125), - [anon_sym_BSLASHSvolcite] = ACTIONS(6125), - [anon_sym_BSLASHtvolcite] = ACTIONS(6125), - [anon_sym_BSLASHTvolcite] = ACTIONS(6125), - [anon_sym_BSLASHavolcite] = ACTIONS(6125), - [anon_sym_BSLASHAvolcite] = ACTIONS(6125), - [anon_sym_BSLASHnotecite] = ACTIONS(6125), - [anon_sym_BSLASHNotecite] = ACTIONS(6125), - [anon_sym_BSLASHpnotecite] = ACTIONS(6125), - [anon_sym_BSLASHPnotecite] = ACTIONS(6125), - [anon_sym_BSLASHfnotecite] = ACTIONS(6125), - [anon_sym_BSLASHlabel] = ACTIONS(6125), - [anon_sym_BSLASHref] = ACTIONS(6125), - [anon_sym_BSLASHeqref] = ACTIONS(6125), - [anon_sym_BSLASHvref] = ACTIONS(6125), - [anon_sym_BSLASHVref] = ACTIONS(6125), - [anon_sym_BSLASHautoref] = ACTIONS(6125), - [anon_sym_BSLASHpageref] = ACTIONS(6125), - [anon_sym_BSLASHcref] = ACTIONS(6125), - [anon_sym_BSLASHCref] = ACTIONS(6125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnameCref] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHlabelcref] = ACTIONS(6125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCrefrange] = ACTIONS(6125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnewlabel] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6127), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHdef] = ACTIONS(6125), - [anon_sym_BSLASHlet] = ACTIONS(6125), - [anon_sym_BSLASHleft] = ACTIONS(6125), - [anon_sym_BSLASHbig] = ACTIONS(6125), - [anon_sym_BSLASHBig] = ACTIONS(6125), - [anon_sym_BSLASHbigg] = ACTIONS(6125), - [anon_sym_BSLASHBigg] = ACTIONS(6125), - [anon_sym_BSLASHbigl] = ACTIONS(6125), - [anon_sym_BSLASHBigl] = ACTIONS(6125), - [anon_sym_BSLASHbiggl] = ACTIONS(6125), - [anon_sym_BSLASHBiggl] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6125), - [anon_sym_BSLASHgls] = ACTIONS(6125), - [anon_sym_BSLASHGls] = ACTIONS(6125), - [anon_sym_BSLASHGLS] = ACTIONS(6125), - [anon_sym_BSLASHglspl] = ACTIONS(6125), - [anon_sym_BSLASHGlspl] = ACTIONS(6125), - [anon_sym_BSLASHGLSpl] = ACTIONS(6125), - [anon_sym_BSLASHglsdisp] = ACTIONS(6125), - [anon_sym_BSLASHglslink] = ACTIONS(6125), - [anon_sym_BSLASHglstext] = ACTIONS(6125), - [anon_sym_BSLASHGlstext] = ACTIONS(6125), - [anon_sym_BSLASHGLStext] = ACTIONS(6125), - [anon_sym_BSLASHglsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6125), - [anon_sym_BSLASHglsplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSplural] = ACTIONS(6125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHglsname] = ACTIONS(6125), - [anon_sym_BSLASHGlsname] = ACTIONS(6125), - [anon_sym_BSLASHGLSname] = ACTIONS(6125), - [anon_sym_BSLASHglssymbol] = ACTIONS(6125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6125), - [anon_sym_BSLASHglsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6125), - [anon_sym_BSLASHglsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6125), - [anon_sym_BSLASHglsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6125), - [anon_sym_BSLASHglsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6125), - [anon_sym_BSLASHglsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6125), - [anon_sym_BSLASHnewacronym] = ACTIONS(6125), - [anon_sym_BSLASHacrshort] = ACTIONS(6125), - [anon_sym_BSLASHAcrshort] = ACTIONS(6125), - [anon_sym_BSLASHACRshort] = ACTIONS(6125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6125), - [anon_sym_BSLASHacrlong] = ACTIONS(6125), - [anon_sym_BSLASHAcrlong] = ACTIONS(6125), - [anon_sym_BSLASHACRlong] = ACTIONS(6125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6125), - [anon_sym_BSLASHacrfull] = ACTIONS(6125), - [anon_sym_BSLASHAcrfull] = ACTIONS(6125), - [anon_sym_BSLASHACRfull] = ACTIONS(6125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6125), - [anon_sym_BSLASHacs] = ACTIONS(6125), - [anon_sym_BSLASHAcs] = ACTIONS(6125), - [anon_sym_BSLASHacsp] = ACTIONS(6125), - [anon_sym_BSLASHAcsp] = ACTIONS(6125), - [anon_sym_BSLASHacl] = ACTIONS(6125), - [anon_sym_BSLASHAcl] = ACTIONS(6125), - [anon_sym_BSLASHaclp] = ACTIONS(6125), - [anon_sym_BSLASHAclp] = ACTIONS(6125), - [anon_sym_BSLASHacf] = ACTIONS(6125), - [anon_sym_BSLASHAcf] = ACTIONS(6125), - [anon_sym_BSLASHacfp] = ACTIONS(6125), - [anon_sym_BSLASHAcfp] = ACTIONS(6125), - [anon_sym_BSLASHac] = ACTIONS(6125), - [anon_sym_BSLASHAc] = ACTIONS(6125), - [anon_sym_BSLASHacp] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6125), - [anon_sym_BSLASHcolor] = ACTIONS(6125), - [anon_sym_BSLASHcolorbox] = ACTIONS(6125), - [anon_sym_BSLASHtextcolor] = ACTIONS(6125), - [anon_sym_BSLASHpagecolor] = ACTIONS(6125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6125), - [anon_sym_BSLASHtext] = ACTIONS(6125), - [anon_sym_BSLASHintertext] = ACTIONS(6125), - [anon_sym_shortintertext] = ACTIONS(6125), - }, - [1783] = { - [sym_command_name] = ACTIONS(6529), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6529), - [anon_sym_LBRACK] = ACTIONS(6531), - [anon_sym_RBRACK] = ACTIONS(6531), - [anon_sym_COMMA] = ACTIONS(6531), - [anon_sym_EQ] = ACTIONS(6531), - [anon_sym_LPAREN] = ACTIONS(6531), - [anon_sym_RPAREN] = ACTIONS(6531), - [anon_sym_LBRACE] = ACTIONS(6531), - [anon_sym_RBRACE] = ACTIONS(6531), - [sym_word] = ACTIONS(6529), - [sym_placeholder] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6531), - [anon_sym_DASH] = ACTIONS(6531), - [anon_sym_STAR] = ACTIONS(6531), - [anon_sym_SLASH] = ACTIONS(6531), - [anon_sym_LT] = ACTIONS(6529), - [anon_sym_GT] = ACTIONS(6529), - [anon_sym_BANG] = ACTIONS(6529), - [anon_sym_PIPE] = ACTIONS(6529), - [anon_sym_COLON] = ACTIONS(6529), - [anon_sym_SQUOTE] = ACTIONS(6529), - [anon_sym__] = ACTIONS(6531), - [anon_sym_CARET] = ACTIONS(6531), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6531), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6531), - [anon_sym_DOLLAR] = ACTIONS(6529), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6531), - [anon_sym_BSLASHtitle] = ACTIONS(6529), - [anon_sym_BSLASHauthor] = ACTIONS(6529), - [anon_sym_BSLASHusepackage] = ACTIONS(6529), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6529), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6529), - [anon_sym_BSLASHinclude] = ACTIONS(6529), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6529), - [anon_sym_BSLASHinput] = ACTIONS(6529), - [anon_sym_BSLASHsubfile] = ACTIONS(6529), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6529), - [anon_sym_BSLASHbibliography] = ACTIONS(6529), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6529), - [anon_sym_BSLASHincludesvg] = ACTIONS(6529), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6529), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6529), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6529), - [anon_sym_BSLASHimport] = ACTIONS(6529), - [anon_sym_BSLASHsubimport] = ACTIONS(6529), - [anon_sym_BSLASHinputfrom] = ACTIONS(6529), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6529), - [anon_sym_BSLASHincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHcaption] = ACTIONS(6529), - [anon_sym_BSLASHcite] = ACTIONS(6529), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCite] = ACTIONS(6529), - [anon_sym_BSLASHnocite] = ACTIONS(6529), - [anon_sym_BSLASHcitet] = ACTIONS(6529), - [anon_sym_BSLASHcitep] = ACTIONS(6529), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteauthor] = ACTIONS(6529), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6529), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitetitle] = ACTIONS(6529), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteyear] = ACTIONS(6529), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitedate] = ACTIONS(6529), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteurl] = ACTIONS(6529), - [anon_sym_BSLASHfullcite] = ACTIONS(6529), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6529), - [anon_sym_BSLASHcitealt] = ACTIONS(6529), - [anon_sym_BSLASHcitealp] = ACTIONS(6529), - [anon_sym_BSLASHcitetext] = ACTIONS(6529), - [anon_sym_BSLASHparencite] = ACTIONS(6529), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHParencite] = ACTIONS(6529), - [anon_sym_BSLASHfootcite] = ACTIONS(6529), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6529), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6529), - [anon_sym_BSLASHtextcite] = ACTIONS(6529), - [anon_sym_BSLASHTextcite] = ACTIONS(6529), - [anon_sym_BSLASHsmartcite] = ACTIONS(6529), - [anon_sym_BSLASHSmartcite] = ACTIONS(6529), - [anon_sym_BSLASHsupercite] = ACTIONS(6529), - [anon_sym_BSLASHautocite] = ACTIONS(6529), - [anon_sym_BSLASHAutocite] = ACTIONS(6529), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHvolcite] = ACTIONS(6529), - [anon_sym_BSLASHVolcite] = ACTIONS(6529), - [anon_sym_BSLASHpvolcite] = ACTIONS(6529), - [anon_sym_BSLASHPvolcite] = ACTIONS(6529), - [anon_sym_BSLASHfvolcite] = ACTIONS(6529), - [anon_sym_BSLASHftvolcite] = ACTIONS(6529), - [anon_sym_BSLASHsvolcite] = ACTIONS(6529), - [anon_sym_BSLASHSvolcite] = ACTIONS(6529), - [anon_sym_BSLASHtvolcite] = ACTIONS(6529), - [anon_sym_BSLASHTvolcite] = ACTIONS(6529), - [anon_sym_BSLASHavolcite] = ACTIONS(6529), - [anon_sym_BSLASHAvolcite] = ACTIONS(6529), - [anon_sym_BSLASHnotecite] = ACTIONS(6529), - [anon_sym_BSLASHNotecite] = ACTIONS(6529), - [anon_sym_BSLASHpnotecite] = ACTIONS(6529), - [anon_sym_BSLASHPnotecite] = ACTIONS(6529), - [anon_sym_BSLASHfnotecite] = ACTIONS(6529), - [anon_sym_BSLASHlabel] = ACTIONS(6529), - [anon_sym_BSLASHref] = ACTIONS(6529), - [anon_sym_BSLASHeqref] = ACTIONS(6529), - [anon_sym_BSLASHvref] = ACTIONS(6529), - [anon_sym_BSLASHVref] = ACTIONS(6529), - [anon_sym_BSLASHautoref] = ACTIONS(6529), - [anon_sym_BSLASHpageref] = ACTIONS(6529), - [anon_sym_BSLASHcref] = ACTIONS(6529), - [anon_sym_BSLASHCref] = ACTIONS(6529), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnameCref] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHlabelcref] = ACTIONS(6529), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCrefrange] = ACTIONS(6529), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnewlabel] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6529), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6529), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6531), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHdef] = ACTIONS(6529), - [anon_sym_BSLASHlet] = ACTIONS(6529), - [anon_sym_BSLASHleft] = ACTIONS(6529), - [anon_sym_BSLASHbig] = ACTIONS(6529), - [anon_sym_BSLASHBig] = ACTIONS(6529), - [anon_sym_BSLASHbigg] = ACTIONS(6529), - [anon_sym_BSLASHBigg] = ACTIONS(6529), - [anon_sym_BSLASHbigl] = ACTIONS(6529), - [anon_sym_BSLASHBigl] = ACTIONS(6529), - [anon_sym_BSLASHbiggl] = ACTIONS(6529), - [anon_sym_BSLASHBiggl] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6529), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6529), - [anon_sym_BSLASHgls] = ACTIONS(6529), - [anon_sym_BSLASHGls] = ACTIONS(6529), - [anon_sym_BSLASHGLS] = ACTIONS(6529), - [anon_sym_BSLASHglspl] = ACTIONS(6529), - [anon_sym_BSLASHGlspl] = ACTIONS(6529), - [anon_sym_BSLASHGLSpl] = ACTIONS(6529), - [anon_sym_BSLASHglsdisp] = ACTIONS(6529), - [anon_sym_BSLASHglslink] = ACTIONS(6529), - [anon_sym_BSLASHglstext] = ACTIONS(6529), - [anon_sym_BSLASHGlstext] = ACTIONS(6529), - [anon_sym_BSLASHGLStext] = ACTIONS(6529), - [anon_sym_BSLASHglsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6529), - [anon_sym_BSLASHglsplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSplural] = ACTIONS(6529), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHglsname] = ACTIONS(6529), - [anon_sym_BSLASHGlsname] = ACTIONS(6529), - [anon_sym_BSLASHGLSname] = ACTIONS(6529), - [anon_sym_BSLASHglssymbol] = ACTIONS(6529), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6529), - [anon_sym_BSLASHglsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6529), - [anon_sym_BSLASHglsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6529), - [anon_sym_BSLASHglsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6529), - [anon_sym_BSLASHglsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6529), - [anon_sym_BSLASHglsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6529), - [anon_sym_BSLASHnewacronym] = ACTIONS(6529), - [anon_sym_BSLASHacrshort] = ACTIONS(6529), - [anon_sym_BSLASHAcrshort] = ACTIONS(6529), - [anon_sym_BSLASHACRshort] = ACTIONS(6529), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6529), - [anon_sym_BSLASHacrlong] = ACTIONS(6529), - [anon_sym_BSLASHAcrlong] = ACTIONS(6529), - [anon_sym_BSLASHACRlong] = ACTIONS(6529), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6529), - [anon_sym_BSLASHacrfull] = ACTIONS(6529), - [anon_sym_BSLASHAcrfull] = ACTIONS(6529), - [anon_sym_BSLASHACRfull] = ACTIONS(6529), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6529), - [anon_sym_BSLASHacs] = ACTIONS(6529), - [anon_sym_BSLASHAcs] = ACTIONS(6529), - [anon_sym_BSLASHacsp] = ACTIONS(6529), - [anon_sym_BSLASHAcsp] = ACTIONS(6529), - [anon_sym_BSLASHacl] = ACTIONS(6529), - [anon_sym_BSLASHAcl] = ACTIONS(6529), - [anon_sym_BSLASHaclp] = ACTIONS(6529), - [anon_sym_BSLASHAclp] = ACTIONS(6529), - [anon_sym_BSLASHacf] = ACTIONS(6529), - [anon_sym_BSLASHAcf] = ACTIONS(6529), - [anon_sym_BSLASHacfp] = ACTIONS(6529), - [anon_sym_BSLASHAcfp] = ACTIONS(6529), - [anon_sym_BSLASHac] = ACTIONS(6529), - [anon_sym_BSLASHAc] = ACTIONS(6529), - [anon_sym_BSLASHacp] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6529), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6529), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6529), - [anon_sym_BSLASHcolor] = ACTIONS(6529), - [anon_sym_BSLASHcolorbox] = ACTIONS(6529), - [anon_sym_BSLASHtextcolor] = ACTIONS(6529), - [anon_sym_BSLASHpagecolor] = ACTIONS(6529), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6529), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6529), - [anon_sym_BSLASHtext] = ACTIONS(6529), - [anon_sym_BSLASHintertext] = ACTIONS(6529), - [anon_sym_shortintertext] = ACTIONS(6529), - }, - [1784] = { - [sym_command_name] = ACTIONS(6525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(6527), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6527), - [anon_sym_LPAREN] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_LBRACE] = ACTIONS(6527), - [anon_sym_RBRACE] = ACTIONS(6527), - [sym_word] = ACTIONS(6525), - [sym_placeholder] = ACTIONS(6527), - [anon_sym_PLUS] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6527), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6527), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_BANG] = ACTIONS(6525), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_SQUOTE] = ACTIONS(6525), - [anon_sym__] = ACTIONS(6527), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6527), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6527), - [anon_sym_DOLLAR] = ACTIONS(6525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6527), - [anon_sym_BSLASHtitle] = ACTIONS(6525), - [anon_sym_BSLASHauthor] = ACTIONS(6525), - [anon_sym_BSLASHusepackage] = ACTIONS(6525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6525), - [anon_sym_BSLASHinclude] = ACTIONS(6525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6525), - [anon_sym_BSLASHinput] = ACTIONS(6525), - [anon_sym_BSLASHsubfile] = ACTIONS(6525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6525), - [anon_sym_BSLASHbibliography] = ACTIONS(6525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6525), - [anon_sym_BSLASHincludesvg] = ACTIONS(6525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6525), - [anon_sym_BSLASHimport] = ACTIONS(6525), - [anon_sym_BSLASHsubimport] = ACTIONS(6525), - [anon_sym_BSLASHinputfrom] = ACTIONS(6525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6525), - [anon_sym_BSLASHincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHcaption] = ACTIONS(6525), - [anon_sym_BSLASHcite] = ACTIONS(6525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCite] = ACTIONS(6525), - [anon_sym_BSLASHnocite] = ACTIONS(6525), - [anon_sym_BSLASHcitet] = ACTIONS(6525), - [anon_sym_BSLASHcitep] = ACTIONS(6525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteauthor] = ACTIONS(6525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitetitle] = ACTIONS(6525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteyear] = ACTIONS(6525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitedate] = ACTIONS(6525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteurl] = ACTIONS(6525), - [anon_sym_BSLASHfullcite] = ACTIONS(6525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6525), - [anon_sym_BSLASHcitealt] = ACTIONS(6525), - [anon_sym_BSLASHcitealp] = ACTIONS(6525), - [anon_sym_BSLASHcitetext] = ACTIONS(6525), - [anon_sym_BSLASHparencite] = ACTIONS(6525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHParencite] = ACTIONS(6525), - [anon_sym_BSLASHfootcite] = ACTIONS(6525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6525), - [anon_sym_BSLASHtextcite] = ACTIONS(6525), - [anon_sym_BSLASHTextcite] = ACTIONS(6525), - [anon_sym_BSLASHsmartcite] = ACTIONS(6525), - [anon_sym_BSLASHSmartcite] = ACTIONS(6525), - [anon_sym_BSLASHsupercite] = ACTIONS(6525), - [anon_sym_BSLASHautocite] = ACTIONS(6525), - [anon_sym_BSLASHAutocite] = ACTIONS(6525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHvolcite] = ACTIONS(6525), - [anon_sym_BSLASHVolcite] = ACTIONS(6525), - [anon_sym_BSLASHpvolcite] = ACTIONS(6525), - [anon_sym_BSLASHPvolcite] = ACTIONS(6525), - [anon_sym_BSLASHfvolcite] = ACTIONS(6525), - [anon_sym_BSLASHftvolcite] = ACTIONS(6525), - [anon_sym_BSLASHsvolcite] = ACTIONS(6525), - [anon_sym_BSLASHSvolcite] = ACTIONS(6525), - [anon_sym_BSLASHtvolcite] = ACTIONS(6525), - [anon_sym_BSLASHTvolcite] = ACTIONS(6525), - [anon_sym_BSLASHavolcite] = ACTIONS(6525), - [anon_sym_BSLASHAvolcite] = ACTIONS(6525), - [anon_sym_BSLASHnotecite] = ACTIONS(6525), - [anon_sym_BSLASHNotecite] = ACTIONS(6525), - [anon_sym_BSLASHpnotecite] = ACTIONS(6525), - [anon_sym_BSLASHPnotecite] = ACTIONS(6525), - [anon_sym_BSLASHfnotecite] = ACTIONS(6525), - [anon_sym_BSLASHlabel] = ACTIONS(6525), - [anon_sym_BSLASHref] = ACTIONS(6525), - [anon_sym_BSLASHeqref] = ACTIONS(6525), - [anon_sym_BSLASHvref] = ACTIONS(6525), - [anon_sym_BSLASHVref] = ACTIONS(6525), - [anon_sym_BSLASHautoref] = ACTIONS(6525), - [anon_sym_BSLASHpageref] = ACTIONS(6525), - [anon_sym_BSLASHcref] = ACTIONS(6525), - [anon_sym_BSLASHCref] = ACTIONS(6525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnameCref] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHlabelcref] = ACTIONS(6525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCrefrange] = ACTIONS(6525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnewlabel] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6527), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHdef] = ACTIONS(6525), - [anon_sym_BSLASHlet] = ACTIONS(6525), - [anon_sym_BSLASHleft] = ACTIONS(6525), - [anon_sym_BSLASHbig] = ACTIONS(6525), - [anon_sym_BSLASHBig] = ACTIONS(6525), - [anon_sym_BSLASHbigg] = ACTIONS(6525), - [anon_sym_BSLASHBigg] = ACTIONS(6525), - [anon_sym_BSLASHbigl] = ACTIONS(6525), - [anon_sym_BSLASHBigl] = ACTIONS(6525), - [anon_sym_BSLASHbiggl] = ACTIONS(6525), - [anon_sym_BSLASHBiggl] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6525), - [anon_sym_BSLASHgls] = ACTIONS(6525), - [anon_sym_BSLASHGls] = ACTIONS(6525), - [anon_sym_BSLASHGLS] = ACTIONS(6525), - [anon_sym_BSLASHglspl] = ACTIONS(6525), - [anon_sym_BSLASHGlspl] = ACTIONS(6525), - [anon_sym_BSLASHGLSpl] = ACTIONS(6525), - [anon_sym_BSLASHglsdisp] = ACTIONS(6525), - [anon_sym_BSLASHglslink] = ACTIONS(6525), - [anon_sym_BSLASHglstext] = ACTIONS(6525), - [anon_sym_BSLASHGlstext] = ACTIONS(6525), - [anon_sym_BSLASHGLStext] = ACTIONS(6525), - [anon_sym_BSLASHglsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6525), - [anon_sym_BSLASHglsplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSplural] = ACTIONS(6525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHglsname] = ACTIONS(6525), - [anon_sym_BSLASHGlsname] = ACTIONS(6525), - [anon_sym_BSLASHGLSname] = ACTIONS(6525), - [anon_sym_BSLASHglssymbol] = ACTIONS(6525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6525), - [anon_sym_BSLASHglsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6525), - [anon_sym_BSLASHglsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6525), - [anon_sym_BSLASHglsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6525), - [anon_sym_BSLASHglsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6525), - [anon_sym_BSLASHglsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6525), - [anon_sym_BSLASHnewacronym] = ACTIONS(6525), - [anon_sym_BSLASHacrshort] = ACTIONS(6525), - [anon_sym_BSLASHAcrshort] = ACTIONS(6525), - [anon_sym_BSLASHACRshort] = ACTIONS(6525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6525), - [anon_sym_BSLASHacrlong] = ACTIONS(6525), - [anon_sym_BSLASHAcrlong] = ACTIONS(6525), - [anon_sym_BSLASHACRlong] = ACTIONS(6525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6525), - [anon_sym_BSLASHacrfull] = ACTIONS(6525), - [anon_sym_BSLASHAcrfull] = ACTIONS(6525), - [anon_sym_BSLASHACRfull] = ACTIONS(6525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6525), - [anon_sym_BSLASHacs] = ACTIONS(6525), - [anon_sym_BSLASHAcs] = ACTIONS(6525), - [anon_sym_BSLASHacsp] = ACTIONS(6525), - [anon_sym_BSLASHAcsp] = ACTIONS(6525), - [anon_sym_BSLASHacl] = ACTIONS(6525), - [anon_sym_BSLASHAcl] = ACTIONS(6525), - [anon_sym_BSLASHaclp] = ACTIONS(6525), - [anon_sym_BSLASHAclp] = ACTIONS(6525), - [anon_sym_BSLASHacf] = ACTIONS(6525), - [anon_sym_BSLASHAcf] = ACTIONS(6525), - [anon_sym_BSLASHacfp] = ACTIONS(6525), - [anon_sym_BSLASHAcfp] = ACTIONS(6525), - [anon_sym_BSLASHac] = ACTIONS(6525), - [anon_sym_BSLASHAc] = ACTIONS(6525), - [anon_sym_BSLASHacp] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6525), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6525), - [anon_sym_BSLASHcolor] = ACTIONS(6525), - [anon_sym_BSLASHcolorbox] = ACTIONS(6525), - [anon_sym_BSLASHtextcolor] = ACTIONS(6525), - [anon_sym_BSLASHpagecolor] = ACTIONS(6525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6525), - [anon_sym_BSLASHtext] = ACTIONS(6525), - [anon_sym_BSLASHintertext] = ACTIONS(6525), - [anon_sym_shortintertext] = ACTIONS(6525), - }, - [1785] = { - [sym_command_name] = ACTIONS(6521), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6521), - [anon_sym_LBRACK] = ACTIONS(6523), - [anon_sym_RBRACK] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_EQ] = ACTIONS(6523), - [anon_sym_LPAREN] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_LBRACE] = ACTIONS(6523), - [anon_sym_RBRACE] = ACTIONS(6523), - [sym_word] = ACTIONS(6521), - [sym_placeholder] = ACTIONS(6523), - [anon_sym_PLUS] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6523), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_BANG] = ACTIONS(6521), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6521), - [anon_sym_SQUOTE] = ACTIONS(6521), - [anon_sym__] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6523), - [anon_sym_DOLLAR] = ACTIONS(6521), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6523), - [anon_sym_BSLASHtitle] = ACTIONS(6521), - [anon_sym_BSLASHauthor] = ACTIONS(6521), - [anon_sym_BSLASHusepackage] = ACTIONS(6521), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6521), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6521), - [anon_sym_BSLASHinclude] = ACTIONS(6521), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6521), - [anon_sym_BSLASHinput] = ACTIONS(6521), - [anon_sym_BSLASHsubfile] = ACTIONS(6521), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6521), - [anon_sym_BSLASHbibliography] = ACTIONS(6521), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6521), - [anon_sym_BSLASHincludesvg] = ACTIONS(6521), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6521), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6521), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6521), - [anon_sym_BSLASHimport] = ACTIONS(6521), - [anon_sym_BSLASHsubimport] = ACTIONS(6521), - [anon_sym_BSLASHinputfrom] = ACTIONS(6521), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6521), - [anon_sym_BSLASHincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHcaption] = ACTIONS(6521), - [anon_sym_BSLASHcite] = ACTIONS(6521), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCite] = ACTIONS(6521), - [anon_sym_BSLASHnocite] = ACTIONS(6521), - [anon_sym_BSLASHcitet] = ACTIONS(6521), - [anon_sym_BSLASHcitep] = ACTIONS(6521), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteauthor] = ACTIONS(6521), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6521), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitetitle] = ACTIONS(6521), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteyear] = ACTIONS(6521), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitedate] = ACTIONS(6521), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteurl] = ACTIONS(6521), - [anon_sym_BSLASHfullcite] = ACTIONS(6521), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6521), - [anon_sym_BSLASHcitealt] = ACTIONS(6521), - [anon_sym_BSLASHcitealp] = ACTIONS(6521), - [anon_sym_BSLASHcitetext] = ACTIONS(6521), - [anon_sym_BSLASHparencite] = ACTIONS(6521), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHParencite] = ACTIONS(6521), - [anon_sym_BSLASHfootcite] = ACTIONS(6521), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6521), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6521), - [anon_sym_BSLASHtextcite] = ACTIONS(6521), - [anon_sym_BSLASHTextcite] = ACTIONS(6521), - [anon_sym_BSLASHsmartcite] = ACTIONS(6521), - [anon_sym_BSLASHSmartcite] = ACTIONS(6521), - [anon_sym_BSLASHsupercite] = ACTIONS(6521), - [anon_sym_BSLASHautocite] = ACTIONS(6521), - [anon_sym_BSLASHAutocite] = ACTIONS(6521), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHvolcite] = ACTIONS(6521), - [anon_sym_BSLASHVolcite] = ACTIONS(6521), - [anon_sym_BSLASHpvolcite] = ACTIONS(6521), - [anon_sym_BSLASHPvolcite] = ACTIONS(6521), - [anon_sym_BSLASHfvolcite] = ACTIONS(6521), - [anon_sym_BSLASHftvolcite] = ACTIONS(6521), - [anon_sym_BSLASHsvolcite] = ACTIONS(6521), - [anon_sym_BSLASHSvolcite] = ACTIONS(6521), - [anon_sym_BSLASHtvolcite] = ACTIONS(6521), - [anon_sym_BSLASHTvolcite] = ACTIONS(6521), - [anon_sym_BSLASHavolcite] = ACTIONS(6521), - [anon_sym_BSLASHAvolcite] = ACTIONS(6521), - [anon_sym_BSLASHnotecite] = ACTIONS(6521), - [anon_sym_BSLASHNotecite] = ACTIONS(6521), - [anon_sym_BSLASHpnotecite] = ACTIONS(6521), - [anon_sym_BSLASHPnotecite] = ACTIONS(6521), - [anon_sym_BSLASHfnotecite] = ACTIONS(6521), - [anon_sym_BSLASHlabel] = ACTIONS(6521), - [anon_sym_BSLASHref] = ACTIONS(6521), - [anon_sym_BSLASHeqref] = ACTIONS(6521), - [anon_sym_BSLASHvref] = ACTIONS(6521), - [anon_sym_BSLASHVref] = ACTIONS(6521), - [anon_sym_BSLASHautoref] = ACTIONS(6521), - [anon_sym_BSLASHpageref] = ACTIONS(6521), - [anon_sym_BSLASHcref] = ACTIONS(6521), - [anon_sym_BSLASHCref] = ACTIONS(6521), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnameCref] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHlabelcref] = ACTIONS(6521), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCrefrange] = ACTIONS(6521), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnewlabel] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6521), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6521), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6523), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHdef] = ACTIONS(6521), - [anon_sym_BSLASHlet] = ACTIONS(6521), - [anon_sym_BSLASHleft] = ACTIONS(6521), - [anon_sym_BSLASHbig] = ACTIONS(6521), - [anon_sym_BSLASHBig] = ACTIONS(6521), - [anon_sym_BSLASHbigg] = ACTIONS(6521), - [anon_sym_BSLASHBigg] = ACTIONS(6521), - [anon_sym_BSLASHbigl] = ACTIONS(6521), - [anon_sym_BSLASHBigl] = ACTIONS(6521), - [anon_sym_BSLASHbiggl] = ACTIONS(6521), - [anon_sym_BSLASHBiggl] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6521), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6521), - [anon_sym_BSLASHgls] = ACTIONS(6521), - [anon_sym_BSLASHGls] = ACTIONS(6521), - [anon_sym_BSLASHGLS] = ACTIONS(6521), - [anon_sym_BSLASHglspl] = ACTIONS(6521), - [anon_sym_BSLASHGlspl] = ACTIONS(6521), - [anon_sym_BSLASHGLSpl] = ACTIONS(6521), - [anon_sym_BSLASHglsdisp] = ACTIONS(6521), - [anon_sym_BSLASHglslink] = ACTIONS(6521), - [anon_sym_BSLASHglstext] = ACTIONS(6521), - [anon_sym_BSLASHGlstext] = ACTIONS(6521), - [anon_sym_BSLASHGLStext] = ACTIONS(6521), - [anon_sym_BSLASHglsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6521), - [anon_sym_BSLASHglsplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSplural] = ACTIONS(6521), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHglsname] = ACTIONS(6521), - [anon_sym_BSLASHGlsname] = ACTIONS(6521), - [anon_sym_BSLASHGLSname] = ACTIONS(6521), - [anon_sym_BSLASHglssymbol] = ACTIONS(6521), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6521), - [anon_sym_BSLASHglsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6521), - [anon_sym_BSLASHglsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6521), - [anon_sym_BSLASHglsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6521), - [anon_sym_BSLASHglsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6521), - [anon_sym_BSLASHglsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6521), - [anon_sym_BSLASHnewacronym] = ACTIONS(6521), - [anon_sym_BSLASHacrshort] = ACTIONS(6521), - [anon_sym_BSLASHAcrshort] = ACTIONS(6521), - [anon_sym_BSLASHACRshort] = ACTIONS(6521), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6521), - [anon_sym_BSLASHacrlong] = ACTIONS(6521), - [anon_sym_BSLASHAcrlong] = ACTIONS(6521), - [anon_sym_BSLASHACRlong] = ACTIONS(6521), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6521), - [anon_sym_BSLASHacrfull] = ACTIONS(6521), - [anon_sym_BSLASHAcrfull] = ACTIONS(6521), - [anon_sym_BSLASHACRfull] = ACTIONS(6521), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6521), - [anon_sym_BSLASHacs] = ACTIONS(6521), - [anon_sym_BSLASHAcs] = ACTIONS(6521), - [anon_sym_BSLASHacsp] = ACTIONS(6521), - [anon_sym_BSLASHAcsp] = ACTIONS(6521), - [anon_sym_BSLASHacl] = ACTIONS(6521), - [anon_sym_BSLASHAcl] = ACTIONS(6521), - [anon_sym_BSLASHaclp] = ACTIONS(6521), - [anon_sym_BSLASHAclp] = ACTIONS(6521), - [anon_sym_BSLASHacf] = ACTIONS(6521), - [anon_sym_BSLASHAcf] = ACTIONS(6521), - [anon_sym_BSLASHacfp] = ACTIONS(6521), - [anon_sym_BSLASHAcfp] = ACTIONS(6521), - [anon_sym_BSLASHac] = ACTIONS(6521), - [anon_sym_BSLASHAc] = ACTIONS(6521), - [anon_sym_BSLASHacp] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6521), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6521), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6521), - [anon_sym_BSLASHcolor] = ACTIONS(6521), - [anon_sym_BSLASHcolorbox] = ACTIONS(6521), - [anon_sym_BSLASHtextcolor] = ACTIONS(6521), - [anon_sym_BSLASHpagecolor] = ACTIONS(6521), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6521), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6521), - [anon_sym_BSLASHtext] = ACTIONS(6521), - [anon_sym_BSLASHintertext] = ACTIONS(6521), - [anon_sym_shortintertext] = ACTIONS(6521), - }, - [1786] = { - [sym_command_name] = ACTIONS(6517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6517), - [anon_sym_LBRACK] = ACTIONS(6519), - [anon_sym_RBRACK] = ACTIONS(6519), - [anon_sym_COMMA] = ACTIONS(6519), - [anon_sym_EQ] = ACTIONS(6519), - [anon_sym_LPAREN] = ACTIONS(6519), - [anon_sym_RPAREN] = ACTIONS(6519), - [anon_sym_LBRACE] = ACTIONS(6519), - [anon_sym_RBRACE] = ACTIONS(6519), - [sym_word] = ACTIONS(6517), - [sym_placeholder] = ACTIONS(6519), - [anon_sym_PLUS] = ACTIONS(6519), - [anon_sym_DASH] = ACTIONS(6519), - [anon_sym_STAR] = ACTIONS(6519), - [anon_sym_SLASH] = ACTIONS(6519), - [anon_sym_LT] = ACTIONS(6517), - [anon_sym_GT] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(6517), - [anon_sym_PIPE] = ACTIONS(6517), - [anon_sym_COLON] = ACTIONS(6517), - [anon_sym_SQUOTE] = ACTIONS(6517), - [anon_sym__] = ACTIONS(6519), - [anon_sym_CARET] = ACTIONS(6519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6519), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6519), - [anon_sym_DOLLAR] = ACTIONS(6517), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6519), - [anon_sym_BSLASHtitle] = ACTIONS(6517), - [anon_sym_BSLASHauthor] = ACTIONS(6517), - [anon_sym_BSLASHusepackage] = ACTIONS(6517), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6517), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6517), - [anon_sym_BSLASHinclude] = ACTIONS(6517), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6517), - [anon_sym_BSLASHinput] = ACTIONS(6517), - [anon_sym_BSLASHsubfile] = ACTIONS(6517), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6517), - [anon_sym_BSLASHbibliography] = ACTIONS(6517), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6517), - [anon_sym_BSLASHincludesvg] = ACTIONS(6517), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6517), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6517), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6517), - [anon_sym_BSLASHimport] = ACTIONS(6517), - [anon_sym_BSLASHsubimport] = ACTIONS(6517), - [anon_sym_BSLASHinputfrom] = ACTIONS(6517), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6517), - [anon_sym_BSLASHincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHcaption] = ACTIONS(6517), - [anon_sym_BSLASHcite] = ACTIONS(6517), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCite] = ACTIONS(6517), - [anon_sym_BSLASHnocite] = ACTIONS(6517), - [anon_sym_BSLASHcitet] = ACTIONS(6517), - [anon_sym_BSLASHcitep] = ACTIONS(6517), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteauthor] = ACTIONS(6517), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6517), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitetitle] = ACTIONS(6517), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteyear] = ACTIONS(6517), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitedate] = ACTIONS(6517), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteurl] = ACTIONS(6517), - [anon_sym_BSLASHfullcite] = ACTIONS(6517), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6517), - [anon_sym_BSLASHcitealt] = ACTIONS(6517), - [anon_sym_BSLASHcitealp] = ACTIONS(6517), - [anon_sym_BSLASHcitetext] = ACTIONS(6517), - [anon_sym_BSLASHparencite] = ACTIONS(6517), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHParencite] = ACTIONS(6517), - [anon_sym_BSLASHfootcite] = ACTIONS(6517), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6517), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6517), - [anon_sym_BSLASHtextcite] = ACTIONS(6517), - [anon_sym_BSLASHTextcite] = ACTIONS(6517), - [anon_sym_BSLASHsmartcite] = ACTIONS(6517), - [anon_sym_BSLASHSmartcite] = ACTIONS(6517), - [anon_sym_BSLASHsupercite] = ACTIONS(6517), - [anon_sym_BSLASHautocite] = ACTIONS(6517), - [anon_sym_BSLASHAutocite] = ACTIONS(6517), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHvolcite] = ACTIONS(6517), - [anon_sym_BSLASHVolcite] = ACTIONS(6517), - [anon_sym_BSLASHpvolcite] = ACTIONS(6517), - [anon_sym_BSLASHPvolcite] = ACTIONS(6517), - [anon_sym_BSLASHfvolcite] = ACTIONS(6517), - [anon_sym_BSLASHftvolcite] = ACTIONS(6517), - [anon_sym_BSLASHsvolcite] = ACTIONS(6517), - [anon_sym_BSLASHSvolcite] = ACTIONS(6517), - [anon_sym_BSLASHtvolcite] = ACTIONS(6517), - [anon_sym_BSLASHTvolcite] = ACTIONS(6517), - [anon_sym_BSLASHavolcite] = ACTIONS(6517), - [anon_sym_BSLASHAvolcite] = ACTIONS(6517), - [anon_sym_BSLASHnotecite] = ACTIONS(6517), - [anon_sym_BSLASHNotecite] = ACTIONS(6517), - [anon_sym_BSLASHpnotecite] = ACTIONS(6517), - [anon_sym_BSLASHPnotecite] = ACTIONS(6517), - [anon_sym_BSLASHfnotecite] = ACTIONS(6517), - [anon_sym_BSLASHlabel] = ACTIONS(6517), - [anon_sym_BSLASHref] = ACTIONS(6517), - [anon_sym_BSLASHeqref] = ACTIONS(6517), - [anon_sym_BSLASHvref] = ACTIONS(6517), - [anon_sym_BSLASHVref] = ACTIONS(6517), - [anon_sym_BSLASHautoref] = ACTIONS(6517), - [anon_sym_BSLASHpageref] = ACTIONS(6517), - [anon_sym_BSLASHcref] = ACTIONS(6517), - [anon_sym_BSLASHCref] = ACTIONS(6517), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnameCref] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHlabelcref] = ACTIONS(6517), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCrefrange] = ACTIONS(6517), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnewlabel] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6517), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6517), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6519), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHdef] = ACTIONS(6517), - [anon_sym_BSLASHlet] = ACTIONS(6517), - [anon_sym_BSLASHleft] = ACTIONS(6517), - [anon_sym_BSLASHbig] = ACTIONS(6517), - [anon_sym_BSLASHBig] = ACTIONS(6517), - [anon_sym_BSLASHbigg] = ACTIONS(6517), - [anon_sym_BSLASHBigg] = ACTIONS(6517), - [anon_sym_BSLASHbigl] = ACTIONS(6517), - [anon_sym_BSLASHBigl] = ACTIONS(6517), - [anon_sym_BSLASHbiggl] = ACTIONS(6517), - [anon_sym_BSLASHBiggl] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6517), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6517), - [anon_sym_BSLASHgls] = ACTIONS(6517), - [anon_sym_BSLASHGls] = ACTIONS(6517), - [anon_sym_BSLASHGLS] = ACTIONS(6517), - [anon_sym_BSLASHglspl] = ACTIONS(6517), - [anon_sym_BSLASHGlspl] = ACTIONS(6517), - [anon_sym_BSLASHGLSpl] = ACTIONS(6517), - [anon_sym_BSLASHglsdisp] = ACTIONS(6517), - [anon_sym_BSLASHglslink] = ACTIONS(6517), - [anon_sym_BSLASHglstext] = ACTIONS(6517), - [anon_sym_BSLASHGlstext] = ACTIONS(6517), - [anon_sym_BSLASHGLStext] = ACTIONS(6517), - [anon_sym_BSLASHglsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6517), - [anon_sym_BSLASHglsplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSplural] = ACTIONS(6517), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHglsname] = ACTIONS(6517), - [anon_sym_BSLASHGlsname] = ACTIONS(6517), - [anon_sym_BSLASHGLSname] = ACTIONS(6517), - [anon_sym_BSLASHglssymbol] = ACTIONS(6517), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6517), - [anon_sym_BSLASHglsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6517), - [anon_sym_BSLASHglsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6517), - [anon_sym_BSLASHglsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6517), - [anon_sym_BSLASHglsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6517), - [anon_sym_BSLASHglsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6517), - [anon_sym_BSLASHnewacronym] = ACTIONS(6517), - [anon_sym_BSLASHacrshort] = ACTIONS(6517), - [anon_sym_BSLASHAcrshort] = ACTIONS(6517), - [anon_sym_BSLASHACRshort] = ACTIONS(6517), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6517), - [anon_sym_BSLASHacrlong] = ACTIONS(6517), - [anon_sym_BSLASHAcrlong] = ACTIONS(6517), - [anon_sym_BSLASHACRlong] = ACTIONS(6517), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6517), - [anon_sym_BSLASHacrfull] = ACTIONS(6517), - [anon_sym_BSLASHAcrfull] = ACTIONS(6517), - [anon_sym_BSLASHACRfull] = ACTIONS(6517), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6517), - [anon_sym_BSLASHacs] = ACTIONS(6517), - [anon_sym_BSLASHAcs] = ACTIONS(6517), - [anon_sym_BSLASHacsp] = ACTIONS(6517), - [anon_sym_BSLASHAcsp] = ACTIONS(6517), - [anon_sym_BSLASHacl] = ACTIONS(6517), - [anon_sym_BSLASHAcl] = ACTIONS(6517), - [anon_sym_BSLASHaclp] = ACTIONS(6517), - [anon_sym_BSLASHAclp] = ACTIONS(6517), - [anon_sym_BSLASHacf] = ACTIONS(6517), - [anon_sym_BSLASHAcf] = ACTIONS(6517), - [anon_sym_BSLASHacfp] = ACTIONS(6517), - [anon_sym_BSLASHAcfp] = ACTIONS(6517), - [anon_sym_BSLASHac] = ACTIONS(6517), - [anon_sym_BSLASHAc] = ACTIONS(6517), - [anon_sym_BSLASHacp] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6517), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6517), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6517), - [anon_sym_BSLASHcolor] = ACTIONS(6517), - [anon_sym_BSLASHcolorbox] = ACTIONS(6517), - [anon_sym_BSLASHtextcolor] = ACTIONS(6517), - [anon_sym_BSLASHpagecolor] = ACTIONS(6517), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6517), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6517), - [anon_sym_BSLASHtext] = ACTIONS(6517), - [anon_sym_BSLASHintertext] = ACTIONS(6517), - [anon_sym_shortintertext] = ACTIONS(6517), - }, - [1787] = { - [sym_command_name] = ACTIONS(6513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6513), - [anon_sym_LBRACK] = ACTIONS(6515), - [anon_sym_RBRACK] = ACTIONS(6515), - [anon_sym_COMMA] = ACTIONS(6515), - [anon_sym_EQ] = ACTIONS(6515), - [anon_sym_LPAREN] = ACTIONS(6515), - [anon_sym_RPAREN] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(6515), - [anon_sym_RBRACE] = ACTIONS(6515), - [sym_word] = ACTIONS(6513), - [sym_placeholder] = ACTIONS(6515), - [anon_sym_PLUS] = ACTIONS(6515), - [anon_sym_DASH] = ACTIONS(6515), - [anon_sym_STAR] = ACTIONS(6515), - [anon_sym_SLASH] = ACTIONS(6515), - [anon_sym_LT] = ACTIONS(6513), - [anon_sym_GT] = ACTIONS(6513), - [anon_sym_BANG] = ACTIONS(6513), - [anon_sym_PIPE] = ACTIONS(6513), - [anon_sym_COLON] = ACTIONS(6513), - [anon_sym_SQUOTE] = ACTIONS(6513), - [anon_sym__] = ACTIONS(6515), - [anon_sym_CARET] = ACTIONS(6515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6515), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6515), - [anon_sym_DOLLAR] = ACTIONS(6513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6515), - [anon_sym_BSLASHtitle] = ACTIONS(6513), - [anon_sym_BSLASHauthor] = ACTIONS(6513), - [anon_sym_BSLASHusepackage] = ACTIONS(6513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6513), - [anon_sym_BSLASHinclude] = ACTIONS(6513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6513), - [anon_sym_BSLASHinput] = ACTIONS(6513), - [anon_sym_BSLASHsubfile] = ACTIONS(6513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6513), - [anon_sym_BSLASHbibliography] = ACTIONS(6513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6513), - [anon_sym_BSLASHincludesvg] = ACTIONS(6513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6513), - [anon_sym_BSLASHimport] = ACTIONS(6513), - [anon_sym_BSLASHsubimport] = ACTIONS(6513), - [anon_sym_BSLASHinputfrom] = ACTIONS(6513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6513), - [anon_sym_BSLASHincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHcaption] = ACTIONS(6513), - [anon_sym_BSLASHcite] = ACTIONS(6513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCite] = ACTIONS(6513), - [anon_sym_BSLASHnocite] = ACTIONS(6513), - [anon_sym_BSLASHcitet] = ACTIONS(6513), - [anon_sym_BSLASHcitep] = ACTIONS(6513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteauthor] = ACTIONS(6513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitetitle] = ACTIONS(6513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteyear] = ACTIONS(6513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitedate] = ACTIONS(6513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteurl] = ACTIONS(6513), - [anon_sym_BSLASHfullcite] = ACTIONS(6513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6513), - [anon_sym_BSLASHcitealt] = ACTIONS(6513), - [anon_sym_BSLASHcitealp] = ACTIONS(6513), - [anon_sym_BSLASHcitetext] = ACTIONS(6513), - [anon_sym_BSLASHparencite] = ACTIONS(6513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHParencite] = ACTIONS(6513), - [anon_sym_BSLASHfootcite] = ACTIONS(6513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6513), - [anon_sym_BSLASHtextcite] = ACTIONS(6513), - [anon_sym_BSLASHTextcite] = ACTIONS(6513), - [anon_sym_BSLASHsmartcite] = ACTIONS(6513), - [anon_sym_BSLASHSmartcite] = ACTIONS(6513), - [anon_sym_BSLASHsupercite] = ACTIONS(6513), - [anon_sym_BSLASHautocite] = ACTIONS(6513), - [anon_sym_BSLASHAutocite] = ACTIONS(6513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHvolcite] = ACTIONS(6513), - [anon_sym_BSLASHVolcite] = ACTIONS(6513), - [anon_sym_BSLASHpvolcite] = ACTIONS(6513), - [anon_sym_BSLASHPvolcite] = ACTIONS(6513), - [anon_sym_BSLASHfvolcite] = ACTIONS(6513), - [anon_sym_BSLASHftvolcite] = ACTIONS(6513), - [anon_sym_BSLASHsvolcite] = ACTIONS(6513), - [anon_sym_BSLASHSvolcite] = ACTIONS(6513), - [anon_sym_BSLASHtvolcite] = ACTIONS(6513), - [anon_sym_BSLASHTvolcite] = ACTIONS(6513), - [anon_sym_BSLASHavolcite] = ACTIONS(6513), - [anon_sym_BSLASHAvolcite] = ACTIONS(6513), - [anon_sym_BSLASHnotecite] = ACTIONS(6513), - [anon_sym_BSLASHNotecite] = ACTIONS(6513), - [anon_sym_BSLASHpnotecite] = ACTIONS(6513), - [anon_sym_BSLASHPnotecite] = ACTIONS(6513), - [anon_sym_BSLASHfnotecite] = ACTIONS(6513), - [anon_sym_BSLASHlabel] = ACTIONS(6513), - [anon_sym_BSLASHref] = ACTIONS(6513), - [anon_sym_BSLASHeqref] = ACTIONS(6513), - [anon_sym_BSLASHvref] = ACTIONS(6513), - [anon_sym_BSLASHVref] = ACTIONS(6513), - [anon_sym_BSLASHautoref] = ACTIONS(6513), - [anon_sym_BSLASHpageref] = ACTIONS(6513), - [anon_sym_BSLASHcref] = ACTIONS(6513), - [anon_sym_BSLASHCref] = ACTIONS(6513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnameCref] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHlabelcref] = ACTIONS(6513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCrefrange] = ACTIONS(6513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnewlabel] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6515), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHdef] = ACTIONS(6513), - [anon_sym_BSLASHlet] = ACTIONS(6513), - [anon_sym_BSLASHleft] = ACTIONS(6513), - [anon_sym_BSLASHbig] = ACTIONS(6513), - [anon_sym_BSLASHBig] = ACTIONS(6513), - [anon_sym_BSLASHbigg] = ACTIONS(6513), - [anon_sym_BSLASHBigg] = ACTIONS(6513), - [anon_sym_BSLASHbigl] = ACTIONS(6513), - [anon_sym_BSLASHBigl] = ACTIONS(6513), - [anon_sym_BSLASHbiggl] = ACTIONS(6513), - [anon_sym_BSLASHBiggl] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6513), - [anon_sym_BSLASHgls] = ACTIONS(6513), - [anon_sym_BSLASHGls] = ACTIONS(6513), - [anon_sym_BSLASHGLS] = ACTIONS(6513), - [anon_sym_BSLASHglspl] = ACTIONS(6513), - [anon_sym_BSLASHGlspl] = ACTIONS(6513), - [anon_sym_BSLASHGLSpl] = ACTIONS(6513), - [anon_sym_BSLASHglsdisp] = ACTIONS(6513), - [anon_sym_BSLASHglslink] = ACTIONS(6513), - [anon_sym_BSLASHglstext] = ACTIONS(6513), - [anon_sym_BSLASHGlstext] = ACTIONS(6513), - [anon_sym_BSLASHGLStext] = ACTIONS(6513), - [anon_sym_BSLASHglsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6513), - [anon_sym_BSLASHglsplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSplural] = ACTIONS(6513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHglsname] = ACTIONS(6513), - [anon_sym_BSLASHGlsname] = ACTIONS(6513), - [anon_sym_BSLASHGLSname] = ACTIONS(6513), - [anon_sym_BSLASHglssymbol] = ACTIONS(6513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6513), - [anon_sym_BSLASHglsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6513), - [anon_sym_BSLASHglsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6513), - [anon_sym_BSLASHglsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6513), - [anon_sym_BSLASHglsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6513), - [anon_sym_BSLASHglsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6513), - [anon_sym_BSLASHnewacronym] = ACTIONS(6513), - [anon_sym_BSLASHacrshort] = ACTIONS(6513), - [anon_sym_BSLASHAcrshort] = ACTIONS(6513), - [anon_sym_BSLASHACRshort] = ACTIONS(6513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6513), - [anon_sym_BSLASHacrlong] = ACTIONS(6513), - [anon_sym_BSLASHAcrlong] = ACTIONS(6513), - [anon_sym_BSLASHACRlong] = ACTIONS(6513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6513), - [anon_sym_BSLASHacrfull] = ACTIONS(6513), - [anon_sym_BSLASHAcrfull] = ACTIONS(6513), - [anon_sym_BSLASHACRfull] = ACTIONS(6513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6513), - [anon_sym_BSLASHacs] = ACTIONS(6513), - [anon_sym_BSLASHAcs] = ACTIONS(6513), - [anon_sym_BSLASHacsp] = ACTIONS(6513), - [anon_sym_BSLASHAcsp] = ACTIONS(6513), - [anon_sym_BSLASHacl] = ACTIONS(6513), - [anon_sym_BSLASHAcl] = ACTIONS(6513), - [anon_sym_BSLASHaclp] = ACTIONS(6513), - [anon_sym_BSLASHAclp] = ACTIONS(6513), - [anon_sym_BSLASHacf] = ACTIONS(6513), - [anon_sym_BSLASHAcf] = ACTIONS(6513), - [anon_sym_BSLASHacfp] = ACTIONS(6513), - [anon_sym_BSLASHAcfp] = ACTIONS(6513), - [anon_sym_BSLASHac] = ACTIONS(6513), - [anon_sym_BSLASHAc] = ACTIONS(6513), - [anon_sym_BSLASHacp] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6513), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6513), - [anon_sym_BSLASHcolor] = ACTIONS(6513), - [anon_sym_BSLASHcolorbox] = ACTIONS(6513), - [anon_sym_BSLASHtextcolor] = ACTIONS(6513), - [anon_sym_BSLASHpagecolor] = ACTIONS(6513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6513), - [anon_sym_BSLASHtext] = ACTIONS(6513), - [anon_sym_BSLASHintertext] = ACTIONS(6513), - [anon_sym_shortintertext] = ACTIONS(6513), - }, - [1788] = { - [sym_command_name] = ACTIONS(6509), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6509), - [anon_sym_LBRACK] = ACTIONS(6511), - [anon_sym_RBRACK] = ACTIONS(6511), - [anon_sym_COMMA] = ACTIONS(6511), - [anon_sym_EQ] = ACTIONS(6511), - [anon_sym_LPAREN] = ACTIONS(6511), - [anon_sym_RPAREN] = ACTIONS(6511), - [anon_sym_LBRACE] = ACTIONS(6511), - [anon_sym_RBRACE] = ACTIONS(6511), - [sym_word] = ACTIONS(6509), - [sym_placeholder] = ACTIONS(6511), - [anon_sym_PLUS] = ACTIONS(6511), - [anon_sym_DASH] = ACTIONS(6511), - [anon_sym_STAR] = ACTIONS(6511), - [anon_sym_SLASH] = ACTIONS(6511), - [anon_sym_LT] = ACTIONS(6509), - [anon_sym_GT] = ACTIONS(6509), - [anon_sym_BANG] = ACTIONS(6509), - [anon_sym_PIPE] = ACTIONS(6509), - [anon_sym_COLON] = ACTIONS(6509), - [anon_sym_SQUOTE] = ACTIONS(6509), - [anon_sym__] = ACTIONS(6511), - [anon_sym_CARET] = ACTIONS(6511), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6511), - [anon_sym_DOLLAR] = ACTIONS(6509), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6511), - [anon_sym_BSLASHtitle] = ACTIONS(6509), - [anon_sym_BSLASHauthor] = ACTIONS(6509), - [anon_sym_BSLASHusepackage] = ACTIONS(6509), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6509), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6509), - [anon_sym_BSLASHinclude] = ACTIONS(6509), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6509), - [anon_sym_BSLASHinput] = ACTIONS(6509), - [anon_sym_BSLASHsubfile] = ACTIONS(6509), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6509), - [anon_sym_BSLASHbibliography] = ACTIONS(6509), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6509), - [anon_sym_BSLASHincludesvg] = ACTIONS(6509), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6509), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6509), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6509), - [anon_sym_BSLASHimport] = ACTIONS(6509), - [anon_sym_BSLASHsubimport] = ACTIONS(6509), - [anon_sym_BSLASHinputfrom] = ACTIONS(6509), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6509), - [anon_sym_BSLASHincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHcaption] = ACTIONS(6509), - [anon_sym_BSLASHcite] = ACTIONS(6509), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCite] = ACTIONS(6509), - [anon_sym_BSLASHnocite] = ACTIONS(6509), - [anon_sym_BSLASHcitet] = ACTIONS(6509), - [anon_sym_BSLASHcitep] = ACTIONS(6509), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteauthor] = ACTIONS(6509), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6509), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitetitle] = ACTIONS(6509), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteyear] = ACTIONS(6509), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitedate] = ACTIONS(6509), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteurl] = ACTIONS(6509), - [anon_sym_BSLASHfullcite] = ACTIONS(6509), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6509), - [anon_sym_BSLASHcitealt] = ACTIONS(6509), - [anon_sym_BSLASHcitealp] = ACTIONS(6509), - [anon_sym_BSLASHcitetext] = ACTIONS(6509), - [anon_sym_BSLASHparencite] = ACTIONS(6509), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHParencite] = ACTIONS(6509), - [anon_sym_BSLASHfootcite] = ACTIONS(6509), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6509), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6509), - [anon_sym_BSLASHtextcite] = ACTIONS(6509), - [anon_sym_BSLASHTextcite] = ACTIONS(6509), - [anon_sym_BSLASHsmartcite] = ACTIONS(6509), - [anon_sym_BSLASHSmartcite] = ACTIONS(6509), - [anon_sym_BSLASHsupercite] = ACTIONS(6509), - [anon_sym_BSLASHautocite] = ACTIONS(6509), - [anon_sym_BSLASHAutocite] = ACTIONS(6509), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHvolcite] = ACTIONS(6509), - [anon_sym_BSLASHVolcite] = ACTIONS(6509), - [anon_sym_BSLASHpvolcite] = ACTIONS(6509), - [anon_sym_BSLASHPvolcite] = ACTIONS(6509), - [anon_sym_BSLASHfvolcite] = ACTIONS(6509), - [anon_sym_BSLASHftvolcite] = ACTIONS(6509), - [anon_sym_BSLASHsvolcite] = ACTIONS(6509), - [anon_sym_BSLASHSvolcite] = ACTIONS(6509), - [anon_sym_BSLASHtvolcite] = ACTIONS(6509), - [anon_sym_BSLASHTvolcite] = ACTIONS(6509), - [anon_sym_BSLASHavolcite] = ACTIONS(6509), - [anon_sym_BSLASHAvolcite] = ACTIONS(6509), - [anon_sym_BSLASHnotecite] = ACTIONS(6509), - [anon_sym_BSLASHNotecite] = ACTIONS(6509), - [anon_sym_BSLASHpnotecite] = ACTIONS(6509), - [anon_sym_BSLASHPnotecite] = ACTIONS(6509), - [anon_sym_BSLASHfnotecite] = ACTIONS(6509), - [anon_sym_BSLASHlabel] = ACTIONS(6509), - [anon_sym_BSLASHref] = ACTIONS(6509), - [anon_sym_BSLASHeqref] = ACTIONS(6509), - [anon_sym_BSLASHvref] = ACTIONS(6509), - [anon_sym_BSLASHVref] = ACTIONS(6509), - [anon_sym_BSLASHautoref] = ACTIONS(6509), - [anon_sym_BSLASHpageref] = ACTIONS(6509), - [anon_sym_BSLASHcref] = ACTIONS(6509), - [anon_sym_BSLASHCref] = ACTIONS(6509), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnameCref] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHlabelcref] = ACTIONS(6509), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCrefrange] = ACTIONS(6509), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnewlabel] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6509), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6509), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6511), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHdef] = ACTIONS(6509), - [anon_sym_BSLASHlet] = ACTIONS(6509), - [anon_sym_BSLASHleft] = ACTIONS(6509), - [anon_sym_BSLASHbig] = ACTIONS(6509), - [anon_sym_BSLASHBig] = ACTIONS(6509), - [anon_sym_BSLASHbigg] = ACTIONS(6509), - [anon_sym_BSLASHBigg] = ACTIONS(6509), - [anon_sym_BSLASHbigl] = ACTIONS(6509), - [anon_sym_BSLASHBigl] = ACTIONS(6509), - [anon_sym_BSLASHbiggl] = ACTIONS(6509), - [anon_sym_BSLASHBiggl] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6509), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6509), - [anon_sym_BSLASHgls] = ACTIONS(6509), - [anon_sym_BSLASHGls] = ACTIONS(6509), - [anon_sym_BSLASHGLS] = ACTIONS(6509), - [anon_sym_BSLASHglspl] = ACTIONS(6509), - [anon_sym_BSLASHGlspl] = ACTIONS(6509), - [anon_sym_BSLASHGLSpl] = ACTIONS(6509), - [anon_sym_BSLASHglsdisp] = ACTIONS(6509), - [anon_sym_BSLASHglslink] = ACTIONS(6509), - [anon_sym_BSLASHglstext] = ACTIONS(6509), - [anon_sym_BSLASHGlstext] = ACTIONS(6509), - [anon_sym_BSLASHGLStext] = ACTIONS(6509), - [anon_sym_BSLASHglsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6509), - [anon_sym_BSLASHglsplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSplural] = ACTIONS(6509), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHglsname] = ACTIONS(6509), - [anon_sym_BSLASHGlsname] = ACTIONS(6509), - [anon_sym_BSLASHGLSname] = ACTIONS(6509), - [anon_sym_BSLASHglssymbol] = ACTIONS(6509), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6509), - [anon_sym_BSLASHglsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6509), - [anon_sym_BSLASHglsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6509), - [anon_sym_BSLASHglsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6509), - [anon_sym_BSLASHglsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6509), - [anon_sym_BSLASHglsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6509), - [anon_sym_BSLASHnewacronym] = ACTIONS(6509), - [anon_sym_BSLASHacrshort] = ACTIONS(6509), - [anon_sym_BSLASHAcrshort] = ACTIONS(6509), - [anon_sym_BSLASHACRshort] = ACTIONS(6509), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6509), - [anon_sym_BSLASHacrlong] = ACTIONS(6509), - [anon_sym_BSLASHAcrlong] = ACTIONS(6509), - [anon_sym_BSLASHACRlong] = ACTIONS(6509), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6509), - [anon_sym_BSLASHacrfull] = ACTIONS(6509), - [anon_sym_BSLASHAcrfull] = ACTIONS(6509), - [anon_sym_BSLASHACRfull] = ACTIONS(6509), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6509), - [anon_sym_BSLASHacs] = ACTIONS(6509), - [anon_sym_BSLASHAcs] = ACTIONS(6509), - [anon_sym_BSLASHacsp] = ACTIONS(6509), - [anon_sym_BSLASHAcsp] = ACTIONS(6509), - [anon_sym_BSLASHacl] = ACTIONS(6509), - [anon_sym_BSLASHAcl] = ACTIONS(6509), - [anon_sym_BSLASHaclp] = ACTIONS(6509), - [anon_sym_BSLASHAclp] = ACTIONS(6509), - [anon_sym_BSLASHacf] = ACTIONS(6509), - [anon_sym_BSLASHAcf] = ACTIONS(6509), - [anon_sym_BSLASHacfp] = ACTIONS(6509), - [anon_sym_BSLASHAcfp] = ACTIONS(6509), - [anon_sym_BSLASHac] = ACTIONS(6509), - [anon_sym_BSLASHAc] = ACTIONS(6509), - [anon_sym_BSLASHacp] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6509), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6509), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6509), - [anon_sym_BSLASHcolor] = ACTIONS(6509), - [anon_sym_BSLASHcolorbox] = ACTIONS(6509), - [anon_sym_BSLASHtextcolor] = ACTIONS(6509), - [anon_sym_BSLASHpagecolor] = ACTIONS(6509), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6509), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6509), - [anon_sym_BSLASHtext] = ACTIONS(6509), - [anon_sym_BSLASHintertext] = ACTIONS(6509), - [anon_sym_shortintertext] = ACTIONS(6509), - }, - [1789] = { - [sym_command_name] = ACTIONS(6505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6505), - [anon_sym_LBRACK] = ACTIONS(6507), - [anon_sym_RBRACK] = ACTIONS(6507), - [anon_sym_COMMA] = ACTIONS(6507), - [anon_sym_EQ] = ACTIONS(6507), - [anon_sym_LPAREN] = ACTIONS(6507), - [anon_sym_RPAREN] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [anon_sym_RBRACE] = ACTIONS(6507), - [sym_word] = ACTIONS(6505), - [sym_placeholder] = ACTIONS(6507), - [anon_sym_PLUS] = ACTIONS(6507), - [anon_sym_DASH] = ACTIONS(6507), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_SLASH] = ACTIONS(6507), - [anon_sym_LT] = ACTIONS(6505), - [anon_sym_GT] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6505), - [anon_sym_PIPE] = ACTIONS(6505), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6505), - [anon_sym__] = ACTIONS(6507), - [anon_sym_CARET] = ACTIONS(6507), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6507), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6507), - [anon_sym_DOLLAR] = ACTIONS(6505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6507), - [anon_sym_BSLASHtitle] = ACTIONS(6505), - [anon_sym_BSLASHauthor] = ACTIONS(6505), - [anon_sym_BSLASHusepackage] = ACTIONS(6505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6505), - [anon_sym_BSLASHinclude] = ACTIONS(6505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6505), - [anon_sym_BSLASHinput] = ACTIONS(6505), - [anon_sym_BSLASHsubfile] = ACTIONS(6505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6505), - [anon_sym_BSLASHbibliography] = ACTIONS(6505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6505), - [anon_sym_BSLASHincludesvg] = ACTIONS(6505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6505), - [anon_sym_BSLASHimport] = ACTIONS(6505), - [anon_sym_BSLASHsubimport] = ACTIONS(6505), - [anon_sym_BSLASHinputfrom] = ACTIONS(6505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6505), - [anon_sym_BSLASHincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHcaption] = ACTIONS(6505), - [anon_sym_BSLASHcite] = ACTIONS(6505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCite] = ACTIONS(6505), - [anon_sym_BSLASHnocite] = ACTIONS(6505), - [anon_sym_BSLASHcitet] = ACTIONS(6505), - [anon_sym_BSLASHcitep] = ACTIONS(6505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteauthor] = ACTIONS(6505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitetitle] = ACTIONS(6505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteyear] = ACTIONS(6505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitedate] = ACTIONS(6505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteurl] = ACTIONS(6505), - [anon_sym_BSLASHfullcite] = ACTIONS(6505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6505), - [anon_sym_BSLASHcitealt] = ACTIONS(6505), - [anon_sym_BSLASHcitealp] = ACTIONS(6505), - [anon_sym_BSLASHcitetext] = ACTIONS(6505), - [anon_sym_BSLASHparencite] = ACTIONS(6505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHParencite] = ACTIONS(6505), - [anon_sym_BSLASHfootcite] = ACTIONS(6505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6505), - [anon_sym_BSLASHtextcite] = ACTIONS(6505), - [anon_sym_BSLASHTextcite] = ACTIONS(6505), - [anon_sym_BSLASHsmartcite] = ACTIONS(6505), - [anon_sym_BSLASHSmartcite] = ACTIONS(6505), - [anon_sym_BSLASHsupercite] = ACTIONS(6505), - [anon_sym_BSLASHautocite] = ACTIONS(6505), - [anon_sym_BSLASHAutocite] = ACTIONS(6505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHvolcite] = ACTIONS(6505), - [anon_sym_BSLASHVolcite] = ACTIONS(6505), - [anon_sym_BSLASHpvolcite] = ACTIONS(6505), - [anon_sym_BSLASHPvolcite] = ACTIONS(6505), - [anon_sym_BSLASHfvolcite] = ACTIONS(6505), - [anon_sym_BSLASHftvolcite] = ACTIONS(6505), - [anon_sym_BSLASHsvolcite] = ACTIONS(6505), - [anon_sym_BSLASHSvolcite] = ACTIONS(6505), - [anon_sym_BSLASHtvolcite] = ACTIONS(6505), - [anon_sym_BSLASHTvolcite] = ACTIONS(6505), - [anon_sym_BSLASHavolcite] = ACTIONS(6505), - [anon_sym_BSLASHAvolcite] = ACTIONS(6505), - [anon_sym_BSLASHnotecite] = ACTIONS(6505), - [anon_sym_BSLASHNotecite] = ACTIONS(6505), - [anon_sym_BSLASHpnotecite] = ACTIONS(6505), - [anon_sym_BSLASHPnotecite] = ACTIONS(6505), - [anon_sym_BSLASHfnotecite] = ACTIONS(6505), - [anon_sym_BSLASHlabel] = ACTIONS(6505), - [anon_sym_BSLASHref] = ACTIONS(6505), - [anon_sym_BSLASHeqref] = ACTIONS(6505), - [anon_sym_BSLASHvref] = ACTIONS(6505), - [anon_sym_BSLASHVref] = ACTIONS(6505), - [anon_sym_BSLASHautoref] = ACTIONS(6505), - [anon_sym_BSLASHpageref] = ACTIONS(6505), - [anon_sym_BSLASHcref] = ACTIONS(6505), - [anon_sym_BSLASHCref] = ACTIONS(6505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnameCref] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHlabelcref] = ACTIONS(6505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCrefrange] = ACTIONS(6505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnewlabel] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6507), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHdef] = ACTIONS(6505), - [anon_sym_BSLASHlet] = ACTIONS(6505), - [anon_sym_BSLASHleft] = ACTIONS(6505), - [anon_sym_BSLASHbig] = ACTIONS(6505), - [anon_sym_BSLASHBig] = ACTIONS(6505), - [anon_sym_BSLASHbigg] = ACTIONS(6505), - [anon_sym_BSLASHBigg] = ACTIONS(6505), - [anon_sym_BSLASHbigl] = ACTIONS(6505), - [anon_sym_BSLASHBigl] = ACTIONS(6505), - [anon_sym_BSLASHbiggl] = ACTIONS(6505), - [anon_sym_BSLASHBiggl] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6505), - [anon_sym_BSLASHgls] = ACTIONS(6505), - [anon_sym_BSLASHGls] = ACTIONS(6505), - [anon_sym_BSLASHGLS] = ACTIONS(6505), - [anon_sym_BSLASHglspl] = ACTIONS(6505), - [anon_sym_BSLASHGlspl] = ACTIONS(6505), - [anon_sym_BSLASHGLSpl] = ACTIONS(6505), - [anon_sym_BSLASHglsdisp] = ACTIONS(6505), - [anon_sym_BSLASHglslink] = ACTIONS(6505), - [anon_sym_BSLASHglstext] = ACTIONS(6505), - [anon_sym_BSLASHGlstext] = ACTIONS(6505), - [anon_sym_BSLASHGLStext] = ACTIONS(6505), - [anon_sym_BSLASHglsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6505), - [anon_sym_BSLASHglsplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSplural] = ACTIONS(6505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHglsname] = ACTIONS(6505), - [anon_sym_BSLASHGlsname] = ACTIONS(6505), - [anon_sym_BSLASHGLSname] = ACTIONS(6505), - [anon_sym_BSLASHglssymbol] = ACTIONS(6505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6505), - [anon_sym_BSLASHglsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6505), - [anon_sym_BSLASHglsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6505), - [anon_sym_BSLASHglsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6505), - [anon_sym_BSLASHglsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6505), - [anon_sym_BSLASHglsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6505), - [anon_sym_BSLASHnewacronym] = ACTIONS(6505), - [anon_sym_BSLASHacrshort] = ACTIONS(6505), - [anon_sym_BSLASHAcrshort] = ACTIONS(6505), - [anon_sym_BSLASHACRshort] = ACTIONS(6505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6505), - [anon_sym_BSLASHacrlong] = ACTIONS(6505), - [anon_sym_BSLASHAcrlong] = ACTIONS(6505), - [anon_sym_BSLASHACRlong] = ACTIONS(6505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6505), - [anon_sym_BSLASHacrfull] = ACTIONS(6505), - [anon_sym_BSLASHAcrfull] = ACTIONS(6505), - [anon_sym_BSLASHACRfull] = ACTIONS(6505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6505), - [anon_sym_BSLASHacs] = ACTIONS(6505), - [anon_sym_BSLASHAcs] = ACTIONS(6505), - [anon_sym_BSLASHacsp] = ACTIONS(6505), - [anon_sym_BSLASHAcsp] = ACTIONS(6505), - [anon_sym_BSLASHacl] = ACTIONS(6505), - [anon_sym_BSLASHAcl] = ACTIONS(6505), - [anon_sym_BSLASHaclp] = ACTIONS(6505), - [anon_sym_BSLASHAclp] = ACTIONS(6505), - [anon_sym_BSLASHacf] = ACTIONS(6505), - [anon_sym_BSLASHAcf] = ACTIONS(6505), - [anon_sym_BSLASHacfp] = ACTIONS(6505), - [anon_sym_BSLASHAcfp] = ACTIONS(6505), - [anon_sym_BSLASHac] = ACTIONS(6505), - [anon_sym_BSLASHAc] = ACTIONS(6505), - [anon_sym_BSLASHacp] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6505), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6505), - [anon_sym_BSLASHcolor] = ACTIONS(6505), - [anon_sym_BSLASHcolorbox] = ACTIONS(6505), - [anon_sym_BSLASHtextcolor] = ACTIONS(6505), - [anon_sym_BSLASHpagecolor] = ACTIONS(6505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6505), - [anon_sym_BSLASHtext] = ACTIONS(6505), - [anon_sym_BSLASHintertext] = ACTIONS(6505), - [anon_sym_shortintertext] = ACTIONS(6505), - }, - [1790] = { - [sym_command_name] = ACTIONS(6457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6457), - [anon_sym_LBRACK] = ACTIONS(6459), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(6459), - [anon_sym_LPAREN] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(6459), - [sym_word] = ACTIONS(6457), - [sym_placeholder] = ACTIONS(6459), - [anon_sym_PLUS] = ACTIONS(6459), - [anon_sym_DASH] = ACTIONS(6459), - [anon_sym_STAR] = ACTIONS(6459), - [anon_sym_SLASH] = ACTIONS(6459), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_BANG] = ACTIONS(6457), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_SQUOTE] = ACTIONS(6457), - [anon_sym__] = ACTIONS(6459), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6459), - [anon_sym_DOLLAR] = ACTIONS(6457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6459), - [anon_sym_BSLASHtitle] = ACTIONS(6457), - [anon_sym_BSLASHauthor] = ACTIONS(6457), - [anon_sym_BSLASHusepackage] = ACTIONS(6457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6457), - [anon_sym_BSLASHinclude] = ACTIONS(6457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6457), - [anon_sym_BSLASHinput] = ACTIONS(6457), - [anon_sym_BSLASHsubfile] = ACTIONS(6457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6457), - [anon_sym_BSLASHbibliography] = ACTIONS(6457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6457), - [anon_sym_BSLASHincludesvg] = ACTIONS(6457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6457), - [anon_sym_BSLASHimport] = ACTIONS(6457), - [anon_sym_BSLASHsubimport] = ACTIONS(6457), - [anon_sym_BSLASHinputfrom] = ACTIONS(6457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6457), - [anon_sym_BSLASHincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHcaption] = ACTIONS(6457), - [anon_sym_BSLASHcite] = ACTIONS(6457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCite] = ACTIONS(6457), - [anon_sym_BSLASHnocite] = ACTIONS(6457), - [anon_sym_BSLASHcitet] = ACTIONS(6457), - [anon_sym_BSLASHcitep] = ACTIONS(6457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteauthor] = ACTIONS(6457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitetitle] = ACTIONS(6457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteyear] = ACTIONS(6457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitedate] = ACTIONS(6457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteurl] = ACTIONS(6457), - [anon_sym_BSLASHfullcite] = ACTIONS(6457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6457), - [anon_sym_BSLASHcitealt] = ACTIONS(6457), - [anon_sym_BSLASHcitealp] = ACTIONS(6457), - [anon_sym_BSLASHcitetext] = ACTIONS(6457), - [anon_sym_BSLASHparencite] = ACTIONS(6457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHParencite] = ACTIONS(6457), - [anon_sym_BSLASHfootcite] = ACTIONS(6457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6457), - [anon_sym_BSLASHtextcite] = ACTIONS(6457), - [anon_sym_BSLASHTextcite] = ACTIONS(6457), - [anon_sym_BSLASHsmartcite] = ACTIONS(6457), - [anon_sym_BSLASHSmartcite] = ACTIONS(6457), - [anon_sym_BSLASHsupercite] = ACTIONS(6457), - [anon_sym_BSLASHautocite] = ACTIONS(6457), - [anon_sym_BSLASHAutocite] = ACTIONS(6457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHvolcite] = ACTIONS(6457), - [anon_sym_BSLASHVolcite] = ACTIONS(6457), - [anon_sym_BSLASHpvolcite] = ACTIONS(6457), - [anon_sym_BSLASHPvolcite] = ACTIONS(6457), - [anon_sym_BSLASHfvolcite] = ACTIONS(6457), - [anon_sym_BSLASHftvolcite] = ACTIONS(6457), - [anon_sym_BSLASHsvolcite] = ACTIONS(6457), - [anon_sym_BSLASHSvolcite] = ACTIONS(6457), - [anon_sym_BSLASHtvolcite] = ACTIONS(6457), - [anon_sym_BSLASHTvolcite] = ACTIONS(6457), - [anon_sym_BSLASHavolcite] = ACTIONS(6457), - [anon_sym_BSLASHAvolcite] = ACTIONS(6457), - [anon_sym_BSLASHnotecite] = ACTIONS(6457), - [anon_sym_BSLASHNotecite] = ACTIONS(6457), - [anon_sym_BSLASHpnotecite] = ACTIONS(6457), - [anon_sym_BSLASHPnotecite] = ACTIONS(6457), - [anon_sym_BSLASHfnotecite] = ACTIONS(6457), - [anon_sym_BSLASHlabel] = ACTIONS(6457), - [anon_sym_BSLASHref] = ACTIONS(6457), - [anon_sym_BSLASHeqref] = ACTIONS(6457), - [anon_sym_BSLASHvref] = ACTIONS(6457), - [anon_sym_BSLASHVref] = ACTIONS(6457), - [anon_sym_BSLASHautoref] = ACTIONS(6457), - [anon_sym_BSLASHpageref] = ACTIONS(6457), - [anon_sym_BSLASHcref] = ACTIONS(6457), - [anon_sym_BSLASHCref] = ACTIONS(6457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnameCref] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHlabelcref] = ACTIONS(6457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCrefrange] = ACTIONS(6457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnewlabel] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6459), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHdef] = ACTIONS(6457), - [anon_sym_BSLASHlet] = ACTIONS(6457), - [anon_sym_BSLASHleft] = ACTIONS(6457), - [anon_sym_BSLASHbig] = ACTIONS(6457), - [anon_sym_BSLASHBig] = ACTIONS(6457), - [anon_sym_BSLASHbigg] = ACTIONS(6457), - [anon_sym_BSLASHBigg] = ACTIONS(6457), - [anon_sym_BSLASHbigl] = ACTIONS(6457), - [anon_sym_BSLASHBigl] = ACTIONS(6457), - [anon_sym_BSLASHbiggl] = ACTIONS(6457), - [anon_sym_BSLASHBiggl] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6457), - [anon_sym_BSLASHgls] = ACTIONS(6457), - [anon_sym_BSLASHGls] = ACTIONS(6457), - [anon_sym_BSLASHGLS] = ACTIONS(6457), - [anon_sym_BSLASHglspl] = ACTIONS(6457), - [anon_sym_BSLASHGlspl] = ACTIONS(6457), - [anon_sym_BSLASHGLSpl] = ACTIONS(6457), - [anon_sym_BSLASHglsdisp] = ACTIONS(6457), - [anon_sym_BSLASHglslink] = ACTIONS(6457), - [anon_sym_BSLASHglstext] = ACTIONS(6457), - [anon_sym_BSLASHGlstext] = ACTIONS(6457), - [anon_sym_BSLASHGLStext] = ACTIONS(6457), - [anon_sym_BSLASHglsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6457), - [anon_sym_BSLASHglsplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSplural] = ACTIONS(6457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHglsname] = ACTIONS(6457), - [anon_sym_BSLASHGlsname] = ACTIONS(6457), - [anon_sym_BSLASHGLSname] = ACTIONS(6457), - [anon_sym_BSLASHglssymbol] = ACTIONS(6457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6457), - [anon_sym_BSLASHglsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6457), - [anon_sym_BSLASHglsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6457), - [anon_sym_BSLASHglsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6457), - [anon_sym_BSLASHglsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6457), - [anon_sym_BSLASHglsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6457), - [anon_sym_BSLASHnewacronym] = ACTIONS(6457), - [anon_sym_BSLASHacrshort] = ACTIONS(6457), - [anon_sym_BSLASHAcrshort] = ACTIONS(6457), - [anon_sym_BSLASHACRshort] = ACTIONS(6457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6457), - [anon_sym_BSLASHacrlong] = ACTIONS(6457), - [anon_sym_BSLASHAcrlong] = ACTIONS(6457), - [anon_sym_BSLASHACRlong] = ACTIONS(6457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6457), - [anon_sym_BSLASHacrfull] = ACTIONS(6457), - [anon_sym_BSLASHAcrfull] = ACTIONS(6457), - [anon_sym_BSLASHACRfull] = ACTIONS(6457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6457), - [anon_sym_BSLASHacs] = ACTIONS(6457), - [anon_sym_BSLASHAcs] = ACTIONS(6457), - [anon_sym_BSLASHacsp] = ACTIONS(6457), - [anon_sym_BSLASHAcsp] = ACTIONS(6457), - [anon_sym_BSLASHacl] = ACTIONS(6457), - [anon_sym_BSLASHAcl] = ACTIONS(6457), - [anon_sym_BSLASHaclp] = ACTIONS(6457), - [anon_sym_BSLASHAclp] = ACTIONS(6457), - [anon_sym_BSLASHacf] = ACTIONS(6457), - [anon_sym_BSLASHAcf] = ACTIONS(6457), - [anon_sym_BSLASHacfp] = ACTIONS(6457), - [anon_sym_BSLASHAcfp] = ACTIONS(6457), - [anon_sym_BSLASHac] = ACTIONS(6457), - [anon_sym_BSLASHAc] = ACTIONS(6457), - [anon_sym_BSLASHacp] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6457), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6457), - [anon_sym_BSLASHcolor] = ACTIONS(6457), - [anon_sym_BSLASHcolorbox] = ACTIONS(6457), - [anon_sym_BSLASHtextcolor] = ACTIONS(6457), - [anon_sym_BSLASHpagecolor] = ACTIONS(6457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6457), - [anon_sym_BSLASHtext] = ACTIONS(6457), - [anon_sym_BSLASHintertext] = ACTIONS(6457), - [anon_sym_shortintertext] = ACTIONS(6457), - }, - [1791] = { - [sym_command_name] = ACTIONS(6461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6461), - [anon_sym_LBRACK] = ACTIONS(6463), - [anon_sym_RBRACK] = ACTIONS(6463), - [anon_sym_COMMA] = ACTIONS(6463), - [anon_sym_EQ] = ACTIONS(6463), - [anon_sym_LPAREN] = ACTIONS(6463), - [anon_sym_RPAREN] = ACTIONS(6463), - [anon_sym_LBRACE] = ACTIONS(6463), - [anon_sym_RBRACE] = ACTIONS(6463), - [sym_word] = ACTIONS(6461), - [sym_placeholder] = ACTIONS(6463), - [anon_sym_PLUS] = ACTIONS(6463), - [anon_sym_DASH] = ACTIONS(6463), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6463), - [anon_sym_LT] = ACTIONS(6461), - [anon_sym_GT] = ACTIONS(6461), - [anon_sym_BANG] = ACTIONS(6461), - [anon_sym_PIPE] = ACTIONS(6461), - [anon_sym_COLON] = ACTIONS(6461), - [anon_sym_SQUOTE] = ACTIONS(6461), - [anon_sym__] = ACTIONS(6463), - [anon_sym_CARET] = ACTIONS(6463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6463), - [anon_sym_DOLLAR] = ACTIONS(6461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6463), - [anon_sym_BSLASHtitle] = ACTIONS(6461), - [anon_sym_BSLASHauthor] = ACTIONS(6461), - [anon_sym_BSLASHusepackage] = ACTIONS(6461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6461), - [anon_sym_BSLASHinclude] = ACTIONS(6461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6461), - [anon_sym_BSLASHinput] = ACTIONS(6461), - [anon_sym_BSLASHsubfile] = ACTIONS(6461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6461), - [anon_sym_BSLASHbibliography] = ACTIONS(6461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6461), - [anon_sym_BSLASHincludesvg] = ACTIONS(6461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6461), - [anon_sym_BSLASHimport] = ACTIONS(6461), - [anon_sym_BSLASHsubimport] = ACTIONS(6461), - [anon_sym_BSLASHinputfrom] = ACTIONS(6461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6461), - [anon_sym_BSLASHincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHcaption] = ACTIONS(6461), - [anon_sym_BSLASHcite] = ACTIONS(6461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCite] = ACTIONS(6461), - [anon_sym_BSLASHnocite] = ACTIONS(6461), - [anon_sym_BSLASHcitet] = ACTIONS(6461), - [anon_sym_BSLASHcitep] = ACTIONS(6461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteauthor] = ACTIONS(6461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitetitle] = ACTIONS(6461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteyear] = ACTIONS(6461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitedate] = ACTIONS(6461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteurl] = ACTIONS(6461), - [anon_sym_BSLASHfullcite] = ACTIONS(6461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6461), - [anon_sym_BSLASHcitealt] = ACTIONS(6461), - [anon_sym_BSLASHcitealp] = ACTIONS(6461), - [anon_sym_BSLASHcitetext] = ACTIONS(6461), - [anon_sym_BSLASHparencite] = ACTIONS(6461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHParencite] = ACTIONS(6461), - [anon_sym_BSLASHfootcite] = ACTIONS(6461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6461), - [anon_sym_BSLASHtextcite] = ACTIONS(6461), - [anon_sym_BSLASHTextcite] = ACTIONS(6461), - [anon_sym_BSLASHsmartcite] = ACTIONS(6461), - [anon_sym_BSLASHSmartcite] = ACTIONS(6461), - [anon_sym_BSLASHsupercite] = ACTIONS(6461), - [anon_sym_BSLASHautocite] = ACTIONS(6461), - [anon_sym_BSLASHAutocite] = ACTIONS(6461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHvolcite] = ACTIONS(6461), - [anon_sym_BSLASHVolcite] = ACTIONS(6461), - [anon_sym_BSLASHpvolcite] = ACTIONS(6461), - [anon_sym_BSLASHPvolcite] = ACTIONS(6461), - [anon_sym_BSLASHfvolcite] = ACTIONS(6461), - [anon_sym_BSLASHftvolcite] = ACTIONS(6461), - [anon_sym_BSLASHsvolcite] = ACTIONS(6461), - [anon_sym_BSLASHSvolcite] = ACTIONS(6461), - [anon_sym_BSLASHtvolcite] = ACTIONS(6461), - [anon_sym_BSLASHTvolcite] = ACTIONS(6461), - [anon_sym_BSLASHavolcite] = ACTIONS(6461), - [anon_sym_BSLASHAvolcite] = ACTIONS(6461), - [anon_sym_BSLASHnotecite] = ACTIONS(6461), - [anon_sym_BSLASHNotecite] = ACTIONS(6461), - [anon_sym_BSLASHpnotecite] = ACTIONS(6461), - [anon_sym_BSLASHPnotecite] = ACTIONS(6461), - [anon_sym_BSLASHfnotecite] = ACTIONS(6461), - [anon_sym_BSLASHlabel] = ACTIONS(6461), - [anon_sym_BSLASHref] = ACTIONS(6461), - [anon_sym_BSLASHeqref] = ACTIONS(6461), - [anon_sym_BSLASHvref] = ACTIONS(6461), - [anon_sym_BSLASHVref] = ACTIONS(6461), - [anon_sym_BSLASHautoref] = ACTIONS(6461), - [anon_sym_BSLASHpageref] = ACTIONS(6461), - [anon_sym_BSLASHcref] = ACTIONS(6461), - [anon_sym_BSLASHCref] = ACTIONS(6461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnameCref] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHlabelcref] = ACTIONS(6461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCrefrange] = ACTIONS(6461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnewlabel] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6463), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHdef] = ACTIONS(6461), - [anon_sym_BSLASHlet] = ACTIONS(6461), - [anon_sym_BSLASHleft] = ACTIONS(6461), - [anon_sym_BSLASHbig] = ACTIONS(6461), - [anon_sym_BSLASHBig] = ACTIONS(6461), - [anon_sym_BSLASHbigg] = ACTIONS(6461), - [anon_sym_BSLASHBigg] = ACTIONS(6461), - [anon_sym_BSLASHbigl] = ACTIONS(6461), - [anon_sym_BSLASHBigl] = ACTIONS(6461), - [anon_sym_BSLASHbiggl] = ACTIONS(6461), - [anon_sym_BSLASHBiggl] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6461), - [anon_sym_BSLASHgls] = ACTIONS(6461), - [anon_sym_BSLASHGls] = ACTIONS(6461), - [anon_sym_BSLASHGLS] = ACTIONS(6461), - [anon_sym_BSLASHglspl] = ACTIONS(6461), - [anon_sym_BSLASHGlspl] = ACTIONS(6461), - [anon_sym_BSLASHGLSpl] = ACTIONS(6461), - [anon_sym_BSLASHglsdisp] = ACTIONS(6461), - [anon_sym_BSLASHglslink] = ACTIONS(6461), - [anon_sym_BSLASHglstext] = ACTIONS(6461), - [anon_sym_BSLASHGlstext] = ACTIONS(6461), - [anon_sym_BSLASHGLStext] = ACTIONS(6461), - [anon_sym_BSLASHglsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6461), - [anon_sym_BSLASHglsplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSplural] = ACTIONS(6461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHglsname] = ACTIONS(6461), - [anon_sym_BSLASHGlsname] = ACTIONS(6461), - [anon_sym_BSLASHGLSname] = ACTIONS(6461), - [anon_sym_BSLASHglssymbol] = ACTIONS(6461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6461), - [anon_sym_BSLASHglsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6461), - [anon_sym_BSLASHglsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6461), - [anon_sym_BSLASHglsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6461), - [anon_sym_BSLASHglsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6461), - [anon_sym_BSLASHglsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6461), - [anon_sym_BSLASHnewacronym] = ACTIONS(6461), - [anon_sym_BSLASHacrshort] = ACTIONS(6461), - [anon_sym_BSLASHAcrshort] = ACTIONS(6461), - [anon_sym_BSLASHACRshort] = ACTIONS(6461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6461), - [anon_sym_BSLASHacrlong] = ACTIONS(6461), - [anon_sym_BSLASHAcrlong] = ACTIONS(6461), - [anon_sym_BSLASHACRlong] = ACTIONS(6461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6461), - [anon_sym_BSLASHacrfull] = ACTIONS(6461), - [anon_sym_BSLASHAcrfull] = ACTIONS(6461), - [anon_sym_BSLASHACRfull] = ACTIONS(6461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6461), - [anon_sym_BSLASHacs] = ACTIONS(6461), - [anon_sym_BSLASHAcs] = ACTIONS(6461), - [anon_sym_BSLASHacsp] = ACTIONS(6461), - [anon_sym_BSLASHAcsp] = ACTIONS(6461), - [anon_sym_BSLASHacl] = ACTIONS(6461), - [anon_sym_BSLASHAcl] = ACTIONS(6461), - [anon_sym_BSLASHaclp] = ACTIONS(6461), - [anon_sym_BSLASHAclp] = ACTIONS(6461), - [anon_sym_BSLASHacf] = ACTIONS(6461), - [anon_sym_BSLASHAcf] = ACTIONS(6461), - [anon_sym_BSLASHacfp] = ACTIONS(6461), - [anon_sym_BSLASHAcfp] = ACTIONS(6461), - [anon_sym_BSLASHac] = ACTIONS(6461), - [anon_sym_BSLASHAc] = ACTIONS(6461), - [anon_sym_BSLASHacp] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6461), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6461), - [anon_sym_BSLASHcolor] = ACTIONS(6461), - [anon_sym_BSLASHcolorbox] = ACTIONS(6461), - [anon_sym_BSLASHtextcolor] = ACTIONS(6461), - [anon_sym_BSLASHpagecolor] = ACTIONS(6461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6461), - [anon_sym_BSLASHtext] = ACTIONS(6461), - [anon_sym_BSLASHintertext] = ACTIONS(6461), - [anon_sym_shortintertext] = ACTIONS(6461), - }, - [1792] = { - [sym_command_name] = ACTIONS(6385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6385), - [anon_sym_LBRACK] = ACTIONS(6387), - [anon_sym_RBRACK] = ACTIONS(6387), - [anon_sym_COMMA] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_LPAREN] = ACTIONS(6387), - [anon_sym_RPAREN] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6387), - [sym_word] = ACTIONS(6385), - [sym_placeholder] = ACTIONS(6387), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6387), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_LT] = ACTIONS(6385), - [anon_sym_GT] = ACTIONS(6385), - [anon_sym_BANG] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_SQUOTE] = ACTIONS(6385), - [anon_sym__] = ACTIONS(6387), - [anon_sym_CARET] = ACTIONS(6387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6387), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6387), - [anon_sym_DOLLAR] = ACTIONS(6385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6387), - [anon_sym_BSLASHbegin] = ACTIONS(6385), - [anon_sym_BSLASHtitle] = ACTIONS(6385), - [anon_sym_BSLASHauthor] = ACTIONS(6385), - [anon_sym_BSLASHusepackage] = ACTIONS(6385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6385), - [anon_sym_BSLASHinclude] = ACTIONS(6385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6385), - [anon_sym_BSLASHinput] = ACTIONS(6385), - [anon_sym_BSLASHsubfile] = ACTIONS(6385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6385), - [anon_sym_BSLASHbibliography] = ACTIONS(6385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6385), - [anon_sym_BSLASHincludesvg] = ACTIONS(6385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6385), - [anon_sym_BSLASHimport] = ACTIONS(6385), - [anon_sym_BSLASHsubimport] = ACTIONS(6385), - [anon_sym_BSLASHinputfrom] = ACTIONS(6385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6385), - [anon_sym_BSLASHincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHcaption] = ACTIONS(6385), - [anon_sym_BSLASHcite] = ACTIONS(6385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCite] = ACTIONS(6385), - [anon_sym_BSLASHnocite] = ACTIONS(6385), - [anon_sym_BSLASHcitet] = ACTIONS(6385), - [anon_sym_BSLASHcitep] = ACTIONS(6385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteauthor] = ACTIONS(6385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitetitle] = ACTIONS(6385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteyear] = ACTIONS(6385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitedate] = ACTIONS(6385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteurl] = ACTIONS(6385), - [anon_sym_BSLASHfullcite] = ACTIONS(6385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6385), - [anon_sym_BSLASHcitealt] = ACTIONS(6385), - [anon_sym_BSLASHcitealp] = ACTIONS(6385), - [anon_sym_BSLASHcitetext] = ACTIONS(6385), - [anon_sym_BSLASHparencite] = ACTIONS(6385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHParencite] = ACTIONS(6385), - [anon_sym_BSLASHfootcite] = ACTIONS(6385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6385), - [anon_sym_BSLASHtextcite] = ACTIONS(6385), - [anon_sym_BSLASHTextcite] = ACTIONS(6385), - [anon_sym_BSLASHsmartcite] = ACTIONS(6385), - [anon_sym_BSLASHSmartcite] = ACTIONS(6385), - [anon_sym_BSLASHsupercite] = ACTIONS(6385), - [anon_sym_BSLASHautocite] = ACTIONS(6385), - [anon_sym_BSLASHAutocite] = ACTIONS(6385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHvolcite] = ACTIONS(6385), - [anon_sym_BSLASHVolcite] = ACTIONS(6385), - [anon_sym_BSLASHpvolcite] = ACTIONS(6385), - [anon_sym_BSLASHPvolcite] = ACTIONS(6385), - [anon_sym_BSLASHfvolcite] = ACTIONS(6385), - [anon_sym_BSLASHftvolcite] = ACTIONS(6385), - [anon_sym_BSLASHsvolcite] = ACTIONS(6385), - [anon_sym_BSLASHSvolcite] = ACTIONS(6385), - [anon_sym_BSLASHtvolcite] = ACTIONS(6385), - [anon_sym_BSLASHTvolcite] = ACTIONS(6385), - [anon_sym_BSLASHavolcite] = ACTIONS(6385), - [anon_sym_BSLASHAvolcite] = ACTIONS(6385), - [anon_sym_BSLASHnotecite] = ACTIONS(6385), - [anon_sym_BSLASHNotecite] = ACTIONS(6385), - [anon_sym_BSLASHpnotecite] = ACTIONS(6385), - [anon_sym_BSLASHPnotecite] = ACTIONS(6385), - [anon_sym_BSLASHfnotecite] = ACTIONS(6385), - [anon_sym_BSLASHlabel] = ACTIONS(6385), - [anon_sym_BSLASHref] = ACTIONS(6385), - [anon_sym_BSLASHeqref] = ACTIONS(6385), - [anon_sym_BSLASHvref] = ACTIONS(6385), - [anon_sym_BSLASHVref] = ACTIONS(6385), - [anon_sym_BSLASHautoref] = ACTIONS(6385), - [anon_sym_BSLASHpageref] = ACTIONS(6385), - [anon_sym_BSLASHcref] = ACTIONS(6385), - [anon_sym_BSLASHCref] = ACTIONS(6385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnameCref] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHlabelcref] = ACTIONS(6385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCrefrange] = ACTIONS(6385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnewlabel] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6387), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHdef] = ACTIONS(6385), - [anon_sym_BSLASHlet] = ACTIONS(6385), - [anon_sym_BSLASHleft] = ACTIONS(6385), - [anon_sym_BSLASHbig] = ACTIONS(6385), - [anon_sym_BSLASHBig] = ACTIONS(6385), - [anon_sym_BSLASHbigg] = ACTIONS(6385), - [anon_sym_BSLASHBigg] = ACTIONS(6385), - [anon_sym_BSLASHbigl] = ACTIONS(6385), - [anon_sym_BSLASHBigl] = ACTIONS(6385), - [anon_sym_BSLASHbiggl] = ACTIONS(6385), - [anon_sym_BSLASHBiggl] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6385), - [anon_sym_BSLASHgls] = ACTIONS(6385), - [anon_sym_BSLASHGls] = ACTIONS(6385), - [anon_sym_BSLASHGLS] = ACTIONS(6385), - [anon_sym_BSLASHglspl] = ACTIONS(6385), - [anon_sym_BSLASHGlspl] = ACTIONS(6385), - [anon_sym_BSLASHGLSpl] = ACTIONS(6385), - [anon_sym_BSLASHglsdisp] = ACTIONS(6385), - [anon_sym_BSLASHglslink] = ACTIONS(6385), - [anon_sym_BSLASHglstext] = ACTIONS(6385), - [anon_sym_BSLASHGlstext] = ACTIONS(6385), - [anon_sym_BSLASHGLStext] = ACTIONS(6385), - [anon_sym_BSLASHglsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6385), - [anon_sym_BSLASHglsplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSplural] = ACTIONS(6385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHglsname] = ACTIONS(6385), - [anon_sym_BSLASHGlsname] = ACTIONS(6385), - [anon_sym_BSLASHGLSname] = ACTIONS(6385), - [anon_sym_BSLASHglssymbol] = ACTIONS(6385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6385), - [anon_sym_BSLASHglsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6385), - [anon_sym_BSLASHglsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6385), - [anon_sym_BSLASHglsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6385), - [anon_sym_BSLASHglsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6385), - [anon_sym_BSLASHglsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6385), - [anon_sym_BSLASHnewacronym] = ACTIONS(6385), - [anon_sym_BSLASHacrshort] = ACTIONS(6385), - [anon_sym_BSLASHAcrshort] = ACTIONS(6385), - [anon_sym_BSLASHACRshort] = ACTIONS(6385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6385), - [anon_sym_BSLASHacrlong] = ACTIONS(6385), - [anon_sym_BSLASHAcrlong] = ACTIONS(6385), - [anon_sym_BSLASHACRlong] = ACTIONS(6385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6385), - [anon_sym_BSLASHacrfull] = ACTIONS(6385), - [anon_sym_BSLASHAcrfull] = ACTIONS(6385), - [anon_sym_BSLASHACRfull] = ACTIONS(6385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6385), - [anon_sym_BSLASHacs] = ACTIONS(6385), - [anon_sym_BSLASHAcs] = ACTIONS(6385), - [anon_sym_BSLASHacsp] = ACTIONS(6385), - [anon_sym_BSLASHAcsp] = ACTIONS(6385), - [anon_sym_BSLASHacl] = ACTIONS(6385), - [anon_sym_BSLASHAcl] = ACTIONS(6385), - [anon_sym_BSLASHaclp] = ACTIONS(6385), - [anon_sym_BSLASHAclp] = ACTIONS(6385), - [anon_sym_BSLASHacf] = ACTIONS(6385), - [anon_sym_BSLASHAcf] = ACTIONS(6385), - [anon_sym_BSLASHacfp] = ACTIONS(6385), - [anon_sym_BSLASHAcfp] = ACTIONS(6385), - [anon_sym_BSLASHac] = ACTIONS(6385), - [anon_sym_BSLASHAc] = ACTIONS(6385), - [anon_sym_BSLASHacp] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6385), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6385), - [anon_sym_BSLASHcolor] = ACTIONS(6385), - [anon_sym_BSLASHcolorbox] = ACTIONS(6385), - [anon_sym_BSLASHtextcolor] = ACTIONS(6385), - [anon_sym_BSLASHpagecolor] = ACTIONS(6385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6385), - [anon_sym_BSLASHtext] = ACTIONS(6385), - [anon_sym_BSLASHintertext] = ACTIONS(6385), - [anon_sym_shortintertext] = ACTIONS(6385), - }, - [1793] = { - [sym_command_name] = ACTIONS(6501), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6501), - [anon_sym_LBRACK] = ACTIONS(6503), - [anon_sym_RBRACK] = ACTIONS(6503), - [anon_sym_COMMA] = ACTIONS(6503), - [anon_sym_EQ] = ACTIONS(6503), - [anon_sym_LPAREN] = ACTIONS(6503), - [anon_sym_RPAREN] = ACTIONS(6503), - [anon_sym_LBRACE] = ACTIONS(6503), - [anon_sym_RBRACE] = ACTIONS(6503), - [sym_word] = ACTIONS(6501), - [sym_placeholder] = ACTIONS(6503), - [anon_sym_PLUS] = ACTIONS(6503), - [anon_sym_DASH] = ACTIONS(6503), - [anon_sym_STAR] = ACTIONS(6503), - [anon_sym_SLASH] = ACTIONS(6503), - [anon_sym_LT] = ACTIONS(6501), - [anon_sym_GT] = ACTIONS(6501), - [anon_sym_BANG] = ACTIONS(6501), - [anon_sym_PIPE] = ACTIONS(6501), - [anon_sym_COLON] = ACTIONS(6501), - [anon_sym_SQUOTE] = ACTIONS(6501), - [anon_sym__] = ACTIONS(6503), - [anon_sym_CARET] = ACTIONS(6503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6503), - [anon_sym_DOLLAR] = ACTIONS(6501), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6503), - [anon_sym_BSLASHtitle] = ACTIONS(6501), - [anon_sym_BSLASHauthor] = ACTIONS(6501), - [anon_sym_BSLASHusepackage] = ACTIONS(6501), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6501), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6501), - [anon_sym_BSLASHinclude] = ACTIONS(6501), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6501), - [anon_sym_BSLASHinput] = ACTIONS(6501), - [anon_sym_BSLASHsubfile] = ACTIONS(6501), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6501), - [anon_sym_BSLASHbibliography] = ACTIONS(6501), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6501), - [anon_sym_BSLASHincludesvg] = ACTIONS(6501), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6501), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6501), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6501), - [anon_sym_BSLASHimport] = ACTIONS(6501), - [anon_sym_BSLASHsubimport] = ACTIONS(6501), - [anon_sym_BSLASHinputfrom] = ACTIONS(6501), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6501), - [anon_sym_BSLASHincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHcaption] = ACTIONS(6501), - [anon_sym_BSLASHcite] = ACTIONS(6501), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCite] = ACTIONS(6501), - [anon_sym_BSLASHnocite] = ACTIONS(6501), - [anon_sym_BSLASHcitet] = ACTIONS(6501), - [anon_sym_BSLASHcitep] = ACTIONS(6501), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteauthor] = ACTIONS(6501), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6501), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitetitle] = ACTIONS(6501), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteyear] = ACTIONS(6501), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitedate] = ACTIONS(6501), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteurl] = ACTIONS(6501), - [anon_sym_BSLASHfullcite] = ACTIONS(6501), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6501), - [anon_sym_BSLASHcitealt] = ACTIONS(6501), - [anon_sym_BSLASHcitealp] = ACTIONS(6501), - [anon_sym_BSLASHcitetext] = ACTIONS(6501), - [anon_sym_BSLASHparencite] = ACTIONS(6501), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHParencite] = ACTIONS(6501), - [anon_sym_BSLASHfootcite] = ACTIONS(6501), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6501), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6501), - [anon_sym_BSLASHtextcite] = ACTIONS(6501), - [anon_sym_BSLASHTextcite] = ACTIONS(6501), - [anon_sym_BSLASHsmartcite] = ACTIONS(6501), - [anon_sym_BSLASHSmartcite] = ACTIONS(6501), - [anon_sym_BSLASHsupercite] = ACTIONS(6501), - [anon_sym_BSLASHautocite] = ACTIONS(6501), - [anon_sym_BSLASHAutocite] = ACTIONS(6501), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHvolcite] = ACTIONS(6501), - [anon_sym_BSLASHVolcite] = ACTIONS(6501), - [anon_sym_BSLASHpvolcite] = ACTIONS(6501), - [anon_sym_BSLASHPvolcite] = ACTIONS(6501), - [anon_sym_BSLASHfvolcite] = ACTIONS(6501), - [anon_sym_BSLASHftvolcite] = ACTIONS(6501), - [anon_sym_BSLASHsvolcite] = ACTIONS(6501), - [anon_sym_BSLASHSvolcite] = ACTIONS(6501), - [anon_sym_BSLASHtvolcite] = ACTIONS(6501), - [anon_sym_BSLASHTvolcite] = ACTIONS(6501), - [anon_sym_BSLASHavolcite] = ACTIONS(6501), - [anon_sym_BSLASHAvolcite] = ACTIONS(6501), - [anon_sym_BSLASHnotecite] = ACTIONS(6501), - [anon_sym_BSLASHNotecite] = ACTIONS(6501), - [anon_sym_BSLASHpnotecite] = ACTIONS(6501), - [anon_sym_BSLASHPnotecite] = ACTIONS(6501), - [anon_sym_BSLASHfnotecite] = ACTIONS(6501), - [anon_sym_BSLASHlabel] = ACTIONS(6501), - [anon_sym_BSLASHref] = ACTIONS(6501), - [anon_sym_BSLASHeqref] = ACTIONS(6501), - [anon_sym_BSLASHvref] = ACTIONS(6501), - [anon_sym_BSLASHVref] = ACTIONS(6501), - [anon_sym_BSLASHautoref] = ACTIONS(6501), - [anon_sym_BSLASHpageref] = ACTIONS(6501), - [anon_sym_BSLASHcref] = ACTIONS(6501), - [anon_sym_BSLASHCref] = ACTIONS(6501), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnameCref] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHlabelcref] = ACTIONS(6501), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCrefrange] = ACTIONS(6501), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnewlabel] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6501), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6501), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6503), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHdef] = ACTIONS(6501), - [anon_sym_BSLASHlet] = ACTIONS(6501), - [anon_sym_BSLASHleft] = ACTIONS(6501), - [anon_sym_BSLASHbig] = ACTIONS(6501), - [anon_sym_BSLASHBig] = ACTIONS(6501), - [anon_sym_BSLASHbigg] = ACTIONS(6501), - [anon_sym_BSLASHBigg] = ACTIONS(6501), - [anon_sym_BSLASHbigl] = ACTIONS(6501), - [anon_sym_BSLASHBigl] = ACTIONS(6501), - [anon_sym_BSLASHbiggl] = ACTIONS(6501), - [anon_sym_BSLASHBiggl] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6501), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6501), - [anon_sym_BSLASHgls] = ACTIONS(6501), - [anon_sym_BSLASHGls] = ACTIONS(6501), - [anon_sym_BSLASHGLS] = ACTIONS(6501), - [anon_sym_BSLASHglspl] = ACTIONS(6501), - [anon_sym_BSLASHGlspl] = ACTIONS(6501), - [anon_sym_BSLASHGLSpl] = ACTIONS(6501), - [anon_sym_BSLASHglsdisp] = ACTIONS(6501), - [anon_sym_BSLASHglslink] = ACTIONS(6501), - [anon_sym_BSLASHglstext] = ACTIONS(6501), - [anon_sym_BSLASHGlstext] = ACTIONS(6501), - [anon_sym_BSLASHGLStext] = ACTIONS(6501), - [anon_sym_BSLASHglsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6501), - [anon_sym_BSLASHglsplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSplural] = ACTIONS(6501), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHglsname] = ACTIONS(6501), - [anon_sym_BSLASHGlsname] = ACTIONS(6501), - [anon_sym_BSLASHGLSname] = ACTIONS(6501), - [anon_sym_BSLASHglssymbol] = ACTIONS(6501), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6501), - [anon_sym_BSLASHglsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6501), - [anon_sym_BSLASHglsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6501), - [anon_sym_BSLASHglsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6501), - [anon_sym_BSLASHglsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6501), - [anon_sym_BSLASHglsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6501), - [anon_sym_BSLASHnewacronym] = ACTIONS(6501), - [anon_sym_BSLASHacrshort] = ACTIONS(6501), - [anon_sym_BSLASHAcrshort] = ACTIONS(6501), - [anon_sym_BSLASHACRshort] = ACTIONS(6501), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6501), - [anon_sym_BSLASHacrlong] = ACTIONS(6501), - [anon_sym_BSLASHAcrlong] = ACTIONS(6501), - [anon_sym_BSLASHACRlong] = ACTIONS(6501), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6501), - [anon_sym_BSLASHacrfull] = ACTIONS(6501), - [anon_sym_BSLASHAcrfull] = ACTIONS(6501), - [anon_sym_BSLASHACRfull] = ACTIONS(6501), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6501), - [anon_sym_BSLASHacs] = ACTIONS(6501), - [anon_sym_BSLASHAcs] = ACTIONS(6501), - [anon_sym_BSLASHacsp] = ACTIONS(6501), - [anon_sym_BSLASHAcsp] = ACTIONS(6501), - [anon_sym_BSLASHacl] = ACTIONS(6501), - [anon_sym_BSLASHAcl] = ACTIONS(6501), - [anon_sym_BSLASHaclp] = ACTIONS(6501), - [anon_sym_BSLASHAclp] = ACTIONS(6501), - [anon_sym_BSLASHacf] = ACTIONS(6501), - [anon_sym_BSLASHAcf] = ACTIONS(6501), - [anon_sym_BSLASHacfp] = ACTIONS(6501), - [anon_sym_BSLASHAcfp] = ACTIONS(6501), - [anon_sym_BSLASHac] = ACTIONS(6501), - [anon_sym_BSLASHAc] = ACTIONS(6501), - [anon_sym_BSLASHacp] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6501), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6501), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6501), - [anon_sym_BSLASHcolor] = ACTIONS(6501), - [anon_sym_BSLASHcolorbox] = ACTIONS(6501), - [anon_sym_BSLASHtextcolor] = ACTIONS(6501), - [anon_sym_BSLASHpagecolor] = ACTIONS(6501), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6501), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6501), - [anon_sym_BSLASHtext] = ACTIONS(6501), - [anon_sym_BSLASHintertext] = ACTIONS(6501), - [anon_sym_shortintertext] = ACTIONS(6501), - }, - [1794] = { - [sym_command_name] = ACTIONS(6497), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6497), - [anon_sym_LBRACK] = ACTIONS(6499), - [anon_sym_RBRACK] = ACTIONS(6499), - [anon_sym_COMMA] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(6499), - [anon_sym_LPAREN] = ACTIONS(6499), - [anon_sym_RPAREN] = ACTIONS(6499), - [anon_sym_LBRACE] = ACTIONS(6499), - [anon_sym_RBRACE] = ACTIONS(6499), - [sym_word] = ACTIONS(6497), - [sym_placeholder] = ACTIONS(6499), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_STAR] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6499), - [anon_sym_LT] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6497), - [anon_sym_BANG] = ACTIONS(6497), - [anon_sym_PIPE] = ACTIONS(6497), - [anon_sym_COLON] = ACTIONS(6497), - [anon_sym_SQUOTE] = ACTIONS(6497), - [anon_sym__] = ACTIONS(6499), - [anon_sym_CARET] = ACTIONS(6499), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6499), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6499), - [anon_sym_DOLLAR] = ACTIONS(6497), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6499), - [anon_sym_BSLASHtitle] = ACTIONS(6497), - [anon_sym_BSLASHauthor] = ACTIONS(6497), - [anon_sym_BSLASHusepackage] = ACTIONS(6497), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6497), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6497), - [anon_sym_BSLASHinclude] = ACTIONS(6497), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6497), - [anon_sym_BSLASHinput] = ACTIONS(6497), - [anon_sym_BSLASHsubfile] = ACTIONS(6497), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6497), - [anon_sym_BSLASHbibliography] = ACTIONS(6497), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6497), - [anon_sym_BSLASHincludesvg] = ACTIONS(6497), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6497), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6497), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6497), - [anon_sym_BSLASHimport] = ACTIONS(6497), - [anon_sym_BSLASHsubimport] = ACTIONS(6497), - [anon_sym_BSLASHinputfrom] = ACTIONS(6497), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6497), - [anon_sym_BSLASHincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHcaption] = ACTIONS(6497), - [anon_sym_BSLASHcite] = ACTIONS(6497), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCite] = ACTIONS(6497), - [anon_sym_BSLASHnocite] = ACTIONS(6497), - [anon_sym_BSLASHcitet] = ACTIONS(6497), - [anon_sym_BSLASHcitep] = ACTIONS(6497), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteauthor] = ACTIONS(6497), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6497), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitetitle] = ACTIONS(6497), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteyear] = ACTIONS(6497), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitedate] = ACTIONS(6497), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteurl] = ACTIONS(6497), - [anon_sym_BSLASHfullcite] = ACTIONS(6497), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6497), - [anon_sym_BSLASHcitealt] = ACTIONS(6497), - [anon_sym_BSLASHcitealp] = ACTIONS(6497), - [anon_sym_BSLASHcitetext] = ACTIONS(6497), - [anon_sym_BSLASHparencite] = ACTIONS(6497), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHParencite] = ACTIONS(6497), - [anon_sym_BSLASHfootcite] = ACTIONS(6497), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6497), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6497), - [anon_sym_BSLASHtextcite] = ACTIONS(6497), - [anon_sym_BSLASHTextcite] = ACTIONS(6497), - [anon_sym_BSLASHsmartcite] = ACTIONS(6497), - [anon_sym_BSLASHSmartcite] = ACTIONS(6497), - [anon_sym_BSLASHsupercite] = ACTIONS(6497), - [anon_sym_BSLASHautocite] = ACTIONS(6497), - [anon_sym_BSLASHAutocite] = ACTIONS(6497), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHvolcite] = ACTIONS(6497), - [anon_sym_BSLASHVolcite] = ACTIONS(6497), - [anon_sym_BSLASHpvolcite] = ACTIONS(6497), - [anon_sym_BSLASHPvolcite] = ACTIONS(6497), - [anon_sym_BSLASHfvolcite] = ACTIONS(6497), - [anon_sym_BSLASHftvolcite] = ACTIONS(6497), - [anon_sym_BSLASHsvolcite] = ACTIONS(6497), - [anon_sym_BSLASHSvolcite] = ACTIONS(6497), - [anon_sym_BSLASHtvolcite] = ACTIONS(6497), - [anon_sym_BSLASHTvolcite] = ACTIONS(6497), - [anon_sym_BSLASHavolcite] = ACTIONS(6497), - [anon_sym_BSLASHAvolcite] = ACTIONS(6497), - [anon_sym_BSLASHnotecite] = ACTIONS(6497), - [anon_sym_BSLASHNotecite] = ACTIONS(6497), - [anon_sym_BSLASHpnotecite] = ACTIONS(6497), - [anon_sym_BSLASHPnotecite] = ACTIONS(6497), - [anon_sym_BSLASHfnotecite] = ACTIONS(6497), - [anon_sym_BSLASHlabel] = ACTIONS(6497), - [anon_sym_BSLASHref] = ACTIONS(6497), - [anon_sym_BSLASHeqref] = ACTIONS(6497), - [anon_sym_BSLASHvref] = ACTIONS(6497), - [anon_sym_BSLASHVref] = ACTIONS(6497), - [anon_sym_BSLASHautoref] = ACTIONS(6497), - [anon_sym_BSLASHpageref] = ACTIONS(6497), - [anon_sym_BSLASHcref] = ACTIONS(6497), - [anon_sym_BSLASHCref] = ACTIONS(6497), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnameCref] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHlabelcref] = ACTIONS(6497), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCrefrange] = ACTIONS(6497), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnewlabel] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6497), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6497), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6499), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHdef] = ACTIONS(6497), - [anon_sym_BSLASHlet] = ACTIONS(6497), - [anon_sym_BSLASHleft] = ACTIONS(6497), - [anon_sym_BSLASHbig] = ACTIONS(6497), - [anon_sym_BSLASHBig] = ACTIONS(6497), - [anon_sym_BSLASHbigg] = ACTIONS(6497), - [anon_sym_BSLASHBigg] = ACTIONS(6497), - [anon_sym_BSLASHbigl] = ACTIONS(6497), - [anon_sym_BSLASHBigl] = ACTIONS(6497), - [anon_sym_BSLASHbiggl] = ACTIONS(6497), - [anon_sym_BSLASHBiggl] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6497), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6497), - [anon_sym_BSLASHgls] = ACTIONS(6497), - [anon_sym_BSLASHGls] = ACTIONS(6497), - [anon_sym_BSLASHGLS] = ACTIONS(6497), - [anon_sym_BSLASHglspl] = ACTIONS(6497), - [anon_sym_BSLASHGlspl] = ACTIONS(6497), - [anon_sym_BSLASHGLSpl] = ACTIONS(6497), - [anon_sym_BSLASHglsdisp] = ACTIONS(6497), - [anon_sym_BSLASHglslink] = ACTIONS(6497), - [anon_sym_BSLASHglstext] = ACTIONS(6497), - [anon_sym_BSLASHGlstext] = ACTIONS(6497), - [anon_sym_BSLASHGLStext] = ACTIONS(6497), - [anon_sym_BSLASHglsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6497), - [anon_sym_BSLASHglsplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSplural] = ACTIONS(6497), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHglsname] = ACTIONS(6497), - [anon_sym_BSLASHGlsname] = ACTIONS(6497), - [anon_sym_BSLASHGLSname] = ACTIONS(6497), - [anon_sym_BSLASHglssymbol] = ACTIONS(6497), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6497), - [anon_sym_BSLASHglsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6497), - [anon_sym_BSLASHglsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6497), - [anon_sym_BSLASHglsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6497), - [anon_sym_BSLASHglsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6497), - [anon_sym_BSLASHglsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6497), - [anon_sym_BSLASHnewacronym] = ACTIONS(6497), - [anon_sym_BSLASHacrshort] = ACTIONS(6497), - [anon_sym_BSLASHAcrshort] = ACTIONS(6497), - [anon_sym_BSLASHACRshort] = ACTIONS(6497), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6497), - [anon_sym_BSLASHacrlong] = ACTIONS(6497), - [anon_sym_BSLASHAcrlong] = ACTIONS(6497), - [anon_sym_BSLASHACRlong] = ACTIONS(6497), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6497), - [anon_sym_BSLASHacrfull] = ACTIONS(6497), - [anon_sym_BSLASHAcrfull] = ACTIONS(6497), - [anon_sym_BSLASHACRfull] = ACTIONS(6497), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6497), - [anon_sym_BSLASHacs] = ACTIONS(6497), - [anon_sym_BSLASHAcs] = ACTIONS(6497), - [anon_sym_BSLASHacsp] = ACTIONS(6497), - [anon_sym_BSLASHAcsp] = ACTIONS(6497), - [anon_sym_BSLASHacl] = ACTIONS(6497), - [anon_sym_BSLASHAcl] = ACTIONS(6497), - [anon_sym_BSLASHaclp] = ACTIONS(6497), - [anon_sym_BSLASHAclp] = ACTIONS(6497), - [anon_sym_BSLASHacf] = ACTIONS(6497), - [anon_sym_BSLASHAcf] = ACTIONS(6497), - [anon_sym_BSLASHacfp] = ACTIONS(6497), - [anon_sym_BSLASHAcfp] = ACTIONS(6497), - [anon_sym_BSLASHac] = ACTIONS(6497), - [anon_sym_BSLASHAc] = ACTIONS(6497), - [anon_sym_BSLASHacp] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6497), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6497), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6497), - [anon_sym_BSLASHcolor] = ACTIONS(6497), - [anon_sym_BSLASHcolorbox] = ACTIONS(6497), - [anon_sym_BSLASHtextcolor] = ACTIONS(6497), - [anon_sym_BSLASHpagecolor] = ACTIONS(6497), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6497), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6497), - [anon_sym_BSLASHtext] = ACTIONS(6497), - [anon_sym_BSLASHintertext] = ACTIONS(6497), - [anon_sym_shortintertext] = ACTIONS(6497), - }, - [1795] = { - [sym_command_name] = ACTIONS(6493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6495), - [anon_sym_RBRACK] = ACTIONS(6495), - [anon_sym_COMMA] = ACTIONS(6495), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_LPAREN] = ACTIONS(6495), - [anon_sym_RPAREN] = ACTIONS(6495), - [anon_sym_LBRACE] = ACTIONS(6495), - [anon_sym_RBRACE] = ACTIONS(6495), - [sym_word] = ACTIONS(6493), - [sym_placeholder] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6495), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6493), - [anon_sym_GT] = ACTIONS(6493), - [anon_sym_BANG] = ACTIONS(6493), - [anon_sym_PIPE] = ACTIONS(6493), - [anon_sym_COLON] = ACTIONS(6493), - [anon_sym_SQUOTE] = ACTIONS(6493), - [anon_sym__] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6495), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6495), - [anon_sym_DOLLAR] = ACTIONS(6493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6495), - [anon_sym_BSLASHtitle] = ACTIONS(6493), - [anon_sym_BSLASHauthor] = ACTIONS(6493), - [anon_sym_BSLASHusepackage] = ACTIONS(6493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6493), - [anon_sym_BSLASHinclude] = ACTIONS(6493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6493), - [anon_sym_BSLASHinput] = ACTIONS(6493), - [anon_sym_BSLASHsubfile] = ACTIONS(6493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6493), - [anon_sym_BSLASHbibliography] = ACTIONS(6493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6493), - [anon_sym_BSLASHincludesvg] = ACTIONS(6493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6493), - [anon_sym_BSLASHimport] = ACTIONS(6493), - [anon_sym_BSLASHsubimport] = ACTIONS(6493), - [anon_sym_BSLASHinputfrom] = ACTIONS(6493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6493), - [anon_sym_BSLASHincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHcaption] = ACTIONS(6493), - [anon_sym_BSLASHcite] = ACTIONS(6493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCite] = ACTIONS(6493), - [anon_sym_BSLASHnocite] = ACTIONS(6493), - [anon_sym_BSLASHcitet] = ACTIONS(6493), - [anon_sym_BSLASHcitep] = ACTIONS(6493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteauthor] = ACTIONS(6493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitetitle] = ACTIONS(6493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteyear] = ACTIONS(6493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitedate] = ACTIONS(6493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteurl] = ACTIONS(6493), - [anon_sym_BSLASHfullcite] = ACTIONS(6493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6493), - [anon_sym_BSLASHcitealt] = ACTIONS(6493), - [anon_sym_BSLASHcitealp] = ACTIONS(6493), - [anon_sym_BSLASHcitetext] = ACTIONS(6493), - [anon_sym_BSLASHparencite] = ACTIONS(6493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHParencite] = ACTIONS(6493), - [anon_sym_BSLASHfootcite] = ACTIONS(6493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6493), - [anon_sym_BSLASHtextcite] = ACTIONS(6493), - [anon_sym_BSLASHTextcite] = ACTIONS(6493), - [anon_sym_BSLASHsmartcite] = ACTIONS(6493), - [anon_sym_BSLASHSmartcite] = ACTIONS(6493), - [anon_sym_BSLASHsupercite] = ACTIONS(6493), - [anon_sym_BSLASHautocite] = ACTIONS(6493), - [anon_sym_BSLASHAutocite] = ACTIONS(6493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHvolcite] = ACTIONS(6493), - [anon_sym_BSLASHVolcite] = ACTIONS(6493), - [anon_sym_BSLASHpvolcite] = ACTIONS(6493), - [anon_sym_BSLASHPvolcite] = ACTIONS(6493), - [anon_sym_BSLASHfvolcite] = ACTIONS(6493), - [anon_sym_BSLASHftvolcite] = ACTIONS(6493), - [anon_sym_BSLASHsvolcite] = ACTIONS(6493), - [anon_sym_BSLASHSvolcite] = ACTIONS(6493), - [anon_sym_BSLASHtvolcite] = ACTIONS(6493), - [anon_sym_BSLASHTvolcite] = ACTIONS(6493), - [anon_sym_BSLASHavolcite] = ACTIONS(6493), - [anon_sym_BSLASHAvolcite] = ACTIONS(6493), - [anon_sym_BSLASHnotecite] = ACTIONS(6493), - [anon_sym_BSLASHNotecite] = ACTIONS(6493), - [anon_sym_BSLASHpnotecite] = ACTIONS(6493), - [anon_sym_BSLASHPnotecite] = ACTIONS(6493), - [anon_sym_BSLASHfnotecite] = ACTIONS(6493), - [anon_sym_BSLASHlabel] = ACTIONS(6493), - [anon_sym_BSLASHref] = ACTIONS(6493), - [anon_sym_BSLASHeqref] = ACTIONS(6493), - [anon_sym_BSLASHvref] = ACTIONS(6493), - [anon_sym_BSLASHVref] = ACTIONS(6493), - [anon_sym_BSLASHautoref] = ACTIONS(6493), - [anon_sym_BSLASHpageref] = ACTIONS(6493), - [anon_sym_BSLASHcref] = ACTIONS(6493), - [anon_sym_BSLASHCref] = ACTIONS(6493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnameCref] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHlabelcref] = ACTIONS(6493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCrefrange] = ACTIONS(6493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnewlabel] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6495), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHdef] = ACTIONS(6493), - [anon_sym_BSLASHlet] = ACTIONS(6493), - [anon_sym_BSLASHleft] = ACTIONS(6493), - [anon_sym_BSLASHbig] = ACTIONS(6493), - [anon_sym_BSLASHBig] = ACTIONS(6493), - [anon_sym_BSLASHbigg] = ACTIONS(6493), - [anon_sym_BSLASHBigg] = ACTIONS(6493), - [anon_sym_BSLASHbigl] = ACTIONS(6493), - [anon_sym_BSLASHBigl] = ACTIONS(6493), - [anon_sym_BSLASHbiggl] = ACTIONS(6493), - [anon_sym_BSLASHBiggl] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6493), - [anon_sym_BSLASHgls] = ACTIONS(6493), - [anon_sym_BSLASHGls] = ACTIONS(6493), - [anon_sym_BSLASHGLS] = ACTIONS(6493), - [anon_sym_BSLASHglspl] = ACTIONS(6493), - [anon_sym_BSLASHGlspl] = ACTIONS(6493), - [anon_sym_BSLASHGLSpl] = ACTIONS(6493), - [anon_sym_BSLASHglsdisp] = ACTIONS(6493), - [anon_sym_BSLASHglslink] = ACTIONS(6493), - [anon_sym_BSLASHglstext] = ACTIONS(6493), - [anon_sym_BSLASHGlstext] = ACTIONS(6493), - [anon_sym_BSLASHGLStext] = ACTIONS(6493), - [anon_sym_BSLASHglsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6493), - [anon_sym_BSLASHglsplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSplural] = ACTIONS(6493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHglsname] = ACTIONS(6493), - [anon_sym_BSLASHGlsname] = ACTIONS(6493), - [anon_sym_BSLASHGLSname] = ACTIONS(6493), - [anon_sym_BSLASHglssymbol] = ACTIONS(6493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6493), - [anon_sym_BSLASHglsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6493), - [anon_sym_BSLASHglsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6493), - [anon_sym_BSLASHglsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6493), - [anon_sym_BSLASHglsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6493), - [anon_sym_BSLASHglsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6493), - [anon_sym_BSLASHnewacronym] = ACTIONS(6493), - [anon_sym_BSLASHacrshort] = ACTIONS(6493), - [anon_sym_BSLASHAcrshort] = ACTIONS(6493), - [anon_sym_BSLASHACRshort] = ACTIONS(6493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6493), - [anon_sym_BSLASHacrlong] = ACTIONS(6493), - [anon_sym_BSLASHAcrlong] = ACTIONS(6493), - [anon_sym_BSLASHACRlong] = ACTIONS(6493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6493), - [anon_sym_BSLASHacrfull] = ACTIONS(6493), - [anon_sym_BSLASHAcrfull] = ACTIONS(6493), - [anon_sym_BSLASHACRfull] = ACTIONS(6493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6493), - [anon_sym_BSLASHacs] = ACTIONS(6493), - [anon_sym_BSLASHAcs] = ACTIONS(6493), - [anon_sym_BSLASHacsp] = ACTIONS(6493), - [anon_sym_BSLASHAcsp] = ACTIONS(6493), - [anon_sym_BSLASHacl] = ACTIONS(6493), - [anon_sym_BSLASHAcl] = ACTIONS(6493), - [anon_sym_BSLASHaclp] = ACTIONS(6493), - [anon_sym_BSLASHAclp] = ACTIONS(6493), - [anon_sym_BSLASHacf] = ACTIONS(6493), - [anon_sym_BSLASHAcf] = ACTIONS(6493), - [anon_sym_BSLASHacfp] = ACTIONS(6493), - [anon_sym_BSLASHAcfp] = ACTIONS(6493), - [anon_sym_BSLASHac] = ACTIONS(6493), - [anon_sym_BSLASHAc] = ACTIONS(6493), - [anon_sym_BSLASHacp] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6493), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6493), - [anon_sym_BSLASHcolor] = ACTIONS(6493), - [anon_sym_BSLASHcolorbox] = ACTIONS(6493), - [anon_sym_BSLASHtextcolor] = ACTIONS(6493), - [anon_sym_BSLASHpagecolor] = ACTIONS(6493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6493), - [anon_sym_BSLASHtext] = ACTIONS(6493), - [anon_sym_BSLASHintertext] = ACTIONS(6493), - [anon_sym_shortintertext] = ACTIONS(6493), - }, - [1796] = { - [sym_command_name] = ACTIONS(6353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6353), - [anon_sym_LBRACK] = ACTIONS(6355), - [anon_sym_RBRACK] = ACTIONS(6355), - [anon_sym_COMMA] = ACTIONS(6355), - [anon_sym_EQ] = ACTIONS(6355), - [anon_sym_LPAREN] = ACTIONS(6355), - [anon_sym_RPAREN] = ACTIONS(6355), - [anon_sym_LBRACE] = ACTIONS(6355), - [sym_word] = ACTIONS(6353), - [sym_placeholder] = ACTIONS(6355), - [anon_sym_PLUS] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [anon_sym_STAR] = ACTIONS(6355), - [anon_sym_SLASH] = ACTIONS(6355), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_COLON] = ACTIONS(6353), - [anon_sym_SQUOTE] = ACTIONS(6353), - [anon_sym__] = ACTIONS(6355), - [anon_sym_CARET] = ACTIONS(6355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6355), - [anon_sym_DOLLAR] = ACTIONS(6353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6355), - [anon_sym_BSLASHbegin] = ACTIONS(6353), - [anon_sym_BSLASHtitle] = ACTIONS(6353), - [anon_sym_BSLASHauthor] = ACTIONS(6353), - [anon_sym_BSLASHusepackage] = ACTIONS(6353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6353), - [anon_sym_BSLASHinclude] = ACTIONS(6353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6353), - [anon_sym_BSLASHinput] = ACTIONS(6353), - [anon_sym_BSLASHsubfile] = ACTIONS(6353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6353), - [anon_sym_BSLASHbibliography] = ACTIONS(6353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6353), - [anon_sym_BSLASHincludesvg] = ACTIONS(6353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6353), - [anon_sym_BSLASHimport] = ACTIONS(6353), - [anon_sym_BSLASHsubimport] = ACTIONS(6353), - [anon_sym_BSLASHinputfrom] = ACTIONS(6353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6353), - [anon_sym_BSLASHincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHcaption] = ACTIONS(6353), - [anon_sym_BSLASHcite] = ACTIONS(6353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCite] = ACTIONS(6353), - [anon_sym_BSLASHnocite] = ACTIONS(6353), - [anon_sym_BSLASHcitet] = ACTIONS(6353), - [anon_sym_BSLASHcitep] = ACTIONS(6353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteauthor] = ACTIONS(6353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitetitle] = ACTIONS(6353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteyear] = ACTIONS(6353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitedate] = ACTIONS(6353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteurl] = ACTIONS(6353), - [anon_sym_BSLASHfullcite] = ACTIONS(6353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6353), - [anon_sym_BSLASHcitealt] = ACTIONS(6353), - [anon_sym_BSLASHcitealp] = ACTIONS(6353), - [anon_sym_BSLASHcitetext] = ACTIONS(6353), - [anon_sym_BSLASHparencite] = ACTIONS(6353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHParencite] = ACTIONS(6353), - [anon_sym_BSLASHfootcite] = ACTIONS(6353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6353), - [anon_sym_BSLASHtextcite] = ACTIONS(6353), - [anon_sym_BSLASHTextcite] = ACTIONS(6353), - [anon_sym_BSLASHsmartcite] = ACTIONS(6353), - [anon_sym_BSLASHSmartcite] = ACTIONS(6353), - [anon_sym_BSLASHsupercite] = ACTIONS(6353), - [anon_sym_BSLASHautocite] = ACTIONS(6353), - [anon_sym_BSLASHAutocite] = ACTIONS(6353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHvolcite] = ACTIONS(6353), - [anon_sym_BSLASHVolcite] = ACTIONS(6353), - [anon_sym_BSLASHpvolcite] = ACTIONS(6353), - [anon_sym_BSLASHPvolcite] = ACTIONS(6353), - [anon_sym_BSLASHfvolcite] = ACTIONS(6353), - [anon_sym_BSLASHftvolcite] = ACTIONS(6353), - [anon_sym_BSLASHsvolcite] = ACTIONS(6353), - [anon_sym_BSLASHSvolcite] = ACTIONS(6353), - [anon_sym_BSLASHtvolcite] = ACTIONS(6353), - [anon_sym_BSLASHTvolcite] = ACTIONS(6353), - [anon_sym_BSLASHavolcite] = ACTIONS(6353), - [anon_sym_BSLASHAvolcite] = ACTIONS(6353), - [anon_sym_BSLASHnotecite] = ACTIONS(6353), - [anon_sym_BSLASHNotecite] = ACTIONS(6353), - [anon_sym_BSLASHpnotecite] = ACTIONS(6353), - [anon_sym_BSLASHPnotecite] = ACTIONS(6353), - [anon_sym_BSLASHfnotecite] = ACTIONS(6353), - [anon_sym_BSLASHlabel] = ACTIONS(6353), - [anon_sym_BSLASHref] = ACTIONS(6353), - [anon_sym_BSLASHeqref] = ACTIONS(6353), - [anon_sym_BSLASHvref] = ACTIONS(6353), - [anon_sym_BSLASHVref] = ACTIONS(6353), - [anon_sym_BSLASHautoref] = ACTIONS(6353), - [anon_sym_BSLASHpageref] = ACTIONS(6353), - [anon_sym_BSLASHcref] = ACTIONS(6353), - [anon_sym_BSLASHCref] = ACTIONS(6353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnameCref] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHlabelcref] = ACTIONS(6353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCrefrange] = ACTIONS(6353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnewlabel] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6355), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHdef] = ACTIONS(6353), - [anon_sym_BSLASHlet] = ACTIONS(6353), - [anon_sym_BSLASHleft] = ACTIONS(6353), - [anon_sym_BSLASHbig] = ACTIONS(6353), - [anon_sym_BSLASHBig] = ACTIONS(6353), - [anon_sym_BSLASHbigg] = ACTIONS(6353), - [anon_sym_BSLASHBigg] = ACTIONS(6353), - [anon_sym_BSLASHbigl] = ACTIONS(6353), - [anon_sym_BSLASHBigl] = ACTIONS(6353), - [anon_sym_BSLASHbiggl] = ACTIONS(6353), - [anon_sym_BSLASHBiggl] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6353), - [anon_sym_BSLASHgls] = ACTIONS(6353), - [anon_sym_BSLASHGls] = ACTIONS(6353), - [anon_sym_BSLASHGLS] = ACTIONS(6353), - [anon_sym_BSLASHglspl] = ACTIONS(6353), - [anon_sym_BSLASHGlspl] = ACTIONS(6353), - [anon_sym_BSLASHGLSpl] = ACTIONS(6353), - [anon_sym_BSLASHglsdisp] = ACTIONS(6353), - [anon_sym_BSLASHglslink] = ACTIONS(6353), - [anon_sym_BSLASHglstext] = ACTIONS(6353), - [anon_sym_BSLASHGlstext] = ACTIONS(6353), - [anon_sym_BSLASHGLStext] = ACTIONS(6353), - [anon_sym_BSLASHglsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6353), - [anon_sym_BSLASHglsplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSplural] = ACTIONS(6353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHglsname] = ACTIONS(6353), - [anon_sym_BSLASHGlsname] = ACTIONS(6353), - [anon_sym_BSLASHGLSname] = ACTIONS(6353), - [anon_sym_BSLASHglssymbol] = ACTIONS(6353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6353), - [anon_sym_BSLASHglsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6353), - [anon_sym_BSLASHglsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6353), - [anon_sym_BSLASHglsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6353), - [anon_sym_BSLASHglsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6353), - [anon_sym_BSLASHglsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6353), - [anon_sym_BSLASHnewacronym] = ACTIONS(6353), - [anon_sym_BSLASHacrshort] = ACTIONS(6353), - [anon_sym_BSLASHAcrshort] = ACTIONS(6353), - [anon_sym_BSLASHACRshort] = ACTIONS(6353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6353), - [anon_sym_BSLASHacrlong] = ACTIONS(6353), - [anon_sym_BSLASHAcrlong] = ACTIONS(6353), - [anon_sym_BSLASHACRlong] = ACTIONS(6353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6353), - [anon_sym_BSLASHacrfull] = ACTIONS(6353), - [anon_sym_BSLASHAcrfull] = ACTIONS(6353), - [anon_sym_BSLASHACRfull] = ACTIONS(6353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6353), - [anon_sym_BSLASHacs] = ACTIONS(6353), - [anon_sym_BSLASHAcs] = ACTIONS(6353), - [anon_sym_BSLASHacsp] = ACTIONS(6353), - [anon_sym_BSLASHAcsp] = ACTIONS(6353), - [anon_sym_BSLASHacl] = ACTIONS(6353), - [anon_sym_BSLASHAcl] = ACTIONS(6353), - [anon_sym_BSLASHaclp] = ACTIONS(6353), - [anon_sym_BSLASHAclp] = ACTIONS(6353), - [anon_sym_BSLASHacf] = ACTIONS(6353), - [anon_sym_BSLASHAcf] = ACTIONS(6353), - [anon_sym_BSLASHacfp] = ACTIONS(6353), - [anon_sym_BSLASHAcfp] = ACTIONS(6353), - [anon_sym_BSLASHac] = ACTIONS(6353), - [anon_sym_BSLASHAc] = ACTIONS(6353), - [anon_sym_BSLASHacp] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6353), - [anon_sym_BSLASHcolor] = ACTIONS(6353), - [anon_sym_BSLASHcolorbox] = ACTIONS(6353), - [anon_sym_BSLASHtextcolor] = ACTIONS(6353), - [anon_sym_BSLASHpagecolor] = ACTIONS(6353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6353), - [anon_sym_BSLASHtext] = ACTIONS(6353), - [anon_sym_BSLASHintertext] = ACTIONS(6353), - [anon_sym_shortintertext] = ACTIONS(6353), - }, - [1797] = { - [sym_command_name] = ACTIONS(6489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6489), - [anon_sym_LBRACK] = ACTIONS(6491), - [anon_sym_RBRACK] = ACTIONS(6491), - [anon_sym_COMMA] = ACTIONS(6491), - [anon_sym_EQ] = ACTIONS(6491), - [anon_sym_LPAREN] = ACTIONS(6491), - [anon_sym_RPAREN] = ACTIONS(6491), - [anon_sym_LBRACE] = ACTIONS(6491), - [anon_sym_RBRACE] = ACTIONS(6491), - [sym_word] = ACTIONS(6489), - [sym_placeholder] = ACTIONS(6491), - [anon_sym_PLUS] = ACTIONS(6491), - [anon_sym_DASH] = ACTIONS(6491), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_LT] = ACTIONS(6489), - [anon_sym_GT] = ACTIONS(6489), - [anon_sym_BANG] = ACTIONS(6489), - [anon_sym_PIPE] = ACTIONS(6489), - [anon_sym_COLON] = ACTIONS(6489), - [anon_sym_SQUOTE] = ACTIONS(6489), - [anon_sym__] = ACTIONS(6491), - [anon_sym_CARET] = ACTIONS(6491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6491), - [anon_sym_DOLLAR] = ACTIONS(6489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6491), - [anon_sym_BSLASHtitle] = ACTIONS(6489), - [anon_sym_BSLASHauthor] = ACTIONS(6489), - [anon_sym_BSLASHusepackage] = ACTIONS(6489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6489), - [anon_sym_BSLASHinclude] = ACTIONS(6489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6489), - [anon_sym_BSLASHinput] = ACTIONS(6489), - [anon_sym_BSLASHsubfile] = ACTIONS(6489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6489), - [anon_sym_BSLASHbibliography] = ACTIONS(6489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6489), - [anon_sym_BSLASHincludesvg] = ACTIONS(6489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6489), - [anon_sym_BSLASHimport] = ACTIONS(6489), - [anon_sym_BSLASHsubimport] = ACTIONS(6489), - [anon_sym_BSLASHinputfrom] = ACTIONS(6489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6489), - [anon_sym_BSLASHincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHcaption] = ACTIONS(6489), - [anon_sym_BSLASHcite] = ACTIONS(6489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCite] = ACTIONS(6489), - [anon_sym_BSLASHnocite] = ACTIONS(6489), - [anon_sym_BSLASHcitet] = ACTIONS(6489), - [anon_sym_BSLASHcitep] = ACTIONS(6489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteauthor] = ACTIONS(6489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitetitle] = ACTIONS(6489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteyear] = ACTIONS(6489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitedate] = ACTIONS(6489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteurl] = ACTIONS(6489), - [anon_sym_BSLASHfullcite] = ACTIONS(6489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6489), - [anon_sym_BSLASHcitealt] = ACTIONS(6489), - [anon_sym_BSLASHcitealp] = ACTIONS(6489), - [anon_sym_BSLASHcitetext] = ACTIONS(6489), - [anon_sym_BSLASHparencite] = ACTIONS(6489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHParencite] = ACTIONS(6489), - [anon_sym_BSLASHfootcite] = ACTIONS(6489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6489), - [anon_sym_BSLASHtextcite] = ACTIONS(6489), - [anon_sym_BSLASHTextcite] = ACTIONS(6489), - [anon_sym_BSLASHsmartcite] = ACTIONS(6489), - [anon_sym_BSLASHSmartcite] = ACTIONS(6489), - [anon_sym_BSLASHsupercite] = ACTIONS(6489), - [anon_sym_BSLASHautocite] = ACTIONS(6489), - [anon_sym_BSLASHAutocite] = ACTIONS(6489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHvolcite] = ACTIONS(6489), - [anon_sym_BSLASHVolcite] = ACTIONS(6489), - [anon_sym_BSLASHpvolcite] = ACTIONS(6489), - [anon_sym_BSLASHPvolcite] = ACTIONS(6489), - [anon_sym_BSLASHfvolcite] = ACTIONS(6489), - [anon_sym_BSLASHftvolcite] = ACTIONS(6489), - [anon_sym_BSLASHsvolcite] = ACTIONS(6489), - [anon_sym_BSLASHSvolcite] = ACTIONS(6489), - [anon_sym_BSLASHtvolcite] = ACTIONS(6489), - [anon_sym_BSLASHTvolcite] = ACTIONS(6489), - [anon_sym_BSLASHavolcite] = ACTIONS(6489), - [anon_sym_BSLASHAvolcite] = ACTIONS(6489), - [anon_sym_BSLASHnotecite] = ACTIONS(6489), - [anon_sym_BSLASHNotecite] = ACTIONS(6489), - [anon_sym_BSLASHpnotecite] = ACTIONS(6489), - [anon_sym_BSLASHPnotecite] = ACTIONS(6489), - [anon_sym_BSLASHfnotecite] = ACTIONS(6489), - [anon_sym_BSLASHlabel] = ACTIONS(6489), - [anon_sym_BSLASHref] = ACTIONS(6489), - [anon_sym_BSLASHeqref] = ACTIONS(6489), - [anon_sym_BSLASHvref] = ACTIONS(6489), - [anon_sym_BSLASHVref] = ACTIONS(6489), - [anon_sym_BSLASHautoref] = ACTIONS(6489), - [anon_sym_BSLASHpageref] = ACTIONS(6489), - [anon_sym_BSLASHcref] = ACTIONS(6489), - [anon_sym_BSLASHCref] = ACTIONS(6489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnameCref] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHlabelcref] = ACTIONS(6489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCrefrange] = ACTIONS(6489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnewlabel] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6491), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHdef] = ACTIONS(6489), - [anon_sym_BSLASHlet] = ACTIONS(6489), - [anon_sym_BSLASHleft] = ACTIONS(6489), - [anon_sym_BSLASHbig] = ACTIONS(6489), - [anon_sym_BSLASHBig] = ACTIONS(6489), - [anon_sym_BSLASHbigg] = ACTIONS(6489), - [anon_sym_BSLASHBigg] = ACTIONS(6489), - [anon_sym_BSLASHbigl] = ACTIONS(6489), - [anon_sym_BSLASHBigl] = ACTIONS(6489), - [anon_sym_BSLASHbiggl] = ACTIONS(6489), - [anon_sym_BSLASHBiggl] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6489), - [anon_sym_BSLASHgls] = ACTIONS(6489), - [anon_sym_BSLASHGls] = ACTIONS(6489), - [anon_sym_BSLASHGLS] = ACTIONS(6489), - [anon_sym_BSLASHglspl] = ACTIONS(6489), - [anon_sym_BSLASHGlspl] = ACTIONS(6489), - [anon_sym_BSLASHGLSpl] = ACTIONS(6489), - [anon_sym_BSLASHglsdisp] = ACTIONS(6489), - [anon_sym_BSLASHglslink] = ACTIONS(6489), - [anon_sym_BSLASHglstext] = ACTIONS(6489), - [anon_sym_BSLASHGlstext] = ACTIONS(6489), - [anon_sym_BSLASHGLStext] = ACTIONS(6489), - [anon_sym_BSLASHglsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6489), - [anon_sym_BSLASHglsplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSplural] = ACTIONS(6489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHglsname] = ACTIONS(6489), - [anon_sym_BSLASHGlsname] = ACTIONS(6489), - [anon_sym_BSLASHGLSname] = ACTIONS(6489), - [anon_sym_BSLASHglssymbol] = ACTIONS(6489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6489), - [anon_sym_BSLASHglsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6489), - [anon_sym_BSLASHglsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6489), - [anon_sym_BSLASHglsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6489), - [anon_sym_BSLASHglsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6489), - [anon_sym_BSLASHglsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6489), - [anon_sym_BSLASHnewacronym] = ACTIONS(6489), - [anon_sym_BSLASHacrshort] = ACTIONS(6489), - [anon_sym_BSLASHAcrshort] = ACTIONS(6489), - [anon_sym_BSLASHACRshort] = ACTIONS(6489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6489), - [anon_sym_BSLASHacrlong] = ACTIONS(6489), - [anon_sym_BSLASHAcrlong] = ACTIONS(6489), - [anon_sym_BSLASHACRlong] = ACTIONS(6489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6489), - [anon_sym_BSLASHacrfull] = ACTIONS(6489), - [anon_sym_BSLASHAcrfull] = ACTIONS(6489), - [anon_sym_BSLASHACRfull] = ACTIONS(6489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6489), - [anon_sym_BSLASHacs] = ACTIONS(6489), - [anon_sym_BSLASHAcs] = ACTIONS(6489), - [anon_sym_BSLASHacsp] = ACTIONS(6489), - [anon_sym_BSLASHAcsp] = ACTIONS(6489), - [anon_sym_BSLASHacl] = ACTIONS(6489), - [anon_sym_BSLASHAcl] = ACTIONS(6489), - [anon_sym_BSLASHaclp] = ACTIONS(6489), - [anon_sym_BSLASHAclp] = ACTIONS(6489), - [anon_sym_BSLASHacf] = ACTIONS(6489), - [anon_sym_BSLASHAcf] = ACTIONS(6489), - [anon_sym_BSLASHacfp] = ACTIONS(6489), - [anon_sym_BSLASHAcfp] = ACTIONS(6489), - [anon_sym_BSLASHac] = ACTIONS(6489), - [anon_sym_BSLASHAc] = ACTIONS(6489), - [anon_sym_BSLASHacp] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6489), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6489), - [anon_sym_BSLASHcolor] = ACTIONS(6489), - [anon_sym_BSLASHcolorbox] = ACTIONS(6489), - [anon_sym_BSLASHtextcolor] = ACTIONS(6489), - [anon_sym_BSLASHpagecolor] = ACTIONS(6489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6489), - [anon_sym_BSLASHtext] = ACTIONS(6489), - [anon_sym_BSLASHintertext] = ACTIONS(6489), - [anon_sym_shortintertext] = ACTIONS(6489), - }, - [1798] = { - [sym_command_name] = ACTIONS(6377), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6377), - [anon_sym_LBRACK] = ACTIONS(6379), - [anon_sym_RBRACK] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_EQ] = ACTIONS(6379), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_LBRACE] = ACTIONS(6379), - [sym_word] = ACTIONS(6377), - [sym_placeholder] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_SQUOTE] = ACTIONS(6377), - [anon_sym__] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6379), - [anon_sym_DOLLAR] = ACTIONS(6377), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6379), - [anon_sym_BSLASHbegin] = ACTIONS(6377), - [anon_sym_BSLASHtitle] = ACTIONS(6377), - [anon_sym_BSLASHauthor] = ACTIONS(6377), - [anon_sym_BSLASHusepackage] = ACTIONS(6377), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6377), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6377), - [anon_sym_BSLASHinclude] = ACTIONS(6377), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6377), - [anon_sym_BSLASHinput] = ACTIONS(6377), - [anon_sym_BSLASHsubfile] = ACTIONS(6377), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6377), - [anon_sym_BSLASHbibliography] = ACTIONS(6377), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6377), - [anon_sym_BSLASHincludesvg] = ACTIONS(6377), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6377), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6377), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6377), - [anon_sym_BSLASHimport] = ACTIONS(6377), - [anon_sym_BSLASHsubimport] = ACTIONS(6377), - [anon_sym_BSLASHinputfrom] = ACTIONS(6377), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6377), - [anon_sym_BSLASHincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHcaption] = ACTIONS(6377), - [anon_sym_BSLASHcite] = ACTIONS(6377), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCite] = ACTIONS(6377), - [anon_sym_BSLASHnocite] = ACTIONS(6377), - [anon_sym_BSLASHcitet] = ACTIONS(6377), - [anon_sym_BSLASHcitep] = ACTIONS(6377), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteauthor] = ACTIONS(6377), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6377), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitetitle] = ACTIONS(6377), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteyear] = ACTIONS(6377), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitedate] = ACTIONS(6377), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteurl] = ACTIONS(6377), - [anon_sym_BSLASHfullcite] = ACTIONS(6377), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6377), - [anon_sym_BSLASHcitealt] = ACTIONS(6377), - [anon_sym_BSLASHcitealp] = ACTIONS(6377), - [anon_sym_BSLASHcitetext] = ACTIONS(6377), - [anon_sym_BSLASHparencite] = ACTIONS(6377), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHParencite] = ACTIONS(6377), - [anon_sym_BSLASHfootcite] = ACTIONS(6377), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6377), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6377), - [anon_sym_BSLASHtextcite] = ACTIONS(6377), - [anon_sym_BSLASHTextcite] = ACTIONS(6377), - [anon_sym_BSLASHsmartcite] = ACTIONS(6377), - [anon_sym_BSLASHSmartcite] = ACTIONS(6377), - [anon_sym_BSLASHsupercite] = ACTIONS(6377), - [anon_sym_BSLASHautocite] = ACTIONS(6377), - [anon_sym_BSLASHAutocite] = ACTIONS(6377), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHvolcite] = ACTIONS(6377), - [anon_sym_BSLASHVolcite] = ACTIONS(6377), - [anon_sym_BSLASHpvolcite] = ACTIONS(6377), - [anon_sym_BSLASHPvolcite] = ACTIONS(6377), - [anon_sym_BSLASHfvolcite] = ACTIONS(6377), - [anon_sym_BSLASHftvolcite] = ACTIONS(6377), - [anon_sym_BSLASHsvolcite] = ACTIONS(6377), - [anon_sym_BSLASHSvolcite] = ACTIONS(6377), - [anon_sym_BSLASHtvolcite] = ACTIONS(6377), - [anon_sym_BSLASHTvolcite] = ACTIONS(6377), - [anon_sym_BSLASHavolcite] = ACTIONS(6377), - [anon_sym_BSLASHAvolcite] = ACTIONS(6377), - [anon_sym_BSLASHnotecite] = ACTIONS(6377), - [anon_sym_BSLASHNotecite] = ACTIONS(6377), - [anon_sym_BSLASHpnotecite] = ACTIONS(6377), - [anon_sym_BSLASHPnotecite] = ACTIONS(6377), - [anon_sym_BSLASHfnotecite] = ACTIONS(6377), - [anon_sym_BSLASHlabel] = ACTIONS(6377), - [anon_sym_BSLASHref] = ACTIONS(6377), - [anon_sym_BSLASHeqref] = ACTIONS(6377), - [anon_sym_BSLASHvref] = ACTIONS(6377), - [anon_sym_BSLASHVref] = ACTIONS(6377), - [anon_sym_BSLASHautoref] = ACTIONS(6377), - [anon_sym_BSLASHpageref] = ACTIONS(6377), - [anon_sym_BSLASHcref] = ACTIONS(6377), - [anon_sym_BSLASHCref] = ACTIONS(6377), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnameCref] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHlabelcref] = ACTIONS(6377), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCrefrange] = ACTIONS(6377), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnewlabel] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6377), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6377), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6379), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHdef] = ACTIONS(6377), - [anon_sym_BSLASHlet] = ACTIONS(6377), - [anon_sym_BSLASHleft] = ACTIONS(6377), - [anon_sym_BSLASHbig] = ACTIONS(6377), - [anon_sym_BSLASHBig] = ACTIONS(6377), - [anon_sym_BSLASHbigg] = ACTIONS(6377), - [anon_sym_BSLASHBigg] = ACTIONS(6377), - [anon_sym_BSLASHbigl] = ACTIONS(6377), - [anon_sym_BSLASHBigl] = ACTIONS(6377), - [anon_sym_BSLASHbiggl] = ACTIONS(6377), - [anon_sym_BSLASHBiggl] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6377), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6377), - [anon_sym_BSLASHgls] = ACTIONS(6377), - [anon_sym_BSLASHGls] = ACTIONS(6377), - [anon_sym_BSLASHGLS] = ACTIONS(6377), - [anon_sym_BSLASHglspl] = ACTIONS(6377), - [anon_sym_BSLASHGlspl] = ACTIONS(6377), - [anon_sym_BSLASHGLSpl] = ACTIONS(6377), - [anon_sym_BSLASHglsdisp] = ACTIONS(6377), - [anon_sym_BSLASHglslink] = ACTIONS(6377), - [anon_sym_BSLASHglstext] = ACTIONS(6377), - [anon_sym_BSLASHGlstext] = ACTIONS(6377), - [anon_sym_BSLASHGLStext] = ACTIONS(6377), - [anon_sym_BSLASHglsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6377), - [anon_sym_BSLASHglsplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSplural] = ACTIONS(6377), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHglsname] = ACTIONS(6377), - [anon_sym_BSLASHGlsname] = ACTIONS(6377), - [anon_sym_BSLASHGLSname] = ACTIONS(6377), - [anon_sym_BSLASHglssymbol] = ACTIONS(6377), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6377), - [anon_sym_BSLASHglsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6377), - [anon_sym_BSLASHglsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6377), - [anon_sym_BSLASHglsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6377), - [anon_sym_BSLASHglsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6377), - [anon_sym_BSLASHglsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6377), - [anon_sym_BSLASHnewacronym] = ACTIONS(6377), - [anon_sym_BSLASHacrshort] = ACTIONS(6377), - [anon_sym_BSLASHAcrshort] = ACTIONS(6377), - [anon_sym_BSLASHACRshort] = ACTIONS(6377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6377), - [anon_sym_BSLASHacrlong] = ACTIONS(6377), - [anon_sym_BSLASHAcrlong] = ACTIONS(6377), - [anon_sym_BSLASHACRlong] = ACTIONS(6377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6377), - [anon_sym_BSLASHacrfull] = ACTIONS(6377), - [anon_sym_BSLASHAcrfull] = ACTIONS(6377), - [anon_sym_BSLASHACRfull] = ACTIONS(6377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6377), - [anon_sym_BSLASHacs] = ACTIONS(6377), - [anon_sym_BSLASHAcs] = ACTIONS(6377), - [anon_sym_BSLASHacsp] = ACTIONS(6377), - [anon_sym_BSLASHAcsp] = ACTIONS(6377), - [anon_sym_BSLASHacl] = ACTIONS(6377), - [anon_sym_BSLASHAcl] = ACTIONS(6377), - [anon_sym_BSLASHaclp] = ACTIONS(6377), - [anon_sym_BSLASHAclp] = ACTIONS(6377), - [anon_sym_BSLASHacf] = ACTIONS(6377), - [anon_sym_BSLASHAcf] = ACTIONS(6377), - [anon_sym_BSLASHacfp] = ACTIONS(6377), - [anon_sym_BSLASHAcfp] = ACTIONS(6377), - [anon_sym_BSLASHac] = ACTIONS(6377), - [anon_sym_BSLASHAc] = ACTIONS(6377), - [anon_sym_BSLASHacp] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6377), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6377), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6377), - [anon_sym_BSLASHcolor] = ACTIONS(6377), - [anon_sym_BSLASHcolorbox] = ACTIONS(6377), - [anon_sym_BSLASHtextcolor] = ACTIONS(6377), - [anon_sym_BSLASHpagecolor] = ACTIONS(6377), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6377), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6377), - [anon_sym_BSLASHtext] = ACTIONS(6377), - [anon_sym_BSLASHintertext] = ACTIONS(6377), - [anon_sym_shortintertext] = ACTIONS(6377), - }, - [1799] = { - [sym_command_name] = ACTIONS(6357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6357), - [anon_sym_LBRACK] = ACTIONS(6359), - [anon_sym_RBRACK] = ACTIONS(6359), - [anon_sym_COMMA] = ACTIONS(6359), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_LPAREN] = ACTIONS(6359), - [anon_sym_RPAREN] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6359), - [sym_word] = ACTIONS(6357), - [sym_placeholder] = ACTIONS(6359), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6359), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_LT] = ACTIONS(6357), - [anon_sym_GT] = ACTIONS(6357), - [anon_sym_BANG] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_SQUOTE] = ACTIONS(6357), - [anon_sym__] = ACTIONS(6359), - [anon_sym_CARET] = ACTIONS(6359), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6359), - [anon_sym_DOLLAR] = ACTIONS(6357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6359), - [anon_sym_BSLASHbegin] = ACTIONS(6357), - [anon_sym_BSLASHtitle] = ACTIONS(6357), - [anon_sym_BSLASHauthor] = ACTIONS(6357), - [anon_sym_BSLASHusepackage] = ACTIONS(6357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6357), - [anon_sym_BSLASHinclude] = ACTIONS(6357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6357), - [anon_sym_BSLASHinput] = ACTIONS(6357), - [anon_sym_BSLASHsubfile] = ACTIONS(6357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6357), - [anon_sym_BSLASHbibliography] = ACTIONS(6357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6357), - [anon_sym_BSLASHincludesvg] = ACTIONS(6357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6357), - [anon_sym_BSLASHimport] = ACTIONS(6357), - [anon_sym_BSLASHsubimport] = ACTIONS(6357), - [anon_sym_BSLASHinputfrom] = ACTIONS(6357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6357), - [anon_sym_BSLASHincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHcaption] = ACTIONS(6357), - [anon_sym_BSLASHcite] = ACTIONS(6357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCite] = ACTIONS(6357), - [anon_sym_BSLASHnocite] = ACTIONS(6357), - [anon_sym_BSLASHcitet] = ACTIONS(6357), - [anon_sym_BSLASHcitep] = ACTIONS(6357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteauthor] = ACTIONS(6357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitetitle] = ACTIONS(6357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteyear] = ACTIONS(6357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitedate] = ACTIONS(6357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteurl] = ACTIONS(6357), - [anon_sym_BSLASHfullcite] = ACTIONS(6357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6357), - [anon_sym_BSLASHcitealt] = ACTIONS(6357), - [anon_sym_BSLASHcitealp] = ACTIONS(6357), - [anon_sym_BSLASHcitetext] = ACTIONS(6357), - [anon_sym_BSLASHparencite] = ACTIONS(6357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHParencite] = ACTIONS(6357), - [anon_sym_BSLASHfootcite] = ACTIONS(6357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6357), - [anon_sym_BSLASHtextcite] = ACTIONS(6357), - [anon_sym_BSLASHTextcite] = ACTIONS(6357), - [anon_sym_BSLASHsmartcite] = ACTIONS(6357), - [anon_sym_BSLASHSmartcite] = ACTIONS(6357), - [anon_sym_BSLASHsupercite] = ACTIONS(6357), - [anon_sym_BSLASHautocite] = ACTIONS(6357), - [anon_sym_BSLASHAutocite] = ACTIONS(6357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHvolcite] = ACTIONS(6357), - [anon_sym_BSLASHVolcite] = ACTIONS(6357), - [anon_sym_BSLASHpvolcite] = ACTIONS(6357), - [anon_sym_BSLASHPvolcite] = ACTIONS(6357), - [anon_sym_BSLASHfvolcite] = ACTIONS(6357), - [anon_sym_BSLASHftvolcite] = ACTIONS(6357), - [anon_sym_BSLASHsvolcite] = ACTIONS(6357), - [anon_sym_BSLASHSvolcite] = ACTIONS(6357), - [anon_sym_BSLASHtvolcite] = ACTIONS(6357), - [anon_sym_BSLASHTvolcite] = ACTIONS(6357), - [anon_sym_BSLASHavolcite] = ACTIONS(6357), - [anon_sym_BSLASHAvolcite] = ACTIONS(6357), - [anon_sym_BSLASHnotecite] = ACTIONS(6357), - [anon_sym_BSLASHNotecite] = ACTIONS(6357), - [anon_sym_BSLASHpnotecite] = ACTIONS(6357), - [anon_sym_BSLASHPnotecite] = ACTIONS(6357), - [anon_sym_BSLASHfnotecite] = ACTIONS(6357), - [anon_sym_BSLASHlabel] = ACTIONS(6357), - [anon_sym_BSLASHref] = ACTIONS(6357), - [anon_sym_BSLASHeqref] = ACTIONS(6357), - [anon_sym_BSLASHvref] = ACTIONS(6357), - [anon_sym_BSLASHVref] = ACTIONS(6357), - [anon_sym_BSLASHautoref] = ACTIONS(6357), - [anon_sym_BSLASHpageref] = ACTIONS(6357), - [anon_sym_BSLASHcref] = ACTIONS(6357), - [anon_sym_BSLASHCref] = ACTIONS(6357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnameCref] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHlabelcref] = ACTIONS(6357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCrefrange] = ACTIONS(6357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnewlabel] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6359), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHdef] = ACTIONS(6357), - [anon_sym_BSLASHlet] = ACTIONS(6357), - [anon_sym_BSLASHleft] = ACTIONS(6357), - [anon_sym_BSLASHbig] = ACTIONS(6357), - [anon_sym_BSLASHBig] = ACTIONS(6357), - [anon_sym_BSLASHbigg] = ACTIONS(6357), - [anon_sym_BSLASHBigg] = ACTIONS(6357), - [anon_sym_BSLASHbigl] = ACTIONS(6357), - [anon_sym_BSLASHBigl] = ACTIONS(6357), - [anon_sym_BSLASHbiggl] = ACTIONS(6357), - [anon_sym_BSLASHBiggl] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6357), - [anon_sym_BSLASHgls] = ACTIONS(6357), - [anon_sym_BSLASHGls] = ACTIONS(6357), - [anon_sym_BSLASHGLS] = ACTIONS(6357), - [anon_sym_BSLASHglspl] = ACTIONS(6357), - [anon_sym_BSLASHGlspl] = ACTIONS(6357), - [anon_sym_BSLASHGLSpl] = ACTIONS(6357), - [anon_sym_BSLASHglsdisp] = ACTIONS(6357), - [anon_sym_BSLASHglslink] = ACTIONS(6357), - [anon_sym_BSLASHglstext] = ACTIONS(6357), - [anon_sym_BSLASHGlstext] = ACTIONS(6357), - [anon_sym_BSLASHGLStext] = ACTIONS(6357), - [anon_sym_BSLASHglsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6357), - [anon_sym_BSLASHglsplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSplural] = ACTIONS(6357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHglsname] = ACTIONS(6357), - [anon_sym_BSLASHGlsname] = ACTIONS(6357), - [anon_sym_BSLASHGLSname] = ACTIONS(6357), - [anon_sym_BSLASHglssymbol] = ACTIONS(6357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6357), - [anon_sym_BSLASHglsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6357), - [anon_sym_BSLASHglsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6357), - [anon_sym_BSLASHglsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6357), - [anon_sym_BSLASHglsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6357), - [anon_sym_BSLASHglsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6357), - [anon_sym_BSLASHnewacronym] = ACTIONS(6357), - [anon_sym_BSLASHacrshort] = ACTIONS(6357), - [anon_sym_BSLASHAcrshort] = ACTIONS(6357), - [anon_sym_BSLASHACRshort] = ACTIONS(6357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6357), - [anon_sym_BSLASHacrlong] = ACTIONS(6357), - [anon_sym_BSLASHAcrlong] = ACTIONS(6357), - [anon_sym_BSLASHACRlong] = ACTIONS(6357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6357), - [anon_sym_BSLASHacrfull] = ACTIONS(6357), - [anon_sym_BSLASHAcrfull] = ACTIONS(6357), - [anon_sym_BSLASHACRfull] = ACTIONS(6357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6357), - [anon_sym_BSLASHacs] = ACTIONS(6357), - [anon_sym_BSLASHAcs] = ACTIONS(6357), - [anon_sym_BSLASHacsp] = ACTIONS(6357), - [anon_sym_BSLASHAcsp] = ACTIONS(6357), - [anon_sym_BSLASHacl] = ACTIONS(6357), - [anon_sym_BSLASHAcl] = ACTIONS(6357), - [anon_sym_BSLASHaclp] = ACTIONS(6357), - [anon_sym_BSLASHAclp] = ACTIONS(6357), - [anon_sym_BSLASHacf] = ACTIONS(6357), - [anon_sym_BSLASHAcf] = ACTIONS(6357), - [anon_sym_BSLASHacfp] = ACTIONS(6357), - [anon_sym_BSLASHAcfp] = ACTIONS(6357), - [anon_sym_BSLASHac] = ACTIONS(6357), - [anon_sym_BSLASHAc] = ACTIONS(6357), - [anon_sym_BSLASHacp] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6357), - [anon_sym_BSLASHcolor] = ACTIONS(6357), - [anon_sym_BSLASHcolorbox] = ACTIONS(6357), - [anon_sym_BSLASHtextcolor] = ACTIONS(6357), - [anon_sym_BSLASHpagecolor] = ACTIONS(6357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6357), - [anon_sym_BSLASHtext] = ACTIONS(6357), - [anon_sym_BSLASHintertext] = ACTIONS(6357), - [anon_sym_shortintertext] = ACTIONS(6357), - }, - [1800] = { - [sym_command_name] = ACTIONS(6373), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6373), - [anon_sym_LBRACK] = ACTIONS(6375), - [anon_sym_RBRACK] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_EQ] = ACTIONS(6375), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_RPAREN] = ACTIONS(6375), - [anon_sym_LBRACE] = ACTIONS(6375), - [sym_word] = ACTIONS(6373), - [sym_placeholder] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6373), - [anon_sym_GT] = ACTIONS(6373), - [anon_sym_BANG] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_SQUOTE] = ACTIONS(6373), - [anon_sym__] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6375), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6375), - [anon_sym_DOLLAR] = ACTIONS(6373), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6375), - [anon_sym_BSLASHbegin] = ACTIONS(6373), - [anon_sym_BSLASHtitle] = ACTIONS(6373), - [anon_sym_BSLASHauthor] = ACTIONS(6373), - [anon_sym_BSLASHusepackage] = ACTIONS(6373), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6373), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6373), - [anon_sym_BSLASHinclude] = ACTIONS(6373), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6373), - [anon_sym_BSLASHinput] = ACTIONS(6373), - [anon_sym_BSLASHsubfile] = ACTIONS(6373), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6373), - [anon_sym_BSLASHbibliography] = ACTIONS(6373), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6373), - [anon_sym_BSLASHincludesvg] = ACTIONS(6373), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6373), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6373), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6373), - [anon_sym_BSLASHimport] = ACTIONS(6373), - [anon_sym_BSLASHsubimport] = ACTIONS(6373), - [anon_sym_BSLASHinputfrom] = ACTIONS(6373), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6373), - [anon_sym_BSLASHincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHcaption] = ACTIONS(6373), - [anon_sym_BSLASHcite] = ACTIONS(6373), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCite] = ACTIONS(6373), - [anon_sym_BSLASHnocite] = ACTIONS(6373), - [anon_sym_BSLASHcitet] = ACTIONS(6373), - [anon_sym_BSLASHcitep] = ACTIONS(6373), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteauthor] = ACTIONS(6373), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6373), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitetitle] = ACTIONS(6373), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteyear] = ACTIONS(6373), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitedate] = ACTIONS(6373), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteurl] = ACTIONS(6373), - [anon_sym_BSLASHfullcite] = ACTIONS(6373), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6373), - [anon_sym_BSLASHcitealt] = ACTIONS(6373), - [anon_sym_BSLASHcitealp] = ACTIONS(6373), - [anon_sym_BSLASHcitetext] = ACTIONS(6373), - [anon_sym_BSLASHparencite] = ACTIONS(6373), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHParencite] = ACTIONS(6373), - [anon_sym_BSLASHfootcite] = ACTIONS(6373), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6373), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6373), - [anon_sym_BSLASHtextcite] = ACTIONS(6373), - [anon_sym_BSLASHTextcite] = ACTIONS(6373), - [anon_sym_BSLASHsmartcite] = ACTIONS(6373), - [anon_sym_BSLASHSmartcite] = ACTIONS(6373), - [anon_sym_BSLASHsupercite] = ACTIONS(6373), - [anon_sym_BSLASHautocite] = ACTIONS(6373), - [anon_sym_BSLASHAutocite] = ACTIONS(6373), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHvolcite] = ACTIONS(6373), - [anon_sym_BSLASHVolcite] = ACTIONS(6373), - [anon_sym_BSLASHpvolcite] = ACTIONS(6373), - [anon_sym_BSLASHPvolcite] = ACTIONS(6373), - [anon_sym_BSLASHfvolcite] = ACTIONS(6373), - [anon_sym_BSLASHftvolcite] = ACTIONS(6373), - [anon_sym_BSLASHsvolcite] = ACTIONS(6373), - [anon_sym_BSLASHSvolcite] = ACTIONS(6373), - [anon_sym_BSLASHtvolcite] = ACTIONS(6373), - [anon_sym_BSLASHTvolcite] = ACTIONS(6373), - [anon_sym_BSLASHavolcite] = ACTIONS(6373), - [anon_sym_BSLASHAvolcite] = ACTIONS(6373), - [anon_sym_BSLASHnotecite] = ACTIONS(6373), - [anon_sym_BSLASHNotecite] = ACTIONS(6373), - [anon_sym_BSLASHpnotecite] = ACTIONS(6373), - [anon_sym_BSLASHPnotecite] = ACTIONS(6373), - [anon_sym_BSLASHfnotecite] = ACTIONS(6373), - [anon_sym_BSLASHlabel] = ACTIONS(6373), - [anon_sym_BSLASHref] = ACTIONS(6373), - [anon_sym_BSLASHeqref] = ACTIONS(6373), - [anon_sym_BSLASHvref] = ACTIONS(6373), - [anon_sym_BSLASHVref] = ACTIONS(6373), - [anon_sym_BSLASHautoref] = ACTIONS(6373), - [anon_sym_BSLASHpageref] = ACTIONS(6373), - [anon_sym_BSLASHcref] = ACTIONS(6373), - [anon_sym_BSLASHCref] = ACTIONS(6373), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnameCref] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHlabelcref] = ACTIONS(6373), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCrefrange] = ACTIONS(6373), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnewlabel] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6373), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6373), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6375), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHdef] = ACTIONS(6373), - [anon_sym_BSLASHlet] = ACTIONS(6373), - [anon_sym_BSLASHleft] = ACTIONS(6373), - [anon_sym_BSLASHbig] = ACTIONS(6373), - [anon_sym_BSLASHBig] = ACTIONS(6373), - [anon_sym_BSLASHbigg] = ACTIONS(6373), - [anon_sym_BSLASHBigg] = ACTIONS(6373), - [anon_sym_BSLASHbigl] = ACTIONS(6373), - [anon_sym_BSLASHBigl] = ACTIONS(6373), - [anon_sym_BSLASHbiggl] = ACTIONS(6373), - [anon_sym_BSLASHBiggl] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6373), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6373), - [anon_sym_BSLASHgls] = ACTIONS(6373), - [anon_sym_BSLASHGls] = ACTIONS(6373), - [anon_sym_BSLASHGLS] = ACTIONS(6373), - [anon_sym_BSLASHglspl] = ACTIONS(6373), - [anon_sym_BSLASHGlspl] = ACTIONS(6373), - [anon_sym_BSLASHGLSpl] = ACTIONS(6373), - [anon_sym_BSLASHglsdisp] = ACTIONS(6373), - [anon_sym_BSLASHglslink] = ACTIONS(6373), - [anon_sym_BSLASHglstext] = ACTIONS(6373), - [anon_sym_BSLASHGlstext] = ACTIONS(6373), - [anon_sym_BSLASHGLStext] = ACTIONS(6373), - [anon_sym_BSLASHglsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6373), - [anon_sym_BSLASHglsplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSplural] = ACTIONS(6373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHglsname] = ACTIONS(6373), - [anon_sym_BSLASHGlsname] = ACTIONS(6373), - [anon_sym_BSLASHGLSname] = ACTIONS(6373), - [anon_sym_BSLASHglssymbol] = ACTIONS(6373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6373), - [anon_sym_BSLASHglsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6373), - [anon_sym_BSLASHglsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6373), - [anon_sym_BSLASHglsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6373), - [anon_sym_BSLASHglsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6373), - [anon_sym_BSLASHglsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6373), - [anon_sym_BSLASHnewacronym] = ACTIONS(6373), - [anon_sym_BSLASHacrshort] = ACTIONS(6373), - [anon_sym_BSLASHAcrshort] = ACTIONS(6373), - [anon_sym_BSLASHACRshort] = ACTIONS(6373), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6373), - [anon_sym_BSLASHacrlong] = ACTIONS(6373), - [anon_sym_BSLASHAcrlong] = ACTIONS(6373), - [anon_sym_BSLASHACRlong] = ACTIONS(6373), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6373), - [anon_sym_BSLASHacrfull] = ACTIONS(6373), - [anon_sym_BSLASHAcrfull] = ACTIONS(6373), - [anon_sym_BSLASHACRfull] = ACTIONS(6373), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6373), - [anon_sym_BSLASHacs] = ACTIONS(6373), - [anon_sym_BSLASHAcs] = ACTIONS(6373), - [anon_sym_BSLASHacsp] = ACTIONS(6373), - [anon_sym_BSLASHAcsp] = ACTIONS(6373), - [anon_sym_BSLASHacl] = ACTIONS(6373), - [anon_sym_BSLASHAcl] = ACTIONS(6373), - [anon_sym_BSLASHaclp] = ACTIONS(6373), - [anon_sym_BSLASHAclp] = ACTIONS(6373), - [anon_sym_BSLASHacf] = ACTIONS(6373), - [anon_sym_BSLASHAcf] = ACTIONS(6373), - [anon_sym_BSLASHacfp] = ACTIONS(6373), - [anon_sym_BSLASHAcfp] = ACTIONS(6373), - [anon_sym_BSLASHac] = ACTIONS(6373), - [anon_sym_BSLASHAc] = ACTIONS(6373), - [anon_sym_BSLASHacp] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6373), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6373), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6373), - [anon_sym_BSLASHcolor] = ACTIONS(6373), - [anon_sym_BSLASHcolorbox] = ACTIONS(6373), - [anon_sym_BSLASHtextcolor] = ACTIONS(6373), - [anon_sym_BSLASHpagecolor] = ACTIONS(6373), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6373), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6373), - [anon_sym_BSLASHtext] = ACTIONS(6373), - [anon_sym_BSLASHintertext] = ACTIONS(6373), - [anon_sym_shortintertext] = ACTIONS(6373), - }, - [1801] = { - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LBRACK] = ACTIONS(207), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_COMMA] = ACTIONS(207), - [anon_sym_EQ] = ACTIONS(207), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(207), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [1802] = { - [sym_command_name] = ACTIONS(6469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6469), - [anon_sym_LBRACK] = ACTIONS(6471), - [anon_sym_RBRACK] = ACTIONS(6471), - [anon_sym_COMMA] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(6471), - [anon_sym_LPAREN] = ACTIONS(6471), - [anon_sym_RPAREN] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6471), - [anon_sym_RBRACE] = ACTIONS(6471), - [sym_word] = ACTIONS(6469), - [sym_placeholder] = ACTIONS(6471), - [anon_sym_PLUS] = ACTIONS(6471), - [anon_sym_DASH] = ACTIONS(6471), - [anon_sym_STAR] = ACTIONS(6471), - [anon_sym_SLASH] = ACTIONS(6471), - [anon_sym_LT] = ACTIONS(6469), - [anon_sym_GT] = ACTIONS(6469), - [anon_sym_BANG] = ACTIONS(6469), - [anon_sym_PIPE] = ACTIONS(6469), - [anon_sym_COLON] = ACTIONS(6469), - [anon_sym_SQUOTE] = ACTIONS(6469), - [anon_sym__] = ACTIONS(6471), - [anon_sym_CARET] = ACTIONS(6471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6471), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6471), - [anon_sym_DOLLAR] = ACTIONS(6469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6471), - [anon_sym_BSLASHtitle] = ACTIONS(6469), - [anon_sym_BSLASHauthor] = ACTIONS(6469), - [anon_sym_BSLASHusepackage] = ACTIONS(6469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6469), - [anon_sym_BSLASHinclude] = ACTIONS(6469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6469), - [anon_sym_BSLASHinput] = ACTIONS(6469), - [anon_sym_BSLASHsubfile] = ACTIONS(6469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6469), - [anon_sym_BSLASHbibliography] = ACTIONS(6469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6469), - [anon_sym_BSLASHincludesvg] = ACTIONS(6469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6469), - [anon_sym_BSLASHimport] = ACTIONS(6469), - [anon_sym_BSLASHsubimport] = ACTIONS(6469), - [anon_sym_BSLASHinputfrom] = ACTIONS(6469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6469), - [anon_sym_BSLASHincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHcaption] = ACTIONS(6469), - [anon_sym_BSLASHcite] = ACTIONS(6469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCite] = ACTIONS(6469), - [anon_sym_BSLASHnocite] = ACTIONS(6469), - [anon_sym_BSLASHcitet] = ACTIONS(6469), - [anon_sym_BSLASHcitep] = ACTIONS(6469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteauthor] = ACTIONS(6469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitetitle] = ACTIONS(6469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteyear] = ACTIONS(6469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitedate] = ACTIONS(6469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteurl] = ACTIONS(6469), - [anon_sym_BSLASHfullcite] = ACTIONS(6469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6469), - [anon_sym_BSLASHcitealt] = ACTIONS(6469), - [anon_sym_BSLASHcitealp] = ACTIONS(6469), - [anon_sym_BSLASHcitetext] = ACTIONS(6469), - [anon_sym_BSLASHparencite] = ACTIONS(6469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHParencite] = ACTIONS(6469), - [anon_sym_BSLASHfootcite] = ACTIONS(6469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6469), - [anon_sym_BSLASHtextcite] = ACTIONS(6469), - [anon_sym_BSLASHTextcite] = ACTIONS(6469), - [anon_sym_BSLASHsmartcite] = ACTIONS(6469), - [anon_sym_BSLASHSmartcite] = ACTIONS(6469), - [anon_sym_BSLASHsupercite] = ACTIONS(6469), - [anon_sym_BSLASHautocite] = ACTIONS(6469), - [anon_sym_BSLASHAutocite] = ACTIONS(6469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHvolcite] = ACTIONS(6469), - [anon_sym_BSLASHVolcite] = ACTIONS(6469), - [anon_sym_BSLASHpvolcite] = ACTIONS(6469), - [anon_sym_BSLASHPvolcite] = ACTIONS(6469), - [anon_sym_BSLASHfvolcite] = ACTIONS(6469), - [anon_sym_BSLASHftvolcite] = ACTIONS(6469), - [anon_sym_BSLASHsvolcite] = ACTIONS(6469), - [anon_sym_BSLASHSvolcite] = ACTIONS(6469), - [anon_sym_BSLASHtvolcite] = ACTIONS(6469), - [anon_sym_BSLASHTvolcite] = ACTIONS(6469), - [anon_sym_BSLASHavolcite] = ACTIONS(6469), - [anon_sym_BSLASHAvolcite] = ACTIONS(6469), - [anon_sym_BSLASHnotecite] = ACTIONS(6469), - [anon_sym_BSLASHNotecite] = ACTIONS(6469), - [anon_sym_BSLASHpnotecite] = ACTIONS(6469), - [anon_sym_BSLASHPnotecite] = ACTIONS(6469), - [anon_sym_BSLASHfnotecite] = ACTIONS(6469), - [anon_sym_BSLASHlabel] = ACTIONS(6469), - [anon_sym_BSLASHref] = ACTIONS(6469), - [anon_sym_BSLASHeqref] = ACTIONS(6469), - [anon_sym_BSLASHvref] = ACTIONS(6469), - [anon_sym_BSLASHVref] = ACTIONS(6469), - [anon_sym_BSLASHautoref] = ACTIONS(6469), - [anon_sym_BSLASHpageref] = ACTIONS(6469), - [anon_sym_BSLASHcref] = ACTIONS(6469), - [anon_sym_BSLASHCref] = ACTIONS(6469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnameCref] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHlabelcref] = ACTIONS(6469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCrefrange] = ACTIONS(6469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnewlabel] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6471), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHdef] = ACTIONS(6469), - [anon_sym_BSLASHlet] = ACTIONS(6469), - [anon_sym_BSLASHleft] = ACTIONS(6469), - [anon_sym_BSLASHbig] = ACTIONS(6469), - [anon_sym_BSLASHBig] = ACTIONS(6469), - [anon_sym_BSLASHbigg] = ACTIONS(6469), - [anon_sym_BSLASHBigg] = ACTIONS(6469), - [anon_sym_BSLASHbigl] = ACTIONS(6469), - [anon_sym_BSLASHBigl] = ACTIONS(6469), - [anon_sym_BSLASHbiggl] = ACTIONS(6469), - [anon_sym_BSLASHBiggl] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6469), - [anon_sym_BSLASHgls] = ACTIONS(6469), - [anon_sym_BSLASHGls] = ACTIONS(6469), - [anon_sym_BSLASHGLS] = ACTIONS(6469), - [anon_sym_BSLASHglspl] = ACTIONS(6469), - [anon_sym_BSLASHGlspl] = ACTIONS(6469), - [anon_sym_BSLASHGLSpl] = ACTIONS(6469), - [anon_sym_BSLASHglsdisp] = ACTIONS(6469), - [anon_sym_BSLASHglslink] = ACTIONS(6469), - [anon_sym_BSLASHglstext] = ACTIONS(6469), - [anon_sym_BSLASHGlstext] = ACTIONS(6469), - [anon_sym_BSLASHGLStext] = ACTIONS(6469), - [anon_sym_BSLASHglsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6469), - [anon_sym_BSLASHglsplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSplural] = ACTIONS(6469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHglsname] = ACTIONS(6469), - [anon_sym_BSLASHGlsname] = ACTIONS(6469), - [anon_sym_BSLASHGLSname] = ACTIONS(6469), - [anon_sym_BSLASHglssymbol] = ACTIONS(6469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6469), - [anon_sym_BSLASHglsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6469), - [anon_sym_BSLASHglsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6469), - [anon_sym_BSLASHglsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6469), - [anon_sym_BSLASHglsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6469), - [anon_sym_BSLASHglsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6469), - [anon_sym_BSLASHnewacronym] = ACTIONS(6469), - [anon_sym_BSLASHacrshort] = ACTIONS(6469), - [anon_sym_BSLASHAcrshort] = ACTIONS(6469), - [anon_sym_BSLASHACRshort] = ACTIONS(6469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6469), - [anon_sym_BSLASHacrlong] = ACTIONS(6469), - [anon_sym_BSLASHAcrlong] = ACTIONS(6469), - [anon_sym_BSLASHACRlong] = ACTIONS(6469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6469), - [anon_sym_BSLASHacrfull] = ACTIONS(6469), - [anon_sym_BSLASHAcrfull] = ACTIONS(6469), - [anon_sym_BSLASHACRfull] = ACTIONS(6469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6469), - [anon_sym_BSLASHacs] = ACTIONS(6469), - [anon_sym_BSLASHAcs] = ACTIONS(6469), - [anon_sym_BSLASHacsp] = ACTIONS(6469), - [anon_sym_BSLASHAcsp] = ACTIONS(6469), - [anon_sym_BSLASHacl] = ACTIONS(6469), - [anon_sym_BSLASHAcl] = ACTIONS(6469), - [anon_sym_BSLASHaclp] = ACTIONS(6469), - [anon_sym_BSLASHAclp] = ACTIONS(6469), - [anon_sym_BSLASHacf] = ACTIONS(6469), - [anon_sym_BSLASHAcf] = ACTIONS(6469), - [anon_sym_BSLASHacfp] = ACTIONS(6469), - [anon_sym_BSLASHAcfp] = ACTIONS(6469), - [anon_sym_BSLASHac] = ACTIONS(6469), - [anon_sym_BSLASHAc] = ACTIONS(6469), - [anon_sym_BSLASHacp] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6469), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6469), - [anon_sym_BSLASHcolor] = ACTIONS(6469), - [anon_sym_BSLASHcolorbox] = ACTIONS(6469), - [anon_sym_BSLASHtextcolor] = ACTIONS(6469), - [anon_sym_BSLASHpagecolor] = ACTIONS(6469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6469), - [anon_sym_BSLASHtext] = ACTIONS(6469), - [anon_sym_BSLASHintertext] = ACTIONS(6469), - [anon_sym_shortintertext] = ACTIONS(6469), - }, - [1803] = { - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LBRACK] = ACTIONS(191), - [anon_sym_RBRACK] = ACTIONS(191), - [anon_sym_COMMA] = ACTIONS(191), - [anon_sym_EQ] = ACTIONS(191), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(191), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [1804] = { - [sym_command_name] = ACTIONS(6361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6361), - [anon_sym_LBRACK] = ACTIONS(6363), - [anon_sym_RBRACK] = ACTIONS(6363), - [anon_sym_COMMA] = ACTIONS(6363), - [anon_sym_EQ] = ACTIONS(6363), - [anon_sym_LPAREN] = ACTIONS(6363), - [anon_sym_RPAREN] = ACTIONS(6363), - [anon_sym_LBRACE] = ACTIONS(6363), - [sym_word] = ACTIONS(6361), - [sym_placeholder] = ACTIONS(6363), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_LT] = ACTIONS(6361), - [anon_sym_GT] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6361), - [anon_sym__] = ACTIONS(6363), - [anon_sym_CARET] = ACTIONS(6363), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6363), - [anon_sym_DOLLAR] = ACTIONS(6361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6363), - [anon_sym_BSLASHbegin] = ACTIONS(6361), - [anon_sym_BSLASHtitle] = ACTIONS(6361), - [anon_sym_BSLASHauthor] = ACTIONS(6361), - [anon_sym_BSLASHusepackage] = ACTIONS(6361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6361), - [anon_sym_BSLASHinclude] = ACTIONS(6361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6361), - [anon_sym_BSLASHinput] = ACTIONS(6361), - [anon_sym_BSLASHsubfile] = ACTIONS(6361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6361), - [anon_sym_BSLASHbibliography] = ACTIONS(6361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6361), - [anon_sym_BSLASHincludesvg] = ACTIONS(6361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6361), - [anon_sym_BSLASHimport] = ACTIONS(6361), - [anon_sym_BSLASHsubimport] = ACTIONS(6361), - [anon_sym_BSLASHinputfrom] = ACTIONS(6361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6361), - [anon_sym_BSLASHincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHcaption] = ACTIONS(6361), - [anon_sym_BSLASHcite] = ACTIONS(6361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCite] = ACTIONS(6361), - [anon_sym_BSLASHnocite] = ACTIONS(6361), - [anon_sym_BSLASHcitet] = ACTIONS(6361), - [anon_sym_BSLASHcitep] = ACTIONS(6361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteauthor] = ACTIONS(6361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitetitle] = ACTIONS(6361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteyear] = ACTIONS(6361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitedate] = ACTIONS(6361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteurl] = ACTIONS(6361), - [anon_sym_BSLASHfullcite] = ACTIONS(6361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6361), - [anon_sym_BSLASHcitealt] = ACTIONS(6361), - [anon_sym_BSLASHcitealp] = ACTIONS(6361), - [anon_sym_BSLASHcitetext] = ACTIONS(6361), - [anon_sym_BSLASHparencite] = ACTIONS(6361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHParencite] = ACTIONS(6361), - [anon_sym_BSLASHfootcite] = ACTIONS(6361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6361), - [anon_sym_BSLASHtextcite] = ACTIONS(6361), - [anon_sym_BSLASHTextcite] = ACTIONS(6361), - [anon_sym_BSLASHsmartcite] = ACTIONS(6361), - [anon_sym_BSLASHSmartcite] = ACTIONS(6361), - [anon_sym_BSLASHsupercite] = ACTIONS(6361), - [anon_sym_BSLASHautocite] = ACTIONS(6361), - [anon_sym_BSLASHAutocite] = ACTIONS(6361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHvolcite] = ACTIONS(6361), - [anon_sym_BSLASHVolcite] = ACTIONS(6361), - [anon_sym_BSLASHpvolcite] = ACTIONS(6361), - [anon_sym_BSLASHPvolcite] = ACTIONS(6361), - [anon_sym_BSLASHfvolcite] = ACTIONS(6361), - [anon_sym_BSLASHftvolcite] = ACTIONS(6361), - [anon_sym_BSLASHsvolcite] = ACTIONS(6361), - [anon_sym_BSLASHSvolcite] = ACTIONS(6361), - [anon_sym_BSLASHtvolcite] = ACTIONS(6361), - [anon_sym_BSLASHTvolcite] = ACTIONS(6361), - [anon_sym_BSLASHavolcite] = ACTIONS(6361), - [anon_sym_BSLASHAvolcite] = ACTIONS(6361), - [anon_sym_BSLASHnotecite] = ACTIONS(6361), - [anon_sym_BSLASHNotecite] = ACTIONS(6361), - [anon_sym_BSLASHpnotecite] = ACTIONS(6361), - [anon_sym_BSLASHPnotecite] = ACTIONS(6361), - [anon_sym_BSLASHfnotecite] = ACTIONS(6361), - [anon_sym_BSLASHlabel] = ACTIONS(6361), - [anon_sym_BSLASHref] = ACTIONS(6361), - [anon_sym_BSLASHeqref] = ACTIONS(6361), - [anon_sym_BSLASHvref] = ACTIONS(6361), - [anon_sym_BSLASHVref] = ACTIONS(6361), - [anon_sym_BSLASHautoref] = ACTIONS(6361), - [anon_sym_BSLASHpageref] = ACTIONS(6361), - [anon_sym_BSLASHcref] = ACTIONS(6361), - [anon_sym_BSLASHCref] = ACTIONS(6361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnameCref] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHlabelcref] = ACTIONS(6361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCrefrange] = ACTIONS(6361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnewlabel] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6363), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHdef] = ACTIONS(6361), - [anon_sym_BSLASHlet] = ACTIONS(6361), - [anon_sym_BSLASHleft] = ACTIONS(6361), - [anon_sym_BSLASHbig] = ACTIONS(6361), - [anon_sym_BSLASHBig] = ACTIONS(6361), - [anon_sym_BSLASHbigg] = ACTIONS(6361), - [anon_sym_BSLASHBigg] = ACTIONS(6361), - [anon_sym_BSLASHbigl] = ACTIONS(6361), - [anon_sym_BSLASHBigl] = ACTIONS(6361), - [anon_sym_BSLASHbiggl] = ACTIONS(6361), - [anon_sym_BSLASHBiggl] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6361), - [anon_sym_BSLASHgls] = ACTIONS(6361), - [anon_sym_BSLASHGls] = ACTIONS(6361), - [anon_sym_BSLASHGLS] = ACTIONS(6361), - [anon_sym_BSLASHglspl] = ACTIONS(6361), - [anon_sym_BSLASHGlspl] = ACTIONS(6361), - [anon_sym_BSLASHGLSpl] = ACTIONS(6361), - [anon_sym_BSLASHglsdisp] = ACTIONS(6361), - [anon_sym_BSLASHglslink] = ACTIONS(6361), - [anon_sym_BSLASHglstext] = ACTIONS(6361), - [anon_sym_BSLASHGlstext] = ACTIONS(6361), - [anon_sym_BSLASHGLStext] = ACTIONS(6361), - [anon_sym_BSLASHglsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6361), - [anon_sym_BSLASHglsplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSplural] = ACTIONS(6361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHglsname] = ACTIONS(6361), - [anon_sym_BSLASHGlsname] = ACTIONS(6361), - [anon_sym_BSLASHGLSname] = ACTIONS(6361), - [anon_sym_BSLASHglssymbol] = ACTIONS(6361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6361), - [anon_sym_BSLASHglsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6361), - [anon_sym_BSLASHglsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6361), - [anon_sym_BSLASHglsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6361), - [anon_sym_BSLASHglsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6361), - [anon_sym_BSLASHglsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6361), - [anon_sym_BSLASHnewacronym] = ACTIONS(6361), - [anon_sym_BSLASHacrshort] = ACTIONS(6361), - [anon_sym_BSLASHAcrshort] = ACTIONS(6361), - [anon_sym_BSLASHACRshort] = ACTIONS(6361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6361), - [anon_sym_BSLASHacrlong] = ACTIONS(6361), - [anon_sym_BSLASHAcrlong] = ACTIONS(6361), - [anon_sym_BSLASHACRlong] = ACTIONS(6361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6361), - [anon_sym_BSLASHacrfull] = ACTIONS(6361), - [anon_sym_BSLASHAcrfull] = ACTIONS(6361), - [anon_sym_BSLASHACRfull] = ACTIONS(6361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6361), - [anon_sym_BSLASHacs] = ACTIONS(6361), - [anon_sym_BSLASHAcs] = ACTIONS(6361), - [anon_sym_BSLASHacsp] = ACTIONS(6361), - [anon_sym_BSLASHAcsp] = ACTIONS(6361), - [anon_sym_BSLASHacl] = ACTIONS(6361), - [anon_sym_BSLASHAcl] = ACTIONS(6361), - [anon_sym_BSLASHaclp] = ACTIONS(6361), - [anon_sym_BSLASHAclp] = ACTIONS(6361), - [anon_sym_BSLASHacf] = ACTIONS(6361), - [anon_sym_BSLASHAcf] = ACTIONS(6361), - [anon_sym_BSLASHacfp] = ACTIONS(6361), - [anon_sym_BSLASHAcfp] = ACTIONS(6361), - [anon_sym_BSLASHac] = ACTIONS(6361), - [anon_sym_BSLASHAc] = ACTIONS(6361), - [anon_sym_BSLASHacp] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6361), - [anon_sym_BSLASHcolor] = ACTIONS(6361), - [anon_sym_BSLASHcolorbox] = ACTIONS(6361), - [anon_sym_BSLASHtextcolor] = ACTIONS(6361), - [anon_sym_BSLASHpagecolor] = ACTIONS(6361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6361), - [anon_sym_BSLASHtext] = ACTIONS(6361), - [anon_sym_BSLASHintertext] = ACTIONS(6361), - [anon_sym_shortintertext] = ACTIONS(6361), - }, - [1805] = { - [sym_command_name] = ACTIONS(6365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6365), - [anon_sym_LBRACK] = ACTIONS(6367), - [anon_sym_RBRACK] = ACTIONS(6367), - [anon_sym_COMMA] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(6367), - [anon_sym_LPAREN] = ACTIONS(6367), - [anon_sym_RPAREN] = ACTIONS(6367), - [anon_sym_LBRACE] = ACTIONS(6367), - [sym_word] = ACTIONS(6365), - [sym_placeholder] = ACTIONS(6367), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6367), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_LT] = ACTIONS(6365), - [anon_sym_GT] = ACTIONS(6365), - [anon_sym_BANG] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_SQUOTE] = ACTIONS(6365), - [anon_sym__] = ACTIONS(6367), - [anon_sym_CARET] = ACTIONS(6367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6367), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6367), - [anon_sym_DOLLAR] = ACTIONS(6365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6367), - [anon_sym_BSLASHbegin] = ACTIONS(6365), - [anon_sym_BSLASHtitle] = ACTIONS(6365), - [anon_sym_BSLASHauthor] = ACTIONS(6365), - [anon_sym_BSLASHusepackage] = ACTIONS(6365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6365), - [anon_sym_BSLASHinclude] = ACTIONS(6365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6365), - [anon_sym_BSLASHinput] = ACTIONS(6365), - [anon_sym_BSLASHsubfile] = ACTIONS(6365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6365), - [anon_sym_BSLASHbibliography] = ACTIONS(6365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6365), - [anon_sym_BSLASHincludesvg] = ACTIONS(6365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6365), - [anon_sym_BSLASHimport] = ACTIONS(6365), - [anon_sym_BSLASHsubimport] = ACTIONS(6365), - [anon_sym_BSLASHinputfrom] = ACTIONS(6365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6365), - [anon_sym_BSLASHincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHcaption] = ACTIONS(6365), - [anon_sym_BSLASHcite] = ACTIONS(6365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCite] = ACTIONS(6365), - [anon_sym_BSLASHnocite] = ACTIONS(6365), - [anon_sym_BSLASHcitet] = ACTIONS(6365), - [anon_sym_BSLASHcitep] = ACTIONS(6365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteauthor] = ACTIONS(6365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitetitle] = ACTIONS(6365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteyear] = ACTIONS(6365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitedate] = ACTIONS(6365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteurl] = ACTIONS(6365), - [anon_sym_BSLASHfullcite] = ACTIONS(6365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6365), - [anon_sym_BSLASHcitealt] = ACTIONS(6365), - [anon_sym_BSLASHcitealp] = ACTIONS(6365), - [anon_sym_BSLASHcitetext] = ACTIONS(6365), - [anon_sym_BSLASHparencite] = ACTIONS(6365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHParencite] = ACTIONS(6365), - [anon_sym_BSLASHfootcite] = ACTIONS(6365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6365), - [anon_sym_BSLASHtextcite] = ACTIONS(6365), - [anon_sym_BSLASHTextcite] = ACTIONS(6365), - [anon_sym_BSLASHsmartcite] = ACTIONS(6365), - [anon_sym_BSLASHSmartcite] = ACTIONS(6365), - [anon_sym_BSLASHsupercite] = ACTIONS(6365), - [anon_sym_BSLASHautocite] = ACTIONS(6365), - [anon_sym_BSLASHAutocite] = ACTIONS(6365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHvolcite] = ACTIONS(6365), - [anon_sym_BSLASHVolcite] = ACTIONS(6365), - [anon_sym_BSLASHpvolcite] = ACTIONS(6365), - [anon_sym_BSLASHPvolcite] = ACTIONS(6365), - [anon_sym_BSLASHfvolcite] = ACTIONS(6365), - [anon_sym_BSLASHftvolcite] = ACTIONS(6365), - [anon_sym_BSLASHsvolcite] = ACTIONS(6365), - [anon_sym_BSLASHSvolcite] = ACTIONS(6365), - [anon_sym_BSLASHtvolcite] = ACTIONS(6365), - [anon_sym_BSLASHTvolcite] = ACTIONS(6365), - [anon_sym_BSLASHavolcite] = ACTIONS(6365), - [anon_sym_BSLASHAvolcite] = ACTIONS(6365), - [anon_sym_BSLASHnotecite] = ACTIONS(6365), - [anon_sym_BSLASHNotecite] = ACTIONS(6365), - [anon_sym_BSLASHpnotecite] = ACTIONS(6365), - [anon_sym_BSLASHPnotecite] = ACTIONS(6365), - [anon_sym_BSLASHfnotecite] = ACTIONS(6365), - [anon_sym_BSLASHlabel] = ACTIONS(6365), - [anon_sym_BSLASHref] = ACTIONS(6365), - [anon_sym_BSLASHeqref] = ACTIONS(6365), - [anon_sym_BSLASHvref] = ACTIONS(6365), - [anon_sym_BSLASHVref] = ACTIONS(6365), - [anon_sym_BSLASHautoref] = ACTIONS(6365), - [anon_sym_BSLASHpageref] = ACTIONS(6365), - [anon_sym_BSLASHcref] = ACTIONS(6365), - [anon_sym_BSLASHCref] = ACTIONS(6365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnameCref] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHlabelcref] = ACTIONS(6365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCrefrange] = ACTIONS(6365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnewlabel] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6367), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHdef] = ACTIONS(6365), - [anon_sym_BSLASHlet] = ACTIONS(6365), - [anon_sym_BSLASHleft] = ACTIONS(6365), - [anon_sym_BSLASHbig] = ACTIONS(6365), - [anon_sym_BSLASHBig] = ACTIONS(6365), - [anon_sym_BSLASHbigg] = ACTIONS(6365), - [anon_sym_BSLASHBigg] = ACTIONS(6365), - [anon_sym_BSLASHbigl] = ACTIONS(6365), - [anon_sym_BSLASHBigl] = ACTIONS(6365), - [anon_sym_BSLASHbiggl] = ACTIONS(6365), - [anon_sym_BSLASHBiggl] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6365), - [anon_sym_BSLASHgls] = ACTIONS(6365), - [anon_sym_BSLASHGls] = ACTIONS(6365), - [anon_sym_BSLASHGLS] = ACTIONS(6365), - [anon_sym_BSLASHglspl] = ACTIONS(6365), - [anon_sym_BSLASHGlspl] = ACTIONS(6365), - [anon_sym_BSLASHGLSpl] = ACTIONS(6365), - [anon_sym_BSLASHglsdisp] = ACTIONS(6365), - [anon_sym_BSLASHglslink] = ACTIONS(6365), - [anon_sym_BSLASHglstext] = ACTIONS(6365), - [anon_sym_BSLASHGlstext] = ACTIONS(6365), - [anon_sym_BSLASHGLStext] = ACTIONS(6365), - [anon_sym_BSLASHglsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6365), - [anon_sym_BSLASHglsplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSplural] = ACTIONS(6365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHglsname] = ACTIONS(6365), - [anon_sym_BSLASHGlsname] = ACTIONS(6365), - [anon_sym_BSLASHGLSname] = ACTIONS(6365), - [anon_sym_BSLASHglssymbol] = ACTIONS(6365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6365), - [anon_sym_BSLASHglsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6365), - [anon_sym_BSLASHglsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6365), - [anon_sym_BSLASHglsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6365), - [anon_sym_BSLASHglsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6365), - [anon_sym_BSLASHglsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6365), - [anon_sym_BSLASHnewacronym] = ACTIONS(6365), - [anon_sym_BSLASHacrshort] = ACTIONS(6365), - [anon_sym_BSLASHAcrshort] = ACTIONS(6365), - [anon_sym_BSLASHACRshort] = ACTIONS(6365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6365), - [anon_sym_BSLASHacrlong] = ACTIONS(6365), - [anon_sym_BSLASHAcrlong] = ACTIONS(6365), - [anon_sym_BSLASHACRlong] = ACTIONS(6365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6365), - [anon_sym_BSLASHacrfull] = ACTIONS(6365), - [anon_sym_BSLASHAcrfull] = ACTIONS(6365), - [anon_sym_BSLASHACRfull] = ACTIONS(6365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6365), - [anon_sym_BSLASHacs] = ACTIONS(6365), - [anon_sym_BSLASHAcs] = ACTIONS(6365), - [anon_sym_BSLASHacsp] = ACTIONS(6365), - [anon_sym_BSLASHAcsp] = ACTIONS(6365), - [anon_sym_BSLASHacl] = ACTIONS(6365), - [anon_sym_BSLASHAcl] = ACTIONS(6365), - [anon_sym_BSLASHaclp] = ACTIONS(6365), - [anon_sym_BSLASHAclp] = ACTIONS(6365), - [anon_sym_BSLASHacf] = ACTIONS(6365), - [anon_sym_BSLASHAcf] = ACTIONS(6365), - [anon_sym_BSLASHacfp] = ACTIONS(6365), - [anon_sym_BSLASHAcfp] = ACTIONS(6365), - [anon_sym_BSLASHac] = ACTIONS(6365), - [anon_sym_BSLASHAc] = ACTIONS(6365), - [anon_sym_BSLASHacp] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6365), - [anon_sym_BSLASHcolor] = ACTIONS(6365), - [anon_sym_BSLASHcolorbox] = ACTIONS(6365), - [anon_sym_BSLASHtextcolor] = ACTIONS(6365), - [anon_sym_BSLASHpagecolor] = ACTIONS(6365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6365), - [anon_sym_BSLASHtext] = ACTIONS(6365), - [anon_sym_BSLASHintertext] = ACTIONS(6365), - [anon_sym_shortintertext] = ACTIONS(6365), - }, - [1806] = { - [sym_command_name] = ACTIONS(6369), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6369), - [anon_sym_LBRACK] = ACTIONS(6371), - [anon_sym_RBRACK] = ACTIONS(6371), - [anon_sym_COMMA] = ACTIONS(6371), - [anon_sym_EQ] = ACTIONS(6371), - [anon_sym_LPAREN] = ACTIONS(6371), - [anon_sym_RPAREN] = ACTIONS(6371), - [anon_sym_LBRACE] = ACTIONS(6371), - [sym_word] = ACTIONS(6369), - [sym_placeholder] = ACTIONS(6371), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6371), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_LT] = ACTIONS(6369), - [anon_sym_GT] = ACTIONS(6369), - [anon_sym_BANG] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_SQUOTE] = ACTIONS(6369), - [anon_sym__] = ACTIONS(6371), - [anon_sym_CARET] = ACTIONS(6371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6371), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6371), - [anon_sym_DOLLAR] = ACTIONS(6369), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6371), - [anon_sym_BSLASHbegin] = ACTIONS(6369), - [anon_sym_BSLASHtitle] = ACTIONS(6369), - [anon_sym_BSLASHauthor] = ACTIONS(6369), - [anon_sym_BSLASHusepackage] = ACTIONS(6369), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6369), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6369), - [anon_sym_BSLASHinclude] = ACTIONS(6369), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6369), - [anon_sym_BSLASHinput] = ACTIONS(6369), - [anon_sym_BSLASHsubfile] = ACTIONS(6369), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6369), - [anon_sym_BSLASHbibliography] = ACTIONS(6369), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6369), - [anon_sym_BSLASHincludesvg] = ACTIONS(6369), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6369), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6369), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6369), - [anon_sym_BSLASHimport] = ACTIONS(6369), - [anon_sym_BSLASHsubimport] = ACTIONS(6369), - [anon_sym_BSLASHinputfrom] = ACTIONS(6369), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6369), - [anon_sym_BSLASHincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHcaption] = ACTIONS(6369), - [anon_sym_BSLASHcite] = ACTIONS(6369), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCite] = ACTIONS(6369), - [anon_sym_BSLASHnocite] = ACTIONS(6369), - [anon_sym_BSLASHcitet] = ACTIONS(6369), - [anon_sym_BSLASHcitep] = ACTIONS(6369), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteauthor] = ACTIONS(6369), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6369), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitetitle] = ACTIONS(6369), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteyear] = ACTIONS(6369), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitedate] = ACTIONS(6369), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteurl] = ACTIONS(6369), - [anon_sym_BSLASHfullcite] = ACTIONS(6369), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6369), - [anon_sym_BSLASHcitealt] = ACTIONS(6369), - [anon_sym_BSLASHcitealp] = ACTIONS(6369), - [anon_sym_BSLASHcitetext] = ACTIONS(6369), - [anon_sym_BSLASHparencite] = ACTIONS(6369), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHParencite] = ACTIONS(6369), - [anon_sym_BSLASHfootcite] = ACTIONS(6369), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6369), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6369), - [anon_sym_BSLASHtextcite] = ACTIONS(6369), - [anon_sym_BSLASHTextcite] = ACTIONS(6369), - [anon_sym_BSLASHsmartcite] = ACTIONS(6369), - [anon_sym_BSLASHSmartcite] = ACTIONS(6369), - [anon_sym_BSLASHsupercite] = ACTIONS(6369), - [anon_sym_BSLASHautocite] = ACTIONS(6369), - [anon_sym_BSLASHAutocite] = ACTIONS(6369), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHvolcite] = ACTIONS(6369), - [anon_sym_BSLASHVolcite] = ACTIONS(6369), - [anon_sym_BSLASHpvolcite] = ACTIONS(6369), - [anon_sym_BSLASHPvolcite] = ACTIONS(6369), - [anon_sym_BSLASHfvolcite] = ACTIONS(6369), - [anon_sym_BSLASHftvolcite] = ACTIONS(6369), - [anon_sym_BSLASHsvolcite] = ACTIONS(6369), - [anon_sym_BSLASHSvolcite] = ACTIONS(6369), - [anon_sym_BSLASHtvolcite] = ACTIONS(6369), - [anon_sym_BSLASHTvolcite] = ACTIONS(6369), - [anon_sym_BSLASHavolcite] = ACTIONS(6369), - [anon_sym_BSLASHAvolcite] = ACTIONS(6369), - [anon_sym_BSLASHnotecite] = ACTIONS(6369), - [anon_sym_BSLASHNotecite] = ACTIONS(6369), - [anon_sym_BSLASHpnotecite] = ACTIONS(6369), - [anon_sym_BSLASHPnotecite] = ACTIONS(6369), - [anon_sym_BSLASHfnotecite] = ACTIONS(6369), - [anon_sym_BSLASHlabel] = ACTIONS(6369), - [anon_sym_BSLASHref] = ACTIONS(6369), - [anon_sym_BSLASHeqref] = ACTIONS(6369), - [anon_sym_BSLASHvref] = ACTIONS(6369), - [anon_sym_BSLASHVref] = ACTIONS(6369), - [anon_sym_BSLASHautoref] = ACTIONS(6369), - [anon_sym_BSLASHpageref] = ACTIONS(6369), - [anon_sym_BSLASHcref] = ACTIONS(6369), - [anon_sym_BSLASHCref] = ACTIONS(6369), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnameCref] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHlabelcref] = ACTIONS(6369), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCrefrange] = ACTIONS(6369), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnewlabel] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6369), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6369), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6371), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHdef] = ACTIONS(6369), - [anon_sym_BSLASHlet] = ACTIONS(6369), - [anon_sym_BSLASHleft] = ACTIONS(6369), - [anon_sym_BSLASHbig] = ACTIONS(6369), - [anon_sym_BSLASHBig] = ACTIONS(6369), - [anon_sym_BSLASHbigg] = ACTIONS(6369), - [anon_sym_BSLASHBigg] = ACTIONS(6369), - [anon_sym_BSLASHbigl] = ACTIONS(6369), - [anon_sym_BSLASHBigl] = ACTIONS(6369), - [anon_sym_BSLASHbiggl] = ACTIONS(6369), - [anon_sym_BSLASHBiggl] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6369), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6369), - [anon_sym_BSLASHgls] = ACTIONS(6369), - [anon_sym_BSLASHGls] = ACTIONS(6369), - [anon_sym_BSLASHGLS] = ACTIONS(6369), - [anon_sym_BSLASHglspl] = ACTIONS(6369), - [anon_sym_BSLASHGlspl] = ACTIONS(6369), - [anon_sym_BSLASHGLSpl] = ACTIONS(6369), - [anon_sym_BSLASHglsdisp] = ACTIONS(6369), - [anon_sym_BSLASHglslink] = ACTIONS(6369), - [anon_sym_BSLASHglstext] = ACTIONS(6369), - [anon_sym_BSLASHGlstext] = ACTIONS(6369), - [anon_sym_BSLASHGLStext] = ACTIONS(6369), - [anon_sym_BSLASHglsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6369), - [anon_sym_BSLASHglsplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSplural] = ACTIONS(6369), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHglsname] = ACTIONS(6369), - [anon_sym_BSLASHGlsname] = ACTIONS(6369), - [anon_sym_BSLASHGLSname] = ACTIONS(6369), - [anon_sym_BSLASHglssymbol] = ACTIONS(6369), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6369), - [anon_sym_BSLASHglsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6369), - [anon_sym_BSLASHglsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6369), - [anon_sym_BSLASHglsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6369), - [anon_sym_BSLASHglsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6369), - [anon_sym_BSLASHglsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6369), - [anon_sym_BSLASHnewacronym] = ACTIONS(6369), - [anon_sym_BSLASHacrshort] = ACTIONS(6369), - [anon_sym_BSLASHAcrshort] = ACTIONS(6369), - [anon_sym_BSLASHACRshort] = ACTIONS(6369), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6369), - [anon_sym_BSLASHacrlong] = ACTIONS(6369), - [anon_sym_BSLASHAcrlong] = ACTIONS(6369), - [anon_sym_BSLASHACRlong] = ACTIONS(6369), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6369), - [anon_sym_BSLASHacrfull] = ACTIONS(6369), - [anon_sym_BSLASHAcrfull] = ACTIONS(6369), - [anon_sym_BSLASHACRfull] = ACTIONS(6369), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6369), - [anon_sym_BSLASHacs] = ACTIONS(6369), - [anon_sym_BSLASHAcs] = ACTIONS(6369), - [anon_sym_BSLASHacsp] = ACTIONS(6369), - [anon_sym_BSLASHAcsp] = ACTIONS(6369), - [anon_sym_BSLASHacl] = ACTIONS(6369), - [anon_sym_BSLASHAcl] = ACTIONS(6369), - [anon_sym_BSLASHaclp] = ACTIONS(6369), - [anon_sym_BSLASHAclp] = ACTIONS(6369), - [anon_sym_BSLASHacf] = ACTIONS(6369), - [anon_sym_BSLASHAcf] = ACTIONS(6369), - [anon_sym_BSLASHacfp] = ACTIONS(6369), - [anon_sym_BSLASHAcfp] = ACTIONS(6369), - [anon_sym_BSLASHac] = ACTIONS(6369), - [anon_sym_BSLASHAc] = ACTIONS(6369), - [anon_sym_BSLASHacp] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6369), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6369), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6369), - [anon_sym_BSLASHcolor] = ACTIONS(6369), - [anon_sym_BSLASHcolorbox] = ACTIONS(6369), - [anon_sym_BSLASHtextcolor] = ACTIONS(6369), - [anon_sym_BSLASHpagecolor] = ACTIONS(6369), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6369), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6369), - [anon_sym_BSLASHtext] = ACTIONS(6369), - [anon_sym_BSLASHintertext] = ACTIONS(6369), - [anon_sym_shortintertext] = ACTIONS(6369), - }, - [1807] = { - [sym_command_name] = ACTIONS(6485), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6485), - [anon_sym_LBRACK] = ACTIONS(6487), - [anon_sym_RBRACK] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(6487), - [anon_sym_EQ] = ACTIONS(6487), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(6487), - [anon_sym_LBRACE] = ACTIONS(6487), - [anon_sym_RBRACE] = ACTIONS(6487), - [sym_word] = ACTIONS(6485), - [sym_placeholder] = ACTIONS(6487), - [anon_sym_PLUS] = ACTIONS(6487), - [anon_sym_DASH] = ACTIONS(6487), - [anon_sym_STAR] = ACTIONS(6487), - [anon_sym_SLASH] = ACTIONS(6487), - [anon_sym_LT] = ACTIONS(6485), - [anon_sym_GT] = ACTIONS(6485), - [anon_sym_BANG] = ACTIONS(6485), - [anon_sym_PIPE] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6485), - [anon_sym_SQUOTE] = ACTIONS(6485), - [anon_sym__] = ACTIONS(6487), - [anon_sym_CARET] = ACTIONS(6487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6487), - [anon_sym_DOLLAR] = ACTIONS(6485), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6487), - [anon_sym_BSLASHtitle] = ACTIONS(6485), - [anon_sym_BSLASHauthor] = ACTIONS(6485), - [anon_sym_BSLASHusepackage] = ACTIONS(6485), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6485), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6485), - [anon_sym_BSLASHinclude] = ACTIONS(6485), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6485), - [anon_sym_BSLASHinput] = ACTIONS(6485), - [anon_sym_BSLASHsubfile] = ACTIONS(6485), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6485), - [anon_sym_BSLASHbibliography] = ACTIONS(6485), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6485), - [anon_sym_BSLASHincludesvg] = ACTIONS(6485), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6485), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6485), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6485), - [anon_sym_BSLASHimport] = ACTIONS(6485), - [anon_sym_BSLASHsubimport] = ACTIONS(6485), - [anon_sym_BSLASHinputfrom] = ACTIONS(6485), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6485), - [anon_sym_BSLASHincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHcaption] = ACTIONS(6485), - [anon_sym_BSLASHcite] = ACTIONS(6485), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCite] = ACTIONS(6485), - [anon_sym_BSLASHnocite] = ACTIONS(6485), - [anon_sym_BSLASHcitet] = ACTIONS(6485), - [anon_sym_BSLASHcitep] = ACTIONS(6485), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteauthor] = ACTIONS(6485), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6485), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitetitle] = ACTIONS(6485), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteyear] = ACTIONS(6485), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitedate] = ACTIONS(6485), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteurl] = ACTIONS(6485), - [anon_sym_BSLASHfullcite] = ACTIONS(6485), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6485), - [anon_sym_BSLASHcitealt] = ACTIONS(6485), - [anon_sym_BSLASHcitealp] = ACTIONS(6485), - [anon_sym_BSLASHcitetext] = ACTIONS(6485), - [anon_sym_BSLASHparencite] = ACTIONS(6485), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHParencite] = ACTIONS(6485), - [anon_sym_BSLASHfootcite] = ACTIONS(6485), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6485), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6485), - [anon_sym_BSLASHtextcite] = ACTIONS(6485), - [anon_sym_BSLASHTextcite] = ACTIONS(6485), - [anon_sym_BSLASHsmartcite] = ACTIONS(6485), - [anon_sym_BSLASHSmartcite] = ACTIONS(6485), - [anon_sym_BSLASHsupercite] = ACTIONS(6485), - [anon_sym_BSLASHautocite] = ACTIONS(6485), - [anon_sym_BSLASHAutocite] = ACTIONS(6485), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHvolcite] = ACTIONS(6485), - [anon_sym_BSLASHVolcite] = ACTIONS(6485), - [anon_sym_BSLASHpvolcite] = ACTIONS(6485), - [anon_sym_BSLASHPvolcite] = ACTIONS(6485), - [anon_sym_BSLASHfvolcite] = ACTIONS(6485), - [anon_sym_BSLASHftvolcite] = ACTIONS(6485), - [anon_sym_BSLASHsvolcite] = ACTIONS(6485), - [anon_sym_BSLASHSvolcite] = ACTIONS(6485), - [anon_sym_BSLASHtvolcite] = ACTIONS(6485), - [anon_sym_BSLASHTvolcite] = ACTIONS(6485), - [anon_sym_BSLASHavolcite] = ACTIONS(6485), - [anon_sym_BSLASHAvolcite] = ACTIONS(6485), - [anon_sym_BSLASHnotecite] = ACTIONS(6485), - [anon_sym_BSLASHNotecite] = ACTIONS(6485), - [anon_sym_BSLASHpnotecite] = ACTIONS(6485), - [anon_sym_BSLASHPnotecite] = ACTIONS(6485), - [anon_sym_BSLASHfnotecite] = ACTIONS(6485), - [anon_sym_BSLASHlabel] = ACTIONS(6485), - [anon_sym_BSLASHref] = ACTIONS(6485), - [anon_sym_BSLASHeqref] = ACTIONS(6485), - [anon_sym_BSLASHvref] = ACTIONS(6485), - [anon_sym_BSLASHVref] = ACTIONS(6485), - [anon_sym_BSLASHautoref] = ACTIONS(6485), - [anon_sym_BSLASHpageref] = ACTIONS(6485), - [anon_sym_BSLASHcref] = ACTIONS(6485), - [anon_sym_BSLASHCref] = ACTIONS(6485), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnameCref] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHlabelcref] = ACTIONS(6485), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCrefrange] = ACTIONS(6485), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnewlabel] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6485), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6485), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6487), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHdef] = ACTIONS(6485), - [anon_sym_BSLASHlet] = ACTIONS(6485), - [anon_sym_BSLASHleft] = ACTIONS(6485), - [anon_sym_BSLASHbig] = ACTIONS(6485), - [anon_sym_BSLASHBig] = ACTIONS(6485), - [anon_sym_BSLASHbigg] = ACTIONS(6485), - [anon_sym_BSLASHBigg] = ACTIONS(6485), - [anon_sym_BSLASHbigl] = ACTIONS(6485), - [anon_sym_BSLASHBigl] = ACTIONS(6485), - [anon_sym_BSLASHbiggl] = ACTIONS(6485), - [anon_sym_BSLASHBiggl] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6485), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6485), - [anon_sym_BSLASHgls] = ACTIONS(6485), - [anon_sym_BSLASHGls] = ACTIONS(6485), - [anon_sym_BSLASHGLS] = ACTIONS(6485), - [anon_sym_BSLASHglspl] = ACTIONS(6485), - [anon_sym_BSLASHGlspl] = ACTIONS(6485), - [anon_sym_BSLASHGLSpl] = ACTIONS(6485), - [anon_sym_BSLASHglsdisp] = ACTIONS(6485), - [anon_sym_BSLASHglslink] = ACTIONS(6485), - [anon_sym_BSLASHglstext] = ACTIONS(6485), - [anon_sym_BSLASHGlstext] = ACTIONS(6485), - [anon_sym_BSLASHGLStext] = ACTIONS(6485), - [anon_sym_BSLASHglsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6485), - [anon_sym_BSLASHglsplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSplural] = ACTIONS(6485), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHglsname] = ACTIONS(6485), - [anon_sym_BSLASHGlsname] = ACTIONS(6485), - [anon_sym_BSLASHGLSname] = ACTIONS(6485), - [anon_sym_BSLASHglssymbol] = ACTIONS(6485), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6485), - [anon_sym_BSLASHglsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6485), - [anon_sym_BSLASHglsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6485), - [anon_sym_BSLASHglsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6485), - [anon_sym_BSLASHglsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6485), - [anon_sym_BSLASHglsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6485), - [anon_sym_BSLASHnewacronym] = ACTIONS(6485), - [anon_sym_BSLASHacrshort] = ACTIONS(6485), - [anon_sym_BSLASHAcrshort] = ACTIONS(6485), - [anon_sym_BSLASHACRshort] = ACTIONS(6485), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6485), - [anon_sym_BSLASHacrlong] = ACTIONS(6485), - [anon_sym_BSLASHAcrlong] = ACTIONS(6485), - [anon_sym_BSLASHACRlong] = ACTIONS(6485), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6485), - [anon_sym_BSLASHacrfull] = ACTIONS(6485), - [anon_sym_BSLASHAcrfull] = ACTIONS(6485), - [anon_sym_BSLASHACRfull] = ACTIONS(6485), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6485), - [anon_sym_BSLASHacs] = ACTIONS(6485), - [anon_sym_BSLASHAcs] = ACTIONS(6485), - [anon_sym_BSLASHacsp] = ACTIONS(6485), - [anon_sym_BSLASHAcsp] = ACTIONS(6485), - [anon_sym_BSLASHacl] = ACTIONS(6485), - [anon_sym_BSLASHAcl] = ACTIONS(6485), - [anon_sym_BSLASHaclp] = ACTIONS(6485), - [anon_sym_BSLASHAclp] = ACTIONS(6485), - [anon_sym_BSLASHacf] = ACTIONS(6485), - [anon_sym_BSLASHAcf] = ACTIONS(6485), - [anon_sym_BSLASHacfp] = ACTIONS(6485), - [anon_sym_BSLASHAcfp] = ACTIONS(6485), - [anon_sym_BSLASHac] = ACTIONS(6485), - [anon_sym_BSLASHAc] = ACTIONS(6485), - [anon_sym_BSLASHacp] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6485), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6485), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6485), - [anon_sym_BSLASHcolor] = ACTIONS(6485), - [anon_sym_BSLASHcolorbox] = ACTIONS(6485), - [anon_sym_BSLASHtextcolor] = ACTIONS(6485), - [anon_sym_BSLASHpagecolor] = ACTIONS(6485), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6485), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6485), - [anon_sym_BSLASHtext] = ACTIONS(6485), - [anon_sym_BSLASHintertext] = ACTIONS(6485), - [anon_sym_shortintertext] = ACTIONS(6485), - }, - [1808] = { - [sym_command_name] = ACTIONS(6473), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6473), - [anon_sym_LBRACK] = ACTIONS(6475), - [anon_sym_RBRACK] = ACTIONS(6475), - [anon_sym_COMMA] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6475), - [anon_sym_LPAREN] = ACTIONS(6475), - [anon_sym_RPAREN] = ACTIONS(6475), - [anon_sym_LBRACE] = ACTIONS(6475), - [anon_sym_RBRACE] = ACTIONS(6475), - [sym_word] = ACTIONS(6473), - [sym_placeholder] = ACTIONS(6475), - [anon_sym_PLUS] = ACTIONS(6475), - [anon_sym_DASH] = ACTIONS(6475), - [anon_sym_STAR] = ACTIONS(6475), - [anon_sym_SLASH] = ACTIONS(6475), - [anon_sym_LT] = ACTIONS(6473), - [anon_sym_GT] = ACTIONS(6473), - [anon_sym_BANG] = ACTIONS(6473), - [anon_sym_PIPE] = ACTIONS(6473), - [anon_sym_COLON] = ACTIONS(6473), - [anon_sym_SQUOTE] = ACTIONS(6473), - [anon_sym__] = ACTIONS(6475), - [anon_sym_CARET] = ACTIONS(6475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6475), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6475), - [anon_sym_DOLLAR] = ACTIONS(6473), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6475), - [anon_sym_BSLASHtitle] = ACTIONS(6473), - [anon_sym_BSLASHauthor] = ACTIONS(6473), - [anon_sym_BSLASHusepackage] = ACTIONS(6473), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6473), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6473), - [anon_sym_BSLASHinclude] = ACTIONS(6473), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6473), - [anon_sym_BSLASHinput] = ACTIONS(6473), - [anon_sym_BSLASHsubfile] = ACTIONS(6473), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6473), - [anon_sym_BSLASHbibliography] = ACTIONS(6473), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6473), - [anon_sym_BSLASHincludesvg] = ACTIONS(6473), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6473), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6473), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6473), - [anon_sym_BSLASHimport] = ACTIONS(6473), - [anon_sym_BSLASHsubimport] = ACTIONS(6473), - [anon_sym_BSLASHinputfrom] = ACTIONS(6473), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6473), - [anon_sym_BSLASHincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHcaption] = ACTIONS(6473), - [anon_sym_BSLASHcite] = ACTIONS(6473), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCite] = ACTIONS(6473), - [anon_sym_BSLASHnocite] = ACTIONS(6473), - [anon_sym_BSLASHcitet] = ACTIONS(6473), - [anon_sym_BSLASHcitep] = ACTIONS(6473), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteauthor] = ACTIONS(6473), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6473), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitetitle] = ACTIONS(6473), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteyear] = ACTIONS(6473), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitedate] = ACTIONS(6473), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteurl] = ACTIONS(6473), - [anon_sym_BSLASHfullcite] = ACTIONS(6473), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6473), - [anon_sym_BSLASHcitealt] = ACTIONS(6473), - [anon_sym_BSLASHcitealp] = ACTIONS(6473), - [anon_sym_BSLASHcitetext] = ACTIONS(6473), - [anon_sym_BSLASHparencite] = ACTIONS(6473), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHParencite] = ACTIONS(6473), - [anon_sym_BSLASHfootcite] = ACTIONS(6473), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6473), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6473), - [anon_sym_BSLASHtextcite] = ACTIONS(6473), - [anon_sym_BSLASHTextcite] = ACTIONS(6473), - [anon_sym_BSLASHsmartcite] = ACTIONS(6473), - [anon_sym_BSLASHSmartcite] = ACTIONS(6473), - [anon_sym_BSLASHsupercite] = ACTIONS(6473), - [anon_sym_BSLASHautocite] = ACTIONS(6473), - [anon_sym_BSLASHAutocite] = ACTIONS(6473), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHvolcite] = ACTIONS(6473), - [anon_sym_BSLASHVolcite] = ACTIONS(6473), - [anon_sym_BSLASHpvolcite] = ACTIONS(6473), - [anon_sym_BSLASHPvolcite] = ACTIONS(6473), - [anon_sym_BSLASHfvolcite] = ACTIONS(6473), - [anon_sym_BSLASHftvolcite] = ACTIONS(6473), - [anon_sym_BSLASHsvolcite] = ACTIONS(6473), - [anon_sym_BSLASHSvolcite] = ACTIONS(6473), - [anon_sym_BSLASHtvolcite] = ACTIONS(6473), - [anon_sym_BSLASHTvolcite] = ACTIONS(6473), - [anon_sym_BSLASHavolcite] = ACTIONS(6473), - [anon_sym_BSLASHAvolcite] = ACTIONS(6473), - [anon_sym_BSLASHnotecite] = ACTIONS(6473), - [anon_sym_BSLASHNotecite] = ACTIONS(6473), - [anon_sym_BSLASHpnotecite] = ACTIONS(6473), - [anon_sym_BSLASHPnotecite] = ACTIONS(6473), - [anon_sym_BSLASHfnotecite] = ACTIONS(6473), - [anon_sym_BSLASHlabel] = ACTIONS(6473), - [anon_sym_BSLASHref] = ACTIONS(6473), - [anon_sym_BSLASHeqref] = ACTIONS(6473), - [anon_sym_BSLASHvref] = ACTIONS(6473), - [anon_sym_BSLASHVref] = ACTIONS(6473), - [anon_sym_BSLASHautoref] = ACTIONS(6473), - [anon_sym_BSLASHpageref] = ACTIONS(6473), - [anon_sym_BSLASHcref] = ACTIONS(6473), - [anon_sym_BSLASHCref] = ACTIONS(6473), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnameCref] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHlabelcref] = ACTIONS(6473), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCrefrange] = ACTIONS(6473), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnewlabel] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6473), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6473), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6475), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHdef] = ACTIONS(6473), - [anon_sym_BSLASHlet] = ACTIONS(6473), - [anon_sym_BSLASHleft] = ACTIONS(6473), - [anon_sym_BSLASHbig] = ACTIONS(6473), - [anon_sym_BSLASHBig] = ACTIONS(6473), - [anon_sym_BSLASHbigg] = ACTIONS(6473), - [anon_sym_BSLASHBigg] = ACTIONS(6473), - [anon_sym_BSLASHbigl] = ACTIONS(6473), - [anon_sym_BSLASHBigl] = ACTIONS(6473), - [anon_sym_BSLASHbiggl] = ACTIONS(6473), - [anon_sym_BSLASHBiggl] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6473), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6473), - [anon_sym_BSLASHgls] = ACTIONS(6473), - [anon_sym_BSLASHGls] = ACTIONS(6473), - [anon_sym_BSLASHGLS] = ACTIONS(6473), - [anon_sym_BSLASHglspl] = ACTIONS(6473), - [anon_sym_BSLASHGlspl] = ACTIONS(6473), - [anon_sym_BSLASHGLSpl] = ACTIONS(6473), - [anon_sym_BSLASHglsdisp] = ACTIONS(6473), - [anon_sym_BSLASHglslink] = ACTIONS(6473), - [anon_sym_BSLASHglstext] = ACTIONS(6473), - [anon_sym_BSLASHGlstext] = ACTIONS(6473), - [anon_sym_BSLASHGLStext] = ACTIONS(6473), - [anon_sym_BSLASHglsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6473), - [anon_sym_BSLASHglsplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSplural] = ACTIONS(6473), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHglsname] = ACTIONS(6473), - [anon_sym_BSLASHGlsname] = ACTIONS(6473), - [anon_sym_BSLASHGLSname] = ACTIONS(6473), - [anon_sym_BSLASHglssymbol] = ACTIONS(6473), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6473), - [anon_sym_BSLASHglsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6473), - [anon_sym_BSLASHglsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6473), - [anon_sym_BSLASHglsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6473), - [anon_sym_BSLASHglsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6473), - [anon_sym_BSLASHglsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6473), - [anon_sym_BSLASHnewacronym] = ACTIONS(6473), - [anon_sym_BSLASHacrshort] = ACTIONS(6473), - [anon_sym_BSLASHAcrshort] = ACTIONS(6473), - [anon_sym_BSLASHACRshort] = ACTIONS(6473), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6473), - [anon_sym_BSLASHacrlong] = ACTIONS(6473), - [anon_sym_BSLASHAcrlong] = ACTIONS(6473), - [anon_sym_BSLASHACRlong] = ACTIONS(6473), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6473), - [anon_sym_BSLASHacrfull] = ACTIONS(6473), - [anon_sym_BSLASHAcrfull] = ACTIONS(6473), - [anon_sym_BSLASHACRfull] = ACTIONS(6473), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6473), - [anon_sym_BSLASHacs] = ACTIONS(6473), - [anon_sym_BSLASHAcs] = ACTIONS(6473), - [anon_sym_BSLASHacsp] = ACTIONS(6473), - [anon_sym_BSLASHAcsp] = ACTIONS(6473), - [anon_sym_BSLASHacl] = ACTIONS(6473), - [anon_sym_BSLASHAcl] = ACTIONS(6473), - [anon_sym_BSLASHaclp] = ACTIONS(6473), - [anon_sym_BSLASHAclp] = ACTIONS(6473), - [anon_sym_BSLASHacf] = ACTIONS(6473), - [anon_sym_BSLASHAcf] = ACTIONS(6473), - [anon_sym_BSLASHacfp] = ACTIONS(6473), - [anon_sym_BSLASHAcfp] = ACTIONS(6473), - [anon_sym_BSLASHac] = ACTIONS(6473), - [anon_sym_BSLASHAc] = ACTIONS(6473), - [anon_sym_BSLASHacp] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6473), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6473), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6473), - [anon_sym_BSLASHcolor] = ACTIONS(6473), - [anon_sym_BSLASHcolorbox] = ACTIONS(6473), - [anon_sym_BSLASHtextcolor] = ACTIONS(6473), - [anon_sym_BSLASHpagecolor] = ACTIONS(6473), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6473), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6473), - [anon_sym_BSLASHtext] = ACTIONS(6473), - [anon_sym_BSLASHintertext] = ACTIONS(6473), - [anon_sym_shortintertext] = ACTIONS(6473), - }, - [1809] = { - [sym_command_name] = ACTIONS(6729), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6729), - [anon_sym_LBRACK] = ACTIONS(6731), - [anon_sym_RBRACK] = ACTIONS(6731), - [anon_sym_COMMA] = ACTIONS(6731), - [anon_sym_EQ] = ACTIONS(6731), - [anon_sym_LPAREN] = ACTIONS(6731), - [anon_sym_RPAREN] = ACTIONS(6731), - [anon_sym_LBRACE] = ACTIONS(6731), - [sym_word] = ACTIONS(6729), - [sym_placeholder] = ACTIONS(6731), - [anon_sym_PLUS] = ACTIONS(6731), - [anon_sym_DASH] = ACTIONS(6731), - [anon_sym_STAR] = ACTIONS(6731), - [anon_sym_SLASH] = ACTIONS(6731), - [anon_sym_LT] = ACTIONS(6729), - [anon_sym_GT] = ACTIONS(6729), - [anon_sym_BANG] = ACTIONS(6729), - [anon_sym_PIPE] = ACTIONS(6729), - [anon_sym_COLON] = ACTIONS(6729), - [anon_sym_SQUOTE] = ACTIONS(6729), - [anon_sym__] = ACTIONS(6731), - [anon_sym_CARET] = ACTIONS(6731), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6731), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6731), - [anon_sym_DOLLAR] = ACTIONS(6729), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6731), - [anon_sym_BSLASHbegin] = ACTIONS(6729), - [anon_sym_BSLASHtitle] = ACTIONS(6729), - [anon_sym_BSLASHauthor] = ACTIONS(6729), - [anon_sym_BSLASHusepackage] = ACTIONS(6729), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6729), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6729), - [anon_sym_BSLASHinclude] = ACTIONS(6729), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6729), - [anon_sym_BSLASHinput] = ACTIONS(6729), - [anon_sym_BSLASHsubfile] = ACTIONS(6729), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6729), - [anon_sym_BSLASHbibliography] = ACTIONS(6729), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6729), - [anon_sym_BSLASHincludesvg] = ACTIONS(6729), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6729), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6729), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6729), - [anon_sym_BSLASHimport] = ACTIONS(6729), - [anon_sym_BSLASHsubimport] = ACTIONS(6729), - [anon_sym_BSLASHinputfrom] = ACTIONS(6729), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6729), - [anon_sym_BSLASHincludefrom] = ACTIONS(6729), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6729), - [anon_sym_BSLASHcaption] = ACTIONS(6729), - [anon_sym_BSLASHcite] = ACTIONS(6729), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6731), - [anon_sym_BSLASHCite] = ACTIONS(6729), - [anon_sym_BSLASHnocite] = ACTIONS(6729), - [anon_sym_BSLASHcitet] = ACTIONS(6729), - [anon_sym_BSLASHcitep] = ACTIONS(6729), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6731), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6731), - [anon_sym_BSLASHciteauthor] = ACTIONS(6729), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6731), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6729), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6731), - [anon_sym_BSLASHcitetitle] = ACTIONS(6729), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6731), - [anon_sym_BSLASHciteyear] = ACTIONS(6729), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6731), - [anon_sym_BSLASHcitedate] = ACTIONS(6729), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6731), - [anon_sym_BSLASHciteurl] = ACTIONS(6729), - [anon_sym_BSLASHfullcite] = ACTIONS(6729), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6729), - [anon_sym_BSLASHcitealt] = ACTIONS(6729), - [anon_sym_BSLASHcitealp] = ACTIONS(6729), - [anon_sym_BSLASHcitetext] = ACTIONS(6729), - [anon_sym_BSLASHparencite] = ACTIONS(6729), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6731), - [anon_sym_BSLASHParencite] = ACTIONS(6729), - [anon_sym_BSLASHfootcite] = ACTIONS(6729), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6729), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6729), - [anon_sym_BSLASHtextcite] = ACTIONS(6729), - [anon_sym_BSLASHTextcite] = ACTIONS(6729), - [anon_sym_BSLASHsmartcite] = ACTIONS(6729), - [anon_sym_BSLASHSmartcite] = ACTIONS(6729), - [anon_sym_BSLASHsupercite] = ACTIONS(6729), - [anon_sym_BSLASHautocite] = ACTIONS(6729), - [anon_sym_BSLASHAutocite] = ACTIONS(6729), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6731), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6731), - [anon_sym_BSLASHvolcite] = ACTIONS(6729), - [anon_sym_BSLASHVolcite] = ACTIONS(6729), - [anon_sym_BSLASHpvolcite] = ACTIONS(6729), - [anon_sym_BSLASHPvolcite] = ACTIONS(6729), - [anon_sym_BSLASHfvolcite] = ACTIONS(6729), - [anon_sym_BSLASHftvolcite] = ACTIONS(6729), - [anon_sym_BSLASHsvolcite] = ACTIONS(6729), - [anon_sym_BSLASHSvolcite] = ACTIONS(6729), - [anon_sym_BSLASHtvolcite] = ACTIONS(6729), - [anon_sym_BSLASHTvolcite] = ACTIONS(6729), - [anon_sym_BSLASHavolcite] = ACTIONS(6729), - [anon_sym_BSLASHAvolcite] = ACTIONS(6729), - [anon_sym_BSLASHnotecite] = ACTIONS(6729), - [anon_sym_BSLASHNotecite] = ACTIONS(6729), - [anon_sym_BSLASHpnotecite] = ACTIONS(6729), - [anon_sym_BSLASHPnotecite] = ACTIONS(6729), - [anon_sym_BSLASHfnotecite] = ACTIONS(6729), - [anon_sym_BSLASHlabel] = ACTIONS(6729), - [anon_sym_BSLASHref] = ACTIONS(6729), - [anon_sym_BSLASHeqref] = ACTIONS(6729), - [anon_sym_BSLASHvref] = ACTIONS(6729), - [anon_sym_BSLASHVref] = ACTIONS(6729), - [anon_sym_BSLASHautoref] = ACTIONS(6729), - [anon_sym_BSLASHpageref] = ACTIONS(6729), - [anon_sym_BSLASHcref] = ACTIONS(6729), - [anon_sym_BSLASHCref] = ACTIONS(6729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6731), - [anon_sym_BSLASHnamecref] = ACTIONS(6729), - [anon_sym_BSLASHnameCref] = ACTIONS(6729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6729), - [anon_sym_BSLASHlabelcref] = ACTIONS(6729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6729), - [anon_sym_BSLASHcrefrange] = ACTIONS(6729), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6731), - [anon_sym_BSLASHCrefrange] = ACTIONS(6729), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6731), - [anon_sym_BSLASHnewlabel] = ACTIONS(6729), - [anon_sym_BSLASHnewcommand] = ACTIONS(6729), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6731), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6729), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6731), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6729), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6731), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6729), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6731), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHdef] = ACTIONS(6729), - [anon_sym_BSLASHlet] = ACTIONS(6729), - [anon_sym_BSLASHleft] = ACTIONS(6729), - [anon_sym_BSLASHbig] = ACTIONS(6729), - [anon_sym_BSLASHBig] = ACTIONS(6729), - [anon_sym_BSLASHbigg] = ACTIONS(6729), - [anon_sym_BSLASHBigg] = ACTIONS(6729), - [anon_sym_BSLASHbigl] = ACTIONS(6729), - [anon_sym_BSLASHBigl] = ACTIONS(6729), - [anon_sym_BSLASHbiggl] = ACTIONS(6729), - [anon_sym_BSLASHBiggl] = ACTIONS(6729), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6729), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6729), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6729), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6729), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6729), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6729), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6729), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6729), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6729), - [anon_sym_BSLASHgls] = ACTIONS(6729), - [anon_sym_BSLASHGls] = ACTIONS(6729), - [anon_sym_BSLASHGLS] = ACTIONS(6729), - [anon_sym_BSLASHglspl] = ACTIONS(6729), - [anon_sym_BSLASHGlspl] = ACTIONS(6729), - [anon_sym_BSLASHGLSpl] = ACTIONS(6729), - [anon_sym_BSLASHglsdisp] = ACTIONS(6729), - [anon_sym_BSLASHglslink] = ACTIONS(6729), - [anon_sym_BSLASHglstext] = ACTIONS(6729), - [anon_sym_BSLASHGlstext] = ACTIONS(6729), - [anon_sym_BSLASHGLStext] = ACTIONS(6729), - [anon_sym_BSLASHglsfirst] = ACTIONS(6729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6729), - [anon_sym_BSLASHglsplural] = ACTIONS(6729), - [anon_sym_BSLASHGlsplural] = ACTIONS(6729), - [anon_sym_BSLASHGLSplural] = ACTIONS(6729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6729), - [anon_sym_BSLASHglsname] = ACTIONS(6729), - [anon_sym_BSLASHGlsname] = ACTIONS(6729), - [anon_sym_BSLASHGLSname] = ACTIONS(6729), - [anon_sym_BSLASHglssymbol] = ACTIONS(6729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6729), - [anon_sym_BSLASHglsdesc] = ACTIONS(6729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6729), - [anon_sym_BSLASHglsuseri] = ACTIONS(6729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6729), - [anon_sym_BSLASHglsuserii] = ACTIONS(6729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6729), - [anon_sym_BSLASHglsuserv] = ACTIONS(6729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6729), - [anon_sym_BSLASHglsuservi] = ACTIONS(6729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6729), - [anon_sym_BSLASHnewacronym] = ACTIONS(6729), - [anon_sym_BSLASHacrshort] = ACTIONS(6729), - [anon_sym_BSLASHAcrshort] = ACTIONS(6729), - [anon_sym_BSLASHACRshort] = ACTIONS(6729), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6729), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6729), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6729), - [anon_sym_BSLASHacrlong] = ACTIONS(6729), - [anon_sym_BSLASHAcrlong] = ACTIONS(6729), - [anon_sym_BSLASHACRlong] = ACTIONS(6729), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6729), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6729), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6729), - [anon_sym_BSLASHacrfull] = ACTIONS(6729), - [anon_sym_BSLASHAcrfull] = ACTIONS(6729), - [anon_sym_BSLASHACRfull] = ACTIONS(6729), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6729), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6729), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6729), - [anon_sym_BSLASHacs] = ACTIONS(6729), - [anon_sym_BSLASHAcs] = ACTIONS(6729), - [anon_sym_BSLASHacsp] = ACTIONS(6729), - [anon_sym_BSLASHAcsp] = ACTIONS(6729), - [anon_sym_BSLASHacl] = ACTIONS(6729), - [anon_sym_BSLASHAcl] = ACTIONS(6729), - [anon_sym_BSLASHaclp] = ACTIONS(6729), - [anon_sym_BSLASHAclp] = ACTIONS(6729), - [anon_sym_BSLASHacf] = ACTIONS(6729), - [anon_sym_BSLASHAcf] = ACTIONS(6729), - [anon_sym_BSLASHacfp] = ACTIONS(6729), - [anon_sym_BSLASHAcfp] = ACTIONS(6729), - [anon_sym_BSLASHac] = ACTIONS(6729), - [anon_sym_BSLASHAc] = ACTIONS(6729), - [anon_sym_BSLASHacp] = ACTIONS(6729), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6729), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6729), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6729), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6729), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6729), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6729), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6729), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6729), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6729), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6729), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6729), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6731), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6729), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6731), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6729), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6729), - [anon_sym_BSLASHcolor] = ACTIONS(6729), - [anon_sym_BSLASHcolorbox] = ACTIONS(6729), - [anon_sym_BSLASHtextcolor] = ACTIONS(6729), - [anon_sym_BSLASHpagecolor] = ACTIONS(6729), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6729), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6729), - [anon_sym_BSLASHtext] = ACTIONS(6729), - [anon_sym_BSLASHintertext] = ACTIONS(6729), - [anon_sym_shortintertext] = ACTIONS(6729), - }, - [1810] = { - [sym_command_name] = ACTIONS(6477), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6477), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_RBRACK] = ACTIONS(6479), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_LPAREN] = ACTIONS(6479), - [anon_sym_RPAREN] = ACTIONS(6479), - [anon_sym_LBRACE] = ACTIONS(6479), - [anon_sym_RBRACE] = ACTIONS(6479), - [sym_word] = ACTIONS(6477), - [sym_placeholder] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6477), - [anon_sym_GT] = ACTIONS(6477), - [anon_sym_BANG] = ACTIONS(6477), - [anon_sym_PIPE] = ACTIONS(6477), - [anon_sym_COLON] = ACTIONS(6477), - [anon_sym_SQUOTE] = ACTIONS(6477), - [anon_sym__] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6479), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6479), - [anon_sym_DOLLAR] = ACTIONS(6477), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6479), - [anon_sym_BSLASHtitle] = ACTIONS(6477), - [anon_sym_BSLASHauthor] = ACTIONS(6477), - [anon_sym_BSLASHusepackage] = ACTIONS(6477), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6477), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6477), - [anon_sym_BSLASHinclude] = ACTIONS(6477), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6477), - [anon_sym_BSLASHinput] = ACTIONS(6477), - [anon_sym_BSLASHsubfile] = ACTIONS(6477), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6477), - [anon_sym_BSLASHbibliography] = ACTIONS(6477), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6477), - [anon_sym_BSLASHincludesvg] = ACTIONS(6477), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6477), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6477), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6477), - [anon_sym_BSLASHimport] = ACTIONS(6477), - [anon_sym_BSLASHsubimport] = ACTIONS(6477), - [anon_sym_BSLASHinputfrom] = ACTIONS(6477), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6477), - [anon_sym_BSLASHincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHcaption] = ACTIONS(6477), - [anon_sym_BSLASHcite] = ACTIONS(6477), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCite] = ACTIONS(6477), - [anon_sym_BSLASHnocite] = ACTIONS(6477), - [anon_sym_BSLASHcitet] = ACTIONS(6477), - [anon_sym_BSLASHcitep] = ACTIONS(6477), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteauthor] = ACTIONS(6477), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6477), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitetitle] = ACTIONS(6477), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteyear] = ACTIONS(6477), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitedate] = ACTIONS(6477), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteurl] = ACTIONS(6477), - [anon_sym_BSLASHfullcite] = ACTIONS(6477), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6477), - [anon_sym_BSLASHcitealt] = ACTIONS(6477), - [anon_sym_BSLASHcitealp] = ACTIONS(6477), - [anon_sym_BSLASHcitetext] = ACTIONS(6477), - [anon_sym_BSLASHparencite] = ACTIONS(6477), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHParencite] = ACTIONS(6477), - [anon_sym_BSLASHfootcite] = ACTIONS(6477), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6477), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6477), - [anon_sym_BSLASHtextcite] = ACTIONS(6477), - [anon_sym_BSLASHTextcite] = ACTIONS(6477), - [anon_sym_BSLASHsmartcite] = ACTIONS(6477), - [anon_sym_BSLASHSmartcite] = ACTIONS(6477), - [anon_sym_BSLASHsupercite] = ACTIONS(6477), - [anon_sym_BSLASHautocite] = ACTIONS(6477), - [anon_sym_BSLASHAutocite] = ACTIONS(6477), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHvolcite] = ACTIONS(6477), - [anon_sym_BSLASHVolcite] = ACTIONS(6477), - [anon_sym_BSLASHpvolcite] = ACTIONS(6477), - [anon_sym_BSLASHPvolcite] = ACTIONS(6477), - [anon_sym_BSLASHfvolcite] = ACTIONS(6477), - [anon_sym_BSLASHftvolcite] = ACTIONS(6477), - [anon_sym_BSLASHsvolcite] = ACTIONS(6477), - [anon_sym_BSLASHSvolcite] = ACTIONS(6477), - [anon_sym_BSLASHtvolcite] = ACTIONS(6477), - [anon_sym_BSLASHTvolcite] = ACTIONS(6477), - [anon_sym_BSLASHavolcite] = ACTIONS(6477), - [anon_sym_BSLASHAvolcite] = ACTIONS(6477), - [anon_sym_BSLASHnotecite] = ACTIONS(6477), - [anon_sym_BSLASHNotecite] = ACTIONS(6477), - [anon_sym_BSLASHpnotecite] = ACTIONS(6477), - [anon_sym_BSLASHPnotecite] = ACTIONS(6477), - [anon_sym_BSLASHfnotecite] = ACTIONS(6477), - [anon_sym_BSLASHlabel] = ACTIONS(6477), - [anon_sym_BSLASHref] = ACTIONS(6477), - [anon_sym_BSLASHeqref] = ACTIONS(6477), - [anon_sym_BSLASHvref] = ACTIONS(6477), - [anon_sym_BSLASHVref] = ACTIONS(6477), - [anon_sym_BSLASHautoref] = ACTIONS(6477), - [anon_sym_BSLASHpageref] = ACTIONS(6477), - [anon_sym_BSLASHcref] = ACTIONS(6477), - [anon_sym_BSLASHCref] = ACTIONS(6477), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnameCref] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHlabelcref] = ACTIONS(6477), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCrefrange] = ACTIONS(6477), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnewlabel] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6477), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6477), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6479), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHdef] = ACTIONS(6477), - [anon_sym_BSLASHlet] = ACTIONS(6477), - [anon_sym_BSLASHleft] = ACTIONS(6477), - [anon_sym_BSLASHbig] = ACTIONS(6477), - [anon_sym_BSLASHBig] = ACTIONS(6477), - [anon_sym_BSLASHbigg] = ACTIONS(6477), - [anon_sym_BSLASHBigg] = ACTIONS(6477), - [anon_sym_BSLASHbigl] = ACTIONS(6477), - [anon_sym_BSLASHBigl] = ACTIONS(6477), - [anon_sym_BSLASHbiggl] = ACTIONS(6477), - [anon_sym_BSLASHBiggl] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6477), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6477), - [anon_sym_BSLASHgls] = ACTIONS(6477), - [anon_sym_BSLASHGls] = ACTIONS(6477), - [anon_sym_BSLASHGLS] = ACTIONS(6477), - [anon_sym_BSLASHglspl] = ACTIONS(6477), - [anon_sym_BSLASHGlspl] = ACTIONS(6477), - [anon_sym_BSLASHGLSpl] = ACTIONS(6477), - [anon_sym_BSLASHglsdisp] = ACTIONS(6477), - [anon_sym_BSLASHglslink] = ACTIONS(6477), - [anon_sym_BSLASHglstext] = ACTIONS(6477), - [anon_sym_BSLASHGlstext] = ACTIONS(6477), - [anon_sym_BSLASHGLStext] = ACTIONS(6477), - [anon_sym_BSLASHglsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6477), - [anon_sym_BSLASHglsplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSplural] = ACTIONS(6477), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHglsname] = ACTIONS(6477), - [anon_sym_BSLASHGlsname] = ACTIONS(6477), - [anon_sym_BSLASHGLSname] = ACTIONS(6477), - [anon_sym_BSLASHglssymbol] = ACTIONS(6477), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6477), - [anon_sym_BSLASHglsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6477), - [anon_sym_BSLASHglsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6477), - [anon_sym_BSLASHglsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6477), - [anon_sym_BSLASHglsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6477), - [anon_sym_BSLASHglsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6477), - [anon_sym_BSLASHnewacronym] = ACTIONS(6477), - [anon_sym_BSLASHacrshort] = ACTIONS(6477), - [anon_sym_BSLASHAcrshort] = ACTIONS(6477), - [anon_sym_BSLASHACRshort] = ACTIONS(6477), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6477), - [anon_sym_BSLASHacrlong] = ACTIONS(6477), - [anon_sym_BSLASHAcrlong] = ACTIONS(6477), - [anon_sym_BSLASHACRlong] = ACTIONS(6477), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6477), - [anon_sym_BSLASHacrfull] = ACTIONS(6477), - [anon_sym_BSLASHAcrfull] = ACTIONS(6477), - [anon_sym_BSLASHACRfull] = ACTIONS(6477), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6477), - [anon_sym_BSLASHacs] = ACTIONS(6477), - [anon_sym_BSLASHAcs] = ACTIONS(6477), - [anon_sym_BSLASHacsp] = ACTIONS(6477), - [anon_sym_BSLASHAcsp] = ACTIONS(6477), - [anon_sym_BSLASHacl] = ACTIONS(6477), - [anon_sym_BSLASHAcl] = ACTIONS(6477), - [anon_sym_BSLASHaclp] = ACTIONS(6477), - [anon_sym_BSLASHAclp] = ACTIONS(6477), - [anon_sym_BSLASHacf] = ACTIONS(6477), - [anon_sym_BSLASHAcf] = ACTIONS(6477), - [anon_sym_BSLASHacfp] = ACTIONS(6477), - [anon_sym_BSLASHAcfp] = ACTIONS(6477), - [anon_sym_BSLASHac] = ACTIONS(6477), - [anon_sym_BSLASHAc] = ACTIONS(6477), - [anon_sym_BSLASHacp] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6477), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6477), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6477), - [anon_sym_BSLASHcolor] = ACTIONS(6477), - [anon_sym_BSLASHcolorbox] = ACTIONS(6477), - [anon_sym_BSLASHtextcolor] = ACTIONS(6477), - [anon_sym_BSLASHpagecolor] = ACTIONS(6477), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6477), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6477), - [anon_sym_BSLASHtext] = ACTIONS(6477), - [anon_sym_BSLASHintertext] = ACTIONS(6477), - [anon_sym_shortintertext] = ACTIONS(6477), - }, - [1811] = { - [sym_command_name] = ACTIONS(6481), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(6483), - [anon_sym_RBRACK] = ACTIONS(6483), - [anon_sym_COMMA] = ACTIONS(6483), - [anon_sym_EQ] = ACTIONS(6483), - [anon_sym_LPAREN] = ACTIONS(6483), - [anon_sym_RPAREN] = ACTIONS(6483), - [anon_sym_LBRACE] = ACTIONS(6483), - [anon_sym_RBRACE] = ACTIONS(6483), - [sym_word] = ACTIONS(6481), - [sym_placeholder] = ACTIONS(6483), - [anon_sym_PLUS] = ACTIONS(6483), - [anon_sym_DASH] = ACTIONS(6483), - [anon_sym_STAR] = ACTIONS(6483), - [anon_sym_SLASH] = ACTIONS(6483), - [anon_sym_LT] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6481), - [anon_sym_BANG] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6481), - [anon_sym_COLON] = ACTIONS(6481), - [anon_sym_SQUOTE] = ACTIONS(6481), - [anon_sym__] = ACTIONS(6483), - [anon_sym_CARET] = ACTIONS(6483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6483), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6483), - [anon_sym_DOLLAR] = ACTIONS(6481), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6483), - [anon_sym_BSLASHtitle] = ACTIONS(6481), - [anon_sym_BSLASHauthor] = ACTIONS(6481), - [anon_sym_BSLASHusepackage] = ACTIONS(6481), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6481), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6481), - [anon_sym_BSLASHinclude] = ACTIONS(6481), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6481), - [anon_sym_BSLASHinput] = ACTIONS(6481), - [anon_sym_BSLASHsubfile] = ACTIONS(6481), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6481), - [anon_sym_BSLASHbibliography] = ACTIONS(6481), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6481), - [anon_sym_BSLASHincludesvg] = ACTIONS(6481), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6481), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6481), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6481), - [anon_sym_BSLASHimport] = ACTIONS(6481), - [anon_sym_BSLASHsubimport] = ACTIONS(6481), - [anon_sym_BSLASHinputfrom] = ACTIONS(6481), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6481), - [anon_sym_BSLASHincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHcaption] = ACTIONS(6481), - [anon_sym_BSLASHcite] = ACTIONS(6481), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCite] = ACTIONS(6481), - [anon_sym_BSLASHnocite] = ACTIONS(6481), - [anon_sym_BSLASHcitet] = ACTIONS(6481), - [anon_sym_BSLASHcitep] = ACTIONS(6481), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteauthor] = ACTIONS(6481), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6481), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitetitle] = ACTIONS(6481), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteyear] = ACTIONS(6481), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitedate] = ACTIONS(6481), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteurl] = ACTIONS(6481), - [anon_sym_BSLASHfullcite] = ACTIONS(6481), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6481), - [anon_sym_BSLASHcitealt] = ACTIONS(6481), - [anon_sym_BSLASHcitealp] = ACTIONS(6481), - [anon_sym_BSLASHcitetext] = ACTIONS(6481), - [anon_sym_BSLASHparencite] = ACTIONS(6481), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHParencite] = ACTIONS(6481), - [anon_sym_BSLASHfootcite] = ACTIONS(6481), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6481), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6481), - [anon_sym_BSLASHtextcite] = ACTIONS(6481), - [anon_sym_BSLASHTextcite] = ACTIONS(6481), - [anon_sym_BSLASHsmartcite] = ACTIONS(6481), - [anon_sym_BSLASHSmartcite] = ACTIONS(6481), - [anon_sym_BSLASHsupercite] = ACTIONS(6481), - [anon_sym_BSLASHautocite] = ACTIONS(6481), - [anon_sym_BSLASHAutocite] = ACTIONS(6481), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHvolcite] = ACTIONS(6481), - [anon_sym_BSLASHVolcite] = ACTIONS(6481), - [anon_sym_BSLASHpvolcite] = ACTIONS(6481), - [anon_sym_BSLASHPvolcite] = ACTIONS(6481), - [anon_sym_BSLASHfvolcite] = ACTIONS(6481), - [anon_sym_BSLASHftvolcite] = ACTIONS(6481), - [anon_sym_BSLASHsvolcite] = ACTIONS(6481), - [anon_sym_BSLASHSvolcite] = ACTIONS(6481), - [anon_sym_BSLASHtvolcite] = ACTIONS(6481), - [anon_sym_BSLASHTvolcite] = ACTIONS(6481), - [anon_sym_BSLASHavolcite] = ACTIONS(6481), - [anon_sym_BSLASHAvolcite] = ACTIONS(6481), - [anon_sym_BSLASHnotecite] = ACTIONS(6481), - [anon_sym_BSLASHNotecite] = ACTIONS(6481), - [anon_sym_BSLASHpnotecite] = ACTIONS(6481), - [anon_sym_BSLASHPnotecite] = ACTIONS(6481), - [anon_sym_BSLASHfnotecite] = ACTIONS(6481), - [anon_sym_BSLASHlabel] = ACTIONS(6481), - [anon_sym_BSLASHref] = ACTIONS(6481), - [anon_sym_BSLASHeqref] = ACTIONS(6481), - [anon_sym_BSLASHvref] = ACTIONS(6481), - [anon_sym_BSLASHVref] = ACTIONS(6481), - [anon_sym_BSLASHautoref] = ACTIONS(6481), - [anon_sym_BSLASHpageref] = ACTIONS(6481), - [anon_sym_BSLASHcref] = ACTIONS(6481), - [anon_sym_BSLASHCref] = ACTIONS(6481), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnameCref] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHlabelcref] = ACTIONS(6481), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCrefrange] = ACTIONS(6481), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnewlabel] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6481), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6481), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6483), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHdef] = ACTIONS(6481), - [anon_sym_BSLASHlet] = ACTIONS(6481), - [anon_sym_BSLASHleft] = ACTIONS(6481), - [anon_sym_BSLASHbig] = ACTIONS(6481), - [anon_sym_BSLASHBig] = ACTIONS(6481), - [anon_sym_BSLASHbigg] = ACTIONS(6481), - [anon_sym_BSLASHBigg] = ACTIONS(6481), - [anon_sym_BSLASHbigl] = ACTIONS(6481), - [anon_sym_BSLASHBigl] = ACTIONS(6481), - [anon_sym_BSLASHbiggl] = ACTIONS(6481), - [anon_sym_BSLASHBiggl] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6481), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6481), - [anon_sym_BSLASHgls] = ACTIONS(6481), - [anon_sym_BSLASHGls] = ACTIONS(6481), - [anon_sym_BSLASHGLS] = ACTIONS(6481), - [anon_sym_BSLASHglspl] = ACTIONS(6481), - [anon_sym_BSLASHGlspl] = ACTIONS(6481), - [anon_sym_BSLASHGLSpl] = ACTIONS(6481), - [anon_sym_BSLASHglsdisp] = ACTIONS(6481), - [anon_sym_BSLASHglslink] = ACTIONS(6481), - [anon_sym_BSLASHglstext] = ACTIONS(6481), - [anon_sym_BSLASHGlstext] = ACTIONS(6481), - [anon_sym_BSLASHGLStext] = ACTIONS(6481), - [anon_sym_BSLASHglsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6481), - [anon_sym_BSLASHglsplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSplural] = ACTIONS(6481), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHglsname] = ACTIONS(6481), - [anon_sym_BSLASHGlsname] = ACTIONS(6481), - [anon_sym_BSLASHGLSname] = ACTIONS(6481), - [anon_sym_BSLASHglssymbol] = ACTIONS(6481), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6481), - [anon_sym_BSLASHglsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6481), - [anon_sym_BSLASHglsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6481), - [anon_sym_BSLASHglsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6481), - [anon_sym_BSLASHglsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6481), - [anon_sym_BSLASHglsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6481), - [anon_sym_BSLASHnewacronym] = ACTIONS(6481), - [anon_sym_BSLASHacrshort] = ACTIONS(6481), - [anon_sym_BSLASHAcrshort] = ACTIONS(6481), - [anon_sym_BSLASHACRshort] = ACTIONS(6481), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6481), - [anon_sym_BSLASHacrlong] = ACTIONS(6481), - [anon_sym_BSLASHAcrlong] = ACTIONS(6481), - [anon_sym_BSLASHACRlong] = ACTIONS(6481), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6481), - [anon_sym_BSLASHacrfull] = ACTIONS(6481), - [anon_sym_BSLASHAcrfull] = ACTIONS(6481), - [anon_sym_BSLASHACRfull] = ACTIONS(6481), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6481), - [anon_sym_BSLASHacs] = ACTIONS(6481), - [anon_sym_BSLASHAcs] = ACTIONS(6481), - [anon_sym_BSLASHacsp] = ACTIONS(6481), - [anon_sym_BSLASHAcsp] = ACTIONS(6481), - [anon_sym_BSLASHacl] = ACTIONS(6481), - [anon_sym_BSLASHAcl] = ACTIONS(6481), - [anon_sym_BSLASHaclp] = ACTIONS(6481), - [anon_sym_BSLASHAclp] = ACTIONS(6481), - [anon_sym_BSLASHacf] = ACTIONS(6481), - [anon_sym_BSLASHAcf] = ACTIONS(6481), - [anon_sym_BSLASHacfp] = ACTIONS(6481), - [anon_sym_BSLASHAcfp] = ACTIONS(6481), - [anon_sym_BSLASHac] = ACTIONS(6481), - [anon_sym_BSLASHAc] = ACTIONS(6481), - [anon_sym_BSLASHacp] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6481), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6481), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6481), - [anon_sym_BSLASHcolor] = ACTIONS(6481), - [anon_sym_BSLASHcolorbox] = ACTIONS(6481), - [anon_sym_BSLASHtextcolor] = ACTIONS(6481), - [anon_sym_BSLASHpagecolor] = ACTIONS(6481), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6481), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6481), - [anon_sym_BSLASHtext] = ACTIONS(6481), - [anon_sym_BSLASHintertext] = ACTIONS(6481), - [anon_sym_shortintertext] = ACTIONS(6481), - }, - [1812] = { - [sym_command_name] = ACTIONS(5968), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5968), - [anon_sym_BSLASHfi] = ACTIONS(6951), - [anon_sym_LPAREN] = ACTIONS(5972), - [anon_sym_RPAREN] = ACTIONS(5972), - [anon_sym_LBRACE] = ACTIONS(5972), - [anon_sym_RBRACE] = ACTIONS(5972), - [anon_sym_BSLASHand] = ACTIONS(5968), - [sym_word] = ACTIONS(5968), - [sym_placeholder] = ACTIONS(5972), - [anon_sym_PLUS] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5972), - [anon_sym_STAR] = ACTIONS(5972), - [anon_sym_SLASH] = ACTIONS(5972), - [anon_sym_LT] = ACTIONS(5968), - [anon_sym_GT] = ACTIONS(5968), - [anon_sym_BANG] = ACTIONS(5968), - [anon_sym_PIPE] = ACTIONS(5968), - [anon_sym_COLON] = ACTIONS(5968), - [anon_sym_SQUOTE] = ACTIONS(5968), - [anon_sym__] = ACTIONS(5972), - [anon_sym_CARET] = ACTIONS(5972), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5972), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5972), - [anon_sym_DOLLAR] = ACTIONS(5968), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5972), - [anon_sym_BSLASHtitle] = ACTIONS(5968), - [anon_sym_BSLASHauthor] = ACTIONS(5968), - [anon_sym_BSLASHusepackage] = ACTIONS(5968), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5968), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5968), - [anon_sym_BSLASHinclude] = ACTIONS(5968), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5968), - [anon_sym_BSLASHinput] = ACTIONS(5968), - [anon_sym_BSLASHsubfile] = ACTIONS(5968), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5968), - [anon_sym_BSLASHbibliography] = ACTIONS(5968), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5968), - [anon_sym_BSLASHincludesvg] = ACTIONS(5968), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5968), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5968), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5968), - [anon_sym_BSLASHimport] = ACTIONS(5968), - [anon_sym_BSLASHsubimport] = ACTIONS(5968), - [anon_sym_BSLASHinputfrom] = ACTIONS(5968), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5968), - [anon_sym_BSLASHincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHcaption] = ACTIONS(5968), - [anon_sym_BSLASHcite] = ACTIONS(5968), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCite] = ACTIONS(5968), - [anon_sym_BSLASHnocite] = ACTIONS(5968), - [anon_sym_BSLASHcitet] = ACTIONS(5968), - [anon_sym_BSLASHcitep] = ACTIONS(5968), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteauthor] = ACTIONS(5968), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5968), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitetitle] = ACTIONS(5968), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteyear] = ACTIONS(5968), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitedate] = ACTIONS(5968), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteurl] = ACTIONS(5968), - [anon_sym_BSLASHfullcite] = ACTIONS(5968), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5968), - [anon_sym_BSLASHcitealt] = ACTIONS(5968), - [anon_sym_BSLASHcitealp] = ACTIONS(5968), - [anon_sym_BSLASHcitetext] = ACTIONS(5968), - [anon_sym_BSLASHparencite] = ACTIONS(5968), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHParencite] = ACTIONS(5968), - [anon_sym_BSLASHfootcite] = ACTIONS(5968), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5968), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5968), - [anon_sym_BSLASHtextcite] = ACTIONS(5968), - [anon_sym_BSLASHTextcite] = ACTIONS(5968), - [anon_sym_BSLASHsmartcite] = ACTIONS(5968), - [anon_sym_BSLASHSmartcite] = ACTIONS(5968), - [anon_sym_BSLASHsupercite] = ACTIONS(5968), - [anon_sym_BSLASHautocite] = ACTIONS(5968), - [anon_sym_BSLASHAutocite] = ACTIONS(5968), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHvolcite] = ACTIONS(5968), - [anon_sym_BSLASHVolcite] = ACTIONS(5968), - [anon_sym_BSLASHpvolcite] = ACTIONS(5968), - [anon_sym_BSLASHPvolcite] = ACTIONS(5968), - [anon_sym_BSLASHfvolcite] = ACTIONS(5968), - [anon_sym_BSLASHftvolcite] = ACTIONS(5968), - [anon_sym_BSLASHsvolcite] = ACTIONS(5968), - [anon_sym_BSLASHSvolcite] = ACTIONS(5968), - [anon_sym_BSLASHtvolcite] = ACTIONS(5968), - [anon_sym_BSLASHTvolcite] = ACTIONS(5968), - [anon_sym_BSLASHavolcite] = ACTIONS(5968), - [anon_sym_BSLASHAvolcite] = ACTIONS(5968), - [anon_sym_BSLASHnotecite] = ACTIONS(5968), - [anon_sym_BSLASHNotecite] = ACTIONS(5968), - [anon_sym_BSLASHpnotecite] = ACTIONS(5968), - [anon_sym_BSLASHPnotecite] = ACTIONS(5968), - [anon_sym_BSLASHfnotecite] = ACTIONS(5968), - [anon_sym_BSLASHlabel] = ACTIONS(5968), - [anon_sym_BSLASHref] = ACTIONS(5968), - [anon_sym_BSLASHeqref] = ACTIONS(5968), - [anon_sym_BSLASHvref] = ACTIONS(5968), - [anon_sym_BSLASHVref] = ACTIONS(5968), - [anon_sym_BSLASHautoref] = ACTIONS(5968), - [anon_sym_BSLASHpageref] = ACTIONS(5968), - [anon_sym_BSLASHcref] = ACTIONS(5968), - [anon_sym_BSLASHCref] = ACTIONS(5968), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnameCref] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHlabelcref] = ACTIONS(5968), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCrefrange] = ACTIONS(5968), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnewlabel] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5968), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5968), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5972), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHdef] = ACTIONS(5968), - [anon_sym_BSLASHlet] = ACTIONS(5968), - [anon_sym_BSLASHleft] = ACTIONS(5968), - [anon_sym_BSLASHbig] = ACTIONS(5968), - [anon_sym_BSLASHBig] = ACTIONS(5968), - [anon_sym_BSLASHbigg] = ACTIONS(5968), - [anon_sym_BSLASHBigg] = ACTIONS(5968), - [anon_sym_BSLASHbigl] = ACTIONS(5968), - [anon_sym_BSLASHBigl] = ACTIONS(5968), - [anon_sym_BSLASHbiggl] = ACTIONS(5968), - [anon_sym_BSLASHBiggl] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5968), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5968), - [anon_sym_BSLASHgls] = ACTIONS(5968), - [anon_sym_BSLASHGls] = ACTIONS(5968), - [anon_sym_BSLASHGLS] = ACTIONS(5968), - [anon_sym_BSLASHglspl] = ACTIONS(5968), - [anon_sym_BSLASHGlspl] = ACTIONS(5968), - [anon_sym_BSLASHGLSpl] = ACTIONS(5968), - [anon_sym_BSLASHglsdisp] = ACTIONS(5968), - [anon_sym_BSLASHglslink] = ACTIONS(5968), - [anon_sym_BSLASHglstext] = ACTIONS(5968), - [anon_sym_BSLASHGlstext] = ACTIONS(5968), - [anon_sym_BSLASHGLStext] = ACTIONS(5968), - [anon_sym_BSLASHglsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5968), - [anon_sym_BSLASHglsplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSplural] = ACTIONS(5968), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHglsname] = ACTIONS(5968), - [anon_sym_BSLASHGlsname] = ACTIONS(5968), - [anon_sym_BSLASHGLSname] = ACTIONS(5968), - [anon_sym_BSLASHglssymbol] = ACTIONS(5968), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5968), - [anon_sym_BSLASHglsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5968), - [anon_sym_BSLASHglsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5968), - [anon_sym_BSLASHglsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5968), - [anon_sym_BSLASHglsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5968), - [anon_sym_BSLASHglsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5968), - [anon_sym_BSLASHnewacronym] = ACTIONS(5968), - [anon_sym_BSLASHacrshort] = ACTIONS(5968), - [anon_sym_BSLASHAcrshort] = ACTIONS(5968), - [anon_sym_BSLASHACRshort] = ACTIONS(5968), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5968), - [anon_sym_BSLASHacrlong] = ACTIONS(5968), - [anon_sym_BSLASHAcrlong] = ACTIONS(5968), - [anon_sym_BSLASHACRlong] = ACTIONS(5968), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5968), - [anon_sym_BSLASHacrfull] = ACTIONS(5968), - [anon_sym_BSLASHAcrfull] = ACTIONS(5968), - [anon_sym_BSLASHACRfull] = ACTIONS(5968), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5968), - [anon_sym_BSLASHacs] = ACTIONS(5968), - [anon_sym_BSLASHAcs] = ACTIONS(5968), - [anon_sym_BSLASHacsp] = ACTIONS(5968), - [anon_sym_BSLASHAcsp] = ACTIONS(5968), - [anon_sym_BSLASHacl] = ACTIONS(5968), - [anon_sym_BSLASHAcl] = ACTIONS(5968), - [anon_sym_BSLASHaclp] = ACTIONS(5968), - [anon_sym_BSLASHAclp] = ACTIONS(5968), - [anon_sym_BSLASHacf] = ACTIONS(5968), - [anon_sym_BSLASHAcf] = ACTIONS(5968), - [anon_sym_BSLASHacfp] = ACTIONS(5968), - [anon_sym_BSLASHAcfp] = ACTIONS(5968), - [anon_sym_BSLASHac] = ACTIONS(5968), - [anon_sym_BSLASHAc] = ACTIONS(5968), - [anon_sym_BSLASHacp] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5968), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5968), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5968), - [anon_sym_BSLASHcolor] = ACTIONS(5968), - [anon_sym_BSLASHcolorbox] = ACTIONS(5968), - [anon_sym_BSLASHtextcolor] = ACTIONS(5968), - [anon_sym_BSLASHpagecolor] = ACTIONS(5968), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5968), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5968), - [anon_sym_BSLASHtext] = ACTIONS(5968), - [anon_sym_BSLASHintertext] = ACTIONS(5968), - [anon_sym_shortintertext] = ACTIONS(5968), - [sym__trivia_raw_fi] = ACTIONS(6953), - }, - [1813] = { - [sym_curly_group] = STATE(1899), - [aux_sym_generic_command_repeat1] = STATE(1814), - [sym_command_name] = ACTIONS(5983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5983), - [anon_sym_LPAREN] = ACTIONS(5985), - [anon_sym_RPAREN] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5985), - [anon_sym_BSLASHand] = ACTIONS(5983), - [sym_word] = ACTIONS(5983), - [sym_placeholder] = ACTIONS(5985), - [anon_sym_PLUS] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(5985), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_SLASH] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(5983), - [anon_sym_GT] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5983), - [anon_sym_PIPE] = ACTIONS(5983), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_SQUOTE] = ACTIONS(5983), - [anon_sym__] = ACTIONS(5985), - [anon_sym_CARET] = ACTIONS(5985), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5985), - [anon_sym_DOLLAR] = ACTIONS(5983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5985), - [anon_sym_BSLASHtitle] = ACTIONS(5983), - [anon_sym_BSLASHauthor] = ACTIONS(5983), - [anon_sym_BSLASHusepackage] = ACTIONS(5983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), - [anon_sym_BSLASHinclude] = ACTIONS(5983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), - [anon_sym_BSLASHinput] = ACTIONS(5983), - [anon_sym_BSLASHsubfile] = ACTIONS(5983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), - [anon_sym_BSLASHbibliography] = ACTIONS(5983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), - [anon_sym_BSLASHincludesvg] = ACTIONS(5983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), - [anon_sym_BSLASHimport] = ACTIONS(5983), - [anon_sym_BSLASHsubimport] = ACTIONS(5983), - [anon_sym_BSLASHinputfrom] = ACTIONS(5983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), - [anon_sym_BSLASHincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHcaption] = ACTIONS(5983), - [anon_sym_BSLASHcite] = ACTIONS(5983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCite] = ACTIONS(5983), - [anon_sym_BSLASHnocite] = ACTIONS(5983), - [anon_sym_BSLASHcitet] = ACTIONS(5983), - [anon_sym_BSLASHcitep] = ACTIONS(5983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteauthor] = ACTIONS(5983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitetitle] = ACTIONS(5983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteyear] = ACTIONS(5983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitedate] = ACTIONS(5983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteurl] = ACTIONS(5983), - [anon_sym_BSLASHfullcite] = ACTIONS(5983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), - [anon_sym_BSLASHcitealt] = ACTIONS(5983), - [anon_sym_BSLASHcitealp] = ACTIONS(5983), - [anon_sym_BSLASHcitetext] = ACTIONS(5983), - [anon_sym_BSLASHparencite] = ACTIONS(5983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHParencite] = ACTIONS(5983), - [anon_sym_BSLASHfootcite] = ACTIONS(5983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), - [anon_sym_BSLASHtextcite] = ACTIONS(5983), - [anon_sym_BSLASHTextcite] = ACTIONS(5983), - [anon_sym_BSLASHsmartcite] = ACTIONS(5983), - [anon_sym_BSLASHSmartcite] = ACTIONS(5983), - [anon_sym_BSLASHsupercite] = ACTIONS(5983), - [anon_sym_BSLASHautocite] = ACTIONS(5983), - [anon_sym_BSLASHAutocite] = ACTIONS(5983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHvolcite] = ACTIONS(5983), - [anon_sym_BSLASHVolcite] = ACTIONS(5983), - [anon_sym_BSLASHpvolcite] = ACTIONS(5983), - [anon_sym_BSLASHPvolcite] = ACTIONS(5983), - [anon_sym_BSLASHfvolcite] = ACTIONS(5983), - [anon_sym_BSLASHftvolcite] = ACTIONS(5983), - [anon_sym_BSLASHsvolcite] = ACTIONS(5983), - [anon_sym_BSLASHSvolcite] = ACTIONS(5983), - [anon_sym_BSLASHtvolcite] = ACTIONS(5983), - [anon_sym_BSLASHTvolcite] = ACTIONS(5983), - [anon_sym_BSLASHavolcite] = ACTIONS(5983), - [anon_sym_BSLASHAvolcite] = ACTIONS(5983), - [anon_sym_BSLASHnotecite] = ACTIONS(5983), - [anon_sym_BSLASHNotecite] = ACTIONS(5983), - [anon_sym_BSLASHpnotecite] = ACTIONS(5983), - [anon_sym_BSLASHPnotecite] = ACTIONS(5983), - [anon_sym_BSLASHfnotecite] = ACTIONS(5983), - [anon_sym_BSLASHlabel] = ACTIONS(5983), - [anon_sym_BSLASHref] = ACTIONS(5983), - [anon_sym_BSLASHeqref] = ACTIONS(5983), - [anon_sym_BSLASHvref] = ACTIONS(5983), - [anon_sym_BSLASHVref] = ACTIONS(5983), - [anon_sym_BSLASHautoref] = ACTIONS(5983), - [anon_sym_BSLASHpageref] = ACTIONS(5983), - [anon_sym_BSLASHcref] = ACTIONS(5983), - [anon_sym_BSLASHCref] = ACTIONS(5983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnameCref] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHlabelcref] = ACTIONS(5983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCrefrange] = ACTIONS(5983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnewlabel] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHdef] = ACTIONS(5983), - [anon_sym_BSLASHlet] = ACTIONS(5983), - [anon_sym_BSLASHleft] = ACTIONS(5983), - [anon_sym_BSLASHbig] = ACTIONS(5983), - [anon_sym_BSLASHBig] = ACTIONS(5983), - [anon_sym_BSLASHbigg] = ACTIONS(5983), - [anon_sym_BSLASHBigg] = ACTIONS(5983), - [anon_sym_BSLASHbigl] = ACTIONS(5983), - [anon_sym_BSLASHBigl] = ACTIONS(5983), - [anon_sym_BSLASHbiggl] = ACTIONS(5983), - [anon_sym_BSLASHBiggl] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), - [anon_sym_BSLASHgls] = ACTIONS(5983), - [anon_sym_BSLASHGls] = ACTIONS(5983), - [anon_sym_BSLASHGLS] = ACTIONS(5983), - [anon_sym_BSLASHglspl] = ACTIONS(5983), - [anon_sym_BSLASHGlspl] = ACTIONS(5983), - [anon_sym_BSLASHGLSpl] = ACTIONS(5983), - [anon_sym_BSLASHglsdisp] = ACTIONS(5983), - [anon_sym_BSLASHglslink] = ACTIONS(5983), - [anon_sym_BSLASHglstext] = ACTIONS(5983), - [anon_sym_BSLASHGlstext] = ACTIONS(5983), - [anon_sym_BSLASHGLStext] = ACTIONS(5983), - [anon_sym_BSLASHglsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), - [anon_sym_BSLASHglsplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSplural] = ACTIONS(5983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHglsname] = ACTIONS(5983), - [anon_sym_BSLASHGlsname] = ACTIONS(5983), - [anon_sym_BSLASHGLSname] = ACTIONS(5983), - [anon_sym_BSLASHglssymbol] = ACTIONS(5983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), - [anon_sym_BSLASHglsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), - [anon_sym_BSLASHglsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), - [anon_sym_BSLASHglsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), - [anon_sym_BSLASHglsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), - [anon_sym_BSLASHglsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), - [anon_sym_BSLASHnewacronym] = ACTIONS(5983), - [anon_sym_BSLASHacrshort] = ACTIONS(5983), - [anon_sym_BSLASHAcrshort] = ACTIONS(5983), - [anon_sym_BSLASHACRshort] = ACTIONS(5983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), - [anon_sym_BSLASHacrlong] = ACTIONS(5983), - [anon_sym_BSLASHAcrlong] = ACTIONS(5983), - [anon_sym_BSLASHACRlong] = ACTIONS(5983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), - [anon_sym_BSLASHacrfull] = ACTIONS(5983), - [anon_sym_BSLASHAcrfull] = ACTIONS(5983), - [anon_sym_BSLASHACRfull] = ACTIONS(5983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), - [anon_sym_BSLASHacs] = ACTIONS(5983), - [anon_sym_BSLASHAcs] = ACTIONS(5983), - [anon_sym_BSLASHacsp] = ACTIONS(5983), - [anon_sym_BSLASHAcsp] = ACTIONS(5983), - [anon_sym_BSLASHacl] = ACTIONS(5983), - [anon_sym_BSLASHAcl] = ACTIONS(5983), - [anon_sym_BSLASHaclp] = ACTIONS(5983), - [anon_sym_BSLASHAclp] = ACTIONS(5983), - [anon_sym_BSLASHacf] = ACTIONS(5983), - [anon_sym_BSLASHAcf] = ACTIONS(5983), - [anon_sym_BSLASHacfp] = ACTIONS(5983), - [anon_sym_BSLASHAcfp] = ACTIONS(5983), - [anon_sym_BSLASHac] = ACTIONS(5983), - [anon_sym_BSLASHAc] = ACTIONS(5983), - [anon_sym_BSLASHacp] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), - [anon_sym_BSLASHcolor] = ACTIONS(5983), - [anon_sym_BSLASHcolorbox] = ACTIONS(5983), - [anon_sym_BSLASHtextcolor] = ACTIONS(5983), - [anon_sym_BSLASHpagecolor] = ACTIONS(5983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), - [anon_sym_BSLASHtext] = ACTIONS(5983), - [anon_sym_BSLASHintertext] = ACTIONS(5983), - [anon_sym_shortintertext] = ACTIONS(5983), - }, - [1814] = { - [sym_curly_group] = STATE(1899), - [aux_sym_generic_command_repeat1] = STATE(1817), - [sym_command_name] = ACTIONS(5964), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5964), - [anon_sym_LPAREN] = ACTIONS(5966), - [anon_sym_RPAREN] = ACTIONS(5966), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(5966), - [anon_sym_BSLASHand] = ACTIONS(5964), - [sym_word] = ACTIONS(5964), - [sym_placeholder] = ACTIONS(5966), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5966), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_SQUOTE] = ACTIONS(5964), - [anon_sym__] = ACTIONS(5966), - [anon_sym_CARET] = ACTIONS(5966), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5966), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5966), - [anon_sym_DOLLAR] = ACTIONS(5964), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5966), - [anon_sym_BSLASHtitle] = ACTIONS(5964), - [anon_sym_BSLASHauthor] = ACTIONS(5964), - [anon_sym_BSLASHusepackage] = ACTIONS(5964), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5964), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5964), - [anon_sym_BSLASHinclude] = ACTIONS(5964), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5964), - [anon_sym_BSLASHinput] = ACTIONS(5964), - [anon_sym_BSLASHsubfile] = ACTIONS(5964), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5964), - [anon_sym_BSLASHbibliography] = ACTIONS(5964), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5964), - [anon_sym_BSLASHincludesvg] = ACTIONS(5964), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5964), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5964), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5964), - [anon_sym_BSLASHimport] = ACTIONS(5964), - [anon_sym_BSLASHsubimport] = ACTIONS(5964), - [anon_sym_BSLASHinputfrom] = ACTIONS(5964), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5964), - [anon_sym_BSLASHincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHcaption] = ACTIONS(5964), - [anon_sym_BSLASHcite] = ACTIONS(5964), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCite] = ACTIONS(5964), - [anon_sym_BSLASHnocite] = ACTIONS(5964), - [anon_sym_BSLASHcitet] = ACTIONS(5964), - [anon_sym_BSLASHcitep] = ACTIONS(5964), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteauthor] = ACTIONS(5964), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5964), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitetitle] = ACTIONS(5964), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteyear] = ACTIONS(5964), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitedate] = ACTIONS(5964), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteurl] = ACTIONS(5964), - [anon_sym_BSLASHfullcite] = ACTIONS(5964), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5964), - [anon_sym_BSLASHcitealt] = ACTIONS(5964), - [anon_sym_BSLASHcitealp] = ACTIONS(5964), - [anon_sym_BSLASHcitetext] = ACTIONS(5964), - [anon_sym_BSLASHparencite] = ACTIONS(5964), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHParencite] = ACTIONS(5964), - [anon_sym_BSLASHfootcite] = ACTIONS(5964), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5964), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5964), - [anon_sym_BSLASHtextcite] = ACTIONS(5964), - [anon_sym_BSLASHTextcite] = ACTIONS(5964), - [anon_sym_BSLASHsmartcite] = ACTIONS(5964), - [anon_sym_BSLASHSmartcite] = ACTIONS(5964), - [anon_sym_BSLASHsupercite] = ACTIONS(5964), - [anon_sym_BSLASHautocite] = ACTIONS(5964), - [anon_sym_BSLASHAutocite] = ACTIONS(5964), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHvolcite] = ACTIONS(5964), - [anon_sym_BSLASHVolcite] = ACTIONS(5964), - [anon_sym_BSLASHpvolcite] = ACTIONS(5964), - [anon_sym_BSLASHPvolcite] = ACTIONS(5964), - [anon_sym_BSLASHfvolcite] = ACTIONS(5964), - [anon_sym_BSLASHftvolcite] = ACTIONS(5964), - [anon_sym_BSLASHsvolcite] = ACTIONS(5964), - [anon_sym_BSLASHSvolcite] = ACTIONS(5964), - [anon_sym_BSLASHtvolcite] = ACTIONS(5964), - [anon_sym_BSLASHTvolcite] = ACTIONS(5964), - [anon_sym_BSLASHavolcite] = ACTIONS(5964), - [anon_sym_BSLASHAvolcite] = ACTIONS(5964), - [anon_sym_BSLASHnotecite] = ACTIONS(5964), - [anon_sym_BSLASHNotecite] = ACTIONS(5964), - [anon_sym_BSLASHpnotecite] = ACTIONS(5964), - [anon_sym_BSLASHPnotecite] = ACTIONS(5964), - [anon_sym_BSLASHfnotecite] = ACTIONS(5964), - [anon_sym_BSLASHlabel] = ACTIONS(5964), - [anon_sym_BSLASHref] = ACTIONS(5964), - [anon_sym_BSLASHeqref] = ACTIONS(5964), - [anon_sym_BSLASHvref] = ACTIONS(5964), - [anon_sym_BSLASHVref] = ACTIONS(5964), - [anon_sym_BSLASHautoref] = ACTIONS(5964), - [anon_sym_BSLASHpageref] = ACTIONS(5964), - [anon_sym_BSLASHcref] = ACTIONS(5964), - [anon_sym_BSLASHCref] = ACTIONS(5964), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnameCref] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHlabelcref] = ACTIONS(5964), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCrefrange] = ACTIONS(5964), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnewlabel] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5964), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5964), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5966), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHdef] = ACTIONS(5964), - [anon_sym_BSLASHlet] = ACTIONS(5964), - [anon_sym_BSLASHleft] = ACTIONS(5964), - [anon_sym_BSLASHbig] = ACTIONS(5964), - [anon_sym_BSLASHBig] = ACTIONS(5964), - [anon_sym_BSLASHbigg] = ACTIONS(5964), - [anon_sym_BSLASHBigg] = ACTIONS(5964), - [anon_sym_BSLASHbigl] = ACTIONS(5964), - [anon_sym_BSLASHBigl] = ACTIONS(5964), - [anon_sym_BSLASHbiggl] = ACTIONS(5964), - [anon_sym_BSLASHBiggl] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5964), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5964), - [anon_sym_BSLASHgls] = ACTIONS(5964), - [anon_sym_BSLASHGls] = ACTIONS(5964), - [anon_sym_BSLASHGLS] = ACTIONS(5964), - [anon_sym_BSLASHglspl] = ACTIONS(5964), - [anon_sym_BSLASHGlspl] = ACTIONS(5964), - [anon_sym_BSLASHGLSpl] = ACTIONS(5964), - [anon_sym_BSLASHglsdisp] = ACTIONS(5964), - [anon_sym_BSLASHglslink] = ACTIONS(5964), - [anon_sym_BSLASHglstext] = ACTIONS(5964), - [anon_sym_BSLASHGlstext] = ACTIONS(5964), - [anon_sym_BSLASHGLStext] = ACTIONS(5964), - [anon_sym_BSLASHglsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5964), - [anon_sym_BSLASHglsplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSplural] = ACTIONS(5964), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHglsname] = ACTIONS(5964), - [anon_sym_BSLASHGlsname] = ACTIONS(5964), - [anon_sym_BSLASHGLSname] = ACTIONS(5964), - [anon_sym_BSLASHglssymbol] = ACTIONS(5964), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5964), - [anon_sym_BSLASHglsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5964), - [anon_sym_BSLASHglsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5964), - [anon_sym_BSLASHglsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5964), - [anon_sym_BSLASHglsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5964), - [anon_sym_BSLASHglsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5964), - [anon_sym_BSLASHnewacronym] = ACTIONS(5964), - [anon_sym_BSLASHacrshort] = ACTIONS(5964), - [anon_sym_BSLASHAcrshort] = ACTIONS(5964), - [anon_sym_BSLASHACRshort] = ACTIONS(5964), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5964), - [anon_sym_BSLASHacrlong] = ACTIONS(5964), - [anon_sym_BSLASHAcrlong] = ACTIONS(5964), - [anon_sym_BSLASHACRlong] = ACTIONS(5964), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5964), - [anon_sym_BSLASHacrfull] = ACTIONS(5964), - [anon_sym_BSLASHAcrfull] = ACTIONS(5964), - [anon_sym_BSLASHACRfull] = ACTIONS(5964), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5964), - [anon_sym_BSLASHacs] = ACTIONS(5964), - [anon_sym_BSLASHAcs] = ACTIONS(5964), - [anon_sym_BSLASHacsp] = ACTIONS(5964), - [anon_sym_BSLASHAcsp] = ACTIONS(5964), - [anon_sym_BSLASHacl] = ACTIONS(5964), - [anon_sym_BSLASHAcl] = ACTIONS(5964), - [anon_sym_BSLASHaclp] = ACTIONS(5964), - [anon_sym_BSLASHAclp] = ACTIONS(5964), - [anon_sym_BSLASHacf] = ACTIONS(5964), - [anon_sym_BSLASHAcf] = ACTIONS(5964), - [anon_sym_BSLASHacfp] = ACTIONS(5964), - [anon_sym_BSLASHAcfp] = ACTIONS(5964), - [anon_sym_BSLASHac] = ACTIONS(5964), - [anon_sym_BSLASHAc] = ACTIONS(5964), - [anon_sym_BSLASHacp] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5964), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5964), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5964), - [anon_sym_BSLASHcolor] = ACTIONS(5964), - [anon_sym_BSLASHcolorbox] = ACTIONS(5964), - [anon_sym_BSLASHtextcolor] = ACTIONS(5964), - [anon_sym_BSLASHpagecolor] = ACTIONS(5964), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5964), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5964), - [anon_sym_BSLASHtext] = ACTIONS(5964), - [anon_sym_BSLASHintertext] = ACTIONS(5964), - [anon_sym_shortintertext] = ACTIONS(5964), - }, - [1815] = { - [sym_command_name] = ACTIONS(6725), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6725), - [anon_sym_LBRACK] = ACTIONS(6727), - [anon_sym_RBRACK] = ACTIONS(6727), - [anon_sym_COMMA] = ACTIONS(6727), - [anon_sym_LPAREN] = ACTIONS(6727), - [anon_sym_RPAREN] = ACTIONS(6727), - [anon_sym_LBRACE] = ACTIONS(6727), - [anon_sym_RBRACE] = ACTIONS(6727), - [sym_word] = ACTIONS(6725), - [sym_placeholder] = ACTIONS(6727), - [anon_sym_PLUS] = ACTIONS(6727), - [anon_sym_DASH] = ACTIONS(6727), - [anon_sym_STAR] = ACTIONS(6727), - [anon_sym_SLASH] = ACTIONS(6727), - [anon_sym_LT] = ACTIONS(6725), - [anon_sym_GT] = ACTIONS(6725), - [anon_sym_BANG] = ACTIONS(6725), - [anon_sym_PIPE] = ACTIONS(6725), - [anon_sym_COLON] = ACTIONS(6725), - [anon_sym_SQUOTE] = ACTIONS(6725), - [anon_sym__] = ACTIONS(6727), - [anon_sym_CARET] = ACTIONS(6727), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6727), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6727), - [anon_sym_DOLLAR] = ACTIONS(6725), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6727), - [anon_sym_BSLASHtitle] = ACTIONS(6725), - [anon_sym_BSLASHauthor] = ACTIONS(6725), - [anon_sym_BSLASHusepackage] = ACTIONS(6725), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6725), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6725), - [anon_sym_BSLASHinclude] = ACTIONS(6725), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6725), - [anon_sym_BSLASHinput] = ACTIONS(6725), - [anon_sym_BSLASHsubfile] = ACTIONS(6725), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6725), - [anon_sym_BSLASHbibliography] = ACTIONS(6725), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6725), - [anon_sym_BSLASHincludesvg] = ACTIONS(6725), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6725), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6725), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6725), - [anon_sym_BSLASHimport] = ACTIONS(6725), - [anon_sym_BSLASHsubimport] = ACTIONS(6725), - [anon_sym_BSLASHinputfrom] = ACTIONS(6725), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6725), - [anon_sym_BSLASHincludefrom] = ACTIONS(6725), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6725), - [anon_sym_BSLASHcaption] = ACTIONS(6725), - [anon_sym_BSLASHcite] = ACTIONS(6725), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6727), - [anon_sym_BSLASHCite] = ACTIONS(6725), - [anon_sym_BSLASHnocite] = ACTIONS(6725), - [anon_sym_BSLASHcitet] = ACTIONS(6725), - [anon_sym_BSLASHcitep] = ACTIONS(6725), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6727), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6727), - [anon_sym_BSLASHciteauthor] = ACTIONS(6725), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6727), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6725), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6727), - [anon_sym_BSLASHcitetitle] = ACTIONS(6725), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6727), - [anon_sym_BSLASHciteyear] = ACTIONS(6725), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6727), - [anon_sym_BSLASHcitedate] = ACTIONS(6725), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6727), - [anon_sym_BSLASHciteurl] = ACTIONS(6725), - [anon_sym_BSLASHfullcite] = ACTIONS(6725), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6725), - [anon_sym_BSLASHcitealt] = ACTIONS(6725), - [anon_sym_BSLASHcitealp] = ACTIONS(6725), - [anon_sym_BSLASHcitetext] = ACTIONS(6725), - [anon_sym_BSLASHparencite] = ACTIONS(6725), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6727), - [anon_sym_BSLASHParencite] = ACTIONS(6725), - [anon_sym_BSLASHfootcite] = ACTIONS(6725), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6725), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6725), - [anon_sym_BSLASHtextcite] = ACTIONS(6725), - [anon_sym_BSLASHTextcite] = ACTIONS(6725), - [anon_sym_BSLASHsmartcite] = ACTIONS(6725), - [anon_sym_BSLASHSmartcite] = ACTIONS(6725), - [anon_sym_BSLASHsupercite] = ACTIONS(6725), - [anon_sym_BSLASHautocite] = ACTIONS(6725), - [anon_sym_BSLASHAutocite] = ACTIONS(6725), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6727), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6727), - [anon_sym_BSLASHvolcite] = ACTIONS(6725), - [anon_sym_BSLASHVolcite] = ACTIONS(6725), - [anon_sym_BSLASHpvolcite] = ACTIONS(6725), - [anon_sym_BSLASHPvolcite] = ACTIONS(6725), - [anon_sym_BSLASHfvolcite] = ACTIONS(6725), - [anon_sym_BSLASHftvolcite] = ACTIONS(6725), - [anon_sym_BSLASHsvolcite] = ACTIONS(6725), - [anon_sym_BSLASHSvolcite] = ACTIONS(6725), - [anon_sym_BSLASHtvolcite] = ACTIONS(6725), - [anon_sym_BSLASHTvolcite] = ACTIONS(6725), - [anon_sym_BSLASHavolcite] = ACTIONS(6725), - [anon_sym_BSLASHAvolcite] = ACTIONS(6725), - [anon_sym_BSLASHnotecite] = ACTIONS(6725), - [anon_sym_BSLASHNotecite] = ACTIONS(6725), - [anon_sym_BSLASHpnotecite] = ACTIONS(6725), - [anon_sym_BSLASHPnotecite] = ACTIONS(6725), - [anon_sym_BSLASHfnotecite] = ACTIONS(6725), - [anon_sym_BSLASHlabel] = ACTIONS(6725), - [anon_sym_BSLASHref] = ACTIONS(6725), - [anon_sym_BSLASHeqref] = ACTIONS(6725), - [anon_sym_BSLASHvref] = ACTIONS(6725), - [anon_sym_BSLASHVref] = ACTIONS(6725), - [anon_sym_BSLASHautoref] = ACTIONS(6725), - [anon_sym_BSLASHpageref] = ACTIONS(6725), - [anon_sym_BSLASHcref] = ACTIONS(6725), - [anon_sym_BSLASHCref] = ACTIONS(6725), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6727), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6727), - [anon_sym_BSLASHnamecref] = ACTIONS(6725), - [anon_sym_BSLASHnameCref] = ACTIONS(6725), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6725), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6725), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6725), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6725), - [anon_sym_BSLASHlabelcref] = ACTIONS(6725), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6725), - [anon_sym_BSLASHcrefrange] = ACTIONS(6725), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6727), - [anon_sym_BSLASHCrefrange] = ACTIONS(6725), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6727), - [anon_sym_BSLASHnewlabel] = ACTIONS(6725), - [anon_sym_BSLASHnewcommand] = ACTIONS(6725), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6727), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6725), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6727), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6725), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6727), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6725), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6727), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6725), - [anon_sym_BSLASHdef] = ACTIONS(6725), - [anon_sym_BSLASHlet] = ACTIONS(6725), - [anon_sym_BSLASHleft] = ACTIONS(6725), - [anon_sym_BSLASHbig] = ACTIONS(6725), - [anon_sym_BSLASHBig] = ACTIONS(6725), - [anon_sym_BSLASHbigg] = ACTIONS(6725), - [anon_sym_BSLASHBigg] = ACTIONS(6725), - [anon_sym_BSLASHbigl] = ACTIONS(6725), - [anon_sym_BSLASHBigl] = ACTIONS(6725), - [anon_sym_BSLASHbiggl] = ACTIONS(6725), - [anon_sym_BSLASHBiggl] = ACTIONS(6725), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6725), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6725), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6725), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6725), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6725), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6725), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6725), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6725), - [anon_sym_BSLASHgls] = ACTIONS(6725), - [anon_sym_BSLASHGls] = ACTIONS(6725), - [anon_sym_BSLASHGLS] = ACTIONS(6725), - [anon_sym_BSLASHglspl] = ACTIONS(6725), - [anon_sym_BSLASHGlspl] = ACTIONS(6725), - [anon_sym_BSLASHGLSpl] = ACTIONS(6725), - [anon_sym_BSLASHglsdisp] = ACTIONS(6725), - [anon_sym_BSLASHglslink] = ACTIONS(6725), - [anon_sym_BSLASHglstext] = ACTIONS(6725), - [anon_sym_BSLASHGlstext] = ACTIONS(6725), - [anon_sym_BSLASHGLStext] = ACTIONS(6725), - [anon_sym_BSLASHglsfirst] = ACTIONS(6725), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6725), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6725), - [anon_sym_BSLASHglsplural] = ACTIONS(6725), - [anon_sym_BSLASHGlsplural] = ACTIONS(6725), - [anon_sym_BSLASHGLSplural] = ACTIONS(6725), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6725), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6725), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6725), - [anon_sym_BSLASHglsname] = ACTIONS(6725), - [anon_sym_BSLASHGlsname] = ACTIONS(6725), - [anon_sym_BSLASHGLSname] = ACTIONS(6725), - [anon_sym_BSLASHglssymbol] = ACTIONS(6725), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6725), - [anon_sym_BSLASHglsdesc] = ACTIONS(6725), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6725), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6725), - [anon_sym_BSLASHglsuseri] = ACTIONS(6725), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6725), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6725), - [anon_sym_BSLASHglsuserii] = ACTIONS(6725), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6725), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6725), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6725), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6725), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6725), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6725), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6725), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6725), - [anon_sym_BSLASHglsuserv] = ACTIONS(6725), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6725), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6725), - [anon_sym_BSLASHglsuservi] = ACTIONS(6725), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6725), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6725), - [anon_sym_BSLASHnewacronym] = ACTIONS(6725), - [anon_sym_BSLASHacrshort] = ACTIONS(6725), - [anon_sym_BSLASHAcrshort] = ACTIONS(6725), - [anon_sym_BSLASHACRshort] = ACTIONS(6725), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6725), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6725), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6725), - [anon_sym_BSLASHacrlong] = ACTIONS(6725), - [anon_sym_BSLASHAcrlong] = ACTIONS(6725), - [anon_sym_BSLASHACRlong] = ACTIONS(6725), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6725), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6725), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6725), - [anon_sym_BSLASHacrfull] = ACTIONS(6725), - [anon_sym_BSLASHAcrfull] = ACTIONS(6725), - [anon_sym_BSLASHACRfull] = ACTIONS(6725), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6725), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6725), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6725), - [anon_sym_BSLASHacs] = ACTIONS(6725), - [anon_sym_BSLASHAcs] = ACTIONS(6725), - [anon_sym_BSLASHacsp] = ACTIONS(6725), - [anon_sym_BSLASHAcsp] = ACTIONS(6725), - [anon_sym_BSLASHacl] = ACTIONS(6725), - [anon_sym_BSLASHAcl] = ACTIONS(6725), - [anon_sym_BSLASHaclp] = ACTIONS(6725), - [anon_sym_BSLASHAclp] = ACTIONS(6725), - [anon_sym_BSLASHacf] = ACTIONS(6725), - [anon_sym_BSLASHAcf] = ACTIONS(6725), - [anon_sym_BSLASHacfp] = ACTIONS(6725), - [anon_sym_BSLASHAcfp] = ACTIONS(6725), - [anon_sym_BSLASHac] = ACTIONS(6725), - [anon_sym_BSLASHAc] = ACTIONS(6725), - [anon_sym_BSLASHacp] = ACTIONS(6725), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6725), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6725), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6725), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6725), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6725), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6725), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6725), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6725), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6725), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6725), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6725), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6727), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6725), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6727), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6725), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6725), - [anon_sym_BSLASHcolor] = ACTIONS(6725), - [anon_sym_BSLASHcolorbox] = ACTIONS(6725), - [anon_sym_BSLASHtextcolor] = ACTIONS(6725), - [anon_sym_BSLASHpagecolor] = ACTIONS(6725), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6725), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6725), - [anon_sym_BSLASHtext] = ACTIONS(6725), - [anon_sym_BSLASHintertext] = ACTIONS(6725), - [anon_sym_shortintertext] = ACTIONS(6725), - }, - [1816] = { - [sym_command_name] = ACTIONS(6729), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6729), - [anon_sym_LBRACK] = ACTIONS(6731), - [anon_sym_RBRACK] = ACTIONS(6731), - [anon_sym_COMMA] = ACTIONS(6731), - [anon_sym_LPAREN] = ACTIONS(6731), - [anon_sym_RPAREN] = ACTIONS(6731), - [anon_sym_LBRACE] = ACTIONS(6731), - [anon_sym_RBRACE] = ACTIONS(6731), - [sym_word] = ACTIONS(6729), - [sym_placeholder] = ACTIONS(6731), - [anon_sym_PLUS] = ACTIONS(6731), - [anon_sym_DASH] = ACTIONS(6731), - [anon_sym_STAR] = ACTIONS(6731), - [anon_sym_SLASH] = ACTIONS(6731), - [anon_sym_LT] = ACTIONS(6729), - [anon_sym_GT] = ACTIONS(6729), - [anon_sym_BANG] = ACTIONS(6729), - [anon_sym_PIPE] = ACTIONS(6729), - [anon_sym_COLON] = ACTIONS(6729), - [anon_sym_SQUOTE] = ACTIONS(6729), - [anon_sym__] = ACTIONS(6731), - [anon_sym_CARET] = ACTIONS(6731), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6731), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6731), - [anon_sym_DOLLAR] = ACTIONS(6729), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6731), - [anon_sym_BSLASHtitle] = ACTIONS(6729), - [anon_sym_BSLASHauthor] = ACTIONS(6729), - [anon_sym_BSLASHusepackage] = ACTIONS(6729), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6729), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6729), - [anon_sym_BSLASHinclude] = ACTIONS(6729), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6729), - [anon_sym_BSLASHinput] = ACTIONS(6729), - [anon_sym_BSLASHsubfile] = ACTIONS(6729), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6729), - [anon_sym_BSLASHbibliography] = ACTIONS(6729), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6729), - [anon_sym_BSLASHincludesvg] = ACTIONS(6729), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6729), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6729), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6729), - [anon_sym_BSLASHimport] = ACTIONS(6729), - [anon_sym_BSLASHsubimport] = ACTIONS(6729), - [anon_sym_BSLASHinputfrom] = ACTIONS(6729), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6729), - [anon_sym_BSLASHincludefrom] = ACTIONS(6729), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6729), - [anon_sym_BSLASHcaption] = ACTIONS(6729), - [anon_sym_BSLASHcite] = ACTIONS(6729), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6731), - [anon_sym_BSLASHCite] = ACTIONS(6729), - [anon_sym_BSLASHnocite] = ACTIONS(6729), - [anon_sym_BSLASHcitet] = ACTIONS(6729), - [anon_sym_BSLASHcitep] = ACTIONS(6729), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6731), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6731), - [anon_sym_BSLASHciteauthor] = ACTIONS(6729), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6731), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6729), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6731), - [anon_sym_BSLASHcitetitle] = ACTIONS(6729), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6731), - [anon_sym_BSLASHciteyear] = ACTIONS(6729), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6731), - [anon_sym_BSLASHcitedate] = ACTIONS(6729), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6731), - [anon_sym_BSLASHciteurl] = ACTIONS(6729), - [anon_sym_BSLASHfullcite] = ACTIONS(6729), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6729), - [anon_sym_BSLASHcitealt] = ACTIONS(6729), - [anon_sym_BSLASHcitealp] = ACTIONS(6729), - [anon_sym_BSLASHcitetext] = ACTIONS(6729), - [anon_sym_BSLASHparencite] = ACTIONS(6729), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6731), - [anon_sym_BSLASHParencite] = ACTIONS(6729), - [anon_sym_BSLASHfootcite] = ACTIONS(6729), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6729), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6729), - [anon_sym_BSLASHtextcite] = ACTIONS(6729), - [anon_sym_BSLASHTextcite] = ACTIONS(6729), - [anon_sym_BSLASHsmartcite] = ACTIONS(6729), - [anon_sym_BSLASHSmartcite] = ACTIONS(6729), - [anon_sym_BSLASHsupercite] = ACTIONS(6729), - [anon_sym_BSLASHautocite] = ACTIONS(6729), - [anon_sym_BSLASHAutocite] = ACTIONS(6729), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6731), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6731), - [anon_sym_BSLASHvolcite] = ACTIONS(6729), - [anon_sym_BSLASHVolcite] = ACTIONS(6729), - [anon_sym_BSLASHpvolcite] = ACTIONS(6729), - [anon_sym_BSLASHPvolcite] = ACTIONS(6729), - [anon_sym_BSLASHfvolcite] = ACTIONS(6729), - [anon_sym_BSLASHftvolcite] = ACTIONS(6729), - [anon_sym_BSLASHsvolcite] = ACTIONS(6729), - [anon_sym_BSLASHSvolcite] = ACTIONS(6729), - [anon_sym_BSLASHtvolcite] = ACTIONS(6729), - [anon_sym_BSLASHTvolcite] = ACTIONS(6729), - [anon_sym_BSLASHavolcite] = ACTIONS(6729), - [anon_sym_BSLASHAvolcite] = ACTIONS(6729), - [anon_sym_BSLASHnotecite] = ACTIONS(6729), - [anon_sym_BSLASHNotecite] = ACTIONS(6729), - [anon_sym_BSLASHpnotecite] = ACTIONS(6729), - [anon_sym_BSLASHPnotecite] = ACTIONS(6729), - [anon_sym_BSLASHfnotecite] = ACTIONS(6729), - [anon_sym_BSLASHlabel] = ACTIONS(6729), - [anon_sym_BSLASHref] = ACTIONS(6729), - [anon_sym_BSLASHeqref] = ACTIONS(6729), - [anon_sym_BSLASHvref] = ACTIONS(6729), - [anon_sym_BSLASHVref] = ACTIONS(6729), - [anon_sym_BSLASHautoref] = ACTIONS(6729), - [anon_sym_BSLASHpageref] = ACTIONS(6729), - [anon_sym_BSLASHcref] = ACTIONS(6729), - [anon_sym_BSLASHCref] = ACTIONS(6729), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6731), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6731), - [anon_sym_BSLASHnamecref] = ACTIONS(6729), - [anon_sym_BSLASHnameCref] = ACTIONS(6729), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6729), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6729), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6729), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6729), - [anon_sym_BSLASHlabelcref] = ACTIONS(6729), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6729), - [anon_sym_BSLASHcrefrange] = ACTIONS(6729), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6731), - [anon_sym_BSLASHCrefrange] = ACTIONS(6729), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6731), - [anon_sym_BSLASHnewlabel] = ACTIONS(6729), - [anon_sym_BSLASHnewcommand] = ACTIONS(6729), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6731), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6729), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6731), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6729), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6731), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6729), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6731), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6729), - [anon_sym_BSLASHdef] = ACTIONS(6729), - [anon_sym_BSLASHlet] = ACTIONS(6729), - [anon_sym_BSLASHleft] = ACTIONS(6729), - [anon_sym_BSLASHbig] = ACTIONS(6729), - [anon_sym_BSLASHBig] = ACTIONS(6729), - [anon_sym_BSLASHbigg] = ACTIONS(6729), - [anon_sym_BSLASHBigg] = ACTIONS(6729), - [anon_sym_BSLASHbigl] = ACTIONS(6729), - [anon_sym_BSLASHBigl] = ACTIONS(6729), - [anon_sym_BSLASHbiggl] = ACTIONS(6729), - [anon_sym_BSLASHBiggl] = ACTIONS(6729), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6729), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6729), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6729), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6729), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6729), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6729), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6729), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6729), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6729), - [anon_sym_BSLASHgls] = ACTIONS(6729), - [anon_sym_BSLASHGls] = ACTIONS(6729), - [anon_sym_BSLASHGLS] = ACTIONS(6729), - [anon_sym_BSLASHglspl] = ACTIONS(6729), - [anon_sym_BSLASHGlspl] = ACTIONS(6729), - [anon_sym_BSLASHGLSpl] = ACTIONS(6729), - [anon_sym_BSLASHglsdisp] = ACTIONS(6729), - [anon_sym_BSLASHglslink] = ACTIONS(6729), - [anon_sym_BSLASHglstext] = ACTIONS(6729), - [anon_sym_BSLASHGlstext] = ACTIONS(6729), - [anon_sym_BSLASHGLStext] = ACTIONS(6729), - [anon_sym_BSLASHglsfirst] = ACTIONS(6729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6729), - [anon_sym_BSLASHglsplural] = ACTIONS(6729), - [anon_sym_BSLASHGlsplural] = ACTIONS(6729), - [anon_sym_BSLASHGLSplural] = ACTIONS(6729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6729), - [anon_sym_BSLASHglsname] = ACTIONS(6729), - [anon_sym_BSLASHGlsname] = ACTIONS(6729), - [anon_sym_BSLASHGLSname] = ACTIONS(6729), - [anon_sym_BSLASHglssymbol] = ACTIONS(6729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6729), - [anon_sym_BSLASHglsdesc] = ACTIONS(6729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6729), - [anon_sym_BSLASHglsuseri] = ACTIONS(6729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6729), - [anon_sym_BSLASHglsuserii] = ACTIONS(6729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6729), - [anon_sym_BSLASHglsuserv] = ACTIONS(6729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6729), - [anon_sym_BSLASHglsuservi] = ACTIONS(6729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6729), - [anon_sym_BSLASHnewacronym] = ACTIONS(6729), - [anon_sym_BSLASHacrshort] = ACTIONS(6729), - [anon_sym_BSLASHAcrshort] = ACTIONS(6729), - [anon_sym_BSLASHACRshort] = ACTIONS(6729), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6729), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6729), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6729), - [anon_sym_BSLASHacrlong] = ACTIONS(6729), - [anon_sym_BSLASHAcrlong] = ACTIONS(6729), - [anon_sym_BSLASHACRlong] = ACTIONS(6729), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6729), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6729), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6729), - [anon_sym_BSLASHacrfull] = ACTIONS(6729), - [anon_sym_BSLASHAcrfull] = ACTIONS(6729), - [anon_sym_BSLASHACRfull] = ACTIONS(6729), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6729), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6729), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6729), - [anon_sym_BSLASHacs] = ACTIONS(6729), - [anon_sym_BSLASHAcs] = ACTIONS(6729), - [anon_sym_BSLASHacsp] = ACTIONS(6729), - [anon_sym_BSLASHAcsp] = ACTIONS(6729), - [anon_sym_BSLASHacl] = ACTIONS(6729), - [anon_sym_BSLASHAcl] = ACTIONS(6729), - [anon_sym_BSLASHaclp] = ACTIONS(6729), - [anon_sym_BSLASHAclp] = ACTIONS(6729), - [anon_sym_BSLASHacf] = ACTIONS(6729), - [anon_sym_BSLASHAcf] = ACTIONS(6729), - [anon_sym_BSLASHacfp] = ACTIONS(6729), - [anon_sym_BSLASHAcfp] = ACTIONS(6729), - [anon_sym_BSLASHac] = ACTIONS(6729), - [anon_sym_BSLASHAc] = ACTIONS(6729), - [anon_sym_BSLASHacp] = ACTIONS(6729), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6729), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6729), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6729), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6729), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6729), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6729), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6729), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6729), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6729), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6729), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6729), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6731), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6729), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6731), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6729), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6729), - [anon_sym_BSLASHcolor] = ACTIONS(6729), - [anon_sym_BSLASHcolorbox] = ACTIONS(6729), - [anon_sym_BSLASHtextcolor] = ACTIONS(6729), - [anon_sym_BSLASHpagecolor] = ACTIONS(6729), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6729), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6729), - [anon_sym_BSLASHtext] = ACTIONS(6729), - [anon_sym_BSLASHintertext] = ACTIONS(6729), - [anon_sym_shortintertext] = ACTIONS(6729), - }, - [1817] = { - [sym_curly_group] = STATE(1899), - [aux_sym_generic_command_repeat1] = STATE(1817), - [sym_command_name] = ACTIONS(5976), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5976), - [anon_sym_LPAREN] = ACTIONS(5978), - [anon_sym_RPAREN] = ACTIONS(5978), - [anon_sym_LBRACE] = ACTIONS(6955), - [anon_sym_RBRACE] = ACTIONS(5978), - [anon_sym_BSLASHand] = ACTIONS(5976), - [sym_word] = ACTIONS(5976), - [sym_placeholder] = ACTIONS(5978), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_STAR] = ACTIONS(5978), - [anon_sym_SLASH] = ACTIONS(5978), - [anon_sym_LT] = ACTIONS(5976), - [anon_sym_GT] = ACTIONS(5976), - [anon_sym_BANG] = ACTIONS(5976), - [anon_sym_PIPE] = ACTIONS(5976), - [anon_sym_COLON] = ACTIONS(5976), - [anon_sym_SQUOTE] = ACTIONS(5976), - [anon_sym__] = ACTIONS(5978), - [anon_sym_CARET] = ACTIONS(5978), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5978), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5978), - [anon_sym_DOLLAR] = ACTIONS(5976), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5978), - [anon_sym_BSLASHtitle] = ACTIONS(5976), - [anon_sym_BSLASHauthor] = ACTIONS(5976), - [anon_sym_BSLASHusepackage] = ACTIONS(5976), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5976), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5976), - [anon_sym_BSLASHinclude] = ACTIONS(5976), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5976), - [anon_sym_BSLASHinput] = ACTIONS(5976), - [anon_sym_BSLASHsubfile] = ACTIONS(5976), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5976), - [anon_sym_BSLASHbibliography] = ACTIONS(5976), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5976), - [anon_sym_BSLASHincludesvg] = ACTIONS(5976), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5976), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5976), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5976), - [anon_sym_BSLASHimport] = ACTIONS(5976), - [anon_sym_BSLASHsubimport] = ACTIONS(5976), - [anon_sym_BSLASHinputfrom] = ACTIONS(5976), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5976), - [anon_sym_BSLASHincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHcaption] = ACTIONS(5976), - [anon_sym_BSLASHcite] = ACTIONS(5976), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCite] = ACTIONS(5976), - [anon_sym_BSLASHnocite] = ACTIONS(5976), - [anon_sym_BSLASHcitet] = ACTIONS(5976), - [anon_sym_BSLASHcitep] = ACTIONS(5976), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteauthor] = ACTIONS(5976), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5976), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitetitle] = ACTIONS(5976), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteyear] = ACTIONS(5976), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitedate] = ACTIONS(5976), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteurl] = ACTIONS(5976), - [anon_sym_BSLASHfullcite] = ACTIONS(5976), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5976), - [anon_sym_BSLASHcitealt] = ACTIONS(5976), - [anon_sym_BSLASHcitealp] = ACTIONS(5976), - [anon_sym_BSLASHcitetext] = ACTIONS(5976), - [anon_sym_BSLASHparencite] = ACTIONS(5976), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHParencite] = ACTIONS(5976), - [anon_sym_BSLASHfootcite] = ACTIONS(5976), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5976), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5976), - [anon_sym_BSLASHtextcite] = ACTIONS(5976), - [anon_sym_BSLASHTextcite] = ACTIONS(5976), - [anon_sym_BSLASHsmartcite] = ACTIONS(5976), - [anon_sym_BSLASHSmartcite] = ACTIONS(5976), - [anon_sym_BSLASHsupercite] = ACTIONS(5976), - [anon_sym_BSLASHautocite] = ACTIONS(5976), - [anon_sym_BSLASHAutocite] = ACTIONS(5976), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHvolcite] = ACTIONS(5976), - [anon_sym_BSLASHVolcite] = ACTIONS(5976), - [anon_sym_BSLASHpvolcite] = ACTIONS(5976), - [anon_sym_BSLASHPvolcite] = ACTIONS(5976), - [anon_sym_BSLASHfvolcite] = ACTIONS(5976), - [anon_sym_BSLASHftvolcite] = ACTIONS(5976), - [anon_sym_BSLASHsvolcite] = ACTIONS(5976), - [anon_sym_BSLASHSvolcite] = ACTIONS(5976), - [anon_sym_BSLASHtvolcite] = ACTIONS(5976), - [anon_sym_BSLASHTvolcite] = ACTIONS(5976), - [anon_sym_BSLASHavolcite] = ACTIONS(5976), - [anon_sym_BSLASHAvolcite] = ACTIONS(5976), - [anon_sym_BSLASHnotecite] = ACTIONS(5976), - [anon_sym_BSLASHNotecite] = ACTIONS(5976), - [anon_sym_BSLASHpnotecite] = ACTIONS(5976), - [anon_sym_BSLASHPnotecite] = ACTIONS(5976), - [anon_sym_BSLASHfnotecite] = ACTIONS(5976), - [anon_sym_BSLASHlabel] = ACTIONS(5976), - [anon_sym_BSLASHref] = ACTIONS(5976), - [anon_sym_BSLASHeqref] = ACTIONS(5976), - [anon_sym_BSLASHvref] = ACTIONS(5976), - [anon_sym_BSLASHVref] = ACTIONS(5976), - [anon_sym_BSLASHautoref] = ACTIONS(5976), - [anon_sym_BSLASHpageref] = ACTIONS(5976), - [anon_sym_BSLASHcref] = ACTIONS(5976), - [anon_sym_BSLASHCref] = ACTIONS(5976), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnameCref] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHlabelcref] = ACTIONS(5976), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCrefrange] = ACTIONS(5976), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnewlabel] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5976), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5976), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5978), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHdef] = ACTIONS(5976), - [anon_sym_BSLASHlet] = ACTIONS(5976), - [anon_sym_BSLASHleft] = ACTIONS(5976), - [anon_sym_BSLASHbig] = ACTIONS(5976), - [anon_sym_BSLASHBig] = ACTIONS(5976), - [anon_sym_BSLASHbigg] = ACTIONS(5976), - [anon_sym_BSLASHBigg] = ACTIONS(5976), - [anon_sym_BSLASHbigl] = ACTIONS(5976), - [anon_sym_BSLASHBigl] = ACTIONS(5976), - [anon_sym_BSLASHbiggl] = ACTIONS(5976), - [anon_sym_BSLASHBiggl] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5976), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5976), - [anon_sym_BSLASHgls] = ACTIONS(5976), - [anon_sym_BSLASHGls] = ACTIONS(5976), - [anon_sym_BSLASHGLS] = ACTIONS(5976), - [anon_sym_BSLASHglspl] = ACTIONS(5976), - [anon_sym_BSLASHGlspl] = ACTIONS(5976), - [anon_sym_BSLASHGLSpl] = ACTIONS(5976), - [anon_sym_BSLASHglsdisp] = ACTIONS(5976), - [anon_sym_BSLASHglslink] = ACTIONS(5976), - [anon_sym_BSLASHglstext] = ACTIONS(5976), - [anon_sym_BSLASHGlstext] = ACTIONS(5976), - [anon_sym_BSLASHGLStext] = ACTIONS(5976), - [anon_sym_BSLASHglsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5976), - [anon_sym_BSLASHglsplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSplural] = ACTIONS(5976), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHglsname] = ACTIONS(5976), - [anon_sym_BSLASHGlsname] = ACTIONS(5976), - [anon_sym_BSLASHGLSname] = ACTIONS(5976), - [anon_sym_BSLASHglssymbol] = ACTIONS(5976), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5976), - [anon_sym_BSLASHglsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5976), - [anon_sym_BSLASHglsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5976), - [anon_sym_BSLASHglsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5976), - [anon_sym_BSLASHglsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5976), - [anon_sym_BSLASHglsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5976), - [anon_sym_BSLASHnewacronym] = ACTIONS(5976), - [anon_sym_BSLASHacrshort] = ACTIONS(5976), - [anon_sym_BSLASHAcrshort] = ACTIONS(5976), - [anon_sym_BSLASHACRshort] = ACTIONS(5976), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5976), - [anon_sym_BSLASHacrlong] = ACTIONS(5976), - [anon_sym_BSLASHAcrlong] = ACTIONS(5976), - [anon_sym_BSLASHACRlong] = ACTIONS(5976), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5976), - [anon_sym_BSLASHacrfull] = ACTIONS(5976), - [anon_sym_BSLASHAcrfull] = ACTIONS(5976), - [anon_sym_BSLASHACRfull] = ACTIONS(5976), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5976), - [anon_sym_BSLASHacs] = ACTIONS(5976), - [anon_sym_BSLASHAcs] = ACTIONS(5976), - [anon_sym_BSLASHacsp] = ACTIONS(5976), - [anon_sym_BSLASHAcsp] = ACTIONS(5976), - [anon_sym_BSLASHacl] = ACTIONS(5976), - [anon_sym_BSLASHAcl] = ACTIONS(5976), - [anon_sym_BSLASHaclp] = ACTIONS(5976), - [anon_sym_BSLASHAclp] = ACTIONS(5976), - [anon_sym_BSLASHacf] = ACTIONS(5976), - [anon_sym_BSLASHAcf] = ACTIONS(5976), - [anon_sym_BSLASHacfp] = ACTIONS(5976), - [anon_sym_BSLASHAcfp] = ACTIONS(5976), - [anon_sym_BSLASHac] = ACTIONS(5976), - [anon_sym_BSLASHAc] = ACTIONS(5976), - [anon_sym_BSLASHacp] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5976), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5976), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5976), - [anon_sym_BSLASHcolor] = ACTIONS(5976), - [anon_sym_BSLASHcolorbox] = ACTIONS(5976), - [anon_sym_BSLASHtextcolor] = ACTIONS(5976), - [anon_sym_BSLASHpagecolor] = ACTIONS(5976), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5976), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5976), - [anon_sym_BSLASHtext] = ACTIONS(5976), - [anon_sym_BSLASHintertext] = ACTIONS(5976), - [anon_sym_shortintertext] = ACTIONS(5976), - }, - [1818] = { - [sym_brack_group_text] = STATE(1832), - [sym_command_name] = ACTIONS(6017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6017), - [anon_sym_LBRACK] = ACTIONS(6958), - [anon_sym_LPAREN] = ACTIONS(6019), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_LBRACE] = ACTIONS(6019), - [anon_sym_RBRACE] = ACTIONS(6019), - [anon_sym_BSLASHand] = ACTIONS(6017), - [sym_word] = ACTIONS(6017), - [sym_placeholder] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(6017), - [anon_sym_PIPE] = ACTIONS(6017), - [anon_sym_COLON] = ACTIONS(6017), - [anon_sym_SQUOTE] = ACTIONS(6017), - [anon_sym__] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6019), - [anon_sym_DOLLAR] = ACTIONS(6017), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6019), - [anon_sym_BSLASHtitle] = ACTIONS(6017), - [anon_sym_BSLASHauthor] = ACTIONS(6017), - [anon_sym_BSLASHusepackage] = ACTIONS(6017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), - [anon_sym_BSLASHinclude] = ACTIONS(6017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), - [anon_sym_BSLASHinput] = ACTIONS(6017), - [anon_sym_BSLASHsubfile] = ACTIONS(6017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), - [anon_sym_BSLASHbibliography] = ACTIONS(6017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), - [anon_sym_BSLASHincludesvg] = ACTIONS(6017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), - [anon_sym_BSLASHimport] = ACTIONS(6017), - [anon_sym_BSLASHsubimport] = ACTIONS(6017), - [anon_sym_BSLASHinputfrom] = ACTIONS(6017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), - [anon_sym_BSLASHincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHcaption] = ACTIONS(6017), - [anon_sym_BSLASHcite] = ACTIONS(6017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCite] = ACTIONS(6017), - [anon_sym_BSLASHnocite] = ACTIONS(6017), - [anon_sym_BSLASHcitet] = ACTIONS(6017), - [anon_sym_BSLASHcitep] = ACTIONS(6017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteauthor] = ACTIONS(6017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitetitle] = ACTIONS(6017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteyear] = ACTIONS(6017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitedate] = ACTIONS(6017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteurl] = ACTIONS(6017), - [anon_sym_BSLASHfullcite] = ACTIONS(6017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), - [anon_sym_BSLASHcitealt] = ACTIONS(6017), - [anon_sym_BSLASHcitealp] = ACTIONS(6017), - [anon_sym_BSLASHcitetext] = ACTIONS(6017), - [anon_sym_BSLASHparencite] = ACTIONS(6017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHParencite] = ACTIONS(6017), - [anon_sym_BSLASHfootcite] = ACTIONS(6017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), - [anon_sym_BSLASHtextcite] = ACTIONS(6017), - [anon_sym_BSLASHTextcite] = ACTIONS(6017), - [anon_sym_BSLASHsmartcite] = ACTIONS(6017), - [anon_sym_BSLASHSmartcite] = ACTIONS(6017), - [anon_sym_BSLASHsupercite] = ACTIONS(6017), - [anon_sym_BSLASHautocite] = ACTIONS(6017), - [anon_sym_BSLASHAutocite] = ACTIONS(6017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHvolcite] = ACTIONS(6017), - [anon_sym_BSLASHVolcite] = ACTIONS(6017), - [anon_sym_BSLASHpvolcite] = ACTIONS(6017), - [anon_sym_BSLASHPvolcite] = ACTIONS(6017), - [anon_sym_BSLASHfvolcite] = ACTIONS(6017), - [anon_sym_BSLASHftvolcite] = ACTIONS(6017), - [anon_sym_BSLASHsvolcite] = ACTIONS(6017), - [anon_sym_BSLASHSvolcite] = ACTIONS(6017), - [anon_sym_BSLASHtvolcite] = ACTIONS(6017), - [anon_sym_BSLASHTvolcite] = ACTIONS(6017), - [anon_sym_BSLASHavolcite] = ACTIONS(6017), - [anon_sym_BSLASHAvolcite] = ACTIONS(6017), - [anon_sym_BSLASHnotecite] = ACTIONS(6017), - [anon_sym_BSLASHNotecite] = ACTIONS(6017), - [anon_sym_BSLASHpnotecite] = ACTIONS(6017), - [anon_sym_BSLASHPnotecite] = ACTIONS(6017), - [anon_sym_BSLASHfnotecite] = ACTIONS(6017), - [anon_sym_BSLASHlabel] = ACTIONS(6017), - [anon_sym_BSLASHref] = ACTIONS(6017), - [anon_sym_BSLASHeqref] = ACTIONS(6017), - [anon_sym_BSLASHvref] = ACTIONS(6017), - [anon_sym_BSLASHVref] = ACTIONS(6017), - [anon_sym_BSLASHautoref] = ACTIONS(6017), - [anon_sym_BSLASHpageref] = ACTIONS(6017), - [anon_sym_BSLASHcref] = ACTIONS(6017), - [anon_sym_BSLASHCref] = ACTIONS(6017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnameCref] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHlabelcref] = ACTIONS(6017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCrefrange] = ACTIONS(6017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnewlabel] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHdef] = ACTIONS(6017), - [anon_sym_BSLASHlet] = ACTIONS(6017), - [anon_sym_BSLASHleft] = ACTIONS(6017), - [anon_sym_BSLASHbig] = ACTIONS(6017), - [anon_sym_BSLASHBig] = ACTIONS(6017), - [anon_sym_BSLASHbigg] = ACTIONS(6017), - [anon_sym_BSLASHBigg] = ACTIONS(6017), - [anon_sym_BSLASHbigl] = ACTIONS(6017), - [anon_sym_BSLASHBigl] = ACTIONS(6017), - [anon_sym_BSLASHbiggl] = ACTIONS(6017), - [anon_sym_BSLASHBiggl] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), - [anon_sym_BSLASHgls] = ACTIONS(6017), - [anon_sym_BSLASHGls] = ACTIONS(6017), - [anon_sym_BSLASHGLS] = ACTIONS(6017), - [anon_sym_BSLASHglspl] = ACTIONS(6017), - [anon_sym_BSLASHGlspl] = ACTIONS(6017), - [anon_sym_BSLASHGLSpl] = ACTIONS(6017), - [anon_sym_BSLASHglsdisp] = ACTIONS(6017), - [anon_sym_BSLASHglslink] = ACTIONS(6017), - [anon_sym_BSLASHglstext] = ACTIONS(6017), - [anon_sym_BSLASHGlstext] = ACTIONS(6017), - [anon_sym_BSLASHGLStext] = ACTIONS(6017), - [anon_sym_BSLASHglsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), - [anon_sym_BSLASHglsplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSplural] = ACTIONS(6017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHglsname] = ACTIONS(6017), - [anon_sym_BSLASHGlsname] = ACTIONS(6017), - [anon_sym_BSLASHGLSname] = ACTIONS(6017), - [anon_sym_BSLASHglssymbol] = ACTIONS(6017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), - [anon_sym_BSLASHglsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), - [anon_sym_BSLASHglsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), - [anon_sym_BSLASHglsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), - [anon_sym_BSLASHglsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), - [anon_sym_BSLASHglsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), - [anon_sym_BSLASHnewacronym] = ACTIONS(6017), - [anon_sym_BSLASHacrshort] = ACTIONS(6017), - [anon_sym_BSLASHAcrshort] = ACTIONS(6017), - [anon_sym_BSLASHACRshort] = ACTIONS(6017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), - [anon_sym_BSLASHacrlong] = ACTIONS(6017), - [anon_sym_BSLASHAcrlong] = ACTIONS(6017), - [anon_sym_BSLASHACRlong] = ACTIONS(6017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), - [anon_sym_BSLASHacrfull] = ACTIONS(6017), - [anon_sym_BSLASHAcrfull] = ACTIONS(6017), - [anon_sym_BSLASHACRfull] = ACTIONS(6017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), - [anon_sym_BSLASHacs] = ACTIONS(6017), - [anon_sym_BSLASHAcs] = ACTIONS(6017), - [anon_sym_BSLASHacsp] = ACTIONS(6017), - [anon_sym_BSLASHAcsp] = ACTIONS(6017), - [anon_sym_BSLASHacl] = ACTIONS(6017), - [anon_sym_BSLASHAcl] = ACTIONS(6017), - [anon_sym_BSLASHaclp] = ACTIONS(6017), - [anon_sym_BSLASHAclp] = ACTIONS(6017), - [anon_sym_BSLASHacf] = ACTIONS(6017), - [anon_sym_BSLASHAcf] = ACTIONS(6017), - [anon_sym_BSLASHacfp] = ACTIONS(6017), - [anon_sym_BSLASHAcfp] = ACTIONS(6017), - [anon_sym_BSLASHac] = ACTIONS(6017), - [anon_sym_BSLASHAc] = ACTIONS(6017), - [anon_sym_BSLASHacp] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), - [anon_sym_BSLASHcolor] = ACTIONS(6017), - [anon_sym_BSLASHcolorbox] = ACTIONS(6017), - [anon_sym_BSLASHtextcolor] = ACTIONS(6017), - [anon_sym_BSLASHpagecolor] = ACTIONS(6017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), - [anon_sym_BSLASHtext] = ACTIONS(6017), - [anon_sym_BSLASHintertext] = ACTIONS(6017), - [anon_sym_shortintertext] = ACTIONS(6017), - }, - [1819] = { - [sym_brack_group_text] = STATE(1852), - [sym_command_name] = ACTIONS(6009), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6958), - [anon_sym_LPAREN] = ACTIONS(6011), - [anon_sym_RPAREN] = ACTIONS(6011), - [anon_sym_LBRACE] = ACTIONS(6011), - [anon_sym_RBRACE] = ACTIONS(6011), - [anon_sym_BSLASHand] = ACTIONS(6009), - [sym_word] = ACTIONS(6009), - [sym_placeholder] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_SQUOTE] = ACTIONS(6009), - [anon_sym__] = ACTIONS(6011), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6011), - [anon_sym_DOLLAR] = ACTIONS(6009), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6011), - [anon_sym_BSLASHtitle] = ACTIONS(6009), - [anon_sym_BSLASHauthor] = ACTIONS(6009), - [anon_sym_BSLASHusepackage] = ACTIONS(6009), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6009), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6009), - [anon_sym_BSLASHinclude] = ACTIONS(6009), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6009), - [anon_sym_BSLASHinput] = ACTIONS(6009), - [anon_sym_BSLASHsubfile] = ACTIONS(6009), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6009), - [anon_sym_BSLASHbibliography] = ACTIONS(6009), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6009), - [anon_sym_BSLASHincludesvg] = ACTIONS(6009), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6009), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6009), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6009), - [anon_sym_BSLASHimport] = ACTIONS(6009), - [anon_sym_BSLASHsubimport] = ACTIONS(6009), - [anon_sym_BSLASHinputfrom] = ACTIONS(6009), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6009), - [anon_sym_BSLASHincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHcaption] = ACTIONS(6009), - [anon_sym_BSLASHcite] = ACTIONS(6009), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCite] = ACTIONS(6009), - [anon_sym_BSLASHnocite] = ACTIONS(6009), - [anon_sym_BSLASHcitet] = ACTIONS(6009), - [anon_sym_BSLASHcitep] = ACTIONS(6009), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteauthor] = ACTIONS(6009), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6009), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitetitle] = ACTIONS(6009), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteyear] = ACTIONS(6009), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitedate] = ACTIONS(6009), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteurl] = ACTIONS(6009), - [anon_sym_BSLASHfullcite] = ACTIONS(6009), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6009), - [anon_sym_BSLASHcitealt] = ACTIONS(6009), - [anon_sym_BSLASHcitealp] = ACTIONS(6009), - [anon_sym_BSLASHcitetext] = ACTIONS(6009), - [anon_sym_BSLASHparencite] = ACTIONS(6009), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHParencite] = ACTIONS(6009), - [anon_sym_BSLASHfootcite] = ACTIONS(6009), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6009), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6009), - [anon_sym_BSLASHtextcite] = ACTIONS(6009), - [anon_sym_BSLASHTextcite] = ACTIONS(6009), - [anon_sym_BSLASHsmartcite] = ACTIONS(6009), - [anon_sym_BSLASHSmartcite] = ACTIONS(6009), - [anon_sym_BSLASHsupercite] = ACTIONS(6009), - [anon_sym_BSLASHautocite] = ACTIONS(6009), - [anon_sym_BSLASHAutocite] = ACTIONS(6009), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHvolcite] = ACTIONS(6009), - [anon_sym_BSLASHVolcite] = ACTIONS(6009), - [anon_sym_BSLASHpvolcite] = ACTIONS(6009), - [anon_sym_BSLASHPvolcite] = ACTIONS(6009), - [anon_sym_BSLASHfvolcite] = ACTIONS(6009), - [anon_sym_BSLASHftvolcite] = ACTIONS(6009), - [anon_sym_BSLASHsvolcite] = ACTIONS(6009), - [anon_sym_BSLASHSvolcite] = ACTIONS(6009), - [anon_sym_BSLASHtvolcite] = ACTIONS(6009), - [anon_sym_BSLASHTvolcite] = ACTIONS(6009), - [anon_sym_BSLASHavolcite] = ACTIONS(6009), - [anon_sym_BSLASHAvolcite] = ACTIONS(6009), - [anon_sym_BSLASHnotecite] = ACTIONS(6009), - [anon_sym_BSLASHNotecite] = ACTIONS(6009), - [anon_sym_BSLASHpnotecite] = ACTIONS(6009), - [anon_sym_BSLASHPnotecite] = ACTIONS(6009), - [anon_sym_BSLASHfnotecite] = ACTIONS(6009), - [anon_sym_BSLASHlabel] = ACTIONS(6009), - [anon_sym_BSLASHref] = ACTIONS(6009), - [anon_sym_BSLASHeqref] = ACTIONS(6009), - [anon_sym_BSLASHvref] = ACTIONS(6009), - [anon_sym_BSLASHVref] = ACTIONS(6009), - [anon_sym_BSLASHautoref] = ACTIONS(6009), - [anon_sym_BSLASHpageref] = ACTIONS(6009), - [anon_sym_BSLASHcref] = ACTIONS(6009), - [anon_sym_BSLASHCref] = ACTIONS(6009), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnameCref] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHlabelcref] = ACTIONS(6009), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCrefrange] = ACTIONS(6009), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnewlabel] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6009), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6009), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6011), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHdef] = ACTIONS(6009), - [anon_sym_BSLASHlet] = ACTIONS(6009), - [anon_sym_BSLASHleft] = ACTIONS(6009), - [anon_sym_BSLASHbig] = ACTIONS(6009), - [anon_sym_BSLASHBig] = ACTIONS(6009), - [anon_sym_BSLASHbigg] = ACTIONS(6009), - [anon_sym_BSLASHBigg] = ACTIONS(6009), - [anon_sym_BSLASHbigl] = ACTIONS(6009), - [anon_sym_BSLASHBigl] = ACTIONS(6009), - [anon_sym_BSLASHbiggl] = ACTIONS(6009), - [anon_sym_BSLASHBiggl] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6009), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6009), - [anon_sym_BSLASHgls] = ACTIONS(6009), - [anon_sym_BSLASHGls] = ACTIONS(6009), - [anon_sym_BSLASHGLS] = ACTIONS(6009), - [anon_sym_BSLASHglspl] = ACTIONS(6009), - [anon_sym_BSLASHGlspl] = ACTIONS(6009), - [anon_sym_BSLASHGLSpl] = ACTIONS(6009), - [anon_sym_BSLASHglsdisp] = ACTIONS(6009), - [anon_sym_BSLASHglslink] = ACTIONS(6009), - [anon_sym_BSLASHglstext] = ACTIONS(6009), - [anon_sym_BSLASHGlstext] = ACTIONS(6009), - [anon_sym_BSLASHGLStext] = ACTIONS(6009), - [anon_sym_BSLASHglsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6009), - [anon_sym_BSLASHglsplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSplural] = ACTIONS(6009), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHglsname] = ACTIONS(6009), - [anon_sym_BSLASHGlsname] = ACTIONS(6009), - [anon_sym_BSLASHGLSname] = ACTIONS(6009), - [anon_sym_BSLASHglssymbol] = ACTIONS(6009), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6009), - [anon_sym_BSLASHglsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6009), - [anon_sym_BSLASHglsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6009), - [anon_sym_BSLASHglsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6009), - [anon_sym_BSLASHglsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6009), - [anon_sym_BSLASHglsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6009), - [anon_sym_BSLASHnewacronym] = ACTIONS(6009), - [anon_sym_BSLASHacrshort] = ACTIONS(6009), - [anon_sym_BSLASHAcrshort] = ACTIONS(6009), - [anon_sym_BSLASHACRshort] = ACTIONS(6009), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6009), - [anon_sym_BSLASHacrlong] = ACTIONS(6009), - [anon_sym_BSLASHAcrlong] = ACTIONS(6009), - [anon_sym_BSLASHACRlong] = ACTIONS(6009), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6009), - [anon_sym_BSLASHacrfull] = ACTIONS(6009), - [anon_sym_BSLASHAcrfull] = ACTIONS(6009), - [anon_sym_BSLASHACRfull] = ACTIONS(6009), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6009), - [anon_sym_BSLASHacs] = ACTIONS(6009), - [anon_sym_BSLASHAcs] = ACTIONS(6009), - [anon_sym_BSLASHacsp] = ACTIONS(6009), - [anon_sym_BSLASHAcsp] = ACTIONS(6009), - [anon_sym_BSLASHacl] = ACTIONS(6009), - [anon_sym_BSLASHAcl] = ACTIONS(6009), - [anon_sym_BSLASHaclp] = ACTIONS(6009), - [anon_sym_BSLASHAclp] = ACTIONS(6009), - [anon_sym_BSLASHacf] = ACTIONS(6009), - [anon_sym_BSLASHAcf] = ACTIONS(6009), - [anon_sym_BSLASHacfp] = ACTIONS(6009), - [anon_sym_BSLASHAcfp] = ACTIONS(6009), - [anon_sym_BSLASHac] = ACTIONS(6009), - [anon_sym_BSLASHAc] = ACTIONS(6009), - [anon_sym_BSLASHacp] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6009), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6009), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6009), - [anon_sym_BSLASHcolor] = ACTIONS(6009), - [anon_sym_BSLASHcolorbox] = ACTIONS(6009), - [anon_sym_BSLASHtextcolor] = ACTIONS(6009), - [anon_sym_BSLASHpagecolor] = ACTIONS(6009), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6009), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6009), - [anon_sym_BSLASHtext] = ACTIONS(6009), - [anon_sym_BSLASHintertext] = ACTIONS(6009), - [anon_sym_shortintertext] = ACTIONS(6009), - }, - [1820] = { - [sym_curly_group] = STATE(1828), - [sym_command_name] = ACTIONS(6021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6021), - [anon_sym_LPAREN] = ACTIONS(6023), - [anon_sym_RPAREN] = ACTIONS(6023), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(6023), - [anon_sym_BSLASHand] = ACTIONS(6021), - [sym_word] = ACTIONS(6021), - [sym_placeholder] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6023), - [anon_sym_DASH] = ACTIONS(6023), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6023), - [anon_sym_LT] = ACTIONS(6021), - [anon_sym_GT] = ACTIONS(6021), - [anon_sym_BANG] = ACTIONS(6021), - [anon_sym_PIPE] = ACTIONS(6021), - [anon_sym_COLON] = ACTIONS(6021), - [anon_sym_SQUOTE] = ACTIONS(6021), - [anon_sym__] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6023), - [anon_sym_DOLLAR] = ACTIONS(6021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6023), - [anon_sym_BSLASHtitle] = ACTIONS(6021), - [anon_sym_BSLASHauthor] = ACTIONS(6021), - [anon_sym_BSLASHusepackage] = ACTIONS(6021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), - [anon_sym_BSLASHinclude] = ACTIONS(6021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), - [anon_sym_BSLASHinput] = ACTIONS(6021), - [anon_sym_BSLASHsubfile] = ACTIONS(6021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), - [anon_sym_BSLASHbibliography] = ACTIONS(6021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), - [anon_sym_BSLASHincludesvg] = ACTIONS(6021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), - [anon_sym_BSLASHimport] = ACTIONS(6021), - [anon_sym_BSLASHsubimport] = ACTIONS(6021), - [anon_sym_BSLASHinputfrom] = ACTIONS(6021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), - [anon_sym_BSLASHincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHcaption] = ACTIONS(6021), - [anon_sym_BSLASHcite] = ACTIONS(6021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCite] = ACTIONS(6021), - [anon_sym_BSLASHnocite] = ACTIONS(6021), - [anon_sym_BSLASHcitet] = ACTIONS(6021), - [anon_sym_BSLASHcitep] = ACTIONS(6021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteauthor] = ACTIONS(6021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitetitle] = ACTIONS(6021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteyear] = ACTIONS(6021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitedate] = ACTIONS(6021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteurl] = ACTIONS(6021), - [anon_sym_BSLASHfullcite] = ACTIONS(6021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), - [anon_sym_BSLASHcitealt] = ACTIONS(6021), - [anon_sym_BSLASHcitealp] = ACTIONS(6021), - [anon_sym_BSLASHcitetext] = ACTIONS(6021), - [anon_sym_BSLASHparencite] = ACTIONS(6021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHParencite] = ACTIONS(6021), - [anon_sym_BSLASHfootcite] = ACTIONS(6021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), - [anon_sym_BSLASHtextcite] = ACTIONS(6021), - [anon_sym_BSLASHTextcite] = ACTIONS(6021), - [anon_sym_BSLASHsmartcite] = ACTIONS(6021), - [anon_sym_BSLASHSmartcite] = ACTIONS(6021), - [anon_sym_BSLASHsupercite] = ACTIONS(6021), - [anon_sym_BSLASHautocite] = ACTIONS(6021), - [anon_sym_BSLASHAutocite] = ACTIONS(6021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHvolcite] = ACTIONS(6021), - [anon_sym_BSLASHVolcite] = ACTIONS(6021), - [anon_sym_BSLASHpvolcite] = ACTIONS(6021), - [anon_sym_BSLASHPvolcite] = ACTIONS(6021), - [anon_sym_BSLASHfvolcite] = ACTIONS(6021), - [anon_sym_BSLASHftvolcite] = ACTIONS(6021), - [anon_sym_BSLASHsvolcite] = ACTIONS(6021), - [anon_sym_BSLASHSvolcite] = ACTIONS(6021), - [anon_sym_BSLASHtvolcite] = ACTIONS(6021), - [anon_sym_BSLASHTvolcite] = ACTIONS(6021), - [anon_sym_BSLASHavolcite] = ACTIONS(6021), - [anon_sym_BSLASHAvolcite] = ACTIONS(6021), - [anon_sym_BSLASHnotecite] = ACTIONS(6021), - [anon_sym_BSLASHNotecite] = ACTIONS(6021), - [anon_sym_BSLASHpnotecite] = ACTIONS(6021), - [anon_sym_BSLASHPnotecite] = ACTIONS(6021), - [anon_sym_BSLASHfnotecite] = ACTIONS(6021), - [anon_sym_BSLASHlabel] = ACTIONS(6021), - [anon_sym_BSLASHref] = ACTIONS(6021), - [anon_sym_BSLASHeqref] = ACTIONS(6021), - [anon_sym_BSLASHvref] = ACTIONS(6021), - [anon_sym_BSLASHVref] = ACTIONS(6021), - [anon_sym_BSLASHautoref] = ACTIONS(6021), - [anon_sym_BSLASHpageref] = ACTIONS(6021), - [anon_sym_BSLASHcref] = ACTIONS(6021), - [anon_sym_BSLASHCref] = ACTIONS(6021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnameCref] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHlabelcref] = ACTIONS(6021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCrefrange] = ACTIONS(6021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnewlabel] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHdef] = ACTIONS(6021), - [anon_sym_BSLASHlet] = ACTIONS(6021), - [anon_sym_BSLASHleft] = ACTIONS(6021), - [anon_sym_BSLASHbig] = ACTIONS(6021), - [anon_sym_BSLASHBig] = ACTIONS(6021), - [anon_sym_BSLASHbigg] = ACTIONS(6021), - [anon_sym_BSLASHBigg] = ACTIONS(6021), - [anon_sym_BSLASHbigl] = ACTIONS(6021), - [anon_sym_BSLASHBigl] = ACTIONS(6021), - [anon_sym_BSLASHbiggl] = ACTIONS(6021), - [anon_sym_BSLASHBiggl] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), - [anon_sym_BSLASHgls] = ACTIONS(6021), - [anon_sym_BSLASHGls] = ACTIONS(6021), - [anon_sym_BSLASHGLS] = ACTIONS(6021), - [anon_sym_BSLASHglspl] = ACTIONS(6021), - [anon_sym_BSLASHGlspl] = ACTIONS(6021), - [anon_sym_BSLASHGLSpl] = ACTIONS(6021), - [anon_sym_BSLASHglsdisp] = ACTIONS(6021), - [anon_sym_BSLASHglslink] = ACTIONS(6021), - [anon_sym_BSLASHglstext] = ACTIONS(6021), - [anon_sym_BSLASHGlstext] = ACTIONS(6021), - [anon_sym_BSLASHGLStext] = ACTIONS(6021), - [anon_sym_BSLASHglsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), - [anon_sym_BSLASHglsplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSplural] = ACTIONS(6021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHglsname] = ACTIONS(6021), - [anon_sym_BSLASHGlsname] = ACTIONS(6021), - [anon_sym_BSLASHGLSname] = ACTIONS(6021), - [anon_sym_BSLASHglssymbol] = ACTIONS(6021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), - [anon_sym_BSLASHglsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), - [anon_sym_BSLASHglsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), - [anon_sym_BSLASHglsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), - [anon_sym_BSLASHglsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), - [anon_sym_BSLASHglsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), - [anon_sym_BSLASHnewacronym] = ACTIONS(6021), - [anon_sym_BSLASHacrshort] = ACTIONS(6021), - [anon_sym_BSLASHAcrshort] = ACTIONS(6021), - [anon_sym_BSLASHACRshort] = ACTIONS(6021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), - [anon_sym_BSLASHacrlong] = ACTIONS(6021), - [anon_sym_BSLASHAcrlong] = ACTIONS(6021), - [anon_sym_BSLASHACRlong] = ACTIONS(6021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), - [anon_sym_BSLASHacrfull] = ACTIONS(6021), - [anon_sym_BSLASHAcrfull] = ACTIONS(6021), - [anon_sym_BSLASHACRfull] = ACTIONS(6021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), - [anon_sym_BSLASHacs] = ACTIONS(6021), - [anon_sym_BSLASHAcs] = ACTIONS(6021), - [anon_sym_BSLASHacsp] = ACTIONS(6021), - [anon_sym_BSLASHAcsp] = ACTIONS(6021), - [anon_sym_BSLASHacl] = ACTIONS(6021), - [anon_sym_BSLASHAcl] = ACTIONS(6021), - [anon_sym_BSLASHaclp] = ACTIONS(6021), - [anon_sym_BSLASHAclp] = ACTIONS(6021), - [anon_sym_BSLASHacf] = ACTIONS(6021), - [anon_sym_BSLASHAcf] = ACTIONS(6021), - [anon_sym_BSLASHacfp] = ACTIONS(6021), - [anon_sym_BSLASHAcfp] = ACTIONS(6021), - [anon_sym_BSLASHac] = ACTIONS(6021), - [anon_sym_BSLASHAc] = ACTIONS(6021), - [anon_sym_BSLASHacp] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), - [anon_sym_BSLASHcolor] = ACTIONS(6021), - [anon_sym_BSLASHcolorbox] = ACTIONS(6021), - [anon_sym_BSLASHtextcolor] = ACTIONS(6021), - [anon_sym_BSLASHpagecolor] = ACTIONS(6021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), - [anon_sym_BSLASHtext] = ACTIONS(6021), - [anon_sym_BSLASHintertext] = ACTIONS(6021), - [anon_sym_shortintertext] = ACTIONS(6021), - }, - [1821] = { - [sym_command_name] = ACTIONS(6157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_LBRACE] = ACTIONS(6159), - [anon_sym_RBRACE] = ACTIONS(6159), - [anon_sym_BSLASHand] = ACTIONS(6157), - [sym_word] = ACTIONS(6157), - [sym_placeholder] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6157), - [anon_sym_GT] = ACTIONS(6157), - [anon_sym_BANG] = ACTIONS(6157), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_SQUOTE] = ACTIONS(6157), - [anon_sym__] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6159), - [anon_sym_DOLLAR] = ACTIONS(6157), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6159), - [anon_sym_BSLASHtitle] = ACTIONS(6157), - [anon_sym_BSLASHauthor] = ACTIONS(6157), - [anon_sym_BSLASHusepackage] = ACTIONS(6157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6157), - [anon_sym_BSLASHinclude] = ACTIONS(6157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6157), - [anon_sym_BSLASHinput] = ACTIONS(6157), - [anon_sym_BSLASHsubfile] = ACTIONS(6157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6157), - [anon_sym_BSLASHbibliography] = ACTIONS(6157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6157), - [anon_sym_BSLASHincludesvg] = ACTIONS(6157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6157), - [anon_sym_BSLASHimport] = ACTIONS(6157), - [anon_sym_BSLASHsubimport] = ACTIONS(6157), - [anon_sym_BSLASHinputfrom] = ACTIONS(6157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6157), - [anon_sym_BSLASHincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHcaption] = ACTIONS(6157), - [anon_sym_BSLASHcite] = ACTIONS(6157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCite] = ACTIONS(6157), - [anon_sym_BSLASHnocite] = ACTIONS(6157), - [anon_sym_BSLASHcitet] = ACTIONS(6157), - [anon_sym_BSLASHcitep] = ACTIONS(6157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteauthor] = ACTIONS(6157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitetitle] = ACTIONS(6157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteyear] = ACTIONS(6157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitedate] = ACTIONS(6157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteurl] = ACTIONS(6157), - [anon_sym_BSLASHfullcite] = ACTIONS(6157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6157), - [anon_sym_BSLASHcitealt] = ACTIONS(6157), - [anon_sym_BSLASHcitealp] = ACTIONS(6157), - [anon_sym_BSLASHcitetext] = ACTIONS(6157), - [anon_sym_BSLASHparencite] = ACTIONS(6157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHParencite] = ACTIONS(6157), - [anon_sym_BSLASHfootcite] = ACTIONS(6157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6157), - [anon_sym_BSLASHtextcite] = ACTIONS(6157), - [anon_sym_BSLASHTextcite] = ACTIONS(6157), - [anon_sym_BSLASHsmartcite] = ACTIONS(6157), - [anon_sym_BSLASHSmartcite] = ACTIONS(6157), - [anon_sym_BSLASHsupercite] = ACTIONS(6157), - [anon_sym_BSLASHautocite] = ACTIONS(6157), - [anon_sym_BSLASHAutocite] = ACTIONS(6157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHvolcite] = ACTIONS(6157), - [anon_sym_BSLASHVolcite] = ACTIONS(6157), - [anon_sym_BSLASHpvolcite] = ACTIONS(6157), - [anon_sym_BSLASHPvolcite] = ACTIONS(6157), - [anon_sym_BSLASHfvolcite] = ACTIONS(6157), - [anon_sym_BSLASHftvolcite] = ACTIONS(6157), - [anon_sym_BSLASHsvolcite] = ACTIONS(6157), - [anon_sym_BSLASHSvolcite] = ACTIONS(6157), - [anon_sym_BSLASHtvolcite] = ACTIONS(6157), - [anon_sym_BSLASHTvolcite] = ACTIONS(6157), - [anon_sym_BSLASHavolcite] = ACTIONS(6157), - [anon_sym_BSLASHAvolcite] = ACTIONS(6157), - [anon_sym_BSLASHnotecite] = ACTIONS(6157), - [anon_sym_BSLASHNotecite] = ACTIONS(6157), - [anon_sym_BSLASHpnotecite] = ACTIONS(6157), - [anon_sym_BSLASHPnotecite] = ACTIONS(6157), - [anon_sym_BSLASHfnotecite] = ACTIONS(6157), - [anon_sym_BSLASHlabel] = ACTIONS(6157), - [anon_sym_BSLASHref] = ACTIONS(6157), - [anon_sym_BSLASHeqref] = ACTIONS(6157), - [anon_sym_BSLASHvref] = ACTIONS(6157), - [anon_sym_BSLASHVref] = ACTIONS(6157), - [anon_sym_BSLASHautoref] = ACTIONS(6157), - [anon_sym_BSLASHpageref] = ACTIONS(6157), - [anon_sym_BSLASHcref] = ACTIONS(6157), - [anon_sym_BSLASHCref] = ACTIONS(6157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnameCref] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHlabelcref] = ACTIONS(6157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCrefrange] = ACTIONS(6157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnewlabel] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6159), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHdef] = ACTIONS(6157), - [anon_sym_BSLASHlet] = ACTIONS(6157), - [anon_sym_BSLASHleft] = ACTIONS(6157), - [anon_sym_BSLASHbig] = ACTIONS(6157), - [anon_sym_BSLASHBig] = ACTIONS(6157), - [anon_sym_BSLASHbigg] = ACTIONS(6157), - [anon_sym_BSLASHBigg] = ACTIONS(6157), - [anon_sym_BSLASHbigl] = ACTIONS(6157), - [anon_sym_BSLASHBigl] = ACTIONS(6157), - [anon_sym_BSLASHbiggl] = ACTIONS(6157), - [anon_sym_BSLASHBiggl] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6157), - [anon_sym_BSLASHgls] = ACTIONS(6157), - [anon_sym_BSLASHGls] = ACTIONS(6157), - [anon_sym_BSLASHGLS] = ACTIONS(6157), - [anon_sym_BSLASHglspl] = ACTIONS(6157), - [anon_sym_BSLASHGlspl] = ACTIONS(6157), - [anon_sym_BSLASHGLSpl] = ACTIONS(6157), - [anon_sym_BSLASHglsdisp] = ACTIONS(6157), - [anon_sym_BSLASHglslink] = ACTIONS(6157), - [anon_sym_BSLASHglstext] = ACTIONS(6157), - [anon_sym_BSLASHGlstext] = ACTIONS(6157), - [anon_sym_BSLASHGLStext] = ACTIONS(6157), - [anon_sym_BSLASHglsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6157), - [anon_sym_BSLASHglsplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSplural] = ACTIONS(6157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHglsname] = ACTIONS(6157), - [anon_sym_BSLASHGlsname] = ACTIONS(6157), - [anon_sym_BSLASHGLSname] = ACTIONS(6157), - [anon_sym_BSLASHglssymbol] = ACTIONS(6157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6157), - [anon_sym_BSLASHglsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6157), - [anon_sym_BSLASHglsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6157), - [anon_sym_BSLASHglsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6157), - [anon_sym_BSLASHglsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6157), - [anon_sym_BSLASHglsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6157), - [anon_sym_BSLASHnewacronym] = ACTIONS(6157), - [anon_sym_BSLASHacrshort] = ACTIONS(6157), - [anon_sym_BSLASHAcrshort] = ACTIONS(6157), - [anon_sym_BSLASHACRshort] = ACTIONS(6157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6157), - [anon_sym_BSLASHacrlong] = ACTIONS(6157), - [anon_sym_BSLASHAcrlong] = ACTIONS(6157), - [anon_sym_BSLASHACRlong] = ACTIONS(6157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6157), - [anon_sym_BSLASHacrfull] = ACTIONS(6157), - [anon_sym_BSLASHAcrfull] = ACTIONS(6157), - [anon_sym_BSLASHACRfull] = ACTIONS(6157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6157), - [anon_sym_BSLASHacs] = ACTIONS(6157), - [anon_sym_BSLASHAcs] = ACTIONS(6157), - [anon_sym_BSLASHacsp] = ACTIONS(6157), - [anon_sym_BSLASHAcsp] = ACTIONS(6157), - [anon_sym_BSLASHacl] = ACTIONS(6157), - [anon_sym_BSLASHAcl] = ACTIONS(6157), - [anon_sym_BSLASHaclp] = ACTIONS(6157), - [anon_sym_BSLASHAclp] = ACTIONS(6157), - [anon_sym_BSLASHacf] = ACTIONS(6157), - [anon_sym_BSLASHAcf] = ACTIONS(6157), - [anon_sym_BSLASHacfp] = ACTIONS(6157), - [anon_sym_BSLASHAcfp] = ACTIONS(6157), - [anon_sym_BSLASHac] = ACTIONS(6157), - [anon_sym_BSLASHAc] = ACTIONS(6157), - [anon_sym_BSLASHacp] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6157), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6157), - [anon_sym_BSLASHcolor] = ACTIONS(6157), - [anon_sym_BSLASHcolorbox] = ACTIONS(6157), - [anon_sym_BSLASHtextcolor] = ACTIONS(6157), - [anon_sym_BSLASHpagecolor] = ACTIONS(6157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6157), - [anon_sym_BSLASHtext] = ACTIONS(6157), - [anon_sym_BSLASHintertext] = ACTIONS(6157), - [anon_sym_shortintertext] = ACTIONS(6157), - }, - [1822] = { - [sym_command_name] = ACTIONS(5997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5997), - [anon_sym_BSLASHfi] = ACTIONS(6960), - [anon_sym_LPAREN] = ACTIONS(6001), - [anon_sym_RPAREN] = ACTIONS(6001), - [anon_sym_LBRACE] = ACTIONS(6001), - [anon_sym_RBRACE] = ACTIONS(6001), - [anon_sym_BSLASHand] = ACTIONS(5997), - [sym_word] = ACTIONS(5997), - [sym_placeholder] = ACTIONS(6001), - [anon_sym_PLUS] = ACTIONS(6001), - [anon_sym_DASH] = ACTIONS(6001), - [anon_sym_STAR] = ACTIONS(6001), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_COLON] = ACTIONS(5997), - [anon_sym_SQUOTE] = ACTIONS(5997), - [anon_sym__] = ACTIONS(6001), - [anon_sym_CARET] = ACTIONS(6001), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6001), - [anon_sym_DOLLAR] = ACTIONS(5997), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6001), - [anon_sym_BSLASHtitle] = ACTIONS(5997), - [anon_sym_BSLASHauthor] = ACTIONS(5997), - [anon_sym_BSLASHusepackage] = ACTIONS(5997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5997), - [anon_sym_BSLASHinclude] = ACTIONS(5997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5997), - [anon_sym_BSLASHinput] = ACTIONS(5997), - [anon_sym_BSLASHsubfile] = ACTIONS(5997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5997), - [anon_sym_BSLASHbibliography] = ACTIONS(5997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5997), - [anon_sym_BSLASHincludesvg] = ACTIONS(5997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5997), - [anon_sym_BSLASHimport] = ACTIONS(5997), - [anon_sym_BSLASHsubimport] = ACTIONS(5997), - [anon_sym_BSLASHinputfrom] = ACTIONS(5997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5997), - [anon_sym_BSLASHincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHcaption] = ACTIONS(5997), - [anon_sym_BSLASHcite] = ACTIONS(5997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCite] = ACTIONS(5997), - [anon_sym_BSLASHnocite] = ACTIONS(5997), - [anon_sym_BSLASHcitet] = ACTIONS(5997), - [anon_sym_BSLASHcitep] = ACTIONS(5997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteyear] = ACTIONS(5997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitedate] = ACTIONS(5997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteurl] = ACTIONS(5997), - [anon_sym_BSLASHfullcite] = ACTIONS(5997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5997), - [anon_sym_BSLASHcitealt] = ACTIONS(5997), - [anon_sym_BSLASHcitealp] = ACTIONS(5997), - [anon_sym_BSLASHcitetext] = ACTIONS(5997), - [anon_sym_BSLASHparencite] = ACTIONS(5997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHParencite] = ACTIONS(5997), - [anon_sym_BSLASHfootcite] = ACTIONS(5997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5997), - [anon_sym_BSLASHtextcite] = ACTIONS(5997), - [anon_sym_BSLASHTextcite] = ACTIONS(5997), - [anon_sym_BSLASHsmartcite] = ACTIONS(5997), - [anon_sym_BSLASHSmartcite] = ACTIONS(5997), - [anon_sym_BSLASHsupercite] = ACTIONS(5997), - [anon_sym_BSLASHautocite] = ACTIONS(5997), - [anon_sym_BSLASHAutocite] = ACTIONS(5997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHvolcite] = ACTIONS(5997), - [anon_sym_BSLASHVolcite] = ACTIONS(5997), - [anon_sym_BSLASHpvolcite] = ACTIONS(5997), - [anon_sym_BSLASHPvolcite] = ACTIONS(5997), - [anon_sym_BSLASHfvolcite] = ACTIONS(5997), - [anon_sym_BSLASHftvolcite] = ACTIONS(5997), - [anon_sym_BSLASHsvolcite] = ACTIONS(5997), - [anon_sym_BSLASHSvolcite] = ACTIONS(5997), - [anon_sym_BSLASHtvolcite] = ACTIONS(5997), - [anon_sym_BSLASHTvolcite] = ACTIONS(5997), - [anon_sym_BSLASHavolcite] = ACTIONS(5997), - [anon_sym_BSLASHAvolcite] = ACTIONS(5997), - [anon_sym_BSLASHnotecite] = ACTIONS(5997), - [anon_sym_BSLASHNotecite] = ACTIONS(5997), - [anon_sym_BSLASHpnotecite] = ACTIONS(5997), - [anon_sym_BSLASHPnotecite] = ACTIONS(5997), - [anon_sym_BSLASHfnotecite] = ACTIONS(5997), - [anon_sym_BSLASHlabel] = ACTIONS(5997), - [anon_sym_BSLASHref] = ACTIONS(5997), - [anon_sym_BSLASHeqref] = ACTIONS(5997), - [anon_sym_BSLASHvref] = ACTIONS(5997), - [anon_sym_BSLASHVref] = ACTIONS(5997), - [anon_sym_BSLASHautoref] = ACTIONS(5997), - [anon_sym_BSLASHpageref] = ACTIONS(5997), - [anon_sym_BSLASHcref] = ACTIONS(5997), - [anon_sym_BSLASHCref] = ACTIONS(5997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnameCref] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHlabelcref] = ACTIONS(5997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHdef] = ACTIONS(5997), - [anon_sym_BSLASHlet] = ACTIONS(5997), - [anon_sym_BSLASHleft] = ACTIONS(5997), - [anon_sym_BSLASHbig] = ACTIONS(5997), - [anon_sym_BSLASHBig] = ACTIONS(5997), - [anon_sym_BSLASHbigg] = ACTIONS(5997), - [anon_sym_BSLASHBigg] = ACTIONS(5997), - [anon_sym_BSLASHbigl] = ACTIONS(5997), - [anon_sym_BSLASHBigl] = ACTIONS(5997), - [anon_sym_BSLASHbiggl] = ACTIONS(5997), - [anon_sym_BSLASHBiggl] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5997), - [anon_sym_BSLASHgls] = ACTIONS(5997), - [anon_sym_BSLASHGls] = ACTIONS(5997), - [anon_sym_BSLASHGLS] = ACTIONS(5997), - [anon_sym_BSLASHglspl] = ACTIONS(5997), - [anon_sym_BSLASHGlspl] = ACTIONS(5997), - [anon_sym_BSLASHGLSpl] = ACTIONS(5997), - [anon_sym_BSLASHglsdisp] = ACTIONS(5997), - [anon_sym_BSLASHglslink] = ACTIONS(5997), - [anon_sym_BSLASHglstext] = ACTIONS(5997), - [anon_sym_BSLASHGlstext] = ACTIONS(5997), - [anon_sym_BSLASHGLStext] = ACTIONS(5997), - [anon_sym_BSLASHglsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5997), - [anon_sym_BSLASHglsplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSplural] = ACTIONS(5997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHglsname] = ACTIONS(5997), - [anon_sym_BSLASHGlsname] = ACTIONS(5997), - [anon_sym_BSLASHGLSname] = ACTIONS(5997), - [anon_sym_BSLASHglssymbol] = ACTIONS(5997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5997), - [anon_sym_BSLASHglsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5997), - [anon_sym_BSLASHglsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5997), - [anon_sym_BSLASHglsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5997), - [anon_sym_BSLASHglsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5997), - [anon_sym_BSLASHglsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5997), - [anon_sym_BSLASHnewacronym] = ACTIONS(5997), - [anon_sym_BSLASHacrshort] = ACTIONS(5997), - [anon_sym_BSLASHAcrshort] = ACTIONS(5997), - [anon_sym_BSLASHACRshort] = ACTIONS(5997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5997), - [anon_sym_BSLASHacrlong] = ACTIONS(5997), - [anon_sym_BSLASHAcrlong] = ACTIONS(5997), - [anon_sym_BSLASHACRlong] = ACTIONS(5997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5997), - [anon_sym_BSLASHacrfull] = ACTIONS(5997), - [anon_sym_BSLASHAcrfull] = ACTIONS(5997), - [anon_sym_BSLASHACRfull] = ACTIONS(5997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5997), - [anon_sym_BSLASHacs] = ACTIONS(5997), - [anon_sym_BSLASHAcs] = ACTIONS(5997), - [anon_sym_BSLASHacsp] = ACTIONS(5997), - [anon_sym_BSLASHAcsp] = ACTIONS(5997), - [anon_sym_BSLASHacl] = ACTIONS(5997), - [anon_sym_BSLASHAcl] = ACTIONS(5997), - [anon_sym_BSLASHaclp] = ACTIONS(5997), - [anon_sym_BSLASHAclp] = ACTIONS(5997), - [anon_sym_BSLASHacf] = ACTIONS(5997), - [anon_sym_BSLASHAcf] = ACTIONS(5997), - [anon_sym_BSLASHacfp] = ACTIONS(5997), - [anon_sym_BSLASHAcfp] = ACTIONS(5997), - [anon_sym_BSLASHac] = ACTIONS(5997), - [anon_sym_BSLASHAc] = ACTIONS(5997), - [anon_sym_BSLASHacp] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5997), - [anon_sym_BSLASHcolor] = ACTIONS(5997), - [anon_sym_BSLASHcolorbox] = ACTIONS(5997), - [anon_sym_BSLASHtextcolor] = ACTIONS(5997), - [anon_sym_BSLASHpagecolor] = ACTIONS(5997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5997), - [anon_sym_BSLASHtext] = ACTIONS(5997), - [anon_sym_BSLASHintertext] = ACTIONS(5997), - [anon_sym_shortintertext] = ACTIONS(5997), - }, - [1823] = { - [sym_curly_group] = STATE(1839), - [sym_command_name] = ACTIONS(6013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6013), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_RPAREN] = ACTIONS(6015), - [anon_sym_LBRACE] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(6015), - [anon_sym_BSLASHand] = ACTIONS(6013), - [sym_word] = ACTIONS(6013), - [sym_placeholder] = ACTIONS(6015), - [anon_sym_PLUS] = ACTIONS(6015), - [anon_sym_DASH] = ACTIONS(6015), - [anon_sym_STAR] = ACTIONS(6015), - [anon_sym_SLASH] = ACTIONS(6015), - [anon_sym_LT] = ACTIONS(6013), - [anon_sym_GT] = ACTIONS(6013), - [anon_sym_BANG] = ACTIONS(6013), - [anon_sym_PIPE] = ACTIONS(6013), - [anon_sym_COLON] = ACTIONS(6013), - [anon_sym_SQUOTE] = ACTIONS(6013), - [anon_sym__] = ACTIONS(6015), - [anon_sym_CARET] = ACTIONS(6015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6015), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6015), - [anon_sym_DOLLAR] = ACTIONS(6013), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6015), - [anon_sym_BSLASHtitle] = ACTIONS(6013), - [anon_sym_BSLASHauthor] = ACTIONS(6013), - [anon_sym_BSLASHusepackage] = ACTIONS(6013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6013), - [anon_sym_BSLASHinclude] = ACTIONS(6013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6013), - [anon_sym_BSLASHinput] = ACTIONS(6013), - [anon_sym_BSLASHsubfile] = ACTIONS(6013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6013), - [anon_sym_BSLASHbibliography] = ACTIONS(6013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6013), - [anon_sym_BSLASHincludesvg] = ACTIONS(6013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6013), - [anon_sym_BSLASHimport] = ACTIONS(6013), - [anon_sym_BSLASHsubimport] = ACTIONS(6013), - [anon_sym_BSLASHinputfrom] = ACTIONS(6013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6013), - [anon_sym_BSLASHincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHcaption] = ACTIONS(6013), - [anon_sym_BSLASHcite] = ACTIONS(6013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCite] = ACTIONS(6013), - [anon_sym_BSLASHnocite] = ACTIONS(6013), - [anon_sym_BSLASHcitet] = ACTIONS(6013), - [anon_sym_BSLASHcitep] = ACTIONS(6013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteauthor] = ACTIONS(6013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitetitle] = ACTIONS(6013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteyear] = ACTIONS(6013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitedate] = ACTIONS(6013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteurl] = ACTIONS(6013), - [anon_sym_BSLASHfullcite] = ACTIONS(6013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6013), - [anon_sym_BSLASHcitealt] = ACTIONS(6013), - [anon_sym_BSLASHcitealp] = ACTIONS(6013), - [anon_sym_BSLASHcitetext] = ACTIONS(6013), - [anon_sym_BSLASHparencite] = ACTIONS(6013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHParencite] = ACTIONS(6013), - [anon_sym_BSLASHfootcite] = ACTIONS(6013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6013), - [anon_sym_BSLASHtextcite] = ACTIONS(6013), - [anon_sym_BSLASHTextcite] = ACTIONS(6013), - [anon_sym_BSLASHsmartcite] = ACTIONS(6013), - [anon_sym_BSLASHSmartcite] = ACTIONS(6013), - [anon_sym_BSLASHsupercite] = ACTIONS(6013), - [anon_sym_BSLASHautocite] = ACTIONS(6013), - [anon_sym_BSLASHAutocite] = ACTIONS(6013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHvolcite] = ACTIONS(6013), - [anon_sym_BSLASHVolcite] = ACTIONS(6013), - [anon_sym_BSLASHpvolcite] = ACTIONS(6013), - [anon_sym_BSLASHPvolcite] = ACTIONS(6013), - [anon_sym_BSLASHfvolcite] = ACTIONS(6013), - [anon_sym_BSLASHftvolcite] = ACTIONS(6013), - [anon_sym_BSLASHsvolcite] = ACTIONS(6013), - [anon_sym_BSLASHSvolcite] = ACTIONS(6013), - [anon_sym_BSLASHtvolcite] = ACTIONS(6013), - [anon_sym_BSLASHTvolcite] = ACTIONS(6013), - [anon_sym_BSLASHavolcite] = ACTIONS(6013), - [anon_sym_BSLASHAvolcite] = ACTIONS(6013), - [anon_sym_BSLASHnotecite] = ACTIONS(6013), - [anon_sym_BSLASHNotecite] = ACTIONS(6013), - [anon_sym_BSLASHpnotecite] = ACTIONS(6013), - [anon_sym_BSLASHPnotecite] = ACTIONS(6013), - [anon_sym_BSLASHfnotecite] = ACTIONS(6013), - [anon_sym_BSLASHlabel] = ACTIONS(6013), - [anon_sym_BSLASHref] = ACTIONS(6013), - [anon_sym_BSLASHeqref] = ACTIONS(6013), - [anon_sym_BSLASHvref] = ACTIONS(6013), - [anon_sym_BSLASHVref] = ACTIONS(6013), - [anon_sym_BSLASHautoref] = ACTIONS(6013), - [anon_sym_BSLASHpageref] = ACTIONS(6013), - [anon_sym_BSLASHcref] = ACTIONS(6013), - [anon_sym_BSLASHCref] = ACTIONS(6013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnameCref] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHlabelcref] = ACTIONS(6013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCrefrange] = ACTIONS(6013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnewlabel] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHdef] = ACTIONS(6013), - [anon_sym_BSLASHlet] = ACTIONS(6013), - [anon_sym_BSLASHleft] = ACTIONS(6013), - [anon_sym_BSLASHbig] = ACTIONS(6013), - [anon_sym_BSLASHBig] = ACTIONS(6013), - [anon_sym_BSLASHbigg] = ACTIONS(6013), - [anon_sym_BSLASHBigg] = ACTIONS(6013), - [anon_sym_BSLASHbigl] = ACTIONS(6013), - [anon_sym_BSLASHBigl] = ACTIONS(6013), - [anon_sym_BSLASHbiggl] = ACTIONS(6013), - [anon_sym_BSLASHBiggl] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6013), - [anon_sym_BSLASHgls] = ACTIONS(6013), - [anon_sym_BSLASHGls] = ACTIONS(6013), - [anon_sym_BSLASHGLS] = ACTIONS(6013), - [anon_sym_BSLASHglspl] = ACTIONS(6013), - [anon_sym_BSLASHGlspl] = ACTIONS(6013), - [anon_sym_BSLASHGLSpl] = ACTIONS(6013), - [anon_sym_BSLASHglsdisp] = ACTIONS(6013), - [anon_sym_BSLASHglslink] = ACTIONS(6013), - [anon_sym_BSLASHglstext] = ACTIONS(6013), - [anon_sym_BSLASHGlstext] = ACTIONS(6013), - [anon_sym_BSLASHGLStext] = ACTIONS(6013), - [anon_sym_BSLASHglsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6013), - [anon_sym_BSLASHglsplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSplural] = ACTIONS(6013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHglsname] = ACTIONS(6013), - [anon_sym_BSLASHGlsname] = ACTIONS(6013), - [anon_sym_BSLASHGLSname] = ACTIONS(6013), - [anon_sym_BSLASHglssymbol] = ACTIONS(6013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6013), - [anon_sym_BSLASHglsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6013), - [anon_sym_BSLASHglsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6013), - [anon_sym_BSLASHglsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6013), - [anon_sym_BSLASHglsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6013), - [anon_sym_BSLASHglsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6013), - [anon_sym_BSLASHnewacronym] = ACTIONS(6013), - [anon_sym_BSLASHacrshort] = ACTIONS(6013), - [anon_sym_BSLASHAcrshort] = ACTIONS(6013), - [anon_sym_BSLASHACRshort] = ACTIONS(6013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6013), - [anon_sym_BSLASHacrlong] = ACTIONS(6013), - [anon_sym_BSLASHAcrlong] = ACTIONS(6013), - [anon_sym_BSLASHACRlong] = ACTIONS(6013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6013), - [anon_sym_BSLASHacrfull] = ACTIONS(6013), - [anon_sym_BSLASHAcrfull] = ACTIONS(6013), - [anon_sym_BSLASHACRfull] = ACTIONS(6013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6013), - [anon_sym_BSLASHacs] = ACTIONS(6013), - [anon_sym_BSLASHAcs] = ACTIONS(6013), - [anon_sym_BSLASHacsp] = ACTIONS(6013), - [anon_sym_BSLASHAcsp] = ACTIONS(6013), - [anon_sym_BSLASHacl] = ACTIONS(6013), - [anon_sym_BSLASHAcl] = ACTIONS(6013), - [anon_sym_BSLASHaclp] = ACTIONS(6013), - [anon_sym_BSLASHAclp] = ACTIONS(6013), - [anon_sym_BSLASHacf] = ACTIONS(6013), - [anon_sym_BSLASHAcf] = ACTIONS(6013), - [anon_sym_BSLASHacfp] = ACTIONS(6013), - [anon_sym_BSLASHAcfp] = ACTIONS(6013), - [anon_sym_BSLASHac] = ACTIONS(6013), - [anon_sym_BSLASHAc] = ACTIONS(6013), - [anon_sym_BSLASHacp] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6013), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6013), - [anon_sym_BSLASHcolor] = ACTIONS(6013), - [anon_sym_BSLASHcolorbox] = ACTIONS(6013), - [anon_sym_BSLASHtextcolor] = ACTIONS(6013), - [anon_sym_BSLASHpagecolor] = ACTIONS(6013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6013), - [anon_sym_BSLASHtext] = ACTIONS(6013), - [anon_sym_BSLASHintertext] = ACTIONS(6013), - [anon_sym_shortintertext] = ACTIONS(6013), - }, - [1824] = { - [sym_command_name] = ACTIONS(6189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6189), - [anon_sym_LBRACK] = ACTIONS(6191), - [anon_sym_LPAREN] = ACTIONS(6191), - [anon_sym_RPAREN] = ACTIONS(6191), - [anon_sym_LBRACE] = ACTIONS(6191), - [anon_sym_RBRACE] = ACTIONS(6191), - [anon_sym_BSLASHand] = ACTIONS(6189), - [sym_word] = ACTIONS(6189), - [sym_placeholder] = ACTIONS(6191), - [anon_sym_PLUS] = ACTIONS(6191), - [anon_sym_DASH] = ACTIONS(6191), - [anon_sym_STAR] = ACTIONS(6191), - [anon_sym_SLASH] = ACTIONS(6191), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_COLON] = ACTIONS(6189), - [anon_sym_SQUOTE] = ACTIONS(6189), - [anon_sym__] = ACTIONS(6191), - [anon_sym_CARET] = ACTIONS(6191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6191), - [anon_sym_DOLLAR] = ACTIONS(6189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6191), - [anon_sym_BSLASHtitle] = ACTIONS(6189), - [anon_sym_BSLASHauthor] = ACTIONS(6189), - [anon_sym_BSLASHusepackage] = ACTIONS(6189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), - [anon_sym_BSLASHinclude] = ACTIONS(6189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), - [anon_sym_BSLASHinput] = ACTIONS(6189), - [anon_sym_BSLASHsubfile] = ACTIONS(6189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), - [anon_sym_BSLASHbibliography] = ACTIONS(6189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), - [anon_sym_BSLASHincludesvg] = ACTIONS(6189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), - [anon_sym_BSLASHimport] = ACTIONS(6189), - [anon_sym_BSLASHsubimport] = ACTIONS(6189), - [anon_sym_BSLASHinputfrom] = ACTIONS(6189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), - [anon_sym_BSLASHincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHcaption] = ACTIONS(6189), - [anon_sym_BSLASHcite] = ACTIONS(6189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCite] = ACTIONS(6189), - [anon_sym_BSLASHnocite] = ACTIONS(6189), - [anon_sym_BSLASHcitet] = ACTIONS(6189), - [anon_sym_BSLASHcitep] = ACTIONS(6189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteauthor] = ACTIONS(6189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitetitle] = ACTIONS(6189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteyear] = ACTIONS(6189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitedate] = ACTIONS(6189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteurl] = ACTIONS(6189), - [anon_sym_BSLASHfullcite] = ACTIONS(6189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), - [anon_sym_BSLASHcitealt] = ACTIONS(6189), - [anon_sym_BSLASHcitealp] = ACTIONS(6189), - [anon_sym_BSLASHcitetext] = ACTIONS(6189), - [anon_sym_BSLASHparencite] = ACTIONS(6189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHParencite] = ACTIONS(6189), - [anon_sym_BSLASHfootcite] = ACTIONS(6189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), - [anon_sym_BSLASHtextcite] = ACTIONS(6189), - [anon_sym_BSLASHTextcite] = ACTIONS(6189), - [anon_sym_BSLASHsmartcite] = ACTIONS(6189), - [anon_sym_BSLASHSmartcite] = ACTIONS(6189), - [anon_sym_BSLASHsupercite] = ACTIONS(6189), - [anon_sym_BSLASHautocite] = ACTIONS(6189), - [anon_sym_BSLASHAutocite] = ACTIONS(6189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHvolcite] = ACTIONS(6189), - [anon_sym_BSLASHVolcite] = ACTIONS(6189), - [anon_sym_BSLASHpvolcite] = ACTIONS(6189), - [anon_sym_BSLASHPvolcite] = ACTIONS(6189), - [anon_sym_BSLASHfvolcite] = ACTIONS(6189), - [anon_sym_BSLASHftvolcite] = ACTIONS(6189), - [anon_sym_BSLASHsvolcite] = ACTIONS(6189), - [anon_sym_BSLASHSvolcite] = ACTIONS(6189), - [anon_sym_BSLASHtvolcite] = ACTIONS(6189), - [anon_sym_BSLASHTvolcite] = ACTIONS(6189), - [anon_sym_BSLASHavolcite] = ACTIONS(6189), - [anon_sym_BSLASHAvolcite] = ACTIONS(6189), - [anon_sym_BSLASHnotecite] = ACTIONS(6189), - [anon_sym_BSLASHNotecite] = ACTIONS(6189), - [anon_sym_BSLASHpnotecite] = ACTIONS(6189), - [anon_sym_BSLASHPnotecite] = ACTIONS(6189), - [anon_sym_BSLASHfnotecite] = ACTIONS(6189), - [anon_sym_BSLASHlabel] = ACTIONS(6189), - [anon_sym_BSLASHref] = ACTIONS(6189), - [anon_sym_BSLASHeqref] = ACTIONS(6189), - [anon_sym_BSLASHvref] = ACTIONS(6189), - [anon_sym_BSLASHVref] = ACTIONS(6189), - [anon_sym_BSLASHautoref] = ACTIONS(6189), - [anon_sym_BSLASHpageref] = ACTIONS(6189), - [anon_sym_BSLASHcref] = ACTIONS(6189), - [anon_sym_BSLASHCref] = ACTIONS(6189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnameCref] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHlabelcref] = ACTIONS(6189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCrefrange] = ACTIONS(6189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnewlabel] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHdef] = ACTIONS(6189), - [anon_sym_BSLASHlet] = ACTIONS(6189), - [anon_sym_BSLASHleft] = ACTIONS(6189), - [anon_sym_BSLASHbig] = ACTIONS(6189), - [anon_sym_BSLASHBig] = ACTIONS(6189), - [anon_sym_BSLASHbigg] = ACTIONS(6189), - [anon_sym_BSLASHBigg] = ACTIONS(6189), - [anon_sym_BSLASHbigl] = ACTIONS(6189), - [anon_sym_BSLASHBigl] = ACTIONS(6189), - [anon_sym_BSLASHbiggl] = ACTIONS(6189), - [anon_sym_BSLASHBiggl] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), - [anon_sym_BSLASHgls] = ACTIONS(6189), - [anon_sym_BSLASHGls] = ACTIONS(6189), - [anon_sym_BSLASHGLS] = ACTIONS(6189), - [anon_sym_BSLASHglspl] = ACTIONS(6189), - [anon_sym_BSLASHGlspl] = ACTIONS(6189), - [anon_sym_BSLASHGLSpl] = ACTIONS(6189), - [anon_sym_BSLASHglsdisp] = ACTIONS(6189), - [anon_sym_BSLASHglslink] = ACTIONS(6189), - [anon_sym_BSLASHglstext] = ACTIONS(6189), - [anon_sym_BSLASHGlstext] = ACTIONS(6189), - [anon_sym_BSLASHGLStext] = ACTIONS(6189), - [anon_sym_BSLASHglsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), - [anon_sym_BSLASHglsplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSplural] = ACTIONS(6189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHglsname] = ACTIONS(6189), - [anon_sym_BSLASHGlsname] = ACTIONS(6189), - [anon_sym_BSLASHGLSname] = ACTIONS(6189), - [anon_sym_BSLASHglssymbol] = ACTIONS(6189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), - [anon_sym_BSLASHglsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), - [anon_sym_BSLASHglsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), - [anon_sym_BSLASHglsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), - [anon_sym_BSLASHglsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), - [anon_sym_BSLASHglsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), - [anon_sym_BSLASHnewacronym] = ACTIONS(6189), - [anon_sym_BSLASHacrshort] = ACTIONS(6189), - [anon_sym_BSLASHAcrshort] = ACTIONS(6189), - [anon_sym_BSLASHACRshort] = ACTIONS(6189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), - [anon_sym_BSLASHacrlong] = ACTIONS(6189), - [anon_sym_BSLASHAcrlong] = ACTIONS(6189), - [anon_sym_BSLASHACRlong] = ACTIONS(6189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), - [anon_sym_BSLASHacrfull] = ACTIONS(6189), - [anon_sym_BSLASHAcrfull] = ACTIONS(6189), - [anon_sym_BSLASHACRfull] = ACTIONS(6189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), - [anon_sym_BSLASHacs] = ACTIONS(6189), - [anon_sym_BSLASHAcs] = ACTIONS(6189), - [anon_sym_BSLASHacsp] = ACTIONS(6189), - [anon_sym_BSLASHAcsp] = ACTIONS(6189), - [anon_sym_BSLASHacl] = ACTIONS(6189), - [anon_sym_BSLASHAcl] = ACTIONS(6189), - [anon_sym_BSLASHaclp] = ACTIONS(6189), - [anon_sym_BSLASHAclp] = ACTIONS(6189), - [anon_sym_BSLASHacf] = ACTIONS(6189), - [anon_sym_BSLASHAcf] = ACTIONS(6189), - [anon_sym_BSLASHacfp] = ACTIONS(6189), - [anon_sym_BSLASHAcfp] = ACTIONS(6189), - [anon_sym_BSLASHac] = ACTIONS(6189), - [anon_sym_BSLASHAc] = ACTIONS(6189), - [anon_sym_BSLASHacp] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), - [anon_sym_BSLASHcolor] = ACTIONS(6189), - [anon_sym_BSLASHcolorbox] = ACTIONS(6189), - [anon_sym_BSLASHtextcolor] = ACTIONS(6189), - [anon_sym_BSLASHpagecolor] = ACTIONS(6189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), - [anon_sym_BSLASHtext] = ACTIONS(6189), - [anon_sym_BSLASHintertext] = ACTIONS(6189), - [anon_sym_shortintertext] = ACTIONS(6189), - }, - [1825] = { - [sym_command_name] = ACTIONS(6161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_LBRACE] = ACTIONS(6163), - [anon_sym_RBRACE] = ACTIONS(6163), - [anon_sym_BSLASHand] = ACTIONS(6161), - [sym_word] = ACTIONS(6161), - [sym_placeholder] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6163), - [anon_sym_DASH] = ACTIONS(6163), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_COLON] = ACTIONS(6161), - [anon_sym_SQUOTE] = ACTIONS(6161), - [anon_sym__] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6163), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6163), - [anon_sym_DOLLAR] = ACTIONS(6161), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6163), - [anon_sym_BSLASHtitle] = ACTIONS(6161), - [anon_sym_BSLASHauthor] = ACTIONS(6161), - [anon_sym_BSLASHusepackage] = ACTIONS(6161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6161), - [anon_sym_BSLASHinclude] = ACTIONS(6161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6161), - [anon_sym_BSLASHinput] = ACTIONS(6161), - [anon_sym_BSLASHsubfile] = ACTIONS(6161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6161), - [anon_sym_BSLASHbibliography] = ACTIONS(6161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6161), - [anon_sym_BSLASHincludesvg] = ACTIONS(6161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6161), - [anon_sym_BSLASHimport] = ACTIONS(6161), - [anon_sym_BSLASHsubimport] = ACTIONS(6161), - [anon_sym_BSLASHinputfrom] = ACTIONS(6161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6161), - [anon_sym_BSLASHincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHcaption] = ACTIONS(6161), - [anon_sym_BSLASHcite] = ACTIONS(6161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCite] = ACTIONS(6161), - [anon_sym_BSLASHnocite] = ACTIONS(6161), - [anon_sym_BSLASHcitet] = ACTIONS(6161), - [anon_sym_BSLASHcitep] = ACTIONS(6161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteauthor] = ACTIONS(6161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitetitle] = ACTIONS(6161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteyear] = ACTIONS(6161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitedate] = ACTIONS(6161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteurl] = ACTIONS(6161), - [anon_sym_BSLASHfullcite] = ACTIONS(6161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6161), - [anon_sym_BSLASHcitealt] = ACTIONS(6161), - [anon_sym_BSLASHcitealp] = ACTIONS(6161), - [anon_sym_BSLASHcitetext] = ACTIONS(6161), - [anon_sym_BSLASHparencite] = ACTIONS(6161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHParencite] = ACTIONS(6161), - [anon_sym_BSLASHfootcite] = ACTIONS(6161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6161), - [anon_sym_BSLASHtextcite] = ACTIONS(6161), - [anon_sym_BSLASHTextcite] = ACTIONS(6161), - [anon_sym_BSLASHsmartcite] = ACTIONS(6161), - [anon_sym_BSLASHSmartcite] = ACTIONS(6161), - [anon_sym_BSLASHsupercite] = ACTIONS(6161), - [anon_sym_BSLASHautocite] = ACTIONS(6161), - [anon_sym_BSLASHAutocite] = ACTIONS(6161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHvolcite] = ACTIONS(6161), - [anon_sym_BSLASHVolcite] = ACTIONS(6161), - [anon_sym_BSLASHpvolcite] = ACTIONS(6161), - [anon_sym_BSLASHPvolcite] = ACTIONS(6161), - [anon_sym_BSLASHfvolcite] = ACTIONS(6161), - [anon_sym_BSLASHftvolcite] = ACTIONS(6161), - [anon_sym_BSLASHsvolcite] = ACTIONS(6161), - [anon_sym_BSLASHSvolcite] = ACTIONS(6161), - [anon_sym_BSLASHtvolcite] = ACTIONS(6161), - [anon_sym_BSLASHTvolcite] = ACTIONS(6161), - [anon_sym_BSLASHavolcite] = ACTIONS(6161), - [anon_sym_BSLASHAvolcite] = ACTIONS(6161), - [anon_sym_BSLASHnotecite] = ACTIONS(6161), - [anon_sym_BSLASHNotecite] = ACTIONS(6161), - [anon_sym_BSLASHpnotecite] = ACTIONS(6161), - [anon_sym_BSLASHPnotecite] = ACTIONS(6161), - [anon_sym_BSLASHfnotecite] = ACTIONS(6161), - [anon_sym_BSLASHlabel] = ACTIONS(6161), - [anon_sym_BSLASHref] = ACTIONS(6161), - [anon_sym_BSLASHeqref] = ACTIONS(6161), - [anon_sym_BSLASHvref] = ACTIONS(6161), - [anon_sym_BSLASHVref] = ACTIONS(6161), - [anon_sym_BSLASHautoref] = ACTIONS(6161), - [anon_sym_BSLASHpageref] = ACTIONS(6161), - [anon_sym_BSLASHcref] = ACTIONS(6161), - [anon_sym_BSLASHCref] = ACTIONS(6161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnameCref] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHlabelcref] = ACTIONS(6161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCrefrange] = ACTIONS(6161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnewlabel] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6163), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHdef] = ACTIONS(6161), - [anon_sym_BSLASHlet] = ACTIONS(6161), - [anon_sym_BSLASHleft] = ACTIONS(6161), - [anon_sym_BSLASHbig] = ACTIONS(6161), - [anon_sym_BSLASHBig] = ACTIONS(6161), - [anon_sym_BSLASHbigg] = ACTIONS(6161), - [anon_sym_BSLASHBigg] = ACTIONS(6161), - [anon_sym_BSLASHbigl] = ACTIONS(6161), - [anon_sym_BSLASHBigl] = ACTIONS(6161), - [anon_sym_BSLASHbiggl] = ACTIONS(6161), - [anon_sym_BSLASHBiggl] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6161), - [anon_sym_BSLASHgls] = ACTIONS(6161), - [anon_sym_BSLASHGls] = ACTIONS(6161), - [anon_sym_BSLASHGLS] = ACTIONS(6161), - [anon_sym_BSLASHglspl] = ACTIONS(6161), - [anon_sym_BSLASHGlspl] = ACTIONS(6161), - [anon_sym_BSLASHGLSpl] = ACTIONS(6161), - [anon_sym_BSLASHglsdisp] = ACTIONS(6161), - [anon_sym_BSLASHglslink] = ACTIONS(6161), - [anon_sym_BSLASHglstext] = ACTIONS(6161), - [anon_sym_BSLASHGlstext] = ACTIONS(6161), - [anon_sym_BSLASHGLStext] = ACTIONS(6161), - [anon_sym_BSLASHglsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6161), - [anon_sym_BSLASHglsplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSplural] = ACTIONS(6161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHglsname] = ACTIONS(6161), - [anon_sym_BSLASHGlsname] = ACTIONS(6161), - [anon_sym_BSLASHGLSname] = ACTIONS(6161), - [anon_sym_BSLASHglssymbol] = ACTIONS(6161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6161), - [anon_sym_BSLASHglsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6161), - [anon_sym_BSLASHglsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6161), - [anon_sym_BSLASHglsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6161), - [anon_sym_BSLASHglsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6161), - [anon_sym_BSLASHglsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6161), - [anon_sym_BSLASHnewacronym] = ACTIONS(6161), - [anon_sym_BSLASHacrshort] = ACTIONS(6161), - [anon_sym_BSLASHAcrshort] = ACTIONS(6161), - [anon_sym_BSLASHACRshort] = ACTIONS(6161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6161), - [anon_sym_BSLASHacrlong] = ACTIONS(6161), - [anon_sym_BSLASHAcrlong] = ACTIONS(6161), - [anon_sym_BSLASHACRlong] = ACTIONS(6161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6161), - [anon_sym_BSLASHacrfull] = ACTIONS(6161), - [anon_sym_BSLASHAcrfull] = ACTIONS(6161), - [anon_sym_BSLASHACRfull] = ACTIONS(6161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6161), - [anon_sym_BSLASHacs] = ACTIONS(6161), - [anon_sym_BSLASHAcs] = ACTIONS(6161), - [anon_sym_BSLASHacsp] = ACTIONS(6161), - [anon_sym_BSLASHAcsp] = ACTIONS(6161), - [anon_sym_BSLASHacl] = ACTIONS(6161), - [anon_sym_BSLASHAcl] = ACTIONS(6161), - [anon_sym_BSLASHaclp] = ACTIONS(6161), - [anon_sym_BSLASHAclp] = ACTIONS(6161), - [anon_sym_BSLASHacf] = ACTIONS(6161), - [anon_sym_BSLASHAcf] = ACTIONS(6161), - [anon_sym_BSLASHacfp] = ACTIONS(6161), - [anon_sym_BSLASHAcfp] = ACTIONS(6161), - [anon_sym_BSLASHac] = ACTIONS(6161), - [anon_sym_BSLASHAc] = ACTIONS(6161), - [anon_sym_BSLASHacp] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6161), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6161), - [anon_sym_BSLASHcolor] = ACTIONS(6161), - [anon_sym_BSLASHcolorbox] = ACTIONS(6161), - [anon_sym_BSLASHtextcolor] = ACTIONS(6161), - [anon_sym_BSLASHpagecolor] = ACTIONS(6161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6161), - [anon_sym_BSLASHtext] = ACTIONS(6161), - [anon_sym_BSLASHintertext] = ACTIONS(6161), - [anon_sym_shortintertext] = ACTIONS(6161), - }, - [1826] = { - [sym_command_name] = ACTIONS(6221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6221), - [anon_sym_LPAREN] = ACTIONS(6223), - [anon_sym_RPAREN] = ACTIONS(6223), - [anon_sym_LBRACE] = ACTIONS(6223), - [anon_sym_RBRACE] = ACTIONS(6223), - [anon_sym_BSLASHand] = ACTIONS(6221), - [sym_word] = ACTIONS(6221), - [sym_placeholder] = ACTIONS(6223), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6223), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_LT] = ACTIONS(6221), - [anon_sym_GT] = ACTIONS(6221), - [anon_sym_BANG] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_SQUOTE] = ACTIONS(6221), - [anon_sym__] = ACTIONS(6223), - [anon_sym_CARET] = ACTIONS(6223), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6223), - [anon_sym_DOLLAR] = ACTIONS(6221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6223), - [anon_sym_BSLASHtitle] = ACTIONS(6221), - [anon_sym_BSLASHauthor] = ACTIONS(6221), - [anon_sym_BSLASHusepackage] = ACTIONS(6221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6221), - [anon_sym_BSLASHinclude] = ACTIONS(6221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6221), - [anon_sym_BSLASHinput] = ACTIONS(6221), - [anon_sym_BSLASHsubfile] = ACTIONS(6221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6221), - [anon_sym_BSLASHbibliography] = ACTIONS(6221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6221), - [anon_sym_BSLASHincludesvg] = ACTIONS(6221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6221), - [anon_sym_BSLASHimport] = ACTIONS(6221), - [anon_sym_BSLASHsubimport] = ACTIONS(6221), - [anon_sym_BSLASHinputfrom] = ACTIONS(6221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6221), - [anon_sym_BSLASHincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHcaption] = ACTIONS(6221), - [anon_sym_BSLASHcite] = ACTIONS(6221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCite] = ACTIONS(6221), - [anon_sym_BSLASHnocite] = ACTIONS(6221), - [anon_sym_BSLASHcitet] = ACTIONS(6221), - [anon_sym_BSLASHcitep] = ACTIONS(6221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteauthor] = ACTIONS(6221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitetitle] = ACTIONS(6221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteyear] = ACTIONS(6221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitedate] = ACTIONS(6221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteurl] = ACTIONS(6221), - [anon_sym_BSLASHfullcite] = ACTIONS(6221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6221), - [anon_sym_BSLASHcitealt] = ACTIONS(6221), - [anon_sym_BSLASHcitealp] = ACTIONS(6221), - [anon_sym_BSLASHcitetext] = ACTIONS(6221), - [anon_sym_BSLASHparencite] = ACTIONS(6221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHParencite] = ACTIONS(6221), - [anon_sym_BSLASHfootcite] = ACTIONS(6221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6221), - [anon_sym_BSLASHtextcite] = ACTIONS(6221), - [anon_sym_BSLASHTextcite] = ACTIONS(6221), - [anon_sym_BSLASHsmartcite] = ACTIONS(6221), - [anon_sym_BSLASHSmartcite] = ACTIONS(6221), - [anon_sym_BSLASHsupercite] = ACTIONS(6221), - [anon_sym_BSLASHautocite] = ACTIONS(6221), - [anon_sym_BSLASHAutocite] = ACTIONS(6221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHvolcite] = ACTIONS(6221), - [anon_sym_BSLASHVolcite] = ACTIONS(6221), - [anon_sym_BSLASHpvolcite] = ACTIONS(6221), - [anon_sym_BSLASHPvolcite] = ACTIONS(6221), - [anon_sym_BSLASHfvolcite] = ACTIONS(6221), - [anon_sym_BSLASHftvolcite] = ACTIONS(6221), - [anon_sym_BSLASHsvolcite] = ACTIONS(6221), - [anon_sym_BSLASHSvolcite] = ACTIONS(6221), - [anon_sym_BSLASHtvolcite] = ACTIONS(6221), - [anon_sym_BSLASHTvolcite] = ACTIONS(6221), - [anon_sym_BSLASHavolcite] = ACTIONS(6221), - [anon_sym_BSLASHAvolcite] = ACTIONS(6221), - [anon_sym_BSLASHnotecite] = ACTIONS(6221), - [anon_sym_BSLASHNotecite] = ACTIONS(6221), - [anon_sym_BSLASHpnotecite] = ACTIONS(6221), - [anon_sym_BSLASHPnotecite] = ACTIONS(6221), - [anon_sym_BSLASHfnotecite] = ACTIONS(6221), - [anon_sym_BSLASHlabel] = ACTIONS(6221), - [anon_sym_BSLASHref] = ACTIONS(6221), - [anon_sym_BSLASHeqref] = ACTIONS(6221), - [anon_sym_BSLASHvref] = ACTIONS(6221), - [anon_sym_BSLASHVref] = ACTIONS(6221), - [anon_sym_BSLASHautoref] = ACTIONS(6221), - [anon_sym_BSLASHpageref] = ACTIONS(6221), - [anon_sym_BSLASHcref] = ACTIONS(6221), - [anon_sym_BSLASHCref] = ACTIONS(6221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnameCref] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHlabelcref] = ACTIONS(6221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCrefrange] = ACTIONS(6221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnewlabel] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6223), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHdef] = ACTIONS(6221), - [anon_sym_BSLASHlet] = ACTIONS(6221), - [anon_sym_BSLASHleft] = ACTIONS(6221), - [anon_sym_BSLASHbig] = ACTIONS(6221), - [anon_sym_BSLASHBig] = ACTIONS(6221), - [anon_sym_BSLASHbigg] = ACTIONS(6221), - [anon_sym_BSLASHBigg] = ACTIONS(6221), - [anon_sym_BSLASHbigl] = ACTIONS(6221), - [anon_sym_BSLASHBigl] = ACTIONS(6221), - [anon_sym_BSLASHbiggl] = ACTIONS(6221), - [anon_sym_BSLASHBiggl] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6221), - [anon_sym_BSLASHgls] = ACTIONS(6221), - [anon_sym_BSLASHGls] = ACTIONS(6221), - [anon_sym_BSLASHGLS] = ACTIONS(6221), - [anon_sym_BSLASHglspl] = ACTIONS(6221), - [anon_sym_BSLASHGlspl] = ACTIONS(6221), - [anon_sym_BSLASHGLSpl] = ACTIONS(6221), - [anon_sym_BSLASHglsdisp] = ACTIONS(6221), - [anon_sym_BSLASHglslink] = ACTIONS(6221), - [anon_sym_BSLASHglstext] = ACTIONS(6221), - [anon_sym_BSLASHGlstext] = ACTIONS(6221), - [anon_sym_BSLASHGLStext] = ACTIONS(6221), - [anon_sym_BSLASHglsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6221), - [anon_sym_BSLASHglsplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSplural] = ACTIONS(6221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHglsname] = ACTIONS(6221), - [anon_sym_BSLASHGlsname] = ACTIONS(6221), - [anon_sym_BSLASHGLSname] = ACTIONS(6221), - [anon_sym_BSLASHglssymbol] = ACTIONS(6221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6221), - [anon_sym_BSLASHglsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6221), - [anon_sym_BSLASHglsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6221), - [anon_sym_BSLASHglsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6221), - [anon_sym_BSLASHglsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6221), - [anon_sym_BSLASHglsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6221), - [anon_sym_BSLASHnewacronym] = ACTIONS(6221), - [anon_sym_BSLASHacrshort] = ACTIONS(6221), - [anon_sym_BSLASHAcrshort] = ACTIONS(6221), - [anon_sym_BSLASHACRshort] = ACTIONS(6221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6221), - [anon_sym_BSLASHacrlong] = ACTIONS(6221), - [anon_sym_BSLASHAcrlong] = ACTIONS(6221), - [anon_sym_BSLASHACRlong] = ACTIONS(6221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6221), - [anon_sym_BSLASHacrfull] = ACTIONS(6221), - [anon_sym_BSLASHAcrfull] = ACTIONS(6221), - [anon_sym_BSLASHACRfull] = ACTIONS(6221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6221), - [anon_sym_BSLASHacs] = ACTIONS(6221), - [anon_sym_BSLASHAcs] = ACTIONS(6221), - [anon_sym_BSLASHacsp] = ACTIONS(6221), - [anon_sym_BSLASHAcsp] = ACTIONS(6221), - [anon_sym_BSLASHacl] = ACTIONS(6221), - [anon_sym_BSLASHAcl] = ACTIONS(6221), - [anon_sym_BSLASHaclp] = ACTIONS(6221), - [anon_sym_BSLASHAclp] = ACTIONS(6221), - [anon_sym_BSLASHacf] = ACTIONS(6221), - [anon_sym_BSLASHAcf] = ACTIONS(6221), - [anon_sym_BSLASHacfp] = ACTIONS(6221), - [anon_sym_BSLASHAcfp] = ACTIONS(6221), - [anon_sym_BSLASHac] = ACTIONS(6221), - [anon_sym_BSLASHAc] = ACTIONS(6221), - [anon_sym_BSLASHacp] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6221), - [anon_sym_BSLASHcolor] = ACTIONS(6221), - [anon_sym_BSLASHcolorbox] = ACTIONS(6221), - [anon_sym_BSLASHtextcolor] = ACTIONS(6221), - [anon_sym_BSLASHpagecolor] = ACTIONS(6221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6221), - [anon_sym_BSLASHtext] = ACTIONS(6221), - [anon_sym_BSLASHintertext] = ACTIONS(6221), - [anon_sym_shortintertext] = ACTIONS(6221), - }, - [1827] = { - [sym_command_name] = ACTIONS(6377), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6377), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_LBRACE] = ACTIONS(6379), - [anon_sym_RBRACE] = ACTIONS(6379), - [anon_sym_BSLASHand] = ACTIONS(6377), - [sym_word] = ACTIONS(6377), - [sym_placeholder] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_SQUOTE] = ACTIONS(6377), - [anon_sym__] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6379), - [anon_sym_DOLLAR] = ACTIONS(6377), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6379), - [anon_sym_BSLASHtitle] = ACTIONS(6377), - [anon_sym_BSLASHauthor] = ACTIONS(6377), - [anon_sym_BSLASHusepackage] = ACTIONS(6377), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6377), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6377), - [anon_sym_BSLASHinclude] = ACTIONS(6377), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6377), - [anon_sym_BSLASHinput] = ACTIONS(6377), - [anon_sym_BSLASHsubfile] = ACTIONS(6377), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6377), - [anon_sym_BSLASHbibliography] = ACTIONS(6377), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6377), - [anon_sym_BSLASHincludesvg] = ACTIONS(6377), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6377), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6377), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6377), - [anon_sym_BSLASHimport] = ACTIONS(6377), - [anon_sym_BSLASHsubimport] = ACTIONS(6377), - [anon_sym_BSLASHinputfrom] = ACTIONS(6377), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6377), - [anon_sym_BSLASHincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHcaption] = ACTIONS(6377), - [anon_sym_BSLASHcite] = ACTIONS(6377), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCite] = ACTIONS(6377), - [anon_sym_BSLASHnocite] = ACTIONS(6377), - [anon_sym_BSLASHcitet] = ACTIONS(6377), - [anon_sym_BSLASHcitep] = ACTIONS(6377), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteauthor] = ACTIONS(6377), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6377), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitetitle] = ACTIONS(6377), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteyear] = ACTIONS(6377), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitedate] = ACTIONS(6377), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteurl] = ACTIONS(6377), - [anon_sym_BSLASHfullcite] = ACTIONS(6377), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6377), - [anon_sym_BSLASHcitealt] = ACTIONS(6377), - [anon_sym_BSLASHcitealp] = ACTIONS(6377), - [anon_sym_BSLASHcitetext] = ACTIONS(6377), - [anon_sym_BSLASHparencite] = ACTIONS(6377), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHParencite] = ACTIONS(6377), - [anon_sym_BSLASHfootcite] = ACTIONS(6377), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6377), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6377), - [anon_sym_BSLASHtextcite] = ACTIONS(6377), - [anon_sym_BSLASHTextcite] = ACTIONS(6377), - [anon_sym_BSLASHsmartcite] = ACTIONS(6377), - [anon_sym_BSLASHSmartcite] = ACTIONS(6377), - [anon_sym_BSLASHsupercite] = ACTIONS(6377), - [anon_sym_BSLASHautocite] = ACTIONS(6377), - [anon_sym_BSLASHAutocite] = ACTIONS(6377), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHvolcite] = ACTIONS(6377), - [anon_sym_BSLASHVolcite] = ACTIONS(6377), - [anon_sym_BSLASHpvolcite] = ACTIONS(6377), - [anon_sym_BSLASHPvolcite] = ACTIONS(6377), - [anon_sym_BSLASHfvolcite] = ACTIONS(6377), - [anon_sym_BSLASHftvolcite] = ACTIONS(6377), - [anon_sym_BSLASHsvolcite] = ACTIONS(6377), - [anon_sym_BSLASHSvolcite] = ACTIONS(6377), - [anon_sym_BSLASHtvolcite] = ACTIONS(6377), - [anon_sym_BSLASHTvolcite] = ACTIONS(6377), - [anon_sym_BSLASHavolcite] = ACTIONS(6377), - [anon_sym_BSLASHAvolcite] = ACTIONS(6377), - [anon_sym_BSLASHnotecite] = ACTIONS(6377), - [anon_sym_BSLASHNotecite] = ACTIONS(6377), - [anon_sym_BSLASHpnotecite] = ACTIONS(6377), - [anon_sym_BSLASHPnotecite] = ACTIONS(6377), - [anon_sym_BSLASHfnotecite] = ACTIONS(6377), - [anon_sym_BSLASHlabel] = ACTIONS(6377), - [anon_sym_BSLASHref] = ACTIONS(6377), - [anon_sym_BSLASHeqref] = ACTIONS(6377), - [anon_sym_BSLASHvref] = ACTIONS(6377), - [anon_sym_BSLASHVref] = ACTIONS(6377), - [anon_sym_BSLASHautoref] = ACTIONS(6377), - [anon_sym_BSLASHpageref] = ACTIONS(6377), - [anon_sym_BSLASHcref] = ACTIONS(6377), - [anon_sym_BSLASHCref] = ACTIONS(6377), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnameCref] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHlabelcref] = ACTIONS(6377), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCrefrange] = ACTIONS(6377), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnewlabel] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6377), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6377), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6379), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHdef] = ACTIONS(6377), - [anon_sym_BSLASHlet] = ACTIONS(6377), - [anon_sym_BSLASHleft] = ACTIONS(6377), - [anon_sym_BSLASHbig] = ACTIONS(6377), - [anon_sym_BSLASHBig] = ACTIONS(6377), - [anon_sym_BSLASHbigg] = ACTIONS(6377), - [anon_sym_BSLASHBigg] = ACTIONS(6377), - [anon_sym_BSLASHbigl] = ACTIONS(6377), - [anon_sym_BSLASHBigl] = ACTIONS(6377), - [anon_sym_BSLASHbiggl] = ACTIONS(6377), - [anon_sym_BSLASHBiggl] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6377), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6377), - [anon_sym_BSLASHgls] = ACTIONS(6377), - [anon_sym_BSLASHGls] = ACTIONS(6377), - [anon_sym_BSLASHGLS] = ACTIONS(6377), - [anon_sym_BSLASHglspl] = ACTIONS(6377), - [anon_sym_BSLASHGlspl] = ACTIONS(6377), - [anon_sym_BSLASHGLSpl] = ACTIONS(6377), - [anon_sym_BSLASHglsdisp] = ACTIONS(6377), - [anon_sym_BSLASHglslink] = ACTIONS(6377), - [anon_sym_BSLASHglstext] = ACTIONS(6377), - [anon_sym_BSLASHGlstext] = ACTIONS(6377), - [anon_sym_BSLASHGLStext] = ACTIONS(6377), - [anon_sym_BSLASHglsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6377), - [anon_sym_BSLASHglsplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSplural] = ACTIONS(6377), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHglsname] = ACTIONS(6377), - [anon_sym_BSLASHGlsname] = ACTIONS(6377), - [anon_sym_BSLASHGLSname] = ACTIONS(6377), - [anon_sym_BSLASHglssymbol] = ACTIONS(6377), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6377), - [anon_sym_BSLASHglsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6377), - [anon_sym_BSLASHglsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6377), - [anon_sym_BSLASHglsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6377), - [anon_sym_BSLASHglsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6377), - [anon_sym_BSLASHglsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6377), - [anon_sym_BSLASHnewacronym] = ACTIONS(6377), - [anon_sym_BSLASHacrshort] = ACTIONS(6377), - [anon_sym_BSLASHAcrshort] = ACTIONS(6377), - [anon_sym_BSLASHACRshort] = ACTIONS(6377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6377), - [anon_sym_BSLASHacrlong] = ACTIONS(6377), - [anon_sym_BSLASHAcrlong] = ACTIONS(6377), - [anon_sym_BSLASHACRlong] = ACTIONS(6377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6377), - [anon_sym_BSLASHacrfull] = ACTIONS(6377), - [anon_sym_BSLASHAcrfull] = ACTIONS(6377), - [anon_sym_BSLASHACRfull] = ACTIONS(6377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6377), - [anon_sym_BSLASHacs] = ACTIONS(6377), - [anon_sym_BSLASHAcs] = ACTIONS(6377), - [anon_sym_BSLASHacsp] = ACTIONS(6377), - [anon_sym_BSLASHAcsp] = ACTIONS(6377), - [anon_sym_BSLASHacl] = ACTIONS(6377), - [anon_sym_BSLASHAcl] = ACTIONS(6377), - [anon_sym_BSLASHaclp] = ACTIONS(6377), - [anon_sym_BSLASHAclp] = ACTIONS(6377), - [anon_sym_BSLASHacf] = ACTIONS(6377), - [anon_sym_BSLASHAcf] = ACTIONS(6377), - [anon_sym_BSLASHacfp] = ACTIONS(6377), - [anon_sym_BSLASHAcfp] = ACTIONS(6377), - [anon_sym_BSLASHac] = ACTIONS(6377), - [anon_sym_BSLASHAc] = ACTIONS(6377), - [anon_sym_BSLASHacp] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6377), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6377), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6377), - [anon_sym_BSLASHcolor] = ACTIONS(6377), - [anon_sym_BSLASHcolorbox] = ACTIONS(6377), - [anon_sym_BSLASHtextcolor] = ACTIONS(6377), - [anon_sym_BSLASHpagecolor] = ACTIONS(6377), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6377), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6377), - [anon_sym_BSLASHtext] = ACTIONS(6377), - [anon_sym_BSLASHintertext] = ACTIONS(6377), - [anon_sym_shortintertext] = ACTIONS(6377), - }, - [1828] = { - [sym_command_name] = ACTIONS(6521), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6521), - [anon_sym_LPAREN] = ACTIONS(6523), - [anon_sym_RPAREN] = ACTIONS(6523), - [anon_sym_LBRACE] = ACTIONS(6523), - [anon_sym_RBRACE] = ACTIONS(6523), - [anon_sym_BSLASHand] = ACTIONS(6521), - [sym_word] = ACTIONS(6521), - [sym_placeholder] = ACTIONS(6523), - [anon_sym_PLUS] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6523), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_BANG] = ACTIONS(6521), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6521), - [anon_sym_SQUOTE] = ACTIONS(6521), - [anon_sym__] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6523), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6523), - [anon_sym_DOLLAR] = ACTIONS(6521), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6523), - [anon_sym_BSLASHtitle] = ACTIONS(6521), - [anon_sym_BSLASHauthor] = ACTIONS(6521), - [anon_sym_BSLASHusepackage] = ACTIONS(6521), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6521), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6521), - [anon_sym_BSLASHinclude] = ACTIONS(6521), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6521), - [anon_sym_BSLASHinput] = ACTIONS(6521), - [anon_sym_BSLASHsubfile] = ACTIONS(6521), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6521), - [anon_sym_BSLASHbibliography] = ACTIONS(6521), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6521), - [anon_sym_BSLASHincludesvg] = ACTIONS(6521), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6521), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6521), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6521), - [anon_sym_BSLASHimport] = ACTIONS(6521), - [anon_sym_BSLASHsubimport] = ACTIONS(6521), - [anon_sym_BSLASHinputfrom] = ACTIONS(6521), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6521), - [anon_sym_BSLASHincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHcaption] = ACTIONS(6521), - [anon_sym_BSLASHcite] = ACTIONS(6521), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCite] = ACTIONS(6521), - [anon_sym_BSLASHnocite] = ACTIONS(6521), - [anon_sym_BSLASHcitet] = ACTIONS(6521), - [anon_sym_BSLASHcitep] = ACTIONS(6521), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteauthor] = ACTIONS(6521), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6521), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitetitle] = ACTIONS(6521), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteyear] = ACTIONS(6521), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitedate] = ACTIONS(6521), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteurl] = ACTIONS(6521), - [anon_sym_BSLASHfullcite] = ACTIONS(6521), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6521), - [anon_sym_BSLASHcitealt] = ACTIONS(6521), - [anon_sym_BSLASHcitealp] = ACTIONS(6521), - [anon_sym_BSLASHcitetext] = ACTIONS(6521), - [anon_sym_BSLASHparencite] = ACTIONS(6521), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHParencite] = ACTIONS(6521), - [anon_sym_BSLASHfootcite] = ACTIONS(6521), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6521), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6521), - [anon_sym_BSLASHtextcite] = ACTIONS(6521), - [anon_sym_BSLASHTextcite] = ACTIONS(6521), - [anon_sym_BSLASHsmartcite] = ACTIONS(6521), - [anon_sym_BSLASHSmartcite] = ACTIONS(6521), - [anon_sym_BSLASHsupercite] = ACTIONS(6521), - [anon_sym_BSLASHautocite] = ACTIONS(6521), - [anon_sym_BSLASHAutocite] = ACTIONS(6521), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHvolcite] = ACTIONS(6521), - [anon_sym_BSLASHVolcite] = ACTIONS(6521), - [anon_sym_BSLASHpvolcite] = ACTIONS(6521), - [anon_sym_BSLASHPvolcite] = ACTIONS(6521), - [anon_sym_BSLASHfvolcite] = ACTIONS(6521), - [anon_sym_BSLASHftvolcite] = ACTIONS(6521), - [anon_sym_BSLASHsvolcite] = ACTIONS(6521), - [anon_sym_BSLASHSvolcite] = ACTIONS(6521), - [anon_sym_BSLASHtvolcite] = ACTIONS(6521), - [anon_sym_BSLASHTvolcite] = ACTIONS(6521), - [anon_sym_BSLASHavolcite] = ACTIONS(6521), - [anon_sym_BSLASHAvolcite] = ACTIONS(6521), - [anon_sym_BSLASHnotecite] = ACTIONS(6521), - [anon_sym_BSLASHNotecite] = ACTIONS(6521), - [anon_sym_BSLASHpnotecite] = ACTIONS(6521), - [anon_sym_BSLASHPnotecite] = ACTIONS(6521), - [anon_sym_BSLASHfnotecite] = ACTIONS(6521), - [anon_sym_BSLASHlabel] = ACTIONS(6521), - [anon_sym_BSLASHref] = ACTIONS(6521), - [anon_sym_BSLASHeqref] = ACTIONS(6521), - [anon_sym_BSLASHvref] = ACTIONS(6521), - [anon_sym_BSLASHVref] = ACTIONS(6521), - [anon_sym_BSLASHautoref] = ACTIONS(6521), - [anon_sym_BSLASHpageref] = ACTIONS(6521), - [anon_sym_BSLASHcref] = ACTIONS(6521), - [anon_sym_BSLASHCref] = ACTIONS(6521), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnameCref] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHlabelcref] = ACTIONS(6521), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCrefrange] = ACTIONS(6521), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnewlabel] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6521), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6521), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6523), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHdef] = ACTIONS(6521), - [anon_sym_BSLASHlet] = ACTIONS(6521), - [anon_sym_BSLASHleft] = ACTIONS(6521), - [anon_sym_BSLASHbig] = ACTIONS(6521), - [anon_sym_BSLASHBig] = ACTIONS(6521), - [anon_sym_BSLASHbigg] = ACTIONS(6521), - [anon_sym_BSLASHBigg] = ACTIONS(6521), - [anon_sym_BSLASHbigl] = ACTIONS(6521), - [anon_sym_BSLASHBigl] = ACTIONS(6521), - [anon_sym_BSLASHbiggl] = ACTIONS(6521), - [anon_sym_BSLASHBiggl] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6521), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6521), - [anon_sym_BSLASHgls] = ACTIONS(6521), - [anon_sym_BSLASHGls] = ACTIONS(6521), - [anon_sym_BSLASHGLS] = ACTIONS(6521), - [anon_sym_BSLASHglspl] = ACTIONS(6521), - [anon_sym_BSLASHGlspl] = ACTIONS(6521), - [anon_sym_BSLASHGLSpl] = ACTIONS(6521), - [anon_sym_BSLASHglsdisp] = ACTIONS(6521), - [anon_sym_BSLASHglslink] = ACTIONS(6521), - [anon_sym_BSLASHglstext] = ACTIONS(6521), - [anon_sym_BSLASHGlstext] = ACTIONS(6521), - [anon_sym_BSLASHGLStext] = ACTIONS(6521), - [anon_sym_BSLASHglsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6521), - [anon_sym_BSLASHglsplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSplural] = ACTIONS(6521), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHglsname] = ACTIONS(6521), - [anon_sym_BSLASHGlsname] = ACTIONS(6521), - [anon_sym_BSLASHGLSname] = ACTIONS(6521), - [anon_sym_BSLASHglssymbol] = ACTIONS(6521), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6521), - [anon_sym_BSLASHglsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6521), - [anon_sym_BSLASHglsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6521), - [anon_sym_BSLASHglsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6521), - [anon_sym_BSLASHglsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6521), - [anon_sym_BSLASHglsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6521), - [anon_sym_BSLASHnewacronym] = ACTIONS(6521), - [anon_sym_BSLASHacrshort] = ACTIONS(6521), - [anon_sym_BSLASHAcrshort] = ACTIONS(6521), - [anon_sym_BSLASHACRshort] = ACTIONS(6521), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6521), - [anon_sym_BSLASHacrlong] = ACTIONS(6521), - [anon_sym_BSLASHAcrlong] = ACTIONS(6521), - [anon_sym_BSLASHACRlong] = ACTIONS(6521), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6521), - [anon_sym_BSLASHacrfull] = ACTIONS(6521), - [anon_sym_BSLASHAcrfull] = ACTIONS(6521), - [anon_sym_BSLASHACRfull] = ACTIONS(6521), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6521), - [anon_sym_BSLASHacs] = ACTIONS(6521), - [anon_sym_BSLASHAcs] = ACTIONS(6521), - [anon_sym_BSLASHacsp] = ACTIONS(6521), - [anon_sym_BSLASHAcsp] = ACTIONS(6521), - [anon_sym_BSLASHacl] = ACTIONS(6521), - [anon_sym_BSLASHAcl] = ACTIONS(6521), - [anon_sym_BSLASHaclp] = ACTIONS(6521), - [anon_sym_BSLASHAclp] = ACTIONS(6521), - [anon_sym_BSLASHacf] = ACTIONS(6521), - [anon_sym_BSLASHAcf] = ACTIONS(6521), - [anon_sym_BSLASHacfp] = ACTIONS(6521), - [anon_sym_BSLASHAcfp] = ACTIONS(6521), - [anon_sym_BSLASHac] = ACTIONS(6521), - [anon_sym_BSLASHAc] = ACTIONS(6521), - [anon_sym_BSLASHacp] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6521), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6521), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6521), - [anon_sym_BSLASHcolor] = ACTIONS(6521), - [anon_sym_BSLASHcolorbox] = ACTIONS(6521), - [anon_sym_BSLASHtextcolor] = ACTIONS(6521), - [anon_sym_BSLASHpagecolor] = ACTIONS(6521), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6521), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6521), - [anon_sym_BSLASHtext] = ACTIONS(6521), - [anon_sym_BSLASHintertext] = ACTIONS(6521), - [anon_sym_shortintertext] = ACTIONS(6521), - }, - [1829] = { - [sym_command_name] = ACTIONS(6517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6517), - [anon_sym_LPAREN] = ACTIONS(6519), - [anon_sym_RPAREN] = ACTIONS(6519), - [anon_sym_LBRACE] = ACTIONS(6519), - [anon_sym_RBRACE] = ACTIONS(6519), - [anon_sym_BSLASHand] = ACTIONS(6517), - [sym_word] = ACTIONS(6517), - [sym_placeholder] = ACTIONS(6519), - [anon_sym_PLUS] = ACTIONS(6519), - [anon_sym_DASH] = ACTIONS(6519), - [anon_sym_STAR] = ACTIONS(6519), - [anon_sym_SLASH] = ACTIONS(6519), - [anon_sym_LT] = ACTIONS(6517), - [anon_sym_GT] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(6517), - [anon_sym_PIPE] = ACTIONS(6517), - [anon_sym_COLON] = ACTIONS(6517), - [anon_sym_SQUOTE] = ACTIONS(6517), - [anon_sym__] = ACTIONS(6519), - [anon_sym_CARET] = ACTIONS(6519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6519), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6519), - [anon_sym_DOLLAR] = ACTIONS(6517), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6519), - [anon_sym_BSLASHtitle] = ACTIONS(6517), - [anon_sym_BSLASHauthor] = ACTIONS(6517), - [anon_sym_BSLASHusepackage] = ACTIONS(6517), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6517), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6517), - [anon_sym_BSLASHinclude] = ACTIONS(6517), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6517), - [anon_sym_BSLASHinput] = ACTIONS(6517), - [anon_sym_BSLASHsubfile] = ACTIONS(6517), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6517), - [anon_sym_BSLASHbibliography] = ACTIONS(6517), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6517), - [anon_sym_BSLASHincludesvg] = ACTIONS(6517), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6517), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6517), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6517), - [anon_sym_BSLASHimport] = ACTIONS(6517), - [anon_sym_BSLASHsubimport] = ACTIONS(6517), - [anon_sym_BSLASHinputfrom] = ACTIONS(6517), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6517), - [anon_sym_BSLASHincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHcaption] = ACTIONS(6517), - [anon_sym_BSLASHcite] = ACTIONS(6517), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCite] = ACTIONS(6517), - [anon_sym_BSLASHnocite] = ACTIONS(6517), - [anon_sym_BSLASHcitet] = ACTIONS(6517), - [anon_sym_BSLASHcitep] = ACTIONS(6517), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteauthor] = ACTIONS(6517), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6517), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitetitle] = ACTIONS(6517), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteyear] = ACTIONS(6517), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitedate] = ACTIONS(6517), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteurl] = ACTIONS(6517), - [anon_sym_BSLASHfullcite] = ACTIONS(6517), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6517), - [anon_sym_BSLASHcitealt] = ACTIONS(6517), - [anon_sym_BSLASHcitealp] = ACTIONS(6517), - [anon_sym_BSLASHcitetext] = ACTIONS(6517), - [anon_sym_BSLASHparencite] = ACTIONS(6517), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHParencite] = ACTIONS(6517), - [anon_sym_BSLASHfootcite] = ACTIONS(6517), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6517), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6517), - [anon_sym_BSLASHtextcite] = ACTIONS(6517), - [anon_sym_BSLASHTextcite] = ACTIONS(6517), - [anon_sym_BSLASHsmartcite] = ACTIONS(6517), - [anon_sym_BSLASHSmartcite] = ACTIONS(6517), - [anon_sym_BSLASHsupercite] = ACTIONS(6517), - [anon_sym_BSLASHautocite] = ACTIONS(6517), - [anon_sym_BSLASHAutocite] = ACTIONS(6517), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHvolcite] = ACTIONS(6517), - [anon_sym_BSLASHVolcite] = ACTIONS(6517), - [anon_sym_BSLASHpvolcite] = ACTIONS(6517), - [anon_sym_BSLASHPvolcite] = ACTIONS(6517), - [anon_sym_BSLASHfvolcite] = ACTIONS(6517), - [anon_sym_BSLASHftvolcite] = ACTIONS(6517), - [anon_sym_BSLASHsvolcite] = ACTIONS(6517), - [anon_sym_BSLASHSvolcite] = ACTIONS(6517), - [anon_sym_BSLASHtvolcite] = ACTIONS(6517), - [anon_sym_BSLASHTvolcite] = ACTIONS(6517), - [anon_sym_BSLASHavolcite] = ACTIONS(6517), - [anon_sym_BSLASHAvolcite] = ACTIONS(6517), - [anon_sym_BSLASHnotecite] = ACTIONS(6517), - [anon_sym_BSLASHNotecite] = ACTIONS(6517), - [anon_sym_BSLASHpnotecite] = ACTIONS(6517), - [anon_sym_BSLASHPnotecite] = ACTIONS(6517), - [anon_sym_BSLASHfnotecite] = ACTIONS(6517), - [anon_sym_BSLASHlabel] = ACTIONS(6517), - [anon_sym_BSLASHref] = ACTIONS(6517), - [anon_sym_BSLASHeqref] = ACTIONS(6517), - [anon_sym_BSLASHvref] = ACTIONS(6517), - [anon_sym_BSLASHVref] = ACTIONS(6517), - [anon_sym_BSLASHautoref] = ACTIONS(6517), - [anon_sym_BSLASHpageref] = ACTIONS(6517), - [anon_sym_BSLASHcref] = ACTIONS(6517), - [anon_sym_BSLASHCref] = ACTIONS(6517), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnameCref] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHlabelcref] = ACTIONS(6517), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCrefrange] = ACTIONS(6517), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnewlabel] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6517), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6517), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6519), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHdef] = ACTIONS(6517), - [anon_sym_BSLASHlet] = ACTIONS(6517), - [anon_sym_BSLASHleft] = ACTIONS(6517), - [anon_sym_BSLASHbig] = ACTIONS(6517), - [anon_sym_BSLASHBig] = ACTIONS(6517), - [anon_sym_BSLASHbigg] = ACTIONS(6517), - [anon_sym_BSLASHBigg] = ACTIONS(6517), - [anon_sym_BSLASHbigl] = ACTIONS(6517), - [anon_sym_BSLASHBigl] = ACTIONS(6517), - [anon_sym_BSLASHbiggl] = ACTIONS(6517), - [anon_sym_BSLASHBiggl] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6517), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6517), - [anon_sym_BSLASHgls] = ACTIONS(6517), - [anon_sym_BSLASHGls] = ACTIONS(6517), - [anon_sym_BSLASHGLS] = ACTIONS(6517), - [anon_sym_BSLASHglspl] = ACTIONS(6517), - [anon_sym_BSLASHGlspl] = ACTIONS(6517), - [anon_sym_BSLASHGLSpl] = ACTIONS(6517), - [anon_sym_BSLASHglsdisp] = ACTIONS(6517), - [anon_sym_BSLASHglslink] = ACTIONS(6517), - [anon_sym_BSLASHglstext] = ACTIONS(6517), - [anon_sym_BSLASHGlstext] = ACTIONS(6517), - [anon_sym_BSLASHGLStext] = ACTIONS(6517), - [anon_sym_BSLASHglsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6517), - [anon_sym_BSLASHglsplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSplural] = ACTIONS(6517), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHglsname] = ACTIONS(6517), - [anon_sym_BSLASHGlsname] = ACTIONS(6517), - [anon_sym_BSLASHGLSname] = ACTIONS(6517), - [anon_sym_BSLASHglssymbol] = ACTIONS(6517), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6517), - [anon_sym_BSLASHglsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6517), - [anon_sym_BSLASHglsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6517), - [anon_sym_BSLASHglsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6517), - [anon_sym_BSLASHglsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6517), - [anon_sym_BSLASHglsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6517), - [anon_sym_BSLASHnewacronym] = ACTIONS(6517), - [anon_sym_BSLASHacrshort] = ACTIONS(6517), - [anon_sym_BSLASHAcrshort] = ACTIONS(6517), - [anon_sym_BSLASHACRshort] = ACTIONS(6517), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6517), - [anon_sym_BSLASHacrlong] = ACTIONS(6517), - [anon_sym_BSLASHAcrlong] = ACTIONS(6517), - [anon_sym_BSLASHACRlong] = ACTIONS(6517), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6517), - [anon_sym_BSLASHacrfull] = ACTIONS(6517), - [anon_sym_BSLASHAcrfull] = ACTIONS(6517), - [anon_sym_BSLASHACRfull] = ACTIONS(6517), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6517), - [anon_sym_BSLASHacs] = ACTIONS(6517), - [anon_sym_BSLASHAcs] = ACTIONS(6517), - [anon_sym_BSLASHacsp] = ACTIONS(6517), - [anon_sym_BSLASHAcsp] = ACTIONS(6517), - [anon_sym_BSLASHacl] = ACTIONS(6517), - [anon_sym_BSLASHAcl] = ACTIONS(6517), - [anon_sym_BSLASHaclp] = ACTIONS(6517), - [anon_sym_BSLASHAclp] = ACTIONS(6517), - [anon_sym_BSLASHacf] = ACTIONS(6517), - [anon_sym_BSLASHAcf] = ACTIONS(6517), - [anon_sym_BSLASHacfp] = ACTIONS(6517), - [anon_sym_BSLASHAcfp] = ACTIONS(6517), - [anon_sym_BSLASHac] = ACTIONS(6517), - [anon_sym_BSLASHAc] = ACTIONS(6517), - [anon_sym_BSLASHacp] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6517), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6517), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6517), - [anon_sym_BSLASHcolor] = ACTIONS(6517), - [anon_sym_BSLASHcolorbox] = ACTIONS(6517), - [anon_sym_BSLASHtextcolor] = ACTIONS(6517), - [anon_sym_BSLASHpagecolor] = ACTIONS(6517), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6517), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6517), - [anon_sym_BSLASHtext] = ACTIONS(6517), - [anon_sym_BSLASHintertext] = ACTIONS(6517), - [anon_sym_shortintertext] = ACTIONS(6517), - }, - [1830] = { - [sym_command_name] = ACTIONS(6513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6513), - [anon_sym_LPAREN] = ACTIONS(6515), - [anon_sym_RPAREN] = ACTIONS(6515), - [anon_sym_LBRACE] = ACTIONS(6515), - [anon_sym_RBRACE] = ACTIONS(6515), - [anon_sym_BSLASHand] = ACTIONS(6513), - [sym_word] = ACTIONS(6513), - [sym_placeholder] = ACTIONS(6515), - [anon_sym_PLUS] = ACTIONS(6515), - [anon_sym_DASH] = ACTIONS(6515), - [anon_sym_STAR] = ACTIONS(6515), - [anon_sym_SLASH] = ACTIONS(6515), - [anon_sym_LT] = ACTIONS(6513), - [anon_sym_GT] = ACTIONS(6513), - [anon_sym_BANG] = ACTIONS(6513), - [anon_sym_PIPE] = ACTIONS(6513), - [anon_sym_COLON] = ACTIONS(6513), - [anon_sym_SQUOTE] = ACTIONS(6513), - [anon_sym__] = ACTIONS(6515), - [anon_sym_CARET] = ACTIONS(6515), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6515), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6515), - [anon_sym_DOLLAR] = ACTIONS(6513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6515), - [anon_sym_BSLASHtitle] = ACTIONS(6513), - [anon_sym_BSLASHauthor] = ACTIONS(6513), - [anon_sym_BSLASHusepackage] = ACTIONS(6513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6513), - [anon_sym_BSLASHinclude] = ACTIONS(6513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6513), - [anon_sym_BSLASHinput] = ACTIONS(6513), - [anon_sym_BSLASHsubfile] = ACTIONS(6513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6513), - [anon_sym_BSLASHbibliography] = ACTIONS(6513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6513), - [anon_sym_BSLASHincludesvg] = ACTIONS(6513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6513), - [anon_sym_BSLASHimport] = ACTIONS(6513), - [anon_sym_BSLASHsubimport] = ACTIONS(6513), - [anon_sym_BSLASHinputfrom] = ACTIONS(6513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6513), - [anon_sym_BSLASHincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHcaption] = ACTIONS(6513), - [anon_sym_BSLASHcite] = ACTIONS(6513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCite] = ACTIONS(6513), - [anon_sym_BSLASHnocite] = ACTIONS(6513), - [anon_sym_BSLASHcitet] = ACTIONS(6513), - [anon_sym_BSLASHcitep] = ACTIONS(6513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteauthor] = ACTIONS(6513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitetitle] = ACTIONS(6513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteyear] = ACTIONS(6513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitedate] = ACTIONS(6513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteurl] = ACTIONS(6513), - [anon_sym_BSLASHfullcite] = ACTIONS(6513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6513), - [anon_sym_BSLASHcitealt] = ACTIONS(6513), - [anon_sym_BSLASHcitealp] = ACTIONS(6513), - [anon_sym_BSLASHcitetext] = ACTIONS(6513), - [anon_sym_BSLASHparencite] = ACTIONS(6513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHParencite] = ACTIONS(6513), - [anon_sym_BSLASHfootcite] = ACTIONS(6513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6513), - [anon_sym_BSLASHtextcite] = ACTIONS(6513), - [anon_sym_BSLASHTextcite] = ACTIONS(6513), - [anon_sym_BSLASHsmartcite] = ACTIONS(6513), - [anon_sym_BSLASHSmartcite] = ACTIONS(6513), - [anon_sym_BSLASHsupercite] = ACTIONS(6513), - [anon_sym_BSLASHautocite] = ACTIONS(6513), - [anon_sym_BSLASHAutocite] = ACTIONS(6513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHvolcite] = ACTIONS(6513), - [anon_sym_BSLASHVolcite] = ACTIONS(6513), - [anon_sym_BSLASHpvolcite] = ACTIONS(6513), - [anon_sym_BSLASHPvolcite] = ACTIONS(6513), - [anon_sym_BSLASHfvolcite] = ACTIONS(6513), - [anon_sym_BSLASHftvolcite] = ACTIONS(6513), - [anon_sym_BSLASHsvolcite] = ACTIONS(6513), - [anon_sym_BSLASHSvolcite] = ACTIONS(6513), - [anon_sym_BSLASHtvolcite] = ACTIONS(6513), - [anon_sym_BSLASHTvolcite] = ACTIONS(6513), - [anon_sym_BSLASHavolcite] = ACTIONS(6513), - [anon_sym_BSLASHAvolcite] = ACTIONS(6513), - [anon_sym_BSLASHnotecite] = ACTIONS(6513), - [anon_sym_BSLASHNotecite] = ACTIONS(6513), - [anon_sym_BSLASHpnotecite] = ACTIONS(6513), - [anon_sym_BSLASHPnotecite] = ACTIONS(6513), - [anon_sym_BSLASHfnotecite] = ACTIONS(6513), - [anon_sym_BSLASHlabel] = ACTIONS(6513), - [anon_sym_BSLASHref] = ACTIONS(6513), - [anon_sym_BSLASHeqref] = ACTIONS(6513), - [anon_sym_BSLASHvref] = ACTIONS(6513), - [anon_sym_BSLASHVref] = ACTIONS(6513), - [anon_sym_BSLASHautoref] = ACTIONS(6513), - [anon_sym_BSLASHpageref] = ACTIONS(6513), - [anon_sym_BSLASHcref] = ACTIONS(6513), - [anon_sym_BSLASHCref] = ACTIONS(6513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnameCref] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHlabelcref] = ACTIONS(6513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCrefrange] = ACTIONS(6513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnewlabel] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6515), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHdef] = ACTIONS(6513), - [anon_sym_BSLASHlet] = ACTIONS(6513), - [anon_sym_BSLASHleft] = ACTIONS(6513), - [anon_sym_BSLASHbig] = ACTIONS(6513), - [anon_sym_BSLASHBig] = ACTIONS(6513), - [anon_sym_BSLASHbigg] = ACTIONS(6513), - [anon_sym_BSLASHBigg] = ACTIONS(6513), - [anon_sym_BSLASHbigl] = ACTIONS(6513), - [anon_sym_BSLASHBigl] = ACTIONS(6513), - [anon_sym_BSLASHbiggl] = ACTIONS(6513), - [anon_sym_BSLASHBiggl] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6513), - [anon_sym_BSLASHgls] = ACTIONS(6513), - [anon_sym_BSLASHGls] = ACTIONS(6513), - [anon_sym_BSLASHGLS] = ACTIONS(6513), - [anon_sym_BSLASHglspl] = ACTIONS(6513), - [anon_sym_BSLASHGlspl] = ACTIONS(6513), - [anon_sym_BSLASHGLSpl] = ACTIONS(6513), - [anon_sym_BSLASHglsdisp] = ACTIONS(6513), - [anon_sym_BSLASHglslink] = ACTIONS(6513), - [anon_sym_BSLASHglstext] = ACTIONS(6513), - [anon_sym_BSLASHGlstext] = ACTIONS(6513), - [anon_sym_BSLASHGLStext] = ACTIONS(6513), - [anon_sym_BSLASHglsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6513), - [anon_sym_BSLASHglsplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSplural] = ACTIONS(6513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHglsname] = ACTIONS(6513), - [anon_sym_BSLASHGlsname] = ACTIONS(6513), - [anon_sym_BSLASHGLSname] = ACTIONS(6513), - [anon_sym_BSLASHglssymbol] = ACTIONS(6513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6513), - [anon_sym_BSLASHglsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6513), - [anon_sym_BSLASHglsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6513), - [anon_sym_BSLASHglsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6513), - [anon_sym_BSLASHglsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6513), - [anon_sym_BSLASHglsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6513), - [anon_sym_BSLASHnewacronym] = ACTIONS(6513), - [anon_sym_BSLASHacrshort] = ACTIONS(6513), - [anon_sym_BSLASHAcrshort] = ACTIONS(6513), - [anon_sym_BSLASHACRshort] = ACTIONS(6513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6513), - [anon_sym_BSLASHacrlong] = ACTIONS(6513), - [anon_sym_BSLASHAcrlong] = ACTIONS(6513), - [anon_sym_BSLASHACRlong] = ACTIONS(6513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6513), - [anon_sym_BSLASHacrfull] = ACTIONS(6513), - [anon_sym_BSLASHAcrfull] = ACTIONS(6513), - [anon_sym_BSLASHACRfull] = ACTIONS(6513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6513), - [anon_sym_BSLASHacs] = ACTIONS(6513), - [anon_sym_BSLASHAcs] = ACTIONS(6513), - [anon_sym_BSLASHacsp] = ACTIONS(6513), - [anon_sym_BSLASHAcsp] = ACTIONS(6513), - [anon_sym_BSLASHacl] = ACTIONS(6513), - [anon_sym_BSLASHAcl] = ACTIONS(6513), - [anon_sym_BSLASHaclp] = ACTIONS(6513), - [anon_sym_BSLASHAclp] = ACTIONS(6513), - [anon_sym_BSLASHacf] = ACTIONS(6513), - [anon_sym_BSLASHAcf] = ACTIONS(6513), - [anon_sym_BSLASHacfp] = ACTIONS(6513), - [anon_sym_BSLASHAcfp] = ACTIONS(6513), - [anon_sym_BSLASHac] = ACTIONS(6513), - [anon_sym_BSLASHAc] = ACTIONS(6513), - [anon_sym_BSLASHacp] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6513), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6513), - [anon_sym_BSLASHcolor] = ACTIONS(6513), - [anon_sym_BSLASHcolorbox] = ACTIONS(6513), - [anon_sym_BSLASHtextcolor] = ACTIONS(6513), - [anon_sym_BSLASHpagecolor] = ACTIONS(6513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6513), - [anon_sym_BSLASHtext] = ACTIONS(6513), - [anon_sym_BSLASHintertext] = ACTIONS(6513), - [anon_sym_shortintertext] = ACTIONS(6513), - }, - [1831] = { - [sym_command_name] = ACTIONS(6509), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6509), - [anon_sym_LPAREN] = ACTIONS(6511), - [anon_sym_RPAREN] = ACTIONS(6511), - [anon_sym_LBRACE] = ACTIONS(6511), - [anon_sym_RBRACE] = ACTIONS(6511), - [anon_sym_BSLASHand] = ACTIONS(6509), - [sym_word] = ACTIONS(6509), - [sym_placeholder] = ACTIONS(6511), - [anon_sym_PLUS] = ACTIONS(6511), - [anon_sym_DASH] = ACTIONS(6511), - [anon_sym_STAR] = ACTIONS(6511), - [anon_sym_SLASH] = ACTIONS(6511), - [anon_sym_LT] = ACTIONS(6509), - [anon_sym_GT] = ACTIONS(6509), - [anon_sym_BANG] = ACTIONS(6509), - [anon_sym_PIPE] = ACTIONS(6509), - [anon_sym_COLON] = ACTIONS(6509), - [anon_sym_SQUOTE] = ACTIONS(6509), - [anon_sym__] = ACTIONS(6511), - [anon_sym_CARET] = ACTIONS(6511), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6511), - [anon_sym_DOLLAR] = ACTIONS(6509), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6511), - [anon_sym_BSLASHtitle] = ACTIONS(6509), - [anon_sym_BSLASHauthor] = ACTIONS(6509), - [anon_sym_BSLASHusepackage] = ACTIONS(6509), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6509), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6509), - [anon_sym_BSLASHinclude] = ACTIONS(6509), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6509), - [anon_sym_BSLASHinput] = ACTIONS(6509), - [anon_sym_BSLASHsubfile] = ACTIONS(6509), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6509), - [anon_sym_BSLASHbibliography] = ACTIONS(6509), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6509), - [anon_sym_BSLASHincludesvg] = ACTIONS(6509), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6509), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6509), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6509), - [anon_sym_BSLASHimport] = ACTIONS(6509), - [anon_sym_BSLASHsubimport] = ACTIONS(6509), - [anon_sym_BSLASHinputfrom] = ACTIONS(6509), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6509), - [anon_sym_BSLASHincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHcaption] = ACTIONS(6509), - [anon_sym_BSLASHcite] = ACTIONS(6509), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCite] = ACTIONS(6509), - [anon_sym_BSLASHnocite] = ACTIONS(6509), - [anon_sym_BSLASHcitet] = ACTIONS(6509), - [anon_sym_BSLASHcitep] = ACTIONS(6509), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteauthor] = ACTIONS(6509), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6509), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitetitle] = ACTIONS(6509), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteyear] = ACTIONS(6509), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitedate] = ACTIONS(6509), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteurl] = ACTIONS(6509), - [anon_sym_BSLASHfullcite] = ACTIONS(6509), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6509), - [anon_sym_BSLASHcitealt] = ACTIONS(6509), - [anon_sym_BSLASHcitealp] = ACTIONS(6509), - [anon_sym_BSLASHcitetext] = ACTIONS(6509), - [anon_sym_BSLASHparencite] = ACTIONS(6509), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHParencite] = ACTIONS(6509), - [anon_sym_BSLASHfootcite] = ACTIONS(6509), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6509), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6509), - [anon_sym_BSLASHtextcite] = ACTIONS(6509), - [anon_sym_BSLASHTextcite] = ACTIONS(6509), - [anon_sym_BSLASHsmartcite] = ACTIONS(6509), - [anon_sym_BSLASHSmartcite] = ACTIONS(6509), - [anon_sym_BSLASHsupercite] = ACTIONS(6509), - [anon_sym_BSLASHautocite] = ACTIONS(6509), - [anon_sym_BSLASHAutocite] = ACTIONS(6509), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHvolcite] = ACTIONS(6509), - [anon_sym_BSLASHVolcite] = ACTIONS(6509), - [anon_sym_BSLASHpvolcite] = ACTIONS(6509), - [anon_sym_BSLASHPvolcite] = ACTIONS(6509), - [anon_sym_BSLASHfvolcite] = ACTIONS(6509), - [anon_sym_BSLASHftvolcite] = ACTIONS(6509), - [anon_sym_BSLASHsvolcite] = ACTIONS(6509), - [anon_sym_BSLASHSvolcite] = ACTIONS(6509), - [anon_sym_BSLASHtvolcite] = ACTIONS(6509), - [anon_sym_BSLASHTvolcite] = ACTIONS(6509), - [anon_sym_BSLASHavolcite] = ACTIONS(6509), - [anon_sym_BSLASHAvolcite] = ACTIONS(6509), - [anon_sym_BSLASHnotecite] = ACTIONS(6509), - [anon_sym_BSLASHNotecite] = ACTIONS(6509), - [anon_sym_BSLASHpnotecite] = ACTIONS(6509), - [anon_sym_BSLASHPnotecite] = ACTIONS(6509), - [anon_sym_BSLASHfnotecite] = ACTIONS(6509), - [anon_sym_BSLASHlabel] = ACTIONS(6509), - [anon_sym_BSLASHref] = ACTIONS(6509), - [anon_sym_BSLASHeqref] = ACTIONS(6509), - [anon_sym_BSLASHvref] = ACTIONS(6509), - [anon_sym_BSLASHVref] = ACTIONS(6509), - [anon_sym_BSLASHautoref] = ACTIONS(6509), - [anon_sym_BSLASHpageref] = ACTIONS(6509), - [anon_sym_BSLASHcref] = ACTIONS(6509), - [anon_sym_BSLASHCref] = ACTIONS(6509), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnameCref] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHlabelcref] = ACTIONS(6509), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCrefrange] = ACTIONS(6509), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnewlabel] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6509), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6509), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6511), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHdef] = ACTIONS(6509), - [anon_sym_BSLASHlet] = ACTIONS(6509), - [anon_sym_BSLASHleft] = ACTIONS(6509), - [anon_sym_BSLASHbig] = ACTIONS(6509), - [anon_sym_BSLASHBig] = ACTIONS(6509), - [anon_sym_BSLASHbigg] = ACTIONS(6509), - [anon_sym_BSLASHBigg] = ACTIONS(6509), - [anon_sym_BSLASHbigl] = ACTIONS(6509), - [anon_sym_BSLASHBigl] = ACTIONS(6509), - [anon_sym_BSLASHbiggl] = ACTIONS(6509), - [anon_sym_BSLASHBiggl] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6509), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6509), - [anon_sym_BSLASHgls] = ACTIONS(6509), - [anon_sym_BSLASHGls] = ACTIONS(6509), - [anon_sym_BSLASHGLS] = ACTIONS(6509), - [anon_sym_BSLASHglspl] = ACTIONS(6509), - [anon_sym_BSLASHGlspl] = ACTIONS(6509), - [anon_sym_BSLASHGLSpl] = ACTIONS(6509), - [anon_sym_BSLASHglsdisp] = ACTIONS(6509), - [anon_sym_BSLASHglslink] = ACTIONS(6509), - [anon_sym_BSLASHglstext] = ACTIONS(6509), - [anon_sym_BSLASHGlstext] = ACTIONS(6509), - [anon_sym_BSLASHGLStext] = ACTIONS(6509), - [anon_sym_BSLASHglsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6509), - [anon_sym_BSLASHglsplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSplural] = ACTIONS(6509), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHglsname] = ACTIONS(6509), - [anon_sym_BSLASHGlsname] = ACTIONS(6509), - [anon_sym_BSLASHGLSname] = ACTIONS(6509), - [anon_sym_BSLASHglssymbol] = ACTIONS(6509), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6509), - [anon_sym_BSLASHglsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6509), - [anon_sym_BSLASHglsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6509), - [anon_sym_BSLASHglsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6509), - [anon_sym_BSLASHglsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6509), - [anon_sym_BSLASHglsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6509), - [anon_sym_BSLASHnewacronym] = ACTIONS(6509), - [anon_sym_BSLASHacrshort] = ACTIONS(6509), - [anon_sym_BSLASHAcrshort] = ACTIONS(6509), - [anon_sym_BSLASHACRshort] = ACTIONS(6509), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6509), - [anon_sym_BSLASHacrlong] = ACTIONS(6509), - [anon_sym_BSLASHAcrlong] = ACTIONS(6509), - [anon_sym_BSLASHACRlong] = ACTIONS(6509), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6509), - [anon_sym_BSLASHacrfull] = ACTIONS(6509), - [anon_sym_BSLASHAcrfull] = ACTIONS(6509), - [anon_sym_BSLASHACRfull] = ACTIONS(6509), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6509), - [anon_sym_BSLASHacs] = ACTIONS(6509), - [anon_sym_BSLASHAcs] = ACTIONS(6509), - [anon_sym_BSLASHacsp] = ACTIONS(6509), - [anon_sym_BSLASHAcsp] = ACTIONS(6509), - [anon_sym_BSLASHacl] = ACTIONS(6509), - [anon_sym_BSLASHAcl] = ACTIONS(6509), - [anon_sym_BSLASHaclp] = ACTIONS(6509), - [anon_sym_BSLASHAclp] = ACTIONS(6509), - [anon_sym_BSLASHacf] = ACTIONS(6509), - [anon_sym_BSLASHAcf] = ACTIONS(6509), - [anon_sym_BSLASHacfp] = ACTIONS(6509), - [anon_sym_BSLASHAcfp] = ACTIONS(6509), - [anon_sym_BSLASHac] = ACTIONS(6509), - [anon_sym_BSLASHAc] = ACTIONS(6509), - [anon_sym_BSLASHacp] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6509), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6509), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6509), - [anon_sym_BSLASHcolor] = ACTIONS(6509), - [anon_sym_BSLASHcolorbox] = ACTIONS(6509), - [anon_sym_BSLASHtextcolor] = ACTIONS(6509), - [anon_sym_BSLASHpagecolor] = ACTIONS(6509), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6509), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6509), - [anon_sym_BSLASHtext] = ACTIONS(6509), - [anon_sym_BSLASHintertext] = ACTIONS(6509), - [anon_sym_shortintertext] = ACTIONS(6509), - }, - [1832] = { - [sym_command_name] = ACTIONS(6505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6505), - [anon_sym_LPAREN] = ACTIONS(6507), - [anon_sym_RPAREN] = ACTIONS(6507), - [anon_sym_LBRACE] = ACTIONS(6507), - [anon_sym_RBRACE] = ACTIONS(6507), - [anon_sym_BSLASHand] = ACTIONS(6505), - [sym_word] = ACTIONS(6505), - [sym_placeholder] = ACTIONS(6507), - [anon_sym_PLUS] = ACTIONS(6507), - [anon_sym_DASH] = ACTIONS(6507), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_SLASH] = ACTIONS(6507), - [anon_sym_LT] = ACTIONS(6505), - [anon_sym_GT] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6505), - [anon_sym_PIPE] = ACTIONS(6505), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6505), - [anon_sym__] = ACTIONS(6507), - [anon_sym_CARET] = ACTIONS(6507), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6507), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6507), - [anon_sym_DOLLAR] = ACTIONS(6505), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6507), - [anon_sym_BSLASHtitle] = ACTIONS(6505), - [anon_sym_BSLASHauthor] = ACTIONS(6505), - [anon_sym_BSLASHusepackage] = ACTIONS(6505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6505), - [anon_sym_BSLASHinclude] = ACTIONS(6505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6505), - [anon_sym_BSLASHinput] = ACTIONS(6505), - [anon_sym_BSLASHsubfile] = ACTIONS(6505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6505), - [anon_sym_BSLASHbibliography] = ACTIONS(6505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6505), - [anon_sym_BSLASHincludesvg] = ACTIONS(6505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6505), - [anon_sym_BSLASHimport] = ACTIONS(6505), - [anon_sym_BSLASHsubimport] = ACTIONS(6505), - [anon_sym_BSLASHinputfrom] = ACTIONS(6505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6505), - [anon_sym_BSLASHincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHcaption] = ACTIONS(6505), - [anon_sym_BSLASHcite] = ACTIONS(6505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCite] = ACTIONS(6505), - [anon_sym_BSLASHnocite] = ACTIONS(6505), - [anon_sym_BSLASHcitet] = ACTIONS(6505), - [anon_sym_BSLASHcitep] = ACTIONS(6505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteauthor] = ACTIONS(6505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitetitle] = ACTIONS(6505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteyear] = ACTIONS(6505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitedate] = ACTIONS(6505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteurl] = ACTIONS(6505), - [anon_sym_BSLASHfullcite] = ACTIONS(6505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6505), - [anon_sym_BSLASHcitealt] = ACTIONS(6505), - [anon_sym_BSLASHcitealp] = ACTIONS(6505), - [anon_sym_BSLASHcitetext] = ACTIONS(6505), - [anon_sym_BSLASHparencite] = ACTIONS(6505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHParencite] = ACTIONS(6505), - [anon_sym_BSLASHfootcite] = ACTIONS(6505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6505), - [anon_sym_BSLASHtextcite] = ACTIONS(6505), - [anon_sym_BSLASHTextcite] = ACTIONS(6505), - [anon_sym_BSLASHsmartcite] = ACTIONS(6505), - [anon_sym_BSLASHSmartcite] = ACTIONS(6505), - [anon_sym_BSLASHsupercite] = ACTIONS(6505), - [anon_sym_BSLASHautocite] = ACTIONS(6505), - [anon_sym_BSLASHAutocite] = ACTIONS(6505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHvolcite] = ACTIONS(6505), - [anon_sym_BSLASHVolcite] = ACTIONS(6505), - [anon_sym_BSLASHpvolcite] = ACTIONS(6505), - [anon_sym_BSLASHPvolcite] = ACTIONS(6505), - [anon_sym_BSLASHfvolcite] = ACTIONS(6505), - [anon_sym_BSLASHftvolcite] = ACTIONS(6505), - [anon_sym_BSLASHsvolcite] = ACTIONS(6505), - [anon_sym_BSLASHSvolcite] = ACTIONS(6505), - [anon_sym_BSLASHtvolcite] = ACTIONS(6505), - [anon_sym_BSLASHTvolcite] = ACTIONS(6505), - [anon_sym_BSLASHavolcite] = ACTIONS(6505), - [anon_sym_BSLASHAvolcite] = ACTIONS(6505), - [anon_sym_BSLASHnotecite] = ACTIONS(6505), - [anon_sym_BSLASHNotecite] = ACTIONS(6505), - [anon_sym_BSLASHpnotecite] = ACTIONS(6505), - [anon_sym_BSLASHPnotecite] = ACTIONS(6505), - [anon_sym_BSLASHfnotecite] = ACTIONS(6505), - [anon_sym_BSLASHlabel] = ACTIONS(6505), - [anon_sym_BSLASHref] = ACTIONS(6505), - [anon_sym_BSLASHeqref] = ACTIONS(6505), - [anon_sym_BSLASHvref] = ACTIONS(6505), - [anon_sym_BSLASHVref] = ACTIONS(6505), - [anon_sym_BSLASHautoref] = ACTIONS(6505), - [anon_sym_BSLASHpageref] = ACTIONS(6505), - [anon_sym_BSLASHcref] = ACTIONS(6505), - [anon_sym_BSLASHCref] = ACTIONS(6505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnameCref] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHlabelcref] = ACTIONS(6505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCrefrange] = ACTIONS(6505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnewlabel] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6507), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHdef] = ACTIONS(6505), - [anon_sym_BSLASHlet] = ACTIONS(6505), - [anon_sym_BSLASHleft] = ACTIONS(6505), - [anon_sym_BSLASHbig] = ACTIONS(6505), - [anon_sym_BSLASHBig] = ACTIONS(6505), - [anon_sym_BSLASHbigg] = ACTIONS(6505), - [anon_sym_BSLASHBigg] = ACTIONS(6505), - [anon_sym_BSLASHbigl] = ACTIONS(6505), - [anon_sym_BSLASHBigl] = ACTIONS(6505), - [anon_sym_BSLASHbiggl] = ACTIONS(6505), - [anon_sym_BSLASHBiggl] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6505), - [anon_sym_BSLASHgls] = ACTIONS(6505), - [anon_sym_BSLASHGls] = ACTIONS(6505), - [anon_sym_BSLASHGLS] = ACTIONS(6505), - [anon_sym_BSLASHglspl] = ACTIONS(6505), - [anon_sym_BSLASHGlspl] = ACTIONS(6505), - [anon_sym_BSLASHGLSpl] = ACTIONS(6505), - [anon_sym_BSLASHglsdisp] = ACTIONS(6505), - [anon_sym_BSLASHglslink] = ACTIONS(6505), - [anon_sym_BSLASHglstext] = ACTIONS(6505), - [anon_sym_BSLASHGlstext] = ACTIONS(6505), - [anon_sym_BSLASHGLStext] = ACTIONS(6505), - [anon_sym_BSLASHglsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6505), - [anon_sym_BSLASHglsplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSplural] = ACTIONS(6505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHglsname] = ACTIONS(6505), - [anon_sym_BSLASHGlsname] = ACTIONS(6505), - [anon_sym_BSLASHGLSname] = ACTIONS(6505), - [anon_sym_BSLASHglssymbol] = ACTIONS(6505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6505), - [anon_sym_BSLASHglsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6505), - [anon_sym_BSLASHglsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6505), - [anon_sym_BSLASHglsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6505), - [anon_sym_BSLASHglsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6505), - [anon_sym_BSLASHglsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6505), - [anon_sym_BSLASHnewacronym] = ACTIONS(6505), - [anon_sym_BSLASHacrshort] = ACTIONS(6505), - [anon_sym_BSLASHAcrshort] = ACTIONS(6505), - [anon_sym_BSLASHACRshort] = ACTIONS(6505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6505), - [anon_sym_BSLASHacrlong] = ACTIONS(6505), - [anon_sym_BSLASHAcrlong] = ACTIONS(6505), - [anon_sym_BSLASHACRlong] = ACTIONS(6505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6505), - [anon_sym_BSLASHacrfull] = ACTIONS(6505), - [anon_sym_BSLASHAcrfull] = ACTIONS(6505), - [anon_sym_BSLASHACRfull] = ACTIONS(6505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6505), - [anon_sym_BSLASHacs] = ACTIONS(6505), - [anon_sym_BSLASHAcs] = ACTIONS(6505), - [anon_sym_BSLASHacsp] = ACTIONS(6505), - [anon_sym_BSLASHAcsp] = ACTIONS(6505), - [anon_sym_BSLASHacl] = ACTIONS(6505), - [anon_sym_BSLASHAcl] = ACTIONS(6505), - [anon_sym_BSLASHaclp] = ACTIONS(6505), - [anon_sym_BSLASHAclp] = ACTIONS(6505), - [anon_sym_BSLASHacf] = ACTIONS(6505), - [anon_sym_BSLASHAcf] = ACTIONS(6505), - [anon_sym_BSLASHacfp] = ACTIONS(6505), - [anon_sym_BSLASHAcfp] = ACTIONS(6505), - [anon_sym_BSLASHac] = ACTIONS(6505), - [anon_sym_BSLASHAc] = ACTIONS(6505), - [anon_sym_BSLASHacp] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6505), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6505), - [anon_sym_BSLASHcolor] = ACTIONS(6505), - [anon_sym_BSLASHcolorbox] = ACTIONS(6505), - [anon_sym_BSLASHtextcolor] = ACTIONS(6505), - [anon_sym_BSLASHpagecolor] = ACTIONS(6505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6505), - [anon_sym_BSLASHtext] = ACTIONS(6505), - [anon_sym_BSLASHintertext] = ACTIONS(6505), - [anon_sym_shortintertext] = ACTIONS(6505), - }, - [1833] = { - [sym_command_name] = ACTIONS(6501), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6501), - [anon_sym_LPAREN] = ACTIONS(6503), - [anon_sym_RPAREN] = ACTIONS(6503), - [anon_sym_LBRACE] = ACTIONS(6503), - [anon_sym_RBRACE] = ACTIONS(6503), - [anon_sym_BSLASHand] = ACTIONS(6501), - [sym_word] = ACTIONS(6501), - [sym_placeholder] = ACTIONS(6503), - [anon_sym_PLUS] = ACTIONS(6503), - [anon_sym_DASH] = ACTIONS(6503), - [anon_sym_STAR] = ACTIONS(6503), - [anon_sym_SLASH] = ACTIONS(6503), - [anon_sym_LT] = ACTIONS(6501), - [anon_sym_GT] = ACTIONS(6501), - [anon_sym_BANG] = ACTIONS(6501), - [anon_sym_PIPE] = ACTIONS(6501), - [anon_sym_COLON] = ACTIONS(6501), - [anon_sym_SQUOTE] = ACTIONS(6501), - [anon_sym__] = ACTIONS(6503), - [anon_sym_CARET] = ACTIONS(6503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6503), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6503), - [anon_sym_DOLLAR] = ACTIONS(6501), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6503), - [anon_sym_BSLASHtitle] = ACTIONS(6501), - [anon_sym_BSLASHauthor] = ACTIONS(6501), - [anon_sym_BSLASHusepackage] = ACTIONS(6501), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6501), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6501), - [anon_sym_BSLASHinclude] = ACTIONS(6501), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6501), - [anon_sym_BSLASHinput] = ACTIONS(6501), - [anon_sym_BSLASHsubfile] = ACTIONS(6501), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6501), - [anon_sym_BSLASHbibliography] = ACTIONS(6501), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6501), - [anon_sym_BSLASHincludesvg] = ACTIONS(6501), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6501), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6501), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6501), - [anon_sym_BSLASHimport] = ACTIONS(6501), - [anon_sym_BSLASHsubimport] = ACTIONS(6501), - [anon_sym_BSLASHinputfrom] = ACTIONS(6501), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6501), - [anon_sym_BSLASHincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHcaption] = ACTIONS(6501), - [anon_sym_BSLASHcite] = ACTIONS(6501), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCite] = ACTIONS(6501), - [anon_sym_BSLASHnocite] = ACTIONS(6501), - [anon_sym_BSLASHcitet] = ACTIONS(6501), - [anon_sym_BSLASHcitep] = ACTIONS(6501), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteauthor] = ACTIONS(6501), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6501), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitetitle] = ACTIONS(6501), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteyear] = ACTIONS(6501), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitedate] = ACTIONS(6501), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteurl] = ACTIONS(6501), - [anon_sym_BSLASHfullcite] = ACTIONS(6501), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6501), - [anon_sym_BSLASHcitealt] = ACTIONS(6501), - [anon_sym_BSLASHcitealp] = ACTIONS(6501), - [anon_sym_BSLASHcitetext] = ACTIONS(6501), - [anon_sym_BSLASHparencite] = ACTIONS(6501), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHParencite] = ACTIONS(6501), - [anon_sym_BSLASHfootcite] = ACTIONS(6501), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6501), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6501), - [anon_sym_BSLASHtextcite] = ACTIONS(6501), - [anon_sym_BSLASHTextcite] = ACTIONS(6501), - [anon_sym_BSLASHsmartcite] = ACTIONS(6501), - [anon_sym_BSLASHSmartcite] = ACTIONS(6501), - [anon_sym_BSLASHsupercite] = ACTIONS(6501), - [anon_sym_BSLASHautocite] = ACTIONS(6501), - [anon_sym_BSLASHAutocite] = ACTIONS(6501), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHvolcite] = ACTIONS(6501), - [anon_sym_BSLASHVolcite] = ACTIONS(6501), - [anon_sym_BSLASHpvolcite] = ACTIONS(6501), - [anon_sym_BSLASHPvolcite] = ACTIONS(6501), - [anon_sym_BSLASHfvolcite] = ACTIONS(6501), - [anon_sym_BSLASHftvolcite] = ACTIONS(6501), - [anon_sym_BSLASHsvolcite] = ACTIONS(6501), - [anon_sym_BSLASHSvolcite] = ACTIONS(6501), - [anon_sym_BSLASHtvolcite] = ACTIONS(6501), - [anon_sym_BSLASHTvolcite] = ACTIONS(6501), - [anon_sym_BSLASHavolcite] = ACTIONS(6501), - [anon_sym_BSLASHAvolcite] = ACTIONS(6501), - [anon_sym_BSLASHnotecite] = ACTIONS(6501), - [anon_sym_BSLASHNotecite] = ACTIONS(6501), - [anon_sym_BSLASHpnotecite] = ACTIONS(6501), - [anon_sym_BSLASHPnotecite] = ACTIONS(6501), - [anon_sym_BSLASHfnotecite] = ACTIONS(6501), - [anon_sym_BSLASHlabel] = ACTIONS(6501), - [anon_sym_BSLASHref] = ACTIONS(6501), - [anon_sym_BSLASHeqref] = ACTIONS(6501), - [anon_sym_BSLASHvref] = ACTIONS(6501), - [anon_sym_BSLASHVref] = ACTIONS(6501), - [anon_sym_BSLASHautoref] = ACTIONS(6501), - [anon_sym_BSLASHpageref] = ACTIONS(6501), - [anon_sym_BSLASHcref] = ACTIONS(6501), - [anon_sym_BSLASHCref] = ACTIONS(6501), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnameCref] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHlabelcref] = ACTIONS(6501), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCrefrange] = ACTIONS(6501), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnewlabel] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6501), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6501), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6503), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHdef] = ACTIONS(6501), - [anon_sym_BSLASHlet] = ACTIONS(6501), - [anon_sym_BSLASHleft] = ACTIONS(6501), - [anon_sym_BSLASHbig] = ACTIONS(6501), - [anon_sym_BSLASHBig] = ACTIONS(6501), - [anon_sym_BSLASHbigg] = ACTIONS(6501), - [anon_sym_BSLASHBigg] = ACTIONS(6501), - [anon_sym_BSLASHbigl] = ACTIONS(6501), - [anon_sym_BSLASHBigl] = ACTIONS(6501), - [anon_sym_BSLASHbiggl] = ACTIONS(6501), - [anon_sym_BSLASHBiggl] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6501), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6501), - [anon_sym_BSLASHgls] = ACTIONS(6501), - [anon_sym_BSLASHGls] = ACTIONS(6501), - [anon_sym_BSLASHGLS] = ACTIONS(6501), - [anon_sym_BSLASHglspl] = ACTIONS(6501), - [anon_sym_BSLASHGlspl] = ACTIONS(6501), - [anon_sym_BSLASHGLSpl] = ACTIONS(6501), - [anon_sym_BSLASHglsdisp] = ACTIONS(6501), - [anon_sym_BSLASHglslink] = ACTIONS(6501), - [anon_sym_BSLASHglstext] = ACTIONS(6501), - [anon_sym_BSLASHGlstext] = ACTIONS(6501), - [anon_sym_BSLASHGLStext] = ACTIONS(6501), - [anon_sym_BSLASHglsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6501), - [anon_sym_BSLASHglsplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSplural] = ACTIONS(6501), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHglsname] = ACTIONS(6501), - [anon_sym_BSLASHGlsname] = ACTIONS(6501), - [anon_sym_BSLASHGLSname] = ACTIONS(6501), - [anon_sym_BSLASHglssymbol] = ACTIONS(6501), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6501), - [anon_sym_BSLASHglsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6501), - [anon_sym_BSLASHglsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6501), - [anon_sym_BSLASHglsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6501), - [anon_sym_BSLASHglsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6501), - [anon_sym_BSLASHglsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6501), - [anon_sym_BSLASHnewacronym] = ACTIONS(6501), - [anon_sym_BSLASHacrshort] = ACTIONS(6501), - [anon_sym_BSLASHAcrshort] = ACTIONS(6501), - [anon_sym_BSLASHACRshort] = ACTIONS(6501), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6501), - [anon_sym_BSLASHacrlong] = ACTIONS(6501), - [anon_sym_BSLASHAcrlong] = ACTIONS(6501), - [anon_sym_BSLASHACRlong] = ACTIONS(6501), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6501), - [anon_sym_BSLASHacrfull] = ACTIONS(6501), - [anon_sym_BSLASHAcrfull] = ACTIONS(6501), - [anon_sym_BSLASHACRfull] = ACTIONS(6501), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6501), - [anon_sym_BSLASHacs] = ACTIONS(6501), - [anon_sym_BSLASHAcs] = ACTIONS(6501), - [anon_sym_BSLASHacsp] = ACTIONS(6501), - [anon_sym_BSLASHAcsp] = ACTIONS(6501), - [anon_sym_BSLASHacl] = ACTIONS(6501), - [anon_sym_BSLASHAcl] = ACTIONS(6501), - [anon_sym_BSLASHaclp] = ACTIONS(6501), - [anon_sym_BSLASHAclp] = ACTIONS(6501), - [anon_sym_BSLASHacf] = ACTIONS(6501), - [anon_sym_BSLASHAcf] = ACTIONS(6501), - [anon_sym_BSLASHacfp] = ACTIONS(6501), - [anon_sym_BSLASHAcfp] = ACTIONS(6501), - [anon_sym_BSLASHac] = ACTIONS(6501), - [anon_sym_BSLASHAc] = ACTIONS(6501), - [anon_sym_BSLASHacp] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6501), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6501), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6501), - [anon_sym_BSLASHcolor] = ACTIONS(6501), - [anon_sym_BSLASHcolorbox] = ACTIONS(6501), - [anon_sym_BSLASHtextcolor] = ACTIONS(6501), - [anon_sym_BSLASHpagecolor] = ACTIONS(6501), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6501), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6501), - [anon_sym_BSLASHtext] = ACTIONS(6501), - [anon_sym_BSLASHintertext] = ACTIONS(6501), - [anon_sym_shortintertext] = ACTIONS(6501), - }, - [1834] = { - [sym_command_name] = ACTIONS(6497), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6497), - [anon_sym_LPAREN] = ACTIONS(6499), - [anon_sym_RPAREN] = ACTIONS(6499), - [anon_sym_LBRACE] = ACTIONS(6499), - [anon_sym_RBRACE] = ACTIONS(6499), - [anon_sym_BSLASHand] = ACTIONS(6497), - [sym_word] = ACTIONS(6497), - [sym_placeholder] = ACTIONS(6499), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_STAR] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6499), - [anon_sym_LT] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6497), - [anon_sym_BANG] = ACTIONS(6497), - [anon_sym_PIPE] = ACTIONS(6497), - [anon_sym_COLON] = ACTIONS(6497), - [anon_sym_SQUOTE] = ACTIONS(6497), - [anon_sym__] = ACTIONS(6499), - [anon_sym_CARET] = ACTIONS(6499), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6499), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6499), - [anon_sym_DOLLAR] = ACTIONS(6497), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6499), - [anon_sym_BSLASHtitle] = ACTIONS(6497), - [anon_sym_BSLASHauthor] = ACTIONS(6497), - [anon_sym_BSLASHusepackage] = ACTIONS(6497), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6497), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6497), - [anon_sym_BSLASHinclude] = ACTIONS(6497), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6497), - [anon_sym_BSLASHinput] = ACTIONS(6497), - [anon_sym_BSLASHsubfile] = ACTIONS(6497), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6497), - [anon_sym_BSLASHbibliography] = ACTIONS(6497), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6497), - [anon_sym_BSLASHincludesvg] = ACTIONS(6497), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6497), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6497), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6497), - [anon_sym_BSLASHimport] = ACTIONS(6497), - [anon_sym_BSLASHsubimport] = ACTIONS(6497), - [anon_sym_BSLASHinputfrom] = ACTIONS(6497), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6497), - [anon_sym_BSLASHincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHcaption] = ACTIONS(6497), - [anon_sym_BSLASHcite] = ACTIONS(6497), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCite] = ACTIONS(6497), - [anon_sym_BSLASHnocite] = ACTIONS(6497), - [anon_sym_BSLASHcitet] = ACTIONS(6497), - [anon_sym_BSLASHcitep] = ACTIONS(6497), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteauthor] = ACTIONS(6497), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6497), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitetitle] = ACTIONS(6497), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteyear] = ACTIONS(6497), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitedate] = ACTIONS(6497), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteurl] = ACTIONS(6497), - [anon_sym_BSLASHfullcite] = ACTIONS(6497), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6497), - [anon_sym_BSLASHcitealt] = ACTIONS(6497), - [anon_sym_BSLASHcitealp] = ACTIONS(6497), - [anon_sym_BSLASHcitetext] = ACTIONS(6497), - [anon_sym_BSLASHparencite] = ACTIONS(6497), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHParencite] = ACTIONS(6497), - [anon_sym_BSLASHfootcite] = ACTIONS(6497), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6497), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6497), - [anon_sym_BSLASHtextcite] = ACTIONS(6497), - [anon_sym_BSLASHTextcite] = ACTIONS(6497), - [anon_sym_BSLASHsmartcite] = ACTIONS(6497), - [anon_sym_BSLASHSmartcite] = ACTIONS(6497), - [anon_sym_BSLASHsupercite] = ACTIONS(6497), - [anon_sym_BSLASHautocite] = ACTIONS(6497), - [anon_sym_BSLASHAutocite] = ACTIONS(6497), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHvolcite] = ACTIONS(6497), - [anon_sym_BSLASHVolcite] = ACTIONS(6497), - [anon_sym_BSLASHpvolcite] = ACTIONS(6497), - [anon_sym_BSLASHPvolcite] = ACTIONS(6497), - [anon_sym_BSLASHfvolcite] = ACTIONS(6497), - [anon_sym_BSLASHftvolcite] = ACTIONS(6497), - [anon_sym_BSLASHsvolcite] = ACTIONS(6497), - [anon_sym_BSLASHSvolcite] = ACTIONS(6497), - [anon_sym_BSLASHtvolcite] = ACTIONS(6497), - [anon_sym_BSLASHTvolcite] = ACTIONS(6497), - [anon_sym_BSLASHavolcite] = ACTIONS(6497), - [anon_sym_BSLASHAvolcite] = ACTIONS(6497), - [anon_sym_BSLASHnotecite] = ACTIONS(6497), - [anon_sym_BSLASHNotecite] = ACTIONS(6497), - [anon_sym_BSLASHpnotecite] = ACTIONS(6497), - [anon_sym_BSLASHPnotecite] = ACTIONS(6497), - [anon_sym_BSLASHfnotecite] = ACTIONS(6497), - [anon_sym_BSLASHlabel] = ACTIONS(6497), - [anon_sym_BSLASHref] = ACTIONS(6497), - [anon_sym_BSLASHeqref] = ACTIONS(6497), - [anon_sym_BSLASHvref] = ACTIONS(6497), - [anon_sym_BSLASHVref] = ACTIONS(6497), - [anon_sym_BSLASHautoref] = ACTIONS(6497), - [anon_sym_BSLASHpageref] = ACTIONS(6497), - [anon_sym_BSLASHcref] = ACTIONS(6497), - [anon_sym_BSLASHCref] = ACTIONS(6497), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnameCref] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHlabelcref] = ACTIONS(6497), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCrefrange] = ACTIONS(6497), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnewlabel] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6497), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6497), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6499), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHdef] = ACTIONS(6497), - [anon_sym_BSLASHlet] = ACTIONS(6497), - [anon_sym_BSLASHleft] = ACTIONS(6497), - [anon_sym_BSLASHbig] = ACTIONS(6497), - [anon_sym_BSLASHBig] = ACTIONS(6497), - [anon_sym_BSLASHbigg] = ACTIONS(6497), - [anon_sym_BSLASHBigg] = ACTIONS(6497), - [anon_sym_BSLASHbigl] = ACTIONS(6497), - [anon_sym_BSLASHBigl] = ACTIONS(6497), - [anon_sym_BSLASHbiggl] = ACTIONS(6497), - [anon_sym_BSLASHBiggl] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6497), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6497), - [anon_sym_BSLASHgls] = ACTIONS(6497), - [anon_sym_BSLASHGls] = ACTIONS(6497), - [anon_sym_BSLASHGLS] = ACTIONS(6497), - [anon_sym_BSLASHglspl] = ACTIONS(6497), - [anon_sym_BSLASHGlspl] = ACTIONS(6497), - [anon_sym_BSLASHGLSpl] = ACTIONS(6497), - [anon_sym_BSLASHglsdisp] = ACTIONS(6497), - [anon_sym_BSLASHglslink] = ACTIONS(6497), - [anon_sym_BSLASHglstext] = ACTIONS(6497), - [anon_sym_BSLASHGlstext] = ACTIONS(6497), - [anon_sym_BSLASHGLStext] = ACTIONS(6497), - [anon_sym_BSLASHglsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6497), - [anon_sym_BSLASHglsplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSplural] = ACTIONS(6497), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHglsname] = ACTIONS(6497), - [anon_sym_BSLASHGlsname] = ACTIONS(6497), - [anon_sym_BSLASHGLSname] = ACTIONS(6497), - [anon_sym_BSLASHglssymbol] = ACTIONS(6497), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6497), - [anon_sym_BSLASHglsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6497), - [anon_sym_BSLASHglsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6497), - [anon_sym_BSLASHglsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6497), - [anon_sym_BSLASHglsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6497), - [anon_sym_BSLASHglsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6497), - [anon_sym_BSLASHnewacronym] = ACTIONS(6497), - [anon_sym_BSLASHacrshort] = ACTIONS(6497), - [anon_sym_BSLASHAcrshort] = ACTIONS(6497), - [anon_sym_BSLASHACRshort] = ACTIONS(6497), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6497), - [anon_sym_BSLASHacrlong] = ACTIONS(6497), - [anon_sym_BSLASHAcrlong] = ACTIONS(6497), - [anon_sym_BSLASHACRlong] = ACTIONS(6497), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6497), - [anon_sym_BSLASHacrfull] = ACTIONS(6497), - [anon_sym_BSLASHAcrfull] = ACTIONS(6497), - [anon_sym_BSLASHACRfull] = ACTIONS(6497), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6497), - [anon_sym_BSLASHacs] = ACTIONS(6497), - [anon_sym_BSLASHAcs] = ACTIONS(6497), - [anon_sym_BSLASHacsp] = ACTIONS(6497), - [anon_sym_BSLASHAcsp] = ACTIONS(6497), - [anon_sym_BSLASHacl] = ACTIONS(6497), - [anon_sym_BSLASHAcl] = ACTIONS(6497), - [anon_sym_BSLASHaclp] = ACTIONS(6497), - [anon_sym_BSLASHAclp] = ACTIONS(6497), - [anon_sym_BSLASHacf] = ACTIONS(6497), - [anon_sym_BSLASHAcf] = ACTIONS(6497), - [anon_sym_BSLASHacfp] = ACTIONS(6497), - [anon_sym_BSLASHAcfp] = ACTIONS(6497), - [anon_sym_BSLASHac] = ACTIONS(6497), - [anon_sym_BSLASHAc] = ACTIONS(6497), - [anon_sym_BSLASHacp] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6497), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6497), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6497), - [anon_sym_BSLASHcolor] = ACTIONS(6497), - [anon_sym_BSLASHcolorbox] = ACTIONS(6497), - [anon_sym_BSLASHtextcolor] = ACTIONS(6497), - [anon_sym_BSLASHpagecolor] = ACTIONS(6497), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6497), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6497), - [anon_sym_BSLASHtext] = ACTIONS(6497), - [anon_sym_BSLASHintertext] = ACTIONS(6497), - [anon_sym_shortintertext] = ACTIONS(6497), - }, - [1835] = { - [sym_command_name] = ACTIONS(6493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6493), - [anon_sym_LPAREN] = ACTIONS(6495), - [anon_sym_RPAREN] = ACTIONS(6495), - [anon_sym_LBRACE] = ACTIONS(6495), - [anon_sym_RBRACE] = ACTIONS(6495), - [anon_sym_BSLASHand] = ACTIONS(6493), - [sym_word] = ACTIONS(6493), - [sym_placeholder] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6495), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6493), - [anon_sym_GT] = ACTIONS(6493), - [anon_sym_BANG] = ACTIONS(6493), - [anon_sym_PIPE] = ACTIONS(6493), - [anon_sym_COLON] = ACTIONS(6493), - [anon_sym_SQUOTE] = ACTIONS(6493), - [anon_sym__] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6495), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6495), - [anon_sym_DOLLAR] = ACTIONS(6493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6495), - [anon_sym_BSLASHtitle] = ACTIONS(6493), - [anon_sym_BSLASHauthor] = ACTIONS(6493), - [anon_sym_BSLASHusepackage] = ACTIONS(6493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6493), - [anon_sym_BSLASHinclude] = ACTIONS(6493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6493), - [anon_sym_BSLASHinput] = ACTIONS(6493), - [anon_sym_BSLASHsubfile] = ACTIONS(6493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6493), - [anon_sym_BSLASHbibliography] = ACTIONS(6493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6493), - [anon_sym_BSLASHincludesvg] = ACTIONS(6493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6493), - [anon_sym_BSLASHimport] = ACTIONS(6493), - [anon_sym_BSLASHsubimport] = ACTIONS(6493), - [anon_sym_BSLASHinputfrom] = ACTIONS(6493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6493), - [anon_sym_BSLASHincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHcaption] = ACTIONS(6493), - [anon_sym_BSLASHcite] = ACTIONS(6493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCite] = ACTIONS(6493), - [anon_sym_BSLASHnocite] = ACTIONS(6493), - [anon_sym_BSLASHcitet] = ACTIONS(6493), - [anon_sym_BSLASHcitep] = ACTIONS(6493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteauthor] = ACTIONS(6493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitetitle] = ACTIONS(6493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteyear] = ACTIONS(6493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitedate] = ACTIONS(6493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteurl] = ACTIONS(6493), - [anon_sym_BSLASHfullcite] = ACTIONS(6493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6493), - [anon_sym_BSLASHcitealt] = ACTIONS(6493), - [anon_sym_BSLASHcitealp] = ACTIONS(6493), - [anon_sym_BSLASHcitetext] = ACTIONS(6493), - [anon_sym_BSLASHparencite] = ACTIONS(6493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHParencite] = ACTIONS(6493), - [anon_sym_BSLASHfootcite] = ACTIONS(6493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6493), - [anon_sym_BSLASHtextcite] = ACTIONS(6493), - [anon_sym_BSLASHTextcite] = ACTIONS(6493), - [anon_sym_BSLASHsmartcite] = ACTIONS(6493), - [anon_sym_BSLASHSmartcite] = ACTIONS(6493), - [anon_sym_BSLASHsupercite] = ACTIONS(6493), - [anon_sym_BSLASHautocite] = ACTIONS(6493), - [anon_sym_BSLASHAutocite] = ACTIONS(6493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHvolcite] = ACTIONS(6493), - [anon_sym_BSLASHVolcite] = ACTIONS(6493), - [anon_sym_BSLASHpvolcite] = ACTIONS(6493), - [anon_sym_BSLASHPvolcite] = ACTIONS(6493), - [anon_sym_BSLASHfvolcite] = ACTIONS(6493), - [anon_sym_BSLASHftvolcite] = ACTIONS(6493), - [anon_sym_BSLASHsvolcite] = ACTIONS(6493), - [anon_sym_BSLASHSvolcite] = ACTIONS(6493), - [anon_sym_BSLASHtvolcite] = ACTIONS(6493), - [anon_sym_BSLASHTvolcite] = ACTIONS(6493), - [anon_sym_BSLASHavolcite] = ACTIONS(6493), - [anon_sym_BSLASHAvolcite] = ACTIONS(6493), - [anon_sym_BSLASHnotecite] = ACTIONS(6493), - [anon_sym_BSLASHNotecite] = ACTIONS(6493), - [anon_sym_BSLASHpnotecite] = ACTIONS(6493), - [anon_sym_BSLASHPnotecite] = ACTIONS(6493), - [anon_sym_BSLASHfnotecite] = ACTIONS(6493), - [anon_sym_BSLASHlabel] = ACTIONS(6493), - [anon_sym_BSLASHref] = ACTIONS(6493), - [anon_sym_BSLASHeqref] = ACTIONS(6493), - [anon_sym_BSLASHvref] = ACTIONS(6493), - [anon_sym_BSLASHVref] = ACTIONS(6493), - [anon_sym_BSLASHautoref] = ACTIONS(6493), - [anon_sym_BSLASHpageref] = ACTIONS(6493), - [anon_sym_BSLASHcref] = ACTIONS(6493), - [anon_sym_BSLASHCref] = ACTIONS(6493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnameCref] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHlabelcref] = ACTIONS(6493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCrefrange] = ACTIONS(6493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnewlabel] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6495), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHdef] = ACTIONS(6493), - [anon_sym_BSLASHlet] = ACTIONS(6493), - [anon_sym_BSLASHleft] = ACTIONS(6493), - [anon_sym_BSLASHbig] = ACTIONS(6493), - [anon_sym_BSLASHBig] = ACTIONS(6493), - [anon_sym_BSLASHbigg] = ACTIONS(6493), - [anon_sym_BSLASHBigg] = ACTIONS(6493), - [anon_sym_BSLASHbigl] = ACTIONS(6493), - [anon_sym_BSLASHBigl] = ACTIONS(6493), - [anon_sym_BSLASHbiggl] = ACTIONS(6493), - [anon_sym_BSLASHBiggl] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6493), - [anon_sym_BSLASHgls] = ACTIONS(6493), - [anon_sym_BSLASHGls] = ACTIONS(6493), - [anon_sym_BSLASHGLS] = ACTIONS(6493), - [anon_sym_BSLASHglspl] = ACTIONS(6493), - [anon_sym_BSLASHGlspl] = ACTIONS(6493), - [anon_sym_BSLASHGLSpl] = ACTIONS(6493), - [anon_sym_BSLASHglsdisp] = ACTIONS(6493), - [anon_sym_BSLASHglslink] = ACTIONS(6493), - [anon_sym_BSLASHglstext] = ACTIONS(6493), - [anon_sym_BSLASHGlstext] = ACTIONS(6493), - [anon_sym_BSLASHGLStext] = ACTIONS(6493), - [anon_sym_BSLASHglsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6493), - [anon_sym_BSLASHglsplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSplural] = ACTIONS(6493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHglsname] = ACTIONS(6493), - [anon_sym_BSLASHGlsname] = ACTIONS(6493), - [anon_sym_BSLASHGLSname] = ACTIONS(6493), - [anon_sym_BSLASHglssymbol] = ACTIONS(6493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6493), - [anon_sym_BSLASHglsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6493), - [anon_sym_BSLASHglsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6493), - [anon_sym_BSLASHglsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6493), - [anon_sym_BSLASHglsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6493), - [anon_sym_BSLASHglsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6493), - [anon_sym_BSLASHnewacronym] = ACTIONS(6493), - [anon_sym_BSLASHacrshort] = ACTIONS(6493), - [anon_sym_BSLASHAcrshort] = ACTIONS(6493), - [anon_sym_BSLASHACRshort] = ACTIONS(6493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6493), - [anon_sym_BSLASHacrlong] = ACTIONS(6493), - [anon_sym_BSLASHAcrlong] = ACTIONS(6493), - [anon_sym_BSLASHACRlong] = ACTIONS(6493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6493), - [anon_sym_BSLASHacrfull] = ACTIONS(6493), - [anon_sym_BSLASHAcrfull] = ACTIONS(6493), - [anon_sym_BSLASHACRfull] = ACTIONS(6493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6493), - [anon_sym_BSLASHacs] = ACTIONS(6493), - [anon_sym_BSLASHAcs] = ACTIONS(6493), - [anon_sym_BSLASHacsp] = ACTIONS(6493), - [anon_sym_BSLASHAcsp] = ACTIONS(6493), - [anon_sym_BSLASHacl] = ACTIONS(6493), - [anon_sym_BSLASHAcl] = ACTIONS(6493), - [anon_sym_BSLASHaclp] = ACTIONS(6493), - [anon_sym_BSLASHAclp] = ACTIONS(6493), - [anon_sym_BSLASHacf] = ACTIONS(6493), - [anon_sym_BSLASHAcf] = ACTIONS(6493), - [anon_sym_BSLASHacfp] = ACTIONS(6493), - [anon_sym_BSLASHAcfp] = ACTIONS(6493), - [anon_sym_BSLASHac] = ACTIONS(6493), - [anon_sym_BSLASHAc] = ACTIONS(6493), - [anon_sym_BSLASHacp] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6493), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6493), - [anon_sym_BSLASHcolor] = ACTIONS(6493), - [anon_sym_BSLASHcolorbox] = ACTIONS(6493), - [anon_sym_BSLASHtextcolor] = ACTIONS(6493), - [anon_sym_BSLASHpagecolor] = ACTIONS(6493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6493), - [anon_sym_BSLASHtext] = ACTIONS(6493), - [anon_sym_BSLASHintertext] = ACTIONS(6493), - [anon_sym_shortintertext] = ACTIONS(6493), - }, - [1836] = { - [sym_command_name] = ACTIONS(187), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(187), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_RPAREN] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_RBRACE] = ACTIONS(185), - [anon_sym_BSLASHand] = ACTIONS(187), - [sym_word] = ACTIONS(187), - [sym_placeholder] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(185), - [anon_sym_DASH] = ACTIONS(185), - [anon_sym_STAR] = ACTIONS(185), - [anon_sym_SLASH] = ACTIONS(185), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_GT] = ACTIONS(187), - [anon_sym_BANG] = ACTIONS(187), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_SQUOTE] = ACTIONS(187), - [anon_sym__] = ACTIONS(185), - [anon_sym_CARET] = ACTIONS(185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(185), - [anon_sym_BSLASH_LBRACK] = ACTIONS(185), - [anon_sym_DOLLAR] = ACTIONS(187), - [anon_sym_BSLASH_LPAREN] = ACTIONS(185), - [anon_sym_BSLASHtitle] = ACTIONS(187), - [anon_sym_BSLASHauthor] = ACTIONS(187), - [anon_sym_BSLASHusepackage] = ACTIONS(187), - [anon_sym_BSLASHRequirePackage] = ACTIONS(187), - [anon_sym_BSLASHdocumentclass] = ACTIONS(187), - [anon_sym_BSLASHinclude] = ACTIONS(187), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(187), - [anon_sym_BSLASHinput] = ACTIONS(187), - [anon_sym_BSLASHsubfile] = ACTIONS(187), - [anon_sym_BSLASHaddbibresource] = ACTIONS(187), - [anon_sym_BSLASHbibliography] = ACTIONS(187), - [anon_sym_BSLASHincludegraphics] = ACTIONS(187), - [anon_sym_BSLASHincludesvg] = ACTIONS(187), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(187), - [anon_sym_BSLASHverbatiminput] = ACTIONS(187), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(187), - [anon_sym_BSLASHimport] = ACTIONS(187), - [anon_sym_BSLASHsubimport] = ACTIONS(187), - [anon_sym_BSLASHinputfrom] = ACTIONS(187), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(187), - [anon_sym_BSLASHincludefrom] = ACTIONS(187), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(187), - [anon_sym_BSLASHcaption] = ACTIONS(187), - [anon_sym_BSLASHcite] = ACTIONS(187), - [anon_sym_BSLASHcite_STAR] = ACTIONS(185), - [anon_sym_BSLASHCite] = ACTIONS(187), - [anon_sym_BSLASHnocite] = ACTIONS(187), - [anon_sym_BSLASHcitet] = ACTIONS(187), - [anon_sym_BSLASHcitep] = ACTIONS(187), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteauthor] = ACTIONS(187), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHCiteauthor] = ACTIONS(187), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitetitle] = ACTIONS(187), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteyear] = ACTIONS(187), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(185), - [anon_sym_BSLASHcitedate] = ACTIONS(187), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(185), - [anon_sym_BSLASHciteurl] = ACTIONS(187), - [anon_sym_BSLASHfullcite] = ACTIONS(187), - [anon_sym_BSLASHciteyearpar] = ACTIONS(187), - [anon_sym_BSLASHcitealt] = ACTIONS(187), - [anon_sym_BSLASHcitealp] = ACTIONS(187), - [anon_sym_BSLASHcitetext] = ACTIONS(187), - [anon_sym_BSLASHparencite] = ACTIONS(187), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(185), - [anon_sym_BSLASHParencite] = ACTIONS(187), - [anon_sym_BSLASHfootcite] = ACTIONS(187), - [anon_sym_BSLASHfootfullcite] = ACTIONS(187), - [anon_sym_BSLASHfootcitetext] = ACTIONS(187), - [anon_sym_BSLASHtextcite] = ACTIONS(187), - [anon_sym_BSLASHTextcite] = ACTIONS(187), - [anon_sym_BSLASHsmartcite] = ACTIONS(187), - [anon_sym_BSLASHSmartcite] = ACTIONS(187), - [anon_sym_BSLASHsupercite] = ACTIONS(187), - [anon_sym_BSLASHautocite] = ACTIONS(187), - [anon_sym_BSLASHAutocite] = ACTIONS(187), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(185), - [anon_sym_BSLASHvolcite] = ACTIONS(187), - [anon_sym_BSLASHVolcite] = ACTIONS(187), - [anon_sym_BSLASHpvolcite] = ACTIONS(187), - [anon_sym_BSLASHPvolcite] = ACTIONS(187), - [anon_sym_BSLASHfvolcite] = ACTIONS(187), - [anon_sym_BSLASHftvolcite] = ACTIONS(187), - [anon_sym_BSLASHsvolcite] = ACTIONS(187), - [anon_sym_BSLASHSvolcite] = ACTIONS(187), - [anon_sym_BSLASHtvolcite] = ACTIONS(187), - [anon_sym_BSLASHTvolcite] = ACTIONS(187), - [anon_sym_BSLASHavolcite] = ACTIONS(187), - [anon_sym_BSLASHAvolcite] = ACTIONS(187), - [anon_sym_BSLASHnotecite] = ACTIONS(187), - [anon_sym_BSLASHNotecite] = ACTIONS(187), - [anon_sym_BSLASHpnotecite] = ACTIONS(187), - [anon_sym_BSLASHPnotecite] = ACTIONS(187), - [anon_sym_BSLASHfnotecite] = ACTIONS(187), - [anon_sym_BSLASHlabel] = ACTIONS(187), - [anon_sym_BSLASHref] = ACTIONS(187), - [anon_sym_BSLASHeqref] = ACTIONS(187), - [anon_sym_BSLASHvref] = ACTIONS(187), - [anon_sym_BSLASHVref] = ACTIONS(187), - [anon_sym_BSLASHautoref] = ACTIONS(187), - [anon_sym_BSLASHpageref] = ACTIONS(187), - [anon_sym_BSLASHcref] = ACTIONS(187), - [anon_sym_BSLASHCref] = ACTIONS(187), - [anon_sym_BSLASHcref_STAR] = ACTIONS(185), - [anon_sym_BSLASHCref_STAR] = ACTIONS(185), - [anon_sym_BSLASHnamecref] = ACTIONS(187), - [anon_sym_BSLASHnameCref] = ACTIONS(187), - [anon_sym_BSLASHlcnamecref] = ACTIONS(187), - [anon_sym_BSLASHnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHnameCrefs] = ACTIONS(187), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(187), - [anon_sym_BSLASHlabelcref] = ACTIONS(187), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(187), - [anon_sym_BSLASHcrefrange] = ACTIONS(187), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHCrefrange] = ACTIONS(187), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(185), - [anon_sym_BSLASHnewlabel] = ACTIONS(187), - [anon_sym_BSLASHnewcommand] = ACTIONS(187), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHrenewcommand] = ACTIONS(187), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(185), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(187), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(185), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(187), - [anon_sym_BSLASHdef] = ACTIONS(187), - [anon_sym_BSLASHlet] = ACTIONS(187), - [anon_sym_BSLASHleft] = ACTIONS(187), - [anon_sym_BSLASHbig] = ACTIONS(187), - [anon_sym_BSLASHBig] = ACTIONS(187), - [anon_sym_BSLASHbigg] = ACTIONS(187), - [anon_sym_BSLASHBigg] = ACTIONS(187), - [anon_sym_BSLASHbigl] = ACTIONS(187), - [anon_sym_BSLASHBigl] = ACTIONS(187), - [anon_sym_BSLASHbiggl] = ACTIONS(187), - [anon_sym_BSLASHBiggl] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(187), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(187), - [anon_sym_BSLASHnewenvironment] = ACTIONS(187), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(187), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(187), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(187), - [anon_sym_BSLASHgls] = ACTIONS(187), - [anon_sym_BSLASHGls] = ACTIONS(187), - [anon_sym_BSLASHGLS] = ACTIONS(187), - [anon_sym_BSLASHglspl] = ACTIONS(187), - [anon_sym_BSLASHGlspl] = ACTIONS(187), - [anon_sym_BSLASHGLSpl] = ACTIONS(187), - [anon_sym_BSLASHglsdisp] = ACTIONS(187), - [anon_sym_BSLASHglslink] = ACTIONS(187), - [anon_sym_BSLASHglstext] = ACTIONS(187), - [anon_sym_BSLASHGlstext] = ACTIONS(187), - [anon_sym_BSLASHGLStext] = ACTIONS(187), - [anon_sym_BSLASHglsfirst] = ACTIONS(187), - [anon_sym_BSLASHGlsfirst] = ACTIONS(187), - [anon_sym_BSLASHGLSfirst] = ACTIONS(187), - [anon_sym_BSLASHglsplural] = ACTIONS(187), - [anon_sym_BSLASHGlsplural] = ACTIONS(187), - [anon_sym_BSLASHGLSplural] = ACTIONS(187), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(187), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(187), - [anon_sym_BSLASHglsname] = ACTIONS(187), - [anon_sym_BSLASHGlsname] = ACTIONS(187), - [anon_sym_BSLASHGLSname] = ACTIONS(187), - [anon_sym_BSLASHglssymbol] = ACTIONS(187), - [anon_sym_BSLASHGlssymbol] = ACTIONS(187), - [anon_sym_BSLASHglsdesc] = ACTIONS(187), - [anon_sym_BSLASHGlsdesc] = ACTIONS(187), - [anon_sym_BSLASHGLSdesc] = ACTIONS(187), - [anon_sym_BSLASHglsuseri] = ACTIONS(187), - [anon_sym_BSLASHGlsuseri] = ACTIONS(187), - [anon_sym_BSLASHGLSuseri] = ACTIONS(187), - [anon_sym_BSLASHglsuserii] = ACTIONS(187), - [anon_sym_BSLASHGlsuserii] = ACTIONS(187), - [anon_sym_BSLASHGLSuserii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(187), - [anon_sym_BSLASHglsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(187), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(187), - [anon_sym_BSLASHglsuserv] = ACTIONS(187), - [anon_sym_BSLASHGlsuserv] = ACTIONS(187), - [anon_sym_BSLASHGLSuserv] = ACTIONS(187), - [anon_sym_BSLASHglsuservi] = ACTIONS(187), - [anon_sym_BSLASHGlsuservi] = ACTIONS(187), - [anon_sym_BSLASHGLSuservi] = ACTIONS(187), - [anon_sym_BSLASHnewacronym] = ACTIONS(187), - [anon_sym_BSLASHacrshort] = ACTIONS(187), - [anon_sym_BSLASHAcrshort] = ACTIONS(187), - [anon_sym_BSLASHACRshort] = ACTIONS(187), - [anon_sym_BSLASHacrshortpl] = ACTIONS(187), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(187), - [anon_sym_BSLASHACRshortpl] = ACTIONS(187), - [anon_sym_BSLASHacrlong] = ACTIONS(187), - [anon_sym_BSLASHAcrlong] = ACTIONS(187), - [anon_sym_BSLASHACRlong] = ACTIONS(187), - [anon_sym_BSLASHacrlongpl] = ACTIONS(187), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(187), - [anon_sym_BSLASHACRlongpl] = ACTIONS(187), - [anon_sym_BSLASHacrfull] = ACTIONS(187), - [anon_sym_BSLASHAcrfull] = ACTIONS(187), - [anon_sym_BSLASHACRfull] = ACTIONS(187), - [anon_sym_BSLASHacrfullpl] = ACTIONS(187), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(187), - [anon_sym_BSLASHACRfullpl] = ACTIONS(187), - [anon_sym_BSLASHacs] = ACTIONS(187), - [anon_sym_BSLASHAcs] = ACTIONS(187), - [anon_sym_BSLASHacsp] = ACTIONS(187), - [anon_sym_BSLASHAcsp] = ACTIONS(187), - [anon_sym_BSLASHacl] = ACTIONS(187), - [anon_sym_BSLASHAcl] = ACTIONS(187), - [anon_sym_BSLASHaclp] = ACTIONS(187), - [anon_sym_BSLASHAclp] = ACTIONS(187), - [anon_sym_BSLASHacf] = ACTIONS(187), - [anon_sym_BSLASHAcf] = ACTIONS(187), - [anon_sym_BSLASHacfp] = ACTIONS(187), - [anon_sym_BSLASHAcfp] = ACTIONS(187), - [anon_sym_BSLASHac] = ACTIONS(187), - [anon_sym_BSLASHAc] = ACTIONS(187), - [anon_sym_BSLASHacp] = ACTIONS(187), - [anon_sym_BSLASHglsentrylong] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(187), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryshort] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(187), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(187), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem] = ACTIONS(187), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(187), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(187), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(187), - [anon_sym_BSLASHcolor] = ACTIONS(187), - [anon_sym_BSLASHcolorbox] = ACTIONS(187), - [anon_sym_BSLASHtextcolor] = ACTIONS(187), - [anon_sym_BSLASHpagecolor] = ACTIONS(187), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(187), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(187), - [anon_sym_BSLASHtext] = ACTIONS(187), - [anon_sym_BSLASHintertext] = ACTIONS(187), - [anon_sym_shortintertext] = ACTIONS(187), - }, - [1837] = { - [sym_command_name] = ACTIONS(145), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(145), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_LBRACE] = ACTIONS(149), - [anon_sym_RBRACE] = ACTIONS(149), - [anon_sym_BSLASHand] = ACTIONS(145), - [sym_word] = ACTIONS(145), - [sym_placeholder] = ACTIONS(149), - [anon_sym_PLUS] = ACTIONS(149), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_SLASH] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(145), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_BANG] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_COLON] = ACTIONS(145), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym__] = ACTIONS(149), - [anon_sym_CARET] = ACTIONS(149), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LPAREN] = ACTIONS(149), - [anon_sym_BSLASHtitle] = ACTIONS(145), - [anon_sym_BSLASHauthor] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(145), - [anon_sym_BSLASHRequirePackage] = ACTIONS(145), - [anon_sym_BSLASHdocumentclass] = ACTIONS(145), - [anon_sym_BSLASHinclude] = ACTIONS(145), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(145), - [anon_sym_BSLASHinput] = ACTIONS(145), - [anon_sym_BSLASHsubfile] = ACTIONS(145), - [anon_sym_BSLASHaddbibresource] = ACTIONS(145), - [anon_sym_BSLASHbibliography] = ACTIONS(145), - [anon_sym_BSLASHincludegraphics] = ACTIONS(145), - [anon_sym_BSLASHincludesvg] = ACTIONS(145), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(145), - [anon_sym_BSLASHverbatiminput] = ACTIONS(145), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(145), - [anon_sym_BSLASHimport] = ACTIONS(145), - [anon_sym_BSLASHsubimport] = ACTIONS(145), - [anon_sym_BSLASHinputfrom] = ACTIONS(145), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(145), - [anon_sym_BSLASHincludefrom] = ACTIONS(145), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(145), - [anon_sym_BSLASHcaption] = ACTIONS(145), - [anon_sym_BSLASHcite] = ACTIONS(145), - [anon_sym_BSLASHcite_STAR] = ACTIONS(149), - [anon_sym_BSLASHCite] = ACTIONS(145), - [anon_sym_BSLASHnocite] = ACTIONS(145), - [anon_sym_BSLASHcitet] = ACTIONS(145), - [anon_sym_BSLASHcitep] = ACTIONS(145), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteauthor] = ACTIONS(145), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitetitle] = ACTIONS(145), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteyear] = ACTIONS(145), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(149), - [anon_sym_BSLASHcitedate] = ACTIONS(145), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(149), - [anon_sym_BSLASHciteurl] = ACTIONS(145), - [anon_sym_BSLASHfullcite] = ACTIONS(145), - [anon_sym_BSLASHciteyearpar] = ACTIONS(145), - [anon_sym_BSLASHcitealt] = ACTIONS(145), - [anon_sym_BSLASHcitealp] = ACTIONS(145), - [anon_sym_BSLASHcitetext] = ACTIONS(145), - [anon_sym_BSLASHparencite] = ACTIONS(145), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(149), - [anon_sym_BSLASHParencite] = ACTIONS(145), - [anon_sym_BSLASHfootcite] = ACTIONS(145), - [anon_sym_BSLASHfootfullcite] = ACTIONS(145), - [anon_sym_BSLASHfootcitetext] = ACTIONS(145), - [anon_sym_BSLASHtextcite] = ACTIONS(145), - [anon_sym_BSLASHTextcite] = ACTIONS(145), - [anon_sym_BSLASHsmartcite] = ACTIONS(145), - [anon_sym_BSLASHSmartcite] = ACTIONS(145), - [anon_sym_BSLASHsupercite] = ACTIONS(145), - [anon_sym_BSLASHautocite] = ACTIONS(145), - [anon_sym_BSLASHAutocite] = ACTIONS(145), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(149), - [anon_sym_BSLASHvolcite] = ACTIONS(145), - [anon_sym_BSLASHVolcite] = ACTIONS(145), - [anon_sym_BSLASHpvolcite] = ACTIONS(145), - [anon_sym_BSLASHPvolcite] = ACTIONS(145), - [anon_sym_BSLASHfvolcite] = ACTIONS(145), - [anon_sym_BSLASHftvolcite] = ACTIONS(145), - [anon_sym_BSLASHsvolcite] = ACTIONS(145), - [anon_sym_BSLASHSvolcite] = ACTIONS(145), - [anon_sym_BSLASHtvolcite] = ACTIONS(145), - [anon_sym_BSLASHTvolcite] = ACTIONS(145), - [anon_sym_BSLASHavolcite] = ACTIONS(145), - [anon_sym_BSLASHAvolcite] = ACTIONS(145), - [anon_sym_BSLASHnotecite] = ACTIONS(145), - [anon_sym_BSLASHNotecite] = ACTIONS(145), - [anon_sym_BSLASHpnotecite] = ACTIONS(145), - [anon_sym_BSLASHPnotecite] = ACTIONS(145), - [anon_sym_BSLASHfnotecite] = ACTIONS(145), - [anon_sym_BSLASHlabel] = ACTIONS(145), - [anon_sym_BSLASHref] = ACTIONS(145), - [anon_sym_BSLASHeqref] = ACTIONS(145), - [anon_sym_BSLASHvref] = ACTIONS(145), - [anon_sym_BSLASHVref] = ACTIONS(145), - [anon_sym_BSLASHautoref] = ACTIONS(145), - [anon_sym_BSLASHpageref] = ACTIONS(145), - [anon_sym_BSLASHcref] = ACTIONS(145), - [anon_sym_BSLASHCref] = ACTIONS(145), - [anon_sym_BSLASHcref_STAR] = ACTIONS(149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(149), - [anon_sym_BSLASHnamecref] = ACTIONS(145), - [anon_sym_BSLASHnameCref] = ACTIONS(145), - [anon_sym_BSLASHlcnamecref] = ACTIONS(145), - [anon_sym_BSLASHnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHnameCrefs] = ACTIONS(145), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(145), - [anon_sym_BSLASHlabelcref] = ACTIONS(145), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(145), - [anon_sym_BSLASHcrefrange] = ACTIONS(145), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHCrefrange] = ACTIONS(145), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(149), - [anon_sym_BSLASHnewlabel] = ACTIONS(145), - [anon_sym_BSLASHnewcommand] = ACTIONS(145), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(149), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(145), - [anon_sym_BSLASHlet] = ACTIONS(145), - [anon_sym_BSLASHleft] = ACTIONS(145), - [anon_sym_BSLASHbig] = ACTIONS(145), - [anon_sym_BSLASHBig] = ACTIONS(145), - [anon_sym_BSLASHbigg] = ACTIONS(145), - [anon_sym_BSLASHBigg] = ACTIONS(145), - [anon_sym_BSLASHbigl] = ACTIONS(145), - [anon_sym_BSLASHBigl] = ACTIONS(145), - [anon_sym_BSLASHbiggl] = ACTIONS(145), - [anon_sym_BSLASHBiggl] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(145), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(145), - [anon_sym_BSLASHnewenvironment] = ACTIONS(145), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(145), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(145), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(145), - [anon_sym_BSLASHgls] = ACTIONS(145), - [anon_sym_BSLASHGls] = ACTIONS(145), - [anon_sym_BSLASHGLS] = ACTIONS(145), - [anon_sym_BSLASHglspl] = ACTIONS(145), - [anon_sym_BSLASHGlspl] = ACTIONS(145), - [anon_sym_BSLASHGLSpl] = ACTIONS(145), - [anon_sym_BSLASHglsdisp] = ACTIONS(145), - [anon_sym_BSLASHglslink] = ACTIONS(145), - [anon_sym_BSLASHglstext] = ACTIONS(145), - [anon_sym_BSLASHGlstext] = ACTIONS(145), - [anon_sym_BSLASHGLStext] = ACTIONS(145), - [anon_sym_BSLASHglsfirst] = ACTIONS(145), - [anon_sym_BSLASHGlsfirst] = ACTIONS(145), - [anon_sym_BSLASHGLSfirst] = ACTIONS(145), - [anon_sym_BSLASHglsplural] = ACTIONS(145), - [anon_sym_BSLASHGlsplural] = ACTIONS(145), - [anon_sym_BSLASHGLSplural] = ACTIONS(145), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(145), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(145), - [anon_sym_BSLASHglsname] = ACTIONS(145), - [anon_sym_BSLASHGlsname] = ACTIONS(145), - [anon_sym_BSLASHGLSname] = ACTIONS(145), - [anon_sym_BSLASHglssymbol] = ACTIONS(145), - [anon_sym_BSLASHGlssymbol] = ACTIONS(145), - [anon_sym_BSLASHglsdesc] = ACTIONS(145), - [anon_sym_BSLASHGlsdesc] = ACTIONS(145), - [anon_sym_BSLASHGLSdesc] = ACTIONS(145), - [anon_sym_BSLASHglsuseri] = ACTIONS(145), - [anon_sym_BSLASHGlsuseri] = ACTIONS(145), - [anon_sym_BSLASHGLSuseri] = ACTIONS(145), - [anon_sym_BSLASHglsuserii] = ACTIONS(145), - [anon_sym_BSLASHGlsuserii] = ACTIONS(145), - [anon_sym_BSLASHGLSuserii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(145), - [anon_sym_BSLASHglsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(145), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(145), - [anon_sym_BSLASHglsuserv] = ACTIONS(145), - [anon_sym_BSLASHGlsuserv] = ACTIONS(145), - [anon_sym_BSLASHGLSuserv] = ACTIONS(145), - [anon_sym_BSLASHglsuservi] = ACTIONS(145), - [anon_sym_BSLASHGlsuservi] = ACTIONS(145), - [anon_sym_BSLASHGLSuservi] = ACTIONS(145), - [anon_sym_BSLASHnewacronym] = ACTIONS(145), - [anon_sym_BSLASHacrshort] = ACTIONS(145), - [anon_sym_BSLASHAcrshort] = ACTIONS(145), - [anon_sym_BSLASHACRshort] = ACTIONS(145), - [anon_sym_BSLASHacrshortpl] = ACTIONS(145), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(145), - [anon_sym_BSLASHACRshortpl] = ACTIONS(145), - [anon_sym_BSLASHacrlong] = ACTIONS(145), - [anon_sym_BSLASHAcrlong] = ACTIONS(145), - [anon_sym_BSLASHACRlong] = ACTIONS(145), - [anon_sym_BSLASHacrlongpl] = ACTIONS(145), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(145), - [anon_sym_BSLASHACRlongpl] = ACTIONS(145), - [anon_sym_BSLASHacrfull] = ACTIONS(145), - [anon_sym_BSLASHAcrfull] = ACTIONS(145), - [anon_sym_BSLASHACRfull] = ACTIONS(145), - [anon_sym_BSLASHacrfullpl] = ACTIONS(145), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(145), - [anon_sym_BSLASHACRfullpl] = ACTIONS(145), - [anon_sym_BSLASHacs] = ACTIONS(145), - [anon_sym_BSLASHAcs] = ACTIONS(145), - [anon_sym_BSLASHacsp] = ACTIONS(145), - [anon_sym_BSLASHAcsp] = ACTIONS(145), - [anon_sym_BSLASHacl] = ACTIONS(145), - [anon_sym_BSLASHAcl] = ACTIONS(145), - [anon_sym_BSLASHaclp] = ACTIONS(145), - [anon_sym_BSLASHAclp] = ACTIONS(145), - [anon_sym_BSLASHacf] = ACTIONS(145), - [anon_sym_BSLASHAcf] = ACTIONS(145), - [anon_sym_BSLASHacfp] = ACTIONS(145), - [anon_sym_BSLASHAcfp] = ACTIONS(145), - [anon_sym_BSLASHac] = ACTIONS(145), - [anon_sym_BSLASHAc] = ACTIONS(145), - [anon_sym_BSLASHacp] = ACTIONS(145), - [anon_sym_BSLASHglsentrylong] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(145), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryshort] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(145), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(145), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem] = ACTIONS(145), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(145), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(149), - [anon_sym_BSLASHdefinecolor] = ACTIONS(145), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(145), - [anon_sym_BSLASHcolor] = ACTIONS(145), - [anon_sym_BSLASHcolorbox] = ACTIONS(145), - [anon_sym_BSLASHtextcolor] = ACTIONS(145), - [anon_sym_BSLASHpagecolor] = ACTIONS(145), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(145), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(145), - [anon_sym_BSLASHtext] = ACTIONS(145), - [anon_sym_BSLASHintertext] = ACTIONS(145), - [anon_sym_shortintertext] = ACTIONS(145), - }, - [1838] = { - [sym_command_name] = ACTIONS(199), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(199), - [anon_sym_LPAREN] = ACTIONS(201), - [anon_sym_RPAREN] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_RBRACE] = ACTIONS(201), - [anon_sym_BSLASHand] = ACTIONS(199), - [sym_word] = ACTIONS(199), - [sym_placeholder] = ACTIONS(201), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_STAR] = ACTIONS(201), - [anon_sym_SLASH] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(199), - [anon_sym_GT] = ACTIONS(199), - [anon_sym_BANG] = ACTIONS(199), - [anon_sym_PIPE] = ACTIONS(199), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym__] = ACTIONS(201), - [anon_sym_CARET] = ACTIONS(201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(201), - [anon_sym_BSLASH_LBRACK] = ACTIONS(201), - [anon_sym_DOLLAR] = ACTIONS(199), - [anon_sym_BSLASH_LPAREN] = ACTIONS(201), - [anon_sym_BSLASHtitle] = ACTIONS(199), - [anon_sym_BSLASHauthor] = ACTIONS(199), - [anon_sym_BSLASHusepackage] = ACTIONS(199), - [anon_sym_BSLASHRequirePackage] = ACTIONS(199), - [anon_sym_BSLASHdocumentclass] = ACTIONS(199), - [anon_sym_BSLASHinclude] = ACTIONS(199), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(199), - [anon_sym_BSLASHinput] = ACTIONS(199), - [anon_sym_BSLASHsubfile] = ACTIONS(199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(199), - [anon_sym_BSLASHbibliography] = ACTIONS(199), - [anon_sym_BSLASHincludegraphics] = ACTIONS(199), - [anon_sym_BSLASHincludesvg] = ACTIONS(199), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(199), - [anon_sym_BSLASHverbatiminput] = ACTIONS(199), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(199), - [anon_sym_BSLASHimport] = ACTIONS(199), - [anon_sym_BSLASHsubimport] = ACTIONS(199), - [anon_sym_BSLASHinputfrom] = ACTIONS(199), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(199), - [anon_sym_BSLASHincludefrom] = ACTIONS(199), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(199), - [anon_sym_BSLASHcaption] = ACTIONS(199), - [anon_sym_BSLASHcite] = ACTIONS(199), - [anon_sym_BSLASHcite_STAR] = ACTIONS(201), - [anon_sym_BSLASHCite] = ACTIONS(199), - [anon_sym_BSLASHnocite] = ACTIONS(199), - [anon_sym_BSLASHcitet] = ACTIONS(199), - [anon_sym_BSLASHcitep] = ACTIONS(199), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteauthor] = ACTIONS(199), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHCiteauthor] = ACTIONS(199), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitetitle] = ACTIONS(199), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteyear] = ACTIONS(199), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(201), - [anon_sym_BSLASHcitedate] = ACTIONS(199), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(201), - [anon_sym_BSLASHciteurl] = ACTIONS(199), - [anon_sym_BSLASHfullcite] = ACTIONS(199), - [anon_sym_BSLASHciteyearpar] = ACTIONS(199), - [anon_sym_BSLASHcitealt] = ACTIONS(199), - [anon_sym_BSLASHcitealp] = ACTIONS(199), - [anon_sym_BSLASHcitetext] = ACTIONS(199), - [anon_sym_BSLASHparencite] = ACTIONS(199), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(201), - [anon_sym_BSLASHParencite] = ACTIONS(199), - [anon_sym_BSLASHfootcite] = ACTIONS(199), - [anon_sym_BSLASHfootfullcite] = ACTIONS(199), - [anon_sym_BSLASHfootcitetext] = ACTIONS(199), - [anon_sym_BSLASHtextcite] = ACTIONS(199), - [anon_sym_BSLASHTextcite] = ACTIONS(199), - [anon_sym_BSLASHsmartcite] = ACTIONS(199), - [anon_sym_BSLASHSmartcite] = ACTIONS(199), - [anon_sym_BSLASHsupercite] = ACTIONS(199), - [anon_sym_BSLASHautocite] = ACTIONS(199), - [anon_sym_BSLASHAutocite] = ACTIONS(199), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(201), - [anon_sym_BSLASHvolcite] = ACTIONS(199), - [anon_sym_BSLASHVolcite] = ACTIONS(199), - [anon_sym_BSLASHpvolcite] = ACTIONS(199), - [anon_sym_BSLASHPvolcite] = ACTIONS(199), - [anon_sym_BSLASHfvolcite] = ACTIONS(199), - [anon_sym_BSLASHftvolcite] = ACTIONS(199), - [anon_sym_BSLASHsvolcite] = ACTIONS(199), - [anon_sym_BSLASHSvolcite] = ACTIONS(199), - [anon_sym_BSLASHtvolcite] = ACTIONS(199), - [anon_sym_BSLASHTvolcite] = ACTIONS(199), - [anon_sym_BSLASHavolcite] = ACTIONS(199), - [anon_sym_BSLASHAvolcite] = ACTIONS(199), - [anon_sym_BSLASHnotecite] = ACTIONS(199), - [anon_sym_BSLASHNotecite] = ACTIONS(199), - [anon_sym_BSLASHpnotecite] = ACTIONS(199), - [anon_sym_BSLASHPnotecite] = ACTIONS(199), - [anon_sym_BSLASHfnotecite] = ACTIONS(199), - [anon_sym_BSLASHlabel] = ACTIONS(199), - [anon_sym_BSLASHref] = ACTIONS(199), - [anon_sym_BSLASHeqref] = ACTIONS(199), - [anon_sym_BSLASHvref] = ACTIONS(199), - [anon_sym_BSLASHVref] = ACTIONS(199), - [anon_sym_BSLASHautoref] = ACTIONS(199), - [anon_sym_BSLASHpageref] = ACTIONS(199), - [anon_sym_BSLASHcref] = ACTIONS(199), - [anon_sym_BSLASHCref] = ACTIONS(199), - [anon_sym_BSLASHcref_STAR] = ACTIONS(201), - [anon_sym_BSLASHCref_STAR] = ACTIONS(201), - [anon_sym_BSLASHnamecref] = ACTIONS(199), - [anon_sym_BSLASHnameCref] = ACTIONS(199), - [anon_sym_BSLASHlcnamecref] = ACTIONS(199), - [anon_sym_BSLASHnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHnameCrefs] = ACTIONS(199), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(199), - [anon_sym_BSLASHlabelcref] = ACTIONS(199), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(199), - [anon_sym_BSLASHcrefrange] = ACTIONS(199), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHCrefrange] = ACTIONS(199), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(201), - [anon_sym_BSLASHnewlabel] = ACTIONS(199), - [anon_sym_BSLASHnewcommand] = ACTIONS(199), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHrenewcommand] = ACTIONS(199), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(201), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(199), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(201), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(199), - [anon_sym_BSLASHdef] = ACTIONS(199), - [anon_sym_BSLASHlet] = ACTIONS(199), - [anon_sym_BSLASHleft] = ACTIONS(199), - [anon_sym_BSLASHbig] = ACTIONS(199), - [anon_sym_BSLASHBig] = ACTIONS(199), - [anon_sym_BSLASHbigg] = ACTIONS(199), - [anon_sym_BSLASHBigg] = ACTIONS(199), - [anon_sym_BSLASHbigl] = ACTIONS(199), - [anon_sym_BSLASHBigl] = ACTIONS(199), - [anon_sym_BSLASHbiggl] = ACTIONS(199), - [anon_sym_BSLASHBiggl] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(199), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(199), - [anon_sym_BSLASHnewenvironment] = ACTIONS(199), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(199), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(199), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(199), - [anon_sym_BSLASHgls] = ACTIONS(199), - [anon_sym_BSLASHGls] = ACTIONS(199), - [anon_sym_BSLASHGLS] = ACTIONS(199), - [anon_sym_BSLASHglspl] = ACTIONS(199), - [anon_sym_BSLASHGlspl] = ACTIONS(199), - [anon_sym_BSLASHGLSpl] = ACTIONS(199), - [anon_sym_BSLASHglsdisp] = ACTIONS(199), - [anon_sym_BSLASHglslink] = ACTIONS(199), - [anon_sym_BSLASHglstext] = ACTIONS(199), - [anon_sym_BSLASHGlstext] = ACTIONS(199), - [anon_sym_BSLASHGLStext] = ACTIONS(199), - [anon_sym_BSLASHglsfirst] = ACTIONS(199), - [anon_sym_BSLASHGlsfirst] = ACTIONS(199), - [anon_sym_BSLASHGLSfirst] = ACTIONS(199), - [anon_sym_BSLASHglsplural] = ACTIONS(199), - [anon_sym_BSLASHGlsplural] = ACTIONS(199), - [anon_sym_BSLASHGLSplural] = ACTIONS(199), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(199), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(199), - [anon_sym_BSLASHglsname] = ACTIONS(199), - [anon_sym_BSLASHGlsname] = ACTIONS(199), - [anon_sym_BSLASHGLSname] = ACTIONS(199), - [anon_sym_BSLASHglssymbol] = ACTIONS(199), - [anon_sym_BSLASHGlssymbol] = ACTIONS(199), - [anon_sym_BSLASHglsdesc] = ACTIONS(199), - [anon_sym_BSLASHGlsdesc] = ACTIONS(199), - [anon_sym_BSLASHGLSdesc] = ACTIONS(199), - [anon_sym_BSLASHglsuseri] = ACTIONS(199), - [anon_sym_BSLASHGlsuseri] = ACTIONS(199), - [anon_sym_BSLASHGLSuseri] = ACTIONS(199), - [anon_sym_BSLASHglsuserii] = ACTIONS(199), - [anon_sym_BSLASHGlsuserii] = ACTIONS(199), - [anon_sym_BSLASHGLSuserii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(199), - [anon_sym_BSLASHglsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(199), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(199), - [anon_sym_BSLASHglsuserv] = ACTIONS(199), - [anon_sym_BSLASHGlsuserv] = ACTIONS(199), - [anon_sym_BSLASHGLSuserv] = ACTIONS(199), - [anon_sym_BSLASHglsuservi] = ACTIONS(199), - [anon_sym_BSLASHGlsuservi] = ACTIONS(199), - [anon_sym_BSLASHGLSuservi] = ACTIONS(199), - [anon_sym_BSLASHnewacronym] = ACTIONS(199), - [anon_sym_BSLASHacrshort] = ACTIONS(199), - [anon_sym_BSLASHAcrshort] = ACTIONS(199), - [anon_sym_BSLASHACRshort] = ACTIONS(199), - [anon_sym_BSLASHacrshortpl] = ACTIONS(199), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(199), - [anon_sym_BSLASHACRshortpl] = ACTIONS(199), - [anon_sym_BSLASHacrlong] = ACTIONS(199), - [anon_sym_BSLASHAcrlong] = ACTIONS(199), - [anon_sym_BSLASHACRlong] = ACTIONS(199), - [anon_sym_BSLASHacrlongpl] = ACTIONS(199), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(199), - [anon_sym_BSLASHACRlongpl] = ACTIONS(199), - [anon_sym_BSLASHacrfull] = ACTIONS(199), - [anon_sym_BSLASHAcrfull] = ACTIONS(199), - [anon_sym_BSLASHACRfull] = ACTIONS(199), - [anon_sym_BSLASHacrfullpl] = ACTIONS(199), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(199), - [anon_sym_BSLASHACRfullpl] = ACTIONS(199), - [anon_sym_BSLASHacs] = ACTIONS(199), - [anon_sym_BSLASHAcs] = ACTIONS(199), - [anon_sym_BSLASHacsp] = ACTIONS(199), - [anon_sym_BSLASHAcsp] = ACTIONS(199), - [anon_sym_BSLASHacl] = ACTIONS(199), - [anon_sym_BSLASHAcl] = ACTIONS(199), - [anon_sym_BSLASHaclp] = ACTIONS(199), - [anon_sym_BSLASHAclp] = ACTIONS(199), - [anon_sym_BSLASHacf] = ACTIONS(199), - [anon_sym_BSLASHAcf] = ACTIONS(199), - [anon_sym_BSLASHacfp] = ACTIONS(199), - [anon_sym_BSLASHAcfp] = ACTIONS(199), - [anon_sym_BSLASHac] = ACTIONS(199), - [anon_sym_BSLASHAc] = ACTIONS(199), - [anon_sym_BSLASHacp] = ACTIONS(199), - [anon_sym_BSLASHglsentrylong] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(199), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryshort] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(199), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(199), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem] = ACTIONS(199), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(199), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(199), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(199), - [anon_sym_BSLASHcolor] = ACTIONS(199), - [anon_sym_BSLASHcolorbox] = ACTIONS(199), - [anon_sym_BSLASHtextcolor] = ACTIONS(199), - [anon_sym_BSLASHpagecolor] = ACTIONS(199), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(199), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(199), - [anon_sym_BSLASHtext] = ACTIONS(199), - [anon_sym_BSLASHintertext] = ACTIONS(199), - [anon_sym_shortintertext] = ACTIONS(199), - }, - [1839] = { - [sym_command_name] = ACTIONS(6489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6489), - [anon_sym_LPAREN] = ACTIONS(6491), - [anon_sym_RPAREN] = ACTIONS(6491), - [anon_sym_LBRACE] = ACTIONS(6491), - [anon_sym_RBRACE] = ACTIONS(6491), - [anon_sym_BSLASHand] = ACTIONS(6489), - [sym_word] = ACTIONS(6489), - [sym_placeholder] = ACTIONS(6491), - [anon_sym_PLUS] = ACTIONS(6491), - [anon_sym_DASH] = ACTIONS(6491), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_LT] = ACTIONS(6489), - [anon_sym_GT] = ACTIONS(6489), - [anon_sym_BANG] = ACTIONS(6489), - [anon_sym_PIPE] = ACTIONS(6489), - [anon_sym_COLON] = ACTIONS(6489), - [anon_sym_SQUOTE] = ACTIONS(6489), - [anon_sym__] = ACTIONS(6491), - [anon_sym_CARET] = ACTIONS(6491), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6491), - [anon_sym_DOLLAR] = ACTIONS(6489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6491), - [anon_sym_BSLASHtitle] = ACTIONS(6489), - [anon_sym_BSLASHauthor] = ACTIONS(6489), - [anon_sym_BSLASHusepackage] = ACTIONS(6489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6489), - [anon_sym_BSLASHinclude] = ACTIONS(6489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6489), - [anon_sym_BSLASHinput] = ACTIONS(6489), - [anon_sym_BSLASHsubfile] = ACTIONS(6489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6489), - [anon_sym_BSLASHbibliography] = ACTIONS(6489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6489), - [anon_sym_BSLASHincludesvg] = ACTIONS(6489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6489), - [anon_sym_BSLASHimport] = ACTIONS(6489), - [anon_sym_BSLASHsubimport] = ACTIONS(6489), - [anon_sym_BSLASHinputfrom] = ACTIONS(6489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6489), - [anon_sym_BSLASHincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHcaption] = ACTIONS(6489), - [anon_sym_BSLASHcite] = ACTIONS(6489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCite] = ACTIONS(6489), - [anon_sym_BSLASHnocite] = ACTIONS(6489), - [anon_sym_BSLASHcitet] = ACTIONS(6489), - [anon_sym_BSLASHcitep] = ACTIONS(6489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteauthor] = ACTIONS(6489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitetitle] = ACTIONS(6489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteyear] = ACTIONS(6489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitedate] = ACTIONS(6489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteurl] = ACTIONS(6489), - [anon_sym_BSLASHfullcite] = ACTIONS(6489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6489), - [anon_sym_BSLASHcitealt] = ACTIONS(6489), - [anon_sym_BSLASHcitealp] = ACTIONS(6489), - [anon_sym_BSLASHcitetext] = ACTIONS(6489), - [anon_sym_BSLASHparencite] = ACTIONS(6489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHParencite] = ACTIONS(6489), - [anon_sym_BSLASHfootcite] = ACTIONS(6489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6489), - [anon_sym_BSLASHtextcite] = ACTIONS(6489), - [anon_sym_BSLASHTextcite] = ACTIONS(6489), - [anon_sym_BSLASHsmartcite] = ACTIONS(6489), - [anon_sym_BSLASHSmartcite] = ACTIONS(6489), - [anon_sym_BSLASHsupercite] = ACTIONS(6489), - [anon_sym_BSLASHautocite] = ACTIONS(6489), - [anon_sym_BSLASHAutocite] = ACTIONS(6489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHvolcite] = ACTIONS(6489), - [anon_sym_BSLASHVolcite] = ACTIONS(6489), - [anon_sym_BSLASHpvolcite] = ACTIONS(6489), - [anon_sym_BSLASHPvolcite] = ACTIONS(6489), - [anon_sym_BSLASHfvolcite] = ACTIONS(6489), - [anon_sym_BSLASHftvolcite] = ACTIONS(6489), - [anon_sym_BSLASHsvolcite] = ACTIONS(6489), - [anon_sym_BSLASHSvolcite] = ACTIONS(6489), - [anon_sym_BSLASHtvolcite] = ACTIONS(6489), - [anon_sym_BSLASHTvolcite] = ACTIONS(6489), - [anon_sym_BSLASHavolcite] = ACTIONS(6489), - [anon_sym_BSLASHAvolcite] = ACTIONS(6489), - [anon_sym_BSLASHnotecite] = ACTIONS(6489), - [anon_sym_BSLASHNotecite] = ACTIONS(6489), - [anon_sym_BSLASHpnotecite] = ACTIONS(6489), - [anon_sym_BSLASHPnotecite] = ACTIONS(6489), - [anon_sym_BSLASHfnotecite] = ACTIONS(6489), - [anon_sym_BSLASHlabel] = ACTIONS(6489), - [anon_sym_BSLASHref] = ACTIONS(6489), - [anon_sym_BSLASHeqref] = ACTIONS(6489), - [anon_sym_BSLASHvref] = ACTIONS(6489), - [anon_sym_BSLASHVref] = ACTIONS(6489), - [anon_sym_BSLASHautoref] = ACTIONS(6489), - [anon_sym_BSLASHpageref] = ACTIONS(6489), - [anon_sym_BSLASHcref] = ACTIONS(6489), - [anon_sym_BSLASHCref] = ACTIONS(6489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnameCref] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHlabelcref] = ACTIONS(6489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCrefrange] = ACTIONS(6489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnewlabel] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6491), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHdef] = ACTIONS(6489), - [anon_sym_BSLASHlet] = ACTIONS(6489), - [anon_sym_BSLASHleft] = ACTIONS(6489), - [anon_sym_BSLASHbig] = ACTIONS(6489), - [anon_sym_BSLASHBig] = ACTIONS(6489), - [anon_sym_BSLASHbigg] = ACTIONS(6489), - [anon_sym_BSLASHBigg] = ACTIONS(6489), - [anon_sym_BSLASHbigl] = ACTIONS(6489), - [anon_sym_BSLASHBigl] = ACTIONS(6489), - [anon_sym_BSLASHbiggl] = ACTIONS(6489), - [anon_sym_BSLASHBiggl] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6489), - [anon_sym_BSLASHgls] = ACTIONS(6489), - [anon_sym_BSLASHGls] = ACTIONS(6489), - [anon_sym_BSLASHGLS] = ACTIONS(6489), - [anon_sym_BSLASHglspl] = ACTIONS(6489), - [anon_sym_BSLASHGlspl] = ACTIONS(6489), - [anon_sym_BSLASHGLSpl] = ACTIONS(6489), - [anon_sym_BSLASHglsdisp] = ACTIONS(6489), - [anon_sym_BSLASHglslink] = ACTIONS(6489), - [anon_sym_BSLASHglstext] = ACTIONS(6489), - [anon_sym_BSLASHGlstext] = ACTIONS(6489), - [anon_sym_BSLASHGLStext] = ACTIONS(6489), - [anon_sym_BSLASHglsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6489), - [anon_sym_BSLASHglsplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSplural] = ACTIONS(6489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHglsname] = ACTIONS(6489), - [anon_sym_BSLASHGlsname] = ACTIONS(6489), - [anon_sym_BSLASHGLSname] = ACTIONS(6489), - [anon_sym_BSLASHglssymbol] = ACTIONS(6489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6489), - [anon_sym_BSLASHglsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6489), - [anon_sym_BSLASHglsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6489), - [anon_sym_BSLASHglsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6489), - [anon_sym_BSLASHglsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6489), - [anon_sym_BSLASHglsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6489), - [anon_sym_BSLASHnewacronym] = ACTIONS(6489), - [anon_sym_BSLASHacrshort] = ACTIONS(6489), - [anon_sym_BSLASHAcrshort] = ACTIONS(6489), - [anon_sym_BSLASHACRshort] = ACTIONS(6489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6489), - [anon_sym_BSLASHacrlong] = ACTIONS(6489), - [anon_sym_BSLASHAcrlong] = ACTIONS(6489), - [anon_sym_BSLASHACRlong] = ACTIONS(6489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6489), - [anon_sym_BSLASHacrfull] = ACTIONS(6489), - [anon_sym_BSLASHAcrfull] = ACTIONS(6489), - [anon_sym_BSLASHACRfull] = ACTIONS(6489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6489), - [anon_sym_BSLASHacs] = ACTIONS(6489), - [anon_sym_BSLASHAcs] = ACTIONS(6489), - [anon_sym_BSLASHacsp] = ACTIONS(6489), - [anon_sym_BSLASHAcsp] = ACTIONS(6489), - [anon_sym_BSLASHacl] = ACTIONS(6489), - [anon_sym_BSLASHAcl] = ACTIONS(6489), - [anon_sym_BSLASHaclp] = ACTIONS(6489), - [anon_sym_BSLASHAclp] = ACTIONS(6489), - [anon_sym_BSLASHacf] = ACTIONS(6489), - [anon_sym_BSLASHAcf] = ACTIONS(6489), - [anon_sym_BSLASHacfp] = ACTIONS(6489), - [anon_sym_BSLASHAcfp] = ACTIONS(6489), - [anon_sym_BSLASHac] = ACTIONS(6489), - [anon_sym_BSLASHAc] = ACTIONS(6489), - [anon_sym_BSLASHacp] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6489), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6489), - [anon_sym_BSLASHcolor] = ACTIONS(6489), - [anon_sym_BSLASHcolorbox] = ACTIONS(6489), - [anon_sym_BSLASHtextcolor] = ACTIONS(6489), - [anon_sym_BSLASHpagecolor] = ACTIONS(6489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6489), - [anon_sym_BSLASHtext] = ACTIONS(6489), - [anon_sym_BSLASHintertext] = ACTIONS(6489), - [anon_sym_shortintertext] = ACTIONS(6489), - }, - [1840] = { - [sym_command_name] = ACTIONS(189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(189), - [anon_sym_LPAREN] = ACTIONS(191), - [anon_sym_RPAREN] = ACTIONS(191), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_RBRACE] = ACTIONS(191), - [anon_sym_BSLASHand] = ACTIONS(189), - [sym_word] = ACTIONS(189), - [sym_placeholder] = ACTIONS(191), - [anon_sym_PLUS] = ACTIONS(191), - [anon_sym_DASH] = ACTIONS(191), - [anon_sym_STAR] = ACTIONS(191), - [anon_sym_SLASH] = ACTIONS(191), - [anon_sym_LT] = ACTIONS(189), - [anon_sym_GT] = ACTIONS(189), - [anon_sym_BANG] = ACTIONS(189), - [anon_sym_PIPE] = ACTIONS(189), - [anon_sym_COLON] = ACTIONS(189), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym__] = ACTIONS(191), - [anon_sym_CARET] = ACTIONS(191), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(191), - [anon_sym_BSLASHtitle] = ACTIONS(189), - [anon_sym_BSLASHauthor] = ACTIONS(189), - [anon_sym_BSLASHusepackage] = ACTIONS(189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(189), - [anon_sym_BSLASHinclude] = ACTIONS(189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(189), - [anon_sym_BSLASHinput] = ACTIONS(189), - [anon_sym_BSLASHsubfile] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(189), - [anon_sym_BSLASHbibliography] = ACTIONS(189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(189), - [anon_sym_BSLASHincludesvg] = ACTIONS(189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(189), - [anon_sym_BSLASHimport] = ACTIONS(189), - [anon_sym_BSLASHsubimport] = ACTIONS(189), - [anon_sym_BSLASHinputfrom] = ACTIONS(189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(189), - [anon_sym_BSLASHincludefrom] = ACTIONS(189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(189), - [anon_sym_BSLASHcaption] = ACTIONS(189), - [anon_sym_BSLASHcite] = ACTIONS(189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(191), - [anon_sym_BSLASHCite] = ACTIONS(189), - [anon_sym_BSLASHnocite] = ACTIONS(189), - [anon_sym_BSLASHcitet] = ACTIONS(189), - [anon_sym_BSLASHcitep] = ACTIONS(189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteauthor] = ACTIONS(189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitetitle] = ACTIONS(189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteyear] = ACTIONS(189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(191), - [anon_sym_BSLASHcitedate] = ACTIONS(189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(191), - [anon_sym_BSLASHciteurl] = ACTIONS(189), - [anon_sym_BSLASHfullcite] = ACTIONS(189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(189), - [anon_sym_BSLASHcitealt] = ACTIONS(189), - [anon_sym_BSLASHcitealp] = ACTIONS(189), - [anon_sym_BSLASHcitetext] = ACTIONS(189), - [anon_sym_BSLASHparencite] = ACTIONS(189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(191), - [anon_sym_BSLASHParencite] = ACTIONS(189), - [anon_sym_BSLASHfootcite] = ACTIONS(189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(189), - [anon_sym_BSLASHtextcite] = ACTIONS(189), - [anon_sym_BSLASHTextcite] = ACTIONS(189), - [anon_sym_BSLASHsmartcite] = ACTIONS(189), - [anon_sym_BSLASHSmartcite] = ACTIONS(189), - [anon_sym_BSLASHsupercite] = ACTIONS(189), - [anon_sym_BSLASHautocite] = ACTIONS(189), - [anon_sym_BSLASHAutocite] = ACTIONS(189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(191), - [anon_sym_BSLASHvolcite] = ACTIONS(189), - [anon_sym_BSLASHVolcite] = ACTIONS(189), - [anon_sym_BSLASHpvolcite] = ACTIONS(189), - [anon_sym_BSLASHPvolcite] = ACTIONS(189), - [anon_sym_BSLASHfvolcite] = ACTIONS(189), - [anon_sym_BSLASHftvolcite] = ACTIONS(189), - [anon_sym_BSLASHsvolcite] = ACTIONS(189), - [anon_sym_BSLASHSvolcite] = ACTIONS(189), - [anon_sym_BSLASHtvolcite] = ACTIONS(189), - [anon_sym_BSLASHTvolcite] = ACTIONS(189), - [anon_sym_BSLASHavolcite] = ACTIONS(189), - [anon_sym_BSLASHAvolcite] = ACTIONS(189), - [anon_sym_BSLASHnotecite] = ACTIONS(189), - [anon_sym_BSLASHNotecite] = ACTIONS(189), - [anon_sym_BSLASHpnotecite] = ACTIONS(189), - [anon_sym_BSLASHPnotecite] = ACTIONS(189), - [anon_sym_BSLASHfnotecite] = ACTIONS(189), - [anon_sym_BSLASHlabel] = ACTIONS(189), - [anon_sym_BSLASHref] = ACTIONS(189), - [anon_sym_BSLASHeqref] = ACTIONS(189), - [anon_sym_BSLASHvref] = ACTIONS(189), - [anon_sym_BSLASHVref] = ACTIONS(189), - [anon_sym_BSLASHautoref] = ACTIONS(189), - [anon_sym_BSLASHpageref] = ACTIONS(189), - [anon_sym_BSLASHcref] = ACTIONS(189), - [anon_sym_BSLASHCref] = ACTIONS(189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(191), - [anon_sym_BSLASHnamecref] = ACTIONS(189), - [anon_sym_BSLASHnameCref] = ACTIONS(189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(189), - [anon_sym_BSLASHlabelcref] = ACTIONS(189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(189), - [anon_sym_BSLASHcrefrange] = ACTIONS(189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHCrefrange] = ACTIONS(189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(191), - [anon_sym_BSLASHnewlabel] = ACTIONS(189), - [anon_sym_BSLASHnewcommand] = ACTIONS(189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(189), - [anon_sym_BSLASHdef] = ACTIONS(189), - [anon_sym_BSLASHlet] = ACTIONS(189), - [anon_sym_BSLASHleft] = ACTIONS(189), - [anon_sym_BSLASHbig] = ACTIONS(189), - [anon_sym_BSLASHBig] = ACTIONS(189), - [anon_sym_BSLASHbigg] = ACTIONS(189), - [anon_sym_BSLASHBigg] = ACTIONS(189), - [anon_sym_BSLASHbigl] = ACTIONS(189), - [anon_sym_BSLASHBigl] = ACTIONS(189), - [anon_sym_BSLASHbiggl] = ACTIONS(189), - [anon_sym_BSLASHBiggl] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(189), - [anon_sym_BSLASHgls] = ACTIONS(189), - [anon_sym_BSLASHGls] = ACTIONS(189), - [anon_sym_BSLASHGLS] = ACTIONS(189), - [anon_sym_BSLASHglspl] = ACTIONS(189), - [anon_sym_BSLASHGlspl] = ACTIONS(189), - [anon_sym_BSLASHGLSpl] = ACTIONS(189), - [anon_sym_BSLASHglsdisp] = ACTIONS(189), - [anon_sym_BSLASHglslink] = ACTIONS(189), - [anon_sym_BSLASHglstext] = ACTIONS(189), - [anon_sym_BSLASHGlstext] = ACTIONS(189), - [anon_sym_BSLASHGLStext] = ACTIONS(189), - [anon_sym_BSLASHglsfirst] = ACTIONS(189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(189), - [anon_sym_BSLASHglsplural] = ACTIONS(189), - [anon_sym_BSLASHGlsplural] = ACTIONS(189), - [anon_sym_BSLASHGLSplural] = ACTIONS(189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(189), - [anon_sym_BSLASHglsname] = ACTIONS(189), - [anon_sym_BSLASHGlsname] = ACTIONS(189), - [anon_sym_BSLASHGLSname] = ACTIONS(189), - [anon_sym_BSLASHglssymbol] = ACTIONS(189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(189), - [anon_sym_BSLASHglsdesc] = ACTIONS(189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(189), - [anon_sym_BSLASHglsuseri] = ACTIONS(189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(189), - [anon_sym_BSLASHglsuserii] = ACTIONS(189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(189), - [anon_sym_BSLASHglsuserv] = ACTIONS(189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(189), - [anon_sym_BSLASHglsuservi] = ACTIONS(189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(189), - [anon_sym_BSLASHnewacronym] = ACTIONS(189), - [anon_sym_BSLASHacrshort] = ACTIONS(189), - [anon_sym_BSLASHAcrshort] = ACTIONS(189), - [anon_sym_BSLASHACRshort] = ACTIONS(189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(189), - [anon_sym_BSLASHacrlong] = ACTIONS(189), - [anon_sym_BSLASHAcrlong] = ACTIONS(189), - [anon_sym_BSLASHACRlong] = ACTIONS(189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(189), - [anon_sym_BSLASHacrfull] = ACTIONS(189), - [anon_sym_BSLASHAcrfull] = ACTIONS(189), - [anon_sym_BSLASHACRfull] = ACTIONS(189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(189), - [anon_sym_BSLASHacs] = ACTIONS(189), - [anon_sym_BSLASHAcs] = ACTIONS(189), - [anon_sym_BSLASHacsp] = ACTIONS(189), - [anon_sym_BSLASHAcsp] = ACTIONS(189), - [anon_sym_BSLASHacl] = ACTIONS(189), - [anon_sym_BSLASHAcl] = ACTIONS(189), - [anon_sym_BSLASHaclp] = ACTIONS(189), - [anon_sym_BSLASHAclp] = ACTIONS(189), - [anon_sym_BSLASHacf] = ACTIONS(189), - [anon_sym_BSLASHAcf] = ACTIONS(189), - [anon_sym_BSLASHacfp] = ACTIONS(189), - [anon_sym_BSLASHAcfp] = ACTIONS(189), - [anon_sym_BSLASHac] = ACTIONS(189), - [anon_sym_BSLASHAc] = ACTIONS(189), - [anon_sym_BSLASHacp] = ACTIONS(189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(189), - [anon_sym_BSLASHcolor] = ACTIONS(189), - [anon_sym_BSLASHcolorbox] = ACTIONS(189), - [anon_sym_BSLASHtextcolor] = ACTIONS(189), - [anon_sym_BSLASHpagecolor] = ACTIONS(189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(189), - [anon_sym_BSLASHtext] = ACTIONS(189), - [anon_sym_BSLASHintertext] = ACTIONS(189), - [anon_sym_shortintertext] = ACTIONS(189), - }, - [1841] = { - [sym_command_name] = ACTIONS(205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(205), - [anon_sym_LPAREN] = ACTIONS(207), - [anon_sym_RPAREN] = ACTIONS(207), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(207), - [anon_sym_BSLASHand] = ACTIONS(205), - [sym_word] = ACTIONS(205), - [sym_placeholder] = ACTIONS(207), - [anon_sym_PLUS] = ACTIONS(207), - [anon_sym_DASH] = ACTIONS(207), - [anon_sym_STAR] = ACTIONS(207), - [anon_sym_SLASH] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(205), - [anon_sym_PIPE] = ACTIONS(205), - [anon_sym_COLON] = ACTIONS(205), - [anon_sym_SQUOTE] = ACTIONS(205), - [anon_sym__] = ACTIONS(207), - [anon_sym_CARET] = ACTIONS(207), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(207), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(207), - [anon_sym_BSLASHtitle] = ACTIONS(205), - [anon_sym_BSLASHauthor] = ACTIONS(205), - [anon_sym_BSLASHusepackage] = ACTIONS(205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(205), - [anon_sym_BSLASHinclude] = ACTIONS(205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(205), - [anon_sym_BSLASHinput] = ACTIONS(205), - [anon_sym_BSLASHsubfile] = ACTIONS(205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(205), - [anon_sym_BSLASHbibliography] = ACTIONS(205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(205), - [anon_sym_BSLASHincludesvg] = ACTIONS(205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(205), - [anon_sym_BSLASHimport] = ACTIONS(205), - [anon_sym_BSLASHsubimport] = ACTIONS(205), - [anon_sym_BSLASHinputfrom] = ACTIONS(205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(205), - [anon_sym_BSLASHincludefrom] = ACTIONS(205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(205), - [anon_sym_BSLASHcaption] = ACTIONS(205), - [anon_sym_BSLASHcite] = ACTIONS(205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(207), - [anon_sym_BSLASHCite] = ACTIONS(205), - [anon_sym_BSLASHnocite] = ACTIONS(205), - [anon_sym_BSLASHcitet] = ACTIONS(205), - [anon_sym_BSLASHcitep] = ACTIONS(205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteauthor] = ACTIONS(205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitetitle] = ACTIONS(205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteyear] = ACTIONS(205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(207), - [anon_sym_BSLASHcitedate] = ACTIONS(205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(207), - [anon_sym_BSLASHciteurl] = ACTIONS(205), - [anon_sym_BSLASHfullcite] = ACTIONS(205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(205), - [anon_sym_BSLASHcitealt] = ACTIONS(205), - [anon_sym_BSLASHcitealp] = ACTIONS(205), - [anon_sym_BSLASHcitetext] = ACTIONS(205), - [anon_sym_BSLASHparencite] = ACTIONS(205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(207), - [anon_sym_BSLASHParencite] = ACTIONS(205), - [anon_sym_BSLASHfootcite] = ACTIONS(205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(205), - [anon_sym_BSLASHtextcite] = ACTIONS(205), - [anon_sym_BSLASHTextcite] = ACTIONS(205), - [anon_sym_BSLASHsmartcite] = ACTIONS(205), - [anon_sym_BSLASHSmartcite] = ACTIONS(205), - [anon_sym_BSLASHsupercite] = ACTIONS(205), - [anon_sym_BSLASHautocite] = ACTIONS(205), - [anon_sym_BSLASHAutocite] = ACTIONS(205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(207), - [anon_sym_BSLASHvolcite] = ACTIONS(205), - [anon_sym_BSLASHVolcite] = ACTIONS(205), - [anon_sym_BSLASHpvolcite] = ACTIONS(205), - [anon_sym_BSLASHPvolcite] = ACTIONS(205), - [anon_sym_BSLASHfvolcite] = ACTIONS(205), - [anon_sym_BSLASHftvolcite] = ACTIONS(205), - [anon_sym_BSLASHsvolcite] = ACTIONS(205), - [anon_sym_BSLASHSvolcite] = ACTIONS(205), - [anon_sym_BSLASHtvolcite] = ACTIONS(205), - [anon_sym_BSLASHTvolcite] = ACTIONS(205), - [anon_sym_BSLASHavolcite] = ACTIONS(205), - [anon_sym_BSLASHAvolcite] = ACTIONS(205), - [anon_sym_BSLASHnotecite] = ACTIONS(205), - [anon_sym_BSLASHNotecite] = ACTIONS(205), - [anon_sym_BSLASHpnotecite] = ACTIONS(205), - [anon_sym_BSLASHPnotecite] = ACTIONS(205), - [anon_sym_BSLASHfnotecite] = ACTIONS(205), - [anon_sym_BSLASHlabel] = ACTIONS(205), - [anon_sym_BSLASHref] = ACTIONS(205), - [anon_sym_BSLASHeqref] = ACTIONS(205), - [anon_sym_BSLASHvref] = ACTIONS(205), - [anon_sym_BSLASHVref] = ACTIONS(205), - [anon_sym_BSLASHautoref] = ACTIONS(205), - [anon_sym_BSLASHpageref] = ACTIONS(205), - [anon_sym_BSLASHcref] = ACTIONS(205), - [anon_sym_BSLASHCref] = ACTIONS(205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(207), - [anon_sym_BSLASHnamecref] = ACTIONS(205), - [anon_sym_BSLASHnameCref] = ACTIONS(205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(205), - [anon_sym_BSLASHlabelcref] = ACTIONS(205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(205), - [anon_sym_BSLASHcrefrange] = ACTIONS(205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHCrefrange] = ACTIONS(205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(207), - [anon_sym_BSLASHnewlabel] = ACTIONS(205), - [anon_sym_BSLASHnewcommand] = ACTIONS(205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(207), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(205), - [anon_sym_BSLASHdef] = ACTIONS(205), - [anon_sym_BSLASHlet] = ACTIONS(205), - [anon_sym_BSLASHleft] = ACTIONS(205), - [anon_sym_BSLASHbig] = ACTIONS(205), - [anon_sym_BSLASHBig] = ACTIONS(205), - [anon_sym_BSLASHbigg] = ACTIONS(205), - [anon_sym_BSLASHBigg] = ACTIONS(205), - [anon_sym_BSLASHbigl] = ACTIONS(205), - [anon_sym_BSLASHBigl] = ACTIONS(205), - [anon_sym_BSLASHbiggl] = ACTIONS(205), - [anon_sym_BSLASHBiggl] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(205), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(205), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(205), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(205), - [anon_sym_BSLASHgls] = ACTIONS(205), - [anon_sym_BSLASHGls] = ACTIONS(205), - [anon_sym_BSLASHGLS] = ACTIONS(205), - [anon_sym_BSLASHglspl] = ACTIONS(205), - [anon_sym_BSLASHGlspl] = ACTIONS(205), - [anon_sym_BSLASHGLSpl] = ACTIONS(205), - [anon_sym_BSLASHglsdisp] = ACTIONS(205), - [anon_sym_BSLASHglslink] = ACTIONS(205), - [anon_sym_BSLASHglstext] = ACTIONS(205), - [anon_sym_BSLASHGlstext] = ACTIONS(205), - [anon_sym_BSLASHGLStext] = ACTIONS(205), - [anon_sym_BSLASHglsfirst] = ACTIONS(205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(205), - [anon_sym_BSLASHglsplural] = ACTIONS(205), - [anon_sym_BSLASHGlsplural] = ACTIONS(205), - [anon_sym_BSLASHGLSplural] = ACTIONS(205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(205), - [anon_sym_BSLASHglsname] = ACTIONS(205), - [anon_sym_BSLASHGlsname] = ACTIONS(205), - [anon_sym_BSLASHGLSname] = ACTIONS(205), - [anon_sym_BSLASHglssymbol] = ACTIONS(205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(205), - [anon_sym_BSLASHglsdesc] = ACTIONS(205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(205), - [anon_sym_BSLASHglsuseri] = ACTIONS(205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(205), - [anon_sym_BSLASHglsuserii] = ACTIONS(205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(205), - [anon_sym_BSLASHglsuserv] = ACTIONS(205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(205), - [anon_sym_BSLASHglsuservi] = ACTIONS(205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(205), - [anon_sym_BSLASHnewacronym] = ACTIONS(205), - [anon_sym_BSLASHacrshort] = ACTIONS(205), - [anon_sym_BSLASHAcrshort] = ACTIONS(205), - [anon_sym_BSLASHACRshort] = ACTIONS(205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(205), - [anon_sym_BSLASHacrlong] = ACTIONS(205), - [anon_sym_BSLASHAcrlong] = ACTIONS(205), - [anon_sym_BSLASHACRlong] = ACTIONS(205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(205), - [anon_sym_BSLASHacrfull] = ACTIONS(205), - [anon_sym_BSLASHAcrfull] = ACTIONS(205), - [anon_sym_BSLASHACRfull] = ACTIONS(205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(205), - [anon_sym_BSLASHacs] = ACTIONS(205), - [anon_sym_BSLASHAcs] = ACTIONS(205), - [anon_sym_BSLASHacsp] = ACTIONS(205), - [anon_sym_BSLASHAcsp] = ACTIONS(205), - [anon_sym_BSLASHacl] = ACTIONS(205), - [anon_sym_BSLASHAcl] = ACTIONS(205), - [anon_sym_BSLASHaclp] = ACTIONS(205), - [anon_sym_BSLASHAclp] = ACTIONS(205), - [anon_sym_BSLASHacf] = ACTIONS(205), - [anon_sym_BSLASHAcf] = ACTIONS(205), - [anon_sym_BSLASHacfp] = ACTIONS(205), - [anon_sym_BSLASHAcfp] = ACTIONS(205), - [anon_sym_BSLASHac] = ACTIONS(205), - [anon_sym_BSLASHAc] = ACTIONS(205), - [anon_sym_BSLASHacp] = ACTIONS(205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(205), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(205), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(207), - [anon_sym_BSLASHdefinecolor] = ACTIONS(205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(205), - [anon_sym_BSLASHcolor] = ACTIONS(205), - [anon_sym_BSLASHcolorbox] = ACTIONS(205), - [anon_sym_BSLASHtextcolor] = ACTIONS(205), - [anon_sym_BSLASHpagecolor] = ACTIONS(205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(205), - [anon_sym_BSLASHtext] = ACTIONS(205), - [anon_sym_BSLASHintertext] = ACTIONS(205), - [anon_sym_shortintertext] = ACTIONS(205), - }, - [1842] = { - [sym_command_name] = ACTIONS(6133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6133), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_LBRACE] = ACTIONS(6135), - [anon_sym_RBRACE] = ACTIONS(6135), - [anon_sym_BSLASHand] = ACTIONS(6133), - [sym_word] = ACTIONS(6133), - [sym_placeholder] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6135), - [anon_sym_DASH] = ACTIONS(6135), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6133), - [anon_sym_GT] = ACTIONS(6133), - [anon_sym_BANG] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6133), - [anon_sym_COLON] = ACTIONS(6133), - [anon_sym_SQUOTE] = ACTIONS(6133), - [anon_sym__] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6135), - [anon_sym_DOLLAR] = ACTIONS(6133), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6135), - [anon_sym_BSLASHtitle] = ACTIONS(6133), - [anon_sym_BSLASHauthor] = ACTIONS(6133), - [anon_sym_BSLASHusepackage] = ACTIONS(6133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6133), - [anon_sym_BSLASHinclude] = ACTIONS(6133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6133), - [anon_sym_BSLASHinput] = ACTIONS(6133), - [anon_sym_BSLASHsubfile] = ACTIONS(6133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6133), - [anon_sym_BSLASHbibliography] = ACTIONS(6133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6133), - [anon_sym_BSLASHincludesvg] = ACTIONS(6133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6133), - [anon_sym_BSLASHimport] = ACTIONS(6133), - [anon_sym_BSLASHsubimport] = ACTIONS(6133), - [anon_sym_BSLASHinputfrom] = ACTIONS(6133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6133), - [anon_sym_BSLASHincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHcaption] = ACTIONS(6133), - [anon_sym_BSLASHcite] = ACTIONS(6133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCite] = ACTIONS(6133), - [anon_sym_BSLASHnocite] = ACTIONS(6133), - [anon_sym_BSLASHcitet] = ACTIONS(6133), - [anon_sym_BSLASHcitep] = ACTIONS(6133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteauthor] = ACTIONS(6133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitetitle] = ACTIONS(6133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteyear] = ACTIONS(6133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitedate] = ACTIONS(6133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteurl] = ACTIONS(6133), - [anon_sym_BSLASHfullcite] = ACTIONS(6133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6133), - [anon_sym_BSLASHcitealt] = ACTIONS(6133), - [anon_sym_BSLASHcitealp] = ACTIONS(6133), - [anon_sym_BSLASHcitetext] = ACTIONS(6133), - [anon_sym_BSLASHparencite] = ACTIONS(6133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHParencite] = ACTIONS(6133), - [anon_sym_BSLASHfootcite] = ACTIONS(6133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6133), - [anon_sym_BSLASHtextcite] = ACTIONS(6133), - [anon_sym_BSLASHTextcite] = ACTIONS(6133), - [anon_sym_BSLASHsmartcite] = ACTIONS(6133), - [anon_sym_BSLASHSmartcite] = ACTIONS(6133), - [anon_sym_BSLASHsupercite] = ACTIONS(6133), - [anon_sym_BSLASHautocite] = ACTIONS(6133), - [anon_sym_BSLASHAutocite] = ACTIONS(6133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHvolcite] = ACTIONS(6133), - [anon_sym_BSLASHVolcite] = ACTIONS(6133), - [anon_sym_BSLASHpvolcite] = ACTIONS(6133), - [anon_sym_BSLASHPvolcite] = ACTIONS(6133), - [anon_sym_BSLASHfvolcite] = ACTIONS(6133), - [anon_sym_BSLASHftvolcite] = ACTIONS(6133), - [anon_sym_BSLASHsvolcite] = ACTIONS(6133), - [anon_sym_BSLASHSvolcite] = ACTIONS(6133), - [anon_sym_BSLASHtvolcite] = ACTIONS(6133), - [anon_sym_BSLASHTvolcite] = ACTIONS(6133), - [anon_sym_BSLASHavolcite] = ACTIONS(6133), - [anon_sym_BSLASHAvolcite] = ACTIONS(6133), - [anon_sym_BSLASHnotecite] = ACTIONS(6133), - [anon_sym_BSLASHNotecite] = ACTIONS(6133), - [anon_sym_BSLASHpnotecite] = ACTIONS(6133), - [anon_sym_BSLASHPnotecite] = ACTIONS(6133), - [anon_sym_BSLASHfnotecite] = ACTIONS(6133), - [anon_sym_BSLASHlabel] = ACTIONS(6133), - [anon_sym_BSLASHref] = ACTIONS(6133), - [anon_sym_BSLASHeqref] = ACTIONS(6133), - [anon_sym_BSLASHvref] = ACTIONS(6133), - [anon_sym_BSLASHVref] = ACTIONS(6133), - [anon_sym_BSLASHautoref] = ACTIONS(6133), - [anon_sym_BSLASHpageref] = ACTIONS(6133), - [anon_sym_BSLASHcref] = ACTIONS(6133), - [anon_sym_BSLASHCref] = ACTIONS(6133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnameCref] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHlabelcref] = ACTIONS(6133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCrefrange] = ACTIONS(6133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnewlabel] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6135), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHdef] = ACTIONS(6133), - [anon_sym_BSLASHlet] = ACTIONS(6133), - [anon_sym_BSLASHleft] = ACTIONS(6133), - [anon_sym_BSLASHbig] = ACTIONS(6133), - [anon_sym_BSLASHBig] = ACTIONS(6133), - [anon_sym_BSLASHbigg] = ACTIONS(6133), - [anon_sym_BSLASHBigg] = ACTIONS(6133), - [anon_sym_BSLASHbigl] = ACTIONS(6133), - [anon_sym_BSLASHBigl] = ACTIONS(6133), - [anon_sym_BSLASHbiggl] = ACTIONS(6133), - [anon_sym_BSLASHBiggl] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6133), - [anon_sym_BSLASHgls] = ACTIONS(6133), - [anon_sym_BSLASHGls] = ACTIONS(6133), - [anon_sym_BSLASHGLS] = ACTIONS(6133), - [anon_sym_BSLASHglspl] = ACTIONS(6133), - [anon_sym_BSLASHGlspl] = ACTIONS(6133), - [anon_sym_BSLASHGLSpl] = ACTIONS(6133), - [anon_sym_BSLASHglsdisp] = ACTIONS(6133), - [anon_sym_BSLASHglslink] = ACTIONS(6133), - [anon_sym_BSLASHglstext] = ACTIONS(6133), - [anon_sym_BSLASHGlstext] = ACTIONS(6133), - [anon_sym_BSLASHGLStext] = ACTIONS(6133), - [anon_sym_BSLASHglsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6133), - [anon_sym_BSLASHglsplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSplural] = ACTIONS(6133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHglsname] = ACTIONS(6133), - [anon_sym_BSLASHGlsname] = ACTIONS(6133), - [anon_sym_BSLASHGLSname] = ACTIONS(6133), - [anon_sym_BSLASHglssymbol] = ACTIONS(6133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6133), - [anon_sym_BSLASHglsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6133), - [anon_sym_BSLASHglsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6133), - [anon_sym_BSLASHglsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6133), - [anon_sym_BSLASHglsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6133), - [anon_sym_BSLASHglsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6133), - [anon_sym_BSLASHnewacronym] = ACTIONS(6133), - [anon_sym_BSLASHacrshort] = ACTIONS(6133), - [anon_sym_BSLASHAcrshort] = ACTIONS(6133), - [anon_sym_BSLASHACRshort] = ACTIONS(6133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6133), - [anon_sym_BSLASHacrlong] = ACTIONS(6133), - [anon_sym_BSLASHAcrlong] = ACTIONS(6133), - [anon_sym_BSLASHACRlong] = ACTIONS(6133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6133), - [anon_sym_BSLASHacrfull] = ACTIONS(6133), - [anon_sym_BSLASHAcrfull] = ACTIONS(6133), - [anon_sym_BSLASHACRfull] = ACTIONS(6133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6133), - [anon_sym_BSLASHacs] = ACTIONS(6133), - [anon_sym_BSLASHAcs] = ACTIONS(6133), - [anon_sym_BSLASHacsp] = ACTIONS(6133), - [anon_sym_BSLASHAcsp] = ACTIONS(6133), - [anon_sym_BSLASHacl] = ACTIONS(6133), - [anon_sym_BSLASHAcl] = ACTIONS(6133), - [anon_sym_BSLASHaclp] = ACTIONS(6133), - [anon_sym_BSLASHAclp] = ACTIONS(6133), - [anon_sym_BSLASHacf] = ACTIONS(6133), - [anon_sym_BSLASHAcf] = ACTIONS(6133), - [anon_sym_BSLASHacfp] = ACTIONS(6133), - [anon_sym_BSLASHAcfp] = ACTIONS(6133), - [anon_sym_BSLASHac] = ACTIONS(6133), - [anon_sym_BSLASHAc] = ACTIONS(6133), - [anon_sym_BSLASHacp] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6133), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6133), - [anon_sym_BSLASHcolor] = ACTIONS(6133), - [anon_sym_BSLASHcolorbox] = ACTIONS(6133), - [anon_sym_BSLASHtextcolor] = ACTIONS(6133), - [anon_sym_BSLASHpagecolor] = ACTIONS(6133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6133), - [anon_sym_BSLASHtext] = ACTIONS(6133), - [anon_sym_BSLASHintertext] = ACTIONS(6133), - [anon_sym_shortintertext] = ACTIONS(6133), - }, - [1843] = { - [sym_command_name] = ACTIONS(6129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6129), - [anon_sym_LPAREN] = ACTIONS(6131), - [anon_sym_RPAREN] = ACTIONS(6131), - [anon_sym_LBRACE] = ACTIONS(6131), - [anon_sym_RBRACE] = ACTIONS(6131), - [anon_sym_BSLASHand] = ACTIONS(6129), - [sym_word] = ACTIONS(6129), - [sym_placeholder] = ACTIONS(6131), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_BANG] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_SQUOTE] = ACTIONS(6129), - [anon_sym__] = ACTIONS(6131), - [anon_sym_CARET] = ACTIONS(6131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6131), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6131), - [anon_sym_DOLLAR] = ACTIONS(6129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6131), - [anon_sym_BSLASHtitle] = ACTIONS(6129), - [anon_sym_BSLASHauthor] = ACTIONS(6129), - [anon_sym_BSLASHusepackage] = ACTIONS(6129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6129), - [anon_sym_BSLASHinclude] = ACTIONS(6129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6129), - [anon_sym_BSLASHinput] = ACTIONS(6129), - [anon_sym_BSLASHsubfile] = ACTIONS(6129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6129), - [anon_sym_BSLASHbibliography] = ACTIONS(6129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6129), - [anon_sym_BSLASHincludesvg] = ACTIONS(6129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6129), - [anon_sym_BSLASHimport] = ACTIONS(6129), - [anon_sym_BSLASHsubimport] = ACTIONS(6129), - [anon_sym_BSLASHinputfrom] = ACTIONS(6129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6129), - [anon_sym_BSLASHincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHcaption] = ACTIONS(6129), - [anon_sym_BSLASHcite] = ACTIONS(6129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCite] = ACTIONS(6129), - [anon_sym_BSLASHnocite] = ACTIONS(6129), - [anon_sym_BSLASHcitet] = ACTIONS(6129), - [anon_sym_BSLASHcitep] = ACTIONS(6129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteauthor] = ACTIONS(6129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitetitle] = ACTIONS(6129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteyear] = ACTIONS(6129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitedate] = ACTIONS(6129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteurl] = ACTIONS(6129), - [anon_sym_BSLASHfullcite] = ACTIONS(6129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6129), - [anon_sym_BSLASHcitealt] = ACTIONS(6129), - [anon_sym_BSLASHcitealp] = ACTIONS(6129), - [anon_sym_BSLASHcitetext] = ACTIONS(6129), - [anon_sym_BSLASHparencite] = ACTIONS(6129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHParencite] = ACTIONS(6129), - [anon_sym_BSLASHfootcite] = ACTIONS(6129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6129), - [anon_sym_BSLASHtextcite] = ACTIONS(6129), - [anon_sym_BSLASHTextcite] = ACTIONS(6129), - [anon_sym_BSLASHsmartcite] = ACTIONS(6129), - [anon_sym_BSLASHSmartcite] = ACTIONS(6129), - [anon_sym_BSLASHsupercite] = ACTIONS(6129), - [anon_sym_BSLASHautocite] = ACTIONS(6129), - [anon_sym_BSLASHAutocite] = ACTIONS(6129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHvolcite] = ACTIONS(6129), - [anon_sym_BSLASHVolcite] = ACTIONS(6129), - [anon_sym_BSLASHpvolcite] = ACTIONS(6129), - [anon_sym_BSLASHPvolcite] = ACTIONS(6129), - [anon_sym_BSLASHfvolcite] = ACTIONS(6129), - [anon_sym_BSLASHftvolcite] = ACTIONS(6129), - [anon_sym_BSLASHsvolcite] = ACTIONS(6129), - [anon_sym_BSLASHSvolcite] = ACTIONS(6129), - [anon_sym_BSLASHtvolcite] = ACTIONS(6129), - [anon_sym_BSLASHTvolcite] = ACTIONS(6129), - [anon_sym_BSLASHavolcite] = ACTIONS(6129), - [anon_sym_BSLASHAvolcite] = ACTIONS(6129), - [anon_sym_BSLASHnotecite] = ACTIONS(6129), - [anon_sym_BSLASHNotecite] = ACTIONS(6129), - [anon_sym_BSLASHpnotecite] = ACTIONS(6129), - [anon_sym_BSLASHPnotecite] = ACTIONS(6129), - [anon_sym_BSLASHfnotecite] = ACTIONS(6129), - [anon_sym_BSLASHlabel] = ACTIONS(6129), - [anon_sym_BSLASHref] = ACTIONS(6129), - [anon_sym_BSLASHeqref] = ACTIONS(6129), - [anon_sym_BSLASHvref] = ACTIONS(6129), - [anon_sym_BSLASHVref] = ACTIONS(6129), - [anon_sym_BSLASHautoref] = ACTIONS(6129), - [anon_sym_BSLASHpageref] = ACTIONS(6129), - [anon_sym_BSLASHcref] = ACTIONS(6129), - [anon_sym_BSLASHCref] = ACTIONS(6129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnameCref] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHlabelcref] = ACTIONS(6129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCrefrange] = ACTIONS(6129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnewlabel] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6131), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHdef] = ACTIONS(6129), - [anon_sym_BSLASHlet] = ACTIONS(6129), - [anon_sym_BSLASHleft] = ACTIONS(6129), - [anon_sym_BSLASHbig] = ACTIONS(6129), - [anon_sym_BSLASHBig] = ACTIONS(6129), - [anon_sym_BSLASHbigg] = ACTIONS(6129), - [anon_sym_BSLASHBigg] = ACTIONS(6129), - [anon_sym_BSLASHbigl] = ACTIONS(6129), - [anon_sym_BSLASHBigl] = ACTIONS(6129), - [anon_sym_BSLASHbiggl] = ACTIONS(6129), - [anon_sym_BSLASHBiggl] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6129), - [anon_sym_BSLASHgls] = ACTIONS(6129), - [anon_sym_BSLASHGls] = ACTIONS(6129), - [anon_sym_BSLASHGLS] = ACTIONS(6129), - [anon_sym_BSLASHglspl] = ACTIONS(6129), - [anon_sym_BSLASHGlspl] = ACTIONS(6129), - [anon_sym_BSLASHGLSpl] = ACTIONS(6129), - [anon_sym_BSLASHglsdisp] = ACTIONS(6129), - [anon_sym_BSLASHglslink] = ACTIONS(6129), - [anon_sym_BSLASHglstext] = ACTIONS(6129), - [anon_sym_BSLASHGlstext] = ACTIONS(6129), - [anon_sym_BSLASHGLStext] = ACTIONS(6129), - [anon_sym_BSLASHglsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6129), - [anon_sym_BSLASHglsplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSplural] = ACTIONS(6129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHglsname] = ACTIONS(6129), - [anon_sym_BSLASHGlsname] = ACTIONS(6129), - [anon_sym_BSLASHGLSname] = ACTIONS(6129), - [anon_sym_BSLASHglssymbol] = ACTIONS(6129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6129), - [anon_sym_BSLASHglsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6129), - [anon_sym_BSLASHglsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6129), - [anon_sym_BSLASHglsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6129), - [anon_sym_BSLASHglsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6129), - [anon_sym_BSLASHglsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6129), - [anon_sym_BSLASHnewacronym] = ACTIONS(6129), - [anon_sym_BSLASHacrshort] = ACTIONS(6129), - [anon_sym_BSLASHAcrshort] = ACTIONS(6129), - [anon_sym_BSLASHACRshort] = ACTIONS(6129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6129), - [anon_sym_BSLASHacrlong] = ACTIONS(6129), - [anon_sym_BSLASHAcrlong] = ACTIONS(6129), - [anon_sym_BSLASHACRlong] = ACTIONS(6129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6129), - [anon_sym_BSLASHacrfull] = ACTIONS(6129), - [anon_sym_BSLASHAcrfull] = ACTIONS(6129), - [anon_sym_BSLASHACRfull] = ACTIONS(6129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6129), - [anon_sym_BSLASHacs] = ACTIONS(6129), - [anon_sym_BSLASHAcs] = ACTIONS(6129), - [anon_sym_BSLASHacsp] = ACTIONS(6129), - [anon_sym_BSLASHAcsp] = ACTIONS(6129), - [anon_sym_BSLASHacl] = ACTIONS(6129), - [anon_sym_BSLASHAcl] = ACTIONS(6129), - [anon_sym_BSLASHaclp] = ACTIONS(6129), - [anon_sym_BSLASHAclp] = ACTIONS(6129), - [anon_sym_BSLASHacf] = ACTIONS(6129), - [anon_sym_BSLASHAcf] = ACTIONS(6129), - [anon_sym_BSLASHacfp] = ACTIONS(6129), - [anon_sym_BSLASHAcfp] = ACTIONS(6129), - [anon_sym_BSLASHac] = ACTIONS(6129), - [anon_sym_BSLASHAc] = ACTIONS(6129), - [anon_sym_BSLASHacp] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6129), - [anon_sym_BSLASHcolor] = ACTIONS(6129), - [anon_sym_BSLASHcolorbox] = ACTIONS(6129), - [anon_sym_BSLASHtextcolor] = ACTIONS(6129), - [anon_sym_BSLASHpagecolor] = ACTIONS(6129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6129), - [anon_sym_BSLASHtext] = ACTIONS(6129), - [anon_sym_BSLASHintertext] = ACTIONS(6129), - [anon_sym_shortintertext] = ACTIONS(6129), - }, - [1844] = { - [sym_command_name] = ACTIONS(6962), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6962), - [anon_sym_LPAREN] = ACTIONS(6964), - [anon_sym_RPAREN] = ACTIONS(6964), - [anon_sym_LBRACE] = ACTIONS(6964), - [anon_sym_RBRACE] = ACTIONS(6964), - [anon_sym_BSLASHand] = ACTIONS(6962), - [sym_word] = ACTIONS(6962), - [sym_placeholder] = ACTIONS(6964), - [anon_sym_PLUS] = ACTIONS(6964), - [anon_sym_DASH] = ACTIONS(6964), - [anon_sym_STAR] = ACTIONS(6964), - [anon_sym_SLASH] = ACTIONS(6964), - [anon_sym_LT] = ACTIONS(6962), - [anon_sym_GT] = ACTIONS(6962), - [anon_sym_BANG] = ACTIONS(6962), - [anon_sym_PIPE] = ACTIONS(6962), - [anon_sym_COLON] = ACTIONS(6962), - [anon_sym_SQUOTE] = ACTIONS(6962), - [anon_sym__] = ACTIONS(6964), - [anon_sym_CARET] = ACTIONS(6964), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6964), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6964), - [anon_sym_DOLLAR] = ACTIONS(6962), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6964), - [anon_sym_BSLASHtitle] = ACTIONS(6962), - [anon_sym_BSLASHauthor] = ACTIONS(6962), - [anon_sym_BSLASHusepackage] = ACTIONS(6962), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6962), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6962), - [anon_sym_BSLASHinclude] = ACTIONS(6962), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6962), - [anon_sym_BSLASHinput] = ACTIONS(6962), - [anon_sym_BSLASHsubfile] = ACTIONS(6962), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6962), - [anon_sym_BSLASHbibliography] = ACTIONS(6962), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6962), - [anon_sym_BSLASHincludesvg] = ACTIONS(6962), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6962), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6962), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6962), - [anon_sym_BSLASHimport] = ACTIONS(6962), - [anon_sym_BSLASHsubimport] = ACTIONS(6962), - [anon_sym_BSLASHinputfrom] = ACTIONS(6962), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6962), - [anon_sym_BSLASHincludefrom] = ACTIONS(6962), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6962), - [anon_sym_BSLASHcaption] = ACTIONS(6962), - [anon_sym_BSLASHcite] = ACTIONS(6962), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6964), - [anon_sym_BSLASHCite] = ACTIONS(6962), - [anon_sym_BSLASHnocite] = ACTIONS(6962), - [anon_sym_BSLASHcitet] = ACTIONS(6962), - [anon_sym_BSLASHcitep] = ACTIONS(6962), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6964), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6964), - [anon_sym_BSLASHciteauthor] = ACTIONS(6962), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6964), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6962), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6964), - [anon_sym_BSLASHcitetitle] = ACTIONS(6962), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6964), - [anon_sym_BSLASHciteyear] = ACTIONS(6962), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6964), - [anon_sym_BSLASHcitedate] = ACTIONS(6962), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6964), - [anon_sym_BSLASHciteurl] = ACTIONS(6962), - [anon_sym_BSLASHfullcite] = ACTIONS(6962), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6962), - [anon_sym_BSLASHcitealt] = ACTIONS(6962), - [anon_sym_BSLASHcitealp] = ACTIONS(6962), - [anon_sym_BSLASHcitetext] = ACTIONS(6962), - [anon_sym_BSLASHparencite] = ACTIONS(6962), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6964), - [anon_sym_BSLASHParencite] = ACTIONS(6962), - [anon_sym_BSLASHfootcite] = ACTIONS(6962), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6962), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6962), - [anon_sym_BSLASHtextcite] = ACTIONS(6962), - [anon_sym_BSLASHTextcite] = ACTIONS(6962), - [anon_sym_BSLASHsmartcite] = ACTIONS(6962), - [anon_sym_BSLASHSmartcite] = ACTIONS(6962), - [anon_sym_BSLASHsupercite] = ACTIONS(6962), - [anon_sym_BSLASHautocite] = ACTIONS(6962), - [anon_sym_BSLASHAutocite] = ACTIONS(6962), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6964), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6964), - [anon_sym_BSLASHvolcite] = ACTIONS(6962), - [anon_sym_BSLASHVolcite] = ACTIONS(6962), - [anon_sym_BSLASHpvolcite] = ACTIONS(6962), - [anon_sym_BSLASHPvolcite] = ACTIONS(6962), - [anon_sym_BSLASHfvolcite] = ACTIONS(6962), - [anon_sym_BSLASHftvolcite] = ACTIONS(6962), - [anon_sym_BSLASHsvolcite] = ACTIONS(6962), - [anon_sym_BSLASHSvolcite] = ACTIONS(6962), - [anon_sym_BSLASHtvolcite] = ACTIONS(6962), - [anon_sym_BSLASHTvolcite] = ACTIONS(6962), - [anon_sym_BSLASHavolcite] = ACTIONS(6962), - [anon_sym_BSLASHAvolcite] = ACTIONS(6962), - [anon_sym_BSLASHnotecite] = ACTIONS(6962), - [anon_sym_BSLASHNotecite] = ACTIONS(6962), - [anon_sym_BSLASHpnotecite] = ACTIONS(6962), - [anon_sym_BSLASHPnotecite] = ACTIONS(6962), - [anon_sym_BSLASHfnotecite] = ACTIONS(6962), - [anon_sym_BSLASHlabel] = ACTIONS(6962), - [anon_sym_BSLASHref] = ACTIONS(6962), - [anon_sym_BSLASHeqref] = ACTIONS(6962), - [anon_sym_BSLASHvref] = ACTIONS(6962), - [anon_sym_BSLASHVref] = ACTIONS(6962), - [anon_sym_BSLASHautoref] = ACTIONS(6962), - [anon_sym_BSLASHpageref] = ACTIONS(6962), - [anon_sym_BSLASHcref] = ACTIONS(6962), - [anon_sym_BSLASHCref] = ACTIONS(6962), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6964), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6964), - [anon_sym_BSLASHnamecref] = ACTIONS(6962), - [anon_sym_BSLASHnameCref] = ACTIONS(6962), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6962), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6962), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6962), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6962), - [anon_sym_BSLASHlabelcref] = ACTIONS(6962), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6962), - [anon_sym_BSLASHcrefrange] = ACTIONS(6962), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6964), - [anon_sym_BSLASHCrefrange] = ACTIONS(6962), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6964), - [anon_sym_BSLASHnewlabel] = ACTIONS(6962), - [anon_sym_BSLASHnewcommand] = ACTIONS(6962), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6964), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6962), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6964), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6962), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6964), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6962), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6964), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6962), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6962), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6962), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6962), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6962), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6962), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6962), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6962), - [anon_sym_BSLASHdef] = ACTIONS(6962), - [anon_sym_BSLASHlet] = ACTIONS(6962), - [anon_sym_BSLASHleft] = ACTIONS(6962), - [anon_sym_BSLASHbig] = ACTIONS(6962), - [anon_sym_BSLASHBig] = ACTIONS(6962), - [anon_sym_BSLASHbigg] = ACTIONS(6962), - [anon_sym_BSLASHBigg] = ACTIONS(6962), - [anon_sym_BSLASHbigl] = ACTIONS(6962), - [anon_sym_BSLASHBigl] = ACTIONS(6962), - [anon_sym_BSLASHbiggl] = ACTIONS(6962), - [anon_sym_BSLASHBiggl] = ACTIONS(6962), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6962), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6962), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6962), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6962), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6962), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6962), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6962), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6962), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6962), - [anon_sym_BSLASHgls] = ACTIONS(6962), - [anon_sym_BSLASHGls] = ACTIONS(6962), - [anon_sym_BSLASHGLS] = ACTIONS(6962), - [anon_sym_BSLASHglspl] = ACTIONS(6962), - [anon_sym_BSLASHGlspl] = ACTIONS(6962), - [anon_sym_BSLASHGLSpl] = ACTIONS(6962), - [anon_sym_BSLASHglsdisp] = ACTIONS(6962), - [anon_sym_BSLASHglslink] = ACTIONS(6962), - [anon_sym_BSLASHglstext] = ACTIONS(6962), - [anon_sym_BSLASHGlstext] = ACTIONS(6962), - [anon_sym_BSLASHGLStext] = ACTIONS(6962), - [anon_sym_BSLASHglsfirst] = ACTIONS(6962), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6962), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6962), - [anon_sym_BSLASHglsplural] = ACTIONS(6962), - [anon_sym_BSLASHGlsplural] = ACTIONS(6962), - [anon_sym_BSLASHGLSplural] = ACTIONS(6962), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6962), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6962), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6962), - [anon_sym_BSLASHglsname] = ACTIONS(6962), - [anon_sym_BSLASHGlsname] = ACTIONS(6962), - [anon_sym_BSLASHGLSname] = ACTIONS(6962), - [anon_sym_BSLASHglssymbol] = ACTIONS(6962), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6962), - [anon_sym_BSLASHglsdesc] = ACTIONS(6962), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6962), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6962), - [anon_sym_BSLASHglsuseri] = ACTIONS(6962), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6962), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6962), - [anon_sym_BSLASHglsuserii] = ACTIONS(6962), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6962), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6962), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6962), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6962), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6962), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6962), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6962), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6962), - [anon_sym_BSLASHglsuserv] = ACTIONS(6962), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6962), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6962), - [anon_sym_BSLASHglsuservi] = ACTIONS(6962), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6962), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6962), - [anon_sym_BSLASHnewacronym] = ACTIONS(6962), - [anon_sym_BSLASHacrshort] = ACTIONS(6962), - [anon_sym_BSLASHAcrshort] = ACTIONS(6962), - [anon_sym_BSLASHACRshort] = ACTIONS(6962), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6962), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6962), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6962), - [anon_sym_BSLASHacrlong] = ACTIONS(6962), - [anon_sym_BSLASHAcrlong] = ACTIONS(6962), - [anon_sym_BSLASHACRlong] = ACTIONS(6962), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6962), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6962), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6962), - [anon_sym_BSLASHacrfull] = ACTIONS(6962), - [anon_sym_BSLASHAcrfull] = ACTIONS(6962), - [anon_sym_BSLASHACRfull] = ACTIONS(6962), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6962), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6962), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6962), - [anon_sym_BSLASHacs] = ACTIONS(6962), - [anon_sym_BSLASHAcs] = ACTIONS(6962), - [anon_sym_BSLASHacsp] = ACTIONS(6962), - [anon_sym_BSLASHAcsp] = ACTIONS(6962), - [anon_sym_BSLASHacl] = ACTIONS(6962), - [anon_sym_BSLASHAcl] = ACTIONS(6962), - [anon_sym_BSLASHaclp] = ACTIONS(6962), - [anon_sym_BSLASHAclp] = ACTIONS(6962), - [anon_sym_BSLASHacf] = ACTIONS(6962), - [anon_sym_BSLASHAcf] = ACTIONS(6962), - [anon_sym_BSLASHacfp] = ACTIONS(6962), - [anon_sym_BSLASHAcfp] = ACTIONS(6962), - [anon_sym_BSLASHac] = ACTIONS(6962), - [anon_sym_BSLASHAc] = ACTIONS(6962), - [anon_sym_BSLASHacp] = ACTIONS(6962), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6962), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6962), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6962), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6962), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6962), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6962), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6962), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6962), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6962), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6962), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6962), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6964), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6962), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6964), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6962), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6962), - [anon_sym_BSLASHcolor] = ACTIONS(6962), - [anon_sym_BSLASHcolorbox] = ACTIONS(6962), - [anon_sym_BSLASHtextcolor] = ACTIONS(6962), - [anon_sym_BSLASHpagecolor] = ACTIONS(6962), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6962), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6962), - [anon_sym_BSLASHtext] = ACTIONS(6962), - [anon_sym_BSLASHintertext] = ACTIONS(6962), - [anon_sym_shortintertext] = ACTIONS(6962), - }, - [1845] = { - [sym_command_name] = ACTIONS(6485), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6485), - [anon_sym_LPAREN] = ACTIONS(6487), - [anon_sym_RPAREN] = ACTIONS(6487), - [anon_sym_LBRACE] = ACTIONS(6487), - [anon_sym_RBRACE] = ACTIONS(6487), - [anon_sym_BSLASHand] = ACTIONS(6485), - [sym_word] = ACTIONS(6485), - [sym_placeholder] = ACTIONS(6487), - [anon_sym_PLUS] = ACTIONS(6487), - [anon_sym_DASH] = ACTIONS(6487), - [anon_sym_STAR] = ACTIONS(6487), - [anon_sym_SLASH] = ACTIONS(6487), - [anon_sym_LT] = ACTIONS(6485), - [anon_sym_GT] = ACTIONS(6485), - [anon_sym_BANG] = ACTIONS(6485), - [anon_sym_PIPE] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6485), - [anon_sym_SQUOTE] = ACTIONS(6485), - [anon_sym__] = ACTIONS(6487), - [anon_sym_CARET] = ACTIONS(6487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6487), - [anon_sym_DOLLAR] = ACTIONS(6485), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6487), - [anon_sym_BSLASHtitle] = ACTIONS(6485), - [anon_sym_BSLASHauthor] = ACTIONS(6485), - [anon_sym_BSLASHusepackage] = ACTIONS(6485), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6485), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6485), - [anon_sym_BSLASHinclude] = ACTIONS(6485), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6485), - [anon_sym_BSLASHinput] = ACTIONS(6485), - [anon_sym_BSLASHsubfile] = ACTIONS(6485), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6485), - [anon_sym_BSLASHbibliography] = ACTIONS(6485), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6485), - [anon_sym_BSLASHincludesvg] = ACTIONS(6485), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6485), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6485), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6485), - [anon_sym_BSLASHimport] = ACTIONS(6485), - [anon_sym_BSLASHsubimport] = ACTIONS(6485), - [anon_sym_BSLASHinputfrom] = ACTIONS(6485), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6485), - [anon_sym_BSLASHincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHcaption] = ACTIONS(6485), - [anon_sym_BSLASHcite] = ACTIONS(6485), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCite] = ACTIONS(6485), - [anon_sym_BSLASHnocite] = ACTIONS(6485), - [anon_sym_BSLASHcitet] = ACTIONS(6485), - [anon_sym_BSLASHcitep] = ACTIONS(6485), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteauthor] = ACTIONS(6485), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6485), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitetitle] = ACTIONS(6485), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteyear] = ACTIONS(6485), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitedate] = ACTIONS(6485), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteurl] = ACTIONS(6485), - [anon_sym_BSLASHfullcite] = ACTIONS(6485), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6485), - [anon_sym_BSLASHcitealt] = ACTIONS(6485), - [anon_sym_BSLASHcitealp] = ACTIONS(6485), - [anon_sym_BSLASHcitetext] = ACTIONS(6485), - [anon_sym_BSLASHparencite] = ACTIONS(6485), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHParencite] = ACTIONS(6485), - [anon_sym_BSLASHfootcite] = ACTIONS(6485), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6485), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6485), - [anon_sym_BSLASHtextcite] = ACTIONS(6485), - [anon_sym_BSLASHTextcite] = ACTIONS(6485), - [anon_sym_BSLASHsmartcite] = ACTIONS(6485), - [anon_sym_BSLASHSmartcite] = ACTIONS(6485), - [anon_sym_BSLASHsupercite] = ACTIONS(6485), - [anon_sym_BSLASHautocite] = ACTIONS(6485), - [anon_sym_BSLASHAutocite] = ACTIONS(6485), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHvolcite] = ACTIONS(6485), - [anon_sym_BSLASHVolcite] = ACTIONS(6485), - [anon_sym_BSLASHpvolcite] = ACTIONS(6485), - [anon_sym_BSLASHPvolcite] = ACTIONS(6485), - [anon_sym_BSLASHfvolcite] = ACTIONS(6485), - [anon_sym_BSLASHftvolcite] = ACTIONS(6485), - [anon_sym_BSLASHsvolcite] = ACTIONS(6485), - [anon_sym_BSLASHSvolcite] = ACTIONS(6485), - [anon_sym_BSLASHtvolcite] = ACTIONS(6485), - [anon_sym_BSLASHTvolcite] = ACTIONS(6485), - [anon_sym_BSLASHavolcite] = ACTIONS(6485), - [anon_sym_BSLASHAvolcite] = ACTIONS(6485), - [anon_sym_BSLASHnotecite] = ACTIONS(6485), - [anon_sym_BSLASHNotecite] = ACTIONS(6485), - [anon_sym_BSLASHpnotecite] = ACTIONS(6485), - [anon_sym_BSLASHPnotecite] = ACTIONS(6485), - [anon_sym_BSLASHfnotecite] = ACTIONS(6485), - [anon_sym_BSLASHlabel] = ACTIONS(6485), - [anon_sym_BSLASHref] = ACTIONS(6485), - [anon_sym_BSLASHeqref] = ACTIONS(6485), - [anon_sym_BSLASHvref] = ACTIONS(6485), - [anon_sym_BSLASHVref] = ACTIONS(6485), - [anon_sym_BSLASHautoref] = ACTIONS(6485), - [anon_sym_BSLASHpageref] = ACTIONS(6485), - [anon_sym_BSLASHcref] = ACTIONS(6485), - [anon_sym_BSLASHCref] = ACTIONS(6485), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnameCref] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHlabelcref] = ACTIONS(6485), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCrefrange] = ACTIONS(6485), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnewlabel] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6485), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6485), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6487), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHdef] = ACTIONS(6485), - [anon_sym_BSLASHlet] = ACTIONS(6485), - [anon_sym_BSLASHleft] = ACTIONS(6485), - [anon_sym_BSLASHbig] = ACTIONS(6485), - [anon_sym_BSLASHBig] = ACTIONS(6485), - [anon_sym_BSLASHbigg] = ACTIONS(6485), - [anon_sym_BSLASHBigg] = ACTIONS(6485), - [anon_sym_BSLASHbigl] = ACTIONS(6485), - [anon_sym_BSLASHBigl] = ACTIONS(6485), - [anon_sym_BSLASHbiggl] = ACTIONS(6485), - [anon_sym_BSLASHBiggl] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6485), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6485), - [anon_sym_BSLASHgls] = ACTIONS(6485), - [anon_sym_BSLASHGls] = ACTIONS(6485), - [anon_sym_BSLASHGLS] = ACTIONS(6485), - [anon_sym_BSLASHglspl] = ACTIONS(6485), - [anon_sym_BSLASHGlspl] = ACTIONS(6485), - [anon_sym_BSLASHGLSpl] = ACTIONS(6485), - [anon_sym_BSLASHglsdisp] = ACTIONS(6485), - [anon_sym_BSLASHglslink] = ACTIONS(6485), - [anon_sym_BSLASHglstext] = ACTIONS(6485), - [anon_sym_BSLASHGlstext] = ACTIONS(6485), - [anon_sym_BSLASHGLStext] = ACTIONS(6485), - [anon_sym_BSLASHglsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6485), - [anon_sym_BSLASHglsplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSplural] = ACTIONS(6485), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHglsname] = ACTIONS(6485), - [anon_sym_BSLASHGlsname] = ACTIONS(6485), - [anon_sym_BSLASHGLSname] = ACTIONS(6485), - [anon_sym_BSLASHglssymbol] = ACTIONS(6485), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6485), - [anon_sym_BSLASHglsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6485), - [anon_sym_BSLASHglsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6485), - [anon_sym_BSLASHglsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6485), - [anon_sym_BSLASHglsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6485), - [anon_sym_BSLASHglsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6485), - [anon_sym_BSLASHnewacronym] = ACTIONS(6485), - [anon_sym_BSLASHacrshort] = ACTIONS(6485), - [anon_sym_BSLASHAcrshort] = ACTIONS(6485), - [anon_sym_BSLASHACRshort] = ACTIONS(6485), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6485), - [anon_sym_BSLASHacrlong] = ACTIONS(6485), - [anon_sym_BSLASHAcrlong] = ACTIONS(6485), - [anon_sym_BSLASHACRlong] = ACTIONS(6485), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6485), - [anon_sym_BSLASHacrfull] = ACTIONS(6485), - [anon_sym_BSLASHAcrfull] = ACTIONS(6485), - [anon_sym_BSLASHACRfull] = ACTIONS(6485), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6485), - [anon_sym_BSLASHacs] = ACTIONS(6485), - [anon_sym_BSLASHAcs] = ACTIONS(6485), - [anon_sym_BSLASHacsp] = ACTIONS(6485), - [anon_sym_BSLASHAcsp] = ACTIONS(6485), - [anon_sym_BSLASHacl] = ACTIONS(6485), - [anon_sym_BSLASHAcl] = ACTIONS(6485), - [anon_sym_BSLASHaclp] = ACTIONS(6485), - [anon_sym_BSLASHAclp] = ACTIONS(6485), - [anon_sym_BSLASHacf] = ACTIONS(6485), - [anon_sym_BSLASHAcf] = ACTIONS(6485), - [anon_sym_BSLASHacfp] = ACTIONS(6485), - [anon_sym_BSLASHAcfp] = ACTIONS(6485), - [anon_sym_BSLASHac] = ACTIONS(6485), - [anon_sym_BSLASHAc] = ACTIONS(6485), - [anon_sym_BSLASHacp] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6485), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6485), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6485), - [anon_sym_BSLASHcolor] = ACTIONS(6485), - [anon_sym_BSLASHcolorbox] = ACTIONS(6485), - [anon_sym_BSLASHtextcolor] = ACTIONS(6485), - [anon_sym_BSLASHpagecolor] = ACTIONS(6485), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6485), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6485), - [anon_sym_BSLASHtext] = ACTIONS(6485), - [anon_sym_BSLASHintertext] = ACTIONS(6485), - [anon_sym_shortintertext] = ACTIONS(6485), - }, - [1846] = { - [sym_command_name] = ACTIONS(6033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6033), - [anon_sym_LPAREN] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_LBRACE] = ACTIONS(6035), - [anon_sym_RBRACE] = ACTIONS(6035), - [anon_sym_BSLASHand] = ACTIONS(6033), - [sym_word] = ACTIONS(6033), - [sym_placeholder] = ACTIONS(6035), - [anon_sym_PLUS] = ACTIONS(6035), - [anon_sym_DASH] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6035), - [anon_sym_SLASH] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_COLON] = ACTIONS(6033), - [anon_sym_SQUOTE] = ACTIONS(6033), - [anon_sym__] = ACTIONS(6035), - [anon_sym_CARET] = ACTIONS(6035), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6035), - [anon_sym_BSLASHtitle] = ACTIONS(6033), - [anon_sym_BSLASHauthor] = ACTIONS(6033), - [anon_sym_BSLASHusepackage] = ACTIONS(6033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), - [anon_sym_BSLASHinclude] = ACTIONS(6033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), - [anon_sym_BSLASHinput] = ACTIONS(6033), - [anon_sym_BSLASHsubfile] = ACTIONS(6033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), - [anon_sym_BSLASHbibliography] = ACTIONS(6033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), - [anon_sym_BSLASHincludesvg] = ACTIONS(6033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), - [anon_sym_BSLASHimport] = ACTIONS(6033), - [anon_sym_BSLASHsubimport] = ACTIONS(6033), - [anon_sym_BSLASHinputfrom] = ACTIONS(6033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), - [anon_sym_BSLASHincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHcaption] = ACTIONS(6033), - [anon_sym_BSLASHcite] = ACTIONS(6033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCite] = ACTIONS(6033), - [anon_sym_BSLASHnocite] = ACTIONS(6033), - [anon_sym_BSLASHcitet] = ACTIONS(6033), - [anon_sym_BSLASHcitep] = ACTIONS(6033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteauthor] = ACTIONS(6033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitetitle] = ACTIONS(6033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteyear] = ACTIONS(6033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitedate] = ACTIONS(6033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteurl] = ACTIONS(6033), - [anon_sym_BSLASHfullcite] = ACTIONS(6033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), - [anon_sym_BSLASHcitealt] = ACTIONS(6033), - [anon_sym_BSLASHcitealp] = ACTIONS(6033), - [anon_sym_BSLASHcitetext] = ACTIONS(6033), - [anon_sym_BSLASHparencite] = ACTIONS(6033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHParencite] = ACTIONS(6033), - [anon_sym_BSLASHfootcite] = ACTIONS(6033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), - [anon_sym_BSLASHtextcite] = ACTIONS(6033), - [anon_sym_BSLASHTextcite] = ACTIONS(6033), - [anon_sym_BSLASHsmartcite] = ACTIONS(6033), - [anon_sym_BSLASHSmartcite] = ACTIONS(6033), - [anon_sym_BSLASHsupercite] = ACTIONS(6033), - [anon_sym_BSLASHautocite] = ACTIONS(6033), - [anon_sym_BSLASHAutocite] = ACTIONS(6033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHvolcite] = ACTIONS(6033), - [anon_sym_BSLASHVolcite] = ACTIONS(6033), - [anon_sym_BSLASHpvolcite] = ACTIONS(6033), - [anon_sym_BSLASHPvolcite] = ACTIONS(6033), - [anon_sym_BSLASHfvolcite] = ACTIONS(6033), - [anon_sym_BSLASHftvolcite] = ACTIONS(6033), - [anon_sym_BSLASHsvolcite] = ACTIONS(6033), - [anon_sym_BSLASHSvolcite] = ACTIONS(6033), - [anon_sym_BSLASHtvolcite] = ACTIONS(6033), - [anon_sym_BSLASHTvolcite] = ACTIONS(6033), - [anon_sym_BSLASHavolcite] = ACTIONS(6033), - [anon_sym_BSLASHAvolcite] = ACTIONS(6033), - [anon_sym_BSLASHnotecite] = ACTIONS(6033), - [anon_sym_BSLASHNotecite] = ACTIONS(6033), - [anon_sym_BSLASHpnotecite] = ACTIONS(6033), - [anon_sym_BSLASHPnotecite] = ACTIONS(6033), - [anon_sym_BSLASHfnotecite] = ACTIONS(6033), - [anon_sym_BSLASHlabel] = ACTIONS(6033), - [anon_sym_BSLASHref] = ACTIONS(6033), - [anon_sym_BSLASHeqref] = ACTIONS(6033), - [anon_sym_BSLASHvref] = ACTIONS(6033), - [anon_sym_BSLASHVref] = ACTIONS(6033), - [anon_sym_BSLASHautoref] = ACTIONS(6033), - [anon_sym_BSLASHpageref] = ACTIONS(6033), - [anon_sym_BSLASHcref] = ACTIONS(6033), - [anon_sym_BSLASHCref] = ACTIONS(6033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnameCref] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHlabelcref] = ACTIONS(6033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCrefrange] = ACTIONS(6033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnewlabel] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6035), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHdef] = ACTIONS(6033), - [anon_sym_BSLASHlet] = ACTIONS(6033), - [anon_sym_BSLASHleft] = ACTIONS(6033), - [anon_sym_BSLASHbig] = ACTIONS(6033), - [anon_sym_BSLASHBig] = ACTIONS(6033), - [anon_sym_BSLASHbigg] = ACTIONS(6033), - [anon_sym_BSLASHBigg] = ACTIONS(6033), - [anon_sym_BSLASHbigl] = ACTIONS(6033), - [anon_sym_BSLASHBigl] = ACTIONS(6033), - [anon_sym_BSLASHbiggl] = ACTIONS(6033), - [anon_sym_BSLASHBiggl] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), - [anon_sym_BSLASHgls] = ACTIONS(6033), - [anon_sym_BSLASHGls] = ACTIONS(6033), - [anon_sym_BSLASHGLS] = ACTIONS(6033), - [anon_sym_BSLASHglspl] = ACTIONS(6033), - [anon_sym_BSLASHGlspl] = ACTIONS(6033), - [anon_sym_BSLASHGLSpl] = ACTIONS(6033), - [anon_sym_BSLASHglsdisp] = ACTIONS(6033), - [anon_sym_BSLASHglslink] = ACTIONS(6033), - [anon_sym_BSLASHglstext] = ACTIONS(6033), - [anon_sym_BSLASHGlstext] = ACTIONS(6033), - [anon_sym_BSLASHGLStext] = ACTIONS(6033), - [anon_sym_BSLASHglsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), - [anon_sym_BSLASHglsplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSplural] = ACTIONS(6033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHglsname] = ACTIONS(6033), - [anon_sym_BSLASHGlsname] = ACTIONS(6033), - [anon_sym_BSLASHGLSname] = ACTIONS(6033), - [anon_sym_BSLASHglssymbol] = ACTIONS(6033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), - [anon_sym_BSLASHglsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), - [anon_sym_BSLASHglsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), - [anon_sym_BSLASHglsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), - [anon_sym_BSLASHglsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), - [anon_sym_BSLASHglsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), - [anon_sym_BSLASHnewacronym] = ACTIONS(6033), - [anon_sym_BSLASHacrshort] = ACTIONS(6033), - [anon_sym_BSLASHAcrshort] = ACTIONS(6033), - [anon_sym_BSLASHACRshort] = ACTIONS(6033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), - [anon_sym_BSLASHacrlong] = ACTIONS(6033), - [anon_sym_BSLASHAcrlong] = ACTIONS(6033), - [anon_sym_BSLASHACRlong] = ACTIONS(6033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), - [anon_sym_BSLASHacrfull] = ACTIONS(6033), - [anon_sym_BSLASHAcrfull] = ACTIONS(6033), - [anon_sym_BSLASHACRfull] = ACTIONS(6033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), - [anon_sym_BSLASHacs] = ACTIONS(6033), - [anon_sym_BSLASHAcs] = ACTIONS(6033), - [anon_sym_BSLASHacsp] = ACTIONS(6033), - [anon_sym_BSLASHAcsp] = ACTIONS(6033), - [anon_sym_BSLASHacl] = ACTIONS(6033), - [anon_sym_BSLASHAcl] = ACTIONS(6033), - [anon_sym_BSLASHaclp] = ACTIONS(6033), - [anon_sym_BSLASHAclp] = ACTIONS(6033), - [anon_sym_BSLASHacf] = ACTIONS(6033), - [anon_sym_BSLASHAcf] = ACTIONS(6033), - [anon_sym_BSLASHacfp] = ACTIONS(6033), - [anon_sym_BSLASHAcfp] = ACTIONS(6033), - [anon_sym_BSLASHac] = ACTIONS(6033), - [anon_sym_BSLASHAc] = ACTIONS(6033), - [anon_sym_BSLASHacp] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), - [anon_sym_BSLASHcolor] = ACTIONS(6033), - [anon_sym_BSLASHcolorbox] = ACTIONS(6033), - [anon_sym_BSLASHtextcolor] = ACTIONS(6033), - [anon_sym_BSLASHpagecolor] = ACTIONS(6033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), - [anon_sym_BSLASHtext] = ACTIONS(6033), - [anon_sym_BSLASHintertext] = ACTIONS(6033), - [anon_sym_shortintertext] = ACTIONS(6033), - }, - [1847] = { - [sym_command_name] = ACTIONS(6481), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6481), - [anon_sym_LPAREN] = ACTIONS(6483), - [anon_sym_RPAREN] = ACTIONS(6483), - [anon_sym_LBRACE] = ACTIONS(6483), - [anon_sym_RBRACE] = ACTIONS(6483), - [anon_sym_BSLASHand] = ACTIONS(6481), - [sym_word] = ACTIONS(6481), - [sym_placeholder] = ACTIONS(6483), - [anon_sym_PLUS] = ACTIONS(6483), - [anon_sym_DASH] = ACTIONS(6483), - [anon_sym_STAR] = ACTIONS(6483), - [anon_sym_SLASH] = ACTIONS(6483), - [anon_sym_LT] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6481), - [anon_sym_BANG] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6481), - [anon_sym_COLON] = ACTIONS(6481), - [anon_sym_SQUOTE] = ACTIONS(6481), - [anon_sym__] = ACTIONS(6483), - [anon_sym_CARET] = ACTIONS(6483), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6483), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6483), - [anon_sym_DOLLAR] = ACTIONS(6481), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6483), - [anon_sym_BSLASHtitle] = ACTIONS(6481), - [anon_sym_BSLASHauthor] = ACTIONS(6481), - [anon_sym_BSLASHusepackage] = ACTIONS(6481), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6481), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6481), - [anon_sym_BSLASHinclude] = ACTIONS(6481), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6481), - [anon_sym_BSLASHinput] = ACTIONS(6481), - [anon_sym_BSLASHsubfile] = ACTIONS(6481), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6481), - [anon_sym_BSLASHbibliography] = ACTIONS(6481), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6481), - [anon_sym_BSLASHincludesvg] = ACTIONS(6481), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6481), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6481), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6481), - [anon_sym_BSLASHimport] = ACTIONS(6481), - [anon_sym_BSLASHsubimport] = ACTIONS(6481), - [anon_sym_BSLASHinputfrom] = ACTIONS(6481), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6481), - [anon_sym_BSLASHincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHcaption] = ACTIONS(6481), - [anon_sym_BSLASHcite] = ACTIONS(6481), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCite] = ACTIONS(6481), - [anon_sym_BSLASHnocite] = ACTIONS(6481), - [anon_sym_BSLASHcitet] = ACTIONS(6481), - [anon_sym_BSLASHcitep] = ACTIONS(6481), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteauthor] = ACTIONS(6481), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6481), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitetitle] = ACTIONS(6481), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteyear] = ACTIONS(6481), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitedate] = ACTIONS(6481), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteurl] = ACTIONS(6481), - [anon_sym_BSLASHfullcite] = ACTIONS(6481), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6481), - [anon_sym_BSLASHcitealt] = ACTIONS(6481), - [anon_sym_BSLASHcitealp] = ACTIONS(6481), - [anon_sym_BSLASHcitetext] = ACTIONS(6481), - [anon_sym_BSLASHparencite] = ACTIONS(6481), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHParencite] = ACTIONS(6481), - [anon_sym_BSLASHfootcite] = ACTIONS(6481), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6481), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6481), - [anon_sym_BSLASHtextcite] = ACTIONS(6481), - [anon_sym_BSLASHTextcite] = ACTIONS(6481), - [anon_sym_BSLASHsmartcite] = ACTIONS(6481), - [anon_sym_BSLASHSmartcite] = ACTIONS(6481), - [anon_sym_BSLASHsupercite] = ACTIONS(6481), - [anon_sym_BSLASHautocite] = ACTIONS(6481), - [anon_sym_BSLASHAutocite] = ACTIONS(6481), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHvolcite] = ACTIONS(6481), - [anon_sym_BSLASHVolcite] = ACTIONS(6481), - [anon_sym_BSLASHpvolcite] = ACTIONS(6481), - [anon_sym_BSLASHPvolcite] = ACTIONS(6481), - [anon_sym_BSLASHfvolcite] = ACTIONS(6481), - [anon_sym_BSLASHftvolcite] = ACTIONS(6481), - [anon_sym_BSLASHsvolcite] = ACTIONS(6481), - [anon_sym_BSLASHSvolcite] = ACTIONS(6481), - [anon_sym_BSLASHtvolcite] = ACTIONS(6481), - [anon_sym_BSLASHTvolcite] = ACTIONS(6481), - [anon_sym_BSLASHavolcite] = ACTIONS(6481), - [anon_sym_BSLASHAvolcite] = ACTIONS(6481), - [anon_sym_BSLASHnotecite] = ACTIONS(6481), - [anon_sym_BSLASHNotecite] = ACTIONS(6481), - [anon_sym_BSLASHpnotecite] = ACTIONS(6481), - [anon_sym_BSLASHPnotecite] = ACTIONS(6481), - [anon_sym_BSLASHfnotecite] = ACTIONS(6481), - [anon_sym_BSLASHlabel] = ACTIONS(6481), - [anon_sym_BSLASHref] = ACTIONS(6481), - [anon_sym_BSLASHeqref] = ACTIONS(6481), - [anon_sym_BSLASHvref] = ACTIONS(6481), - [anon_sym_BSLASHVref] = ACTIONS(6481), - [anon_sym_BSLASHautoref] = ACTIONS(6481), - [anon_sym_BSLASHpageref] = ACTIONS(6481), - [anon_sym_BSLASHcref] = ACTIONS(6481), - [anon_sym_BSLASHCref] = ACTIONS(6481), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnameCref] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHlabelcref] = ACTIONS(6481), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCrefrange] = ACTIONS(6481), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnewlabel] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6481), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6481), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6483), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHdef] = ACTIONS(6481), - [anon_sym_BSLASHlet] = ACTIONS(6481), - [anon_sym_BSLASHleft] = ACTIONS(6481), - [anon_sym_BSLASHbig] = ACTIONS(6481), - [anon_sym_BSLASHBig] = ACTIONS(6481), - [anon_sym_BSLASHbigg] = ACTIONS(6481), - [anon_sym_BSLASHBigg] = ACTIONS(6481), - [anon_sym_BSLASHbigl] = ACTIONS(6481), - [anon_sym_BSLASHBigl] = ACTIONS(6481), - [anon_sym_BSLASHbiggl] = ACTIONS(6481), - [anon_sym_BSLASHBiggl] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6481), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6481), - [anon_sym_BSLASHgls] = ACTIONS(6481), - [anon_sym_BSLASHGls] = ACTIONS(6481), - [anon_sym_BSLASHGLS] = ACTIONS(6481), - [anon_sym_BSLASHglspl] = ACTIONS(6481), - [anon_sym_BSLASHGlspl] = ACTIONS(6481), - [anon_sym_BSLASHGLSpl] = ACTIONS(6481), - [anon_sym_BSLASHglsdisp] = ACTIONS(6481), - [anon_sym_BSLASHglslink] = ACTIONS(6481), - [anon_sym_BSLASHglstext] = ACTIONS(6481), - [anon_sym_BSLASHGlstext] = ACTIONS(6481), - [anon_sym_BSLASHGLStext] = ACTIONS(6481), - [anon_sym_BSLASHglsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6481), - [anon_sym_BSLASHglsplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSplural] = ACTIONS(6481), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHglsname] = ACTIONS(6481), - [anon_sym_BSLASHGlsname] = ACTIONS(6481), - [anon_sym_BSLASHGLSname] = ACTIONS(6481), - [anon_sym_BSLASHglssymbol] = ACTIONS(6481), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6481), - [anon_sym_BSLASHglsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6481), - [anon_sym_BSLASHglsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6481), - [anon_sym_BSLASHglsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6481), - [anon_sym_BSLASHglsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6481), - [anon_sym_BSLASHglsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6481), - [anon_sym_BSLASHnewacronym] = ACTIONS(6481), - [anon_sym_BSLASHacrshort] = ACTIONS(6481), - [anon_sym_BSLASHAcrshort] = ACTIONS(6481), - [anon_sym_BSLASHACRshort] = ACTIONS(6481), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6481), - [anon_sym_BSLASHacrlong] = ACTIONS(6481), - [anon_sym_BSLASHAcrlong] = ACTIONS(6481), - [anon_sym_BSLASHACRlong] = ACTIONS(6481), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6481), - [anon_sym_BSLASHacrfull] = ACTIONS(6481), - [anon_sym_BSLASHAcrfull] = ACTIONS(6481), - [anon_sym_BSLASHACRfull] = ACTIONS(6481), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6481), - [anon_sym_BSLASHacs] = ACTIONS(6481), - [anon_sym_BSLASHAcs] = ACTIONS(6481), - [anon_sym_BSLASHacsp] = ACTIONS(6481), - [anon_sym_BSLASHAcsp] = ACTIONS(6481), - [anon_sym_BSLASHacl] = ACTIONS(6481), - [anon_sym_BSLASHAcl] = ACTIONS(6481), - [anon_sym_BSLASHaclp] = ACTIONS(6481), - [anon_sym_BSLASHAclp] = ACTIONS(6481), - [anon_sym_BSLASHacf] = ACTIONS(6481), - [anon_sym_BSLASHAcf] = ACTIONS(6481), - [anon_sym_BSLASHacfp] = ACTIONS(6481), - [anon_sym_BSLASHAcfp] = ACTIONS(6481), - [anon_sym_BSLASHac] = ACTIONS(6481), - [anon_sym_BSLASHAc] = ACTIONS(6481), - [anon_sym_BSLASHacp] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6481), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6481), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6481), - [anon_sym_BSLASHcolor] = ACTIONS(6481), - [anon_sym_BSLASHcolorbox] = ACTIONS(6481), - [anon_sym_BSLASHtextcolor] = ACTIONS(6481), - [anon_sym_BSLASHpagecolor] = ACTIONS(6481), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6481), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6481), - [anon_sym_BSLASHtext] = ACTIONS(6481), - [anon_sym_BSLASHintertext] = ACTIONS(6481), - [anon_sym_shortintertext] = ACTIONS(6481), - }, - [1848] = { - [sym_command_name] = ACTIONS(6477), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6477), - [anon_sym_LPAREN] = ACTIONS(6479), - [anon_sym_RPAREN] = ACTIONS(6479), - [anon_sym_LBRACE] = ACTIONS(6479), - [anon_sym_RBRACE] = ACTIONS(6479), - [anon_sym_BSLASHand] = ACTIONS(6477), - [sym_word] = ACTIONS(6477), - [sym_placeholder] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6477), - [anon_sym_GT] = ACTIONS(6477), - [anon_sym_BANG] = ACTIONS(6477), - [anon_sym_PIPE] = ACTIONS(6477), - [anon_sym_COLON] = ACTIONS(6477), - [anon_sym_SQUOTE] = ACTIONS(6477), - [anon_sym__] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6479), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6479), - [anon_sym_DOLLAR] = ACTIONS(6477), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6479), - [anon_sym_BSLASHtitle] = ACTIONS(6477), - [anon_sym_BSLASHauthor] = ACTIONS(6477), - [anon_sym_BSLASHusepackage] = ACTIONS(6477), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6477), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6477), - [anon_sym_BSLASHinclude] = ACTIONS(6477), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6477), - [anon_sym_BSLASHinput] = ACTIONS(6477), - [anon_sym_BSLASHsubfile] = ACTIONS(6477), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6477), - [anon_sym_BSLASHbibliography] = ACTIONS(6477), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6477), - [anon_sym_BSLASHincludesvg] = ACTIONS(6477), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6477), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6477), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6477), - [anon_sym_BSLASHimport] = ACTIONS(6477), - [anon_sym_BSLASHsubimport] = ACTIONS(6477), - [anon_sym_BSLASHinputfrom] = ACTIONS(6477), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6477), - [anon_sym_BSLASHincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHcaption] = ACTIONS(6477), - [anon_sym_BSLASHcite] = ACTIONS(6477), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCite] = ACTIONS(6477), - [anon_sym_BSLASHnocite] = ACTIONS(6477), - [anon_sym_BSLASHcitet] = ACTIONS(6477), - [anon_sym_BSLASHcitep] = ACTIONS(6477), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteauthor] = ACTIONS(6477), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6477), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitetitle] = ACTIONS(6477), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteyear] = ACTIONS(6477), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitedate] = ACTIONS(6477), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteurl] = ACTIONS(6477), - [anon_sym_BSLASHfullcite] = ACTIONS(6477), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6477), - [anon_sym_BSLASHcitealt] = ACTIONS(6477), - [anon_sym_BSLASHcitealp] = ACTIONS(6477), - [anon_sym_BSLASHcitetext] = ACTIONS(6477), - [anon_sym_BSLASHparencite] = ACTIONS(6477), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHParencite] = ACTIONS(6477), - [anon_sym_BSLASHfootcite] = ACTIONS(6477), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6477), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6477), - [anon_sym_BSLASHtextcite] = ACTIONS(6477), - [anon_sym_BSLASHTextcite] = ACTIONS(6477), - [anon_sym_BSLASHsmartcite] = ACTIONS(6477), - [anon_sym_BSLASHSmartcite] = ACTIONS(6477), - [anon_sym_BSLASHsupercite] = ACTIONS(6477), - [anon_sym_BSLASHautocite] = ACTIONS(6477), - [anon_sym_BSLASHAutocite] = ACTIONS(6477), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHvolcite] = ACTIONS(6477), - [anon_sym_BSLASHVolcite] = ACTIONS(6477), - [anon_sym_BSLASHpvolcite] = ACTIONS(6477), - [anon_sym_BSLASHPvolcite] = ACTIONS(6477), - [anon_sym_BSLASHfvolcite] = ACTIONS(6477), - [anon_sym_BSLASHftvolcite] = ACTIONS(6477), - [anon_sym_BSLASHsvolcite] = ACTIONS(6477), - [anon_sym_BSLASHSvolcite] = ACTIONS(6477), - [anon_sym_BSLASHtvolcite] = ACTIONS(6477), - [anon_sym_BSLASHTvolcite] = ACTIONS(6477), - [anon_sym_BSLASHavolcite] = ACTIONS(6477), - [anon_sym_BSLASHAvolcite] = ACTIONS(6477), - [anon_sym_BSLASHnotecite] = ACTIONS(6477), - [anon_sym_BSLASHNotecite] = ACTIONS(6477), - [anon_sym_BSLASHpnotecite] = ACTIONS(6477), - [anon_sym_BSLASHPnotecite] = ACTIONS(6477), - [anon_sym_BSLASHfnotecite] = ACTIONS(6477), - [anon_sym_BSLASHlabel] = ACTIONS(6477), - [anon_sym_BSLASHref] = ACTIONS(6477), - [anon_sym_BSLASHeqref] = ACTIONS(6477), - [anon_sym_BSLASHvref] = ACTIONS(6477), - [anon_sym_BSLASHVref] = ACTIONS(6477), - [anon_sym_BSLASHautoref] = ACTIONS(6477), - [anon_sym_BSLASHpageref] = ACTIONS(6477), - [anon_sym_BSLASHcref] = ACTIONS(6477), - [anon_sym_BSLASHCref] = ACTIONS(6477), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnameCref] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHlabelcref] = ACTIONS(6477), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCrefrange] = ACTIONS(6477), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnewlabel] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6477), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6477), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6479), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHdef] = ACTIONS(6477), - [anon_sym_BSLASHlet] = ACTIONS(6477), - [anon_sym_BSLASHleft] = ACTIONS(6477), - [anon_sym_BSLASHbig] = ACTIONS(6477), - [anon_sym_BSLASHBig] = ACTIONS(6477), - [anon_sym_BSLASHbigg] = ACTIONS(6477), - [anon_sym_BSLASHBigg] = ACTIONS(6477), - [anon_sym_BSLASHbigl] = ACTIONS(6477), - [anon_sym_BSLASHBigl] = ACTIONS(6477), - [anon_sym_BSLASHbiggl] = ACTIONS(6477), - [anon_sym_BSLASHBiggl] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6477), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6477), - [anon_sym_BSLASHgls] = ACTIONS(6477), - [anon_sym_BSLASHGls] = ACTIONS(6477), - [anon_sym_BSLASHGLS] = ACTIONS(6477), - [anon_sym_BSLASHglspl] = ACTIONS(6477), - [anon_sym_BSLASHGlspl] = ACTIONS(6477), - [anon_sym_BSLASHGLSpl] = ACTIONS(6477), - [anon_sym_BSLASHglsdisp] = ACTIONS(6477), - [anon_sym_BSLASHglslink] = ACTIONS(6477), - [anon_sym_BSLASHglstext] = ACTIONS(6477), - [anon_sym_BSLASHGlstext] = ACTIONS(6477), - [anon_sym_BSLASHGLStext] = ACTIONS(6477), - [anon_sym_BSLASHglsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6477), - [anon_sym_BSLASHglsplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSplural] = ACTIONS(6477), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHglsname] = ACTIONS(6477), - [anon_sym_BSLASHGlsname] = ACTIONS(6477), - [anon_sym_BSLASHGLSname] = ACTIONS(6477), - [anon_sym_BSLASHglssymbol] = ACTIONS(6477), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6477), - [anon_sym_BSLASHglsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6477), - [anon_sym_BSLASHglsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6477), - [anon_sym_BSLASHglsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6477), - [anon_sym_BSLASHglsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6477), - [anon_sym_BSLASHglsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6477), - [anon_sym_BSLASHnewacronym] = ACTIONS(6477), - [anon_sym_BSLASHacrshort] = ACTIONS(6477), - [anon_sym_BSLASHAcrshort] = ACTIONS(6477), - [anon_sym_BSLASHACRshort] = ACTIONS(6477), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6477), - [anon_sym_BSLASHacrlong] = ACTIONS(6477), - [anon_sym_BSLASHAcrlong] = ACTIONS(6477), - [anon_sym_BSLASHACRlong] = ACTIONS(6477), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6477), - [anon_sym_BSLASHacrfull] = ACTIONS(6477), - [anon_sym_BSLASHAcrfull] = ACTIONS(6477), - [anon_sym_BSLASHACRfull] = ACTIONS(6477), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6477), - [anon_sym_BSLASHacs] = ACTIONS(6477), - [anon_sym_BSLASHAcs] = ACTIONS(6477), - [anon_sym_BSLASHacsp] = ACTIONS(6477), - [anon_sym_BSLASHAcsp] = ACTIONS(6477), - [anon_sym_BSLASHacl] = ACTIONS(6477), - [anon_sym_BSLASHAcl] = ACTIONS(6477), - [anon_sym_BSLASHaclp] = ACTIONS(6477), - [anon_sym_BSLASHAclp] = ACTIONS(6477), - [anon_sym_BSLASHacf] = ACTIONS(6477), - [anon_sym_BSLASHAcf] = ACTIONS(6477), - [anon_sym_BSLASHacfp] = ACTIONS(6477), - [anon_sym_BSLASHAcfp] = ACTIONS(6477), - [anon_sym_BSLASHac] = ACTIONS(6477), - [anon_sym_BSLASHAc] = ACTIONS(6477), - [anon_sym_BSLASHacp] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6477), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6477), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6477), - [anon_sym_BSLASHcolor] = ACTIONS(6477), - [anon_sym_BSLASHcolorbox] = ACTIONS(6477), - [anon_sym_BSLASHtextcolor] = ACTIONS(6477), - [anon_sym_BSLASHpagecolor] = ACTIONS(6477), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6477), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6477), - [anon_sym_BSLASHtext] = ACTIONS(6477), - [anon_sym_BSLASHintertext] = ACTIONS(6477), - [anon_sym_shortintertext] = ACTIONS(6477), - }, - [1849] = { - [sym_command_name] = ACTIONS(6473), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6473), - [anon_sym_LPAREN] = ACTIONS(6475), - [anon_sym_RPAREN] = ACTIONS(6475), - [anon_sym_LBRACE] = ACTIONS(6475), - [anon_sym_RBRACE] = ACTIONS(6475), - [anon_sym_BSLASHand] = ACTIONS(6473), - [sym_word] = ACTIONS(6473), - [sym_placeholder] = ACTIONS(6475), - [anon_sym_PLUS] = ACTIONS(6475), - [anon_sym_DASH] = ACTIONS(6475), - [anon_sym_STAR] = ACTIONS(6475), - [anon_sym_SLASH] = ACTIONS(6475), - [anon_sym_LT] = ACTIONS(6473), - [anon_sym_GT] = ACTIONS(6473), - [anon_sym_BANG] = ACTIONS(6473), - [anon_sym_PIPE] = ACTIONS(6473), - [anon_sym_COLON] = ACTIONS(6473), - [anon_sym_SQUOTE] = ACTIONS(6473), - [anon_sym__] = ACTIONS(6475), - [anon_sym_CARET] = ACTIONS(6475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6475), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6475), - [anon_sym_DOLLAR] = ACTIONS(6473), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6475), - [anon_sym_BSLASHtitle] = ACTIONS(6473), - [anon_sym_BSLASHauthor] = ACTIONS(6473), - [anon_sym_BSLASHusepackage] = ACTIONS(6473), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6473), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6473), - [anon_sym_BSLASHinclude] = ACTIONS(6473), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6473), - [anon_sym_BSLASHinput] = ACTIONS(6473), - [anon_sym_BSLASHsubfile] = ACTIONS(6473), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6473), - [anon_sym_BSLASHbibliography] = ACTIONS(6473), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6473), - [anon_sym_BSLASHincludesvg] = ACTIONS(6473), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6473), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6473), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6473), - [anon_sym_BSLASHimport] = ACTIONS(6473), - [anon_sym_BSLASHsubimport] = ACTIONS(6473), - [anon_sym_BSLASHinputfrom] = ACTIONS(6473), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6473), - [anon_sym_BSLASHincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHcaption] = ACTIONS(6473), - [anon_sym_BSLASHcite] = ACTIONS(6473), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCite] = ACTIONS(6473), - [anon_sym_BSLASHnocite] = ACTIONS(6473), - [anon_sym_BSLASHcitet] = ACTIONS(6473), - [anon_sym_BSLASHcitep] = ACTIONS(6473), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteauthor] = ACTIONS(6473), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6473), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitetitle] = ACTIONS(6473), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteyear] = ACTIONS(6473), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitedate] = ACTIONS(6473), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteurl] = ACTIONS(6473), - [anon_sym_BSLASHfullcite] = ACTIONS(6473), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6473), - [anon_sym_BSLASHcitealt] = ACTIONS(6473), - [anon_sym_BSLASHcitealp] = ACTIONS(6473), - [anon_sym_BSLASHcitetext] = ACTIONS(6473), - [anon_sym_BSLASHparencite] = ACTIONS(6473), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHParencite] = ACTIONS(6473), - [anon_sym_BSLASHfootcite] = ACTIONS(6473), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6473), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6473), - [anon_sym_BSLASHtextcite] = ACTIONS(6473), - [anon_sym_BSLASHTextcite] = ACTIONS(6473), - [anon_sym_BSLASHsmartcite] = ACTIONS(6473), - [anon_sym_BSLASHSmartcite] = ACTIONS(6473), - [anon_sym_BSLASHsupercite] = ACTIONS(6473), - [anon_sym_BSLASHautocite] = ACTIONS(6473), - [anon_sym_BSLASHAutocite] = ACTIONS(6473), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHvolcite] = ACTIONS(6473), - [anon_sym_BSLASHVolcite] = ACTIONS(6473), - [anon_sym_BSLASHpvolcite] = ACTIONS(6473), - [anon_sym_BSLASHPvolcite] = ACTIONS(6473), - [anon_sym_BSLASHfvolcite] = ACTIONS(6473), - [anon_sym_BSLASHftvolcite] = ACTIONS(6473), - [anon_sym_BSLASHsvolcite] = ACTIONS(6473), - [anon_sym_BSLASHSvolcite] = ACTIONS(6473), - [anon_sym_BSLASHtvolcite] = ACTIONS(6473), - [anon_sym_BSLASHTvolcite] = ACTIONS(6473), - [anon_sym_BSLASHavolcite] = ACTIONS(6473), - [anon_sym_BSLASHAvolcite] = ACTIONS(6473), - [anon_sym_BSLASHnotecite] = ACTIONS(6473), - [anon_sym_BSLASHNotecite] = ACTIONS(6473), - [anon_sym_BSLASHpnotecite] = ACTIONS(6473), - [anon_sym_BSLASHPnotecite] = ACTIONS(6473), - [anon_sym_BSLASHfnotecite] = ACTIONS(6473), - [anon_sym_BSLASHlabel] = ACTIONS(6473), - [anon_sym_BSLASHref] = ACTIONS(6473), - [anon_sym_BSLASHeqref] = ACTIONS(6473), - [anon_sym_BSLASHvref] = ACTIONS(6473), - [anon_sym_BSLASHVref] = ACTIONS(6473), - [anon_sym_BSLASHautoref] = ACTIONS(6473), - [anon_sym_BSLASHpageref] = ACTIONS(6473), - [anon_sym_BSLASHcref] = ACTIONS(6473), - [anon_sym_BSLASHCref] = ACTIONS(6473), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnameCref] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHlabelcref] = ACTIONS(6473), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCrefrange] = ACTIONS(6473), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnewlabel] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6473), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6473), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6475), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHdef] = ACTIONS(6473), - [anon_sym_BSLASHlet] = ACTIONS(6473), - [anon_sym_BSLASHleft] = ACTIONS(6473), - [anon_sym_BSLASHbig] = ACTIONS(6473), - [anon_sym_BSLASHBig] = ACTIONS(6473), - [anon_sym_BSLASHbigg] = ACTIONS(6473), - [anon_sym_BSLASHBigg] = ACTIONS(6473), - [anon_sym_BSLASHbigl] = ACTIONS(6473), - [anon_sym_BSLASHBigl] = ACTIONS(6473), - [anon_sym_BSLASHbiggl] = ACTIONS(6473), - [anon_sym_BSLASHBiggl] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6473), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6473), - [anon_sym_BSLASHgls] = ACTIONS(6473), - [anon_sym_BSLASHGls] = ACTIONS(6473), - [anon_sym_BSLASHGLS] = ACTIONS(6473), - [anon_sym_BSLASHglspl] = ACTIONS(6473), - [anon_sym_BSLASHGlspl] = ACTIONS(6473), - [anon_sym_BSLASHGLSpl] = ACTIONS(6473), - [anon_sym_BSLASHglsdisp] = ACTIONS(6473), - [anon_sym_BSLASHglslink] = ACTIONS(6473), - [anon_sym_BSLASHglstext] = ACTIONS(6473), - [anon_sym_BSLASHGlstext] = ACTIONS(6473), - [anon_sym_BSLASHGLStext] = ACTIONS(6473), - [anon_sym_BSLASHglsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6473), - [anon_sym_BSLASHglsplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSplural] = ACTIONS(6473), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHglsname] = ACTIONS(6473), - [anon_sym_BSLASHGlsname] = ACTIONS(6473), - [anon_sym_BSLASHGLSname] = ACTIONS(6473), - [anon_sym_BSLASHglssymbol] = ACTIONS(6473), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6473), - [anon_sym_BSLASHglsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6473), - [anon_sym_BSLASHglsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6473), - [anon_sym_BSLASHglsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6473), - [anon_sym_BSLASHglsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6473), - [anon_sym_BSLASHglsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6473), - [anon_sym_BSLASHnewacronym] = ACTIONS(6473), - [anon_sym_BSLASHacrshort] = ACTIONS(6473), - [anon_sym_BSLASHAcrshort] = ACTIONS(6473), - [anon_sym_BSLASHACRshort] = ACTIONS(6473), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6473), - [anon_sym_BSLASHacrlong] = ACTIONS(6473), - [anon_sym_BSLASHAcrlong] = ACTIONS(6473), - [anon_sym_BSLASHACRlong] = ACTIONS(6473), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6473), - [anon_sym_BSLASHacrfull] = ACTIONS(6473), - [anon_sym_BSLASHAcrfull] = ACTIONS(6473), - [anon_sym_BSLASHACRfull] = ACTIONS(6473), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6473), - [anon_sym_BSLASHacs] = ACTIONS(6473), - [anon_sym_BSLASHAcs] = ACTIONS(6473), - [anon_sym_BSLASHacsp] = ACTIONS(6473), - [anon_sym_BSLASHAcsp] = ACTIONS(6473), - [anon_sym_BSLASHacl] = ACTIONS(6473), - [anon_sym_BSLASHAcl] = ACTIONS(6473), - [anon_sym_BSLASHaclp] = ACTIONS(6473), - [anon_sym_BSLASHAclp] = ACTIONS(6473), - [anon_sym_BSLASHacf] = ACTIONS(6473), - [anon_sym_BSLASHAcf] = ACTIONS(6473), - [anon_sym_BSLASHacfp] = ACTIONS(6473), - [anon_sym_BSLASHAcfp] = ACTIONS(6473), - [anon_sym_BSLASHac] = ACTIONS(6473), - [anon_sym_BSLASHAc] = ACTIONS(6473), - [anon_sym_BSLASHacp] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6473), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6473), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6473), - [anon_sym_BSLASHcolor] = ACTIONS(6473), - [anon_sym_BSLASHcolorbox] = ACTIONS(6473), - [anon_sym_BSLASHtextcolor] = ACTIONS(6473), - [anon_sym_BSLASHpagecolor] = ACTIONS(6473), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6473), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6473), - [anon_sym_BSLASHtext] = ACTIONS(6473), - [anon_sym_BSLASHintertext] = ACTIONS(6473), - [anon_sym_shortintertext] = ACTIONS(6473), - }, - [1850] = { - [sym_command_name] = ACTIONS(6469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6469), - [anon_sym_LPAREN] = ACTIONS(6471), - [anon_sym_RPAREN] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6471), - [anon_sym_RBRACE] = ACTIONS(6471), - [anon_sym_BSLASHand] = ACTIONS(6469), - [sym_word] = ACTIONS(6469), - [sym_placeholder] = ACTIONS(6471), - [anon_sym_PLUS] = ACTIONS(6471), - [anon_sym_DASH] = ACTIONS(6471), - [anon_sym_STAR] = ACTIONS(6471), - [anon_sym_SLASH] = ACTIONS(6471), - [anon_sym_LT] = ACTIONS(6469), - [anon_sym_GT] = ACTIONS(6469), - [anon_sym_BANG] = ACTIONS(6469), - [anon_sym_PIPE] = ACTIONS(6469), - [anon_sym_COLON] = ACTIONS(6469), - [anon_sym_SQUOTE] = ACTIONS(6469), - [anon_sym__] = ACTIONS(6471), - [anon_sym_CARET] = ACTIONS(6471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6471), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6471), - [anon_sym_DOLLAR] = ACTIONS(6469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6471), - [anon_sym_BSLASHtitle] = ACTIONS(6469), - [anon_sym_BSLASHauthor] = ACTIONS(6469), - [anon_sym_BSLASHusepackage] = ACTIONS(6469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6469), - [anon_sym_BSLASHinclude] = ACTIONS(6469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6469), - [anon_sym_BSLASHinput] = ACTIONS(6469), - [anon_sym_BSLASHsubfile] = ACTIONS(6469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6469), - [anon_sym_BSLASHbibliography] = ACTIONS(6469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6469), - [anon_sym_BSLASHincludesvg] = ACTIONS(6469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6469), - [anon_sym_BSLASHimport] = ACTIONS(6469), - [anon_sym_BSLASHsubimport] = ACTIONS(6469), - [anon_sym_BSLASHinputfrom] = ACTIONS(6469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6469), - [anon_sym_BSLASHincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHcaption] = ACTIONS(6469), - [anon_sym_BSLASHcite] = ACTIONS(6469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCite] = ACTIONS(6469), - [anon_sym_BSLASHnocite] = ACTIONS(6469), - [anon_sym_BSLASHcitet] = ACTIONS(6469), - [anon_sym_BSLASHcitep] = ACTIONS(6469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteauthor] = ACTIONS(6469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitetitle] = ACTIONS(6469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteyear] = ACTIONS(6469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitedate] = ACTIONS(6469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteurl] = ACTIONS(6469), - [anon_sym_BSLASHfullcite] = ACTIONS(6469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6469), - [anon_sym_BSLASHcitealt] = ACTIONS(6469), - [anon_sym_BSLASHcitealp] = ACTIONS(6469), - [anon_sym_BSLASHcitetext] = ACTIONS(6469), - [anon_sym_BSLASHparencite] = ACTIONS(6469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHParencite] = ACTIONS(6469), - [anon_sym_BSLASHfootcite] = ACTIONS(6469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6469), - [anon_sym_BSLASHtextcite] = ACTIONS(6469), - [anon_sym_BSLASHTextcite] = ACTIONS(6469), - [anon_sym_BSLASHsmartcite] = ACTIONS(6469), - [anon_sym_BSLASHSmartcite] = ACTIONS(6469), - [anon_sym_BSLASHsupercite] = ACTIONS(6469), - [anon_sym_BSLASHautocite] = ACTIONS(6469), - [anon_sym_BSLASHAutocite] = ACTIONS(6469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHvolcite] = ACTIONS(6469), - [anon_sym_BSLASHVolcite] = ACTIONS(6469), - [anon_sym_BSLASHpvolcite] = ACTIONS(6469), - [anon_sym_BSLASHPvolcite] = ACTIONS(6469), - [anon_sym_BSLASHfvolcite] = ACTIONS(6469), - [anon_sym_BSLASHftvolcite] = ACTIONS(6469), - [anon_sym_BSLASHsvolcite] = ACTIONS(6469), - [anon_sym_BSLASHSvolcite] = ACTIONS(6469), - [anon_sym_BSLASHtvolcite] = ACTIONS(6469), - [anon_sym_BSLASHTvolcite] = ACTIONS(6469), - [anon_sym_BSLASHavolcite] = ACTIONS(6469), - [anon_sym_BSLASHAvolcite] = ACTIONS(6469), - [anon_sym_BSLASHnotecite] = ACTIONS(6469), - [anon_sym_BSLASHNotecite] = ACTIONS(6469), - [anon_sym_BSLASHpnotecite] = ACTIONS(6469), - [anon_sym_BSLASHPnotecite] = ACTIONS(6469), - [anon_sym_BSLASHfnotecite] = ACTIONS(6469), - [anon_sym_BSLASHlabel] = ACTIONS(6469), - [anon_sym_BSLASHref] = ACTIONS(6469), - [anon_sym_BSLASHeqref] = ACTIONS(6469), - [anon_sym_BSLASHvref] = ACTIONS(6469), - [anon_sym_BSLASHVref] = ACTIONS(6469), - [anon_sym_BSLASHautoref] = ACTIONS(6469), - [anon_sym_BSLASHpageref] = ACTIONS(6469), - [anon_sym_BSLASHcref] = ACTIONS(6469), - [anon_sym_BSLASHCref] = ACTIONS(6469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnameCref] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHlabelcref] = ACTIONS(6469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCrefrange] = ACTIONS(6469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnewlabel] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6471), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHdef] = ACTIONS(6469), - [anon_sym_BSLASHlet] = ACTIONS(6469), - [anon_sym_BSLASHleft] = ACTIONS(6469), - [anon_sym_BSLASHbig] = ACTIONS(6469), - [anon_sym_BSLASHBig] = ACTIONS(6469), - [anon_sym_BSLASHbigg] = ACTIONS(6469), - [anon_sym_BSLASHBigg] = ACTIONS(6469), - [anon_sym_BSLASHbigl] = ACTIONS(6469), - [anon_sym_BSLASHBigl] = ACTIONS(6469), - [anon_sym_BSLASHbiggl] = ACTIONS(6469), - [anon_sym_BSLASHBiggl] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6469), - [anon_sym_BSLASHgls] = ACTIONS(6469), - [anon_sym_BSLASHGls] = ACTIONS(6469), - [anon_sym_BSLASHGLS] = ACTIONS(6469), - [anon_sym_BSLASHglspl] = ACTIONS(6469), - [anon_sym_BSLASHGlspl] = ACTIONS(6469), - [anon_sym_BSLASHGLSpl] = ACTIONS(6469), - [anon_sym_BSLASHglsdisp] = ACTIONS(6469), - [anon_sym_BSLASHglslink] = ACTIONS(6469), - [anon_sym_BSLASHglstext] = ACTIONS(6469), - [anon_sym_BSLASHGlstext] = ACTIONS(6469), - [anon_sym_BSLASHGLStext] = ACTIONS(6469), - [anon_sym_BSLASHglsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6469), - [anon_sym_BSLASHglsplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSplural] = ACTIONS(6469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHglsname] = ACTIONS(6469), - [anon_sym_BSLASHGlsname] = ACTIONS(6469), - [anon_sym_BSLASHGLSname] = ACTIONS(6469), - [anon_sym_BSLASHglssymbol] = ACTIONS(6469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6469), - [anon_sym_BSLASHglsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6469), - [anon_sym_BSLASHglsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6469), - [anon_sym_BSLASHglsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6469), - [anon_sym_BSLASHglsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6469), - [anon_sym_BSLASHglsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6469), - [anon_sym_BSLASHnewacronym] = ACTIONS(6469), - [anon_sym_BSLASHacrshort] = ACTIONS(6469), - [anon_sym_BSLASHAcrshort] = ACTIONS(6469), - [anon_sym_BSLASHACRshort] = ACTIONS(6469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6469), - [anon_sym_BSLASHacrlong] = ACTIONS(6469), - [anon_sym_BSLASHAcrlong] = ACTIONS(6469), - [anon_sym_BSLASHACRlong] = ACTIONS(6469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6469), - [anon_sym_BSLASHacrfull] = ACTIONS(6469), - [anon_sym_BSLASHAcrfull] = ACTIONS(6469), - [anon_sym_BSLASHACRfull] = ACTIONS(6469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6469), - [anon_sym_BSLASHacs] = ACTIONS(6469), - [anon_sym_BSLASHAcs] = ACTIONS(6469), - [anon_sym_BSLASHacsp] = ACTIONS(6469), - [anon_sym_BSLASHAcsp] = ACTIONS(6469), - [anon_sym_BSLASHacl] = ACTIONS(6469), - [anon_sym_BSLASHAcl] = ACTIONS(6469), - [anon_sym_BSLASHaclp] = ACTIONS(6469), - [anon_sym_BSLASHAclp] = ACTIONS(6469), - [anon_sym_BSLASHacf] = ACTIONS(6469), - [anon_sym_BSLASHAcf] = ACTIONS(6469), - [anon_sym_BSLASHacfp] = ACTIONS(6469), - [anon_sym_BSLASHAcfp] = ACTIONS(6469), - [anon_sym_BSLASHac] = ACTIONS(6469), - [anon_sym_BSLASHAc] = ACTIONS(6469), - [anon_sym_BSLASHacp] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6469), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6469), - [anon_sym_BSLASHcolor] = ACTIONS(6469), - [anon_sym_BSLASHcolorbox] = ACTIONS(6469), - [anon_sym_BSLASHtextcolor] = ACTIONS(6469), - [anon_sym_BSLASHpagecolor] = ACTIONS(6469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6469), - [anon_sym_BSLASHtext] = ACTIONS(6469), - [anon_sym_BSLASHintertext] = ACTIONS(6469), - [anon_sym_shortintertext] = ACTIONS(6469), - }, - [1851] = { - [sym_command_name] = ACTIONS(6465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6465), - [anon_sym_LPAREN] = ACTIONS(6467), - [anon_sym_RPAREN] = ACTIONS(6467), - [anon_sym_LBRACE] = ACTIONS(6467), - [anon_sym_RBRACE] = ACTIONS(6467), - [anon_sym_BSLASHand] = ACTIONS(6465), - [sym_word] = ACTIONS(6465), - [sym_placeholder] = ACTIONS(6467), - [anon_sym_PLUS] = ACTIONS(6467), - [anon_sym_DASH] = ACTIONS(6467), - [anon_sym_STAR] = ACTIONS(6467), - [anon_sym_SLASH] = ACTIONS(6467), - [anon_sym_LT] = ACTIONS(6465), - [anon_sym_GT] = ACTIONS(6465), - [anon_sym_BANG] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6465), - [anon_sym_COLON] = ACTIONS(6465), - [anon_sym_SQUOTE] = ACTIONS(6465), - [anon_sym__] = ACTIONS(6467), - [anon_sym_CARET] = ACTIONS(6467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6467), - [anon_sym_DOLLAR] = ACTIONS(6465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6467), - [anon_sym_BSLASHtitle] = ACTIONS(6465), - [anon_sym_BSLASHauthor] = ACTIONS(6465), - [anon_sym_BSLASHusepackage] = ACTIONS(6465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6465), - [anon_sym_BSLASHinclude] = ACTIONS(6465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6465), - [anon_sym_BSLASHinput] = ACTIONS(6465), - [anon_sym_BSLASHsubfile] = ACTIONS(6465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6465), - [anon_sym_BSLASHbibliography] = ACTIONS(6465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6465), - [anon_sym_BSLASHincludesvg] = ACTIONS(6465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6465), - [anon_sym_BSLASHimport] = ACTIONS(6465), - [anon_sym_BSLASHsubimport] = ACTIONS(6465), - [anon_sym_BSLASHinputfrom] = ACTIONS(6465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6465), - [anon_sym_BSLASHincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHcaption] = ACTIONS(6465), - [anon_sym_BSLASHcite] = ACTIONS(6465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCite] = ACTIONS(6465), - [anon_sym_BSLASHnocite] = ACTIONS(6465), - [anon_sym_BSLASHcitet] = ACTIONS(6465), - [anon_sym_BSLASHcitep] = ACTIONS(6465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteauthor] = ACTIONS(6465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitetitle] = ACTIONS(6465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteyear] = ACTIONS(6465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitedate] = ACTIONS(6465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteurl] = ACTIONS(6465), - [anon_sym_BSLASHfullcite] = ACTIONS(6465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6465), - [anon_sym_BSLASHcitealt] = ACTIONS(6465), - [anon_sym_BSLASHcitealp] = ACTIONS(6465), - [anon_sym_BSLASHcitetext] = ACTIONS(6465), - [anon_sym_BSLASHparencite] = ACTIONS(6465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHParencite] = ACTIONS(6465), - [anon_sym_BSLASHfootcite] = ACTIONS(6465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6465), - [anon_sym_BSLASHtextcite] = ACTIONS(6465), - [anon_sym_BSLASHTextcite] = ACTIONS(6465), - [anon_sym_BSLASHsmartcite] = ACTIONS(6465), - [anon_sym_BSLASHSmartcite] = ACTIONS(6465), - [anon_sym_BSLASHsupercite] = ACTIONS(6465), - [anon_sym_BSLASHautocite] = ACTIONS(6465), - [anon_sym_BSLASHAutocite] = ACTIONS(6465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHvolcite] = ACTIONS(6465), - [anon_sym_BSLASHVolcite] = ACTIONS(6465), - [anon_sym_BSLASHpvolcite] = ACTIONS(6465), - [anon_sym_BSLASHPvolcite] = ACTIONS(6465), - [anon_sym_BSLASHfvolcite] = ACTIONS(6465), - [anon_sym_BSLASHftvolcite] = ACTIONS(6465), - [anon_sym_BSLASHsvolcite] = ACTIONS(6465), - [anon_sym_BSLASHSvolcite] = ACTIONS(6465), - [anon_sym_BSLASHtvolcite] = ACTIONS(6465), - [anon_sym_BSLASHTvolcite] = ACTIONS(6465), - [anon_sym_BSLASHavolcite] = ACTIONS(6465), - [anon_sym_BSLASHAvolcite] = ACTIONS(6465), - [anon_sym_BSLASHnotecite] = ACTIONS(6465), - [anon_sym_BSLASHNotecite] = ACTIONS(6465), - [anon_sym_BSLASHpnotecite] = ACTIONS(6465), - [anon_sym_BSLASHPnotecite] = ACTIONS(6465), - [anon_sym_BSLASHfnotecite] = ACTIONS(6465), - [anon_sym_BSLASHlabel] = ACTIONS(6465), - [anon_sym_BSLASHref] = ACTIONS(6465), - [anon_sym_BSLASHeqref] = ACTIONS(6465), - [anon_sym_BSLASHvref] = ACTIONS(6465), - [anon_sym_BSLASHVref] = ACTIONS(6465), - [anon_sym_BSLASHautoref] = ACTIONS(6465), - [anon_sym_BSLASHpageref] = ACTIONS(6465), - [anon_sym_BSLASHcref] = ACTIONS(6465), - [anon_sym_BSLASHCref] = ACTIONS(6465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnameCref] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHlabelcref] = ACTIONS(6465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCrefrange] = ACTIONS(6465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnewlabel] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6467), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHdef] = ACTIONS(6465), - [anon_sym_BSLASHlet] = ACTIONS(6465), - [anon_sym_BSLASHleft] = ACTIONS(6465), - [anon_sym_BSLASHbig] = ACTIONS(6465), - [anon_sym_BSLASHBig] = ACTIONS(6465), - [anon_sym_BSLASHbigg] = ACTIONS(6465), - [anon_sym_BSLASHBigg] = ACTIONS(6465), - [anon_sym_BSLASHbigl] = ACTIONS(6465), - [anon_sym_BSLASHBigl] = ACTIONS(6465), - [anon_sym_BSLASHbiggl] = ACTIONS(6465), - [anon_sym_BSLASHBiggl] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6465), - [anon_sym_BSLASHgls] = ACTIONS(6465), - [anon_sym_BSLASHGls] = ACTIONS(6465), - [anon_sym_BSLASHGLS] = ACTIONS(6465), - [anon_sym_BSLASHglspl] = ACTIONS(6465), - [anon_sym_BSLASHGlspl] = ACTIONS(6465), - [anon_sym_BSLASHGLSpl] = ACTIONS(6465), - [anon_sym_BSLASHglsdisp] = ACTIONS(6465), - [anon_sym_BSLASHglslink] = ACTIONS(6465), - [anon_sym_BSLASHglstext] = ACTIONS(6465), - [anon_sym_BSLASHGlstext] = ACTIONS(6465), - [anon_sym_BSLASHGLStext] = ACTIONS(6465), - [anon_sym_BSLASHglsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6465), - [anon_sym_BSLASHglsplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSplural] = ACTIONS(6465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHglsname] = ACTIONS(6465), - [anon_sym_BSLASHGlsname] = ACTIONS(6465), - [anon_sym_BSLASHGLSname] = ACTIONS(6465), - [anon_sym_BSLASHglssymbol] = ACTIONS(6465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6465), - [anon_sym_BSLASHglsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6465), - [anon_sym_BSLASHglsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6465), - [anon_sym_BSLASHglsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6465), - [anon_sym_BSLASHglsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6465), - [anon_sym_BSLASHglsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6465), - [anon_sym_BSLASHnewacronym] = ACTIONS(6465), - [anon_sym_BSLASHacrshort] = ACTIONS(6465), - [anon_sym_BSLASHAcrshort] = ACTIONS(6465), - [anon_sym_BSLASHACRshort] = ACTIONS(6465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6465), - [anon_sym_BSLASHacrlong] = ACTIONS(6465), - [anon_sym_BSLASHAcrlong] = ACTIONS(6465), - [anon_sym_BSLASHACRlong] = ACTIONS(6465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6465), - [anon_sym_BSLASHacrfull] = ACTIONS(6465), - [anon_sym_BSLASHAcrfull] = ACTIONS(6465), - [anon_sym_BSLASHACRfull] = ACTIONS(6465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6465), - [anon_sym_BSLASHacs] = ACTIONS(6465), - [anon_sym_BSLASHAcs] = ACTIONS(6465), - [anon_sym_BSLASHacsp] = ACTIONS(6465), - [anon_sym_BSLASHAcsp] = ACTIONS(6465), - [anon_sym_BSLASHacl] = ACTIONS(6465), - [anon_sym_BSLASHAcl] = ACTIONS(6465), - [anon_sym_BSLASHaclp] = ACTIONS(6465), - [anon_sym_BSLASHAclp] = ACTIONS(6465), - [anon_sym_BSLASHacf] = ACTIONS(6465), - [anon_sym_BSLASHAcf] = ACTIONS(6465), - [anon_sym_BSLASHacfp] = ACTIONS(6465), - [anon_sym_BSLASHAcfp] = ACTIONS(6465), - [anon_sym_BSLASHac] = ACTIONS(6465), - [anon_sym_BSLASHAc] = ACTIONS(6465), - [anon_sym_BSLASHacp] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6465), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6465), - [anon_sym_BSLASHcolor] = ACTIONS(6465), - [anon_sym_BSLASHcolorbox] = ACTIONS(6465), - [anon_sym_BSLASHtextcolor] = ACTIONS(6465), - [anon_sym_BSLASHpagecolor] = ACTIONS(6465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6465), - [anon_sym_BSLASHtext] = ACTIONS(6465), - [anon_sym_BSLASHintertext] = ACTIONS(6465), - [anon_sym_shortintertext] = ACTIONS(6465), - }, - [1852] = { - [sym_command_name] = ACTIONS(6461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6461), - [anon_sym_LPAREN] = ACTIONS(6463), - [anon_sym_RPAREN] = ACTIONS(6463), - [anon_sym_LBRACE] = ACTIONS(6463), - [anon_sym_RBRACE] = ACTIONS(6463), - [anon_sym_BSLASHand] = ACTIONS(6461), - [sym_word] = ACTIONS(6461), - [sym_placeholder] = ACTIONS(6463), - [anon_sym_PLUS] = ACTIONS(6463), - [anon_sym_DASH] = ACTIONS(6463), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6463), - [anon_sym_LT] = ACTIONS(6461), - [anon_sym_GT] = ACTIONS(6461), - [anon_sym_BANG] = ACTIONS(6461), - [anon_sym_PIPE] = ACTIONS(6461), - [anon_sym_COLON] = ACTIONS(6461), - [anon_sym_SQUOTE] = ACTIONS(6461), - [anon_sym__] = ACTIONS(6463), - [anon_sym_CARET] = ACTIONS(6463), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6463), - [anon_sym_DOLLAR] = ACTIONS(6461), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6463), - [anon_sym_BSLASHtitle] = ACTIONS(6461), - [anon_sym_BSLASHauthor] = ACTIONS(6461), - [anon_sym_BSLASHusepackage] = ACTIONS(6461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6461), - [anon_sym_BSLASHinclude] = ACTIONS(6461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6461), - [anon_sym_BSLASHinput] = ACTIONS(6461), - [anon_sym_BSLASHsubfile] = ACTIONS(6461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6461), - [anon_sym_BSLASHbibliography] = ACTIONS(6461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6461), - [anon_sym_BSLASHincludesvg] = ACTIONS(6461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6461), - [anon_sym_BSLASHimport] = ACTIONS(6461), - [anon_sym_BSLASHsubimport] = ACTIONS(6461), - [anon_sym_BSLASHinputfrom] = ACTIONS(6461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6461), - [anon_sym_BSLASHincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHcaption] = ACTIONS(6461), - [anon_sym_BSLASHcite] = ACTIONS(6461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCite] = ACTIONS(6461), - [anon_sym_BSLASHnocite] = ACTIONS(6461), - [anon_sym_BSLASHcitet] = ACTIONS(6461), - [anon_sym_BSLASHcitep] = ACTIONS(6461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteauthor] = ACTIONS(6461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitetitle] = ACTIONS(6461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteyear] = ACTIONS(6461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitedate] = ACTIONS(6461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteurl] = ACTIONS(6461), - [anon_sym_BSLASHfullcite] = ACTIONS(6461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6461), - [anon_sym_BSLASHcitealt] = ACTIONS(6461), - [anon_sym_BSLASHcitealp] = ACTIONS(6461), - [anon_sym_BSLASHcitetext] = ACTIONS(6461), - [anon_sym_BSLASHparencite] = ACTIONS(6461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHParencite] = ACTIONS(6461), - [anon_sym_BSLASHfootcite] = ACTIONS(6461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6461), - [anon_sym_BSLASHtextcite] = ACTIONS(6461), - [anon_sym_BSLASHTextcite] = ACTIONS(6461), - [anon_sym_BSLASHsmartcite] = ACTIONS(6461), - [anon_sym_BSLASHSmartcite] = ACTIONS(6461), - [anon_sym_BSLASHsupercite] = ACTIONS(6461), - [anon_sym_BSLASHautocite] = ACTIONS(6461), - [anon_sym_BSLASHAutocite] = ACTIONS(6461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHvolcite] = ACTIONS(6461), - [anon_sym_BSLASHVolcite] = ACTIONS(6461), - [anon_sym_BSLASHpvolcite] = ACTIONS(6461), - [anon_sym_BSLASHPvolcite] = ACTIONS(6461), - [anon_sym_BSLASHfvolcite] = ACTIONS(6461), - [anon_sym_BSLASHftvolcite] = ACTIONS(6461), - [anon_sym_BSLASHsvolcite] = ACTIONS(6461), - [anon_sym_BSLASHSvolcite] = ACTIONS(6461), - [anon_sym_BSLASHtvolcite] = ACTIONS(6461), - [anon_sym_BSLASHTvolcite] = ACTIONS(6461), - [anon_sym_BSLASHavolcite] = ACTIONS(6461), - [anon_sym_BSLASHAvolcite] = ACTIONS(6461), - [anon_sym_BSLASHnotecite] = ACTIONS(6461), - [anon_sym_BSLASHNotecite] = ACTIONS(6461), - [anon_sym_BSLASHpnotecite] = ACTIONS(6461), - [anon_sym_BSLASHPnotecite] = ACTIONS(6461), - [anon_sym_BSLASHfnotecite] = ACTIONS(6461), - [anon_sym_BSLASHlabel] = ACTIONS(6461), - [anon_sym_BSLASHref] = ACTIONS(6461), - [anon_sym_BSLASHeqref] = ACTIONS(6461), - [anon_sym_BSLASHvref] = ACTIONS(6461), - [anon_sym_BSLASHVref] = ACTIONS(6461), - [anon_sym_BSLASHautoref] = ACTIONS(6461), - [anon_sym_BSLASHpageref] = ACTIONS(6461), - [anon_sym_BSLASHcref] = ACTIONS(6461), - [anon_sym_BSLASHCref] = ACTIONS(6461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnameCref] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHlabelcref] = ACTIONS(6461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCrefrange] = ACTIONS(6461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnewlabel] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6463), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHdef] = ACTIONS(6461), - [anon_sym_BSLASHlet] = ACTIONS(6461), - [anon_sym_BSLASHleft] = ACTIONS(6461), - [anon_sym_BSLASHbig] = ACTIONS(6461), - [anon_sym_BSLASHBig] = ACTIONS(6461), - [anon_sym_BSLASHbigg] = ACTIONS(6461), - [anon_sym_BSLASHBigg] = ACTIONS(6461), - [anon_sym_BSLASHbigl] = ACTIONS(6461), - [anon_sym_BSLASHBigl] = ACTIONS(6461), - [anon_sym_BSLASHbiggl] = ACTIONS(6461), - [anon_sym_BSLASHBiggl] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6461), - [anon_sym_BSLASHgls] = ACTIONS(6461), - [anon_sym_BSLASHGls] = ACTIONS(6461), - [anon_sym_BSLASHGLS] = ACTIONS(6461), - [anon_sym_BSLASHglspl] = ACTIONS(6461), - [anon_sym_BSLASHGlspl] = ACTIONS(6461), - [anon_sym_BSLASHGLSpl] = ACTIONS(6461), - [anon_sym_BSLASHglsdisp] = ACTIONS(6461), - [anon_sym_BSLASHglslink] = ACTIONS(6461), - [anon_sym_BSLASHglstext] = ACTIONS(6461), - [anon_sym_BSLASHGlstext] = ACTIONS(6461), - [anon_sym_BSLASHGLStext] = ACTIONS(6461), - [anon_sym_BSLASHglsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6461), - [anon_sym_BSLASHglsplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSplural] = ACTIONS(6461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHglsname] = ACTIONS(6461), - [anon_sym_BSLASHGlsname] = ACTIONS(6461), - [anon_sym_BSLASHGLSname] = ACTIONS(6461), - [anon_sym_BSLASHglssymbol] = ACTIONS(6461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6461), - [anon_sym_BSLASHglsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6461), - [anon_sym_BSLASHglsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6461), - [anon_sym_BSLASHglsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6461), - [anon_sym_BSLASHglsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6461), - [anon_sym_BSLASHglsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6461), - [anon_sym_BSLASHnewacronym] = ACTIONS(6461), - [anon_sym_BSLASHacrshort] = ACTIONS(6461), - [anon_sym_BSLASHAcrshort] = ACTIONS(6461), - [anon_sym_BSLASHACRshort] = ACTIONS(6461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6461), - [anon_sym_BSLASHacrlong] = ACTIONS(6461), - [anon_sym_BSLASHAcrlong] = ACTIONS(6461), - [anon_sym_BSLASHACRlong] = ACTIONS(6461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6461), - [anon_sym_BSLASHacrfull] = ACTIONS(6461), - [anon_sym_BSLASHAcrfull] = ACTIONS(6461), - [anon_sym_BSLASHACRfull] = ACTIONS(6461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6461), - [anon_sym_BSLASHacs] = ACTIONS(6461), - [anon_sym_BSLASHAcs] = ACTIONS(6461), - [anon_sym_BSLASHacsp] = ACTIONS(6461), - [anon_sym_BSLASHAcsp] = ACTIONS(6461), - [anon_sym_BSLASHacl] = ACTIONS(6461), - [anon_sym_BSLASHAcl] = ACTIONS(6461), - [anon_sym_BSLASHaclp] = ACTIONS(6461), - [anon_sym_BSLASHAclp] = ACTIONS(6461), - [anon_sym_BSLASHacf] = ACTIONS(6461), - [anon_sym_BSLASHAcf] = ACTIONS(6461), - [anon_sym_BSLASHacfp] = ACTIONS(6461), - [anon_sym_BSLASHAcfp] = ACTIONS(6461), - [anon_sym_BSLASHac] = ACTIONS(6461), - [anon_sym_BSLASHAc] = ACTIONS(6461), - [anon_sym_BSLASHacp] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6461), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6461), - [anon_sym_BSLASHcolor] = ACTIONS(6461), - [anon_sym_BSLASHcolorbox] = ACTIONS(6461), - [anon_sym_BSLASHtextcolor] = ACTIONS(6461), - [anon_sym_BSLASHpagecolor] = ACTIONS(6461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6461), - [anon_sym_BSLASHtext] = ACTIONS(6461), - [anon_sym_BSLASHintertext] = ACTIONS(6461), - [anon_sym_shortintertext] = ACTIONS(6461), - }, - [1853] = { - [sym_command_name] = ACTIONS(6457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6457), - [anon_sym_LPAREN] = ACTIONS(6459), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LBRACE] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(6459), - [anon_sym_BSLASHand] = ACTIONS(6457), - [sym_word] = ACTIONS(6457), - [sym_placeholder] = ACTIONS(6459), - [anon_sym_PLUS] = ACTIONS(6459), - [anon_sym_DASH] = ACTIONS(6459), - [anon_sym_STAR] = ACTIONS(6459), - [anon_sym_SLASH] = ACTIONS(6459), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_BANG] = ACTIONS(6457), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_SQUOTE] = ACTIONS(6457), - [anon_sym__] = ACTIONS(6459), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6459), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6459), - [anon_sym_DOLLAR] = ACTIONS(6457), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6459), - [anon_sym_BSLASHtitle] = ACTIONS(6457), - [anon_sym_BSLASHauthor] = ACTIONS(6457), - [anon_sym_BSLASHusepackage] = ACTIONS(6457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6457), - [anon_sym_BSLASHinclude] = ACTIONS(6457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6457), - [anon_sym_BSLASHinput] = ACTIONS(6457), - [anon_sym_BSLASHsubfile] = ACTIONS(6457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6457), - [anon_sym_BSLASHbibliography] = ACTIONS(6457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6457), - [anon_sym_BSLASHincludesvg] = ACTIONS(6457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6457), - [anon_sym_BSLASHimport] = ACTIONS(6457), - [anon_sym_BSLASHsubimport] = ACTIONS(6457), - [anon_sym_BSLASHinputfrom] = ACTIONS(6457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6457), - [anon_sym_BSLASHincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHcaption] = ACTIONS(6457), - [anon_sym_BSLASHcite] = ACTIONS(6457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCite] = ACTIONS(6457), - [anon_sym_BSLASHnocite] = ACTIONS(6457), - [anon_sym_BSLASHcitet] = ACTIONS(6457), - [anon_sym_BSLASHcitep] = ACTIONS(6457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteauthor] = ACTIONS(6457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitetitle] = ACTIONS(6457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteyear] = ACTIONS(6457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitedate] = ACTIONS(6457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteurl] = ACTIONS(6457), - [anon_sym_BSLASHfullcite] = ACTIONS(6457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6457), - [anon_sym_BSLASHcitealt] = ACTIONS(6457), - [anon_sym_BSLASHcitealp] = ACTIONS(6457), - [anon_sym_BSLASHcitetext] = ACTIONS(6457), - [anon_sym_BSLASHparencite] = ACTIONS(6457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHParencite] = ACTIONS(6457), - [anon_sym_BSLASHfootcite] = ACTIONS(6457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6457), - [anon_sym_BSLASHtextcite] = ACTIONS(6457), - [anon_sym_BSLASHTextcite] = ACTIONS(6457), - [anon_sym_BSLASHsmartcite] = ACTIONS(6457), - [anon_sym_BSLASHSmartcite] = ACTIONS(6457), - [anon_sym_BSLASHsupercite] = ACTIONS(6457), - [anon_sym_BSLASHautocite] = ACTIONS(6457), - [anon_sym_BSLASHAutocite] = ACTIONS(6457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHvolcite] = ACTIONS(6457), - [anon_sym_BSLASHVolcite] = ACTIONS(6457), - [anon_sym_BSLASHpvolcite] = ACTIONS(6457), - [anon_sym_BSLASHPvolcite] = ACTIONS(6457), - [anon_sym_BSLASHfvolcite] = ACTIONS(6457), - [anon_sym_BSLASHftvolcite] = ACTIONS(6457), - [anon_sym_BSLASHsvolcite] = ACTIONS(6457), - [anon_sym_BSLASHSvolcite] = ACTIONS(6457), - [anon_sym_BSLASHtvolcite] = ACTIONS(6457), - [anon_sym_BSLASHTvolcite] = ACTIONS(6457), - [anon_sym_BSLASHavolcite] = ACTIONS(6457), - [anon_sym_BSLASHAvolcite] = ACTIONS(6457), - [anon_sym_BSLASHnotecite] = ACTIONS(6457), - [anon_sym_BSLASHNotecite] = ACTIONS(6457), - [anon_sym_BSLASHpnotecite] = ACTIONS(6457), - [anon_sym_BSLASHPnotecite] = ACTIONS(6457), - [anon_sym_BSLASHfnotecite] = ACTIONS(6457), - [anon_sym_BSLASHlabel] = ACTIONS(6457), - [anon_sym_BSLASHref] = ACTIONS(6457), - [anon_sym_BSLASHeqref] = ACTIONS(6457), - [anon_sym_BSLASHvref] = ACTIONS(6457), - [anon_sym_BSLASHVref] = ACTIONS(6457), - [anon_sym_BSLASHautoref] = ACTIONS(6457), - [anon_sym_BSLASHpageref] = ACTIONS(6457), - [anon_sym_BSLASHcref] = ACTIONS(6457), - [anon_sym_BSLASHCref] = ACTIONS(6457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnameCref] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHlabelcref] = ACTIONS(6457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCrefrange] = ACTIONS(6457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnewlabel] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6459), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHdef] = ACTIONS(6457), - [anon_sym_BSLASHlet] = ACTIONS(6457), - [anon_sym_BSLASHleft] = ACTIONS(6457), - [anon_sym_BSLASHbig] = ACTIONS(6457), - [anon_sym_BSLASHBig] = ACTIONS(6457), - [anon_sym_BSLASHbigg] = ACTIONS(6457), - [anon_sym_BSLASHBigg] = ACTIONS(6457), - [anon_sym_BSLASHbigl] = ACTIONS(6457), - [anon_sym_BSLASHBigl] = ACTIONS(6457), - [anon_sym_BSLASHbiggl] = ACTIONS(6457), - [anon_sym_BSLASHBiggl] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6457), - [anon_sym_BSLASHgls] = ACTIONS(6457), - [anon_sym_BSLASHGls] = ACTIONS(6457), - [anon_sym_BSLASHGLS] = ACTIONS(6457), - [anon_sym_BSLASHglspl] = ACTIONS(6457), - [anon_sym_BSLASHGlspl] = ACTIONS(6457), - [anon_sym_BSLASHGLSpl] = ACTIONS(6457), - [anon_sym_BSLASHglsdisp] = ACTIONS(6457), - [anon_sym_BSLASHglslink] = ACTIONS(6457), - [anon_sym_BSLASHglstext] = ACTIONS(6457), - [anon_sym_BSLASHGlstext] = ACTIONS(6457), - [anon_sym_BSLASHGLStext] = ACTIONS(6457), - [anon_sym_BSLASHglsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6457), - [anon_sym_BSLASHglsplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSplural] = ACTIONS(6457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHglsname] = ACTIONS(6457), - [anon_sym_BSLASHGlsname] = ACTIONS(6457), - [anon_sym_BSLASHGLSname] = ACTIONS(6457), - [anon_sym_BSLASHglssymbol] = ACTIONS(6457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6457), - [anon_sym_BSLASHglsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6457), - [anon_sym_BSLASHglsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6457), - [anon_sym_BSLASHglsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6457), - [anon_sym_BSLASHglsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6457), - [anon_sym_BSLASHglsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6457), - [anon_sym_BSLASHnewacronym] = ACTIONS(6457), - [anon_sym_BSLASHacrshort] = ACTIONS(6457), - [anon_sym_BSLASHAcrshort] = ACTIONS(6457), - [anon_sym_BSLASHACRshort] = ACTIONS(6457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6457), - [anon_sym_BSLASHacrlong] = ACTIONS(6457), - [anon_sym_BSLASHAcrlong] = ACTIONS(6457), - [anon_sym_BSLASHACRlong] = ACTIONS(6457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6457), - [anon_sym_BSLASHacrfull] = ACTIONS(6457), - [anon_sym_BSLASHAcrfull] = ACTIONS(6457), - [anon_sym_BSLASHACRfull] = ACTIONS(6457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6457), - [anon_sym_BSLASHacs] = ACTIONS(6457), - [anon_sym_BSLASHAcs] = ACTIONS(6457), - [anon_sym_BSLASHacsp] = ACTIONS(6457), - [anon_sym_BSLASHAcsp] = ACTIONS(6457), - [anon_sym_BSLASHacl] = ACTIONS(6457), - [anon_sym_BSLASHAcl] = ACTIONS(6457), - [anon_sym_BSLASHaclp] = ACTIONS(6457), - [anon_sym_BSLASHAclp] = ACTIONS(6457), - [anon_sym_BSLASHacf] = ACTIONS(6457), - [anon_sym_BSLASHAcf] = ACTIONS(6457), - [anon_sym_BSLASHacfp] = ACTIONS(6457), - [anon_sym_BSLASHAcfp] = ACTIONS(6457), - [anon_sym_BSLASHac] = ACTIONS(6457), - [anon_sym_BSLASHAc] = ACTIONS(6457), - [anon_sym_BSLASHacp] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6457), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6457), - [anon_sym_BSLASHcolor] = ACTIONS(6457), - [anon_sym_BSLASHcolorbox] = ACTIONS(6457), - [anon_sym_BSLASHtextcolor] = ACTIONS(6457), - [anon_sym_BSLASHpagecolor] = ACTIONS(6457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6457), - [anon_sym_BSLASHtext] = ACTIONS(6457), - [anon_sym_BSLASHintertext] = ACTIONS(6457), - [anon_sym_shortintertext] = ACTIONS(6457), - }, - [1854] = { - [sym_command_name] = ACTIONS(6453), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6453), - [anon_sym_LPAREN] = ACTIONS(6455), - [anon_sym_RPAREN] = ACTIONS(6455), - [anon_sym_LBRACE] = ACTIONS(6455), - [anon_sym_RBRACE] = ACTIONS(6455), - [anon_sym_BSLASHand] = ACTIONS(6453), - [sym_word] = ACTIONS(6453), - [sym_placeholder] = ACTIONS(6455), - [anon_sym_PLUS] = ACTIONS(6455), - [anon_sym_DASH] = ACTIONS(6455), - [anon_sym_STAR] = ACTIONS(6455), - [anon_sym_SLASH] = ACTIONS(6455), - [anon_sym_LT] = ACTIONS(6453), - [anon_sym_GT] = ACTIONS(6453), - [anon_sym_BANG] = ACTIONS(6453), - [anon_sym_PIPE] = ACTIONS(6453), - [anon_sym_COLON] = ACTIONS(6453), - [anon_sym_SQUOTE] = ACTIONS(6453), - [anon_sym__] = ACTIONS(6455), - [anon_sym_CARET] = ACTIONS(6455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6455), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6455), - [anon_sym_DOLLAR] = ACTIONS(6453), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6455), - [anon_sym_BSLASHtitle] = ACTIONS(6453), - [anon_sym_BSLASHauthor] = ACTIONS(6453), - [anon_sym_BSLASHusepackage] = ACTIONS(6453), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6453), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6453), - [anon_sym_BSLASHinclude] = ACTIONS(6453), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6453), - [anon_sym_BSLASHinput] = ACTIONS(6453), - [anon_sym_BSLASHsubfile] = ACTIONS(6453), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6453), - [anon_sym_BSLASHbibliography] = ACTIONS(6453), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6453), - [anon_sym_BSLASHincludesvg] = ACTIONS(6453), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6453), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6453), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6453), - [anon_sym_BSLASHimport] = ACTIONS(6453), - [anon_sym_BSLASHsubimport] = ACTIONS(6453), - [anon_sym_BSLASHinputfrom] = ACTIONS(6453), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6453), - [anon_sym_BSLASHincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHcaption] = ACTIONS(6453), - [anon_sym_BSLASHcite] = ACTIONS(6453), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCite] = ACTIONS(6453), - [anon_sym_BSLASHnocite] = ACTIONS(6453), - [anon_sym_BSLASHcitet] = ACTIONS(6453), - [anon_sym_BSLASHcitep] = ACTIONS(6453), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteauthor] = ACTIONS(6453), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6453), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitetitle] = ACTIONS(6453), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteyear] = ACTIONS(6453), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitedate] = ACTIONS(6453), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteurl] = ACTIONS(6453), - [anon_sym_BSLASHfullcite] = ACTIONS(6453), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6453), - [anon_sym_BSLASHcitealt] = ACTIONS(6453), - [anon_sym_BSLASHcitealp] = ACTIONS(6453), - [anon_sym_BSLASHcitetext] = ACTIONS(6453), - [anon_sym_BSLASHparencite] = ACTIONS(6453), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHParencite] = ACTIONS(6453), - [anon_sym_BSLASHfootcite] = ACTIONS(6453), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6453), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6453), - [anon_sym_BSLASHtextcite] = ACTIONS(6453), - [anon_sym_BSLASHTextcite] = ACTIONS(6453), - [anon_sym_BSLASHsmartcite] = ACTIONS(6453), - [anon_sym_BSLASHSmartcite] = ACTIONS(6453), - [anon_sym_BSLASHsupercite] = ACTIONS(6453), - [anon_sym_BSLASHautocite] = ACTIONS(6453), - [anon_sym_BSLASHAutocite] = ACTIONS(6453), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHvolcite] = ACTIONS(6453), - [anon_sym_BSLASHVolcite] = ACTIONS(6453), - [anon_sym_BSLASHpvolcite] = ACTIONS(6453), - [anon_sym_BSLASHPvolcite] = ACTIONS(6453), - [anon_sym_BSLASHfvolcite] = ACTIONS(6453), - [anon_sym_BSLASHftvolcite] = ACTIONS(6453), - [anon_sym_BSLASHsvolcite] = ACTIONS(6453), - [anon_sym_BSLASHSvolcite] = ACTIONS(6453), - [anon_sym_BSLASHtvolcite] = ACTIONS(6453), - [anon_sym_BSLASHTvolcite] = ACTIONS(6453), - [anon_sym_BSLASHavolcite] = ACTIONS(6453), - [anon_sym_BSLASHAvolcite] = ACTIONS(6453), - [anon_sym_BSLASHnotecite] = ACTIONS(6453), - [anon_sym_BSLASHNotecite] = ACTIONS(6453), - [anon_sym_BSLASHpnotecite] = ACTIONS(6453), - [anon_sym_BSLASHPnotecite] = ACTIONS(6453), - [anon_sym_BSLASHfnotecite] = ACTIONS(6453), - [anon_sym_BSLASHlabel] = ACTIONS(6453), - [anon_sym_BSLASHref] = ACTIONS(6453), - [anon_sym_BSLASHeqref] = ACTIONS(6453), - [anon_sym_BSLASHvref] = ACTIONS(6453), - [anon_sym_BSLASHVref] = ACTIONS(6453), - [anon_sym_BSLASHautoref] = ACTIONS(6453), - [anon_sym_BSLASHpageref] = ACTIONS(6453), - [anon_sym_BSLASHcref] = ACTIONS(6453), - [anon_sym_BSLASHCref] = ACTIONS(6453), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnameCref] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHlabelcref] = ACTIONS(6453), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCrefrange] = ACTIONS(6453), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnewlabel] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6453), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6453), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6455), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHdef] = ACTIONS(6453), - [anon_sym_BSLASHlet] = ACTIONS(6453), - [anon_sym_BSLASHleft] = ACTIONS(6453), - [anon_sym_BSLASHbig] = ACTIONS(6453), - [anon_sym_BSLASHBig] = ACTIONS(6453), - [anon_sym_BSLASHbigg] = ACTIONS(6453), - [anon_sym_BSLASHBigg] = ACTIONS(6453), - [anon_sym_BSLASHbigl] = ACTIONS(6453), - [anon_sym_BSLASHBigl] = ACTIONS(6453), - [anon_sym_BSLASHbiggl] = ACTIONS(6453), - [anon_sym_BSLASHBiggl] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6453), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6453), - [anon_sym_BSLASHgls] = ACTIONS(6453), - [anon_sym_BSLASHGls] = ACTIONS(6453), - [anon_sym_BSLASHGLS] = ACTIONS(6453), - [anon_sym_BSLASHglspl] = ACTIONS(6453), - [anon_sym_BSLASHGlspl] = ACTIONS(6453), - [anon_sym_BSLASHGLSpl] = ACTIONS(6453), - [anon_sym_BSLASHglsdisp] = ACTIONS(6453), - [anon_sym_BSLASHglslink] = ACTIONS(6453), - [anon_sym_BSLASHglstext] = ACTIONS(6453), - [anon_sym_BSLASHGlstext] = ACTIONS(6453), - [anon_sym_BSLASHGLStext] = ACTIONS(6453), - [anon_sym_BSLASHglsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6453), - [anon_sym_BSLASHglsplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSplural] = ACTIONS(6453), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHglsname] = ACTIONS(6453), - [anon_sym_BSLASHGlsname] = ACTIONS(6453), - [anon_sym_BSLASHGLSname] = ACTIONS(6453), - [anon_sym_BSLASHglssymbol] = ACTIONS(6453), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6453), - [anon_sym_BSLASHglsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6453), - [anon_sym_BSLASHglsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6453), - [anon_sym_BSLASHglsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6453), - [anon_sym_BSLASHglsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6453), - [anon_sym_BSLASHglsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6453), - [anon_sym_BSLASHnewacronym] = ACTIONS(6453), - [anon_sym_BSLASHacrshort] = ACTIONS(6453), - [anon_sym_BSLASHAcrshort] = ACTIONS(6453), - [anon_sym_BSLASHACRshort] = ACTIONS(6453), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6453), - [anon_sym_BSLASHacrlong] = ACTIONS(6453), - [anon_sym_BSLASHAcrlong] = ACTIONS(6453), - [anon_sym_BSLASHACRlong] = ACTIONS(6453), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6453), - [anon_sym_BSLASHacrfull] = ACTIONS(6453), - [anon_sym_BSLASHAcrfull] = ACTIONS(6453), - [anon_sym_BSLASHACRfull] = ACTIONS(6453), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6453), - [anon_sym_BSLASHacs] = ACTIONS(6453), - [anon_sym_BSLASHAcs] = ACTIONS(6453), - [anon_sym_BSLASHacsp] = ACTIONS(6453), - [anon_sym_BSLASHAcsp] = ACTIONS(6453), - [anon_sym_BSLASHacl] = ACTIONS(6453), - [anon_sym_BSLASHAcl] = ACTIONS(6453), - [anon_sym_BSLASHaclp] = ACTIONS(6453), - [anon_sym_BSLASHAclp] = ACTIONS(6453), - [anon_sym_BSLASHacf] = ACTIONS(6453), - [anon_sym_BSLASHAcf] = ACTIONS(6453), - [anon_sym_BSLASHacfp] = ACTIONS(6453), - [anon_sym_BSLASHAcfp] = ACTIONS(6453), - [anon_sym_BSLASHac] = ACTIONS(6453), - [anon_sym_BSLASHAc] = ACTIONS(6453), - [anon_sym_BSLASHacp] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6453), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6453), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6453), - [anon_sym_BSLASHcolor] = ACTIONS(6453), - [anon_sym_BSLASHcolorbox] = ACTIONS(6453), - [anon_sym_BSLASHtextcolor] = ACTIONS(6453), - [anon_sym_BSLASHpagecolor] = ACTIONS(6453), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6453), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6453), - [anon_sym_BSLASHtext] = ACTIONS(6453), - [anon_sym_BSLASHintertext] = ACTIONS(6453), - [anon_sym_shortintertext] = ACTIONS(6453), - }, - [1855] = { - [sym_command_name] = ACTIONS(6449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6449), - [anon_sym_LPAREN] = ACTIONS(6451), - [anon_sym_RPAREN] = ACTIONS(6451), - [anon_sym_LBRACE] = ACTIONS(6451), - [anon_sym_RBRACE] = ACTIONS(6451), - [anon_sym_BSLASHand] = ACTIONS(6449), - [sym_word] = ACTIONS(6449), - [sym_placeholder] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6451), - [anon_sym_DASH] = ACTIONS(6451), - [anon_sym_STAR] = ACTIONS(6451), - [anon_sym_SLASH] = ACTIONS(6451), - [anon_sym_LT] = ACTIONS(6449), - [anon_sym_GT] = ACTIONS(6449), - [anon_sym_BANG] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6449), - [anon_sym_COLON] = ACTIONS(6449), - [anon_sym_SQUOTE] = ACTIONS(6449), - [anon_sym__] = ACTIONS(6451), - [anon_sym_CARET] = ACTIONS(6451), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6451), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6451), - [anon_sym_DOLLAR] = ACTIONS(6449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6451), - [anon_sym_BSLASHtitle] = ACTIONS(6449), - [anon_sym_BSLASHauthor] = ACTIONS(6449), - [anon_sym_BSLASHusepackage] = ACTIONS(6449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6449), - [anon_sym_BSLASHinclude] = ACTIONS(6449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6449), - [anon_sym_BSLASHinput] = ACTIONS(6449), - [anon_sym_BSLASHsubfile] = ACTIONS(6449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6449), - [anon_sym_BSLASHbibliography] = ACTIONS(6449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6449), - [anon_sym_BSLASHincludesvg] = ACTIONS(6449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6449), - [anon_sym_BSLASHimport] = ACTIONS(6449), - [anon_sym_BSLASHsubimport] = ACTIONS(6449), - [anon_sym_BSLASHinputfrom] = ACTIONS(6449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6449), - [anon_sym_BSLASHincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHcaption] = ACTIONS(6449), - [anon_sym_BSLASHcite] = ACTIONS(6449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCite] = ACTIONS(6449), - [anon_sym_BSLASHnocite] = ACTIONS(6449), - [anon_sym_BSLASHcitet] = ACTIONS(6449), - [anon_sym_BSLASHcitep] = ACTIONS(6449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteauthor] = ACTIONS(6449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitetitle] = ACTIONS(6449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteyear] = ACTIONS(6449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitedate] = ACTIONS(6449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteurl] = ACTIONS(6449), - [anon_sym_BSLASHfullcite] = ACTIONS(6449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6449), - [anon_sym_BSLASHcitealt] = ACTIONS(6449), - [anon_sym_BSLASHcitealp] = ACTIONS(6449), - [anon_sym_BSLASHcitetext] = ACTIONS(6449), - [anon_sym_BSLASHparencite] = ACTIONS(6449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHParencite] = ACTIONS(6449), - [anon_sym_BSLASHfootcite] = ACTIONS(6449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6449), - [anon_sym_BSLASHtextcite] = ACTIONS(6449), - [anon_sym_BSLASHTextcite] = ACTIONS(6449), - [anon_sym_BSLASHsmartcite] = ACTIONS(6449), - [anon_sym_BSLASHSmartcite] = ACTIONS(6449), - [anon_sym_BSLASHsupercite] = ACTIONS(6449), - [anon_sym_BSLASHautocite] = ACTIONS(6449), - [anon_sym_BSLASHAutocite] = ACTIONS(6449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHvolcite] = ACTIONS(6449), - [anon_sym_BSLASHVolcite] = ACTIONS(6449), - [anon_sym_BSLASHpvolcite] = ACTIONS(6449), - [anon_sym_BSLASHPvolcite] = ACTIONS(6449), - [anon_sym_BSLASHfvolcite] = ACTIONS(6449), - [anon_sym_BSLASHftvolcite] = ACTIONS(6449), - [anon_sym_BSLASHsvolcite] = ACTIONS(6449), - [anon_sym_BSLASHSvolcite] = ACTIONS(6449), - [anon_sym_BSLASHtvolcite] = ACTIONS(6449), - [anon_sym_BSLASHTvolcite] = ACTIONS(6449), - [anon_sym_BSLASHavolcite] = ACTIONS(6449), - [anon_sym_BSLASHAvolcite] = ACTIONS(6449), - [anon_sym_BSLASHnotecite] = ACTIONS(6449), - [anon_sym_BSLASHNotecite] = ACTIONS(6449), - [anon_sym_BSLASHpnotecite] = ACTIONS(6449), - [anon_sym_BSLASHPnotecite] = ACTIONS(6449), - [anon_sym_BSLASHfnotecite] = ACTIONS(6449), - [anon_sym_BSLASHlabel] = ACTIONS(6449), - [anon_sym_BSLASHref] = ACTIONS(6449), - [anon_sym_BSLASHeqref] = ACTIONS(6449), - [anon_sym_BSLASHvref] = ACTIONS(6449), - [anon_sym_BSLASHVref] = ACTIONS(6449), - [anon_sym_BSLASHautoref] = ACTIONS(6449), - [anon_sym_BSLASHpageref] = ACTIONS(6449), - [anon_sym_BSLASHcref] = ACTIONS(6449), - [anon_sym_BSLASHCref] = ACTIONS(6449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnameCref] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHlabelcref] = ACTIONS(6449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCrefrange] = ACTIONS(6449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnewlabel] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6451), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHdef] = ACTIONS(6449), - [anon_sym_BSLASHlet] = ACTIONS(6449), - [anon_sym_BSLASHleft] = ACTIONS(6449), - [anon_sym_BSLASHbig] = ACTIONS(6449), - [anon_sym_BSLASHBig] = ACTIONS(6449), - [anon_sym_BSLASHbigg] = ACTIONS(6449), - [anon_sym_BSLASHBigg] = ACTIONS(6449), - [anon_sym_BSLASHbigl] = ACTIONS(6449), - [anon_sym_BSLASHBigl] = ACTIONS(6449), - [anon_sym_BSLASHbiggl] = ACTIONS(6449), - [anon_sym_BSLASHBiggl] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6449), - [anon_sym_BSLASHgls] = ACTIONS(6449), - [anon_sym_BSLASHGls] = ACTIONS(6449), - [anon_sym_BSLASHGLS] = ACTIONS(6449), - [anon_sym_BSLASHglspl] = ACTIONS(6449), - [anon_sym_BSLASHGlspl] = ACTIONS(6449), - [anon_sym_BSLASHGLSpl] = ACTIONS(6449), - [anon_sym_BSLASHglsdisp] = ACTIONS(6449), - [anon_sym_BSLASHglslink] = ACTIONS(6449), - [anon_sym_BSLASHglstext] = ACTIONS(6449), - [anon_sym_BSLASHGlstext] = ACTIONS(6449), - [anon_sym_BSLASHGLStext] = ACTIONS(6449), - [anon_sym_BSLASHglsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6449), - [anon_sym_BSLASHglsplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSplural] = ACTIONS(6449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHglsname] = ACTIONS(6449), - [anon_sym_BSLASHGlsname] = ACTIONS(6449), - [anon_sym_BSLASHGLSname] = ACTIONS(6449), - [anon_sym_BSLASHglssymbol] = ACTIONS(6449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6449), - [anon_sym_BSLASHglsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6449), - [anon_sym_BSLASHglsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6449), - [anon_sym_BSLASHglsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6449), - [anon_sym_BSLASHglsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6449), - [anon_sym_BSLASHglsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6449), - [anon_sym_BSLASHnewacronym] = ACTIONS(6449), - [anon_sym_BSLASHacrshort] = ACTIONS(6449), - [anon_sym_BSLASHAcrshort] = ACTIONS(6449), - [anon_sym_BSLASHACRshort] = ACTIONS(6449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6449), - [anon_sym_BSLASHacrlong] = ACTIONS(6449), - [anon_sym_BSLASHAcrlong] = ACTIONS(6449), - [anon_sym_BSLASHACRlong] = ACTIONS(6449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6449), - [anon_sym_BSLASHacrfull] = ACTIONS(6449), - [anon_sym_BSLASHAcrfull] = ACTIONS(6449), - [anon_sym_BSLASHACRfull] = ACTIONS(6449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6449), - [anon_sym_BSLASHacs] = ACTIONS(6449), - [anon_sym_BSLASHAcs] = ACTIONS(6449), - [anon_sym_BSLASHacsp] = ACTIONS(6449), - [anon_sym_BSLASHAcsp] = ACTIONS(6449), - [anon_sym_BSLASHacl] = ACTIONS(6449), - [anon_sym_BSLASHAcl] = ACTIONS(6449), - [anon_sym_BSLASHaclp] = ACTIONS(6449), - [anon_sym_BSLASHAclp] = ACTIONS(6449), - [anon_sym_BSLASHacf] = ACTIONS(6449), - [anon_sym_BSLASHAcf] = ACTIONS(6449), - [anon_sym_BSLASHacfp] = ACTIONS(6449), - [anon_sym_BSLASHAcfp] = ACTIONS(6449), - [anon_sym_BSLASHac] = ACTIONS(6449), - [anon_sym_BSLASHAc] = ACTIONS(6449), - [anon_sym_BSLASHacp] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6449), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6449), - [anon_sym_BSLASHcolor] = ACTIONS(6449), - [anon_sym_BSLASHcolorbox] = ACTIONS(6449), - [anon_sym_BSLASHtextcolor] = ACTIONS(6449), - [anon_sym_BSLASHpagecolor] = ACTIONS(6449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6449), - [anon_sym_BSLASHtext] = ACTIONS(6449), - [anon_sym_BSLASHintertext] = ACTIONS(6449), - [anon_sym_shortintertext] = ACTIONS(6449), - }, - [1856] = { - [sym_command_name] = ACTIONS(6037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6037), - [anon_sym_LPAREN] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_LBRACE] = ACTIONS(6039), - [anon_sym_RBRACE] = ACTIONS(6039), - [anon_sym_BSLASHand] = ACTIONS(6037), - [sym_word] = ACTIONS(6037), - [sym_placeholder] = ACTIONS(6039), - [anon_sym_PLUS] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [anon_sym_STAR] = ACTIONS(6039), - [anon_sym_SLASH] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6037), - [anon_sym_GT] = ACTIONS(6037), - [anon_sym_BANG] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_COLON] = ACTIONS(6037), - [anon_sym_SQUOTE] = ACTIONS(6037), - [anon_sym__] = ACTIONS(6039), - [anon_sym_CARET] = ACTIONS(6039), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6039), - [anon_sym_BSLASHtitle] = ACTIONS(6037), - [anon_sym_BSLASHauthor] = ACTIONS(6037), - [anon_sym_BSLASHusepackage] = ACTIONS(6037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6037), - [anon_sym_BSLASHinclude] = ACTIONS(6037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6037), - [anon_sym_BSLASHinput] = ACTIONS(6037), - [anon_sym_BSLASHsubfile] = ACTIONS(6037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6037), - [anon_sym_BSLASHbibliography] = ACTIONS(6037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6037), - [anon_sym_BSLASHincludesvg] = ACTIONS(6037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6037), - [anon_sym_BSLASHimport] = ACTIONS(6037), - [anon_sym_BSLASHsubimport] = ACTIONS(6037), - [anon_sym_BSLASHinputfrom] = ACTIONS(6037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6037), - [anon_sym_BSLASHincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHcaption] = ACTIONS(6037), - [anon_sym_BSLASHcite] = ACTIONS(6037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCite] = ACTIONS(6037), - [anon_sym_BSLASHnocite] = ACTIONS(6037), - [anon_sym_BSLASHcitet] = ACTIONS(6037), - [anon_sym_BSLASHcitep] = ACTIONS(6037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteauthor] = ACTIONS(6037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitetitle] = ACTIONS(6037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteyear] = ACTIONS(6037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitedate] = ACTIONS(6037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteurl] = ACTIONS(6037), - [anon_sym_BSLASHfullcite] = ACTIONS(6037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6037), - [anon_sym_BSLASHcitealt] = ACTIONS(6037), - [anon_sym_BSLASHcitealp] = ACTIONS(6037), - [anon_sym_BSLASHcitetext] = ACTIONS(6037), - [anon_sym_BSLASHparencite] = ACTIONS(6037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHParencite] = ACTIONS(6037), - [anon_sym_BSLASHfootcite] = ACTIONS(6037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6037), - [anon_sym_BSLASHtextcite] = ACTIONS(6037), - [anon_sym_BSLASHTextcite] = ACTIONS(6037), - [anon_sym_BSLASHsmartcite] = ACTIONS(6037), - [anon_sym_BSLASHSmartcite] = ACTIONS(6037), - [anon_sym_BSLASHsupercite] = ACTIONS(6037), - [anon_sym_BSLASHautocite] = ACTIONS(6037), - [anon_sym_BSLASHAutocite] = ACTIONS(6037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHvolcite] = ACTIONS(6037), - [anon_sym_BSLASHVolcite] = ACTIONS(6037), - [anon_sym_BSLASHpvolcite] = ACTIONS(6037), - [anon_sym_BSLASHPvolcite] = ACTIONS(6037), - [anon_sym_BSLASHfvolcite] = ACTIONS(6037), - [anon_sym_BSLASHftvolcite] = ACTIONS(6037), - [anon_sym_BSLASHsvolcite] = ACTIONS(6037), - [anon_sym_BSLASHSvolcite] = ACTIONS(6037), - [anon_sym_BSLASHtvolcite] = ACTIONS(6037), - [anon_sym_BSLASHTvolcite] = ACTIONS(6037), - [anon_sym_BSLASHavolcite] = ACTIONS(6037), - [anon_sym_BSLASHAvolcite] = ACTIONS(6037), - [anon_sym_BSLASHnotecite] = ACTIONS(6037), - [anon_sym_BSLASHNotecite] = ACTIONS(6037), - [anon_sym_BSLASHpnotecite] = ACTIONS(6037), - [anon_sym_BSLASHPnotecite] = ACTIONS(6037), - [anon_sym_BSLASHfnotecite] = ACTIONS(6037), - [anon_sym_BSLASHlabel] = ACTIONS(6037), - [anon_sym_BSLASHref] = ACTIONS(6037), - [anon_sym_BSLASHeqref] = ACTIONS(6037), - [anon_sym_BSLASHvref] = ACTIONS(6037), - [anon_sym_BSLASHVref] = ACTIONS(6037), - [anon_sym_BSLASHautoref] = ACTIONS(6037), - [anon_sym_BSLASHpageref] = ACTIONS(6037), - [anon_sym_BSLASHcref] = ACTIONS(6037), - [anon_sym_BSLASHCref] = ACTIONS(6037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnameCref] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHlabelcref] = ACTIONS(6037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCrefrange] = ACTIONS(6037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnewlabel] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6039), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHdef] = ACTIONS(6037), - [anon_sym_BSLASHlet] = ACTIONS(6037), - [anon_sym_BSLASHleft] = ACTIONS(6037), - [anon_sym_BSLASHbig] = ACTIONS(6037), - [anon_sym_BSLASHBig] = ACTIONS(6037), - [anon_sym_BSLASHbigg] = ACTIONS(6037), - [anon_sym_BSLASHBigg] = ACTIONS(6037), - [anon_sym_BSLASHbigl] = ACTIONS(6037), - [anon_sym_BSLASHBigl] = ACTIONS(6037), - [anon_sym_BSLASHbiggl] = ACTIONS(6037), - [anon_sym_BSLASHBiggl] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6037), - [anon_sym_BSLASHgls] = ACTIONS(6037), - [anon_sym_BSLASHGls] = ACTIONS(6037), - [anon_sym_BSLASHGLS] = ACTIONS(6037), - [anon_sym_BSLASHglspl] = ACTIONS(6037), - [anon_sym_BSLASHGlspl] = ACTIONS(6037), - [anon_sym_BSLASHGLSpl] = ACTIONS(6037), - [anon_sym_BSLASHglsdisp] = ACTIONS(6037), - [anon_sym_BSLASHglslink] = ACTIONS(6037), - [anon_sym_BSLASHglstext] = ACTIONS(6037), - [anon_sym_BSLASHGlstext] = ACTIONS(6037), - [anon_sym_BSLASHGLStext] = ACTIONS(6037), - [anon_sym_BSLASHglsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6037), - [anon_sym_BSLASHglsplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSplural] = ACTIONS(6037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHglsname] = ACTIONS(6037), - [anon_sym_BSLASHGlsname] = ACTIONS(6037), - [anon_sym_BSLASHGLSname] = ACTIONS(6037), - [anon_sym_BSLASHglssymbol] = ACTIONS(6037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6037), - [anon_sym_BSLASHglsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6037), - [anon_sym_BSLASHglsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6037), - [anon_sym_BSLASHglsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6037), - [anon_sym_BSLASHglsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6037), - [anon_sym_BSLASHglsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6037), - [anon_sym_BSLASHnewacronym] = ACTIONS(6037), - [anon_sym_BSLASHacrshort] = ACTIONS(6037), - [anon_sym_BSLASHAcrshort] = ACTIONS(6037), - [anon_sym_BSLASHACRshort] = ACTIONS(6037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6037), - [anon_sym_BSLASHacrlong] = ACTIONS(6037), - [anon_sym_BSLASHAcrlong] = ACTIONS(6037), - [anon_sym_BSLASHACRlong] = ACTIONS(6037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6037), - [anon_sym_BSLASHacrfull] = ACTIONS(6037), - [anon_sym_BSLASHAcrfull] = ACTIONS(6037), - [anon_sym_BSLASHACRfull] = ACTIONS(6037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6037), - [anon_sym_BSLASHacs] = ACTIONS(6037), - [anon_sym_BSLASHAcs] = ACTIONS(6037), - [anon_sym_BSLASHacsp] = ACTIONS(6037), - [anon_sym_BSLASHAcsp] = ACTIONS(6037), - [anon_sym_BSLASHacl] = ACTIONS(6037), - [anon_sym_BSLASHAcl] = ACTIONS(6037), - [anon_sym_BSLASHaclp] = ACTIONS(6037), - [anon_sym_BSLASHAclp] = ACTIONS(6037), - [anon_sym_BSLASHacf] = ACTIONS(6037), - [anon_sym_BSLASHAcf] = ACTIONS(6037), - [anon_sym_BSLASHacfp] = ACTIONS(6037), - [anon_sym_BSLASHAcfp] = ACTIONS(6037), - [anon_sym_BSLASHac] = ACTIONS(6037), - [anon_sym_BSLASHAc] = ACTIONS(6037), - [anon_sym_BSLASHacp] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6037), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6037), - [anon_sym_BSLASHcolor] = ACTIONS(6037), - [anon_sym_BSLASHcolorbox] = ACTIONS(6037), - [anon_sym_BSLASHtextcolor] = ACTIONS(6037), - [anon_sym_BSLASHpagecolor] = ACTIONS(6037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6037), - [anon_sym_BSLASHtext] = ACTIONS(6037), - [anon_sym_BSLASHintertext] = ACTIONS(6037), - [anon_sym_shortintertext] = ACTIONS(6037), - }, - [1857] = { - [sym_command_name] = ACTIONS(6445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6445), - [anon_sym_LPAREN] = ACTIONS(6447), - [anon_sym_RPAREN] = ACTIONS(6447), - [anon_sym_LBRACE] = ACTIONS(6447), - [anon_sym_RBRACE] = ACTIONS(6447), - [anon_sym_BSLASHand] = ACTIONS(6445), - [sym_word] = ACTIONS(6445), - [sym_placeholder] = ACTIONS(6447), - [anon_sym_PLUS] = ACTIONS(6447), - [anon_sym_DASH] = ACTIONS(6447), - [anon_sym_STAR] = ACTIONS(6447), - [anon_sym_SLASH] = ACTIONS(6447), - [anon_sym_LT] = ACTIONS(6445), - [anon_sym_GT] = ACTIONS(6445), - [anon_sym_BANG] = ACTIONS(6445), - [anon_sym_PIPE] = ACTIONS(6445), - [anon_sym_COLON] = ACTIONS(6445), - [anon_sym_SQUOTE] = ACTIONS(6445), - [anon_sym__] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6447), - [anon_sym_DOLLAR] = ACTIONS(6445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6447), - [anon_sym_BSLASHtitle] = ACTIONS(6445), - [anon_sym_BSLASHauthor] = ACTIONS(6445), - [anon_sym_BSLASHusepackage] = ACTIONS(6445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6445), - [anon_sym_BSLASHinclude] = ACTIONS(6445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6445), - [anon_sym_BSLASHinput] = ACTIONS(6445), - [anon_sym_BSLASHsubfile] = ACTIONS(6445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6445), - [anon_sym_BSLASHbibliography] = ACTIONS(6445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6445), - [anon_sym_BSLASHincludesvg] = ACTIONS(6445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6445), - [anon_sym_BSLASHimport] = ACTIONS(6445), - [anon_sym_BSLASHsubimport] = ACTIONS(6445), - [anon_sym_BSLASHinputfrom] = ACTIONS(6445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6445), - [anon_sym_BSLASHincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHcaption] = ACTIONS(6445), - [anon_sym_BSLASHcite] = ACTIONS(6445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCite] = ACTIONS(6445), - [anon_sym_BSLASHnocite] = ACTIONS(6445), - [anon_sym_BSLASHcitet] = ACTIONS(6445), - [anon_sym_BSLASHcitep] = ACTIONS(6445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteauthor] = ACTIONS(6445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitetitle] = ACTIONS(6445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteyear] = ACTIONS(6445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitedate] = ACTIONS(6445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteurl] = ACTIONS(6445), - [anon_sym_BSLASHfullcite] = ACTIONS(6445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6445), - [anon_sym_BSLASHcitealt] = ACTIONS(6445), - [anon_sym_BSLASHcitealp] = ACTIONS(6445), - [anon_sym_BSLASHcitetext] = ACTIONS(6445), - [anon_sym_BSLASHparencite] = ACTIONS(6445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHParencite] = ACTIONS(6445), - [anon_sym_BSLASHfootcite] = ACTIONS(6445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6445), - [anon_sym_BSLASHtextcite] = ACTIONS(6445), - [anon_sym_BSLASHTextcite] = ACTIONS(6445), - [anon_sym_BSLASHsmartcite] = ACTIONS(6445), - [anon_sym_BSLASHSmartcite] = ACTIONS(6445), - [anon_sym_BSLASHsupercite] = ACTIONS(6445), - [anon_sym_BSLASHautocite] = ACTIONS(6445), - [anon_sym_BSLASHAutocite] = ACTIONS(6445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHvolcite] = ACTIONS(6445), - [anon_sym_BSLASHVolcite] = ACTIONS(6445), - [anon_sym_BSLASHpvolcite] = ACTIONS(6445), - [anon_sym_BSLASHPvolcite] = ACTIONS(6445), - [anon_sym_BSLASHfvolcite] = ACTIONS(6445), - [anon_sym_BSLASHftvolcite] = ACTIONS(6445), - [anon_sym_BSLASHsvolcite] = ACTIONS(6445), - [anon_sym_BSLASHSvolcite] = ACTIONS(6445), - [anon_sym_BSLASHtvolcite] = ACTIONS(6445), - [anon_sym_BSLASHTvolcite] = ACTIONS(6445), - [anon_sym_BSLASHavolcite] = ACTIONS(6445), - [anon_sym_BSLASHAvolcite] = ACTIONS(6445), - [anon_sym_BSLASHnotecite] = ACTIONS(6445), - [anon_sym_BSLASHNotecite] = ACTIONS(6445), - [anon_sym_BSLASHpnotecite] = ACTIONS(6445), - [anon_sym_BSLASHPnotecite] = ACTIONS(6445), - [anon_sym_BSLASHfnotecite] = ACTIONS(6445), - [anon_sym_BSLASHlabel] = ACTIONS(6445), - [anon_sym_BSLASHref] = ACTIONS(6445), - [anon_sym_BSLASHeqref] = ACTIONS(6445), - [anon_sym_BSLASHvref] = ACTIONS(6445), - [anon_sym_BSLASHVref] = ACTIONS(6445), - [anon_sym_BSLASHautoref] = ACTIONS(6445), - [anon_sym_BSLASHpageref] = ACTIONS(6445), - [anon_sym_BSLASHcref] = ACTIONS(6445), - [anon_sym_BSLASHCref] = ACTIONS(6445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnameCref] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHlabelcref] = ACTIONS(6445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCrefrange] = ACTIONS(6445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnewlabel] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6447), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHdef] = ACTIONS(6445), - [anon_sym_BSLASHlet] = ACTIONS(6445), - [anon_sym_BSLASHleft] = ACTIONS(6445), - [anon_sym_BSLASHbig] = ACTIONS(6445), - [anon_sym_BSLASHBig] = ACTIONS(6445), - [anon_sym_BSLASHbigg] = ACTIONS(6445), - [anon_sym_BSLASHBigg] = ACTIONS(6445), - [anon_sym_BSLASHbigl] = ACTIONS(6445), - [anon_sym_BSLASHBigl] = ACTIONS(6445), - [anon_sym_BSLASHbiggl] = ACTIONS(6445), - [anon_sym_BSLASHBiggl] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6445), - [anon_sym_BSLASHgls] = ACTIONS(6445), - [anon_sym_BSLASHGls] = ACTIONS(6445), - [anon_sym_BSLASHGLS] = ACTIONS(6445), - [anon_sym_BSLASHglspl] = ACTIONS(6445), - [anon_sym_BSLASHGlspl] = ACTIONS(6445), - [anon_sym_BSLASHGLSpl] = ACTIONS(6445), - [anon_sym_BSLASHglsdisp] = ACTIONS(6445), - [anon_sym_BSLASHglslink] = ACTIONS(6445), - [anon_sym_BSLASHglstext] = ACTIONS(6445), - [anon_sym_BSLASHGlstext] = ACTIONS(6445), - [anon_sym_BSLASHGLStext] = ACTIONS(6445), - [anon_sym_BSLASHglsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6445), - [anon_sym_BSLASHglsplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSplural] = ACTIONS(6445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHglsname] = ACTIONS(6445), - [anon_sym_BSLASHGlsname] = ACTIONS(6445), - [anon_sym_BSLASHGLSname] = ACTIONS(6445), - [anon_sym_BSLASHglssymbol] = ACTIONS(6445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6445), - [anon_sym_BSLASHglsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6445), - [anon_sym_BSLASHglsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6445), - [anon_sym_BSLASHglsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6445), - [anon_sym_BSLASHglsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6445), - [anon_sym_BSLASHglsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6445), - [anon_sym_BSLASHnewacronym] = ACTIONS(6445), - [anon_sym_BSLASHacrshort] = ACTIONS(6445), - [anon_sym_BSLASHAcrshort] = ACTIONS(6445), - [anon_sym_BSLASHACRshort] = ACTIONS(6445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6445), - [anon_sym_BSLASHacrlong] = ACTIONS(6445), - [anon_sym_BSLASHAcrlong] = ACTIONS(6445), - [anon_sym_BSLASHACRlong] = ACTIONS(6445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6445), - [anon_sym_BSLASHacrfull] = ACTIONS(6445), - [anon_sym_BSLASHAcrfull] = ACTIONS(6445), - [anon_sym_BSLASHACRfull] = ACTIONS(6445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6445), - [anon_sym_BSLASHacs] = ACTIONS(6445), - [anon_sym_BSLASHAcs] = ACTIONS(6445), - [anon_sym_BSLASHacsp] = ACTIONS(6445), - [anon_sym_BSLASHAcsp] = ACTIONS(6445), - [anon_sym_BSLASHacl] = ACTIONS(6445), - [anon_sym_BSLASHAcl] = ACTIONS(6445), - [anon_sym_BSLASHaclp] = ACTIONS(6445), - [anon_sym_BSLASHAclp] = ACTIONS(6445), - [anon_sym_BSLASHacf] = ACTIONS(6445), - [anon_sym_BSLASHAcf] = ACTIONS(6445), - [anon_sym_BSLASHacfp] = ACTIONS(6445), - [anon_sym_BSLASHAcfp] = ACTIONS(6445), - [anon_sym_BSLASHac] = ACTIONS(6445), - [anon_sym_BSLASHAc] = ACTIONS(6445), - [anon_sym_BSLASHacp] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6445), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6445), - [anon_sym_BSLASHcolor] = ACTIONS(6445), - [anon_sym_BSLASHcolorbox] = ACTIONS(6445), - [anon_sym_BSLASHtextcolor] = ACTIONS(6445), - [anon_sym_BSLASHpagecolor] = ACTIONS(6445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6445), - [anon_sym_BSLASHtext] = ACTIONS(6445), - [anon_sym_BSLASHintertext] = ACTIONS(6445), - [anon_sym_shortintertext] = ACTIONS(6445), - }, - [1858] = { - [sym_command_name] = ACTIONS(6441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6441), - [anon_sym_LPAREN] = ACTIONS(6443), - [anon_sym_RPAREN] = ACTIONS(6443), - [anon_sym_LBRACE] = ACTIONS(6443), - [anon_sym_RBRACE] = ACTIONS(6443), - [anon_sym_BSLASHand] = ACTIONS(6441), - [sym_word] = ACTIONS(6441), - [sym_placeholder] = ACTIONS(6443), - [anon_sym_PLUS] = ACTIONS(6443), - [anon_sym_DASH] = ACTIONS(6443), - [anon_sym_STAR] = ACTIONS(6443), - [anon_sym_SLASH] = ACTIONS(6443), - [anon_sym_LT] = ACTIONS(6441), - [anon_sym_GT] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(6441), - [anon_sym_PIPE] = ACTIONS(6441), - [anon_sym_COLON] = ACTIONS(6441), - [anon_sym_SQUOTE] = ACTIONS(6441), - [anon_sym__] = ACTIONS(6443), - [anon_sym_CARET] = ACTIONS(6443), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6443), - [anon_sym_DOLLAR] = ACTIONS(6441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6443), - [anon_sym_BSLASHtitle] = ACTIONS(6441), - [anon_sym_BSLASHauthor] = ACTIONS(6441), - [anon_sym_BSLASHusepackage] = ACTIONS(6441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6441), - [anon_sym_BSLASHinclude] = ACTIONS(6441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6441), - [anon_sym_BSLASHinput] = ACTIONS(6441), - [anon_sym_BSLASHsubfile] = ACTIONS(6441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6441), - [anon_sym_BSLASHbibliography] = ACTIONS(6441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6441), - [anon_sym_BSLASHincludesvg] = ACTIONS(6441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6441), - [anon_sym_BSLASHimport] = ACTIONS(6441), - [anon_sym_BSLASHsubimport] = ACTIONS(6441), - [anon_sym_BSLASHinputfrom] = ACTIONS(6441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6441), - [anon_sym_BSLASHincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHcaption] = ACTIONS(6441), - [anon_sym_BSLASHcite] = ACTIONS(6441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCite] = ACTIONS(6441), - [anon_sym_BSLASHnocite] = ACTIONS(6441), - [anon_sym_BSLASHcitet] = ACTIONS(6441), - [anon_sym_BSLASHcitep] = ACTIONS(6441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteauthor] = ACTIONS(6441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitetitle] = ACTIONS(6441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteyear] = ACTIONS(6441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitedate] = ACTIONS(6441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteurl] = ACTIONS(6441), - [anon_sym_BSLASHfullcite] = ACTIONS(6441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6441), - [anon_sym_BSLASHcitealt] = ACTIONS(6441), - [anon_sym_BSLASHcitealp] = ACTIONS(6441), - [anon_sym_BSLASHcitetext] = ACTIONS(6441), - [anon_sym_BSLASHparencite] = ACTIONS(6441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHParencite] = ACTIONS(6441), - [anon_sym_BSLASHfootcite] = ACTIONS(6441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6441), - [anon_sym_BSLASHtextcite] = ACTIONS(6441), - [anon_sym_BSLASHTextcite] = ACTIONS(6441), - [anon_sym_BSLASHsmartcite] = ACTIONS(6441), - [anon_sym_BSLASHSmartcite] = ACTIONS(6441), - [anon_sym_BSLASHsupercite] = ACTIONS(6441), - [anon_sym_BSLASHautocite] = ACTIONS(6441), - [anon_sym_BSLASHAutocite] = ACTIONS(6441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHvolcite] = ACTIONS(6441), - [anon_sym_BSLASHVolcite] = ACTIONS(6441), - [anon_sym_BSLASHpvolcite] = ACTIONS(6441), - [anon_sym_BSLASHPvolcite] = ACTIONS(6441), - [anon_sym_BSLASHfvolcite] = ACTIONS(6441), - [anon_sym_BSLASHftvolcite] = ACTIONS(6441), - [anon_sym_BSLASHsvolcite] = ACTIONS(6441), - [anon_sym_BSLASHSvolcite] = ACTIONS(6441), - [anon_sym_BSLASHtvolcite] = ACTIONS(6441), - [anon_sym_BSLASHTvolcite] = ACTIONS(6441), - [anon_sym_BSLASHavolcite] = ACTIONS(6441), - [anon_sym_BSLASHAvolcite] = ACTIONS(6441), - [anon_sym_BSLASHnotecite] = ACTIONS(6441), - [anon_sym_BSLASHNotecite] = ACTIONS(6441), - [anon_sym_BSLASHpnotecite] = ACTIONS(6441), - [anon_sym_BSLASHPnotecite] = ACTIONS(6441), - [anon_sym_BSLASHfnotecite] = ACTIONS(6441), - [anon_sym_BSLASHlabel] = ACTIONS(6441), - [anon_sym_BSLASHref] = ACTIONS(6441), - [anon_sym_BSLASHeqref] = ACTIONS(6441), - [anon_sym_BSLASHvref] = ACTIONS(6441), - [anon_sym_BSLASHVref] = ACTIONS(6441), - [anon_sym_BSLASHautoref] = ACTIONS(6441), - [anon_sym_BSLASHpageref] = ACTIONS(6441), - [anon_sym_BSLASHcref] = ACTIONS(6441), - [anon_sym_BSLASHCref] = ACTIONS(6441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnameCref] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHlabelcref] = ACTIONS(6441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCrefrange] = ACTIONS(6441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnewlabel] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6443), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHdef] = ACTIONS(6441), - [anon_sym_BSLASHlet] = ACTIONS(6441), - [anon_sym_BSLASHleft] = ACTIONS(6441), - [anon_sym_BSLASHbig] = ACTIONS(6441), - [anon_sym_BSLASHBig] = ACTIONS(6441), - [anon_sym_BSLASHbigg] = ACTIONS(6441), - [anon_sym_BSLASHBigg] = ACTIONS(6441), - [anon_sym_BSLASHbigl] = ACTIONS(6441), - [anon_sym_BSLASHBigl] = ACTIONS(6441), - [anon_sym_BSLASHbiggl] = ACTIONS(6441), - [anon_sym_BSLASHBiggl] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6441), - [anon_sym_BSLASHgls] = ACTIONS(6441), - [anon_sym_BSLASHGls] = ACTIONS(6441), - [anon_sym_BSLASHGLS] = ACTIONS(6441), - [anon_sym_BSLASHglspl] = ACTIONS(6441), - [anon_sym_BSLASHGlspl] = ACTIONS(6441), - [anon_sym_BSLASHGLSpl] = ACTIONS(6441), - [anon_sym_BSLASHglsdisp] = ACTIONS(6441), - [anon_sym_BSLASHglslink] = ACTIONS(6441), - [anon_sym_BSLASHglstext] = ACTIONS(6441), - [anon_sym_BSLASHGlstext] = ACTIONS(6441), - [anon_sym_BSLASHGLStext] = ACTIONS(6441), - [anon_sym_BSLASHglsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6441), - [anon_sym_BSLASHglsplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSplural] = ACTIONS(6441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHglsname] = ACTIONS(6441), - [anon_sym_BSLASHGlsname] = ACTIONS(6441), - [anon_sym_BSLASHGLSname] = ACTIONS(6441), - [anon_sym_BSLASHglssymbol] = ACTIONS(6441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6441), - [anon_sym_BSLASHglsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6441), - [anon_sym_BSLASHglsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6441), - [anon_sym_BSLASHglsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6441), - [anon_sym_BSLASHglsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6441), - [anon_sym_BSLASHglsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6441), - [anon_sym_BSLASHnewacronym] = ACTIONS(6441), - [anon_sym_BSLASHacrshort] = ACTIONS(6441), - [anon_sym_BSLASHAcrshort] = ACTIONS(6441), - [anon_sym_BSLASHACRshort] = ACTIONS(6441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6441), - [anon_sym_BSLASHacrlong] = ACTIONS(6441), - [anon_sym_BSLASHAcrlong] = ACTIONS(6441), - [anon_sym_BSLASHACRlong] = ACTIONS(6441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6441), - [anon_sym_BSLASHacrfull] = ACTIONS(6441), - [anon_sym_BSLASHAcrfull] = ACTIONS(6441), - [anon_sym_BSLASHACRfull] = ACTIONS(6441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6441), - [anon_sym_BSLASHacs] = ACTIONS(6441), - [anon_sym_BSLASHAcs] = ACTIONS(6441), - [anon_sym_BSLASHacsp] = ACTIONS(6441), - [anon_sym_BSLASHAcsp] = ACTIONS(6441), - [anon_sym_BSLASHacl] = ACTIONS(6441), - [anon_sym_BSLASHAcl] = ACTIONS(6441), - [anon_sym_BSLASHaclp] = ACTIONS(6441), - [anon_sym_BSLASHAclp] = ACTIONS(6441), - [anon_sym_BSLASHacf] = ACTIONS(6441), - [anon_sym_BSLASHAcf] = ACTIONS(6441), - [anon_sym_BSLASHacfp] = ACTIONS(6441), - [anon_sym_BSLASHAcfp] = ACTIONS(6441), - [anon_sym_BSLASHac] = ACTIONS(6441), - [anon_sym_BSLASHAc] = ACTIONS(6441), - [anon_sym_BSLASHacp] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6441), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6441), - [anon_sym_BSLASHcolor] = ACTIONS(6441), - [anon_sym_BSLASHcolorbox] = ACTIONS(6441), - [anon_sym_BSLASHtextcolor] = ACTIONS(6441), - [anon_sym_BSLASHpagecolor] = ACTIONS(6441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6441), - [anon_sym_BSLASHtext] = ACTIONS(6441), - [anon_sym_BSLASHintertext] = ACTIONS(6441), - [anon_sym_shortintertext] = ACTIONS(6441), - }, - [1859] = { - [sym_command_name] = ACTIONS(6437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6437), - [anon_sym_LPAREN] = ACTIONS(6439), - [anon_sym_RPAREN] = ACTIONS(6439), - [anon_sym_LBRACE] = ACTIONS(6439), - [anon_sym_RBRACE] = ACTIONS(6439), - [anon_sym_BSLASHand] = ACTIONS(6437), - [sym_word] = ACTIONS(6437), - [sym_placeholder] = ACTIONS(6439), - [anon_sym_PLUS] = ACTIONS(6439), - [anon_sym_DASH] = ACTIONS(6439), - [anon_sym_STAR] = ACTIONS(6439), - [anon_sym_SLASH] = ACTIONS(6439), - [anon_sym_LT] = ACTIONS(6437), - [anon_sym_GT] = ACTIONS(6437), - [anon_sym_BANG] = ACTIONS(6437), - [anon_sym_PIPE] = ACTIONS(6437), - [anon_sym_COLON] = ACTIONS(6437), - [anon_sym_SQUOTE] = ACTIONS(6437), - [anon_sym__] = ACTIONS(6439), - [anon_sym_CARET] = ACTIONS(6439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6439), - [anon_sym_DOLLAR] = ACTIONS(6437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6439), - [anon_sym_BSLASHtitle] = ACTIONS(6437), - [anon_sym_BSLASHauthor] = ACTIONS(6437), - [anon_sym_BSLASHusepackage] = ACTIONS(6437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6437), - [anon_sym_BSLASHinclude] = ACTIONS(6437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6437), - [anon_sym_BSLASHinput] = ACTIONS(6437), - [anon_sym_BSLASHsubfile] = ACTIONS(6437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6437), - [anon_sym_BSLASHbibliography] = ACTIONS(6437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6437), - [anon_sym_BSLASHincludesvg] = ACTIONS(6437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6437), - [anon_sym_BSLASHimport] = ACTIONS(6437), - [anon_sym_BSLASHsubimport] = ACTIONS(6437), - [anon_sym_BSLASHinputfrom] = ACTIONS(6437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6437), - [anon_sym_BSLASHincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHcaption] = ACTIONS(6437), - [anon_sym_BSLASHcite] = ACTIONS(6437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCite] = ACTIONS(6437), - [anon_sym_BSLASHnocite] = ACTIONS(6437), - [anon_sym_BSLASHcitet] = ACTIONS(6437), - [anon_sym_BSLASHcitep] = ACTIONS(6437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteauthor] = ACTIONS(6437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitetitle] = ACTIONS(6437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteyear] = ACTIONS(6437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitedate] = ACTIONS(6437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteurl] = ACTIONS(6437), - [anon_sym_BSLASHfullcite] = ACTIONS(6437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6437), - [anon_sym_BSLASHcitealt] = ACTIONS(6437), - [anon_sym_BSLASHcitealp] = ACTIONS(6437), - [anon_sym_BSLASHcitetext] = ACTIONS(6437), - [anon_sym_BSLASHparencite] = ACTIONS(6437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHParencite] = ACTIONS(6437), - [anon_sym_BSLASHfootcite] = ACTIONS(6437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6437), - [anon_sym_BSLASHtextcite] = ACTIONS(6437), - [anon_sym_BSLASHTextcite] = ACTIONS(6437), - [anon_sym_BSLASHsmartcite] = ACTIONS(6437), - [anon_sym_BSLASHSmartcite] = ACTIONS(6437), - [anon_sym_BSLASHsupercite] = ACTIONS(6437), - [anon_sym_BSLASHautocite] = ACTIONS(6437), - [anon_sym_BSLASHAutocite] = ACTIONS(6437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHvolcite] = ACTIONS(6437), - [anon_sym_BSLASHVolcite] = ACTIONS(6437), - [anon_sym_BSLASHpvolcite] = ACTIONS(6437), - [anon_sym_BSLASHPvolcite] = ACTIONS(6437), - [anon_sym_BSLASHfvolcite] = ACTIONS(6437), - [anon_sym_BSLASHftvolcite] = ACTIONS(6437), - [anon_sym_BSLASHsvolcite] = ACTIONS(6437), - [anon_sym_BSLASHSvolcite] = ACTIONS(6437), - [anon_sym_BSLASHtvolcite] = ACTIONS(6437), - [anon_sym_BSLASHTvolcite] = ACTIONS(6437), - [anon_sym_BSLASHavolcite] = ACTIONS(6437), - [anon_sym_BSLASHAvolcite] = ACTIONS(6437), - [anon_sym_BSLASHnotecite] = ACTIONS(6437), - [anon_sym_BSLASHNotecite] = ACTIONS(6437), - [anon_sym_BSLASHpnotecite] = ACTIONS(6437), - [anon_sym_BSLASHPnotecite] = ACTIONS(6437), - [anon_sym_BSLASHfnotecite] = ACTIONS(6437), - [anon_sym_BSLASHlabel] = ACTIONS(6437), - [anon_sym_BSLASHref] = ACTIONS(6437), - [anon_sym_BSLASHeqref] = ACTIONS(6437), - [anon_sym_BSLASHvref] = ACTIONS(6437), - [anon_sym_BSLASHVref] = ACTIONS(6437), - [anon_sym_BSLASHautoref] = ACTIONS(6437), - [anon_sym_BSLASHpageref] = ACTIONS(6437), - [anon_sym_BSLASHcref] = ACTIONS(6437), - [anon_sym_BSLASHCref] = ACTIONS(6437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnameCref] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHlabelcref] = ACTIONS(6437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCrefrange] = ACTIONS(6437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnewlabel] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6439), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHdef] = ACTIONS(6437), - [anon_sym_BSLASHlet] = ACTIONS(6437), - [anon_sym_BSLASHleft] = ACTIONS(6437), - [anon_sym_BSLASHbig] = ACTIONS(6437), - [anon_sym_BSLASHBig] = ACTIONS(6437), - [anon_sym_BSLASHbigg] = ACTIONS(6437), - [anon_sym_BSLASHBigg] = ACTIONS(6437), - [anon_sym_BSLASHbigl] = ACTIONS(6437), - [anon_sym_BSLASHBigl] = ACTIONS(6437), - [anon_sym_BSLASHbiggl] = ACTIONS(6437), - [anon_sym_BSLASHBiggl] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6437), - [anon_sym_BSLASHgls] = ACTIONS(6437), - [anon_sym_BSLASHGls] = ACTIONS(6437), - [anon_sym_BSLASHGLS] = ACTIONS(6437), - [anon_sym_BSLASHglspl] = ACTIONS(6437), - [anon_sym_BSLASHGlspl] = ACTIONS(6437), - [anon_sym_BSLASHGLSpl] = ACTIONS(6437), - [anon_sym_BSLASHglsdisp] = ACTIONS(6437), - [anon_sym_BSLASHglslink] = ACTIONS(6437), - [anon_sym_BSLASHglstext] = ACTIONS(6437), - [anon_sym_BSLASHGlstext] = ACTIONS(6437), - [anon_sym_BSLASHGLStext] = ACTIONS(6437), - [anon_sym_BSLASHglsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6437), - [anon_sym_BSLASHglsplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSplural] = ACTIONS(6437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHglsname] = ACTIONS(6437), - [anon_sym_BSLASHGlsname] = ACTIONS(6437), - [anon_sym_BSLASHGLSname] = ACTIONS(6437), - [anon_sym_BSLASHglssymbol] = ACTIONS(6437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6437), - [anon_sym_BSLASHglsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6437), - [anon_sym_BSLASHglsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6437), - [anon_sym_BSLASHglsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6437), - [anon_sym_BSLASHglsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6437), - [anon_sym_BSLASHglsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6437), - [anon_sym_BSLASHnewacronym] = ACTIONS(6437), - [anon_sym_BSLASHacrshort] = ACTIONS(6437), - [anon_sym_BSLASHAcrshort] = ACTIONS(6437), - [anon_sym_BSLASHACRshort] = ACTIONS(6437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6437), - [anon_sym_BSLASHacrlong] = ACTIONS(6437), - [anon_sym_BSLASHAcrlong] = ACTIONS(6437), - [anon_sym_BSLASHACRlong] = ACTIONS(6437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6437), - [anon_sym_BSLASHacrfull] = ACTIONS(6437), - [anon_sym_BSLASHAcrfull] = ACTIONS(6437), - [anon_sym_BSLASHACRfull] = ACTIONS(6437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6437), - [anon_sym_BSLASHacs] = ACTIONS(6437), - [anon_sym_BSLASHAcs] = ACTIONS(6437), - [anon_sym_BSLASHacsp] = ACTIONS(6437), - [anon_sym_BSLASHAcsp] = ACTIONS(6437), - [anon_sym_BSLASHacl] = ACTIONS(6437), - [anon_sym_BSLASHAcl] = ACTIONS(6437), - [anon_sym_BSLASHaclp] = ACTIONS(6437), - [anon_sym_BSLASHAclp] = ACTIONS(6437), - [anon_sym_BSLASHacf] = ACTIONS(6437), - [anon_sym_BSLASHAcf] = ACTIONS(6437), - [anon_sym_BSLASHacfp] = ACTIONS(6437), - [anon_sym_BSLASHAcfp] = ACTIONS(6437), - [anon_sym_BSLASHac] = ACTIONS(6437), - [anon_sym_BSLASHAc] = ACTIONS(6437), - [anon_sym_BSLASHacp] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6437), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6437), - [anon_sym_BSLASHcolor] = ACTIONS(6437), - [anon_sym_BSLASHcolorbox] = ACTIONS(6437), - [anon_sym_BSLASHtextcolor] = ACTIONS(6437), - [anon_sym_BSLASHpagecolor] = ACTIONS(6437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6437), - [anon_sym_BSLASHtext] = ACTIONS(6437), - [anon_sym_BSLASHintertext] = ACTIONS(6437), - [anon_sym_shortintertext] = ACTIONS(6437), - }, - [1860] = { - [sym_command_name] = ACTIONS(6121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6121), - [anon_sym_LPAREN] = ACTIONS(6123), - [anon_sym_RPAREN] = ACTIONS(6123), - [anon_sym_LBRACE] = ACTIONS(6123), - [anon_sym_RBRACE] = ACTIONS(6123), - [anon_sym_BSLASHand] = ACTIONS(6121), - [sym_word] = ACTIONS(6121), - [sym_placeholder] = ACTIONS(6123), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6123), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_LT] = ACTIONS(6121), - [anon_sym_GT] = ACTIONS(6121), - [anon_sym_BANG] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_SQUOTE] = ACTIONS(6121), - [anon_sym__] = ACTIONS(6123), - [anon_sym_CARET] = ACTIONS(6123), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6123), - [anon_sym_DOLLAR] = ACTIONS(6121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6123), - [anon_sym_BSLASHtitle] = ACTIONS(6121), - [anon_sym_BSLASHauthor] = ACTIONS(6121), - [anon_sym_BSLASHusepackage] = ACTIONS(6121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6121), - [anon_sym_BSLASHinclude] = ACTIONS(6121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6121), - [anon_sym_BSLASHinput] = ACTIONS(6121), - [anon_sym_BSLASHsubfile] = ACTIONS(6121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6121), - [anon_sym_BSLASHbibliography] = ACTIONS(6121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6121), - [anon_sym_BSLASHincludesvg] = ACTIONS(6121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6121), - [anon_sym_BSLASHimport] = ACTIONS(6121), - [anon_sym_BSLASHsubimport] = ACTIONS(6121), - [anon_sym_BSLASHinputfrom] = ACTIONS(6121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6121), - [anon_sym_BSLASHincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHcaption] = ACTIONS(6121), - [anon_sym_BSLASHcite] = ACTIONS(6121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCite] = ACTIONS(6121), - [anon_sym_BSLASHnocite] = ACTIONS(6121), - [anon_sym_BSLASHcitet] = ACTIONS(6121), - [anon_sym_BSLASHcitep] = ACTIONS(6121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteauthor] = ACTIONS(6121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitetitle] = ACTIONS(6121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteyear] = ACTIONS(6121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitedate] = ACTIONS(6121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteurl] = ACTIONS(6121), - [anon_sym_BSLASHfullcite] = ACTIONS(6121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6121), - [anon_sym_BSLASHcitealt] = ACTIONS(6121), - [anon_sym_BSLASHcitealp] = ACTIONS(6121), - [anon_sym_BSLASHcitetext] = ACTIONS(6121), - [anon_sym_BSLASHparencite] = ACTIONS(6121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHParencite] = ACTIONS(6121), - [anon_sym_BSLASHfootcite] = ACTIONS(6121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6121), - [anon_sym_BSLASHtextcite] = ACTIONS(6121), - [anon_sym_BSLASHTextcite] = ACTIONS(6121), - [anon_sym_BSLASHsmartcite] = ACTIONS(6121), - [anon_sym_BSLASHSmartcite] = ACTIONS(6121), - [anon_sym_BSLASHsupercite] = ACTIONS(6121), - [anon_sym_BSLASHautocite] = ACTIONS(6121), - [anon_sym_BSLASHAutocite] = ACTIONS(6121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHvolcite] = ACTIONS(6121), - [anon_sym_BSLASHVolcite] = ACTIONS(6121), - [anon_sym_BSLASHpvolcite] = ACTIONS(6121), - [anon_sym_BSLASHPvolcite] = ACTIONS(6121), - [anon_sym_BSLASHfvolcite] = ACTIONS(6121), - [anon_sym_BSLASHftvolcite] = ACTIONS(6121), - [anon_sym_BSLASHsvolcite] = ACTIONS(6121), - [anon_sym_BSLASHSvolcite] = ACTIONS(6121), - [anon_sym_BSLASHtvolcite] = ACTIONS(6121), - [anon_sym_BSLASHTvolcite] = ACTIONS(6121), - [anon_sym_BSLASHavolcite] = ACTIONS(6121), - [anon_sym_BSLASHAvolcite] = ACTIONS(6121), - [anon_sym_BSLASHnotecite] = ACTIONS(6121), - [anon_sym_BSLASHNotecite] = ACTIONS(6121), - [anon_sym_BSLASHpnotecite] = ACTIONS(6121), - [anon_sym_BSLASHPnotecite] = ACTIONS(6121), - [anon_sym_BSLASHfnotecite] = ACTIONS(6121), - [anon_sym_BSLASHlabel] = ACTIONS(6121), - [anon_sym_BSLASHref] = ACTIONS(6121), - [anon_sym_BSLASHeqref] = ACTIONS(6121), - [anon_sym_BSLASHvref] = ACTIONS(6121), - [anon_sym_BSLASHVref] = ACTIONS(6121), - [anon_sym_BSLASHautoref] = ACTIONS(6121), - [anon_sym_BSLASHpageref] = ACTIONS(6121), - [anon_sym_BSLASHcref] = ACTIONS(6121), - [anon_sym_BSLASHCref] = ACTIONS(6121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnameCref] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHlabelcref] = ACTIONS(6121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCrefrange] = ACTIONS(6121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnewlabel] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6123), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHdef] = ACTIONS(6121), - [anon_sym_BSLASHlet] = ACTIONS(6121), - [anon_sym_BSLASHleft] = ACTIONS(6121), - [anon_sym_BSLASHbig] = ACTIONS(6121), - [anon_sym_BSLASHBig] = ACTIONS(6121), - [anon_sym_BSLASHbigg] = ACTIONS(6121), - [anon_sym_BSLASHBigg] = ACTIONS(6121), - [anon_sym_BSLASHbigl] = ACTIONS(6121), - [anon_sym_BSLASHBigl] = ACTIONS(6121), - [anon_sym_BSLASHbiggl] = ACTIONS(6121), - [anon_sym_BSLASHBiggl] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6121), - [anon_sym_BSLASHgls] = ACTIONS(6121), - [anon_sym_BSLASHGls] = ACTIONS(6121), - [anon_sym_BSLASHGLS] = ACTIONS(6121), - [anon_sym_BSLASHglspl] = ACTIONS(6121), - [anon_sym_BSLASHGlspl] = ACTIONS(6121), - [anon_sym_BSLASHGLSpl] = ACTIONS(6121), - [anon_sym_BSLASHglsdisp] = ACTIONS(6121), - [anon_sym_BSLASHglslink] = ACTIONS(6121), - [anon_sym_BSLASHglstext] = ACTIONS(6121), - [anon_sym_BSLASHGlstext] = ACTIONS(6121), - [anon_sym_BSLASHGLStext] = ACTIONS(6121), - [anon_sym_BSLASHglsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6121), - [anon_sym_BSLASHglsplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSplural] = ACTIONS(6121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHglsname] = ACTIONS(6121), - [anon_sym_BSLASHGlsname] = ACTIONS(6121), - [anon_sym_BSLASHGLSname] = ACTIONS(6121), - [anon_sym_BSLASHglssymbol] = ACTIONS(6121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6121), - [anon_sym_BSLASHglsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6121), - [anon_sym_BSLASHglsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6121), - [anon_sym_BSLASHglsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6121), - [anon_sym_BSLASHglsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6121), - [anon_sym_BSLASHglsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6121), - [anon_sym_BSLASHnewacronym] = ACTIONS(6121), - [anon_sym_BSLASHacrshort] = ACTIONS(6121), - [anon_sym_BSLASHAcrshort] = ACTIONS(6121), - [anon_sym_BSLASHACRshort] = ACTIONS(6121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6121), - [anon_sym_BSLASHacrlong] = ACTIONS(6121), - [anon_sym_BSLASHAcrlong] = ACTIONS(6121), - [anon_sym_BSLASHACRlong] = ACTIONS(6121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6121), - [anon_sym_BSLASHacrfull] = ACTIONS(6121), - [anon_sym_BSLASHAcrfull] = ACTIONS(6121), - [anon_sym_BSLASHACRfull] = ACTIONS(6121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6121), - [anon_sym_BSLASHacs] = ACTIONS(6121), - [anon_sym_BSLASHAcs] = ACTIONS(6121), - [anon_sym_BSLASHacsp] = ACTIONS(6121), - [anon_sym_BSLASHAcsp] = ACTIONS(6121), - [anon_sym_BSLASHacl] = ACTIONS(6121), - [anon_sym_BSLASHAcl] = ACTIONS(6121), - [anon_sym_BSLASHaclp] = ACTIONS(6121), - [anon_sym_BSLASHAclp] = ACTIONS(6121), - [anon_sym_BSLASHacf] = ACTIONS(6121), - [anon_sym_BSLASHAcf] = ACTIONS(6121), - [anon_sym_BSLASHacfp] = ACTIONS(6121), - [anon_sym_BSLASHAcfp] = ACTIONS(6121), - [anon_sym_BSLASHac] = ACTIONS(6121), - [anon_sym_BSLASHAc] = ACTIONS(6121), - [anon_sym_BSLASHacp] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6121), - [anon_sym_BSLASHcolor] = ACTIONS(6121), - [anon_sym_BSLASHcolorbox] = ACTIONS(6121), - [anon_sym_BSLASHtextcolor] = ACTIONS(6121), - [anon_sym_BSLASHpagecolor] = ACTIONS(6121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6121), - [anon_sym_BSLASHtext] = ACTIONS(6121), - [anon_sym_BSLASHintertext] = ACTIONS(6121), - [anon_sym_shortintertext] = ACTIONS(6121), - }, - [1861] = { - [sym_command_name] = ACTIONS(6433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6433), - [anon_sym_LPAREN] = ACTIONS(6435), - [anon_sym_RPAREN] = ACTIONS(6435), - [anon_sym_LBRACE] = ACTIONS(6435), - [anon_sym_RBRACE] = ACTIONS(6435), - [anon_sym_BSLASHand] = ACTIONS(6433), - [sym_word] = ACTIONS(6433), - [sym_placeholder] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6435), - [anon_sym_DASH] = ACTIONS(6435), - [anon_sym_STAR] = ACTIONS(6435), - [anon_sym_SLASH] = ACTIONS(6435), - [anon_sym_LT] = ACTIONS(6433), - [anon_sym_GT] = ACTIONS(6433), - [anon_sym_BANG] = ACTIONS(6433), - [anon_sym_PIPE] = ACTIONS(6433), - [anon_sym_COLON] = ACTIONS(6433), - [anon_sym_SQUOTE] = ACTIONS(6433), - [anon_sym__] = ACTIONS(6435), - [anon_sym_CARET] = ACTIONS(6435), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6435), - [anon_sym_DOLLAR] = ACTIONS(6433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6435), - [anon_sym_BSLASHtitle] = ACTIONS(6433), - [anon_sym_BSLASHauthor] = ACTIONS(6433), - [anon_sym_BSLASHusepackage] = ACTIONS(6433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6433), - [anon_sym_BSLASHinclude] = ACTIONS(6433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6433), - [anon_sym_BSLASHinput] = ACTIONS(6433), - [anon_sym_BSLASHsubfile] = ACTIONS(6433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6433), - [anon_sym_BSLASHbibliography] = ACTIONS(6433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6433), - [anon_sym_BSLASHincludesvg] = ACTIONS(6433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6433), - [anon_sym_BSLASHimport] = ACTIONS(6433), - [anon_sym_BSLASHsubimport] = ACTIONS(6433), - [anon_sym_BSLASHinputfrom] = ACTIONS(6433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6433), - [anon_sym_BSLASHincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHcaption] = ACTIONS(6433), - [anon_sym_BSLASHcite] = ACTIONS(6433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCite] = ACTIONS(6433), - [anon_sym_BSLASHnocite] = ACTIONS(6433), - [anon_sym_BSLASHcitet] = ACTIONS(6433), - [anon_sym_BSLASHcitep] = ACTIONS(6433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteauthor] = ACTIONS(6433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitetitle] = ACTIONS(6433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteyear] = ACTIONS(6433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitedate] = ACTIONS(6433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteurl] = ACTIONS(6433), - [anon_sym_BSLASHfullcite] = ACTIONS(6433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6433), - [anon_sym_BSLASHcitealt] = ACTIONS(6433), - [anon_sym_BSLASHcitealp] = ACTIONS(6433), - [anon_sym_BSLASHcitetext] = ACTIONS(6433), - [anon_sym_BSLASHparencite] = ACTIONS(6433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHParencite] = ACTIONS(6433), - [anon_sym_BSLASHfootcite] = ACTIONS(6433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6433), - [anon_sym_BSLASHtextcite] = ACTIONS(6433), - [anon_sym_BSLASHTextcite] = ACTIONS(6433), - [anon_sym_BSLASHsmartcite] = ACTIONS(6433), - [anon_sym_BSLASHSmartcite] = ACTIONS(6433), - [anon_sym_BSLASHsupercite] = ACTIONS(6433), - [anon_sym_BSLASHautocite] = ACTIONS(6433), - [anon_sym_BSLASHAutocite] = ACTIONS(6433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHvolcite] = ACTIONS(6433), - [anon_sym_BSLASHVolcite] = ACTIONS(6433), - [anon_sym_BSLASHpvolcite] = ACTIONS(6433), - [anon_sym_BSLASHPvolcite] = ACTIONS(6433), - [anon_sym_BSLASHfvolcite] = ACTIONS(6433), - [anon_sym_BSLASHftvolcite] = ACTIONS(6433), - [anon_sym_BSLASHsvolcite] = ACTIONS(6433), - [anon_sym_BSLASHSvolcite] = ACTIONS(6433), - [anon_sym_BSLASHtvolcite] = ACTIONS(6433), - [anon_sym_BSLASHTvolcite] = ACTIONS(6433), - [anon_sym_BSLASHavolcite] = ACTIONS(6433), - [anon_sym_BSLASHAvolcite] = ACTIONS(6433), - [anon_sym_BSLASHnotecite] = ACTIONS(6433), - [anon_sym_BSLASHNotecite] = ACTIONS(6433), - [anon_sym_BSLASHpnotecite] = ACTIONS(6433), - [anon_sym_BSLASHPnotecite] = ACTIONS(6433), - [anon_sym_BSLASHfnotecite] = ACTIONS(6433), - [anon_sym_BSLASHlabel] = ACTIONS(6433), - [anon_sym_BSLASHref] = ACTIONS(6433), - [anon_sym_BSLASHeqref] = ACTIONS(6433), - [anon_sym_BSLASHvref] = ACTIONS(6433), - [anon_sym_BSLASHVref] = ACTIONS(6433), - [anon_sym_BSLASHautoref] = ACTIONS(6433), - [anon_sym_BSLASHpageref] = ACTIONS(6433), - [anon_sym_BSLASHcref] = ACTIONS(6433), - [anon_sym_BSLASHCref] = ACTIONS(6433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnameCref] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHlabelcref] = ACTIONS(6433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCrefrange] = ACTIONS(6433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnewlabel] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6435), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHdef] = ACTIONS(6433), - [anon_sym_BSLASHlet] = ACTIONS(6433), - [anon_sym_BSLASHleft] = ACTIONS(6433), - [anon_sym_BSLASHbig] = ACTIONS(6433), - [anon_sym_BSLASHBig] = ACTIONS(6433), - [anon_sym_BSLASHbigg] = ACTIONS(6433), - [anon_sym_BSLASHBigg] = ACTIONS(6433), - [anon_sym_BSLASHbigl] = ACTIONS(6433), - [anon_sym_BSLASHBigl] = ACTIONS(6433), - [anon_sym_BSLASHbiggl] = ACTIONS(6433), - [anon_sym_BSLASHBiggl] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6433), - [anon_sym_BSLASHgls] = ACTIONS(6433), - [anon_sym_BSLASHGls] = ACTIONS(6433), - [anon_sym_BSLASHGLS] = ACTIONS(6433), - [anon_sym_BSLASHglspl] = ACTIONS(6433), - [anon_sym_BSLASHGlspl] = ACTIONS(6433), - [anon_sym_BSLASHGLSpl] = ACTIONS(6433), - [anon_sym_BSLASHglsdisp] = ACTIONS(6433), - [anon_sym_BSLASHglslink] = ACTIONS(6433), - [anon_sym_BSLASHglstext] = ACTIONS(6433), - [anon_sym_BSLASHGlstext] = ACTIONS(6433), - [anon_sym_BSLASHGLStext] = ACTIONS(6433), - [anon_sym_BSLASHglsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6433), - [anon_sym_BSLASHglsplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSplural] = ACTIONS(6433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHglsname] = ACTIONS(6433), - [anon_sym_BSLASHGlsname] = ACTIONS(6433), - [anon_sym_BSLASHGLSname] = ACTIONS(6433), - [anon_sym_BSLASHglssymbol] = ACTIONS(6433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6433), - [anon_sym_BSLASHglsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6433), - [anon_sym_BSLASHglsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6433), - [anon_sym_BSLASHglsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6433), - [anon_sym_BSLASHglsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6433), - [anon_sym_BSLASHglsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6433), - [anon_sym_BSLASHnewacronym] = ACTIONS(6433), - [anon_sym_BSLASHacrshort] = ACTIONS(6433), - [anon_sym_BSLASHAcrshort] = ACTIONS(6433), - [anon_sym_BSLASHACRshort] = ACTIONS(6433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6433), - [anon_sym_BSLASHacrlong] = ACTIONS(6433), - [anon_sym_BSLASHAcrlong] = ACTIONS(6433), - [anon_sym_BSLASHACRlong] = ACTIONS(6433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6433), - [anon_sym_BSLASHacrfull] = ACTIONS(6433), - [anon_sym_BSLASHAcrfull] = ACTIONS(6433), - [anon_sym_BSLASHACRfull] = ACTIONS(6433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6433), - [anon_sym_BSLASHacs] = ACTIONS(6433), - [anon_sym_BSLASHAcs] = ACTIONS(6433), - [anon_sym_BSLASHacsp] = ACTIONS(6433), - [anon_sym_BSLASHAcsp] = ACTIONS(6433), - [anon_sym_BSLASHacl] = ACTIONS(6433), - [anon_sym_BSLASHAcl] = ACTIONS(6433), - [anon_sym_BSLASHaclp] = ACTIONS(6433), - [anon_sym_BSLASHAclp] = ACTIONS(6433), - [anon_sym_BSLASHacf] = ACTIONS(6433), - [anon_sym_BSLASHAcf] = ACTIONS(6433), - [anon_sym_BSLASHacfp] = ACTIONS(6433), - [anon_sym_BSLASHAcfp] = ACTIONS(6433), - [anon_sym_BSLASHac] = ACTIONS(6433), - [anon_sym_BSLASHAc] = ACTIONS(6433), - [anon_sym_BSLASHacp] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6433), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6433), - [anon_sym_BSLASHcolor] = ACTIONS(6433), - [anon_sym_BSLASHcolorbox] = ACTIONS(6433), - [anon_sym_BSLASHtextcolor] = ACTIONS(6433), - [anon_sym_BSLASHpagecolor] = ACTIONS(6433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6433), - [anon_sym_BSLASHtext] = ACTIONS(6433), - [anon_sym_BSLASHintertext] = ACTIONS(6433), - [anon_sym_shortintertext] = ACTIONS(6433), - }, - [1862] = { - [sym_command_name] = ACTIONS(6429), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6429), - [anon_sym_LPAREN] = ACTIONS(6431), - [anon_sym_RPAREN] = ACTIONS(6431), - [anon_sym_LBRACE] = ACTIONS(6431), - [anon_sym_RBRACE] = ACTIONS(6431), - [anon_sym_BSLASHand] = ACTIONS(6429), - [sym_word] = ACTIONS(6429), - [sym_placeholder] = ACTIONS(6431), - [anon_sym_PLUS] = ACTIONS(6431), - [anon_sym_DASH] = ACTIONS(6431), - [anon_sym_STAR] = ACTIONS(6431), - [anon_sym_SLASH] = ACTIONS(6431), - [anon_sym_LT] = ACTIONS(6429), - [anon_sym_GT] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(6429), - [anon_sym_PIPE] = ACTIONS(6429), - [anon_sym_COLON] = ACTIONS(6429), - [anon_sym_SQUOTE] = ACTIONS(6429), - [anon_sym__] = ACTIONS(6431), - [anon_sym_CARET] = ACTIONS(6431), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6431), - [anon_sym_DOLLAR] = ACTIONS(6429), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6431), - [anon_sym_BSLASHtitle] = ACTIONS(6429), - [anon_sym_BSLASHauthor] = ACTIONS(6429), - [anon_sym_BSLASHusepackage] = ACTIONS(6429), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6429), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6429), - [anon_sym_BSLASHinclude] = ACTIONS(6429), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6429), - [anon_sym_BSLASHinput] = ACTIONS(6429), - [anon_sym_BSLASHsubfile] = ACTIONS(6429), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6429), - [anon_sym_BSLASHbibliography] = ACTIONS(6429), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6429), - [anon_sym_BSLASHincludesvg] = ACTIONS(6429), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6429), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6429), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6429), - [anon_sym_BSLASHimport] = ACTIONS(6429), - [anon_sym_BSLASHsubimport] = ACTIONS(6429), - [anon_sym_BSLASHinputfrom] = ACTIONS(6429), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6429), - [anon_sym_BSLASHincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHcaption] = ACTIONS(6429), - [anon_sym_BSLASHcite] = ACTIONS(6429), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCite] = ACTIONS(6429), - [anon_sym_BSLASHnocite] = ACTIONS(6429), - [anon_sym_BSLASHcitet] = ACTIONS(6429), - [anon_sym_BSLASHcitep] = ACTIONS(6429), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteauthor] = ACTIONS(6429), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6429), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitetitle] = ACTIONS(6429), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteyear] = ACTIONS(6429), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitedate] = ACTIONS(6429), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteurl] = ACTIONS(6429), - [anon_sym_BSLASHfullcite] = ACTIONS(6429), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6429), - [anon_sym_BSLASHcitealt] = ACTIONS(6429), - [anon_sym_BSLASHcitealp] = ACTIONS(6429), - [anon_sym_BSLASHcitetext] = ACTIONS(6429), - [anon_sym_BSLASHparencite] = ACTIONS(6429), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHParencite] = ACTIONS(6429), - [anon_sym_BSLASHfootcite] = ACTIONS(6429), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6429), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6429), - [anon_sym_BSLASHtextcite] = ACTIONS(6429), - [anon_sym_BSLASHTextcite] = ACTIONS(6429), - [anon_sym_BSLASHsmartcite] = ACTIONS(6429), - [anon_sym_BSLASHSmartcite] = ACTIONS(6429), - [anon_sym_BSLASHsupercite] = ACTIONS(6429), - [anon_sym_BSLASHautocite] = ACTIONS(6429), - [anon_sym_BSLASHAutocite] = ACTIONS(6429), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHvolcite] = ACTIONS(6429), - [anon_sym_BSLASHVolcite] = ACTIONS(6429), - [anon_sym_BSLASHpvolcite] = ACTIONS(6429), - [anon_sym_BSLASHPvolcite] = ACTIONS(6429), - [anon_sym_BSLASHfvolcite] = ACTIONS(6429), - [anon_sym_BSLASHftvolcite] = ACTIONS(6429), - [anon_sym_BSLASHsvolcite] = ACTIONS(6429), - [anon_sym_BSLASHSvolcite] = ACTIONS(6429), - [anon_sym_BSLASHtvolcite] = ACTIONS(6429), - [anon_sym_BSLASHTvolcite] = ACTIONS(6429), - [anon_sym_BSLASHavolcite] = ACTIONS(6429), - [anon_sym_BSLASHAvolcite] = ACTIONS(6429), - [anon_sym_BSLASHnotecite] = ACTIONS(6429), - [anon_sym_BSLASHNotecite] = ACTIONS(6429), - [anon_sym_BSLASHpnotecite] = ACTIONS(6429), - [anon_sym_BSLASHPnotecite] = ACTIONS(6429), - [anon_sym_BSLASHfnotecite] = ACTIONS(6429), - [anon_sym_BSLASHlabel] = ACTIONS(6429), - [anon_sym_BSLASHref] = ACTIONS(6429), - [anon_sym_BSLASHeqref] = ACTIONS(6429), - [anon_sym_BSLASHvref] = ACTIONS(6429), - [anon_sym_BSLASHVref] = ACTIONS(6429), - [anon_sym_BSLASHautoref] = ACTIONS(6429), - [anon_sym_BSLASHpageref] = ACTIONS(6429), - [anon_sym_BSLASHcref] = ACTIONS(6429), - [anon_sym_BSLASHCref] = ACTIONS(6429), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnameCref] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHlabelcref] = ACTIONS(6429), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCrefrange] = ACTIONS(6429), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnewlabel] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6429), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6429), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6431), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHdef] = ACTIONS(6429), - [anon_sym_BSLASHlet] = ACTIONS(6429), - [anon_sym_BSLASHleft] = ACTIONS(6429), - [anon_sym_BSLASHbig] = ACTIONS(6429), - [anon_sym_BSLASHBig] = ACTIONS(6429), - [anon_sym_BSLASHbigg] = ACTIONS(6429), - [anon_sym_BSLASHBigg] = ACTIONS(6429), - [anon_sym_BSLASHbigl] = ACTIONS(6429), - [anon_sym_BSLASHBigl] = ACTIONS(6429), - [anon_sym_BSLASHbiggl] = ACTIONS(6429), - [anon_sym_BSLASHBiggl] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6429), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6429), - [anon_sym_BSLASHgls] = ACTIONS(6429), - [anon_sym_BSLASHGls] = ACTIONS(6429), - [anon_sym_BSLASHGLS] = ACTIONS(6429), - [anon_sym_BSLASHglspl] = ACTIONS(6429), - [anon_sym_BSLASHGlspl] = ACTIONS(6429), - [anon_sym_BSLASHGLSpl] = ACTIONS(6429), - [anon_sym_BSLASHglsdisp] = ACTIONS(6429), - [anon_sym_BSLASHglslink] = ACTIONS(6429), - [anon_sym_BSLASHglstext] = ACTIONS(6429), - [anon_sym_BSLASHGlstext] = ACTIONS(6429), - [anon_sym_BSLASHGLStext] = ACTIONS(6429), - [anon_sym_BSLASHglsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6429), - [anon_sym_BSLASHglsplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSplural] = ACTIONS(6429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHglsname] = ACTIONS(6429), - [anon_sym_BSLASHGlsname] = ACTIONS(6429), - [anon_sym_BSLASHGLSname] = ACTIONS(6429), - [anon_sym_BSLASHglssymbol] = ACTIONS(6429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6429), - [anon_sym_BSLASHglsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6429), - [anon_sym_BSLASHglsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6429), - [anon_sym_BSLASHglsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6429), - [anon_sym_BSLASHglsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6429), - [anon_sym_BSLASHglsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6429), - [anon_sym_BSLASHnewacronym] = ACTIONS(6429), - [anon_sym_BSLASHacrshort] = ACTIONS(6429), - [anon_sym_BSLASHAcrshort] = ACTIONS(6429), - [anon_sym_BSLASHACRshort] = ACTIONS(6429), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6429), - [anon_sym_BSLASHacrlong] = ACTIONS(6429), - [anon_sym_BSLASHAcrlong] = ACTIONS(6429), - [anon_sym_BSLASHACRlong] = ACTIONS(6429), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6429), - [anon_sym_BSLASHacrfull] = ACTIONS(6429), - [anon_sym_BSLASHAcrfull] = ACTIONS(6429), - [anon_sym_BSLASHACRfull] = ACTIONS(6429), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6429), - [anon_sym_BSLASHacs] = ACTIONS(6429), - [anon_sym_BSLASHAcs] = ACTIONS(6429), - [anon_sym_BSLASHacsp] = ACTIONS(6429), - [anon_sym_BSLASHAcsp] = ACTIONS(6429), - [anon_sym_BSLASHacl] = ACTIONS(6429), - [anon_sym_BSLASHAcl] = ACTIONS(6429), - [anon_sym_BSLASHaclp] = ACTIONS(6429), - [anon_sym_BSLASHAclp] = ACTIONS(6429), - [anon_sym_BSLASHacf] = ACTIONS(6429), - [anon_sym_BSLASHAcf] = ACTIONS(6429), - [anon_sym_BSLASHacfp] = ACTIONS(6429), - [anon_sym_BSLASHAcfp] = ACTIONS(6429), - [anon_sym_BSLASHac] = ACTIONS(6429), - [anon_sym_BSLASHAc] = ACTIONS(6429), - [anon_sym_BSLASHacp] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6429), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6429), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6429), - [anon_sym_BSLASHcolor] = ACTIONS(6429), - [anon_sym_BSLASHcolorbox] = ACTIONS(6429), - [anon_sym_BSLASHtextcolor] = ACTIONS(6429), - [anon_sym_BSLASHpagecolor] = ACTIONS(6429), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6429), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6429), - [anon_sym_BSLASHtext] = ACTIONS(6429), - [anon_sym_BSLASHintertext] = ACTIONS(6429), - [anon_sym_shortintertext] = ACTIONS(6429), - }, - [1863] = { - [sym_command_name] = ACTIONS(6425), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6425), - [anon_sym_LPAREN] = ACTIONS(6427), - [anon_sym_RPAREN] = ACTIONS(6427), - [anon_sym_LBRACE] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(6427), - [anon_sym_BSLASHand] = ACTIONS(6425), - [sym_word] = ACTIONS(6425), - [sym_placeholder] = ACTIONS(6427), - [anon_sym_PLUS] = ACTIONS(6427), - [anon_sym_DASH] = ACTIONS(6427), - [anon_sym_STAR] = ACTIONS(6427), - [anon_sym_SLASH] = ACTIONS(6427), - [anon_sym_LT] = ACTIONS(6425), - [anon_sym_GT] = ACTIONS(6425), - [anon_sym_BANG] = ACTIONS(6425), - [anon_sym_PIPE] = ACTIONS(6425), - [anon_sym_COLON] = ACTIONS(6425), - [anon_sym_SQUOTE] = ACTIONS(6425), - [anon_sym__] = ACTIONS(6427), - [anon_sym_CARET] = ACTIONS(6427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6427), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6427), - [anon_sym_DOLLAR] = ACTIONS(6425), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6427), - [anon_sym_BSLASHtitle] = ACTIONS(6425), - [anon_sym_BSLASHauthor] = ACTIONS(6425), - [anon_sym_BSLASHusepackage] = ACTIONS(6425), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6425), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6425), - [anon_sym_BSLASHinclude] = ACTIONS(6425), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6425), - [anon_sym_BSLASHinput] = ACTIONS(6425), - [anon_sym_BSLASHsubfile] = ACTIONS(6425), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6425), - [anon_sym_BSLASHbibliography] = ACTIONS(6425), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6425), - [anon_sym_BSLASHincludesvg] = ACTIONS(6425), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6425), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6425), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6425), - [anon_sym_BSLASHimport] = ACTIONS(6425), - [anon_sym_BSLASHsubimport] = ACTIONS(6425), - [anon_sym_BSLASHinputfrom] = ACTIONS(6425), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6425), - [anon_sym_BSLASHincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHcaption] = ACTIONS(6425), - [anon_sym_BSLASHcite] = ACTIONS(6425), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCite] = ACTIONS(6425), - [anon_sym_BSLASHnocite] = ACTIONS(6425), - [anon_sym_BSLASHcitet] = ACTIONS(6425), - [anon_sym_BSLASHcitep] = ACTIONS(6425), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteauthor] = ACTIONS(6425), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6425), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitetitle] = ACTIONS(6425), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteyear] = ACTIONS(6425), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitedate] = ACTIONS(6425), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteurl] = ACTIONS(6425), - [anon_sym_BSLASHfullcite] = ACTIONS(6425), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6425), - [anon_sym_BSLASHcitealt] = ACTIONS(6425), - [anon_sym_BSLASHcitealp] = ACTIONS(6425), - [anon_sym_BSLASHcitetext] = ACTIONS(6425), - [anon_sym_BSLASHparencite] = ACTIONS(6425), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHParencite] = ACTIONS(6425), - [anon_sym_BSLASHfootcite] = ACTIONS(6425), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6425), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6425), - [anon_sym_BSLASHtextcite] = ACTIONS(6425), - [anon_sym_BSLASHTextcite] = ACTIONS(6425), - [anon_sym_BSLASHsmartcite] = ACTIONS(6425), - [anon_sym_BSLASHSmartcite] = ACTIONS(6425), - [anon_sym_BSLASHsupercite] = ACTIONS(6425), - [anon_sym_BSLASHautocite] = ACTIONS(6425), - [anon_sym_BSLASHAutocite] = ACTIONS(6425), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHvolcite] = ACTIONS(6425), - [anon_sym_BSLASHVolcite] = ACTIONS(6425), - [anon_sym_BSLASHpvolcite] = ACTIONS(6425), - [anon_sym_BSLASHPvolcite] = ACTIONS(6425), - [anon_sym_BSLASHfvolcite] = ACTIONS(6425), - [anon_sym_BSLASHftvolcite] = ACTIONS(6425), - [anon_sym_BSLASHsvolcite] = ACTIONS(6425), - [anon_sym_BSLASHSvolcite] = ACTIONS(6425), - [anon_sym_BSLASHtvolcite] = ACTIONS(6425), - [anon_sym_BSLASHTvolcite] = ACTIONS(6425), - [anon_sym_BSLASHavolcite] = ACTIONS(6425), - [anon_sym_BSLASHAvolcite] = ACTIONS(6425), - [anon_sym_BSLASHnotecite] = ACTIONS(6425), - [anon_sym_BSLASHNotecite] = ACTIONS(6425), - [anon_sym_BSLASHpnotecite] = ACTIONS(6425), - [anon_sym_BSLASHPnotecite] = ACTIONS(6425), - [anon_sym_BSLASHfnotecite] = ACTIONS(6425), - [anon_sym_BSLASHlabel] = ACTIONS(6425), - [anon_sym_BSLASHref] = ACTIONS(6425), - [anon_sym_BSLASHeqref] = ACTIONS(6425), - [anon_sym_BSLASHvref] = ACTIONS(6425), - [anon_sym_BSLASHVref] = ACTIONS(6425), - [anon_sym_BSLASHautoref] = ACTIONS(6425), - [anon_sym_BSLASHpageref] = ACTIONS(6425), - [anon_sym_BSLASHcref] = ACTIONS(6425), - [anon_sym_BSLASHCref] = ACTIONS(6425), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnameCref] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHlabelcref] = ACTIONS(6425), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCrefrange] = ACTIONS(6425), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnewlabel] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6425), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6425), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6427), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHdef] = ACTIONS(6425), - [anon_sym_BSLASHlet] = ACTIONS(6425), - [anon_sym_BSLASHleft] = ACTIONS(6425), - [anon_sym_BSLASHbig] = ACTIONS(6425), - [anon_sym_BSLASHBig] = ACTIONS(6425), - [anon_sym_BSLASHbigg] = ACTIONS(6425), - [anon_sym_BSLASHBigg] = ACTIONS(6425), - [anon_sym_BSLASHbigl] = ACTIONS(6425), - [anon_sym_BSLASHBigl] = ACTIONS(6425), - [anon_sym_BSLASHbiggl] = ACTIONS(6425), - [anon_sym_BSLASHBiggl] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6425), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6425), - [anon_sym_BSLASHgls] = ACTIONS(6425), - [anon_sym_BSLASHGls] = ACTIONS(6425), - [anon_sym_BSLASHGLS] = ACTIONS(6425), - [anon_sym_BSLASHglspl] = ACTIONS(6425), - [anon_sym_BSLASHGlspl] = ACTIONS(6425), - [anon_sym_BSLASHGLSpl] = ACTIONS(6425), - [anon_sym_BSLASHglsdisp] = ACTIONS(6425), - [anon_sym_BSLASHglslink] = ACTIONS(6425), - [anon_sym_BSLASHglstext] = ACTIONS(6425), - [anon_sym_BSLASHGlstext] = ACTIONS(6425), - [anon_sym_BSLASHGLStext] = ACTIONS(6425), - [anon_sym_BSLASHglsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6425), - [anon_sym_BSLASHglsplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSplural] = ACTIONS(6425), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHglsname] = ACTIONS(6425), - [anon_sym_BSLASHGlsname] = ACTIONS(6425), - [anon_sym_BSLASHGLSname] = ACTIONS(6425), - [anon_sym_BSLASHglssymbol] = ACTIONS(6425), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6425), - [anon_sym_BSLASHglsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6425), - [anon_sym_BSLASHglsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6425), - [anon_sym_BSLASHglsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6425), - [anon_sym_BSLASHglsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6425), - [anon_sym_BSLASHglsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6425), - [anon_sym_BSLASHnewacronym] = ACTIONS(6425), - [anon_sym_BSLASHacrshort] = ACTIONS(6425), - [anon_sym_BSLASHAcrshort] = ACTIONS(6425), - [anon_sym_BSLASHACRshort] = ACTIONS(6425), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6425), - [anon_sym_BSLASHacrlong] = ACTIONS(6425), - [anon_sym_BSLASHAcrlong] = ACTIONS(6425), - [anon_sym_BSLASHACRlong] = ACTIONS(6425), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6425), - [anon_sym_BSLASHacrfull] = ACTIONS(6425), - [anon_sym_BSLASHAcrfull] = ACTIONS(6425), - [anon_sym_BSLASHACRfull] = ACTIONS(6425), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6425), - [anon_sym_BSLASHacs] = ACTIONS(6425), - [anon_sym_BSLASHAcs] = ACTIONS(6425), - [anon_sym_BSLASHacsp] = ACTIONS(6425), - [anon_sym_BSLASHAcsp] = ACTIONS(6425), - [anon_sym_BSLASHacl] = ACTIONS(6425), - [anon_sym_BSLASHAcl] = ACTIONS(6425), - [anon_sym_BSLASHaclp] = ACTIONS(6425), - [anon_sym_BSLASHAclp] = ACTIONS(6425), - [anon_sym_BSLASHacf] = ACTIONS(6425), - [anon_sym_BSLASHAcf] = ACTIONS(6425), - [anon_sym_BSLASHacfp] = ACTIONS(6425), - [anon_sym_BSLASHAcfp] = ACTIONS(6425), - [anon_sym_BSLASHac] = ACTIONS(6425), - [anon_sym_BSLASHAc] = ACTIONS(6425), - [anon_sym_BSLASHacp] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6425), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6425), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6425), - [anon_sym_BSLASHcolor] = ACTIONS(6425), - [anon_sym_BSLASHcolorbox] = ACTIONS(6425), - [anon_sym_BSLASHtextcolor] = ACTIONS(6425), - [anon_sym_BSLASHpagecolor] = ACTIONS(6425), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6425), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6425), - [anon_sym_BSLASHtext] = ACTIONS(6425), - [anon_sym_BSLASHintertext] = ACTIONS(6425), - [anon_sym_shortintertext] = ACTIONS(6425), - }, - [1864] = { - [sym_command_name] = ACTIONS(6421), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6421), - [anon_sym_LPAREN] = ACTIONS(6423), - [anon_sym_RPAREN] = ACTIONS(6423), - [anon_sym_LBRACE] = ACTIONS(6423), - [anon_sym_RBRACE] = ACTIONS(6423), - [anon_sym_BSLASHand] = ACTIONS(6421), - [sym_word] = ACTIONS(6421), - [sym_placeholder] = ACTIONS(6423), - [anon_sym_PLUS] = ACTIONS(6423), - [anon_sym_DASH] = ACTIONS(6423), - [anon_sym_STAR] = ACTIONS(6423), - [anon_sym_SLASH] = ACTIONS(6423), - [anon_sym_LT] = ACTIONS(6421), - [anon_sym_GT] = ACTIONS(6421), - [anon_sym_BANG] = ACTIONS(6421), - [anon_sym_PIPE] = ACTIONS(6421), - [anon_sym_COLON] = ACTIONS(6421), - [anon_sym_SQUOTE] = ACTIONS(6421), - [anon_sym__] = ACTIONS(6423), - [anon_sym_CARET] = ACTIONS(6423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6423), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6423), - [anon_sym_DOLLAR] = ACTIONS(6421), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6423), - [anon_sym_BSLASHtitle] = ACTIONS(6421), - [anon_sym_BSLASHauthor] = ACTIONS(6421), - [anon_sym_BSLASHusepackage] = ACTIONS(6421), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6421), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6421), - [anon_sym_BSLASHinclude] = ACTIONS(6421), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6421), - [anon_sym_BSLASHinput] = ACTIONS(6421), - [anon_sym_BSLASHsubfile] = ACTIONS(6421), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6421), - [anon_sym_BSLASHbibliography] = ACTIONS(6421), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6421), - [anon_sym_BSLASHincludesvg] = ACTIONS(6421), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6421), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6421), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6421), - [anon_sym_BSLASHimport] = ACTIONS(6421), - [anon_sym_BSLASHsubimport] = ACTIONS(6421), - [anon_sym_BSLASHinputfrom] = ACTIONS(6421), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6421), - [anon_sym_BSLASHincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHcaption] = ACTIONS(6421), - [anon_sym_BSLASHcite] = ACTIONS(6421), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCite] = ACTIONS(6421), - [anon_sym_BSLASHnocite] = ACTIONS(6421), - [anon_sym_BSLASHcitet] = ACTIONS(6421), - [anon_sym_BSLASHcitep] = ACTIONS(6421), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteauthor] = ACTIONS(6421), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6421), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitetitle] = ACTIONS(6421), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteyear] = ACTIONS(6421), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitedate] = ACTIONS(6421), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteurl] = ACTIONS(6421), - [anon_sym_BSLASHfullcite] = ACTIONS(6421), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6421), - [anon_sym_BSLASHcitealt] = ACTIONS(6421), - [anon_sym_BSLASHcitealp] = ACTIONS(6421), - [anon_sym_BSLASHcitetext] = ACTIONS(6421), - [anon_sym_BSLASHparencite] = ACTIONS(6421), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHParencite] = ACTIONS(6421), - [anon_sym_BSLASHfootcite] = ACTIONS(6421), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6421), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6421), - [anon_sym_BSLASHtextcite] = ACTIONS(6421), - [anon_sym_BSLASHTextcite] = ACTIONS(6421), - [anon_sym_BSLASHsmartcite] = ACTIONS(6421), - [anon_sym_BSLASHSmartcite] = ACTIONS(6421), - [anon_sym_BSLASHsupercite] = ACTIONS(6421), - [anon_sym_BSLASHautocite] = ACTIONS(6421), - [anon_sym_BSLASHAutocite] = ACTIONS(6421), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHvolcite] = ACTIONS(6421), - [anon_sym_BSLASHVolcite] = ACTIONS(6421), - [anon_sym_BSLASHpvolcite] = ACTIONS(6421), - [anon_sym_BSLASHPvolcite] = ACTIONS(6421), - [anon_sym_BSLASHfvolcite] = ACTIONS(6421), - [anon_sym_BSLASHftvolcite] = ACTIONS(6421), - [anon_sym_BSLASHsvolcite] = ACTIONS(6421), - [anon_sym_BSLASHSvolcite] = ACTIONS(6421), - [anon_sym_BSLASHtvolcite] = ACTIONS(6421), - [anon_sym_BSLASHTvolcite] = ACTIONS(6421), - [anon_sym_BSLASHavolcite] = ACTIONS(6421), - [anon_sym_BSLASHAvolcite] = ACTIONS(6421), - [anon_sym_BSLASHnotecite] = ACTIONS(6421), - [anon_sym_BSLASHNotecite] = ACTIONS(6421), - [anon_sym_BSLASHpnotecite] = ACTIONS(6421), - [anon_sym_BSLASHPnotecite] = ACTIONS(6421), - [anon_sym_BSLASHfnotecite] = ACTIONS(6421), - [anon_sym_BSLASHlabel] = ACTIONS(6421), - [anon_sym_BSLASHref] = ACTIONS(6421), - [anon_sym_BSLASHeqref] = ACTIONS(6421), - [anon_sym_BSLASHvref] = ACTIONS(6421), - [anon_sym_BSLASHVref] = ACTIONS(6421), - [anon_sym_BSLASHautoref] = ACTIONS(6421), - [anon_sym_BSLASHpageref] = ACTIONS(6421), - [anon_sym_BSLASHcref] = ACTIONS(6421), - [anon_sym_BSLASHCref] = ACTIONS(6421), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnameCref] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHlabelcref] = ACTIONS(6421), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCrefrange] = ACTIONS(6421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnewlabel] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6421), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6421), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6423), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHdef] = ACTIONS(6421), - [anon_sym_BSLASHlet] = ACTIONS(6421), - [anon_sym_BSLASHleft] = ACTIONS(6421), - [anon_sym_BSLASHbig] = ACTIONS(6421), - [anon_sym_BSLASHBig] = ACTIONS(6421), - [anon_sym_BSLASHbigg] = ACTIONS(6421), - [anon_sym_BSLASHBigg] = ACTIONS(6421), - [anon_sym_BSLASHbigl] = ACTIONS(6421), - [anon_sym_BSLASHBigl] = ACTIONS(6421), - [anon_sym_BSLASHbiggl] = ACTIONS(6421), - [anon_sym_BSLASHBiggl] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6421), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6421), - [anon_sym_BSLASHgls] = ACTIONS(6421), - [anon_sym_BSLASHGls] = ACTIONS(6421), - [anon_sym_BSLASHGLS] = ACTIONS(6421), - [anon_sym_BSLASHglspl] = ACTIONS(6421), - [anon_sym_BSLASHGlspl] = ACTIONS(6421), - [anon_sym_BSLASHGLSpl] = ACTIONS(6421), - [anon_sym_BSLASHglsdisp] = ACTIONS(6421), - [anon_sym_BSLASHglslink] = ACTIONS(6421), - [anon_sym_BSLASHglstext] = ACTIONS(6421), - [anon_sym_BSLASHGlstext] = ACTIONS(6421), - [anon_sym_BSLASHGLStext] = ACTIONS(6421), - [anon_sym_BSLASHglsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6421), - [anon_sym_BSLASHglsplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSplural] = ACTIONS(6421), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHglsname] = ACTIONS(6421), - [anon_sym_BSLASHGlsname] = ACTIONS(6421), - [anon_sym_BSLASHGLSname] = ACTIONS(6421), - [anon_sym_BSLASHglssymbol] = ACTIONS(6421), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6421), - [anon_sym_BSLASHglsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6421), - [anon_sym_BSLASHglsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6421), - [anon_sym_BSLASHglsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6421), - [anon_sym_BSLASHglsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6421), - [anon_sym_BSLASHglsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6421), - [anon_sym_BSLASHnewacronym] = ACTIONS(6421), - [anon_sym_BSLASHacrshort] = ACTIONS(6421), - [anon_sym_BSLASHAcrshort] = ACTIONS(6421), - [anon_sym_BSLASHACRshort] = ACTIONS(6421), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6421), - [anon_sym_BSLASHacrlong] = ACTIONS(6421), - [anon_sym_BSLASHAcrlong] = ACTIONS(6421), - [anon_sym_BSLASHACRlong] = ACTIONS(6421), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6421), - [anon_sym_BSLASHacrfull] = ACTIONS(6421), - [anon_sym_BSLASHAcrfull] = ACTIONS(6421), - [anon_sym_BSLASHACRfull] = ACTIONS(6421), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6421), - [anon_sym_BSLASHacs] = ACTIONS(6421), - [anon_sym_BSLASHAcs] = ACTIONS(6421), - [anon_sym_BSLASHacsp] = ACTIONS(6421), - [anon_sym_BSLASHAcsp] = ACTIONS(6421), - [anon_sym_BSLASHacl] = ACTIONS(6421), - [anon_sym_BSLASHAcl] = ACTIONS(6421), - [anon_sym_BSLASHaclp] = ACTIONS(6421), - [anon_sym_BSLASHAclp] = ACTIONS(6421), - [anon_sym_BSLASHacf] = ACTIONS(6421), - [anon_sym_BSLASHAcf] = ACTIONS(6421), - [anon_sym_BSLASHacfp] = ACTIONS(6421), - [anon_sym_BSLASHAcfp] = ACTIONS(6421), - [anon_sym_BSLASHac] = ACTIONS(6421), - [anon_sym_BSLASHAc] = ACTIONS(6421), - [anon_sym_BSLASHacp] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6421), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6421), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6421), - [anon_sym_BSLASHcolor] = ACTIONS(6421), - [anon_sym_BSLASHcolorbox] = ACTIONS(6421), - [anon_sym_BSLASHtextcolor] = ACTIONS(6421), - [anon_sym_BSLASHpagecolor] = ACTIONS(6421), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6421), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6421), - [anon_sym_BSLASHtext] = ACTIONS(6421), - [anon_sym_BSLASHintertext] = ACTIONS(6421), - [anon_sym_shortintertext] = ACTIONS(6421), - }, - [1865] = { - [sym_command_name] = ACTIONS(6417), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6417), - [anon_sym_LPAREN] = ACTIONS(6419), - [anon_sym_RPAREN] = ACTIONS(6419), - [anon_sym_LBRACE] = ACTIONS(6419), - [anon_sym_RBRACE] = ACTIONS(6419), - [anon_sym_BSLASHand] = ACTIONS(6417), - [sym_word] = ACTIONS(6417), - [sym_placeholder] = ACTIONS(6419), - [anon_sym_PLUS] = ACTIONS(6419), - [anon_sym_DASH] = ACTIONS(6419), - [anon_sym_STAR] = ACTIONS(6419), - [anon_sym_SLASH] = ACTIONS(6419), - [anon_sym_LT] = ACTIONS(6417), - [anon_sym_GT] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(6417), - [anon_sym_PIPE] = ACTIONS(6417), - [anon_sym_COLON] = ACTIONS(6417), - [anon_sym_SQUOTE] = ACTIONS(6417), - [anon_sym__] = ACTIONS(6419), - [anon_sym_CARET] = ACTIONS(6419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6419), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6419), - [anon_sym_DOLLAR] = ACTIONS(6417), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6419), - [anon_sym_BSLASHtitle] = ACTIONS(6417), - [anon_sym_BSLASHauthor] = ACTIONS(6417), - [anon_sym_BSLASHusepackage] = ACTIONS(6417), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6417), - [anon_sym_BSLASHinclude] = ACTIONS(6417), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6417), - [anon_sym_BSLASHinput] = ACTIONS(6417), - [anon_sym_BSLASHsubfile] = ACTIONS(6417), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6417), - [anon_sym_BSLASHbibliography] = ACTIONS(6417), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6417), - [anon_sym_BSLASHincludesvg] = ACTIONS(6417), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6417), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6417), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6417), - [anon_sym_BSLASHimport] = ACTIONS(6417), - [anon_sym_BSLASHsubimport] = ACTIONS(6417), - [anon_sym_BSLASHinputfrom] = ACTIONS(6417), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6417), - [anon_sym_BSLASHincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHcaption] = ACTIONS(6417), - [anon_sym_BSLASHcite] = ACTIONS(6417), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCite] = ACTIONS(6417), - [anon_sym_BSLASHnocite] = ACTIONS(6417), - [anon_sym_BSLASHcitet] = ACTIONS(6417), - [anon_sym_BSLASHcitep] = ACTIONS(6417), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteauthor] = ACTIONS(6417), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6417), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitetitle] = ACTIONS(6417), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteyear] = ACTIONS(6417), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitedate] = ACTIONS(6417), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteurl] = ACTIONS(6417), - [anon_sym_BSLASHfullcite] = ACTIONS(6417), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6417), - [anon_sym_BSLASHcitealt] = ACTIONS(6417), - [anon_sym_BSLASHcitealp] = ACTIONS(6417), - [anon_sym_BSLASHcitetext] = ACTIONS(6417), - [anon_sym_BSLASHparencite] = ACTIONS(6417), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHParencite] = ACTIONS(6417), - [anon_sym_BSLASHfootcite] = ACTIONS(6417), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6417), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6417), - [anon_sym_BSLASHtextcite] = ACTIONS(6417), - [anon_sym_BSLASHTextcite] = ACTIONS(6417), - [anon_sym_BSLASHsmartcite] = ACTIONS(6417), - [anon_sym_BSLASHSmartcite] = ACTIONS(6417), - [anon_sym_BSLASHsupercite] = ACTIONS(6417), - [anon_sym_BSLASHautocite] = ACTIONS(6417), - [anon_sym_BSLASHAutocite] = ACTIONS(6417), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHvolcite] = ACTIONS(6417), - [anon_sym_BSLASHVolcite] = ACTIONS(6417), - [anon_sym_BSLASHpvolcite] = ACTIONS(6417), - [anon_sym_BSLASHPvolcite] = ACTIONS(6417), - [anon_sym_BSLASHfvolcite] = ACTIONS(6417), - [anon_sym_BSLASHftvolcite] = ACTIONS(6417), - [anon_sym_BSLASHsvolcite] = ACTIONS(6417), - [anon_sym_BSLASHSvolcite] = ACTIONS(6417), - [anon_sym_BSLASHtvolcite] = ACTIONS(6417), - [anon_sym_BSLASHTvolcite] = ACTIONS(6417), - [anon_sym_BSLASHavolcite] = ACTIONS(6417), - [anon_sym_BSLASHAvolcite] = ACTIONS(6417), - [anon_sym_BSLASHnotecite] = ACTIONS(6417), - [anon_sym_BSLASHNotecite] = ACTIONS(6417), - [anon_sym_BSLASHpnotecite] = ACTIONS(6417), - [anon_sym_BSLASHPnotecite] = ACTIONS(6417), - [anon_sym_BSLASHfnotecite] = ACTIONS(6417), - [anon_sym_BSLASHlabel] = ACTIONS(6417), - [anon_sym_BSLASHref] = ACTIONS(6417), - [anon_sym_BSLASHeqref] = ACTIONS(6417), - [anon_sym_BSLASHvref] = ACTIONS(6417), - [anon_sym_BSLASHVref] = ACTIONS(6417), - [anon_sym_BSLASHautoref] = ACTIONS(6417), - [anon_sym_BSLASHpageref] = ACTIONS(6417), - [anon_sym_BSLASHcref] = ACTIONS(6417), - [anon_sym_BSLASHCref] = ACTIONS(6417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnameCref] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHlabelcref] = ACTIONS(6417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCrefrange] = ACTIONS(6417), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnewlabel] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6419), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHdef] = ACTIONS(6417), - [anon_sym_BSLASHlet] = ACTIONS(6417), - [anon_sym_BSLASHleft] = ACTIONS(6417), - [anon_sym_BSLASHbig] = ACTIONS(6417), - [anon_sym_BSLASHBig] = ACTIONS(6417), - [anon_sym_BSLASHbigg] = ACTIONS(6417), - [anon_sym_BSLASHBigg] = ACTIONS(6417), - [anon_sym_BSLASHbigl] = ACTIONS(6417), - [anon_sym_BSLASHBigl] = ACTIONS(6417), - [anon_sym_BSLASHbiggl] = ACTIONS(6417), - [anon_sym_BSLASHBiggl] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6417), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6417), - [anon_sym_BSLASHgls] = ACTIONS(6417), - [anon_sym_BSLASHGls] = ACTIONS(6417), - [anon_sym_BSLASHGLS] = ACTIONS(6417), - [anon_sym_BSLASHglspl] = ACTIONS(6417), - [anon_sym_BSLASHGlspl] = ACTIONS(6417), - [anon_sym_BSLASHGLSpl] = ACTIONS(6417), - [anon_sym_BSLASHglsdisp] = ACTIONS(6417), - [anon_sym_BSLASHglslink] = ACTIONS(6417), - [anon_sym_BSLASHglstext] = ACTIONS(6417), - [anon_sym_BSLASHGlstext] = ACTIONS(6417), - [anon_sym_BSLASHGLStext] = ACTIONS(6417), - [anon_sym_BSLASHglsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6417), - [anon_sym_BSLASHglsplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSplural] = ACTIONS(6417), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHglsname] = ACTIONS(6417), - [anon_sym_BSLASHGlsname] = ACTIONS(6417), - [anon_sym_BSLASHGLSname] = ACTIONS(6417), - [anon_sym_BSLASHglssymbol] = ACTIONS(6417), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6417), - [anon_sym_BSLASHglsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6417), - [anon_sym_BSLASHglsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6417), - [anon_sym_BSLASHglsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6417), - [anon_sym_BSLASHglsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6417), - [anon_sym_BSLASHglsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6417), - [anon_sym_BSLASHnewacronym] = ACTIONS(6417), - [anon_sym_BSLASHacrshort] = ACTIONS(6417), - [anon_sym_BSLASHAcrshort] = ACTIONS(6417), - [anon_sym_BSLASHACRshort] = ACTIONS(6417), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6417), - [anon_sym_BSLASHacrlong] = ACTIONS(6417), - [anon_sym_BSLASHAcrlong] = ACTIONS(6417), - [anon_sym_BSLASHACRlong] = ACTIONS(6417), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6417), - [anon_sym_BSLASHacrfull] = ACTIONS(6417), - [anon_sym_BSLASHAcrfull] = ACTIONS(6417), - [anon_sym_BSLASHACRfull] = ACTIONS(6417), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6417), - [anon_sym_BSLASHacs] = ACTIONS(6417), - [anon_sym_BSLASHAcs] = ACTIONS(6417), - [anon_sym_BSLASHacsp] = ACTIONS(6417), - [anon_sym_BSLASHAcsp] = ACTIONS(6417), - [anon_sym_BSLASHacl] = ACTIONS(6417), - [anon_sym_BSLASHAcl] = ACTIONS(6417), - [anon_sym_BSLASHaclp] = ACTIONS(6417), - [anon_sym_BSLASHAclp] = ACTIONS(6417), - [anon_sym_BSLASHacf] = ACTIONS(6417), - [anon_sym_BSLASHAcf] = ACTIONS(6417), - [anon_sym_BSLASHacfp] = ACTIONS(6417), - [anon_sym_BSLASHAcfp] = ACTIONS(6417), - [anon_sym_BSLASHac] = ACTIONS(6417), - [anon_sym_BSLASHAc] = ACTIONS(6417), - [anon_sym_BSLASHacp] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6417), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6417), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6417), - [anon_sym_BSLASHcolor] = ACTIONS(6417), - [anon_sym_BSLASHcolorbox] = ACTIONS(6417), - [anon_sym_BSLASHtextcolor] = ACTIONS(6417), - [anon_sym_BSLASHpagecolor] = ACTIONS(6417), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6417), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6417), - [anon_sym_BSLASHtext] = ACTIONS(6417), - [anon_sym_BSLASHintertext] = ACTIONS(6417), - [anon_sym_shortintertext] = ACTIONS(6417), - }, - [1866] = { - [sym_command_name] = ACTIONS(6041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6041), - [anon_sym_LPAREN] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_LBRACE] = ACTIONS(6043), - [anon_sym_RBRACE] = ACTIONS(6043), - [anon_sym_BSLASHand] = ACTIONS(6041), - [sym_word] = ACTIONS(6041), - [sym_placeholder] = ACTIONS(6043), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6043), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6041), - [anon_sym_GT] = ACTIONS(6041), - [anon_sym_BANG] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_SQUOTE] = ACTIONS(6041), - [anon_sym__] = ACTIONS(6043), - [anon_sym_CARET] = ACTIONS(6043), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6043), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6043), - [anon_sym_BSLASHtitle] = ACTIONS(6041), - [anon_sym_BSLASHauthor] = ACTIONS(6041), - [anon_sym_BSLASHusepackage] = ACTIONS(6041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6041), - [anon_sym_BSLASHinclude] = ACTIONS(6041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6041), - [anon_sym_BSLASHinput] = ACTIONS(6041), - [anon_sym_BSLASHsubfile] = ACTIONS(6041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6041), - [anon_sym_BSLASHbibliography] = ACTIONS(6041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6041), - [anon_sym_BSLASHincludesvg] = ACTIONS(6041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6041), - [anon_sym_BSLASHimport] = ACTIONS(6041), - [anon_sym_BSLASHsubimport] = ACTIONS(6041), - [anon_sym_BSLASHinputfrom] = ACTIONS(6041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6041), - [anon_sym_BSLASHincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHcaption] = ACTIONS(6041), - [anon_sym_BSLASHcite] = ACTIONS(6041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCite] = ACTIONS(6041), - [anon_sym_BSLASHnocite] = ACTIONS(6041), - [anon_sym_BSLASHcitet] = ACTIONS(6041), - [anon_sym_BSLASHcitep] = ACTIONS(6041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteauthor] = ACTIONS(6041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitetitle] = ACTIONS(6041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteyear] = ACTIONS(6041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitedate] = ACTIONS(6041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteurl] = ACTIONS(6041), - [anon_sym_BSLASHfullcite] = ACTIONS(6041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6041), - [anon_sym_BSLASHcitealt] = ACTIONS(6041), - [anon_sym_BSLASHcitealp] = ACTIONS(6041), - [anon_sym_BSLASHcitetext] = ACTIONS(6041), - [anon_sym_BSLASHparencite] = ACTIONS(6041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHParencite] = ACTIONS(6041), - [anon_sym_BSLASHfootcite] = ACTIONS(6041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6041), - [anon_sym_BSLASHtextcite] = ACTIONS(6041), - [anon_sym_BSLASHTextcite] = ACTIONS(6041), - [anon_sym_BSLASHsmartcite] = ACTIONS(6041), - [anon_sym_BSLASHSmartcite] = ACTIONS(6041), - [anon_sym_BSLASHsupercite] = ACTIONS(6041), - [anon_sym_BSLASHautocite] = ACTIONS(6041), - [anon_sym_BSLASHAutocite] = ACTIONS(6041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHvolcite] = ACTIONS(6041), - [anon_sym_BSLASHVolcite] = ACTIONS(6041), - [anon_sym_BSLASHpvolcite] = ACTIONS(6041), - [anon_sym_BSLASHPvolcite] = ACTIONS(6041), - [anon_sym_BSLASHfvolcite] = ACTIONS(6041), - [anon_sym_BSLASHftvolcite] = ACTIONS(6041), - [anon_sym_BSLASHsvolcite] = ACTIONS(6041), - [anon_sym_BSLASHSvolcite] = ACTIONS(6041), - [anon_sym_BSLASHtvolcite] = ACTIONS(6041), - [anon_sym_BSLASHTvolcite] = ACTIONS(6041), - [anon_sym_BSLASHavolcite] = ACTIONS(6041), - [anon_sym_BSLASHAvolcite] = ACTIONS(6041), - [anon_sym_BSLASHnotecite] = ACTIONS(6041), - [anon_sym_BSLASHNotecite] = ACTIONS(6041), - [anon_sym_BSLASHpnotecite] = ACTIONS(6041), - [anon_sym_BSLASHPnotecite] = ACTIONS(6041), - [anon_sym_BSLASHfnotecite] = ACTIONS(6041), - [anon_sym_BSLASHlabel] = ACTIONS(6041), - [anon_sym_BSLASHref] = ACTIONS(6041), - [anon_sym_BSLASHeqref] = ACTIONS(6041), - [anon_sym_BSLASHvref] = ACTIONS(6041), - [anon_sym_BSLASHVref] = ACTIONS(6041), - [anon_sym_BSLASHautoref] = ACTIONS(6041), - [anon_sym_BSLASHpageref] = ACTIONS(6041), - [anon_sym_BSLASHcref] = ACTIONS(6041), - [anon_sym_BSLASHCref] = ACTIONS(6041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnameCref] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHlabelcref] = ACTIONS(6041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCrefrange] = ACTIONS(6041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnewlabel] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6043), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHdef] = ACTIONS(6041), - [anon_sym_BSLASHlet] = ACTIONS(6041), - [anon_sym_BSLASHleft] = ACTIONS(6041), - [anon_sym_BSLASHbig] = ACTIONS(6041), - [anon_sym_BSLASHBig] = ACTIONS(6041), - [anon_sym_BSLASHbigg] = ACTIONS(6041), - [anon_sym_BSLASHBigg] = ACTIONS(6041), - [anon_sym_BSLASHbigl] = ACTIONS(6041), - [anon_sym_BSLASHBigl] = ACTIONS(6041), - [anon_sym_BSLASHbiggl] = ACTIONS(6041), - [anon_sym_BSLASHBiggl] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6041), - [anon_sym_BSLASHgls] = ACTIONS(6041), - [anon_sym_BSLASHGls] = ACTIONS(6041), - [anon_sym_BSLASHGLS] = ACTIONS(6041), - [anon_sym_BSLASHglspl] = ACTIONS(6041), - [anon_sym_BSLASHGlspl] = ACTIONS(6041), - [anon_sym_BSLASHGLSpl] = ACTIONS(6041), - [anon_sym_BSLASHglsdisp] = ACTIONS(6041), - [anon_sym_BSLASHglslink] = ACTIONS(6041), - [anon_sym_BSLASHglstext] = ACTIONS(6041), - [anon_sym_BSLASHGlstext] = ACTIONS(6041), - [anon_sym_BSLASHGLStext] = ACTIONS(6041), - [anon_sym_BSLASHglsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6041), - [anon_sym_BSLASHglsplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSplural] = ACTIONS(6041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHglsname] = ACTIONS(6041), - [anon_sym_BSLASHGlsname] = ACTIONS(6041), - [anon_sym_BSLASHGLSname] = ACTIONS(6041), - [anon_sym_BSLASHglssymbol] = ACTIONS(6041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6041), - [anon_sym_BSLASHglsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6041), - [anon_sym_BSLASHglsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6041), - [anon_sym_BSLASHglsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6041), - [anon_sym_BSLASHglsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6041), - [anon_sym_BSLASHglsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6041), - [anon_sym_BSLASHnewacronym] = ACTIONS(6041), - [anon_sym_BSLASHacrshort] = ACTIONS(6041), - [anon_sym_BSLASHAcrshort] = ACTIONS(6041), - [anon_sym_BSLASHACRshort] = ACTIONS(6041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6041), - [anon_sym_BSLASHacrlong] = ACTIONS(6041), - [anon_sym_BSLASHAcrlong] = ACTIONS(6041), - [anon_sym_BSLASHACRlong] = ACTIONS(6041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6041), - [anon_sym_BSLASHacrfull] = ACTIONS(6041), - [anon_sym_BSLASHAcrfull] = ACTIONS(6041), - [anon_sym_BSLASHACRfull] = ACTIONS(6041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6041), - [anon_sym_BSLASHacs] = ACTIONS(6041), - [anon_sym_BSLASHAcs] = ACTIONS(6041), - [anon_sym_BSLASHacsp] = ACTIONS(6041), - [anon_sym_BSLASHAcsp] = ACTIONS(6041), - [anon_sym_BSLASHacl] = ACTIONS(6041), - [anon_sym_BSLASHAcl] = ACTIONS(6041), - [anon_sym_BSLASHaclp] = ACTIONS(6041), - [anon_sym_BSLASHAclp] = ACTIONS(6041), - [anon_sym_BSLASHacf] = ACTIONS(6041), - [anon_sym_BSLASHAcf] = ACTIONS(6041), - [anon_sym_BSLASHacfp] = ACTIONS(6041), - [anon_sym_BSLASHAcfp] = ACTIONS(6041), - [anon_sym_BSLASHac] = ACTIONS(6041), - [anon_sym_BSLASHAc] = ACTIONS(6041), - [anon_sym_BSLASHacp] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6041), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6041), - [anon_sym_BSLASHcolor] = ACTIONS(6041), - [anon_sym_BSLASHcolorbox] = ACTIONS(6041), - [anon_sym_BSLASHtextcolor] = ACTIONS(6041), - [anon_sym_BSLASHpagecolor] = ACTIONS(6041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6041), - [anon_sym_BSLASHtext] = ACTIONS(6041), - [anon_sym_BSLASHintertext] = ACTIONS(6041), - [anon_sym_shortintertext] = ACTIONS(6041), - }, - [1867] = { - [sym_command_name] = ACTIONS(6413), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6413), - [anon_sym_LPAREN] = ACTIONS(6415), - [anon_sym_RPAREN] = ACTIONS(6415), - [anon_sym_LBRACE] = ACTIONS(6415), - [anon_sym_RBRACE] = ACTIONS(6415), - [anon_sym_BSLASHand] = ACTIONS(6413), - [sym_word] = ACTIONS(6413), - [sym_placeholder] = ACTIONS(6415), - [anon_sym_PLUS] = ACTIONS(6415), - [anon_sym_DASH] = ACTIONS(6415), - [anon_sym_STAR] = ACTIONS(6415), - [anon_sym_SLASH] = ACTIONS(6415), - [anon_sym_LT] = ACTIONS(6413), - [anon_sym_GT] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(6413), - [anon_sym_PIPE] = ACTIONS(6413), - [anon_sym_COLON] = ACTIONS(6413), - [anon_sym_SQUOTE] = ACTIONS(6413), - [anon_sym__] = ACTIONS(6415), - [anon_sym_CARET] = ACTIONS(6415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6415), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6415), - [anon_sym_DOLLAR] = ACTIONS(6413), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6415), - [anon_sym_BSLASHtitle] = ACTIONS(6413), - [anon_sym_BSLASHauthor] = ACTIONS(6413), - [anon_sym_BSLASHusepackage] = ACTIONS(6413), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6413), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6413), - [anon_sym_BSLASHinclude] = ACTIONS(6413), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6413), - [anon_sym_BSLASHinput] = ACTIONS(6413), - [anon_sym_BSLASHsubfile] = ACTIONS(6413), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6413), - [anon_sym_BSLASHbibliography] = ACTIONS(6413), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6413), - [anon_sym_BSLASHincludesvg] = ACTIONS(6413), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6413), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6413), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6413), - [anon_sym_BSLASHimport] = ACTIONS(6413), - [anon_sym_BSLASHsubimport] = ACTIONS(6413), - [anon_sym_BSLASHinputfrom] = ACTIONS(6413), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6413), - [anon_sym_BSLASHincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHcaption] = ACTIONS(6413), - [anon_sym_BSLASHcite] = ACTIONS(6413), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCite] = ACTIONS(6413), - [anon_sym_BSLASHnocite] = ACTIONS(6413), - [anon_sym_BSLASHcitet] = ACTIONS(6413), - [anon_sym_BSLASHcitep] = ACTIONS(6413), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteauthor] = ACTIONS(6413), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6413), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitetitle] = ACTIONS(6413), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteyear] = ACTIONS(6413), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitedate] = ACTIONS(6413), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteurl] = ACTIONS(6413), - [anon_sym_BSLASHfullcite] = ACTIONS(6413), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6413), - [anon_sym_BSLASHcitealt] = ACTIONS(6413), - [anon_sym_BSLASHcitealp] = ACTIONS(6413), - [anon_sym_BSLASHcitetext] = ACTIONS(6413), - [anon_sym_BSLASHparencite] = ACTIONS(6413), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHParencite] = ACTIONS(6413), - [anon_sym_BSLASHfootcite] = ACTIONS(6413), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6413), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6413), - [anon_sym_BSLASHtextcite] = ACTIONS(6413), - [anon_sym_BSLASHTextcite] = ACTIONS(6413), - [anon_sym_BSLASHsmartcite] = ACTIONS(6413), - [anon_sym_BSLASHSmartcite] = ACTIONS(6413), - [anon_sym_BSLASHsupercite] = ACTIONS(6413), - [anon_sym_BSLASHautocite] = ACTIONS(6413), - [anon_sym_BSLASHAutocite] = ACTIONS(6413), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHvolcite] = ACTIONS(6413), - [anon_sym_BSLASHVolcite] = ACTIONS(6413), - [anon_sym_BSLASHpvolcite] = ACTIONS(6413), - [anon_sym_BSLASHPvolcite] = ACTIONS(6413), - [anon_sym_BSLASHfvolcite] = ACTIONS(6413), - [anon_sym_BSLASHftvolcite] = ACTIONS(6413), - [anon_sym_BSLASHsvolcite] = ACTIONS(6413), - [anon_sym_BSLASHSvolcite] = ACTIONS(6413), - [anon_sym_BSLASHtvolcite] = ACTIONS(6413), - [anon_sym_BSLASHTvolcite] = ACTIONS(6413), - [anon_sym_BSLASHavolcite] = ACTIONS(6413), - [anon_sym_BSLASHAvolcite] = ACTIONS(6413), - [anon_sym_BSLASHnotecite] = ACTIONS(6413), - [anon_sym_BSLASHNotecite] = ACTIONS(6413), - [anon_sym_BSLASHpnotecite] = ACTIONS(6413), - [anon_sym_BSLASHPnotecite] = ACTIONS(6413), - [anon_sym_BSLASHfnotecite] = ACTIONS(6413), - [anon_sym_BSLASHlabel] = ACTIONS(6413), - [anon_sym_BSLASHref] = ACTIONS(6413), - [anon_sym_BSLASHeqref] = ACTIONS(6413), - [anon_sym_BSLASHvref] = ACTIONS(6413), - [anon_sym_BSLASHVref] = ACTIONS(6413), - [anon_sym_BSLASHautoref] = ACTIONS(6413), - [anon_sym_BSLASHpageref] = ACTIONS(6413), - [anon_sym_BSLASHcref] = ACTIONS(6413), - [anon_sym_BSLASHCref] = ACTIONS(6413), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnameCref] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHlabelcref] = ACTIONS(6413), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCrefrange] = ACTIONS(6413), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnewlabel] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6413), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6413), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6415), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHdef] = ACTIONS(6413), - [anon_sym_BSLASHlet] = ACTIONS(6413), - [anon_sym_BSLASHleft] = ACTIONS(6413), - [anon_sym_BSLASHbig] = ACTIONS(6413), - [anon_sym_BSLASHBig] = ACTIONS(6413), - [anon_sym_BSLASHbigg] = ACTIONS(6413), - [anon_sym_BSLASHBigg] = ACTIONS(6413), - [anon_sym_BSLASHbigl] = ACTIONS(6413), - [anon_sym_BSLASHBigl] = ACTIONS(6413), - [anon_sym_BSLASHbiggl] = ACTIONS(6413), - [anon_sym_BSLASHBiggl] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6413), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6413), - [anon_sym_BSLASHgls] = ACTIONS(6413), - [anon_sym_BSLASHGls] = ACTIONS(6413), - [anon_sym_BSLASHGLS] = ACTIONS(6413), - [anon_sym_BSLASHglspl] = ACTIONS(6413), - [anon_sym_BSLASHGlspl] = ACTIONS(6413), - [anon_sym_BSLASHGLSpl] = ACTIONS(6413), - [anon_sym_BSLASHglsdisp] = ACTIONS(6413), - [anon_sym_BSLASHglslink] = ACTIONS(6413), - [anon_sym_BSLASHglstext] = ACTIONS(6413), - [anon_sym_BSLASHGlstext] = ACTIONS(6413), - [anon_sym_BSLASHGLStext] = ACTIONS(6413), - [anon_sym_BSLASHglsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6413), - [anon_sym_BSLASHglsplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSplural] = ACTIONS(6413), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHglsname] = ACTIONS(6413), - [anon_sym_BSLASHGlsname] = ACTIONS(6413), - [anon_sym_BSLASHGLSname] = ACTIONS(6413), - [anon_sym_BSLASHglssymbol] = ACTIONS(6413), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6413), - [anon_sym_BSLASHglsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6413), - [anon_sym_BSLASHglsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6413), - [anon_sym_BSLASHglsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6413), - [anon_sym_BSLASHglsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6413), - [anon_sym_BSLASHglsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6413), - [anon_sym_BSLASHnewacronym] = ACTIONS(6413), - [anon_sym_BSLASHacrshort] = ACTIONS(6413), - [anon_sym_BSLASHAcrshort] = ACTIONS(6413), - [anon_sym_BSLASHACRshort] = ACTIONS(6413), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6413), - [anon_sym_BSLASHacrlong] = ACTIONS(6413), - [anon_sym_BSLASHAcrlong] = ACTIONS(6413), - [anon_sym_BSLASHACRlong] = ACTIONS(6413), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6413), - [anon_sym_BSLASHacrfull] = ACTIONS(6413), - [anon_sym_BSLASHAcrfull] = ACTIONS(6413), - [anon_sym_BSLASHACRfull] = ACTIONS(6413), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6413), - [anon_sym_BSLASHacs] = ACTIONS(6413), - [anon_sym_BSLASHAcs] = ACTIONS(6413), - [anon_sym_BSLASHacsp] = ACTIONS(6413), - [anon_sym_BSLASHAcsp] = ACTIONS(6413), - [anon_sym_BSLASHacl] = ACTIONS(6413), - [anon_sym_BSLASHAcl] = ACTIONS(6413), - [anon_sym_BSLASHaclp] = ACTIONS(6413), - [anon_sym_BSLASHAclp] = ACTIONS(6413), - [anon_sym_BSLASHacf] = ACTIONS(6413), - [anon_sym_BSLASHAcf] = ACTIONS(6413), - [anon_sym_BSLASHacfp] = ACTIONS(6413), - [anon_sym_BSLASHAcfp] = ACTIONS(6413), - [anon_sym_BSLASHac] = ACTIONS(6413), - [anon_sym_BSLASHAc] = ACTIONS(6413), - [anon_sym_BSLASHacp] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6413), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6413), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6413), - [anon_sym_BSLASHcolor] = ACTIONS(6413), - [anon_sym_BSLASHcolorbox] = ACTIONS(6413), - [anon_sym_BSLASHtextcolor] = ACTIONS(6413), - [anon_sym_BSLASHpagecolor] = ACTIONS(6413), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6413), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6413), - [anon_sym_BSLASHtext] = ACTIONS(6413), - [anon_sym_BSLASHintertext] = ACTIONS(6413), - [anon_sym_shortintertext] = ACTIONS(6413), - }, - [1868] = { - [sym_command_name] = ACTIONS(6409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6409), - [anon_sym_LPAREN] = ACTIONS(6411), - [anon_sym_RPAREN] = ACTIONS(6411), - [anon_sym_LBRACE] = ACTIONS(6411), - [anon_sym_RBRACE] = ACTIONS(6411), - [anon_sym_BSLASHand] = ACTIONS(6409), - [sym_word] = ACTIONS(6409), - [sym_placeholder] = ACTIONS(6411), - [anon_sym_PLUS] = ACTIONS(6411), - [anon_sym_DASH] = ACTIONS(6411), - [anon_sym_STAR] = ACTIONS(6411), - [anon_sym_SLASH] = ACTIONS(6411), - [anon_sym_LT] = ACTIONS(6409), - [anon_sym_GT] = ACTIONS(6409), - [anon_sym_BANG] = ACTIONS(6409), - [anon_sym_PIPE] = ACTIONS(6409), - [anon_sym_COLON] = ACTIONS(6409), - [anon_sym_SQUOTE] = ACTIONS(6409), - [anon_sym__] = ACTIONS(6411), - [anon_sym_CARET] = ACTIONS(6411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6411), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6411), - [anon_sym_DOLLAR] = ACTIONS(6409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6411), - [anon_sym_BSLASHtitle] = ACTIONS(6409), - [anon_sym_BSLASHauthor] = ACTIONS(6409), - [anon_sym_BSLASHusepackage] = ACTIONS(6409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6409), - [anon_sym_BSLASHinclude] = ACTIONS(6409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6409), - [anon_sym_BSLASHinput] = ACTIONS(6409), - [anon_sym_BSLASHsubfile] = ACTIONS(6409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6409), - [anon_sym_BSLASHbibliography] = ACTIONS(6409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6409), - [anon_sym_BSLASHincludesvg] = ACTIONS(6409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6409), - [anon_sym_BSLASHimport] = ACTIONS(6409), - [anon_sym_BSLASHsubimport] = ACTIONS(6409), - [anon_sym_BSLASHinputfrom] = ACTIONS(6409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6409), - [anon_sym_BSLASHincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHcaption] = ACTIONS(6409), - [anon_sym_BSLASHcite] = ACTIONS(6409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCite] = ACTIONS(6409), - [anon_sym_BSLASHnocite] = ACTIONS(6409), - [anon_sym_BSLASHcitet] = ACTIONS(6409), - [anon_sym_BSLASHcitep] = ACTIONS(6409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteauthor] = ACTIONS(6409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitetitle] = ACTIONS(6409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteyear] = ACTIONS(6409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitedate] = ACTIONS(6409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteurl] = ACTIONS(6409), - [anon_sym_BSLASHfullcite] = ACTIONS(6409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6409), - [anon_sym_BSLASHcitealt] = ACTIONS(6409), - [anon_sym_BSLASHcitealp] = ACTIONS(6409), - [anon_sym_BSLASHcitetext] = ACTIONS(6409), - [anon_sym_BSLASHparencite] = ACTIONS(6409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHParencite] = ACTIONS(6409), - [anon_sym_BSLASHfootcite] = ACTIONS(6409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6409), - [anon_sym_BSLASHtextcite] = ACTIONS(6409), - [anon_sym_BSLASHTextcite] = ACTIONS(6409), - [anon_sym_BSLASHsmartcite] = ACTIONS(6409), - [anon_sym_BSLASHSmartcite] = ACTIONS(6409), - [anon_sym_BSLASHsupercite] = ACTIONS(6409), - [anon_sym_BSLASHautocite] = ACTIONS(6409), - [anon_sym_BSLASHAutocite] = ACTIONS(6409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHvolcite] = ACTIONS(6409), - [anon_sym_BSLASHVolcite] = ACTIONS(6409), - [anon_sym_BSLASHpvolcite] = ACTIONS(6409), - [anon_sym_BSLASHPvolcite] = ACTIONS(6409), - [anon_sym_BSLASHfvolcite] = ACTIONS(6409), - [anon_sym_BSLASHftvolcite] = ACTIONS(6409), - [anon_sym_BSLASHsvolcite] = ACTIONS(6409), - [anon_sym_BSLASHSvolcite] = ACTIONS(6409), - [anon_sym_BSLASHtvolcite] = ACTIONS(6409), - [anon_sym_BSLASHTvolcite] = ACTIONS(6409), - [anon_sym_BSLASHavolcite] = ACTIONS(6409), - [anon_sym_BSLASHAvolcite] = ACTIONS(6409), - [anon_sym_BSLASHnotecite] = ACTIONS(6409), - [anon_sym_BSLASHNotecite] = ACTIONS(6409), - [anon_sym_BSLASHpnotecite] = ACTIONS(6409), - [anon_sym_BSLASHPnotecite] = ACTIONS(6409), - [anon_sym_BSLASHfnotecite] = ACTIONS(6409), - [anon_sym_BSLASHlabel] = ACTIONS(6409), - [anon_sym_BSLASHref] = ACTIONS(6409), - [anon_sym_BSLASHeqref] = ACTIONS(6409), - [anon_sym_BSLASHvref] = ACTIONS(6409), - [anon_sym_BSLASHVref] = ACTIONS(6409), - [anon_sym_BSLASHautoref] = ACTIONS(6409), - [anon_sym_BSLASHpageref] = ACTIONS(6409), - [anon_sym_BSLASHcref] = ACTIONS(6409), - [anon_sym_BSLASHCref] = ACTIONS(6409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnameCref] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHlabelcref] = ACTIONS(6409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCrefrange] = ACTIONS(6409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnewlabel] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6411), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHdef] = ACTIONS(6409), - [anon_sym_BSLASHlet] = ACTIONS(6409), - [anon_sym_BSLASHleft] = ACTIONS(6409), - [anon_sym_BSLASHbig] = ACTIONS(6409), - [anon_sym_BSLASHBig] = ACTIONS(6409), - [anon_sym_BSLASHbigg] = ACTIONS(6409), - [anon_sym_BSLASHBigg] = ACTIONS(6409), - [anon_sym_BSLASHbigl] = ACTIONS(6409), - [anon_sym_BSLASHBigl] = ACTIONS(6409), - [anon_sym_BSLASHbiggl] = ACTIONS(6409), - [anon_sym_BSLASHBiggl] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6409), - [anon_sym_BSLASHgls] = ACTIONS(6409), - [anon_sym_BSLASHGls] = ACTIONS(6409), - [anon_sym_BSLASHGLS] = ACTIONS(6409), - [anon_sym_BSLASHglspl] = ACTIONS(6409), - [anon_sym_BSLASHGlspl] = ACTIONS(6409), - [anon_sym_BSLASHGLSpl] = ACTIONS(6409), - [anon_sym_BSLASHglsdisp] = ACTIONS(6409), - [anon_sym_BSLASHglslink] = ACTIONS(6409), - [anon_sym_BSLASHglstext] = ACTIONS(6409), - [anon_sym_BSLASHGlstext] = ACTIONS(6409), - [anon_sym_BSLASHGLStext] = ACTIONS(6409), - [anon_sym_BSLASHglsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6409), - [anon_sym_BSLASHglsplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSplural] = ACTIONS(6409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHglsname] = ACTIONS(6409), - [anon_sym_BSLASHGlsname] = ACTIONS(6409), - [anon_sym_BSLASHGLSname] = ACTIONS(6409), - [anon_sym_BSLASHglssymbol] = ACTIONS(6409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6409), - [anon_sym_BSLASHglsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6409), - [anon_sym_BSLASHglsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6409), - [anon_sym_BSLASHglsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6409), - [anon_sym_BSLASHglsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6409), - [anon_sym_BSLASHglsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6409), - [anon_sym_BSLASHnewacronym] = ACTIONS(6409), - [anon_sym_BSLASHacrshort] = ACTIONS(6409), - [anon_sym_BSLASHAcrshort] = ACTIONS(6409), - [anon_sym_BSLASHACRshort] = ACTIONS(6409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6409), - [anon_sym_BSLASHacrlong] = ACTIONS(6409), - [anon_sym_BSLASHAcrlong] = ACTIONS(6409), - [anon_sym_BSLASHACRlong] = ACTIONS(6409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6409), - [anon_sym_BSLASHacrfull] = ACTIONS(6409), - [anon_sym_BSLASHAcrfull] = ACTIONS(6409), - [anon_sym_BSLASHACRfull] = ACTIONS(6409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6409), - [anon_sym_BSLASHacs] = ACTIONS(6409), - [anon_sym_BSLASHAcs] = ACTIONS(6409), - [anon_sym_BSLASHacsp] = ACTIONS(6409), - [anon_sym_BSLASHAcsp] = ACTIONS(6409), - [anon_sym_BSLASHacl] = ACTIONS(6409), - [anon_sym_BSLASHAcl] = ACTIONS(6409), - [anon_sym_BSLASHaclp] = ACTIONS(6409), - [anon_sym_BSLASHAclp] = ACTIONS(6409), - [anon_sym_BSLASHacf] = ACTIONS(6409), - [anon_sym_BSLASHAcf] = ACTIONS(6409), - [anon_sym_BSLASHacfp] = ACTIONS(6409), - [anon_sym_BSLASHAcfp] = ACTIONS(6409), - [anon_sym_BSLASHac] = ACTIONS(6409), - [anon_sym_BSLASHAc] = ACTIONS(6409), - [anon_sym_BSLASHacp] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6409), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6409), - [anon_sym_BSLASHcolor] = ACTIONS(6409), - [anon_sym_BSLASHcolorbox] = ACTIONS(6409), - [anon_sym_BSLASHtextcolor] = ACTIONS(6409), - [anon_sym_BSLASHpagecolor] = ACTIONS(6409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6409), - [anon_sym_BSLASHtext] = ACTIONS(6409), - [anon_sym_BSLASHintertext] = ACTIONS(6409), - [anon_sym_shortintertext] = ACTIONS(6409), - }, - [1869] = { - [sym_command_name] = ACTIONS(6405), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6405), - [anon_sym_LPAREN] = ACTIONS(6407), - [anon_sym_RPAREN] = ACTIONS(6407), - [anon_sym_LBRACE] = ACTIONS(6407), - [anon_sym_RBRACE] = ACTIONS(6407), - [anon_sym_BSLASHand] = ACTIONS(6405), - [sym_word] = ACTIONS(6405), - [sym_placeholder] = ACTIONS(6407), - [anon_sym_PLUS] = ACTIONS(6407), - [anon_sym_DASH] = ACTIONS(6407), - [anon_sym_STAR] = ACTIONS(6407), - [anon_sym_SLASH] = ACTIONS(6407), - [anon_sym_LT] = ACTIONS(6405), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(6405), - [anon_sym_PIPE] = ACTIONS(6405), - [anon_sym_COLON] = ACTIONS(6405), - [anon_sym_SQUOTE] = ACTIONS(6405), - [anon_sym__] = ACTIONS(6407), - [anon_sym_CARET] = ACTIONS(6407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6407), - [anon_sym_DOLLAR] = ACTIONS(6405), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6407), - [anon_sym_BSLASHtitle] = ACTIONS(6405), - [anon_sym_BSLASHauthor] = ACTIONS(6405), - [anon_sym_BSLASHusepackage] = ACTIONS(6405), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6405), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6405), - [anon_sym_BSLASHinclude] = ACTIONS(6405), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6405), - [anon_sym_BSLASHinput] = ACTIONS(6405), - [anon_sym_BSLASHsubfile] = ACTIONS(6405), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6405), - [anon_sym_BSLASHbibliography] = ACTIONS(6405), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6405), - [anon_sym_BSLASHincludesvg] = ACTIONS(6405), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6405), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6405), - [anon_sym_BSLASHimport] = ACTIONS(6405), - [anon_sym_BSLASHsubimport] = ACTIONS(6405), - [anon_sym_BSLASHinputfrom] = ACTIONS(6405), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6405), - [anon_sym_BSLASHincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHcaption] = ACTIONS(6405), - [anon_sym_BSLASHcite] = ACTIONS(6405), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCite] = ACTIONS(6405), - [anon_sym_BSLASHnocite] = ACTIONS(6405), - [anon_sym_BSLASHcitet] = ACTIONS(6405), - [anon_sym_BSLASHcitep] = ACTIONS(6405), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteauthor] = ACTIONS(6405), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6405), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitetitle] = ACTIONS(6405), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteyear] = ACTIONS(6405), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitedate] = ACTIONS(6405), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteurl] = ACTIONS(6405), - [anon_sym_BSLASHfullcite] = ACTIONS(6405), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6405), - [anon_sym_BSLASHcitealt] = ACTIONS(6405), - [anon_sym_BSLASHcitealp] = ACTIONS(6405), - [anon_sym_BSLASHcitetext] = ACTIONS(6405), - [anon_sym_BSLASHparencite] = ACTIONS(6405), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHParencite] = ACTIONS(6405), - [anon_sym_BSLASHfootcite] = ACTIONS(6405), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6405), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6405), - [anon_sym_BSLASHtextcite] = ACTIONS(6405), - [anon_sym_BSLASHTextcite] = ACTIONS(6405), - [anon_sym_BSLASHsmartcite] = ACTIONS(6405), - [anon_sym_BSLASHSmartcite] = ACTIONS(6405), - [anon_sym_BSLASHsupercite] = ACTIONS(6405), - [anon_sym_BSLASHautocite] = ACTIONS(6405), - [anon_sym_BSLASHAutocite] = ACTIONS(6405), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHvolcite] = ACTIONS(6405), - [anon_sym_BSLASHVolcite] = ACTIONS(6405), - [anon_sym_BSLASHpvolcite] = ACTIONS(6405), - [anon_sym_BSLASHPvolcite] = ACTIONS(6405), - [anon_sym_BSLASHfvolcite] = ACTIONS(6405), - [anon_sym_BSLASHftvolcite] = ACTIONS(6405), - [anon_sym_BSLASHsvolcite] = ACTIONS(6405), - [anon_sym_BSLASHSvolcite] = ACTIONS(6405), - [anon_sym_BSLASHtvolcite] = ACTIONS(6405), - [anon_sym_BSLASHTvolcite] = ACTIONS(6405), - [anon_sym_BSLASHavolcite] = ACTIONS(6405), - [anon_sym_BSLASHAvolcite] = ACTIONS(6405), - [anon_sym_BSLASHnotecite] = ACTIONS(6405), - [anon_sym_BSLASHNotecite] = ACTIONS(6405), - [anon_sym_BSLASHpnotecite] = ACTIONS(6405), - [anon_sym_BSLASHPnotecite] = ACTIONS(6405), - [anon_sym_BSLASHfnotecite] = ACTIONS(6405), - [anon_sym_BSLASHlabel] = ACTIONS(6405), - [anon_sym_BSLASHref] = ACTIONS(6405), - [anon_sym_BSLASHeqref] = ACTIONS(6405), - [anon_sym_BSLASHvref] = ACTIONS(6405), - [anon_sym_BSLASHVref] = ACTIONS(6405), - [anon_sym_BSLASHautoref] = ACTIONS(6405), - [anon_sym_BSLASHpageref] = ACTIONS(6405), - [anon_sym_BSLASHcref] = ACTIONS(6405), - [anon_sym_BSLASHCref] = ACTIONS(6405), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnameCref] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHlabelcref] = ACTIONS(6405), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCrefrange] = ACTIONS(6405), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnewlabel] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6405), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6405), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6407), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHdef] = ACTIONS(6405), - [anon_sym_BSLASHlet] = ACTIONS(6405), - [anon_sym_BSLASHleft] = ACTIONS(6405), - [anon_sym_BSLASHbig] = ACTIONS(6405), - [anon_sym_BSLASHBig] = ACTIONS(6405), - [anon_sym_BSLASHbigg] = ACTIONS(6405), - [anon_sym_BSLASHBigg] = ACTIONS(6405), - [anon_sym_BSLASHbigl] = ACTIONS(6405), - [anon_sym_BSLASHBigl] = ACTIONS(6405), - [anon_sym_BSLASHbiggl] = ACTIONS(6405), - [anon_sym_BSLASHBiggl] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6405), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6405), - [anon_sym_BSLASHgls] = ACTIONS(6405), - [anon_sym_BSLASHGls] = ACTIONS(6405), - [anon_sym_BSLASHGLS] = ACTIONS(6405), - [anon_sym_BSLASHglspl] = ACTIONS(6405), - [anon_sym_BSLASHGlspl] = ACTIONS(6405), - [anon_sym_BSLASHGLSpl] = ACTIONS(6405), - [anon_sym_BSLASHglsdisp] = ACTIONS(6405), - [anon_sym_BSLASHglslink] = ACTIONS(6405), - [anon_sym_BSLASHglstext] = ACTIONS(6405), - [anon_sym_BSLASHGlstext] = ACTIONS(6405), - [anon_sym_BSLASHGLStext] = ACTIONS(6405), - [anon_sym_BSLASHglsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6405), - [anon_sym_BSLASHglsplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSplural] = ACTIONS(6405), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHglsname] = ACTIONS(6405), - [anon_sym_BSLASHGlsname] = ACTIONS(6405), - [anon_sym_BSLASHGLSname] = ACTIONS(6405), - [anon_sym_BSLASHglssymbol] = ACTIONS(6405), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6405), - [anon_sym_BSLASHglsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6405), - [anon_sym_BSLASHglsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6405), - [anon_sym_BSLASHglsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6405), - [anon_sym_BSLASHglsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6405), - [anon_sym_BSLASHglsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6405), - [anon_sym_BSLASHnewacronym] = ACTIONS(6405), - [anon_sym_BSLASHacrshort] = ACTIONS(6405), - [anon_sym_BSLASHAcrshort] = ACTIONS(6405), - [anon_sym_BSLASHACRshort] = ACTIONS(6405), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6405), - [anon_sym_BSLASHacrlong] = ACTIONS(6405), - [anon_sym_BSLASHAcrlong] = ACTIONS(6405), - [anon_sym_BSLASHACRlong] = ACTIONS(6405), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6405), - [anon_sym_BSLASHacrfull] = ACTIONS(6405), - [anon_sym_BSLASHAcrfull] = ACTIONS(6405), - [anon_sym_BSLASHACRfull] = ACTIONS(6405), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6405), - [anon_sym_BSLASHacs] = ACTIONS(6405), - [anon_sym_BSLASHAcs] = ACTIONS(6405), - [anon_sym_BSLASHacsp] = ACTIONS(6405), - [anon_sym_BSLASHAcsp] = ACTIONS(6405), - [anon_sym_BSLASHacl] = ACTIONS(6405), - [anon_sym_BSLASHAcl] = ACTIONS(6405), - [anon_sym_BSLASHaclp] = ACTIONS(6405), - [anon_sym_BSLASHAclp] = ACTIONS(6405), - [anon_sym_BSLASHacf] = ACTIONS(6405), - [anon_sym_BSLASHAcf] = ACTIONS(6405), - [anon_sym_BSLASHacfp] = ACTIONS(6405), - [anon_sym_BSLASHAcfp] = ACTIONS(6405), - [anon_sym_BSLASHac] = ACTIONS(6405), - [anon_sym_BSLASHAc] = ACTIONS(6405), - [anon_sym_BSLASHacp] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6405), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6405), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6405), - [anon_sym_BSLASHcolor] = ACTIONS(6405), - [anon_sym_BSLASHcolorbox] = ACTIONS(6405), - [anon_sym_BSLASHtextcolor] = ACTIONS(6405), - [anon_sym_BSLASHpagecolor] = ACTIONS(6405), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6405), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6405), - [anon_sym_BSLASHtext] = ACTIONS(6405), - [anon_sym_BSLASHintertext] = ACTIONS(6405), - [anon_sym_shortintertext] = ACTIONS(6405), - }, - [1870] = { - [sym_command_name] = ACTIONS(6185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6185), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_LBRACE] = ACTIONS(6187), - [anon_sym_RBRACE] = ACTIONS(6187), - [anon_sym_BSLASHand] = ACTIONS(6185), - [sym_word] = ACTIONS(6185), - [sym_placeholder] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6187), - [anon_sym_DASH] = ACTIONS(6187), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_SQUOTE] = ACTIONS(6185), - [anon_sym__] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6187), - [anon_sym_DOLLAR] = ACTIONS(6185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6187), - [anon_sym_BSLASHtitle] = ACTIONS(6185), - [anon_sym_BSLASHauthor] = ACTIONS(6185), - [anon_sym_BSLASHusepackage] = ACTIONS(6185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), - [anon_sym_BSLASHinclude] = ACTIONS(6185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), - [anon_sym_BSLASHinput] = ACTIONS(6185), - [anon_sym_BSLASHsubfile] = ACTIONS(6185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), - [anon_sym_BSLASHbibliography] = ACTIONS(6185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), - [anon_sym_BSLASHincludesvg] = ACTIONS(6185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), - [anon_sym_BSLASHimport] = ACTIONS(6185), - [anon_sym_BSLASHsubimport] = ACTIONS(6185), - [anon_sym_BSLASHinputfrom] = ACTIONS(6185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), - [anon_sym_BSLASHincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHcaption] = ACTIONS(6185), - [anon_sym_BSLASHcite] = ACTIONS(6185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCite] = ACTIONS(6185), - [anon_sym_BSLASHnocite] = ACTIONS(6185), - [anon_sym_BSLASHcitet] = ACTIONS(6185), - [anon_sym_BSLASHcitep] = ACTIONS(6185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteauthor] = ACTIONS(6185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitetitle] = ACTIONS(6185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteyear] = ACTIONS(6185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitedate] = ACTIONS(6185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteurl] = ACTIONS(6185), - [anon_sym_BSLASHfullcite] = ACTIONS(6185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), - [anon_sym_BSLASHcitealt] = ACTIONS(6185), - [anon_sym_BSLASHcitealp] = ACTIONS(6185), - [anon_sym_BSLASHcitetext] = ACTIONS(6185), - [anon_sym_BSLASHparencite] = ACTIONS(6185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHParencite] = ACTIONS(6185), - [anon_sym_BSLASHfootcite] = ACTIONS(6185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), - [anon_sym_BSLASHtextcite] = ACTIONS(6185), - [anon_sym_BSLASHTextcite] = ACTIONS(6185), - [anon_sym_BSLASHsmartcite] = ACTIONS(6185), - [anon_sym_BSLASHSmartcite] = ACTIONS(6185), - [anon_sym_BSLASHsupercite] = ACTIONS(6185), - [anon_sym_BSLASHautocite] = ACTIONS(6185), - [anon_sym_BSLASHAutocite] = ACTIONS(6185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHvolcite] = ACTIONS(6185), - [anon_sym_BSLASHVolcite] = ACTIONS(6185), - [anon_sym_BSLASHpvolcite] = ACTIONS(6185), - [anon_sym_BSLASHPvolcite] = ACTIONS(6185), - [anon_sym_BSLASHfvolcite] = ACTIONS(6185), - [anon_sym_BSLASHftvolcite] = ACTIONS(6185), - [anon_sym_BSLASHsvolcite] = ACTIONS(6185), - [anon_sym_BSLASHSvolcite] = ACTIONS(6185), - [anon_sym_BSLASHtvolcite] = ACTIONS(6185), - [anon_sym_BSLASHTvolcite] = ACTIONS(6185), - [anon_sym_BSLASHavolcite] = ACTIONS(6185), - [anon_sym_BSLASHAvolcite] = ACTIONS(6185), - [anon_sym_BSLASHnotecite] = ACTIONS(6185), - [anon_sym_BSLASHNotecite] = ACTIONS(6185), - [anon_sym_BSLASHpnotecite] = ACTIONS(6185), - [anon_sym_BSLASHPnotecite] = ACTIONS(6185), - [anon_sym_BSLASHfnotecite] = ACTIONS(6185), - [anon_sym_BSLASHlabel] = ACTIONS(6185), - [anon_sym_BSLASHref] = ACTIONS(6185), - [anon_sym_BSLASHeqref] = ACTIONS(6185), - [anon_sym_BSLASHvref] = ACTIONS(6185), - [anon_sym_BSLASHVref] = ACTIONS(6185), - [anon_sym_BSLASHautoref] = ACTIONS(6185), - [anon_sym_BSLASHpageref] = ACTIONS(6185), - [anon_sym_BSLASHcref] = ACTIONS(6185), - [anon_sym_BSLASHCref] = ACTIONS(6185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnameCref] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHlabelcref] = ACTIONS(6185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCrefrange] = ACTIONS(6185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnewlabel] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHdef] = ACTIONS(6185), - [anon_sym_BSLASHlet] = ACTIONS(6185), - [anon_sym_BSLASHleft] = ACTIONS(6185), - [anon_sym_BSLASHbig] = ACTIONS(6185), - [anon_sym_BSLASHBig] = ACTIONS(6185), - [anon_sym_BSLASHbigg] = ACTIONS(6185), - [anon_sym_BSLASHBigg] = ACTIONS(6185), - [anon_sym_BSLASHbigl] = ACTIONS(6185), - [anon_sym_BSLASHBigl] = ACTIONS(6185), - [anon_sym_BSLASHbiggl] = ACTIONS(6185), - [anon_sym_BSLASHBiggl] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), - [anon_sym_BSLASHgls] = ACTIONS(6185), - [anon_sym_BSLASHGls] = ACTIONS(6185), - [anon_sym_BSLASHGLS] = ACTIONS(6185), - [anon_sym_BSLASHglspl] = ACTIONS(6185), - [anon_sym_BSLASHGlspl] = ACTIONS(6185), - [anon_sym_BSLASHGLSpl] = ACTIONS(6185), - [anon_sym_BSLASHglsdisp] = ACTIONS(6185), - [anon_sym_BSLASHglslink] = ACTIONS(6185), - [anon_sym_BSLASHglstext] = ACTIONS(6185), - [anon_sym_BSLASHGlstext] = ACTIONS(6185), - [anon_sym_BSLASHGLStext] = ACTIONS(6185), - [anon_sym_BSLASHglsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), - [anon_sym_BSLASHglsplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSplural] = ACTIONS(6185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHglsname] = ACTIONS(6185), - [anon_sym_BSLASHGlsname] = ACTIONS(6185), - [anon_sym_BSLASHGLSname] = ACTIONS(6185), - [anon_sym_BSLASHglssymbol] = ACTIONS(6185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), - [anon_sym_BSLASHglsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), - [anon_sym_BSLASHglsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), - [anon_sym_BSLASHglsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), - [anon_sym_BSLASHglsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), - [anon_sym_BSLASHglsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), - [anon_sym_BSLASHnewacronym] = ACTIONS(6185), - [anon_sym_BSLASHacrshort] = ACTIONS(6185), - [anon_sym_BSLASHAcrshort] = ACTIONS(6185), - [anon_sym_BSLASHACRshort] = ACTIONS(6185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), - [anon_sym_BSLASHacrlong] = ACTIONS(6185), - [anon_sym_BSLASHAcrlong] = ACTIONS(6185), - [anon_sym_BSLASHACRlong] = ACTIONS(6185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), - [anon_sym_BSLASHacrfull] = ACTIONS(6185), - [anon_sym_BSLASHAcrfull] = ACTIONS(6185), - [anon_sym_BSLASHACRfull] = ACTIONS(6185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), - [anon_sym_BSLASHacs] = ACTIONS(6185), - [anon_sym_BSLASHAcs] = ACTIONS(6185), - [anon_sym_BSLASHacsp] = ACTIONS(6185), - [anon_sym_BSLASHAcsp] = ACTIONS(6185), - [anon_sym_BSLASHacl] = ACTIONS(6185), - [anon_sym_BSLASHAcl] = ACTIONS(6185), - [anon_sym_BSLASHaclp] = ACTIONS(6185), - [anon_sym_BSLASHAclp] = ACTIONS(6185), - [anon_sym_BSLASHacf] = ACTIONS(6185), - [anon_sym_BSLASHAcf] = ACTIONS(6185), - [anon_sym_BSLASHacfp] = ACTIONS(6185), - [anon_sym_BSLASHAcfp] = ACTIONS(6185), - [anon_sym_BSLASHac] = ACTIONS(6185), - [anon_sym_BSLASHAc] = ACTIONS(6185), - [anon_sym_BSLASHacp] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), - [anon_sym_BSLASHcolor] = ACTIONS(6185), - [anon_sym_BSLASHcolorbox] = ACTIONS(6185), - [anon_sym_BSLASHtextcolor] = ACTIONS(6185), - [anon_sym_BSLASHpagecolor] = ACTIONS(6185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), - [anon_sym_BSLASHtext] = ACTIONS(6185), - [anon_sym_BSLASHintertext] = ACTIONS(6185), - [anon_sym_shortintertext] = ACTIONS(6185), - }, - [1871] = { - [sym_command_name] = ACTIONS(6401), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6401), - [anon_sym_LPAREN] = ACTIONS(6403), - [anon_sym_RPAREN] = ACTIONS(6403), - [anon_sym_LBRACE] = ACTIONS(6403), - [anon_sym_RBRACE] = ACTIONS(6403), - [anon_sym_BSLASHand] = ACTIONS(6401), - [sym_word] = ACTIONS(6401), - [sym_placeholder] = ACTIONS(6403), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6403), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_LT] = ACTIONS(6401), - [anon_sym_GT] = ACTIONS(6401), - [anon_sym_BANG] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_SQUOTE] = ACTIONS(6401), - [anon_sym__] = ACTIONS(6403), - [anon_sym_CARET] = ACTIONS(6403), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6403), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6403), - [anon_sym_DOLLAR] = ACTIONS(6401), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6403), - [anon_sym_BSLASHtitle] = ACTIONS(6401), - [anon_sym_BSLASHauthor] = ACTIONS(6401), - [anon_sym_BSLASHusepackage] = ACTIONS(6401), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6401), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6401), - [anon_sym_BSLASHinclude] = ACTIONS(6401), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6401), - [anon_sym_BSLASHinput] = ACTIONS(6401), - [anon_sym_BSLASHsubfile] = ACTIONS(6401), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6401), - [anon_sym_BSLASHbibliography] = ACTIONS(6401), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6401), - [anon_sym_BSLASHincludesvg] = ACTIONS(6401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6401), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6401), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6401), - [anon_sym_BSLASHimport] = ACTIONS(6401), - [anon_sym_BSLASHsubimport] = ACTIONS(6401), - [anon_sym_BSLASHinputfrom] = ACTIONS(6401), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6401), - [anon_sym_BSLASHincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHcaption] = ACTIONS(6401), - [anon_sym_BSLASHcite] = ACTIONS(6401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCite] = ACTIONS(6401), - [anon_sym_BSLASHnocite] = ACTIONS(6401), - [anon_sym_BSLASHcitet] = ACTIONS(6401), - [anon_sym_BSLASHcitep] = ACTIONS(6401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteauthor] = ACTIONS(6401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitetitle] = ACTIONS(6401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteyear] = ACTIONS(6401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitedate] = ACTIONS(6401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteurl] = ACTIONS(6401), - [anon_sym_BSLASHfullcite] = ACTIONS(6401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6401), - [anon_sym_BSLASHcitealt] = ACTIONS(6401), - [anon_sym_BSLASHcitealp] = ACTIONS(6401), - [anon_sym_BSLASHcitetext] = ACTIONS(6401), - [anon_sym_BSLASHparencite] = ACTIONS(6401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHParencite] = ACTIONS(6401), - [anon_sym_BSLASHfootcite] = ACTIONS(6401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6401), - [anon_sym_BSLASHtextcite] = ACTIONS(6401), - [anon_sym_BSLASHTextcite] = ACTIONS(6401), - [anon_sym_BSLASHsmartcite] = ACTIONS(6401), - [anon_sym_BSLASHSmartcite] = ACTIONS(6401), - [anon_sym_BSLASHsupercite] = ACTIONS(6401), - [anon_sym_BSLASHautocite] = ACTIONS(6401), - [anon_sym_BSLASHAutocite] = ACTIONS(6401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHvolcite] = ACTIONS(6401), - [anon_sym_BSLASHVolcite] = ACTIONS(6401), - [anon_sym_BSLASHpvolcite] = ACTIONS(6401), - [anon_sym_BSLASHPvolcite] = ACTIONS(6401), - [anon_sym_BSLASHfvolcite] = ACTIONS(6401), - [anon_sym_BSLASHftvolcite] = ACTIONS(6401), - [anon_sym_BSLASHsvolcite] = ACTIONS(6401), - [anon_sym_BSLASHSvolcite] = ACTIONS(6401), - [anon_sym_BSLASHtvolcite] = ACTIONS(6401), - [anon_sym_BSLASHTvolcite] = ACTIONS(6401), - [anon_sym_BSLASHavolcite] = ACTIONS(6401), - [anon_sym_BSLASHAvolcite] = ACTIONS(6401), - [anon_sym_BSLASHnotecite] = ACTIONS(6401), - [anon_sym_BSLASHNotecite] = ACTIONS(6401), - [anon_sym_BSLASHpnotecite] = ACTIONS(6401), - [anon_sym_BSLASHPnotecite] = ACTIONS(6401), - [anon_sym_BSLASHfnotecite] = ACTIONS(6401), - [anon_sym_BSLASHlabel] = ACTIONS(6401), - [anon_sym_BSLASHref] = ACTIONS(6401), - [anon_sym_BSLASHeqref] = ACTIONS(6401), - [anon_sym_BSLASHvref] = ACTIONS(6401), - [anon_sym_BSLASHVref] = ACTIONS(6401), - [anon_sym_BSLASHautoref] = ACTIONS(6401), - [anon_sym_BSLASHpageref] = ACTIONS(6401), - [anon_sym_BSLASHcref] = ACTIONS(6401), - [anon_sym_BSLASHCref] = ACTIONS(6401), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnameCref] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHlabelcref] = ACTIONS(6401), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCrefrange] = ACTIONS(6401), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnewlabel] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6401), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6401), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6403), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHdef] = ACTIONS(6401), - [anon_sym_BSLASHlet] = ACTIONS(6401), - [anon_sym_BSLASHleft] = ACTIONS(6401), - [anon_sym_BSLASHbig] = ACTIONS(6401), - [anon_sym_BSLASHBig] = ACTIONS(6401), - [anon_sym_BSLASHbigg] = ACTIONS(6401), - [anon_sym_BSLASHBigg] = ACTIONS(6401), - [anon_sym_BSLASHbigl] = ACTIONS(6401), - [anon_sym_BSLASHBigl] = ACTIONS(6401), - [anon_sym_BSLASHbiggl] = ACTIONS(6401), - [anon_sym_BSLASHBiggl] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6401), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6401), - [anon_sym_BSLASHgls] = ACTIONS(6401), - [anon_sym_BSLASHGls] = ACTIONS(6401), - [anon_sym_BSLASHGLS] = ACTIONS(6401), - [anon_sym_BSLASHglspl] = ACTIONS(6401), - [anon_sym_BSLASHGlspl] = ACTIONS(6401), - [anon_sym_BSLASHGLSpl] = ACTIONS(6401), - [anon_sym_BSLASHglsdisp] = ACTIONS(6401), - [anon_sym_BSLASHglslink] = ACTIONS(6401), - [anon_sym_BSLASHglstext] = ACTIONS(6401), - [anon_sym_BSLASHGlstext] = ACTIONS(6401), - [anon_sym_BSLASHGLStext] = ACTIONS(6401), - [anon_sym_BSLASHglsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6401), - [anon_sym_BSLASHglsplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSplural] = ACTIONS(6401), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHglsname] = ACTIONS(6401), - [anon_sym_BSLASHGlsname] = ACTIONS(6401), - [anon_sym_BSLASHGLSname] = ACTIONS(6401), - [anon_sym_BSLASHglssymbol] = ACTIONS(6401), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6401), - [anon_sym_BSLASHglsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6401), - [anon_sym_BSLASHglsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6401), - [anon_sym_BSLASHglsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6401), - [anon_sym_BSLASHglsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6401), - [anon_sym_BSLASHglsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6401), - [anon_sym_BSLASHnewacronym] = ACTIONS(6401), - [anon_sym_BSLASHacrshort] = ACTIONS(6401), - [anon_sym_BSLASHAcrshort] = ACTIONS(6401), - [anon_sym_BSLASHACRshort] = ACTIONS(6401), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6401), - [anon_sym_BSLASHacrlong] = ACTIONS(6401), - [anon_sym_BSLASHAcrlong] = ACTIONS(6401), - [anon_sym_BSLASHACRlong] = ACTIONS(6401), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6401), - [anon_sym_BSLASHacrfull] = ACTIONS(6401), - [anon_sym_BSLASHAcrfull] = ACTIONS(6401), - [anon_sym_BSLASHACRfull] = ACTIONS(6401), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6401), - [anon_sym_BSLASHacs] = ACTIONS(6401), - [anon_sym_BSLASHAcs] = ACTIONS(6401), - [anon_sym_BSLASHacsp] = ACTIONS(6401), - [anon_sym_BSLASHAcsp] = ACTIONS(6401), - [anon_sym_BSLASHacl] = ACTIONS(6401), - [anon_sym_BSLASHAcl] = ACTIONS(6401), - [anon_sym_BSLASHaclp] = ACTIONS(6401), - [anon_sym_BSLASHAclp] = ACTIONS(6401), - [anon_sym_BSLASHacf] = ACTIONS(6401), - [anon_sym_BSLASHAcf] = ACTIONS(6401), - [anon_sym_BSLASHacfp] = ACTIONS(6401), - [anon_sym_BSLASHAcfp] = ACTIONS(6401), - [anon_sym_BSLASHac] = ACTIONS(6401), - [anon_sym_BSLASHAc] = ACTIONS(6401), - [anon_sym_BSLASHacp] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6401), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6401), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6401), - [anon_sym_BSLASHcolor] = ACTIONS(6401), - [anon_sym_BSLASHcolorbox] = ACTIONS(6401), - [anon_sym_BSLASHtextcolor] = ACTIONS(6401), - [anon_sym_BSLASHpagecolor] = ACTIONS(6401), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6401), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6401), - [anon_sym_BSLASHtext] = ACTIONS(6401), - [anon_sym_BSLASHintertext] = ACTIONS(6401), - [anon_sym_shortintertext] = ACTIONS(6401), - }, - [1872] = { - [sym_command_name] = ACTIONS(6397), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6397), - [anon_sym_LPAREN] = ACTIONS(6399), - [anon_sym_RPAREN] = ACTIONS(6399), - [anon_sym_LBRACE] = ACTIONS(6399), - [anon_sym_RBRACE] = ACTIONS(6399), - [anon_sym_BSLASHand] = ACTIONS(6397), - [sym_word] = ACTIONS(6397), - [sym_placeholder] = ACTIONS(6399), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_LT] = ACTIONS(6397), - [anon_sym_GT] = ACTIONS(6397), - [anon_sym_BANG] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_SQUOTE] = ACTIONS(6397), - [anon_sym__] = ACTIONS(6399), - [anon_sym_CARET] = ACTIONS(6399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6399), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6399), - [anon_sym_DOLLAR] = ACTIONS(6397), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6399), - [anon_sym_BSLASHtitle] = ACTIONS(6397), - [anon_sym_BSLASHauthor] = ACTIONS(6397), - [anon_sym_BSLASHusepackage] = ACTIONS(6397), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6397), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6397), - [anon_sym_BSLASHinclude] = ACTIONS(6397), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6397), - [anon_sym_BSLASHinput] = ACTIONS(6397), - [anon_sym_BSLASHsubfile] = ACTIONS(6397), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6397), - [anon_sym_BSLASHbibliography] = ACTIONS(6397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6397), - [anon_sym_BSLASHincludesvg] = ACTIONS(6397), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6397), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6397), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6397), - [anon_sym_BSLASHimport] = ACTIONS(6397), - [anon_sym_BSLASHsubimport] = ACTIONS(6397), - [anon_sym_BSLASHinputfrom] = ACTIONS(6397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6397), - [anon_sym_BSLASHincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHcaption] = ACTIONS(6397), - [anon_sym_BSLASHcite] = ACTIONS(6397), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCite] = ACTIONS(6397), - [anon_sym_BSLASHnocite] = ACTIONS(6397), - [anon_sym_BSLASHcitet] = ACTIONS(6397), - [anon_sym_BSLASHcitep] = ACTIONS(6397), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteauthor] = ACTIONS(6397), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6397), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitetitle] = ACTIONS(6397), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteyear] = ACTIONS(6397), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitedate] = ACTIONS(6397), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteurl] = ACTIONS(6397), - [anon_sym_BSLASHfullcite] = ACTIONS(6397), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6397), - [anon_sym_BSLASHcitealt] = ACTIONS(6397), - [anon_sym_BSLASHcitealp] = ACTIONS(6397), - [anon_sym_BSLASHcitetext] = ACTIONS(6397), - [anon_sym_BSLASHparencite] = ACTIONS(6397), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHParencite] = ACTIONS(6397), - [anon_sym_BSLASHfootcite] = ACTIONS(6397), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6397), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6397), - [anon_sym_BSLASHtextcite] = ACTIONS(6397), - [anon_sym_BSLASHTextcite] = ACTIONS(6397), - [anon_sym_BSLASHsmartcite] = ACTIONS(6397), - [anon_sym_BSLASHSmartcite] = ACTIONS(6397), - [anon_sym_BSLASHsupercite] = ACTIONS(6397), - [anon_sym_BSLASHautocite] = ACTIONS(6397), - [anon_sym_BSLASHAutocite] = ACTIONS(6397), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHvolcite] = ACTIONS(6397), - [anon_sym_BSLASHVolcite] = ACTIONS(6397), - [anon_sym_BSLASHpvolcite] = ACTIONS(6397), - [anon_sym_BSLASHPvolcite] = ACTIONS(6397), - [anon_sym_BSLASHfvolcite] = ACTIONS(6397), - [anon_sym_BSLASHftvolcite] = ACTIONS(6397), - [anon_sym_BSLASHsvolcite] = ACTIONS(6397), - [anon_sym_BSLASHSvolcite] = ACTIONS(6397), - [anon_sym_BSLASHtvolcite] = ACTIONS(6397), - [anon_sym_BSLASHTvolcite] = ACTIONS(6397), - [anon_sym_BSLASHavolcite] = ACTIONS(6397), - [anon_sym_BSLASHAvolcite] = ACTIONS(6397), - [anon_sym_BSLASHnotecite] = ACTIONS(6397), - [anon_sym_BSLASHNotecite] = ACTIONS(6397), - [anon_sym_BSLASHpnotecite] = ACTIONS(6397), - [anon_sym_BSLASHPnotecite] = ACTIONS(6397), - [anon_sym_BSLASHfnotecite] = ACTIONS(6397), - [anon_sym_BSLASHlabel] = ACTIONS(6397), - [anon_sym_BSLASHref] = ACTIONS(6397), - [anon_sym_BSLASHeqref] = ACTIONS(6397), - [anon_sym_BSLASHvref] = ACTIONS(6397), - [anon_sym_BSLASHVref] = ACTIONS(6397), - [anon_sym_BSLASHautoref] = ACTIONS(6397), - [anon_sym_BSLASHpageref] = ACTIONS(6397), - [anon_sym_BSLASHcref] = ACTIONS(6397), - [anon_sym_BSLASHCref] = ACTIONS(6397), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnameCref] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHlabelcref] = ACTIONS(6397), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCrefrange] = ACTIONS(6397), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnewlabel] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6397), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6397), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6399), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHdef] = ACTIONS(6397), - [anon_sym_BSLASHlet] = ACTIONS(6397), - [anon_sym_BSLASHleft] = ACTIONS(6397), - [anon_sym_BSLASHbig] = ACTIONS(6397), - [anon_sym_BSLASHBig] = ACTIONS(6397), - [anon_sym_BSLASHbigg] = ACTIONS(6397), - [anon_sym_BSLASHBigg] = ACTIONS(6397), - [anon_sym_BSLASHbigl] = ACTIONS(6397), - [anon_sym_BSLASHBigl] = ACTIONS(6397), - [anon_sym_BSLASHbiggl] = ACTIONS(6397), - [anon_sym_BSLASHBiggl] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6397), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6397), - [anon_sym_BSLASHgls] = ACTIONS(6397), - [anon_sym_BSLASHGls] = ACTIONS(6397), - [anon_sym_BSLASHGLS] = ACTIONS(6397), - [anon_sym_BSLASHglspl] = ACTIONS(6397), - [anon_sym_BSLASHGlspl] = ACTIONS(6397), - [anon_sym_BSLASHGLSpl] = ACTIONS(6397), - [anon_sym_BSLASHglsdisp] = ACTIONS(6397), - [anon_sym_BSLASHglslink] = ACTIONS(6397), - [anon_sym_BSLASHglstext] = ACTIONS(6397), - [anon_sym_BSLASHGlstext] = ACTIONS(6397), - [anon_sym_BSLASHGLStext] = ACTIONS(6397), - [anon_sym_BSLASHglsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6397), - [anon_sym_BSLASHglsplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSplural] = ACTIONS(6397), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHglsname] = ACTIONS(6397), - [anon_sym_BSLASHGlsname] = ACTIONS(6397), - [anon_sym_BSLASHGLSname] = ACTIONS(6397), - [anon_sym_BSLASHglssymbol] = ACTIONS(6397), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6397), - [anon_sym_BSLASHglsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6397), - [anon_sym_BSLASHglsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6397), - [anon_sym_BSLASHglsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6397), - [anon_sym_BSLASHglsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6397), - [anon_sym_BSLASHglsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6397), - [anon_sym_BSLASHnewacronym] = ACTIONS(6397), - [anon_sym_BSLASHacrshort] = ACTIONS(6397), - [anon_sym_BSLASHAcrshort] = ACTIONS(6397), - [anon_sym_BSLASHACRshort] = ACTIONS(6397), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6397), - [anon_sym_BSLASHacrlong] = ACTIONS(6397), - [anon_sym_BSLASHAcrlong] = ACTIONS(6397), - [anon_sym_BSLASHACRlong] = ACTIONS(6397), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6397), - [anon_sym_BSLASHacrfull] = ACTIONS(6397), - [anon_sym_BSLASHAcrfull] = ACTIONS(6397), - [anon_sym_BSLASHACRfull] = ACTIONS(6397), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6397), - [anon_sym_BSLASHacs] = ACTIONS(6397), - [anon_sym_BSLASHAcs] = ACTIONS(6397), - [anon_sym_BSLASHacsp] = ACTIONS(6397), - [anon_sym_BSLASHAcsp] = ACTIONS(6397), - [anon_sym_BSLASHacl] = ACTIONS(6397), - [anon_sym_BSLASHAcl] = ACTIONS(6397), - [anon_sym_BSLASHaclp] = ACTIONS(6397), - [anon_sym_BSLASHAclp] = ACTIONS(6397), - [anon_sym_BSLASHacf] = ACTIONS(6397), - [anon_sym_BSLASHAcf] = ACTIONS(6397), - [anon_sym_BSLASHacfp] = ACTIONS(6397), - [anon_sym_BSLASHAcfp] = ACTIONS(6397), - [anon_sym_BSLASHac] = ACTIONS(6397), - [anon_sym_BSLASHAc] = ACTIONS(6397), - [anon_sym_BSLASHacp] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6397), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6397), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6397), - [anon_sym_BSLASHcolor] = ACTIONS(6397), - [anon_sym_BSLASHcolorbox] = ACTIONS(6397), - [anon_sym_BSLASHtextcolor] = ACTIONS(6397), - [anon_sym_BSLASHpagecolor] = ACTIONS(6397), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6397), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6397), - [anon_sym_BSLASHtext] = ACTIONS(6397), - [anon_sym_BSLASHintertext] = ACTIONS(6397), - [anon_sym_shortintertext] = ACTIONS(6397), - }, - [1873] = { - [sym_command_name] = ACTIONS(6393), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6393), - [anon_sym_LPAREN] = ACTIONS(6395), - [anon_sym_RPAREN] = ACTIONS(6395), - [anon_sym_LBRACE] = ACTIONS(6395), - [anon_sym_RBRACE] = ACTIONS(6395), - [anon_sym_BSLASHand] = ACTIONS(6393), - [sym_word] = ACTIONS(6393), - [sym_placeholder] = ACTIONS(6395), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6395), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_LT] = ACTIONS(6393), - [anon_sym_GT] = ACTIONS(6393), - [anon_sym_BANG] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_SQUOTE] = ACTIONS(6393), - [anon_sym__] = ACTIONS(6395), - [anon_sym_CARET] = ACTIONS(6395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6395), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6395), - [anon_sym_DOLLAR] = ACTIONS(6393), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6395), - [anon_sym_BSLASHtitle] = ACTIONS(6393), - [anon_sym_BSLASHauthor] = ACTIONS(6393), - [anon_sym_BSLASHusepackage] = ACTIONS(6393), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6393), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6393), - [anon_sym_BSLASHinclude] = ACTIONS(6393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6393), - [anon_sym_BSLASHinput] = ACTIONS(6393), - [anon_sym_BSLASHsubfile] = ACTIONS(6393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6393), - [anon_sym_BSLASHbibliography] = ACTIONS(6393), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6393), - [anon_sym_BSLASHincludesvg] = ACTIONS(6393), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6393), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6393), - [anon_sym_BSLASHimport] = ACTIONS(6393), - [anon_sym_BSLASHsubimport] = ACTIONS(6393), - [anon_sym_BSLASHinputfrom] = ACTIONS(6393), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6393), - [anon_sym_BSLASHincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHcaption] = ACTIONS(6393), - [anon_sym_BSLASHcite] = ACTIONS(6393), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCite] = ACTIONS(6393), - [anon_sym_BSLASHnocite] = ACTIONS(6393), - [anon_sym_BSLASHcitet] = ACTIONS(6393), - [anon_sym_BSLASHcitep] = ACTIONS(6393), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteauthor] = ACTIONS(6393), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6393), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitetitle] = ACTIONS(6393), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteyear] = ACTIONS(6393), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitedate] = ACTIONS(6393), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteurl] = ACTIONS(6393), - [anon_sym_BSLASHfullcite] = ACTIONS(6393), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6393), - [anon_sym_BSLASHcitealt] = ACTIONS(6393), - [anon_sym_BSLASHcitealp] = ACTIONS(6393), - [anon_sym_BSLASHcitetext] = ACTIONS(6393), - [anon_sym_BSLASHparencite] = ACTIONS(6393), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHParencite] = ACTIONS(6393), - [anon_sym_BSLASHfootcite] = ACTIONS(6393), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6393), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6393), - [anon_sym_BSLASHtextcite] = ACTIONS(6393), - [anon_sym_BSLASHTextcite] = ACTIONS(6393), - [anon_sym_BSLASHsmartcite] = ACTIONS(6393), - [anon_sym_BSLASHSmartcite] = ACTIONS(6393), - [anon_sym_BSLASHsupercite] = ACTIONS(6393), - [anon_sym_BSLASHautocite] = ACTIONS(6393), - [anon_sym_BSLASHAutocite] = ACTIONS(6393), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHvolcite] = ACTIONS(6393), - [anon_sym_BSLASHVolcite] = ACTIONS(6393), - [anon_sym_BSLASHpvolcite] = ACTIONS(6393), - [anon_sym_BSLASHPvolcite] = ACTIONS(6393), - [anon_sym_BSLASHfvolcite] = ACTIONS(6393), - [anon_sym_BSLASHftvolcite] = ACTIONS(6393), - [anon_sym_BSLASHsvolcite] = ACTIONS(6393), - [anon_sym_BSLASHSvolcite] = ACTIONS(6393), - [anon_sym_BSLASHtvolcite] = ACTIONS(6393), - [anon_sym_BSLASHTvolcite] = ACTIONS(6393), - [anon_sym_BSLASHavolcite] = ACTIONS(6393), - [anon_sym_BSLASHAvolcite] = ACTIONS(6393), - [anon_sym_BSLASHnotecite] = ACTIONS(6393), - [anon_sym_BSLASHNotecite] = ACTIONS(6393), - [anon_sym_BSLASHpnotecite] = ACTIONS(6393), - [anon_sym_BSLASHPnotecite] = ACTIONS(6393), - [anon_sym_BSLASHfnotecite] = ACTIONS(6393), - [anon_sym_BSLASHlabel] = ACTIONS(6393), - [anon_sym_BSLASHref] = ACTIONS(6393), - [anon_sym_BSLASHeqref] = ACTIONS(6393), - [anon_sym_BSLASHvref] = ACTIONS(6393), - [anon_sym_BSLASHVref] = ACTIONS(6393), - [anon_sym_BSLASHautoref] = ACTIONS(6393), - [anon_sym_BSLASHpageref] = ACTIONS(6393), - [anon_sym_BSLASHcref] = ACTIONS(6393), - [anon_sym_BSLASHCref] = ACTIONS(6393), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnameCref] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHlabelcref] = ACTIONS(6393), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCrefrange] = ACTIONS(6393), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnewlabel] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6393), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6393), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6395), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHdef] = ACTIONS(6393), - [anon_sym_BSLASHlet] = ACTIONS(6393), - [anon_sym_BSLASHleft] = ACTIONS(6393), - [anon_sym_BSLASHbig] = ACTIONS(6393), - [anon_sym_BSLASHBig] = ACTIONS(6393), - [anon_sym_BSLASHbigg] = ACTIONS(6393), - [anon_sym_BSLASHBigg] = ACTIONS(6393), - [anon_sym_BSLASHbigl] = ACTIONS(6393), - [anon_sym_BSLASHBigl] = ACTIONS(6393), - [anon_sym_BSLASHbiggl] = ACTIONS(6393), - [anon_sym_BSLASHBiggl] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6393), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6393), - [anon_sym_BSLASHgls] = ACTIONS(6393), - [anon_sym_BSLASHGls] = ACTIONS(6393), - [anon_sym_BSLASHGLS] = ACTIONS(6393), - [anon_sym_BSLASHglspl] = ACTIONS(6393), - [anon_sym_BSLASHGlspl] = ACTIONS(6393), - [anon_sym_BSLASHGLSpl] = ACTIONS(6393), - [anon_sym_BSLASHglsdisp] = ACTIONS(6393), - [anon_sym_BSLASHglslink] = ACTIONS(6393), - [anon_sym_BSLASHglstext] = ACTIONS(6393), - [anon_sym_BSLASHGlstext] = ACTIONS(6393), - [anon_sym_BSLASHGLStext] = ACTIONS(6393), - [anon_sym_BSLASHglsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6393), - [anon_sym_BSLASHglsplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSplural] = ACTIONS(6393), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHglsname] = ACTIONS(6393), - [anon_sym_BSLASHGlsname] = ACTIONS(6393), - [anon_sym_BSLASHGLSname] = ACTIONS(6393), - [anon_sym_BSLASHglssymbol] = ACTIONS(6393), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6393), - [anon_sym_BSLASHglsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6393), - [anon_sym_BSLASHglsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6393), - [anon_sym_BSLASHglsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6393), - [anon_sym_BSLASHglsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6393), - [anon_sym_BSLASHglsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6393), - [anon_sym_BSLASHnewacronym] = ACTIONS(6393), - [anon_sym_BSLASHacrshort] = ACTIONS(6393), - [anon_sym_BSLASHAcrshort] = ACTIONS(6393), - [anon_sym_BSLASHACRshort] = ACTIONS(6393), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6393), - [anon_sym_BSLASHacrlong] = ACTIONS(6393), - [anon_sym_BSLASHAcrlong] = ACTIONS(6393), - [anon_sym_BSLASHACRlong] = ACTIONS(6393), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6393), - [anon_sym_BSLASHacrfull] = ACTIONS(6393), - [anon_sym_BSLASHAcrfull] = ACTIONS(6393), - [anon_sym_BSLASHACRfull] = ACTIONS(6393), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6393), - [anon_sym_BSLASHacs] = ACTIONS(6393), - [anon_sym_BSLASHAcs] = ACTIONS(6393), - [anon_sym_BSLASHacsp] = ACTIONS(6393), - [anon_sym_BSLASHAcsp] = ACTIONS(6393), - [anon_sym_BSLASHacl] = ACTIONS(6393), - [anon_sym_BSLASHAcl] = ACTIONS(6393), - [anon_sym_BSLASHaclp] = ACTIONS(6393), - [anon_sym_BSLASHAclp] = ACTIONS(6393), - [anon_sym_BSLASHacf] = ACTIONS(6393), - [anon_sym_BSLASHAcf] = ACTIONS(6393), - [anon_sym_BSLASHacfp] = ACTIONS(6393), - [anon_sym_BSLASHAcfp] = ACTIONS(6393), - [anon_sym_BSLASHac] = ACTIONS(6393), - [anon_sym_BSLASHAc] = ACTIONS(6393), - [anon_sym_BSLASHacp] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6393), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6393), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6393), - [anon_sym_BSLASHcolor] = ACTIONS(6393), - [anon_sym_BSLASHcolorbox] = ACTIONS(6393), - [anon_sym_BSLASHtextcolor] = ACTIONS(6393), - [anon_sym_BSLASHpagecolor] = ACTIONS(6393), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6393), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6393), - [anon_sym_BSLASHtext] = ACTIONS(6393), - [anon_sym_BSLASHintertext] = ACTIONS(6393), - [anon_sym_shortintertext] = ACTIONS(6393), - }, - [1874] = { - [sym_command_name] = ACTIONS(6389), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6389), - [anon_sym_LPAREN] = ACTIONS(6391), - [anon_sym_RPAREN] = ACTIONS(6391), - [anon_sym_LBRACE] = ACTIONS(6391), - [anon_sym_RBRACE] = ACTIONS(6391), - [anon_sym_BSLASHand] = ACTIONS(6389), - [sym_word] = ACTIONS(6389), - [sym_placeholder] = ACTIONS(6391), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6391), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_LT] = ACTIONS(6389), - [anon_sym_GT] = ACTIONS(6389), - [anon_sym_BANG] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_SQUOTE] = ACTIONS(6389), - [anon_sym__] = ACTIONS(6391), - [anon_sym_CARET] = ACTIONS(6391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6391), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6391), - [anon_sym_DOLLAR] = ACTIONS(6389), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6391), - [anon_sym_BSLASHtitle] = ACTIONS(6389), - [anon_sym_BSLASHauthor] = ACTIONS(6389), - [anon_sym_BSLASHusepackage] = ACTIONS(6389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6389), - [anon_sym_BSLASHinclude] = ACTIONS(6389), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6389), - [anon_sym_BSLASHinput] = ACTIONS(6389), - [anon_sym_BSLASHsubfile] = ACTIONS(6389), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6389), - [anon_sym_BSLASHbibliography] = ACTIONS(6389), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6389), - [anon_sym_BSLASHincludesvg] = ACTIONS(6389), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6389), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6389), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6389), - [anon_sym_BSLASHimport] = ACTIONS(6389), - [anon_sym_BSLASHsubimport] = ACTIONS(6389), - [anon_sym_BSLASHinputfrom] = ACTIONS(6389), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6389), - [anon_sym_BSLASHincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHcaption] = ACTIONS(6389), - [anon_sym_BSLASHcite] = ACTIONS(6389), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCite] = ACTIONS(6389), - [anon_sym_BSLASHnocite] = ACTIONS(6389), - [anon_sym_BSLASHcitet] = ACTIONS(6389), - [anon_sym_BSLASHcitep] = ACTIONS(6389), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteauthor] = ACTIONS(6389), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6389), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitetitle] = ACTIONS(6389), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteyear] = ACTIONS(6389), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitedate] = ACTIONS(6389), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteurl] = ACTIONS(6389), - [anon_sym_BSLASHfullcite] = ACTIONS(6389), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6389), - [anon_sym_BSLASHcitealt] = ACTIONS(6389), - [anon_sym_BSLASHcitealp] = ACTIONS(6389), - [anon_sym_BSLASHcitetext] = ACTIONS(6389), - [anon_sym_BSLASHparencite] = ACTIONS(6389), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHParencite] = ACTIONS(6389), - [anon_sym_BSLASHfootcite] = ACTIONS(6389), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6389), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6389), - [anon_sym_BSLASHtextcite] = ACTIONS(6389), - [anon_sym_BSLASHTextcite] = ACTIONS(6389), - [anon_sym_BSLASHsmartcite] = ACTIONS(6389), - [anon_sym_BSLASHSmartcite] = ACTIONS(6389), - [anon_sym_BSLASHsupercite] = ACTIONS(6389), - [anon_sym_BSLASHautocite] = ACTIONS(6389), - [anon_sym_BSLASHAutocite] = ACTIONS(6389), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHvolcite] = ACTIONS(6389), - [anon_sym_BSLASHVolcite] = ACTIONS(6389), - [anon_sym_BSLASHpvolcite] = ACTIONS(6389), - [anon_sym_BSLASHPvolcite] = ACTIONS(6389), - [anon_sym_BSLASHfvolcite] = ACTIONS(6389), - [anon_sym_BSLASHftvolcite] = ACTIONS(6389), - [anon_sym_BSLASHsvolcite] = ACTIONS(6389), - [anon_sym_BSLASHSvolcite] = ACTIONS(6389), - [anon_sym_BSLASHtvolcite] = ACTIONS(6389), - [anon_sym_BSLASHTvolcite] = ACTIONS(6389), - [anon_sym_BSLASHavolcite] = ACTIONS(6389), - [anon_sym_BSLASHAvolcite] = ACTIONS(6389), - [anon_sym_BSLASHnotecite] = ACTIONS(6389), - [anon_sym_BSLASHNotecite] = ACTIONS(6389), - [anon_sym_BSLASHpnotecite] = ACTIONS(6389), - [anon_sym_BSLASHPnotecite] = ACTIONS(6389), - [anon_sym_BSLASHfnotecite] = ACTIONS(6389), - [anon_sym_BSLASHlabel] = ACTIONS(6389), - [anon_sym_BSLASHref] = ACTIONS(6389), - [anon_sym_BSLASHeqref] = ACTIONS(6389), - [anon_sym_BSLASHvref] = ACTIONS(6389), - [anon_sym_BSLASHVref] = ACTIONS(6389), - [anon_sym_BSLASHautoref] = ACTIONS(6389), - [anon_sym_BSLASHpageref] = ACTIONS(6389), - [anon_sym_BSLASHcref] = ACTIONS(6389), - [anon_sym_BSLASHCref] = ACTIONS(6389), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnameCref] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHlabelcref] = ACTIONS(6389), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCrefrange] = ACTIONS(6389), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnewlabel] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6389), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6389), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6391), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHdef] = ACTIONS(6389), - [anon_sym_BSLASHlet] = ACTIONS(6389), - [anon_sym_BSLASHleft] = ACTIONS(6389), - [anon_sym_BSLASHbig] = ACTIONS(6389), - [anon_sym_BSLASHBig] = ACTIONS(6389), - [anon_sym_BSLASHbigg] = ACTIONS(6389), - [anon_sym_BSLASHBigg] = ACTIONS(6389), - [anon_sym_BSLASHbigl] = ACTIONS(6389), - [anon_sym_BSLASHBigl] = ACTIONS(6389), - [anon_sym_BSLASHbiggl] = ACTIONS(6389), - [anon_sym_BSLASHBiggl] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6389), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6389), - [anon_sym_BSLASHgls] = ACTIONS(6389), - [anon_sym_BSLASHGls] = ACTIONS(6389), - [anon_sym_BSLASHGLS] = ACTIONS(6389), - [anon_sym_BSLASHglspl] = ACTIONS(6389), - [anon_sym_BSLASHGlspl] = ACTIONS(6389), - [anon_sym_BSLASHGLSpl] = ACTIONS(6389), - [anon_sym_BSLASHglsdisp] = ACTIONS(6389), - [anon_sym_BSLASHglslink] = ACTIONS(6389), - [anon_sym_BSLASHglstext] = ACTIONS(6389), - [anon_sym_BSLASHGlstext] = ACTIONS(6389), - [anon_sym_BSLASHGLStext] = ACTIONS(6389), - [anon_sym_BSLASHglsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6389), - [anon_sym_BSLASHglsplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSplural] = ACTIONS(6389), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHglsname] = ACTIONS(6389), - [anon_sym_BSLASHGlsname] = ACTIONS(6389), - [anon_sym_BSLASHGLSname] = ACTIONS(6389), - [anon_sym_BSLASHglssymbol] = ACTIONS(6389), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6389), - [anon_sym_BSLASHglsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6389), - [anon_sym_BSLASHglsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6389), - [anon_sym_BSLASHglsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6389), - [anon_sym_BSLASHglsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6389), - [anon_sym_BSLASHglsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6389), - [anon_sym_BSLASHnewacronym] = ACTIONS(6389), - [anon_sym_BSLASHacrshort] = ACTIONS(6389), - [anon_sym_BSLASHAcrshort] = ACTIONS(6389), - [anon_sym_BSLASHACRshort] = ACTIONS(6389), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6389), - [anon_sym_BSLASHacrlong] = ACTIONS(6389), - [anon_sym_BSLASHAcrlong] = ACTIONS(6389), - [anon_sym_BSLASHACRlong] = ACTIONS(6389), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6389), - [anon_sym_BSLASHacrfull] = ACTIONS(6389), - [anon_sym_BSLASHAcrfull] = ACTIONS(6389), - [anon_sym_BSLASHACRfull] = ACTIONS(6389), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6389), - [anon_sym_BSLASHacs] = ACTIONS(6389), - [anon_sym_BSLASHAcs] = ACTIONS(6389), - [anon_sym_BSLASHacsp] = ACTIONS(6389), - [anon_sym_BSLASHAcsp] = ACTIONS(6389), - [anon_sym_BSLASHacl] = ACTIONS(6389), - [anon_sym_BSLASHAcl] = ACTIONS(6389), - [anon_sym_BSLASHaclp] = ACTIONS(6389), - [anon_sym_BSLASHAclp] = ACTIONS(6389), - [anon_sym_BSLASHacf] = ACTIONS(6389), - [anon_sym_BSLASHAcf] = ACTIONS(6389), - [anon_sym_BSLASHacfp] = ACTIONS(6389), - [anon_sym_BSLASHAcfp] = ACTIONS(6389), - [anon_sym_BSLASHac] = ACTIONS(6389), - [anon_sym_BSLASHAc] = ACTIONS(6389), - [anon_sym_BSLASHacp] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6389), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6389), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6389), - [anon_sym_BSLASHcolor] = ACTIONS(6389), - [anon_sym_BSLASHcolorbox] = ACTIONS(6389), - [anon_sym_BSLASHtextcolor] = ACTIONS(6389), - [anon_sym_BSLASHpagecolor] = ACTIONS(6389), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6389), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6389), - [anon_sym_BSLASHtext] = ACTIONS(6389), - [anon_sym_BSLASHintertext] = ACTIONS(6389), - [anon_sym_shortintertext] = ACTIONS(6389), - }, - [1875] = { - [sym_command_name] = ACTIONS(6385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6385), - [anon_sym_LPAREN] = ACTIONS(6387), - [anon_sym_RPAREN] = ACTIONS(6387), - [anon_sym_LBRACE] = ACTIONS(6387), - [anon_sym_RBRACE] = ACTIONS(6387), - [anon_sym_BSLASHand] = ACTIONS(6385), - [sym_word] = ACTIONS(6385), - [sym_placeholder] = ACTIONS(6387), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6387), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_LT] = ACTIONS(6385), - [anon_sym_GT] = ACTIONS(6385), - [anon_sym_BANG] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_SQUOTE] = ACTIONS(6385), - [anon_sym__] = ACTIONS(6387), - [anon_sym_CARET] = ACTIONS(6387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6387), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6387), - [anon_sym_DOLLAR] = ACTIONS(6385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6387), - [anon_sym_BSLASHtitle] = ACTIONS(6385), - [anon_sym_BSLASHauthor] = ACTIONS(6385), - [anon_sym_BSLASHusepackage] = ACTIONS(6385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6385), - [anon_sym_BSLASHinclude] = ACTIONS(6385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6385), - [anon_sym_BSLASHinput] = ACTIONS(6385), - [anon_sym_BSLASHsubfile] = ACTIONS(6385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6385), - [anon_sym_BSLASHbibliography] = ACTIONS(6385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6385), - [anon_sym_BSLASHincludesvg] = ACTIONS(6385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6385), - [anon_sym_BSLASHimport] = ACTIONS(6385), - [anon_sym_BSLASHsubimport] = ACTIONS(6385), - [anon_sym_BSLASHinputfrom] = ACTIONS(6385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6385), - [anon_sym_BSLASHincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHcaption] = ACTIONS(6385), - [anon_sym_BSLASHcite] = ACTIONS(6385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCite] = ACTIONS(6385), - [anon_sym_BSLASHnocite] = ACTIONS(6385), - [anon_sym_BSLASHcitet] = ACTIONS(6385), - [anon_sym_BSLASHcitep] = ACTIONS(6385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteauthor] = ACTIONS(6385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitetitle] = ACTIONS(6385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteyear] = ACTIONS(6385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitedate] = ACTIONS(6385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteurl] = ACTIONS(6385), - [anon_sym_BSLASHfullcite] = ACTIONS(6385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6385), - [anon_sym_BSLASHcitealt] = ACTIONS(6385), - [anon_sym_BSLASHcitealp] = ACTIONS(6385), - [anon_sym_BSLASHcitetext] = ACTIONS(6385), - [anon_sym_BSLASHparencite] = ACTIONS(6385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHParencite] = ACTIONS(6385), - [anon_sym_BSLASHfootcite] = ACTIONS(6385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6385), - [anon_sym_BSLASHtextcite] = ACTIONS(6385), - [anon_sym_BSLASHTextcite] = ACTIONS(6385), - [anon_sym_BSLASHsmartcite] = ACTIONS(6385), - [anon_sym_BSLASHSmartcite] = ACTIONS(6385), - [anon_sym_BSLASHsupercite] = ACTIONS(6385), - [anon_sym_BSLASHautocite] = ACTIONS(6385), - [anon_sym_BSLASHAutocite] = ACTIONS(6385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHvolcite] = ACTIONS(6385), - [anon_sym_BSLASHVolcite] = ACTIONS(6385), - [anon_sym_BSLASHpvolcite] = ACTIONS(6385), - [anon_sym_BSLASHPvolcite] = ACTIONS(6385), - [anon_sym_BSLASHfvolcite] = ACTIONS(6385), - [anon_sym_BSLASHftvolcite] = ACTIONS(6385), - [anon_sym_BSLASHsvolcite] = ACTIONS(6385), - [anon_sym_BSLASHSvolcite] = ACTIONS(6385), - [anon_sym_BSLASHtvolcite] = ACTIONS(6385), - [anon_sym_BSLASHTvolcite] = ACTIONS(6385), - [anon_sym_BSLASHavolcite] = ACTIONS(6385), - [anon_sym_BSLASHAvolcite] = ACTIONS(6385), - [anon_sym_BSLASHnotecite] = ACTIONS(6385), - [anon_sym_BSLASHNotecite] = ACTIONS(6385), - [anon_sym_BSLASHpnotecite] = ACTIONS(6385), - [anon_sym_BSLASHPnotecite] = ACTIONS(6385), - [anon_sym_BSLASHfnotecite] = ACTIONS(6385), - [anon_sym_BSLASHlabel] = ACTIONS(6385), - [anon_sym_BSLASHref] = ACTIONS(6385), - [anon_sym_BSLASHeqref] = ACTIONS(6385), - [anon_sym_BSLASHvref] = ACTIONS(6385), - [anon_sym_BSLASHVref] = ACTIONS(6385), - [anon_sym_BSLASHautoref] = ACTIONS(6385), - [anon_sym_BSLASHpageref] = ACTIONS(6385), - [anon_sym_BSLASHcref] = ACTIONS(6385), - [anon_sym_BSLASHCref] = ACTIONS(6385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnameCref] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHlabelcref] = ACTIONS(6385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCrefrange] = ACTIONS(6385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnewlabel] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6387), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHdef] = ACTIONS(6385), - [anon_sym_BSLASHlet] = ACTIONS(6385), - [anon_sym_BSLASHleft] = ACTIONS(6385), - [anon_sym_BSLASHbig] = ACTIONS(6385), - [anon_sym_BSLASHBig] = ACTIONS(6385), - [anon_sym_BSLASHbigg] = ACTIONS(6385), - [anon_sym_BSLASHBigg] = ACTIONS(6385), - [anon_sym_BSLASHbigl] = ACTIONS(6385), - [anon_sym_BSLASHBigl] = ACTIONS(6385), - [anon_sym_BSLASHbiggl] = ACTIONS(6385), - [anon_sym_BSLASHBiggl] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6385), - [anon_sym_BSLASHgls] = ACTIONS(6385), - [anon_sym_BSLASHGls] = ACTIONS(6385), - [anon_sym_BSLASHGLS] = ACTIONS(6385), - [anon_sym_BSLASHglspl] = ACTIONS(6385), - [anon_sym_BSLASHGlspl] = ACTIONS(6385), - [anon_sym_BSLASHGLSpl] = ACTIONS(6385), - [anon_sym_BSLASHglsdisp] = ACTIONS(6385), - [anon_sym_BSLASHglslink] = ACTIONS(6385), - [anon_sym_BSLASHglstext] = ACTIONS(6385), - [anon_sym_BSLASHGlstext] = ACTIONS(6385), - [anon_sym_BSLASHGLStext] = ACTIONS(6385), - [anon_sym_BSLASHglsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6385), - [anon_sym_BSLASHglsplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSplural] = ACTIONS(6385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHglsname] = ACTIONS(6385), - [anon_sym_BSLASHGlsname] = ACTIONS(6385), - [anon_sym_BSLASHGLSname] = ACTIONS(6385), - [anon_sym_BSLASHglssymbol] = ACTIONS(6385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6385), - [anon_sym_BSLASHglsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6385), - [anon_sym_BSLASHglsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6385), - [anon_sym_BSLASHglsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6385), - [anon_sym_BSLASHglsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6385), - [anon_sym_BSLASHglsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6385), - [anon_sym_BSLASHnewacronym] = ACTIONS(6385), - [anon_sym_BSLASHacrshort] = ACTIONS(6385), - [anon_sym_BSLASHAcrshort] = ACTIONS(6385), - [anon_sym_BSLASHACRshort] = ACTIONS(6385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6385), - [anon_sym_BSLASHacrlong] = ACTIONS(6385), - [anon_sym_BSLASHAcrlong] = ACTIONS(6385), - [anon_sym_BSLASHACRlong] = ACTIONS(6385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6385), - [anon_sym_BSLASHacrfull] = ACTIONS(6385), - [anon_sym_BSLASHAcrfull] = ACTIONS(6385), - [anon_sym_BSLASHACRfull] = ACTIONS(6385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6385), - [anon_sym_BSLASHacs] = ACTIONS(6385), - [anon_sym_BSLASHAcs] = ACTIONS(6385), - [anon_sym_BSLASHacsp] = ACTIONS(6385), - [anon_sym_BSLASHAcsp] = ACTIONS(6385), - [anon_sym_BSLASHacl] = ACTIONS(6385), - [anon_sym_BSLASHAcl] = ACTIONS(6385), - [anon_sym_BSLASHaclp] = ACTIONS(6385), - [anon_sym_BSLASHAclp] = ACTIONS(6385), - [anon_sym_BSLASHacf] = ACTIONS(6385), - [anon_sym_BSLASHAcf] = ACTIONS(6385), - [anon_sym_BSLASHacfp] = ACTIONS(6385), - [anon_sym_BSLASHAcfp] = ACTIONS(6385), - [anon_sym_BSLASHac] = ACTIONS(6385), - [anon_sym_BSLASHAc] = ACTIONS(6385), - [anon_sym_BSLASHacp] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6385), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6385), - [anon_sym_BSLASHcolor] = ACTIONS(6385), - [anon_sym_BSLASHcolorbox] = ACTIONS(6385), - [anon_sym_BSLASHtextcolor] = ACTIONS(6385), - [anon_sym_BSLASHpagecolor] = ACTIONS(6385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6385), - [anon_sym_BSLASHtext] = ACTIONS(6385), - [anon_sym_BSLASHintertext] = ACTIONS(6385), - [anon_sym_shortintertext] = ACTIONS(6385), - }, - [1876] = { - [sym_command_name] = ACTIONS(6381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6381), - [anon_sym_LPAREN] = ACTIONS(6383), - [anon_sym_RPAREN] = ACTIONS(6383), - [anon_sym_LBRACE] = ACTIONS(6383), - [anon_sym_RBRACE] = ACTIONS(6383), - [anon_sym_BSLASHand] = ACTIONS(6381), - [sym_word] = ACTIONS(6381), - [sym_placeholder] = ACTIONS(6383), - [anon_sym_PLUS] = ACTIONS(6383), - [anon_sym_DASH] = ACTIONS(6383), - [anon_sym_STAR] = ACTIONS(6383), - [anon_sym_SLASH] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_COLON] = ACTIONS(6381), - [anon_sym_SQUOTE] = ACTIONS(6381), - [anon_sym__] = ACTIONS(6383), - [anon_sym_CARET] = ACTIONS(6383), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6383), - [anon_sym_DOLLAR] = ACTIONS(6381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6383), - [anon_sym_BSLASHtitle] = ACTIONS(6381), - [anon_sym_BSLASHauthor] = ACTIONS(6381), - [anon_sym_BSLASHusepackage] = ACTIONS(6381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6381), - [anon_sym_BSLASHinclude] = ACTIONS(6381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6381), - [anon_sym_BSLASHinput] = ACTIONS(6381), - [anon_sym_BSLASHsubfile] = ACTIONS(6381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6381), - [anon_sym_BSLASHbibliography] = ACTIONS(6381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6381), - [anon_sym_BSLASHincludesvg] = ACTIONS(6381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6381), - [anon_sym_BSLASHimport] = ACTIONS(6381), - [anon_sym_BSLASHsubimport] = ACTIONS(6381), - [anon_sym_BSLASHinputfrom] = ACTIONS(6381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6381), - [anon_sym_BSLASHincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHcaption] = ACTIONS(6381), - [anon_sym_BSLASHcite] = ACTIONS(6381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCite] = ACTIONS(6381), - [anon_sym_BSLASHnocite] = ACTIONS(6381), - [anon_sym_BSLASHcitet] = ACTIONS(6381), - [anon_sym_BSLASHcitep] = ACTIONS(6381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteauthor] = ACTIONS(6381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitetitle] = ACTIONS(6381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteyear] = ACTIONS(6381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitedate] = ACTIONS(6381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteurl] = ACTIONS(6381), - [anon_sym_BSLASHfullcite] = ACTIONS(6381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6381), - [anon_sym_BSLASHcitealt] = ACTIONS(6381), - [anon_sym_BSLASHcitealp] = ACTIONS(6381), - [anon_sym_BSLASHcitetext] = ACTIONS(6381), - [anon_sym_BSLASHparencite] = ACTIONS(6381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHParencite] = ACTIONS(6381), - [anon_sym_BSLASHfootcite] = ACTIONS(6381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6381), - [anon_sym_BSLASHtextcite] = ACTIONS(6381), - [anon_sym_BSLASHTextcite] = ACTIONS(6381), - [anon_sym_BSLASHsmartcite] = ACTIONS(6381), - [anon_sym_BSLASHSmartcite] = ACTIONS(6381), - [anon_sym_BSLASHsupercite] = ACTIONS(6381), - [anon_sym_BSLASHautocite] = ACTIONS(6381), - [anon_sym_BSLASHAutocite] = ACTIONS(6381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHvolcite] = ACTIONS(6381), - [anon_sym_BSLASHVolcite] = ACTIONS(6381), - [anon_sym_BSLASHpvolcite] = ACTIONS(6381), - [anon_sym_BSLASHPvolcite] = ACTIONS(6381), - [anon_sym_BSLASHfvolcite] = ACTIONS(6381), - [anon_sym_BSLASHftvolcite] = ACTIONS(6381), - [anon_sym_BSLASHsvolcite] = ACTIONS(6381), - [anon_sym_BSLASHSvolcite] = ACTIONS(6381), - [anon_sym_BSLASHtvolcite] = ACTIONS(6381), - [anon_sym_BSLASHTvolcite] = ACTIONS(6381), - [anon_sym_BSLASHavolcite] = ACTIONS(6381), - [anon_sym_BSLASHAvolcite] = ACTIONS(6381), - [anon_sym_BSLASHnotecite] = ACTIONS(6381), - [anon_sym_BSLASHNotecite] = ACTIONS(6381), - [anon_sym_BSLASHpnotecite] = ACTIONS(6381), - [anon_sym_BSLASHPnotecite] = ACTIONS(6381), - [anon_sym_BSLASHfnotecite] = ACTIONS(6381), - [anon_sym_BSLASHlabel] = ACTIONS(6381), - [anon_sym_BSLASHref] = ACTIONS(6381), - [anon_sym_BSLASHeqref] = ACTIONS(6381), - [anon_sym_BSLASHvref] = ACTIONS(6381), - [anon_sym_BSLASHVref] = ACTIONS(6381), - [anon_sym_BSLASHautoref] = ACTIONS(6381), - [anon_sym_BSLASHpageref] = ACTIONS(6381), - [anon_sym_BSLASHcref] = ACTIONS(6381), - [anon_sym_BSLASHCref] = ACTIONS(6381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnameCref] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHlabelcref] = ACTIONS(6381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCrefrange] = ACTIONS(6381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnewlabel] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6383), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHdef] = ACTIONS(6381), - [anon_sym_BSLASHlet] = ACTIONS(6381), - [anon_sym_BSLASHleft] = ACTIONS(6381), - [anon_sym_BSLASHbig] = ACTIONS(6381), - [anon_sym_BSLASHBig] = ACTIONS(6381), - [anon_sym_BSLASHbigg] = ACTIONS(6381), - [anon_sym_BSLASHBigg] = ACTIONS(6381), - [anon_sym_BSLASHbigl] = ACTIONS(6381), - [anon_sym_BSLASHBigl] = ACTIONS(6381), - [anon_sym_BSLASHbiggl] = ACTIONS(6381), - [anon_sym_BSLASHBiggl] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6381), - [anon_sym_BSLASHgls] = ACTIONS(6381), - [anon_sym_BSLASHGls] = ACTIONS(6381), - [anon_sym_BSLASHGLS] = ACTIONS(6381), - [anon_sym_BSLASHglspl] = ACTIONS(6381), - [anon_sym_BSLASHGlspl] = ACTIONS(6381), - [anon_sym_BSLASHGLSpl] = ACTIONS(6381), - [anon_sym_BSLASHglsdisp] = ACTIONS(6381), - [anon_sym_BSLASHglslink] = ACTIONS(6381), - [anon_sym_BSLASHglstext] = ACTIONS(6381), - [anon_sym_BSLASHGlstext] = ACTIONS(6381), - [anon_sym_BSLASHGLStext] = ACTIONS(6381), - [anon_sym_BSLASHglsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6381), - [anon_sym_BSLASHglsplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSplural] = ACTIONS(6381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHglsname] = ACTIONS(6381), - [anon_sym_BSLASHGlsname] = ACTIONS(6381), - [anon_sym_BSLASHGLSname] = ACTIONS(6381), - [anon_sym_BSLASHglssymbol] = ACTIONS(6381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6381), - [anon_sym_BSLASHglsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6381), - [anon_sym_BSLASHglsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6381), - [anon_sym_BSLASHglsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6381), - [anon_sym_BSLASHglsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6381), - [anon_sym_BSLASHglsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6381), - [anon_sym_BSLASHnewacronym] = ACTIONS(6381), - [anon_sym_BSLASHacrshort] = ACTIONS(6381), - [anon_sym_BSLASHAcrshort] = ACTIONS(6381), - [anon_sym_BSLASHACRshort] = ACTIONS(6381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6381), - [anon_sym_BSLASHacrlong] = ACTIONS(6381), - [anon_sym_BSLASHAcrlong] = ACTIONS(6381), - [anon_sym_BSLASHACRlong] = ACTIONS(6381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6381), - [anon_sym_BSLASHacrfull] = ACTIONS(6381), - [anon_sym_BSLASHAcrfull] = ACTIONS(6381), - [anon_sym_BSLASHACRfull] = ACTIONS(6381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6381), - [anon_sym_BSLASHacs] = ACTIONS(6381), - [anon_sym_BSLASHAcs] = ACTIONS(6381), - [anon_sym_BSLASHacsp] = ACTIONS(6381), - [anon_sym_BSLASHAcsp] = ACTIONS(6381), - [anon_sym_BSLASHacl] = ACTIONS(6381), - [anon_sym_BSLASHAcl] = ACTIONS(6381), - [anon_sym_BSLASHaclp] = ACTIONS(6381), - [anon_sym_BSLASHAclp] = ACTIONS(6381), - [anon_sym_BSLASHacf] = ACTIONS(6381), - [anon_sym_BSLASHAcf] = ACTIONS(6381), - [anon_sym_BSLASHacfp] = ACTIONS(6381), - [anon_sym_BSLASHAcfp] = ACTIONS(6381), - [anon_sym_BSLASHac] = ACTIONS(6381), - [anon_sym_BSLASHAc] = ACTIONS(6381), - [anon_sym_BSLASHacp] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6381), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6381), - [anon_sym_BSLASHcolor] = ACTIONS(6381), - [anon_sym_BSLASHcolorbox] = ACTIONS(6381), - [anon_sym_BSLASHtextcolor] = ACTIONS(6381), - [anon_sym_BSLASHpagecolor] = ACTIONS(6381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6381), - [anon_sym_BSLASHtext] = ACTIONS(6381), - [anon_sym_BSLASHintertext] = ACTIONS(6381), - [anon_sym_shortintertext] = ACTIONS(6381), - }, - [1877] = { - [sym_command_name] = ACTIONS(6525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6525), - [anon_sym_LPAREN] = ACTIONS(6527), - [anon_sym_RPAREN] = ACTIONS(6527), - [anon_sym_LBRACE] = ACTIONS(6527), - [anon_sym_RBRACE] = ACTIONS(6527), - [anon_sym_BSLASHand] = ACTIONS(6525), - [sym_word] = ACTIONS(6525), - [sym_placeholder] = ACTIONS(6527), - [anon_sym_PLUS] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6527), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6527), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_BANG] = ACTIONS(6525), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_SQUOTE] = ACTIONS(6525), - [anon_sym__] = ACTIONS(6527), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6527), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6527), - [anon_sym_DOLLAR] = ACTIONS(6525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6527), - [anon_sym_BSLASHtitle] = ACTIONS(6525), - [anon_sym_BSLASHauthor] = ACTIONS(6525), - [anon_sym_BSLASHusepackage] = ACTIONS(6525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6525), - [anon_sym_BSLASHinclude] = ACTIONS(6525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6525), - [anon_sym_BSLASHinput] = ACTIONS(6525), - [anon_sym_BSLASHsubfile] = ACTIONS(6525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6525), - [anon_sym_BSLASHbibliography] = ACTIONS(6525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6525), - [anon_sym_BSLASHincludesvg] = ACTIONS(6525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6525), - [anon_sym_BSLASHimport] = ACTIONS(6525), - [anon_sym_BSLASHsubimport] = ACTIONS(6525), - [anon_sym_BSLASHinputfrom] = ACTIONS(6525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6525), - [anon_sym_BSLASHincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHcaption] = ACTIONS(6525), - [anon_sym_BSLASHcite] = ACTIONS(6525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCite] = ACTIONS(6525), - [anon_sym_BSLASHnocite] = ACTIONS(6525), - [anon_sym_BSLASHcitet] = ACTIONS(6525), - [anon_sym_BSLASHcitep] = ACTIONS(6525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteauthor] = ACTIONS(6525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitetitle] = ACTIONS(6525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteyear] = ACTIONS(6525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitedate] = ACTIONS(6525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteurl] = ACTIONS(6525), - [anon_sym_BSLASHfullcite] = ACTIONS(6525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6525), - [anon_sym_BSLASHcitealt] = ACTIONS(6525), - [anon_sym_BSLASHcitealp] = ACTIONS(6525), - [anon_sym_BSLASHcitetext] = ACTIONS(6525), - [anon_sym_BSLASHparencite] = ACTIONS(6525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHParencite] = ACTIONS(6525), - [anon_sym_BSLASHfootcite] = ACTIONS(6525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6525), - [anon_sym_BSLASHtextcite] = ACTIONS(6525), - [anon_sym_BSLASHTextcite] = ACTIONS(6525), - [anon_sym_BSLASHsmartcite] = ACTIONS(6525), - [anon_sym_BSLASHSmartcite] = ACTIONS(6525), - [anon_sym_BSLASHsupercite] = ACTIONS(6525), - [anon_sym_BSLASHautocite] = ACTIONS(6525), - [anon_sym_BSLASHAutocite] = ACTIONS(6525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHvolcite] = ACTIONS(6525), - [anon_sym_BSLASHVolcite] = ACTIONS(6525), - [anon_sym_BSLASHpvolcite] = ACTIONS(6525), - [anon_sym_BSLASHPvolcite] = ACTIONS(6525), - [anon_sym_BSLASHfvolcite] = ACTIONS(6525), - [anon_sym_BSLASHftvolcite] = ACTIONS(6525), - [anon_sym_BSLASHsvolcite] = ACTIONS(6525), - [anon_sym_BSLASHSvolcite] = ACTIONS(6525), - [anon_sym_BSLASHtvolcite] = ACTIONS(6525), - [anon_sym_BSLASHTvolcite] = ACTIONS(6525), - [anon_sym_BSLASHavolcite] = ACTIONS(6525), - [anon_sym_BSLASHAvolcite] = ACTIONS(6525), - [anon_sym_BSLASHnotecite] = ACTIONS(6525), - [anon_sym_BSLASHNotecite] = ACTIONS(6525), - [anon_sym_BSLASHpnotecite] = ACTIONS(6525), - [anon_sym_BSLASHPnotecite] = ACTIONS(6525), - [anon_sym_BSLASHfnotecite] = ACTIONS(6525), - [anon_sym_BSLASHlabel] = ACTIONS(6525), - [anon_sym_BSLASHref] = ACTIONS(6525), - [anon_sym_BSLASHeqref] = ACTIONS(6525), - [anon_sym_BSLASHvref] = ACTIONS(6525), - [anon_sym_BSLASHVref] = ACTIONS(6525), - [anon_sym_BSLASHautoref] = ACTIONS(6525), - [anon_sym_BSLASHpageref] = ACTIONS(6525), - [anon_sym_BSLASHcref] = ACTIONS(6525), - [anon_sym_BSLASHCref] = ACTIONS(6525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnameCref] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHlabelcref] = ACTIONS(6525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCrefrange] = ACTIONS(6525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnewlabel] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6527), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHdef] = ACTIONS(6525), - [anon_sym_BSLASHlet] = ACTIONS(6525), - [anon_sym_BSLASHleft] = ACTIONS(6525), - [anon_sym_BSLASHbig] = ACTIONS(6525), - [anon_sym_BSLASHBig] = ACTIONS(6525), - [anon_sym_BSLASHbigg] = ACTIONS(6525), - [anon_sym_BSLASHBigg] = ACTIONS(6525), - [anon_sym_BSLASHbigl] = ACTIONS(6525), - [anon_sym_BSLASHBigl] = ACTIONS(6525), - [anon_sym_BSLASHbiggl] = ACTIONS(6525), - [anon_sym_BSLASHBiggl] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6525), - [anon_sym_BSLASHgls] = ACTIONS(6525), - [anon_sym_BSLASHGls] = ACTIONS(6525), - [anon_sym_BSLASHGLS] = ACTIONS(6525), - [anon_sym_BSLASHglspl] = ACTIONS(6525), - [anon_sym_BSLASHGlspl] = ACTIONS(6525), - [anon_sym_BSLASHGLSpl] = ACTIONS(6525), - [anon_sym_BSLASHglsdisp] = ACTIONS(6525), - [anon_sym_BSLASHglslink] = ACTIONS(6525), - [anon_sym_BSLASHglstext] = ACTIONS(6525), - [anon_sym_BSLASHGlstext] = ACTIONS(6525), - [anon_sym_BSLASHGLStext] = ACTIONS(6525), - [anon_sym_BSLASHglsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6525), - [anon_sym_BSLASHglsplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSplural] = ACTIONS(6525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHglsname] = ACTIONS(6525), - [anon_sym_BSLASHGlsname] = ACTIONS(6525), - [anon_sym_BSLASHGLSname] = ACTIONS(6525), - [anon_sym_BSLASHglssymbol] = ACTIONS(6525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6525), - [anon_sym_BSLASHglsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6525), - [anon_sym_BSLASHglsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6525), - [anon_sym_BSLASHglsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6525), - [anon_sym_BSLASHglsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6525), - [anon_sym_BSLASHglsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6525), - [anon_sym_BSLASHnewacronym] = ACTIONS(6525), - [anon_sym_BSLASHacrshort] = ACTIONS(6525), - [anon_sym_BSLASHAcrshort] = ACTIONS(6525), - [anon_sym_BSLASHACRshort] = ACTIONS(6525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6525), - [anon_sym_BSLASHacrlong] = ACTIONS(6525), - [anon_sym_BSLASHAcrlong] = ACTIONS(6525), - [anon_sym_BSLASHACRlong] = ACTIONS(6525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6525), - [anon_sym_BSLASHacrfull] = ACTIONS(6525), - [anon_sym_BSLASHAcrfull] = ACTIONS(6525), - [anon_sym_BSLASHACRfull] = ACTIONS(6525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6525), - [anon_sym_BSLASHacs] = ACTIONS(6525), - [anon_sym_BSLASHAcs] = ACTIONS(6525), - [anon_sym_BSLASHacsp] = ACTIONS(6525), - [anon_sym_BSLASHAcsp] = ACTIONS(6525), - [anon_sym_BSLASHacl] = ACTIONS(6525), - [anon_sym_BSLASHAcl] = ACTIONS(6525), - [anon_sym_BSLASHaclp] = ACTIONS(6525), - [anon_sym_BSLASHAclp] = ACTIONS(6525), - [anon_sym_BSLASHacf] = ACTIONS(6525), - [anon_sym_BSLASHAcf] = ACTIONS(6525), - [anon_sym_BSLASHacfp] = ACTIONS(6525), - [anon_sym_BSLASHAcfp] = ACTIONS(6525), - [anon_sym_BSLASHac] = ACTIONS(6525), - [anon_sym_BSLASHAc] = ACTIONS(6525), - [anon_sym_BSLASHacp] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6525), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6525), - [anon_sym_BSLASHcolor] = ACTIONS(6525), - [anon_sym_BSLASHcolorbox] = ACTIONS(6525), - [anon_sym_BSLASHtextcolor] = ACTIONS(6525), - [anon_sym_BSLASHpagecolor] = ACTIONS(6525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6525), - [anon_sym_BSLASHtext] = ACTIONS(6525), - [anon_sym_BSLASHintertext] = ACTIONS(6525), - [anon_sym_shortintertext] = ACTIONS(6525), - }, - [1878] = { - [sym_command_name] = ACTIONS(6373), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6373), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_RPAREN] = ACTIONS(6375), - [anon_sym_LBRACE] = ACTIONS(6375), - [anon_sym_RBRACE] = ACTIONS(6375), - [anon_sym_BSLASHand] = ACTIONS(6373), - [sym_word] = ACTIONS(6373), - [sym_placeholder] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6373), - [anon_sym_GT] = ACTIONS(6373), - [anon_sym_BANG] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_SQUOTE] = ACTIONS(6373), - [anon_sym__] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6375), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6375), - [anon_sym_DOLLAR] = ACTIONS(6373), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6375), - [anon_sym_BSLASHtitle] = ACTIONS(6373), - [anon_sym_BSLASHauthor] = ACTIONS(6373), - [anon_sym_BSLASHusepackage] = ACTIONS(6373), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6373), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6373), - [anon_sym_BSLASHinclude] = ACTIONS(6373), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6373), - [anon_sym_BSLASHinput] = ACTIONS(6373), - [anon_sym_BSLASHsubfile] = ACTIONS(6373), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6373), - [anon_sym_BSLASHbibliography] = ACTIONS(6373), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6373), - [anon_sym_BSLASHincludesvg] = ACTIONS(6373), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6373), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6373), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6373), - [anon_sym_BSLASHimport] = ACTIONS(6373), - [anon_sym_BSLASHsubimport] = ACTIONS(6373), - [anon_sym_BSLASHinputfrom] = ACTIONS(6373), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6373), - [anon_sym_BSLASHincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHcaption] = ACTIONS(6373), - [anon_sym_BSLASHcite] = ACTIONS(6373), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCite] = ACTIONS(6373), - [anon_sym_BSLASHnocite] = ACTIONS(6373), - [anon_sym_BSLASHcitet] = ACTIONS(6373), - [anon_sym_BSLASHcitep] = ACTIONS(6373), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteauthor] = ACTIONS(6373), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6373), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitetitle] = ACTIONS(6373), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteyear] = ACTIONS(6373), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitedate] = ACTIONS(6373), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteurl] = ACTIONS(6373), - [anon_sym_BSLASHfullcite] = ACTIONS(6373), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6373), - [anon_sym_BSLASHcitealt] = ACTIONS(6373), - [anon_sym_BSLASHcitealp] = ACTIONS(6373), - [anon_sym_BSLASHcitetext] = ACTIONS(6373), - [anon_sym_BSLASHparencite] = ACTIONS(6373), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHParencite] = ACTIONS(6373), - [anon_sym_BSLASHfootcite] = ACTIONS(6373), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6373), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6373), - [anon_sym_BSLASHtextcite] = ACTIONS(6373), - [anon_sym_BSLASHTextcite] = ACTIONS(6373), - [anon_sym_BSLASHsmartcite] = ACTIONS(6373), - [anon_sym_BSLASHSmartcite] = ACTIONS(6373), - [anon_sym_BSLASHsupercite] = ACTIONS(6373), - [anon_sym_BSLASHautocite] = ACTIONS(6373), - [anon_sym_BSLASHAutocite] = ACTIONS(6373), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHvolcite] = ACTIONS(6373), - [anon_sym_BSLASHVolcite] = ACTIONS(6373), - [anon_sym_BSLASHpvolcite] = ACTIONS(6373), - [anon_sym_BSLASHPvolcite] = ACTIONS(6373), - [anon_sym_BSLASHfvolcite] = ACTIONS(6373), - [anon_sym_BSLASHftvolcite] = ACTIONS(6373), - [anon_sym_BSLASHsvolcite] = ACTIONS(6373), - [anon_sym_BSLASHSvolcite] = ACTIONS(6373), - [anon_sym_BSLASHtvolcite] = ACTIONS(6373), - [anon_sym_BSLASHTvolcite] = ACTIONS(6373), - [anon_sym_BSLASHavolcite] = ACTIONS(6373), - [anon_sym_BSLASHAvolcite] = ACTIONS(6373), - [anon_sym_BSLASHnotecite] = ACTIONS(6373), - [anon_sym_BSLASHNotecite] = ACTIONS(6373), - [anon_sym_BSLASHpnotecite] = ACTIONS(6373), - [anon_sym_BSLASHPnotecite] = ACTIONS(6373), - [anon_sym_BSLASHfnotecite] = ACTIONS(6373), - [anon_sym_BSLASHlabel] = ACTIONS(6373), - [anon_sym_BSLASHref] = ACTIONS(6373), - [anon_sym_BSLASHeqref] = ACTIONS(6373), - [anon_sym_BSLASHvref] = ACTIONS(6373), - [anon_sym_BSLASHVref] = ACTIONS(6373), - [anon_sym_BSLASHautoref] = ACTIONS(6373), - [anon_sym_BSLASHpageref] = ACTIONS(6373), - [anon_sym_BSLASHcref] = ACTIONS(6373), - [anon_sym_BSLASHCref] = ACTIONS(6373), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnameCref] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHlabelcref] = ACTIONS(6373), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCrefrange] = ACTIONS(6373), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnewlabel] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6373), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6373), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6375), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHdef] = ACTIONS(6373), - [anon_sym_BSLASHlet] = ACTIONS(6373), - [anon_sym_BSLASHleft] = ACTIONS(6373), - [anon_sym_BSLASHbig] = ACTIONS(6373), - [anon_sym_BSLASHBig] = ACTIONS(6373), - [anon_sym_BSLASHbigg] = ACTIONS(6373), - [anon_sym_BSLASHBigg] = ACTIONS(6373), - [anon_sym_BSLASHbigl] = ACTIONS(6373), - [anon_sym_BSLASHBigl] = ACTIONS(6373), - [anon_sym_BSLASHbiggl] = ACTIONS(6373), - [anon_sym_BSLASHBiggl] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6373), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6373), - [anon_sym_BSLASHgls] = ACTIONS(6373), - [anon_sym_BSLASHGls] = ACTIONS(6373), - [anon_sym_BSLASHGLS] = ACTIONS(6373), - [anon_sym_BSLASHglspl] = ACTIONS(6373), - [anon_sym_BSLASHGlspl] = ACTIONS(6373), - [anon_sym_BSLASHGLSpl] = ACTIONS(6373), - [anon_sym_BSLASHglsdisp] = ACTIONS(6373), - [anon_sym_BSLASHglslink] = ACTIONS(6373), - [anon_sym_BSLASHglstext] = ACTIONS(6373), - [anon_sym_BSLASHGlstext] = ACTIONS(6373), - [anon_sym_BSLASHGLStext] = ACTIONS(6373), - [anon_sym_BSLASHglsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6373), - [anon_sym_BSLASHglsplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSplural] = ACTIONS(6373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHglsname] = ACTIONS(6373), - [anon_sym_BSLASHGlsname] = ACTIONS(6373), - [anon_sym_BSLASHGLSname] = ACTIONS(6373), - [anon_sym_BSLASHglssymbol] = ACTIONS(6373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6373), - [anon_sym_BSLASHglsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6373), - [anon_sym_BSLASHglsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6373), - [anon_sym_BSLASHglsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6373), - [anon_sym_BSLASHglsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6373), - [anon_sym_BSLASHglsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6373), - [anon_sym_BSLASHnewacronym] = ACTIONS(6373), - [anon_sym_BSLASHacrshort] = ACTIONS(6373), - [anon_sym_BSLASHAcrshort] = ACTIONS(6373), - [anon_sym_BSLASHACRshort] = ACTIONS(6373), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6373), - [anon_sym_BSLASHacrlong] = ACTIONS(6373), - [anon_sym_BSLASHAcrlong] = ACTIONS(6373), - [anon_sym_BSLASHACRlong] = ACTIONS(6373), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6373), - [anon_sym_BSLASHacrfull] = ACTIONS(6373), - [anon_sym_BSLASHAcrfull] = ACTIONS(6373), - [anon_sym_BSLASHACRfull] = ACTIONS(6373), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6373), - [anon_sym_BSLASHacs] = ACTIONS(6373), - [anon_sym_BSLASHAcs] = ACTIONS(6373), - [anon_sym_BSLASHacsp] = ACTIONS(6373), - [anon_sym_BSLASHAcsp] = ACTIONS(6373), - [anon_sym_BSLASHacl] = ACTIONS(6373), - [anon_sym_BSLASHAcl] = ACTIONS(6373), - [anon_sym_BSLASHaclp] = ACTIONS(6373), - [anon_sym_BSLASHAclp] = ACTIONS(6373), - [anon_sym_BSLASHacf] = ACTIONS(6373), - [anon_sym_BSLASHAcf] = ACTIONS(6373), - [anon_sym_BSLASHacfp] = ACTIONS(6373), - [anon_sym_BSLASHAcfp] = ACTIONS(6373), - [anon_sym_BSLASHac] = ACTIONS(6373), - [anon_sym_BSLASHAc] = ACTIONS(6373), - [anon_sym_BSLASHacp] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6373), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6373), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6373), - [anon_sym_BSLASHcolor] = ACTIONS(6373), - [anon_sym_BSLASHcolorbox] = ACTIONS(6373), - [anon_sym_BSLASHtextcolor] = ACTIONS(6373), - [anon_sym_BSLASHpagecolor] = ACTIONS(6373), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6373), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6373), - [anon_sym_BSLASHtext] = ACTIONS(6373), - [anon_sym_BSLASHintertext] = ACTIONS(6373), - [anon_sym_shortintertext] = ACTIONS(6373), - }, - [1879] = { - [sym_command_name] = ACTIONS(6369), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6369), - [anon_sym_LPAREN] = ACTIONS(6371), - [anon_sym_RPAREN] = ACTIONS(6371), - [anon_sym_LBRACE] = ACTIONS(6371), - [anon_sym_RBRACE] = ACTIONS(6371), - [anon_sym_BSLASHand] = ACTIONS(6369), - [sym_word] = ACTIONS(6369), - [sym_placeholder] = ACTIONS(6371), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6371), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_LT] = ACTIONS(6369), - [anon_sym_GT] = ACTIONS(6369), - [anon_sym_BANG] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_SQUOTE] = ACTIONS(6369), - [anon_sym__] = ACTIONS(6371), - [anon_sym_CARET] = ACTIONS(6371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6371), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6371), - [anon_sym_DOLLAR] = ACTIONS(6369), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6371), - [anon_sym_BSLASHtitle] = ACTIONS(6369), - [anon_sym_BSLASHauthor] = ACTIONS(6369), - [anon_sym_BSLASHusepackage] = ACTIONS(6369), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6369), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6369), - [anon_sym_BSLASHinclude] = ACTIONS(6369), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6369), - [anon_sym_BSLASHinput] = ACTIONS(6369), - [anon_sym_BSLASHsubfile] = ACTIONS(6369), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6369), - [anon_sym_BSLASHbibliography] = ACTIONS(6369), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6369), - [anon_sym_BSLASHincludesvg] = ACTIONS(6369), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6369), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6369), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6369), - [anon_sym_BSLASHimport] = ACTIONS(6369), - [anon_sym_BSLASHsubimport] = ACTIONS(6369), - [anon_sym_BSLASHinputfrom] = ACTIONS(6369), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6369), - [anon_sym_BSLASHincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHcaption] = ACTIONS(6369), - [anon_sym_BSLASHcite] = ACTIONS(6369), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCite] = ACTIONS(6369), - [anon_sym_BSLASHnocite] = ACTIONS(6369), - [anon_sym_BSLASHcitet] = ACTIONS(6369), - [anon_sym_BSLASHcitep] = ACTIONS(6369), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteauthor] = ACTIONS(6369), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6369), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitetitle] = ACTIONS(6369), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteyear] = ACTIONS(6369), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitedate] = ACTIONS(6369), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteurl] = ACTIONS(6369), - [anon_sym_BSLASHfullcite] = ACTIONS(6369), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6369), - [anon_sym_BSLASHcitealt] = ACTIONS(6369), - [anon_sym_BSLASHcitealp] = ACTIONS(6369), - [anon_sym_BSLASHcitetext] = ACTIONS(6369), - [anon_sym_BSLASHparencite] = ACTIONS(6369), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHParencite] = ACTIONS(6369), - [anon_sym_BSLASHfootcite] = ACTIONS(6369), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6369), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6369), - [anon_sym_BSLASHtextcite] = ACTIONS(6369), - [anon_sym_BSLASHTextcite] = ACTIONS(6369), - [anon_sym_BSLASHsmartcite] = ACTIONS(6369), - [anon_sym_BSLASHSmartcite] = ACTIONS(6369), - [anon_sym_BSLASHsupercite] = ACTIONS(6369), - [anon_sym_BSLASHautocite] = ACTIONS(6369), - [anon_sym_BSLASHAutocite] = ACTIONS(6369), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHvolcite] = ACTIONS(6369), - [anon_sym_BSLASHVolcite] = ACTIONS(6369), - [anon_sym_BSLASHpvolcite] = ACTIONS(6369), - [anon_sym_BSLASHPvolcite] = ACTIONS(6369), - [anon_sym_BSLASHfvolcite] = ACTIONS(6369), - [anon_sym_BSLASHftvolcite] = ACTIONS(6369), - [anon_sym_BSLASHsvolcite] = ACTIONS(6369), - [anon_sym_BSLASHSvolcite] = ACTIONS(6369), - [anon_sym_BSLASHtvolcite] = ACTIONS(6369), - [anon_sym_BSLASHTvolcite] = ACTIONS(6369), - [anon_sym_BSLASHavolcite] = ACTIONS(6369), - [anon_sym_BSLASHAvolcite] = ACTIONS(6369), - [anon_sym_BSLASHnotecite] = ACTIONS(6369), - [anon_sym_BSLASHNotecite] = ACTIONS(6369), - [anon_sym_BSLASHpnotecite] = ACTIONS(6369), - [anon_sym_BSLASHPnotecite] = ACTIONS(6369), - [anon_sym_BSLASHfnotecite] = ACTIONS(6369), - [anon_sym_BSLASHlabel] = ACTIONS(6369), - [anon_sym_BSLASHref] = ACTIONS(6369), - [anon_sym_BSLASHeqref] = ACTIONS(6369), - [anon_sym_BSLASHvref] = ACTIONS(6369), - [anon_sym_BSLASHVref] = ACTIONS(6369), - [anon_sym_BSLASHautoref] = ACTIONS(6369), - [anon_sym_BSLASHpageref] = ACTIONS(6369), - [anon_sym_BSLASHcref] = ACTIONS(6369), - [anon_sym_BSLASHCref] = ACTIONS(6369), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnameCref] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHlabelcref] = ACTIONS(6369), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCrefrange] = ACTIONS(6369), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnewlabel] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6369), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6369), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6371), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHdef] = ACTIONS(6369), - [anon_sym_BSLASHlet] = ACTIONS(6369), - [anon_sym_BSLASHleft] = ACTIONS(6369), - [anon_sym_BSLASHbig] = ACTIONS(6369), - [anon_sym_BSLASHBig] = ACTIONS(6369), - [anon_sym_BSLASHbigg] = ACTIONS(6369), - [anon_sym_BSLASHBigg] = ACTIONS(6369), - [anon_sym_BSLASHbigl] = ACTIONS(6369), - [anon_sym_BSLASHBigl] = ACTIONS(6369), - [anon_sym_BSLASHbiggl] = ACTIONS(6369), - [anon_sym_BSLASHBiggl] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6369), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6369), - [anon_sym_BSLASHgls] = ACTIONS(6369), - [anon_sym_BSLASHGls] = ACTIONS(6369), - [anon_sym_BSLASHGLS] = ACTIONS(6369), - [anon_sym_BSLASHglspl] = ACTIONS(6369), - [anon_sym_BSLASHGlspl] = ACTIONS(6369), - [anon_sym_BSLASHGLSpl] = ACTIONS(6369), - [anon_sym_BSLASHglsdisp] = ACTIONS(6369), - [anon_sym_BSLASHglslink] = ACTIONS(6369), - [anon_sym_BSLASHglstext] = ACTIONS(6369), - [anon_sym_BSLASHGlstext] = ACTIONS(6369), - [anon_sym_BSLASHGLStext] = ACTIONS(6369), - [anon_sym_BSLASHglsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6369), - [anon_sym_BSLASHglsplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSplural] = ACTIONS(6369), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHglsname] = ACTIONS(6369), - [anon_sym_BSLASHGlsname] = ACTIONS(6369), - [anon_sym_BSLASHGLSname] = ACTIONS(6369), - [anon_sym_BSLASHglssymbol] = ACTIONS(6369), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6369), - [anon_sym_BSLASHglsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6369), - [anon_sym_BSLASHglsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6369), - [anon_sym_BSLASHglsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6369), - [anon_sym_BSLASHglsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6369), - [anon_sym_BSLASHglsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6369), - [anon_sym_BSLASHnewacronym] = ACTIONS(6369), - [anon_sym_BSLASHacrshort] = ACTIONS(6369), - [anon_sym_BSLASHAcrshort] = ACTIONS(6369), - [anon_sym_BSLASHACRshort] = ACTIONS(6369), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6369), - [anon_sym_BSLASHacrlong] = ACTIONS(6369), - [anon_sym_BSLASHAcrlong] = ACTIONS(6369), - [anon_sym_BSLASHACRlong] = ACTIONS(6369), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6369), - [anon_sym_BSLASHacrfull] = ACTIONS(6369), - [anon_sym_BSLASHAcrfull] = ACTIONS(6369), - [anon_sym_BSLASHACRfull] = ACTIONS(6369), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6369), - [anon_sym_BSLASHacs] = ACTIONS(6369), - [anon_sym_BSLASHAcs] = ACTIONS(6369), - [anon_sym_BSLASHacsp] = ACTIONS(6369), - [anon_sym_BSLASHAcsp] = ACTIONS(6369), - [anon_sym_BSLASHacl] = ACTIONS(6369), - [anon_sym_BSLASHAcl] = ACTIONS(6369), - [anon_sym_BSLASHaclp] = ACTIONS(6369), - [anon_sym_BSLASHAclp] = ACTIONS(6369), - [anon_sym_BSLASHacf] = ACTIONS(6369), - [anon_sym_BSLASHAcf] = ACTIONS(6369), - [anon_sym_BSLASHacfp] = ACTIONS(6369), - [anon_sym_BSLASHAcfp] = ACTIONS(6369), - [anon_sym_BSLASHac] = ACTIONS(6369), - [anon_sym_BSLASHAc] = ACTIONS(6369), - [anon_sym_BSLASHacp] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6369), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6369), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6369), - [anon_sym_BSLASHcolor] = ACTIONS(6369), - [anon_sym_BSLASHcolorbox] = ACTIONS(6369), - [anon_sym_BSLASHtextcolor] = ACTIONS(6369), - [anon_sym_BSLASHpagecolor] = ACTIONS(6369), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6369), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6369), - [anon_sym_BSLASHtext] = ACTIONS(6369), - [anon_sym_BSLASHintertext] = ACTIONS(6369), - [anon_sym_shortintertext] = ACTIONS(6369), - }, - [1880] = { - [sym_command_name] = ACTIONS(6365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6365), - [anon_sym_LPAREN] = ACTIONS(6367), - [anon_sym_RPAREN] = ACTIONS(6367), - [anon_sym_LBRACE] = ACTIONS(6367), - [anon_sym_RBRACE] = ACTIONS(6367), - [anon_sym_BSLASHand] = ACTIONS(6365), - [sym_word] = ACTIONS(6365), - [sym_placeholder] = ACTIONS(6367), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6367), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_LT] = ACTIONS(6365), - [anon_sym_GT] = ACTIONS(6365), - [anon_sym_BANG] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_SQUOTE] = ACTIONS(6365), - [anon_sym__] = ACTIONS(6367), - [anon_sym_CARET] = ACTIONS(6367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6367), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6367), - [anon_sym_DOLLAR] = ACTIONS(6365), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6367), - [anon_sym_BSLASHtitle] = ACTIONS(6365), - [anon_sym_BSLASHauthor] = ACTIONS(6365), - [anon_sym_BSLASHusepackage] = ACTIONS(6365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6365), - [anon_sym_BSLASHinclude] = ACTIONS(6365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6365), - [anon_sym_BSLASHinput] = ACTIONS(6365), - [anon_sym_BSLASHsubfile] = ACTIONS(6365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6365), - [anon_sym_BSLASHbibliography] = ACTIONS(6365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6365), - [anon_sym_BSLASHincludesvg] = ACTIONS(6365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6365), - [anon_sym_BSLASHimport] = ACTIONS(6365), - [anon_sym_BSLASHsubimport] = ACTIONS(6365), - [anon_sym_BSLASHinputfrom] = ACTIONS(6365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6365), - [anon_sym_BSLASHincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHcaption] = ACTIONS(6365), - [anon_sym_BSLASHcite] = ACTIONS(6365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCite] = ACTIONS(6365), - [anon_sym_BSLASHnocite] = ACTIONS(6365), - [anon_sym_BSLASHcitet] = ACTIONS(6365), - [anon_sym_BSLASHcitep] = ACTIONS(6365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteauthor] = ACTIONS(6365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitetitle] = ACTIONS(6365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteyear] = ACTIONS(6365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitedate] = ACTIONS(6365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteurl] = ACTIONS(6365), - [anon_sym_BSLASHfullcite] = ACTIONS(6365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6365), - [anon_sym_BSLASHcitealt] = ACTIONS(6365), - [anon_sym_BSLASHcitealp] = ACTIONS(6365), - [anon_sym_BSLASHcitetext] = ACTIONS(6365), - [anon_sym_BSLASHparencite] = ACTIONS(6365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHParencite] = ACTIONS(6365), - [anon_sym_BSLASHfootcite] = ACTIONS(6365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6365), - [anon_sym_BSLASHtextcite] = ACTIONS(6365), - [anon_sym_BSLASHTextcite] = ACTIONS(6365), - [anon_sym_BSLASHsmartcite] = ACTIONS(6365), - [anon_sym_BSLASHSmartcite] = ACTIONS(6365), - [anon_sym_BSLASHsupercite] = ACTIONS(6365), - [anon_sym_BSLASHautocite] = ACTIONS(6365), - [anon_sym_BSLASHAutocite] = ACTIONS(6365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHvolcite] = ACTIONS(6365), - [anon_sym_BSLASHVolcite] = ACTIONS(6365), - [anon_sym_BSLASHpvolcite] = ACTIONS(6365), - [anon_sym_BSLASHPvolcite] = ACTIONS(6365), - [anon_sym_BSLASHfvolcite] = ACTIONS(6365), - [anon_sym_BSLASHftvolcite] = ACTIONS(6365), - [anon_sym_BSLASHsvolcite] = ACTIONS(6365), - [anon_sym_BSLASHSvolcite] = ACTIONS(6365), - [anon_sym_BSLASHtvolcite] = ACTIONS(6365), - [anon_sym_BSLASHTvolcite] = ACTIONS(6365), - [anon_sym_BSLASHavolcite] = ACTIONS(6365), - [anon_sym_BSLASHAvolcite] = ACTIONS(6365), - [anon_sym_BSLASHnotecite] = ACTIONS(6365), - [anon_sym_BSLASHNotecite] = ACTIONS(6365), - [anon_sym_BSLASHpnotecite] = ACTIONS(6365), - [anon_sym_BSLASHPnotecite] = ACTIONS(6365), - [anon_sym_BSLASHfnotecite] = ACTIONS(6365), - [anon_sym_BSLASHlabel] = ACTIONS(6365), - [anon_sym_BSLASHref] = ACTIONS(6365), - [anon_sym_BSLASHeqref] = ACTIONS(6365), - [anon_sym_BSLASHvref] = ACTIONS(6365), - [anon_sym_BSLASHVref] = ACTIONS(6365), - [anon_sym_BSLASHautoref] = ACTIONS(6365), - [anon_sym_BSLASHpageref] = ACTIONS(6365), - [anon_sym_BSLASHcref] = ACTIONS(6365), - [anon_sym_BSLASHCref] = ACTIONS(6365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnameCref] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHlabelcref] = ACTIONS(6365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCrefrange] = ACTIONS(6365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnewlabel] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6367), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHdef] = ACTIONS(6365), - [anon_sym_BSLASHlet] = ACTIONS(6365), - [anon_sym_BSLASHleft] = ACTIONS(6365), - [anon_sym_BSLASHbig] = ACTIONS(6365), - [anon_sym_BSLASHBig] = ACTIONS(6365), - [anon_sym_BSLASHbigg] = ACTIONS(6365), - [anon_sym_BSLASHBigg] = ACTIONS(6365), - [anon_sym_BSLASHbigl] = ACTIONS(6365), - [anon_sym_BSLASHBigl] = ACTIONS(6365), - [anon_sym_BSLASHbiggl] = ACTIONS(6365), - [anon_sym_BSLASHBiggl] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6365), - [anon_sym_BSLASHgls] = ACTIONS(6365), - [anon_sym_BSLASHGls] = ACTIONS(6365), - [anon_sym_BSLASHGLS] = ACTIONS(6365), - [anon_sym_BSLASHglspl] = ACTIONS(6365), - [anon_sym_BSLASHGlspl] = ACTIONS(6365), - [anon_sym_BSLASHGLSpl] = ACTIONS(6365), - [anon_sym_BSLASHglsdisp] = ACTIONS(6365), - [anon_sym_BSLASHglslink] = ACTIONS(6365), - [anon_sym_BSLASHglstext] = ACTIONS(6365), - [anon_sym_BSLASHGlstext] = ACTIONS(6365), - [anon_sym_BSLASHGLStext] = ACTIONS(6365), - [anon_sym_BSLASHglsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6365), - [anon_sym_BSLASHglsplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSplural] = ACTIONS(6365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHglsname] = ACTIONS(6365), - [anon_sym_BSLASHGlsname] = ACTIONS(6365), - [anon_sym_BSLASHGLSname] = ACTIONS(6365), - [anon_sym_BSLASHglssymbol] = ACTIONS(6365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6365), - [anon_sym_BSLASHglsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6365), - [anon_sym_BSLASHglsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6365), - [anon_sym_BSLASHglsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6365), - [anon_sym_BSLASHglsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6365), - [anon_sym_BSLASHglsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6365), - [anon_sym_BSLASHnewacronym] = ACTIONS(6365), - [anon_sym_BSLASHacrshort] = ACTIONS(6365), - [anon_sym_BSLASHAcrshort] = ACTIONS(6365), - [anon_sym_BSLASHACRshort] = ACTIONS(6365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6365), - [anon_sym_BSLASHacrlong] = ACTIONS(6365), - [anon_sym_BSLASHAcrlong] = ACTIONS(6365), - [anon_sym_BSLASHACRlong] = ACTIONS(6365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6365), - [anon_sym_BSLASHacrfull] = ACTIONS(6365), - [anon_sym_BSLASHAcrfull] = ACTIONS(6365), - [anon_sym_BSLASHACRfull] = ACTIONS(6365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6365), - [anon_sym_BSLASHacs] = ACTIONS(6365), - [anon_sym_BSLASHAcs] = ACTIONS(6365), - [anon_sym_BSLASHacsp] = ACTIONS(6365), - [anon_sym_BSLASHAcsp] = ACTIONS(6365), - [anon_sym_BSLASHacl] = ACTIONS(6365), - [anon_sym_BSLASHAcl] = ACTIONS(6365), - [anon_sym_BSLASHaclp] = ACTIONS(6365), - [anon_sym_BSLASHAclp] = ACTIONS(6365), - [anon_sym_BSLASHacf] = ACTIONS(6365), - [anon_sym_BSLASHAcf] = ACTIONS(6365), - [anon_sym_BSLASHacfp] = ACTIONS(6365), - [anon_sym_BSLASHAcfp] = ACTIONS(6365), - [anon_sym_BSLASHac] = ACTIONS(6365), - [anon_sym_BSLASHAc] = ACTIONS(6365), - [anon_sym_BSLASHacp] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6365), - [anon_sym_BSLASHcolor] = ACTIONS(6365), - [anon_sym_BSLASHcolorbox] = ACTIONS(6365), - [anon_sym_BSLASHtextcolor] = ACTIONS(6365), - [anon_sym_BSLASHpagecolor] = ACTIONS(6365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6365), - [anon_sym_BSLASHtext] = ACTIONS(6365), - [anon_sym_BSLASHintertext] = ACTIONS(6365), - [anon_sym_shortintertext] = ACTIONS(6365), - }, - [1881] = { - [sym_command_name] = ACTIONS(6361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6361), - [anon_sym_LPAREN] = ACTIONS(6363), - [anon_sym_RPAREN] = ACTIONS(6363), - [anon_sym_LBRACE] = ACTIONS(6363), - [anon_sym_RBRACE] = ACTIONS(6363), - [anon_sym_BSLASHand] = ACTIONS(6361), - [sym_word] = ACTIONS(6361), - [sym_placeholder] = ACTIONS(6363), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_LT] = ACTIONS(6361), - [anon_sym_GT] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6361), - [anon_sym__] = ACTIONS(6363), - [anon_sym_CARET] = ACTIONS(6363), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6363), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6363), - [anon_sym_DOLLAR] = ACTIONS(6361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6363), - [anon_sym_BSLASHtitle] = ACTIONS(6361), - [anon_sym_BSLASHauthor] = ACTIONS(6361), - [anon_sym_BSLASHusepackage] = ACTIONS(6361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6361), - [anon_sym_BSLASHinclude] = ACTIONS(6361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6361), - [anon_sym_BSLASHinput] = ACTIONS(6361), - [anon_sym_BSLASHsubfile] = ACTIONS(6361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6361), - [anon_sym_BSLASHbibliography] = ACTIONS(6361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6361), - [anon_sym_BSLASHincludesvg] = ACTIONS(6361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6361), - [anon_sym_BSLASHimport] = ACTIONS(6361), - [anon_sym_BSLASHsubimport] = ACTIONS(6361), - [anon_sym_BSLASHinputfrom] = ACTIONS(6361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6361), - [anon_sym_BSLASHincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHcaption] = ACTIONS(6361), - [anon_sym_BSLASHcite] = ACTIONS(6361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCite] = ACTIONS(6361), - [anon_sym_BSLASHnocite] = ACTIONS(6361), - [anon_sym_BSLASHcitet] = ACTIONS(6361), - [anon_sym_BSLASHcitep] = ACTIONS(6361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteauthor] = ACTIONS(6361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitetitle] = ACTIONS(6361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteyear] = ACTIONS(6361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitedate] = ACTIONS(6361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteurl] = ACTIONS(6361), - [anon_sym_BSLASHfullcite] = ACTIONS(6361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6361), - [anon_sym_BSLASHcitealt] = ACTIONS(6361), - [anon_sym_BSLASHcitealp] = ACTIONS(6361), - [anon_sym_BSLASHcitetext] = ACTIONS(6361), - [anon_sym_BSLASHparencite] = ACTIONS(6361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHParencite] = ACTIONS(6361), - [anon_sym_BSLASHfootcite] = ACTIONS(6361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6361), - [anon_sym_BSLASHtextcite] = ACTIONS(6361), - [anon_sym_BSLASHTextcite] = ACTIONS(6361), - [anon_sym_BSLASHsmartcite] = ACTIONS(6361), - [anon_sym_BSLASHSmartcite] = ACTIONS(6361), - [anon_sym_BSLASHsupercite] = ACTIONS(6361), - [anon_sym_BSLASHautocite] = ACTIONS(6361), - [anon_sym_BSLASHAutocite] = ACTIONS(6361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHvolcite] = ACTIONS(6361), - [anon_sym_BSLASHVolcite] = ACTIONS(6361), - [anon_sym_BSLASHpvolcite] = ACTIONS(6361), - [anon_sym_BSLASHPvolcite] = ACTIONS(6361), - [anon_sym_BSLASHfvolcite] = ACTIONS(6361), - [anon_sym_BSLASHftvolcite] = ACTIONS(6361), - [anon_sym_BSLASHsvolcite] = ACTIONS(6361), - [anon_sym_BSLASHSvolcite] = ACTIONS(6361), - [anon_sym_BSLASHtvolcite] = ACTIONS(6361), - [anon_sym_BSLASHTvolcite] = ACTIONS(6361), - [anon_sym_BSLASHavolcite] = ACTIONS(6361), - [anon_sym_BSLASHAvolcite] = ACTIONS(6361), - [anon_sym_BSLASHnotecite] = ACTIONS(6361), - [anon_sym_BSLASHNotecite] = ACTIONS(6361), - [anon_sym_BSLASHpnotecite] = ACTIONS(6361), - [anon_sym_BSLASHPnotecite] = ACTIONS(6361), - [anon_sym_BSLASHfnotecite] = ACTIONS(6361), - [anon_sym_BSLASHlabel] = ACTIONS(6361), - [anon_sym_BSLASHref] = ACTIONS(6361), - [anon_sym_BSLASHeqref] = ACTIONS(6361), - [anon_sym_BSLASHvref] = ACTIONS(6361), - [anon_sym_BSLASHVref] = ACTIONS(6361), - [anon_sym_BSLASHautoref] = ACTIONS(6361), - [anon_sym_BSLASHpageref] = ACTIONS(6361), - [anon_sym_BSLASHcref] = ACTIONS(6361), - [anon_sym_BSLASHCref] = ACTIONS(6361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnameCref] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHlabelcref] = ACTIONS(6361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCrefrange] = ACTIONS(6361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnewlabel] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6363), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHdef] = ACTIONS(6361), - [anon_sym_BSLASHlet] = ACTIONS(6361), - [anon_sym_BSLASHleft] = ACTIONS(6361), - [anon_sym_BSLASHbig] = ACTIONS(6361), - [anon_sym_BSLASHBig] = ACTIONS(6361), - [anon_sym_BSLASHbigg] = ACTIONS(6361), - [anon_sym_BSLASHBigg] = ACTIONS(6361), - [anon_sym_BSLASHbigl] = ACTIONS(6361), - [anon_sym_BSLASHBigl] = ACTIONS(6361), - [anon_sym_BSLASHbiggl] = ACTIONS(6361), - [anon_sym_BSLASHBiggl] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6361), - [anon_sym_BSLASHgls] = ACTIONS(6361), - [anon_sym_BSLASHGls] = ACTIONS(6361), - [anon_sym_BSLASHGLS] = ACTIONS(6361), - [anon_sym_BSLASHglspl] = ACTIONS(6361), - [anon_sym_BSLASHGlspl] = ACTIONS(6361), - [anon_sym_BSLASHGLSpl] = ACTIONS(6361), - [anon_sym_BSLASHglsdisp] = ACTIONS(6361), - [anon_sym_BSLASHglslink] = ACTIONS(6361), - [anon_sym_BSLASHglstext] = ACTIONS(6361), - [anon_sym_BSLASHGlstext] = ACTIONS(6361), - [anon_sym_BSLASHGLStext] = ACTIONS(6361), - [anon_sym_BSLASHglsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6361), - [anon_sym_BSLASHglsplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSplural] = ACTIONS(6361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHglsname] = ACTIONS(6361), - [anon_sym_BSLASHGlsname] = ACTIONS(6361), - [anon_sym_BSLASHGLSname] = ACTIONS(6361), - [anon_sym_BSLASHglssymbol] = ACTIONS(6361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6361), - [anon_sym_BSLASHglsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6361), - [anon_sym_BSLASHglsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6361), - [anon_sym_BSLASHglsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6361), - [anon_sym_BSLASHglsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6361), - [anon_sym_BSLASHglsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6361), - [anon_sym_BSLASHnewacronym] = ACTIONS(6361), - [anon_sym_BSLASHacrshort] = ACTIONS(6361), - [anon_sym_BSLASHAcrshort] = ACTIONS(6361), - [anon_sym_BSLASHACRshort] = ACTIONS(6361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6361), - [anon_sym_BSLASHacrlong] = ACTIONS(6361), - [anon_sym_BSLASHAcrlong] = ACTIONS(6361), - [anon_sym_BSLASHACRlong] = ACTIONS(6361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6361), - [anon_sym_BSLASHacrfull] = ACTIONS(6361), - [anon_sym_BSLASHAcrfull] = ACTIONS(6361), - [anon_sym_BSLASHACRfull] = ACTIONS(6361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6361), - [anon_sym_BSLASHacs] = ACTIONS(6361), - [anon_sym_BSLASHAcs] = ACTIONS(6361), - [anon_sym_BSLASHacsp] = ACTIONS(6361), - [anon_sym_BSLASHAcsp] = ACTIONS(6361), - [anon_sym_BSLASHacl] = ACTIONS(6361), - [anon_sym_BSLASHAcl] = ACTIONS(6361), - [anon_sym_BSLASHaclp] = ACTIONS(6361), - [anon_sym_BSLASHAclp] = ACTIONS(6361), - [anon_sym_BSLASHacf] = ACTIONS(6361), - [anon_sym_BSLASHAcf] = ACTIONS(6361), - [anon_sym_BSLASHacfp] = ACTIONS(6361), - [anon_sym_BSLASHAcfp] = ACTIONS(6361), - [anon_sym_BSLASHac] = ACTIONS(6361), - [anon_sym_BSLASHAc] = ACTIONS(6361), - [anon_sym_BSLASHacp] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6361), - [anon_sym_BSLASHcolor] = ACTIONS(6361), - [anon_sym_BSLASHcolorbox] = ACTIONS(6361), - [anon_sym_BSLASHtextcolor] = ACTIONS(6361), - [anon_sym_BSLASHpagecolor] = ACTIONS(6361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6361), - [anon_sym_BSLASHtext] = ACTIONS(6361), - [anon_sym_BSLASHintertext] = ACTIONS(6361), - [anon_sym_shortintertext] = ACTIONS(6361), - }, - [1882] = { - [sym_command_name] = ACTIONS(6357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6357), - [anon_sym_LPAREN] = ACTIONS(6359), - [anon_sym_RPAREN] = ACTIONS(6359), - [anon_sym_LBRACE] = ACTIONS(6359), - [anon_sym_RBRACE] = ACTIONS(6359), - [anon_sym_BSLASHand] = ACTIONS(6357), - [sym_word] = ACTIONS(6357), - [sym_placeholder] = ACTIONS(6359), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6359), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_LT] = ACTIONS(6357), - [anon_sym_GT] = ACTIONS(6357), - [anon_sym_BANG] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_SQUOTE] = ACTIONS(6357), - [anon_sym__] = ACTIONS(6359), - [anon_sym_CARET] = ACTIONS(6359), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6359), - [anon_sym_DOLLAR] = ACTIONS(6357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6359), - [anon_sym_BSLASHtitle] = ACTIONS(6357), - [anon_sym_BSLASHauthor] = ACTIONS(6357), - [anon_sym_BSLASHusepackage] = ACTIONS(6357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6357), - [anon_sym_BSLASHinclude] = ACTIONS(6357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6357), - [anon_sym_BSLASHinput] = ACTIONS(6357), - [anon_sym_BSLASHsubfile] = ACTIONS(6357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6357), - [anon_sym_BSLASHbibliography] = ACTIONS(6357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6357), - [anon_sym_BSLASHincludesvg] = ACTIONS(6357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6357), - [anon_sym_BSLASHimport] = ACTIONS(6357), - [anon_sym_BSLASHsubimport] = ACTIONS(6357), - [anon_sym_BSLASHinputfrom] = ACTIONS(6357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6357), - [anon_sym_BSLASHincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHcaption] = ACTIONS(6357), - [anon_sym_BSLASHcite] = ACTIONS(6357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCite] = ACTIONS(6357), - [anon_sym_BSLASHnocite] = ACTIONS(6357), - [anon_sym_BSLASHcitet] = ACTIONS(6357), - [anon_sym_BSLASHcitep] = ACTIONS(6357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteauthor] = ACTIONS(6357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitetitle] = ACTIONS(6357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteyear] = ACTIONS(6357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitedate] = ACTIONS(6357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteurl] = ACTIONS(6357), - [anon_sym_BSLASHfullcite] = ACTIONS(6357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6357), - [anon_sym_BSLASHcitealt] = ACTIONS(6357), - [anon_sym_BSLASHcitealp] = ACTIONS(6357), - [anon_sym_BSLASHcitetext] = ACTIONS(6357), - [anon_sym_BSLASHparencite] = ACTIONS(6357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHParencite] = ACTIONS(6357), - [anon_sym_BSLASHfootcite] = ACTIONS(6357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6357), - [anon_sym_BSLASHtextcite] = ACTIONS(6357), - [anon_sym_BSLASHTextcite] = ACTIONS(6357), - [anon_sym_BSLASHsmartcite] = ACTIONS(6357), - [anon_sym_BSLASHSmartcite] = ACTIONS(6357), - [anon_sym_BSLASHsupercite] = ACTIONS(6357), - [anon_sym_BSLASHautocite] = ACTIONS(6357), - [anon_sym_BSLASHAutocite] = ACTIONS(6357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHvolcite] = ACTIONS(6357), - [anon_sym_BSLASHVolcite] = ACTIONS(6357), - [anon_sym_BSLASHpvolcite] = ACTIONS(6357), - [anon_sym_BSLASHPvolcite] = ACTIONS(6357), - [anon_sym_BSLASHfvolcite] = ACTIONS(6357), - [anon_sym_BSLASHftvolcite] = ACTIONS(6357), - [anon_sym_BSLASHsvolcite] = ACTIONS(6357), - [anon_sym_BSLASHSvolcite] = ACTIONS(6357), - [anon_sym_BSLASHtvolcite] = ACTIONS(6357), - [anon_sym_BSLASHTvolcite] = ACTIONS(6357), - [anon_sym_BSLASHavolcite] = ACTIONS(6357), - [anon_sym_BSLASHAvolcite] = ACTIONS(6357), - [anon_sym_BSLASHnotecite] = ACTIONS(6357), - [anon_sym_BSLASHNotecite] = ACTIONS(6357), - [anon_sym_BSLASHpnotecite] = ACTIONS(6357), - [anon_sym_BSLASHPnotecite] = ACTIONS(6357), - [anon_sym_BSLASHfnotecite] = ACTIONS(6357), - [anon_sym_BSLASHlabel] = ACTIONS(6357), - [anon_sym_BSLASHref] = ACTIONS(6357), - [anon_sym_BSLASHeqref] = ACTIONS(6357), - [anon_sym_BSLASHvref] = ACTIONS(6357), - [anon_sym_BSLASHVref] = ACTIONS(6357), - [anon_sym_BSLASHautoref] = ACTIONS(6357), - [anon_sym_BSLASHpageref] = ACTIONS(6357), - [anon_sym_BSLASHcref] = ACTIONS(6357), - [anon_sym_BSLASHCref] = ACTIONS(6357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnameCref] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHlabelcref] = ACTIONS(6357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCrefrange] = ACTIONS(6357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnewlabel] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6359), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHdef] = ACTIONS(6357), - [anon_sym_BSLASHlet] = ACTIONS(6357), - [anon_sym_BSLASHleft] = ACTIONS(6357), - [anon_sym_BSLASHbig] = ACTIONS(6357), - [anon_sym_BSLASHBig] = ACTIONS(6357), - [anon_sym_BSLASHbigg] = ACTIONS(6357), - [anon_sym_BSLASHBigg] = ACTIONS(6357), - [anon_sym_BSLASHbigl] = ACTIONS(6357), - [anon_sym_BSLASHBigl] = ACTIONS(6357), - [anon_sym_BSLASHbiggl] = ACTIONS(6357), - [anon_sym_BSLASHBiggl] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6357), - [anon_sym_BSLASHgls] = ACTIONS(6357), - [anon_sym_BSLASHGls] = ACTIONS(6357), - [anon_sym_BSLASHGLS] = ACTIONS(6357), - [anon_sym_BSLASHglspl] = ACTIONS(6357), - [anon_sym_BSLASHGlspl] = ACTIONS(6357), - [anon_sym_BSLASHGLSpl] = ACTIONS(6357), - [anon_sym_BSLASHglsdisp] = ACTIONS(6357), - [anon_sym_BSLASHglslink] = ACTIONS(6357), - [anon_sym_BSLASHglstext] = ACTIONS(6357), - [anon_sym_BSLASHGlstext] = ACTIONS(6357), - [anon_sym_BSLASHGLStext] = ACTIONS(6357), - [anon_sym_BSLASHglsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6357), - [anon_sym_BSLASHglsplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSplural] = ACTIONS(6357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHglsname] = ACTIONS(6357), - [anon_sym_BSLASHGlsname] = ACTIONS(6357), - [anon_sym_BSLASHGLSname] = ACTIONS(6357), - [anon_sym_BSLASHglssymbol] = ACTIONS(6357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6357), - [anon_sym_BSLASHglsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6357), - [anon_sym_BSLASHglsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6357), - [anon_sym_BSLASHglsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6357), - [anon_sym_BSLASHglsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6357), - [anon_sym_BSLASHglsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6357), - [anon_sym_BSLASHnewacronym] = ACTIONS(6357), - [anon_sym_BSLASHacrshort] = ACTIONS(6357), - [anon_sym_BSLASHAcrshort] = ACTIONS(6357), - [anon_sym_BSLASHACRshort] = ACTIONS(6357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6357), - [anon_sym_BSLASHacrlong] = ACTIONS(6357), - [anon_sym_BSLASHAcrlong] = ACTIONS(6357), - [anon_sym_BSLASHACRlong] = ACTIONS(6357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6357), - [anon_sym_BSLASHacrfull] = ACTIONS(6357), - [anon_sym_BSLASHAcrfull] = ACTIONS(6357), - [anon_sym_BSLASHACRfull] = ACTIONS(6357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6357), - [anon_sym_BSLASHacs] = ACTIONS(6357), - [anon_sym_BSLASHAcs] = ACTIONS(6357), - [anon_sym_BSLASHacsp] = ACTIONS(6357), - [anon_sym_BSLASHAcsp] = ACTIONS(6357), - [anon_sym_BSLASHacl] = ACTIONS(6357), - [anon_sym_BSLASHAcl] = ACTIONS(6357), - [anon_sym_BSLASHaclp] = ACTIONS(6357), - [anon_sym_BSLASHAclp] = ACTIONS(6357), - [anon_sym_BSLASHacf] = ACTIONS(6357), - [anon_sym_BSLASHAcf] = ACTIONS(6357), - [anon_sym_BSLASHacfp] = ACTIONS(6357), - [anon_sym_BSLASHAcfp] = ACTIONS(6357), - [anon_sym_BSLASHac] = ACTIONS(6357), - [anon_sym_BSLASHAc] = ACTIONS(6357), - [anon_sym_BSLASHacp] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6357), - [anon_sym_BSLASHcolor] = ACTIONS(6357), - [anon_sym_BSLASHcolorbox] = ACTIONS(6357), - [anon_sym_BSLASHtextcolor] = ACTIONS(6357), - [anon_sym_BSLASHpagecolor] = ACTIONS(6357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6357), - [anon_sym_BSLASHtext] = ACTIONS(6357), - [anon_sym_BSLASHintertext] = ACTIONS(6357), - [anon_sym_shortintertext] = ACTIONS(6357), - }, - [1883] = { - [sym_command_name] = ACTIONS(6353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6353), - [anon_sym_LPAREN] = ACTIONS(6355), - [anon_sym_RPAREN] = ACTIONS(6355), - [anon_sym_LBRACE] = ACTIONS(6355), - [anon_sym_RBRACE] = ACTIONS(6355), - [anon_sym_BSLASHand] = ACTIONS(6353), - [sym_word] = ACTIONS(6353), - [sym_placeholder] = ACTIONS(6355), - [anon_sym_PLUS] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [anon_sym_STAR] = ACTIONS(6355), - [anon_sym_SLASH] = ACTIONS(6355), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_COLON] = ACTIONS(6353), - [anon_sym_SQUOTE] = ACTIONS(6353), - [anon_sym__] = ACTIONS(6355), - [anon_sym_CARET] = ACTIONS(6355), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6355), - [anon_sym_DOLLAR] = ACTIONS(6353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6355), - [anon_sym_BSLASHtitle] = ACTIONS(6353), - [anon_sym_BSLASHauthor] = ACTIONS(6353), - [anon_sym_BSLASHusepackage] = ACTIONS(6353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6353), - [anon_sym_BSLASHinclude] = ACTIONS(6353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6353), - [anon_sym_BSLASHinput] = ACTIONS(6353), - [anon_sym_BSLASHsubfile] = ACTIONS(6353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6353), - [anon_sym_BSLASHbibliography] = ACTIONS(6353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6353), - [anon_sym_BSLASHincludesvg] = ACTIONS(6353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6353), - [anon_sym_BSLASHimport] = ACTIONS(6353), - [anon_sym_BSLASHsubimport] = ACTIONS(6353), - [anon_sym_BSLASHinputfrom] = ACTIONS(6353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6353), - [anon_sym_BSLASHincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHcaption] = ACTIONS(6353), - [anon_sym_BSLASHcite] = ACTIONS(6353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCite] = ACTIONS(6353), - [anon_sym_BSLASHnocite] = ACTIONS(6353), - [anon_sym_BSLASHcitet] = ACTIONS(6353), - [anon_sym_BSLASHcitep] = ACTIONS(6353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteauthor] = ACTIONS(6353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitetitle] = ACTIONS(6353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteyear] = ACTIONS(6353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitedate] = ACTIONS(6353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteurl] = ACTIONS(6353), - [anon_sym_BSLASHfullcite] = ACTIONS(6353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6353), - [anon_sym_BSLASHcitealt] = ACTIONS(6353), - [anon_sym_BSLASHcitealp] = ACTIONS(6353), - [anon_sym_BSLASHcitetext] = ACTIONS(6353), - [anon_sym_BSLASHparencite] = ACTIONS(6353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHParencite] = ACTIONS(6353), - [anon_sym_BSLASHfootcite] = ACTIONS(6353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6353), - [anon_sym_BSLASHtextcite] = ACTIONS(6353), - [anon_sym_BSLASHTextcite] = ACTIONS(6353), - [anon_sym_BSLASHsmartcite] = ACTIONS(6353), - [anon_sym_BSLASHSmartcite] = ACTIONS(6353), - [anon_sym_BSLASHsupercite] = ACTIONS(6353), - [anon_sym_BSLASHautocite] = ACTIONS(6353), - [anon_sym_BSLASHAutocite] = ACTIONS(6353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHvolcite] = ACTIONS(6353), - [anon_sym_BSLASHVolcite] = ACTIONS(6353), - [anon_sym_BSLASHpvolcite] = ACTIONS(6353), - [anon_sym_BSLASHPvolcite] = ACTIONS(6353), - [anon_sym_BSLASHfvolcite] = ACTIONS(6353), - [anon_sym_BSLASHftvolcite] = ACTIONS(6353), - [anon_sym_BSLASHsvolcite] = ACTIONS(6353), - [anon_sym_BSLASHSvolcite] = ACTIONS(6353), - [anon_sym_BSLASHtvolcite] = ACTIONS(6353), - [anon_sym_BSLASHTvolcite] = ACTIONS(6353), - [anon_sym_BSLASHavolcite] = ACTIONS(6353), - [anon_sym_BSLASHAvolcite] = ACTIONS(6353), - [anon_sym_BSLASHnotecite] = ACTIONS(6353), - [anon_sym_BSLASHNotecite] = ACTIONS(6353), - [anon_sym_BSLASHpnotecite] = ACTIONS(6353), - [anon_sym_BSLASHPnotecite] = ACTIONS(6353), - [anon_sym_BSLASHfnotecite] = ACTIONS(6353), - [anon_sym_BSLASHlabel] = ACTIONS(6353), - [anon_sym_BSLASHref] = ACTIONS(6353), - [anon_sym_BSLASHeqref] = ACTIONS(6353), - [anon_sym_BSLASHvref] = ACTIONS(6353), - [anon_sym_BSLASHVref] = ACTIONS(6353), - [anon_sym_BSLASHautoref] = ACTIONS(6353), - [anon_sym_BSLASHpageref] = ACTIONS(6353), - [anon_sym_BSLASHcref] = ACTIONS(6353), - [anon_sym_BSLASHCref] = ACTIONS(6353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnameCref] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHlabelcref] = ACTIONS(6353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCrefrange] = ACTIONS(6353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnewlabel] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6355), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHdef] = ACTIONS(6353), - [anon_sym_BSLASHlet] = ACTIONS(6353), - [anon_sym_BSLASHleft] = ACTIONS(6353), - [anon_sym_BSLASHbig] = ACTIONS(6353), - [anon_sym_BSLASHBig] = ACTIONS(6353), - [anon_sym_BSLASHbigg] = ACTIONS(6353), - [anon_sym_BSLASHBigg] = ACTIONS(6353), - [anon_sym_BSLASHbigl] = ACTIONS(6353), - [anon_sym_BSLASHBigl] = ACTIONS(6353), - [anon_sym_BSLASHbiggl] = ACTIONS(6353), - [anon_sym_BSLASHBiggl] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6353), - [anon_sym_BSLASHgls] = ACTIONS(6353), - [anon_sym_BSLASHGls] = ACTIONS(6353), - [anon_sym_BSLASHGLS] = ACTIONS(6353), - [anon_sym_BSLASHglspl] = ACTIONS(6353), - [anon_sym_BSLASHGlspl] = ACTIONS(6353), - [anon_sym_BSLASHGLSpl] = ACTIONS(6353), - [anon_sym_BSLASHglsdisp] = ACTIONS(6353), - [anon_sym_BSLASHglslink] = ACTIONS(6353), - [anon_sym_BSLASHglstext] = ACTIONS(6353), - [anon_sym_BSLASHGlstext] = ACTIONS(6353), - [anon_sym_BSLASHGLStext] = ACTIONS(6353), - [anon_sym_BSLASHglsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6353), - [anon_sym_BSLASHglsplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSplural] = ACTIONS(6353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHglsname] = ACTIONS(6353), - [anon_sym_BSLASHGlsname] = ACTIONS(6353), - [anon_sym_BSLASHGLSname] = ACTIONS(6353), - [anon_sym_BSLASHglssymbol] = ACTIONS(6353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6353), - [anon_sym_BSLASHglsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6353), - [anon_sym_BSLASHglsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6353), - [anon_sym_BSLASHglsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6353), - [anon_sym_BSLASHglsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6353), - [anon_sym_BSLASHglsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6353), - [anon_sym_BSLASHnewacronym] = ACTIONS(6353), - [anon_sym_BSLASHacrshort] = ACTIONS(6353), - [anon_sym_BSLASHAcrshort] = ACTIONS(6353), - [anon_sym_BSLASHACRshort] = ACTIONS(6353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6353), - [anon_sym_BSLASHacrlong] = ACTIONS(6353), - [anon_sym_BSLASHAcrlong] = ACTIONS(6353), - [anon_sym_BSLASHACRlong] = ACTIONS(6353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6353), - [anon_sym_BSLASHacrfull] = ACTIONS(6353), - [anon_sym_BSLASHAcrfull] = ACTIONS(6353), - [anon_sym_BSLASHACRfull] = ACTIONS(6353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6353), - [anon_sym_BSLASHacs] = ACTIONS(6353), - [anon_sym_BSLASHAcs] = ACTIONS(6353), - [anon_sym_BSLASHacsp] = ACTIONS(6353), - [anon_sym_BSLASHAcsp] = ACTIONS(6353), - [anon_sym_BSLASHacl] = ACTIONS(6353), - [anon_sym_BSLASHAcl] = ACTIONS(6353), - [anon_sym_BSLASHaclp] = ACTIONS(6353), - [anon_sym_BSLASHAclp] = ACTIONS(6353), - [anon_sym_BSLASHacf] = ACTIONS(6353), - [anon_sym_BSLASHAcf] = ACTIONS(6353), - [anon_sym_BSLASHacfp] = ACTIONS(6353), - [anon_sym_BSLASHAcfp] = ACTIONS(6353), - [anon_sym_BSLASHac] = ACTIONS(6353), - [anon_sym_BSLASHAc] = ACTIONS(6353), - [anon_sym_BSLASHacp] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6353), - [anon_sym_BSLASHcolor] = ACTIONS(6353), - [anon_sym_BSLASHcolorbox] = ACTIONS(6353), - [anon_sym_BSLASHtextcolor] = ACTIONS(6353), - [anon_sym_BSLASHpagecolor] = ACTIONS(6353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6353), - [anon_sym_BSLASHtext] = ACTIONS(6353), - [anon_sym_BSLASHintertext] = ACTIONS(6353), - [anon_sym_shortintertext] = ACTIONS(6353), - }, - [1884] = { - [sym_command_name] = ACTIONS(6349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6349), - [anon_sym_LPAREN] = ACTIONS(6351), - [anon_sym_RPAREN] = ACTIONS(6351), - [anon_sym_LBRACE] = ACTIONS(6351), - [anon_sym_RBRACE] = ACTIONS(6351), - [anon_sym_BSLASHand] = ACTIONS(6349), - [sym_word] = ACTIONS(6349), - [sym_placeholder] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6351), - [anon_sym_DASH] = ACTIONS(6351), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_SQUOTE] = ACTIONS(6349), - [anon_sym__] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6351), - [anon_sym_DOLLAR] = ACTIONS(6349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6351), - [anon_sym_BSLASHtitle] = ACTIONS(6349), - [anon_sym_BSLASHauthor] = ACTIONS(6349), - [anon_sym_BSLASHusepackage] = ACTIONS(6349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6349), - [anon_sym_BSLASHinclude] = ACTIONS(6349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6349), - [anon_sym_BSLASHinput] = ACTIONS(6349), - [anon_sym_BSLASHsubfile] = ACTIONS(6349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6349), - [anon_sym_BSLASHbibliography] = ACTIONS(6349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6349), - [anon_sym_BSLASHincludesvg] = ACTIONS(6349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6349), - [anon_sym_BSLASHimport] = ACTIONS(6349), - [anon_sym_BSLASHsubimport] = ACTIONS(6349), - [anon_sym_BSLASHinputfrom] = ACTIONS(6349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6349), - [anon_sym_BSLASHincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHcaption] = ACTIONS(6349), - [anon_sym_BSLASHcite] = ACTIONS(6349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCite] = ACTIONS(6349), - [anon_sym_BSLASHnocite] = ACTIONS(6349), - [anon_sym_BSLASHcitet] = ACTIONS(6349), - [anon_sym_BSLASHcitep] = ACTIONS(6349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteauthor] = ACTIONS(6349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitetitle] = ACTIONS(6349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteyear] = ACTIONS(6349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitedate] = ACTIONS(6349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteurl] = ACTIONS(6349), - [anon_sym_BSLASHfullcite] = ACTIONS(6349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6349), - [anon_sym_BSLASHcitealt] = ACTIONS(6349), - [anon_sym_BSLASHcitealp] = ACTIONS(6349), - [anon_sym_BSLASHcitetext] = ACTIONS(6349), - [anon_sym_BSLASHparencite] = ACTIONS(6349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHParencite] = ACTIONS(6349), - [anon_sym_BSLASHfootcite] = ACTIONS(6349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6349), - [anon_sym_BSLASHtextcite] = ACTIONS(6349), - [anon_sym_BSLASHTextcite] = ACTIONS(6349), - [anon_sym_BSLASHsmartcite] = ACTIONS(6349), - [anon_sym_BSLASHSmartcite] = ACTIONS(6349), - [anon_sym_BSLASHsupercite] = ACTIONS(6349), - [anon_sym_BSLASHautocite] = ACTIONS(6349), - [anon_sym_BSLASHAutocite] = ACTIONS(6349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHvolcite] = ACTIONS(6349), - [anon_sym_BSLASHVolcite] = ACTIONS(6349), - [anon_sym_BSLASHpvolcite] = ACTIONS(6349), - [anon_sym_BSLASHPvolcite] = ACTIONS(6349), - [anon_sym_BSLASHfvolcite] = ACTIONS(6349), - [anon_sym_BSLASHftvolcite] = ACTIONS(6349), - [anon_sym_BSLASHsvolcite] = ACTIONS(6349), - [anon_sym_BSLASHSvolcite] = ACTIONS(6349), - [anon_sym_BSLASHtvolcite] = ACTIONS(6349), - [anon_sym_BSLASHTvolcite] = ACTIONS(6349), - [anon_sym_BSLASHavolcite] = ACTIONS(6349), - [anon_sym_BSLASHAvolcite] = ACTIONS(6349), - [anon_sym_BSLASHnotecite] = ACTIONS(6349), - [anon_sym_BSLASHNotecite] = ACTIONS(6349), - [anon_sym_BSLASHpnotecite] = ACTIONS(6349), - [anon_sym_BSLASHPnotecite] = ACTIONS(6349), - [anon_sym_BSLASHfnotecite] = ACTIONS(6349), - [anon_sym_BSLASHlabel] = ACTIONS(6349), - [anon_sym_BSLASHref] = ACTIONS(6349), - [anon_sym_BSLASHeqref] = ACTIONS(6349), - [anon_sym_BSLASHvref] = ACTIONS(6349), - [anon_sym_BSLASHVref] = ACTIONS(6349), - [anon_sym_BSLASHautoref] = ACTIONS(6349), - [anon_sym_BSLASHpageref] = ACTIONS(6349), - [anon_sym_BSLASHcref] = ACTIONS(6349), - [anon_sym_BSLASHCref] = ACTIONS(6349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnameCref] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHlabelcref] = ACTIONS(6349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCrefrange] = ACTIONS(6349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnewlabel] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6351), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHdef] = ACTIONS(6349), - [anon_sym_BSLASHlet] = ACTIONS(6349), - [anon_sym_BSLASHleft] = ACTIONS(6349), - [anon_sym_BSLASHbig] = ACTIONS(6349), - [anon_sym_BSLASHBig] = ACTIONS(6349), - [anon_sym_BSLASHbigg] = ACTIONS(6349), - [anon_sym_BSLASHBigg] = ACTIONS(6349), - [anon_sym_BSLASHbigl] = ACTIONS(6349), - [anon_sym_BSLASHBigl] = ACTIONS(6349), - [anon_sym_BSLASHbiggl] = ACTIONS(6349), - [anon_sym_BSLASHBiggl] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6349), - [anon_sym_BSLASHgls] = ACTIONS(6349), - [anon_sym_BSLASHGls] = ACTIONS(6349), - [anon_sym_BSLASHGLS] = ACTIONS(6349), - [anon_sym_BSLASHglspl] = ACTIONS(6349), - [anon_sym_BSLASHGlspl] = ACTIONS(6349), - [anon_sym_BSLASHGLSpl] = ACTIONS(6349), - [anon_sym_BSLASHglsdisp] = ACTIONS(6349), - [anon_sym_BSLASHglslink] = ACTIONS(6349), - [anon_sym_BSLASHglstext] = ACTIONS(6349), - [anon_sym_BSLASHGlstext] = ACTIONS(6349), - [anon_sym_BSLASHGLStext] = ACTIONS(6349), - [anon_sym_BSLASHglsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6349), - [anon_sym_BSLASHglsplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSplural] = ACTIONS(6349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHglsname] = ACTIONS(6349), - [anon_sym_BSLASHGlsname] = ACTIONS(6349), - [anon_sym_BSLASHGLSname] = ACTIONS(6349), - [anon_sym_BSLASHglssymbol] = ACTIONS(6349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6349), - [anon_sym_BSLASHglsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6349), - [anon_sym_BSLASHglsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6349), - [anon_sym_BSLASHglsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6349), - [anon_sym_BSLASHglsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6349), - [anon_sym_BSLASHglsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6349), - [anon_sym_BSLASHnewacronym] = ACTIONS(6349), - [anon_sym_BSLASHacrshort] = ACTIONS(6349), - [anon_sym_BSLASHAcrshort] = ACTIONS(6349), - [anon_sym_BSLASHACRshort] = ACTIONS(6349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6349), - [anon_sym_BSLASHacrlong] = ACTIONS(6349), - [anon_sym_BSLASHAcrlong] = ACTIONS(6349), - [anon_sym_BSLASHACRlong] = ACTIONS(6349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6349), - [anon_sym_BSLASHacrfull] = ACTIONS(6349), - [anon_sym_BSLASHAcrfull] = ACTIONS(6349), - [anon_sym_BSLASHACRfull] = ACTIONS(6349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6349), - [anon_sym_BSLASHacs] = ACTIONS(6349), - [anon_sym_BSLASHAcs] = ACTIONS(6349), - [anon_sym_BSLASHacsp] = ACTIONS(6349), - [anon_sym_BSLASHAcsp] = ACTIONS(6349), - [anon_sym_BSLASHacl] = ACTIONS(6349), - [anon_sym_BSLASHAcl] = ACTIONS(6349), - [anon_sym_BSLASHaclp] = ACTIONS(6349), - [anon_sym_BSLASHAclp] = ACTIONS(6349), - [anon_sym_BSLASHacf] = ACTIONS(6349), - [anon_sym_BSLASHAcf] = ACTIONS(6349), - [anon_sym_BSLASHacfp] = ACTIONS(6349), - [anon_sym_BSLASHAcfp] = ACTIONS(6349), - [anon_sym_BSLASHac] = ACTIONS(6349), - [anon_sym_BSLASHAc] = ACTIONS(6349), - [anon_sym_BSLASHacp] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6349), - [anon_sym_BSLASHcolor] = ACTIONS(6349), - [anon_sym_BSLASHcolorbox] = ACTIONS(6349), - [anon_sym_BSLASHtextcolor] = ACTIONS(6349), - [anon_sym_BSLASHpagecolor] = ACTIONS(6349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6349), - [anon_sym_BSLASHtext] = ACTIONS(6349), - [anon_sym_BSLASHintertext] = ACTIONS(6349), - [anon_sym_shortintertext] = ACTIONS(6349), - }, - [1885] = { - [sym_command_name] = ACTIONS(6165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6165), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_LBRACE] = ACTIONS(6167), - [anon_sym_RBRACE] = ACTIONS(6167), - [anon_sym_BSLASHand] = ACTIONS(6165), - [sym_word] = ACTIONS(6165), - [sym_placeholder] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6167), - [anon_sym_DASH] = ACTIONS(6167), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_COLON] = ACTIONS(6165), - [anon_sym_SQUOTE] = ACTIONS(6165), - [anon_sym__] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6167), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6167), - [anon_sym_DOLLAR] = ACTIONS(6165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6167), - [anon_sym_BSLASHtitle] = ACTIONS(6165), - [anon_sym_BSLASHauthor] = ACTIONS(6165), - [anon_sym_BSLASHusepackage] = ACTIONS(6165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6165), - [anon_sym_BSLASHinclude] = ACTIONS(6165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6165), - [anon_sym_BSLASHinput] = ACTIONS(6165), - [anon_sym_BSLASHsubfile] = ACTIONS(6165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6165), - [anon_sym_BSLASHbibliography] = ACTIONS(6165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6165), - [anon_sym_BSLASHincludesvg] = ACTIONS(6165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6165), - [anon_sym_BSLASHimport] = ACTIONS(6165), - [anon_sym_BSLASHsubimport] = ACTIONS(6165), - [anon_sym_BSLASHinputfrom] = ACTIONS(6165), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6165), - [anon_sym_BSLASHincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHcaption] = ACTIONS(6165), - [anon_sym_BSLASHcite] = ACTIONS(6165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCite] = ACTIONS(6165), - [anon_sym_BSLASHnocite] = ACTIONS(6165), - [anon_sym_BSLASHcitet] = ACTIONS(6165), - [anon_sym_BSLASHcitep] = ACTIONS(6165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteauthor] = ACTIONS(6165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitetitle] = ACTIONS(6165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteyear] = ACTIONS(6165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitedate] = ACTIONS(6165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteurl] = ACTIONS(6165), - [anon_sym_BSLASHfullcite] = ACTIONS(6165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6165), - [anon_sym_BSLASHcitealt] = ACTIONS(6165), - [anon_sym_BSLASHcitealp] = ACTIONS(6165), - [anon_sym_BSLASHcitetext] = ACTIONS(6165), - [anon_sym_BSLASHparencite] = ACTIONS(6165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHParencite] = ACTIONS(6165), - [anon_sym_BSLASHfootcite] = ACTIONS(6165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6165), - [anon_sym_BSLASHtextcite] = ACTIONS(6165), - [anon_sym_BSLASHTextcite] = ACTIONS(6165), - [anon_sym_BSLASHsmartcite] = ACTIONS(6165), - [anon_sym_BSLASHSmartcite] = ACTIONS(6165), - [anon_sym_BSLASHsupercite] = ACTIONS(6165), - [anon_sym_BSLASHautocite] = ACTIONS(6165), - [anon_sym_BSLASHAutocite] = ACTIONS(6165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHvolcite] = ACTIONS(6165), - [anon_sym_BSLASHVolcite] = ACTIONS(6165), - [anon_sym_BSLASHpvolcite] = ACTIONS(6165), - [anon_sym_BSLASHPvolcite] = ACTIONS(6165), - [anon_sym_BSLASHfvolcite] = ACTIONS(6165), - [anon_sym_BSLASHftvolcite] = ACTIONS(6165), - [anon_sym_BSLASHsvolcite] = ACTIONS(6165), - [anon_sym_BSLASHSvolcite] = ACTIONS(6165), - [anon_sym_BSLASHtvolcite] = ACTIONS(6165), - [anon_sym_BSLASHTvolcite] = ACTIONS(6165), - [anon_sym_BSLASHavolcite] = ACTIONS(6165), - [anon_sym_BSLASHAvolcite] = ACTIONS(6165), - [anon_sym_BSLASHnotecite] = ACTIONS(6165), - [anon_sym_BSLASHNotecite] = ACTIONS(6165), - [anon_sym_BSLASHpnotecite] = ACTIONS(6165), - [anon_sym_BSLASHPnotecite] = ACTIONS(6165), - [anon_sym_BSLASHfnotecite] = ACTIONS(6165), - [anon_sym_BSLASHlabel] = ACTIONS(6165), - [anon_sym_BSLASHref] = ACTIONS(6165), - [anon_sym_BSLASHeqref] = ACTIONS(6165), - [anon_sym_BSLASHvref] = ACTIONS(6165), - [anon_sym_BSLASHVref] = ACTIONS(6165), - [anon_sym_BSLASHautoref] = ACTIONS(6165), - [anon_sym_BSLASHpageref] = ACTIONS(6165), - [anon_sym_BSLASHcref] = ACTIONS(6165), - [anon_sym_BSLASHCref] = ACTIONS(6165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnameCref] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHlabelcref] = ACTIONS(6165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCrefrange] = ACTIONS(6165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnewlabel] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6167), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHdef] = ACTIONS(6165), - [anon_sym_BSLASHlet] = ACTIONS(6165), - [anon_sym_BSLASHleft] = ACTIONS(6165), - [anon_sym_BSLASHbig] = ACTIONS(6165), - [anon_sym_BSLASHBig] = ACTIONS(6165), - [anon_sym_BSLASHbigg] = ACTIONS(6165), - [anon_sym_BSLASHBigg] = ACTIONS(6165), - [anon_sym_BSLASHbigl] = ACTIONS(6165), - [anon_sym_BSLASHBigl] = ACTIONS(6165), - [anon_sym_BSLASHbiggl] = ACTIONS(6165), - [anon_sym_BSLASHBiggl] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6165), - [anon_sym_BSLASHgls] = ACTIONS(6165), - [anon_sym_BSLASHGls] = ACTIONS(6165), - [anon_sym_BSLASHGLS] = ACTIONS(6165), - [anon_sym_BSLASHglspl] = ACTIONS(6165), - [anon_sym_BSLASHGlspl] = ACTIONS(6165), - [anon_sym_BSLASHGLSpl] = ACTIONS(6165), - [anon_sym_BSLASHglsdisp] = ACTIONS(6165), - [anon_sym_BSLASHglslink] = ACTIONS(6165), - [anon_sym_BSLASHglstext] = ACTIONS(6165), - [anon_sym_BSLASHGlstext] = ACTIONS(6165), - [anon_sym_BSLASHGLStext] = ACTIONS(6165), - [anon_sym_BSLASHglsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6165), - [anon_sym_BSLASHglsplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSplural] = ACTIONS(6165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHglsname] = ACTIONS(6165), - [anon_sym_BSLASHGlsname] = ACTIONS(6165), - [anon_sym_BSLASHGLSname] = ACTIONS(6165), - [anon_sym_BSLASHglssymbol] = ACTIONS(6165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6165), - [anon_sym_BSLASHglsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6165), - [anon_sym_BSLASHglsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6165), - [anon_sym_BSLASHglsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6165), - [anon_sym_BSLASHglsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6165), - [anon_sym_BSLASHglsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6165), - [anon_sym_BSLASHnewacronym] = ACTIONS(6165), - [anon_sym_BSLASHacrshort] = ACTIONS(6165), - [anon_sym_BSLASHAcrshort] = ACTIONS(6165), - [anon_sym_BSLASHACRshort] = ACTIONS(6165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6165), - [anon_sym_BSLASHacrlong] = ACTIONS(6165), - [anon_sym_BSLASHAcrlong] = ACTIONS(6165), - [anon_sym_BSLASHACRlong] = ACTIONS(6165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6165), - [anon_sym_BSLASHacrfull] = ACTIONS(6165), - [anon_sym_BSLASHAcrfull] = ACTIONS(6165), - [anon_sym_BSLASHACRfull] = ACTIONS(6165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6165), - [anon_sym_BSLASHacs] = ACTIONS(6165), - [anon_sym_BSLASHAcs] = ACTIONS(6165), - [anon_sym_BSLASHacsp] = ACTIONS(6165), - [anon_sym_BSLASHAcsp] = ACTIONS(6165), - [anon_sym_BSLASHacl] = ACTIONS(6165), - [anon_sym_BSLASHAcl] = ACTIONS(6165), - [anon_sym_BSLASHaclp] = ACTIONS(6165), - [anon_sym_BSLASHAclp] = ACTIONS(6165), - [anon_sym_BSLASHacf] = ACTIONS(6165), - [anon_sym_BSLASHAcf] = ACTIONS(6165), - [anon_sym_BSLASHacfp] = ACTIONS(6165), - [anon_sym_BSLASHAcfp] = ACTIONS(6165), - [anon_sym_BSLASHac] = ACTIONS(6165), - [anon_sym_BSLASHAc] = ACTIONS(6165), - [anon_sym_BSLASHacp] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6165), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6165), - [anon_sym_BSLASHcolor] = ACTIONS(6165), - [anon_sym_BSLASHcolorbox] = ACTIONS(6165), - [anon_sym_BSLASHtextcolor] = ACTIONS(6165), - [anon_sym_BSLASHpagecolor] = ACTIONS(6165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6165), - [anon_sym_BSLASHtext] = ACTIONS(6165), - [anon_sym_BSLASHintertext] = ACTIONS(6165), - [anon_sym_shortintertext] = ACTIONS(6165), - }, - [1886] = { - [sym_command_name] = ACTIONS(6345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6345), - [anon_sym_LPAREN] = ACTIONS(6347), - [anon_sym_RPAREN] = ACTIONS(6347), - [anon_sym_LBRACE] = ACTIONS(6347), - [anon_sym_RBRACE] = ACTIONS(6347), - [anon_sym_BSLASHand] = ACTIONS(6345), - [sym_word] = ACTIONS(6345), - [sym_placeholder] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6345), - [anon_sym_GT] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(6345), - [anon_sym_PIPE] = ACTIONS(6345), - [anon_sym_COLON] = ACTIONS(6345), - [anon_sym_SQUOTE] = ACTIONS(6345), - [anon_sym__] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6347), - [anon_sym_DOLLAR] = ACTIONS(6345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6347), - [anon_sym_BSLASHtitle] = ACTIONS(6345), - [anon_sym_BSLASHauthor] = ACTIONS(6345), - [anon_sym_BSLASHusepackage] = ACTIONS(6345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6345), - [anon_sym_BSLASHinclude] = ACTIONS(6345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6345), - [anon_sym_BSLASHinput] = ACTIONS(6345), - [anon_sym_BSLASHsubfile] = ACTIONS(6345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6345), - [anon_sym_BSLASHbibliography] = ACTIONS(6345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6345), - [anon_sym_BSLASHincludesvg] = ACTIONS(6345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6345), - [anon_sym_BSLASHimport] = ACTIONS(6345), - [anon_sym_BSLASHsubimport] = ACTIONS(6345), - [anon_sym_BSLASHinputfrom] = ACTIONS(6345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6345), - [anon_sym_BSLASHincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHcaption] = ACTIONS(6345), - [anon_sym_BSLASHcite] = ACTIONS(6345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCite] = ACTIONS(6345), - [anon_sym_BSLASHnocite] = ACTIONS(6345), - [anon_sym_BSLASHcitet] = ACTIONS(6345), - [anon_sym_BSLASHcitep] = ACTIONS(6345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteauthor] = ACTIONS(6345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitetitle] = ACTIONS(6345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteyear] = ACTIONS(6345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitedate] = ACTIONS(6345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteurl] = ACTIONS(6345), - [anon_sym_BSLASHfullcite] = ACTIONS(6345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6345), - [anon_sym_BSLASHcitealt] = ACTIONS(6345), - [anon_sym_BSLASHcitealp] = ACTIONS(6345), - [anon_sym_BSLASHcitetext] = ACTIONS(6345), - [anon_sym_BSLASHparencite] = ACTIONS(6345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHParencite] = ACTIONS(6345), - [anon_sym_BSLASHfootcite] = ACTIONS(6345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6345), - [anon_sym_BSLASHtextcite] = ACTIONS(6345), - [anon_sym_BSLASHTextcite] = ACTIONS(6345), - [anon_sym_BSLASHsmartcite] = ACTIONS(6345), - [anon_sym_BSLASHSmartcite] = ACTIONS(6345), - [anon_sym_BSLASHsupercite] = ACTIONS(6345), - [anon_sym_BSLASHautocite] = ACTIONS(6345), - [anon_sym_BSLASHAutocite] = ACTIONS(6345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHvolcite] = ACTIONS(6345), - [anon_sym_BSLASHVolcite] = ACTIONS(6345), - [anon_sym_BSLASHpvolcite] = ACTIONS(6345), - [anon_sym_BSLASHPvolcite] = ACTIONS(6345), - [anon_sym_BSLASHfvolcite] = ACTIONS(6345), - [anon_sym_BSLASHftvolcite] = ACTIONS(6345), - [anon_sym_BSLASHsvolcite] = ACTIONS(6345), - [anon_sym_BSLASHSvolcite] = ACTIONS(6345), - [anon_sym_BSLASHtvolcite] = ACTIONS(6345), - [anon_sym_BSLASHTvolcite] = ACTIONS(6345), - [anon_sym_BSLASHavolcite] = ACTIONS(6345), - [anon_sym_BSLASHAvolcite] = ACTIONS(6345), - [anon_sym_BSLASHnotecite] = ACTIONS(6345), - [anon_sym_BSLASHNotecite] = ACTIONS(6345), - [anon_sym_BSLASHpnotecite] = ACTIONS(6345), - [anon_sym_BSLASHPnotecite] = ACTIONS(6345), - [anon_sym_BSLASHfnotecite] = ACTIONS(6345), - [anon_sym_BSLASHlabel] = ACTIONS(6345), - [anon_sym_BSLASHref] = ACTIONS(6345), - [anon_sym_BSLASHeqref] = ACTIONS(6345), - [anon_sym_BSLASHvref] = ACTIONS(6345), - [anon_sym_BSLASHVref] = ACTIONS(6345), - [anon_sym_BSLASHautoref] = ACTIONS(6345), - [anon_sym_BSLASHpageref] = ACTIONS(6345), - [anon_sym_BSLASHcref] = ACTIONS(6345), - [anon_sym_BSLASHCref] = ACTIONS(6345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnameCref] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHlabelcref] = ACTIONS(6345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCrefrange] = ACTIONS(6345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnewlabel] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6347), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHdef] = ACTIONS(6345), - [anon_sym_BSLASHlet] = ACTIONS(6345), - [anon_sym_BSLASHleft] = ACTIONS(6345), - [anon_sym_BSLASHbig] = ACTIONS(6345), - [anon_sym_BSLASHBig] = ACTIONS(6345), - [anon_sym_BSLASHbigg] = ACTIONS(6345), - [anon_sym_BSLASHBigg] = ACTIONS(6345), - [anon_sym_BSLASHbigl] = ACTIONS(6345), - [anon_sym_BSLASHBigl] = ACTIONS(6345), - [anon_sym_BSLASHbiggl] = ACTIONS(6345), - [anon_sym_BSLASHBiggl] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6345), - [anon_sym_BSLASHgls] = ACTIONS(6345), - [anon_sym_BSLASHGls] = ACTIONS(6345), - [anon_sym_BSLASHGLS] = ACTIONS(6345), - [anon_sym_BSLASHglspl] = ACTIONS(6345), - [anon_sym_BSLASHGlspl] = ACTIONS(6345), - [anon_sym_BSLASHGLSpl] = ACTIONS(6345), - [anon_sym_BSLASHglsdisp] = ACTIONS(6345), - [anon_sym_BSLASHglslink] = ACTIONS(6345), - [anon_sym_BSLASHglstext] = ACTIONS(6345), - [anon_sym_BSLASHGlstext] = ACTIONS(6345), - [anon_sym_BSLASHGLStext] = ACTIONS(6345), - [anon_sym_BSLASHglsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6345), - [anon_sym_BSLASHglsplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSplural] = ACTIONS(6345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHglsname] = ACTIONS(6345), - [anon_sym_BSLASHGlsname] = ACTIONS(6345), - [anon_sym_BSLASHGLSname] = ACTIONS(6345), - [anon_sym_BSLASHglssymbol] = ACTIONS(6345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6345), - [anon_sym_BSLASHglsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6345), - [anon_sym_BSLASHglsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6345), - [anon_sym_BSLASHglsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6345), - [anon_sym_BSLASHglsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6345), - [anon_sym_BSLASHglsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6345), - [anon_sym_BSLASHnewacronym] = ACTIONS(6345), - [anon_sym_BSLASHacrshort] = ACTIONS(6345), - [anon_sym_BSLASHAcrshort] = ACTIONS(6345), - [anon_sym_BSLASHACRshort] = ACTIONS(6345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6345), - [anon_sym_BSLASHacrlong] = ACTIONS(6345), - [anon_sym_BSLASHAcrlong] = ACTIONS(6345), - [anon_sym_BSLASHACRlong] = ACTIONS(6345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6345), - [anon_sym_BSLASHacrfull] = ACTIONS(6345), - [anon_sym_BSLASHAcrfull] = ACTIONS(6345), - [anon_sym_BSLASHACRfull] = ACTIONS(6345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6345), - [anon_sym_BSLASHacs] = ACTIONS(6345), - [anon_sym_BSLASHAcs] = ACTIONS(6345), - [anon_sym_BSLASHacsp] = ACTIONS(6345), - [anon_sym_BSLASHAcsp] = ACTIONS(6345), - [anon_sym_BSLASHacl] = ACTIONS(6345), - [anon_sym_BSLASHAcl] = ACTIONS(6345), - [anon_sym_BSLASHaclp] = ACTIONS(6345), - [anon_sym_BSLASHAclp] = ACTIONS(6345), - [anon_sym_BSLASHacf] = ACTIONS(6345), - [anon_sym_BSLASHAcf] = ACTIONS(6345), - [anon_sym_BSLASHacfp] = ACTIONS(6345), - [anon_sym_BSLASHAcfp] = ACTIONS(6345), - [anon_sym_BSLASHac] = ACTIONS(6345), - [anon_sym_BSLASHAc] = ACTIONS(6345), - [anon_sym_BSLASHacp] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6345), - [anon_sym_BSLASHcolor] = ACTIONS(6345), - [anon_sym_BSLASHcolorbox] = ACTIONS(6345), - [anon_sym_BSLASHtextcolor] = ACTIONS(6345), - [anon_sym_BSLASHpagecolor] = ACTIONS(6345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6345), - [anon_sym_BSLASHtext] = ACTIONS(6345), - [anon_sym_BSLASHintertext] = ACTIONS(6345), - [anon_sym_shortintertext] = ACTIONS(6345), - }, - [1887] = { - [sym_command_name] = ACTIONS(6341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6341), - [anon_sym_LPAREN] = ACTIONS(6343), - [anon_sym_RPAREN] = ACTIONS(6343), - [anon_sym_LBRACE] = ACTIONS(6343), - [anon_sym_RBRACE] = ACTIONS(6343), - [anon_sym_BSLASHand] = ACTIONS(6341), - [sym_word] = ACTIONS(6341), - [sym_placeholder] = ACTIONS(6343), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_LT] = ACTIONS(6341), - [anon_sym_GT] = ACTIONS(6341), - [anon_sym_BANG] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_SQUOTE] = ACTIONS(6341), - [anon_sym__] = ACTIONS(6343), - [anon_sym_CARET] = ACTIONS(6343), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6343), - [anon_sym_DOLLAR] = ACTIONS(6341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6343), - [anon_sym_BSLASHtitle] = ACTIONS(6341), - [anon_sym_BSLASHauthor] = ACTIONS(6341), - [anon_sym_BSLASHusepackage] = ACTIONS(6341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6341), - [anon_sym_BSLASHinclude] = ACTIONS(6341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6341), - [anon_sym_BSLASHinput] = ACTIONS(6341), - [anon_sym_BSLASHsubfile] = ACTIONS(6341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6341), - [anon_sym_BSLASHbibliography] = ACTIONS(6341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6341), - [anon_sym_BSLASHincludesvg] = ACTIONS(6341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6341), - [anon_sym_BSLASHimport] = ACTIONS(6341), - [anon_sym_BSLASHsubimport] = ACTIONS(6341), - [anon_sym_BSLASHinputfrom] = ACTIONS(6341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6341), - [anon_sym_BSLASHincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHcaption] = ACTIONS(6341), - [anon_sym_BSLASHcite] = ACTIONS(6341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCite] = ACTIONS(6341), - [anon_sym_BSLASHnocite] = ACTIONS(6341), - [anon_sym_BSLASHcitet] = ACTIONS(6341), - [anon_sym_BSLASHcitep] = ACTIONS(6341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteauthor] = ACTIONS(6341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitetitle] = ACTIONS(6341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteyear] = ACTIONS(6341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitedate] = ACTIONS(6341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteurl] = ACTIONS(6341), - [anon_sym_BSLASHfullcite] = ACTIONS(6341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6341), - [anon_sym_BSLASHcitealt] = ACTIONS(6341), - [anon_sym_BSLASHcitealp] = ACTIONS(6341), - [anon_sym_BSLASHcitetext] = ACTIONS(6341), - [anon_sym_BSLASHparencite] = ACTIONS(6341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHParencite] = ACTIONS(6341), - [anon_sym_BSLASHfootcite] = ACTIONS(6341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6341), - [anon_sym_BSLASHtextcite] = ACTIONS(6341), - [anon_sym_BSLASHTextcite] = ACTIONS(6341), - [anon_sym_BSLASHsmartcite] = ACTIONS(6341), - [anon_sym_BSLASHSmartcite] = ACTIONS(6341), - [anon_sym_BSLASHsupercite] = ACTIONS(6341), - [anon_sym_BSLASHautocite] = ACTIONS(6341), - [anon_sym_BSLASHAutocite] = ACTIONS(6341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHvolcite] = ACTIONS(6341), - [anon_sym_BSLASHVolcite] = ACTIONS(6341), - [anon_sym_BSLASHpvolcite] = ACTIONS(6341), - [anon_sym_BSLASHPvolcite] = ACTIONS(6341), - [anon_sym_BSLASHfvolcite] = ACTIONS(6341), - [anon_sym_BSLASHftvolcite] = ACTIONS(6341), - [anon_sym_BSLASHsvolcite] = ACTIONS(6341), - [anon_sym_BSLASHSvolcite] = ACTIONS(6341), - [anon_sym_BSLASHtvolcite] = ACTIONS(6341), - [anon_sym_BSLASHTvolcite] = ACTIONS(6341), - [anon_sym_BSLASHavolcite] = ACTIONS(6341), - [anon_sym_BSLASHAvolcite] = ACTIONS(6341), - [anon_sym_BSLASHnotecite] = ACTIONS(6341), - [anon_sym_BSLASHNotecite] = ACTIONS(6341), - [anon_sym_BSLASHpnotecite] = ACTIONS(6341), - [anon_sym_BSLASHPnotecite] = ACTIONS(6341), - [anon_sym_BSLASHfnotecite] = ACTIONS(6341), - [anon_sym_BSLASHlabel] = ACTIONS(6341), - [anon_sym_BSLASHref] = ACTIONS(6341), - [anon_sym_BSLASHeqref] = ACTIONS(6341), - [anon_sym_BSLASHvref] = ACTIONS(6341), - [anon_sym_BSLASHVref] = ACTIONS(6341), - [anon_sym_BSLASHautoref] = ACTIONS(6341), - [anon_sym_BSLASHpageref] = ACTIONS(6341), - [anon_sym_BSLASHcref] = ACTIONS(6341), - [anon_sym_BSLASHCref] = ACTIONS(6341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnameCref] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHlabelcref] = ACTIONS(6341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCrefrange] = ACTIONS(6341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnewlabel] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6343), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHdef] = ACTIONS(6341), - [anon_sym_BSLASHlet] = ACTIONS(6341), - [anon_sym_BSLASHleft] = ACTIONS(6341), - [anon_sym_BSLASHbig] = ACTIONS(6341), - [anon_sym_BSLASHBig] = ACTIONS(6341), - [anon_sym_BSLASHbigg] = ACTIONS(6341), - [anon_sym_BSLASHBigg] = ACTIONS(6341), - [anon_sym_BSLASHbigl] = ACTIONS(6341), - [anon_sym_BSLASHBigl] = ACTIONS(6341), - [anon_sym_BSLASHbiggl] = ACTIONS(6341), - [anon_sym_BSLASHBiggl] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6341), - [anon_sym_BSLASHgls] = ACTIONS(6341), - [anon_sym_BSLASHGls] = ACTIONS(6341), - [anon_sym_BSLASHGLS] = ACTIONS(6341), - [anon_sym_BSLASHglspl] = ACTIONS(6341), - [anon_sym_BSLASHGlspl] = ACTIONS(6341), - [anon_sym_BSLASHGLSpl] = ACTIONS(6341), - [anon_sym_BSLASHglsdisp] = ACTIONS(6341), - [anon_sym_BSLASHglslink] = ACTIONS(6341), - [anon_sym_BSLASHglstext] = ACTIONS(6341), - [anon_sym_BSLASHGlstext] = ACTIONS(6341), - [anon_sym_BSLASHGLStext] = ACTIONS(6341), - [anon_sym_BSLASHglsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6341), - [anon_sym_BSLASHglsplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSplural] = ACTIONS(6341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHglsname] = ACTIONS(6341), - [anon_sym_BSLASHGlsname] = ACTIONS(6341), - [anon_sym_BSLASHGLSname] = ACTIONS(6341), - [anon_sym_BSLASHglssymbol] = ACTIONS(6341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6341), - [anon_sym_BSLASHglsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6341), - [anon_sym_BSLASHglsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6341), - [anon_sym_BSLASHglsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6341), - [anon_sym_BSLASHglsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6341), - [anon_sym_BSLASHglsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6341), - [anon_sym_BSLASHnewacronym] = ACTIONS(6341), - [anon_sym_BSLASHacrshort] = ACTIONS(6341), - [anon_sym_BSLASHAcrshort] = ACTIONS(6341), - [anon_sym_BSLASHACRshort] = ACTIONS(6341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6341), - [anon_sym_BSLASHacrlong] = ACTIONS(6341), - [anon_sym_BSLASHAcrlong] = ACTIONS(6341), - [anon_sym_BSLASHACRlong] = ACTIONS(6341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6341), - [anon_sym_BSLASHacrfull] = ACTIONS(6341), - [anon_sym_BSLASHAcrfull] = ACTIONS(6341), - [anon_sym_BSLASHACRfull] = ACTIONS(6341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6341), - [anon_sym_BSLASHacs] = ACTIONS(6341), - [anon_sym_BSLASHAcs] = ACTIONS(6341), - [anon_sym_BSLASHacsp] = ACTIONS(6341), - [anon_sym_BSLASHAcsp] = ACTIONS(6341), - [anon_sym_BSLASHacl] = ACTIONS(6341), - [anon_sym_BSLASHAcl] = ACTIONS(6341), - [anon_sym_BSLASHaclp] = ACTIONS(6341), - [anon_sym_BSLASHAclp] = ACTIONS(6341), - [anon_sym_BSLASHacf] = ACTIONS(6341), - [anon_sym_BSLASHAcf] = ACTIONS(6341), - [anon_sym_BSLASHacfp] = ACTIONS(6341), - [anon_sym_BSLASHAcfp] = ACTIONS(6341), - [anon_sym_BSLASHac] = ACTIONS(6341), - [anon_sym_BSLASHAc] = ACTIONS(6341), - [anon_sym_BSLASHacp] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6341), - [anon_sym_BSLASHcolor] = ACTIONS(6341), - [anon_sym_BSLASHcolorbox] = ACTIONS(6341), - [anon_sym_BSLASHtextcolor] = ACTIONS(6341), - [anon_sym_BSLASHpagecolor] = ACTIONS(6341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6341), - [anon_sym_BSLASHtext] = ACTIONS(6341), - [anon_sym_BSLASHintertext] = ACTIONS(6341), - [anon_sym_shortintertext] = ACTIONS(6341), - }, - [1888] = { - [sym_command_name] = ACTIONS(6337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6337), - [anon_sym_LPAREN] = ACTIONS(6339), - [anon_sym_RPAREN] = ACTIONS(6339), - [anon_sym_LBRACE] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(6339), - [anon_sym_BSLASHand] = ACTIONS(6337), - [sym_word] = ACTIONS(6337), - [sym_placeholder] = ACTIONS(6339), - [anon_sym_PLUS] = ACTIONS(6339), - [anon_sym_DASH] = ACTIONS(6339), - [anon_sym_STAR] = ACTIONS(6339), - [anon_sym_SLASH] = ACTIONS(6339), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_COLON] = ACTIONS(6337), - [anon_sym_SQUOTE] = ACTIONS(6337), - [anon_sym__] = ACTIONS(6339), - [anon_sym_CARET] = ACTIONS(6339), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6339), - [anon_sym_DOLLAR] = ACTIONS(6337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6339), - [anon_sym_BSLASHtitle] = ACTIONS(6337), - [anon_sym_BSLASHauthor] = ACTIONS(6337), - [anon_sym_BSLASHusepackage] = ACTIONS(6337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6337), - [anon_sym_BSLASHinclude] = ACTIONS(6337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6337), - [anon_sym_BSLASHinput] = ACTIONS(6337), - [anon_sym_BSLASHsubfile] = ACTIONS(6337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6337), - [anon_sym_BSLASHbibliography] = ACTIONS(6337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6337), - [anon_sym_BSLASHincludesvg] = ACTIONS(6337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6337), - [anon_sym_BSLASHimport] = ACTIONS(6337), - [anon_sym_BSLASHsubimport] = ACTIONS(6337), - [anon_sym_BSLASHinputfrom] = ACTIONS(6337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6337), - [anon_sym_BSLASHincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHcaption] = ACTIONS(6337), - [anon_sym_BSLASHcite] = ACTIONS(6337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCite] = ACTIONS(6337), - [anon_sym_BSLASHnocite] = ACTIONS(6337), - [anon_sym_BSLASHcitet] = ACTIONS(6337), - [anon_sym_BSLASHcitep] = ACTIONS(6337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteauthor] = ACTIONS(6337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitetitle] = ACTIONS(6337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteyear] = ACTIONS(6337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitedate] = ACTIONS(6337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteurl] = ACTIONS(6337), - [anon_sym_BSLASHfullcite] = ACTIONS(6337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6337), - [anon_sym_BSLASHcitealt] = ACTIONS(6337), - [anon_sym_BSLASHcitealp] = ACTIONS(6337), - [anon_sym_BSLASHcitetext] = ACTIONS(6337), - [anon_sym_BSLASHparencite] = ACTIONS(6337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHParencite] = ACTIONS(6337), - [anon_sym_BSLASHfootcite] = ACTIONS(6337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6337), - [anon_sym_BSLASHtextcite] = ACTIONS(6337), - [anon_sym_BSLASHTextcite] = ACTIONS(6337), - [anon_sym_BSLASHsmartcite] = ACTIONS(6337), - [anon_sym_BSLASHSmartcite] = ACTIONS(6337), - [anon_sym_BSLASHsupercite] = ACTIONS(6337), - [anon_sym_BSLASHautocite] = ACTIONS(6337), - [anon_sym_BSLASHAutocite] = ACTIONS(6337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHvolcite] = ACTIONS(6337), - [anon_sym_BSLASHVolcite] = ACTIONS(6337), - [anon_sym_BSLASHpvolcite] = ACTIONS(6337), - [anon_sym_BSLASHPvolcite] = ACTIONS(6337), - [anon_sym_BSLASHfvolcite] = ACTIONS(6337), - [anon_sym_BSLASHftvolcite] = ACTIONS(6337), - [anon_sym_BSLASHsvolcite] = ACTIONS(6337), - [anon_sym_BSLASHSvolcite] = ACTIONS(6337), - [anon_sym_BSLASHtvolcite] = ACTIONS(6337), - [anon_sym_BSLASHTvolcite] = ACTIONS(6337), - [anon_sym_BSLASHavolcite] = ACTIONS(6337), - [anon_sym_BSLASHAvolcite] = ACTIONS(6337), - [anon_sym_BSLASHnotecite] = ACTIONS(6337), - [anon_sym_BSLASHNotecite] = ACTIONS(6337), - [anon_sym_BSLASHpnotecite] = ACTIONS(6337), - [anon_sym_BSLASHPnotecite] = ACTIONS(6337), - [anon_sym_BSLASHfnotecite] = ACTIONS(6337), - [anon_sym_BSLASHlabel] = ACTIONS(6337), - [anon_sym_BSLASHref] = ACTIONS(6337), - [anon_sym_BSLASHeqref] = ACTIONS(6337), - [anon_sym_BSLASHvref] = ACTIONS(6337), - [anon_sym_BSLASHVref] = ACTIONS(6337), - [anon_sym_BSLASHautoref] = ACTIONS(6337), - [anon_sym_BSLASHpageref] = ACTIONS(6337), - [anon_sym_BSLASHcref] = ACTIONS(6337), - [anon_sym_BSLASHCref] = ACTIONS(6337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnameCref] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHlabelcref] = ACTIONS(6337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCrefrange] = ACTIONS(6337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnewlabel] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6339), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHdef] = ACTIONS(6337), - [anon_sym_BSLASHlet] = ACTIONS(6337), - [anon_sym_BSLASHleft] = ACTIONS(6337), - [anon_sym_BSLASHbig] = ACTIONS(6337), - [anon_sym_BSLASHBig] = ACTIONS(6337), - [anon_sym_BSLASHbigg] = ACTIONS(6337), - [anon_sym_BSLASHBigg] = ACTIONS(6337), - [anon_sym_BSLASHbigl] = ACTIONS(6337), - [anon_sym_BSLASHBigl] = ACTIONS(6337), - [anon_sym_BSLASHbiggl] = ACTIONS(6337), - [anon_sym_BSLASHBiggl] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6337), - [anon_sym_BSLASHgls] = ACTIONS(6337), - [anon_sym_BSLASHGls] = ACTIONS(6337), - [anon_sym_BSLASHGLS] = ACTIONS(6337), - [anon_sym_BSLASHglspl] = ACTIONS(6337), - [anon_sym_BSLASHGlspl] = ACTIONS(6337), - [anon_sym_BSLASHGLSpl] = ACTIONS(6337), - [anon_sym_BSLASHglsdisp] = ACTIONS(6337), - [anon_sym_BSLASHglslink] = ACTIONS(6337), - [anon_sym_BSLASHglstext] = ACTIONS(6337), - [anon_sym_BSLASHGlstext] = ACTIONS(6337), - [anon_sym_BSLASHGLStext] = ACTIONS(6337), - [anon_sym_BSLASHglsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6337), - [anon_sym_BSLASHglsplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSplural] = ACTIONS(6337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHglsname] = ACTIONS(6337), - [anon_sym_BSLASHGlsname] = ACTIONS(6337), - [anon_sym_BSLASHGLSname] = ACTIONS(6337), - [anon_sym_BSLASHglssymbol] = ACTIONS(6337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6337), - [anon_sym_BSLASHglsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6337), - [anon_sym_BSLASHglsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6337), - [anon_sym_BSLASHglsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6337), - [anon_sym_BSLASHglsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6337), - [anon_sym_BSLASHglsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6337), - [anon_sym_BSLASHnewacronym] = ACTIONS(6337), - [anon_sym_BSLASHacrshort] = ACTIONS(6337), - [anon_sym_BSLASHAcrshort] = ACTIONS(6337), - [anon_sym_BSLASHACRshort] = ACTIONS(6337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6337), - [anon_sym_BSLASHacrlong] = ACTIONS(6337), - [anon_sym_BSLASHAcrlong] = ACTIONS(6337), - [anon_sym_BSLASHACRlong] = ACTIONS(6337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6337), - [anon_sym_BSLASHacrfull] = ACTIONS(6337), - [anon_sym_BSLASHAcrfull] = ACTIONS(6337), - [anon_sym_BSLASHACRfull] = ACTIONS(6337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6337), - [anon_sym_BSLASHacs] = ACTIONS(6337), - [anon_sym_BSLASHAcs] = ACTIONS(6337), - [anon_sym_BSLASHacsp] = ACTIONS(6337), - [anon_sym_BSLASHAcsp] = ACTIONS(6337), - [anon_sym_BSLASHacl] = ACTIONS(6337), - [anon_sym_BSLASHAcl] = ACTIONS(6337), - [anon_sym_BSLASHaclp] = ACTIONS(6337), - [anon_sym_BSLASHAclp] = ACTIONS(6337), - [anon_sym_BSLASHacf] = ACTIONS(6337), - [anon_sym_BSLASHAcf] = ACTIONS(6337), - [anon_sym_BSLASHacfp] = ACTIONS(6337), - [anon_sym_BSLASHAcfp] = ACTIONS(6337), - [anon_sym_BSLASHac] = ACTIONS(6337), - [anon_sym_BSLASHAc] = ACTIONS(6337), - [anon_sym_BSLASHacp] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6337), - [anon_sym_BSLASHcolor] = ACTIONS(6337), - [anon_sym_BSLASHcolorbox] = ACTIONS(6337), - [anon_sym_BSLASHtextcolor] = ACTIONS(6337), - [anon_sym_BSLASHpagecolor] = ACTIONS(6337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6337), - [anon_sym_BSLASHtext] = ACTIONS(6337), - [anon_sym_BSLASHintertext] = ACTIONS(6337), - [anon_sym_shortintertext] = ACTIONS(6337), - }, - [1889] = { - [sym_command_name] = ACTIONS(6125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6125), - [anon_sym_LPAREN] = ACTIONS(6127), - [anon_sym_RPAREN] = ACTIONS(6127), - [anon_sym_LBRACE] = ACTIONS(6127), - [anon_sym_RBRACE] = ACTIONS(6127), - [anon_sym_BSLASHand] = ACTIONS(6125), - [sym_word] = ACTIONS(6125), - [sym_placeholder] = ACTIONS(6127), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6127), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_LT] = ACTIONS(6125), - [anon_sym_GT] = ACTIONS(6125), - [anon_sym_BANG] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_SQUOTE] = ACTIONS(6125), - [anon_sym__] = ACTIONS(6127), - [anon_sym_CARET] = ACTIONS(6127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6127), - [anon_sym_DOLLAR] = ACTIONS(6125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6127), - [anon_sym_BSLASHtitle] = ACTIONS(6125), - [anon_sym_BSLASHauthor] = ACTIONS(6125), - [anon_sym_BSLASHusepackage] = ACTIONS(6125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6125), - [anon_sym_BSLASHinclude] = ACTIONS(6125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6125), - [anon_sym_BSLASHinput] = ACTIONS(6125), - [anon_sym_BSLASHsubfile] = ACTIONS(6125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6125), - [anon_sym_BSLASHbibliography] = ACTIONS(6125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6125), - [anon_sym_BSLASHincludesvg] = ACTIONS(6125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6125), - [anon_sym_BSLASHimport] = ACTIONS(6125), - [anon_sym_BSLASHsubimport] = ACTIONS(6125), - [anon_sym_BSLASHinputfrom] = ACTIONS(6125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6125), - [anon_sym_BSLASHincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6125), - [anon_sym_BSLASHcaption] = ACTIONS(6125), - [anon_sym_BSLASHcite] = ACTIONS(6125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCite] = ACTIONS(6125), - [anon_sym_BSLASHnocite] = ACTIONS(6125), - [anon_sym_BSLASHcitet] = ACTIONS(6125), - [anon_sym_BSLASHcitep] = ACTIONS(6125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteauthor] = ACTIONS(6125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitetitle] = ACTIONS(6125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteyear] = ACTIONS(6125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6127), - [anon_sym_BSLASHcitedate] = ACTIONS(6125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6127), - [anon_sym_BSLASHciteurl] = ACTIONS(6125), - [anon_sym_BSLASHfullcite] = ACTIONS(6125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6125), - [anon_sym_BSLASHcitealt] = ACTIONS(6125), - [anon_sym_BSLASHcitealp] = ACTIONS(6125), - [anon_sym_BSLASHcitetext] = ACTIONS(6125), - [anon_sym_BSLASHparencite] = ACTIONS(6125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHParencite] = ACTIONS(6125), - [anon_sym_BSLASHfootcite] = ACTIONS(6125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6125), - [anon_sym_BSLASHtextcite] = ACTIONS(6125), - [anon_sym_BSLASHTextcite] = ACTIONS(6125), - [anon_sym_BSLASHsmartcite] = ACTIONS(6125), - [anon_sym_BSLASHSmartcite] = ACTIONS(6125), - [anon_sym_BSLASHsupercite] = ACTIONS(6125), - [anon_sym_BSLASHautocite] = ACTIONS(6125), - [anon_sym_BSLASHAutocite] = ACTIONS(6125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6127), - [anon_sym_BSLASHvolcite] = ACTIONS(6125), - [anon_sym_BSLASHVolcite] = ACTIONS(6125), - [anon_sym_BSLASHpvolcite] = ACTIONS(6125), - [anon_sym_BSLASHPvolcite] = ACTIONS(6125), - [anon_sym_BSLASHfvolcite] = ACTIONS(6125), - [anon_sym_BSLASHftvolcite] = ACTIONS(6125), - [anon_sym_BSLASHsvolcite] = ACTIONS(6125), - [anon_sym_BSLASHSvolcite] = ACTIONS(6125), - [anon_sym_BSLASHtvolcite] = ACTIONS(6125), - [anon_sym_BSLASHTvolcite] = ACTIONS(6125), - [anon_sym_BSLASHavolcite] = ACTIONS(6125), - [anon_sym_BSLASHAvolcite] = ACTIONS(6125), - [anon_sym_BSLASHnotecite] = ACTIONS(6125), - [anon_sym_BSLASHNotecite] = ACTIONS(6125), - [anon_sym_BSLASHpnotecite] = ACTIONS(6125), - [anon_sym_BSLASHPnotecite] = ACTIONS(6125), - [anon_sym_BSLASHfnotecite] = ACTIONS(6125), - [anon_sym_BSLASHlabel] = ACTIONS(6125), - [anon_sym_BSLASHref] = ACTIONS(6125), - [anon_sym_BSLASHeqref] = ACTIONS(6125), - [anon_sym_BSLASHvref] = ACTIONS(6125), - [anon_sym_BSLASHVref] = ACTIONS(6125), - [anon_sym_BSLASHautoref] = ACTIONS(6125), - [anon_sym_BSLASHpageref] = ACTIONS(6125), - [anon_sym_BSLASHcref] = ACTIONS(6125), - [anon_sym_BSLASHCref] = ACTIONS(6125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnameCref] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6125), - [anon_sym_BSLASHlabelcref] = ACTIONS(6125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange] = ACTIONS(6125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHCrefrange] = ACTIONS(6125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6127), - [anon_sym_BSLASHnewlabel] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand] = ACTIONS(6125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6127), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6125), - [anon_sym_BSLASHdef] = ACTIONS(6125), - [anon_sym_BSLASHlet] = ACTIONS(6125), - [anon_sym_BSLASHleft] = ACTIONS(6125), - [anon_sym_BSLASHbig] = ACTIONS(6125), - [anon_sym_BSLASHBig] = ACTIONS(6125), - [anon_sym_BSLASHbigg] = ACTIONS(6125), - [anon_sym_BSLASHBigg] = ACTIONS(6125), - [anon_sym_BSLASHbigl] = ACTIONS(6125), - [anon_sym_BSLASHBigl] = ACTIONS(6125), - [anon_sym_BSLASHbiggl] = ACTIONS(6125), - [anon_sym_BSLASHBiggl] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6125), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6125), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6125), - [anon_sym_BSLASHgls] = ACTIONS(6125), - [anon_sym_BSLASHGls] = ACTIONS(6125), - [anon_sym_BSLASHGLS] = ACTIONS(6125), - [anon_sym_BSLASHglspl] = ACTIONS(6125), - [anon_sym_BSLASHGlspl] = ACTIONS(6125), - [anon_sym_BSLASHGLSpl] = ACTIONS(6125), - [anon_sym_BSLASHglsdisp] = ACTIONS(6125), - [anon_sym_BSLASHglslink] = ACTIONS(6125), - [anon_sym_BSLASHglstext] = ACTIONS(6125), - [anon_sym_BSLASHGlstext] = ACTIONS(6125), - [anon_sym_BSLASHGLStext] = ACTIONS(6125), - [anon_sym_BSLASHglsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6125), - [anon_sym_BSLASHglsplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSplural] = ACTIONS(6125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6125), - [anon_sym_BSLASHglsname] = ACTIONS(6125), - [anon_sym_BSLASHGlsname] = ACTIONS(6125), - [anon_sym_BSLASHGLSname] = ACTIONS(6125), - [anon_sym_BSLASHglssymbol] = ACTIONS(6125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6125), - [anon_sym_BSLASHglsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6125), - [anon_sym_BSLASHglsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6125), - [anon_sym_BSLASHglsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6125), - [anon_sym_BSLASHglsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6125), - [anon_sym_BSLASHglsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6125), - [anon_sym_BSLASHnewacronym] = ACTIONS(6125), - [anon_sym_BSLASHacrshort] = ACTIONS(6125), - [anon_sym_BSLASHAcrshort] = ACTIONS(6125), - [anon_sym_BSLASHACRshort] = ACTIONS(6125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6125), - [anon_sym_BSLASHacrlong] = ACTIONS(6125), - [anon_sym_BSLASHAcrlong] = ACTIONS(6125), - [anon_sym_BSLASHACRlong] = ACTIONS(6125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6125), - [anon_sym_BSLASHacrfull] = ACTIONS(6125), - [anon_sym_BSLASHAcrfull] = ACTIONS(6125), - [anon_sym_BSLASHACRfull] = ACTIONS(6125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6125), - [anon_sym_BSLASHacs] = ACTIONS(6125), - [anon_sym_BSLASHAcs] = ACTIONS(6125), - [anon_sym_BSLASHacsp] = ACTIONS(6125), - [anon_sym_BSLASHAcsp] = ACTIONS(6125), - [anon_sym_BSLASHacl] = ACTIONS(6125), - [anon_sym_BSLASHAcl] = ACTIONS(6125), - [anon_sym_BSLASHaclp] = ACTIONS(6125), - [anon_sym_BSLASHAclp] = ACTIONS(6125), - [anon_sym_BSLASHacf] = ACTIONS(6125), - [anon_sym_BSLASHAcf] = ACTIONS(6125), - [anon_sym_BSLASHacfp] = ACTIONS(6125), - [anon_sym_BSLASHAcfp] = ACTIONS(6125), - [anon_sym_BSLASHac] = ACTIONS(6125), - [anon_sym_BSLASHAc] = ACTIONS(6125), - [anon_sym_BSLASHacp] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6125), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6125), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6127), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6125), - [anon_sym_BSLASHcolor] = ACTIONS(6125), - [anon_sym_BSLASHcolorbox] = ACTIONS(6125), - [anon_sym_BSLASHtextcolor] = ACTIONS(6125), - [anon_sym_BSLASHpagecolor] = ACTIONS(6125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6125), - [anon_sym_BSLASHtext] = ACTIONS(6125), - [anon_sym_BSLASHintertext] = ACTIONS(6125), - [anon_sym_shortintertext] = ACTIONS(6125), - }, - [1890] = { - [sym_command_name] = ACTIONS(6333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6333), - [anon_sym_LPAREN] = ACTIONS(6335), - [anon_sym_RPAREN] = ACTIONS(6335), - [anon_sym_LBRACE] = ACTIONS(6335), - [anon_sym_RBRACE] = ACTIONS(6335), - [anon_sym_BSLASHand] = ACTIONS(6333), - [sym_word] = ACTIONS(6333), - [sym_placeholder] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6335), - [anon_sym_DASH] = ACTIONS(6335), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6333), - [anon_sym_GT] = ACTIONS(6333), - [anon_sym_BANG] = ACTIONS(6333), - [anon_sym_PIPE] = ACTIONS(6333), - [anon_sym_COLON] = ACTIONS(6333), - [anon_sym_SQUOTE] = ACTIONS(6333), - [anon_sym__] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6335), - [anon_sym_DOLLAR] = ACTIONS(6333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6335), - [anon_sym_BSLASHtitle] = ACTIONS(6333), - [anon_sym_BSLASHauthor] = ACTIONS(6333), - [anon_sym_BSLASHusepackage] = ACTIONS(6333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6333), - [anon_sym_BSLASHinclude] = ACTIONS(6333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6333), - [anon_sym_BSLASHinput] = ACTIONS(6333), - [anon_sym_BSLASHsubfile] = ACTIONS(6333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6333), - [anon_sym_BSLASHbibliography] = ACTIONS(6333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6333), - [anon_sym_BSLASHincludesvg] = ACTIONS(6333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6333), - [anon_sym_BSLASHimport] = ACTIONS(6333), - [anon_sym_BSLASHsubimport] = ACTIONS(6333), - [anon_sym_BSLASHinputfrom] = ACTIONS(6333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6333), - [anon_sym_BSLASHincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHcaption] = ACTIONS(6333), - [anon_sym_BSLASHcite] = ACTIONS(6333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCite] = ACTIONS(6333), - [anon_sym_BSLASHnocite] = ACTIONS(6333), - [anon_sym_BSLASHcitet] = ACTIONS(6333), - [anon_sym_BSLASHcitep] = ACTIONS(6333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteauthor] = ACTIONS(6333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitetitle] = ACTIONS(6333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteyear] = ACTIONS(6333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitedate] = ACTIONS(6333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteurl] = ACTIONS(6333), - [anon_sym_BSLASHfullcite] = ACTIONS(6333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6333), - [anon_sym_BSLASHcitealt] = ACTIONS(6333), - [anon_sym_BSLASHcitealp] = ACTIONS(6333), - [anon_sym_BSLASHcitetext] = ACTIONS(6333), - [anon_sym_BSLASHparencite] = ACTIONS(6333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHParencite] = ACTIONS(6333), - [anon_sym_BSLASHfootcite] = ACTIONS(6333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6333), - [anon_sym_BSLASHtextcite] = ACTIONS(6333), - [anon_sym_BSLASHTextcite] = ACTIONS(6333), - [anon_sym_BSLASHsmartcite] = ACTIONS(6333), - [anon_sym_BSLASHSmartcite] = ACTIONS(6333), - [anon_sym_BSLASHsupercite] = ACTIONS(6333), - [anon_sym_BSLASHautocite] = ACTIONS(6333), - [anon_sym_BSLASHAutocite] = ACTIONS(6333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHvolcite] = ACTIONS(6333), - [anon_sym_BSLASHVolcite] = ACTIONS(6333), - [anon_sym_BSLASHpvolcite] = ACTIONS(6333), - [anon_sym_BSLASHPvolcite] = ACTIONS(6333), - [anon_sym_BSLASHfvolcite] = ACTIONS(6333), - [anon_sym_BSLASHftvolcite] = ACTIONS(6333), - [anon_sym_BSLASHsvolcite] = ACTIONS(6333), - [anon_sym_BSLASHSvolcite] = ACTIONS(6333), - [anon_sym_BSLASHtvolcite] = ACTIONS(6333), - [anon_sym_BSLASHTvolcite] = ACTIONS(6333), - [anon_sym_BSLASHavolcite] = ACTIONS(6333), - [anon_sym_BSLASHAvolcite] = ACTIONS(6333), - [anon_sym_BSLASHnotecite] = ACTIONS(6333), - [anon_sym_BSLASHNotecite] = ACTIONS(6333), - [anon_sym_BSLASHpnotecite] = ACTIONS(6333), - [anon_sym_BSLASHPnotecite] = ACTIONS(6333), - [anon_sym_BSLASHfnotecite] = ACTIONS(6333), - [anon_sym_BSLASHlabel] = ACTIONS(6333), - [anon_sym_BSLASHref] = ACTIONS(6333), - [anon_sym_BSLASHeqref] = ACTIONS(6333), - [anon_sym_BSLASHvref] = ACTIONS(6333), - [anon_sym_BSLASHVref] = ACTIONS(6333), - [anon_sym_BSLASHautoref] = ACTIONS(6333), - [anon_sym_BSLASHpageref] = ACTIONS(6333), - [anon_sym_BSLASHcref] = ACTIONS(6333), - [anon_sym_BSLASHCref] = ACTIONS(6333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnameCref] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHlabelcref] = ACTIONS(6333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCrefrange] = ACTIONS(6333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnewlabel] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6335), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHdef] = ACTIONS(6333), - [anon_sym_BSLASHlet] = ACTIONS(6333), - [anon_sym_BSLASHleft] = ACTIONS(6333), - [anon_sym_BSLASHbig] = ACTIONS(6333), - [anon_sym_BSLASHBig] = ACTIONS(6333), - [anon_sym_BSLASHbigg] = ACTIONS(6333), - [anon_sym_BSLASHBigg] = ACTIONS(6333), - [anon_sym_BSLASHbigl] = ACTIONS(6333), - [anon_sym_BSLASHBigl] = ACTIONS(6333), - [anon_sym_BSLASHbiggl] = ACTIONS(6333), - [anon_sym_BSLASHBiggl] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6333), - [anon_sym_BSLASHgls] = ACTIONS(6333), - [anon_sym_BSLASHGls] = ACTIONS(6333), - [anon_sym_BSLASHGLS] = ACTIONS(6333), - [anon_sym_BSLASHglspl] = ACTIONS(6333), - [anon_sym_BSLASHGlspl] = ACTIONS(6333), - [anon_sym_BSLASHGLSpl] = ACTIONS(6333), - [anon_sym_BSLASHglsdisp] = ACTIONS(6333), - [anon_sym_BSLASHglslink] = ACTIONS(6333), - [anon_sym_BSLASHglstext] = ACTIONS(6333), - [anon_sym_BSLASHGlstext] = ACTIONS(6333), - [anon_sym_BSLASHGLStext] = ACTIONS(6333), - [anon_sym_BSLASHglsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6333), - [anon_sym_BSLASHglsplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSplural] = ACTIONS(6333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHglsname] = ACTIONS(6333), - [anon_sym_BSLASHGlsname] = ACTIONS(6333), - [anon_sym_BSLASHGLSname] = ACTIONS(6333), - [anon_sym_BSLASHglssymbol] = ACTIONS(6333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6333), - [anon_sym_BSLASHglsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6333), - [anon_sym_BSLASHglsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6333), - [anon_sym_BSLASHglsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6333), - [anon_sym_BSLASHglsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6333), - [anon_sym_BSLASHglsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6333), - [anon_sym_BSLASHnewacronym] = ACTIONS(6333), - [anon_sym_BSLASHacrshort] = ACTIONS(6333), - [anon_sym_BSLASHAcrshort] = ACTIONS(6333), - [anon_sym_BSLASHACRshort] = ACTIONS(6333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6333), - [anon_sym_BSLASHacrlong] = ACTIONS(6333), - [anon_sym_BSLASHAcrlong] = ACTIONS(6333), - [anon_sym_BSLASHACRlong] = ACTIONS(6333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6333), - [anon_sym_BSLASHacrfull] = ACTIONS(6333), - [anon_sym_BSLASHAcrfull] = ACTIONS(6333), - [anon_sym_BSLASHACRfull] = ACTIONS(6333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6333), - [anon_sym_BSLASHacs] = ACTIONS(6333), - [anon_sym_BSLASHAcs] = ACTIONS(6333), - [anon_sym_BSLASHacsp] = ACTIONS(6333), - [anon_sym_BSLASHAcsp] = ACTIONS(6333), - [anon_sym_BSLASHacl] = ACTIONS(6333), - [anon_sym_BSLASHAcl] = ACTIONS(6333), - [anon_sym_BSLASHaclp] = ACTIONS(6333), - [anon_sym_BSLASHAclp] = ACTIONS(6333), - [anon_sym_BSLASHacf] = ACTIONS(6333), - [anon_sym_BSLASHAcf] = ACTIONS(6333), - [anon_sym_BSLASHacfp] = ACTIONS(6333), - [anon_sym_BSLASHAcfp] = ACTIONS(6333), - [anon_sym_BSLASHac] = ACTIONS(6333), - [anon_sym_BSLASHAc] = ACTIONS(6333), - [anon_sym_BSLASHacp] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6333), - [anon_sym_BSLASHcolor] = ACTIONS(6333), - [anon_sym_BSLASHcolorbox] = ACTIONS(6333), - [anon_sym_BSLASHtextcolor] = ACTIONS(6333), - [anon_sym_BSLASHpagecolor] = ACTIONS(6333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6333), - [anon_sym_BSLASHtext] = ACTIONS(6333), - [anon_sym_BSLASHintertext] = ACTIONS(6333), - [anon_sym_shortintertext] = ACTIONS(6333), - }, - [1891] = { - [sym_command_name] = ACTIONS(6329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6329), - [anon_sym_LPAREN] = ACTIONS(6331), - [anon_sym_RPAREN] = ACTIONS(6331), - [anon_sym_LBRACE] = ACTIONS(6331), - [anon_sym_RBRACE] = ACTIONS(6331), - [anon_sym_BSLASHand] = ACTIONS(6329), - [sym_word] = ACTIONS(6329), - [sym_placeholder] = ACTIONS(6331), - [anon_sym_PLUS] = ACTIONS(6331), - [anon_sym_DASH] = ACTIONS(6331), - [anon_sym_STAR] = ACTIONS(6331), - [anon_sym_SLASH] = ACTIONS(6331), - [anon_sym_LT] = ACTIONS(6329), - [anon_sym_GT] = ACTIONS(6329), - [anon_sym_BANG] = ACTIONS(6329), - [anon_sym_PIPE] = ACTIONS(6329), - [anon_sym_COLON] = ACTIONS(6329), - [anon_sym_SQUOTE] = ACTIONS(6329), - [anon_sym__] = ACTIONS(6331), - [anon_sym_CARET] = ACTIONS(6331), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6331), - [anon_sym_DOLLAR] = ACTIONS(6329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6331), - [anon_sym_BSLASHtitle] = ACTIONS(6329), - [anon_sym_BSLASHauthor] = ACTIONS(6329), - [anon_sym_BSLASHusepackage] = ACTIONS(6329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6329), - [anon_sym_BSLASHinclude] = ACTIONS(6329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6329), - [anon_sym_BSLASHinput] = ACTIONS(6329), - [anon_sym_BSLASHsubfile] = ACTIONS(6329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6329), - [anon_sym_BSLASHbibliography] = ACTIONS(6329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6329), - [anon_sym_BSLASHincludesvg] = ACTIONS(6329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6329), - [anon_sym_BSLASHimport] = ACTIONS(6329), - [anon_sym_BSLASHsubimport] = ACTIONS(6329), - [anon_sym_BSLASHinputfrom] = ACTIONS(6329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6329), - [anon_sym_BSLASHincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHcaption] = ACTIONS(6329), - [anon_sym_BSLASHcite] = ACTIONS(6329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCite] = ACTIONS(6329), - [anon_sym_BSLASHnocite] = ACTIONS(6329), - [anon_sym_BSLASHcitet] = ACTIONS(6329), - [anon_sym_BSLASHcitep] = ACTIONS(6329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteauthor] = ACTIONS(6329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitetitle] = ACTIONS(6329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteyear] = ACTIONS(6329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitedate] = ACTIONS(6329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteurl] = ACTIONS(6329), - [anon_sym_BSLASHfullcite] = ACTIONS(6329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6329), - [anon_sym_BSLASHcitealt] = ACTIONS(6329), - [anon_sym_BSLASHcitealp] = ACTIONS(6329), - [anon_sym_BSLASHcitetext] = ACTIONS(6329), - [anon_sym_BSLASHparencite] = ACTIONS(6329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHParencite] = ACTIONS(6329), - [anon_sym_BSLASHfootcite] = ACTIONS(6329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6329), - [anon_sym_BSLASHtextcite] = ACTIONS(6329), - [anon_sym_BSLASHTextcite] = ACTIONS(6329), - [anon_sym_BSLASHsmartcite] = ACTIONS(6329), - [anon_sym_BSLASHSmartcite] = ACTIONS(6329), - [anon_sym_BSLASHsupercite] = ACTIONS(6329), - [anon_sym_BSLASHautocite] = ACTIONS(6329), - [anon_sym_BSLASHAutocite] = ACTIONS(6329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHvolcite] = ACTIONS(6329), - [anon_sym_BSLASHVolcite] = ACTIONS(6329), - [anon_sym_BSLASHpvolcite] = ACTIONS(6329), - [anon_sym_BSLASHPvolcite] = ACTIONS(6329), - [anon_sym_BSLASHfvolcite] = ACTIONS(6329), - [anon_sym_BSLASHftvolcite] = ACTIONS(6329), - [anon_sym_BSLASHsvolcite] = ACTIONS(6329), - [anon_sym_BSLASHSvolcite] = ACTIONS(6329), - [anon_sym_BSLASHtvolcite] = ACTIONS(6329), - [anon_sym_BSLASHTvolcite] = ACTIONS(6329), - [anon_sym_BSLASHavolcite] = ACTIONS(6329), - [anon_sym_BSLASHAvolcite] = ACTIONS(6329), - [anon_sym_BSLASHnotecite] = ACTIONS(6329), - [anon_sym_BSLASHNotecite] = ACTIONS(6329), - [anon_sym_BSLASHpnotecite] = ACTIONS(6329), - [anon_sym_BSLASHPnotecite] = ACTIONS(6329), - [anon_sym_BSLASHfnotecite] = ACTIONS(6329), - [anon_sym_BSLASHlabel] = ACTIONS(6329), - [anon_sym_BSLASHref] = ACTIONS(6329), - [anon_sym_BSLASHeqref] = ACTIONS(6329), - [anon_sym_BSLASHvref] = ACTIONS(6329), - [anon_sym_BSLASHVref] = ACTIONS(6329), - [anon_sym_BSLASHautoref] = ACTIONS(6329), - [anon_sym_BSLASHpageref] = ACTIONS(6329), - [anon_sym_BSLASHcref] = ACTIONS(6329), - [anon_sym_BSLASHCref] = ACTIONS(6329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnameCref] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHlabelcref] = ACTIONS(6329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCrefrange] = ACTIONS(6329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnewlabel] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6331), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHdef] = ACTIONS(6329), - [anon_sym_BSLASHlet] = ACTIONS(6329), - [anon_sym_BSLASHleft] = ACTIONS(6329), - [anon_sym_BSLASHbig] = ACTIONS(6329), - [anon_sym_BSLASHBig] = ACTIONS(6329), - [anon_sym_BSLASHbigg] = ACTIONS(6329), - [anon_sym_BSLASHBigg] = ACTIONS(6329), - [anon_sym_BSLASHbigl] = ACTIONS(6329), - [anon_sym_BSLASHBigl] = ACTIONS(6329), - [anon_sym_BSLASHbiggl] = ACTIONS(6329), - [anon_sym_BSLASHBiggl] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6329), - [anon_sym_BSLASHgls] = ACTIONS(6329), - [anon_sym_BSLASHGls] = ACTIONS(6329), - [anon_sym_BSLASHGLS] = ACTIONS(6329), - [anon_sym_BSLASHglspl] = ACTIONS(6329), - [anon_sym_BSLASHGlspl] = ACTIONS(6329), - [anon_sym_BSLASHGLSpl] = ACTIONS(6329), - [anon_sym_BSLASHglsdisp] = ACTIONS(6329), - [anon_sym_BSLASHglslink] = ACTIONS(6329), - [anon_sym_BSLASHglstext] = ACTIONS(6329), - [anon_sym_BSLASHGlstext] = ACTIONS(6329), - [anon_sym_BSLASHGLStext] = ACTIONS(6329), - [anon_sym_BSLASHglsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6329), - [anon_sym_BSLASHglsplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSplural] = ACTIONS(6329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHglsname] = ACTIONS(6329), - [anon_sym_BSLASHGlsname] = ACTIONS(6329), - [anon_sym_BSLASHGLSname] = ACTIONS(6329), - [anon_sym_BSLASHglssymbol] = ACTIONS(6329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6329), - [anon_sym_BSLASHglsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6329), - [anon_sym_BSLASHglsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6329), - [anon_sym_BSLASHglsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6329), - [anon_sym_BSLASHglsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6329), - [anon_sym_BSLASHglsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6329), - [anon_sym_BSLASHnewacronym] = ACTIONS(6329), - [anon_sym_BSLASHacrshort] = ACTIONS(6329), - [anon_sym_BSLASHAcrshort] = ACTIONS(6329), - [anon_sym_BSLASHACRshort] = ACTIONS(6329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6329), - [anon_sym_BSLASHacrlong] = ACTIONS(6329), - [anon_sym_BSLASHAcrlong] = ACTIONS(6329), - [anon_sym_BSLASHACRlong] = ACTIONS(6329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6329), - [anon_sym_BSLASHacrfull] = ACTIONS(6329), - [anon_sym_BSLASHAcrfull] = ACTIONS(6329), - [anon_sym_BSLASHACRfull] = ACTIONS(6329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6329), - [anon_sym_BSLASHacs] = ACTIONS(6329), - [anon_sym_BSLASHAcs] = ACTIONS(6329), - [anon_sym_BSLASHacsp] = ACTIONS(6329), - [anon_sym_BSLASHAcsp] = ACTIONS(6329), - [anon_sym_BSLASHacl] = ACTIONS(6329), - [anon_sym_BSLASHAcl] = ACTIONS(6329), - [anon_sym_BSLASHaclp] = ACTIONS(6329), - [anon_sym_BSLASHAclp] = ACTIONS(6329), - [anon_sym_BSLASHacf] = ACTIONS(6329), - [anon_sym_BSLASHAcf] = ACTIONS(6329), - [anon_sym_BSLASHacfp] = ACTIONS(6329), - [anon_sym_BSLASHAcfp] = ACTIONS(6329), - [anon_sym_BSLASHac] = ACTIONS(6329), - [anon_sym_BSLASHAc] = ACTIONS(6329), - [anon_sym_BSLASHacp] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6329), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6329), - [anon_sym_BSLASHcolor] = ACTIONS(6329), - [anon_sym_BSLASHcolorbox] = ACTIONS(6329), - [anon_sym_BSLASHtextcolor] = ACTIONS(6329), - [anon_sym_BSLASHpagecolor] = ACTIONS(6329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6329), - [anon_sym_BSLASHtext] = ACTIONS(6329), - [anon_sym_BSLASHintertext] = ACTIONS(6329), - [anon_sym_shortintertext] = ACTIONS(6329), - }, - [1892] = { - [sym_command_name] = ACTIONS(6321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6321), - [anon_sym_LPAREN] = ACTIONS(6323), - [anon_sym_RPAREN] = ACTIONS(6323), - [anon_sym_LBRACE] = ACTIONS(6323), - [anon_sym_RBRACE] = ACTIONS(6323), - [anon_sym_BSLASHand] = ACTIONS(6321), - [sym_word] = ACTIONS(6321), - [sym_placeholder] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6323), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_LT] = ACTIONS(6321), - [anon_sym_GT] = ACTIONS(6321), - [anon_sym_BANG] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_SQUOTE] = ACTIONS(6321), - [anon_sym__] = ACTIONS(6323), - [anon_sym_CARET] = ACTIONS(6323), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6323), - [anon_sym_DOLLAR] = ACTIONS(6321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6323), - [anon_sym_BSLASHtitle] = ACTIONS(6321), - [anon_sym_BSLASHauthor] = ACTIONS(6321), - [anon_sym_BSLASHusepackage] = ACTIONS(6321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6321), - [anon_sym_BSLASHinclude] = ACTIONS(6321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6321), - [anon_sym_BSLASHinput] = ACTIONS(6321), - [anon_sym_BSLASHsubfile] = ACTIONS(6321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6321), - [anon_sym_BSLASHbibliography] = ACTIONS(6321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6321), - [anon_sym_BSLASHincludesvg] = ACTIONS(6321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6321), - [anon_sym_BSLASHimport] = ACTIONS(6321), - [anon_sym_BSLASHsubimport] = ACTIONS(6321), - [anon_sym_BSLASHinputfrom] = ACTIONS(6321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6321), - [anon_sym_BSLASHincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHcaption] = ACTIONS(6321), - [anon_sym_BSLASHcite] = ACTIONS(6321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCite] = ACTIONS(6321), - [anon_sym_BSLASHnocite] = ACTIONS(6321), - [anon_sym_BSLASHcitet] = ACTIONS(6321), - [anon_sym_BSLASHcitep] = ACTIONS(6321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteauthor] = ACTIONS(6321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitetitle] = ACTIONS(6321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteyear] = ACTIONS(6321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitedate] = ACTIONS(6321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteurl] = ACTIONS(6321), - [anon_sym_BSLASHfullcite] = ACTIONS(6321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6321), - [anon_sym_BSLASHcitealt] = ACTIONS(6321), - [anon_sym_BSLASHcitealp] = ACTIONS(6321), - [anon_sym_BSLASHcitetext] = ACTIONS(6321), - [anon_sym_BSLASHparencite] = ACTIONS(6321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHParencite] = ACTIONS(6321), - [anon_sym_BSLASHfootcite] = ACTIONS(6321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6321), - [anon_sym_BSLASHtextcite] = ACTIONS(6321), - [anon_sym_BSLASHTextcite] = ACTIONS(6321), - [anon_sym_BSLASHsmartcite] = ACTIONS(6321), - [anon_sym_BSLASHSmartcite] = ACTIONS(6321), - [anon_sym_BSLASHsupercite] = ACTIONS(6321), - [anon_sym_BSLASHautocite] = ACTIONS(6321), - [anon_sym_BSLASHAutocite] = ACTIONS(6321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHvolcite] = ACTIONS(6321), - [anon_sym_BSLASHVolcite] = ACTIONS(6321), - [anon_sym_BSLASHpvolcite] = ACTIONS(6321), - [anon_sym_BSLASHPvolcite] = ACTIONS(6321), - [anon_sym_BSLASHfvolcite] = ACTIONS(6321), - [anon_sym_BSLASHftvolcite] = ACTIONS(6321), - [anon_sym_BSLASHsvolcite] = ACTIONS(6321), - [anon_sym_BSLASHSvolcite] = ACTIONS(6321), - [anon_sym_BSLASHtvolcite] = ACTIONS(6321), - [anon_sym_BSLASHTvolcite] = ACTIONS(6321), - [anon_sym_BSLASHavolcite] = ACTIONS(6321), - [anon_sym_BSLASHAvolcite] = ACTIONS(6321), - [anon_sym_BSLASHnotecite] = ACTIONS(6321), - [anon_sym_BSLASHNotecite] = ACTIONS(6321), - [anon_sym_BSLASHpnotecite] = ACTIONS(6321), - [anon_sym_BSLASHPnotecite] = ACTIONS(6321), - [anon_sym_BSLASHfnotecite] = ACTIONS(6321), - [anon_sym_BSLASHlabel] = ACTIONS(6321), - [anon_sym_BSLASHref] = ACTIONS(6321), - [anon_sym_BSLASHeqref] = ACTIONS(6321), - [anon_sym_BSLASHvref] = ACTIONS(6321), - [anon_sym_BSLASHVref] = ACTIONS(6321), - [anon_sym_BSLASHautoref] = ACTIONS(6321), - [anon_sym_BSLASHpageref] = ACTIONS(6321), - [anon_sym_BSLASHcref] = ACTIONS(6321), - [anon_sym_BSLASHCref] = ACTIONS(6321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnameCref] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHlabelcref] = ACTIONS(6321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCrefrange] = ACTIONS(6321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnewlabel] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6323), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHdef] = ACTIONS(6321), - [anon_sym_BSLASHlet] = ACTIONS(6321), - [anon_sym_BSLASHleft] = ACTIONS(6321), - [anon_sym_BSLASHbig] = ACTIONS(6321), - [anon_sym_BSLASHBig] = ACTIONS(6321), - [anon_sym_BSLASHbigg] = ACTIONS(6321), - [anon_sym_BSLASHBigg] = ACTIONS(6321), - [anon_sym_BSLASHbigl] = ACTIONS(6321), - [anon_sym_BSLASHBigl] = ACTIONS(6321), - [anon_sym_BSLASHbiggl] = ACTIONS(6321), - [anon_sym_BSLASHBiggl] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6321), - [anon_sym_BSLASHgls] = ACTIONS(6321), - [anon_sym_BSLASHGls] = ACTIONS(6321), - [anon_sym_BSLASHGLS] = ACTIONS(6321), - [anon_sym_BSLASHglspl] = ACTIONS(6321), - [anon_sym_BSLASHGlspl] = ACTIONS(6321), - [anon_sym_BSLASHGLSpl] = ACTIONS(6321), - [anon_sym_BSLASHglsdisp] = ACTIONS(6321), - [anon_sym_BSLASHglslink] = ACTIONS(6321), - [anon_sym_BSLASHglstext] = ACTIONS(6321), - [anon_sym_BSLASHGlstext] = ACTIONS(6321), - [anon_sym_BSLASHGLStext] = ACTIONS(6321), - [anon_sym_BSLASHglsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6321), - [anon_sym_BSLASHglsplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSplural] = ACTIONS(6321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHglsname] = ACTIONS(6321), - [anon_sym_BSLASHGlsname] = ACTIONS(6321), - [anon_sym_BSLASHGLSname] = ACTIONS(6321), - [anon_sym_BSLASHglssymbol] = ACTIONS(6321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6321), - [anon_sym_BSLASHglsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6321), - [anon_sym_BSLASHglsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6321), - [anon_sym_BSLASHglsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6321), - [anon_sym_BSLASHglsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6321), - [anon_sym_BSLASHglsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6321), - [anon_sym_BSLASHnewacronym] = ACTIONS(6321), - [anon_sym_BSLASHacrshort] = ACTIONS(6321), - [anon_sym_BSLASHAcrshort] = ACTIONS(6321), - [anon_sym_BSLASHACRshort] = ACTIONS(6321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6321), - [anon_sym_BSLASHacrlong] = ACTIONS(6321), - [anon_sym_BSLASHAcrlong] = ACTIONS(6321), - [anon_sym_BSLASHACRlong] = ACTIONS(6321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6321), - [anon_sym_BSLASHacrfull] = ACTIONS(6321), - [anon_sym_BSLASHAcrfull] = ACTIONS(6321), - [anon_sym_BSLASHACRfull] = ACTIONS(6321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6321), - [anon_sym_BSLASHacs] = ACTIONS(6321), - [anon_sym_BSLASHAcs] = ACTIONS(6321), - [anon_sym_BSLASHacsp] = ACTIONS(6321), - [anon_sym_BSLASHAcsp] = ACTIONS(6321), - [anon_sym_BSLASHacl] = ACTIONS(6321), - [anon_sym_BSLASHAcl] = ACTIONS(6321), - [anon_sym_BSLASHaclp] = ACTIONS(6321), - [anon_sym_BSLASHAclp] = ACTIONS(6321), - [anon_sym_BSLASHacf] = ACTIONS(6321), - [anon_sym_BSLASHAcf] = ACTIONS(6321), - [anon_sym_BSLASHacfp] = ACTIONS(6321), - [anon_sym_BSLASHAcfp] = ACTIONS(6321), - [anon_sym_BSLASHac] = ACTIONS(6321), - [anon_sym_BSLASHAc] = ACTIONS(6321), - [anon_sym_BSLASHacp] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6321), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6321), - [anon_sym_BSLASHcolor] = ACTIONS(6321), - [anon_sym_BSLASHcolorbox] = ACTIONS(6321), - [anon_sym_BSLASHtextcolor] = ACTIONS(6321), - [anon_sym_BSLASHpagecolor] = ACTIONS(6321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6321), - [anon_sym_BSLASHtext] = ACTIONS(6321), - [anon_sym_BSLASHintertext] = ACTIONS(6321), - [anon_sym_shortintertext] = ACTIONS(6321), - }, - [1893] = { - [sym_command_name] = ACTIONS(6293), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6293), - [anon_sym_LPAREN] = ACTIONS(6295), - [anon_sym_RPAREN] = ACTIONS(6295), - [anon_sym_LBRACE] = ACTIONS(6295), - [anon_sym_RBRACE] = ACTIONS(6295), - [anon_sym_BSLASHand] = ACTIONS(6293), - [sym_word] = ACTIONS(6293), - [sym_placeholder] = ACTIONS(6295), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6295), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_LT] = ACTIONS(6293), - [anon_sym_GT] = ACTIONS(6293), - [anon_sym_BANG] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_SQUOTE] = ACTIONS(6293), - [anon_sym__] = ACTIONS(6295), - [anon_sym_CARET] = ACTIONS(6295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6295), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6295), - [anon_sym_DOLLAR] = ACTIONS(6293), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6295), - [anon_sym_BSLASHtitle] = ACTIONS(6293), - [anon_sym_BSLASHauthor] = ACTIONS(6293), - [anon_sym_BSLASHusepackage] = ACTIONS(6293), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6293), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6293), - [anon_sym_BSLASHinclude] = ACTIONS(6293), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6293), - [anon_sym_BSLASHinput] = ACTIONS(6293), - [anon_sym_BSLASHsubfile] = ACTIONS(6293), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6293), - [anon_sym_BSLASHbibliography] = ACTIONS(6293), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6293), - [anon_sym_BSLASHincludesvg] = ACTIONS(6293), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6293), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6293), - [anon_sym_BSLASHimport] = ACTIONS(6293), - [anon_sym_BSLASHsubimport] = ACTIONS(6293), - [anon_sym_BSLASHinputfrom] = ACTIONS(6293), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6293), - [anon_sym_BSLASHincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHcaption] = ACTIONS(6293), - [anon_sym_BSLASHcite] = ACTIONS(6293), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCite] = ACTIONS(6293), - [anon_sym_BSLASHnocite] = ACTIONS(6293), - [anon_sym_BSLASHcitet] = ACTIONS(6293), - [anon_sym_BSLASHcitep] = ACTIONS(6293), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteauthor] = ACTIONS(6293), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6293), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitetitle] = ACTIONS(6293), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteyear] = ACTIONS(6293), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitedate] = ACTIONS(6293), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteurl] = ACTIONS(6293), - [anon_sym_BSLASHfullcite] = ACTIONS(6293), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6293), - [anon_sym_BSLASHcitealt] = ACTIONS(6293), - [anon_sym_BSLASHcitealp] = ACTIONS(6293), - [anon_sym_BSLASHcitetext] = ACTIONS(6293), - [anon_sym_BSLASHparencite] = ACTIONS(6293), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHParencite] = ACTIONS(6293), - [anon_sym_BSLASHfootcite] = ACTIONS(6293), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6293), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6293), - [anon_sym_BSLASHtextcite] = ACTIONS(6293), - [anon_sym_BSLASHTextcite] = ACTIONS(6293), - [anon_sym_BSLASHsmartcite] = ACTIONS(6293), - [anon_sym_BSLASHSmartcite] = ACTIONS(6293), - [anon_sym_BSLASHsupercite] = ACTIONS(6293), - [anon_sym_BSLASHautocite] = ACTIONS(6293), - [anon_sym_BSLASHAutocite] = ACTIONS(6293), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHvolcite] = ACTIONS(6293), - [anon_sym_BSLASHVolcite] = ACTIONS(6293), - [anon_sym_BSLASHpvolcite] = ACTIONS(6293), - [anon_sym_BSLASHPvolcite] = ACTIONS(6293), - [anon_sym_BSLASHfvolcite] = ACTIONS(6293), - [anon_sym_BSLASHftvolcite] = ACTIONS(6293), - [anon_sym_BSLASHsvolcite] = ACTIONS(6293), - [anon_sym_BSLASHSvolcite] = ACTIONS(6293), - [anon_sym_BSLASHtvolcite] = ACTIONS(6293), - [anon_sym_BSLASHTvolcite] = ACTIONS(6293), - [anon_sym_BSLASHavolcite] = ACTIONS(6293), - [anon_sym_BSLASHAvolcite] = ACTIONS(6293), - [anon_sym_BSLASHnotecite] = ACTIONS(6293), - [anon_sym_BSLASHNotecite] = ACTIONS(6293), - [anon_sym_BSLASHpnotecite] = ACTIONS(6293), - [anon_sym_BSLASHPnotecite] = ACTIONS(6293), - [anon_sym_BSLASHfnotecite] = ACTIONS(6293), - [anon_sym_BSLASHlabel] = ACTIONS(6293), - [anon_sym_BSLASHref] = ACTIONS(6293), - [anon_sym_BSLASHeqref] = ACTIONS(6293), - [anon_sym_BSLASHvref] = ACTIONS(6293), - [anon_sym_BSLASHVref] = ACTIONS(6293), - [anon_sym_BSLASHautoref] = ACTIONS(6293), - [anon_sym_BSLASHpageref] = ACTIONS(6293), - [anon_sym_BSLASHcref] = ACTIONS(6293), - [anon_sym_BSLASHCref] = ACTIONS(6293), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnameCref] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHlabelcref] = ACTIONS(6293), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCrefrange] = ACTIONS(6293), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnewlabel] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6293), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6293), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6295), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHdef] = ACTIONS(6293), - [anon_sym_BSLASHlet] = ACTIONS(6293), - [anon_sym_BSLASHleft] = ACTIONS(6293), - [anon_sym_BSLASHbig] = ACTIONS(6293), - [anon_sym_BSLASHBig] = ACTIONS(6293), - [anon_sym_BSLASHbigg] = ACTIONS(6293), - [anon_sym_BSLASHBigg] = ACTIONS(6293), - [anon_sym_BSLASHbigl] = ACTIONS(6293), - [anon_sym_BSLASHBigl] = ACTIONS(6293), - [anon_sym_BSLASHbiggl] = ACTIONS(6293), - [anon_sym_BSLASHBiggl] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6293), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6293), - [anon_sym_BSLASHgls] = ACTIONS(6293), - [anon_sym_BSLASHGls] = ACTIONS(6293), - [anon_sym_BSLASHGLS] = ACTIONS(6293), - [anon_sym_BSLASHglspl] = ACTIONS(6293), - [anon_sym_BSLASHGlspl] = ACTIONS(6293), - [anon_sym_BSLASHGLSpl] = ACTIONS(6293), - [anon_sym_BSLASHglsdisp] = ACTIONS(6293), - [anon_sym_BSLASHglslink] = ACTIONS(6293), - [anon_sym_BSLASHglstext] = ACTIONS(6293), - [anon_sym_BSLASHGlstext] = ACTIONS(6293), - [anon_sym_BSLASHGLStext] = ACTIONS(6293), - [anon_sym_BSLASHglsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6293), - [anon_sym_BSLASHglsplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSplural] = ACTIONS(6293), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHglsname] = ACTIONS(6293), - [anon_sym_BSLASHGlsname] = ACTIONS(6293), - [anon_sym_BSLASHGLSname] = ACTIONS(6293), - [anon_sym_BSLASHglssymbol] = ACTIONS(6293), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6293), - [anon_sym_BSLASHglsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6293), - [anon_sym_BSLASHglsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6293), - [anon_sym_BSLASHglsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6293), - [anon_sym_BSLASHglsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6293), - [anon_sym_BSLASHglsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6293), - [anon_sym_BSLASHnewacronym] = ACTIONS(6293), - [anon_sym_BSLASHacrshort] = ACTIONS(6293), - [anon_sym_BSLASHAcrshort] = ACTIONS(6293), - [anon_sym_BSLASHACRshort] = ACTIONS(6293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6293), - [anon_sym_BSLASHacrlong] = ACTIONS(6293), - [anon_sym_BSLASHAcrlong] = ACTIONS(6293), - [anon_sym_BSLASHACRlong] = ACTIONS(6293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6293), - [anon_sym_BSLASHacrfull] = ACTIONS(6293), - [anon_sym_BSLASHAcrfull] = ACTIONS(6293), - [anon_sym_BSLASHACRfull] = ACTIONS(6293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6293), - [anon_sym_BSLASHacs] = ACTIONS(6293), - [anon_sym_BSLASHAcs] = ACTIONS(6293), - [anon_sym_BSLASHacsp] = ACTIONS(6293), - [anon_sym_BSLASHAcsp] = ACTIONS(6293), - [anon_sym_BSLASHacl] = ACTIONS(6293), - [anon_sym_BSLASHAcl] = ACTIONS(6293), - [anon_sym_BSLASHaclp] = ACTIONS(6293), - [anon_sym_BSLASHAclp] = ACTIONS(6293), - [anon_sym_BSLASHacf] = ACTIONS(6293), - [anon_sym_BSLASHAcf] = ACTIONS(6293), - [anon_sym_BSLASHacfp] = ACTIONS(6293), - [anon_sym_BSLASHAcfp] = ACTIONS(6293), - [anon_sym_BSLASHac] = ACTIONS(6293), - [anon_sym_BSLASHAc] = ACTIONS(6293), - [anon_sym_BSLASHacp] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6293), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6293), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6293), - [anon_sym_BSLASHcolor] = ACTIONS(6293), - [anon_sym_BSLASHcolorbox] = ACTIONS(6293), - [anon_sym_BSLASHtextcolor] = ACTIONS(6293), - [anon_sym_BSLASHpagecolor] = ACTIONS(6293), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6293), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6293), - [anon_sym_BSLASHtext] = ACTIONS(6293), - [anon_sym_BSLASHintertext] = ACTIONS(6293), - [anon_sym_shortintertext] = ACTIONS(6293), - }, - [1894] = { - [sym_command_name] = ACTIONS(6289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6289), - [anon_sym_LPAREN] = ACTIONS(6291), - [anon_sym_RPAREN] = ACTIONS(6291), - [anon_sym_LBRACE] = ACTIONS(6291), - [anon_sym_RBRACE] = ACTIONS(6291), - [anon_sym_BSLASHand] = ACTIONS(6289), - [sym_word] = ACTIONS(6289), - [sym_placeholder] = ACTIONS(6291), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6291), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_LT] = ACTIONS(6289), - [anon_sym_GT] = ACTIONS(6289), - [anon_sym_BANG] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_SQUOTE] = ACTIONS(6289), - [anon_sym__] = ACTIONS(6291), - [anon_sym_CARET] = ACTIONS(6291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6291), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6291), - [anon_sym_DOLLAR] = ACTIONS(6289), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6291), - [anon_sym_BSLASHtitle] = ACTIONS(6289), - [anon_sym_BSLASHauthor] = ACTIONS(6289), - [anon_sym_BSLASHusepackage] = ACTIONS(6289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), - [anon_sym_BSLASHinclude] = ACTIONS(6289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), - [anon_sym_BSLASHinput] = ACTIONS(6289), - [anon_sym_BSLASHsubfile] = ACTIONS(6289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), - [anon_sym_BSLASHbibliography] = ACTIONS(6289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), - [anon_sym_BSLASHincludesvg] = ACTIONS(6289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), - [anon_sym_BSLASHimport] = ACTIONS(6289), - [anon_sym_BSLASHsubimport] = ACTIONS(6289), - [anon_sym_BSLASHinputfrom] = ACTIONS(6289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), - [anon_sym_BSLASHincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHcaption] = ACTIONS(6289), - [anon_sym_BSLASHcite] = ACTIONS(6289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCite] = ACTIONS(6289), - [anon_sym_BSLASHnocite] = ACTIONS(6289), - [anon_sym_BSLASHcitet] = ACTIONS(6289), - [anon_sym_BSLASHcitep] = ACTIONS(6289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteauthor] = ACTIONS(6289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitetitle] = ACTIONS(6289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteyear] = ACTIONS(6289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitedate] = ACTIONS(6289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteurl] = ACTIONS(6289), - [anon_sym_BSLASHfullcite] = ACTIONS(6289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), - [anon_sym_BSLASHcitealt] = ACTIONS(6289), - [anon_sym_BSLASHcitealp] = ACTIONS(6289), - [anon_sym_BSLASHcitetext] = ACTIONS(6289), - [anon_sym_BSLASHparencite] = ACTIONS(6289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHParencite] = ACTIONS(6289), - [anon_sym_BSLASHfootcite] = ACTIONS(6289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), - [anon_sym_BSLASHtextcite] = ACTIONS(6289), - [anon_sym_BSLASHTextcite] = ACTIONS(6289), - [anon_sym_BSLASHsmartcite] = ACTIONS(6289), - [anon_sym_BSLASHSmartcite] = ACTIONS(6289), - [anon_sym_BSLASHsupercite] = ACTIONS(6289), - [anon_sym_BSLASHautocite] = ACTIONS(6289), - [anon_sym_BSLASHAutocite] = ACTIONS(6289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHvolcite] = ACTIONS(6289), - [anon_sym_BSLASHVolcite] = ACTIONS(6289), - [anon_sym_BSLASHpvolcite] = ACTIONS(6289), - [anon_sym_BSLASHPvolcite] = ACTIONS(6289), - [anon_sym_BSLASHfvolcite] = ACTIONS(6289), - [anon_sym_BSLASHftvolcite] = ACTIONS(6289), - [anon_sym_BSLASHsvolcite] = ACTIONS(6289), - [anon_sym_BSLASHSvolcite] = ACTIONS(6289), - [anon_sym_BSLASHtvolcite] = ACTIONS(6289), - [anon_sym_BSLASHTvolcite] = ACTIONS(6289), - [anon_sym_BSLASHavolcite] = ACTIONS(6289), - [anon_sym_BSLASHAvolcite] = ACTIONS(6289), - [anon_sym_BSLASHnotecite] = ACTIONS(6289), - [anon_sym_BSLASHNotecite] = ACTIONS(6289), - [anon_sym_BSLASHpnotecite] = ACTIONS(6289), - [anon_sym_BSLASHPnotecite] = ACTIONS(6289), - [anon_sym_BSLASHfnotecite] = ACTIONS(6289), - [anon_sym_BSLASHlabel] = ACTIONS(6289), - [anon_sym_BSLASHref] = ACTIONS(6289), - [anon_sym_BSLASHeqref] = ACTIONS(6289), - [anon_sym_BSLASHvref] = ACTIONS(6289), - [anon_sym_BSLASHVref] = ACTIONS(6289), - [anon_sym_BSLASHautoref] = ACTIONS(6289), - [anon_sym_BSLASHpageref] = ACTIONS(6289), - [anon_sym_BSLASHcref] = ACTIONS(6289), - [anon_sym_BSLASHCref] = ACTIONS(6289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnameCref] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHlabelcref] = ACTIONS(6289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCrefrange] = ACTIONS(6289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnewlabel] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHdef] = ACTIONS(6289), - [anon_sym_BSLASHlet] = ACTIONS(6289), - [anon_sym_BSLASHleft] = ACTIONS(6289), - [anon_sym_BSLASHbig] = ACTIONS(6289), - [anon_sym_BSLASHBig] = ACTIONS(6289), - [anon_sym_BSLASHbigg] = ACTIONS(6289), - [anon_sym_BSLASHBigg] = ACTIONS(6289), - [anon_sym_BSLASHbigl] = ACTIONS(6289), - [anon_sym_BSLASHBigl] = ACTIONS(6289), - [anon_sym_BSLASHbiggl] = ACTIONS(6289), - [anon_sym_BSLASHBiggl] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), - [anon_sym_BSLASHgls] = ACTIONS(6289), - [anon_sym_BSLASHGls] = ACTIONS(6289), - [anon_sym_BSLASHGLS] = ACTIONS(6289), - [anon_sym_BSLASHglspl] = ACTIONS(6289), - [anon_sym_BSLASHGlspl] = ACTIONS(6289), - [anon_sym_BSLASHGLSpl] = ACTIONS(6289), - [anon_sym_BSLASHglsdisp] = ACTIONS(6289), - [anon_sym_BSLASHglslink] = ACTIONS(6289), - [anon_sym_BSLASHglstext] = ACTIONS(6289), - [anon_sym_BSLASHGlstext] = ACTIONS(6289), - [anon_sym_BSLASHGLStext] = ACTIONS(6289), - [anon_sym_BSLASHglsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), - [anon_sym_BSLASHglsplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSplural] = ACTIONS(6289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHglsname] = ACTIONS(6289), - [anon_sym_BSLASHGlsname] = ACTIONS(6289), - [anon_sym_BSLASHGLSname] = ACTIONS(6289), - [anon_sym_BSLASHglssymbol] = ACTIONS(6289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), - [anon_sym_BSLASHglsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), - [anon_sym_BSLASHglsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), - [anon_sym_BSLASHglsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), - [anon_sym_BSLASHglsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), - [anon_sym_BSLASHglsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), - [anon_sym_BSLASHnewacronym] = ACTIONS(6289), - [anon_sym_BSLASHacrshort] = ACTIONS(6289), - [anon_sym_BSLASHAcrshort] = ACTIONS(6289), - [anon_sym_BSLASHACRshort] = ACTIONS(6289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), - [anon_sym_BSLASHacrlong] = ACTIONS(6289), - [anon_sym_BSLASHAcrlong] = ACTIONS(6289), - [anon_sym_BSLASHACRlong] = ACTIONS(6289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), - [anon_sym_BSLASHacrfull] = ACTIONS(6289), - [anon_sym_BSLASHAcrfull] = ACTIONS(6289), - [anon_sym_BSLASHACRfull] = ACTIONS(6289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), - [anon_sym_BSLASHacs] = ACTIONS(6289), - [anon_sym_BSLASHAcs] = ACTIONS(6289), - [anon_sym_BSLASHacsp] = ACTIONS(6289), - [anon_sym_BSLASHAcsp] = ACTIONS(6289), - [anon_sym_BSLASHacl] = ACTIONS(6289), - [anon_sym_BSLASHAcl] = ACTIONS(6289), - [anon_sym_BSLASHaclp] = ACTIONS(6289), - [anon_sym_BSLASHAclp] = ACTIONS(6289), - [anon_sym_BSLASHacf] = ACTIONS(6289), - [anon_sym_BSLASHAcf] = ACTIONS(6289), - [anon_sym_BSLASHacfp] = ACTIONS(6289), - [anon_sym_BSLASHAcfp] = ACTIONS(6289), - [anon_sym_BSLASHac] = ACTIONS(6289), - [anon_sym_BSLASHAc] = ACTIONS(6289), - [anon_sym_BSLASHacp] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), - [anon_sym_BSLASHcolor] = ACTIONS(6289), - [anon_sym_BSLASHcolorbox] = ACTIONS(6289), - [anon_sym_BSLASHtextcolor] = ACTIONS(6289), - [anon_sym_BSLASHpagecolor] = ACTIONS(6289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), - [anon_sym_BSLASHtext] = ACTIONS(6289), - [anon_sym_BSLASHintertext] = ACTIONS(6289), - [anon_sym_shortintertext] = ACTIONS(6289), - }, - [1895] = { - [sym_command_name] = ACTIONS(6273), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6273), - [anon_sym_LPAREN] = ACTIONS(6275), - [anon_sym_RPAREN] = ACTIONS(6275), - [anon_sym_LBRACE] = ACTIONS(6275), - [anon_sym_RBRACE] = ACTIONS(6275), - [anon_sym_BSLASHand] = ACTIONS(6273), - [sym_word] = ACTIONS(6273), - [sym_placeholder] = ACTIONS(6275), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_SQUOTE] = ACTIONS(6273), - [anon_sym__] = ACTIONS(6275), - [anon_sym_CARET] = ACTIONS(6275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6275), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6275), - [anon_sym_DOLLAR] = ACTIONS(6273), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6275), - [anon_sym_BSLASHtitle] = ACTIONS(6273), - [anon_sym_BSLASHauthor] = ACTIONS(6273), - [anon_sym_BSLASHusepackage] = ACTIONS(6273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6273), - [anon_sym_BSLASHinclude] = ACTIONS(6273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6273), - [anon_sym_BSLASHinput] = ACTIONS(6273), - [anon_sym_BSLASHsubfile] = ACTIONS(6273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6273), - [anon_sym_BSLASHbibliography] = ACTIONS(6273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6273), - [anon_sym_BSLASHincludesvg] = ACTIONS(6273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6273), - [anon_sym_BSLASHimport] = ACTIONS(6273), - [anon_sym_BSLASHsubimport] = ACTIONS(6273), - [anon_sym_BSLASHinputfrom] = ACTIONS(6273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6273), - [anon_sym_BSLASHincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHcaption] = ACTIONS(6273), - [anon_sym_BSLASHcite] = ACTIONS(6273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCite] = ACTIONS(6273), - [anon_sym_BSLASHnocite] = ACTIONS(6273), - [anon_sym_BSLASHcitet] = ACTIONS(6273), - [anon_sym_BSLASHcitep] = ACTIONS(6273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteauthor] = ACTIONS(6273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitetitle] = ACTIONS(6273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteyear] = ACTIONS(6273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitedate] = ACTIONS(6273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteurl] = ACTIONS(6273), - [anon_sym_BSLASHfullcite] = ACTIONS(6273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6273), - [anon_sym_BSLASHcitealt] = ACTIONS(6273), - [anon_sym_BSLASHcitealp] = ACTIONS(6273), - [anon_sym_BSLASHcitetext] = ACTIONS(6273), - [anon_sym_BSLASHparencite] = ACTIONS(6273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHParencite] = ACTIONS(6273), - [anon_sym_BSLASHfootcite] = ACTIONS(6273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6273), - [anon_sym_BSLASHtextcite] = ACTIONS(6273), - [anon_sym_BSLASHTextcite] = ACTIONS(6273), - [anon_sym_BSLASHsmartcite] = ACTIONS(6273), - [anon_sym_BSLASHSmartcite] = ACTIONS(6273), - [anon_sym_BSLASHsupercite] = ACTIONS(6273), - [anon_sym_BSLASHautocite] = ACTIONS(6273), - [anon_sym_BSLASHAutocite] = ACTIONS(6273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHvolcite] = ACTIONS(6273), - [anon_sym_BSLASHVolcite] = ACTIONS(6273), - [anon_sym_BSLASHpvolcite] = ACTIONS(6273), - [anon_sym_BSLASHPvolcite] = ACTIONS(6273), - [anon_sym_BSLASHfvolcite] = ACTIONS(6273), - [anon_sym_BSLASHftvolcite] = ACTIONS(6273), - [anon_sym_BSLASHsvolcite] = ACTIONS(6273), - [anon_sym_BSLASHSvolcite] = ACTIONS(6273), - [anon_sym_BSLASHtvolcite] = ACTIONS(6273), - [anon_sym_BSLASHTvolcite] = ACTIONS(6273), - [anon_sym_BSLASHavolcite] = ACTIONS(6273), - [anon_sym_BSLASHAvolcite] = ACTIONS(6273), - [anon_sym_BSLASHnotecite] = ACTIONS(6273), - [anon_sym_BSLASHNotecite] = ACTIONS(6273), - [anon_sym_BSLASHpnotecite] = ACTIONS(6273), - [anon_sym_BSLASHPnotecite] = ACTIONS(6273), - [anon_sym_BSLASHfnotecite] = ACTIONS(6273), - [anon_sym_BSLASHlabel] = ACTIONS(6273), - [anon_sym_BSLASHref] = ACTIONS(6273), - [anon_sym_BSLASHeqref] = ACTIONS(6273), - [anon_sym_BSLASHvref] = ACTIONS(6273), - [anon_sym_BSLASHVref] = ACTIONS(6273), - [anon_sym_BSLASHautoref] = ACTIONS(6273), - [anon_sym_BSLASHpageref] = ACTIONS(6273), - [anon_sym_BSLASHcref] = ACTIONS(6273), - [anon_sym_BSLASHCref] = ACTIONS(6273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnameCref] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHlabelcref] = ACTIONS(6273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCrefrange] = ACTIONS(6273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnewlabel] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6275), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHdef] = ACTIONS(6273), - [anon_sym_BSLASHlet] = ACTIONS(6273), - [anon_sym_BSLASHleft] = ACTIONS(6273), - [anon_sym_BSLASHbig] = ACTIONS(6273), - [anon_sym_BSLASHBig] = ACTIONS(6273), - [anon_sym_BSLASHbigg] = ACTIONS(6273), - [anon_sym_BSLASHBigg] = ACTIONS(6273), - [anon_sym_BSLASHbigl] = ACTIONS(6273), - [anon_sym_BSLASHBigl] = ACTIONS(6273), - [anon_sym_BSLASHbiggl] = ACTIONS(6273), - [anon_sym_BSLASHBiggl] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6273), - [anon_sym_BSLASHgls] = ACTIONS(6273), - [anon_sym_BSLASHGls] = ACTIONS(6273), - [anon_sym_BSLASHGLS] = ACTIONS(6273), - [anon_sym_BSLASHglspl] = ACTIONS(6273), - [anon_sym_BSLASHGlspl] = ACTIONS(6273), - [anon_sym_BSLASHGLSpl] = ACTIONS(6273), - [anon_sym_BSLASHglsdisp] = ACTIONS(6273), - [anon_sym_BSLASHglslink] = ACTIONS(6273), - [anon_sym_BSLASHglstext] = ACTIONS(6273), - [anon_sym_BSLASHGlstext] = ACTIONS(6273), - [anon_sym_BSLASHGLStext] = ACTIONS(6273), - [anon_sym_BSLASHglsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6273), - [anon_sym_BSLASHglsplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSplural] = ACTIONS(6273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHglsname] = ACTIONS(6273), - [anon_sym_BSLASHGlsname] = ACTIONS(6273), - [anon_sym_BSLASHGLSname] = ACTIONS(6273), - [anon_sym_BSLASHglssymbol] = ACTIONS(6273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6273), - [anon_sym_BSLASHglsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6273), - [anon_sym_BSLASHglsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6273), - [anon_sym_BSLASHglsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6273), - [anon_sym_BSLASHglsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6273), - [anon_sym_BSLASHglsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6273), - [anon_sym_BSLASHnewacronym] = ACTIONS(6273), - [anon_sym_BSLASHacrshort] = ACTIONS(6273), - [anon_sym_BSLASHAcrshort] = ACTIONS(6273), - [anon_sym_BSLASHACRshort] = ACTIONS(6273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6273), - [anon_sym_BSLASHacrlong] = ACTIONS(6273), - [anon_sym_BSLASHAcrlong] = ACTIONS(6273), - [anon_sym_BSLASHACRlong] = ACTIONS(6273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6273), - [anon_sym_BSLASHacrfull] = ACTIONS(6273), - [anon_sym_BSLASHAcrfull] = ACTIONS(6273), - [anon_sym_BSLASHACRfull] = ACTIONS(6273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6273), - [anon_sym_BSLASHacs] = ACTIONS(6273), - [anon_sym_BSLASHAcs] = ACTIONS(6273), - [anon_sym_BSLASHacsp] = ACTIONS(6273), - [anon_sym_BSLASHAcsp] = ACTIONS(6273), - [anon_sym_BSLASHacl] = ACTIONS(6273), - [anon_sym_BSLASHAcl] = ACTIONS(6273), - [anon_sym_BSLASHaclp] = ACTIONS(6273), - [anon_sym_BSLASHAclp] = ACTIONS(6273), - [anon_sym_BSLASHacf] = ACTIONS(6273), - [anon_sym_BSLASHAcf] = ACTIONS(6273), - [anon_sym_BSLASHacfp] = ACTIONS(6273), - [anon_sym_BSLASHAcfp] = ACTIONS(6273), - [anon_sym_BSLASHac] = ACTIONS(6273), - [anon_sym_BSLASHAc] = ACTIONS(6273), - [anon_sym_BSLASHacp] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6273), - [anon_sym_BSLASHcolor] = ACTIONS(6273), - [anon_sym_BSLASHcolorbox] = ACTIONS(6273), - [anon_sym_BSLASHtextcolor] = ACTIONS(6273), - [anon_sym_BSLASHpagecolor] = ACTIONS(6273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6273), - [anon_sym_BSLASHtext] = ACTIONS(6273), - [anon_sym_BSLASHintertext] = ACTIONS(6273), - [anon_sym_shortintertext] = ACTIONS(6273), - }, - [1896] = { - [sym_command_name] = ACTIONS(6029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6029), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_LBRACE] = ACTIONS(6031), - [anon_sym_RBRACE] = ACTIONS(6031), - [anon_sym_BSLASHand] = ACTIONS(6029), - [sym_word] = ACTIONS(6029), - [sym_placeholder] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6031), - [anon_sym_DASH] = ACTIONS(6031), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6029), - [anon_sym_GT] = ACTIONS(6029), - [anon_sym_BANG] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_COLON] = ACTIONS(6029), - [anon_sym_SQUOTE] = ACTIONS(6029), - [anon_sym__] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6031), - [anon_sym_BSLASHtitle] = ACTIONS(6029), - [anon_sym_BSLASHauthor] = ACTIONS(6029), - [anon_sym_BSLASHusepackage] = ACTIONS(6029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), - [anon_sym_BSLASHinclude] = ACTIONS(6029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), - [anon_sym_BSLASHinput] = ACTIONS(6029), - [anon_sym_BSLASHsubfile] = ACTIONS(6029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), - [anon_sym_BSLASHbibliography] = ACTIONS(6029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), - [anon_sym_BSLASHincludesvg] = ACTIONS(6029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), - [anon_sym_BSLASHimport] = ACTIONS(6029), - [anon_sym_BSLASHsubimport] = ACTIONS(6029), - [anon_sym_BSLASHinputfrom] = ACTIONS(6029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), - [anon_sym_BSLASHincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHcaption] = ACTIONS(6029), - [anon_sym_BSLASHcite] = ACTIONS(6029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCite] = ACTIONS(6029), - [anon_sym_BSLASHnocite] = ACTIONS(6029), - [anon_sym_BSLASHcitet] = ACTIONS(6029), - [anon_sym_BSLASHcitep] = ACTIONS(6029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteauthor] = ACTIONS(6029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitetitle] = ACTIONS(6029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteyear] = ACTIONS(6029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitedate] = ACTIONS(6029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteurl] = ACTIONS(6029), - [anon_sym_BSLASHfullcite] = ACTIONS(6029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), - [anon_sym_BSLASHcitealt] = ACTIONS(6029), - [anon_sym_BSLASHcitealp] = ACTIONS(6029), - [anon_sym_BSLASHcitetext] = ACTIONS(6029), - [anon_sym_BSLASHparencite] = ACTIONS(6029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHParencite] = ACTIONS(6029), - [anon_sym_BSLASHfootcite] = ACTIONS(6029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), - [anon_sym_BSLASHtextcite] = ACTIONS(6029), - [anon_sym_BSLASHTextcite] = ACTIONS(6029), - [anon_sym_BSLASHsmartcite] = ACTIONS(6029), - [anon_sym_BSLASHSmartcite] = ACTIONS(6029), - [anon_sym_BSLASHsupercite] = ACTIONS(6029), - [anon_sym_BSLASHautocite] = ACTIONS(6029), - [anon_sym_BSLASHAutocite] = ACTIONS(6029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHvolcite] = ACTIONS(6029), - [anon_sym_BSLASHVolcite] = ACTIONS(6029), - [anon_sym_BSLASHpvolcite] = ACTIONS(6029), - [anon_sym_BSLASHPvolcite] = ACTIONS(6029), - [anon_sym_BSLASHfvolcite] = ACTIONS(6029), - [anon_sym_BSLASHftvolcite] = ACTIONS(6029), - [anon_sym_BSLASHsvolcite] = ACTIONS(6029), - [anon_sym_BSLASHSvolcite] = ACTIONS(6029), - [anon_sym_BSLASHtvolcite] = ACTIONS(6029), - [anon_sym_BSLASHTvolcite] = ACTIONS(6029), - [anon_sym_BSLASHavolcite] = ACTIONS(6029), - [anon_sym_BSLASHAvolcite] = ACTIONS(6029), - [anon_sym_BSLASHnotecite] = ACTIONS(6029), - [anon_sym_BSLASHNotecite] = ACTIONS(6029), - [anon_sym_BSLASHpnotecite] = ACTIONS(6029), - [anon_sym_BSLASHPnotecite] = ACTIONS(6029), - [anon_sym_BSLASHfnotecite] = ACTIONS(6029), - [anon_sym_BSLASHlabel] = ACTIONS(6029), - [anon_sym_BSLASHref] = ACTIONS(6029), - [anon_sym_BSLASHeqref] = ACTIONS(6029), - [anon_sym_BSLASHvref] = ACTIONS(6029), - [anon_sym_BSLASHVref] = ACTIONS(6029), - [anon_sym_BSLASHautoref] = ACTIONS(6029), - [anon_sym_BSLASHpageref] = ACTIONS(6029), - [anon_sym_BSLASHcref] = ACTIONS(6029), - [anon_sym_BSLASHCref] = ACTIONS(6029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnameCref] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHlabelcref] = ACTIONS(6029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCrefrange] = ACTIONS(6029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnewlabel] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHdef] = ACTIONS(6029), - [anon_sym_BSLASHlet] = ACTIONS(6029), - [anon_sym_BSLASHleft] = ACTIONS(6029), - [anon_sym_BSLASHbig] = ACTIONS(6029), - [anon_sym_BSLASHBig] = ACTIONS(6029), - [anon_sym_BSLASHbigg] = ACTIONS(6029), - [anon_sym_BSLASHBigg] = ACTIONS(6029), - [anon_sym_BSLASHbigl] = ACTIONS(6029), - [anon_sym_BSLASHBigl] = ACTIONS(6029), - [anon_sym_BSLASHbiggl] = ACTIONS(6029), - [anon_sym_BSLASHBiggl] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), - [anon_sym_BSLASHgls] = ACTIONS(6029), - [anon_sym_BSLASHGls] = ACTIONS(6029), - [anon_sym_BSLASHGLS] = ACTIONS(6029), - [anon_sym_BSLASHglspl] = ACTIONS(6029), - [anon_sym_BSLASHGlspl] = ACTIONS(6029), - [anon_sym_BSLASHGLSpl] = ACTIONS(6029), - [anon_sym_BSLASHglsdisp] = ACTIONS(6029), - [anon_sym_BSLASHglslink] = ACTIONS(6029), - [anon_sym_BSLASHglstext] = ACTIONS(6029), - [anon_sym_BSLASHGlstext] = ACTIONS(6029), - [anon_sym_BSLASHGLStext] = ACTIONS(6029), - [anon_sym_BSLASHglsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), - [anon_sym_BSLASHglsplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSplural] = ACTIONS(6029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHglsname] = ACTIONS(6029), - [anon_sym_BSLASHGlsname] = ACTIONS(6029), - [anon_sym_BSLASHGLSname] = ACTIONS(6029), - [anon_sym_BSLASHglssymbol] = ACTIONS(6029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), - [anon_sym_BSLASHglsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), - [anon_sym_BSLASHglsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), - [anon_sym_BSLASHglsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), - [anon_sym_BSLASHglsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), - [anon_sym_BSLASHglsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), - [anon_sym_BSLASHnewacronym] = ACTIONS(6029), - [anon_sym_BSLASHacrshort] = ACTIONS(6029), - [anon_sym_BSLASHAcrshort] = ACTIONS(6029), - [anon_sym_BSLASHACRshort] = ACTIONS(6029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), - [anon_sym_BSLASHacrlong] = ACTIONS(6029), - [anon_sym_BSLASHAcrlong] = ACTIONS(6029), - [anon_sym_BSLASHACRlong] = ACTIONS(6029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), - [anon_sym_BSLASHacrfull] = ACTIONS(6029), - [anon_sym_BSLASHAcrfull] = ACTIONS(6029), - [anon_sym_BSLASHACRfull] = ACTIONS(6029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), - [anon_sym_BSLASHacs] = ACTIONS(6029), - [anon_sym_BSLASHAcs] = ACTIONS(6029), - [anon_sym_BSLASHacsp] = ACTIONS(6029), - [anon_sym_BSLASHAcsp] = ACTIONS(6029), - [anon_sym_BSLASHacl] = ACTIONS(6029), - [anon_sym_BSLASHAcl] = ACTIONS(6029), - [anon_sym_BSLASHaclp] = ACTIONS(6029), - [anon_sym_BSLASHAclp] = ACTIONS(6029), - [anon_sym_BSLASHacf] = ACTIONS(6029), - [anon_sym_BSLASHAcf] = ACTIONS(6029), - [anon_sym_BSLASHacfp] = ACTIONS(6029), - [anon_sym_BSLASHAcfp] = ACTIONS(6029), - [anon_sym_BSLASHac] = ACTIONS(6029), - [anon_sym_BSLASHAc] = ACTIONS(6029), - [anon_sym_BSLASHacp] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), - [anon_sym_BSLASHcolor] = ACTIONS(6029), - [anon_sym_BSLASHcolorbox] = ACTIONS(6029), - [anon_sym_BSLASHtextcolor] = ACTIONS(6029), - [anon_sym_BSLASHpagecolor] = ACTIONS(6029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), - [anon_sym_BSLASHtext] = ACTIONS(6029), - [anon_sym_BSLASHintertext] = ACTIONS(6029), - [anon_sym_shortintertext] = ACTIONS(6029), - }, - [1897] = { - [sym_command_name] = ACTIONS(6241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6241), - [anon_sym_LPAREN] = ACTIONS(6243), - [anon_sym_RPAREN] = ACTIONS(6243), - [anon_sym_LBRACE] = ACTIONS(6243), - [anon_sym_RBRACE] = ACTIONS(6243), - [anon_sym_BSLASHand] = ACTIONS(6241), - [sym_word] = ACTIONS(6241), - [sym_placeholder] = ACTIONS(6243), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6243), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(6241), - [anon_sym_GT] = ACTIONS(6241), - [anon_sym_BANG] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_SQUOTE] = ACTIONS(6241), - [anon_sym__] = ACTIONS(6243), - [anon_sym_CARET] = ACTIONS(6243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6243), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6243), - [anon_sym_DOLLAR] = ACTIONS(6241), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6243), - [anon_sym_BSLASHtitle] = ACTIONS(6241), - [anon_sym_BSLASHauthor] = ACTIONS(6241), - [anon_sym_BSLASHusepackage] = ACTIONS(6241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), - [anon_sym_BSLASHinclude] = ACTIONS(6241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), - [anon_sym_BSLASHinput] = ACTIONS(6241), - [anon_sym_BSLASHsubfile] = ACTIONS(6241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), - [anon_sym_BSLASHbibliography] = ACTIONS(6241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), - [anon_sym_BSLASHincludesvg] = ACTIONS(6241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), - [anon_sym_BSLASHimport] = ACTIONS(6241), - [anon_sym_BSLASHsubimport] = ACTIONS(6241), - [anon_sym_BSLASHinputfrom] = ACTIONS(6241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), - [anon_sym_BSLASHincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHcaption] = ACTIONS(6241), - [anon_sym_BSLASHcite] = ACTIONS(6241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCite] = ACTIONS(6241), - [anon_sym_BSLASHnocite] = ACTIONS(6241), - [anon_sym_BSLASHcitet] = ACTIONS(6241), - [anon_sym_BSLASHcitep] = ACTIONS(6241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteauthor] = ACTIONS(6241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitetitle] = ACTIONS(6241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteyear] = ACTIONS(6241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitedate] = ACTIONS(6241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteurl] = ACTIONS(6241), - [anon_sym_BSLASHfullcite] = ACTIONS(6241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), - [anon_sym_BSLASHcitealt] = ACTIONS(6241), - [anon_sym_BSLASHcitealp] = ACTIONS(6241), - [anon_sym_BSLASHcitetext] = ACTIONS(6241), - [anon_sym_BSLASHparencite] = ACTIONS(6241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHParencite] = ACTIONS(6241), - [anon_sym_BSLASHfootcite] = ACTIONS(6241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), - [anon_sym_BSLASHtextcite] = ACTIONS(6241), - [anon_sym_BSLASHTextcite] = ACTIONS(6241), - [anon_sym_BSLASHsmartcite] = ACTIONS(6241), - [anon_sym_BSLASHSmartcite] = ACTIONS(6241), - [anon_sym_BSLASHsupercite] = ACTIONS(6241), - [anon_sym_BSLASHautocite] = ACTIONS(6241), - [anon_sym_BSLASHAutocite] = ACTIONS(6241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHvolcite] = ACTIONS(6241), - [anon_sym_BSLASHVolcite] = ACTIONS(6241), - [anon_sym_BSLASHpvolcite] = ACTIONS(6241), - [anon_sym_BSLASHPvolcite] = ACTIONS(6241), - [anon_sym_BSLASHfvolcite] = ACTIONS(6241), - [anon_sym_BSLASHftvolcite] = ACTIONS(6241), - [anon_sym_BSLASHsvolcite] = ACTIONS(6241), - [anon_sym_BSLASHSvolcite] = ACTIONS(6241), - [anon_sym_BSLASHtvolcite] = ACTIONS(6241), - [anon_sym_BSLASHTvolcite] = ACTIONS(6241), - [anon_sym_BSLASHavolcite] = ACTIONS(6241), - [anon_sym_BSLASHAvolcite] = ACTIONS(6241), - [anon_sym_BSLASHnotecite] = ACTIONS(6241), - [anon_sym_BSLASHNotecite] = ACTIONS(6241), - [anon_sym_BSLASHpnotecite] = ACTIONS(6241), - [anon_sym_BSLASHPnotecite] = ACTIONS(6241), - [anon_sym_BSLASHfnotecite] = ACTIONS(6241), - [anon_sym_BSLASHlabel] = ACTIONS(6241), - [anon_sym_BSLASHref] = ACTIONS(6241), - [anon_sym_BSLASHeqref] = ACTIONS(6241), - [anon_sym_BSLASHvref] = ACTIONS(6241), - [anon_sym_BSLASHVref] = ACTIONS(6241), - [anon_sym_BSLASHautoref] = ACTIONS(6241), - [anon_sym_BSLASHpageref] = ACTIONS(6241), - [anon_sym_BSLASHcref] = ACTIONS(6241), - [anon_sym_BSLASHCref] = ACTIONS(6241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnameCref] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHlabelcref] = ACTIONS(6241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCrefrange] = ACTIONS(6241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnewlabel] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHdef] = ACTIONS(6241), - [anon_sym_BSLASHlet] = ACTIONS(6241), - [anon_sym_BSLASHleft] = ACTIONS(6241), - [anon_sym_BSLASHbig] = ACTIONS(6241), - [anon_sym_BSLASHBig] = ACTIONS(6241), - [anon_sym_BSLASHbigg] = ACTIONS(6241), - [anon_sym_BSLASHBigg] = ACTIONS(6241), - [anon_sym_BSLASHbigl] = ACTIONS(6241), - [anon_sym_BSLASHBigl] = ACTIONS(6241), - [anon_sym_BSLASHbiggl] = ACTIONS(6241), - [anon_sym_BSLASHBiggl] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), - [anon_sym_BSLASHgls] = ACTIONS(6241), - [anon_sym_BSLASHGls] = ACTIONS(6241), - [anon_sym_BSLASHGLS] = ACTIONS(6241), - [anon_sym_BSLASHglspl] = ACTIONS(6241), - [anon_sym_BSLASHGlspl] = ACTIONS(6241), - [anon_sym_BSLASHGLSpl] = ACTIONS(6241), - [anon_sym_BSLASHglsdisp] = ACTIONS(6241), - [anon_sym_BSLASHglslink] = ACTIONS(6241), - [anon_sym_BSLASHglstext] = ACTIONS(6241), - [anon_sym_BSLASHGlstext] = ACTIONS(6241), - [anon_sym_BSLASHGLStext] = ACTIONS(6241), - [anon_sym_BSLASHglsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), - [anon_sym_BSLASHglsplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSplural] = ACTIONS(6241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHglsname] = ACTIONS(6241), - [anon_sym_BSLASHGlsname] = ACTIONS(6241), - [anon_sym_BSLASHGLSname] = ACTIONS(6241), - [anon_sym_BSLASHglssymbol] = ACTIONS(6241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), - [anon_sym_BSLASHglsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), - [anon_sym_BSLASHglsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), - [anon_sym_BSLASHglsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), - [anon_sym_BSLASHglsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), - [anon_sym_BSLASHglsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), - [anon_sym_BSLASHnewacronym] = ACTIONS(6241), - [anon_sym_BSLASHacrshort] = ACTIONS(6241), - [anon_sym_BSLASHAcrshort] = ACTIONS(6241), - [anon_sym_BSLASHACRshort] = ACTIONS(6241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), - [anon_sym_BSLASHacrlong] = ACTIONS(6241), - [anon_sym_BSLASHAcrlong] = ACTIONS(6241), - [anon_sym_BSLASHACRlong] = ACTIONS(6241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), - [anon_sym_BSLASHacrfull] = ACTIONS(6241), - [anon_sym_BSLASHAcrfull] = ACTIONS(6241), - [anon_sym_BSLASHACRfull] = ACTIONS(6241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), - [anon_sym_BSLASHacs] = ACTIONS(6241), - [anon_sym_BSLASHAcs] = ACTIONS(6241), - [anon_sym_BSLASHacsp] = ACTIONS(6241), - [anon_sym_BSLASHAcsp] = ACTIONS(6241), - [anon_sym_BSLASHacl] = ACTIONS(6241), - [anon_sym_BSLASHAcl] = ACTIONS(6241), - [anon_sym_BSLASHaclp] = ACTIONS(6241), - [anon_sym_BSLASHAclp] = ACTIONS(6241), - [anon_sym_BSLASHacf] = ACTIONS(6241), - [anon_sym_BSLASHAcf] = ACTIONS(6241), - [anon_sym_BSLASHacfp] = ACTIONS(6241), - [anon_sym_BSLASHAcfp] = ACTIONS(6241), - [anon_sym_BSLASHac] = ACTIONS(6241), - [anon_sym_BSLASHAc] = ACTIONS(6241), - [anon_sym_BSLASHacp] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), - [anon_sym_BSLASHcolor] = ACTIONS(6241), - [anon_sym_BSLASHcolorbox] = ACTIONS(6241), - [anon_sym_BSLASHtextcolor] = ACTIONS(6241), - [anon_sym_BSLASHpagecolor] = ACTIONS(6241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), - [anon_sym_BSLASHtext] = ACTIONS(6241), - [anon_sym_BSLASHintertext] = ACTIONS(6241), - [anon_sym_shortintertext] = ACTIONS(6241), - }, - [1898] = { - [sym_command_name] = ACTIONS(6237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6237), - [anon_sym_LPAREN] = ACTIONS(6239), - [anon_sym_RPAREN] = ACTIONS(6239), - [anon_sym_LBRACE] = ACTIONS(6239), - [anon_sym_RBRACE] = ACTIONS(6239), - [anon_sym_BSLASHand] = ACTIONS(6237), - [sym_word] = ACTIONS(6237), - [sym_placeholder] = ACTIONS(6239), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6239), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_BANG] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_SQUOTE] = ACTIONS(6237), - [anon_sym__] = ACTIONS(6239), - [anon_sym_CARET] = ACTIONS(6239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6239), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6239), - [anon_sym_DOLLAR] = ACTIONS(6237), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6239), - [anon_sym_BSLASHtitle] = ACTIONS(6237), - [anon_sym_BSLASHauthor] = ACTIONS(6237), - [anon_sym_BSLASHusepackage] = ACTIONS(6237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6237), - [anon_sym_BSLASHinclude] = ACTIONS(6237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6237), - [anon_sym_BSLASHinput] = ACTIONS(6237), - [anon_sym_BSLASHsubfile] = ACTIONS(6237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6237), - [anon_sym_BSLASHbibliography] = ACTIONS(6237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6237), - [anon_sym_BSLASHincludesvg] = ACTIONS(6237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6237), - [anon_sym_BSLASHimport] = ACTIONS(6237), - [anon_sym_BSLASHsubimport] = ACTIONS(6237), - [anon_sym_BSLASHinputfrom] = ACTIONS(6237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6237), - [anon_sym_BSLASHincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHcaption] = ACTIONS(6237), - [anon_sym_BSLASHcite] = ACTIONS(6237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCite] = ACTIONS(6237), - [anon_sym_BSLASHnocite] = ACTIONS(6237), - [anon_sym_BSLASHcitet] = ACTIONS(6237), - [anon_sym_BSLASHcitep] = ACTIONS(6237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteauthor] = ACTIONS(6237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitetitle] = ACTIONS(6237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteyear] = ACTIONS(6237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitedate] = ACTIONS(6237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteurl] = ACTIONS(6237), - [anon_sym_BSLASHfullcite] = ACTIONS(6237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6237), - [anon_sym_BSLASHcitealt] = ACTIONS(6237), - [anon_sym_BSLASHcitealp] = ACTIONS(6237), - [anon_sym_BSLASHcitetext] = ACTIONS(6237), - [anon_sym_BSLASHparencite] = ACTIONS(6237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHParencite] = ACTIONS(6237), - [anon_sym_BSLASHfootcite] = ACTIONS(6237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6237), - [anon_sym_BSLASHtextcite] = ACTIONS(6237), - [anon_sym_BSLASHTextcite] = ACTIONS(6237), - [anon_sym_BSLASHsmartcite] = ACTIONS(6237), - [anon_sym_BSLASHSmartcite] = ACTIONS(6237), - [anon_sym_BSLASHsupercite] = ACTIONS(6237), - [anon_sym_BSLASHautocite] = ACTIONS(6237), - [anon_sym_BSLASHAutocite] = ACTIONS(6237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHvolcite] = ACTIONS(6237), - [anon_sym_BSLASHVolcite] = ACTIONS(6237), - [anon_sym_BSLASHpvolcite] = ACTIONS(6237), - [anon_sym_BSLASHPvolcite] = ACTIONS(6237), - [anon_sym_BSLASHfvolcite] = ACTIONS(6237), - [anon_sym_BSLASHftvolcite] = ACTIONS(6237), - [anon_sym_BSLASHsvolcite] = ACTIONS(6237), - [anon_sym_BSLASHSvolcite] = ACTIONS(6237), - [anon_sym_BSLASHtvolcite] = ACTIONS(6237), - [anon_sym_BSLASHTvolcite] = ACTIONS(6237), - [anon_sym_BSLASHavolcite] = ACTIONS(6237), - [anon_sym_BSLASHAvolcite] = ACTIONS(6237), - [anon_sym_BSLASHnotecite] = ACTIONS(6237), - [anon_sym_BSLASHNotecite] = ACTIONS(6237), - [anon_sym_BSLASHpnotecite] = ACTIONS(6237), - [anon_sym_BSLASHPnotecite] = ACTIONS(6237), - [anon_sym_BSLASHfnotecite] = ACTIONS(6237), - [anon_sym_BSLASHlabel] = ACTIONS(6237), - [anon_sym_BSLASHref] = ACTIONS(6237), - [anon_sym_BSLASHeqref] = ACTIONS(6237), - [anon_sym_BSLASHvref] = ACTIONS(6237), - [anon_sym_BSLASHVref] = ACTIONS(6237), - [anon_sym_BSLASHautoref] = ACTIONS(6237), - [anon_sym_BSLASHpageref] = ACTIONS(6237), - [anon_sym_BSLASHcref] = ACTIONS(6237), - [anon_sym_BSLASHCref] = ACTIONS(6237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnameCref] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHlabelcref] = ACTIONS(6237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCrefrange] = ACTIONS(6237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnewlabel] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHdef] = ACTIONS(6237), - [anon_sym_BSLASHlet] = ACTIONS(6237), - [anon_sym_BSLASHleft] = ACTIONS(6237), - [anon_sym_BSLASHbig] = ACTIONS(6237), - [anon_sym_BSLASHBig] = ACTIONS(6237), - [anon_sym_BSLASHbigg] = ACTIONS(6237), - [anon_sym_BSLASHBigg] = ACTIONS(6237), - [anon_sym_BSLASHbigl] = ACTIONS(6237), - [anon_sym_BSLASHBigl] = ACTIONS(6237), - [anon_sym_BSLASHbiggl] = ACTIONS(6237), - [anon_sym_BSLASHBiggl] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6237), - [anon_sym_BSLASHgls] = ACTIONS(6237), - [anon_sym_BSLASHGls] = ACTIONS(6237), - [anon_sym_BSLASHGLS] = ACTIONS(6237), - [anon_sym_BSLASHglspl] = ACTIONS(6237), - [anon_sym_BSLASHGlspl] = ACTIONS(6237), - [anon_sym_BSLASHGLSpl] = ACTIONS(6237), - [anon_sym_BSLASHglsdisp] = ACTIONS(6237), - [anon_sym_BSLASHglslink] = ACTIONS(6237), - [anon_sym_BSLASHglstext] = ACTIONS(6237), - [anon_sym_BSLASHGlstext] = ACTIONS(6237), - [anon_sym_BSLASHGLStext] = ACTIONS(6237), - [anon_sym_BSLASHglsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6237), - [anon_sym_BSLASHglsplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSplural] = ACTIONS(6237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHglsname] = ACTIONS(6237), - [anon_sym_BSLASHGlsname] = ACTIONS(6237), - [anon_sym_BSLASHGLSname] = ACTIONS(6237), - [anon_sym_BSLASHglssymbol] = ACTIONS(6237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6237), - [anon_sym_BSLASHglsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6237), - [anon_sym_BSLASHglsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6237), - [anon_sym_BSLASHglsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6237), - [anon_sym_BSLASHglsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6237), - [anon_sym_BSLASHglsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6237), - [anon_sym_BSLASHnewacronym] = ACTIONS(6237), - [anon_sym_BSLASHacrshort] = ACTIONS(6237), - [anon_sym_BSLASHAcrshort] = ACTIONS(6237), - [anon_sym_BSLASHACRshort] = ACTIONS(6237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6237), - [anon_sym_BSLASHacrlong] = ACTIONS(6237), - [anon_sym_BSLASHAcrlong] = ACTIONS(6237), - [anon_sym_BSLASHACRlong] = ACTIONS(6237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6237), - [anon_sym_BSLASHacrfull] = ACTIONS(6237), - [anon_sym_BSLASHAcrfull] = ACTIONS(6237), - [anon_sym_BSLASHACRfull] = ACTIONS(6237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6237), - [anon_sym_BSLASHacs] = ACTIONS(6237), - [anon_sym_BSLASHAcs] = ACTIONS(6237), - [anon_sym_BSLASHacsp] = ACTIONS(6237), - [anon_sym_BSLASHAcsp] = ACTIONS(6237), - [anon_sym_BSLASHacl] = ACTIONS(6237), - [anon_sym_BSLASHAcl] = ACTIONS(6237), - [anon_sym_BSLASHaclp] = ACTIONS(6237), - [anon_sym_BSLASHAclp] = ACTIONS(6237), - [anon_sym_BSLASHacf] = ACTIONS(6237), - [anon_sym_BSLASHAcf] = ACTIONS(6237), - [anon_sym_BSLASHacfp] = ACTIONS(6237), - [anon_sym_BSLASHAcfp] = ACTIONS(6237), - [anon_sym_BSLASHac] = ACTIONS(6237), - [anon_sym_BSLASHAc] = ACTIONS(6237), - [anon_sym_BSLASHacp] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6237), - [anon_sym_BSLASHcolor] = ACTIONS(6237), - [anon_sym_BSLASHcolorbox] = ACTIONS(6237), - [anon_sym_BSLASHtextcolor] = ACTIONS(6237), - [anon_sym_BSLASHpagecolor] = ACTIONS(6237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6237), - [anon_sym_BSLASHtext] = ACTIONS(6237), - [anon_sym_BSLASHintertext] = ACTIONS(6237), - [anon_sym_shortintertext] = ACTIONS(6237), - }, - [1899] = { - [sym_command_name] = ACTIONS(6025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6025), - [anon_sym_LPAREN] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_LBRACE] = ACTIONS(6027), - [anon_sym_RBRACE] = ACTIONS(6027), - [anon_sym_BSLASHand] = ACTIONS(6025), - [sym_word] = ACTIONS(6025), - [sym_placeholder] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6025), - [anon_sym_GT] = ACTIONS(6025), - [anon_sym_BANG] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_SQUOTE] = ACTIONS(6025), - [anon_sym__] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6027), - [anon_sym_BSLASHtitle] = ACTIONS(6025), - [anon_sym_BSLASHauthor] = ACTIONS(6025), - [anon_sym_BSLASHusepackage] = ACTIONS(6025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), - [anon_sym_BSLASHinclude] = ACTIONS(6025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), - [anon_sym_BSLASHinput] = ACTIONS(6025), - [anon_sym_BSLASHsubfile] = ACTIONS(6025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), - [anon_sym_BSLASHbibliography] = ACTIONS(6025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), - [anon_sym_BSLASHincludesvg] = ACTIONS(6025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), - [anon_sym_BSLASHimport] = ACTIONS(6025), - [anon_sym_BSLASHsubimport] = ACTIONS(6025), - [anon_sym_BSLASHinputfrom] = ACTIONS(6025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), - [anon_sym_BSLASHincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHcaption] = ACTIONS(6025), - [anon_sym_BSLASHcite] = ACTIONS(6025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCite] = ACTIONS(6025), - [anon_sym_BSLASHnocite] = ACTIONS(6025), - [anon_sym_BSLASHcitet] = ACTIONS(6025), - [anon_sym_BSLASHcitep] = ACTIONS(6025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteauthor] = ACTIONS(6025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitetitle] = ACTIONS(6025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteyear] = ACTIONS(6025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitedate] = ACTIONS(6025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteurl] = ACTIONS(6025), - [anon_sym_BSLASHfullcite] = ACTIONS(6025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), - [anon_sym_BSLASHcitealt] = ACTIONS(6025), - [anon_sym_BSLASHcitealp] = ACTIONS(6025), - [anon_sym_BSLASHcitetext] = ACTIONS(6025), - [anon_sym_BSLASHparencite] = ACTIONS(6025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHParencite] = ACTIONS(6025), - [anon_sym_BSLASHfootcite] = ACTIONS(6025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), - [anon_sym_BSLASHtextcite] = ACTIONS(6025), - [anon_sym_BSLASHTextcite] = ACTIONS(6025), - [anon_sym_BSLASHsmartcite] = ACTIONS(6025), - [anon_sym_BSLASHSmartcite] = ACTIONS(6025), - [anon_sym_BSLASHsupercite] = ACTIONS(6025), - [anon_sym_BSLASHautocite] = ACTIONS(6025), - [anon_sym_BSLASHAutocite] = ACTIONS(6025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHvolcite] = ACTIONS(6025), - [anon_sym_BSLASHVolcite] = ACTIONS(6025), - [anon_sym_BSLASHpvolcite] = ACTIONS(6025), - [anon_sym_BSLASHPvolcite] = ACTIONS(6025), - [anon_sym_BSLASHfvolcite] = ACTIONS(6025), - [anon_sym_BSLASHftvolcite] = ACTIONS(6025), - [anon_sym_BSLASHsvolcite] = ACTIONS(6025), - [anon_sym_BSLASHSvolcite] = ACTIONS(6025), - [anon_sym_BSLASHtvolcite] = ACTIONS(6025), - [anon_sym_BSLASHTvolcite] = ACTIONS(6025), - [anon_sym_BSLASHavolcite] = ACTIONS(6025), - [anon_sym_BSLASHAvolcite] = ACTIONS(6025), - [anon_sym_BSLASHnotecite] = ACTIONS(6025), - [anon_sym_BSLASHNotecite] = ACTIONS(6025), - [anon_sym_BSLASHpnotecite] = ACTIONS(6025), - [anon_sym_BSLASHPnotecite] = ACTIONS(6025), - [anon_sym_BSLASHfnotecite] = ACTIONS(6025), - [anon_sym_BSLASHlabel] = ACTIONS(6025), - [anon_sym_BSLASHref] = ACTIONS(6025), - [anon_sym_BSLASHeqref] = ACTIONS(6025), - [anon_sym_BSLASHvref] = ACTIONS(6025), - [anon_sym_BSLASHVref] = ACTIONS(6025), - [anon_sym_BSLASHautoref] = ACTIONS(6025), - [anon_sym_BSLASHpageref] = ACTIONS(6025), - [anon_sym_BSLASHcref] = ACTIONS(6025), - [anon_sym_BSLASHCref] = ACTIONS(6025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnameCref] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHlabelcref] = ACTIONS(6025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCrefrange] = ACTIONS(6025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnewlabel] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHdef] = ACTIONS(6025), - [anon_sym_BSLASHlet] = ACTIONS(6025), - [anon_sym_BSLASHleft] = ACTIONS(6025), - [anon_sym_BSLASHbig] = ACTIONS(6025), - [anon_sym_BSLASHBig] = ACTIONS(6025), - [anon_sym_BSLASHbigg] = ACTIONS(6025), - [anon_sym_BSLASHBigg] = ACTIONS(6025), - [anon_sym_BSLASHbigl] = ACTIONS(6025), - [anon_sym_BSLASHBigl] = ACTIONS(6025), - [anon_sym_BSLASHbiggl] = ACTIONS(6025), - [anon_sym_BSLASHBiggl] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), - [anon_sym_BSLASHgls] = ACTIONS(6025), - [anon_sym_BSLASHGls] = ACTIONS(6025), - [anon_sym_BSLASHGLS] = ACTIONS(6025), - [anon_sym_BSLASHglspl] = ACTIONS(6025), - [anon_sym_BSLASHGlspl] = ACTIONS(6025), - [anon_sym_BSLASHGLSpl] = ACTIONS(6025), - [anon_sym_BSLASHglsdisp] = ACTIONS(6025), - [anon_sym_BSLASHglslink] = ACTIONS(6025), - [anon_sym_BSLASHglstext] = ACTIONS(6025), - [anon_sym_BSLASHGlstext] = ACTIONS(6025), - [anon_sym_BSLASHGLStext] = ACTIONS(6025), - [anon_sym_BSLASHglsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), - [anon_sym_BSLASHglsplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSplural] = ACTIONS(6025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHglsname] = ACTIONS(6025), - [anon_sym_BSLASHGlsname] = ACTIONS(6025), - [anon_sym_BSLASHGLSname] = ACTIONS(6025), - [anon_sym_BSLASHglssymbol] = ACTIONS(6025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), - [anon_sym_BSLASHglsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), - [anon_sym_BSLASHglsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), - [anon_sym_BSLASHglsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), - [anon_sym_BSLASHglsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), - [anon_sym_BSLASHglsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), - [anon_sym_BSLASHnewacronym] = ACTIONS(6025), - [anon_sym_BSLASHacrshort] = ACTIONS(6025), - [anon_sym_BSLASHAcrshort] = ACTIONS(6025), - [anon_sym_BSLASHACRshort] = ACTIONS(6025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), - [anon_sym_BSLASHacrlong] = ACTIONS(6025), - [anon_sym_BSLASHAcrlong] = ACTIONS(6025), - [anon_sym_BSLASHACRlong] = ACTIONS(6025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), - [anon_sym_BSLASHacrfull] = ACTIONS(6025), - [anon_sym_BSLASHAcrfull] = ACTIONS(6025), - [anon_sym_BSLASHACRfull] = ACTIONS(6025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), - [anon_sym_BSLASHacs] = ACTIONS(6025), - [anon_sym_BSLASHAcs] = ACTIONS(6025), - [anon_sym_BSLASHacsp] = ACTIONS(6025), - [anon_sym_BSLASHAcsp] = ACTIONS(6025), - [anon_sym_BSLASHacl] = ACTIONS(6025), - [anon_sym_BSLASHAcl] = ACTIONS(6025), - [anon_sym_BSLASHaclp] = ACTIONS(6025), - [anon_sym_BSLASHAclp] = ACTIONS(6025), - [anon_sym_BSLASHacf] = ACTIONS(6025), - [anon_sym_BSLASHAcf] = ACTIONS(6025), - [anon_sym_BSLASHacfp] = ACTIONS(6025), - [anon_sym_BSLASHAcfp] = ACTIONS(6025), - [anon_sym_BSLASHac] = ACTIONS(6025), - [anon_sym_BSLASHAc] = ACTIONS(6025), - [anon_sym_BSLASHacp] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), - [anon_sym_BSLASHcolor] = ACTIONS(6025), - [anon_sym_BSLASHcolorbox] = ACTIONS(6025), - [anon_sym_BSLASHtextcolor] = ACTIONS(6025), - [anon_sym_BSLASHpagecolor] = ACTIONS(6025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), - [anon_sym_BSLASHtext] = ACTIONS(6025), - [anon_sym_BSLASHintertext] = ACTIONS(6025), - [anon_sym_shortintertext] = ACTIONS(6025), - }, - [1900] = { - [sym_command_name] = ACTIONS(6201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6201), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_LBRACE] = ACTIONS(6203), - [anon_sym_RBRACE] = ACTIONS(6203), - [anon_sym_BSLASHand] = ACTIONS(6201), - [sym_word] = ACTIONS(6201), - [sym_placeholder] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_SQUOTE] = ACTIONS(6201), - [anon_sym__] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), - [anon_sym_DOLLAR] = ACTIONS(6201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6203), - [anon_sym_BSLASHtitle] = ACTIONS(6201), - [anon_sym_BSLASHauthor] = ACTIONS(6201), - [anon_sym_BSLASHusepackage] = ACTIONS(6201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), - [anon_sym_BSLASHinclude] = ACTIONS(6201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), - [anon_sym_BSLASHinput] = ACTIONS(6201), - [anon_sym_BSLASHsubfile] = ACTIONS(6201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), - [anon_sym_BSLASHbibliography] = ACTIONS(6201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), - [anon_sym_BSLASHincludesvg] = ACTIONS(6201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), - [anon_sym_BSLASHimport] = ACTIONS(6201), - [anon_sym_BSLASHsubimport] = ACTIONS(6201), - [anon_sym_BSLASHinputfrom] = ACTIONS(6201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), - [anon_sym_BSLASHincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHcaption] = ACTIONS(6201), - [anon_sym_BSLASHcite] = ACTIONS(6201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCite] = ACTIONS(6201), - [anon_sym_BSLASHnocite] = ACTIONS(6201), - [anon_sym_BSLASHcitet] = ACTIONS(6201), - [anon_sym_BSLASHcitep] = ACTIONS(6201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteauthor] = ACTIONS(6201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitetitle] = ACTIONS(6201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteyear] = ACTIONS(6201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitedate] = ACTIONS(6201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteurl] = ACTIONS(6201), - [anon_sym_BSLASHfullcite] = ACTIONS(6201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), - [anon_sym_BSLASHcitealt] = ACTIONS(6201), - [anon_sym_BSLASHcitealp] = ACTIONS(6201), - [anon_sym_BSLASHcitetext] = ACTIONS(6201), - [anon_sym_BSLASHparencite] = ACTIONS(6201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHParencite] = ACTIONS(6201), - [anon_sym_BSLASHfootcite] = ACTIONS(6201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), - [anon_sym_BSLASHtextcite] = ACTIONS(6201), - [anon_sym_BSLASHTextcite] = ACTIONS(6201), - [anon_sym_BSLASHsmartcite] = ACTIONS(6201), - [anon_sym_BSLASHSmartcite] = ACTIONS(6201), - [anon_sym_BSLASHsupercite] = ACTIONS(6201), - [anon_sym_BSLASHautocite] = ACTIONS(6201), - [anon_sym_BSLASHAutocite] = ACTIONS(6201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHvolcite] = ACTIONS(6201), - [anon_sym_BSLASHVolcite] = ACTIONS(6201), - [anon_sym_BSLASHpvolcite] = ACTIONS(6201), - [anon_sym_BSLASHPvolcite] = ACTIONS(6201), - [anon_sym_BSLASHfvolcite] = ACTIONS(6201), - [anon_sym_BSLASHftvolcite] = ACTIONS(6201), - [anon_sym_BSLASHsvolcite] = ACTIONS(6201), - [anon_sym_BSLASHSvolcite] = ACTIONS(6201), - [anon_sym_BSLASHtvolcite] = ACTIONS(6201), - [anon_sym_BSLASHTvolcite] = ACTIONS(6201), - [anon_sym_BSLASHavolcite] = ACTIONS(6201), - [anon_sym_BSLASHAvolcite] = ACTIONS(6201), - [anon_sym_BSLASHnotecite] = ACTIONS(6201), - [anon_sym_BSLASHNotecite] = ACTIONS(6201), - [anon_sym_BSLASHpnotecite] = ACTIONS(6201), - [anon_sym_BSLASHPnotecite] = ACTIONS(6201), - [anon_sym_BSLASHfnotecite] = ACTIONS(6201), - [anon_sym_BSLASHlabel] = ACTIONS(6201), - [anon_sym_BSLASHref] = ACTIONS(6201), - [anon_sym_BSLASHeqref] = ACTIONS(6201), - [anon_sym_BSLASHvref] = ACTIONS(6201), - [anon_sym_BSLASHVref] = ACTIONS(6201), - [anon_sym_BSLASHautoref] = ACTIONS(6201), - [anon_sym_BSLASHpageref] = ACTIONS(6201), - [anon_sym_BSLASHcref] = ACTIONS(6201), - [anon_sym_BSLASHCref] = ACTIONS(6201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnameCref] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHlabelcref] = ACTIONS(6201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCrefrange] = ACTIONS(6201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnewlabel] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHdef] = ACTIONS(6201), - [anon_sym_BSLASHlet] = ACTIONS(6201), - [anon_sym_BSLASHleft] = ACTIONS(6201), - [anon_sym_BSLASHbig] = ACTIONS(6201), - [anon_sym_BSLASHBig] = ACTIONS(6201), - [anon_sym_BSLASHbigg] = ACTIONS(6201), - [anon_sym_BSLASHBigg] = ACTIONS(6201), - [anon_sym_BSLASHbigl] = ACTIONS(6201), - [anon_sym_BSLASHBigl] = ACTIONS(6201), - [anon_sym_BSLASHbiggl] = ACTIONS(6201), - [anon_sym_BSLASHBiggl] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), - [anon_sym_BSLASHgls] = ACTIONS(6201), - [anon_sym_BSLASHGls] = ACTIONS(6201), - [anon_sym_BSLASHGLS] = ACTIONS(6201), - [anon_sym_BSLASHglspl] = ACTIONS(6201), - [anon_sym_BSLASHGlspl] = ACTIONS(6201), - [anon_sym_BSLASHGLSpl] = ACTIONS(6201), - [anon_sym_BSLASHglsdisp] = ACTIONS(6201), - [anon_sym_BSLASHglslink] = ACTIONS(6201), - [anon_sym_BSLASHglstext] = ACTIONS(6201), - [anon_sym_BSLASHGlstext] = ACTIONS(6201), - [anon_sym_BSLASHGLStext] = ACTIONS(6201), - [anon_sym_BSLASHglsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), - [anon_sym_BSLASHglsplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSplural] = ACTIONS(6201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHglsname] = ACTIONS(6201), - [anon_sym_BSLASHGlsname] = ACTIONS(6201), - [anon_sym_BSLASHGLSname] = ACTIONS(6201), - [anon_sym_BSLASHglssymbol] = ACTIONS(6201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), - [anon_sym_BSLASHglsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), - [anon_sym_BSLASHglsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), - [anon_sym_BSLASHglsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), - [anon_sym_BSLASHglsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), - [anon_sym_BSLASHglsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), - [anon_sym_BSLASHnewacronym] = ACTIONS(6201), - [anon_sym_BSLASHacrshort] = ACTIONS(6201), - [anon_sym_BSLASHAcrshort] = ACTIONS(6201), - [anon_sym_BSLASHACRshort] = ACTIONS(6201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), - [anon_sym_BSLASHacrlong] = ACTIONS(6201), - [anon_sym_BSLASHAcrlong] = ACTIONS(6201), - [anon_sym_BSLASHACRlong] = ACTIONS(6201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), - [anon_sym_BSLASHacrfull] = ACTIONS(6201), - [anon_sym_BSLASHAcrfull] = ACTIONS(6201), - [anon_sym_BSLASHACRfull] = ACTIONS(6201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), - [anon_sym_BSLASHacs] = ACTIONS(6201), - [anon_sym_BSLASHAcs] = ACTIONS(6201), - [anon_sym_BSLASHacsp] = ACTIONS(6201), - [anon_sym_BSLASHAcsp] = ACTIONS(6201), - [anon_sym_BSLASHacl] = ACTIONS(6201), - [anon_sym_BSLASHAcl] = ACTIONS(6201), - [anon_sym_BSLASHaclp] = ACTIONS(6201), - [anon_sym_BSLASHAclp] = ACTIONS(6201), - [anon_sym_BSLASHacf] = ACTIONS(6201), - [anon_sym_BSLASHAcf] = ACTIONS(6201), - [anon_sym_BSLASHacfp] = ACTIONS(6201), - [anon_sym_BSLASHAcfp] = ACTIONS(6201), - [anon_sym_BSLASHac] = ACTIONS(6201), - [anon_sym_BSLASHAc] = ACTIONS(6201), - [anon_sym_BSLASHacp] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), - [anon_sym_BSLASHcolor] = ACTIONS(6201), - [anon_sym_BSLASHcolorbox] = ACTIONS(6201), - [anon_sym_BSLASHtextcolor] = ACTIONS(6201), - [anon_sym_BSLASHpagecolor] = ACTIONS(6201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), - [anon_sym_BSLASHtext] = ACTIONS(6201), - [anon_sym_BSLASHintertext] = ACTIONS(6201), - [anon_sym_shortintertext] = ACTIONS(6201), - }, - [1901] = { - [sym_command_name] = ACTIONS(6181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6181), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_LBRACE] = ACTIONS(6183), - [anon_sym_RBRACE] = ACTIONS(6183), - [anon_sym_BSLASHand] = ACTIONS(6181), - [sym_word] = ACTIONS(6181), - [sym_placeholder] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6183), - [anon_sym_DASH] = ACTIONS(6183), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_COLON] = ACTIONS(6181), - [anon_sym_SQUOTE] = ACTIONS(6181), - [anon_sym__] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6183), - [anon_sym_DOLLAR] = ACTIONS(6181), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6183), - [anon_sym_BSLASHtitle] = ACTIONS(6181), - [anon_sym_BSLASHauthor] = ACTIONS(6181), - [anon_sym_BSLASHusepackage] = ACTIONS(6181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), - [anon_sym_BSLASHinclude] = ACTIONS(6181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), - [anon_sym_BSLASHinput] = ACTIONS(6181), - [anon_sym_BSLASHsubfile] = ACTIONS(6181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), - [anon_sym_BSLASHbibliography] = ACTIONS(6181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), - [anon_sym_BSLASHincludesvg] = ACTIONS(6181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), - [anon_sym_BSLASHimport] = ACTIONS(6181), - [anon_sym_BSLASHsubimport] = ACTIONS(6181), - [anon_sym_BSLASHinputfrom] = ACTIONS(6181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), - [anon_sym_BSLASHincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHcaption] = ACTIONS(6181), - [anon_sym_BSLASHcite] = ACTIONS(6181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCite] = ACTIONS(6181), - [anon_sym_BSLASHnocite] = ACTIONS(6181), - [anon_sym_BSLASHcitet] = ACTIONS(6181), - [anon_sym_BSLASHcitep] = ACTIONS(6181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteauthor] = ACTIONS(6181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitetitle] = ACTIONS(6181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteyear] = ACTIONS(6181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitedate] = ACTIONS(6181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteurl] = ACTIONS(6181), - [anon_sym_BSLASHfullcite] = ACTIONS(6181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), - [anon_sym_BSLASHcitealt] = ACTIONS(6181), - [anon_sym_BSLASHcitealp] = ACTIONS(6181), - [anon_sym_BSLASHcitetext] = ACTIONS(6181), - [anon_sym_BSLASHparencite] = ACTIONS(6181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHParencite] = ACTIONS(6181), - [anon_sym_BSLASHfootcite] = ACTIONS(6181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), - [anon_sym_BSLASHtextcite] = ACTIONS(6181), - [anon_sym_BSLASHTextcite] = ACTIONS(6181), - [anon_sym_BSLASHsmartcite] = ACTIONS(6181), - [anon_sym_BSLASHSmartcite] = ACTIONS(6181), - [anon_sym_BSLASHsupercite] = ACTIONS(6181), - [anon_sym_BSLASHautocite] = ACTIONS(6181), - [anon_sym_BSLASHAutocite] = ACTIONS(6181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHvolcite] = ACTIONS(6181), - [anon_sym_BSLASHVolcite] = ACTIONS(6181), - [anon_sym_BSLASHpvolcite] = ACTIONS(6181), - [anon_sym_BSLASHPvolcite] = ACTIONS(6181), - [anon_sym_BSLASHfvolcite] = ACTIONS(6181), - [anon_sym_BSLASHftvolcite] = ACTIONS(6181), - [anon_sym_BSLASHsvolcite] = ACTIONS(6181), - [anon_sym_BSLASHSvolcite] = ACTIONS(6181), - [anon_sym_BSLASHtvolcite] = ACTIONS(6181), - [anon_sym_BSLASHTvolcite] = ACTIONS(6181), - [anon_sym_BSLASHavolcite] = ACTIONS(6181), - [anon_sym_BSLASHAvolcite] = ACTIONS(6181), - [anon_sym_BSLASHnotecite] = ACTIONS(6181), - [anon_sym_BSLASHNotecite] = ACTIONS(6181), - [anon_sym_BSLASHpnotecite] = ACTIONS(6181), - [anon_sym_BSLASHPnotecite] = ACTIONS(6181), - [anon_sym_BSLASHfnotecite] = ACTIONS(6181), - [anon_sym_BSLASHlabel] = ACTIONS(6181), - [anon_sym_BSLASHref] = ACTIONS(6181), - [anon_sym_BSLASHeqref] = ACTIONS(6181), - [anon_sym_BSLASHvref] = ACTIONS(6181), - [anon_sym_BSLASHVref] = ACTIONS(6181), - [anon_sym_BSLASHautoref] = ACTIONS(6181), - [anon_sym_BSLASHpageref] = ACTIONS(6181), - [anon_sym_BSLASHcref] = ACTIONS(6181), - [anon_sym_BSLASHCref] = ACTIONS(6181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnameCref] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHlabelcref] = ACTIONS(6181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCrefrange] = ACTIONS(6181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnewlabel] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHdef] = ACTIONS(6181), - [anon_sym_BSLASHlet] = ACTIONS(6181), - [anon_sym_BSLASHleft] = ACTIONS(6181), - [anon_sym_BSLASHbig] = ACTIONS(6181), - [anon_sym_BSLASHBig] = ACTIONS(6181), - [anon_sym_BSLASHbigg] = ACTIONS(6181), - [anon_sym_BSLASHBigg] = ACTIONS(6181), - [anon_sym_BSLASHbigl] = ACTIONS(6181), - [anon_sym_BSLASHBigl] = ACTIONS(6181), - [anon_sym_BSLASHbiggl] = ACTIONS(6181), - [anon_sym_BSLASHBiggl] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), - [anon_sym_BSLASHgls] = ACTIONS(6181), - [anon_sym_BSLASHGls] = ACTIONS(6181), - [anon_sym_BSLASHGLS] = ACTIONS(6181), - [anon_sym_BSLASHglspl] = ACTIONS(6181), - [anon_sym_BSLASHGlspl] = ACTIONS(6181), - [anon_sym_BSLASHGLSpl] = ACTIONS(6181), - [anon_sym_BSLASHglsdisp] = ACTIONS(6181), - [anon_sym_BSLASHglslink] = ACTIONS(6181), - [anon_sym_BSLASHglstext] = ACTIONS(6181), - [anon_sym_BSLASHGlstext] = ACTIONS(6181), - [anon_sym_BSLASHGLStext] = ACTIONS(6181), - [anon_sym_BSLASHglsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), - [anon_sym_BSLASHglsplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSplural] = ACTIONS(6181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHglsname] = ACTIONS(6181), - [anon_sym_BSLASHGlsname] = ACTIONS(6181), - [anon_sym_BSLASHGLSname] = ACTIONS(6181), - [anon_sym_BSLASHglssymbol] = ACTIONS(6181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), - [anon_sym_BSLASHglsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), - [anon_sym_BSLASHglsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), - [anon_sym_BSLASHglsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), - [anon_sym_BSLASHglsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), - [anon_sym_BSLASHglsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), - [anon_sym_BSLASHnewacronym] = ACTIONS(6181), - [anon_sym_BSLASHacrshort] = ACTIONS(6181), - [anon_sym_BSLASHAcrshort] = ACTIONS(6181), - [anon_sym_BSLASHACRshort] = ACTIONS(6181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), - [anon_sym_BSLASHacrlong] = ACTIONS(6181), - [anon_sym_BSLASHAcrlong] = ACTIONS(6181), - [anon_sym_BSLASHACRlong] = ACTIONS(6181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), - [anon_sym_BSLASHacrfull] = ACTIONS(6181), - [anon_sym_BSLASHAcrfull] = ACTIONS(6181), - [anon_sym_BSLASHACRfull] = ACTIONS(6181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), - [anon_sym_BSLASHacs] = ACTIONS(6181), - [anon_sym_BSLASHAcs] = ACTIONS(6181), - [anon_sym_BSLASHacsp] = ACTIONS(6181), - [anon_sym_BSLASHAcsp] = ACTIONS(6181), - [anon_sym_BSLASHacl] = ACTIONS(6181), - [anon_sym_BSLASHAcl] = ACTIONS(6181), - [anon_sym_BSLASHaclp] = ACTIONS(6181), - [anon_sym_BSLASHAclp] = ACTIONS(6181), - [anon_sym_BSLASHacf] = ACTIONS(6181), - [anon_sym_BSLASHAcf] = ACTIONS(6181), - [anon_sym_BSLASHacfp] = ACTIONS(6181), - [anon_sym_BSLASHAcfp] = ACTIONS(6181), - [anon_sym_BSLASHac] = ACTIONS(6181), - [anon_sym_BSLASHAc] = ACTIONS(6181), - [anon_sym_BSLASHacp] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), - [anon_sym_BSLASHcolor] = ACTIONS(6181), - [anon_sym_BSLASHcolorbox] = ACTIONS(6181), - [anon_sym_BSLASHtextcolor] = ACTIONS(6181), - [anon_sym_BSLASHpagecolor] = ACTIONS(6181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), - [anon_sym_BSLASHtext] = ACTIONS(6181), - [anon_sym_BSLASHintertext] = ACTIONS(6181), - [anon_sym_shortintertext] = ACTIONS(6181), - }, - [1902] = { - [sym_command_name] = ACTIONS(6249), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6249), - [anon_sym_LPAREN] = ACTIONS(6251), - [anon_sym_RPAREN] = ACTIONS(6251), - [anon_sym_LBRACE] = ACTIONS(6251), - [anon_sym_RBRACE] = ACTIONS(6251), - [anon_sym_BSLASHand] = ACTIONS(6249), - [sym_word] = ACTIONS(6249), - [sym_placeholder] = ACTIONS(6251), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6251), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_LT] = ACTIONS(6249), - [anon_sym_GT] = ACTIONS(6249), - [anon_sym_BANG] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_SQUOTE] = ACTIONS(6249), - [anon_sym__] = ACTIONS(6251), - [anon_sym_CARET] = ACTIONS(6251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6251), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6251), - [anon_sym_DOLLAR] = ACTIONS(6249), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6251), - [anon_sym_BSLASHtitle] = ACTIONS(6249), - [anon_sym_BSLASHauthor] = ACTIONS(6249), - [anon_sym_BSLASHusepackage] = ACTIONS(6249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), - [anon_sym_BSLASHinclude] = ACTIONS(6249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), - [anon_sym_BSLASHinput] = ACTIONS(6249), - [anon_sym_BSLASHsubfile] = ACTIONS(6249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), - [anon_sym_BSLASHbibliography] = ACTIONS(6249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), - [anon_sym_BSLASHincludesvg] = ACTIONS(6249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), - [anon_sym_BSLASHimport] = ACTIONS(6249), - [anon_sym_BSLASHsubimport] = ACTIONS(6249), - [anon_sym_BSLASHinputfrom] = ACTIONS(6249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), - [anon_sym_BSLASHincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHcaption] = ACTIONS(6249), - [anon_sym_BSLASHcite] = ACTIONS(6249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCite] = ACTIONS(6249), - [anon_sym_BSLASHnocite] = ACTIONS(6249), - [anon_sym_BSLASHcitet] = ACTIONS(6249), - [anon_sym_BSLASHcitep] = ACTIONS(6249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteauthor] = ACTIONS(6249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitetitle] = ACTIONS(6249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteyear] = ACTIONS(6249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitedate] = ACTIONS(6249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteurl] = ACTIONS(6249), - [anon_sym_BSLASHfullcite] = ACTIONS(6249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), - [anon_sym_BSLASHcitealt] = ACTIONS(6249), - [anon_sym_BSLASHcitealp] = ACTIONS(6249), - [anon_sym_BSLASHcitetext] = ACTIONS(6249), - [anon_sym_BSLASHparencite] = ACTIONS(6249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHParencite] = ACTIONS(6249), - [anon_sym_BSLASHfootcite] = ACTIONS(6249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), - [anon_sym_BSLASHtextcite] = ACTIONS(6249), - [anon_sym_BSLASHTextcite] = ACTIONS(6249), - [anon_sym_BSLASHsmartcite] = ACTIONS(6249), - [anon_sym_BSLASHSmartcite] = ACTIONS(6249), - [anon_sym_BSLASHsupercite] = ACTIONS(6249), - [anon_sym_BSLASHautocite] = ACTIONS(6249), - [anon_sym_BSLASHAutocite] = ACTIONS(6249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHvolcite] = ACTIONS(6249), - [anon_sym_BSLASHVolcite] = ACTIONS(6249), - [anon_sym_BSLASHpvolcite] = ACTIONS(6249), - [anon_sym_BSLASHPvolcite] = ACTIONS(6249), - [anon_sym_BSLASHfvolcite] = ACTIONS(6249), - [anon_sym_BSLASHftvolcite] = ACTIONS(6249), - [anon_sym_BSLASHsvolcite] = ACTIONS(6249), - [anon_sym_BSLASHSvolcite] = ACTIONS(6249), - [anon_sym_BSLASHtvolcite] = ACTIONS(6249), - [anon_sym_BSLASHTvolcite] = ACTIONS(6249), - [anon_sym_BSLASHavolcite] = ACTIONS(6249), - [anon_sym_BSLASHAvolcite] = ACTIONS(6249), - [anon_sym_BSLASHnotecite] = ACTIONS(6249), - [anon_sym_BSLASHNotecite] = ACTIONS(6249), - [anon_sym_BSLASHpnotecite] = ACTIONS(6249), - [anon_sym_BSLASHPnotecite] = ACTIONS(6249), - [anon_sym_BSLASHfnotecite] = ACTIONS(6249), - [anon_sym_BSLASHlabel] = ACTIONS(6249), - [anon_sym_BSLASHref] = ACTIONS(6249), - [anon_sym_BSLASHeqref] = ACTIONS(6249), - [anon_sym_BSLASHvref] = ACTIONS(6249), - [anon_sym_BSLASHVref] = ACTIONS(6249), - [anon_sym_BSLASHautoref] = ACTIONS(6249), - [anon_sym_BSLASHpageref] = ACTIONS(6249), - [anon_sym_BSLASHcref] = ACTIONS(6249), - [anon_sym_BSLASHCref] = ACTIONS(6249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnameCref] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHlabelcref] = ACTIONS(6249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCrefrange] = ACTIONS(6249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnewlabel] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHdef] = ACTIONS(6249), - [anon_sym_BSLASHlet] = ACTIONS(6249), - [anon_sym_BSLASHleft] = ACTIONS(6249), - [anon_sym_BSLASHbig] = ACTIONS(6249), - [anon_sym_BSLASHBig] = ACTIONS(6249), - [anon_sym_BSLASHbigg] = ACTIONS(6249), - [anon_sym_BSLASHBigg] = ACTIONS(6249), - [anon_sym_BSLASHbigl] = ACTIONS(6249), - [anon_sym_BSLASHBigl] = ACTIONS(6249), - [anon_sym_BSLASHbiggl] = ACTIONS(6249), - [anon_sym_BSLASHBiggl] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), - [anon_sym_BSLASHgls] = ACTIONS(6249), - [anon_sym_BSLASHGls] = ACTIONS(6249), - [anon_sym_BSLASHGLS] = ACTIONS(6249), - [anon_sym_BSLASHglspl] = ACTIONS(6249), - [anon_sym_BSLASHGlspl] = ACTIONS(6249), - [anon_sym_BSLASHGLSpl] = ACTIONS(6249), - [anon_sym_BSLASHglsdisp] = ACTIONS(6249), - [anon_sym_BSLASHglslink] = ACTIONS(6249), - [anon_sym_BSLASHglstext] = ACTIONS(6249), - [anon_sym_BSLASHGlstext] = ACTIONS(6249), - [anon_sym_BSLASHGLStext] = ACTIONS(6249), - [anon_sym_BSLASHglsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), - [anon_sym_BSLASHglsplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSplural] = ACTIONS(6249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHglsname] = ACTIONS(6249), - [anon_sym_BSLASHGlsname] = ACTIONS(6249), - [anon_sym_BSLASHGLSname] = ACTIONS(6249), - [anon_sym_BSLASHglssymbol] = ACTIONS(6249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), - [anon_sym_BSLASHglsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), - [anon_sym_BSLASHglsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), - [anon_sym_BSLASHglsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), - [anon_sym_BSLASHglsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), - [anon_sym_BSLASHglsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), - [anon_sym_BSLASHnewacronym] = ACTIONS(6249), - [anon_sym_BSLASHacrshort] = ACTIONS(6249), - [anon_sym_BSLASHAcrshort] = ACTIONS(6249), - [anon_sym_BSLASHACRshort] = ACTIONS(6249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), - [anon_sym_BSLASHacrlong] = ACTIONS(6249), - [anon_sym_BSLASHAcrlong] = ACTIONS(6249), - [anon_sym_BSLASHACRlong] = ACTIONS(6249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), - [anon_sym_BSLASHacrfull] = ACTIONS(6249), - [anon_sym_BSLASHAcrfull] = ACTIONS(6249), - [anon_sym_BSLASHACRfull] = ACTIONS(6249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), - [anon_sym_BSLASHacs] = ACTIONS(6249), - [anon_sym_BSLASHAcs] = ACTIONS(6249), - [anon_sym_BSLASHacsp] = ACTIONS(6249), - [anon_sym_BSLASHAcsp] = ACTIONS(6249), - [anon_sym_BSLASHacl] = ACTIONS(6249), - [anon_sym_BSLASHAcl] = ACTIONS(6249), - [anon_sym_BSLASHaclp] = ACTIONS(6249), - [anon_sym_BSLASHAclp] = ACTIONS(6249), - [anon_sym_BSLASHacf] = ACTIONS(6249), - [anon_sym_BSLASHAcf] = ACTIONS(6249), - [anon_sym_BSLASHacfp] = ACTIONS(6249), - [anon_sym_BSLASHAcfp] = ACTIONS(6249), - [anon_sym_BSLASHac] = ACTIONS(6249), - [anon_sym_BSLASHAc] = ACTIONS(6249), - [anon_sym_BSLASHacp] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), - [anon_sym_BSLASHcolor] = ACTIONS(6249), - [anon_sym_BSLASHcolorbox] = ACTIONS(6249), - [anon_sym_BSLASHtextcolor] = ACTIONS(6249), - [anon_sym_BSLASHpagecolor] = ACTIONS(6249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), - [anon_sym_BSLASHtext] = ACTIONS(6249), - [anon_sym_BSLASHintertext] = ACTIONS(6249), - [anon_sym_shortintertext] = ACTIONS(6249), - }, - [1903] = { - [sym_command_name] = ACTIONS(6169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6169), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_LBRACE] = ACTIONS(6171), - [anon_sym_RBRACE] = ACTIONS(6171), - [anon_sym_BSLASHand] = ACTIONS(6169), - [sym_word] = ACTIONS(6169), - [sym_placeholder] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6171), - [anon_sym_DASH] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_COLON] = ACTIONS(6169), - [anon_sym_SQUOTE] = ACTIONS(6169), - [anon_sym__] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6171), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6171), - [anon_sym_DOLLAR] = ACTIONS(6169), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6171), - [anon_sym_BSLASHtitle] = ACTIONS(6169), - [anon_sym_BSLASHauthor] = ACTIONS(6169), - [anon_sym_BSLASHusepackage] = ACTIONS(6169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6169), - [anon_sym_BSLASHinclude] = ACTIONS(6169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6169), - [anon_sym_BSLASHinput] = ACTIONS(6169), - [anon_sym_BSLASHsubfile] = ACTIONS(6169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6169), - [anon_sym_BSLASHbibliography] = ACTIONS(6169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6169), - [anon_sym_BSLASHincludesvg] = ACTIONS(6169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6169), - [anon_sym_BSLASHimport] = ACTIONS(6169), - [anon_sym_BSLASHsubimport] = ACTIONS(6169), - [anon_sym_BSLASHinputfrom] = ACTIONS(6169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6169), - [anon_sym_BSLASHincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHcaption] = ACTIONS(6169), - [anon_sym_BSLASHcite] = ACTIONS(6169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCite] = ACTIONS(6169), - [anon_sym_BSLASHnocite] = ACTIONS(6169), - [anon_sym_BSLASHcitet] = ACTIONS(6169), - [anon_sym_BSLASHcitep] = ACTIONS(6169), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteauthor] = ACTIONS(6169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitetitle] = ACTIONS(6169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteyear] = ACTIONS(6169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitedate] = ACTIONS(6169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteurl] = ACTIONS(6169), - [anon_sym_BSLASHfullcite] = ACTIONS(6169), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6169), - [anon_sym_BSLASHcitealt] = ACTIONS(6169), - [anon_sym_BSLASHcitealp] = ACTIONS(6169), - [anon_sym_BSLASHcitetext] = ACTIONS(6169), - [anon_sym_BSLASHparencite] = ACTIONS(6169), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHParencite] = ACTIONS(6169), - [anon_sym_BSLASHfootcite] = ACTIONS(6169), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6169), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6169), - [anon_sym_BSLASHtextcite] = ACTIONS(6169), - [anon_sym_BSLASHTextcite] = ACTIONS(6169), - [anon_sym_BSLASHsmartcite] = ACTIONS(6169), - [anon_sym_BSLASHSmartcite] = ACTIONS(6169), - [anon_sym_BSLASHsupercite] = ACTIONS(6169), - [anon_sym_BSLASHautocite] = ACTIONS(6169), - [anon_sym_BSLASHAutocite] = ACTIONS(6169), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHvolcite] = ACTIONS(6169), - [anon_sym_BSLASHVolcite] = ACTIONS(6169), - [anon_sym_BSLASHpvolcite] = ACTIONS(6169), - [anon_sym_BSLASHPvolcite] = ACTIONS(6169), - [anon_sym_BSLASHfvolcite] = ACTIONS(6169), - [anon_sym_BSLASHftvolcite] = ACTIONS(6169), - [anon_sym_BSLASHsvolcite] = ACTIONS(6169), - [anon_sym_BSLASHSvolcite] = ACTIONS(6169), - [anon_sym_BSLASHtvolcite] = ACTIONS(6169), - [anon_sym_BSLASHTvolcite] = ACTIONS(6169), - [anon_sym_BSLASHavolcite] = ACTIONS(6169), - [anon_sym_BSLASHAvolcite] = ACTIONS(6169), - [anon_sym_BSLASHnotecite] = ACTIONS(6169), - [anon_sym_BSLASHNotecite] = ACTIONS(6169), - [anon_sym_BSLASHpnotecite] = ACTIONS(6169), - [anon_sym_BSLASHPnotecite] = ACTIONS(6169), - [anon_sym_BSLASHfnotecite] = ACTIONS(6169), - [anon_sym_BSLASHlabel] = ACTIONS(6169), - [anon_sym_BSLASHref] = ACTIONS(6169), - [anon_sym_BSLASHeqref] = ACTIONS(6169), - [anon_sym_BSLASHvref] = ACTIONS(6169), - [anon_sym_BSLASHVref] = ACTIONS(6169), - [anon_sym_BSLASHautoref] = ACTIONS(6169), - [anon_sym_BSLASHpageref] = ACTIONS(6169), - [anon_sym_BSLASHcref] = ACTIONS(6169), - [anon_sym_BSLASHCref] = ACTIONS(6169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnameCref] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHlabelcref] = ACTIONS(6169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCrefrange] = ACTIONS(6169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnewlabel] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6171), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHdef] = ACTIONS(6169), - [anon_sym_BSLASHlet] = ACTIONS(6169), - [anon_sym_BSLASHleft] = ACTIONS(6169), - [anon_sym_BSLASHbig] = ACTIONS(6169), - [anon_sym_BSLASHBig] = ACTIONS(6169), - [anon_sym_BSLASHbigg] = ACTIONS(6169), - [anon_sym_BSLASHBigg] = ACTIONS(6169), - [anon_sym_BSLASHbigl] = ACTIONS(6169), - [anon_sym_BSLASHBigl] = ACTIONS(6169), - [anon_sym_BSLASHbiggl] = ACTIONS(6169), - [anon_sym_BSLASHBiggl] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6169), - [anon_sym_BSLASHgls] = ACTIONS(6169), - [anon_sym_BSLASHGls] = ACTIONS(6169), - [anon_sym_BSLASHGLS] = ACTIONS(6169), - [anon_sym_BSLASHglspl] = ACTIONS(6169), - [anon_sym_BSLASHGlspl] = ACTIONS(6169), - [anon_sym_BSLASHGLSpl] = ACTIONS(6169), - [anon_sym_BSLASHglsdisp] = ACTIONS(6169), - [anon_sym_BSLASHglslink] = ACTIONS(6169), - [anon_sym_BSLASHglstext] = ACTIONS(6169), - [anon_sym_BSLASHGlstext] = ACTIONS(6169), - [anon_sym_BSLASHGLStext] = ACTIONS(6169), - [anon_sym_BSLASHglsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6169), - [anon_sym_BSLASHglsplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSplural] = ACTIONS(6169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHglsname] = ACTIONS(6169), - [anon_sym_BSLASHGlsname] = ACTIONS(6169), - [anon_sym_BSLASHGLSname] = ACTIONS(6169), - [anon_sym_BSLASHglssymbol] = ACTIONS(6169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6169), - [anon_sym_BSLASHglsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6169), - [anon_sym_BSLASHglsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6169), - [anon_sym_BSLASHglsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6169), - [anon_sym_BSLASHglsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6169), - [anon_sym_BSLASHglsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6169), - [anon_sym_BSLASHnewacronym] = ACTIONS(6169), - [anon_sym_BSLASHacrshort] = ACTIONS(6169), - [anon_sym_BSLASHAcrshort] = ACTIONS(6169), - [anon_sym_BSLASHACRshort] = ACTIONS(6169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6169), - [anon_sym_BSLASHacrlong] = ACTIONS(6169), - [anon_sym_BSLASHAcrlong] = ACTIONS(6169), - [anon_sym_BSLASHACRlong] = ACTIONS(6169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6169), - [anon_sym_BSLASHacrfull] = ACTIONS(6169), - [anon_sym_BSLASHAcrfull] = ACTIONS(6169), - [anon_sym_BSLASHACRfull] = ACTIONS(6169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6169), - [anon_sym_BSLASHacs] = ACTIONS(6169), - [anon_sym_BSLASHAcs] = ACTIONS(6169), - [anon_sym_BSLASHacsp] = ACTIONS(6169), - [anon_sym_BSLASHAcsp] = ACTIONS(6169), - [anon_sym_BSLASHacl] = ACTIONS(6169), - [anon_sym_BSLASHAcl] = ACTIONS(6169), - [anon_sym_BSLASHaclp] = ACTIONS(6169), - [anon_sym_BSLASHAclp] = ACTIONS(6169), - [anon_sym_BSLASHacf] = ACTIONS(6169), - [anon_sym_BSLASHAcf] = ACTIONS(6169), - [anon_sym_BSLASHacfp] = ACTIONS(6169), - [anon_sym_BSLASHAcfp] = ACTIONS(6169), - [anon_sym_BSLASHac] = ACTIONS(6169), - [anon_sym_BSLASHAc] = ACTIONS(6169), - [anon_sym_BSLASHacp] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6169), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6169), - [anon_sym_BSLASHcolor] = ACTIONS(6169), - [anon_sym_BSLASHcolorbox] = ACTIONS(6169), - [anon_sym_BSLASHtextcolor] = ACTIONS(6169), - [anon_sym_BSLASHpagecolor] = ACTIONS(6169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6169), - [anon_sym_BSLASHtext] = ACTIONS(6169), - [anon_sym_BSLASHintertext] = ACTIONS(6169), - [anon_sym_shortintertext] = ACTIONS(6169), - }, - [1904] = { - [sym_command_name] = ACTIONS(6117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6117), - [anon_sym_LPAREN] = ACTIONS(6119), - [anon_sym_RPAREN] = ACTIONS(6119), - [anon_sym_LBRACE] = ACTIONS(6119), - [anon_sym_RBRACE] = ACTIONS(6119), - [anon_sym_BSLASHand] = ACTIONS(6117), - [sym_word] = ACTIONS(6117), - [sym_placeholder] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6119), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_LT] = ACTIONS(6117), - [anon_sym_GT] = ACTIONS(6117), - [anon_sym_BANG] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_SQUOTE] = ACTIONS(6117), - [anon_sym__] = ACTIONS(6119), - [anon_sym_CARET] = ACTIONS(6119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6119), - [anon_sym_DOLLAR] = ACTIONS(6117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6119), - [anon_sym_BSLASHtitle] = ACTIONS(6117), - [anon_sym_BSLASHauthor] = ACTIONS(6117), - [anon_sym_BSLASHusepackage] = ACTIONS(6117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6117), - [anon_sym_BSLASHinclude] = ACTIONS(6117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6117), - [anon_sym_BSLASHinput] = ACTIONS(6117), - [anon_sym_BSLASHsubfile] = ACTIONS(6117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6117), - [anon_sym_BSLASHbibliography] = ACTIONS(6117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6117), - [anon_sym_BSLASHincludesvg] = ACTIONS(6117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6117), - [anon_sym_BSLASHimport] = ACTIONS(6117), - [anon_sym_BSLASHsubimport] = ACTIONS(6117), - [anon_sym_BSLASHinputfrom] = ACTIONS(6117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6117), - [anon_sym_BSLASHincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHcaption] = ACTIONS(6117), - [anon_sym_BSLASHcite] = ACTIONS(6117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCite] = ACTIONS(6117), - [anon_sym_BSLASHnocite] = ACTIONS(6117), - [anon_sym_BSLASHcitet] = ACTIONS(6117), - [anon_sym_BSLASHcitep] = ACTIONS(6117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteauthor] = ACTIONS(6117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitetitle] = ACTIONS(6117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteyear] = ACTIONS(6117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitedate] = ACTIONS(6117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteurl] = ACTIONS(6117), - [anon_sym_BSLASHfullcite] = ACTIONS(6117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6117), - [anon_sym_BSLASHcitealt] = ACTIONS(6117), - [anon_sym_BSLASHcitealp] = ACTIONS(6117), - [anon_sym_BSLASHcitetext] = ACTIONS(6117), - [anon_sym_BSLASHparencite] = ACTIONS(6117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHParencite] = ACTIONS(6117), - [anon_sym_BSLASHfootcite] = ACTIONS(6117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6117), - [anon_sym_BSLASHtextcite] = ACTIONS(6117), - [anon_sym_BSLASHTextcite] = ACTIONS(6117), - [anon_sym_BSLASHsmartcite] = ACTIONS(6117), - [anon_sym_BSLASHSmartcite] = ACTIONS(6117), - [anon_sym_BSLASHsupercite] = ACTIONS(6117), - [anon_sym_BSLASHautocite] = ACTIONS(6117), - [anon_sym_BSLASHAutocite] = ACTIONS(6117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHvolcite] = ACTIONS(6117), - [anon_sym_BSLASHVolcite] = ACTIONS(6117), - [anon_sym_BSLASHpvolcite] = ACTIONS(6117), - [anon_sym_BSLASHPvolcite] = ACTIONS(6117), - [anon_sym_BSLASHfvolcite] = ACTIONS(6117), - [anon_sym_BSLASHftvolcite] = ACTIONS(6117), - [anon_sym_BSLASHsvolcite] = ACTIONS(6117), - [anon_sym_BSLASHSvolcite] = ACTIONS(6117), - [anon_sym_BSLASHtvolcite] = ACTIONS(6117), - [anon_sym_BSLASHTvolcite] = ACTIONS(6117), - [anon_sym_BSLASHavolcite] = ACTIONS(6117), - [anon_sym_BSLASHAvolcite] = ACTIONS(6117), - [anon_sym_BSLASHnotecite] = ACTIONS(6117), - [anon_sym_BSLASHNotecite] = ACTIONS(6117), - [anon_sym_BSLASHpnotecite] = ACTIONS(6117), - [anon_sym_BSLASHPnotecite] = ACTIONS(6117), - [anon_sym_BSLASHfnotecite] = ACTIONS(6117), - [anon_sym_BSLASHlabel] = ACTIONS(6117), - [anon_sym_BSLASHref] = ACTIONS(6117), - [anon_sym_BSLASHeqref] = ACTIONS(6117), - [anon_sym_BSLASHvref] = ACTIONS(6117), - [anon_sym_BSLASHVref] = ACTIONS(6117), - [anon_sym_BSLASHautoref] = ACTIONS(6117), - [anon_sym_BSLASHpageref] = ACTIONS(6117), - [anon_sym_BSLASHcref] = ACTIONS(6117), - [anon_sym_BSLASHCref] = ACTIONS(6117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnameCref] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHlabelcref] = ACTIONS(6117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCrefrange] = ACTIONS(6117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnewlabel] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6119), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHdef] = ACTIONS(6117), - [anon_sym_BSLASHlet] = ACTIONS(6117), - [anon_sym_BSLASHleft] = ACTIONS(6117), - [anon_sym_BSLASHbig] = ACTIONS(6117), - [anon_sym_BSLASHBig] = ACTIONS(6117), - [anon_sym_BSLASHbigg] = ACTIONS(6117), - [anon_sym_BSLASHBigg] = ACTIONS(6117), - [anon_sym_BSLASHbigl] = ACTIONS(6117), - [anon_sym_BSLASHBigl] = ACTIONS(6117), - [anon_sym_BSLASHbiggl] = ACTIONS(6117), - [anon_sym_BSLASHBiggl] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6117), - [anon_sym_BSLASHgls] = ACTIONS(6117), - [anon_sym_BSLASHGls] = ACTIONS(6117), - [anon_sym_BSLASHGLS] = ACTIONS(6117), - [anon_sym_BSLASHglspl] = ACTIONS(6117), - [anon_sym_BSLASHGlspl] = ACTIONS(6117), - [anon_sym_BSLASHGLSpl] = ACTIONS(6117), - [anon_sym_BSLASHglsdisp] = ACTIONS(6117), - [anon_sym_BSLASHglslink] = ACTIONS(6117), - [anon_sym_BSLASHglstext] = ACTIONS(6117), - [anon_sym_BSLASHGlstext] = ACTIONS(6117), - [anon_sym_BSLASHGLStext] = ACTIONS(6117), - [anon_sym_BSLASHglsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6117), - [anon_sym_BSLASHglsplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSplural] = ACTIONS(6117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHglsname] = ACTIONS(6117), - [anon_sym_BSLASHGlsname] = ACTIONS(6117), - [anon_sym_BSLASHGLSname] = ACTIONS(6117), - [anon_sym_BSLASHglssymbol] = ACTIONS(6117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6117), - [anon_sym_BSLASHglsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6117), - [anon_sym_BSLASHglsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6117), - [anon_sym_BSLASHglsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6117), - [anon_sym_BSLASHglsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6117), - [anon_sym_BSLASHglsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6117), - [anon_sym_BSLASHnewacronym] = ACTIONS(6117), - [anon_sym_BSLASHacrshort] = ACTIONS(6117), - [anon_sym_BSLASHAcrshort] = ACTIONS(6117), - [anon_sym_BSLASHACRshort] = ACTIONS(6117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6117), - [anon_sym_BSLASHacrlong] = ACTIONS(6117), - [anon_sym_BSLASHAcrlong] = ACTIONS(6117), - [anon_sym_BSLASHACRlong] = ACTIONS(6117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6117), - [anon_sym_BSLASHacrfull] = ACTIONS(6117), - [anon_sym_BSLASHAcrfull] = ACTIONS(6117), - [anon_sym_BSLASHACRfull] = ACTIONS(6117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6117), - [anon_sym_BSLASHacs] = ACTIONS(6117), - [anon_sym_BSLASHAcs] = ACTIONS(6117), - [anon_sym_BSLASHacsp] = ACTIONS(6117), - [anon_sym_BSLASHAcsp] = ACTIONS(6117), - [anon_sym_BSLASHacl] = ACTIONS(6117), - [anon_sym_BSLASHAcl] = ACTIONS(6117), - [anon_sym_BSLASHaclp] = ACTIONS(6117), - [anon_sym_BSLASHAclp] = ACTIONS(6117), - [anon_sym_BSLASHacf] = ACTIONS(6117), - [anon_sym_BSLASHAcf] = ACTIONS(6117), - [anon_sym_BSLASHacfp] = ACTIONS(6117), - [anon_sym_BSLASHAcfp] = ACTIONS(6117), - [anon_sym_BSLASHac] = ACTIONS(6117), - [anon_sym_BSLASHAc] = ACTIONS(6117), - [anon_sym_BSLASHacp] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6117), - [anon_sym_BSLASHcolor] = ACTIONS(6117), - [anon_sym_BSLASHcolorbox] = ACTIONS(6117), - [anon_sym_BSLASHtextcolor] = ACTIONS(6117), - [anon_sym_BSLASHpagecolor] = ACTIONS(6117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6117), - [anon_sym_BSLASHtext] = ACTIONS(6117), - [anon_sym_BSLASHintertext] = ACTIONS(6117), - [anon_sym_shortintertext] = ACTIONS(6117), - }, - [1905] = { - [sym_command_name] = ACTIONS(6113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6113), - [anon_sym_LPAREN] = ACTIONS(6115), - [anon_sym_RPAREN] = ACTIONS(6115), - [anon_sym_LBRACE] = ACTIONS(6115), - [anon_sym_RBRACE] = ACTIONS(6115), - [anon_sym_BSLASHand] = ACTIONS(6113), - [sym_word] = ACTIONS(6113), - [sym_placeholder] = ACTIONS(6115), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_LT] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6113), - [anon_sym_BANG] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_SQUOTE] = ACTIONS(6113), - [anon_sym__] = ACTIONS(6115), - [anon_sym_CARET] = ACTIONS(6115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6115), - [anon_sym_DOLLAR] = ACTIONS(6113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6115), - [anon_sym_BSLASHtitle] = ACTIONS(6113), - [anon_sym_BSLASHauthor] = ACTIONS(6113), - [anon_sym_BSLASHusepackage] = ACTIONS(6113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), - [anon_sym_BSLASHinclude] = ACTIONS(6113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), - [anon_sym_BSLASHinput] = ACTIONS(6113), - [anon_sym_BSLASHsubfile] = ACTIONS(6113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), - [anon_sym_BSLASHbibliography] = ACTIONS(6113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), - [anon_sym_BSLASHincludesvg] = ACTIONS(6113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), - [anon_sym_BSLASHimport] = ACTIONS(6113), - [anon_sym_BSLASHsubimport] = ACTIONS(6113), - [anon_sym_BSLASHinputfrom] = ACTIONS(6113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), - [anon_sym_BSLASHincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHcaption] = ACTIONS(6113), - [anon_sym_BSLASHcite] = ACTIONS(6113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCite] = ACTIONS(6113), - [anon_sym_BSLASHnocite] = ACTIONS(6113), - [anon_sym_BSLASHcitet] = ACTIONS(6113), - [anon_sym_BSLASHcitep] = ACTIONS(6113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteauthor] = ACTIONS(6113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitetitle] = ACTIONS(6113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteyear] = ACTIONS(6113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitedate] = ACTIONS(6113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteurl] = ACTIONS(6113), - [anon_sym_BSLASHfullcite] = ACTIONS(6113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), - [anon_sym_BSLASHcitealt] = ACTIONS(6113), - [anon_sym_BSLASHcitealp] = ACTIONS(6113), - [anon_sym_BSLASHcitetext] = ACTIONS(6113), - [anon_sym_BSLASHparencite] = ACTIONS(6113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHParencite] = ACTIONS(6113), - [anon_sym_BSLASHfootcite] = ACTIONS(6113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), - [anon_sym_BSLASHtextcite] = ACTIONS(6113), - [anon_sym_BSLASHTextcite] = ACTIONS(6113), - [anon_sym_BSLASHsmartcite] = ACTIONS(6113), - [anon_sym_BSLASHSmartcite] = ACTIONS(6113), - [anon_sym_BSLASHsupercite] = ACTIONS(6113), - [anon_sym_BSLASHautocite] = ACTIONS(6113), - [anon_sym_BSLASHAutocite] = ACTIONS(6113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHvolcite] = ACTIONS(6113), - [anon_sym_BSLASHVolcite] = ACTIONS(6113), - [anon_sym_BSLASHpvolcite] = ACTIONS(6113), - [anon_sym_BSLASHPvolcite] = ACTIONS(6113), - [anon_sym_BSLASHfvolcite] = ACTIONS(6113), - [anon_sym_BSLASHftvolcite] = ACTIONS(6113), - [anon_sym_BSLASHsvolcite] = ACTIONS(6113), - [anon_sym_BSLASHSvolcite] = ACTIONS(6113), - [anon_sym_BSLASHtvolcite] = ACTIONS(6113), - [anon_sym_BSLASHTvolcite] = ACTIONS(6113), - [anon_sym_BSLASHavolcite] = ACTIONS(6113), - [anon_sym_BSLASHAvolcite] = ACTIONS(6113), - [anon_sym_BSLASHnotecite] = ACTIONS(6113), - [anon_sym_BSLASHNotecite] = ACTIONS(6113), - [anon_sym_BSLASHpnotecite] = ACTIONS(6113), - [anon_sym_BSLASHPnotecite] = ACTIONS(6113), - [anon_sym_BSLASHfnotecite] = ACTIONS(6113), - [anon_sym_BSLASHlabel] = ACTIONS(6113), - [anon_sym_BSLASHref] = ACTIONS(6113), - [anon_sym_BSLASHeqref] = ACTIONS(6113), - [anon_sym_BSLASHvref] = ACTIONS(6113), - [anon_sym_BSLASHVref] = ACTIONS(6113), - [anon_sym_BSLASHautoref] = ACTIONS(6113), - [anon_sym_BSLASHpageref] = ACTIONS(6113), - [anon_sym_BSLASHcref] = ACTIONS(6113), - [anon_sym_BSLASHCref] = ACTIONS(6113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnameCref] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHlabelcref] = ACTIONS(6113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCrefrange] = ACTIONS(6113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnewlabel] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6115), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHdef] = ACTIONS(6113), - [anon_sym_BSLASHlet] = ACTIONS(6113), - [anon_sym_BSLASHleft] = ACTIONS(6113), - [anon_sym_BSLASHbig] = ACTIONS(6113), - [anon_sym_BSLASHBig] = ACTIONS(6113), - [anon_sym_BSLASHbigg] = ACTIONS(6113), - [anon_sym_BSLASHBigg] = ACTIONS(6113), - [anon_sym_BSLASHbigl] = ACTIONS(6113), - [anon_sym_BSLASHBigl] = ACTIONS(6113), - [anon_sym_BSLASHbiggl] = ACTIONS(6113), - [anon_sym_BSLASHBiggl] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), - [anon_sym_BSLASHgls] = ACTIONS(6113), - [anon_sym_BSLASHGls] = ACTIONS(6113), - [anon_sym_BSLASHGLS] = ACTIONS(6113), - [anon_sym_BSLASHglspl] = ACTIONS(6113), - [anon_sym_BSLASHGlspl] = ACTIONS(6113), - [anon_sym_BSLASHGLSpl] = ACTIONS(6113), - [anon_sym_BSLASHglsdisp] = ACTIONS(6113), - [anon_sym_BSLASHglslink] = ACTIONS(6113), - [anon_sym_BSLASHglstext] = ACTIONS(6113), - [anon_sym_BSLASHGlstext] = ACTIONS(6113), - [anon_sym_BSLASHGLStext] = ACTIONS(6113), - [anon_sym_BSLASHglsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), - [anon_sym_BSLASHglsplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSplural] = ACTIONS(6113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHglsname] = ACTIONS(6113), - [anon_sym_BSLASHGlsname] = ACTIONS(6113), - [anon_sym_BSLASHGLSname] = ACTIONS(6113), - [anon_sym_BSLASHglssymbol] = ACTIONS(6113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), - [anon_sym_BSLASHglsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), - [anon_sym_BSLASHglsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), - [anon_sym_BSLASHglsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), - [anon_sym_BSLASHglsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), - [anon_sym_BSLASHglsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), - [anon_sym_BSLASHnewacronym] = ACTIONS(6113), - [anon_sym_BSLASHacrshort] = ACTIONS(6113), - [anon_sym_BSLASHAcrshort] = ACTIONS(6113), - [anon_sym_BSLASHACRshort] = ACTIONS(6113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), - [anon_sym_BSLASHacrlong] = ACTIONS(6113), - [anon_sym_BSLASHAcrlong] = ACTIONS(6113), - [anon_sym_BSLASHACRlong] = ACTIONS(6113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), - [anon_sym_BSLASHacrfull] = ACTIONS(6113), - [anon_sym_BSLASHAcrfull] = ACTIONS(6113), - [anon_sym_BSLASHACRfull] = ACTIONS(6113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), - [anon_sym_BSLASHacs] = ACTIONS(6113), - [anon_sym_BSLASHAcs] = ACTIONS(6113), - [anon_sym_BSLASHacsp] = ACTIONS(6113), - [anon_sym_BSLASHAcsp] = ACTIONS(6113), - [anon_sym_BSLASHacl] = ACTIONS(6113), - [anon_sym_BSLASHAcl] = ACTIONS(6113), - [anon_sym_BSLASHaclp] = ACTIONS(6113), - [anon_sym_BSLASHAclp] = ACTIONS(6113), - [anon_sym_BSLASHacf] = ACTIONS(6113), - [anon_sym_BSLASHAcf] = ACTIONS(6113), - [anon_sym_BSLASHacfp] = ACTIONS(6113), - [anon_sym_BSLASHAcfp] = ACTIONS(6113), - [anon_sym_BSLASHac] = ACTIONS(6113), - [anon_sym_BSLASHAc] = ACTIONS(6113), - [anon_sym_BSLASHacp] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), - [anon_sym_BSLASHcolor] = ACTIONS(6113), - [anon_sym_BSLASHcolorbox] = ACTIONS(6113), - [anon_sym_BSLASHtextcolor] = ACTIONS(6113), - [anon_sym_BSLASHpagecolor] = ACTIONS(6113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), - [anon_sym_BSLASHtext] = ACTIONS(6113), - [anon_sym_BSLASHintertext] = ACTIONS(6113), - [anon_sym_shortintertext] = ACTIONS(6113), - }, - [1906] = { - [sym_command_name] = ACTIONS(6109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6109), - [anon_sym_LPAREN] = ACTIONS(6111), - [anon_sym_RPAREN] = ACTIONS(6111), - [anon_sym_LBRACE] = ACTIONS(6111), - [anon_sym_RBRACE] = ACTIONS(6111), - [anon_sym_BSLASHand] = ACTIONS(6109), - [sym_word] = ACTIONS(6109), - [sym_placeholder] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6109), - [anon_sym_GT] = ACTIONS(6109), - [anon_sym_BANG] = ACTIONS(6109), - [anon_sym_PIPE] = ACTIONS(6109), - [anon_sym_COLON] = ACTIONS(6109), - [anon_sym_SQUOTE] = ACTIONS(6109), - [anon_sym__] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6111), - [anon_sym_DOLLAR] = ACTIONS(6109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6111), - [anon_sym_BSLASHtitle] = ACTIONS(6109), - [anon_sym_BSLASHauthor] = ACTIONS(6109), - [anon_sym_BSLASHusepackage] = ACTIONS(6109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), - [anon_sym_BSLASHinclude] = ACTIONS(6109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), - [anon_sym_BSLASHinput] = ACTIONS(6109), - [anon_sym_BSLASHsubfile] = ACTIONS(6109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), - [anon_sym_BSLASHbibliography] = ACTIONS(6109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), - [anon_sym_BSLASHincludesvg] = ACTIONS(6109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), - [anon_sym_BSLASHimport] = ACTIONS(6109), - [anon_sym_BSLASHsubimport] = ACTIONS(6109), - [anon_sym_BSLASHinputfrom] = ACTIONS(6109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), - [anon_sym_BSLASHincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHcaption] = ACTIONS(6109), - [anon_sym_BSLASHcite] = ACTIONS(6109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCite] = ACTIONS(6109), - [anon_sym_BSLASHnocite] = ACTIONS(6109), - [anon_sym_BSLASHcitet] = ACTIONS(6109), - [anon_sym_BSLASHcitep] = ACTIONS(6109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteauthor] = ACTIONS(6109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitetitle] = ACTIONS(6109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteyear] = ACTIONS(6109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitedate] = ACTIONS(6109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteurl] = ACTIONS(6109), - [anon_sym_BSLASHfullcite] = ACTIONS(6109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), - [anon_sym_BSLASHcitealt] = ACTIONS(6109), - [anon_sym_BSLASHcitealp] = ACTIONS(6109), - [anon_sym_BSLASHcitetext] = ACTIONS(6109), - [anon_sym_BSLASHparencite] = ACTIONS(6109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHParencite] = ACTIONS(6109), - [anon_sym_BSLASHfootcite] = ACTIONS(6109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), - [anon_sym_BSLASHtextcite] = ACTIONS(6109), - [anon_sym_BSLASHTextcite] = ACTIONS(6109), - [anon_sym_BSLASHsmartcite] = ACTIONS(6109), - [anon_sym_BSLASHSmartcite] = ACTIONS(6109), - [anon_sym_BSLASHsupercite] = ACTIONS(6109), - [anon_sym_BSLASHautocite] = ACTIONS(6109), - [anon_sym_BSLASHAutocite] = ACTIONS(6109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHvolcite] = ACTIONS(6109), - [anon_sym_BSLASHVolcite] = ACTIONS(6109), - [anon_sym_BSLASHpvolcite] = ACTIONS(6109), - [anon_sym_BSLASHPvolcite] = ACTIONS(6109), - [anon_sym_BSLASHfvolcite] = ACTIONS(6109), - [anon_sym_BSLASHftvolcite] = ACTIONS(6109), - [anon_sym_BSLASHsvolcite] = ACTIONS(6109), - [anon_sym_BSLASHSvolcite] = ACTIONS(6109), - [anon_sym_BSLASHtvolcite] = ACTIONS(6109), - [anon_sym_BSLASHTvolcite] = ACTIONS(6109), - [anon_sym_BSLASHavolcite] = ACTIONS(6109), - [anon_sym_BSLASHAvolcite] = ACTIONS(6109), - [anon_sym_BSLASHnotecite] = ACTIONS(6109), - [anon_sym_BSLASHNotecite] = ACTIONS(6109), - [anon_sym_BSLASHpnotecite] = ACTIONS(6109), - [anon_sym_BSLASHPnotecite] = ACTIONS(6109), - [anon_sym_BSLASHfnotecite] = ACTIONS(6109), - [anon_sym_BSLASHlabel] = ACTIONS(6109), - [anon_sym_BSLASHref] = ACTIONS(6109), - [anon_sym_BSLASHeqref] = ACTIONS(6109), - [anon_sym_BSLASHvref] = ACTIONS(6109), - [anon_sym_BSLASHVref] = ACTIONS(6109), - [anon_sym_BSLASHautoref] = ACTIONS(6109), - [anon_sym_BSLASHpageref] = ACTIONS(6109), - [anon_sym_BSLASHcref] = ACTIONS(6109), - [anon_sym_BSLASHCref] = ACTIONS(6109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnameCref] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHlabelcref] = ACTIONS(6109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCrefrange] = ACTIONS(6109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnewlabel] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHdef] = ACTIONS(6109), - [anon_sym_BSLASHlet] = ACTIONS(6109), - [anon_sym_BSLASHleft] = ACTIONS(6109), - [anon_sym_BSLASHbig] = ACTIONS(6109), - [anon_sym_BSLASHBig] = ACTIONS(6109), - [anon_sym_BSLASHbigg] = ACTIONS(6109), - [anon_sym_BSLASHBigg] = ACTIONS(6109), - [anon_sym_BSLASHbigl] = ACTIONS(6109), - [anon_sym_BSLASHBigl] = ACTIONS(6109), - [anon_sym_BSLASHbiggl] = ACTIONS(6109), - [anon_sym_BSLASHBiggl] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), - [anon_sym_BSLASHgls] = ACTIONS(6109), - [anon_sym_BSLASHGls] = ACTIONS(6109), - [anon_sym_BSLASHGLS] = ACTIONS(6109), - [anon_sym_BSLASHglspl] = ACTIONS(6109), - [anon_sym_BSLASHGlspl] = ACTIONS(6109), - [anon_sym_BSLASHGLSpl] = ACTIONS(6109), - [anon_sym_BSLASHglsdisp] = ACTIONS(6109), - [anon_sym_BSLASHglslink] = ACTIONS(6109), - [anon_sym_BSLASHglstext] = ACTIONS(6109), - [anon_sym_BSLASHGlstext] = ACTIONS(6109), - [anon_sym_BSLASHGLStext] = ACTIONS(6109), - [anon_sym_BSLASHglsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), - [anon_sym_BSLASHglsplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSplural] = ACTIONS(6109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHglsname] = ACTIONS(6109), - [anon_sym_BSLASHGlsname] = ACTIONS(6109), - [anon_sym_BSLASHGLSname] = ACTIONS(6109), - [anon_sym_BSLASHglssymbol] = ACTIONS(6109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), - [anon_sym_BSLASHglsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), - [anon_sym_BSLASHglsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), - [anon_sym_BSLASHglsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), - [anon_sym_BSLASHglsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), - [anon_sym_BSLASHglsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), - [anon_sym_BSLASHnewacronym] = ACTIONS(6109), - [anon_sym_BSLASHacrshort] = ACTIONS(6109), - [anon_sym_BSLASHAcrshort] = ACTIONS(6109), - [anon_sym_BSLASHACRshort] = ACTIONS(6109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), - [anon_sym_BSLASHacrlong] = ACTIONS(6109), - [anon_sym_BSLASHAcrlong] = ACTIONS(6109), - [anon_sym_BSLASHACRlong] = ACTIONS(6109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), - [anon_sym_BSLASHacrfull] = ACTIONS(6109), - [anon_sym_BSLASHAcrfull] = ACTIONS(6109), - [anon_sym_BSLASHACRfull] = ACTIONS(6109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), - [anon_sym_BSLASHacs] = ACTIONS(6109), - [anon_sym_BSLASHAcs] = ACTIONS(6109), - [anon_sym_BSLASHacsp] = ACTIONS(6109), - [anon_sym_BSLASHAcsp] = ACTIONS(6109), - [anon_sym_BSLASHacl] = ACTIONS(6109), - [anon_sym_BSLASHAcl] = ACTIONS(6109), - [anon_sym_BSLASHaclp] = ACTIONS(6109), - [anon_sym_BSLASHAclp] = ACTIONS(6109), - [anon_sym_BSLASHacf] = ACTIONS(6109), - [anon_sym_BSLASHAcf] = ACTIONS(6109), - [anon_sym_BSLASHacfp] = ACTIONS(6109), - [anon_sym_BSLASHAcfp] = ACTIONS(6109), - [anon_sym_BSLASHac] = ACTIONS(6109), - [anon_sym_BSLASHAc] = ACTIONS(6109), - [anon_sym_BSLASHacp] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), - [anon_sym_BSLASHcolor] = ACTIONS(6109), - [anon_sym_BSLASHcolorbox] = ACTIONS(6109), - [anon_sym_BSLASHtextcolor] = ACTIONS(6109), - [anon_sym_BSLASHpagecolor] = ACTIONS(6109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), - [anon_sym_BSLASHtext] = ACTIONS(6109), - [anon_sym_BSLASHintertext] = ACTIONS(6109), - [anon_sym_shortintertext] = ACTIONS(6109), - }, - [1907] = { - [sym_command_name] = ACTIONS(6057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6057), - [anon_sym_LPAREN] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_LBRACE] = ACTIONS(6059), - [anon_sym_RBRACE] = ACTIONS(6059), - [anon_sym_BSLASHand] = ACTIONS(6057), - [sym_word] = ACTIONS(6057), - [sym_placeholder] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_BANG] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_SQUOTE] = ACTIONS(6057), - [anon_sym__] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6059), - [anon_sym_BSLASHtitle] = ACTIONS(6057), - [anon_sym_BSLASHauthor] = ACTIONS(6057), - [anon_sym_BSLASHusepackage] = ACTIONS(6057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), - [anon_sym_BSLASHinclude] = ACTIONS(6057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), - [anon_sym_BSLASHinput] = ACTIONS(6057), - [anon_sym_BSLASHsubfile] = ACTIONS(6057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), - [anon_sym_BSLASHbibliography] = ACTIONS(6057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), - [anon_sym_BSLASHincludesvg] = ACTIONS(6057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), - [anon_sym_BSLASHimport] = ACTIONS(6057), - [anon_sym_BSLASHsubimport] = ACTIONS(6057), - [anon_sym_BSLASHinputfrom] = ACTIONS(6057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), - [anon_sym_BSLASHincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHcaption] = ACTIONS(6057), - [anon_sym_BSLASHcite] = ACTIONS(6057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCite] = ACTIONS(6057), - [anon_sym_BSLASHnocite] = ACTIONS(6057), - [anon_sym_BSLASHcitet] = ACTIONS(6057), - [anon_sym_BSLASHcitep] = ACTIONS(6057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteauthor] = ACTIONS(6057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitetitle] = ACTIONS(6057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteyear] = ACTIONS(6057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitedate] = ACTIONS(6057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteurl] = ACTIONS(6057), - [anon_sym_BSLASHfullcite] = ACTIONS(6057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), - [anon_sym_BSLASHcitealt] = ACTIONS(6057), - [anon_sym_BSLASHcitealp] = ACTIONS(6057), - [anon_sym_BSLASHcitetext] = ACTIONS(6057), - [anon_sym_BSLASHparencite] = ACTIONS(6057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHParencite] = ACTIONS(6057), - [anon_sym_BSLASHfootcite] = ACTIONS(6057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), - [anon_sym_BSLASHtextcite] = ACTIONS(6057), - [anon_sym_BSLASHTextcite] = ACTIONS(6057), - [anon_sym_BSLASHsmartcite] = ACTIONS(6057), - [anon_sym_BSLASHSmartcite] = ACTIONS(6057), - [anon_sym_BSLASHsupercite] = ACTIONS(6057), - [anon_sym_BSLASHautocite] = ACTIONS(6057), - [anon_sym_BSLASHAutocite] = ACTIONS(6057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHvolcite] = ACTIONS(6057), - [anon_sym_BSLASHVolcite] = ACTIONS(6057), - [anon_sym_BSLASHpvolcite] = ACTIONS(6057), - [anon_sym_BSLASHPvolcite] = ACTIONS(6057), - [anon_sym_BSLASHfvolcite] = ACTIONS(6057), - [anon_sym_BSLASHftvolcite] = ACTIONS(6057), - [anon_sym_BSLASHsvolcite] = ACTIONS(6057), - [anon_sym_BSLASHSvolcite] = ACTIONS(6057), - [anon_sym_BSLASHtvolcite] = ACTIONS(6057), - [anon_sym_BSLASHTvolcite] = ACTIONS(6057), - [anon_sym_BSLASHavolcite] = ACTIONS(6057), - [anon_sym_BSLASHAvolcite] = ACTIONS(6057), - [anon_sym_BSLASHnotecite] = ACTIONS(6057), - [anon_sym_BSLASHNotecite] = ACTIONS(6057), - [anon_sym_BSLASHpnotecite] = ACTIONS(6057), - [anon_sym_BSLASHPnotecite] = ACTIONS(6057), - [anon_sym_BSLASHfnotecite] = ACTIONS(6057), - [anon_sym_BSLASHlabel] = ACTIONS(6057), - [anon_sym_BSLASHref] = ACTIONS(6057), - [anon_sym_BSLASHeqref] = ACTIONS(6057), - [anon_sym_BSLASHvref] = ACTIONS(6057), - [anon_sym_BSLASHVref] = ACTIONS(6057), - [anon_sym_BSLASHautoref] = ACTIONS(6057), - [anon_sym_BSLASHpageref] = ACTIONS(6057), - [anon_sym_BSLASHcref] = ACTIONS(6057), - [anon_sym_BSLASHCref] = ACTIONS(6057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnameCref] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHlabelcref] = ACTIONS(6057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCrefrange] = ACTIONS(6057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnewlabel] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHdef] = ACTIONS(6057), - [anon_sym_BSLASHlet] = ACTIONS(6057), - [anon_sym_BSLASHleft] = ACTIONS(6057), - [anon_sym_BSLASHbig] = ACTIONS(6057), - [anon_sym_BSLASHBig] = ACTIONS(6057), - [anon_sym_BSLASHbigg] = ACTIONS(6057), - [anon_sym_BSLASHBigg] = ACTIONS(6057), - [anon_sym_BSLASHbigl] = ACTIONS(6057), - [anon_sym_BSLASHBigl] = ACTIONS(6057), - [anon_sym_BSLASHbiggl] = ACTIONS(6057), - [anon_sym_BSLASHBiggl] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), - [anon_sym_BSLASHgls] = ACTIONS(6057), - [anon_sym_BSLASHGls] = ACTIONS(6057), - [anon_sym_BSLASHGLS] = ACTIONS(6057), - [anon_sym_BSLASHglspl] = ACTIONS(6057), - [anon_sym_BSLASHGlspl] = ACTIONS(6057), - [anon_sym_BSLASHGLSpl] = ACTIONS(6057), - [anon_sym_BSLASHglsdisp] = ACTIONS(6057), - [anon_sym_BSLASHglslink] = ACTIONS(6057), - [anon_sym_BSLASHglstext] = ACTIONS(6057), - [anon_sym_BSLASHGlstext] = ACTIONS(6057), - [anon_sym_BSLASHGLStext] = ACTIONS(6057), - [anon_sym_BSLASHglsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), - [anon_sym_BSLASHglsplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSplural] = ACTIONS(6057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHglsname] = ACTIONS(6057), - [anon_sym_BSLASHGlsname] = ACTIONS(6057), - [anon_sym_BSLASHGLSname] = ACTIONS(6057), - [anon_sym_BSLASHglssymbol] = ACTIONS(6057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), - [anon_sym_BSLASHglsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), - [anon_sym_BSLASHglsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), - [anon_sym_BSLASHglsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), - [anon_sym_BSLASHglsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), - [anon_sym_BSLASHglsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), - [anon_sym_BSLASHnewacronym] = ACTIONS(6057), - [anon_sym_BSLASHacrshort] = ACTIONS(6057), - [anon_sym_BSLASHAcrshort] = ACTIONS(6057), - [anon_sym_BSLASHACRshort] = ACTIONS(6057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), - [anon_sym_BSLASHacrlong] = ACTIONS(6057), - [anon_sym_BSLASHAcrlong] = ACTIONS(6057), - [anon_sym_BSLASHACRlong] = ACTIONS(6057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), - [anon_sym_BSLASHacrfull] = ACTIONS(6057), - [anon_sym_BSLASHAcrfull] = ACTIONS(6057), - [anon_sym_BSLASHACRfull] = ACTIONS(6057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), - [anon_sym_BSLASHacs] = ACTIONS(6057), - [anon_sym_BSLASHAcs] = ACTIONS(6057), - [anon_sym_BSLASHacsp] = ACTIONS(6057), - [anon_sym_BSLASHAcsp] = ACTIONS(6057), - [anon_sym_BSLASHacl] = ACTIONS(6057), - [anon_sym_BSLASHAcl] = ACTIONS(6057), - [anon_sym_BSLASHaclp] = ACTIONS(6057), - [anon_sym_BSLASHAclp] = ACTIONS(6057), - [anon_sym_BSLASHacf] = ACTIONS(6057), - [anon_sym_BSLASHAcf] = ACTIONS(6057), - [anon_sym_BSLASHacfp] = ACTIONS(6057), - [anon_sym_BSLASHAcfp] = ACTIONS(6057), - [anon_sym_BSLASHac] = ACTIONS(6057), - [anon_sym_BSLASHAc] = ACTIONS(6057), - [anon_sym_BSLASHacp] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), - [anon_sym_BSLASHcolor] = ACTIONS(6057), - [anon_sym_BSLASHcolorbox] = ACTIONS(6057), - [anon_sym_BSLASHtextcolor] = ACTIONS(6057), - [anon_sym_BSLASHpagecolor] = ACTIONS(6057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), - [anon_sym_BSLASHtext] = ACTIONS(6057), - [anon_sym_BSLASHintertext] = ACTIONS(6057), - [anon_sym_shortintertext] = ACTIONS(6057), - }, - [1908] = { - [sym_command_name] = ACTIONS(6529), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6529), - [anon_sym_LPAREN] = ACTIONS(6531), - [anon_sym_RPAREN] = ACTIONS(6531), - [anon_sym_LBRACE] = ACTIONS(6531), - [anon_sym_RBRACE] = ACTIONS(6531), - [anon_sym_BSLASHand] = ACTIONS(6529), - [sym_word] = ACTIONS(6529), - [sym_placeholder] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6531), - [anon_sym_DASH] = ACTIONS(6531), - [anon_sym_STAR] = ACTIONS(6531), - [anon_sym_SLASH] = ACTIONS(6531), - [anon_sym_LT] = ACTIONS(6529), - [anon_sym_GT] = ACTIONS(6529), - [anon_sym_BANG] = ACTIONS(6529), - [anon_sym_PIPE] = ACTIONS(6529), - [anon_sym_COLON] = ACTIONS(6529), - [anon_sym_SQUOTE] = ACTIONS(6529), - [anon_sym__] = ACTIONS(6531), - [anon_sym_CARET] = ACTIONS(6531), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6531), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6531), - [anon_sym_DOLLAR] = ACTIONS(6529), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6531), - [anon_sym_BSLASHtitle] = ACTIONS(6529), - [anon_sym_BSLASHauthor] = ACTIONS(6529), - [anon_sym_BSLASHusepackage] = ACTIONS(6529), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6529), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6529), - [anon_sym_BSLASHinclude] = ACTIONS(6529), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6529), - [anon_sym_BSLASHinput] = ACTIONS(6529), - [anon_sym_BSLASHsubfile] = ACTIONS(6529), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6529), - [anon_sym_BSLASHbibliography] = ACTIONS(6529), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6529), - [anon_sym_BSLASHincludesvg] = ACTIONS(6529), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6529), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6529), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6529), - [anon_sym_BSLASHimport] = ACTIONS(6529), - [anon_sym_BSLASHsubimport] = ACTIONS(6529), - [anon_sym_BSLASHinputfrom] = ACTIONS(6529), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6529), - [anon_sym_BSLASHincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHcaption] = ACTIONS(6529), - [anon_sym_BSLASHcite] = ACTIONS(6529), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCite] = ACTIONS(6529), - [anon_sym_BSLASHnocite] = ACTIONS(6529), - [anon_sym_BSLASHcitet] = ACTIONS(6529), - [anon_sym_BSLASHcitep] = ACTIONS(6529), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteauthor] = ACTIONS(6529), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6529), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitetitle] = ACTIONS(6529), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteyear] = ACTIONS(6529), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitedate] = ACTIONS(6529), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteurl] = ACTIONS(6529), - [anon_sym_BSLASHfullcite] = ACTIONS(6529), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6529), - [anon_sym_BSLASHcitealt] = ACTIONS(6529), - [anon_sym_BSLASHcitealp] = ACTIONS(6529), - [anon_sym_BSLASHcitetext] = ACTIONS(6529), - [anon_sym_BSLASHparencite] = ACTIONS(6529), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHParencite] = ACTIONS(6529), - [anon_sym_BSLASHfootcite] = ACTIONS(6529), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6529), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6529), - [anon_sym_BSLASHtextcite] = ACTIONS(6529), - [anon_sym_BSLASHTextcite] = ACTIONS(6529), - [anon_sym_BSLASHsmartcite] = ACTIONS(6529), - [anon_sym_BSLASHSmartcite] = ACTIONS(6529), - [anon_sym_BSLASHsupercite] = ACTIONS(6529), - [anon_sym_BSLASHautocite] = ACTIONS(6529), - [anon_sym_BSLASHAutocite] = ACTIONS(6529), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHvolcite] = ACTIONS(6529), - [anon_sym_BSLASHVolcite] = ACTIONS(6529), - [anon_sym_BSLASHpvolcite] = ACTIONS(6529), - [anon_sym_BSLASHPvolcite] = ACTIONS(6529), - [anon_sym_BSLASHfvolcite] = ACTIONS(6529), - [anon_sym_BSLASHftvolcite] = ACTIONS(6529), - [anon_sym_BSLASHsvolcite] = ACTIONS(6529), - [anon_sym_BSLASHSvolcite] = ACTIONS(6529), - [anon_sym_BSLASHtvolcite] = ACTIONS(6529), - [anon_sym_BSLASHTvolcite] = ACTIONS(6529), - [anon_sym_BSLASHavolcite] = ACTIONS(6529), - [anon_sym_BSLASHAvolcite] = ACTIONS(6529), - [anon_sym_BSLASHnotecite] = ACTIONS(6529), - [anon_sym_BSLASHNotecite] = ACTIONS(6529), - [anon_sym_BSLASHpnotecite] = ACTIONS(6529), - [anon_sym_BSLASHPnotecite] = ACTIONS(6529), - [anon_sym_BSLASHfnotecite] = ACTIONS(6529), - [anon_sym_BSLASHlabel] = ACTIONS(6529), - [anon_sym_BSLASHref] = ACTIONS(6529), - [anon_sym_BSLASHeqref] = ACTIONS(6529), - [anon_sym_BSLASHvref] = ACTIONS(6529), - [anon_sym_BSLASHVref] = ACTIONS(6529), - [anon_sym_BSLASHautoref] = ACTIONS(6529), - [anon_sym_BSLASHpageref] = ACTIONS(6529), - [anon_sym_BSLASHcref] = ACTIONS(6529), - [anon_sym_BSLASHCref] = ACTIONS(6529), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnameCref] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHlabelcref] = ACTIONS(6529), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCrefrange] = ACTIONS(6529), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnewlabel] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6529), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6529), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6531), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHdef] = ACTIONS(6529), - [anon_sym_BSLASHlet] = ACTIONS(6529), - [anon_sym_BSLASHleft] = ACTIONS(6529), - [anon_sym_BSLASHbig] = ACTIONS(6529), - [anon_sym_BSLASHBig] = ACTIONS(6529), - [anon_sym_BSLASHbigg] = ACTIONS(6529), - [anon_sym_BSLASHBigg] = ACTIONS(6529), - [anon_sym_BSLASHbigl] = ACTIONS(6529), - [anon_sym_BSLASHBigl] = ACTIONS(6529), - [anon_sym_BSLASHbiggl] = ACTIONS(6529), - [anon_sym_BSLASHBiggl] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6529), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6529), - [anon_sym_BSLASHgls] = ACTIONS(6529), - [anon_sym_BSLASHGls] = ACTIONS(6529), - [anon_sym_BSLASHGLS] = ACTIONS(6529), - [anon_sym_BSLASHglspl] = ACTIONS(6529), - [anon_sym_BSLASHGlspl] = ACTIONS(6529), - [anon_sym_BSLASHGLSpl] = ACTIONS(6529), - [anon_sym_BSLASHglsdisp] = ACTIONS(6529), - [anon_sym_BSLASHglslink] = ACTIONS(6529), - [anon_sym_BSLASHglstext] = ACTIONS(6529), - [anon_sym_BSLASHGlstext] = ACTIONS(6529), - [anon_sym_BSLASHGLStext] = ACTIONS(6529), - [anon_sym_BSLASHglsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6529), - [anon_sym_BSLASHglsplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSplural] = ACTIONS(6529), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHglsname] = ACTIONS(6529), - [anon_sym_BSLASHGlsname] = ACTIONS(6529), - [anon_sym_BSLASHGLSname] = ACTIONS(6529), - [anon_sym_BSLASHglssymbol] = ACTIONS(6529), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6529), - [anon_sym_BSLASHglsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6529), - [anon_sym_BSLASHglsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6529), - [anon_sym_BSLASHglsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6529), - [anon_sym_BSLASHglsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6529), - [anon_sym_BSLASHglsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6529), - [anon_sym_BSLASHnewacronym] = ACTIONS(6529), - [anon_sym_BSLASHacrshort] = ACTIONS(6529), - [anon_sym_BSLASHAcrshort] = ACTIONS(6529), - [anon_sym_BSLASHACRshort] = ACTIONS(6529), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6529), - [anon_sym_BSLASHacrlong] = ACTIONS(6529), - [anon_sym_BSLASHAcrlong] = ACTIONS(6529), - [anon_sym_BSLASHACRlong] = ACTIONS(6529), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6529), - [anon_sym_BSLASHacrfull] = ACTIONS(6529), - [anon_sym_BSLASHAcrfull] = ACTIONS(6529), - [anon_sym_BSLASHACRfull] = ACTIONS(6529), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6529), - [anon_sym_BSLASHacs] = ACTIONS(6529), - [anon_sym_BSLASHAcs] = ACTIONS(6529), - [anon_sym_BSLASHacsp] = ACTIONS(6529), - [anon_sym_BSLASHAcsp] = ACTIONS(6529), - [anon_sym_BSLASHacl] = ACTIONS(6529), - [anon_sym_BSLASHAcl] = ACTIONS(6529), - [anon_sym_BSLASHaclp] = ACTIONS(6529), - [anon_sym_BSLASHAclp] = ACTIONS(6529), - [anon_sym_BSLASHacf] = ACTIONS(6529), - [anon_sym_BSLASHAcf] = ACTIONS(6529), - [anon_sym_BSLASHacfp] = ACTIONS(6529), - [anon_sym_BSLASHAcfp] = ACTIONS(6529), - [anon_sym_BSLASHac] = ACTIONS(6529), - [anon_sym_BSLASHAc] = ACTIONS(6529), - [anon_sym_BSLASHacp] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6529), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6529), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6529), - [anon_sym_BSLASHcolor] = ACTIONS(6529), - [anon_sym_BSLASHcolorbox] = ACTIONS(6529), - [anon_sym_BSLASHtextcolor] = ACTIONS(6529), - [anon_sym_BSLASHpagecolor] = ACTIONS(6529), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6529), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6529), - [anon_sym_BSLASHtext] = ACTIONS(6529), - [anon_sym_BSLASHintertext] = ACTIONS(6529), - [anon_sym_shortintertext] = ACTIONS(6529), - }, - [1909] = { - [sym_command_name] = ACTIONS(195), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(195), - [anon_sym_LPAREN] = ACTIONS(197), - [anon_sym_RPAREN] = ACTIONS(197), - [anon_sym_LBRACE] = ACTIONS(197), - [anon_sym_RBRACE] = ACTIONS(197), - [anon_sym_BSLASHand] = ACTIONS(195), - [sym_word] = ACTIONS(195), - [sym_placeholder] = ACTIONS(197), - [anon_sym_PLUS] = ACTIONS(197), - [anon_sym_DASH] = ACTIONS(197), - [anon_sym_STAR] = ACTIONS(197), - [anon_sym_SLASH] = ACTIONS(197), - [anon_sym_LT] = ACTIONS(195), - [anon_sym_GT] = ACTIONS(195), - [anon_sym_BANG] = ACTIONS(195), - [anon_sym_PIPE] = ACTIONS(195), - [anon_sym_COLON] = ACTIONS(195), - [anon_sym_SQUOTE] = ACTIONS(195), - [anon_sym__] = ACTIONS(197), - [anon_sym_CARET] = ACTIONS(197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(197), - [anon_sym_BSLASH_LBRACK] = ACTIONS(197), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH_LPAREN] = ACTIONS(197), - [anon_sym_BSLASHtitle] = ACTIONS(195), - [anon_sym_BSLASHauthor] = ACTIONS(195), - [anon_sym_BSLASHusepackage] = ACTIONS(195), - [anon_sym_BSLASHRequirePackage] = ACTIONS(195), - [anon_sym_BSLASHdocumentclass] = ACTIONS(195), - [anon_sym_BSLASHinclude] = ACTIONS(195), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(195), - [anon_sym_BSLASHinput] = ACTIONS(195), - [anon_sym_BSLASHsubfile] = ACTIONS(195), - [anon_sym_BSLASHaddbibresource] = ACTIONS(195), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(195), - [anon_sym_BSLASHincludesvg] = ACTIONS(195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(195), - [anon_sym_BSLASHverbatiminput] = ACTIONS(195), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(195), - [anon_sym_BSLASHimport] = ACTIONS(195), - [anon_sym_BSLASHsubimport] = ACTIONS(195), - [anon_sym_BSLASHinputfrom] = ACTIONS(195), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(195), - [anon_sym_BSLASHincludefrom] = ACTIONS(195), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(195), - [anon_sym_BSLASHcaption] = ACTIONS(195), - [anon_sym_BSLASHcite] = ACTIONS(195), - [anon_sym_BSLASHcite_STAR] = ACTIONS(197), - [anon_sym_BSLASHCite] = ACTIONS(195), - [anon_sym_BSLASHnocite] = ACTIONS(195), - [anon_sym_BSLASHcitet] = ACTIONS(195), - [anon_sym_BSLASHcitep] = ACTIONS(195), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteauthor] = ACTIONS(195), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHCiteauthor] = ACTIONS(195), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitetitle] = ACTIONS(195), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteyear] = ACTIONS(195), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(197), - [anon_sym_BSLASHcitedate] = ACTIONS(195), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(197), - [anon_sym_BSLASHciteurl] = ACTIONS(195), - [anon_sym_BSLASHfullcite] = ACTIONS(195), - [anon_sym_BSLASHciteyearpar] = ACTIONS(195), - [anon_sym_BSLASHcitealt] = ACTIONS(195), - [anon_sym_BSLASHcitealp] = ACTIONS(195), - [anon_sym_BSLASHcitetext] = ACTIONS(195), - [anon_sym_BSLASHparencite] = ACTIONS(195), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(197), - [anon_sym_BSLASHParencite] = ACTIONS(195), - [anon_sym_BSLASHfootcite] = ACTIONS(195), - [anon_sym_BSLASHfootfullcite] = ACTIONS(195), - [anon_sym_BSLASHfootcitetext] = ACTIONS(195), - [anon_sym_BSLASHtextcite] = ACTIONS(195), - [anon_sym_BSLASHTextcite] = ACTIONS(195), - [anon_sym_BSLASHsmartcite] = ACTIONS(195), - [anon_sym_BSLASHSmartcite] = ACTIONS(195), - [anon_sym_BSLASHsupercite] = ACTIONS(195), - [anon_sym_BSLASHautocite] = ACTIONS(195), - [anon_sym_BSLASHAutocite] = ACTIONS(195), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(197), - [anon_sym_BSLASHvolcite] = ACTIONS(195), - [anon_sym_BSLASHVolcite] = ACTIONS(195), - [anon_sym_BSLASHpvolcite] = ACTIONS(195), - [anon_sym_BSLASHPvolcite] = ACTIONS(195), - [anon_sym_BSLASHfvolcite] = ACTIONS(195), - [anon_sym_BSLASHftvolcite] = ACTIONS(195), - [anon_sym_BSLASHsvolcite] = ACTIONS(195), - [anon_sym_BSLASHSvolcite] = ACTIONS(195), - [anon_sym_BSLASHtvolcite] = ACTIONS(195), - [anon_sym_BSLASHTvolcite] = ACTIONS(195), - [anon_sym_BSLASHavolcite] = ACTIONS(195), - [anon_sym_BSLASHAvolcite] = ACTIONS(195), - [anon_sym_BSLASHnotecite] = ACTIONS(195), - [anon_sym_BSLASHNotecite] = ACTIONS(195), - [anon_sym_BSLASHpnotecite] = ACTIONS(195), - [anon_sym_BSLASHPnotecite] = ACTIONS(195), - [anon_sym_BSLASHfnotecite] = ACTIONS(195), - [anon_sym_BSLASHlabel] = ACTIONS(195), - [anon_sym_BSLASHref] = ACTIONS(195), - [anon_sym_BSLASHeqref] = ACTIONS(195), - [anon_sym_BSLASHvref] = ACTIONS(195), - [anon_sym_BSLASHVref] = ACTIONS(195), - [anon_sym_BSLASHautoref] = ACTIONS(195), - [anon_sym_BSLASHpageref] = ACTIONS(195), - [anon_sym_BSLASHcref] = ACTIONS(195), - [anon_sym_BSLASHCref] = ACTIONS(195), - [anon_sym_BSLASHcref_STAR] = ACTIONS(197), - [anon_sym_BSLASHCref_STAR] = ACTIONS(197), - [anon_sym_BSLASHnamecref] = ACTIONS(195), - [anon_sym_BSLASHnameCref] = ACTIONS(195), - [anon_sym_BSLASHlcnamecref] = ACTIONS(195), - [anon_sym_BSLASHnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHnameCrefs] = ACTIONS(195), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(195), - [anon_sym_BSLASHlabelcref] = ACTIONS(195), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(195), - [anon_sym_BSLASHcrefrange] = ACTIONS(195), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHCrefrange] = ACTIONS(195), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(197), - [anon_sym_BSLASHnewlabel] = ACTIONS(195), - [anon_sym_BSLASHnewcommand] = ACTIONS(195), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHrenewcommand] = ACTIONS(195), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(197), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(195), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(197), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(195), - [anon_sym_BSLASHdef] = ACTIONS(195), - [anon_sym_BSLASHlet] = ACTIONS(195), - [anon_sym_BSLASHleft] = ACTIONS(195), - [anon_sym_BSLASHbig] = ACTIONS(195), - [anon_sym_BSLASHBig] = ACTIONS(195), - [anon_sym_BSLASHbigg] = ACTIONS(195), - [anon_sym_BSLASHBigg] = ACTIONS(195), - [anon_sym_BSLASHbigl] = ACTIONS(195), - [anon_sym_BSLASHBigl] = ACTIONS(195), - [anon_sym_BSLASHbiggl] = ACTIONS(195), - [anon_sym_BSLASHBiggl] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(195), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(195), - [anon_sym_BSLASHnewenvironment] = ACTIONS(195), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(195), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(195), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(195), - [anon_sym_BSLASHgls] = ACTIONS(195), - [anon_sym_BSLASHGls] = ACTIONS(195), - [anon_sym_BSLASHGLS] = ACTIONS(195), - [anon_sym_BSLASHglspl] = ACTIONS(195), - [anon_sym_BSLASHGlspl] = ACTIONS(195), - [anon_sym_BSLASHGLSpl] = ACTIONS(195), - [anon_sym_BSLASHglsdisp] = ACTIONS(195), - [anon_sym_BSLASHglslink] = ACTIONS(195), - [anon_sym_BSLASHglstext] = ACTIONS(195), - [anon_sym_BSLASHGlstext] = ACTIONS(195), - [anon_sym_BSLASHGLStext] = ACTIONS(195), - [anon_sym_BSLASHglsfirst] = ACTIONS(195), - [anon_sym_BSLASHGlsfirst] = ACTIONS(195), - [anon_sym_BSLASHGLSfirst] = ACTIONS(195), - [anon_sym_BSLASHglsplural] = ACTIONS(195), - [anon_sym_BSLASHGlsplural] = ACTIONS(195), - [anon_sym_BSLASHGLSplural] = ACTIONS(195), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(195), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(195), - [anon_sym_BSLASHglsname] = ACTIONS(195), - [anon_sym_BSLASHGlsname] = ACTIONS(195), - [anon_sym_BSLASHGLSname] = ACTIONS(195), - [anon_sym_BSLASHglssymbol] = ACTIONS(195), - [anon_sym_BSLASHGlssymbol] = ACTIONS(195), - [anon_sym_BSLASHglsdesc] = ACTIONS(195), - [anon_sym_BSLASHGlsdesc] = ACTIONS(195), - [anon_sym_BSLASHGLSdesc] = ACTIONS(195), - [anon_sym_BSLASHglsuseri] = ACTIONS(195), - [anon_sym_BSLASHGlsuseri] = ACTIONS(195), - [anon_sym_BSLASHGLSuseri] = ACTIONS(195), - [anon_sym_BSLASHglsuserii] = ACTIONS(195), - [anon_sym_BSLASHGlsuserii] = ACTIONS(195), - [anon_sym_BSLASHGLSuserii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(195), - [anon_sym_BSLASHglsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(195), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(195), - [anon_sym_BSLASHglsuserv] = ACTIONS(195), - [anon_sym_BSLASHGlsuserv] = ACTIONS(195), - [anon_sym_BSLASHGLSuserv] = ACTIONS(195), - [anon_sym_BSLASHglsuservi] = ACTIONS(195), - [anon_sym_BSLASHGlsuservi] = ACTIONS(195), - [anon_sym_BSLASHGLSuservi] = ACTIONS(195), - [anon_sym_BSLASHnewacronym] = ACTIONS(195), - [anon_sym_BSLASHacrshort] = ACTIONS(195), - [anon_sym_BSLASHAcrshort] = ACTIONS(195), - [anon_sym_BSLASHACRshort] = ACTIONS(195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(195), - [anon_sym_BSLASHacrlong] = ACTIONS(195), - [anon_sym_BSLASHAcrlong] = ACTIONS(195), - [anon_sym_BSLASHACRlong] = ACTIONS(195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(195), - [anon_sym_BSLASHacrfull] = ACTIONS(195), - [anon_sym_BSLASHAcrfull] = ACTIONS(195), - [anon_sym_BSLASHACRfull] = ACTIONS(195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(195), - [anon_sym_BSLASHacs] = ACTIONS(195), - [anon_sym_BSLASHAcs] = ACTIONS(195), - [anon_sym_BSLASHacsp] = ACTIONS(195), - [anon_sym_BSLASHAcsp] = ACTIONS(195), - [anon_sym_BSLASHacl] = ACTIONS(195), - [anon_sym_BSLASHAcl] = ACTIONS(195), - [anon_sym_BSLASHaclp] = ACTIONS(195), - [anon_sym_BSLASHAclp] = ACTIONS(195), - [anon_sym_BSLASHacf] = ACTIONS(195), - [anon_sym_BSLASHAcf] = ACTIONS(195), - [anon_sym_BSLASHacfp] = ACTIONS(195), - [anon_sym_BSLASHAcfp] = ACTIONS(195), - [anon_sym_BSLASHac] = ACTIONS(195), - [anon_sym_BSLASHAc] = ACTIONS(195), - [anon_sym_BSLASHacp] = ACTIONS(195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(195), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(195), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(195), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(195), - [anon_sym_BSLASHcolor] = ACTIONS(195), - [anon_sym_BSLASHcolorbox] = ACTIONS(195), - [anon_sym_BSLASHtextcolor] = ACTIONS(195), - [anon_sym_BSLASHpagecolor] = ACTIONS(195), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(195), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(195), - [anon_sym_BSLASHtext] = ACTIONS(195), - [anon_sym_BSLASHintertext] = ACTIONS(195), - [anon_sym_shortintertext] = ACTIONS(195), - }, - [1910] = { - [sym_command_name] = ACTIONS(6053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6053), - [anon_sym_LPAREN] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_LBRACE] = ACTIONS(6055), - [anon_sym_RBRACE] = ACTIONS(6055), - [anon_sym_BSLASHand] = ACTIONS(6053), - [sym_word] = ACTIONS(6053), - [sym_placeholder] = ACTIONS(6055), - [anon_sym_PLUS] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(6055), - [anon_sym_STAR] = ACTIONS(6055), - [anon_sym_SLASH] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_COLON] = ACTIONS(6053), - [anon_sym_SQUOTE] = ACTIONS(6053), - [anon_sym__] = ACTIONS(6055), - [anon_sym_CARET] = ACTIONS(6055), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6055), - [anon_sym_BSLASHtitle] = ACTIONS(6053), - [anon_sym_BSLASHauthor] = ACTIONS(6053), - [anon_sym_BSLASHusepackage] = ACTIONS(6053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), - [anon_sym_BSLASHinclude] = ACTIONS(6053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), - [anon_sym_BSLASHinput] = ACTIONS(6053), - [anon_sym_BSLASHsubfile] = ACTIONS(6053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), - [anon_sym_BSLASHbibliography] = ACTIONS(6053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), - [anon_sym_BSLASHincludesvg] = ACTIONS(6053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), - [anon_sym_BSLASHimport] = ACTIONS(6053), - [anon_sym_BSLASHsubimport] = ACTIONS(6053), - [anon_sym_BSLASHinputfrom] = ACTIONS(6053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), - [anon_sym_BSLASHincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHcaption] = ACTIONS(6053), - [anon_sym_BSLASHcite] = ACTIONS(6053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCite] = ACTIONS(6053), - [anon_sym_BSLASHnocite] = ACTIONS(6053), - [anon_sym_BSLASHcitet] = ACTIONS(6053), - [anon_sym_BSLASHcitep] = ACTIONS(6053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteauthor] = ACTIONS(6053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitetitle] = ACTIONS(6053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteyear] = ACTIONS(6053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitedate] = ACTIONS(6053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteurl] = ACTIONS(6053), - [anon_sym_BSLASHfullcite] = ACTIONS(6053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), - [anon_sym_BSLASHcitealt] = ACTIONS(6053), - [anon_sym_BSLASHcitealp] = ACTIONS(6053), - [anon_sym_BSLASHcitetext] = ACTIONS(6053), - [anon_sym_BSLASHparencite] = ACTIONS(6053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHParencite] = ACTIONS(6053), - [anon_sym_BSLASHfootcite] = ACTIONS(6053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), - [anon_sym_BSLASHtextcite] = ACTIONS(6053), - [anon_sym_BSLASHTextcite] = ACTIONS(6053), - [anon_sym_BSLASHsmartcite] = ACTIONS(6053), - [anon_sym_BSLASHSmartcite] = ACTIONS(6053), - [anon_sym_BSLASHsupercite] = ACTIONS(6053), - [anon_sym_BSLASHautocite] = ACTIONS(6053), - [anon_sym_BSLASHAutocite] = ACTIONS(6053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHvolcite] = ACTIONS(6053), - [anon_sym_BSLASHVolcite] = ACTIONS(6053), - [anon_sym_BSLASHpvolcite] = ACTIONS(6053), - [anon_sym_BSLASHPvolcite] = ACTIONS(6053), - [anon_sym_BSLASHfvolcite] = ACTIONS(6053), - [anon_sym_BSLASHftvolcite] = ACTIONS(6053), - [anon_sym_BSLASHsvolcite] = ACTIONS(6053), - [anon_sym_BSLASHSvolcite] = ACTIONS(6053), - [anon_sym_BSLASHtvolcite] = ACTIONS(6053), - [anon_sym_BSLASHTvolcite] = ACTIONS(6053), - [anon_sym_BSLASHavolcite] = ACTIONS(6053), - [anon_sym_BSLASHAvolcite] = ACTIONS(6053), - [anon_sym_BSLASHnotecite] = ACTIONS(6053), - [anon_sym_BSLASHNotecite] = ACTIONS(6053), - [anon_sym_BSLASHpnotecite] = ACTIONS(6053), - [anon_sym_BSLASHPnotecite] = ACTIONS(6053), - [anon_sym_BSLASHfnotecite] = ACTIONS(6053), - [anon_sym_BSLASHlabel] = ACTIONS(6053), - [anon_sym_BSLASHref] = ACTIONS(6053), - [anon_sym_BSLASHeqref] = ACTIONS(6053), - [anon_sym_BSLASHvref] = ACTIONS(6053), - [anon_sym_BSLASHVref] = ACTIONS(6053), - [anon_sym_BSLASHautoref] = ACTIONS(6053), - [anon_sym_BSLASHpageref] = ACTIONS(6053), - [anon_sym_BSLASHcref] = ACTIONS(6053), - [anon_sym_BSLASHCref] = ACTIONS(6053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnameCref] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHlabelcref] = ACTIONS(6053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCrefrange] = ACTIONS(6053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnewlabel] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHdef] = ACTIONS(6053), - [anon_sym_BSLASHlet] = ACTIONS(6053), - [anon_sym_BSLASHleft] = ACTIONS(6053), - [anon_sym_BSLASHbig] = ACTIONS(6053), - [anon_sym_BSLASHBig] = ACTIONS(6053), - [anon_sym_BSLASHbigg] = ACTIONS(6053), - [anon_sym_BSLASHBigg] = ACTIONS(6053), - [anon_sym_BSLASHbigl] = ACTIONS(6053), - [anon_sym_BSLASHBigl] = ACTIONS(6053), - [anon_sym_BSLASHbiggl] = ACTIONS(6053), - [anon_sym_BSLASHBiggl] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), - [anon_sym_BSLASHgls] = ACTIONS(6053), - [anon_sym_BSLASHGls] = ACTIONS(6053), - [anon_sym_BSLASHGLS] = ACTIONS(6053), - [anon_sym_BSLASHglspl] = ACTIONS(6053), - [anon_sym_BSLASHGlspl] = ACTIONS(6053), - [anon_sym_BSLASHGLSpl] = ACTIONS(6053), - [anon_sym_BSLASHglsdisp] = ACTIONS(6053), - [anon_sym_BSLASHglslink] = ACTIONS(6053), - [anon_sym_BSLASHglstext] = ACTIONS(6053), - [anon_sym_BSLASHGlstext] = ACTIONS(6053), - [anon_sym_BSLASHGLStext] = ACTIONS(6053), - [anon_sym_BSLASHglsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), - [anon_sym_BSLASHglsplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSplural] = ACTIONS(6053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHglsname] = ACTIONS(6053), - [anon_sym_BSLASHGlsname] = ACTIONS(6053), - [anon_sym_BSLASHGLSname] = ACTIONS(6053), - [anon_sym_BSLASHglssymbol] = ACTIONS(6053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), - [anon_sym_BSLASHglsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), - [anon_sym_BSLASHglsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), - [anon_sym_BSLASHglsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), - [anon_sym_BSLASHglsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), - [anon_sym_BSLASHglsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), - [anon_sym_BSLASHnewacronym] = ACTIONS(6053), - [anon_sym_BSLASHacrshort] = ACTIONS(6053), - [anon_sym_BSLASHAcrshort] = ACTIONS(6053), - [anon_sym_BSLASHACRshort] = ACTIONS(6053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), - [anon_sym_BSLASHacrlong] = ACTIONS(6053), - [anon_sym_BSLASHAcrlong] = ACTIONS(6053), - [anon_sym_BSLASHACRlong] = ACTIONS(6053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), - [anon_sym_BSLASHacrfull] = ACTIONS(6053), - [anon_sym_BSLASHAcrfull] = ACTIONS(6053), - [anon_sym_BSLASHACRfull] = ACTIONS(6053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), - [anon_sym_BSLASHacs] = ACTIONS(6053), - [anon_sym_BSLASHAcs] = ACTIONS(6053), - [anon_sym_BSLASHacsp] = ACTIONS(6053), - [anon_sym_BSLASHAcsp] = ACTIONS(6053), - [anon_sym_BSLASHacl] = ACTIONS(6053), - [anon_sym_BSLASHAcl] = ACTIONS(6053), - [anon_sym_BSLASHaclp] = ACTIONS(6053), - [anon_sym_BSLASHAclp] = ACTIONS(6053), - [anon_sym_BSLASHacf] = ACTIONS(6053), - [anon_sym_BSLASHAcf] = ACTIONS(6053), - [anon_sym_BSLASHacfp] = ACTIONS(6053), - [anon_sym_BSLASHAcfp] = ACTIONS(6053), - [anon_sym_BSLASHac] = ACTIONS(6053), - [anon_sym_BSLASHAc] = ACTIONS(6053), - [anon_sym_BSLASHacp] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), - [anon_sym_BSLASHcolor] = ACTIONS(6053), - [anon_sym_BSLASHcolorbox] = ACTIONS(6053), - [anon_sym_BSLASHtextcolor] = ACTIONS(6053), - [anon_sym_BSLASHpagecolor] = ACTIONS(6053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), - [anon_sym_BSLASHtext] = ACTIONS(6053), - [anon_sym_BSLASHintertext] = ACTIONS(6053), - [anon_sym_shortintertext] = ACTIONS(6053), - }, - [1911] = { - [sym_command_name] = ACTIONS(6049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6049), - [anon_sym_LPAREN] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_LBRACE] = ACTIONS(6051), - [anon_sym_RBRACE] = ACTIONS(6051), - [anon_sym_BSLASHand] = ACTIONS(6049), - [sym_word] = ACTIONS(6049), - [sym_placeholder] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6051), - [anon_sym_DASH] = ACTIONS(6051), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6049), - [anon_sym_GT] = ACTIONS(6049), - [anon_sym_BANG] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6049), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_SQUOTE] = ACTIONS(6049), - [anon_sym__] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6051), - [anon_sym_BSLASHtitle] = ACTIONS(6049), - [anon_sym_BSLASHauthor] = ACTIONS(6049), - [anon_sym_BSLASHusepackage] = ACTIONS(6049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6049), - [anon_sym_BSLASHinclude] = ACTIONS(6049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6049), - [anon_sym_BSLASHinput] = ACTIONS(6049), - [anon_sym_BSLASHsubfile] = ACTIONS(6049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6049), - [anon_sym_BSLASHbibliography] = ACTIONS(6049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6049), - [anon_sym_BSLASHincludesvg] = ACTIONS(6049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6049), - [anon_sym_BSLASHimport] = ACTIONS(6049), - [anon_sym_BSLASHsubimport] = ACTIONS(6049), - [anon_sym_BSLASHinputfrom] = ACTIONS(6049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6049), - [anon_sym_BSLASHincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHcaption] = ACTIONS(6049), - [anon_sym_BSLASHcite] = ACTIONS(6049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCite] = ACTIONS(6049), - [anon_sym_BSLASHnocite] = ACTIONS(6049), - [anon_sym_BSLASHcitet] = ACTIONS(6049), - [anon_sym_BSLASHcitep] = ACTIONS(6049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteauthor] = ACTIONS(6049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitetitle] = ACTIONS(6049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteyear] = ACTIONS(6049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitedate] = ACTIONS(6049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteurl] = ACTIONS(6049), - [anon_sym_BSLASHfullcite] = ACTIONS(6049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6049), - [anon_sym_BSLASHcitealt] = ACTIONS(6049), - [anon_sym_BSLASHcitealp] = ACTIONS(6049), - [anon_sym_BSLASHcitetext] = ACTIONS(6049), - [anon_sym_BSLASHparencite] = ACTIONS(6049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHParencite] = ACTIONS(6049), - [anon_sym_BSLASHfootcite] = ACTIONS(6049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6049), - [anon_sym_BSLASHtextcite] = ACTIONS(6049), - [anon_sym_BSLASHTextcite] = ACTIONS(6049), - [anon_sym_BSLASHsmartcite] = ACTIONS(6049), - [anon_sym_BSLASHSmartcite] = ACTIONS(6049), - [anon_sym_BSLASHsupercite] = ACTIONS(6049), - [anon_sym_BSLASHautocite] = ACTIONS(6049), - [anon_sym_BSLASHAutocite] = ACTIONS(6049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHvolcite] = ACTIONS(6049), - [anon_sym_BSLASHVolcite] = ACTIONS(6049), - [anon_sym_BSLASHpvolcite] = ACTIONS(6049), - [anon_sym_BSLASHPvolcite] = ACTIONS(6049), - [anon_sym_BSLASHfvolcite] = ACTIONS(6049), - [anon_sym_BSLASHftvolcite] = ACTIONS(6049), - [anon_sym_BSLASHsvolcite] = ACTIONS(6049), - [anon_sym_BSLASHSvolcite] = ACTIONS(6049), - [anon_sym_BSLASHtvolcite] = ACTIONS(6049), - [anon_sym_BSLASHTvolcite] = ACTIONS(6049), - [anon_sym_BSLASHavolcite] = ACTIONS(6049), - [anon_sym_BSLASHAvolcite] = ACTIONS(6049), - [anon_sym_BSLASHnotecite] = ACTIONS(6049), - [anon_sym_BSLASHNotecite] = ACTIONS(6049), - [anon_sym_BSLASHpnotecite] = ACTIONS(6049), - [anon_sym_BSLASHPnotecite] = ACTIONS(6049), - [anon_sym_BSLASHfnotecite] = ACTIONS(6049), - [anon_sym_BSLASHlabel] = ACTIONS(6049), - [anon_sym_BSLASHref] = ACTIONS(6049), - [anon_sym_BSLASHeqref] = ACTIONS(6049), - [anon_sym_BSLASHvref] = ACTIONS(6049), - [anon_sym_BSLASHVref] = ACTIONS(6049), - [anon_sym_BSLASHautoref] = ACTIONS(6049), - [anon_sym_BSLASHpageref] = ACTIONS(6049), - [anon_sym_BSLASHcref] = ACTIONS(6049), - [anon_sym_BSLASHCref] = ACTIONS(6049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnameCref] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHlabelcref] = ACTIONS(6049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCrefrange] = ACTIONS(6049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnewlabel] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHdef] = ACTIONS(6049), - [anon_sym_BSLASHlet] = ACTIONS(6049), - [anon_sym_BSLASHleft] = ACTIONS(6049), - [anon_sym_BSLASHbig] = ACTIONS(6049), - [anon_sym_BSLASHBig] = ACTIONS(6049), - [anon_sym_BSLASHbigg] = ACTIONS(6049), - [anon_sym_BSLASHBigg] = ACTIONS(6049), - [anon_sym_BSLASHbigl] = ACTIONS(6049), - [anon_sym_BSLASHBigl] = ACTIONS(6049), - [anon_sym_BSLASHbiggl] = ACTIONS(6049), - [anon_sym_BSLASHBiggl] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6049), - [anon_sym_BSLASHgls] = ACTIONS(6049), - [anon_sym_BSLASHGls] = ACTIONS(6049), - [anon_sym_BSLASHGLS] = ACTIONS(6049), - [anon_sym_BSLASHglspl] = ACTIONS(6049), - [anon_sym_BSLASHGlspl] = ACTIONS(6049), - [anon_sym_BSLASHGLSpl] = ACTIONS(6049), - [anon_sym_BSLASHglsdisp] = ACTIONS(6049), - [anon_sym_BSLASHglslink] = ACTIONS(6049), - [anon_sym_BSLASHglstext] = ACTIONS(6049), - [anon_sym_BSLASHGlstext] = ACTIONS(6049), - [anon_sym_BSLASHGLStext] = ACTIONS(6049), - [anon_sym_BSLASHglsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6049), - [anon_sym_BSLASHglsplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSplural] = ACTIONS(6049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHglsname] = ACTIONS(6049), - [anon_sym_BSLASHGlsname] = ACTIONS(6049), - [anon_sym_BSLASHGLSname] = ACTIONS(6049), - [anon_sym_BSLASHglssymbol] = ACTIONS(6049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6049), - [anon_sym_BSLASHglsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6049), - [anon_sym_BSLASHglsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6049), - [anon_sym_BSLASHglsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6049), - [anon_sym_BSLASHglsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6049), - [anon_sym_BSLASHglsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6049), - [anon_sym_BSLASHnewacronym] = ACTIONS(6049), - [anon_sym_BSLASHacrshort] = ACTIONS(6049), - [anon_sym_BSLASHAcrshort] = ACTIONS(6049), - [anon_sym_BSLASHACRshort] = ACTIONS(6049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6049), - [anon_sym_BSLASHacrlong] = ACTIONS(6049), - [anon_sym_BSLASHAcrlong] = ACTIONS(6049), - [anon_sym_BSLASHACRlong] = ACTIONS(6049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6049), - [anon_sym_BSLASHacrfull] = ACTIONS(6049), - [anon_sym_BSLASHAcrfull] = ACTIONS(6049), - [anon_sym_BSLASHACRfull] = ACTIONS(6049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6049), - [anon_sym_BSLASHacs] = ACTIONS(6049), - [anon_sym_BSLASHAcs] = ACTIONS(6049), - [anon_sym_BSLASHacsp] = ACTIONS(6049), - [anon_sym_BSLASHAcsp] = ACTIONS(6049), - [anon_sym_BSLASHacl] = ACTIONS(6049), - [anon_sym_BSLASHAcl] = ACTIONS(6049), - [anon_sym_BSLASHaclp] = ACTIONS(6049), - [anon_sym_BSLASHAclp] = ACTIONS(6049), - [anon_sym_BSLASHacf] = ACTIONS(6049), - [anon_sym_BSLASHAcf] = ACTIONS(6049), - [anon_sym_BSLASHacfp] = ACTIONS(6049), - [anon_sym_BSLASHAcfp] = ACTIONS(6049), - [anon_sym_BSLASHac] = ACTIONS(6049), - [anon_sym_BSLASHAc] = ACTIONS(6049), - [anon_sym_BSLASHacp] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6049), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6049), - [anon_sym_BSLASHcolor] = ACTIONS(6049), - [anon_sym_BSLASHcolorbox] = ACTIONS(6049), - [anon_sym_BSLASHtextcolor] = ACTIONS(6049), - [anon_sym_BSLASHpagecolor] = ACTIONS(6049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6049), - [anon_sym_BSLASHtext] = ACTIONS(6049), - [anon_sym_BSLASHintertext] = ACTIONS(6049), - [anon_sym_shortintertext] = ACTIONS(6049), - }, - [1912] = { - [sym_command_name] = ACTIONS(6045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6045), - [anon_sym_LPAREN] = ACTIONS(6047), - [anon_sym_RPAREN] = ACTIONS(6047), - [anon_sym_LBRACE] = ACTIONS(6047), - [anon_sym_RBRACE] = ACTIONS(6047), - [anon_sym_BSLASHand] = ACTIONS(6045), - [sym_word] = ACTIONS(6045), - [sym_placeholder] = ACTIONS(6047), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6047), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_BANG] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_SQUOTE] = ACTIONS(6045), - [anon_sym__] = ACTIONS(6047), - [anon_sym_CARET] = ACTIONS(6047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6047), - [anon_sym_DOLLAR] = ACTIONS(6045), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6047), - [anon_sym_BSLASHtitle] = ACTIONS(6045), - [anon_sym_BSLASHauthor] = ACTIONS(6045), - [anon_sym_BSLASHusepackage] = ACTIONS(6045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6045), - [anon_sym_BSLASHinclude] = ACTIONS(6045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6045), - [anon_sym_BSLASHinput] = ACTIONS(6045), - [anon_sym_BSLASHsubfile] = ACTIONS(6045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6045), - [anon_sym_BSLASHbibliography] = ACTIONS(6045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6045), - [anon_sym_BSLASHincludesvg] = ACTIONS(6045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6045), - [anon_sym_BSLASHimport] = ACTIONS(6045), - [anon_sym_BSLASHsubimport] = ACTIONS(6045), - [anon_sym_BSLASHinputfrom] = ACTIONS(6045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6045), - [anon_sym_BSLASHincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHcaption] = ACTIONS(6045), - [anon_sym_BSLASHcite] = ACTIONS(6045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCite] = ACTIONS(6045), - [anon_sym_BSLASHnocite] = ACTIONS(6045), - [anon_sym_BSLASHcitet] = ACTIONS(6045), - [anon_sym_BSLASHcitep] = ACTIONS(6045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteauthor] = ACTIONS(6045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitetitle] = ACTIONS(6045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteyear] = ACTIONS(6045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitedate] = ACTIONS(6045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteurl] = ACTIONS(6045), - [anon_sym_BSLASHfullcite] = ACTIONS(6045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6045), - [anon_sym_BSLASHcitealt] = ACTIONS(6045), - [anon_sym_BSLASHcitealp] = ACTIONS(6045), - [anon_sym_BSLASHcitetext] = ACTIONS(6045), - [anon_sym_BSLASHparencite] = ACTIONS(6045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHParencite] = ACTIONS(6045), - [anon_sym_BSLASHfootcite] = ACTIONS(6045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6045), - [anon_sym_BSLASHtextcite] = ACTIONS(6045), - [anon_sym_BSLASHTextcite] = ACTIONS(6045), - [anon_sym_BSLASHsmartcite] = ACTIONS(6045), - [anon_sym_BSLASHSmartcite] = ACTIONS(6045), - [anon_sym_BSLASHsupercite] = ACTIONS(6045), - [anon_sym_BSLASHautocite] = ACTIONS(6045), - [anon_sym_BSLASHAutocite] = ACTIONS(6045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHvolcite] = ACTIONS(6045), - [anon_sym_BSLASHVolcite] = ACTIONS(6045), - [anon_sym_BSLASHpvolcite] = ACTIONS(6045), - [anon_sym_BSLASHPvolcite] = ACTIONS(6045), - [anon_sym_BSLASHfvolcite] = ACTIONS(6045), - [anon_sym_BSLASHftvolcite] = ACTIONS(6045), - [anon_sym_BSLASHsvolcite] = ACTIONS(6045), - [anon_sym_BSLASHSvolcite] = ACTIONS(6045), - [anon_sym_BSLASHtvolcite] = ACTIONS(6045), - [anon_sym_BSLASHTvolcite] = ACTIONS(6045), - [anon_sym_BSLASHavolcite] = ACTIONS(6045), - [anon_sym_BSLASHAvolcite] = ACTIONS(6045), - [anon_sym_BSLASHnotecite] = ACTIONS(6045), - [anon_sym_BSLASHNotecite] = ACTIONS(6045), - [anon_sym_BSLASHpnotecite] = ACTIONS(6045), - [anon_sym_BSLASHPnotecite] = ACTIONS(6045), - [anon_sym_BSLASHfnotecite] = ACTIONS(6045), - [anon_sym_BSLASHlabel] = ACTIONS(6045), - [anon_sym_BSLASHref] = ACTIONS(6045), - [anon_sym_BSLASHeqref] = ACTIONS(6045), - [anon_sym_BSLASHvref] = ACTIONS(6045), - [anon_sym_BSLASHVref] = ACTIONS(6045), - [anon_sym_BSLASHautoref] = ACTIONS(6045), - [anon_sym_BSLASHpageref] = ACTIONS(6045), - [anon_sym_BSLASHcref] = ACTIONS(6045), - [anon_sym_BSLASHCref] = ACTIONS(6045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnameCref] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHlabelcref] = ACTIONS(6045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCrefrange] = ACTIONS(6045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnewlabel] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6047), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHdef] = ACTIONS(6045), - [anon_sym_BSLASHlet] = ACTIONS(6045), - [anon_sym_BSLASHleft] = ACTIONS(6045), - [anon_sym_BSLASHbig] = ACTIONS(6045), - [anon_sym_BSLASHBig] = ACTIONS(6045), - [anon_sym_BSLASHbigg] = ACTIONS(6045), - [anon_sym_BSLASHBigg] = ACTIONS(6045), - [anon_sym_BSLASHbigl] = ACTIONS(6045), - [anon_sym_BSLASHBigl] = ACTIONS(6045), - [anon_sym_BSLASHbiggl] = ACTIONS(6045), - [anon_sym_BSLASHBiggl] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6045), - [anon_sym_BSLASHgls] = ACTIONS(6045), - [anon_sym_BSLASHGls] = ACTIONS(6045), - [anon_sym_BSLASHGLS] = ACTIONS(6045), - [anon_sym_BSLASHglspl] = ACTIONS(6045), - [anon_sym_BSLASHGlspl] = ACTIONS(6045), - [anon_sym_BSLASHGLSpl] = ACTIONS(6045), - [anon_sym_BSLASHglsdisp] = ACTIONS(6045), - [anon_sym_BSLASHglslink] = ACTIONS(6045), - [anon_sym_BSLASHglstext] = ACTIONS(6045), - [anon_sym_BSLASHGlstext] = ACTIONS(6045), - [anon_sym_BSLASHGLStext] = ACTIONS(6045), - [anon_sym_BSLASHglsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6045), - [anon_sym_BSLASHglsplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSplural] = ACTIONS(6045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHglsname] = ACTIONS(6045), - [anon_sym_BSLASHGlsname] = ACTIONS(6045), - [anon_sym_BSLASHGLSname] = ACTIONS(6045), - [anon_sym_BSLASHglssymbol] = ACTIONS(6045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6045), - [anon_sym_BSLASHglsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6045), - [anon_sym_BSLASHglsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6045), - [anon_sym_BSLASHglsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6045), - [anon_sym_BSLASHglsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6045), - [anon_sym_BSLASHglsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6045), - [anon_sym_BSLASHnewacronym] = ACTIONS(6045), - [anon_sym_BSLASHacrshort] = ACTIONS(6045), - [anon_sym_BSLASHAcrshort] = ACTIONS(6045), - [anon_sym_BSLASHACRshort] = ACTIONS(6045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6045), - [anon_sym_BSLASHacrlong] = ACTIONS(6045), - [anon_sym_BSLASHAcrlong] = ACTIONS(6045), - [anon_sym_BSLASHACRlong] = ACTIONS(6045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6045), - [anon_sym_BSLASHacrfull] = ACTIONS(6045), - [anon_sym_BSLASHAcrfull] = ACTIONS(6045), - [anon_sym_BSLASHACRfull] = ACTIONS(6045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6045), - [anon_sym_BSLASHacs] = ACTIONS(6045), - [anon_sym_BSLASHAcs] = ACTIONS(6045), - [anon_sym_BSLASHacsp] = ACTIONS(6045), - [anon_sym_BSLASHAcsp] = ACTIONS(6045), - [anon_sym_BSLASHacl] = ACTIONS(6045), - [anon_sym_BSLASHAcl] = ACTIONS(6045), - [anon_sym_BSLASHaclp] = ACTIONS(6045), - [anon_sym_BSLASHAclp] = ACTIONS(6045), - [anon_sym_BSLASHacf] = ACTIONS(6045), - [anon_sym_BSLASHAcf] = ACTIONS(6045), - [anon_sym_BSLASHacfp] = ACTIONS(6045), - [anon_sym_BSLASHAcfp] = ACTIONS(6045), - [anon_sym_BSLASHac] = ACTIONS(6045), - [anon_sym_BSLASHAc] = ACTIONS(6045), - [anon_sym_BSLASHacp] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6045), - [anon_sym_BSLASHcolor] = ACTIONS(6045), - [anon_sym_BSLASHcolorbox] = ACTIONS(6045), - [anon_sym_BSLASHtextcolor] = ACTIONS(6045), - [anon_sym_BSLASHpagecolor] = ACTIONS(6045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6045), - [anon_sym_BSLASHtext] = ACTIONS(6045), - [anon_sym_BSLASHintertext] = ACTIONS(6045), - [anon_sym_shortintertext] = ACTIONS(6045), - }, - [1913] = { - [sym_curly_group] = STATE(1925), - [sym_brack_group_text] = STATE(2666), - [sym_command_name] = ACTIONS(5987), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5987), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5991), - [anon_sym_COMMA] = ACTIONS(5991), - [anon_sym_EQ] = ACTIONS(5991), - [anon_sym_LBRACE] = ACTIONS(6966), - [anon_sym_RBRACE] = ACTIONS(5991), - [sym_word] = ACTIONS(5987), - [sym_placeholder] = ACTIONS(5991), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5991), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5987), - [anon_sym_PIPE] = ACTIONS(5987), - [anon_sym_COLON] = ACTIONS(5987), - [anon_sym_SQUOTE] = ACTIONS(5987), - [anon_sym__] = ACTIONS(5991), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_BSLASHtitle] = ACTIONS(5987), - [anon_sym_BSLASHauthor] = ACTIONS(5987), - [anon_sym_BSLASHusepackage] = ACTIONS(5987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5987), - [anon_sym_BSLASHinclude] = ACTIONS(5987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5987), - [anon_sym_BSLASHinput] = ACTIONS(5987), - [anon_sym_BSLASHsubfile] = ACTIONS(5987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5987), - [anon_sym_BSLASHbibliography] = ACTIONS(5987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5987), - [anon_sym_BSLASHincludesvg] = ACTIONS(5987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5987), - [anon_sym_BSLASHimport] = ACTIONS(5987), - [anon_sym_BSLASHsubimport] = ACTIONS(5987), - [anon_sym_BSLASHinputfrom] = ACTIONS(5987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5987), - [anon_sym_BSLASHincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5987), - [anon_sym_BSLASHcaption] = ACTIONS(5987), - [anon_sym_BSLASHcite] = ACTIONS(5987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCite] = ACTIONS(5987), - [anon_sym_BSLASHnocite] = ACTIONS(5987), - [anon_sym_BSLASHcitet] = ACTIONS(5987), - [anon_sym_BSLASHcitep] = ACTIONS(5987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteauthor] = ACTIONS(5987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitetitle] = ACTIONS(5987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteyear] = ACTIONS(5987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5991), - [anon_sym_BSLASHcitedate] = ACTIONS(5987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5991), - [anon_sym_BSLASHciteurl] = ACTIONS(5987), - [anon_sym_BSLASHfullcite] = ACTIONS(5987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5987), - [anon_sym_BSLASHcitealt] = ACTIONS(5987), - [anon_sym_BSLASHcitealp] = ACTIONS(5987), - [anon_sym_BSLASHcitetext] = ACTIONS(5987), - [anon_sym_BSLASHparencite] = ACTIONS(5987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHParencite] = ACTIONS(5987), - [anon_sym_BSLASHfootcite] = ACTIONS(5987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5987), - [anon_sym_BSLASHtextcite] = ACTIONS(5987), - [anon_sym_BSLASHTextcite] = ACTIONS(5987), - [anon_sym_BSLASHsmartcite] = ACTIONS(5987), - [anon_sym_BSLASHSmartcite] = ACTIONS(5987), - [anon_sym_BSLASHsupercite] = ACTIONS(5987), - [anon_sym_BSLASHautocite] = ACTIONS(5987), - [anon_sym_BSLASHAutocite] = ACTIONS(5987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5991), - [anon_sym_BSLASHvolcite] = ACTIONS(5987), - [anon_sym_BSLASHVolcite] = ACTIONS(5987), - [anon_sym_BSLASHpvolcite] = ACTIONS(5987), - [anon_sym_BSLASHPvolcite] = ACTIONS(5987), - [anon_sym_BSLASHfvolcite] = ACTIONS(5987), - [anon_sym_BSLASHftvolcite] = ACTIONS(5987), - [anon_sym_BSLASHsvolcite] = ACTIONS(5987), - [anon_sym_BSLASHSvolcite] = ACTIONS(5987), - [anon_sym_BSLASHtvolcite] = ACTIONS(5987), - [anon_sym_BSLASHTvolcite] = ACTIONS(5987), - [anon_sym_BSLASHavolcite] = ACTIONS(5987), - [anon_sym_BSLASHAvolcite] = ACTIONS(5987), - [anon_sym_BSLASHnotecite] = ACTIONS(5987), - [anon_sym_BSLASHNotecite] = ACTIONS(5987), - [anon_sym_BSLASHpnotecite] = ACTIONS(5987), - [anon_sym_BSLASHPnotecite] = ACTIONS(5987), - [anon_sym_BSLASHfnotecite] = ACTIONS(5987), - [anon_sym_BSLASHlabel] = ACTIONS(5987), - [anon_sym_BSLASHref] = ACTIONS(5987), - [anon_sym_BSLASHeqref] = ACTIONS(5987), - [anon_sym_BSLASHvref] = ACTIONS(5987), - [anon_sym_BSLASHVref] = ACTIONS(5987), - [anon_sym_BSLASHautoref] = ACTIONS(5987), - [anon_sym_BSLASHpageref] = ACTIONS(5987), - [anon_sym_BSLASHcref] = ACTIONS(5987), - [anon_sym_BSLASHCref] = ACTIONS(5987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnameCref] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5987), - [anon_sym_BSLASHlabelcref] = ACTIONS(5987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange] = ACTIONS(5987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHCrefrange] = ACTIONS(5987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5991), - [anon_sym_BSLASHnewlabel] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand] = ACTIONS(5987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5991), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5991), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5987), - [anon_sym_BSLASHdef] = ACTIONS(5987), - [anon_sym_BSLASHlet] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5987), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5987), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5987), - [anon_sym_BSLASHgls] = ACTIONS(5987), - [anon_sym_BSLASHGls] = ACTIONS(5987), - [anon_sym_BSLASHGLS] = ACTIONS(5987), - [anon_sym_BSLASHglspl] = ACTIONS(5987), - [anon_sym_BSLASHGlspl] = ACTIONS(5987), - [anon_sym_BSLASHGLSpl] = ACTIONS(5987), - [anon_sym_BSLASHglsdisp] = ACTIONS(5987), - [anon_sym_BSLASHglslink] = ACTIONS(5987), - [anon_sym_BSLASHglstext] = ACTIONS(5987), - [anon_sym_BSLASHGlstext] = ACTIONS(5987), - [anon_sym_BSLASHGLStext] = ACTIONS(5987), - [anon_sym_BSLASHglsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5987), - [anon_sym_BSLASHglsplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSplural] = ACTIONS(5987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5987), - [anon_sym_BSLASHglsname] = ACTIONS(5987), - [anon_sym_BSLASHGlsname] = ACTIONS(5987), - [anon_sym_BSLASHGLSname] = ACTIONS(5987), - [anon_sym_BSLASHglssymbol] = ACTIONS(5987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5987), - [anon_sym_BSLASHglsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5987), - [anon_sym_BSLASHglsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5987), - [anon_sym_BSLASHglsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5987), - [anon_sym_BSLASHglsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5987), - [anon_sym_BSLASHglsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5987), - [anon_sym_BSLASHnewacronym] = ACTIONS(5987), - [anon_sym_BSLASHacrshort] = ACTIONS(5987), - [anon_sym_BSLASHAcrshort] = ACTIONS(5987), - [anon_sym_BSLASHACRshort] = ACTIONS(5987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5987), - [anon_sym_BSLASHacrlong] = ACTIONS(5987), - [anon_sym_BSLASHAcrlong] = ACTIONS(5987), - [anon_sym_BSLASHACRlong] = ACTIONS(5987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5987), - [anon_sym_BSLASHacrfull] = ACTIONS(5987), - [anon_sym_BSLASHAcrfull] = ACTIONS(5987), - [anon_sym_BSLASHACRfull] = ACTIONS(5987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5987), - [anon_sym_BSLASHacs] = ACTIONS(5987), - [anon_sym_BSLASHAcs] = ACTIONS(5987), - [anon_sym_BSLASHacsp] = ACTIONS(5987), - [anon_sym_BSLASHAcsp] = ACTIONS(5987), - [anon_sym_BSLASHacl] = ACTIONS(5987), - [anon_sym_BSLASHAcl] = ACTIONS(5987), - [anon_sym_BSLASHaclp] = ACTIONS(5987), - [anon_sym_BSLASHAclp] = ACTIONS(5987), - [anon_sym_BSLASHacf] = ACTIONS(5987), - [anon_sym_BSLASHAcf] = ACTIONS(5987), - [anon_sym_BSLASHacfp] = ACTIONS(5987), - [anon_sym_BSLASHAcfp] = ACTIONS(5987), - [anon_sym_BSLASHac] = ACTIONS(5987), - [anon_sym_BSLASHAc] = ACTIONS(5987), - [anon_sym_BSLASHacp] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5987), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5987), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5987), - [anon_sym_BSLASHcolor] = ACTIONS(5987), - [anon_sym_BSLASHcolorbox] = ACTIONS(5987), - [anon_sym_BSLASHtextcolor] = ACTIONS(5987), - [anon_sym_BSLASHpagecolor] = ACTIONS(5987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5987), - }, - [1914] = { - [sym_curly_group] = STATE(1922), - [sym_brack_group_text] = STATE(2683), - [sym_command_name] = ACTIONS(5993), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5995), - [anon_sym_COMMA] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(5995), - [anon_sym_LBRACE] = ACTIONS(6966), - [anon_sym_RBRACE] = ACTIONS(5995), - [sym_word] = ACTIONS(5993), - [sym_placeholder] = ACTIONS(5995), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5995), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_LT] = ACTIONS(5993), - [anon_sym_GT] = ACTIONS(5993), - [anon_sym_BANG] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_SQUOTE] = ACTIONS(5993), - [anon_sym__] = ACTIONS(5995), - [anon_sym_CARET] = ACTIONS(5995), - [anon_sym_BSLASHtitle] = ACTIONS(5993), - [anon_sym_BSLASHauthor] = ACTIONS(5993), - [anon_sym_BSLASHusepackage] = ACTIONS(5993), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5993), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5993), - [anon_sym_BSLASHinclude] = ACTIONS(5993), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5993), - [anon_sym_BSLASHinput] = ACTIONS(5993), - [anon_sym_BSLASHsubfile] = ACTIONS(5993), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5993), - [anon_sym_BSLASHbibliography] = ACTIONS(5993), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5993), - [anon_sym_BSLASHincludesvg] = ACTIONS(5993), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5993), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5993), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5993), - [anon_sym_BSLASHimport] = ACTIONS(5993), - [anon_sym_BSLASHsubimport] = ACTIONS(5993), - [anon_sym_BSLASHinputfrom] = ACTIONS(5993), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5993), - [anon_sym_BSLASHincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5993), - [anon_sym_BSLASHcaption] = ACTIONS(5993), - [anon_sym_BSLASHcite] = ACTIONS(5993), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCite] = ACTIONS(5993), - [anon_sym_BSLASHnocite] = ACTIONS(5993), - [anon_sym_BSLASHcitet] = ACTIONS(5993), - [anon_sym_BSLASHcitep] = ACTIONS(5993), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteauthor] = ACTIONS(5993), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5993), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitetitle] = ACTIONS(5993), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteyear] = ACTIONS(5993), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5995), - [anon_sym_BSLASHcitedate] = ACTIONS(5993), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5995), - [anon_sym_BSLASHciteurl] = ACTIONS(5993), - [anon_sym_BSLASHfullcite] = ACTIONS(5993), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5993), - [anon_sym_BSLASHcitealt] = ACTIONS(5993), - [anon_sym_BSLASHcitealp] = ACTIONS(5993), - [anon_sym_BSLASHcitetext] = ACTIONS(5993), - [anon_sym_BSLASHparencite] = ACTIONS(5993), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHParencite] = ACTIONS(5993), - [anon_sym_BSLASHfootcite] = ACTIONS(5993), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5993), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5993), - [anon_sym_BSLASHtextcite] = ACTIONS(5993), - [anon_sym_BSLASHTextcite] = ACTIONS(5993), - [anon_sym_BSLASHsmartcite] = ACTIONS(5993), - [anon_sym_BSLASHSmartcite] = ACTIONS(5993), - [anon_sym_BSLASHsupercite] = ACTIONS(5993), - [anon_sym_BSLASHautocite] = ACTIONS(5993), - [anon_sym_BSLASHAutocite] = ACTIONS(5993), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5995), - [anon_sym_BSLASHvolcite] = ACTIONS(5993), - [anon_sym_BSLASHVolcite] = ACTIONS(5993), - [anon_sym_BSLASHpvolcite] = ACTIONS(5993), - [anon_sym_BSLASHPvolcite] = ACTIONS(5993), - [anon_sym_BSLASHfvolcite] = ACTIONS(5993), - [anon_sym_BSLASHftvolcite] = ACTIONS(5993), - [anon_sym_BSLASHsvolcite] = ACTIONS(5993), - [anon_sym_BSLASHSvolcite] = ACTIONS(5993), - [anon_sym_BSLASHtvolcite] = ACTIONS(5993), - [anon_sym_BSLASHTvolcite] = ACTIONS(5993), - [anon_sym_BSLASHavolcite] = ACTIONS(5993), - [anon_sym_BSLASHAvolcite] = ACTIONS(5993), - [anon_sym_BSLASHnotecite] = ACTIONS(5993), - [anon_sym_BSLASHNotecite] = ACTIONS(5993), - [anon_sym_BSLASHpnotecite] = ACTIONS(5993), - [anon_sym_BSLASHPnotecite] = ACTIONS(5993), - [anon_sym_BSLASHfnotecite] = ACTIONS(5993), - [anon_sym_BSLASHlabel] = ACTIONS(5993), - [anon_sym_BSLASHref] = ACTIONS(5993), - [anon_sym_BSLASHeqref] = ACTIONS(5993), - [anon_sym_BSLASHvref] = ACTIONS(5993), - [anon_sym_BSLASHVref] = ACTIONS(5993), - [anon_sym_BSLASHautoref] = ACTIONS(5993), - [anon_sym_BSLASHpageref] = ACTIONS(5993), - [anon_sym_BSLASHcref] = ACTIONS(5993), - [anon_sym_BSLASHCref] = ACTIONS(5993), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnameCref] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5993), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5993), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5993), - [anon_sym_BSLASHlabelcref] = ACTIONS(5993), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange] = ACTIONS(5993), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHCrefrange] = ACTIONS(5993), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5995), - [anon_sym_BSLASHnewlabel] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand] = ACTIONS(5993), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5993), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5995), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5993), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5995), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5993), - [anon_sym_BSLASHdef] = ACTIONS(5993), - [anon_sym_BSLASHlet] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5993), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5993), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5993), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5993), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5993), - [anon_sym_BSLASHgls] = ACTIONS(5993), - [anon_sym_BSLASHGls] = ACTIONS(5993), - [anon_sym_BSLASHGLS] = ACTIONS(5993), - [anon_sym_BSLASHglspl] = ACTIONS(5993), - [anon_sym_BSLASHGlspl] = ACTIONS(5993), - [anon_sym_BSLASHGLSpl] = ACTIONS(5993), - [anon_sym_BSLASHglsdisp] = ACTIONS(5993), - [anon_sym_BSLASHglslink] = ACTIONS(5993), - [anon_sym_BSLASHglstext] = ACTIONS(5993), - [anon_sym_BSLASHGlstext] = ACTIONS(5993), - [anon_sym_BSLASHGLStext] = ACTIONS(5993), - [anon_sym_BSLASHglsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5993), - [anon_sym_BSLASHglsplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSplural] = ACTIONS(5993), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5993), - [anon_sym_BSLASHglsname] = ACTIONS(5993), - [anon_sym_BSLASHGlsname] = ACTIONS(5993), - [anon_sym_BSLASHGLSname] = ACTIONS(5993), - [anon_sym_BSLASHglssymbol] = ACTIONS(5993), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5993), - [anon_sym_BSLASHglsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5993), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5993), - [anon_sym_BSLASHglsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5993), - [anon_sym_BSLASHglsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5993), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5993), - [anon_sym_BSLASHglsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5993), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5993), - [anon_sym_BSLASHglsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5993), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5993), - [anon_sym_BSLASHnewacronym] = ACTIONS(5993), - [anon_sym_BSLASHacrshort] = ACTIONS(5993), - [anon_sym_BSLASHAcrshort] = ACTIONS(5993), - [anon_sym_BSLASHACRshort] = ACTIONS(5993), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5993), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5993), - [anon_sym_BSLASHacrlong] = ACTIONS(5993), - [anon_sym_BSLASHAcrlong] = ACTIONS(5993), - [anon_sym_BSLASHACRlong] = ACTIONS(5993), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5993), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5993), - [anon_sym_BSLASHacrfull] = ACTIONS(5993), - [anon_sym_BSLASHAcrfull] = ACTIONS(5993), - [anon_sym_BSLASHACRfull] = ACTIONS(5993), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5993), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5993), - [anon_sym_BSLASHacs] = ACTIONS(5993), - [anon_sym_BSLASHAcs] = ACTIONS(5993), - [anon_sym_BSLASHacsp] = ACTIONS(5993), - [anon_sym_BSLASHAcsp] = ACTIONS(5993), - [anon_sym_BSLASHacl] = ACTIONS(5993), - [anon_sym_BSLASHAcl] = ACTIONS(5993), - [anon_sym_BSLASHaclp] = ACTIONS(5993), - [anon_sym_BSLASHAclp] = ACTIONS(5993), - [anon_sym_BSLASHacf] = ACTIONS(5993), - [anon_sym_BSLASHAcf] = ACTIONS(5993), - [anon_sym_BSLASHacfp] = ACTIONS(5993), - [anon_sym_BSLASHAcfp] = ACTIONS(5993), - [anon_sym_BSLASHac] = ACTIONS(5993), - [anon_sym_BSLASHAc] = ACTIONS(5993), - [anon_sym_BSLASHacp] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5993), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5993), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5993), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5993), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5993), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5993), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5993), - [anon_sym_BSLASHcolor] = ACTIONS(5993), - [anon_sym_BSLASHcolorbox] = ACTIONS(5993), - [anon_sym_BSLASHtextcolor] = ACTIONS(5993), - [anon_sym_BSLASHpagecolor] = ACTIONS(5993), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5993), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5993), - }, - [1915] = { - [sym_curly_group] = STATE(1929), - [aux_sym_generic_command_repeat1] = STATE(1915), - [sym_command_name] = ACTIONS(5976), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5976), - [anon_sym_RBRACK] = ACTIONS(5978), - [anon_sym_COMMA] = ACTIONS(5978), - [anon_sym_EQ] = ACTIONS(5978), - [anon_sym_LBRACE] = ACTIONS(6968), - [anon_sym_RBRACE] = ACTIONS(5978), - [sym_word] = ACTIONS(5976), - [sym_placeholder] = ACTIONS(5978), - [anon_sym_PLUS] = ACTIONS(5978), - [anon_sym_DASH] = ACTIONS(5978), - [anon_sym_STAR] = ACTIONS(5978), - [anon_sym_SLASH] = ACTIONS(5978), - [anon_sym_LT] = ACTIONS(5976), - [anon_sym_GT] = ACTIONS(5976), - [anon_sym_BANG] = ACTIONS(5976), - [anon_sym_PIPE] = ACTIONS(5976), - [anon_sym_COLON] = ACTIONS(5976), - [anon_sym_SQUOTE] = ACTIONS(5976), - [anon_sym__] = ACTIONS(5978), - [anon_sym_CARET] = ACTIONS(5978), - [anon_sym_BSLASHtitle] = ACTIONS(5976), - [anon_sym_BSLASHauthor] = ACTIONS(5976), - [anon_sym_BSLASHusepackage] = ACTIONS(5976), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5976), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5976), - [anon_sym_BSLASHinclude] = ACTIONS(5976), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5976), - [anon_sym_BSLASHinput] = ACTIONS(5976), - [anon_sym_BSLASHsubfile] = ACTIONS(5976), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5976), - [anon_sym_BSLASHbibliography] = ACTIONS(5976), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5976), - [anon_sym_BSLASHincludesvg] = ACTIONS(5976), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5976), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5976), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5976), - [anon_sym_BSLASHimport] = ACTIONS(5976), - [anon_sym_BSLASHsubimport] = ACTIONS(5976), - [anon_sym_BSLASHinputfrom] = ACTIONS(5976), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5976), - [anon_sym_BSLASHincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5976), - [anon_sym_BSLASHcaption] = ACTIONS(5976), - [anon_sym_BSLASHcite] = ACTIONS(5976), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCite] = ACTIONS(5976), - [anon_sym_BSLASHnocite] = ACTIONS(5976), - [anon_sym_BSLASHcitet] = ACTIONS(5976), - [anon_sym_BSLASHcitep] = ACTIONS(5976), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteauthor] = ACTIONS(5976), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5976), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitetitle] = ACTIONS(5976), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteyear] = ACTIONS(5976), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5978), - [anon_sym_BSLASHcitedate] = ACTIONS(5976), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5978), - [anon_sym_BSLASHciteurl] = ACTIONS(5976), - [anon_sym_BSLASHfullcite] = ACTIONS(5976), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5976), - [anon_sym_BSLASHcitealt] = ACTIONS(5976), - [anon_sym_BSLASHcitealp] = ACTIONS(5976), - [anon_sym_BSLASHcitetext] = ACTIONS(5976), - [anon_sym_BSLASHparencite] = ACTIONS(5976), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHParencite] = ACTIONS(5976), - [anon_sym_BSLASHfootcite] = ACTIONS(5976), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5976), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5976), - [anon_sym_BSLASHtextcite] = ACTIONS(5976), - [anon_sym_BSLASHTextcite] = ACTIONS(5976), - [anon_sym_BSLASHsmartcite] = ACTIONS(5976), - [anon_sym_BSLASHSmartcite] = ACTIONS(5976), - [anon_sym_BSLASHsupercite] = ACTIONS(5976), - [anon_sym_BSLASHautocite] = ACTIONS(5976), - [anon_sym_BSLASHAutocite] = ACTIONS(5976), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5978), - [anon_sym_BSLASHvolcite] = ACTIONS(5976), - [anon_sym_BSLASHVolcite] = ACTIONS(5976), - [anon_sym_BSLASHpvolcite] = ACTIONS(5976), - [anon_sym_BSLASHPvolcite] = ACTIONS(5976), - [anon_sym_BSLASHfvolcite] = ACTIONS(5976), - [anon_sym_BSLASHftvolcite] = ACTIONS(5976), - [anon_sym_BSLASHsvolcite] = ACTIONS(5976), - [anon_sym_BSLASHSvolcite] = ACTIONS(5976), - [anon_sym_BSLASHtvolcite] = ACTIONS(5976), - [anon_sym_BSLASHTvolcite] = ACTIONS(5976), - [anon_sym_BSLASHavolcite] = ACTIONS(5976), - [anon_sym_BSLASHAvolcite] = ACTIONS(5976), - [anon_sym_BSLASHnotecite] = ACTIONS(5976), - [anon_sym_BSLASHNotecite] = ACTIONS(5976), - [anon_sym_BSLASHpnotecite] = ACTIONS(5976), - [anon_sym_BSLASHPnotecite] = ACTIONS(5976), - [anon_sym_BSLASHfnotecite] = ACTIONS(5976), - [anon_sym_BSLASHlabel] = ACTIONS(5976), - [anon_sym_BSLASHref] = ACTIONS(5976), - [anon_sym_BSLASHeqref] = ACTIONS(5976), - [anon_sym_BSLASHvref] = ACTIONS(5976), - [anon_sym_BSLASHVref] = ACTIONS(5976), - [anon_sym_BSLASHautoref] = ACTIONS(5976), - [anon_sym_BSLASHpageref] = ACTIONS(5976), - [anon_sym_BSLASHcref] = ACTIONS(5976), - [anon_sym_BSLASHCref] = ACTIONS(5976), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnameCref] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5976), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5976), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5976), - [anon_sym_BSLASHlabelcref] = ACTIONS(5976), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange] = ACTIONS(5976), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHCrefrange] = ACTIONS(5976), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5978), - [anon_sym_BSLASHnewlabel] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand] = ACTIONS(5976), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5976), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5978), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5976), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5978), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5976), - [anon_sym_BSLASHdef] = ACTIONS(5976), - [anon_sym_BSLASHlet] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5976), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5976), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5976), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5976), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5976), - [anon_sym_BSLASHgls] = ACTIONS(5976), - [anon_sym_BSLASHGls] = ACTIONS(5976), - [anon_sym_BSLASHGLS] = ACTIONS(5976), - [anon_sym_BSLASHglspl] = ACTIONS(5976), - [anon_sym_BSLASHGlspl] = ACTIONS(5976), - [anon_sym_BSLASHGLSpl] = ACTIONS(5976), - [anon_sym_BSLASHglsdisp] = ACTIONS(5976), - [anon_sym_BSLASHglslink] = ACTIONS(5976), - [anon_sym_BSLASHglstext] = ACTIONS(5976), - [anon_sym_BSLASHGlstext] = ACTIONS(5976), - [anon_sym_BSLASHGLStext] = ACTIONS(5976), - [anon_sym_BSLASHglsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5976), - [anon_sym_BSLASHglsplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSplural] = ACTIONS(5976), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5976), - [anon_sym_BSLASHglsname] = ACTIONS(5976), - [anon_sym_BSLASHGlsname] = ACTIONS(5976), - [anon_sym_BSLASHGLSname] = ACTIONS(5976), - [anon_sym_BSLASHglssymbol] = ACTIONS(5976), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5976), - [anon_sym_BSLASHglsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5976), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5976), - [anon_sym_BSLASHglsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5976), - [anon_sym_BSLASHglsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5976), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5976), - [anon_sym_BSLASHglsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5976), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5976), - [anon_sym_BSLASHglsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5976), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5976), - [anon_sym_BSLASHnewacronym] = ACTIONS(5976), - [anon_sym_BSLASHacrshort] = ACTIONS(5976), - [anon_sym_BSLASHAcrshort] = ACTIONS(5976), - [anon_sym_BSLASHACRshort] = ACTIONS(5976), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5976), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5976), - [anon_sym_BSLASHacrlong] = ACTIONS(5976), - [anon_sym_BSLASHAcrlong] = ACTIONS(5976), - [anon_sym_BSLASHACRlong] = ACTIONS(5976), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5976), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5976), - [anon_sym_BSLASHacrfull] = ACTIONS(5976), - [anon_sym_BSLASHAcrfull] = ACTIONS(5976), - [anon_sym_BSLASHACRfull] = ACTIONS(5976), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5976), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5976), - [anon_sym_BSLASHacs] = ACTIONS(5976), - [anon_sym_BSLASHAcs] = ACTIONS(5976), - [anon_sym_BSLASHacsp] = ACTIONS(5976), - [anon_sym_BSLASHAcsp] = ACTIONS(5976), - [anon_sym_BSLASHacl] = ACTIONS(5976), - [anon_sym_BSLASHAcl] = ACTIONS(5976), - [anon_sym_BSLASHaclp] = ACTIONS(5976), - [anon_sym_BSLASHAclp] = ACTIONS(5976), - [anon_sym_BSLASHacf] = ACTIONS(5976), - [anon_sym_BSLASHAcf] = ACTIONS(5976), - [anon_sym_BSLASHacfp] = ACTIONS(5976), - [anon_sym_BSLASHAcfp] = ACTIONS(5976), - [anon_sym_BSLASHac] = ACTIONS(5976), - [anon_sym_BSLASHAc] = ACTIONS(5976), - [anon_sym_BSLASHacp] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5976), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5976), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5976), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5976), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5976), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5978), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5976), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5976), - [anon_sym_BSLASHcolor] = ACTIONS(5976), - [anon_sym_BSLASHcolorbox] = ACTIONS(5976), - [anon_sym_BSLASHtextcolor] = ACTIONS(5976), - [anon_sym_BSLASHpagecolor] = ACTIONS(5976), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5976), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5976), - }, - [1916] = { - [sym_curly_group] = STATE(1929), - [aux_sym_generic_command_repeat1] = STATE(1917), - [sym_command_name] = ACTIONS(5983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5983), - [anon_sym_RBRACK] = ACTIONS(5985), - [anon_sym_COMMA] = ACTIONS(5985), - [anon_sym_EQ] = ACTIONS(5985), - [anon_sym_LBRACE] = ACTIONS(6966), - [anon_sym_RBRACE] = ACTIONS(5985), - [sym_word] = ACTIONS(5983), - [sym_placeholder] = ACTIONS(5985), - [anon_sym_PLUS] = ACTIONS(5985), - [anon_sym_DASH] = ACTIONS(5985), - [anon_sym_STAR] = ACTIONS(5985), - [anon_sym_SLASH] = ACTIONS(5985), - [anon_sym_LT] = ACTIONS(5983), - [anon_sym_GT] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5983), - [anon_sym_PIPE] = ACTIONS(5983), - [anon_sym_COLON] = ACTIONS(5983), - [anon_sym_SQUOTE] = ACTIONS(5983), - [anon_sym__] = ACTIONS(5985), - [anon_sym_CARET] = ACTIONS(5985), - [anon_sym_BSLASHtitle] = ACTIONS(5983), - [anon_sym_BSLASHauthor] = ACTIONS(5983), - [anon_sym_BSLASHusepackage] = ACTIONS(5983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5983), - [anon_sym_BSLASHinclude] = ACTIONS(5983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5983), - [anon_sym_BSLASHinput] = ACTIONS(5983), - [anon_sym_BSLASHsubfile] = ACTIONS(5983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5983), - [anon_sym_BSLASHbibliography] = ACTIONS(5983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5983), - [anon_sym_BSLASHincludesvg] = ACTIONS(5983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5983), - [anon_sym_BSLASHimport] = ACTIONS(5983), - [anon_sym_BSLASHsubimport] = ACTIONS(5983), - [anon_sym_BSLASHinputfrom] = ACTIONS(5983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5983), - [anon_sym_BSLASHincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5983), - [anon_sym_BSLASHcaption] = ACTIONS(5983), - [anon_sym_BSLASHcite] = ACTIONS(5983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCite] = ACTIONS(5983), - [anon_sym_BSLASHnocite] = ACTIONS(5983), - [anon_sym_BSLASHcitet] = ACTIONS(5983), - [anon_sym_BSLASHcitep] = ACTIONS(5983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteauthor] = ACTIONS(5983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitetitle] = ACTIONS(5983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteyear] = ACTIONS(5983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5985), - [anon_sym_BSLASHcitedate] = ACTIONS(5983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5985), - [anon_sym_BSLASHciteurl] = ACTIONS(5983), - [anon_sym_BSLASHfullcite] = ACTIONS(5983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5983), - [anon_sym_BSLASHcitealt] = ACTIONS(5983), - [anon_sym_BSLASHcitealp] = ACTIONS(5983), - [anon_sym_BSLASHcitetext] = ACTIONS(5983), - [anon_sym_BSLASHparencite] = ACTIONS(5983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHParencite] = ACTIONS(5983), - [anon_sym_BSLASHfootcite] = ACTIONS(5983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5983), - [anon_sym_BSLASHtextcite] = ACTIONS(5983), - [anon_sym_BSLASHTextcite] = ACTIONS(5983), - [anon_sym_BSLASHsmartcite] = ACTIONS(5983), - [anon_sym_BSLASHSmartcite] = ACTIONS(5983), - [anon_sym_BSLASHsupercite] = ACTIONS(5983), - [anon_sym_BSLASHautocite] = ACTIONS(5983), - [anon_sym_BSLASHAutocite] = ACTIONS(5983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5985), - [anon_sym_BSLASHvolcite] = ACTIONS(5983), - [anon_sym_BSLASHVolcite] = ACTIONS(5983), - [anon_sym_BSLASHpvolcite] = ACTIONS(5983), - [anon_sym_BSLASHPvolcite] = ACTIONS(5983), - [anon_sym_BSLASHfvolcite] = ACTIONS(5983), - [anon_sym_BSLASHftvolcite] = ACTIONS(5983), - [anon_sym_BSLASHsvolcite] = ACTIONS(5983), - [anon_sym_BSLASHSvolcite] = ACTIONS(5983), - [anon_sym_BSLASHtvolcite] = ACTIONS(5983), - [anon_sym_BSLASHTvolcite] = ACTIONS(5983), - [anon_sym_BSLASHavolcite] = ACTIONS(5983), - [anon_sym_BSLASHAvolcite] = ACTIONS(5983), - [anon_sym_BSLASHnotecite] = ACTIONS(5983), - [anon_sym_BSLASHNotecite] = ACTIONS(5983), - [anon_sym_BSLASHpnotecite] = ACTIONS(5983), - [anon_sym_BSLASHPnotecite] = ACTIONS(5983), - [anon_sym_BSLASHfnotecite] = ACTIONS(5983), - [anon_sym_BSLASHlabel] = ACTIONS(5983), - [anon_sym_BSLASHref] = ACTIONS(5983), - [anon_sym_BSLASHeqref] = ACTIONS(5983), - [anon_sym_BSLASHvref] = ACTIONS(5983), - [anon_sym_BSLASHVref] = ACTIONS(5983), - [anon_sym_BSLASHautoref] = ACTIONS(5983), - [anon_sym_BSLASHpageref] = ACTIONS(5983), - [anon_sym_BSLASHcref] = ACTIONS(5983), - [anon_sym_BSLASHCref] = ACTIONS(5983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnameCref] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5983), - [anon_sym_BSLASHlabelcref] = ACTIONS(5983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange] = ACTIONS(5983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHCrefrange] = ACTIONS(5983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5985), - [anon_sym_BSLASHnewlabel] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand] = ACTIONS(5983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5985), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5983), - [anon_sym_BSLASHdef] = ACTIONS(5983), - [anon_sym_BSLASHlet] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5983), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5983), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5983), - [anon_sym_BSLASHgls] = ACTIONS(5983), - [anon_sym_BSLASHGls] = ACTIONS(5983), - [anon_sym_BSLASHGLS] = ACTIONS(5983), - [anon_sym_BSLASHglspl] = ACTIONS(5983), - [anon_sym_BSLASHGlspl] = ACTIONS(5983), - [anon_sym_BSLASHGLSpl] = ACTIONS(5983), - [anon_sym_BSLASHglsdisp] = ACTIONS(5983), - [anon_sym_BSLASHglslink] = ACTIONS(5983), - [anon_sym_BSLASHglstext] = ACTIONS(5983), - [anon_sym_BSLASHGlstext] = ACTIONS(5983), - [anon_sym_BSLASHGLStext] = ACTIONS(5983), - [anon_sym_BSLASHglsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5983), - [anon_sym_BSLASHglsplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSplural] = ACTIONS(5983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5983), - [anon_sym_BSLASHglsname] = ACTIONS(5983), - [anon_sym_BSLASHGlsname] = ACTIONS(5983), - [anon_sym_BSLASHGLSname] = ACTIONS(5983), - [anon_sym_BSLASHglssymbol] = ACTIONS(5983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5983), - [anon_sym_BSLASHglsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5983), - [anon_sym_BSLASHglsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5983), - [anon_sym_BSLASHglsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5983), - [anon_sym_BSLASHglsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5983), - [anon_sym_BSLASHglsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5983), - [anon_sym_BSLASHnewacronym] = ACTIONS(5983), - [anon_sym_BSLASHacrshort] = ACTIONS(5983), - [anon_sym_BSLASHAcrshort] = ACTIONS(5983), - [anon_sym_BSLASHACRshort] = ACTIONS(5983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5983), - [anon_sym_BSLASHacrlong] = ACTIONS(5983), - [anon_sym_BSLASHAcrlong] = ACTIONS(5983), - [anon_sym_BSLASHACRlong] = ACTIONS(5983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5983), - [anon_sym_BSLASHacrfull] = ACTIONS(5983), - [anon_sym_BSLASHAcrfull] = ACTIONS(5983), - [anon_sym_BSLASHACRfull] = ACTIONS(5983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5983), - [anon_sym_BSLASHacs] = ACTIONS(5983), - [anon_sym_BSLASHAcs] = ACTIONS(5983), - [anon_sym_BSLASHacsp] = ACTIONS(5983), - [anon_sym_BSLASHAcsp] = ACTIONS(5983), - [anon_sym_BSLASHacl] = ACTIONS(5983), - [anon_sym_BSLASHAcl] = ACTIONS(5983), - [anon_sym_BSLASHaclp] = ACTIONS(5983), - [anon_sym_BSLASHAclp] = ACTIONS(5983), - [anon_sym_BSLASHacf] = ACTIONS(5983), - [anon_sym_BSLASHAcf] = ACTIONS(5983), - [anon_sym_BSLASHacfp] = ACTIONS(5983), - [anon_sym_BSLASHAcfp] = ACTIONS(5983), - [anon_sym_BSLASHac] = ACTIONS(5983), - [anon_sym_BSLASHAc] = ACTIONS(5983), - [anon_sym_BSLASHacp] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5983), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5983), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5983), - [anon_sym_BSLASHcolor] = ACTIONS(5983), - [anon_sym_BSLASHcolorbox] = ACTIONS(5983), - [anon_sym_BSLASHtextcolor] = ACTIONS(5983), - [anon_sym_BSLASHpagecolor] = ACTIONS(5983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5983), - }, - [1917] = { - [sym_curly_group] = STATE(1929), - [aux_sym_generic_command_repeat1] = STATE(1915), - [sym_command_name] = ACTIONS(5964), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5964), - [anon_sym_RBRACK] = ACTIONS(5966), - [anon_sym_COMMA] = ACTIONS(5966), - [anon_sym_EQ] = ACTIONS(5966), - [anon_sym_LBRACE] = ACTIONS(6966), - [anon_sym_RBRACE] = ACTIONS(5966), - [sym_word] = ACTIONS(5964), - [sym_placeholder] = ACTIONS(5966), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5966), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_LT] = ACTIONS(5964), - [anon_sym_GT] = ACTIONS(5964), - [anon_sym_BANG] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_SQUOTE] = ACTIONS(5964), - [anon_sym__] = ACTIONS(5966), - [anon_sym_CARET] = ACTIONS(5966), - [anon_sym_BSLASHtitle] = ACTIONS(5964), - [anon_sym_BSLASHauthor] = ACTIONS(5964), - [anon_sym_BSLASHusepackage] = ACTIONS(5964), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5964), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5964), - [anon_sym_BSLASHinclude] = ACTIONS(5964), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5964), - [anon_sym_BSLASHinput] = ACTIONS(5964), - [anon_sym_BSLASHsubfile] = ACTIONS(5964), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5964), - [anon_sym_BSLASHbibliography] = ACTIONS(5964), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5964), - [anon_sym_BSLASHincludesvg] = ACTIONS(5964), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5964), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5964), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5964), - [anon_sym_BSLASHimport] = ACTIONS(5964), - [anon_sym_BSLASHsubimport] = ACTIONS(5964), - [anon_sym_BSLASHinputfrom] = ACTIONS(5964), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5964), - [anon_sym_BSLASHincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5964), - [anon_sym_BSLASHcaption] = ACTIONS(5964), - [anon_sym_BSLASHcite] = ACTIONS(5964), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCite] = ACTIONS(5964), - [anon_sym_BSLASHnocite] = ACTIONS(5964), - [anon_sym_BSLASHcitet] = ACTIONS(5964), - [anon_sym_BSLASHcitep] = ACTIONS(5964), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteauthor] = ACTIONS(5964), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5964), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitetitle] = ACTIONS(5964), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteyear] = ACTIONS(5964), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5966), - [anon_sym_BSLASHcitedate] = ACTIONS(5964), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5966), - [anon_sym_BSLASHciteurl] = ACTIONS(5964), - [anon_sym_BSLASHfullcite] = ACTIONS(5964), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5964), - [anon_sym_BSLASHcitealt] = ACTIONS(5964), - [anon_sym_BSLASHcitealp] = ACTIONS(5964), - [anon_sym_BSLASHcitetext] = ACTIONS(5964), - [anon_sym_BSLASHparencite] = ACTIONS(5964), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHParencite] = ACTIONS(5964), - [anon_sym_BSLASHfootcite] = ACTIONS(5964), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5964), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5964), - [anon_sym_BSLASHtextcite] = ACTIONS(5964), - [anon_sym_BSLASHTextcite] = ACTIONS(5964), - [anon_sym_BSLASHsmartcite] = ACTIONS(5964), - [anon_sym_BSLASHSmartcite] = ACTIONS(5964), - [anon_sym_BSLASHsupercite] = ACTIONS(5964), - [anon_sym_BSLASHautocite] = ACTIONS(5964), - [anon_sym_BSLASHAutocite] = ACTIONS(5964), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5966), - [anon_sym_BSLASHvolcite] = ACTIONS(5964), - [anon_sym_BSLASHVolcite] = ACTIONS(5964), - [anon_sym_BSLASHpvolcite] = ACTIONS(5964), - [anon_sym_BSLASHPvolcite] = ACTIONS(5964), - [anon_sym_BSLASHfvolcite] = ACTIONS(5964), - [anon_sym_BSLASHftvolcite] = ACTIONS(5964), - [anon_sym_BSLASHsvolcite] = ACTIONS(5964), - [anon_sym_BSLASHSvolcite] = ACTIONS(5964), - [anon_sym_BSLASHtvolcite] = ACTIONS(5964), - [anon_sym_BSLASHTvolcite] = ACTIONS(5964), - [anon_sym_BSLASHavolcite] = ACTIONS(5964), - [anon_sym_BSLASHAvolcite] = ACTIONS(5964), - [anon_sym_BSLASHnotecite] = ACTIONS(5964), - [anon_sym_BSLASHNotecite] = ACTIONS(5964), - [anon_sym_BSLASHpnotecite] = ACTIONS(5964), - [anon_sym_BSLASHPnotecite] = ACTIONS(5964), - [anon_sym_BSLASHfnotecite] = ACTIONS(5964), - [anon_sym_BSLASHlabel] = ACTIONS(5964), - [anon_sym_BSLASHref] = ACTIONS(5964), - [anon_sym_BSLASHeqref] = ACTIONS(5964), - [anon_sym_BSLASHvref] = ACTIONS(5964), - [anon_sym_BSLASHVref] = ACTIONS(5964), - [anon_sym_BSLASHautoref] = ACTIONS(5964), - [anon_sym_BSLASHpageref] = ACTIONS(5964), - [anon_sym_BSLASHcref] = ACTIONS(5964), - [anon_sym_BSLASHCref] = ACTIONS(5964), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnameCref] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5964), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5964), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5964), - [anon_sym_BSLASHlabelcref] = ACTIONS(5964), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange] = ACTIONS(5964), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHCrefrange] = ACTIONS(5964), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5966), - [anon_sym_BSLASHnewlabel] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand] = ACTIONS(5964), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5964), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5966), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5964), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5966), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5964), - [anon_sym_BSLASHdef] = ACTIONS(5964), - [anon_sym_BSLASHlet] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5964), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5964), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5964), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5964), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5964), - [anon_sym_BSLASHgls] = ACTIONS(5964), - [anon_sym_BSLASHGls] = ACTIONS(5964), - [anon_sym_BSLASHGLS] = ACTIONS(5964), - [anon_sym_BSLASHglspl] = ACTIONS(5964), - [anon_sym_BSLASHGlspl] = ACTIONS(5964), - [anon_sym_BSLASHGLSpl] = ACTIONS(5964), - [anon_sym_BSLASHglsdisp] = ACTIONS(5964), - [anon_sym_BSLASHglslink] = ACTIONS(5964), - [anon_sym_BSLASHglstext] = ACTIONS(5964), - [anon_sym_BSLASHGlstext] = ACTIONS(5964), - [anon_sym_BSLASHGLStext] = ACTIONS(5964), - [anon_sym_BSLASHglsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5964), - [anon_sym_BSLASHglsplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSplural] = ACTIONS(5964), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5964), - [anon_sym_BSLASHglsname] = ACTIONS(5964), - [anon_sym_BSLASHGlsname] = ACTIONS(5964), - [anon_sym_BSLASHGLSname] = ACTIONS(5964), - [anon_sym_BSLASHglssymbol] = ACTIONS(5964), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5964), - [anon_sym_BSLASHglsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5964), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5964), - [anon_sym_BSLASHglsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5964), - [anon_sym_BSLASHglsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5964), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5964), - [anon_sym_BSLASHglsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5964), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5964), - [anon_sym_BSLASHglsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5964), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5964), - [anon_sym_BSLASHnewacronym] = ACTIONS(5964), - [anon_sym_BSLASHacrshort] = ACTIONS(5964), - [anon_sym_BSLASHAcrshort] = ACTIONS(5964), - [anon_sym_BSLASHACRshort] = ACTIONS(5964), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5964), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5964), - [anon_sym_BSLASHacrlong] = ACTIONS(5964), - [anon_sym_BSLASHAcrlong] = ACTIONS(5964), - [anon_sym_BSLASHACRlong] = ACTIONS(5964), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5964), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5964), - [anon_sym_BSLASHacrfull] = ACTIONS(5964), - [anon_sym_BSLASHAcrfull] = ACTIONS(5964), - [anon_sym_BSLASHACRfull] = ACTIONS(5964), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5964), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5964), - [anon_sym_BSLASHacs] = ACTIONS(5964), - [anon_sym_BSLASHAcs] = ACTIONS(5964), - [anon_sym_BSLASHacsp] = ACTIONS(5964), - [anon_sym_BSLASHAcsp] = ACTIONS(5964), - [anon_sym_BSLASHacl] = ACTIONS(5964), - [anon_sym_BSLASHAcl] = ACTIONS(5964), - [anon_sym_BSLASHaclp] = ACTIONS(5964), - [anon_sym_BSLASHAclp] = ACTIONS(5964), - [anon_sym_BSLASHacf] = ACTIONS(5964), - [anon_sym_BSLASHAcf] = ACTIONS(5964), - [anon_sym_BSLASHacfp] = ACTIONS(5964), - [anon_sym_BSLASHAcfp] = ACTIONS(5964), - [anon_sym_BSLASHac] = ACTIONS(5964), - [anon_sym_BSLASHAc] = ACTIONS(5964), - [anon_sym_BSLASHacp] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5964), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5964), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5964), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5964), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5964), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5966), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5964), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5964), - [anon_sym_BSLASHcolor] = ACTIONS(5964), - [anon_sym_BSLASHcolorbox] = ACTIONS(5964), - [anon_sym_BSLASHtextcolor] = ACTIONS(5964), - [anon_sym_BSLASHpagecolor] = ACTIONS(5964), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5964), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5964), - }, - [1918] = { - [sym_command_name] = ACTIONS(6189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6189), - [anon_sym_LBRACK] = ACTIONS(6191), - [anon_sym_RBRACK] = ACTIONS(6191), - [anon_sym_COMMA] = ACTIONS(6191), - [anon_sym_EQ] = ACTIONS(6191), - [anon_sym_LBRACE] = ACTIONS(6191), - [anon_sym_RBRACE] = ACTIONS(6191), - [sym_word] = ACTIONS(6189), - [sym_placeholder] = ACTIONS(6191), - [anon_sym_PLUS] = ACTIONS(6191), - [anon_sym_DASH] = ACTIONS(6191), - [anon_sym_STAR] = ACTIONS(6191), - [anon_sym_SLASH] = ACTIONS(6191), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_COLON] = ACTIONS(6189), - [anon_sym_SQUOTE] = ACTIONS(6189), - [anon_sym__] = ACTIONS(6191), - [anon_sym_CARET] = ACTIONS(6191), - [anon_sym_BSLASHtitle] = ACTIONS(6189), - [anon_sym_BSLASHauthor] = ACTIONS(6189), - [anon_sym_BSLASHusepackage] = ACTIONS(6189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6189), - [anon_sym_BSLASHinclude] = ACTIONS(6189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6189), - [anon_sym_BSLASHinput] = ACTIONS(6189), - [anon_sym_BSLASHsubfile] = ACTIONS(6189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6189), - [anon_sym_BSLASHbibliography] = ACTIONS(6189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6189), - [anon_sym_BSLASHincludesvg] = ACTIONS(6189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6189), - [anon_sym_BSLASHimport] = ACTIONS(6189), - [anon_sym_BSLASHsubimport] = ACTIONS(6189), - [anon_sym_BSLASHinputfrom] = ACTIONS(6189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6189), - [anon_sym_BSLASHincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6189), - [anon_sym_BSLASHcaption] = ACTIONS(6189), - [anon_sym_BSLASHcite] = ACTIONS(6189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCite] = ACTIONS(6189), - [anon_sym_BSLASHnocite] = ACTIONS(6189), - [anon_sym_BSLASHcitet] = ACTIONS(6189), - [anon_sym_BSLASHcitep] = ACTIONS(6189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteauthor] = ACTIONS(6189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitetitle] = ACTIONS(6189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteyear] = ACTIONS(6189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6191), - [anon_sym_BSLASHcitedate] = ACTIONS(6189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6191), - [anon_sym_BSLASHciteurl] = ACTIONS(6189), - [anon_sym_BSLASHfullcite] = ACTIONS(6189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6189), - [anon_sym_BSLASHcitealt] = ACTIONS(6189), - [anon_sym_BSLASHcitealp] = ACTIONS(6189), - [anon_sym_BSLASHcitetext] = ACTIONS(6189), - [anon_sym_BSLASHparencite] = ACTIONS(6189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHParencite] = ACTIONS(6189), - [anon_sym_BSLASHfootcite] = ACTIONS(6189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6189), - [anon_sym_BSLASHtextcite] = ACTIONS(6189), - [anon_sym_BSLASHTextcite] = ACTIONS(6189), - [anon_sym_BSLASHsmartcite] = ACTIONS(6189), - [anon_sym_BSLASHSmartcite] = ACTIONS(6189), - [anon_sym_BSLASHsupercite] = ACTIONS(6189), - [anon_sym_BSLASHautocite] = ACTIONS(6189), - [anon_sym_BSLASHAutocite] = ACTIONS(6189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6191), - [anon_sym_BSLASHvolcite] = ACTIONS(6189), - [anon_sym_BSLASHVolcite] = ACTIONS(6189), - [anon_sym_BSLASHpvolcite] = ACTIONS(6189), - [anon_sym_BSLASHPvolcite] = ACTIONS(6189), - [anon_sym_BSLASHfvolcite] = ACTIONS(6189), - [anon_sym_BSLASHftvolcite] = ACTIONS(6189), - [anon_sym_BSLASHsvolcite] = ACTIONS(6189), - [anon_sym_BSLASHSvolcite] = ACTIONS(6189), - [anon_sym_BSLASHtvolcite] = ACTIONS(6189), - [anon_sym_BSLASHTvolcite] = ACTIONS(6189), - [anon_sym_BSLASHavolcite] = ACTIONS(6189), - [anon_sym_BSLASHAvolcite] = ACTIONS(6189), - [anon_sym_BSLASHnotecite] = ACTIONS(6189), - [anon_sym_BSLASHNotecite] = ACTIONS(6189), - [anon_sym_BSLASHpnotecite] = ACTIONS(6189), - [anon_sym_BSLASHPnotecite] = ACTIONS(6189), - [anon_sym_BSLASHfnotecite] = ACTIONS(6189), - [anon_sym_BSLASHlabel] = ACTIONS(6189), - [anon_sym_BSLASHref] = ACTIONS(6189), - [anon_sym_BSLASHeqref] = ACTIONS(6189), - [anon_sym_BSLASHvref] = ACTIONS(6189), - [anon_sym_BSLASHVref] = ACTIONS(6189), - [anon_sym_BSLASHautoref] = ACTIONS(6189), - [anon_sym_BSLASHpageref] = ACTIONS(6189), - [anon_sym_BSLASHcref] = ACTIONS(6189), - [anon_sym_BSLASHCref] = ACTIONS(6189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnameCref] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6189), - [anon_sym_BSLASHlabelcref] = ACTIONS(6189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange] = ACTIONS(6189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHCrefrange] = ACTIONS(6189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6191), - [anon_sym_BSLASHnewlabel] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand] = ACTIONS(6189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6191), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6189), - [anon_sym_BSLASHdef] = ACTIONS(6189), - [anon_sym_BSLASHlet] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6189), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6189), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6189), - [anon_sym_BSLASHgls] = ACTIONS(6189), - [anon_sym_BSLASHGls] = ACTIONS(6189), - [anon_sym_BSLASHGLS] = ACTIONS(6189), - [anon_sym_BSLASHglspl] = ACTIONS(6189), - [anon_sym_BSLASHGlspl] = ACTIONS(6189), - [anon_sym_BSLASHGLSpl] = ACTIONS(6189), - [anon_sym_BSLASHglsdisp] = ACTIONS(6189), - [anon_sym_BSLASHglslink] = ACTIONS(6189), - [anon_sym_BSLASHglstext] = ACTIONS(6189), - [anon_sym_BSLASHGlstext] = ACTIONS(6189), - [anon_sym_BSLASHGLStext] = ACTIONS(6189), - [anon_sym_BSLASHglsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6189), - [anon_sym_BSLASHglsplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSplural] = ACTIONS(6189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6189), - [anon_sym_BSLASHglsname] = ACTIONS(6189), - [anon_sym_BSLASHGlsname] = ACTIONS(6189), - [anon_sym_BSLASHGLSname] = ACTIONS(6189), - [anon_sym_BSLASHglssymbol] = ACTIONS(6189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6189), - [anon_sym_BSLASHglsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6189), - [anon_sym_BSLASHglsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6189), - [anon_sym_BSLASHglsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6189), - [anon_sym_BSLASHglsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6189), - [anon_sym_BSLASHglsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6189), - [anon_sym_BSLASHnewacronym] = ACTIONS(6189), - [anon_sym_BSLASHacrshort] = ACTIONS(6189), - [anon_sym_BSLASHAcrshort] = ACTIONS(6189), - [anon_sym_BSLASHACRshort] = ACTIONS(6189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6189), - [anon_sym_BSLASHacrlong] = ACTIONS(6189), - [anon_sym_BSLASHAcrlong] = ACTIONS(6189), - [anon_sym_BSLASHACRlong] = ACTIONS(6189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6189), - [anon_sym_BSLASHacrfull] = ACTIONS(6189), - [anon_sym_BSLASHAcrfull] = ACTIONS(6189), - [anon_sym_BSLASHACRfull] = ACTIONS(6189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6189), - [anon_sym_BSLASHacs] = ACTIONS(6189), - [anon_sym_BSLASHAcs] = ACTIONS(6189), - [anon_sym_BSLASHacsp] = ACTIONS(6189), - [anon_sym_BSLASHAcsp] = ACTIONS(6189), - [anon_sym_BSLASHacl] = ACTIONS(6189), - [anon_sym_BSLASHAcl] = ACTIONS(6189), - [anon_sym_BSLASHaclp] = ACTIONS(6189), - [anon_sym_BSLASHAclp] = ACTIONS(6189), - [anon_sym_BSLASHacf] = ACTIONS(6189), - [anon_sym_BSLASHAcf] = ACTIONS(6189), - [anon_sym_BSLASHacfp] = ACTIONS(6189), - [anon_sym_BSLASHAcfp] = ACTIONS(6189), - [anon_sym_BSLASHac] = ACTIONS(6189), - [anon_sym_BSLASHAc] = ACTIONS(6189), - [anon_sym_BSLASHacp] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6189), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6189), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6191), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6189), - [anon_sym_BSLASHcolor] = ACTIONS(6189), - [anon_sym_BSLASHcolorbox] = ACTIONS(6189), - [anon_sym_BSLASHtextcolor] = ACTIONS(6189), - [anon_sym_BSLASHpagecolor] = ACTIONS(6189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6189), - }, - [1919] = { - [sym_command_name] = ACTIONS(5968), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5968), - [anon_sym_BSLASHfi] = ACTIONS(6971), - [anon_sym_RBRACK] = ACTIONS(5972), - [anon_sym_COMMA] = ACTIONS(5972), - [anon_sym_EQ] = ACTIONS(5972), - [anon_sym_RBRACE] = ACTIONS(5972), - [sym_word] = ACTIONS(5968), - [sym_placeholder] = ACTIONS(5972), - [anon_sym_PLUS] = ACTIONS(5972), - [anon_sym_DASH] = ACTIONS(5972), - [anon_sym_STAR] = ACTIONS(5972), - [anon_sym_SLASH] = ACTIONS(5972), - [anon_sym_LT] = ACTIONS(5968), - [anon_sym_GT] = ACTIONS(5968), - [anon_sym_BANG] = ACTIONS(5968), - [anon_sym_PIPE] = ACTIONS(5968), - [anon_sym_COLON] = ACTIONS(5968), - [anon_sym_SQUOTE] = ACTIONS(5968), - [anon_sym__] = ACTIONS(5972), - [anon_sym_CARET] = ACTIONS(5972), - [anon_sym_BSLASHtitle] = ACTIONS(5968), - [anon_sym_BSLASHauthor] = ACTIONS(5968), - [anon_sym_BSLASHusepackage] = ACTIONS(5968), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5968), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5968), - [anon_sym_BSLASHinclude] = ACTIONS(5968), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5968), - [anon_sym_BSLASHinput] = ACTIONS(5968), - [anon_sym_BSLASHsubfile] = ACTIONS(5968), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5968), - [anon_sym_BSLASHbibliography] = ACTIONS(5968), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5968), - [anon_sym_BSLASHincludesvg] = ACTIONS(5968), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5968), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5968), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5968), - [anon_sym_BSLASHimport] = ACTIONS(5968), - [anon_sym_BSLASHsubimport] = ACTIONS(5968), - [anon_sym_BSLASHinputfrom] = ACTIONS(5968), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5968), - [anon_sym_BSLASHincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5968), - [anon_sym_BSLASHcaption] = ACTIONS(5968), - [anon_sym_BSLASHcite] = ACTIONS(5968), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCite] = ACTIONS(5968), - [anon_sym_BSLASHnocite] = ACTIONS(5968), - [anon_sym_BSLASHcitet] = ACTIONS(5968), - [anon_sym_BSLASHcitep] = ACTIONS(5968), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteauthor] = ACTIONS(5968), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5968), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitetitle] = ACTIONS(5968), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteyear] = ACTIONS(5968), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5972), - [anon_sym_BSLASHcitedate] = ACTIONS(5968), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5972), - [anon_sym_BSLASHciteurl] = ACTIONS(5968), - [anon_sym_BSLASHfullcite] = ACTIONS(5968), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5968), - [anon_sym_BSLASHcitealt] = ACTIONS(5968), - [anon_sym_BSLASHcitealp] = ACTIONS(5968), - [anon_sym_BSLASHcitetext] = ACTIONS(5968), - [anon_sym_BSLASHparencite] = ACTIONS(5968), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHParencite] = ACTIONS(5968), - [anon_sym_BSLASHfootcite] = ACTIONS(5968), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5968), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5968), - [anon_sym_BSLASHtextcite] = ACTIONS(5968), - [anon_sym_BSLASHTextcite] = ACTIONS(5968), - [anon_sym_BSLASHsmartcite] = ACTIONS(5968), - [anon_sym_BSLASHSmartcite] = ACTIONS(5968), - [anon_sym_BSLASHsupercite] = ACTIONS(5968), - [anon_sym_BSLASHautocite] = ACTIONS(5968), - [anon_sym_BSLASHAutocite] = ACTIONS(5968), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5972), - [anon_sym_BSLASHvolcite] = ACTIONS(5968), - [anon_sym_BSLASHVolcite] = ACTIONS(5968), - [anon_sym_BSLASHpvolcite] = ACTIONS(5968), - [anon_sym_BSLASHPvolcite] = ACTIONS(5968), - [anon_sym_BSLASHfvolcite] = ACTIONS(5968), - [anon_sym_BSLASHftvolcite] = ACTIONS(5968), - [anon_sym_BSLASHsvolcite] = ACTIONS(5968), - [anon_sym_BSLASHSvolcite] = ACTIONS(5968), - [anon_sym_BSLASHtvolcite] = ACTIONS(5968), - [anon_sym_BSLASHTvolcite] = ACTIONS(5968), - [anon_sym_BSLASHavolcite] = ACTIONS(5968), - [anon_sym_BSLASHAvolcite] = ACTIONS(5968), - [anon_sym_BSLASHnotecite] = ACTIONS(5968), - [anon_sym_BSLASHNotecite] = ACTIONS(5968), - [anon_sym_BSLASHpnotecite] = ACTIONS(5968), - [anon_sym_BSLASHPnotecite] = ACTIONS(5968), - [anon_sym_BSLASHfnotecite] = ACTIONS(5968), - [anon_sym_BSLASHlabel] = ACTIONS(5968), - [anon_sym_BSLASHref] = ACTIONS(5968), - [anon_sym_BSLASHeqref] = ACTIONS(5968), - [anon_sym_BSLASHvref] = ACTIONS(5968), - [anon_sym_BSLASHVref] = ACTIONS(5968), - [anon_sym_BSLASHautoref] = ACTIONS(5968), - [anon_sym_BSLASHpageref] = ACTIONS(5968), - [anon_sym_BSLASHcref] = ACTIONS(5968), - [anon_sym_BSLASHCref] = ACTIONS(5968), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnameCref] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5968), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5968), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5968), - [anon_sym_BSLASHlabelcref] = ACTIONS(5968), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange] = ACTIONS(5968), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHCrefrange] = ACTIONS(5968), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5972), - [anon_sym_BSLASHnewlabel] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand] = ACTIONS(5968), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5968), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5972), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5968), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5972), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5968), - [anon_sym_BSLASHdef] = ACTIONS(5968), - [anon_sym_BSLASHlet] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5968), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5968), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5968), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5968), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5968), - [anon_sym_BSLASHgls] = ACTIONS(5968), - [anon_sym_BSLASHGls] = ACTIONS(5968), - [anon_sym_BSLASHGLS] = ACTIONS(5968), - [anon_sym_BSLASHglspl] = ACTIONS(5968), - [anon_sym_BSLASHGlspl] = ACTIONS(5968), - [anon_sym_BSLASHGLSpl] = ACTIONS(5968), - [anon_sym_BSLASHglsdisp] = ACTIONS(5968), - [anon_sym_BSLASHglslink] = ACTIONS(5968), - [anon_sym_BSLASHglstext] = ACTIONS(5968), - [anon_sym_BSLASHGlstext] = ACTIONS(5968), - [anon_sym_BSLASHGLStext] = ACTIONS(5968), - [anon_sym_BSLASHglsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5968), - [anon_sym_BSLASHglsplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSplural] = ACTIONS(5968), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5968), - [anon_sym_BSLASHglsname] = ACTIONS(5968), - [anon_sym_BSLASHGlsname] = ACTIONS(5968), - [anon_sym_BSLASHGLSname] = ACTIONS(5968), - [anon_sym_BSLASHglssymbol] = ACTIONS(5968), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5968), - [anon_sym_BSLASHglsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5968), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5968), - [anon_sym_BSLASHglsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5968), - [anon_sym_BSLASHglsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5968), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5968), - [anon_sym_BSLASHglsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5968), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5968), - [anon_sym_BSLASHglsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5968), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5968), - [anon_sym_BSLASHnewacronym] = ACTIONS(5968), - [anon_sym_BSLASHacrshort] = ACTIONS(5968), - [anon_sym_BSLASHAcrshort] = ACTIONS(5968), - [anon_sym_BSLASHACRshort] = ACTIONS(5968), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5968), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5968), - [anon_sym_BSLASHacrlong] = ACTIONS(5968), - [anon_sym_BSLASHAcrlong] = ACTIONS(5968), - [anon_sym_BSLASHACRlong] = ACTIONS(5968), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5968), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5968), - [anon_sym_BSLASHacrfull] = ACTIONS(5968), - [anon_sym_BSLASHAcrfull] = ACTIONS(5968), - [anon_sym_BSLASHACRfull] = ACTIONS(5968), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5968), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5968), - [anon_sym_BSLASHacs] = ACTIONS(5968), - [anon_sym_BSLASHAcs] = ACTIONS(5968), - [anon_sym_BSLASHacsp] = ACTIONS(5968), - [anon_sym_BSLASHAcsp] = ACTIONS(5968), - [anon_sym_BSLASHacl] = ACTIONS(5968), - [anon_sym_BSLASHAcl] = ACTIONS(5968), - [anon_sym_BSLASHaclp] = ACTIONS(5968), - [anon_sym_BSLASHAclp] = ACTIONS(5968), - [anon_sym_BSLASHacf] = ACTIONS(5968), - [anon_sym_BSLASHAcf] = ACTIONS(5968), - [anon_sym_BSLASHacfp] = ACTIONS(5968), - [anon_sym_BSLASHAcfp] = ACTIONS(5968), - [anon_sym_BSLASHac] = ACTIONS(5968), - [anon_sym_BSLASHAc] = ACTIONS(5968), - [anon_sym_BSLASHacp] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5968), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5968), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5968), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5968), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5968), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(5972), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5968), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5968), - [anon_sym_BSLASHcolor] = ACTIONS(5968), - [anon_sym_BSLASHcolorbox] = ACTIONS(5968), - [anon_sym_BSLASHtextcolor] = ACTIONS(5968), - [anon_sym_BSLASHpagecolor] = ACTIONS(5968), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5968), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5968), - [sym__trivia_raw_fi] = ACTIONS(6973), - }, - [1920] = { - [sym_command_name] = ACTIONS(6161), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6161), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_EQ] = ACTIONS(6163), - [anon_sym_LBRACE] = ACTIONS(6163), - [anon_sym_RBRACE] = ACTIONS(6163), - [sym_word] = ACTIONS(6161), - [sym_placeholder] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6163), - [anon_sym_DASH] = ACTIONS(6163), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_COLON] = ACTIONS(6161), - [anon_sym_SQUOTE] = ACTIONS(6161), - [anon_sym__] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_BSLASHtitle] = ACTIONS(6161), - [anon_sym_BSLASHauthor] = ACTIONS(6161), - [anon_sym_BSLASHusepackage] = ACTIONS(6161), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6161), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6161), - [anon_sym_BSLASHinclude] = ACTIONS(6161), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6161), - [anon_sym_BSLASHinput] = ACTIONS(6161), - [anon_sym_BSLASHsubfile] = ACTIONS(6161), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6161), - [anon_sym_BSLASHbibliography] = ACTIONS(6161), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6161), - [anon_sym_BSLASHincludesvg] = ACTIONS(6161), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6161), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6161), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6161), - [anon_sym_BSLASHimport] = ACTIONS(6161), - [anon_sym_BSLASHsubimport] = ACTIONS(6161), - [anon_sym_BSLASHinputfrom] = ACTIONS(6161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6161), - [anon_sym_BSLASHincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6161), - [anon_sym_BSLASHcaption] = ACTIONS(6161), - [anon_sym_BSLASHcite] = ACTIONS(6161), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCite] = ACTIONS(6161), - [anon_sym_BSLASHnocite] = ACTIONS(6161), - [anon_sym_BSLASHcitet] = ACTIONS(6161), - [anon_sym_BSLASHcitep] = ACTIONS(6161), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteauthor] = ACTIONS(6161), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6161), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitetitle] = ACTIONS(6161), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteyear] = ACTIONS(6161), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6163), - [anon_sym_BSLASHcitedate] = ACTIONS(6161), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6163), - [anon_sym_BSLASHciteurl] = ACTIONS(6161), - [anon_sym_BSLASHfullcite] = ACTIONS(6161), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6161), - [anon_sym_BSLASHcitealt] = ACTIONS(6161), - [anon_sym_BSLASHcitealp] = ACTIONS(6161), - [anon_sym_BSLASHcitetext] = ACTIONS(6161), - [anon_sym_BSLASHparencite] = ACTIONS(6161), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHParencite] = ACTIONS(6161), - [anon_sym_BSLASHfootcite] = ACTIONS(6161), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6161), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6161), - [anon_sym_BSLASHtextcite] = ACTIONS(6161), - [anon_sym_BSLASHTextcite] = ACTIONS(6161), - [anon_sym_BSLASHsmartcite] = ACTIONS(6161), - [anon_sym_BSLASHSmartcite] = ACTIONS(6161), - [anon_sym_BSLASHsupercite] = ACTIONS(6161), - [anon_sym_BSLASHautocite] = ACTIONS(6161), - [anon_sym_BSLASHAutocite] = ACTIONS(6161), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6163), - [anon_sym_BSLASHvolcite] = ACTIONS(6161), - [anon_sym_BSLASHVolcite] = ACTIONS(6161), - [anon_sym_BSLASHpvolcite] = ACTIONS(6161), - [anon_sym_BSLASHPvolcite] = ACTIONS(6161), - [anon_sym_BSLASHfvolcite] = ACTIONS(6161), - [anon_sym_BSLASHftvolcite] = ACTIONS(6161), - [anon_sym_BSLASHsvolcite] = ACTIONS(6161), - [anon_sym_BSLASHSvolcite] = ACTIONS(6161), - [anon_sym_BSLASHtvolcite] = ACTIONS(6161), - [anon_sym_BSLASHTvolcite] = ACTIONS(6161), - [anon_sym_BSLASHavolcite] = ACTIONS(6161), - [anon_sym_BSLASHAvolcite] = ACTIONS(6161), - [anon_sym_BSLASHnotecite] = ACTIONS(6161), - [anon_sym_BSLASHNotecite] = ACTIONS(6161), - [anon_sym_BSLASHpnotecite] = ACTIONS(6161), - [anon_sym_BSLASHPnotecite] = ACTIONS(6161), - [anon_sym_BSLASHfnotecite] = ACTIONS(6161), - [anon_sym_BSLASHlabel] = ACTIONS(6161), - [anon_sym_BSLASHref] = ACTIONS(6161), - [anon_sym_BSLASHeqref] = ACTIONS(6161), - [anon_sym_BSLASHvref] = ACTIONS(6161), - [anon_sym_BSLASHVref] = ACTIONS(6161), - [anon_sym_BSLASHautoref] = ACTIONS(6161), - [anon_sym_BSLASHpageref] = ACTIONS(6161), - [anon_sym_BSLASHcref] = ACTIONS(6161), - [anon_sym_BSLASHCref] = ACTIONS(6161), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnameCref] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6161), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6161), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6161), - [anon_sym_BSLASHlabelcref] = ACTIONS(6161), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange] = ACTIONS(6161), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHCrefrange] = ACTIONS(6161), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6163), - [anon_sym_BSLASHnewlabel] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand] = ACTIONS(6161), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6161), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6163), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6161), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6163), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6161), - [anon_sym_BSLASHdef] = ACTIONS(6161), - [anon_sym_BSLASHlet] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6161), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6161), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6161), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6161), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6161), - [anon_sym_BSLASHgls] = ACTIONS(6161), - [anon_sym_BSLASHGls] = ACTIONS(6161), - [anon_sym_BSLASHGLS] = ACTIONS(6161), - [anon_sym_BSLASHglspl] = ACTIONS(6161), - [anon_sym_BSLASHGlspl] = ACTIONS(6161), - [anon_sym_BSLASHGLSpl] = ACTIONS(6161), - [anon_sym_BSLASHglsdisp] = ACTIONS(6161), - [anon_sym_BSLASHglslink] = ACTIONS(6161), - [anon_sym_BSLASHglstext] = ACTIONS(6161), - [anon_sym_BSLASHGlstext] = ACTIONS(6161), - [anon_sym_BSLASHGLStext] = ACTIONS(6161), - [anon_sym_BSLASHglsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6161), - [anon_sym_BSLASHglsplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSplural] = ACTIONS(6161), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6161), - [anon_sym_BSLASHglsname] = ACTIONS(6161), - [anon_sym_BSLASHGlsname] = ACTIONS(6161), - [anon_sym_BSLASHGLSname] = ACTIONS(6161), - [anon_sym_BSLASHglssymbol] = ACTIONS(6161), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6161), - [anon_sym_BSLASHglsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6161), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6161), - [anon_sym_BSLASHglsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6161), - [anon_sym_BSLASHglsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6161), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6161), - [anon_sym_BSLASHglsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6161), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6161), - [anon_sym_BSLASHglsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6161), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6161), - [anon_sym_BSLASHnewacronym] = ACTIONS(6161), - [anon_sym_BSLASHacrshort] = ACTIONS(6161), - [anon_sym_BSLASHAcrshort] = ACTIONS(6161), - [anon_sym_BSLASHACRshort] = ACTIONS(6161), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6161), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6161), - [anon_sym_BSLASHacrlong] = ACTIONS(6161), - [anon_sym_BSLASHAcrlong] = ACTIONS(6161), - [anon_sym_BSLASHACRlong] = ACTIONS(6161), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6161), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6161), - [anon_sym_BSLASHacrfull] = ACTIONS(6161), - [anon_sym_BSLASHAcrfull] = ACTIONS(6161), - [anon_sym_BSLASHACRfull] = ACTIONS(6161), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6161), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6161), - [anon_sym_BSLASHacs] = ACTIONS(6161), - [anon_sym_BSLASHAcs] = ACTIONS(6161), - [anon_sym_BSLASHacsp] = ACTIONS(6161), - [anon_sym_BSLASHAcsp] = ACTIONS(6161), - [anon_sym_BSLASHacl] = ACTIONS(6161), - [anon_sym_BSLASHAcl] = ACTIONS(6161), - [anon_sym_BSLASHaclp] = ACTIONS(6161), - [anon_sym_BSLASHAclp] = ACTIONS(6161), - [anon_sym_BSLASHacf] = ACTIONS(6161), - [anon_sym_BSLASHAcf] = ACTIONS(6161), - [anon_sym_BSLASHacfp] = ACTIONS(6161), - [anon_sym_BSLASHAcfp] = ACTIONS(6161), - [anon_sym_BSLASHac] = ACTIONS(6161), - [anon_sym_BSLASHAc] = ACTIONS(6161), - [anon_sym_BSLASHacp] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6161), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6161), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6161), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6161), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6161), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6161), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6161), - [anon_sym_BSLASHcolor] = ACTIONS(6161), - [anon_sym_BSLASHcolorbox] = ACTIONS(6161), - [anon_sym_BSLASHtextcolor] = ACTIONS(6161), - [anon_sym_BSLASHpagecolor] = ACTIONS(6161), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6161), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6161), - }, - [1921] = { - [sym_curly_group] = STATE(1931), - [sym_command_name] = ACTIONS(6021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6021), - [anon_sym_RBRACK] = ACTIONS(6023), - [anon_sym_COMMA] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(6023), - [anon_sym_LBRACE] = ACTIONS(6966), - [anon_sym_RBRACE] = ACTIONS(6023), - [sym_word] = ACTIONS(6021), - [sym_placeholder] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6023), - [anon_sym_DASH] = ACTIONS(6023), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6023), - [anon_sym_LT] = ACTIONS(6021), - [anon_sym_GT] = ACTIONS(6021), - [anon_sym_BANG] = ACTIONS(6021), - [anon_sym_PIPE] = ACTIONS(6021), - [anon_sym_COLON] = ACTIONS(6021), - [anon_sym_SQUOTE] = ACTIONS(6021), - [anon_sym__] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_BSLASHtitle] = ACTIONS(6021), - [anon_sym_BSLASHauthor] = ACTIONS(6021), - [anon_sym_BSLASHusepackage] = ACTIONS(6021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6021), - [anon_sym_BSLASHinclude] = ACTIONS(6021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6021), - [anon_sym_BSLASHinput] = ACTIONS(6021), - [anon_sym_BSLASHsubfile] = ACTIONS(6021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6021), - [anon_sym_BSLASHbibliography] = ACTIONS(6021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6021), - [anon_sym_BSLASHincludesvg] = ACTIONS(6021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6021), - [anon_sym_BSLASHimport] = ACTIONS(6021), - [anon_sym_BSLASHsubimport] = ACTIONS(6021), - [anon_sym_BSLASHinputfrom] = ACTIONS(6021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6021), - [anon_sym_BSLASHincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6021), - [anon_sym_BSLASHcaption] = ACTIONS(6021), - [anon_sym_BSLASHcite] = ACTIONS(6021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCite] = ACTIONS(6021), - [anon_sym_BSLASHnocite] = ACTIONS(6021), - [anon_sym_BSLASHcitet] = ACTIONS(6021), - [anon_sym_BSLASHcitep] = ACTIONS(6021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteauthor] = ACTIONS(6021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitetitle] = ACTIONS(6021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteyear] = ACTIONS(6021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6023), - [anon_sym_BSLASHcitedate] = ACTIONS(6021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6023), - [anon_sym_BSLASHciteurl] = ACTIONS(6021), - [anon_sym_BSLASHfullcite] = ACTIONS(6021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6021), - [anon_sym_BSLASHcitealt] = ACTIONS(6021), - [anon_sym_BSLASHcitealp] = ACTIONS(6021), - [anon_sym_BSLASHcitetext] = ACTIONS(6021), - [anon_sym_BSLASHparencite] = ACTIONS(6021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHParencite] = ACTIONS(6021), - [anon_sym_BSLASHfootcite] = ACTIONS(6021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6021), - [anon_sym_BSLASHtextcite] = ACTIONS(6021), - [anon_sym_BSLASHTextcite] = ACTIONS(6021), - [anon_sym_BSLASHsmartcite] = ACTIONS(6021), - [anon_sym_BSLASHSmartcite] = ACTIONS(6021), - [anon_sym_BSLASHsupercite] = ACTIONS(6021), - [anon_sym_BSLASHautocite] = ACTIONS(6021), - [anon_sym_BSLASHAutocite] = ACTIONS(6021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6023), - [anon_sym_BSLASHvolcite] = ACTIONS(6021), - [anon_sym_BSLASHVolcite] = ACTIONS(6021), - [anon_sym_BSLASHpvolcite] = ACTIONS(6021), - [anon_sym_BSLASHPvolcite] = ACTIONS(6021), - [anon_sym_BSLASHfvolcite] = ACTIONS(6021), - [anon_sym_BSLASHftvolcite] = ACTIONS(6021), - [anon_sym_BSLASHsvolcite] = ACTIONS(6021), - [anon_sym_BSLASHSvolcite] = ACTIONS(6021), - [anon_sym_BSLASHtvolcite] = ACTIONS(6021), - [anon_sym_BSLASHTvolcite] = ACTIONS(6021), - [anon_sym_BSLASHavolcite] = ACTIONS(6021), - [anon_sym_BSLASHAvolcite] = ACTIONS(6021), - [anon_sym_BSLASHnotecite] = ACTIONS(6021), - [anon_sym_BSLASHNotecite] = ACTIONS(6021), - [anon_sym_BSLASHpnotecite] = ACTIONS(6021), - [anon_sym_BSLASHPnotecite] = ACTIONS(6021), - [anon_sym_BSLASHfnotecite] = ACTIONS(6021), - [anon_sym_BSLASHlabel] = ACTIONS(6021), - [anon_sym_BSLASHref] = ACTIONS(6021), - [anon_sym_BSLASHeqref] = ACTIONS(6021), - [anon_sym_BSLASHvref] = ACTIONS(6021), - [anon_sym_BSLASHVref] = ACTIONS(6021), - [anon_sym_BSLASHautoref] = ACTIONS(6021), - [anon_sym_BSLASHpageref] = ACTIONS(6021), - [anon_sym_BSLASHcref] = ACTIONS(6021), - [anon_sym_BSLASHCref] = ACTIONS(6021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnameCref] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6021), - [anon_sym_BSLASHlabelcref] = ACTIONS(6021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange] = ACTIONS(6021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHCrefrange] = ACTIONS(6021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6023), - [anon_sym_BSLASHnewlabel] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand] = ACTIONS(6021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6023), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6021), - [anon_sym_BSLASHdef] = ACTIONS(6021), - [anon_sym_BSLASHlet] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6021), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6021), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6021), - [anon_sym_BSLASHgls] = ACTIONS(6021), - [anon_sym_BSLASHGls] = ACTIONS(6021), - [anon_sym_BSLASHGLS] = ACTIONS(6021), - [anon_sym_BSLASHglspl] = ACTIONS(6021), - [anon_sym_BSLASHGlspl] = ACTIONS(6021), - [anon_sym_BSLASHGLSpl] = ACTIONS(6021), - [anon_sym_BSLASHglsdisp] = ACTIONS(6021), - [anon_sym_BSLASHglslink] = ACTIONS(6021), - [anon_sym_BSLASHglstext] = ACTIONS(6021), - [anon_sym_BSLASHGlstext] = ACTIONS(6021), - [anon_sym_BSLASHGLStext] = ACTIONS(6021), - [anon_sym_BSLASHglsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6021), - [anon_sym_BSLASHglsplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSplural] = ACTIONS(6021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6021), - [anon_sym_BSLASHglsname] = ACTIONS(6021), - [anon_sym_BSLASHGlsname] = ACTIONS(6021), - [anon_sym_BSLASHGLSname] = ACTIONS(6021), - [anon_sym_BSLASHglssymbol] = ACTIONS(6021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6021), - [anon_sym_BSLASHglsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6021), - [anon_sym_BSLASHglsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6021), - [anon_sym_BSLASHglsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6021), - [anon_sym_BSLASHglsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6021), - [anon_sym_BSLASHglsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6021), - [anon_sym_BSLASHnewacronym] = ACTIONS(6021), - [anon_sym_BSLASHacrshort] = ACTIONS(6021), - [anon_sym_BSLASHAcrshort] = ACTIONS(6021), - [anon_sym_BSLASHACRshort] = ACTIONS(6021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6021), - [anon_sym_BSLASHacrlong] = ACTIONS(6021), - [anon_sym_BSLASHAcrlong] = ACTIONS(6021), - [anon_sym_BSLASHACRlong] = ACTIONS(6021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6021), - [anon_sym_BSLASHacrfull] = ACTIONS(6021), - [anon_sym_BSLASHAcrfull] = ACTIONS(6021), - [anon_sym_BSLASHACRfull] = ACTIONS(6021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6021), - [anon_sym_BSLASHacs] = ACTIONS(6021), - [anon_sym_BSLASHAcs] = ACTIONS(6021), - [anon_sym_BSLASHacsp] = ACTIONS(6021), - [anon_sym_BSLASHAcsp] = ACTIONS(6021), - [anon_sym_BSLASHacl] = ACTIONS(6021), - [anon_sym_BSLASHAcl] = ACTIONS(6021), - [anon_sym_BSLASHaclp] = ACTIONS(6021), - [anon_sym_BSLASHAclp] = ACTIONS(6021), - [anon_sym_BSLASHacf] = ACTIONS(6021), - [anon_sym_BSLASHAcf] = ACTIONS(6021), - [anon_sym_BSLASHacfp] = ACTIONS(6021), - [anon_sym_BSLASHAcfp] = ACTIONS(6021), - [anon_sym_BSLASHac] = ACTIONS(6021), - [anon_sym_BSLASHAc] = ACTIONS(6021), - [anon_sym_BSLASHacp] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6021), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6021), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6023), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6021), - [anon_sym_BSLASHcolor] = ACTIONS(6021), - [anon_sym_BSLASHcolorbox] = ACTIONS(6021), - [anon_sym_BSLASHtextcolor] = ACTIONS(6021), - [anon_sym_BSLASHpagecolor] = ACTIONS(6021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6021), - }, - [1922] = { - [sym_brack_group_text] = STATE(1938), - [sym_command_name] = ACTIONS(6017), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6017), - [anon_sym_LBRACK] = ACTIONS(6975), - [anon_sym_RBRACK] = ACTIONS(6019), - [anon_sym_COMMA] = ACTIONS(6019), - [anon_sym_EQ] = ACTIONS(6019), - [anon_sym_RBRACE] = ACTIONS(6019), - [sym_word] = ACTIONS(6017), - [sym_placeholder] = ACTIONS(6019), - [anon_sym_PLUS] = ACTIONS(6019), - [anon_sym_DASH] = ACTIONS(6019), - [anon_sym_STAR] = ACTIONS(6019), - [anon_sym_SLASH] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(6017), - [anon_sym_GT] = ACTIONS(6017), - [anon_sym_BANG] = ACTIONS(6017), - [anon_sym_PIPE] = ACTIONS(6017), - [anon_sym_COLON] = ACTIONS(6017), - [anon_sym_SQUOTE] = ACTIONS(6017), - [anon_sym__] = ACTIONS(6019), - [anon_sym_CARET] = ACTIONS(6019), - [anon_sym_BSLASHtitle] = ACTIONS(6017), - [anon_sym_BSLASHauthor] = ACTIONS(6017), - [anon_sym_BSLASHusepackage] = ACTIONS(6017), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6017), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6017), - [anon_sym_BSLASHinclude] = ACTIONS(6017), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6017), - [anon_sym_BSLASHinput] = ACTIONS(6017), - [anon_sym_BSLASHsubfile] = ACTIONS(6017), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6017), - [anon_sym_BSLASHbibliography] = ACTIONS(6017), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6017), - [anon_sym_BSLASHincludesvg] = ACTIONS(6017), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6017), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6017), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6017), - [anon_sym_BSLASHimport] = ACTIONS(6017), - [anon_sym_BSLASHsubimport] = ACTIONS(6017), - [anon_sym_BSLASHinputfrom] = ACTIONS(6017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6017), - [anon_sym_BSLASHincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6017), - [anon_sym_BSLASHcaption] = ACTIONS(6017), - [anon_sym_BSLASHcite] = ACTIONS(6017), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCite] = ACTIONS(6017), - [anon_sym_BSLASHnocite] = ACTIONS(6017), - [anon_sym_BSLASHcitet] = ACTIONS(6017), - [anon_sym_BSLASHcitep] = ACTIONS(6017), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteauthor] = ACTIONS(6017), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6017), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitetitle] = ACTIONS(6017), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteyear] = ACTIONS(6017), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6019), - [anon_sym_BSLASHcitedate] = ACTIONS(6017), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6019), - [anon_sym_BSLASHciteurl] = ACTIONS(6017), - [anon_sym_BSLASHfullcite] = ACTIONS(6017), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6017), - [anon_sym_BSLASHcitealt] = ACTIONS(6017), - [anon_sym_BSLASHcitealp] = ACTIONS(6017), - [anon_sym_BSLASHcitetext] = ACTIONS(6017), - [anon_sym_BSLASHparencite] = ACTIONS(6017), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHParencite] = ACTIONS(6017), - [anon_sym_BSLASHfootcite] = ACTIONS(6017), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6017), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6017), - [anon_sym_BSLASHtextcite] = ACTIONS(6017), - [anon_sym_BSLASHTextcite] = ACTIONS(6017), - [anon_sym_BSLASHsmartcite] = ACTIONS(6017), - [anon_sym_BSLASHSmartcite] = ACTIONS(6017), - [anon_sym_BSLASHsupercite] = ACTIONS(6017), - [anon_sym_BSLASHautocite] = ACTIONS(6017), - [anon_sym_BSLASHAutocite] = ACTIONS(6017), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6019), - [anon_sym_BSLASHvolcite] = ACTIONS(6017), - [anon_sym_BSLASHVolcite] = ACTIONS(6017), - [anon_sym_BSLASHpvolcite] = ACTIONS(6017), - [anon_sym_BSLASHPvolcite] = ACTIONS(6017), - [anon_sym_BSLASHfvolcite] = ACTIONS(6017), - [anon_sym_BSLASHftvolcite] = ACTIONS(6017), - [anon_sym_BSLASHsvolcite] = ACTIONS(6017), - [anon_sym_BSLASHSvolcite] = ACTIONS(6017), - [anon_sym_BSLASHtvolcite] = ACTIONS(6017), - [anon_sym_BSLASHTvolcite] = ACTIONS(6017), - [anon_sym_BSLASHavolcite] = ACTIONS(6017), - [anon_sym_BSLASHAvolcite] = ACTIONS(6017), - [anon_sym_BSLASHnotecite] = ACTIONS(6017), - [anon_sym_BSLASHNotecite] = ACTIONS(6017), - [anon_sym_BSLASHpnotecite] = ACTIONS(6017), - [anon_sym_BSLASHPnotecite] = ACTIONS(6017), - [anon_sym_BSLASHfnotecite] = ACTIONS(6017), - [anon_sym_BSLASHlabel] = ACTIONS(6017), - [anon_sym_BSLASHref] = ACTIONS(6017), - [anon_sym_BSLASHeqref] = ACTIONS(6017), - [anon_sym_BSLASHvref] = ACTIONS(6017), - [anon_sym_BSLASHVref] = ACTIONS(6017), - [anon_sym_BSLASHautoref] = ACTIONS(6017), - [anon_sym_BSLASHpageref] = ACTIONS(6017), - [anon_sym_BSLASHcref] = ACTIONS(6017), - [anon_sym_BSLASHCref] = ACTIONS(6017), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnameCref] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6017), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6017), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6017), - [anon_sym_BSLASHlabelcref] = ACTIONS(6017), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange] = ACTIONS(6017), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHCrefrange] = ACTIONS(6017), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6019), - [anon_sym_BSLASHnewlabel] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand] = ACTIONS(6017), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6017), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6017), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6019), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6017), - [anon_sym_BSLASHdef] = ACTIONS(6017), - [anon_sym_BSLASHlet] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6017), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6017), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6017), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6017), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6017), - [anon_sym_BSLASHgls] = ACTIONS(6017), - [anon_sym_BSLASHGls] = ACTIONS(6017), - [anon_sym_BSLASHGLS] = ACTIONS(6017), - [anon_sym_BSLASHglspl] = ACTIONS(6017), - [anon_sym_BSLASHGlspl] = ACTIONS(6017), - [anon_sym_BSLASHGLSpl] = ACTIONS(6017), - [anon_sym_BSLASHglsdisp] = ACTIONS(6017), - [anon_sym_BSLASHglslink] = ACTIONS(6017), - [anon_sym_BSLASHglstext] = ACTIONS(6017), - [anon_sym_BSLASHGlstext] = ACTIONS(6017), - [anon_sym_BSLASHGLStext] = ACTIONS(6017), - [anon_sym_BSLASHglsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6017), - [anon_sym_BSLASHglsplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSplural] = ACTIONS(6017), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6017), - [anon_sym_BSLASHglsname] = ACTIONS(6017), - [anon_sym_BSLASHGlsname] = ACTIONS(6017), - [anon_sym_BSLASHGLSname] = ACTIONS(6017), - [anon_sym_BSLASHglssymbol] = ACTIONS(6017), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6017), - [anon_sym_BSLASHglsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6017), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6017), - [anon_sym_BSLASHglsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6017), - [anon_sym_BSLASHglsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6017), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6017), - [anon_sym_BSLASHglsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6017), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6017), - [anon_sym_BSLASHglsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6017), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6017), - [anon_sym_BSLASHnewacronym] = ACTIONS(6017), - [anon_sym_BSLASHacrshort] = ACTIONS(6017), - [anon_sym_BSLASHAcrshort] = ACTIONS(6017), - [anon_sym_BSLASHACRshort] = ACTIONS(6017), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6017), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6017), - [anon_sym_BSLASHacrlong] = ACTIONS(6017), - [anon_sym_BSLASHAcrlong] = ACTIONS(6017), - [anon_sym_BSLASHACRlong] = ACTIONS(6017), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6017), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6017), - [anon_sym_BSLASHacrfull] = ACTIONS(6017), - [anon_sym_BSLASHAcrfull] = ACTIONS(6017), - [anon_sym_BSLASHACRfull] = ACTIONS(6017), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6017), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6017), - [anon_sym_BSLASHacs] = ACTIONS(6017), - [anon_sym_BSLASHAcs] = ACTIONS(6017), - [anon_sym_BSLASHacsp] = ACTIONS(6017), - [anon_sym_BSLASHAcsp] = ACTIONS(6017), - [anon_sym_BSLASHacl] = ACTIONS(6017), - [anon_sym_BSLASHAcl] = ACTIONS(6017), - [anon_sym_BSLASHaclp] = ACTIONS(6017), - [anon_sym_BSLASHAclp] = ACTIONS(6017), - [anon_sym_BSLASHacf] = ACTIONS(6017), - [anon_sym_BSLASHAcf] = ACTIONS(6017), - [anon_sym_BSLASHacfp] = ACTIONS(6017), - [anon_sym_BSLASHAcfp] = ACTIONS(6017), - [anon_sym_BSLASHac] = ACTIONS(6017), - [anon_sym_BSLASHAc] = ACTIONS(6017), - [anon_sym_BSLASHacp] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6017), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6017), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6017), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6017), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6017), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6019), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6017), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6017), - [anon_sym_BSLASHcolor] = ACTIONS(6017), - [anon_sym_BSLASHcolorbox] = ACTIONS(6017), - [anon_sym_BSLASHtextcolor] = ACTIONS(6017), - [anon_sym_BSLASHpagecolor] = ACTIONS(6017), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6017), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6017), - }, - [1923] = { - [sym_curly_group] = STATE(1942), - [sym_command_name] = ACTIONS(6013), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6013), - [anon_sym_RBRACK] = ACTIONS(6015), - [anon_sym_COMMA] = ACTIONS(6015), - [anon_sym_EQ] = ACTIONS(6015), - [anon_sym_LBRACE] = ACTIONS(6966), - [anon_sym_RBRACE] = ACTIONS(6015), - [sym_word] = ACTIONS(6013), - [sym_placeholder] = ACTIONS(6015), - [anon_sym_PLUS] = ACTIONS(6015), - [anon_sym_DASH] = ACTIONS(6015), - [anon_sym_STAR] = ACTIONS(6015), - [anon_sym_SLASH] = ACTIONS(6015), - [anon_sym_LT] = ACTIONS(6013), - [anon_sym_GT] = ACTIONS(6013), - [anon_sym_BANG] = ACTIONS(6013), - [anon_sym_PIPE] = ACTIONS(6013), - [anon_sym_COLON] = ACTIONS(6013), - [anon_sym_SQUOTE] = ACTIONS(6013), - [anon_sym__] = ACTIONS(6015), - [anon_sym_CARET] = ACTIONS(6015), - [anon_sym_BSLASHtitle] = ACTIONS(6013), - [anon_sym_BSLASHauthor] = ACTIONS(6013), - [anon_sym_BSLASHusepackage] = ACTIONS(6013), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6013), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6013), - [anon_sym_BSLASHinclude] = ACTIONS(6013), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6013), - [anon_sym_BSLASHinput] = ACTIONS(6013), - [anon_sym_BSLASHsubfile] = ACTIONS(6013), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6013), - [anon_sym_BSLASHbibliography] = ACTIONS(6013), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6013), - [anon_sym_BSLASHincludesvg] = ACTIONS(6013), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6013), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6013), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6013), - [anon_sym_BSLASHimport] = ACTIONS(6013), - [anon_sym_BSLASHsubimport] = ACTIONS(6013), - [anon_sym_BSLASHinputfrom] = ACTIONS(6013), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6013), - [anon_sym_BSLASHincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6013), - [anon_sym_BSLASHcaption] = ACTIONS(6013), - [anon_sym_BSLASHcite] = ACTIONS(6013), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCite] = ACTIONS(6013), - [anon_sym_BSLASHnocite] = ACTIONS(6013), - [anon_sym_BSLASHcitet] = ACTIONS(6013), - [anon_sym_BSLASHcitep] = ACTIONS(6013), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteauthor] = ACTIONS(6013), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6013), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitetitle] = ACTIONS(6013), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteyear] = ACTIONS(6013), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6015), - [anon_sym_BSLASHcitedate] = ACTIONS(6013), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6015), - [anon_sym_BSLASHciteurl] = ACTIONS(6013), - [anon_sym_BSLASHfullcite] = ACTIONS(6013), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6013), - [anon_sym_BSLASHcitealt] = ACTIONS(6013), - [anon_sym_BSLASHcitealp] = ACTIONS(6013), - [anon_sym_BSLASHcitetext] = ACTIONS(6013), - [anon_sym_BSLASHparencite] = ACTIONS(6013), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHParencite] = ACTIONS(6013), - [anon_sym_BSLASHfootcite] = ACTIONS(6013), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6013), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6013), - [anon_sym_BSLASHtextcite] = ACTIONS(6013), - [anon_sym_BSLASHTextcite] = ACTIONS(6013), - [anon_sym_BSLASHsmartcite] = ACTIONS(6013), - [anon_sym_BSLASHSmartcite] = ACTIONS(6013), - [anon_sym_BSLASHsupercite] = ACTIONS(6013), - [anon_sym_BSLASHautocite] = ACTIONS(6013), - [anon_sym_BSLASHAutocite] = ACTIONS(6013), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6015), - [anon_sym_BSLASHvolcite] = ACTIONS(6013), - [anon_sym_BSLASHVolcite] = ACTIONS(6013), - [anon_sym_BSLASHpvolcite] = ACTIONS(6013), - [anon_sym_BSLASHPvolcite] = ACTIONS(6013), - [anon_sym_BSLASHfvolcite] = ACTIONS(6013), - [anon_sym_BSLASHftvolcite] = ACTIONS(6013), - [anon_sym_BSLASHsvolcite] = ACTIONS(6013), - [anon_sym_BSLASHSvolcite] = ACTIONS(6013), - [anon_sym_BSLASHtvolcite] = ACTIONS(6013), - [anon_sym_BSLASHTvolcite] = ACTIONS(6013), - [anon_sym_BSLASHavolcite] = ACTIONS(6013), - [anon_sym_BSLASHAvolcite] = ACTIONS(6013), - [anon_sym_BSLASHnotecite] = ACTIONS(6013), - [anon_sym_BSLASHNotecite] = ACTIONS(6013), - [anon_sym_BSLASHpnotecite] = ACTIONS(6013), - [anon_sym_BSLASHPnotecite] = ACTIONS(6013), - [anon_sym_BSLASHfnotecite] = ACTIONS(6013), - [anon_sym_BSLASHlabel] = ACTIONS(6013), - [anon_sym_BSLASHref] = ACTIONS(6013), - [anon_sym_BSLASHeqref] = ACTIONS(6013), - [anon_sym_BSLASHvref] = ACTIONS(6013), - [anon_sym_BSLASHVref] = ACTIONS(6013), - [anon_sym_BSLASHautoref] = ACTIONS(6013), - [anon_sym_BSLASHpageref] = ACTIONS(6013), - [anon_sym_BSLASHcref] = ACTIONS(6013), - [anon_sym_BSLASHCref] = ACTIONS(6013), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnameCref] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6013), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6013), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6013), - [anon_sym_BSLASHlabelcref] = ACTIONS(6013), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange] = ACTIONS(6013), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHCrefrange] = ACTIONS(6013), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6015), - [anon_sym_BSLASHnewlabel] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand] = ACTIONS(6013), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6013), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6015), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6013), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6015), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6013), - [anon_sym_BSLASHdef] = ACTIONS(6013), - [anon_sym_BSLASHlet] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6013), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6013), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6013), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6013), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6013), - [anon_sym_BSLASHgls] = ACTIONS(6013), - [anon_sym_BSLASHGls] = ACTIONS(6013), - [anon_sym_BSLASHGLS] = ACTIONS(6013), - [anon_sym_BSLASHglspl] = ACTIONS(6013), - [anon_sym_BSLASHGlspl] = ACTIONS(6013), - [anon_sym_BSLASHGLSpl] = ACTIONS(6013), - [anon_sym_BSLASHglsdisp] = ACTIONS(6013), - [anon_sym_BSLASHglslink] = ACTIONS(6013), - [anon_sym_BSLASHglstext] = ACTIONS(6013), - [anon_sym_BSLASHGlstext] = ACTIONS(6013), - [anon_sym_BSLASHGLStext] = ACTIONS(6013), - [anon_sym_BSLASHglsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6013), - [anon_sym_BSLASHglsplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSplural] = ACTIONS(6013), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6013), - [anon_sym_BSLASHglsname] = ACTIONS(6013), - [anon_sym_BSLASHGlsname] = ACTIONS(6013), - [anon_sym_BSLASHGLSname] = ACTIONS(6013), - [anon_sym_BSLASHglssymbol] = ACTIONS(6013), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6013), - [anon_sym_BSLASHglsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6013), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6013), - [anon_sym_BSLASHglsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6013), - [anon_sym_BSLASHglsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6013), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6013), - [anon_sym_BSLASHglsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6013), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6013), - [anon_sym_BSLASHglsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6013), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6013), - [anon_sym_BSLASHnewacronym] = ACTIONS(6013), - [anon_sym_BSLASHacrshort] = ACTIONS(6013), - [anon_sym_BSLASHAcrshort] = ACTIONS(6013), - [anon_sym_BSLASHACRshort] = ACTIONS(6013), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6013), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6013), - [anon_sym_BSLASHacrlong] = ACTIONS(6013), - [anon_sym_BSLASHAcrlong] = ACTIONS(6013), - [anon_sym_BSLASHACRlong] = ACTIONS(6013), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6013), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6013), - [anon_sym_BSLASHacrfull] = ACTIONS(6013), - [anon_sym_BSLASHAcrfull] = ACTIONS(6013), - [anon_sym_BSLASHACRfull] = ACTIONS(6013), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6013), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6013), - [anon_sym_BSLASHacs] = ACTIONS(6013), - [anon_sym_BSLASHAcs] = ACTIONS(6013), - [anon_sym_BSLASHacsp] = ACTIONS(6013), - [anon_sym_BSLASHAcsp] = ACTIONS(6013), - [anon_sym_BSLASHacl] = ACTIONS(6013), - [anon_sym_BSLASHAcl] = ACTIONS(6013), - [anon_sym_BSLASHaclp] = ACTIONS(6013), - [anon_sym_BSLASHAclp] = ACTIONS(6013), - [anon_sym_BSLASHacf] = ACTIONS(6013), - [anon_sym_BSLASHAcf] = ACTIONS(6013), - [anon_sym_BSLASHacfp] = ACTIONS(6013), - [anon_sym_BSLASHAcfp] = ACTIONS(6013), - [anon_sym_BSLASHac] = ACTIONS(6013), - [anon_sym_BSLASHAc] = ACTIONS(6013), - [anon_sym_BSLASHacp] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6013), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6013), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6013), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6013), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6013), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6013), - [anon_sym_BSLASHcolor] = ACTIONS(6013), - [anon_sym_BSLASHcolorbox] = ACTIONS(6013), - [anon_sym_BSLASHtextcolor] = ACTIONS(6013), - [anon_sym_BSLASHpagecolor] = ACTIONS(6013), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6013), - }, - [1924] = { - [sym_command_name] = ACTIONS(6157), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6157), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_EQ] = ACTIONS(6159), - [anon_sym_LBRACE] = ACTIONS(6159), - [anon_sym_RBRACE] = ACTIONS(6159), - [sym_word] = ACTIONS(6157), - [sym_placeholder] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6159), - [anon_sym_DASH] = ACTIONS(6159), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6157), - [anon_sym_GT] = ACTIONS(6157), - [anon_sym_BANG] = ACTIONS(6157), - [anon_sym_PIPE] = ACTIONS(6157), - [anon_sym_COLON] = ACTIONS(6157), - [anon_sym_SQUOTE] = ACTIONS(6157), - [anon_sym__] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_BSLASHtitle] = ACTIONS(6157), - [anon_sym_BSLASHauthor] = ACTIONS(6157), - [anon_sym_BSLASHusepackage] = ACTIONS(6157), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6157), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6157), - [anon_sym_BSLASHinclude] = ACTIONS(6157), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6157), - [anon_sym_BSLASHinput] = ACTIONS(6157), - [anon_sym_BSLASHsubfile] = ACTIONS(6157), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6157), - [anon_sym_BSLASHbibliography] = ACTIONS(6157), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6157), - [anon_sym_BSLASHincludesvg] = ACTIONS(6157), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6157), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6157), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6157), - [anon_sym_BSLASHimport] = ACTIONS(6157), - [anon_sym_BSLASHsubimport] = ACTIONS(6157), - [anon_sym_BSLASHinputfrom] = ACTIONS(6157), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6157), - [anon_sym_BSLASHincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6157), - [anon_sym_BSLASHcaption] = ACTIONS(6157), - [anon_sym_BSLASHcite] = ACTIONS(6157), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCite] = ACTIONS(6157), - [anon_sym_BSLASHnocite] = ACTIONS(6157), - [anon_sym_BSLASHcitet] = ACTIONS(6157), - [anon_sym_BSLASHcitep] = ACTIONS(6157), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteauthor] = ACTIONS(6157), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6157), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitetitle] = ACTIONS(6157), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteyear] = ACTIONS(6157), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6159), - [anon_sym_BSLASHcitedate] = ACTIONS(6157), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6159), - [anon_sym_BSLASHciteurl] = ACTIONS(6157), - [anon_sym_BSLASHfullcite] = ACTIONS(6157), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6157), - [anon_sym_BSLASHcitealt] = ACTIONS(6157), - [anon_sym_BSLASHcitealp] = ACTIONS(6157), - [anon_sym_BSLASHcitetext] = ACTIONS(6157), - [anon_sym_BSLASHparencite] = ACTIONS(6157), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHParencite] = ACTIONS(6157), - [anon_sym_BSLASHfootcite] = ACTIONS(6157), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6157), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6157), - [anon_sym_BSLASHtextcite] = ACTIONS(6157), - [anon_sym_BSLASHTextcite] = ACTIONS(6157), - [anon_sym_BSLASHsmartcite] = ACTIONS(6157), - [anon_sym_BSLASHSmartcite] = ACTIONS(6157), - [anon_sym_BSLASHsupercite] = ACTIONS(6157), - [anon_sym_BSLASHautocite] = ACTIONS(6157), - [anon_sym_BSLASHAutocite] = ACTIONS(6157), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6159), - [anon_sym_BSLASHvolcite] = ACTIONS(6157), - [anon_sym_BSLASHVolcite] = ACTIONS(6157), - [anon_sym_BSLASHpvolcite] = ACTIONS(6157), - [anon_sym_BSLASHPvolcite] = ACTIONS(6157), - [anon_sym_BSLASHfvolcite] = ACTIONS(6157), - [anon_sym_BSLASHftvolcite] = ACTIONS(6157), - [anon_sym_BSLASHsvolcite] = ACTIONS(6157), - [anon_sym_BSLASHSvolcite] = ACTIONS(6157), - [anon_sym_BSLASHtvolcite] = ACTIONS(6157), - [anon_sym_BSLASHTvolcite] = ACTIONS(6157), - [anon_sym_BSLASHavolcite] = ACTIONS(6157), - [anon_sym_BSLASHAvolcite] = ACTIONS(6157), - [anon_sym_BSLASHnotecite] = ACTIONS(6157), - [anon_sym_BSLASHNotecite] = ACTIONS(6157), - [anon_sym_BSLASHpnotecite] = ACTIONS(6157), - [anon_sym_BSLASHPnotecite] = ACTIONS(6157), - [anon_sym_BSLASHfnotecite] = ACTIONS(6157), - [anon_sym_BSLASHlabel] = ACTIONS(6157), - [anon_sym_BSLASHref] = ACTIONS(6157), - [anon_sym_BSLASHeqref] = ACTIONS(6157), - [anon_sym_BSLASHvref] = ACTIONS(6157), - [anon_sym_BSLASHVref] = ACTIONS(6157), - [anon_sym_BSLASHautoref] = ACTIONS(6157), - [anon_sym_BSLASHpageref] = ACTIONS(6157), - [anon_sym_BSLASHcref] = ACTIONS(6157), - [anon_sym_BSLASHCref] = ACTIONS(6157), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnameCref] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6157), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6157), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6157), - [anon_sym_BSLASHlabelcref] = ACTIONS(6157), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange] = ACTIONS(6157), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHCrefrange] = ACTIONS(6157), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6159), - [anon_sym_BSLASHnewlabel] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand] = ACTIONS(6157), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6157), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6159), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6157), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6159), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6157), - [anon_sym_BSLASHdef] = ACTIONS(6157), - [anon_sym_BSLASHlet] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6157), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6157), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6157), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6157), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6157), - [anon_sym_BSLASHgls] = ACTIONS(6157), - [anon_sym_BSLASHGls] = ACTIONS(6157), - [anon_sym_BSLASHGLS] = ACTIONS(6157), - [anon_sym_BSLASHglspl] = ACTIONS(6157), - [anon_sym_BSLASHGlspl] = ACTIONS(6157), - [anon_sym_BSLASHGLSpl] = ACTIONS(6157), - [anon_sym_BSLASHglsdisp] = ACTIONS(6157), - [anon_sym_BSLASHglslink] = ACTIONS(6157), - [anon_sym_BSLASHglstext] = ACTIONS(6157), - [anon_sym_BSLASHGlstext] = ACTIONS(6157), - [anon_sym_BSLASHGLStext] = ACTIONS(6157), - [anon_sym_BSLASHglsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6157), - [anon_sym_BSLASHglsplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSplural] = ACTIONS(6157), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6157), - [anon_sym_BSLASHglsname] = ACTIONS(6157), - [anon_sym_BSLASHGlsname] = ACTIONS(6157), - [anon_sym_BSLASHGLSname] = ACTIONS(6157), - [anon_sym_BSLASHglssymbol] = ACTIONS(6157), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6157), - [anon_sym_BSLASHglsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6157), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6157), - [anon_sym_BSLASHglsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6157), - [anon_sym_BSLASHglsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6157), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6157), - [anon_sym_BSLASHglsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6157), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6157), - [anon_sym_BSLASHglsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6157), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6157), - [anon_sym_BSLASHnewacronym] = ACTIONS(6157), - [anon_sym_BSLASHacrshort] = ACTIONS(6157), - [anon_sym_BSLASHAcrshort] = ACTIONS(6157), - [anon_sym_BSLASHACRshort] = ACTIONS(6157), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6157), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6157), - [anon_sym_BSLASHacrlong] = ACTIONS(6157), - [anon_sym_BSLASHAcrlong] = ACTIONS(6157), - [anon_sym_BSLASHACRlong] = ACTIONS(6157), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6157), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6157), - [anon_sym_BSLASHacrfull] = ACTIONS(6157), - [anon_sym_BSLASHAcrfull] = ACTIONS(6157), - [anon_sym_BSLASHACRfull] = ACTIONS(6157), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6157), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6157), - [anon_sym_BSLASHacs] = ACTIONS(6157), - [anon_sym_BSLASHAcs] = ACTIONS(6157), - [anon_sym_BSLASHacsp] = ACTIONS(6157), - [anon_sym_BSLASHAcsp] = ACTIONS(6157), - [anon_sym_BSLASHacl] = ACTIONS(6157), - [anon_sym_BSLASHAcl] = ACTIONS(6157), - [anon_sym_BSLASHaclp] = ACTIONS(6157), - [anon_sym_BSLASHAclp] = ACTIONS(6157), - [anon_sym_BSLASHacf] = ACTIONS(6157), - [anon_sym_BSLASHAcf] = ACTIONS(6157), - [anon_sym_BSLASHacfp] = ACTIONS(6157), - [anon_sym_BSLASHAcfp] = ACTIONS(6157), - [anon_sym_BSLASHac] = ACTIONS(6157), - [anon_sym_BSLASHAc] = ACTIONS(6157), - [anon_sym_BSLASHacp] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6157), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6157), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6157), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6157), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6157), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6157), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6157), - [anon_sym_BSLASHcolor] = ACTIONS(6157), - [anon_sym_BSLASHcolorbox] = ACTIONS(6157), - [anon_sym_BSLASHtextcolor] = ACTIONS(6157), - [anon_sym_BSLASHpagecolor] = ACTIONS(6157), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6157), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6157), - }, - [1925] = { - [sym_brack_group_text] = STATE(1930), - [sym_command_name] = ACTIONS(6009), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6975), - [anon_sym_RBRACK] = ACTIONS(6011), - [anon_sym_COMMA] = ACTIONS(6011), - [anon_sym_EQ] = ACTIONS(6011), - [anon_sym_RBRACE] = ACTIONS(6011), - [sym_word] = ACTIONS(6009), - [sym_placeholder] = ACTIONS(6011), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6011), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_LT] = ACTIONS(6009), - [anon_sym_GT] = ACTIONS(6009), - [anon_sym_BANG] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_SQUOTE] = ACTIONS(6009), - [anon_sym__] = ACTIONS(6011), - [anon_sym_CARET] = ACTIONS(6011), - [anon_sym_BSLASHtitle] = ACTIONS(6009), - [anon_sym_BSLASHauthor] = ACTIONS(6009), - [anon_sym_BSLASHusepackage] = ACTIONS(6009), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6009), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6009), - [anon_sym_BSLASHinclude] = ACTIONS(6009), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6009), - [anon_sym_BSLASHinput] = ACTIONS(6009), - [anon_sym_BSLASHsubfile] = ACTIONS(6009), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6009), - [anon_sym_BSLASHbibliography] = ACTIONS(6009), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6009), - [anon_sym_BSLASHincludesvg] = ACTIONS(6009), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6009), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6009), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6009), - [anon_sym_BSLASHimport] = ACTIONS(6009), - [anon_sym_BSLASHsubimport] = ACTIONS(6009), - [anon_sym_BSLASHinputfrom] = ACTIONS(6009), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6009), - [anon_sym_BSLASHincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6009), - [anon_sym_BSLASHcaption] = ACTIONS(6009), - [anon_sym_BSLASHcite] = ACTIONS(6009), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCite] = ACTIONS(6009), - [anon_sym_BSLASHnocite] = ACTIONS(6009), - [anon_sym_BSLASHcitet] = ACTIONS(6009), - [anon_sym_BSLASHcitep] = ACTIONS(6009), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteauthor] = ACTIONS(6009), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6009), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitetitle] = ACTIONS(6009), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteyear] = ACTIONS(6009), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6011), - [anon_sym_BSLASHcitedate] = ACTIONS(6009), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6011), - [anon_sym_BSLASHciteurl] = ACTIONS(6009), - [anon_sym_BSLASHfullcite] = ACTIONS(6009), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6009), - [anon_sym_BSLASHcitealt] = ACTIONS(6009), - [anon_sym_BSLASHcitealp] = ACTIONS(6009), - [anon_sym_BSLASHcitetext] = ACTIONS(6009), - [anon_sym_BSLASHparencite] = ACTIONS(6009), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHParencite] = ACTIONS(6009), - [anon_sym_BSLASHfootcite] = ACTIONS(6009), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6009), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6009), - [anon_sym_BSLASHtextcite] = ACTIONS(6009), - [anon_sym_BSLASHTextcite] = ACTIONS(6009), - [anon_sym_BSLASHsmartcite] = ACTIONS(6009), - [anon_sym_BSLASHSmartcite] = ACTIONS(6009), - [anon_sym_BSLASHsupercite] = ACTIONS(6009), - [anon_sym_BSLASHautocite] = ACTIONS(6009), - [anon_sym_BSLASHAutocite] = ACTIONS(6009), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6011), - [anon_sym_BSLASHvolcite] = ACTIONS(6009), - [anon_sym_BSLASHVolcite] = ACTIONS(6009), - [anon_sym_BSLASHpvolcite] = ACTIONS(6009), - [anon_sym_BSLASHPvolcite] = ACTIONS(6009), - [anon_sym_BSLASHfvolcite] = ACTIONS(6009), - [anon_sym_BSLASHftvolcite] = ACTIONS(6009), - [anon_sym_BSLASHsvolcite] = ACTIONS(6009), - [anon_sym_BSLASHSvolcite] = ACTIONS(6009), - [anon_sym_BSLASHtvolcite] = ACTIONS(6009), - [anon_sym_BSLASHTvolcite] = ACTIONS(6009), - [anon_sym_BSLASHavolcite] = ACTIONS(6009), - [anon_sym_BSLASHAvolcite] = ACTIONS(6009), - [anon_sym_BSLASHnotecite] = ACTIONS(6009), - [anon_sym_BSLASHNotecite] = ACTIONS(6009), - [anon_sym_BSLASHpnotecite] = ACTIONS(6009), - [anon_sym_BSLASHPnotecite] = ACTIONS(6009), - [anon_sym_BSLASHfnotecite] = ACTIONS(6009), - [anon_sym_BSLASHlabel] = ACTIONS(6009), - [anon_sym_BSLASHref] = ACTIONS(6009), - [anon_sym_BSLASHeqref] = ACTIONS(6009), - [anon_sym_BSLASHvref] = ACTIONS(6009), - [anon_sym_BSLASHVref] = ACTIONS(6009), - [anon_sym_BSLASHautoref] = ACTIONS(6009), - [anon_sym_BSLASHpageref] = ACTIONS(6009), - [anon_sym_BSLASHcref] = ACTIONS(6009), - [anon_sym_BSLASHCref] = ACTIONS(6009), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnameCref] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6009), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6009), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6009), - [anon_sym_BSLASHlabelcref] = ACTIONS(6009), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange] = ACTIONS(6009), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHCrefrange] = ACTIONS(6009), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6011), - [anon_sym_BSLASHnewlabel] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand] = ACTIONS(6009), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6009), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6011), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6009), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6011), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6009), - [anon_sym_BSLASHdef] = ACTIONS(6009), - [anon_sym_BSLASHlet] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6009), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6009), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6009), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6009), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6009), - [anon_sym_BSLASHgls] = ACTIONS(6009), - [anon_sym_BSLASHGls] = ACTIONS(6009), - [anon_sym_BSLASHGLS] = ACTIONS(6009), - [anon_sym_BSLASHglspl] = ACTIONS(6009), - [anon_sym_BSLASHGlspl] = ACTIONS(6009), - [anon_sym_BSLASHGLSpl] = ACTIONS(6009), - [anon_sym_BSLASHglsdisp] = ACTIONS(6009), - [anon_sym_BSLASHglslink] = ACTIONS(6009), - [anon_sym_BSLASHglstext] = ACTIONS(6009), - [anon_sym_BSLASHGlstext] = ACTIONS(6009), - [anon_sym_BSLASHGLStext] = ACTIONS(6009), - [anon_sym_BSLASHglsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6009), - [anon_sym_BSLASHglsplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSplural] = ACTIONS(6009), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6009), - [anon_sym_BSLASHglsname] = ACTIONS(6009), - [anon_sym_BSLASHGlsname] = ACTIONS(6009), - [anon_sym_BSLASHGLSname] = ACTIONS(6009), - [anon_sym_BSLASHglssymbol] = ACTIONS(6009), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6009), - [anon_sym_BSLASHglsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6009), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6009), - [anon_sym_BSLASHglsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6009), - [anon_sym_BSLASHglsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6009), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6009), - [anon_sym_BSLASHglsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6009), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6009), - [anon_sym_BSLASHglsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6009), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6009), - [anon_sym_BSLASHnewacronym] = ACTIONS(6009), - [anon_sym_BSLASHacrshort] = ACTIONS(6009), - [anon_sym_BSLASHAcrshort] = ACTIONS(6009), - [anon_sym_BSLASHACRshort] = ACTIONS(6009), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6009), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6009), - [anon_sym_BSLASHacrlong] = ACTIONS(6009), - [anon_sym_BSLASHAcrlong] = ACTIONS(6009), - [anon_sym_BSLASHACRlong] = ACTIONS(6009), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6009), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6009), - [anon_sym_BSLASHacrfull] = ACTIONS(6009), - [anon_sym_BSLASHAcrfull] = ACTIONS(6009), - [anon_sym_BSLASHACRfull] = ACTIONS(6009), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6009), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6009), - [anon_sym_BSLASHacs] = ACTIONS(6009), - [anon_sym_BSLASHAcs] = ACTIONS(6009), - [anon_sym_BSLASHacsp] = ACTIONS(6009), - [anon_sym_BSLASHAcsp] = ACTIONS(6009), - [anon_sym_BSLASHacl] = ACTIONS(6009), - [anon_sym_BSLASHAcl] = ACTIONS(6009), - [anon_sym_BSLASHaclp] = ACTIONS(6009), - [anon_sym_BSLASHAclp] = ACTIONS(6009), - [anon_sym_BSLASHacf] = ACTIONS(6009), - [anon_sym_BSLASHAcf] = ACTIONS(6009), - [anon_sym_BSLASHacfp] = ACTIONS(6009), - [anon_sym_BSLASHAcfp] = ACTIONS(6009), - [anon_sym_BSLASHac] = ACTIONS(6009), - [anon_sym_BSLASHAc] = ACTIONS(6009), - [anon_sym_BSLASHacp] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6009), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6009), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6009), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6009), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6009), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6009), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6009), - [anon_sym_BSLASHcolor] = ACTIONS(6009), - [anon_sym_BSLASHcolorbox] = ACTIONS(6009), - [anon_sym_BSLASHtextcolor] = ACTIONS(6009), - [anon_sym_BSLASHpagecolor] = ACTIONS(6009), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6009), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6009), - }, - [1926] = { - [sym_command_name] = ACTIONS(6185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6185), - [anon_sym_RBRACK] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_EQ] = ACTIONS(6187), - [anon_sym_LBRACE] = ACTIONS(6187), - [anon_sym_RBRACE] = ACTIONS(6187), - [sym_word] = ACTIONS(6185), - [sym_placeholder] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6187), - [anon_sym_DASH] = ACTIONS(6187), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_COLON] = ACTIONS(6185), - [anon_sym_SQUOTE] = ACTIONS(6185), - [anon_sym__] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_BSLASHtitle] = ACTIONS(6185), - [anon_sym_BSLASHauthor] = ACTIONS(6185), - [anon_sym_BSLASHusepackage] = ACTIONS(6185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6185), - [anon_sym_BSLASHinclude] = ACTIONS(6185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6185), - [anon_sym_BSLASHinput] = ACTIONS(6185), - [anon_sym_BSLASHsubfile] = ACTIONS(6185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6185), - [anon_sym_BSLASHbibliography] = ACTIONS(6185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6185), - [anon_sym_BSLASHincludesvg] = ACTIONS(6185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6185), - [anon_sym_BSLASHimport] = ACTIONS(6185), - [anon_sym_BSLASHsubimport] = ACTIONS(6185), - [anon_sym_BSLASHinputfrom] = ACTIONS(6185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6185), - [anon_sym_BSLASHincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6185), - [anon_sym_BSLASHcaption] = ACTIONS(6185), - [anon_sym_BSLASHcite] = ACTIONS(6185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCite] = ACTIONS(6185), - [anon_sym_BSLASHnocite] = ACTIONS(6185), - [anon_sym_BSLASHcitet] = ACTIONS(6185), - [anon_sym_BSLASHcitep] = ACTIONS(6185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteauthor] = ACTIONS(6185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitetitle] = ACTIONS(6185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteyear] = ACTIONS(6185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6187), - [anon_sym_BSLASHcitedate] = ACTIONS(6185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6187), - [anon_sym_BSLASHciteurl] = ACTIONS(6185), - [anon_sym_BSLASHfullcite] = ACTIONS(6185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6185), - [anon_sym_BSLASHcitealt] = ACTIONS(6185), - [anon_sym_BSLASHcitealp] = ACTIONS(6185), - [anon_sym_BSLASHcitetext] = ACTIONS(6185), - [anon_sym_BSLASHparencite] = ACTIONS(6185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHParencite] = ACTIONS(6185), - [anon_sym_BSLASHfootcite] = ACTIONS(6185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6185), - [anon_sym_BSLASHtextcite] = ACTIONS(6185), - [anon_sym_BSLASHTextcite] = ACTIONS(6185), - [anon_sym_BSLASHsmartcite] = ACTIONS(6185), - [anon_sym_BSLASHSmartcite] = ACTIONS(6185), - [anon_sym_BSLASHsupercite] = ACTIONS(6185), - [anon_sym_BSLASHautocite] = ACTIONS(6185), - [anon_sym_BSLASHAutocite] = ACTIONS(6185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6187), - [anon_sym_BSLASHvolcite] = ACTIONS(6185), - [anon_sym_BSLASHVolcite] = ACTIONS(6185), - [anon_sym_BSLASHpvolcite] = ACTIONS(6185), - [anon_sym_BSLASHPvolcite] = ACTIONS(6185), - [anon_sym_BSLASHfvolcite] = ACTIONS(6185), - [anon_sym_BSLASHftvolcite] = ACTIONS(6185), - [anon_sym_BSLASHsvolcite] = ACTIONS(6185), - [anon_sym_BSLASHSvolcite] = ACTIONS(6185), - [anon_sym_BSLASHtvolcite] = ACTIONS(6185), - [anon_sym_BSLASHTvolcite] = ACTIONS(6185), - [anon_sym_BSLASHavolcite] = ACTIONS(6185), - [anon_sym_BSLASHAvolcite] = ACTIONS(6185), - [anon_sym_BSLASHnotecite] = ACTIONS(6185), - [anon_sym_BSLASHNotecite] = ACTIONS(6185), - [anon_sym_BSLASHpnotecite] = ACTIONS(6185), - [anon_sym_BSLASHPnotecite] = ACTIONS(6185), - [anon_sym_BSLASHfnotecite] = ACTIONS(6185), - [anon_sym_BSLASHlabel] = ACTIONS(6185), - [anon_sym_BSLASHref] = ACTIONS(6185), - [anon_sym_BSLASHeqref] = ACTIONS(6185), - [anon_sym_BSLASHvref] = ACTIONS(6185), - [anon_sym_BSLASHVref] = ACTIONS(6185), - [anon_sym_BSLASHautoref] = ACTIONS(6185), - [anon_sym_BSLASHpageref] = ACTIONS(6185), - [anon_sym_BSLASHcref] = ACTIONS(6185), - [anon_sym_BSLASHCref] = ACTIONS(6185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnameCref] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6185), - [anon_sym_BSLASHlabelcref] = ACTIONS(6185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange] = ACTIONS(6185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHCrefrange] = ACTIONS(6185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6187), - [anon_sym_BSLASHnewlabel] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand] = ACTIONS(6185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6187), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6185), - [anon_sym_BSLASHdef] = ACTIONS(6185), - [anon_sym_BSLASHlet] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6185), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6185), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6185), - [anon_sym_BSLASHgls] = ACTIONS(6185), - [anon_sym_BSLASHGls] = ACTIONS(6185), - [anon_sym_BSLASHGLS] = ACTIONS(6185), - [anon_sym_BSLASHglspl] = ACTIONS(6185), - [anon_sym_BSLASHGlspl] = ACTIONS(6185), - [anon_sym_BSLASHGLSpl] = ACTIONS(6185), - [anon_sym_BSLASHglsdisp] = ACTIONS(6185), - [anon_sym_BSLASHglslink] = ACTIONS(6185), - [anon_sym_BSLASHglstext] = ACTIONS(6185), - [anon_sym_BSLASHGlstext] = ACTIONS(6185), - [anon_sym_BSLASHGLStext] = ACTIONS(6185), - [anon_sym_BSLASHglsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6185), - [anon_sym_BSLASHglsplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSplural] = ACTIONS(6185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6185), - [anon_sym_BSLASHglsname] = ACTIONS(6185), - [anon_sym_BSLASHGlsname] = ACTIONS(6185), - [anon_sym_BSLASHGLSname] = ACTIONS(6185), - [anon_sym_BSLASHglssymbol] = ACTIONS(6185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6185), - [anon_sym_BSLASHglsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6185), - [anon_sym_BSLASHglsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6185), - [anon_sym_BSLASHglsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6185), - [anon_sym_BSLASHglsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6185), - [anon_sym_BSLASHglsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6185), - [anon_sym_BSLASHnewacronym] = ACTIONS(6185), - [anon_sym_BSLASHacrshort] = ACTIONS(6185), - [anon_sym_BSLASHAcrshort] = ACTIONS(6185), - [anon_sym_BSLASHACRshort] = ACTIONS(6185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6185), - [anon_sym_BSLASHacrlong] = ACTIONS(6185), - [anon_sym_BSLASHAcrlong] = ACTIONS(6185), - [anon_sym_BSLASHACRlong] = ACTIONS(6185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6185), - [anon_sym_BSLASHacrfull] = ACTIONS(6185), - [anon_sym_BSLASHAcrfull] = ACTIONS(6185), - [anon_sym_BSLASHACRfull] = ACTIONS(6185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6185), - [anon_sym_BSLASHacs] = ACTIONS(6185), - [anon_sym_BSLASHAcs] = ACTIONS(6185), - [anon_sym_BSLASHacsp] = ACTIONS(6185), - [anon_sym_BSLASHAcsp] = ACTIONS(6185), - [anon_sym_BSLASHacl] = ACTIONS(6185), - [anon_sym_BSLASHAcl] = ACTIONS(6185), - [anon_sym_BSLASHaclp] = ACTIONS(6185), - [anon_sym_BSLASHAclp] = ACTIONS(6185), - [anon_sym_BSLASHacf] = ACTIONS(6185), - [anon_sym_BSLASHAcf] = ACTIONS(6185), - [anon_sym_BSLASHacfp] = ACTIONS(6185), - [anon_sym_BSLASHAcfp] = ACTIONS(6185), - [anon_sym_BSLASHac] = ACTIONS(6185), - [anon_sym_BSLASHAc] = ACTIONS(6185), - [anon_sym_BSLASHacp] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6185), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6185), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6185), - [anon_sym_BSLASHcolor] = ACTIONS(6185), - [anon_sym_BSLASHcolorbox] = ACTIONS(6185), - [anon_sym_BSLASHtextcolor] = ACTIONS(6185), - [anon_sym_BSLASHpagecolor] = ACTIONS(6185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6185), - }, - [1927] = { - [sym_command_name] = ACTIONS(5997), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5997), - [anon_sym_BSLASHfi] = ACTIONS(6977), - [anon_sym_RBRACK] = ACTIONS(6001), - [anon_sym_COMMA] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(6001), - [anon_sym_RBRACE] = ACTIONS(6001), - [sym_word] = ACTIONS(5997), - [sym_placeholder] = ACTIONS(6001), - [anon_sym_PLUS] = ACTIONS(6001), - [anon_sym_DASH] = ACTIONS(6001), - [anon_sym_STAR] = ACTIONS(6001), - [anon_sym_SLASH] = ACTIONS(6001), - [anon_sym_LT] = ACTIONS(5997), - [anon_sym_GT] = ACTIONS(5997), - [anon_sym_BANG] = ACTIONS(5997), - [anon_sym_PIPE] = ACTIONS(5997), - [anon_sym_COLON] = ACTIONS(5997), - [anon_sym_SQUOTE] = ACTIONS(5997), - [anon_sym__] = ACTIONS(6001), - [anon_sym_CARET] = ACTIONS(6001), - [anon_sym_BSLASHtitle] = ACTIONS(5997), - [anon_sym_BSLASHauthor] = ACTIONS(5997), - [anon_sym_BSLASHusepackage] = ACTIONS(5997), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5997), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5997), - [anon_sym_BSLASHinclude] = ACTIONS(5997), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5997), - [anon_sym_BSLASHinput] = ACTIONS(5997), - [anon_sym_BSLASHsubfile] = ACTIONS(5997), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5997), - [anon_sym_BSLASHbibliography] = ACTIONS(5997), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5997), - [anon_sym_BSLASHincludesvg] = ACTIONS(5997), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5997), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5997), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5997), - [anon_sym_BSLASHimport] = ACTIONS(5997), - [anon_sym_BSLASHsubimport] = ACTIONS(5997), - [anon_sym_BSLASHinputfrom] = ACTIONS(5997), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5997), - [anon_sym_BSLASHincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5997), - [anon_sym_BSLASHcaption] = ACTIONS(5997), - [anon_sym_BSLASHcite] = ACTIONS(5997), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCite] = ACTIONS(5997), - [anon_sym_BSLASHnocite] = ACTIONS(5997), - [anon_sym_BSLASHcitet] = ACTIONS(5997), - [anon_sym_BSLASHcitep] = ACTIONS(5997), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5997), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5997), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5997), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteyear] = ACTIONS(5997), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6001), - [anon_sym_BSLASHcitedate] = ACTIONS(5997), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6001), - [anon_sym_BSLASHciteurl] = ACTIONS(5997), - [anon_sym_BSLASHfullcite] = ACTIONS(5997), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5997), - [anon_sym_BSLASHcitealt] = ACTIONS(5997), - [anon_sym_BSLASHcitealp] = ACTIONS(5997), - [anon_sym_BSLASHcitetext] = ACTIONS(5997), - [anon_sym_BSLASHparencite] = ACTIONS(5997), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHParencite] = ACTIONS(5997), - [anon_sym_BSLASHfootcite] = ACTIONS(5997), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5997), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5997), - [anon_sym_BSLASHtextcite] = ACTIONS(5997), - [anon_sym_BSLASHTextcite] = ACTIONS(5997), - [anon_sym_BSLASHsmartcite] = ACTIONS(5997), - [anon_sym_BSLASHSmartcite] = ACTIONS(5997), - [anon_sym_BSLASHsupercite] = ACTIONS(5997), - [anon_sym_BSLASHautocite] = ACTIONS(5997), - [anon_sym_BSLASHAutocite] = ACTIONS(5997), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6001), - [anon_sym_BSLASHvolcite] = ACTIONS(5997), - [anon_sym_BSLASHVolcite] = ACTIONS(5997), - [anon_sym_BSLASHpvolcite] = ACTIONS(5997), - [anon_sym_BSLASHPvolcite] = ACTIONS(5997), - [anon_sym_BSLASHfvolcite] = ACTIONS(5997), - [anon_sym_BSLASHftvolcite] = ACTIONS(5997), - [anon_sym_BSLASHsvolcite] = ACTIONS(5997), - [anon_sym_BSLASHSvolcite] = ACTIONS(5997), - [anon_sym_BSLASHtvolcite] = ACTIONS(5997), - [anon_sym_BSLASHTvolcite] = ACTIONS(5997), - [anon_sym_BSLASHavolcite] = ACTIONS(5997), - [anon_sym_BSLASHAvolcite] = ACTIONS(5997), - [anon_sym_BSLASHnotecite] = ACTIONS(5997), - [anon_sym_BSLASHNotecite] = ACTIONS(5997), - [anon_sym_BSLASHpnotecite] = ACTIONS(5997), - [anon_sym_BSLASHPnotecite] = ACTIONS(5997), - [anon_sym_BSLASHfnotecite] = ACTIONS(5997), - [anon_sym_BSLASHlabel] = ACTIONS(5997), - [anon_sym_BSLASHref] = ACTIONS(5997), - [anon_sym_BSLASHeqref] = ACTIONS(5997), - [anon_sym_BSLASHvref] = ACTIONS(5997), - [anon_sym_BSLASHVref] = ACTIONS(5997), - [anon_sym_BSLASHautoref] = ACTIONS(5997), - [anon_sym_BSLASHpageref] = ACTIONS(5997), - [anon_sym_BSLASHcref] = ACTIONS(5997), - [anon_sym_BSLASHCref] = ACTIONS(5997), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnameCref] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5997), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5997), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5997), - [anon_sym_BSLASHlabelcref] = ACTIONS(5997), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange] = ACTIONS(5997), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5997), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand] = ACTIONS(5997), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5997), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5997), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6001), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(5997), - [anon_sym_BSLASHdef] = ACTIONS(5997), - [anon_sym_BSLASHlet] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(5997), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(5997), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(5997), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(5997), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5997), - [anon_sym_BSLASHgls] = ACTIONS(5997), - [anon_sym_BSLASHGls] = ACTIONS(5997), - [anon_sym_BSLASHGLS] = ACTIONS(5997), - [anon_sym_BSLASHglspl] = ACTIONS(5997), - [anon_sym_BSLASHGlspl] = ACTIONS(5997), - [anon_sym_BSLASHGLSpl] = ACTIONS(5997), - [anon_sym_BSLASHglsdisp] = ACTIONS(5997), - [anon_sym_BSLASHglslink] = ACTIONS(5997), - [anon_sym_BSLASHglstext] = ACTIONS(5997), - [anon_sym_BSLASHGlstext] = ACTIONS(5997), - [anon_sym_BSLASHGLStext] = ACTIONS(5997), - [anon_sym_BSLASHglsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5997), - [anon_sym_BSLASHglsplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSplural] = ACTIONS(5997), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5997), - [anon_sym_BSLASHglsname] = ACTIONS(5997), - [anon_sym_BSLASHGlsname] = ACTIONS(5997), - [anon_sym_BSLASHGLSname] = ACTIONS(5997), - [anon_sym_BSLASHglssymbol] = ACTIONS(5997), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5997), - [anon_sym_BSLASHglsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5997), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5997), - [anon_sym_BSLASHglsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5997), - [anon_sym_BSLASHglsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5997), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5997), - [anon_sym_BSLASHglsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5997), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5997), - [anon_sym_BSLASHglsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5997), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5997), - [anon_sym_BSLASHnewacronym] = ACTIONS(5997), - [anon_sym_BSLASHacrshort] = ACTIONS(5997), - [anon_sym_BSLASHAcrshort] = ACTIONS(5997), - [anon_sym_BSLASHACRshort] = ACTIONS(5997), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5997), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5997), - [anon_sym_BSLASHacrlong] = ACTIONS(5997), - [anon_sym_BSLASHAcrlong] = ACTIONS(5997), - [anon_sym_BSLASHACRlong] = ACTIONS(5997), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5997), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5997), - [anon_sym_BSLASHacrfull] = ACTIONS(5997), - [anon_sym_BSLASHAcrfull] = ACTIONS(5997), - [anon_sym_BSLASHACRfull] = ACTIONS(5997), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5997), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5997), - [anon_sym_BSLASHacs] = ACTIONS(5997), - [anon_sym_BSLASHAcs] = ACTIONS(5997), - [anon_sym_BSLASHacsp] = ACTIONS(5997), - [anon_sym_BSLASHAcsp] = ACTIONS(5997), - [anon_sym_BSLASHacl] = ACTIONS(5997), - [anon_sym_BSLASHAcl] = ACTIONS(5997), - [anon_sym_BSLASHaclp] = ACTIONS(5997), - [anon_sym_BSLASHAclp] = ACTIONS(5997), - [anon_sym_BSLASHacf] = ACTIONS(5997), - [anon_sym_BSLASHAcf] = ACTIONS(5997), - [anon_sym_BSLASHacfp] = ACTIONS(5997), - [anon_sym_BSLASHAcfp] = ACTIONS(5997), - [anon_sym_BSLASHac] = ACTIONS(5997), - [anon_sym_BSLASHAc] = ACTIONS(5997), - [anon_sym_BSLASHacp] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5997), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5997), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5997), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5997), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5997), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6001), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5997), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5997), - [anon_sym_BSLASHcolor] = ACTIONS(5997), - [anon_sym_BSLASHcolorbox] = ACTIONS(5997), - [anon_sym_BSLASHtextcolor] = ACTIONS(5997), - [anon_sym_BSLASHpagecolor] = ACTIONS(5997), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5997), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5997), - }, - [1928] = { - [sym_command_name] = ACTIONS(6165), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6165), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_EQ] = ACTIONS(6167), - [anon_sym_LBRACE] = ACTIONS(6167), - [anon_sym_RBRACE] = ACTIONS(6167), - [sym_word] = ACTIONS(6165), - [sym_placeholder] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6167), - [anon_sym_DASH] = ACTIONS(6167), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_COLON] = ACTIONS(6165), - [anon_sym_SQUOTE] = ACTIONS(6165), - [anon_sym__] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_BSLASHtitle] = ACTIONS(6165), - [anon_sym_BSLASHauthor] = ACTIONS(6165), - [anon_sym_BSLASHusepackage] = ACTIONS(6165), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6165), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6165), - [anon_sym_BSLASHinclude] = ACTIONS(6165), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6165), - [anon_sym_BSLASHinput] = ACTIONS(6165), - [anon_sym_BSLASHsubfile] = ACTIONS(6165), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6165), - [anon_sym_BSLASHbibliography] = ACTIONS(6165), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6165), - [anon_sym_BSLASHincludesvg] = ACTIONS(6165), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6165), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6165), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6165), - [anon_sym_BSLASHimport] = ACTIONS(6165), - [anon_sym_BSLASHsubimport] = ACTIONS(6165), - [anon_sym_BSLASHinputfrom] = ACTIONS(6165), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6165), - [anon_sym_BSLASHincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6165), - [anon_sym_BSLASHcaption] = ACTIONS(6165), - [anon_sym_BSLASHcite] = ACTIONS(6165), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCite] = ACTIONS(6165), - [anon_sym_BSLASHnocite] = ACTIONS(6165), - [anon_sym_BSLASHcitet] = ACTIONS(6165), - [anon_sym_BSLASHcitep] = ACTIONS(6165), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteauthor] = ACTIONS(6165), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6165), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitetitle] = ACTIONS(6165), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteyear] = ACTIONS(6165), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6167), - [anon_sym_BSLASHcitedate] = ACTIONS(6165), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6167), - [anon_sym_BSLASHciteurl] = ACTIONS(6165), - [anon_sym_BSLASHfullcite] = ACTIONS(6165), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6165), - [anon_sym_BSLASHcitealt] = ACTIONS(6165), - [anon_sym_BSLASHcitealp] = ACTIONS(6165), - [anon_sym_BSLASHcitetext] = ACTIONS(6165), - [anon_sym_BSLASHparencite] = ACTIONS(6165), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHParencite] = ACTIONS(6165), - [anon_sym_BSLASHfootcite] = ACTIONS(6165), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6165), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6165), - [anon_sym_BSLASHtextcite] = ACTIONS(6165), - [anon_sym_BSLASHTextcite] = ACTIONS(6165), - [anon_sym_BSLASHsmartcite] = ACTIONS(6165), - [anon_sym_BSLASHSmartcite] = ACTIONS(6165), - [anon_sym_BSLASHsupercite] = ACTIONS(6165), - [anon_sym_BSLASHautocite] = ACTIONS(6165), - [anon_sym_BSLASHAutocite] = ACTIONS(6165), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6167), - [anon_sym_BSLASHvolcite] = ACTIONS(6165), - [anon_sym_BSLASHVolcite] = ACTIONS(6165), - [anon_sym_BSLASHpvolcite] = ACTIONS(6165), - [anon_sym_BSLASHPvolcite] = ACTIONS(6165), - [anon_sym_BSLASHfvolcite] = ACTIONS(6165), - [anon_sym_BSLASHftvolcite] = ACTIONS(6165), - [anon_sym_BSLASHsvolcite] = ACTIONS(6165), - [anon_sym_BSLASHSvolcite] = ACTIONS(6165), - [anon_sym_BSLASHtvolcite] = ACTIONS(6165), - [anon_sym_BSLASHTvolcite] = ACTIONS(6165), - [anon_sym_BSLASHavolcite] = ACTIONS(6165), - [anon_sym_BSLASHAvolcite] = ACTIONS(6165), - [anon_sym_BSLASHnotecite] = ACTIONS(6165), - [anon_sym_BSLASHNotecite] = ACTIONS(6165), - [anon_sym_BSLASHpnotecite] = ACTIONS(6165), - [anon_sym_BSLASHPnotecite] = ACTIONS(6165), - [anon_sym_BSLASHfnotecite] = ACTIONS(6165), - [anon_sym_BSLASHlabel] = ACTIONS(6165), - [anon_sym_BSLASHref] = ACTIONS(6165), - [anon_sym_BSLASHeqref] = ACTIONS(6165), - [anon_sym_BSLASHvref] = ACTIONS(6165), - [anon_sym_BSLASHVref] = ACTIONS(6165), - [anon_sym_BSLASHautoref] = ACTIONS(6165), - [anon_sym_BSLASHpageref] = ACTIONS(6165), - [anon_sym_BSLASHcref] = ACTIONS(6165), - [anon_sym_BSLASHCref] = ACTIONS(6165), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnameCref] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6165), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6165), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6165), - [anon_sym_BSLASHlabelcref] = ACTIONS(6165), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange] = ACTIONS(6165), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHCrefrange] = ACTIONS(6165), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6167), - [anon_sym_BSLASHnewlabel] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand] = ACTIONS(6165), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6165), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6167), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6165), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6167), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6165), - [anon_sym_BSLASHdef] = ACTIONS(6165), - [anon_sym_BSLASHlet] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6165), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6165), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6165), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6165), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6165), - [anon_sym_BSLASHgls] = ACTIONS(6165), - [anon_sym_BSLASHGls] = ACTIONS(6165), - [anon_sym_BSLASHGLS] = ACTIONS(6165), - [anon_sym_BSLASHglspl] = ACTIONS(6165), - [anon_sym_BSLASHGlspl] = ACTIONS(6165), - [anon_sym_BSLASHGLSpl] = ACTIONS(6165), - [anon_sym_BSLASHglsdisp] = ACTIONS(6165), - [anon_sym_BSLASHglslink] = ACTIONS(6165), - [anon_sym_BSLASHglstext] = ACTIONS(6165), - [anon_sym_BSLASHGlstext] = ACTIONS(6165), - [anon_sym_BSLASHGLStext] = ACTIONS(6165), - [anon_sym_BSLASHglsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6165), - [anon_sym_BSLASHglsplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSplural] = ACTIONS(6165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6165), - [anon_sym_BSLASHglsname] = ACTIONS(6165), - [anon_sym_BSLASHGlsname] = ACTIONS(6165), - [anon_sym_BSLASHGLSname] = ACTIONS(6165), - [anon_sym_BSLASHglssymbol] = ACTIONS(6165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6165), - [anon_sym_BSLASHglsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6165), - [anon_sym_BSLASHglsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6165), - [anon_sym_BSLASHglsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6165), - [anon_sym_BSLASHglsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6165), - [anon_sym_BSLASHglsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6165), - [anon_sym_BSLASHnewacronym] = ACTIONS(6165), - [anon_sym_BSLASHacrshort] = ACTIONS(6165), - [anon_sym_BSLASHAcrshort] = ACTIONS(6165), - [anon_sym_BSLASHACRshort] = ACTIONS(6165), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6165), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6165), - [anon_sym_BSLASHacrlong] = ACTIONS(6165), - [anon_sym_BSLASHAcrlong] = ACTIONS(6165), - [anon_sym_BSLASHACRlong] = ACTIONS(6165), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6165), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6165), - [anon_sym_BSLASHacrfull] = ACTIONS(6165), - [anon_sym_BSLASHAcrfull] = ACTIONS(6165), - [anon_sym_BSLASHACRfull] = ACTIONS(6165), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6165), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6165), - [anon_sym_BSLASHacs] = ACTIONS(6165), - [anon_sym_BSLASHAcs] = ACTIONS(6165), - [anon_sym_BSLASHacsp] = ACTIONS(6165), - [anon_sym_BSLASHAcsp] = ACTIONS(6165), - [anon_sym_BSLASHacl] = ACTIONS(6165), - [anon_sym_BSLASHAcl] = ACTIONS(6165), - [anon_sym_BSLASHaclp] = ACTIONS(6165), - [anon_sym_BSLASHAclp] = ACTIONS(6165), - [anon_sym_BSLASHacf] = ACTIONS(6165), - [anon_sym_BSLASHAcf] = ACTIONS(6165), - [anon_sym_BSLASHacfp] = ACTIONS(6165), - [anon_sym_BSLASHAcfp] = ACTIONS(6165), - [anon_sym_BSLASHac] = ACTIONS(6165), - [anon_sym_BSLASHAc] = ACTIONS(6165), - [anon_sym_BSLASHacp] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6165), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6165), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6165), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6165), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6165), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6165), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6165), - [anon_sym_BSLASHcolor] = ACTIONS(6165), - [anon_sym_BSLASHcolorbox] = ACTIONS(6165), - [anon_sym_BSLASHtextcolor] = ACTIONS(6165), - [anon_sym_BSLASHpagecolor] = ACTIONS(6165), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6165), - }, - [1929] = { - [sym_command_name] = ACTIONS(6025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6025), - [anon_sym_RBRACK] = ACTIONS(6027), - [anon_sym_COMMA] = ACTIONS(6027), - [anon_sym_EQ] = ACTIONS(6027), - [anon_sym_LBRACE] = ACTIONS(6027), - [anon_sym_RBRACE] = ACTIONS(6027), - [sym_word] = ACTIONS(6025), - [sym_placeholder] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6027), - [anon_sym_DASH] = ACTIONS(6027), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6025), - [anon_sym_GT] = ACTIONS(6025), - [anon_sym_BANG] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6025), - [anon_sym_SQUOTE] = ACTIONS(6025), - [anon_sym__] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_BSLASHtitle] = ACTIONS(6025), - [anon_sym_BSLASHauthor] = ACTIONS(6025), - [anon_sym_BSLASHusepackage] = ACTIONS(6025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6025), - [anon_sym_BSLASHinclude] = ACTIONS(6025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6025), - [anon_sym_BSLASHinput] = ACTIONS(6025), - [anon_sym_BSLASHsubfile] = ACTIONS(6025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6025), - [anon_sym_BSLASHbibliography] = ACTIONS(6025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6025), - [anon_sym_BSLASHincludesvg] = ACTIONS(6025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6025), - [anon_sym_BSLASHimport] = ACTIONS(6025), - [anon_sym_BSLASHsubimport] = ACTIONS(6025), - [anon_sym_BSLASHinputfrom] = ACTIONS(6025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6025), - [anon_sym_BSLASHincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6025), - [anon_sym_BSLASHcaption] = ACTIONS(6025), - [anon_sym_BSLASHcite] = ACTIONS(6025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCite] = ACTIONS(6025), - [anon_sym_BSLASHnocite] = ACTIONS(6025), - [anon_sym_BSLASHcitet] = ACTIONS(6025), - [anon_sym_BSLASHcitep] = ACTIONS(6025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteauthor] = ACTIONS(6025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitetitle] = ACTIONS(6025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteyear] = ACTIONS(6025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6027), - [anon_sym_BSLASHcitedate] = ACTIONS(6025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6027), - [anon_sym_BSLASHciteurl] = ACTIONS(6025), - [anon_sym_BSLASHfullcite] = ACTIONS(6025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6025), - [anon_sym_BSLASHcitealt] = ACTIONS(6025), - [anon_sym_BSLASHcitealp] = ACTIONS(6025), - [anon_sym_BSLASHcitetext] = ACTIONS(6025), - [anon_sym_BSLASHparencite] = ACTIONS(6025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHParencite] = ACTIONS(6025), - [anon_sym_BSLASHfootcite] = ACTIONS(6025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6025), - [anon_sym_BSLASHtextcite] = ACTIONS(6025), - [anon_sym_BSLASHTextcite] = ACTIONS(6025), - [anon_sym_BSLASHsmartcite] = ACTIONS(6025), - [anon_sym_BSLASHSmartcite] = ACTIONS(6025), - [anon_sym_BSLASHsupercite] = ACTIONS(6025), - [anon_sym_BSLASHautocite] = ACTIONS(6025), - [anon_sym_BSLASHAutocite] = ACTIONS(6025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6027), - [anon_sym_BSLASHvolcite] = ACTIONS(6025), - [anon_sym_BSLASHVolcite] = ACTIONS(6025), - [anon_sym_BSLASHpvolcite] = ACTIONS(6025), - [anon_sym_BSLASHPvolcite] = ACTIONS(6025), - [anon_sym_BSLASHfvolcite] = ACTIONS(6025), - [anon_sym_BSLASHftvolcite] = ACTIONS(6025), - [anon_sym_BSLASHsvolcite] = ACTIONS(6025), - [anon_sym_BSLASHSvolcite] = ACTIONS(6025), - [anon_sym_BSLASHtvolcite] = ACTIONS(6025), - [anon_sym_BSLASHTvolcite] = ACTIONS(6025), - [anon_sym_BSLASHavolcite] = ACTIONS(6025), - [anon_sym_BSLASHAvolcite] = ACTIONS(6025), - [anon_sym_BSLASHnotecite] = ACTIONS(6025), - [anon_sym_BSLASHNotecite] = ACTIONS(6025), - [anon_sym_BSLASHpnotecite] = ACTIONS(6025), - [anon_sym_BSLASHPnotecite] = ACTIONS(6025), - [anon_sym_BSLASHfnotecite] = ACTIONS(6025), - [anon_sym_BSLASHlabel] = ACTIONS(6025), - [anon_sym_BSLASHref] = ACTIONS(6025), - [anon_sym_BSLASHeqref] = ACTIONS(6025), - [anon_sym_BSLASHvref] = ACTIONS(6025), - [anon_sym_BSLASHVref] = ACTIONS(6025), - [anon_sym_BSLASHautoref] = ACTIONS(6025), - [anon_sym_BSLASHpageref] = ACTIONS(6025), - [anon_sym_BSLASHcref] = ACTIONS(6025), - [anon_sym_BSLASHCref] = ACTIONS(6025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnameCref] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6025), - [anon_sym_BSLASHlabelcref] = ACTIONS(6025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange] = ACTIONS(6025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHCrefrange] = ACTIONS(6025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6027), - [anon_sym_BSLASHnewlabel] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand] = ACTIONS(6025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6027), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6025), - [anon_sym_BSLASHdef] = ACTIONS(6025), - [anon_sym_BSLASHlet] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6025), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6025), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6025), - [anon_sym_BSLASHgls] = ACTIONS(6025), - [anon_sym_BSLASHGls] = ACTIONS(6025), - [anon_sym_BSLASHGLS] = ACTIONS(6025), - [anon_sym_BSLASHglspl] = ACTIONS(6025), - [anon_sym_BSLASHGlspl] = ACTIONS(6025), - [anon_sym_BSLASHGLSpl] = ACTIONS(6025), - [anon_sym_BSLASHglsdisp] = ACTIONS(6025), - [anon_sym_BSLASHglslink] = ACTIONS(6025), - [anon_sym_BSLASHglstext] = ACTIONS(6025), - [anon_sym_BSLASHGlstext] = ACTIONS(6025), - [anon_sym_BSLASHGLStext] = ACTIONS(6025), - [anon_sym_BSLASHglsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6025), - [anon_sym_BSLASHglsplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSplural] = ACTIONS(6025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6025), - [anon_sym_BSLASHglsname] = ACTIONS(6025), - [anon_sym_BSLASHGlsname] = ACTIONS(6025), - [anon_sym_BSLASHGLSname] = ACTIONS(6025), - [anon_sym_BSLASHglssymbol] = ACTIONS(6025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6025), - [anon_sym_BSLASHglsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6025), - [anon_sym_BSLASHglsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6025), - [anon_sym_BSLASHglsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6025), - [anon_sym_BSLASHglsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6025), - [anon_sym_BSLASHglsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6025), - [anon_sym_BSLASHnewacronym] = ACTIONS(6025), - [anon_sym_BSLASHacrshort] = ACTIONS(6025), - [anon_sym_BSLASHAcrshort] = ACTIONS(6025), - [anon_sym_BSLASHACRshort] = ACTIONS(6025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6025), - [anon_sym_BSLASHacrlong] = ACTIONS(6025), - [anon_sym_BSLASHAcrlong] = ACTIONS(6025), - [anon_sym_BSLASHACRlong] = ACTIONS(6025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6025), - [anon_sym_BSLASHacrfull] = ACTIONS(6025), - [anon_sym_BSLASHAcrfull] = ACTIONS(6025), - [anon_sym_BSLASHACRfull] = ACTIONS(6025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6025), - [anon_sym_BSLASHacs] = ACTIONS(6025), - [anon_sym_BSLASHAcs] = ACTIONS(6025), - [anon_sym_BSLASHacsp] = ACTIONS(6025), - [anon_sym_BSLASHAcsp] = ACTIONS(6025), - [anon_sym_BSLASHacl] = ACTIONS(6025), - [anon_sym_BSLASHAcl] = ACTIONS(6025), - [anon_sym_BSLASHaclp] = ACTIONS(6025), - [anon_sym_BSLASHAclp] = ACTIONS(6025), - [anon_sym_BSLASHacf] = ACTIONS(6025), - [anon_sym_BSLASHAcf] = ACTIONS(6025), - [anon_sym_BSLASHacfp] = ACTIONS(6025), - [anon_sym_BSLASHAcfp] = ACTIONS(6025), - [anon_sym_BSLASHac] = ACTIONS(6025), - [anon_sym_BSLASHAc] = ACTIONS(6025), - [anon_sym_BSLASHacp] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6025), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6025), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6027), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6025), - [anon_sym_BSLASHcolor] = ACTIONS(6025), - [anon_sym_BSLASHcolorbox] = ACTIONS(6025), - [anon_sym_BSLASHtextcolor] = ACTIONS(6025), - [anon_sym_BSLASHpagecolor] = ACTIONS(6025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), - }, - [1930] = { - [sym_command_name] = ACTIONS(6461), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6461), - [anon_sym_RBRACK] = ACTIONS(6463), - [anon_sym_COMMA] = ACTIONS(6463), - [anon_sym_EQ] = ACTIONS(6463), - [anon_sym_RBRACE] = ACTIONS(6463), - [sym_word] = ACTIONS(6461), - [sym_placeholder] = ACTIONS(6463), - [anon_sym_PLUS] = ACTIONS(6463), - [anon_sym_DASH] = ACTIONS(6463), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_SLASH] = ACTIONS(6463), - [anon_sym_LT] = ACTIONS(6461), - [anon_sym_GT] = ACTIONS(6461), - [anon_sym_BANG] = ACTIONS(6461), - [anon_sym_PIPE] = ACTIONS(6461), - [anon_sym_COLON] = ACTIONS(6461), - [anon_sym_SQUOTE] = ACTIONS(6461), - [anon_sym__] = ACTIONS(6463), - [anon_sym_CARET] = ACTIONS(6463), - [anon_sym_BSLASHtitle] = ACTIONS(6461), - [anon_sym_BSLASHauthor] = ACTIONS(6461), - [anon_sym_BSLASHusepackage] = ACTIONS(6461), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6461), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6461), - [anon_sym_BSLASHinclude] = ACTIONS(6461), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6461), - [anon_sym_BSLASHinput] = ACTIONS(6461), - [anon_sym_BSLASHsubfile] = ACTIONS(6461), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6461), - [anon_sym_BSLASHbibliography] = ACTIONS(6461), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6461), - [anon_sym_BSLASHincludesvg] = ACTIONS(6461), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6461), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6461), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6461), - [anon_sym_BSLASHimport] = ACTIONS(6461), - [anon_sym_BSLASHsubimport] = ACTIONS(6461), - [anon_sym_BSLASHinputfrom] = ACTIONS(6461), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6461), - [anon_sym_BSLASHincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6461), - [anon_sym_BSLASHcaption] = ACTIONS(6461), - [anon_sym_BSLASHcite] = ACTIONS(6461), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCite] = ACTIONS(6461), - [anon_sym_BSLASHnocite] = ACTIONS(6461), - [anon_sym_BSLASHcitet] = ACTIONS(6461), - [anon_sym_BSLASHcitep] = ACTIONS(6461), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteauthor] = ACTIONS(6461), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6461), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitetitle] = ACTIONS(6461), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteyear] = ACTIONS(6461), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6463), - [anon_sym_BSLASHcitedate] = ACTIONS(6461), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6463), - [anon_sym_BSLASHciteurl] = ACTIONS(6461), - [anon_sym_BSLASHfullcite] = ACTIONS(6461), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6461), - [anon_sym_BSLASHcitealt] = ACTIONS(6461), - [anon_sym_BSLASHcitealp] = ACTIONS(6461), - [anon_sym_BSLASHcitetext] = ACTIONS(6461), - [anon_sym_BSLASHparencite] = ACTIONS(6461), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHParencite] = ACTIONS(6461), - [anon_sym_BSLASHfootcite] = ACTIONS(6461), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6461), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6461), - [anon_sym_BSLASHtextcite] = ACTIONS(6461), - [anon_sym_BSLASHTextcite] = ACTIONS(6461), - [anon_sym_BSLASHsmartcite] = ACTIONS(6461), - [anon_sym_BSLASHSmartcite] = ACTIONS(6461), - [anon_sym_BSLASHsupercite] = ACTIONS(6461), - [anon_sym_BSLASHautocite] = ACTIONS(6461), - [anon_sym_BSLASHAutocite] = ACTIONS(6461), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6463), - [anon_sym_BSLASHvolcite] = ACTIONS(6461), - [anon_sym_BSLASHVolcite] = ACTIONS(6461), - [anon_sym_BSLASHpvolcite] = ACTIONS(6461), - [anon_sym_BSLASHPvolcite] = ACTIONS(6461), - [anon_sym_BSLASHfvolcite] = ACTIONS(6461), - [anon_sym_BSLASHftvolcite] = ACTIONS(6461), - [anon_sym_BSLASHsvolcite] = ACTIONS(6461), - [anon_sym_BSLASHSvolcite] = ACTIONS(6461), - [anon_sym_BSLASHtvolcite] = ACTIONS(6461), - [anon_sym_BSLASHTvolcite] = ACTIONS(6461), - [anon_sym_BSLASHavolcite] = ACTIONS(6461), - [anon_sym_BSLASHAvolcite] = ACTIONS(6461), - [anon_sym_BSLASHnotecite] = ACTIONS(6461), - [anon_sym_BSLASHNotecite] = ACTIONS(6461), - [anon_sym_BSLASHpnotecite] = ACTIONS(6461), - [anon_sym_BSLASHPnotecite] = ACTIONS(6461), - [anon_sym_BSLASHfnotecite] = ACTIONS(6461), - [anon_sym_BSLASHlabel] = ACTIONS(6461), - [anon_sym_BSLASHref] = ACTIONS(6461), - [anon_sym_BSLASHeqref] = ACTIONS(6461), - [anon_sym_BSLASHvref] = ACTIONS(6461), - [anon_sym_BSLASHVref] = ACTIONS(6461), - [anon_sym_BSLASHautoref] = ACTIONS(6461), - [anon_sym_BSLASHpageref] = ACTIONS(6461), - [anon_sym_BSLASHcref] = ACTIONS(6461), - [anon_sym_BSLASHCref] = ACTIONS(6461), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnameCref] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6461), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6461), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6461), - [anon_sym_BSLASHlabelcref] = ACTIONS(6461), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange] = ACTIONS(6461), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHCrefrange] = ACTIONS(6461), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6463), - [anon_sym_BSLASHnewlabel] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand] = ACTIONS(6461), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6461), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6461), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6463), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6461), - [anon_sym_BSLASHdef] = ACTIONS(6461), - [anon_sym_BSLASHlet] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6461), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6461), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6461), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6461), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6461), - [anon_sym_BSLASHgls] = ACTIONS(6461), - [anon_sym_BSLASHGls] = ACTIONS(6461), - [anon_sym_BSLASHGLS] = ACTIONS(6461), - [anon_sym_BSLASHglspl] = ACTIONS(6461), - [anon_sym_BSLASHGlspl] = ACTIONS(6461), - [anon_sym_BSLASHGLSpl] = ACTIONS(6461), - [anon_sym_BSLASHglsdisp] = ACTIONS(6461), - [anon_sym_BSLASHglslink] = ACTIONS(6461), - [anon_sym_BSLASHglstext] = ACTIONS(6461), - [anon_sym_BSLASHGlstext] = ACTIONS(6461), - [anon_sym_BSLASHGLStext] = ACTIONS(6461), - [anon_sym_BSLASHglsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6461), - [anon_sym_BSLASHglsplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSplural] = ACTIONS(6461), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6461), - [anon_sym_BSLASHglsname] = ACTIONS(6461), - [anon_sym_BSLASHGlsname] = ACTIONS(6461), - [anon_sym_BSLASHGLSname] = ACTIONS(6461), - [anon_sym_BSLASHglssymbol] = ACTIONS(6461), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6461), - [anon_sym_BSLASHglsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6461), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6461), - [anon_sym_BSLASHglsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6461), - [anon_sym_BSLASHglsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6461), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6461), - [anon_sym_BSLASHglsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6461), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6461), - [anon_sym_BSLASHglsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6461), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6461), - [anon_sym_BSLASHnewacronym] = ACTIONS(6461), - [anon_sym_BSLASHacrshort] = ACTIONS(6461), - [anon_sym_BSLASHAcrshort] = ACTIONS(6461), - [anon_sym_BSLASHACRshort] = ACTIONS(6461), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6461), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6461), - [anon_sym_BSLASHacrlong] = ACTIONS(6461), - [anon_sym_BSLASHAcrlong] = ACTIONS(6461), - [anon_sym_BSLASHACRlong] = ACTIONS(6461), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6461), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6461), - [anon_sym_BSLASHacrfull] = ACTIONS(6461), - [anon_sym_BSLASHAcrfull] = ACTIONS(6461), - [anon_sym_BSLASHACRfull] = ACTIONS(6461), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6461), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6461), - [anon_sym_BSLASHacs] = ACTIONS(6461), - [anon_sym_BSLASHAcs] = ACTIONS(6461), - [anon_sym_BSLASHacsp] = ACTIONS(6461), - [anon_sym_BSLASHAcsp] = ACTIONS(6461), - [anon_sym_BSLASHacl] = ACTIONS(6461), - [anon_sym_BSLASHAcl] = ACTIONS(6461), - [anon_sym_BSLASHaclp] = ACTIONS(6461), - [anon_sym_BSLASHAclp] = ACTIONS(6461), - [anon_sym_BSLASHacf] = ACTIONS(6461), - [anon_sym_BSLASHAcf] = ACTIONS(6461), - [anon_sym_BSLASHacfp] = ACTIONS(6461), - [anon_sym_BSLASHAcfp] = ACTIONS(6461), - [anon_sym_BSLASHac] = ACTIONS(6461), - [anon_sym_BSLASHAc] = ACTIONS(6461), - [anon_sym_BSLASHacp] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6461), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6461), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6461), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6461), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6461), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6461), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6461), - [anon_sym_BSLASHcolor] = ACTIONS(6461), - [anon_sym_BSLASHcolorbox] = ACTIONS(6461), - [anon_sym_BSLASHtextcolor] = ACTIONS(6461), - [anon_sym_BSLASHpagecolor] = ACTIONS(6461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6461), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6461), - }, - [1931] = { - [sym_command_name] = ACTIONS(6521), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6521), - [anon_sym_RBRACK] = ACTIONS(6523), - [anon_sym_COMMA] = ACTIONS(6523), - [anon_sym_EQ] = ACTIONS(6523), - [anon_sym_RBRACE] = ACTIONS(6523), - [sym_word] = ACTIONS(6521), - [sym_placeholder] = ACTIONS(6523), - [anon_sym_PLUS] = ACTIONS(6523), - [anon_sym_DASH] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(6523), - [anon_sym_SLASH] = ACTIONS(6523), - [anon_sym_LT] = ACTIONS(6521), - [anon_sym_GT] = ACTIONS(6521), - [anon_sym_BANG] = ACTIONS(6521), - [anon_sym_PIPE] = ACTIONS(6521), - [anon_sym_COLON] = ACTIONS(6521), - [anon_sym_SQUOTE] = ACTIONS(6521), - [anon_sym__] = ACTIONS(6523), - [anon_sym_CARET] = ACTIONS(6523), - [anon_sym_BSLASHtitle] = ACTIONS(6521), - [anon_sym_BSLASHauthor] = ACTIONS(6521), - [anon_sym_BSLASHusepackage] = ACTIONS(6521), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6521), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6521), - [anon_sym_BSLASHinclude] = ACTIONS(6521), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6521), - [anon_sym_BSLASHinput] = ACTIONS(6521), - [anon_sym_BSLASHsubfile] = ACTIONS(6521), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6521), - [anon_sym_BSLASHbibliography] = ACTIONS(6521), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6521), - [anon_sym_BSLASHincludesvg] = ACTIONS(6521), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6521), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6521), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6521), - [anon_sym_BSLASHimport] = ACTIONS(6521), - [anon_sym_BSLASHsubimport] = ACTIONS(6521), - [anon_sym_BSLASHinputfrom] = ACTIONS(6521), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6521), - [anon_sym_BSLASHincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6521), - [anon_sym_BSLASHcaption] = ACTIONS(6521), - [anon_sym_BSLASHcite] = ACTIONS(6521), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCite] = ACTIONS(6521), - [anon_sym_BSLASHnocite] = ACTIONS(6521), - [anon_sym_BSLASHcitet] = ACTIONS(6521), - [anon_sym_BSLASHcitep] = ACTIONS(6521), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteauthor] = ACTIONS(6521), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6521), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitetitle] = ACTIONS(6521), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteyear] = ACTIONS(6521), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6523), - [anon_sym_BSLASHcitedate] = ACTIONS(6521), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6523), - [anon_sym_BSLASHciteurl] = ACTIONS(6521), - [anon_sym_BSLASHfullcite] = ACTIONS(6521), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6521), - [anon_sym_BSLASHcitealt] = ACTIONS(6521), - [anon_sym_BSLASHcitealp] = ACTIONS(6521), - [anon_sym_BSLASHcitetext] = ACTIONS(6521), - [anon_sym_BSLASHparencite] = ACTIONS(6521), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHParencite] = ACTIONS(6521), - [anon_sym_BSLASHfootcite] = ACTIONS(6521), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6521), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6521), - [anon_sym_BSLASHtextcite] = ACTIONS(6521), - [anon_sym_BSLASHTextcite] = ACTIONS(6521), - [anon_sym_BSLASHsmartcite] = ACTIONS(6521), - [anon_sym_BSLASHSmartcite] = ACTIONS(6521), - [anon_sym_BSLASHsupercite] = ACTIONS(6521), - [anon_sym_BSLASHautocite] = ACTIONS(6521), - [anon_sym_BSLASHAutocite] = ACTIONS(6521), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6523), - [anon_sym_BSLASHvolcite] = ACTIONS(6521), - [anon_sym_BSLASHVolcite] = ACTIONS(6521), - [anon_sym_BSLASHpvolcite] = ACTIONS(6521), - [anon_sym_BSLASHPvolcite] = ACTIONS(6521), - [anon_sym_BSLASHfvolcite] = ACTIONS(6521), - [anon_sym_BSLASHftvolcite] = ACTIONS(6521), - [anon_sym_BSLASHsvolcite] = ACTIONS(6521), - [anon_sym_BSLASHSvolcite] = ACTIONS(6521), - [anon_sym_BSLASHtvolcite] = ACTIONS(6521), - [anon_sym_BSLASHTvolcite] = ACTIONS(6521), - [anon_sym_BSLASHavolcite] = ACTIONS(6521), - [anon_sym_BSLASHAvolcite] = ACTIONS(6521), - [anon_sym_BSLASHnotecite] = ACTIONS(6521), - [anon_sym_BSLASHNotecite] = ACTIONS(6521), - [anon_sym_BSLASHpnotecite] = ACTIONS(6521), - [anon_sym_BSLASHPnotecite] = ACTIONS(6521), - [anon_sym_BSLASHfnotecite] = ACTIONS(6521), - [anon_sym_BSLASHlabel] = ACTIONS(6521), - [anon_sym_BSLASHref] = ACTIONS(6521), - [anon_sym_BSLASHeqref] = ACTIONS(6521), - [anon_sym_BSLASHvref] = ACTIONS(6521), - [anon_sym_BSLASHVref] = ACTIONS(6521), - [anon_sym_BSLASHautoref] = ACTIONS(6521), - [anon_sym_BSLASHpageref] = ACTIONS(6521), - [anon_sym_BSLASHcref] = ACTIONS(6521), - [anon_sym_BSLASHCref] = ACTIONS(6521), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnameCref] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6521), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6521), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6521), - [anon_sym_BSLASHlabelcref] = ACTIONS(6521), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange] = ACTIONS(6521), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHCrefrange] = ACTIONS(6521), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6523), - [anon_sym_BSLASHnewlabel] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand] = ACTIONS(6521), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6521), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6523), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6521), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6523), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6521), - [anon_sym_BSLASHdef] = ACTIONS(6521), - [anon_sym_BSLASHlet] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6521), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6521), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6521), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6521), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6521), - [anon_sym_BSLASHgls] = ACTIONS(6521), - [anon_sym_BSLASHGls] = ACTIONS(6521), - [anon_sym_BSLASHGLS] = ACTIONS(6521), - [anon_sym_BSLASHglspl] = ACTIONS(6521), - [anon_sym_BSLASHGlspl] = ACTIONS(6521), - [anon_sym_BSLASHGLSpl] = ACTIONS(6521), - [anon_sym_BSLASHglsdisp] = ACTIONS(6521), - [anon_sym_BSLASHglslink] = ACTIONS(6521), - [anon_sym_BSLASHglstext] = ACTIONS(6521), - [anon_sym_BSLASHGlstext] = ACTIONS(6521), - [anon_sym_BSLASHGLStext] = ACTIONS(6521), - [anon_sym_BSLASHglsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6521), - [anon_sym_BSLASHglsplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSplural] = ACTIONS(6521), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6521), - [anon_sym_BSLASHglsname] = ACTIONS(6521), - [anon_sym_BSLASHGlsname] = ACTIONS(6521), - [anon_sym_BSLASHGLSname] = ACTIONS(6521), - [anon_sym_BSLASHglssymbol] = ACTIONS(6521), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6521), - [anon_sym_BSLASHglsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6521), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6521), - [anon_sym_BSLASHglsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6521), - [anon_sym_BSLASHglsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6521), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6521), - [anon_sym_BSLASHglsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6521), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6521), - [anon_sym_BSLASHglsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6521), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6521), - [anon_sym_BSLASHnewacronym] = ACTIONS(6521), - [anon_sym_BSLASHacrshort] = ACTIONS(6521), - [anon_sym_BSLASHAcrshort] = ACTIONS(6521), - [anon_sym_BSLASHACRshort] = ACTIONS(6521), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6521), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6521), - [anon_sym_BSLASHacrlong] = ACTIONS(6521), - [anon_sym_BSLASHAcrlong] = ACTIONS(6521), - [anon_sym_BSLASHACRlong] = ACTIONS(6521), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6521), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6521), - [anon_sym_BSLASHacrfull] = ACTIONS(6521), - [anon_sym_BSLASHAcrfull] = ACTIONS(6521), - [anon_sym_BSLASHACRfull] = ACTIONS(6521), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6521), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6521), - [anon_sym_BSLASHacs] = ACTIONS(6521), - [anon_sym_BSLASHAcs] = ACTIONS(6521), - [anon_sym_BSLASHacsp] = ACTIONS(6521), - [anon_sym_BSLASHAcsp] = ACTIONS(6521), - [anon_sym_BSLASHacl] = ACTIONS(6521), - [anon_sym_BSLASHAcl] = ACTIONS(6521), - [anon_sym_BSLASHaclp] = ACTIONS(6521), - [anon_sym_BSLASHAclp] = ACTIONS(6521), - [anon_sym_BSLASHacf] = ACTIONS(6521), - [anon_sym_BSLASHAcf] = ACTIONS(6521), - [anon_sym_BSLASHacfp] = ACTIONS(6521), - [anon_sym_BSLASHAcfp] = ACTIONS(6521), - [anon_sym_BSLASHac] = ACTIONS(6521), - [anon_sym_BSLASHAc] = ACTIONS(6521), - [anon_sym_BSLASHacp] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6521), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6521), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6521), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6521), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6521), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6523), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6521), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6521), - [anon_sym_BSLASHcolor] = ACTIONS(6521), - [anon_sym_BSLASHcolorbox] = ACTIONS(6521), - [anon_sym_BSLASHtextcolor] = ACTIONS(6521), - [anon_sym_BSLASHpagecolor] = ACTIONS(6521), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6521), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6521), - }, - [1932] = { - [sym_command_name] = ACTIONS(6529), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6529), - [anon_sym_RBRACK] = ACTIONS(6531), - [anon_sym_COMMA] = ACTIONS(6531), - [anon_sym_EQ] = ACTIONS(6531), - [anon_sym_RBRACE] = ACTIONS(6531), - [sym_word] = ACTIONS(6529), - [sym_placeholder] = ACTIONS(6531), - [anon_sym_PLUS] = ACTIONS(6531), - [anon_sym_DASH] = ACTIONS(6531), - [anon_sym_STAR] = ACTIONS(6531), - [anon_sym_SLASH] = ACTIONS(6531), - [anon_sym_LT] = ACTIONS(6529), - [anon_sym_GT] = ACTIONS(6529), - [anon_sym_BANG] = ACTIONS(6529), - [anon_sym_PIPE] = ACTIONS(6529), - [anon_sym_COLON] = ACTIONS(6529), - [anon_sym_SQUOTE] = ACTIONS(6529), - [anon_sym__] = ACTIONS(6531), - [anon_sym_CARET] = ACTIONS(6531), - [anon_sym_BSLASHtitle] = ACTIONS(6529), - [anon_sym_BSLASHauthor] = ACTIONS(6529), - [anon_sym_BSLASHusepackage] = ACTIONS(6529), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6529), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6529), - [anon_sym_BSLASHinclude] = ACTIONS(6529), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6529), - [anon_sym_BSLASHinput] = ACTIONS(6529), - [anon_sym_BSLASHsubfile] = ACTIONS(6529), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6529), - [anon_sym_BSLASHbibliography] = ACTIONS(6529), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6529), - [anon_sym_BSLASHincludesvg] = ACTIONS(6529), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6529), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6529), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6529), - [anon_sym_BSLASHimport] = ACTIONS(6529), - [anon_sym_BSLASHsubimport] = ACTIONS(6529), - [anon_sym_BSLASHinputfrom] = ACTIONS(6529), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6529), - [anon_sym_BSLASHincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6529), - [anon_sym_BSLASHcaption] = ACTIONS(6529), - [anon_sym_BSLASHcite] = ACTIONS(6529), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCite] = ACTIONS(6529), - [anon_sym_BSLASHnocite] = ACTIONS(6529), - [anon_sym_BSLASHcitet] = ACTIONS(6529), - [anon_sym_BSLASHcitep] = ACTIONS(6529), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteauthor] = ACTIONS(6529), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6529), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitetitle] = ACTIONS(6529), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteyear] = ACTIONS(6529), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6531), - [anon_sym_BSLASHcitedate] = ACTIONS(6529), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6531), - [anon_sym_BSLASHciteurl] = ACTIONS(6529), - [anon_sym_BSLASHfullcite] = ACTIONS(6529), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6529), - [anon_sym_BSLASHcitealt] = ACTIONS(6529), - [anon_sym_BSLASHcitealp] = ACTIONS(6529), - [anon_sym_BSLASHcitetext] = ACTIONS(6529), - [anon_sym_BSLASHparencite] = ACTIONS(6529), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHParencite] = ACTIONS(6529), - [anon_sym_BSLASHfootcite] = ACTIONS(6529), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6529), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6529), - [anon_sym_BSLASHtextcite] = ACTIONS(6529), - [anon_sym_BSLASHTextcite] = ACTIONS(6529), - [anon_sym_BSLASHsmartcite] = ACTIONS(6529), - [anon_sym_BSLASHSmartcite] = ACTIONS(6529), - [anon_sym_BSLASHsupercite] = ACTIONS(6529), - [anon_sym_BSLASHautocite] = ACTIONS(6529), - [anon_sym_BSLASHAutocite] = ACTIONS(6529), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6531), - [anon_sym_BSLASHvolcite] = ACTIONS(6529), - [anon_sym_BSLASHVolcite] = ACTIONS(6529), - [anon_sym_BSLASHpvolcite] = ACTIONS(6529), - [anon_sym_BSLASHPvolcite] = ACTIONS(6529), - [anon_sym_BSLASHfvolcite] = ACTIONS(6529), - [anon_sym_BSLASHftvolcite] = ACTIONS(6529), - [anon_sym_BSLASHsvolcite] = ACTIONS(6529), - [anon_sym_BSLASHSvolcite] = ACTIONS(6529), - [anon_sym_BSLASHtvolcite] = ACTIONS(6529), - [anon_sym_BSLASHTvolcite] = ACTIONS(6529), - [anon_sym_BSLASHavolcite] = ACTIONS(6529), - [anon_sym_BSLASHAvolcite] = ACTIONS(6529), - [anon_sym_BSLASHnotecite] = ACTIONS(6529), - [anon_sym_BSLASHNotecite] = ACTIONS(6529), - [anon_sym_BSLASHpnotecite] = ACTIONS(6529), - [anon_sym_BSLASHPnotecite] = ACTIONS(6529), - [anon_sym_BSLASHfnotecite] = ACTIONS(6529), - [anon_sym_BSLASHlabel] = ACTIONS(6529), - [anon_sym_BSLASHref] = ACTIONS(6529), - [anon_sym_BSLASHeqref] = ACTIONS(6529), - [anon_sym_BSLASHvref] = ACTIONS(6529), - [anon_sym_BSLASHVref] = ACTIONS(6529), - [anon_sym_BSLASHautoref] = ACTIONS(6529), - [anon_sym_BSLASHpageref] = ACTIONS(6529), - [anon_sym_BSLASHcref] = ACTIONS(6529), - [anon_sym_BSLASHCref] = ACTIONS(6529), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnameCref] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6529), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6529), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6529), - [anon_sym_BSLASHlabelcref] = ACTIONS(6529), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange] = ACTIONS(6529), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHCrefrange] = ACTIONS(6529), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6531), - [anon_sym_BSLASHnewlabel] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand] = ACTIONS(6529), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6529), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6531), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6529), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6531), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6529), - [anon_sym_BSLASHdef] = ACTIONS(6529), - [anon_sym_BSLASHlet] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6529), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6529), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6529), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6529), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6529), - [anon_sym_BSLASHgls] = ACTIONS(6529), - [anon_sym_BSLASHGls] = ACTIONS(6529), - [anon_sym_BSLASHGLS] = ACTIONS(6529), - [anon_sym_BSLASHglspl] = ACTIONS(6529), - [anon_sym_BSLASHGlspl] = ACTIONS(6529), - [anon_sym_BSLASHGLSpl] = ACTIONS(6529), - [anon_sym_BSLASHglsdisp] = ACTIONS(6529), - [anon_sym_BSLASHglslink] = ACTIONS(6529), - [anon_sym_BSLASHglstext] = ACTIONS(6529), - [anon_sym_BSLASHGlstext] = ACTIONS(6529), - [anon_sym_BSLASHGLStext] = ACTIONS(6529), - [anon_sym_BSLASHglsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6529), - [anon_sym_BSLASHglsplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSplural] = ACTIONS(6529), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6529), - [anon_sym_BSLASHglsname] = ACTIONS(6529), - [anon_sym_BSLASHGlsname] = ACTIONS(6529), - [anon_sym_BSLASHGLSname] = ACTIONS(6529), - [anon_sym_BSLASHglssymbol] = ACTIONS(6529), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6529), - [anon_sym_BSLASHglsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6529), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6529), - [anon_sym_BSLASHglsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6529), - [anon_sym_BSLASHglsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6529), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6529), - [anon_sym_BSLASHglsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6529), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6529), - [anon_sym_BSLASHglsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6529), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6529), - [anon_sym_BSLASHnewacronym] = ACTIONS(6529), - [anon_sym_BSLASHacrshort] = ACTIONS(6529), - [anon_sym_BSLASHAcrshort] = ACTIONS(6529), - [anon_sym_BSLASHACRshort] = ACTIONS(6529), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6529), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6529), - [anon_sym_BSLASHacrlong] = ACTIONS(6529), - [anon_sym_BSLASHAcrlong] = ACTIONS(6529), - [anon_sym_BSLASHACRlong] = ACTIONS(6529), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6529), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6529), - [anon_sym_BSLASHacrfull] = ACTIONS(6529), - [anon_sym_BSLASHAcrfull] = ACTIONS(6529), - [anon_sym_BSLASHACRfull] = ACTIONS(6529), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6529), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6529), - [anon_sym_BSLASHacs] = ACTIONS(6529), - [anon_sym_BSLASHAcs] = ACTIONS(6529), - [anon_sym_BSLASHacsp] = ACTIONS(6529), - [anon_sym_BSLASHAcsp] = ACTIONS(6529), - [anon_sym_BSLASHacl] = ACTIONS(6529), - [anon_sym_BSLASHAcl] = ACTIONS(6529), - [anon_sym_BSLASHaclp] = ACTIONS(6529), - [anon_sym_BSLASHAclp] = ACTIONS(6529), - [anon_sym_BSLASHacf] = ACTIONS(6529), - [anon_sym_BSLASHAcf] = ACTIONS(6529), - [anon_sym_BSLASHacfp] = ACTIONS(6529), - [anon_sym_BSLASHAcfp] = ACTIONS(6529), - [anon_sym_BSLASHac] = ACTIONS(6529), - [anon_sym_BSLASHAc] = ACTIONS(6529), - [anon_sym_BSLASHacp] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6529), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6529), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6529), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6529), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6529), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6531), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6529), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6529), - [anon_sym_BSLASHcolor] = ACTIONS(6529), - [anon_sym_BSLASHcolorbox] = ACTIONS(6529), - [anon_sym_BSLASHtextcolor] = ACTIONS(6529), - [anon_sym_BSLASHpagecolor] = ACTIONS(6529), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6529), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6529), - }, - [1933] = { - [sym_command_name] = ACTIONS(6525), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6525), - [anon_sym_RBRACK] = ACTIONS(6527), - [anon_sym_COMMA] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(6527), - [anon_sym_RBRACE] = ACTIONS(6527), - [sym_word] = ACTIONS(6525), - [sym_placeholder] = ACTIONS(6527), - [anon_sym_PLUS] = ACTIONS(6527), - [anon_sym_DASH] = ACTIONS(6527), - [anon_sym_STAR] = ACTIONS(6527), - [anon_sym_SLASH] = ACTIONS(6527), - [anon_sym_LT] = ACTIONS(6525), - [anon_sym_GT] = ACTIONS(6525), - [anon_sym_BANG] = ACTIONS(6525), - [anon_sym_PIPE] = ACTIONS(6525), - [anon_sym_COLON] = ACTIONS(6525), - [anon_sym_SQUOTE] = ACTIONS(6525), - [anon_sym__] = ACTIONS(6527), - [anon_sym_CARET] = ACTIONS(6527), - [anon_sym_BSLASHtitle] = ACTIONS(6525), - [anon_sym_BSLASHauthor] = ACTIONS(6525), - [anon_sym_BSLASHusepackage] = ACTIONS(6525), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6525), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6525), - [anon_sym_BSLASHinclude] = ACTIONS(6525), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6525), - [anon_sym_BSLASHinput] = ACTIONS(6525), - [anon_sym_BSLASHsubfile] = ACTIONS(6525), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6525), - [anon_sym_BSLASHbibliography] = ACTIONS(6525), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6525), - [anon_sym_BSLASHincludesvg] = ACTIONS(6525), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6525), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6525), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6525), - [anon_sym_BSLASHimport] = ACTIONS(6525), - [anon_sym_BSLASHsubimport] = ACTIONS(6525), - [anon_sym_BSLASHinputfrom] = ACTIONS(6525), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6525), - [anon_sym_BSLASHincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6525), - [anon_sym_BSLASHcaption] = ACTIONS(6525), - [anon_sym_BSLASHcite] = ACTIONS(6525), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCite] = ACTIONS(6525), - [anon_sym_BSLASHnocite] = ACTIONS(6525), - [anon_sym_BSLASHcitet] = ACTIONS(6525), - [anon_sym_BSLASHcitep] = ACTIONS(6525), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteauthor] = ACTIONS(6525), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6525), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitetitle] = ACTIONS(6525), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteyear] = ACTIONS(6525), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6527), - [anon_sym_BSLASHcitedate] = ACTIONS(6525), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6527), - [anon_sym_BSLASHciteurl] = ACTIONS(6525), - [anon_sym_BSLASHfullcite] = ACTIONS(6525), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6525), - [anon_sym_BSLASHcitealt] = ACTIONS(6525), - [anon_sym_BSLASHcitealp] = ACTIONS(6525), - [anon_sym_BSLASHcitetext] = ACTIONS(6525), - [anon_sym_BSLASHparencite] = ACTIONS(6525), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHParencite] = ACTIONS(6525), - [anon_sym_BSLASHfootcite] = ACTIONS(6525), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6525), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6525), - [anon_sym_BSLASHtextcite] = ACTIONS(6525), - [anon_sym_BSLASHTextcite] = ACTIONS(6525), - [anon_sym_BSLASHsmartcite] = ACTIONS(6525), - [anon_sym_BSLASHSmartcite] = ACTIONS(6525), - [anon_sym_BSLASHsupercite] = ACTIONS(6525), - [anon_sym_BSLASHautocite] = ACTIONS(6525), - [anon_sym_BSLASHAutocite] = ACTIONS(6525), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6527), - [anon_sym_BSLASHvolcite] = ACTIONS(6525), - [anon_sym_BSLASHVolcite] = ACTIONS(6525), - [anon_sym_BSLASHpvolcite] = ACTIONS(6525), - [anon_sym_BSLASHPvolcite] = ACTIONS(6525), - [anon_sym_BSLASHfvolcite] = ACTIONS(6525), - [anon_sym_BSLASHftvolcite] = ACTIONS(6525), - [anon_sym_BSLASHsvolcite] = ACTIONS(6525), - [anon_sym_BSLASHSvolcite] = ACTIONS(6525), - [anon_sym_BSLASHtvolcite] = ACTIONS(6525), - [anon_sym_BSLASHTvolcite] = ACTIONS(6525), - [anon_sym_BSLASHavolcite] = ACTIONS(6525), - [anon_sym_BSLASHAvolcite] = ACTIONS(6525), - [anon_sym_BSLASHnotecite] = ACTIONS(6525), - [anon_sym_BSLASHNotecite] = ACTIONS(6525), - [anon_sym_BSLASHpnotecite] = ACTIONS(6525), - [anon_sym_BSLASHPnotecite] = ACTIONS(6525), - [anon_sym_BSLASHfnotecite] = ACTIONS(6525), - [anon_sym_BSLASHlabel] = ACTIONS(6525), - [anon_sym_BSLASHref] = ACTIONS(6525), - [anon_sym_BSLASHeqref] = ACTIONS(6525), - [anon_sym_BSLASHvref] = ACTIONS(6525), - [anon_sym_BSLASHVref] = ACTIONS(6525), - [anon_sym_BSLASHautoref] = ACTIONS(6525), - [anon_sym_BSLASHpageref] = ACTIONS(6525), - [anon_sym_BSLASHcref] = ACTIONS(6525), - [anon_sym_BSLASHCref] = ACTIONS(6525), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnameCref] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6525), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6525), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6525), - [anon_sym_BSLASHlabelcref] = ACTIONS(6525), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange] = ACTIONS(6525), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHCrefrange] = ACTIONS(6525), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6527), - [anon_sym_BSLASHnewlabel] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand] = ACTIONS(6525), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6525), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6527), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6525), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6527), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6525), - [anon_sym_BSLASHdef] = ACTIONS(6525), - [anon_sym_BSLASHlet] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6525), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6525), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6525), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6525), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6525), - [anon_sym_BSLASHgls] = ACTIONS(6525), - [anon_sym_BSLASHGls] = ACTIONS(6525), - [anon_sym_BSLASHGLS] = ACTIONS(6525), - [anon_sym_BSLASHglspl] = ACTIONS(6525), - [anon_sym_BSLASHGlspl] = ACTIONS(6525), - [anon_sym_BSLASHGLSpl] = ACTIONS(6525), - [anon_sym_BSLASHglsdisp] = ACTIONS(6525), - [anon_sym_BSLASHglslink] = ACTIONS(6525), - [anon_sym_BSLASHglstext] = ACTIONS(6525), - [anon_sym_BSLASHGlstext] = ACTIONS(6525), - [anon_sym_BSLASHGLStext] = ACTIONS(6525), - [anon_sym_BSLASHglsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6525), - [anon_sym_BSLASHglsplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSplural] = ACTIONS(6525), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6525), - [anon_sym_BSLASHglsname] = ACTIONS(6525), - [anon_sym_BSLASHGlsname] = ACTIONS(6525), - [anon_sym_BSLASHGLSname] = ACTIONS(6525), - [anon_sym_BSLASHglssymbol] = ACTIONS(6525), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6525), - [anon_sym_BSLASHglsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6525), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6525), - [anon_sym_BSLASHglsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6525), - [anon_sym_BSLASHglsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6525), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6525), - [anon_sym_BSLASHglsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6525), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6525), - [anon_sym_BSLASHglsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6525), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6525), - [anon_sym_BSLASHnewacronym] = ACTIONS(6525), - [anon_sym_BSLASHacrshort] = ACTIONS(6525), - [anon_sym_BSLASHAcrshort] = ACTIONS(6525), - [anon_sym_BSLASHACRshort] = ACTIONS(6525), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6525), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6525), - [anon_sym_BSLASHacrlong] = ACTIONS(6525), - [anon_sym_BSLASHAcrlong] = ACTIONS(6525), - [anon_sym_BSLASHACRlong] = ACTIONS(6525), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6525), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6525), - [anon_sym_BSLASHacrfull] = ACTIONS(6525), - [anon_sym_BSLASHAcrfull] = ACTIONS(6525), - [anon_sym_BSLASHACRfull] = ACTIONS(6525), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6525), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6525), - [anon_sym_BSLASHacs] = ACTIONS(6525), - [anon_sym_BSLASHAcs] = ACTIONS(6525), - [anon_sym_BSLASHacsp] = ACTIONS(6525), - [anon_sym_BSLASHAcsp] = ACTIONS(6525), - [anon_sym_BSLASHacl] = ACTIONS(6525), - [anon_sym_BSLASHAcl] = ACTIONS(6525), - [anon_sym_BSLASHaclp] = ACTIONS(6525), - [anon_sym_BSLASHAclp] = ACTIONS(6525), - [anon_sym_BSLASHacf] = ACTIONS(6525), - [anon_sym_BSLASHAcf] = ACTIONS(6525), - [anon_sym_BSLASHacfp] = ACTIONS(6525), - [anon_sym_BSLASHAcfp] = ACTIONS(6525), - [anon_sym_BSLASHac] = ACTIONS(6525), - [anon_sym_BSLASHAc] = ACTIONS(6525), - [anon_sym_BSLASHacp] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6525), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6525), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6525), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6525), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6525), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6527), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6525), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6525), - [anon_sym_BSLASHcolor] = ACTIONS(6525), - [anon_sym_BSLASHcolorbox] = ACTIONS(6525), - [anon_sym_BSLASHtextcolor] = ACTIONS(6525), - [anon_sym_BSLASHpagecolor] = ACTIONS(6525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6525), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6525), - }, - [1934] = { - [sym_command_name] = ACTIONS(6129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6129), - [anon_sym_RBRACK] = ACTIONS(6131), - [anon_sym_COMMA] = ACTIONS(6131), - [anon_sym_EQ] = ACTIONS(6131), - [anon_sym_RBRACE] = ACTIONS(6131), - [sym_word] = ACTIONS(6129), - [sym_placeholder] = ACTIONS(6131), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6131), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_LT] = ACTIONS(6129), - [anon_sym_GT] = ACTIONS(6129), - [anon_sym_BANG] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_SQUOTE] = ACTIONS(6129), - [anon_sym__] = ACTIONS(6131), - [anon_sym_CARET] = ACTIONS(6131), - [anon_sym_BSLASHtitle] = ACTIONS(6129), - [anon_sym_BSLASHauthor] = ACTIONS(6129), - [anon_sym_BSLASHusepackage] = ACTIONS(6129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6129), - [anon_sym_BSLASHinclude] = ACTIONS(6129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6129), - [anon_sym_BSLASHinput] = ACTIONS(6129), - [anon_sym_BSLASHsubfile] = ACTIONS(6129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6129), - [anon_sym_BSLASHbibliography] = ACTIONS(6129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6129), - [anon_sym_BSLASHincludesvg] = ACTIONS(6129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6129), - [anon_sym_BSLASHimport] = ACTIONS(6129), - [anon_sym_BSLASHsubimport] = ACTIONS(6129), - [anon_sym_BSLASHinputfrom] = ACTIONS(6129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6129), - [anon_sym_BSLASHincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6129), - [anon_sym_BSLASHcaption] = ACTIONS(6129), - [anon_sym_BSLASHcite] = ACTIONS(6129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCite] = ACTIONS(6129), - [anon_sym_BSLASHnocite] = ACTIONS(6129), - [anon_sym_BSLASHcitet] = ACTIONS(6129), - [anon_sym_BSLASHcitep] = ACTIONS(6129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteauthor] = ACTIONS(6129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitetitle] = ACTIONS(6129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteyear] = ACTIONS(6129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6131), - [anon_sym_BSLASHcitedate] = ACTIONS(6129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6131), - [anon_sym_BSLASHciteurl] = ACTIONS(6129), - [anon_sym_BSLASHfullcite] = ACTIONS(6129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6129), - [anon_sym_BSLASHcitealt] = ACTIONS(6129), - [anon_sym_BSLASHcitealp] = ACTIONS(6129), - [anon_sym_BSLASHcitetext] = ACTIONS(6129), - [anon_sym_BSLASHparencite] = ACTIONS(6129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHParencite] = ACTIONS(6129), - [anon_sym_BSLASHfootcite] = ACTIONS(6129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6129), - [anon_sym_BSLASHtextcite] = ACTIONS(6129), - [anon_sym_BSLASHTextcite] = ACTIONS(6129), - [anon_sym_BSLASHsmartcite] = ACTIONS(6129), - [anon_sym_BSLASHSmartcite] = ACTIONS(6129), - [anon_sym_BSLASHsupercite] = ACTIONS(6129), - [anon_sym_BSLASHautocite] = ACTIONS(6129), - [anon_sym_BSLASHAutocite] = ACTIONS(6129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6131), - [anon_sym_BSLASHvolcite] = ACTIONS(6129), - [anon_sym_BSLASHVolcite] = ACTIONS(6129), - [anon_sym_BSLASHpvolcite] = ACTIONS(6129), - [anon_sym_BSLASHPvolcite] = ACTIONS(6129), - [anon_sym_BSLASHfvolcite] = ACTIONS(6129), - [anon_sym_BSLASHftvolcite] = ACTIONS(6129), - [anon_sym_BSLASHsvolcite] = ACTIONS(6129), - [anon_sym_BSLASHSvolcite] = ACTIONS(6129), - [anon_sym_BSLASHtvolcite] = ACTIONS(6129), - [anon_sym_BSLASHTvolcite] = ACTIONS(6129), - [anon_sym_BSLASHavolcite] = ACTIONS(6129), - [anon_sym_BSLASHAvolcite] = ACTIONS(6129), - [anon_sym_BSLASHnotecite] = ACTIONS(6129), - [anon_sym_BSLASHNotecite] = ACTIONS(6129), - [anon_sym_BSLASHpnotecite] = ACTIONS(6129), - [anon_sym_BSLASHPnotecite] = ACTIONS(6129), - [anon_sym_BSLASHfnotecite] = ACTIONS(6129), - [anon_sym_BSLASHlabel] = ACTIONS(6129), - [anon_sym_BSLASHref] = ACTIONS(6129), - [anon_sym_BSLASHeqref] = ACTIONS(6129), - [anon_sym_BSLASHvref] = ACTIONS(6129), - [anon_sym_BSLASHVref] = ACTIONS(6129), - [anon_sym_BSLASHautoref] = ACTIONS(6129), - [anon_sym_BSLASHpageref] = ACTIONS(6129), - [anon_sym_BSLASHcref] = ACTIONS(6129), - [anon_sym_BSLASHCref] = ACTIONS(6129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnameCref] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6129), - [anon_sym_BSLASHlabelcref] = ACTIONS(6129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange] = ACTIONS(6129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHCrefrange] = ACTIONS(6129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6131), - [anon_sym_BSLASHnewlabel] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand] = ACTIONS(6129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6131), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6131), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6129), - [anon_sym_BSLASHdef] = ACTIONS(6129), - [anon_sym_BSLASHlet] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6129), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6129), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6129), - [anon_sym_BSLASHgls] = ACTIONS(6129), - [anon_sym_BSLASHGls] = ACTIONS(6129), - [anon_sym_BSLASHGLS] = ACTIONS(6129), - [anon_sym_BSLASHglspl] = ACTIONS(6129), - [anon_sym_BSLASHGlspl] = ACTIONS(6129), - [anon_sym_BSLASHGLSpl] = ACTIONS(6129), - [anon_sym_BSLASHglsdisp] = ACTIONS(6129), - [anon_sym_BSLASHglslink] = ACTIONS(6129), - [anon_sym_BSLASHglstext] = ACTIONS(6129), - [anon_sym_BSLASHGlstext] = ACTIONS(6129), - [anon_sym_BSLASHGLStext] = ACTIONS(6129), - [anon_sym_BSLASHglsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6129), - [anon_sym_BSLASHglsplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSplural] = ACTIONS(6129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6129), - [anon_sym_BSLASHglsname] = ACTIONS(6129), - [anon_sym_BSLASHGlsname] = ACTIONS(6129), - [anon_sym_BSLASHGLSname] = ACTIONS(6129), - [anon_sym_BSLASHglssymbol] = ACTIONS(6129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6129), - [anon_sym_BSLASHglsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6129), - [anon_sym_BSLASHglsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6129), - [anon_sym_BSLASHglsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6129), - [anon_sym_BSLASHglsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6129), - [anon_sym_BSLASHglsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6129), - [anon_sym_BSLASHnewacronym] = ACTIONS(6129), - [anon_sym_BSLASHacrshort] = ACTIONS(6129), - [anon_sym_BSLASHAcrshort] = ACTIONS(6129), - [anon_sym_BSLASHACRshort] = ACTIONS(6129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6129), - [anon_sym_BSLASHacrlong] = ACTIONS(6129), - [anon_sym_BSLASHAcrlong] = ACTIONS(6129), - [anon_sym_BSLASHACRlong] = ACTIONS(6129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6129), - [anon_sym_BSLASHacrfull] = ACTIONS(6129), - [anon_sym_BSLASHAcrfull] = ACTIONS(6129), - [anon_sym_BSLASHACRfull] = ACTIONS(6129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6129), - [anon_sym_BSLASHacs] = ACTIONS(6129), - [anon_sym_BSLASHAcs] = ACTIONS(6129), - [anon_sym_BSLASHacsp] = ACTIONS(6129), - [anon_sym_BSLASHAcsp] = ACTIONS(6129), - [anon_sym_BSLASHacl] = ACTIONS(6129), - [anon_sym_BSLASHAcl] = ACTIONS(6129), - [anon_sym_BSLASHaclp] = ACTIONS(6129), - [anon_sym_BSLASHAclp] = ACTIONS(6129), - [anon_sym_BSLASHacf] = ACTIONS(6129), - [anon_sym_BSLASHAcf] = ACTIONS(6129), - [anon_sym_BSLASHacfp] = ACTIONS(6129), - [anon_sym_BSLASHAcfp] = ACTIONS(6129), - [anon_sym_BSLASHac] = ACTIONS(6129), - [anon_sym_BSLASHAc] = ACTIONS(6129), - [anon_sym_BSLASHacp] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6129), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6129), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6129), - [anon_sym_BSLASHcolor] = ACTIONS(6129), - [anon_sym_BSLASHcolorbox] = ACTIONS(6129), - [anon_sym_BSLASHtextcolor] = ACTIONS(6129), - [anon_sym_BSLASHpagecolor] = ACTIONS(6129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6129), - }, - [1935] = { - [sym_command_name] = ACTIONS(6517), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6517), - [anon_sym_RBRACK] = ACTIONS(6519), - [anon_sym_COMMA] = ACTIONS(6519), - [anon_sym_EQ] = ACTIONS(6519), - [anon_sym_RBRACE] = ACTIONS(6519), - [sym_word] = ACTIONS(6517), - [sym_placeholder] = ACTIONS(6519), - [anon_sym_PLUS] = ACTIONS(6519), - [anon_sym_DASH] = ACTIONS(6519), - [anon_sym_STAR] = ACTIONS(6519), - [anon_sym_SLASH] = ACTIONS(6519), - [anon_sym_LT] = ACTIONS(6517), - [anon_sym_GT] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(6517), - [anon_sym_PIPE] = ACTIONS(6517), - [anon_sym_COLON] = ACTIONS(6517), - [anon_sym_SQUOTE] = ACTIONS(6517), - [anon_sym__] = ACTIONS(6519), - [anon_sym_CARET] = ACTIONS(6519), - [anon_sym_BSLASHtitle] = ACTIONS(6517), - [anon_sym_BSLASHauthor] = ACTIONS(6517), - [anon_sym_BSLASHusepackage] = ACTIONS(6517), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6517), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6517), - [anon_sym_BSLASHinclude] = ACTIONS(6517), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6517), - [anon_sym_BSLASHinput] = ACTIONS(6517), - [anon_sym_BSLASHsubfile] = ACTIONS(6517), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6517), - [anon_sym_BSLASHbibliography] = ACTIONS(6517), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6517), - [anon_sym_BSLASHincludesvg] = ACTIONS(6517), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6517), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6517), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6517), - [anon_sym_BSLASHimport] = ACTIONS(6517), - [anon_sym_BSLASHsubimport] = ACTIONS(6517), - [anon_sym_BSLASHinputfrom] = ACTIONS(6517), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6517), - [anon_sym_BSLASHincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6517), - [anon_sym_BSLASHcaption] = ACTIONS(6517), - [anon_sym_BSLASHcite] = ACTIONS(6517), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCite] = ACTIONS(6517), - [anon_sym_BSLASHnocite] = ACTIONS(6517), - [anon_sym_BSLASHcitet] = ACTIONS(6517), - [anon_sym_BSLASHcitep] = ACTIONS(6517), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteauthor] = ACTIONS(6517), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6517), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitetitle] = ACTIONS(6517), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteyear] = ACTIONS(6517), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6519), - [anon_sym_BSLASHcitedate] = ACTIONS(6517), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6519), - [anon_sym_BSLASHciteurl] = ACTIONS(6517), - [anon_sym_BSLASHfullcite] = ACTIONS(6517), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6517), - [anon_sym_BSLASHcitealt] = ACTIONS(6517), - [anon_sym_BSLASHcitealp] = ACTIONS(6517), - [anon_sym_BSLASHcitetext] = ACTIONS(6517), - [anon_sym_BSLASHparencite] = ACTIONS(6517), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHParencite] = ACTIONS(6517), - [anon_sym_BSLASHfootcite] = ACTIONS(6517), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6517), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6517), - [anon_sym_BSLASHtextcite] = ACTIONS(6517), - [anon_sym_BSLASHTextcite] = ACTIONS(6517), - [anon_sym_BSLASHsmartcite] = ACTIONS(6517), - [anon_sym_BSLASHSmartcite] = ACTIONS(6517), - [anon_sym_BSLASHsupercite] = ACTIONS(6517), - [anon_sym_BSLASHautocite] = ACTIONS(6517), - [anon_sym_BSLASHAutocite] = ACTIONS(6517), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6519), - [anon_sym_BSLASHvolcite] = ACTIONS(6517), - [anon_sym_BSLASHVolcite] = ACTIONS(6517), - [anon_sym_BSLASHpvolcite] = ACTIONS(6517), - [anon_sym_BSLASHPvolcite] = ACTIONS(6517), - [anon_sym_BSLASHfvolcite] = ACTIONS(6517), - [anon_sym_BSLASHftvolcite] = ACTIONS(6517), - [anon_sym_BSLASHsvolcite] = ACTIONS(6517), - [anon_sym_BSLASHSvolcite] = ACTIONS(6517), - [anon_sym_BSLASHtvolcite] = ACTIONS(6517), - [anon_sym_BSLASHTvolcite] = ACTIONS(6517), - [anon_sym_BSLASHavolcite] = ACTIONS(6517), - [anon_sym_BSLASHAvolcite] = ACTIONS(6517), - [anon_sym_BSLASHnotecite] = ACTIONS(6517), - [anon_sym_BSLASHNotecite] = ACTIONS(6517), - [anon_sym_BSLASHpnotecite] = ACTIONS(6517), - [anon_sym_BSLASHPnotecite] = ACTIONS(6517), - [anon_sym_BSLASHfnotecite] = ACTIONS(6517), - [anon_sym_BSLASHlabel] = ACTIONS(6517), - [anon_sym_BSLASHref] = ACTIONS(6517), - [anon_sym_BSLASHeqref] = ACTIONS(6517), - [anon_sym_BSLASHvref] = ACTIONS(6517), - [anon_sym_BSLASHVref] = ACTIONS(6517), - [anon_sym_BSLASHautoref] = ACTIONS(6517), - [anon_sym_BSLASHpageref] = ACTIONS(6517), - [anon_sym_BSLASHcref] = ACTIONS(6517), - [anon_sym_BSLASHCref] = ACTIONS(6517), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnameCref] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6517), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6517), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6517), - [anon_sym_BSLASHlabelcref] = ACTIONS(6517), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange] = ACTIONS(6517), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHCrefrange] = ACTIONS(6517), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6519), - [anon_sym_BSLASHnewlabel] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand] = ACTIONS(6517), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6517), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6519), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6517), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6519), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6517), - [anon_sym_BSLASHdef] = ACTIONS(6517), - [anon_sym_BSLASHlet] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6517), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6517), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6517), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6517), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6517), - [anon_sym_BSLASHgls] = ACTIONS(6517), - [anon_sym_BSLASHGls] = ACTIONS(6517), - [anon_sym_BSLASHGLS] = ACTIONS(6517), - [anon_sym_BSLASHglspl] = ACTIONS(6517), - [anon_sym_BSLASHGlspl] = ACTIONS(6517), - [anon_sym_BSLASHGLSpl] = ACTIONS(6517), - [anon_sym_BSLASHglsdisp] = ACTIONS(6517), - [anon_sym_BSLASHglslink] = ACTIONS(6517), - [anon_sym_BSLASHglstext] = ACTIONS(6517), - [anon_sym_BSLASHGlstext] = ACTIONS(6517), - [anon_sym_BSLASHGLStext] = ACTIONS(6517), - [anon_sym_BSLASHglsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6517), - [anon_sym_BSLASHglsplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSplural] = ACTIONS(6517), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6517), - [anon_sym_BSLASHglsname] = ACTIONS(6517), - [anon_sym_BSLASHGlsname] = ACTIONS(6517), - [anon_sym_BSLASHGLSname] = ACTIONS(6517), - [anon_sym_BSLASHglssymbol] = ACTIONS(6517), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6517), - [anon_sym_BSLASHglsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6517), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6517), - [anon_sym_BSLASHglsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6517), - [anon_sym_BSLASHglsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6517), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6517), - [anon_sym_BSLASHglsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6517), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6517), - [anon_sym_BSLASHglsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6517), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6517), - [anon_sym_BSLASHnewacronym] = ACTIONS(6517), - [anon_sym_BSLASHacrshort] = ACTIONS(6517), - [anon_sym_BSLASHAcrshort] = ACTIONS(6517), - [anon_sym_BSLASHACRshort] = ACTIONS(6517), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6517), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6517), - [anon_sym_BSLASHacrlong] = ACTIONS(6517), - [anon_sym_BSLASHAcrlong] = ACTIONS(6517), - [anon_sym_BSLASHACRlong] = ACTIONS(6517), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6517), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6517), - [anon_sym_BSLASHacrfull] = ACTIONS(6517), - [anon_sym_BSLASHAcrfull] = ACTIONS(6517), - [anon_sym_BSLASHACRfull] = ACTIONS(6517), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6517), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6517), - [anon_sym_BSLASHacs] = ACTIONS(6517), - [anon_sym_BSLASHAcs] = ACTIONS(6517), - [anon_sym_BSLASHacsp] = ACTIONS(6517), - [anon_sym_BSLASHAcsp] = ACTIONS(6517), - [anon_sym_BSLASHacl] = ACTIONS(6517), - [anon_sym_BSLASHAcl] = ACTIONS(6517), - [anon_sym_BSLASHaclp] = ACTIONS(6517), - [anon_sym_BSLASHAclp] = ACTIONS(6517), - [anon_sym_BSLASHacf] = ACTIONS(6517), - [anon_sym_BSLASHAcf] = ACTIONS(6517), - [anon_sym_BSLASHacfp] = ACTIONS(6517), - [anon_sym_BSLASHAcfp] = ACTIONS(6517), - [anon_sym_BSLASHac] = ACTIONS(6517), - [anon_sym_BSLASHAc] = ACTIONS(6517), - [anon_sym_BSLASHacp] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6517), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6517), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6517), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6517), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6517), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6519), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6517), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6517), - [anon_sym_BSLASHcolor] = ACTIONS(6517), - [anon_sym_BSLASHcolorbox] = ACTIONS(6517), - [anon_sym_BSLASHtextcolor] = ACTIONS(6517), - [anon_sym_BSLASHpagecolor] = ACTIONS(6517), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6517), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6517), - }, - [1936] = { - [sym_command_name] = ACTIONS(6513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6513), - [anon_sym_RBRACK] = ACTIONS(6515), - [anon_sym_COMMA] = ACTIONS(6515), - [anon_sym_EQ] = ACTIONS(6515), - [anon_sym_RBRACE] = ACTIONS(6515), - [sym_word] = ACTIONS(6513), - [sym_placeholder] = ACTIONS(6515), - [anon_sym_PLUS] = ACTIONS(6515), - [anon_sym_DASH] = ACTIONS(6515), - [anon_sym_STAR] = ACTIONS(6515), - [anon_sym_SLASH] = ACTIONS(6515), - [anon_sym_LT] = ACTIONS(6513), - [anon_sym_GT] = ACTIONS(6513), - [anon_sym_BANG] = ACTIONS(6513), - [anon_sym_PIPE] = ACTIONS(6513), - [anon_sym_COLON] = ACTIONS(6513), - [anon_sym_SQUOTE] = ACTIONS(6513), - [anon_sym__] = ACTIONS(6515), - [anon_sym_CARET] = ACTIONS(6515), - [anon_sym_BSLASHtitle] = ACTIONS(6513), - [anon_sym_BSLASHauthor] = ACTIONS(6513), - [anon_sym_BSLASHusepackage] = ACTIONS(6513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6513), - [anon_sym_BSLASHinclude] = ACTIONS(6513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6513), - [anon_sym_BSLASHinput] = ACTIONS(6513), - [anon_sym_BSLASHsubfile] = ACTIONS(6513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6513), - [anon_sym_BSLASHbibliography] = ACTIONS(6513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6513), - [anon_sym_BSLASHincludesvg] = ACTIONS(6513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6513), - [anon_sym_BSLASHimport] = ACTIONS(6513), - [anon_sym_BSLASHsubimport] = ACTIONS(6513), - [anon_sym_BSLASHinputfrom] = ACTIONS(6513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6513), - [anon_sym_BSLASHincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6513), - [anon_sym_BSLASHcaption] = ACTIONS(6513), - [anon_sym_BSLASHcite] = ACTIONS(6513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCite] = ACTIONS(6513), - [anon_sym_BSLASHnocite] = ACTIONS(6513), - [anon_sym_BSLASHcitet] = ACTIONS(6513), - [anon_sym_BSLASHcitep] = ACTIONS(6513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteauthor] = ACTIONS(6513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitetitle] = ACTIONS(6513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteyear] = ACTIONS(6513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6515), - [anon_sym_BSLASHcitedate] = ACTIONS(6513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6515), - [anon_sym_BSLASHciteurl] = ACTIONS(6513), - [anon_sym_BSLASHfullcite] = ACTIONS(6513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6513), - [anon_sym_BSLASHcitealt] = ACTIONS(6513), - [anon_sym_BSLASHcitealp] = ACTIONS(6513), - [anon_sym_BSLASHcitetext] = ACTIONS(6513), - [anon_sym_BSLASHparencite] = ACTIONS(6513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHParencite] = ACTIONS(6513), - [anon_sym_BSLASHfootcite] = ACTIONS(6513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6513), - [anon_sym_BSLASHtextcite] = ACTIONS(6513), - [anon_sym_BSLASHTextcite] = ACTIONS(6513), - [anon_sym_BSLASHsmartcite] = ACTIONS(6513), - [anon_sym_BSLASHSmartcite] = ACTIONS(6513), - [anon_sym_BSLASHsupercite] = ACTIONS(6513), - [anon_sym_BSLASHautocite] = ACTIONS(6513), - [anon_sym_BSLASHAutocite] = ACTIONS(6513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6515), - [anon_sym_BSLASHvolcite] = ACTIONS(6513), - [anon_sym_BSLASHVolcite] = ACTIONS(6513), - [anon_sym_BSLASHpvolcite] = ACTIONS(6513), - [anon_sym_BSLASHPvolcite] = ACTIONS(6513), - [anon_sym_BSLASHfvolcite] = ACTIONS(6513), - [anon_sym_BSLASHftvolcite] = ACTIONS(6513), - [anon_sym_BSLASHsvolcite] = ACTIONS(6513), - [anon_sym_BSLASHSvolcite] = ACTIONS(6513), - [anon_sym_BSLASHtvolcite] = ACTIONS(6513), - [anon_sym_BSLASHTvolcite] = ACTIONS(6513), - [anon_sym_BSLASHavolcite] = ACTIONS(6513), - [anon_sym_BSLASHAvolcite] = ACTIONS(6513), - [anon_sym_BSLASHnotecite] = ACTIONS(6513), - [anon_sym_BSLASHNotecite] = ACTIONS(6513), - [anon_sym_BSLASHpnotecite] = ACTIONS(6513), - [anon_sym_BSLASHPnotecite] = ACTIONS(6513), - [anon_sym_BSLASHfnotecite] = ACTIONS(6513), - [anon_sym_BSLASHlabel] = ACTIONS(6513), - [anon_sym_BSLASHref] = ACTIONS(6513), - [anon_sym_BSLASHeqref] = ACTIONS(6513), - [anon_sym_BSLASHvref] = ACTIONS(6513), - [anon_sym_BSLASHVref] = ACTIONS(6513), - [anon_sym_BSLASHautoref] = ACTIONS(6513), - [anon_sym_BSLASHpageref] = ACTIONS(6513), - [anon_sym_BSLASHcref] = ACTIONS(6513), - [anon_sym_BSLASHCref] = ACTIONS(6513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnameCref] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6513), - [anon_sym_BSLASHlabelcref] = ACTIONS(6513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange] = ACTIONS(6513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHCrefrange] = ACTIONS(6513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6515), - [anon_sym_BSLASHnewlabel] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand] = ACTIONS(6513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6515), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6515), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6513), - [anon_sym_BSLASHdef] = ACTIONS(6513), - [anon_sym_BSLASHlet] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6513), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6513), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6513), - [anon_sym_BSLASHgls] = ACTIONS(6513), - [anon_sym_BSLASHGls] = ACTIONS(6513), - [anon_sym_BSLASHGLS] = ACTIONS(6513), - [anon_sym_BSLASHglspl] = ACTIONS(6513), - [anon_sym_BSLASHGlspl] = ACTIONS(6513), - [anon_sym_BSLASHGLSpl] = ACTIONS(6513), - [anon_sym_BSLASHglsdisp] = ACTIONS(6513), - [anon_sym_BSLASHglslink] = ACTIONS(6513), - [anon_sym_BSLASHglstext] = ACTIONS(6513), - [anon_sym_BSLASHGlstext] = ACTIONS(6513), - [anon_sym_BSLASHGLStext] = ACTIONS(6513), - [anon_sym_BSLASHglsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6513), - [anon_sym_BSLASHglsplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSplural] = ACTIONS(6513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6513), - [anon_sym_BSLASHglsname] = ACTIONS(6513), - [anon_sym_BSLASHGlsname] = ACTIONS(6513), - [anon_sym_BSLASHGLSname] = ACTIONS(6513), - [anon_sym_BSLASHglssymbol] = ACTIONS(6513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6513), - [anon_sym_BSLASHglsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6513), - [anon_sym_BSLASHglsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6513), - [anon_sym_BSLASHglsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6513), - [anon_sym_BSLASHglsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6513), - [anon_sym_BSLASHglsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6513), - [anon_sym_BSLASHnewacronym] = ACTIONS(6513), - [anon_sym_BSLASHacrshort] = ACTIONS(6513), - [anon_sym_BSLASHAcrshort] = ACTIONS(6513), - [anon_sym_BSLASHACRshort] = ACTIONS(6513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6513), - [anon_sym_BSLASHacrlong] = ACTIONS(6513), - [anon_sym_BSLASHAcrlong] = ACTIONS(6513), - [anon_sym_BSLASHACRlong] = ACTIONS(6513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6513), - [anon_sym_BSLASHacrfull] = ACTIONS(6513), - [anon_sym_BSLASHAcrfull] = ACTIONS(6513), - [anon_sym_BSLASHACRfull] = ACTIONS(6513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6513), - [anon_sym_BSLASHacs] = ACTIONS(6513), - [anon_sym_BSLASHAcs] = ACTIONS(6513), - [anon_sym_BSLASHacsp] = ACTIONS(6513), - [anon_sym_BSLASHAcsp] = ACTIONS(6513), - [anon_sym_BSLASHacl] = ACTIONS(6513), - [anon_sym_BSLASHAcl] = ACTIONS(6513), - [anon_sym_BSLASHaclp] = ACTIONS(6513), - [anon_sym_BSLASHAclp] = ACTIONS(6513), - [anon_sym_BSLASHacf] = ACTIONS(6513), - [anon_sym_BSLASHAcf] = ACTIONS(6513), - [anon_sym_BSLASHacfp] = ACTIONS(6513), - [anon_sym_BSLASHAcfp] = ACTIONS(6513), - [anon_sym_BSLASHac] = ACTIONS(6513), - [anon_sym_BSLASHAc] = ACTIONS(6513), - [anon_sym_BSLASHacp] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6513), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6513), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6515), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6513), - [anon_sym_BSLASHcolor] = ACTIONS(6513), - [anon_sym_BSLASHcolorbox] = ACTIONS(6513), - [anon_sym_BSLASHtextcolor] = ACTIONS(6513), - [anon_sym_BSLASHpagecolor] = ACTIONS(6513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6513), - }, - [1937] = { - [sym_command_name] = ACTIONS(6509), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6509), - [anon_sym_RBRACK] = ACTIONS(6511), - [anon_sym_COMMA] = ACTIONS(6511), - [anon_sym_EQ] = ACTIONS(6511), - [anon_sym_RBRACE] = ACTIONS(6511), - [sym_word] = ACTIONS(6509), - [sym_placeholder] = ACTIONS(6511), - [anon_sym_PLUS] = ACTIONS(6511), - [anon_sym_DASH] = ACTIONS(6511), - [anon_sym_STAR] = ACTIONS(6511), - [anon_sym_SLASH] = ACTIONS(6511), - [anon_sym_LT] = ACTIONS(6509), - [anon_sym_GT] = ACTIONS(6509), - [anon_sym_BANG] = ACTIONS(6509), - [anon_sym_PIPE] = ACTIONS(6509), - [anon_sym_COLON] = ACTIONS(6509), - [anon_sym_SQUOTE] = ACTIONS(6509), - [anon_sym__] = ACTIONS(6511), - [anon_sym_CARET] = ACTIONS(6511), - [anon_sym_BSLASHtitle] = ACTIONS(6509), - [anon_sym_BSLASHauthor] = ACTIONS(6509), - [anon_sym_BSLASHusepackage] = ACTIONS(6509), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6509), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6509), - [anon_sym_BSLASHinclude] = ACTIONS(6509), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6509), - [anon_sym_BSLASHinput] = ACTIONS(6509), - [anon_sym_BSLASHsubfile] = ACTIONS(6509), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6509), - [anon_sym_BSLASHbibliography] = ACTIONS(6509), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6509), - [anon_sym_BSLASHincludesvg] = ACTIONS(6509), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6509), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6509), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6509), - [anon_sym_BSLASHimport] = ACTIONS(6509), - [anon_sym_BSLASHsubimport] = ACTIONS(6509), - [anon_sym_BSLASHinputfrom] = ACTIONS(6509), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6509), - [anon_sym_BSLASHincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6509), - [anon_sym_BSLASHcaption] = ACTIONS(6509), - [anon_sym_BSLASHcite] = ACTIONS(6509), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCite] = ACTIONS(6509), - [anon_sym_BSLASHnocite] = ACTIONS(6509), - [anon_sym_BSLASHcitet] = ACTIONS(6509), - [anon_sym_BSLASHcitep] = ACTIONS(6509), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteauthor] = ACTIONS(6509), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6509), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitetitle] = ACTIONS(6509), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteyear] = ACTIONS(6509), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6511), - [anon_sym_BSLASHcitedate] = ACTIONS(6509), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6511), - [anon_sym_BSLASHciteurl] = ACTIONS(6509), - [anon_sym_BSLASHfullcite] = ACTIONS(6509), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6509), - [anon_sym_BSLASHcitealt] = ACTIONS(6509), - [anon_sym_BSLASHcitealp] = ACTIONS(6509), - [anon_sym_BSLASHcitetext] = ACTIONS(6509), - [anon_sym_BSLASHparencite] = ACTIONS(6509), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHParencite] = ACTIONS(6509), - [anon_sym_BSLASHfootcite] = ACTIONS(6509), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6509), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6509), - [anon_sym_BSLASHtextcite] = ACTIONS(6509), - [anon_sym_BSLASHTextcite] = ACTIONS(6509), - [anon_sym_BSLASHsmartcite] = ACTIONS(6509), - [anon_sym_BSLASHSmartcite] = ACTIONS(6509), - [anon_sym_BSLASHsupercite] = ACTIONS(6509), - [anon_sym_BSLASHautocite] = ACTIONS(6509), - [anon_sym_BSLASHAutocite] = ACTIONS(6509), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6511), - [anon_sym_BSLASHvolcite] = ACTIONS(6509), - [anon_sym_BSLASHVolcite] = ACTIONS(6509), - [anon_sym_BSLASHpvolcite] = ACTIONS(6509), - [anon_sym_BSLASHPvolcite] = ACTIONS(6509), - [anon_sym_BSLASHfvolcite] = ACTIONS(6509), - [anon_sym_BSLASHftvolcite] = ACTIONS(6509), - [anon_sym_BSLASHsvolcite] = ACTIONS(6509), - [anon_sym_BSLASHSvolcite] = ACTIONS(6509), - [anon_sym_BSLASHtvolcite] = ACTIONS(6509), - [anon_sym_BSLASHTvolcite] = ACTIONS(6509), - [anon_sym_BSLASHavolcite] = ACTIONS(6509), - [anon_sym_BSLASHAvolcite] = ACTIONS(6509), - [anon_sym_BSLASHnotecite] = ACTIONS(6509), - [anon_sym_BSLASHNotecite] = ACTIONS(6509), - [anon_sym_BSLASHpnotecite] = ACTIONS(6509), - [anon_sym_BSLASHPnotecite] = ACTIONS(6509), - [anon_sym_BSLASHfnotecite] = ACTIONS(6509), - [anon_sym_BSLASHlabel] = ACTIONS(6509), - [anon_sym_BSLASHref] = ACTIONS(6509), - [anon_sym_BSLASHeqref] = ACTIONS(6509), - [anon_sym_BSLASHvref] = ACTIONS(6509), - [anon_sym_BSLASHVref] = ACTIONS(6509), - [anon_sym_BSLASHautoref] = ACTIONS(6509), - [anon_sym_BSLASHpageref] = ACTIONS(6509), - [anon_sym_BSLASHcref] = ACTIONS(6509), - [anon_sym_BSLASHCref] = ACTIONS(6509), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnameCref] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6509), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6509), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6509), - [anon_sym_BSLASHlabelcref] = ACTIONS(6509), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange] = ACTIONS(6509), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHCrefrange] = ACTIONS(6509), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6511), - [anon_sym_BSLASHnewlabel] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand] = ACTIONS(6509), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6509), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6509), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6511), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6509), - [anon_sym_BSLASHdef] = ACTIONS(6509), - [anon_sym_BSLASHlet] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6509), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6509), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6509), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6509), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6509), - [anon_sym_BSLASHgls] = ACTIONS(6509), - [anon_sym_BSLASHGls] = ACTIONS(6509), - [anon_sym_BSLASHGLS] = ACTIONS(6509), - [anon_sym_BSLASHglspl] = ACTIONS(6509), - [anon_sym_BSLASHGlspl] = ACTIONS(6509), - [anon_sym_BSLASHGLSpl] = ACTIONS(6509), - [anon_sym_BSLASHglsdisp] = ACTIONS(6509), - [anon_sym_BSLASHglslink] = ACTIONS(6509), - [anon_sym_BSLASHglstext] = ACTIONS(6509), - [anon_sym_BSLASHGlstext] = ACTIONS(6509), - [anon_sym_BSLASHGLStext] = ACTIONS(6509), - [anon_sym_BSLASHglsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6509), - [anon_sym_BSLASHglsplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSplural] = ACTIONS(6509), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6509), - [anon_sym_BSLASHglsname] = ACTIONS(6509), - [anon_sym_BSLASHGlsname] = ACTIONS(6509), - [anon_sym_BSLASHGLSname] = ACTIONS(6509), - [anon_sym_BSLASHglssymbol] = ACTIONS(6509), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6509), - [anon_sym_BSLASHglsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6509), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6509), - [anon_sym_BSLASHglsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6509), - [anon_sym_BSLASHglsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6509), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6509), - [anon_sym_BSLASHglsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6509), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6509), - [anon_sym_BSLASHglsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6509), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6509), - [anon_sym_BSLASHnewacronym] = ACTIONS(6509), - [anon_sym_BSLASHacrshort] = ACTIONS(6509), - [anon_sym_BSLASHAcrshort] = ACTIONS(6509), - [anon_sym_BSLASHACRshort] = ACTIONS(6509), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6509), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6509), - [anon_sym_BSLASHacrlong] = ACTIONS(6509), - [anon_sym_BSLASHAcrlong] = ACTIONS(6509), - [anon_sym_BSLASHACRlong] = ACTIONS(6509), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6509), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6509), - [anon_sym_BSLASHacrfull] = ACTIONS(6509), - [anon_sym_BSLASHAcrfull] = ACTIONS(6509), - [anon_sym_BSLASHACRfull] = ACTIONS(6509), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6509), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6509), - [anon_sym_BSLASHacs] = ACTIONS(6509), - [anon_sym_BSLASHAcs] = ACTIONS(6509), - [anon_sym_BSLASHacsp] = ACTIONS(6509), - [anon_sym_BSLASHAcsp] = ACTIONS(6509), - [anon_sym_BSLASHacl] = ACTIONS(6509), - [anon_sym_BSLASHAcl] = ACTIONS(6509), - [anon_sym_BSLASHaclp] = ACTIONS(6509), - [anon_sym_BSLASHAclp] = ACTIONS(6509), - [anon_sym_BSLASHacf] = ACTIONS(6509), - [anon_sym_BSLASHAcf] = ACTIONS(6509), - [anon_sym_BSLASHacfp] = ACTIONS(6509), - [anon_sym_BSLASHAcfp] = ACTIONS(6509), - [anon_sym_BSLASHac] = ACTIONS(6509), - [anon_sym_BSLASHAc] = ACTIONS(6509), - [anon_sym_BSLASHacp] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6509), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6509), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6509), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6509), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6509), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6511), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6509), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6509), - [anon_sym_BSLASHcolor] = ACTIONS(6509), - [anon_sym_BSLASHcolorbox] = ACTIONS(6509), - [anon_sym_BSLASHtextcolor] = ACTIONS(6509), - [anon_sym_BSLASHpagecolor] = ACTIONS(6509), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6509), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6509), - }, - [1938] = { - [sym_command_name] = ACTIONS(6505), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6505), - [anon_sym_RBRACK] = ACTIONS(6507), - [anon_sym_COMMA] = ACTIONS(6507), - [anon_sym_EQ] = ACTIONS(6507), - [anon_sym_RBRACE] = ACTIONS(6507), - [sym_word] = ACTIONS(6505), - [sym_placeholder] = ACTIONS(6507), - [anon_sym_PLUS] = ACTIONS(6507), - [anon_sym_DASH] = ACTIONS(6507), - [anon_sym_STAR] = ACTIONS(6507), - [anon_sym_SLASH] = ACTIONS(6507), - [anon_sym_LT] = ACTIONS(6505), - [anon_sym_GT] = ACTIONS(6505), - [anon_sym_BANG] = ACTIONS(6505), - [anon_sym_PIPE] = ACTIONS(6505), - [anon_sym_COLON] = ACTIONS(6505), - [anon_sym_SQUOTE] = ACTIONS(6505), - [anon_sym__] = ACTIONS(6507), - [anon_sym_CARET] = ACTIONS(6507), - [anon_sym_BSLASHtitle] = ACTIONS(6505), - [anon_sym_BSLASHauthor] = ACTIONS(6505), - [anon_sym_BSLASHusepackage] = ACTIONS(6505), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6505), - [anon_sym_BSLASHinclude] = ACTIONS(6505), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6505), - [anon_sym_BSLASHinput] = ACTIONS(6505), - [anon_sym_BSLASHsubfile] = ACTIONS(6505), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6505), - [anon_sym_BSLASHbibliography] = ACTIONS(6505), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6505), - [anon_sym_BSLASHincludesvg] = ACTIONS(6505), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6505), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6505), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6505), - [anon_sym_BSLASHimport] = ACTIONS(6505), - [anon_sym_BSLASHsubimport] = ACTIONS(6505), - [anon_sym_BSLASHinputfrom] = ACTIONS(6505), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6505), - [anon_sym_BSLASHincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6505), - [anon_sym_BSLASHcaption] = ACTIONS(6505), - [anon_sym_BSLASHcite] = ACTIONS(6505), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCite] = ACTIONS(6505), - [anon_sym_BSLASHnocite] = ACTIONS(6505), - [anon_sym_BSLASHcitet] = ACTIONS(6505), - [anon_sym_BSLASHcitep] = ACTIONS(6505), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteauthor] = ACTIONS(6505), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6505), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitetitle] = ACTIONS(6505), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteyear] = ACTIONS(6505), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6507), - [anon_sym_BSLASHcitedate] = ACTIONS(6505), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6507), - [anon_sym_BSLASHciteurl] = ACTIONS(6505), - [anon_sym_BSLASHfullcite] = ACTIONS(6505), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6505), - [anon_sym_BSLASHcitealt] = ACTIONS(6505), - [anon_sym_BSLASHcitealp] = ACTIONS(6505), - [anon_sym_BSLASHcitetext] = ACTIONS(6505), - [anon_sym_BSLASHparencite] = ACTIONS(6505), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHParencite] = ACTIONS(6505), - [anon_sym_BSLASHfootcite] = ACTIONS(6505), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6505), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6505), - [anon_sym_BSLASHtextcite] = ACTIONS(6505), - [anon_sym_BSLASHTextcite] = ACTIONS(6505), - [anon_sym_BSLASHsmartcite] = ACTIONS(6505), - [anon_sym_BSLASHSmartcite] = ACTIONS(6505), - [anon_sym_BSLASHsupercite] = ACTIONS(6505), - [anon_sym_BSLASHautocite] = ACTIONS(6505), - [anon_sym_BSLASHAutocite] = ACTIONS(6505), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6507), - [anon_sym_BSLASHvolcite] = ACTIONS(6505), - [anon_sym_BSLASHVolcite] = ACTIONS(6505), - [anon_sym_BSLASHpvolcite] = ACTIONS(6505), - [anon_sym_BSLASHPvolcite] = ACTIONS(6505), - [anon_sym_BSLASHfvolcite] = ACTIONS(6505), - [anon_sym_BSLASHftvolcite] = ACTIONS(6505), - [anon_sym_BSLASHsvolcite] = ACTIONS(6505), - [anon_sym_BSLASHSvolcite] = ACTIONS(6505), - [anon_sym_BSLASHtvolcite] = ACTIONS(6505), - [anon_sym_BSLASHTvolcite] = ACTIONS(6505), - [anon_sym_BSLASHavolcite] = ACTIONS(6505), - [anon_sym_BSLASHAvolcite] = ACTIONS(6505), - [anon_sym_BSLASHnotecite] = ACTIONS(6505), - [anon_sym_BSLASHNotecite] = ACTIONS(6505), - [anon_sym_BSLASHpnotecite] = ACTIONS(6505), - [anon_sym_BSLASHPnotecite] = ACTIONS(6505), - [anon_sym_BSLASHfnotecite] = ACTIONS(6505), - [anon_sym_BSLASHlabel] = ACTIONS(6505), - [anon_sym_BSLASHref] = ACTIONS(6505), - [anon_sym_BSLASHeqref] = ACTIONS(6505), - [anon_sym_BSLASHvref] = ACTIONS(6505), - [anon_sym_BSLASHVref] = ACTIONS(6505), - [anon_sym_BSLASHautoref] = ACTIONS(6505), - [anon_sym_BSLASHpageref] = ACTIONS(6505), - [anon_sym_BSLASHcref] = ACTIONS(6505), - [anon_sym_BSLASHCref] = ACTIONS(6505), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnameCref] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6505), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6505), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6505), - [anon_sym_BSLASHlabelcref] = ACTIONS(6505), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange] = ACTIONS(6505), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHCrefrange] = ACTIONS(6505), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6507), - [anon_sym_BSLASHnewlabel] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand] = ACTIONS(6505), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6505), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6507), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6505), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6507), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6505), - [anon_sym_BSLASHdef] = ACTIONS(6505), - [anon_sym_BSLASHlet] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6505), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6505), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6505), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6505), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6505), - [anon_sym_BSLASHgls] = ACTIONS(6505), - [anon_sym_BSLASHGls] = ACTIONS(6505), - [anon_sym_BSLASHGLS] = ACTIONS(6505), - [anon_sym_BSLASHglspl] = ACTIONS(6505), - [anon_sym_BSLASHGlspl] = ACTIONS(6505), - [anon_sym_BSLASHGLSpl] = ACTIONS(6505), - [anon_sym_BSLASHglsdisp] = ACTIONS(6505), - [anon_sym_BSLASHglslink] = ACTIONS(6505), - [anon_sym_BSLASHglstext] = ACTIONS(6505), - [anon_sym_BSLASHGlstext] = ACTIONS(6505), - [anon_sym_BSLASHGLStext] = ACTIONS(6505), - [anon_sym_BSLASHglsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6505), - [anon_sym_BSLASHglsplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSplural] = ACTIONS(6505), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6505), - [anon_sym_BSLASHglsname] = ACTIONS(6505), - [anon_sym_BSLASHGlsname] = ACTIONS(6505), - [anon_sym_BSLASHGLSname] = ACTIONS(6505), - [anon_sym_BSLASHglssymbol] = ACTIONS(6505), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6505), - [anon_sym_BSLASHglsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6505), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6505), - [anon_sym_BSLASHglsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6505), - [anon_sym_BSLASHglsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6505), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6505), - [anon_sym_BSLASHglsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6505), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6505), - [anon_sym_BSLASHglsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6505), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6505), - [anon_sym_BSLASHnewacronym] = ACTIONS(6505), - [anon_sym_BSLASHacrshort] = ACTIONS(6505), - [anon_sym_BSLASHAcrshort] = ACTIONS(6505), - [anon_sym_BSLASHACRshort] = ACTIONS(6505), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6505), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6505), - [anon_sym_BSLASHacrlong] = ACTIONS(6505), - [anon_sym_BSLASHAcrlong] = ACTIONS(6505), - [anon_sym_BSLASHACRlong] = ACTIONS(6505), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6505), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6505), - [anon_sym_BSLASHacrfull] = ACTIONS(6505), - [anon_sym_BSLASHAcrfull] = ACTIONS(6505), - [anon_sym_BSLASHACRfull] = ACTIONS(6505), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6505), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6505), - [anon_sym_BSLASHacs] = ACTIONS(6505), - [anon_sym_BSLASHAcs] = ACTIONS(6505), - [anon_sym_BSLASHacsp] = ACTIONS(6505), - [anon_sym_BSLASHAcsp] = ACTIONS(6505), - [anon_sym_BSLASHacl] = ACTIONS(6505), - [anon_sym_BSLASHAcl] = ACTIONS(6505), - [anon_sym_BSLASHaclp] = ACTIONS(6505), - [anon_sym_BSLASHAclp] = ACTIONS(6505), - [anon_sym_BSLASHacf] = ACTIONS(6505), - [anon_sym_BSLASHAcf] = ACTIONS(6505), - [anon_sym_BSLASHacfp] = ACTIONS(6505), - [anon_sym_BSLASHAcfp] = ACTIONS(6505), - [anon_sym_BSLASHac] = ACTIONS(6505), - [anon_sym_BSLASHAc] = ACTIONS(6505), - [anon_sym_BSLASHacp] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6505), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6505), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6505), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6505), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6505), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6507), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6505), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6505), - [anon_sym_BSLASHcolor] = ACTIONS(6505), - [anon_sym_BSLASHcolorbox] = ACTIONS(6505), - [anon_sym_BSLASHtextcolor] = ACTIONS(6505), - [anon_sym_BSLASHpagecolor] = ACTIONS(6505), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6505), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6505), - }, - [1939] = { - [sym_command_name] = ACTIONS(6501), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6501), - [anon_sym_RBRACK] = ACTIONS(6503), - [anon_sym_COMMA] = ACTIONS(6503), - [anon_sym_EQ] = ACTIONS(6503), - [anon_sym_RBRACE] = ACTIONS(6503), - [sym_word] = ACTIONS(6501), - [sym_placeholder] = ACTIONS(6503), - [anon_sym_PLUS] = ACTIONS(6503), - [anon_sym_DASH] = ACTIONS(6503), - [anon_sym_STAR] = ACTIONS(6503), - [anon_sym_SLASH] = ACTIONS(6503), - [anon_sym_LT] = ACTIONS(6501), - [anon_sym_GT] = ACTIONS(6501), - [anon_sym_BANG] = ACTIONS(6501), - [anon_sym_PIPE] = ACTIONS(6501), - [anon_sym_COLON] = ACTIONS(6501), - [anon_sym_SQUOTE] = ACTIONS(6501), - [anon_sym__] = ACTIONS(6503), - [anon_sym_CARET] = ACTIONS(6503), - [anon_sym_BSLASHtitle] = ACTIONS(6501), - [anon_sym_BSLASHauthor] = ACTIONS(6501), - [anon_sym_BSLASHusepackage] = ACTIONS(6501), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6501), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6501), - [anon_sym_BSLASHinclude] = ACTIONS(6501), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6501), - [anon_sym_BSLASHinput] = ACTIONS(6501), - [anon_sym_BSLASHsubfile] = ACTIONS(6501), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6501), - [anon_sym_BSLASHbibliography] = ACTIONS(6501), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6501), - [anon_sym_BSLASHincludesvg] = ACTIONS(6501), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6501), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6501), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6501), - [anon_sym_BSLASHimport] = ACTIONS(6501), - [anon_sym_BSLASHsubimport] = ACTIONS(6501), - [anon_sym_BSLASHinputfrom] = ACTIONS(6501), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6501), - [anon_sym_BSLASHincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6501), - [anon_sym_BSLASHcaption] = ACTIONS(6501), - [anon_sym_BSLASHcite] = ACTIONS(6501), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCite] = ACTIONS(6501), - [anon_sym_BSLASHnocite] = ACTIONS(6501), - [anon_sym_BSLASHcitet] = ACTIONS(6501), - [anon_sym_BSLASHcitep] = ACTIONS(6501), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteauthor] = ACTIONS(6501), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6501), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitetitle] = ACTIONS(6501), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteyear] = ACTIONS(6501), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6503), - [anon_sym_BSLASHcitedate] = ACTIONS(6501), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6503), - [anon_sym_BSLASHciteurl] = ACTIONS(6501), - [anon_sym_BSLASHfullcite] = ACTIONS(6501), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6501), - [anon_sym_BSLASHcitealt] = ACTIONS(6501), - [anon_sym_BSLASHcitealp] = ACTIONS(6501), - [anon_sym_BSLASHcitetext] = ACTIONS(6501), - [anon_sym_BSLASHparencite] = ACTIONS(6501), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHParencite] = ACTIONS(6501), - [anon_sym_BSLASHfootcite] = ACTIONS(6501), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6501), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6501), - [anon_sym_BSLASHtextcite] = ACTIONS(6501), - [anon_sym_BSLASHTextcite] = ACTIONS(6501), - [anon_sym_BSLASHsmartcite] = ACTIONS(6501), - [anon_sym_BSLASHSmartcite] = ACTIONS(6501), - [anon_sym_BSLASHsupercite] = ACTIONS(6501), - [anon_sym_BSLASHautocite] = ACTIONS(6501), - [anon_sym_BSLASHAutocite] = ACTIONS(6501), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6503), - [anon_sym_BSLASHvolcite] = ACTIONS(6501), - [anon_sym_BSLASHVolcite] = ACTIONS(6501), - [anon_sym_BSLASHpvolcite] = ACTIONS(6501), - [anon_sym_BSLASHPvolcite] = ACTIONS(6501), - [anon_sym_BSLASHfvolcite] = ACTIONS(6501), - [anon_sym_BSLASHftvolcite] = ACTIONS(6501), - [anon_sym_BSLASHsvolcite] = ACTIONS(6501), - [anon_sym_BSLASHSvolcite] = ACTIONS(6501), - [anon_sym_BSLASHtvolcite] = ACTIONS(6501), - [anon_sym_BSLASHTvolcite] = ACTIONS(6501), - [anon_sym_BSLASHavolcite] = ACTIONS(6501), - [anon_sym_BSLASHAvolcite] = ACTIONS(6501), - [anon_sym_BSLASHnotecite] = ACTIONS(6501), - [anon_sym_BSLASHNotecite] = ACTIONS(6501), - [anon_sym_BSLASHpnotecite] = ACTIONS(6501), - [anon_sym_BSLASHPnotecite] = ACTIONS(6501), - [anon_sym_BSLASHfnotecite] = ACTIONS(6501), - [anon_sym_BSLASHlabel] = ACTIONS(6501), - [anon_sym_BSLASHref] = ACTIONS(6501), - [anon_sym_BSLASHeqref] = ACTIONS(6501), - [anon_sym_BSLASHvref] = ACTIONS(6501), - [anon_sym_BSLASHVref] = ACTIONS(6501), - [anon_sym_BSLASHautoref] = ACTIONS(6501), - [anon_sym_BSLASHpageref] = ACTIONS(6501), - [anon_sym_BSLASHcref] = ACTIONS(6501), - [anon_sym_BSLASHCref] = ACTIONS(6501), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnameCref] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6501), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6501), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6501), - [anon_sym_BSLASHlabelcref] = ACTIONS(6501), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange] = ACTIONS(6501), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHCrefrange] = ACTIONS(6501), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6503), - [anon_sym_BSLASHnewlabel] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand] = ACTIONS(6501), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6501), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6503), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6501), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6503), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6501), - [anon_sym_BSLASHdef] = ACTIONS(6501), - [anon_sym_BSLASHlet] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6501), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6501), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6501), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6501), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6501), - [anon_sym_BSLASHgls] = ACTIONS(6501), - [anon_sym_BSLASHGls] = ACTIONS(6501), - [anon_sym_BSLASHGLS] = ACTIONS(6501), - [anon_sym_BSLASHglspl] = ACTIONS(6501), - [anon_sym_BSLASHGlspl] = ACTIONS(6501), - [anon_sym_BSLASHGLSpl] = ACTIONS(6501), - [anon_sym_BSLASHglsdisp] = ACTIONS(6501), - [anon_sym_BSLASHglslink] = ACTIONS(6501), - [anon_sym_BSLASHglstext] = ACTIONS(6501), - [anon_sym_BSLASHGlstext] = ACTIONS(6501), - [anon_sym_BSLASHGLStext] = ACTIONS(6501), - [anon_sym_BSLASHglsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6501), - [anon_sym_BSLASHglsplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSplural] = ACTIONS(6501), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6501), - [anon_sym_BSLASHglsname] = ACTIONS(6501), - [anon_sym_BSLASHGlsname] = ACTIONS(6501), - [anon_sym_BSLASHGLSname] = ACTIONS(6501), - [anon_sym_BSLASHglssymbol] = ACTIONS(6501), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6501), - [anon_sym_BSLASHglsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6501), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6501), - [anon_sym_BSLASHglsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6501), - [anon_sym_BSLASHglsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6501), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6501), - [anon_sym_BSLASHglsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6501), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6501), - [anon_sym_BSLASHglsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6501), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6501), - [anon_sym_BSLASHnewacronym] = ACTIONS(6501), - [anon_sym_BSLASHacrshort] = ACTIONS(6501), - [anon_sym_BSLASHAcrshort] = ACTIONS(6501), - [anon_sym_BSLASHACRshort] = ACTIONS(6501), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6501), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6501), - [anon_sym_BSLASHacrlong] = ACTIONS(6501), - [anon_sym_BSLASHAcrlong] = ACTIONS(6501), - [anon_sym_BSLASHACRlong] = ACTIONS(6501), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6501), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6501), - [anon_sym_BSLASHacrfull] = ACTIONS(6501), - [anon_sym_BSLASHAcrfull] = ACTIONS(6501), - [anon_sym_BSLASHACRfull] = ACTIONS(6501), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6501), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6501), - [anon_sym_BSLASHacs] = ACTIONS(6501), - [anon_sym_BSLASHAcs] = ACTIONS(6501), - [anon_sym_BSLASHacsp] = ACTIONS(6501), - [anon_sym_BSLASHAcsp] = ACTIONS(6501), - [anon_sym_BSLASHacl] = ACTIONS(6501), - [anon_sym_BSLASHAcl] = ACTIONS(6501), - [anon_sym_BSLASHaclp] = ACTIONS(6501), - [anon_sym_BSLASHAclp] = ACTIONS(6501), - [anon_sym_BSLASHacf] = ACTIONS(6501), - [anon_sym_BSLASHAcf] = ACTIONS(6501), - [anon_sym_BSLASHacfp] = ACTIONS(6501), - [anon_sym_BSLASHAcfp] = ACTIONS(6501), - [anon_sym_BSLASHac] = ACTIONS(6501), - [anon_sym_BSLASHAc] = ACTIONS(6501), - [anon_sym_BSLASHacp] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6501), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6501), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6501), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6501), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6501), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6501), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6501), - [anon_sym_BSLASHcolor] = ACTIONS(6501), - [anon_sym_BSLASHcolorbox] = ACTIONS(6501), - [anon_sym_BSLASHtextcolor] = ACTIONS(6501), - [anon_sym_BSLASHpagecolor] = ACTIONS(6501), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6501), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6501), - }, - [1940] = { - [sym_command_name] = ACTIONS(6497), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6497), - [anon_sym_RBRACK] = ACTIONS(6499), - [anon_sym_COMMA] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(6499), - [anon_sym_RBRACE] = ACTIONS(6499), - [sym_word] = ACTIONS(6497), - [sym_placeholder] = ACTIONS(6499), - [anon_sym_PLUS] = ACTIONS(6499), - [anon_sym_DASH] = ACTIONS(6499), - [anon_sym_STAR] = ACTIONS(6499), - [anon_sym_SLASH] = ACTIONS(6499), - [anon_sym_LT] = ACTIONS(6497), - [anon_sym_GT] = ACTIONS(6497), - [anon_sym_BANG] = ACTIONS(6497), - [anon_sym_PIPE] = ACTIONS(6497), - [anon_sym_COLON] = ACTIONS(6497), - [anon_sym_SQUOTE] = ACTIONS(6497), - [anon_sym__] = ACTIONS(6499), - [anon_sym_CARET] = ACTIONS(6499), - [anon_sym_BSLASHtitle] = ACTIONS(6497), - [anon_sym_BSLASHauthor] = ACTIONS(6497), - [anon_sym_BSLASHusepackage] = ACTIONS(6497), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6497), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6497), - [anon_sym_BSLASHinclude] = ACTIONS(6497), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6497), - [anon_sym_BSLASHinput] = ACTIONS(6497), - [anon_sym_BSLASHsubfile] = ACTIONS(6497), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6497), - [anon_sym_BSLASHbibliography] = ACTIONS(6497), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6497), - [anon_sym_BSLASHincludesvg] = ACTIONS(6497), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6497), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6497), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6497), - [anon_sym_BSLASHimport] = ACTIONS(6497), - [anon_sym_BSLASHsubimport] = ACTIONS(6497), - [anon_sym_BSLASHinputfrom] = ACTIONS(6497), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6497), - [anon_sym_BSLASHincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6497), - [anon_sym_BSLASHcaption] = ACTIONS(6497), - [anon_sym_BSLASHcite] = ACTIONS(6497), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCite] = ACTIONS(6497), - [anon_sym_BSLASHnocite] = ACTIONS(6497), - [anon_sym_BSLASHcitet] = ACTIONS(6497), - [anon_sym_BSLASHcitep] = ACTIONS(6497), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteauthor] = ACTIONS(6497), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6497), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitetitle] = ACTIONS(6497), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteyear] = ACTIONS(6497), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6499), - [anon_sym_BSLASHcitedate] = ACTIONS(6497), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6499), - [anon_sym_BSLASHciteurl] = ACTIONS(6497), - [anon_sym_BSLASHfullcite] = ACTIONS(6497), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6497), - [anon_sym_BSLASHcitealt] = ACTIONS(6497), - [anon_sym_BSLASHcitealp] = ACTIONS(6497), - [anon_sym_BSLASHcitetext] = ACTIONS(6497), - [anon_sym_BSLASHparencite] = ACTIONS(6497), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHParencite] = ACTIONS(6497), - [anon_sym_BSLASHfootcite] = ACTIONS(6497), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6497), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6497), - [anon_sym_BSLASHtextcite] = ACTIONS(6497), - [anon_sym_BSLASHTextcite] = ACTIONS(6497), - [anon_sym_BSLASHsmartcite] = ACTIONS(6497), - [anon_sym_BSLASHSmartcite] = ACTIONS(6497), - [anon_sym_BSLASHsupercite] = ACTIONS(6497), - [anon_sym_BSLASHautocite] = ACTIONS(6497), - [anon_sym_BSLASHAutocite] = ACTIONS(6497), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6499), - [anon_sym_BSLASHvolcite] = ACTIONS(6497), - [anon_sym_BSLASHVolcite] = ACTIONS(6497), - [anon_sym_BSLASHpvolcite] = ACTIONS(6497), - [anon_sym_BSLASHPvolcite] = ACTIONS(6497), - [anon_sym_BSLASHfvolcite] = ACTIONS(6497), - [anon_sym_BSLASHftvolcite] = ACTIONS(6497), - [anon_sym_BSLASHsvolcite] = ACTIONS(6497), - [anon_sym_BSLASHSvolcite] = ACTIONS(6497), - [anon_sym_BSLASHtvolcite] = ACTIONS(6497), - [anon_sym_BSLASHTvolcite] = ACTIONS(6497), - [anon_sym_BSLASHavolcite] = ACTIONS(6497), - [anon_sym_BSLASHAvolcite] = ACTIONS(6497), - [anon_sym_BSLASHnotecite] = ACTIONS(6497), - [anon_sym_BSLASHNotecite] = ACTIONS(6497), - [anon_sym_BSLASHpnotecite] = ACTIONS(6497), - [anon_sym_BSLASHPnotecite] = ACTIONS(6497), - [anon_sym_BSLASHfnotecite] = ACTIONS(6497), - [anon_sym_BSLASHlabel] = ACTIONS(6497), - [anon_sym_BSLASHref] = ACTIONS(6497), - [anon_sym_BSLASHeqref] = ACTIONS(6497), - [anon_sym_BSLASHvref] = ACTIONS(6497), - [anon_sym_BSLASHVref] = ACTIONS(6497), - [anon_sym_BSLASHautoref] = ACTIONS(6497), - [anon_sym_BSLASHpageref] = ACTIONS(6497), - [anon_sym_BSLASHcref] = ACTIONS(6497), - [anon_sym_BSLASHCref] = ACTIONS(6497), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnameCref] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6497), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6497), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6497), - [anon_sym_BSLASHlabelcref] = ACTIONS(6497), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange] = ACTIONS(6497), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHCrefrange] = ACTIONS(6497), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6499), - [anon_sym_BSLASHnewlabel] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand] = ACTIONS(6497), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6497), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6499), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6497), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6499), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6497), - [anon_sym_BSLASHdef] = ACTIONS(6497), - [anon_sym_BSLASHlet] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6497), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6497), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6497), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6497), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6497), - [anon_sym_BSLASHgls] = ACTIONS(6497), - [anon_sym_BSLASHGls] = ACTIONS(6497), - [anon_sym_BSLASHGLS] = ACTIONS(6497), - [anon_sym_BSLASHglspl] = ACTIONS(6497), - [anon_sym_BSLASHGlspl] = ACTIONS(6497), - [anon_sym_BSLASHGLSpl] = ACTIONS(6497), - [anon_sym_BSLASHglsdisp] = ACTIONS(6497), - [anon_sym_BSLASHglslink] = ACTIONS(6497), - [anon_sym_BSLASHglstext] = ACTIONS(6497), - [anon_sym_BSLASHGlstext] = ACTIONS(6497), - [anon_sym_BSLASHGLStext] = ACTIONS(6497), - [anon_sym_BSLASHglsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6497), - [anon_sym_BSLASHglsplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSplural] = ACTIONS(6497), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6497), - [anon_sym_BSLASHglsname] = ACTIONS(6497), - [anon_sym_BSLASHGlsname] = ACTIONS(6497), - [anon_sym_BSLASHGLSname] = ACTIONS(6497), - [anon_sym_BSLASHglssymbol] = ACTIONS(6497), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6497), - [anon_sym_BSLASHglsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6497), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6497), - [anon_sym_BSLASHglsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6497), - [anon_sym_BSLASHglsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6497), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6497), - [anon_sym_BSLASHglsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6497), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6497), - [anon_sym_BSLASHglsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6497), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6497), - [anon_sym_BSLASHnewacronym] = ACTIONS(6497), - [anon_sym_BSLASHacrshort] = ACTIONS(6497), - [anon_sym_BSLASHAcrshort] = ACTIONS(6497), - [anon_sym_BSLASHACRshort] = ACTIONS(6497), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6497), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6497), - [anon_sym_BSLASHacrlong] = ACTIONS(6497), - [anon_sym_BSLASHAcrlong] = ACTIONS(6497), - [anon_sym_BSLASHACRlong] = ACTIONS(6497), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6497), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6497), - [anon_sym_BSLASHacrfull] = ACTIONS(6497), - [anon_sym_BSLASHAcrfull] = ACTIONS(6497), - [anon_sym_BSLASHACRfull] = ACTIONS(6497), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6497), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6497), - [anon_sym_BSLASHacs] = ACTIONS(6497), - [anon_sym_BSLASHAcs] = ACTIONS(6497), - [anon_sym_BSLASHacsp] = ACTIONS(6497), - [anon_sym_BSLASHAcsp] = ACTIONS(6497), - [anon_sym_BSLASHacl] = ACTIONS(6497), - [anon_sym_BSLASHAcl] = ACTIONS(6497), - [anon_sym_BSLASHaclp] = ACTIONS(6497), - [anon_sym_BSLASHAclp] = ACTIONS(6497), - [anon_sym_BSLASHacf] = ACTIONS(6497), - [anon_sym_BSLASHAcf] = ACTIONS(6497), - [anon_sym_BSLASHacfp] = ACTIONS(6497), - [anon_sym_BSLASHAcfp] = ACTIONS(6497), - [anon_sym_BSLASHac] = ACTIONS(6497), - [anon_sym_BSLASHAc] = ACTIONS(6497), - [anon_sym_BSLASHacp] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6497), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6497), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6497), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6497), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6497), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6499), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6497), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6497), - [anon_sym_BSLASHcolor] = ACTIONS(6497), - [anon_sym_BSLASHcolorbox] = ACTIONS(6497), - [anon_sym_BSLASHtextcolor] = ACTIONS(6497), - [anon_sym_BSLASHpagecolor] = ACTIONS(6497), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6497), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6497), - }, - [1941] = { - [sym_command_name] = ACTIONS(6493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6493), - [anon_sym_RBRACK] = ACTIONS(6495), - [anon_sym_COMMA] = ACTIONS(6495), - [anon_sym_EQ] = ACTIONS(6495), - [anon_sym_RBRACE] = ACTIONS(6495), - [sym_word] = ACTIONS(6493), - [sym_placeholder] = ACTIONS(6495), - [anon_sym_PLUS] = ACTIONS(6495), - [anon_sym_DASH] = ACTIONS(6495), - [anon_sym_STAR] = ACTIONS(6495), - [anon_sym_SLASH] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(6493), - [anon_sym_GT] = ACTIONS(6493), - [anon_sym_BANG] = ACTIONS(6493), - [anon_sym_PIPE] = ACTIONS(6493), - [anon_sym_COLON] = ACTIONS(6493), - [anon_sym_SQUOTE] = ACTIONS(6493), - [anon_sym__] = ACTIONS(6495), - [anon_sym_CARET] = ACTIONS(6495), - [anon_sym_BSLASHtitle] = ACTIONS(6493), - [anon_sym_BSLASHauthor] = ACTIONS(6493), - [anon_sym_BSLASHusepackage] = ACTIONS(6493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6493), - [anon_sym_BSLASHinclude] = ACTIONS(6493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6493), - [anon_sym_BSLASHinput] = ACTIONS(6493), - [anon_sym_BSLASHsubfile] = ACTIONS(6493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6493), - [anon_sym_BSLASHbibliography] = ACTIONS(6493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6493), - [anon_sym_BSLASHincludesvg] = ACTIONS(6493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6493), - [anon_sym_BSLASHimport] = ACTIONS(6493), - [anon_sym_BSLASHsubimport] = ACTIONS(6493), - [anon_sym_BSLASHinputfrom] = ACTIONS(6493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6493), - [anon_sym_BSLASHincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6493), - [anon_sym_BSLASHcaption] = ACTIONS(6493), - [anon_sym_BSLASHcite] = ACTIONS(6493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCite] = ACTIONS(6493), - [anon_sym_BSLASHnocite] = ACTIONS(6493), - [anon_sym_BSLASHcitet] = ACTIONS(6493), - [anon_sym_BSLASHcitep] = ACTIONS(6493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteauthor] = ACTIONS(6493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitetitle] = ACTIONS(6493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteyear] = ACTIONS(6493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6495), - [anon_sym_BSLASHcitedate] = ACTIONS(6493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6495), - [anon_sym_BSLASHciteurl] = ACTIONS(6493), - [anon_sym_BSLASHfullcite] = ACTIONS(6493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6493), - [anon_sym_BSLASHcitealt] = ACTIONS(6493), - [anon_sym_BSLASHcitealp] = ACTIONS(6493), - [anon_sym_BSLASHcitetext] = ACTIONS(6493), - [anon_sym_BSLASHparencite] = ACTIONS(6493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHParencite] = ACTIONS(6493), - [anon_sym_BSLASHfootcite] = ACTIONS(6493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6493), - [anon_sym_BSLASHtextcite] = ACTIONS(6493), - [anon_sym_BSLASHTextcite] = ACTIONS(6493), - [anon_sym_BSLASHsmartcite] = ACTIONS(6493), - [anon_sym_BSLASHSmartcite] = ACTIONS(6493), - [anon_sym_BSLASHsupercite] = ACTIONS(6493), - [anon_sym_BSLASHautocite] = ACTIONS(6493), - [anon_sym_BSLASHAutocite] = ACTIONS(6493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6495), - [anon_sym_BSLASHvolcite] = ACTIONS(6493), - [anon_sym_BSLASHVolcite] = ACTIONS(6493), - [anon_sym_BSLASHpvolcite] = ACTIONS(6493), - [anon_sym_BSLASHPvolcite] = ACTIONS(6493), - [anon_sym_BSLASHfvolcite] = ACTIONS(6493), - [anon_sym_BSLASHftvolcite] = ACTIONS(6493), - [anon_sym_BSLASHsvolcite] = ACTIONS(6493), - [anon_sym_BSLASHSvolcite] = ACTIONS(6493), - [anon_sym_BSLASHtvolcite] = ACTIONS(6493), - [anon_sym_BSLASHTvolcite] = ACTIONS(6493), - [anon_sym_BSLASHavolcite] = ACTIONS(6493), - [anon_sym_BSLASHAvolcite] = ACTIONS(6493), - [anon_sym_BSLASHnotecite] = ACTIONS(6493), - [anon_sym_BSLASHNotecite] = ACTIONS(6493), - [anon_sym_BSLASHpnotecite] = ACTIONS(6493), - [anon_sym_BSLASHPnotecite] = ACTIONS(6493), - [anon_sym_BSLASHfnotecite] = ACTIONS(6493), - [anon_sym_BSLASHlabel] = ACTIONS(6493), - [anon_sym_BSLASHref] = ACTIONS(6493), - [anon_sym_BSLASHeqref] = ACTIONS(6493), - [anon_sym_BSLASHvref] = ACTIONS(6493), - [anon_sym_BSLASHVref] = ACTIONS(6493), - [anon_sym_BSLASHautoref] = ACTIONS(6493), - [anon_sym_BSLASHpageref] = ACTIONS(6493), - [anon_sym_BSLASHcref] = ACTIONS(6493), - [anon_sym_BSLASHCref] = ACTIONS(6493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnameCref] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6493), - [anon_sym_BSLASHlabelcref] = ACTIONS(6493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange] = ACTIONS(6493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHCrefrange] = ACTIONS(6493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6495), - [anon_sym_BSLASHnewlabel] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand] = ACTIONS(6493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6495), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6495), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6493), - [anon_sym_BSLASHdef] = ACTIONS(6493), - [anon_sym_BSLASHlet] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6493), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6493), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6493), - [anon_sym_BSLASHgls] = ACTIONS(6493), - [anon_sym_BSLASHGls] = ACTIONS(6493), - [anon_sym_BSLASHGLS] = ACTIONS(6493), - [anon_sym_BSLASHglspl] = ACTIONS(6493), - [anon_sym_BSLASHGlspl] = ACTIONS(6493), - [anon_sym_BSLASHGLSpl] = ACTIONS(6493), - [anon_sym_BSLASHglsdisp] = ACTIONS(6493), - [anon_sym_BSLASHglslink] = ACTIONS(6493), - [anon_sym_BSLASHglstext] = ACTIONS(6493), - [anon_sym_BSLASHGlstext] = ACTIONS(6493), - [anon_sym_BSLASHGLStext] = ACTIONS(6493), - [anon_sym_BSLASHglsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6493), - [anon_sym_BSLASHglsplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSplural] = ACTIONS(6493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6493), - [anon_sym_BSLASHglsname] = ACTIONS(6493), - [anon_sym_BSLASHGlsname] = ACTIONS(6493), - [anon_sym_BSLASHGLSname] = ACTIONS(6493), - [anon_sym_BSLASHglssymbol] = ACTIONS(6493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6493), - [anon_sym_BSLASHglsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6493), - [anon_sym_BSLASHglsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6493), - [anon_sym_BSLASHglsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6493), - [anon_sym_BSLASHglsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6493), - [anon_sym_BSLASHglsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6493), - [anon_sym_BSLASHnewacronym] = ACTIONS(6493), - [anon_sym_BSLASHacrshort] = ACTIONS(6493), - [anon_sym_BSLASHAcrshort] = ACTIONS(6493), - [anon_sym_BSLASHACRshort] = ACTIONS(6493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6493), - [anon_sym_BSLASHacrlong] = ACTIONS(6493), - [anon_sym_BSLASHAcrlong] = ACTIONS(6493), - [anon_sym_BSLASHACRlong] = ACTIONS(6493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6493), - [anon_sym_BSLASHacrfull] = ACTIONS(6493), - [anon_sym_BSLASHAcrfull] = ACTIONS(6493), - [anon_sym_BSLASHACRfull] = ACTIONS(6493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6493), - [anon_sym_BSLASHacs] = ACTIONS(6493), - [anon_sym_BSLASHAcs] = ACTIONS(6493), - [anon_sym_BSLASHacsp] = ACTIONS(6493), - [anon_sym_BSLASHAcsp] = ACTIONS(6493), - [anon_sym_BSLASHacl] = ACTIONS(6493), - [anon_sym_BSLASHAcl] = ACTIONS(6493), - [anon_sym_BSLASHaclp] = ACTIONS(6493), - [anon_sym_BSLASHAclp] = ACTIONS(6493), - [anon_sym_BSLASHacf] = ACTIONS(6493), - [anon_sym_BSLASHAcf] = ACTIONS(6493), - [anon_sym_BSLASHacfp] = ACTIONS(6493), - [anon_sym_BSLASHAcfp] = ACTIONS(6493), - [anon_sym_BSLASHac] = ACTIONS(6493), - [anon_sym_BSLASHAc] = ACTIONS(6493), - [anon_sym_BSLASHacp] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6493), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6493), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6495), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6493), - [anon_sym_BSLASHcolor] = ACTIONS(6493), - [anon_sym_BSLASHcolorbox] = ACTIONS(6493), - [anon_sym_BSLASHtextcolor] = ACTIONS(6493), - [anon_sym_BSLASHpagecolor] = ACTIONS(6493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6493), - }, - [1942] = { - [sym_command_name] = ACTIONS(6489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6489), - [anon_sym_RBRACK] = ACTIONS(6491), - [anon_sym_COMMA] = ACTIONS(6491), - [anon_sym_EQ] = ACTIONS(6491), - [anon_sym_RBRACE] = ACTIONS(6491), - [sym_word] = ACTIONS(6489), - [sym_placeholder] = ACTIONS(6491), - [anon_sym_PLUS] = ACTIONS(6491), - [anon_sym_DASH] = ACTIONS(6491), - [anon_sym_STAR] = ACTIONS(6491), - [anon_sym_SLASH] = ACTIONS(6491), - [anon_sym_LT] = ACTIONS(6489), - [anon_sym_GT] = ACTIONS(6489), - [anon_sym_BANG] = ACTIONS(6489), - [anon_sym_PIPE] = ACTIONS(6489), - [anon_sym_COLON] = ACTIONS(6489), - [anon_sym_SQUOTE] = ACTIONS(6489), - [anon_sym__] = ACTIONS(6491), - [anon_sym_CARET] = ACTIONS(6491), - [anon_sym_BSLASHtitle] = ACTIONS(6489), - [anon_sym_BSLASHauthor] = ACTIONS(6489), - [anon_sym_BSLASHusepackage] = ACTIONS(6489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6489), - [anon_sym_BSLASHinclude] = ACTIONS(6489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6489), - [anon_sym_BSLASHinput] = ACTIONS(6489), - [anon_sym_BSLASHsubfile] = ACTIONS(6489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6489), - [anon_sym_BSLASHbibliography] = ACTIONS(6489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6489), - [anon_sym_BSLASHincludesvg] = ACTIONS(6489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6489), - [anon_sym_BSLASHimport] = ACTIONS(6489), - [anon_sym_BSLASHsubimport] = ACTIONS(6489), - [anon_sym_BSLASHinputfrom] = ACTIONS(6489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6489), - [anon_sym_BSLASHincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6489), - [anon_sym_BSLASHcaption] = ACTIONS(6489), - [anon_sym_BSLASHcite] = ACTIONS(6489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCite] = ACTIONS(6489), - [anon_sym_BSLASHnocite] = ACTIONS(6489), - [anon_sym_BSLASHcitet] = ACTIONS(6489), - [anon_sym_BSLASHcitep] = ACTIONS(6489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteauthor] = ACTIONS(6489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitetitle] = ACTIONS(6489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteyear] = ACTIONS(6489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6491), - [anon_sym_BSLASHcitedate] = ACTIONS(6489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6491), - [anon_sym_BSLASHciteurl] = ACTIONS(6489), - [anon_sym_BSLASHfullcite] = ACTIONS(6489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6489), - [anon_sym_BSLASHcitealt] = ACTIONS(6489), - [anon_sym_BSLASHcitealp] = ACTIONS(6489), - [anon_sym_BSLASHcitetext] = ACTIONS(6489), - [anon_sym_BSLASHparencite] = ACTIONS(6489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHParencite] = ACTIONS(6489), - [anon_sym_BSLASHfootcite] = ACTIONS(6489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6489), - [anon_sym_BSLASHtextcite] = ACTIONS(6489), - [anon_sym_BSLASHTextcite] = ACTIONS(6489), - [anon_sym_BSLASHsmartcite] = ACTIONS(6489), - [anon_sym_BSLASHSmartcite] = ACTIONS(6489), - [anon_sym_BSLASHsupercite] = ACTIONS(6489), - [anon_sym_BSLASHautocite] = ACTIONS(6489), - [anon_sym_BSLASHAutocite] = ACTIONS(6489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6491), - [anon_sym_BSLASHvolcite] = ACTIONS(6489), - [anon_sym_BSLASHVolcite] = ACTIONS(6489), - [anon_sym_BSLASHpvolcite] = ACTIONS(6489), - [anon_sym_BSLASHPvolcite] = ACTIONS(6489), - [anon_sym_BSLASHfvolcite] = ACTIONS(6489), - [anon_sym_BSLASHftvolcite] = ACTIONS(6489), - [anon_sym_BSLASHsvolcite] = ACTIONS(6489), - [anon_sym_BSLASHSvolcite] = ACTIONS(6489), - [anon_sym_BSLASHtvolcite] = ACTIONS(6489), - [anon_sym_BSLASHTvolcite] = ACTIONS(6489), - [anon_sym_BSLASHavolcite] = ACTIONS(6489), - [anon_sym_BSLASHAvolcite] = ACTIONS(6489), - [anon_sym_BSLASHnotecite] = ACTIONS(6489), - [anon_sym_BSLASHNotecite] = ACTIONS(6489), - [anon_sym_BSLASHpnotecite] = ACTIONS(6489), - [anon_sym_BSLASHPnotecite] = ACTIONS(6489), - [anon_sym_BSLASHfnotecite] = ACTIONS(6489), - [anon_sym_BSLASHlabel] = ACTIONS(6489), - [anon_sym_BSLASHref] = ACTIONS(6489), - [anon_sym_BSLASHeqref] = ACTIONS(6489), - [anon_sym_BSLASHvref] = ACTIONS(6489), - [anon_sym_BSLASHVref] = ACTIONS(6489), - [anon_sym_BSLASHautoref] = ACTIONS(6489), - [anon_sym_BSLASHpageref] = ACTIONS(6489), - [anon_sym_BSLASHcref] = ACTIONS(6489), - [anon_sym_BSLASHCref] = ACTIONS(6489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnameCref] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6489), - [anon_sym_BSLASHlabelcref] = ACTIONS(6489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange] = ACTIONS(6489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHCrefrange] = ACTIONS(6489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6491), - [anon_sym_BSLASHnewlabel] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand] = ACTIONS(6489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6491), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6489), - [anon_sym_BSLASHdef] = ACTIONS(6489), - [anon_sym_BSLASHlet] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6489), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6489), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6489), - [anon_sym_BSLASHgls] = ACTIONS(6489), - [anon_sym_BSLASHGls] = ACTIONS(6489), - [anon_sym_BSLASHGLS] = ACTIONS(6489), - [anon_sym_BSLASHglspl] = ACTIONS(6489), - [anon_sym_BSLASHGlspl] = ACTIONS(6489), - [anon_sym_BSLASHGLSpl] = ACTIONS(6489), - [anon_sym_BSLASHglsdisp] = ACTIONS(6489), - [anon_sym_BSLASHglslink] = ACTIONS(6489), - [anon_sym_BSLASHglstext] = ACTIONS(6489), - [anon_sym_BSLASHGlstext] = ACTIONS(6489), - [anon_sym_BSLASHGLStext] = ACTIONS(6489), - [anon_sym_BSLASHglsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6489), - [anon_sym_BSLASHglsplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSplural] = ACTIONS(6489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6489), - [anon_sym_BSLASHglsname] = ACTIONS(6489), - [anon_sym_BSLASHGlsname] = ACTIONS(6489), - [anon_sym_BSLASHGLSname] = ACTIONS(6489), - [anon_sym_BSLASHglssymbol] = ACTIONS(6489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6489), - [anon_sym_BSLASHglsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6489), - [anon_sym_BSLASHglsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6489), - [anon_sym_BSLASHglsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6489), - [anon_sym_BSLASHglsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6489), - [anon_sym_BSLASHglsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6489), - [anon_sym_BSLASHnewacronym] = ACTIONS(6489), - [anon_sym_BSLASHacrshort] = ACTIONS(6489), - [anon_sym_BSLASHAcrshort] = ACTIONS(6489), - [anon_sym_BSLASHACRshort] = ACTIONS(6489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6489), - [anon_sym_BSLASHacrlong] = ACTIONS(6489), - [anon_sym_BSLASHAcrlong] = ACTIONS(6489), - [anon_sym_BSLASHACRlong] = ACTIONS(6489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6489), - [anon_sym_BSLASHacrfull] = ACTIONS(6489), - [anon_sym_BSLASHAcrfull] = ACTIONS(6489), - [anon_sym_BSLASHACRfull] = ACTIONS(6489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6489), - [anon_sym_BSLASHacs] = ACTIONS(6489), - [anon_sym_BSLASHAcs] = ACTIONS(6489), - [anon_sym_BSLASHacsp] = ACTIONS(6489), - [anon_sym_BSLASHAcsp] = ACTIONS(6489), - [anon_sym_BSLASHacl] = ACTIONS(6489), - [anon_sym_BSLASHAcl] = ACTIONS(6489), - [anon_sym_BSLASHaclp] = ACTIONS(6489), - [anon_sym_BSLASHAclp] = ACTIONS(6489), - [anon_sym_BSLASHacf] = ACTIONS(6489), - [anon_sym_BSLASHAcf] = ACTIONS(6489), - [anon_sym_BSLASHacfp] = ACTIONS(6489), - [anon_sym_BSLASHAcfp] = ACTIONS(6489), - [anon_sym_BSLASHac] = ACTIONS(6489), - [anon_sym_BSLASHAc] = ACTIONS(6489), - [anon_sym_BSLASHacp] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6489), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6489), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6491), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6489), - [anon_sym_BSLASHcolor] = ACTIONS(6489), - [anon_sym_BSLASHcolorbox] = ACTIONS(6489), - [anon_sym_BSLASHtextcolor] = ACTIONS(6489), - [anon_sym_BSLASHpagecolor] = ACTIONS(6489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6489), - }, - [1943] = { - [sym_command_name] = ACTIONS(6485), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6485), - [anon_sym_RBRACK] = ACTIONS(6487), - [anon_sym_COMMA] = ACTIONS(6487), - [anon_sym_EQ] = ACTIONS(6487), - [anon_sym_RBRACE] = ACTIONS(6487), - [sym_word] = ACTIONS(6485), - [sym_placeholder] = ACTIONS(6487), - [anon_sym_PLUS] = ACTIONS(6487), - [anon_sym_DASH] = ACTIONS(6487), - [anon_sym_STAR] = ACTIONS(6487), - [anon_sym_SLASH] = ACTIONS(6487), - [anon_sym_LT] = ACTIONS(6485), - [anon_sym_GT] = ACTIONS(6485), - [anon_sym_BANG] = ACTIONS(6485), - [anon_sym_PIPE] = ACTIONS(6485), - [anon_sym_COLON] = ACTIONS(6485), - [anon_sym_SQUOTE] = ACTIONS(6485), - [anon_sym__] = ACTIONS(6487), - [anon_sym_CARET] = ACTIONS(6487), - [anon_sym_BSLASHtitle] = ACTIONS(6485), - [anon_sym_BSLASHauthor] = ACTIONS(6485), - [anon_sym_BSLASHusepackage] = ACTIONS(6485), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6485), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6485), - [anon_sym_BSLASHinclude] = ACTIONS(6485), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6485), - [anon_sym_BSLASHinput] = ACTIONS(6485), - [anon_sym_BSLASHsubfile] = ACTIONS(6485), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6485), - [anon_sym_BSLASHbibliography] = ACTIONS(6485), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6485), - [anon_sym_BSLASHincludesvg] = ACTIONS(6485), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6485), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6485), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6485), - [anon_sym_BSLASHimport] = ACTIONS(6485), - [anon_sym_BSLASHsubimport] = ACTIONS(6485), - [anon_sym_BSLASHinputfrom] = ACTIONS(6485), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6485), - [anon_sym_BSLASHincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6485), - [anon_sym_BSLASHcaption] = ACTIONS(6485), - [anon_sym_BSLASHcite] = ACTIONS(6485), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCite] = ACTIONS(6485), - [anon_sym_BSLASHnocite] = ACTIONS(6485), - [anon_sym_BSLASHcitet] = ACTIONS(6485), - [anon_sym_BSLASHcitep] = ACTIONS(6485), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteauthor] = ACTIONS(6485), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6485), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitetitle] = ACTIONS(6485), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteyear] = ACTIONS(6485), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6487), - [anon_sym_BSLASHcitedate] = ACTIONS(6485), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6487), - [anon_sym_BSLASHciteurl] = ACTIONS(6485), - [anon_sym_BSLASHfullcite] = ACTIONS(6485), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6485), - [anon_sym_BSLASHcitealt] = ACTIONS(6485), - [anon_sym_BSLASHcitealp] = ACTIONS(6485), - [anon_sym_BSLASHcitetext] = ACTIONS(6485), - [anon_sym_BSLASHparencite] = ACTIONS(6485), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHParencite] = ACTIONS(6485), - [anon_sym_BSLASHfootcite] = ACTIONS(6485), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6485), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6485), - [anon_sym_BSLASHtextcite] = ACTIONS(6485), - [anon_sym_BSLASHTextcite] = ACTIONS(6485), - [anon_sym_BSLASHsmartcite] = ACTIONS(6485), - [anon_sym_BSLASHSmartcite] = ACTIONS(6485), - [anon_sym_BSLASHsupercite] = ACTIONS(6485), - [anon_sym_BSLASHautocite] = ACTIONS(6485), - [anon_sym_BSLASHAutocite] = ACTIONS(6485), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6487), - [anon_sym_BSLASHvolcite] = ACTIONS(6485), - [anon_sym_BSLASHVolcite] = ACTIONS(6485), - [anon_sym_BSLASHpvolcite] = ACTIONS(6485), - [anon_sym_BSLASHPvolcite] = ACTIONS(6485), - [anon_sym_BSLASHfvolcite] = ACTIONS(6485), - [anon_sym_BSLASHftvolcite] = ACTIONS(6485), - [anon_sym_BSLASHsvolcite] = ACTIONS(6485), - [anon_sym_BSLASHSvolcite] = ACTIONS(6485), - [anon_sym_BSLASHtvolcite] = ACTIONS(6485), - [anon_sym_BSLASHTvolcite] = ACTIONS(6485), - [anon_sym_BSLASHavolcite] = ACTIONS(6485), - [anon_sym_BSLASHAvolcite] = ACTIONS(6485), - [anon_sym_BSLASHnotecite] = ACTIONS(6485), - [anon_sym_BSLASHNotecite] = ACTIONS(6485), - [anon_sym_BSLASHpnotecite] = ACTIONS(6485), - [anon_sym_BSLASHPnotecite] = ACTIONS(6485), - [anon_sym_BSLASHfnotecite] = ACTIONS(6485), - [anon_sym_BSLASHlabel] = ACTIONS(6485), - [anon_sym_BSLASHref] = ACTIONS(6485), - [anon_sym_BSLASHeqref] = ACTIONS(6485), - [anon_sym_BSLASHvref] = ACTIONS(6485), - [anon_sym_BSLASHVref] = ACTIONS(6485), - [anon_sym_BSLASHautoref] = ACTIONS(6485), - [anon_sym_BSLASHpageref] = ACTIONS(6485), - [anon_sym_BSLASHcref] = ACTIONS(6485), - [anon_sym_BSLASHCref] = ACTIONS(6485), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnameCref] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6485), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6485), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6485), - [anon_sym_BSLASHlabelcref] = ACTIONS(6485), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange] = ACTIONS(6485), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHCrefrange] = ACTIONS(6485), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6487), - [anon_sym_BSLASHnewlabel] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand] = ACTIONS(6485), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6485), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6485), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6487), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6485), - [anon_sym_BSLASHdef] = ACTIONS(6485), - [anon_sym_BSLASHlet] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6485), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6485), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6485), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6485), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6485), - [anon_sym_BSLASHgls] = ACTIONS(6485), - [anon_sym_BSLASHGls] = ACTIONS(6485), - [anon_sym_BSLASHGLS] = ACTIONS(6485), - [anon_sym_BSLASHglspl] = ACTIONS(6485), - [anon_sym_BSLASHGlspl] = ACTIONS(6485), - [anon_sym_BSLASHGLSpl] = ACTIONS(6485), - [anon_sym_BSLASHglsdisp] = ACTIONS(6485), - [anon_sym_BSLASHglslink] = ACTIONS(6485), - [anon_sym_BSLASHglstext] = ACTIONS(6485), - [anon_sym_BSLASHGlstext] = ACTIONS(6485), - [anon_sym_BSLASHGLStext] = ACTIONS(6485), - [anon_sym_BSLASHglsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6485), - [anon_sym_BSLASHglsplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSplural] = ACTIONS(6485), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6485), - [anon_sym_BSLASHglsname] = ACTIONS(6485), - [anon_sym_BSLASHGlsname] = ACTIONS(6485), - [anon_sym_BSLASHGLSname] = ACTIONS(6485), - [anon_sym_BSLASHglssymbol] = ACTIONS(6485), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6485), - [anon_sym_BSLASHglsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6485), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6485), - [anon_sym_BSLASHglsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6485), - [anon_sym_BSLASHglsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6485), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6485), - [anon_sym_BSLASHglsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6485), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6485), - [anon_sym_BSLASHglsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6485), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6485), - [anon_sym_BSLASHnewacronym] = ACTIONS(6485), - [anon_sym_BSLASHacrshort] = ACTIONS(6485), - [anon_sym_BSLASHAcrshort] = ACTIONS(6485), - [anon_sym_BSLASHACRshort] = ACTIONS(6485), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6485), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6485), - [anon_sym_BSLASHacrlong] = ACTIONS(6485), - [anon_sym_BSLASHAcrlong] = ACTIONS(6485), - [anon_sym_BSLASHACRlong] = ACTIONS(6485), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6485), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6485), - [anon_sym_BSLASHacrfull] = ACTIONS(6485), - [anon_sym_BSLASHAcrfull] = ACTIONS(6485), - [anon_sym_BSLASHACRfull] = ACTIONS(6485), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6485), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6485), - [anon_sym_BSLASHacs] = ACTIONS(6485), - [anon_sym_BSLASHAcs] = ACTIONS(6485), - [anon_sym_BSLASHacsp] = ACTIONS(6485), - [anon_sym_BSLASHAcsp] = ACTIONS(6485), - [anon_sym_BSLASHacl] = ACTIONS(6485), - [anon_sym_BSLASHAcl] = ACTIONS(6485), - [anon_sym_BSLASHaclp] = ACTIONS(6485), - [anon_sym_BSLASHAclp] = ACTIONS(6485), - [anon_sym_BSLASHacf] = ACTIONS(6485), - [anon_sym_BSLASHAcf] = ACTIONS(6485), - [anon_sym_BSLASHacfp] = ACTIONS(6485), - [anon_sym_BSLASHAcfp] = ACTIONS(6485), - [anon_sym_BSLASHac] = ACTIONS(6485), - [anon_sym_BSLASHAc] = ACTIONS(6485), - [anon_sym_BSLASHacp] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6485), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6485), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6485), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6485), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6485), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6487), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6485), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6485), - [anon_sym_BSLASHcolor] = ACTIONS(6485), - [anon_sym_BSLASHcolorbox] = ACTIONS(6485), - [anon_sym_BSLASHtextcolor] = ACTIONS(6485), - [anon_sym_BSLASHpagecolor] = ACTIONS(6485), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6485), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6485), - }, - [1944] = { - [sym_command_name] = ACTIONS(6481), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6481), - [anon_sym_RBRACK] = ACTIONS(6483), - [anon_sym_COMMA] = ACTIONS(6483), - [anon_sym_EQ] = ACTIONS(6483), - [anon_sym_RBRACE] = ACTIONS(6483), - [sym_word] = ACTIONS(6481), - [sym_placeholder] = ACTIONS(6483), - [anon_sym_PLUS] = ACTIONS(6483), - [anon_sym_DASH] = ACTIONS(6483), - [anon_sym_STAR] = ACTIONS(6483), - [anon_sym_SLASH] = ACTIONS(6483), - [anon_sym_LT] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6481), - [anon_sym_BANG] = ACTIONS(6481), - [anon_sym_PIPE] = ACTIONS(6481), - [anon_sym_COLON] = ACTIONS(6481), - [anon_sym_SQUOTE] = ACTIONS(6481), - [anon_sym__] = ACTIONS(6483), - [anon_sym_CARET] = ACTIONS(6483), - [anon_sym_BSLASHtitle] = ACTIONS(6481), - [anon_sym_BSLASHauthor] = ACTIONS(6481), - [anon_sym_BSLASHusepackage] = ACTIONS(6481), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6481), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6481), - [anon_sym_BSLASHinclude] = ACTIONS(6481), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6481), - [anon_sym_BSLASHinput] = ACTIONS(6481), - [anon_sym_BSLASHsubfile] = ACTIONS(6481), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6481), - [anon_sym_BSLASHbibliography] = ACTIONS(6481), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6481), - [anon_sym_BSLASHincludesvg] = ACTIONS(6481), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6481), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6481), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6481), - [anon_sym_BSLASHimport] = ACTIONS(6481), - [anon_sym_BSLASHsubimport] = ACTIONS(6481), - [anon_sym_BSLASHinputfrom] = ACTIONS(6481), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6481), - [anon_sym_BSLASHincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6481), - [anon_sym_BSLASHcaption] = ACTIONS(6481), - [anon_sym_BSLASHcite] = ACTIONS(6481), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCite] = ACTIONS(6481), - [anon_sym_BSLASHnocite] = ACTIONS(6481), - [anon_sym_BSLASHcitet] = ACTIONS(6481), - [anon_sym_BSLASHcitep] = ACTIONS(6481), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteauthor] = ACTIONS(6481), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6481), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitetitle] = ACTIONS(6481), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteyear] = ACTIONS(6481), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6483), - [anon_sym_BSLASHcitedate] = ACTIONS(6481), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6483), - [anon_sym_BSLASHciteurl] = ACTIONS(6481), - [anon_sym_BSLASHfullcite] = ACTIONS(6481), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6481), - [anon_sym_BSLASHcitealt] = ACTIONS(6481), - [anon_sym_BSLASHcitealp] = ACTIONS(6481), - [anon_sym_BSLASHcitetext] = ACTIONS(6481), - [anon_sym_BSLASHparencite] = ACTIONS(6481), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHParencite] = ACTIONS(6481), - [anon_sym_BSLASHfootcite] = ACTIONS(6481), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6481), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6481), - [anon_sym_BSLASHtextcite] = ACTIONS(6481), - [anon_sym_BSLASHTextcite] = ACTIONS(6481), - [anon_sym_BSLASHsmartcite] = ACTIONS(6481), - [anon_sym_BSLASHSmartcite] = ACTIONS(6481), - [anon_sym_BSLASHsupercite] = ACTIONS(6481), - [anon_sym_BSLASHautocite] = ACTIONS(6481), - [anon_sym_BSLASHAutocite] = ACTIONS(6481), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6483), - [anon_sym_BSLASHvolcite] = ACTIONS(6481), - [anon_sym_BSLASHVolcite] = ACTIONS(6481), - [anon_sym_BSLASHpvolcite] = ACTIONS(6481), - [anon_sym_BSLASHPvolcite] = ACTIONS(6481), - [anon_sym_BSLASHfvolcite] = ACTIONS(6481), - [anon_sym_BSLASHftvolcite] = ACTIONS(6481), - [anon_sym_BSLASHsvolcite] = ACTIONS(6481), - [anon_sym_BSLASHSvolcite] = ACTIONS(6481), - [anon_sym_BSLASHtvolcite] = ACTIONS(6481), - [anon_sym_BSLASHTvolcite] = ACTIONS(6481), - [anon_sym_BSLASHavolcite] = ACTIONS(6481), - [anon_sym_BSLASHAvolcite] = ACTIONS(6481), - [anon_sym_BSLASHnotecite] = ACTIONS(6481), - [anon_sym_BSLASHNotecite] = ACTIONS(6481), - [anon_sym_BSLASHpnotecite] = ACTIONS(6481), - [anon_sym_BSLASHPnotecite] = ACTIONS(6481), - [anon_sym_BSLASHfnotecite] = ACTIONS(6481), - [anon_sym_BSLASHlabel] = ACTIONS(6481), - [anon_sym_BSLASHref] = ACTIONS(6481), - [anon_sym_BSLASHeqref] = ACTIONS(6481), - [anon_sym_BSLASHvref] = ACTIONS(6481), - [anon_sym_BSLASHVref] = ACTIONS(6481), - [anon_sym_BSLASHautoref] = ACTIONS(6481), - [anon_sym_BSLASHpageref] = ACTIONS(6481), - [anon_sym_BSLASHcref] = ACTIONS(6481), - [anon_sym_BSLASHCref] = ACTIONS(6481), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnameCref] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6481), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6481), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6481), - [anon_sym_BSLASHlabelcref] = ACTIONS(6481), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange] = ACTIONS(6481), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHCrefrange] = ACTIONS(6481), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6483), - [anon_sym_BSLASHnewlabel] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand] = ACTIONS(6481), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6481), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6483), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6481), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6483), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6481), - [anon_sym_BSLASHdef] = ACTIONS(6481), - [anon_sym_BSLASHlet] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6481), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6481), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6481), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6481), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6481), - [anon_sym_BSLASHgls] = ACTIONS(6481), - [anon_sym_BSLASHGls] = ACTIONS(6481), - [anon_sym_BSLASHGLS] = ACTIONS(6481), - [anon_sym_BSLASHglspl] = ACTIONS(6481), - [anon_sym_BSLASHGlspl] = ACTIONS(6481), - [anon_sym_BSLASHGLSpl] = ACTIONS(6481), - [anon_sym_BSLASHglsdisp] = ACTIONS(6481), - [anon_sym_BSLASHglslink] = ACTIONS(6481), - [anon_sym_BSLASHglstext] = ACTIONS(6481), - [anon_sym_BSLASHGlstext] = ACTIONS(6481), - [anon_sym_BSLASHGLStext] = ACTIONS(6481), - [anon_sym_BSLASHglsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6481), - [anon_sym_BSLASHglsplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSplural] = ACTIONS(6481), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6481), - [anon_sym_BSLASHglsname] = ACTIONS(6481), - [anon_sym_BSLASHGlsname] = ACTIONS(6481), - [anon_sym_BSLASHGLSname] = ACTIONS(6481), - [anon_sym_BSLASHglssymbol] = ACTIONS(6481), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6481), - [anon_sym_BSLASHglsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6481), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6481), - [anon_sym_BSLASHglsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6481), - [anon_sym_BSLASHglsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6481), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6481), - [anon_sym_BSLASHglsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6481), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6481), - [anon_sym_BSLASHglsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6481), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6481), - [anon_sym_BSLASHnewacronym] = ACTIONS(6481), - [anon_sym_BSLASHacrshort] = ACTIONS(6481), - [anon_sym_BSLASHAcrshort] = ACTIONS(6481), - [anon_sym_BSLASHACRshort] = ACTIONS(6481), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6481), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6481), - [anon_sym_BSLASHacrlong] = ACTIONS(6481), - [anon_sym_BSLASHAcrlong] = ACTIONS(6481), - [anon_sym_BSLASHACRlong] = ACTIONS(6481), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6481), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6481), - [anon_sym_BSLASHacrfull] = ACTIONS(6481), - [anon_sym_BSLASHAcrfull] = ACTIONS(6481), - [anon_sym_BSLASHACRfull] = ACTIONS(6481), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6481), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6481), - [anon_sym_BSLASHacs] = ACTIONS(6481), - [anon_sym_BSLASHAcs] = ACTIONS(6481), - [anon_sym_BSLASHacsp] = ACTIONS(6481), - [anon_sym_BSLASHAcsp] = ACTIONS(6481), - [anon_sym_BSLASHacl] = ACTIONS(6481), - [anon_sym_BSLASHAcl] = ACTIONS(6481), - [anon_sym_BSLASHaclp] = ACTIONS(6481), - [anon_sym_BSLASHAclp] = ACTIONS(6481), - [anon_sym_BSLASHacf] = ACTIONS(6481), - [anon_sym_BSLASHAcf] = ACTIONS(6481), - [anon_sym_BSLASHacfp] = ACTIONS(6481), - [anon_sym_BSLASHAcfp] = ACTIONS(6481), - [anon_sym_BSLASHac] = ACTIONS(6481), - [anon_sym_BSLASHAc] = ACTIONS(6481), - [anon_sym_BSLASHacp] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6481), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6481), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6481), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6481), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6481), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6483), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6481), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6481), - [anon_sym_BSLASHcolor] = ACTIONS(6481), - [anon_sym_BSLASHcolorbox] = ACTIONS(6481), - [anon_sym_BSLASHtextcolor] = ACTIONS(6481), - [anon_sym_BSLASHpagecolor] = ACTIONS(6481), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6481), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6481), - }, - [1945] = { - [sym_command_name] = ACTIONS(6477), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6477), - [anon_sym_RBRACK] = ACTIONS(6479), - [anon_sym_COMMA] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_RBRACE] = ACTIONS(6479), - [sym_word] = ACTIONS(6477), - [sym_placeholder] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6477), - [anon_sym_GT] = ACTIONS(6477), - [anon_sym_BANG] = ACTIONS(6477), - [anon_sym_PIPE] = ACTIONS(6477), - [anon_sym_COLON] = ACTIONS(6477), - [anon_sym_SQUOTE] = ACTIONS(6477), - [anon_sym__] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_BSLASHtitle] = ACTIONS(6477), - [anon_sym_BSLASHauthor] = ACTIONS(6477), - [anon_sym_BSLASHusepackage] = ACTIONS(6477), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6477), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6477), - [anon_sym_BSLASHinclude] = ACTIONS(6477), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6477), - [anon_sym_BSLASHinput] = ACTIONS(6477), - [anon_sym_BSLASHsubfile] = ACTIONS(6477), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6477), - [anon_sym_BSLASHbibliography] = ACTIONS(6477), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6477), - [anon_sym_BSLASHincludesvg] = ACTIONS(6477), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6477), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6477), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6477), - [anon_sym_BSLASHimport] = ACTIONS(6477), - [anon_sym_BSLASHsubimport] = ACTIONS(6477), - [anon_sym_BSLASHinputfrom] = ACTIONS(6477), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6477), - [anon_sym_BSLASHincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6477), - [anon_sym_BSLASHcaption] = ACTIONS(6477), - [anon_sym_BSLASHcite] = ACTIONS(6477), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCite] = ACTIONS(6477), - [anon_sym_BSLASHnocite] = ACTIONS(6477), - [anon_sym_BSLASHcitet] = ACTIONS(6477), - [anon_sym_BSLASHcitep] = ACTIONS(6477), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteauthor] = ACTIONS(6477), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6477), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitetitle] = ACTIONS(6477), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteyear] = ACTIONS(6477), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6479), - [anon_sym_BSLASHcitedate] = ACTIONS(6477), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6479), - [anon_sym_BSLASHciteurl] = ACTIONS(6477), - [anon_sym_BSLASHfullcite] = ACTIONS(6477), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6477), - [anon_sym_BSLASHcitealt] = ACTIONS(6477), - [anon_sym_BSLASHcitealp] = ACTIONS(6477), - [anon_sym_BSLASHcitetext] = ACTIONS(6477), - [anon_sym_BSLASHparencite] = ACTIONS(6477), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHParencite] = ACTIONS(6477), - [anon_sym_BSLASHfootcite] = ACTIONS(6477), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6477), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6477), - [anon_sym_BSLASHtextcite] = ACTIONS(6477), - [anon_sym_BSLASHTextcite] = ACTIONS(6477), - [anon_sym_BSLASHsmartcite] = ACTIONS(6477), - [anon_sym_BSLASHSmartcite] = ACTIONS(6477), - [anon_sym_BSLASHsupercite] = ACTIONS(6477), - [anon_sym_BSLASHautocite] = ACTIONS(6477), - [anon_sym_BSLASHAutocite] = ACTIONS(6477), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6479), - [anon_sym_BSLASHvolcite] = ACTIONS(6477), - [anon_sym_BSLASHVolcite] = ACTIONS(6477), - [anon_sym_BSLASHpvolcite] = ACTIONS(6477), - [anon_sym_BSLASHPvolcite] = ACTIONS(6477), - [anon_sym_BSLASHfvolcite] = ACTIONS(6477), - [anon_sym_BSLASHftvolcite] = ACTIONS(6477), - [anon_sym_BSLASHsvolcite] = ACTIONS(6477), - [anon_sym_BSLASHSvolcite] = ACTIONS(6477), - [anon_sym_BSLASHtvolcite] = ACTIONS(6477), - [anon_sym_BSLASHTvolcite] = ACTIONS(6477), - [anon_sym_BSLASHavolcite] = ACTIONS(6477), - [anon_sym_BSLASHAvolcite] = ACTIONS(6477), - [anon_sym_BSLASHnotecite] = ACTIONS(6477), - [anon_sym_BSLASHNotecite] = ACTIONS(6477), - [anon_sym_BSLASHpnotecite] = ACTIONS(6477), - [anon_sym_BSLASHPnotecite] = ACTIONS(6477), - [anon_sym_BSLASHfnotecite] = ACTIONS(6477), - [anon_sym_BSLASHlabel] = ACTIONS(6477), - [anon_sym_BSLASHref] = ACTIONS(6477), - [anon_sym_BSLASHeqref] = ACTIONS(6477), - [anon_sym_BSLASHvref] = ACTIONS(6477), - [anon_sym_BSLASHVref] = ACTIONS(6477), - [anon_sym_BSLASHautoref] = ACTIONS(6477), - [anon_sym_BSLASHpageref] = ACTIONS(6477), - [anon_sym_BSLASHcref] = ACTIONS(6477), - [anon_sym_BSLASHCref] = ACTIONS(6477), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnameCref] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6477), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6477), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6477), - [anon_sym_BSLASHlabelcref] = ACTIONS(6477), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange] = ACTIONS(6477), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHCrefrange] = ACTIONS(6477), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6479), - [anon_sym_BSLASHnewlabel] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand] = ACTIONS(6477), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6477), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6479), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6477), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6479), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6477), - [anon_sym_BSLASHdef] = ACTIONS(6477), - [anon_sym_BSLASHlet] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6477), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6477), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6477), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6477), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6477), - [anon_sym_BSLASHgls] = ACTIONS(6477), - [anon_sym_BSLASHGls] = ACTIONS(6477), - [anon_sym_BSLASHGLS] = ACTIONS(6477), - [anon_sym_BSLASHglspl] = ACTIONS(6477), - [anon_sym_BSLASHGlspl] = ACTIONS(6477), - [anon_sym_BSLASHGLSpl] = ACTIONS(6477), - [anon_sym_BSLASHglsdisp] = ACTIONS(6477), - [anon_sym_BSLASHglslink] = ACTIONS(6477), - [anon_sym_BSLASHglstext] = ACTIONS(6477), - [anon_sym_BSLASHGlstext] = ACTIONS(6477), - [anon_sym_BSLASHGLStext] = ACTIONS(6477), - [anon_sym_BSLASHglsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6477), - [anon_sym_BSLASHglsplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSplural] = ACTIONS(6477), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6477), - [anon_sym_BSLASHglsname] = ACTIONS(6477), - [anon_sym_BSLASHGlsname] = ACTIONS(6477), - [anon_sym_BSLASHGLSname] = ACTIONS(6477), - [anon_sym_BSLASHglssymbol] = ACTIONS(6477), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6477), - [anon_sym_BSLASHglsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6477), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6477), - [anon_sym_BSLASHglsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6477), - [anon_sym_BSLASHglsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6477), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6477), - [anon_sym_BSLASHglsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6477), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6477), - [anon_sym_BSLASHglsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6477), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6477), - [anon_sym_BSLASHnewacronym] = ACTIONS(6477), - [anon_sym_BSLASHacrshort] = ACTIONS(6477), - [anon_sym_BSLASHAcrshort] = ACTIONS(6477), - [anon_sym_BSLASHACRshort] = ACTIONS(6477), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6477), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6477), - [anon_sym_BSLASHacrlong] = ACTIONS(6477), - [anon_sym_BSLASHAcrlong] = ACTIONS(6477), - [anon_sym_BSLASHACRlong] = ACTIONS(6477), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6477), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6477), - [anon_sym_BSLASHacrfull] = ACTIONS(6477), - [anon_sym_BSLASHAcrfull] = ACTIONS(6477), - [anon_sym_BSLASHACRfull] = ACTIONS(6477), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6477), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6477), - [anon_sym_BSLASHacs] = ACTIONS(6477), - [anon_sym_BSLASHAcs] = ACTIONS(6477), - [anon_sym_BSLASHacsp] = ACTIONS(6477), - [anon_sym_BSLASHAcsp] = ACTIONS(6477), - [anon_sym_BSLASHacl] = ACTIONS(6477), - [anon_sym_BSLASHAcl] = ACTIONS(6477), - [anon_sym_BSLASHaclp] = ACTIONS(6477), - [anon_sym_BSLASHAclp] = ACTIONS(6477), - [anon_sym_BSLASHacf] = ACTIONS(6477), - [anon_sym_BSLASHAcf] = ACTIONS(6477), - [anon_sym_BSLASHacfp] = ACTIONS(6477), - [anon_sym_BSLASHAcfp] = ACTIONS(6477), - [anon_sym_BSLASHac] = ACTIONS(6477), - [anon_sym_BSLASHAc] = ACTIONS(6477), - [anon_sym_BSLASHacp] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6477), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6477), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6477), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6477), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6477), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6479), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6477), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6477), - [anon_sym_BSLASHcolor] = ACTIONS(6477), - [anon_sym_BSLASHcolorbox] = ACTIONS(6477), - [anon_sym_BSLASHtextcolor] = ACTIONS(6477), - [anon_sym_BSLASHpagecolor] = ACTIONS(6477), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6477), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6477), - }, - [1946] = { - [sym_command_name] = ACTIONS(6473), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6473), - [anon_sym_RBRACK] = ACTIONS(6475), - [anon_sym_COMMA] = ACTIONS(6475), - [anon_sym_EQ] = ACTIONS(6475), - [anon_sym_RBRACE] = ACTIONS(6475), - [sym_word] = ACTIONS(6473), - [sym_placeholder] = ACTIONS(6475), - [anon_sym_PLUS] = ACTIONS(6475), - [anon_sym_DASH] = ACTIONS(6475), - [anon_sym_STAR] = ACTIONS(6475), - [anon_sym_SLASH] = ACTIONS(6475), - [anon_sym_LT] = ACTIONS(6473), - [anon_sym_GT] = ACTIONS(6473), - [anon_sym_BANG] = ACTIONS(6473), - [anon_sym_PIPE] = ACTIONS(6473), - [anon_sym_COLON] = ACTIONS(6473), - [anon_sym_SQUOTE] = ACTIONS(6473), - [anon_sym__] = ACTIONS(6475), - [anon_sym_CARET] = ACTIONS(6475), - [anon_sym_BSLASHtitle] = ACTIONS(6473), - [anon_sym_BSLASHauthor] = ACTIONS(6473), - [anon_sym_BSLASHusepackage] = ACTIONS(6473), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6473), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6473), - [anon_sym_BSLASHinclude] = ACTIONS(6473), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6473), - [anon_sym_BSLASHinput] = ACTIONS(6473), - [anon_sym_BSLASHsubfile] = ACTIONS(6473), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6473), - [anon_sym_BSLASHbibliography] = ACTIONS(6473), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6473), - [anon_sym_BSLASHincludesvg] = ACTIONS(6473), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6473), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6473), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6473), - [anon_sym_BSLASHimport] = ACTIONS(6473), - [anon_sym_BSLASHsubimport] = ACTIONS(6473), - [anon_sym_BSLASHinputfrom] = ACTIONS(6473), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6473), - [anon_sym_BSLASHincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6473), - [anon_sym_BSLASHcaption] = ACTIONS(6473), - [anon_sym_BSLASHcite] = ACTIONS(6473), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCite] = ACTIONS(6473), - [anon_sym_BSLASHnocite] = ACTIONS(6473), - [anon_sym_BSLASHcitet] = ACTIONS(6473), - [anon_sym_BSLASHcitep] = ACTIONS(6473), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteauthor] = ACTIONS(6473), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6473), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitetitle] = ACTIONS(6473), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteyear] = ACTIONS(6473), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6475), - [anon_sym_BSLASHcitedate] = ACTIONS(6473), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6475), - [anon_sym_BSLASHciteurl] = ACTIONS(6473), - [anon_sym_BSLASHfullcite] = ACTIONS(6473), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6473), - [anon_sym_BSLASHcitealt] = ACTIONS(6473), - [anon_sym_BSLASHcitealp] = ACTIONS(6473), - [anon_sym_BSLASHcitetext] = ACTIONS(6473), - [anon_sym_BSLASHparencite] = ACTIONS(6473), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHParencite] = ACTIONS(6473), - [anon_sym_BSLASHfootcite] = ACTIONS(6473), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6473), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6473), - [anon_sym_BSLASHtextcite] = ACTIONS(6473), - [anon_sym_BSLASHTextcite] = ACTIONS(6473), - [anon_sym_BSLASHsmartcite] = ACTIONS(6473), - [anon_sym_BSLASHSmartcite] = ACTIONS(6473), - [anon_sym_BSLASHsupercite] = ACTIONS(6473), - [anon_sym_BSLASHautocite] = ACTIONS(6473), - [anon_sym_BSLASHAutocite] = ACTIONS(6473), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6475), - [anon_sym_BSLASHvolcite] = ACTIONS(6473), - [anon_sym_BSLASHVolcite] = ACTIONS(6473), - [anon_sym_BSLASHpvolcite] = ACTIONS(6473), - [anon_sym_BSLASHPvolcite] = ACTIONS(6473), - [anon_sym_BSLASHfvolcite] = ACTIONS(6473), - [anon_sym_BSLASHftvolcite] = ACTIONS(6473), - [anon_sym_BSLASHsvolcite] = ACTIONS(6473), - [anon_sym_BSLASHSvolcite] = ACTIONS(6473), - [anon_sym_BSLASHtvolcite] = ACTIONS(6473), - [anon_sym_BSLASHTvolcite] = ACTIONS(6473), - [anon_sym_BSLASHavolcite] = ACTIONS(6473), - [anon_sym_BSLASHAvolcite] = ACTIONS(6473), - [anon_sym_BSLASHnotecite] = ACTIONS(6473), - [anon_sym_BSLASHNotecite] = ACTIONS(6473), - [anon_sym_BSLASHpnotecite] = ACTIONS(6473), - [anon_sym_BSLASHPnotecite] = ACTIONS(6473), - [anon_sym_BSLASHfnotecite] = ACTIONS(6473), - [anon_sym_BSLASHlabel] = ACTIONS(6473), - [anon_sym_BSLASHref] = ACTIONS(6473), - [anon_sym_BSLASHeqref] = ACTIONS(6473), - [anon_sym_BSLASHvref] = ACTIONS(6473), - [anon_sym_BSLASHVref] = ACTIONS(6473), - [anon_sym_BSLASHautoref] = ACTIONS(6473), - [anon_sym_BSLASHpageref] = ACTIONS(6473), - [anon_sym_BSLASHcref] = ACTIONS(6473), - [anon_sym_BSLASHCref] = ACTIONS(6473), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnameCref] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6473), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6473), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6473), - [anon_sym_BSLASHlabelcref] = ACTIONS(6473), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange] = ACTIONS(6473), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHCrefrange] = ACTIONS(6473), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6475), - [anon_sym_BSLASHnewlabel] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand] = ACTIONS(6473), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6473), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6475), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6473), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6475), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6473), - [anon_sym_BSLASHdef] = ACTIONS(6473), - [anon_sym_BSLASHlet] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6473), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6473), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6473), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6473), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6473), - [anon_sym_BSLASHgls] = ACTIONS(6473), - [anon_sym_BSLASHGls] = ACTIONS(6473), - [anon_sym_BSLASHGLS] = ACTIONS(6473), - [anon_sym_BSLASHglspl] = ACTIONS(6473), - [anon_sym_BSLASHGlspl] = ACTIONS(6473), - [anon_sym_BSLASHGLSpl] = ACTIONS(6473), - [anon_sym_BSLASHglsdisp] = ACTIONS(6473), - [anon_sym_BSLASHglslink] = ACTIONS(6473), - [anon_sym_BSLASHglstext] = ACTIONS(6473), - [anon_sym_BSLASHGlstext] = ACTIONS(6473), - [anon_sym_BSLASHGLStext] = ACTIONS(6473), - [anon_sym_BSLASHglsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6473), - [anon_sym_BSLASHglsplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSplural] = ACTIONS(6473), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6473), - [anon_sym_BSLASHglsname] = ACTIONS(6473), - [anon_sym_BSLASHGlsname] = ACTIONS(6473), - [anon_sym_BSLASHGLSname] = ACTIONS(6473), - [anon_sym_BSLASHglssymbol] = ACTIONS(6473), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6473), - [anon_sym_BSLASHglsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6473), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6473), - [anon_sym_BSLASHglsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6473), - [anon_sym_BSLASHglsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6473), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6473), - [anon_sym_BSLASHglsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6473), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6473), - [anon_sym_BSLASHglsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6473), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6473), - [anon_sym_BSLASHnewacronym] = ACTIONS(6473), - [anon_sym_BSLASHacrshort] = ACTIONS(6473), - [anon_sym_BSLASHAcrshort] = ACTIONS(6473), - [anon_sym_BSLASHACRshort] = ACTIONS(6473), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6473), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6473), - [anon_sym_BSLASHacrlong] = ACTIONS(6473), - [anon_sym_BSLASHAcrlong] = ACTIONS(6473), - [anon_sym_BSLASHACRlong] = ACTIONS(6473), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6473), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6473), - [anon_sym_BSLASHacrfull] = ACTIONS(6473), - [anon_sym_BSLASHAcrfull] = ACTIONS(6473), - [anon_sym_BSLASHACRfull] = ACTIONS(6473), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6473), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6473), - [anon_sym_BSLASHacs] = ACTIONS(6473), - [anon_sym_BSLASHAcs] = ACTIONS(6473), - [anon_sym_BSLASHacsp] = ACTIONS(6473), - [anon_sym_BSLASHAcsp] = ACTIONS(6473), - [anon_sym_BSLASHacl] = ACTIONS(6473), - [anon_sym_BSLASHAcl] = ACTIONS(6473), - [anon_sym_BSLASHaclp] = ACTIONS(6473), - [anon_sym_BSLASHAclp] = ACTIONS(6473), - [anon_sym_BSLASHacf] = ACTIONS(6473), - [anon_sym_BSLASHAcf] = ACTIONS(6473), - [anon_sym_BSLASHacfp] = ACTIONS(6473), - [anon_sym_BSLASHAcfp] = ACTIONS(6473), - [anon_sym_BSLASHac] = ACTIONS(6473), - [anon_sym_BSLASHAc] = ACTIONS(6473), - [anon_sym_BSLASHacp] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6473), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6473), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6473), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6473), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6473), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6475), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6473), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6473), - [anon_sym_BSLASHcolor] = ACTIONS(6473), - [anon_sym_BSLASHcolorbox] = ACTIONS(6473), - [anon_sym_BSLASHtextcolor] = ACTIONS(6473), - [anon_sym_BSLASHpagecolor] = ACTIONS(6473), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6473), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6473), - }, - [1947] = { - [sym_command_name] = ACTIONS(6469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6469), - [anon_sym_RBRACK] = ACTIONS(6471), - [anon_sym_COMMA] = ACTIONS(6471), - [anon_sym_EQ] = ACTIONS(6471), - [anon_sym_RBRACE] = ACTIONS(6471), - [sym_word] = ACTIONS(6469), - [sym_placeholder] = ACTIONS(6471), - [anon_sym_PLUS] = ACTIONS(6471), - [anon_sym_DASH] = ACTIONS(6471), - [anon_sym_STAR] = ACTIONS(6471), - [anon_sym_SLASH] = ACTIONS(6471), - [anon_sym_LT] = ACTIONS(6469), - [anon_sym_GT] = ACTIONS(6469), - [anon_sym_BANG] = ACTIONS(6469), - [anon_sym_PIPE] = ACTIONS(6469), - [anon_sym_COLON] = ACTIONS(6469), - [anon_sym_SQUOTE] = ACTIONS(6469), - [anon_sym__] = ACTIONS(6471), - [anon_sym_CARET] = ACTIONS(6471), - [anon_sym_BSLASHtitle] = ACTIONS(6469), - [anon_sym_BSLASHauthor] = ACTIONS(6469), - [anon_sym_BSLASHusepackage] = ACTIONS(6469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6469), - [anon_sym_BSLASHinclude] = ACTIONS(6469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6469), - [anon_sym_BSLASHinput] = ACTIONS(6469), - [anon_sym_BSLASHsubfile] = ACTIONS(6469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6469), - [anon_sym_BSLASHbibliography] = ACTIONS(6469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6469), - [anon_sym_BSLASHincludesvg] = ACTIONS(6469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6469), - [anon_sym_BSLASHimport] = ACTIONS(6469), - [anon_sym_BSLASHsubimport] = ACTIONS(6469), - [anon_sym_BSLASHinputfrom] = ACTIONS(6469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6469), - [anon_sym_BSLASHincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6469), - [anon_sym_BSLASHcaption] = ACTIONS(6469), - [anon_sym_BSLASHcite] = ACTIONS(6469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCite] = ACTIONS(6469), - [anon_sym_BSLASHnocite] = ACTIONS(6469), - [anon_sym_BSLASHcitet] = ACTIONS(6469), - [anon_sym_BSLASHcitep] = ACTIONS(6469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteauthor] = ACTIONS(6469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitetitle] = ACTIONS(6469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteyear] = ACTIONS(6469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6471), - [anon_sym_BSLASHcitedate] = ACTIONS(6469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6471), - [anon_sym_BSLASHciteurl] = ACTIONS(6469), - [anon_sym_BSLASHfullcite] = ACTIONS(6469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6469), - [anon_sym_BSLASHcitealt] = ACTIONS(6469), - [anon_sym_BSLASHcitealp] = ACTIONS(6469), - [anon_sym_BSLASHcitetext] = ACTIONS(6469), - [anon_sym_BSLASHparencite] = ACTIONS(6469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHParencite] = ACTIONS(6469), - [anon_sym_BSLASHfootcite] = ACTIONS(6469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6469), - [anon_sym_BSLASHtextcite] = ACTIONS(6469), - [anon_sym_BSLASHTextcite] = ACTIONS(6469), - [anon_sym_BSLASHsmartcite] = ACTIONS(6469), - [anon_sym_BSLASHSmartcite] = ACTIONS(6469), - [anon_sym_BSLASHsupercite] = ACTIONS(6469), - [anon_sym_BSLASHautocite] = ACTIONS(6469), - [anon_sym_BSLASHAutocite] = ACTIONS(6469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6471), - [anon_sym_BSLASHvolcite] = ACTIONS(6469), - [anon_sym_BSLASHVolcite] = ACTIONS(6469), - [anon_sym_BSLASHpvolcite] = ACTIONS(6469), - [anon_sym_BSLASHPvolcite] = ACTIONS(6469), - [anon_sym_BSLASHfvolcite] = ACTIONS(6469), - [anon_sym_BSLASHftvolcite] = ACTIONS(6469), - [anon_sym_BSLASHsvolcite] = ACTIONS(6469), - [anon_sym_BSLASHSvolcite] = ACTIONS(6469), - [anon_sym_BSLASHtvolcite] = ACTIONS(6469), - [anon_sym_BSLASHTvolcite] = ACTIONS(6469), - [anon_sym_BSLASHavolcite] = ACTIONS(6469), - [anon_sym_BSLASHAvolcite] = ACTIONS(6469), - [anon_sym_BSLASHnotecite] = ACTIONS(6469), - [anon_sym_BSLASHNotecite] = ACTIONS(6469), - [anon_sym_BSLASHpnotecite] = ACTIONS(6469), - [anon_sym_BSLASHPnotecite] = ACTIONS(6469), - [anon_sym_BSLASHfnotecite] = ACTIONS(6469), - [anon_sym_BSLASHlabel] = ACTIONS(6469), - [anon_sym_BSLASHref] = ACTIONS(6469), - [anon_sym_BSLASHeqref] = ACTIONS(6469), - [anon_sym_BSLASHvref] = ACTIONS(6469), - [anon_sym_BSLASHVref] = ACTIONS(6469), - [anon_sym_BSLASHautoref] = ACTIONS(6469), - [anon_sym_BSLASHpageref] = ACTIONS(6469), - [anon_sym_BSLASHcref] = ACTIONS(6469), - [anon_sym_BSLASHCref] = ACTIONS(6469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnameCref] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6469), - [anon_sym_BSLASHlabelcref] = ACTIONS(6469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange] = ACTIONS(6469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHCrefrange] = ACTIONS(6469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6471), - [anon_sym_BSLASHnewlabel] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand] = ACTIONS(6469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6471), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6471), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6469), - [anon_sym_BSLASHdef] = ACTIONS(6469), - [anon_sym_BSLASHlet] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6469), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6469), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6469), - [anon_sym_BSLASHgls] = ACTIONS(6469), - [anon_sym_BSLASHGls] = ACTIONS(6469), - [anon_sym_BSLASHGLS] = ACTIONS(6469), - [anon_sym_BSLASHglspl] = ACTIONS(6469), - [anon_sym_BSLASHGlspl] = ACTIONS(6469), - [anon_sym_BSLASHGLSpl] = ACTIONS(6469), - [anon_sym_BSLASHglsdisp] = ACTIONS(6469), - [anon_sym_BSLASHglslink] = ACTIONS(6469), - [anon_sym_BSLASHglstext] = ACTIONS(6469), - [anon_sym_BSLASHGlstext] = ACTIONS(6469), - [anon_sym_BSLASHGLStext] = ACTIONS(6469), - [anon_sym_BSLASHglsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6469), - [anon_sym_BSLASHglsplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSplural] = ACTIONS(6469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6469), - [anon_sym_BSLASHglsname] = ACTIONS(6469), - [anon_sym_BSLASHGlsname] = ACTIONS(6469), - [anon_sym_BSLASHGLSname] = ACTIONS(6469), - [anon_sym_BSLASHglssymbol] = ACTIONS(6469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6469), - [anon_sym_BSLASHglsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6469), - [anon_sym_BSLASHglsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6469), - [anon_sym_BSLASHglsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6469), - [anon_sym_BSLASHglsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6469), - [anon_sym_BSLASHglsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6469), - [anon_sym_BSLASHnewacronym] = ACTIONS(6469), - [anon_sym_BSLASHacrshort] = ACTIONS(6469), - [anon_sym_BSLASHAcrshort] = ACTIONS(6469), - [anon_sym_BSLASHACRshort] = ACTIONS(6469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6469), - [anon_sym_BSLASHacrlong] = ACTIONS(6469), - [anon_sym_BSLASHAcrlong] = ACTIONS(6469), - [anon_sym_BSLASHACRlong] = ACTIONS(6469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6469), - [anon_sym_BSLASHacrfull] = ACTIONS(6469), - [anon_sym_BSLASHAcrfull] = ACTIONS(6469), - [anon_sym_BSLASHACRfull] = ACTIONS(6469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6469), - [anon_sym_BSLASHacs] = ACTIONS(6469), - [anon_sym_BSLASHAcs] = ACTIONS(6469), - [anon_sym_BSLASHacsp] = ACTIONS(6469), - [anon_sym_BSLASHAcsp] = ACTIONS(6469), - [anon_sym_BSLASHacl] = ACTIONS(6469), - [anon_sym_BSLASHAcl] = ACTIONS(6469), - [anon_sym_BSLASHaclp] = ACTIONS(6469), - [anon_sym_BSLASHAclp] = ACTIONS(6469), - [anon_sym_BSLASHacf] = ACTIONS(6469), - [anon_sym_BSLASHAcf] = ACTIONS(6469), - [anon_sym_BSLASHacfp] = ACTIONS(6469), - [anon_sym_BSLASHAcfp] = ACTIONS(6469), - [anon_sym_BSLASHac] = ACTIONS(6469), - [anon_sym_BSLASHAc] = ACTIONS(6469), - [anon_sym_BSLASHacp] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6469), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6469), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6471), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6469), - [anon_sym_BSLASHcolor] = ACTIONS(6469), - [anon_sym_BSLASHcolorbox] = ACTIONS(6469), - [anon_sym_BSLASHtextcolor] = ACTIONS(6469), - [anon_sym_BSLASHpagecolor] = ACTIONS(6469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6469), - }, - [1948] = { - [sym_command_name] = ACTIONS(6465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6465), - [anon_sym_RBRACK] = ACTIONS(6467), - [anon_sym_COMMA] = ACTIONS(6467), - [anon_sym_EQ] = ACTIONS(6467), - [anon_sym_RBRACE] = ACTIONS(6467), - [sym_word] = ACTIONS(6465), - [sym_placeholder] = ACTIONS(6467), - [anon_sym_PLUS] = ACTIONS(6467), - [anon_sym_DASH] = ACTIONS(6467), - [anon_sym_STAR] = ACTIONS(6467), - [anon_sym_SLASH] = ACTIONS(6467), - [anon_sym_LT] = ACTIONS(6465), - [anon_sym_GT] = ACTIONS(6465), - [anon_sym_BANG] = ACTIONS(6465), - [anon_sym_PIPE] = ACTIONS(6465), - [anon_sym_COLON] = ACTIONS(6465), - [anon_sym_SQUOTE] = ACTIONS(6465), - [anon_sym__] = ACTIONS(6467), - [anon_sym_CARET] = ACTIONS(6467), - [anon_sym_BSLASHtitle] = ACTIONS(6465), - [anon_sym_BSLASHauthor] = ACTIONS(6465), - [anon_sym_BSLASHusepackage] = ACTIONS(6465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6465), - [anon_sym_BSLASHinclude] = ACTIONS(6465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6465), - [anon_sym_BSLASHinput] = ACTIONS(6465), - [anon_sym_BSLASHsubfile] = ACTIONS(6465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6465), - [anon_sym_BSLASHbibliography] = ACTIONS(6465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6465), - [anon_sym_BSLASHincludesvg] = ACTIONS(6465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6465), - [anon_sym_BSLASHimport] = ACTIONS(6465), - [anon_sym_BSLASHsubimport] = ACTIONS(6465), - [anon_sym_BSLASHinputfrom] = ACTIONS(6465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6465), - [anon_sym_BSLASHincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6465), - [anon_sym_BSLASHcaption] = ACTIONS(6465), - [anon_sym_BSLASHcite] = ACTIONS(6465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCite] = ACTIONS(6465), - [anon_sym_BSLASHnocite] = ACTIONS(6465), - [anon_sym_BSLASHcitet] = ACTIONS(6465), - [anon_sym_BSLASHcitep] = ACTIONS(6465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteauthor] = ACTIONS(6465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitetitle] = ACTIONS(6465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteyear] = ACTIONS(6465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6467), - [anon_sym_BSLASHcitedate] = ACTIONS(6465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6467), - [anon_sym_BSLASHciteurl] = ACTIONS(6465), - [anon_sym_BSLASHfullcite] = ACTIONS(6465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6465), - [anon_sym_BSLASHcitealt] = ACTIONS(6465), - [anon_sym_BSLASHcitealp] = ACTIONS(6465), - [anon_sym_BSLASHcitetext] = ACTIONS(6465), - [anon_sym_BSLASHparencite] = ACTIONS(6465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHParencite] = ACTIONS(6465), - [anon_sym_BSLASHfootcite] = ACTIONS(6465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6465), - [anon_sym_BSLASHtextcite] = ACTIONS(6465), - [anon_sym_BSLASHTextcite] = ACTIONS(6465), - [anon_sym_BSLASHsmartcite] = ACTIONS(6465), - [anon_sym_BSLASHSmartcite] = ACTIONS(6465), - [anon_sym_BSLASHsupercite] = ACTIONS(6465), - [anon_sym_BSLASHautocite] = ACTIONS(6465), - [anon_sym_BSLASHAutocite] = ACTIONS(6465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6467), - [anon_sym_BSLASHvolcite] = ACTIONS(6465), - [anon_sym_BSLASHVolcite] = ACTIONS(6465), - [anon_sym_BSLASHpvolcite] = ACTIONS(6465), - [anon_sym_BSLASHPvolcite] = ACTIONS(6465), - [anon_sym_BSLASHfvolcite] = ACTIONS(6465), - [anon_sym_BSLASHftvolcite] = ACTIONS(6465), - [anon_sym_BSLASHsvolcite] = ACTIONS(6465), - [anon_sym_BSLASHSvolcite] = ACTIONS(6465), - [anon_sym_BSLASHtvolcite] = ACTIONS(6465), - [anon_sym_BSLASHTvolcite] = ACTIONS(6465), - [anon_sym_BSLASHavolcite] = ACTIONS(6465), - [anon_sym_BSLASHAvolcite] = ACTIONS(6465), - [anon_sym_BSLASHnotecite] = ACTIONS(6465), - [anon_sym_BSLASHNotecite] = ACTIONS(6465), - [anon_sym_BSLASHpnotecite] = ACTIONS(6465), - [anon_sym_BSLASHPnotecite] = ACTIONS(6465), - [anon_sym_BSLASHfnotecite] = ACTIONS(6465), - [anon_sym_BSLASHlabel] = ACTIONS(6465), - [anon_sym_BSLASHref] = ACTIONS(6465), - [anon_sym_BSLASHeqref] = ACTIONS(6465), - [anon_sym_BSLASHvref] = ACTIONS(6465), - [anon_sym_BSLASHVref] = ACTIONS(6465), - [anon_sym_BSLASHautoref] = ACTIONS(6465), - [anon_sym_BSLASHpageref] = ACTIONS(6465), - [anon_sym_BSLASHcref] = ACTIONS(6465), - [anon_sym_BSLASHCref] = ACTIONS(6465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnameCref] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6465), - [anon_sym_BSLASHlabelcref] = ACTIONS(6465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange] = ACTIONS(6465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHCrefrange] = ACTIONS(6465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6467), - [anon_sym_BSLASHnewlabel] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand] = ACTIONS(6465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6467), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6465), - [anon_sym_BSLASHdef] = ACTIONS(6465), - [anon_sym_BSLASHlet] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6465), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6465), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6465), - [anon_sym_BSLASHgls] = ACTIONS(6465), - [anon_sym_BSLASHGls] = ACTIONS(6465), - [anon_sym_BSLASHGLS] = ACTIONS(6465), - [anon_sym_BSLASHglspl] = ACTIONS(6465), - [anon_sym_BSLASHGlspl] = ACTIONS(6465), - [anon_sym_BSLASHGLSpl] = ACTIONS(6465), - [anon_sym_BSLASHglsdisp] = ACTIONS(6465), - [anon_sym_BSLASHglslink] = ACTIONS(6465), - [anon_sym_BSLASHglstext] = ACTIONS(6465), - [anon_sym_BSLASHGlstext] = ACTIONS(6465), - [anon_sym_BSLASHGLStext] = ACTIONS(6465), - [anon_sym_BSLASHglsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6465), - [anon_sym_BSLASHglsplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSplural] = ACTIONS(6465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6465), - [anon_sym_BSLASHglsname] = ACTIONS(6465), - [anon_sym_BSLASHGlsname] = ACTIONS(6465), - [anon_sym_BSLASHGLSname] = ACTIONS(6465), - [anon_sym_BSLASHglssymbol] = ACTIONS(6465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6465), - [anon_sym_BSLASHglsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6465), - [anon_sym_BSLASHglsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6465), - [anon_sym_BSLASHglsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6465), - [anon_sym_BSLASHglsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6465), - [anon_sym_BSLASHglsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6465), - [anon_sym_BSLASHnewacronym] = ACTIONS(6465), - [anon_sym_BSLASHacrshort] = ACTIONS(6465), - [anon_sym_BSLASHAcrshort] = ACTIONS(6465), - [anon_sym_BSLASHACRshort] = ACTIONS(6465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6465), - [anon_sym_BSLASHacrlong] = ACTIONS(6465), - [anon_sym_BSLASHAcrlong] = ACTIONS(6465), - [anon_sym_BSLASHACRlong] = ACTIONS(6465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6465), - [anon_sym_BSLASHacrfull] = ACTIONS(6465), - [anon_sym_BSLASHAcrfull] = ACTIONS(6465), - [anon_sym_BSLASHACRfull] = ACTIONS(6465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6465), - [anon_sym_BSLASHacs] = ACTIONS(6465), - [anon_sym_BSLASHAcs] = ACTIONS(6465), - [anon_sym_BSLASHacsp] = ACTIONS(6465), - [anon_sym_BSLASHAcsp] = ACTIONS(6465), - [anon_sym_BSLASHacl] = ACTIONS(6465), - [anon_sym_BSLASHAcl] = ACTIONS(6465), - [anon_sym_BSLASHaclp] = ACTIONS(6465), - [anon_sym_BSLASHAclp] = ACTIONS(6465), - [anon_sym_BSLASHacf] = ACTIONS(6465), - [anon_sym_BSLASHAcf] = ACTIONS(6465), - [anon_sym_BSLASHacfp] = ACTIONS(6465), - [anon_sym_BSLASHAcfp] = ACTIONS(6465), - [anon_sym_BSLASHac] = ACTIONS(6465), - [anon_sym_BSLASHAc] = ACTIONS(6465), - [anon_sym_BSLASHacp] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6465), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6465), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6467), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6465), - [anon_sym_BSLASHcolor] = ACTIONS(6465), - [anon_sym_BSLASHcolorbox] = ACTIONS(6465), - [anon_sym_BSLASHtextcolor] = ACTIONS(6465), - [anon_sym_BSLASHpagecolor] = ACTIONS(6465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6465), - }, - [1949] = { - [sym_command_name] = ACTIONS(6457), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6457), - [anon_sym_RBRACK] = ACTIONS(6459), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_EQ] = ACTIONS(6459), - [anon_sym_RBRACE] = ACTIONS(6459), - [sym_word] = ACTIONS(6457), - [sym_placeholder] = ACTIONS(6459), - [anon_sym_PLUS] = ACTIONS(6459), - [anon_sym_DASH] = ACTIONS(6459), - [anon_sym_STAR] = ACTIONS(6459), - [anon_sym_SLASH] = ACTIONS(6459), - [anon_sym_LT] = ACTIONS(6457), - [anon_sym_GT] = ACTIONS(6457), - [anon_sym_BANG] = ACTIONS(6457), - [anon_sym_PIPE] = ACTIONS(6457), - [anon_sym_COLON] = ACTIONS(6457), - [anon_sym_SQUOTE] = ACTIONS(6457), - [anon_sym__] = ACTIONS(6459), - [anon_sym_CARET] = ACTIONS(6459), - [anon_sym_BSLASHtitle] = ACTIONS(6457), - [anon_sym_BSLASHauthor] = ACTIONS(6457), - [anon_sym_BSLASHusepackage] = ACTIONS(6457), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6457), - [anon_sym_BSLASHinclude] = ACTIONS(6457), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6457), - [anon_sym_BSLASHinput] = ACTIONS(6457), - [anon_sym_BSLASHsubfile] = ACTIONS(6457), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6457), - [anon_sym_BSLASHbibliography] = ACTIONS(6457), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6457), - [anon_sym_BSLASHincludesvg] = ACTIONS(6457), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6457), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6457), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6457), - [anon_sym_BSLASHimport] = ACTIONS(6457), - [anon_sym_BSLASHsubimport] = ACTIONS(6457), - [anon_sym_BSLASHinputfrom] = ACTIONS(6457), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6457), - [anon_sym_BSLASHincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6457), - [anon_sym_BSLASHcaption] = ACTIONS(6457), - [anon_sym_BSLASHcite] = ACTIONS(6457), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCite] = ACTIONS(6457), - [anon_sym_BSLASHnocite] = ACTIONS(6457), - [anon_sym_BSLASHcitet] = ACTIONS(6457), - [anon_sym_BSLASHcitep] = ACTIONS(6457), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteauthor] = ACTIONS(6457), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6457), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitetitle] = ACTIONS(6457), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteyear] = ACTIONS(6457), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6459), - [anon_sym_BSLASHcitedate] = ACTIONS(6457), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6459), - [anon_sym_BSLASHciteurl] = ACTIONS(6457), - [anon_sym_BSLASHfullcite] = ACTIONS(6457), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6457), - [anon_sym_BSLASHcitealt] = ACTIONS(6457), - [anon_sym_BSLASHcitealp] = ACTIONS(6457), - [anon_sym_BSLASHcitetext] = ACTIONS(6457), - [anon_sym_BSLASHparencite] = ACTIONS(6457), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHParencite] = ACTIONS(6457), - [anon_sym_BSLASHfootcite] = ACTIONS(6457), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6457), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6457), - [anon_sym_BSLASHtextcite] = ACTIONS(6457), - [anon_sym_BSLASHTextcite] = ACTIONS(6457), - [anon_sym_BSLASHsmartcite] = ACTIONS(6457), - [anon_sym_BSLASHSmartcite] = ACTIONS(6457), - [anon_sym_BSLASHsupercite] = ACTIONS(6457), - [anon_sym_BSLASHautocite] = ACTIONS(6457), - [anon_sym_BSLASHAutocite] = ACTIONS(6457), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6459), - [anon_sym_BSLASHvolcite] = ACTIONS(6457), - [anon_sym_BSLASHVolcite] = ACTIONS(6457), - [anon_sym_BSLASHpvolcite] = ACTIONS(6457), - [anon_sym_BSLASHPvolcite] = ACTIONS(6457), - [anon_sym_BSLASHfvolcite] = ACTIONS(6457), - [anon_sym_BSLASHftvolcite] = ACTIONS(6457), - [anon_sym_BSLASHsvolcite] = ACTIONS(6457), - [anon_sym_BSLASHSvolcite] = ACTIONS(6457), - [anon_sym_BSLASHtvolcite] = ACTIONS(6457), - [anon_sym_BSLASHTvolcite] = ACTIONS(6457), - [anon_sym_BSLASHavolcite] = ACTIONS(6457), - [anon_sym_BSLASHAvolcite] = ACTIONS(6457), - [anon_sym_BSLASHnotecite] = ACTIONS(6457), - [anon_sym_BSLASHNotecite] = ACTIONS(6457), - [anon_sym_BSLASHpnotecite] = ACTIONS(6457), - [anon_sym_BSLASHPnotecite] = ACTIONS(6457), - [anon_sym_BSLASHfnotecite] = ACTIONS(6457), - [anon_sym_BSLASHlabel] = ACTIONS(6457), - [anon_sym_BSLASHref] = ACTIONS(6457), - [anon_sym_BSLASHeqref] = ACTIONS(6457), - [anon_sym_BSLASHvref] = ACTIONS(6457), - [anon_sym_BSLASHVref] = ACTIONS(6457), - [anon_sym_BSLASHautoref] = ACTIONS(6457), - [anon_sym_BSLASHpageref] = ACTIONS(6457), - [anon_sym_BSLASHcref] = ACTIONS(6457), - [anon_sym_BSLASHCref] = ACTIONS(6457), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnameCref] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6457), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6457), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6457), - [anon_sym_BSLASHlabelcref] = ACTIONS(6457), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange] = ACTIONS(6457), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHCrefrange] = ACTIONS(6457), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6459), - [anon_sym_BSLASHnewlabel] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand] = ACTIONS(6457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6459), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6459), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6457), - [anon_sym_BSLASHdef] = ACTIONS(6457), - [anon_sym_BSLASHlet] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6457), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6457), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6457), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6457), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6457), - [anon_sym_BSLASHgls] = ACTIONS(6457), - [anon_sym_BSLASHGls] = ACTIONS(6457), - [anon_sym_BSLASHGLS] = ACTIONS(6457), - [anon_sym_BSLASHglspl] = ACTIONS(6457), - [anon_sym_BSLASHGlspl] = ACTIONS(6457), - [anon_sym_BSLASHGLSpl] = ACTIONS(6457), - [anon_sym_BSLASHglsdisp] = ACTIONS(6457), - [anon_sym_BSLASHglslink] = ACTIONS(6457), - [anon_sym_BSLASHglstext] = ACTIONS(6457), - [anon_sym_BSLASHGlstext] = ACTIONS(6457), - [anon_sym_BSLASHGLStext] = ACTIONS(6457), - [anon_sym_BSLASHglsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6457), - [anon_sym_BSLASHglsplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSplural] = ACTIONS(6457), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6457), - [anon_sym_BSLASHglsname] = ACTIONS(6457), - [anon_sym_BSLASHGlsname] = ACTIONS(6457), - [anon_sym_BSLASHGLSname] = ACTIONS(6457), - [anon_sym_BSLASHglssymbol] = ACTIONS(6457), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6457), - [anon_sym_BSLASHglsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6457), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6457), - [anon_sym_BSLASHglsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6457), - [anon_sym_BSLASHglsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6457), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6457), - [anon_sym_BSLASHglsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6457), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6457), - [anon_sym_BSLASHglsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6457), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6457), - [anon_sym_BSLASHnewacronym] = ACTIONS(6457), - [anon_sym_BSLASHacrshort] = ACTIONS(6457), - [anon_sym_BSLASHAcrshort] = ACTIONS(6457), - [anon_sym_BSLASHACRshort] = ACTIONS(6457), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6457), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6457), - [anon_sym_BSLASHacrlong] = ACTIONS(6457), - [anon_sym_BSLASHAcrlong] = ACTIONS(6457), - [anon_sym_BSLASHACRlong] = ACTIONS(6457), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6457), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6457), - [anon_sym_BSLASHacrfull] = ACTIONS(6457), - [anon_sym_BSLASHAcrfull] = ACTIONS(6457), - [anon_sym_BSLASHACRfull] = ACTIONS(6457), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6457), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6457), - [anon_sym_BSLASHacs] = ACTIONS(6457), - [anon_sym_BSLASHAcs] = ACTIONS(6457), - [anon_sym_BSLASHacsp] = ACTIONS(6457), - [anon_sym_BSLASHAcsp] = ACTIONS(6457), - [anon_sym_BSLASHacl] = ACTIONS(6457), - [anon_sym_BSLASHAcl] = ACTIONS(6457), - [anon_sym_BSLASHaclp] = ACTIONS(6457), - [anon_sym_BSLASHAclp] = ACTIONS(6457), - [anon_sym_BSLASHacf] = ACTIONS(6457), - [anon_sym_BSLASHAcf] = ACTIONS(6457), - [anon_sym_BSLASHacfp] = ACTIONS(6457), - [anon_sym_BSLASHAcfp] = ACTIONS(6457), - [anon_sym_BSLASHac] = ACTIONS(6457), - [anon_sym_BSLASHAc] = ACTIONS(6457), - [anon_sym_BSLASHacp] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6457), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6457), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6457), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6457), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6457), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6459), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6457), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6457), - [anon_sym_BSLASHcolor] = ACTIONS(6457), - [anon_sym_BSLASHcolorbox] = ACTIONS(6457), - [anon_sym_BSLASHtextcolor] = ACTIONS(6457), - [anon_sym_BSLASHpagecolor] = ACTIONS(6457), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6457), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6457), - }, - [1950] = { - [sym_command_name] = ACTIONS(6453), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6453), - [anon_sym_RBRACK] = ACTIONS(6455), - [anon_sym_COMMA] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(6455), - [anon_sym_RBRACE] = ACTIONS(6455), - [sym_word] = ACTIONS(6453), - [sym_placeholder] = ACTIONS(6455), - [anon_sym_PLUS] = ACTIONS(6455), - [anon_sym_DASH] = ACTIONS(6455), - [anon_sym_STAR] = ACTIONS(6455), - [anon_sym_SLASH] = ACTIONS(6455), - [anon_sym_LT] = ACTIONS(6453), - [anon_sym_GT] = ACTIONS(6453), - [anon_sym_BANG] = ACTIONS(6453), - [anon_sym_PIPE] = ACTIONS(6453), - [anon_sym_COLON] = ACTIONS(6453), - [anon_sym_SQUOTE] = ACTIONS(6453), - [anon_sym__] = ACTIONS(6455), - [anon_sym_CARET] = ACTIONS(6455), - [anon_sym_BSLASHtitle] = ACTIONS(6453), - [anon_sym_BSLASHauthor] = ACTIONS(6453), - [anon_sym_BSLASHusepackage] = ACTIONS(6453), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6453), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6453), - [anon_sym_BSLASHinclude] = ACTIONS(6453), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6453), - [anon_sym_BSLASHinput] = ACTIONS(6453), - [anon_sym_BSLASHsubfile] = ACTIONS(6453), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6453), - [anon_sym_BSLASHbibliography] = ACTIONS(6453), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6453), - [anon_sym_BSLASHincludesvg] = ACTIONS(6453), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6453), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6453), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6453), - [anon_sym_BSLASHimport] = ACTIONS(6453), - [anon_sym_BSLASHsubimport] = ACTIONS(6453), - [anon_sym_BSLASHinputfrom] = ACTIONS(6453), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6453), - [anon_sym_BSLASHincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6453), - [anon_sym_BSLASHcaption] = ACTIONS(6453), - [anon_sym_BSLASHcite] = ACTIONS(6453), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCite] = ACTIONS(6453), - [anon_sym_BSLASHnocite] = ACTIONS(6453), - [anon_sym_BSLASHcitet] = ACTIONS(6453), - [anon_sym_BSLASHcitep] = ACTIONS(6453), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteauthor] = ACTIONS(6453), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6453), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitetitle] = ACTIONS(6453), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteyear] = ACTIONS(6453), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6455), - [anon_sym_BSLASHcitedate] = ACTIONS(6453), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6455), - [anon_sym_BSLASHciteurl] = ACTIONS(6453), - [anon_sym_BSLASHfullcite] = ACTIONS(6453), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6453), - [anon_sym_BSLASHcitealt] = ACTIONS(6453), - [anon_sym_BSLASHcitealp] = ACTIONS(6453), - [anon_sym_BSLASHcitetext] = ACTIONS(6453), - [anon_sym_BSLASHparencite] = ACTIONS(6453), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHParencite] = ACTIONS(6453), - [anon_sym_BSLASHfootcite] = ACTIONS(6453), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6453), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6453), - [anon_sym_BSLASHtextcite] = ACTIONS(6453), - [anon_sym_BSLASHTextcite] = ACTIONS(6453), - [anon_sym_BSLASHsmartcite] = ACTIONS(6453), - [anon_sym_BSLASHSmartcite] = ACTIONS(6453), - [anon_sym_BSLASHsupercite] = ACTIONS(6453), - [anon_sym_BSLASHautocite] = ACTIONS(6453), - [anon_sym_BSLASHAutocite] = ACTIONS(6453), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6455), - [anon_sym_BSLASHvolcite] = ACTIONS(6453), - [anon_sym_BSLASHVolcite] = ACTIONS(6453), - [anon_sym_BSLASHpvolcite] = ACTIONS(6453), - [anon_sym_BSLASHPvolcite] = ACTIONS(6453), - [anon_sym_BSLASHfvolcite] = ACTIONS(6453), - [anon_sym_BSLASHftvolcite] = ACTIONS(6453), - [anon_sym_BSLASHsvolcite] = ACTIONS(6453), - [anon_sym_BSLASHSvolcite] = ACTIONS(6453), - [anon_sym_BSLASHtvolcite] = ACTIONS(6453), - [anon_sym_BSLASHTvolcite] = ACTIONS(6453), - [anon_sym_BSLASHavolcite] = ACTIONS(6453), - [anon_sym_BSLASHAvolcite] = ACTIONS(6453), - [anon_sym_BSLASHnotecite] = ACTIONS(6453), - [anon_sym_BSLASHNotecite] = ACTIONS(6453), - [anon_sym_BSLASHpnotecite] = ACTIONS(6453), - [anon_sym_BSLASHPnotecite] = ACTIONS(6453), - [anon_sym_BSLASHfnotecite] = ACTIONS(6453), - [anon_sym_BSLASHlabel] = ACTIONS(6453), - [anon_sym_BSLASHref] = ACTIONS(6453), - [anon_sym_BSLASHeqref] = ACTIONS(6453), - [anon_sym_BSLASHvref] = ACTIONS(6453), - [anon_sym_BSLASHVref] = ACTIONS(6453), - [anon_sym_BSLASHautoref] = ACTIONS(6453), - [anon_sym_BSLASHpageref] = ACTIONS(6453), - [anon_sym_BSLASHcref] = ACTIONS(6453), - [anon_sym_BSLASHCref] = ACTIONS(6453), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnameCref] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6453), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6453), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6453), - [anon_sym_BSLASHlabelcref] = ACTIONS(6453), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange] = ACTIONS(6453), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHCrefrange] = ACTIONS(6453), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6455), - [anon_sym_BSLASHnewlabel] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand] = ACTIONS(6453), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6453), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6455), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6453), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6455), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6453), - [anon_sym_BSLASHdef] = ACTIONS(6453), - [anon_sym_BSLASHlet] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6453), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6453), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6453), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6453), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6453), - [anon_sym_BSLASHgls] = ACTIONS(6453), - [anon_sym_BSLASHGls] = ACTIONS(6453), - [anon_sym_BSLASHGLS] = ACTIONS(6453), - [anon_sym_BSLASHglspl] = ACTIONS(6453), - [anon_sym_BSLASHGlspl] = ACTIONS(6453), - [anon_sym_BSLASHGLSpl] = ACTIONS(6453), - [anon_sym_BSLASHglsdisp] = ACTIONS(6453), - [anon_sym_BSLASHglslink] = ACTIONS(6453), - [anon_sym_BSLASHglstext] = ACTIONS(6453), - [anon_sym_BSLASHGlstext] = ACTIONS(6453), - [anon_sym_BSLASHGLStext] = ACTIONS(6453), - [anon_sym_BSLASHglsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6453), - [anon_sym_BSLASHglsplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSplural] = ACTIONS(6453), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6453), - [anon_sym_BSLASHglsname] = ACTIONS(6453), - [anon_sym_BSLASHGlsname] = ACTIONS(6453), - [anon_sym_BSLASHGLSname] = ACTIONS(6453), - [anon_sym_BSLASHglssymbol] = ACTIONS(6453), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6453), - [anon_sym_BSLASHglsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6453), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6453), - [anon_sym_BSLASHglsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6453), - [anon_sym_BSLASHglsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6453), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6453), - [anon_sym_BSLASHglsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6453), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6453), - [anon_sym_BSLASHglsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6453), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6453), - [anon_sym_BSLASHnewacronym] = ACTIONS(6453), - [anon_sym_BSLASHacrshort] = ACTIONS(6453), - [anon_sym_BSLASHAcrshort] = ACTIONS(6453), - [anon_sym_BSLASHACRshort] = ACTIONS(6453), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6453), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6453), - [anon_sym_BSLASHacrlong] = ACTIONS(6453), - [anon_sym_BSLASHAcrlong] = ACTIONS(6453), - [anon_sym_BSLASHACRlong] = ACTIONS(6453), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6453), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6453), - [anon_sym_BSLASHacrfull] = ACTIONS(6453), - [anon_sym_BSLASHAcrfull] = ACTIONS(6453), - [anon_sym_BSLASHACRfull] = ACTIONS(6453), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6453), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6453), - [anon_sym_BSLASHacs] = ACTIONS(6453), - [anon_sym_BSLASHAcs] = ACTIONS(6453), - [anon_sym_BSLASHacsp] = ACTIONS(6453), - [anon_sym_BSLASHAcsp] = ACTIONS(6453), - [anon_sym_BSLASHacl] = ACTIONS(6453), - [anon_sym_BSLASHAcl] = ACTIONS(6453), - [anon_sym_BSLASHaclp] = ACTIONS(6453), - [anon_sym_BSLASHAclp] = ACTIONS(6453), - [anon_sym_BSLASHacf] = ACTIONS(6453), - [anon_sym_BSLASHAcf] = ACTIONS(6453), - [anon_sym_BSLASHacfp] = ACTIONS(6453), - [anon_sym_BSLASHAcfp] = ACTIONS(6453), - [anon_sym_BSLASHac] = ACTIONS(6453), - [anon_sym_BSLASHAc] = ACTIONS(6453), - [anon_sym_BSLASHacp] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6453), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6453), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6453), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6453), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6453), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6453), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6453), - [anon_sym_BSLASHcolor] = ACTIONS(6453), - [anon_sym_BSLASHcolorbox] = ACTIONS(6453), - [anon_sym_BSLASHtextcolor] = ACTIONS(6453), - [anon_sym_BSLASHpagecolor] = ACTIONS(6453), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6453), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6453), - }, - [1951] = { - [sym_command_name] = ACTIONS(6449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6449), - [anon_sym_RBRACK] = ACTIONS(6451), - [anon_sym_COMMA] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(6451), - [anon_sym_RBRACE] = ACTIONS(6451), - [sym_word] = ACTIONS(6449), - [sym_placeholder] = ACTIONS(6451), - [anon_sym_PLUS] = ACTIONS(6451), - [anon_sym_DASH] = ACTIONS(6451), - [anon_sym_STAR] = ACTIONS(6451), - [anon_sym_SLASH] = ACTIONS(6451), - [anon_sym_LT] = ACTIONS(6449), - [anon_sym_GT] = ACTIONS(6449), - [anon_sym_BANG] = ACTIONS(6449), - [anon_sym_PIPE] = ACTIONS(6449), - [anon_sym_COLON] = ACTIONS(6449), - [anon_sym_SQUOTE] = ACTIONS(6449), - [anon_sym__] = ACTIONS(6451), - [anon_sym_CARET] = ACTIONS(6451), - [anon_sym_BSLASHtitle] = ACTIONS(6449), - [anon_sym_BSLASHauthor] = ACTIONS(6449), - [anon_sym_BSLASHusepackage] = ACTIONS(6449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6449), - [anon_sym_BSLASHinclude] = ACTIONS(6449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6449), - [anon_sym_BSLASHinput] = ACTIONS(6449), - [anon_sym_BSLASHsubfile] = ACTIONS(6449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6449), - [anon_sym_BSLASHbibliography] = ACTIONS(6449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6449), - [anon_sym_BSLASHincludesvg] = ACTIONS(6449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6449), - [anon_sym_BSLASHimport] = ACTIONS(6449), - [anon_sym_BSLASHsubimport] = ACTIONS(6449), - [anon_sym_BSLASHinputfrom] = ACTIONS(6449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6449), - [anon_sym_BSLASHincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6449), - [anon_sym_BSLASHcaption] = ACTIONS(6449), - [anon_sym_BSLASHcite] = ACTIONS(6449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCite] = ACTIONS(6449), - [anon_sym_BSLASHnocite] = ACTIONS(6449), - [anon_sym_BSLASHcitet] = ACTIONS(6449), - [anon_sym_BSLASHcitep] = ACTIONS(6449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteauthor] = ACTIONS(6449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitetitle] = ACTIONS(6449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteyear] = ACTIONS(6449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6451), - [anon_sym_BSLASHcitedate] = ACTIONS(6449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6451), - [anon_sym_BSLASHciteurl] = ACTIONS(6449), - [anon_sym_BSLASHfullcite] = ACTIONS(6449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6449), - [anon_sym_BSLASHcitealt] = ACTIONS(6449), - [anon_sym_BSLASHcitealp] = ACTIONS(6449), - [anon_sym_BSLASHcitetext] = ACTIONS(6449), - [anon_sym_BSLASHparencite] = ACTIONS(6449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHParencite] = ACTIONS(6449), - [anon_sym_BSLASHfootcite] = ACTIONS(6449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6449), - [anon_sym_BSLASHtextcite] = ACTIONS(6449), - [anon_sym_BSLASHTextcite] = ACTIONS(6449), - [anon_sym_BSLASHsmartcite] = ACTIONS(6449), - [anon_sym_BSLASHSmartcite] = ACTIONS(6449), - [anon_sym_BSLASHsupercite] = ACTIONS(6449), - [anon_sym_BSLASHautocite] = ACTIONS(6449), - [anon_sym_BSLASHAutocite] = ACTIONS(6449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6451), - [anon_sym_BSLASHvolcite] = ACTIONS(6449), - [anon_sym_BSLASHVolcite] = ACTIONS(6449), - [anon_sym_BSLASHpvolcite] = ACTIONS(6449), - [anon_sym_BSLASHPvolcite] = ACTIONS(6449), - [anon_sym_BSLASHfvolcite] = ACTIONS(6449), - [anon_sym_BSLASHftvolcite] = ACTIONS(6449), - [anon_sym_BSLASHsvolcite] = ACTIONS(6449), - [anon_sym_BSLASHSvolcite] = ACTIONS(6449), - [anon_sym_BSLASHtvolcite] = ACTIONS(6449), - [anon_sym_BSLASHTvolcite] = ACTIONS(6449), - [anon_sym_BSLASHavolcite] = ACTIONS(6449), - [anon_sym_BSLASHAvolcite] = ACTIONS(6449), - [anon_sym_BSLASHnotecite] = ACTIONS(6449), - [anon_sym_BSLASHNotecite] = ACTIONS(6449), - [anon_sym_BSLASHpnotecite] = ACTIONS(6449), - [anon_sym_BSLASHPnotecite] = ACTIONS(6449), - [anon_sym_BSLASHfnotecite] = ACTIONS(6449), - [anon_sym_BSLASHlabel] = ACTIONS(6449), - [anon_sym_BSLASHref] = ACTIONS(6449), - [anon_sym_BSLASHeqref] = ACTIONS(6449), - [anon_sym_BSLASHvref] = ACTIONS(6449), - [anon_sym_BSLASHVref] = ACTIONS(6449), - [anon_sym_BSLASHautoref] = ACTIONS(6449), - [anon_sym_BSLASHpageref] = ACTIONS(6449), - [anon_sym_BSLASHcref] = ACTIONS(6449), - [anon_sym_BSLASHCref] = ACTIONS(6449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnameCref] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6449), - [anon_sym_BSLASHlabelcref] = ACTIONS(6449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange] = ACTIONS(6449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHCrefrange] = ACTIONS(6449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6451), - [anon_sym_BSLASHnewlabel] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand] = ACTIONS(6449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6451), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6451), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6449), - [anon_sym_BSLASHdef] = ACTIONS(6449), - [anon_sym_BSLASHlet] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6449), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6449), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6449), - [anon_sym_BSLASHgls] = ACTIONS(6449), - [anon_sym_BSLASHGls] = ACTIONS(6449), - [anon_sym_BSLASHGLS] = ACTIONS(6449), - [anon_sym_BSLASHglspl] = ACTIONS(6449), - [anon_sym_BSLASHGlspl] = ACTIONS(6449), - [anon_sym_BSLASHGLSpl] = ACTIONS(6449), - [anon_sym_BSLASHglsdisp] = ACTIONS(6449), - [anon_sym_BSLASHglslink] = ACTIONS(6449), - [anon_sym_BSLASHglstext] = ACTIONS(6449), - [anon_sym_BSLASHGlstext] = ACTIONS(6449), - [anon_sym_BSLASHGLStext] = ACTIONS(6449), - [anon_sym_BSLASHglsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6449), - [anon_sym_BSLASHglsplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSplural] = ACTIONS(6449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6449), - [anon_sym_BSLASHglsname] = ACTIONS(6449), - [anon_sym_BSLASHGlsname] = ACTIONS(6449), - [anon_sym_BSLASHGLSname] = ACTIONS(6449), - [anon_sym_BSLASHglssymbol] = ACTIONS(6449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6449), - [anon_sym_BSLASHglsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6449), - [anon_sym_BSLASHglsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6449), - [anon_sym_BSLASHglsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6449), - [anon_sym_BSLASHglsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6449), - [anon_sym_BSLASHglsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6449), - [anon_sym_BSLASHnewacronym] = ACTIONS(6449), - [anon_sym_BSLASHacrshort] = ACTIONS(6449), - [anon_sym_BSLASHAcrshort] = ACTIONS(6449), - [anon_sym_BSLASHACRshort] = ACTIONS(6449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6449), - [anon_sym_BSLASHacrlong] = ACTIONS(6449), - [anon_sym_BSLASHAcrlong] = ACTIONS(6449), - [anon_sym_BSLASHACRlong] = ACTIONS(6449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6449), - [anon_sym_BSLASHacrfull] = ACTIONS(6449), - [anon_sym_BSLASHAcrfull] = ACTIONS(6449), - [anon_sym_BSLASHACRfull] = ACTIONS(6449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6449), - [anon_sym_BSLASHacs] = ACTIONS(6449), - [anon_sym_BSLASHAcs] = ACTIONS(6449), - [anon_sym_BSLASHacsp] = ACTIONS(6449), - [anon_sym_BSLASHAcsp] = ACTIONS(6449), - [anon_sym_BSLASHacl] = ACTIONS(6449), - [anon_sym_BSLASHAcl] = ACTIONS(6449), - [anon_sym_BSLASHaclp] = ACTIONS(6449), - [anon_sym_BSLASHAclp] = ACTIONS(6449), - [anon_sym_BSLASHacf] = ACTIONS(6449), - [anon_sym_BSLASHAcf] = ACTIONS(6449), - [anon_sym_BSLASHacfp] = ACTIONS(6449), - [anon_sym_BSLASHAcfp] = ACTIONS(6449), - [anon_sym_BSLASHac] = ACTIONS(6449), - [anon_sym_BSLASHAc] = ACTIONS(6449), - [anon_sym_BSLASHacp] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6449), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6449), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6451), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6449), - [anon_sym_BSLASHcolor] = ACTIONS(6449), - [anon_sym_BSLASHcolorbox] = ACTIONS(6449), - [anon_sym_BSLASHtextcolor] = ACTIONS(6449), - [anon_sym_BSLASHpagecolor] = ACTIONS(6449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6449), - }, - [1952] = { - [sym_command_name] = ACTIONS(6445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6445), - [anon_sym_RBRACK] = ACTIONS(6447), - [anon_sym_COMMA] = ACTIONS(6447), - [anon_sym_EQ] = ACTIONS(6447), - [anon_sym_RBRACE] = ACTIONS(6447), - [sym_word] = ACTIONS(6445), - [sym_placeholder] = ACTIONS(6447), - [anon_sym_PLUS] = ACTIONS(6447), - [anon_sym_DASH] = ACTIONS(6447), - [anon_sym_STAR] = ACTIONS(6447), - [anon_sym_SLASH] = ACTIONS(6447), - [anon_sym_LT] = ACTIONS(6445), - [anon_sym_GT] = ACTIONS(6445), - [anon_sym_BANG] = ACTIONS(6445), - [anon_sym_PIPE] = ACTIONS(6445), - [anon_sym_COLON] = ACTIONS(6445), - [anon_sym_SQUOTE] = ACTIONS(6445), - [anon_sym__] = ACTIONS(6447), - [anon_sym_CARET] = ACTIONS(6447), - [anon_sym_BSLASHtitle] = ACTIONS(6445), - [anon_sym_BSLASHauthor] = ACTIONS(6445), - [anon_sym_BSLASHusepackage] = ACTIONS(6445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6445), - [anon_sym_BSLASHinclude] = ACTIONS(6445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6445), - [anon_sym_BSLASHinput] = ACTIONS(6445), - [anon_sym_BSLASHsubfile] = ACTIONS(6445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6445), - [anon_sym_BSLASHbibliography] = ACTIONS(6445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6445), - [anon_sym_BSLASHincludesvg] = ACTIONS(6445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6445), - [anon_sym_BSLASHimport] = ACTIONS(6445), - [anon_sym_BSLASHsubimport] = ACTIONS(6445), - [anon_sym_BSLASHinputfrom] = ACTIONS(6445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6445), - [anon_sym_BSLASHincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6445), - [anon_sym_BSLASHcaption] = ACTIONS(6445), - [anon_sym_BSLASHcite] = ACTIONS(6445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCite] = ACTIONS(6445), - [anon_sym_BSLASHnocite] = ACTIONS(6445), - [anon_sym_BSLASHcitet] = ACTIONS(6445), - [anon_sym_BSLASHcitep] = ACTIONS(6445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteauthor] = ACTIONS(6445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitetitle] = ACTIONS(6445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteyear] = ACTIONS(6445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6447), - [anon_sym_BSLASHcitedate] = ACTIONS(6445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6447), - [anon_sym_BSLASHciteurl] = ACTIONS(6445), - [anon_sym_BSLASHfullcite] = ACTIONS(6445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6445), - [anon_sym_BSLASHcitealt] = ACTIONS(6445), - [anon_sym_BSLASHcitealp] = ACTIONS(6445), - [anon_sym_BSLASHcitetext] = ACTIONS(6445), - [anon_sym_BSLASHparencite] = ACTIONS(6445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHParencite] = ACTIONS(6445), - [anon_sym_BSLASHfootcite] = ACTIONS(6445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6445), - [anon_sym_BSLASHtextcite] = ACTIONS(6445), - [anon_sym_BSLASHTextcite] = ACTIONS(6445), - [anon_sym_BSLASHsmartcite] = ACTIONS(6445), - [anon_sym_BSLASHSmartcite] = ACTIONS(6445), - [anon_sym_BSLASHsupercite] = ACTIONS(6445), - [anon_sym_BSLASHautocite] = ACTIONS(6445), - [anon_sym_BSLASHAutocite] = ACTIONS(6445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6447), - [anon_sym_BSLASHvolcite] = ACTIONS(6445), - [anon_sym_BSLASHVolcite] = ACTIONS(6445), - [anon_sym_BSLASHpvolcite] = ACTIONS(6445), - [anon_sym_BSLASHPvolcite] = ACTIONS(6445), - [anon_sym_BSLASHfvolcite] = ACTIONS(6445), - [anon_sym_BSLASHftvolcite] = ACTIONS(6445), - [anon_sym_BSLASHsvolcite] = ACTIONS(6445), - [anon_sym_BSLASHSvolcite] = ACTIONS(6445), - [anon_sym_BSLASHtvolcite] = ACTIONS(6445), - [anon_sym_BSLASHTvolcite] = ACTIONS(6445), - [anon_sym_BSLASHavolcite] = ACTIONS(6445), - [anon_sym_BSLASHAvolcite] = ACTIONS(6445), - [anon_sym_BSLASHnotecite] = ACTIONS(6445), - [anon_sym_BSLASHNotecite] = ACTIONS(6445), - [anon_sym_BSLASHpnotecite] = ACTIONS(6445), - [anon_sym_BSLASHPnotecite] = ACTIONS(6445), - [anon_sym_BSLASHfnotecite] = ACTIONS(6445), - [anon_sym_BSLASHlabel] = ACTIONS(6445), - [anon_sym_BSLASHref] = ACTIONS(6445), - [anon_sym_BSLASHeqref] = ACTIONS(6445), - [anon_sym_BSLASHvref] = ACTIONS(6445), - [anon_sym_BSLASHVref] = ACTIONS(6445), - [anon_sym_BSLASHautoref] = ACTIONS(6445), - [anon_sym_BSLASHpageref] = ACTIONS(6445), - [anon_sym_BSLASHcref] = ACTIONS(6445), - [anon_sym_BSLASHCref] = ACTIONS(6445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnameCref] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6445), - [anon_sym_BSLASHlabelcref] = ACTIONS(6445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange] = ACTIONS(6445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHCrefrange] = ACTIONS(6445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6447), - [anon_sym_BSLASHnewlabel] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand] = ACTIONS(6445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6447), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6445), - [anon_sym_BSLASHdef] = ACTIONS(6445), - [anon_sym_BSLASHlet] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6445), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6445), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6445), - [anon_sym_BSLASHgls] = ACTIONS(6445), - [anon_sym_BSLASHGls] = ACTIONS(6445), - [anon_sym_BSLASHGLS] = ACTIONS(6445), - [anon_sym_BSLASHglspl] = ACTIONS(6445), - [anon_sym_BSLASHGlspl] = ACTIONS(6445), - [anon_sym_BSLASHGLSpl] = ACTIONS(6445), - [anon_sym_BSLASHglsdisp] = ACTIONS(6445), - [anon_sym_BSLASHglslink] = ACTIONS(6445), - [anon_sym_BSLASHglstext] = ACTIONS(6445), - [anon_sym_BSLASHGlstext] = ACTIONS(6445), - [anon_sym_BSLASHGLStext] = ACTIONS(6445), - [anon_sym_BSLASHglsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6445), - [anon_sym_BSLASHglsplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSplural] = ACTIONS(6445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6445), - [anon_sym_BSLASHglsname] = ACTIONS(6445), - [anon_sym_BSLASHGlsname] = ACTIONS(6445), - [anon_sym_BSLASHGLSname] = ACTIONS(6445), - [anon_sym_BSLASHglssymbol] = ACTIONS(6445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6445), - [anon_sym_BSLASHglsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6445), - [anon_sym_BSLASHglsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6445), - [anon_sym_BSLASHglsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6445), - [anon_sym_BSLASHglsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6445), - [anon_sym_BSLASHglsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6445), - [anon_sym_BSLASHnewacronym] = ACTIONS(6445), - [anon_sym_BSLASHacrshort] = ACTIONS(6445), - [anon_sym_BSLASHAcrshort] = ACTIONS(6445), - [anon_sym_BSLASHACRshort] = ACTIONS(6445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6445), - [anon_sym_BSLASHacrlong] = ACTIONS(6445), - [anon_sym_BSLASHAcrlong] = ACTIONS(6445), - [anon_sym_BSLASHACRlong] = ACTIONS(6445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6445), - [anon_sym_BSLASHacrfull] = ACTIONS(6445), - [anon_sym_BSLASHAcrfull] = ACTIONS(6445), - [anon_sym_BSLASHACRfull] = ACTIONS(6445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6445), - [anon_sym_BSLASHacs] = ACTIONS(6445), - [anon_sym_BSLASHAcs] = ACTIONS(6445), - [anon_sym_BSLASHacsp] = ACTIONS(6445), - [anon_sym_BSLASHAcsp] = ACTIONS(6445), - [anon_sym_BSLASHacl] = ACTIONS(6445), - [anon_sym_BSLASHAcl] = ACTIONS(6445), - [anon_sym_BSLASHaclp] = ACTIONS(6445), - [anon_sym_BSLASHAclp] = ACTIONS(6445), - [anon_sym_BSLASHacf] = ACTIONS(6445), - [anon_sym_BSLASHAcf] = ACTIONS(6445), - [anon_sym_BSLASHacfp] = ACTIONS(6445), - [anon_sym_BSLASHAcfp] = ACTIONS(6445), - [anon_sym_BSLASHac] = ACTIONS(6445), - [anon_sym_BSLASHAc] = ACTIONS(6445), - [anon_sym_BSLASHacp] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6445), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6445), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6447), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6445), - [anon_sym_BSLASHcolor] = ACTIONS(6445), - [anon_sym_BSLASHcolorbox] = ACTIONS(6445), - [anon_sym_BSLASHtextcolor] = ACTIONS(6445), - [anon_sym_BSLASHpagecolor] = ACTIONS(6445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6445), - }, - [1953] = { - [sym_command_name] = ACTIONS(6441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6441), - [anon_sym_RBRACK] = ACTIONS(6443), - [anon_sym_COMMA] = ACTIONS(6443), - [anon_sym_EQ] = ACTIONS(6443), - [anon_sym_RBRACE] = ACTIONS(6443), - [sym_word] = ACTIONS(6441), - [sym_placeholder] = ACTIONS(6443), - [anon_sym_PLUS] = ACTIONS(6443), - [anon_sym_DASH] = ACTIONS(6443), - [anon_sym_STAR] = ACTIONS(6443), - [anon_sym_SLASH] = ACTIONS(6443), - [anon_sym_LT] = ACTIONS(6441), - [anon_sym_GT] = ACTIONS(6441), - [anon_sym_BANG] = ACTIONS(6441), - [anon_sym_PIPE] = ACTIONS(6441), - [anon_sym_COLON] = ACTIONS(6441), - [anon_sym_SQUOTE] = ACTIONS(6441), - [anon_sym__] = ACTIONS(6443), - [anon_sym_CARET] = ACTIONS(6443), - [anon_sym_BSLASHtitle] = ACTIONS(6441), - [anon_sym_BSLASHauthor] = ACTIONS(6441), - [anon_sym_BSLASHusepackage] = ACTIONS(6441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6441), - [anon_sym_BSLASHinclude] = ACTIONS(6441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6441), - [anon_sym_BSLASHinput] = ACTIONS(6441), - [anon_sym_BSLASHsubfile] = ACTIONS(6441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6441), - [anon_sym_BSLASHbibliography] = ACTIONS(6441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6441), - [anon_sym_BSLASHincludesvg] = ACTIONS(6441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6441), - [anon_sym_BSLASHimport] = ACTIONS(6441), - [anon_sym_BSLASHsubimport] = ACTIONS(6441), - [anon_sym_BSLASHinputfrom] = ACTIONS(6441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6441), - [anon_sym_BSLASHincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6441), - [anon_sym_BSLASHcaption] = ACTIONS(6441), - [anon_sym_BSLASHcite] = ACTIONS(6441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCite] = ACTIONS(6441), - [anon_sym_BSLASHnocite] = ACTIONS(6441), - [anon_sym_BSLASHcitet] = ACTIONS(6441), - [anon_sym_BSLASHcitep] = ACTIONS(6441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteauthor] = ACTIONS(6441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitetitle] = ACTIONS(6441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteyear] = ACTIONS(6441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6443), - [anon_sym_BSLASHcitedate] = ACTIONS(6441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6443), - [anon_sym_BSLASHciteurl] = ACTIONS(6441), - [anon_sym_BSLASHfullcite] = ACTIONS(6441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6441), - [anon_sym_BSLASHcitealt] = ACTIONS(6441), - [anon_sym_BSLASHcitealp] = ACTIONS(6441), - [anon_sym_BSLASHcitetext] = ACTIONS(6441), - [anon_sym_BSLASHparencite] = ACTIONS(6441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHParencite] = ACTIONS(6441), - [anon_sym_BSLASHfootcite] = ACTIONS(6441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6441), - [anon_sym_BSLASHtextcite] = ACTIONS(6441), - [anon_sym_BSLASHTextcite] = ACTIONS(6441), - [anon_sym_BSLASHsmartcite] = ACTIONS(6441), - [anon_sym_BSLASHSmartcite] = ACTIONS(6441), - [anon_sym_BSLASHsupercite] = ACTIONS(6441), - [anon_sym_BSLASHautocite] = ACTIONS(6441), - [anon_sym_BSLASHAutocite] = ACTIONS(6441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6443), - [anon_sym_BSLASHvolcite] = ACTIONS(6441), - [anon_sym_BSLASHVolcite] = ACTIONS(6441), - [anon_sym_BSLASHpvolcite] = ACTIONS(6441), - [anon_sym_BSLASHPvolcite] = ACTIONS(6441), - [anon_sym_BSLASHfvolcite] = ACTIONS(6441), - [anon_sym_BSLASHftvolcite] = ACTIONS(6441), - [anon_sym_BSLASHsvolcite] = ACTIONS(6441), - [anon_sym_BSLASHSvolcite] = ACTIONS(6441), - [anon_sym_BSLASHtvolcite] = ACTIONS(6441), - [anon_sym_BSLASHTvolcite] = ACTIONS(6441), - [anon_sym_BSLASHavolcite] = ACTIONS(6441), - [anon_sym_BSLASHAvolcite] = ACTIONS(6441), - [anon_sym_BSLASHnotecite] = ACTIONS(6441), - [anon_sym_BSLASHNotecite] = ACTIONS(6441), - [anon_sym_BSLASHpnotecite] = ACTIONS(6441), - [anon_sym_BSLASHPnotecite] = ACTIONS(6441), - [anon_sym_BSLASHfnotecite] = ACTIONS(6441), - [anon_sym_BSLASHlabel] = ACTIONS(6441), - [anon_sym_BSLASHref] = ACTIONS(6441), - [anon_sym_BSLASHeqref] = ACTIONS(6441), - [anon_sym_BSLASHvref] = ACTIONS(6441), - [anon_sym_BSLASHVref] = ACTIONS(6441), - [anon_sym_BSLASHautoref] = ACTIONS(6441), - [anon_sym_BSLASHpageref] = ACTIONS(6441), - [anon_sym_BSLASHcref] = ACTIONS(6441), - [anon_sym_BSLASHCref] = ACTIONS(6441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnameCref] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6441), - [anon_sym_BSLASHlabelcref] = ACTIONS(6441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange] = ACTIONS(6441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHCrefrange] = ACTIONS(6441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6443), - [anon_sym_BSLASHnewlabel] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand] = ACTIONS(6441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6443), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6441), - [anon_sym_BSLASHdef] = ACTIONS(6441), - [anon_sym_BSLASHlet] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6441), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6441), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6441), - [anon_sym_BSLASHgls] = ACTIONS(6441), - [anon_sym_BSLASHGls] = ACTIONS(6441), - [anon_sym_BSLASHGLS] = ACTIONS(6441), - [anon_sym_BSLASHglspl] = ACTIONS(6441), - [anon_sym_BSLASHGlspl] = ACTIONS(6441), - [anon_sym_BSLASHGLSpl] = ACTIONS(6441), - [anon_sym_BSLASHglsdisp] = ACTIONS(6441), - [anon_sym_BSLASHglslink] = ACTIONS(6441), - [anon_sym_BSLASHglstext] = ACTIONS(6441), - [anon_sym_BSLASHGlstext] = ACTIONS(6441), - [anon_sym_BSLASHGLStext] = ACTIONS(6441), - [anon_sym_BSLASHglsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6441), - [anon_sym_BSLASHglsplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSplural] = ACTIONS(6441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6441), - [anon_sym_BSLASHglsname] = ACTIONS(6441), - [anon_sym_BSLASHGlsname] = ACTIONS(6441), - [anon_sym_BSLASHGLSname] = ACTIONS(6441), - [anon_sym_BSLASHglssymbol] = ACTIONS(6441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6441), - [anon_sym_BSLASHglsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6441), - [anon_sym_BSLASHglsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6441), - [anon_sym_BSLASHglsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6441), - [anon_sym_BSLASHglsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6441), - [anon_sym_BSLASHglsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6441), - [anon_sym_BSLASHnewacronym] = ACTIONS(6441), - [anon_sym_BSLASHacrshort] = ACTIONS(6441), - [anon_sym_BSLASHAcrshort] = ACTIONS(6441), - [anon_sym_BSLASHACRshort] = ACTIONS(6441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6441), - [anon_sym_BSLASHacrlong] = ACTIONS(6441), - [anon_sym_BSLASHAcrlong] = ACTIONS(6441), - [anon_sym_BSLASHACRlong] = ACTIONS(6441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6441), - [anon_sym_BSLASHacrfull] = ACTIONS(6441), - [anon_sym_BSLASHAcrfull] = ACTIONS(6441), - [anon_sym_BSLASHACRfull] = ACTIONS(6441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6441), - [anon_sym_BSLASHacs] = ACTIONS(6441), - [anon_sym_BSLASHAcs] = ACTIONS(6441), - [anon_sym_BSLASHacsp] = ACTIONS(6441), - [anon_sym_BSLASHAcsp] = ACTIONS(6441), - [anon_sym_BSLASHacl] = ACTIONS(6441), - [anon_sym_BSLASHAcl] = ACTIONS(6441), - [anon_sym_BSLASHaclp] = ACTIONS(6441), - [anon_sym_BSLASHAclp] = ACTIONS(6441), - [anon_sym_BSLASHacf] = ACTIONS(6441), - [anon_sym_BSLASHAcf] = ACTIONS(6441), - [anon_sym_BSLASHacfp] = ACTIONS(6441), - [anon_sym_BSLASHAcfp] = ACTIONS(6441), - [anon_sym_BSLASHac] = ACTIONS(6441), - [anon_sym_BSLASHAc] = ACTIONS(6441), - [anon_sym_BSLASHacp] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6441), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6441), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6443), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6441), - [anon_sym_BSLASHcolor] = ACTIONS(6441), - [anon_sym_BSLASHcolorbox] = ACTIONS(6441), - [anon_sym_BSLASHtextcolor] = ACTIONS(6441), - [anon_sym_BSLASHpagecolor] = ACTIONS(6441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6441), - }, - [1954] = { - [sym_command_name] = ACTIONS(6437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6437), - [anon_sym_RBRACK] = ACTIONS(6439), - [anon_sym_COMMA] = ACTIONS(6439), - [anon_sym_EQ] = ACTIONS(6439), - [anon_sym_RBRACE] = ACTIONS(6439), - [sym_word] = ACTIONS(6437), - [sym_placeholder] = ACTIONS(6439), - [anon_sym_PLUS] = ACTIONS(6439), - [anon_sym_DASH] = ACTIONS(6439), - [anon_sym_STAR] = ACTIONS(6439), - [anon_sym_SLASH] = ACTIONS(6439), - [anon_sym_LT] = ACTIONS(6437), - [anon_sym_GT] = ACTIONS(6437), - [anon_sym_BANG] = ACTIONS(6437), - [anon_sym_PIPE] = ACTIONS(6437), - [anon_sym_COLON] = ACTIONS(6437), - [anon_sym_SQUOTE] = ACTIONS(6437), - [anon_sym__] = ACTIONS(6439), - [anon_sym_CARET] = ACTIONS(6439), - [anon_sym_BSLASHtitle] = ACTIONS(6437), - [anon_sym_BSLASHauthor] = ACTIONS(6437), - [anon_sym_BSLASHusepackage] = ACTIONS(6437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6437), - [anon_sym_BSLASHinclude] = ACTIONS(6437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6437), - [anon_sym_BSLASHinput] = ACTIONS(6437), - [anon_sym_BSLASHsubfile] = ACTIONS(6437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6437), - [anon_sym_BSLASHbibliography] = ACTIONS(6437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6437), - [anon_sym_BSLASHincludesvg] = ACTIONS(6437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6437), - [anon_sym_BSLASHimport] = ACTIONS(6437), - [anon_sym_BSLASHsubimport] = ACTIONS(6437), - [anon_sym_BSLASHinputfrom] = ACTIONS(6437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6437), - [anon_sym_BSLASHincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6437), - [anon_sym_BSLASHcaption] = ACTIONS(6437), - [anon_sym_BSLASHcite] = ACTIONS(6437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCite] = ACTIONS(6437), - [anon_sym_BSLASHnocite] = ACTIONS(6437), - [anon_sym_BSLASHcitet] = ACTIONS(6437), - [anon_sym_BSLASHcitep] = ACTIONS(6437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteauthor] = ACTIONS(6437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitetitle] = ACTIONS(6437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteyear] = ACTIONS(6437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6439), - [anon_sym_BSLASHcitedate] = ACTIONS(6437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6439), - [anon_sym_BSLASHciteurl] = ACTIONS(6437), - [anon_sym_BSLASHfullcite] = ACTIONS(6437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6437), - [anon_sym_BSLASHcitealt] = ACTIONS(6437), - [anon_sym_BSLASHcitealp] = ACTIONS(6437), - [anon_sym_BSLASHcitetext] = ACTIONS(6437), - [anon_sym_BSLASHparencite] = ACTIONS(6437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHParencite] = ACTIONS(6437), - [anon_sym_BSLASHfootcite] = ACTIONS(6437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6437), - [anon_sym_BSLASHtextcite] = ACTIONS(6437), - [anon_sym_BSLASHTextcite] = ACTIONS(6437), - [anon_sym_BSLASHsmartcite] = ACTIONS(6437), - [anon_sym_BSLASHSmartcite] = ACTIONS(6437), - [anon_sym_BSLASHsupercite] = ACTIONS(6437), - [anon_sym_BSLASHautocite] = ACTIONS(6437), - [anon_sym_BSLASHAutocite] = ACTIONS(6437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6439), - [anon_sym_BSLASHvolcite] = ACTIONS(6437), - [anon_sym_BSLASHVolcite] = ACTIONS(6437), - [anon_sym_BSLASHpvolcite] = ACTIONS(6437), - [anon_sym_BSLASHPvolcite] = ACTIONS(6437), - [anon_sym_BSLASHfvolcite] = ACTIONS(6437), - [anon_sym_BSLASHftvolcite] = ACTIONS(6437), - [anon_sym_BSLASHsvolcite] = ACTIONS(6437), - [anon_sym_BSLASHSvolcite] = ACTIONS(6437), - [anon_sym_BSLASHtvolcite] = ACTIONS(6437), - [anon_sym_BSLASHTvolcite] = ACTIONS(6437), - [anon_sym_BSLASHavolcite] = ACTIONS(6437), - [anon_sym_BSLASHAvolcite] = ACTIONS(6437), - [anon_sym_BSLASHnotecite] = ACTIONS(6437), - [anon_sym_BSLASHNotecite] = ACTIONS(6437), - [anon_sym_BSLASHpnotecite] = ACTIONS(6437), - [anon_sym_BSLASHPnotecite] = ACTIONS(6437), - [anon_sym_BSLASHfnotecite] = ACTIONS(6437), - [anon_sym_BSLASHlabel] = ACTIONS(6437), - [anon_sym_BSLASHref] = ACTIONS(6437), - [anon_sym_BSLASHeqref] = ACTIONS(6437), - [anon_sym_BSLASHvref] = ACTIONS(6437), - [anon_sym_BSLASHVref] = ACTIONS(6437), - [anon_sym_BSLASHautoref] = ACTIONS(6437), - [anon_sym_BSLASHpageref] = ACTIONS(6437), - [anon_sym_BSLASHcref] = ACTIONS(6437), - [anon_sym_BSLASHCref] = ACTIONS(6437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnameCref] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6437), - [anon_sym_BSLASHlabelcref] = ACTIONS(6437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange] = ACTIONS(6437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHCrefrange] = ACTIONS(6437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6439), - [anon_sym_BSLASHnewlabel] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand] = ACTIONS(6437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6439), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6437), - [anon_sym_BSLASHdef] = ACTIONS(6437), - [anon_sym_BSLASHlet] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6437), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6437), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6437), - [anon_sym_BSLASHgls] = ACTIONS(6437), - [anon_sym_BSLASHGls] = ACTIONS(6437), - [anon_sym_BSLASHGLS] = ACTIONS(6437), - [anon_sym_BSLASHglspl] = ACTIONS(6437), - [anon_sym_BSLASHGlspl] = ACTIONS(6437), - [anon_sym_BSLASHGLSpl] = ACTIONS(6437), - [anon_sym_BSLASHglsdisp] = ACTIONS(6437), - [anon_sym_BSLASHglslink] = ACTIONS(6437), - [anon_sym_BSLASHglstext] = ACTIONS(6437), - [anon_sym_BSLASHGlstext] = ACTIONS(6437), - [anon_sym_BSLASHGLStext] = ACTIONS(6437), - [anon_sym_BSLASHglsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6437), - [anon_sym_BSLASHglsplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSplural] = ACTIONS(6437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6437), - [anon_sym_BSLASHglsname] = ACTIONS(6437), - [anon_sym_BSLASHGlsname] = ACTIONS(6437), - [anon_sym_BSLASHGLSname] = ACTIONS(6437), - [anon_sym_BSLASHglssymbol] = ACTIONS(6437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6437), - [anon_sym_BSLASHglsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6437), - [anon_sym_BSLASHglsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6437), - [anon_sym_BSLASHglsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6437), - [anon_sym_BSLASHglsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6437), - [anon_sym_BSLASHglsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6437), - [anon_sym_BSLASHnewacronym] = ACTIONS(6437), - [anon_sym_BSLASHacrshort] = ACTIONS(6437), - [anon_sym_BSLASHAcrshort] = ACTIONS(6437), - [anon_sym_BSLASHACRshort] = ACTIONS(6437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6437), - [anon_sym_BSLASHacrlong] = ACTIONS(6437), - [anon_sym_BSLASHAcrlong] = ACTIONS(6437), - [anon_sym_BSLASHACRlong] = ACTIONS(6437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6437), - [anon_sym_BSLASHacrfull] = ACTIONS(6437), - [anon_sym_BSLASHAcrfull] = ACTIONS(6437), - [anon_sym_BSLASHACRfull] = ACTIONS(6437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6437), - [anon_sym_BSLASHacs] = ACTIONS(6437), - [anon_sym_BSLASHAcs] = ACTIONS(6437), - [anon_sym_BSLASHacsp] = ACTIONS(6437), - [anon_sym_BSLASHAcsp] = ACTIONS(6437), - [anon_sym_BSLASHacl] = ACTIONS(6437), - [anon_sym_BSLASHAcl] = ACTIONS(6437), - [anon_sym_BSLASHaclp] = ACTIONS(6437), - [anon_sym_BSLASHAclp] = ACTIONS(6437), - [anon_sym_BSLASHacf] = ACTIONS(6437), - [anon_sym_BSLASHAcf] = ACTIONS(6437), - [anon_sym_BSLASHacfp] = ACTIONS(6437), - [anon_sym_BSLASHAcfp] = ACTIONS(6437), - [anon_sym_BSLASHac] = ACTIONS(6437), - [anon_sym_BSLASHAc] = ACTIONS(6437), - [anon_sym_BSLASHacp] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6437), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6437), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6439), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6437), - [anon_sym_BSLASHcolor] = ACTIONS(6437), - [anon_sym_BSLASHcolorbox] = ACTIONS(6437), - [anon_sym_BSLASHtextcolor] = ACTIONS(6437), - [anon_sym_BSLASHpagecolor] = ACTIONS(6437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6437), - }, - [1955] = { - [sym_command_name] = ACTIONS(6433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6433), - [anon_sym_RBRACK] = ACTIONS(6435), - [anon_sym_COMMA] = ACTIONS(6435), - [anon_sym_EQ] = ACTIONS(6435), - [anon_sym_RBRACE] = ACTIONS(6435), - [sym_word] = ACTIONS(6433), - [sym_placeholder] = ACTIONS(6435), - [anon_sym_PLUS] = ACTIONS(6435), - [anon_sym_DASH] = ACTIONS(6435), - [anon_sym_STAR] = ACTIONS(6435), - [anon_sym_SLASH] = ACTIONS(6435), - [anon_sym_LT] = ACTIONS(6433), - [anon_sym_GT] = ACTIONS(6433), - [anon_sym_BANG] = ACTIONS(6433), - [anon_sym_PIPE] = ACTIONS(6433), - [anon_sym_COLON] = ACTIONS(6433), - [anon_sym_SQUOTE] = ACTIONS(6433), - [anon_sym__] = ACTIONS(6435), - [anon_sym_CARET] = ACTIONS(6435), - [anon_sym_BSLASHtitle] = ACTIONS(6433), - [anon_sym_BSLASHauthor] = ACTIONS(6433), - [anon_sym_BSLASHusepackage] = ACTIONS(6433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6433), - [anon_sym_BSLASHinclude] = ACTIONS(6433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6433), - [anon_sym_BSLASHinput] = ACTIONS(6433), - [anon_sym_BSLASHsubfile] = ACTIONS(6433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6433), - [anon_sym_BSLASHbibliography] = ACTIONS(6433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6433), - [anon_sym_BSLASHincludesvg] = ACTIONS(6433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6433), - [anon_sym_BSLASHimport] = ACTIONS(6433), - [anon_sym_BSLASHsubimport] = ACTIONS(6433), - [anon_sym_BSLASHinputfrom] = ACTIONS(6433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6433), - [anon_sym_BSLASHincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6433), - [anon_sym_BSLASHcaption] = ACTIONS(6433), - [anon_sym_BSLASHcite] = ACTIONS(6433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCite] = ACTIONS(6433), - [anon_sym_BSLASHnocite] = ACTIONS(6433), - [anon_sym_BSLASHcitet] = ACTIONS(6433), - [anon_sym_BSLASHcitep] = ACTIONS(6433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteauthor] = ACTIONS(6433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitetitle] = ACTIONS(6433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteyear] = ACTIONS(6433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6435), - [anon_sym_BSLASHcitedate] = ACTIONS(6433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6435), - [anon_sym_BSLASHciteurl] = ACTIONS(6433), - [anon_sym_BSLASHfullcite] = ACTIONS(6433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6433), - [anon_sym_BSLASHcitealt] = ACTIONS(6433), - [anon_sym_BSLASHcitealp] = ACTIONS(6433), - [anon_sym_BSLASHcitetext] = ACTIONS(6433), - [anon_sym_BSLASHparencite] = ACTIONS(6433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHParencite] = ACTIONS(6433), - [anon_sym_BSLASHfootcite] = ACTIONS(6433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6433), - [anon_sym_BSLASHtextcite] = ACTIONS(6433), - [anon_sym_BSLASHTextcite] = ACTIONS(6433), - [anon_sym_BSLASHsmartcite] = ACTIONS(6433), - [anon_sym_BSLASHSmartcite] = ACTIONS(6433), - [anon_sym_BSLASHsupercite] = ACTIONS(6433), - [anon_sym_BSLASHautocite] = ACTIONS(6433), - [anon_sym_BSLASHAutocite] = ACTIONS(6433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6435), - [anon_sym_BSLASHvolcite] = ACTIONS(6433), - [anon_sym_BSLASHVolcite] = ACTIONS(6433), - [anon_sym_BSLASHpvolcite] = ACTIONS(6433), - [anon_sym_BSLASHPvolcite] = ACTIONS(6433), - [anon_sym_BSLASHfvolcite] = ACTIONS(6433), - [anon_sym_BSLASHftvolcite] = ACTIONS(6433), - [anon_sym_BSLASHsvolcite] = ACTIONS(6433), - [anon_sym_BSLASHSvolcite] = ACTIONS(6433), - [anon_sym_BSLASHtvolcite] = ACTIONS(6433), - [anon_sym_BSLASHTvolcite] = ACTIONS(6433), - [anon_sym_BSLASHavolcite] = ACTIONS(6433), - [anon_sym_BSLASHAvolcite] = ACTIONS(6433), - [anon_sym_BSLASHnotecite] = ACTIONS(6433), - [anon_sym_BSLASHNotecite] = ACTIONS(6433), - [anon_sym_BSLASHpnotecite] = ACTIONS(6433), - [anon_sym_BSLASHPnotecite] = ACTIONS(6433), - [anon_sym_BSLASHfnotecite] = ACTIONS(6433), - [anon_sym_BSLASHlabel] = ACTIONS(6433), - [anon_sym_BSLASHref] = ACTIONS(6433), - [anon_sym_BSLASHeqref] = ACTIONS(6433), - [anon_sym_BSLASHvref] = ACTIONS(6433), - [anon_sym_BSLASHVref] = ACTIONS(6433), - [anon_sym_BSLASHautoref] = ACTIONS(6433), - [anon_sym_BSLASHpageref] = ACTIONS(6433), - [anon_sym_BSLASHcref] = ACTIONS(6433), - [anon_sym_BSLASHCref] = ACTIONS(6433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnameCref] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6433), - [anon_sym_BSLASHlabelcref] = ACTIONS(6433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange] = ACTIONS(6433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHCrefrange] = ACTIONS(6433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6435), - [anon_sym_BSLASHnewlabel] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand] = ACTIONS(6433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6435), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6433), - [anon_sym_BSLASHdef] = ACTIONS(6433), - [anon_sym_BSLASHlet] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6433), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6433), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6433), - [anon_sym_BSLASHgls] = ACTIONS(6433), - [anon_sym_BSLASHGls] = ACTIONS(6433), - [anon_sym_BSLASHGLS] = ACTIONS(6433), - [anon_sym_BSLASHglspl] = ACTIONS(6433), - [anon_sym_BSLASHGlspl] = ACTIONS(6433), - [anon_sym_BSLASHGLSpl] = ACTIONS(6433), - [anon_sym_BSLASHglsdisp] = ACTIONS(6433), - [anon_sym_BSLASHglslink] = ACTIONS(6433), - [anon_sym_BSLASHglstext] = ACTIONS(6433), - [anon_sym_BSLASHGlstext] = ACTIONS(6433), - [anon_sym_BSLASHGLStext] = ACTIONS(6433), - [anon_sym_BSLASHglsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6433), - [anon_sym_BSLASHglsplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSplural] = ACTIONS(6433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6433), - [anon_sym_BSLASHglsname] = ACTIONS(6433), - [anon_sym_BSLASHGlsname] = ACTIONS(6433), - [anon_sym_BSLASHGLSname] = ACTIONS(6433), - [anon_sym_BSLASHglssymbol] = ACTIONS(6433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6433), - [anon_sym_BSLASHglsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6433), - [anon_sym_BSLASHglsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6433), - [anon_sym_BSLASHglsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6433), - [anon_sym_BSLASHglsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6433), - [anon_sym_BSLASHglsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6433), - [anon_sym_BSLASHnewacronym] = ACTIONS(6433), - [anon_sym_BSLASHacrshort] = ACTIONS(6433), - [anon_sym_BSLASHAcrshort] = ACTIONS(6433), - [anon_sym_BSLASHACRshort] = ACTIONS(6433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6433), - [anon_sym_BSLASHacrlong] = ACTIONS(6433), - [anon_sym_BSLASHAcrlong] = ACTIONS(6433), - [anon_sym_BSLASHACRlong] = ACTIONS(6433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6433), - [anon_sym_BSLASHacrfull] = ACTIONS(6433), - [anon_sym_BSLASHAcrfull] = ACTIONS(6433), - [anon_sym_BSLASHACRfull] = ACTIONS(6433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6433), - [anon_sym_BSLASHacs] = ACTIONS(6433), - [anon_sym_BSLASHAcs] = ACTIONS(6433), - [anon_sym_BSLASHacsp] = ACTIONS(6433), - [anon_sym_BSLASHAcsp] = ACTIONS(6433), - [anon_sym_BSLASHacl] = ACTIONS(6433), - [anon_sym_BSLASHAcl] = ACTIONS(6433), - [anon_sym_BSLASHaclp] = ACTIONS(6433), - [anon_sym_BSLASHAclp] = ACTIONS(6433), - [anon_sym_BSLASHacf] = ACTIONS(6433), - [anon_sym_BSLASHAcf] = ACTIONS(6433), - [anon_sym_BSLASHacfp] = ACTIONS(6433), - [anon_sym_BSLASHAcfp] = ACTIONS(6433), - [anon_sym_BSLASHac] = ACTIONS(6433), - [anon_sym_BSLASHAc] = ACTIONS(6433), - [anon_sym_BSLASHacp] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6433), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6433), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6435), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6433), - [anon_sym_BSLASHcolor] = ACTIONS(6433), - [anon_sym_BSLASHcolorbox] = ACTIONS(6433), - [anon_sym_BSLASHtextcolor] = ACTIONS(6433), - [anon_sym_BSLASHpagecolor] = ACTIONS(6433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6433), - }, - [1956] = { - [sym_command_name] = ACTIONS(6429), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6429), - [anon_sym_RBRACK] = ACTIONS(6431), - [anon_sym_COMMA] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(6431), - [anon_sym_RBRACE] = ACTIONS(6431), - [sym_word] = ACTIONS(6429), - [sym_placeholder] = ACTIONS(6431), - [anon_sym_PLUS] = ACTIONS(6431), - [anon_sym_DASH] = ACTIONS(6431), - [anon_sym_STAR] = ACTIONS(6431), - [anon_sym_SLASH] = ACTIONS(6431), - [anon_sym_LT] = ACTIONS(6429), - [anon_sym_GT] = ACTIONS(6429), - [anon_sym_BANG] = ACTIONS(6429), - [anon_sym_PIPE] = ACTIONS(6429), - [anon_sym_COLON] = ACTIONS(6429), - [anon_sym_SQUOTE] = ACTIONS(6429), - [anon_sym__] = ACTIONS(6431), - [anon_sym_CARET] = ACTIONS(6431), - [anon_sym_BSLASHtitle] = ACTIONS(6429), - [anon_sym_BSLASHauthor] = ACTIONS(6429), - [anon_sym_BSLASHusepackage] = ACTIONS(6429), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6429), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6429), - [anon_sym_BSLASHinclude] = ACTIONS(6429), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6429), - [anon_sym_BSLASHinput] = ACTIONS(6429), - [anon_sym_BSLASHsubfile] = ACTIONS(6429), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6429), - [anon_sym_BSLASHbibliography] = ACTIONS(6429), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6429), - [anon_sym_BSLASHincludesvg] = ACTIONS(6429), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6429), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6429), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6429), - [anon_sym_BSLASHimport] = ACTIONS(6429), - [anon_sym_BSLASHsubimport] = ACTIONS(6429), - [anon_sym_BSLASHinputfrom] = ACTIONS(6429), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6429), - [anon_sym_BSLASHincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6429), - [anon_sym_BSLASHcaption] = ACTIONS(6429), - [anon_sym_BSLASHcite] = ACTIONS(6429), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCite] = ACTIONS(6429), - [anon_sym_BSLASHnocite] = ACTIONS(6429), - [anon_sym_BSLASHcitet] = ACTIONS(6429), - [anon_sym_BSLASHcitep] = ACTIONS(6429), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteauthor] = ACTIONS(6429), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6429), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitetitle] = ACTIONS(6429), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteyear] = ACTIONS(6429), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6431), - [anon_sym_BSLASHcitedate] = ACTIONS(6429), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6431), - [anon_sym_BSLASHciteurl] = ACTIONS(6429), - [anon_sym_BSLASHfullcite] = ACTIONS(6429), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6429), - [anon_sym_BSLASHcitealt] = ACTIONS(6429), - [anon_sym_BSLASHcitealp] = ACTIONS(6429), - [anon_sym_BSLASHcitetext] = ACTIONS(6429), - [anon_sym_BSLASHparencite] = ACTIONS(6429), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHParencite] = ACTIONS(6429), - [anon_sym_BSLASHfootcite] = ACTIONS(6429), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6429), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6429), - [anon_sym_BSLASHtextcite] = ACTIONS(6429), - [anon_sym_BSLASHTextcite] = ACTIONS(6429), - [anon_sym_BSLASHsmartcite] = ACTIONS(6429), - [anon_sym_BSLASHSmartcite] = ACTIONS(6429), - [anon_sym_BSLASHsupercite] = ACTIONS(6429), - [anon_sym_BSLASHautocite] = ACTIONS(6429), - [anon_sym_BSLASHAutocite] = ACTIONS(6429), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6431), - [anon_sym_BSLASHvolcite] = ACTIONS(6429), - [anon_sym_BSLASHVolcite] = ACTIONS(6429), - [anon_sym_BSLASHpvolcite] = ACTIONS(6429), - [anon_sym_BSLASHPvolcite] = ACTIONS(6429), - [anon_sym_BSLASHfvolcite] = ACTIONS(6429), - [anon_sym_BSLASHftvolcite] = ACTIONS(6429), - [anon_sym_BSLASHsvolcite] = ACTIONS(6429), - [anon_sym_BSLASHSvolcite] = ACTIONS(6429), - [anon_sym_BSLASHtvolcite] = ACTIONS(6429), - [anon_sym_BSLASHTvolcite] = ACTIONS(6429), - [anon_sym_BSLASHavolcite] = ACTIONS(6429), - [anon_sym_BSLASHAvolcite] = ACTIONS(6429), - [anon_sym_BSLASHnotecite] = ACTIONS(6429), - [anon_sym_BSLASHNotecite] = ACTIONS(6429), - [anon_sym_BSLASHpnotecite] = ACTIONS(6429), - [anon_sym_BSLASHPnotecite] = ACTIONS(6429), - [anon_sym_BSLASHfnotecite] = ACTIONS(6429), - [anon_sym_BSLASHlabel] = ACTIONS(6429), - [anon_sym_BSLASHref] = ACTIONS(6429), - [anon_sym_BSLASHeqref] = ACTIONS(6429), - [anon_sym_BSLASHvref] = ACTIONS(6429), - [anon_sym_BSLASHVref] = ACTIONS(6429), - [anon_sym_BSLASHautoref] = ACTIONS(6429), - [anon_sym_BSLASHpageref] = ACTIONS(6429), - [anon_sym_BSLASHcref] = ACTIONS(6429), - [anon_sym_BSLASHCref] = ACTIONS(6429), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnameCref] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6429), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6429), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6429), - [anon_sym_BSLASHlabelcref] = ACTIONS(6429), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange] = ACTIONS(6429), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHCrefrange] = ACTIONS(6429), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6431), - [anon_sym_BSLASHnewlabel] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand] = ACTIONS(6429), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6429), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6429), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6431), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6429), - [anon_sym_BSLASHdef] = ACTIONS(6429), - [anon_sym_BSLASHlet] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6429), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6429), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6429), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6429), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6429), - [anon_sym_BSLASHgls] = ACTIONS(6429), - [anon_sym_BSLASHGls] = ACTIONS(6429), - [anon_sym_BSLASHGLS] = ACTIONS(6429), - [anon_sym_BSLASHglspl] = ACTIONS(6429), - [anon_sym_BSLASHGlspl] = ACTIONS(6429), - [anon_sym_BSLASHGLSpl] = ACTIONS(6429), - [anon_sym_BSLASHglsdisp] = ACTIONS(6429), - [anon_sym_BSLASHglslink] = ACTIONS(6429), - [anon_sym_BSLASHglstext] = ACTIONS(6429), - [anon_sym_BSLASHGlstext] = ACTIONS(6429), - [anon_sym_BSLASHGLStext] = ACTIONS(6429), - [anon_sym_BSLASHglsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6429), - [anon_sym_BSLASHglsplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSplural] = ACTIONS(6429), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6429), - [anon_sym_BSLASHglsname] = ACTIONS(6429), - [anon_sym_BSLASHGlsname] = ACTIONS(6429), - [anon_sym_BSLASHGLSname] = ACTIONS(6429), - [anon_sym_BSLASHglssymbol] = ACTIONS(6429), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6429), - [anon_sym_BSLASHglsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6429), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6429), - [anon_sym_BSLASHglsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6429), - [anon_sym_BSLASHglsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6429), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6429), - [anon_sym_BSLASHglsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6429), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6429), - [anon_sym_BSLASHglsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6429), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6429), - [anon_sym_BSLASHnewacronym] = ACTIONS(6429), - [anon_sym_BSLASHacrshort] = ACTIONS(6429), - [anon_sym_BSLASHAcrshort] = ACTIONS(6429), - [anon_sym_BSLASHACRshort] = ACTIONS(6429), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6429), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6429), - [anon_sym_BSLASHacrlong] = ACTIONS(6429), - [anon_sym_BSLASHAcrlong] = ACTIONS(6429), - [anon_sym_BSLASHACRlong] = ACTIONS(6429), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6429), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6429), - [anon_sym_BSLASHacrfull] = ACTIONS(6429), - [anon_sym_BSLASHAcrfull] = ACTIONS(6429), - [anon_sym_BSLASHACRfull] = ACTIONS(6429), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6429), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6429), - [anon_sym_BSLASHacs] = ACTIONS(6429), - [anon_sym_BSLASHAcs] = ACTIONS(6429), - [anon_sym_BSLASHacsp] = ACTIONS(6429), - [anon_sym_BSLASHAcsp] = ACTIONS(6429), - [anon_sym_BSLASHacl] = ACTIONS(6429), - [anon_sym_BSLASHAcl] = ACTIONS(6429), - [anon_sym_BSLASHaclp] = ACTIONS(6429), - [anon_sym_BSLASHAclp] = ACTIONS(6429), - [anon_sym_BSLASHacf] = ACTIONS(6429), - [anon_sym_BSLASHAcf] = ACTIONS(6429), - [anon_sym_BSLASHacfp] = ACTIONS(6429), - [anon_sym_BSLASHAcfp] = ACTIONS(6429), - [anon_sym_BSLASHac] = ACTIONS(6429), - [anon_sym_BSLASHAc] = ACTIONS(6429), - [anon_sym_BSLASHacp] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6429), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6429), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6429), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6429), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6429), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6431), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6429), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6429), - [anon_sym_BSLASHcolor] = ACTIONS(6429), - [anon_sym_BSLASHcolorbox] = ACTIONS(6429), - [anon_sym_BSLASHtextcolor] = ACTIONS(6429), - [anon_sym_BSLASHpagecolor] = ACTIONS(6429), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6429), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6429), - }, - [1957] = { - [sym_command_name] = ACTIONS(6425), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6425), - [anon_sym_RBRACK] = ACTIONS(6427), - [anon_sym_COMMA] = ACTIONS(6427), - [anon_sym_EQ] = ACTIONS(6427), - [anon_sym_RBRACE] = ACTIONS(6427), - [sym_word] = ACTIONS(6425), - [sym_placeholder] = ACTIONS(6427), - [anon_sym_PLUS] = ACTIONS(6427), - [anon_sym_DASH] = ACTIONS(6427), - [anon_sym_STAR] = ACTIONS(6427), - [anon_sym_SLASH] = ACTIONS(6427), - [anon_sym_LT] = ACTIONS(6425), - [anon_sym_GT] = ACTIONS(6425), - [anon_sym_BANG] = ACTIONS(6425), - [anon_sym_PIPE] = ACTIONS(6425), - [anon_sym_COLON] = ACTIONS(6425), - [anon_sym_SQUOTE] = ACTIONS(6425), - [anon_sym__] = ACTIONS(6427), - [anon_sym_CARET] = ACTIONS(6427), - [anon_sym_BSLASHtitle] = ACTIONS(6425), - [anon_sym_BSLASHauthor] = ACTIONS(6425), - [anon_sym_BSLASHusepackage] = ACTIONS(6425), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6425), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6425), - [anon_sym_BSLASHinclude] = ACTIONS(6425), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6425), - [anon_sym_BSLASHinput] = ACTIONS(6425), - [anon_sym_BSLASHsubfile] = ACTIONS(6425), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6425), - [anon_sym_BSLASHbibliography] = ACTIONS(6425), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6425), - [anon_sym_BSLASHincludesvg] = ACTIONS(6425), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6425), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6425), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6425), - [anon_sym_BSLASHimport] = ACTIONS(6425), - [anon_sym_BSLASHsubimport] = ACTIONS(6425), - [anon_sym_BSLASHinputfrom] = ACTIONS(6425), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6425), - [anon_sym_BSLASHincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6425), - [anon_sym_BSLASHcaption] = ACTIONS(6425), - [anon_sym_BSLASHcite] = ACTIONS(6425), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCite] = ACTIONS(6425), - [anon_sym_BSLASHnocite] = ACTIONS(6425), - [anon_sym_BSLASHcitet] = ACTIONS(6425), - [anon_sym_BSLASHcitep] = ACTIONS(6425), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteauthor] = ACTIONS(6425), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6425), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitetitle] = ACTIONS(6425), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteyear] = ACTIONS(6425), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6427), - [anon_sym_BSLASHcitedate] = ACTIONS(6425), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6427), - [anon_sym_BSLASHciteurl] = ACTIONS(6425), - [anon_sym_BSLASHfullcite] = ACTIONS(6425), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6425), - [anon_sym_BSLASHcitealt] = ACTIONS(6425), - [anon_sym_BSLASHcitealp] = ACTIONS(6425), - [anon_sym_BSLASHcitetext] = ACTIONS(6425), - [anon_sym_BSLASHparencite] = ACTIONS(6425), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHParencite] = ACTIONS(6425), - [anon_sym_BSLASHfootcite] = ACTIONS(6425), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6425), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6425), - [anon_sym_BSLASHtextcite] = ACTIONS(6425), - [anon_sym_BSLASHTextcite] = ACTIONS(6425), - [anon_sym_BSLASHsmartcite] = ACTIONS(6425), - [anon_sym_BSLASHSmartcite] = ACTIONS(6425), - [anon_sym_BSLASHsupercite] = ACTIONS(6425), - [anon_sym_BSLASHautocite] = ACTIONS(6425), - [anon_sym_BSLASHAutocite] = ACTIONS(6425), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6427), - [anon_sym_BSLASHvolcite] = ACTIONS(6425), - [anon_sym_BSLASHVolcite] = ACTIONS(6425), - [anon_sym_BSLASHpvolcite] = ACTIONS(6425), - [anon_sym_BSLASHPvolcite] = ACTIONS(6425), - [anon_sym_BSLASHfvolcite] = ACTIONS(6425), - [anon_sym_BSLASHftvolcite] = ACTIONS(6425), - [anon_sym_BSLASHsvolcite] = ACTIONS(6425), - [anon_sym_BSLASHSvolcite] = ACTIONS(6425), - [anon_sym_BSLASHtvolcite] = ACTIONS(6425), - [anon_sym_BSLASHTvolcite] = ACTIONS(6425), - [anon_sym_BSLASHavolcite] = ACTIONS(6425), - [anon_sym_BSLASHAvolcite] = ACTIONS(6425), - [anon_sym_BSLASHnotecite] = ACTIONS(6425), - [anon_sym_BSLASHNotecite] = ACTIONS(6425), - [anon_sym_BSLASHpnotecite] = ACTIONS(6425), - [anon_sym_BSLASHPnotecite] = ACTIONS(6425), - [anon_sym_BSLASHfnotecite] = ACTIONS(6425), - [anon_sym_BSLASHlabel] = ACTIONS(6425), - [anon_sym_BSLASHref] = ACTIONS(6425), - [anon_sym_BSLASHeqref] = ACTIONS(6425), - [anon_sym_BSLASHvref] = ACTIONS(6425), - [anon_sym_BSLASHVref] = ACTIONS(6425), - [anon_sym_BSLASHautoref] = ACTIONS(6425), - [anon_sym_BSLASHpageref] = ACTIONS(6425), - [anon_sym_BSLASHcref] = ACTIONS(6425), - [anon_sym_BSLASHCref] = ACTIONS(6425), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnameCref] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6425), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6425), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6425), - [anon_sym_BSLASHlabelcref] = ACTIONS(6425), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange] = ACTIONS(6425), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHCrefrange] = ACTIONS(6425), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6427), - [anon_sym_BSLASHnewlabel] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand] = ACTIONS(6425), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6425), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6427), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6425), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6427), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6425), - [anon_sym_BSLASHdef] = ACTIONS(6425), - [anon_sym_BSLASHlet] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6425), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6425), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6425), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6425), - [anon_sym_BSLASHgls] = ACTIONS(6425), - [anon_sym_BSLASHGls] = ACTIONS(6425), - [anon_sym_BSLASHGLS] = ACTIONS(6425), - [anon_sym_BSLASHglspl] = ACTIONS(6425), - [anon_sym_BSLASHGlspl] = ACTIONS(6425), - [anon_sym_BSLASHGLSpl] = ACTIONS(6425), - [anon_sym_BSLASHglsdisp] = ACTIONS(6425), - [anon_sym_BSLASHglslink] = ACTIONS(6425), - [anon_sym_BSLASHglstext] = ACTIONS(6425), - [anon_sym_BSLASHGlstext] = ACTIONS(6425), - [anon_sym_BSLASHGLStext] = ACTIONS(6425), - [anon_sym_BSLASHglsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6425), - [anon_sym_BSLASHglsplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSplural] = ACTIONS(6425), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6425), - [anon_sym_BSLASHglsname] = ACTIONS(6425), - [anon_sym_BSLASHGlsname] = ACTIONS(6425), - [anon_sym_BSLASHGLSname] = ACTIONS(6425), - [anon_sym_BSLASHglssymbol] = ACTIONS(6425), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6425), - [anon_sym_BSLASHglsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6425), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6425), - [anon_sym_BSLASHglsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6425), - [anon_sym_BSLASHglsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6425), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6425), - [anon_sym_BSLASHglsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6425), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6425), - [anon_sym_BSLASHglsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6425), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6425), - [anon_sym_BSLASHnewacronym] = ACTIONS(6425), - [anon_sym_BSLASHacrshort] = ACTIONS(6425), - [anon_sym_BSLASHAcrshort] = ACTIONS(6425), - [anon_sym_BSLASHACRshort] = ACTIONS(6425), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6425), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6425), - [anon_sym_BSLASHacrlong] = ACTIONS(6425), - [anon_sym_BSLASHAcrlong] = ACTIONS(6425), - [anon_sym_BSLASHACRlong] = ACTIONS(6425), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6425), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6425), - [anon_sym_BSLASHacrfull] = ACTIONS(6425), - [anon_sym_BSLASHAcrfull] = ACTIONS(6425), - [anon_sym_BSLASHACRfull] = ACTIONS(6425), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6425), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6425), - [anon_sym_BSLASHacs] = ACTIONS(6425), - [anon_sym_BSLASHAcs] = ACTIONS(6425), - [anon_sym_BSLASHacsp] = ACTIONS(6425), - [anon_sym_BSLASHAcsp] = ACTIONS(6425), - [anon_sym_BSLASHacl] = ACTIONS(6425), - [anon_sym_BSLASHAcl] = ACTIONS(6425), - [anon_sym_BSLASHaclp] = ACTIONS(6425), - [anon_sym_BSLASHAclp] = ACTIONS(6425), - [anon_sym_BSLASHacf] = ACTIONS(6425), - [anon_sym_BSLASHAcf] = ACTIONS(6425), - [anon_sym_BSLASHacfp] = ACTIONS(6425), - [anon_sym_BSLASHAcfp] = ACTIONS(6425), - [anon_sym_BSLASHac] = ACTIONS(6425), - [anon_sym_BSLASHAc] = ACTIONS(6425), - [anon_sym_BSLASHacp] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6425), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6425), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6425), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6425), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6425), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6427), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6425), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6425), - [anon_sym_BSLASHcolor] = ACTIONS(6425), - [anon_sym_BSLASHcolorbox] = ACTIONS(6425), - [anon_sym_BSLASHtextcolor] = ACTIONS(6425), - [anon_sym_BSLASHpagecolor] = ACTIONS(6425), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6425), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6425), - }, - [1958] = { - [sym_command_name] = ACTIONS(6421), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6421), - [anon_sym_RBRACK] = ACTIONS(6423), - [anon_sym_COMMA] = ACTIONS(6423), - [anon_sym_EQ] = ACTIONS(6423), - [anon_sym_RBRACE] = ACTIONS(6423), - [sym_word] = ACTIONS(6421), - [sym_placeholder] = ACTIONS(6423), - [anon_sym_PLUS] = ACTIONS(6423), - [anon_sym_DASH] = ACTIONS(6423), - [anon_sym_STAR] = ACTIONS(6423), - [anon_sym_SLASH] = ACTIONS(6423), - [anon_sym_LT] = ACTIONS(6421), - [anon_sym_GT] = ACTIONS(6421), - [anon_sym_BANG] = ACTIONS(6421), - [anon_sym_PIPE] = ACTIONS(6421), - [anon_sym_COLON] = ACTIONS(6421), - [anon_sym_SQUOTE] = ACTIONS(6421), - [anon_sym__] = ACTIONS(6423), - [anon_sym_CARET] = ACTIONS(6423), - [anon_sym_BSLASHtitle] = ACTIONS(6421), - [anon_sym_BSLASHauthor] = ACTIONS(6421), - [anon_sym_BSLASHusepackage] = ACTIONS(6421), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6421), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6421), - [anon_sym_BSLASHinclude] = ACTIONS(6421), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6421), - [anon_sym_BSLASHinput] = ACTIONS(6421), - [anon_sym_BSLASHsubfile] = ACTIONS(6421), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6421), - [anon_sym_BSLASHbibliography] = ACTIONS(6421), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6421), - [anon_sym_BSLASHincludesvg] = ACTIONS(6421), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6421), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6421), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6421), - [anon_sym_BSLASHimport] = ACTIONS(6421), - [anon_sym_BSLASHsubimport] = ACTIONS(6421), - [anon_sym_BSLASHinputfrom] = ACTIONS(6421), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6421), - [anon_sym_BSLASHincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6421), - [anon_sym_BSLASHcaption] = ACTIONS(6421), - [anon_sym_BSLASHcite] = ACTIONS(6421), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCite] = ACTIONS(6421), - [anon_sym_BSLASHnocite] = ACTIONS(6421), - [anon_sym_BSLASHcitet] = ACTIONS(6421), - [anon_sym_BSLASHcitep] = ACTIONS(6421), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteauthor] = ACTIONS(6421), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6421), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitetitle] = ACTIONS(6421), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteyear] = ACTIONS(6421), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6423), - [anon_sym_BSLASHcitedate] = ACTIONS(6421), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6423), - [anon_sym_BSLASHciteurl] = ACTIONS(6421), - [anon_sym_BSLASHfullcite] = ACTIONS(6421), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6421), - [anon_sym_BSLASHcitealt] = ACTIONS(6421), - [anon_sym_BSLASHcitealp] = ACTIONS(6421), - [anon_sym_BSLASHcitetext] = ACTIONS(6421), - [anon_sym_BSLASHparencite] = ACTIONS(6421), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHParencite] = ACTIONS(6421), - [anon_sym_BSLASHfootcite] = ACTIONS(6421), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6421), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6421), - [anon_sym_BSLASHtextcite] = ACTIONS(6421), - [anon_sym_BSLASHTextcite] = ACTIONS(6421), - [anon_sym_BSLASHsmartcite] = ACTIONS(6421), - [anon_sym_BSLASHSmartcite] = ACTIONS(6421), - [anon_sym_BSLASHsupercite] = ACTIONS(6421), - [anon_sym_BSLASHautocite] = ACTIONS(6421), - [anon_sym_BSLASHAutocite] = ACTIONS(6421), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6423), - [anon_sym_BSLASHvolcite] = ACTIONS(6421), - [anon_sym_BSLASHVolcite] = ACTIONS(6421), - [anon_sym_BSLASHpvolcite] = ACTIONS(6421), - [anon_sym_BSLASHPvolcite] = ACTIONS(6421), - [anon_sym_BSLASHfvolcite] = ACTIONS(6421), - [anon_sym_BSLASHftvolcite] = ACTIONS(6421), - [anon_sym_BSLASHsvolcite] = ACTIONS(6421), - [anon_sym_BSLASHSvolcite] = ACTIONS(6421), - [anon_sym_BSLASHtvolcite] = ACTIONS(6421), - [anon_sym_BSLASHTvolcite] = ACTIONS(6421), - [anon_sym_BSLASHavolcite] = ACTIONS(6421), - [anon_sym_BSLASHAvolcite] = ACTIONS(6421), - [anon_sym_BSLASHnotecite] = ACTIONS(6421), - [anon_sym_BSLASHNotecite] = ACTIONS(6421), - [anon_sym_BSLASHpnotecite] = ACTIONS(6421), - [anon_sym_BSLASHPnotecite] = ACTIONS(6421), - [anon_sym_BSLASHfnotecite] = ACTIONS(6421), - [anon_sym_BSLASHlabel] = ACTIONS(6421), - [anon_sym_BSLASHref] = ACTIONS(6421), - [anon_sym_BSLASHeqref] = ACTIONS(6421), - [anon_sym_BSLASHvref] = ACTIONS(6421), - [anon_sym_BSLASHVref] = ACTIONS(6421), - [anon_sym_BSLASHautoref] = ACTIONS(6421), - [anon_sym_BSLASHpageref] = ACTIONS(6421), - [anon_sym_BSLASHcref] = ACTIONS(6421), - [anon_sym_BSLASHCref] = ACTIONS(6421), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnameCref] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6421), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6421), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6421), - [anon_sym_BSLASHlabelcref] = ACTIONS(6421), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange] = ACTIONS(6421), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHCrefrange] = ACTIONS(6421), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6423), - [anon_sym_BSLASHnewlabel] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand] = ACTIONS(6421), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6421), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6423), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6421), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6423), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6421), - [anon_sym_BSLASHdef] = ACTIONS(6421), - [anon_sym_BSLASHlet] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6421), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6421), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6421), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6421), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6421), - [anon_sym_BSLASHgls] = ACTIONS(6421), - [anon_sym_BSLASHGls] = ACTIONS(6421), - [anon_sym_BSLASHGLS] = ACTIONS(6421), - [anon_sym_BSLASHglspl] = ACTIONS(6421), - [anon_sym_BSLASHGlspl] = ACTIONS(6421), - [anon_sym_BSLASHGLSpl] = ACTIONS(6421), - [anon_sym_BSLASHglsdisp] = ACTIONS(6421), - [anon_sym_BSLASHglslink] = ACTIONS(6421), - [anon_sym_BSLASHglstext] = ACTIONS(6421), - [anon_sym_BSLASHGlstext] = ACTIONS(6421), - [anon_sym_BSLASHGLStext] = ACTIONS(6421), - [anon_sym_BSLASHglsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6421), - [anon_sym_BSLASHglsplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSplural] = ACTIONS(6421), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6421), - [anon_sym_BSLASHglsname] = ACTIONS(6421), - [anon_sym_BSLASHGlsname] = ACTIONS(6421), - [anon_sym_BSLASHGLSname] = ACTIONS(6421), - [anon_sym_BSLASHglssymbol] = ACTIONS(6421), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6421), - [anon_sym_BSLASHglsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6421), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6421), - [anon_sym_BSLASHglsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6421), - [anon_sym_BSLASHglsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6421), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6421), - [anon_sym_BSLASHglsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6421), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6421), - [anon_sym_BSLASHglsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6421), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6421), - [anon_sym_BSLASHnewacronym] = ACTIONS(6421), - [anon_sym_BSLASHacrshort] = ACTIONS(6421), - [anon_sym_BSLASHAcrshort] = ACTIONS(6421), - [anon_sym_BSLASHACRshort] = ACTIONS(6421), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6421), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6421), - [anon_sym_BSLASHacrlong] = ACTIONS(6421), - [anon_sym_BSLASHAcrlong] = ACTIONS(6421), - [anon_sym_BSLASHACRlong] = ACTIONS(6421), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6421), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6421), - [anon_sym_BSLASHacrfull] = ACTIONS(6421), - [anon_sym_BSLASHAcrfull] = ACTIONS(6421), - [anon_sym_BSLASHACRfull] = ACTIONS(6421), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6421), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6421), - [anon_sym_BSLASHacs] = ACTIONS(6421), - [anon_sym_BSLASHAcs] = ACTIONS(6421), - [anon_sym_BSLASHacsp] = ACTIONS(6421), - [anon_sym_BSLASHAcsp] = ACTIONS(6421), - [anon_sym_BSLASHacl] = ACTIONS(6421), - [anon_sym_BSLASHAcl] = ACTIONS(6421), - [anon_sym_BSLASHaclp] = ACTIONS(6421), - [anon_sym_BSLASHAclp] = ACTIONS(6421), - [anon_sym_BSLASHacf] = ACTIONS(6421), - [anon_sym_BSLASHAcf] = ACTIONS(6421), - [anon_sym_BSLASHacfp] = ACTIONS(6421), - [anon_sym_BSLASHAcfp] = ACTIONS(6421), - [anon_sym_BSLASHac] = ACTIONS(6421), - [anon_sym_BSLASHAc] = ACTIONS(6421), - [anon_sym_BSLASHacp] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6421), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6421), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6421), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6421), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6421), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6421), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6421), - [anon_sym_BSLASHcolor] = ACTIONS(6421), - [anon_sym_BSLASHcolorbox] = ACTIONS(6421), - [anon_sym_BSLASHtextcolor] = ACTIONS(6421), - [anon_sym_BSLASHpagecolor] = ACTIONS(6421), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6421), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6421), - }, - [1959] = { - [sym_command_name] = ACTIONS(6417), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6417), - [anon_sym_RBRACK] = ACTIONS(6419), - [anon_sym_COMMA] = ACTIONS(6419), - [anon_sym_EQ] = ACTIONS(6419), - [anon_sym_RBRACE] = ACTIONS(6419), - [sym_word] = ACTIONS(6417), - [sym_placeholder] = ACTIONS(6419), - [anon_sym_PLUS] = ACTIONS(6419), - [anon_sym_DASH] = ACTIONS(6419), - [anon_sym_STAR] = ACTIONS(6419), - [anon_sym_SLASH] = ACTIONS(6419), - [anon_sym_LT] = ACTIONS(6417), - [anon_sym_GT] = ACTIONS(6417), - [anon_sym_BANG] = ACTIONS(6417), - [anon_sym_PIPE] = ACTIONS(6417), - [anon_sym_COLON] = ACTIONS(6417), - [anon_sym_SQUOTE] = ACTIONS(6417), - [anon_sym__] = ACTIONS(6419), - [anon_sym_CARET] = ACTIONS(6419), - [anon_sym_BSLASHtitle] = ACTIONS(6417), - [anon_sym_BSLASHauthor] = ACTIONS(6417), - [anon_sym_BSLASHusepackage] = ACTIONS(6417), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6417), - [anon_sym_BSLASHinclude] = ACTIONS(6417), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6417), - [anon_sym_BSLASHinput] = ACTIONS(6417), - [anon_sym_BSLASHsubfile] = ACTIONS(6417), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6417), - [anon_sym_BSLASHbibliography] = ACTIONS(6417), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6417), - [anon_sym_BSLASHincludesvg] = ACTIONS(6417), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6417), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6417), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6417), - [anon_sym_BSLASHimport] = ACTIONS(6417), - [anon_sym_BSLASHsubimport] = ACTIONS(6417), - [anon_sym_BSLASHinputfrom] = ACTIONS(6417), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6417), - [anon_sym_BSLASHincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6417), - [anon_sym_BSLASHcaption] = ACTIONS(6417), - [anon_sym_BSLASHcite] = ACTIONS(6417), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCite] = ACTIONS(6417), - [anon_sym_BSLASHnocite] = ACTIONS(6417), - [anon_sym_BSLASHcitet] = ACTIONS(6417), - [anon_sym_BSLASHcitep] = ACTIONS(6417), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteauthor] = ACTIONS(6417), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6417), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitetitle] = ACTIONS(6417), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteyear] = ACTIONS(6417), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6419), - [anon_sym_BSLASHcitedate] = ACTIONS(6417), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6419), - [anon_sym_BSLASHciteurl] = ACTIONS(6417), - [anon_sym_BSLASHfullcite] = ACTIONS(6417), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6417), - [anon_sym_BSLASHcitealt] = ACTIONS(6417), - [anon_sym_BSLASHcitealp] = ACTIONS(6417), - [anon_sym_BSLASHcitetext] = ACTIONS(6417), - [anon_sym_BSLASHparencite] = ACTIONS(6417), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHParencite] = ACTIONS(6417), - [anon_sym_BSLASHfootcite] = ACTIONS(6417), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6417), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6417), - [anon_sym_BSLASHtextcite] = ACTIONS(6417), - [anon_sym_BSLASHTextcite] = ACTIONS(6417), - [anon_sym_BSLASHsmartcite] = ACTIONS(6417), - [anon_sym_BSLASHSmartcite] = ACTIONS(6417), - [anon_sym_BSLASHsupercite] = ACTIONS(6417), - [anon_sym_BSLASHautocite] = ACTIONS(6417), - [anon_sym_BSLASHAutocite] = ACTIONS(6417), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6419), - [anon_sym_BSLASHvolcite] = ACTIONS(6417), - [anon_sym_BSLASHVolcite] = ACTIONS(6417), - [anon_sym_BSLASHpvolcite] = ACTIONS(6417), - [anon_sym_BSLASHPvolcite] = ACTIONS(6417), - [anon_sym_BSLASHfvolcite] = ACTIONS(6417), - [anon_sym_BSLASHftvolcite] = ACTIONS(6417), - [anon_sym_BSLASHsvolcite] = ACTIONS(6417), - [anon_sym_BSLASHSvolcite] = ACTIONS(6417), - [anon_sym_BSLASHtvolcite] = ACTIONS(6417), - [anon_sym_BSLASHTvolcite] = ACTIONS(6417), - [anon_sym_BSLASHavolcite] = ACTIONS(6417), - [anon_sym_BSLASHAvolcite] = ACTIONS(6417), - [anon_sym_BSLASHnotecite] = ACTIONS(6417), - [anon_sym_BSLASHNotecite] = ACTIONS(6417), - [anon_sym_BSLASHpnotecite] = ACTIONS(6417), - [anon_sym_BSLASHPnotecite] = ACTIONS(6417), - [anon_sym_BSLASHfnotecite] = ACTIONS(6417), - [anon_sym_BSLASHlabel] = ACTIONS(6417), - [anon_sym_BSLASHref] = ACTIONS(6417), - [anon_sym_BSLASHeqref] = ACTIONS(6417), - [anon_sym_BSLASHvref] = ACTIONS(6417), - [anon_sym_BSLASHVref] = ACTIONS(6417), - [anon_sym_BSLASHautoref] = ACTIONS(6417), - [anon_sym_BSLASHpageref] = ACTIONS(6417), - [anon_sym_BSLASHcref] = ACTIONS(6417), - [anon_sym_BSLASHCref] = ACTIONS(6417), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnameCref] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6417), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6417), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6417), - [anon_sym_BSLASHlabelcref] = ACTIONS(6417), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange] = ACTIONS(6417), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHCrefrange] = ACTIONS(6417), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6419), - [anon_sym_BSLASHnewlabel] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand] = ACTIONS(6417), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6417), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6419), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6417), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6419), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6417), - [anon_sym_BSLASHdef] = ACTIONS(6417), - [anon_sym_BSLASHlet] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6417), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6417), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6417), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6417), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6417), - [anon_sym_BSLASHgls] = ACTIONS(6417), - [anon_sym_BSLASHGls] = ACTIONS(6417), - [anon_sym_BSLASHGLS] = ACTIONS(6417), - [anon_sym_BSLASHglspl] = ACTIONS(6417), - [anon_sym_BSLASHGlspl] = ACTIONS(6417), - [anon_sym_BSLASHGLSpl] = ACTIONS(6417), - [anon_sym_BSLASHglsdisp] = ACTIONS(6417), - [anon_sym_BSLASHglslink] = ACTIONS(6417), - [anon_sym_BSLASHglstext] = ACTIONS(6417), - [anon_sym_BSLASHGlstext] = ACTIONS(6417), - [anon_sym_BSLASHGLStext] = ACTIONS(6417), - [anon_sym_BSLASHglsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6417), - [anon_sym_BSLASHglsplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSplural] = ACTIONS(6417), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6417), - [anon_sym_BSLASHglsname] = ACTIONS(6417), - [anon_sym_BSLASHGlsname] = ACTIONS(6417), - [anon_sym_BSLASHGLSname] = ACTIONS(6417), - [anon_sym_BSLASHglssymbol] = ACTIONS(6417), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6417), - [anon_sym_BSLASHglsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6417), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6417), - [anon_sym_BSLASHglsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6417), - [anon_sym_BSLASHglsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6417), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6417), - [anon_sym_BSLASHglsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6417), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6417), - [anon_sym_BSLASHglsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6417), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6417), - [anon_sym_BSLASHnewacronym] = ACTIONS(6417), - [anon_sym_BSLASHacrshort] = ACTIONS(6417), - [anon_sym_BSLASHAcrshort] = ACTIONS(6417), - [anon_sym_BSLASHACRshort] = ACTIONS(6417), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6417), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6417), - [anon_sym_BSLASHacrlong] = ACTIONS(6417), - [anon_sym_BSLASHAcrlong] = ACTIONS(6417), - [anon_sym_BSLASHACRlong] = ACTIONS(6417), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6417), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6417), - [anon_sym_BSLASHacrfull] = ACTIONS(6417), - [anon_sym_BSLASHAcrfull] = ACTIONS(6417), - [anon_sym_BSLASHACRfull] = ACTIONS(6417), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6417), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6417), - [anon_sym_BSLASHacs] = ACTIONS(6417), - [anon_sym_BSLASHAcs] = ACTIONS(6417), - [anon_sym_BSLASHacsp] = ACTIONS(6417), - [anon_sym_BSLASHAcsp] = ACTIONS(6417), - [anon_sym_BSLASHacl] = ACTIONS(6417), - [anon_sym_BSLASHAcl] = ACTIONS(6417), - [anon_sym_BSLASHaclp] = ACTIONS(6417), - [anon_sym_BSLASHAclp] = ACTIONS(6417), - [anon_sym_BSLASHacf] = ACTIONS(6417), - [anon_sym_BSLASHAcf] = ACTIONS(6417), - [anon_sym_BSLASHacfp] = ACTIONS(6417), - [anon_sym_BSLASHAcfp] = ACTIONS(6417), - [anon_sym_BSLASHac] = ACTIONS(6417), - [anon_sym_BSLASHAc] = ACTIONS(6417), - [anon_sym_BSLASHacp] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6417), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6417), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6417), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6417), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6417), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6417), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6417), - [anon_sym_BSLASHcolor] = ACTIONS(6417), - [anon_sym_BSLASHcolorbox] = ACTIONS(6417), - [anon_sym_BSLASHtextcolor] = ACTIONS(6417), - [anon_sym_BSLASHpagecolor] = ACTIONS(6417), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6417), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6417), - }, - [1960] = { - [sym_command_name] = ACTIONS(6413), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6413), - [anon_sym_RBRACK] = ACTIONS(6415), - [anon_sym_COMMA] = ACTIONS(6415), - [anon_sym_EQ] = ACTIONS(6415), - [anon_sym_RBRACE] = ACTIONS(6415), - [sym_word] = ACTIONS(6413), - [sym_placeholder] = ACTIONS(6415), - [anon_sym_PLUS] = ACTIONS(6415), - [anon_sym_DASH] = ACTIONS(6415), - [anon_sym_STAR] = ACTIONS(6415), - [anon_sym_SLASH] = ACTIONS(6415), - [anon_sym_LT] = ACTIONS(6413), - [anon_sym_GT] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(6413), - [anon_sym_PIPE] = ACTIONS(6413), - [anon_sym_COLON] = ACTIONS(6413), - [anon_sym_SQUOTE] = ACTIONS(6413), - [anon_sym__] = ACTIONS(6415), - [anon_sym_CARET] = ACTIONS(6415), - [anon_sym_BSLASHtitle] = ACTIONS(6413), - [anon_sym_BSLASHauthor] = ACTIONS(6413), - [anon_sym_BSLASHusepackage] = ACTIONS(6413), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6413), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6413), - [anon_sym_BSLASHinclude] = ACTIONS(6413), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6413), - [anon_sym_BSLASHinput] = ACTIONS(6413), - [anon_sym_BSLASHsubfile] = ACTIONS(6413), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6413), - [anon_sym_BSLASHbibliography] = ACTIONS(6413), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6413), - [anon_sym_BSLASHincludesvg] = ACTIONS(6413), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6413), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6413), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6413), - [anon_sym_BSLASHimport] = ACTIONS(6413), - [anon_sym_BSLASHsubimport] = ACTIONS(6413), - [anon_sym_BSLASHinputfrom] = ACTIONS(6413), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6413), - [anon_sym_BSLASHincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6413), - [anon_sym_BSLASHcaption] = ACTIONS(6413), - [anon_sym_BSLASHcite] = ACTIONS(6413), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCite] = ACTIONS(6413), - [anon_sym_BSLASHnocite] = ACTIONS(6413), - [anon_sym_BSLASHcitet] = ACTIONS(6413), - [anon_sym_BSLASHcitep] = ACTIONS(6413), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteauthor] = ACTIONS(6413), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6413), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitetitle] = ACTIONS(6413), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteyear] = ACTIONS(6413), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6415), - [anon_sym_BSLASHcitedate] = ACTIONS(6413), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6415), - [anon_sym_BSLASHciteurl] = ACTIONS(6413), - [anon_sym_BSLASHfullcite] = ACTIONS(6413), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6413), - [anon_sym_BSLASHcitealt] = ACTIONS(6413), - [anon_sym_BSLASHcitealp] = ACTIONS(6413), - [anon_sym_BSLASHcitetext] = ACTIONS(6413), - [anon_sym_BSLASHparencite] = ACTIONS(6413), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHParencite] = ACTIONS(6413), - [anon_sym_BSLASHfootcite] = ACTIONS(6413), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6413), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6413), - [anon_sym_BSLASHtextcite] = ACTIONS(6413), - [anon_sym_BSLASHTextcite] = ACTIONS(6413), - [anon_sym_BSLASHsmartcite] = ACTIONS(6413), - [anon_sym_BSLASHSmartcite] = ACTIONS(6413), - [anon_sym_BSLASHsupercite] = ACTIONS(6413), - [anon_sym_BSLASHautocite] = ACTIONS(6413), - [anon_sym_BSLASHAutocite] = ACTIONS(6413), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6415), - [anon_sym_BSLASHvolcite] = ACTIONS(6413), - [anon_sym_BSLASHVolcite] = ACTIONS(6413), - [anon_sym_BSLASHpvolcite] = ACTIONS(6413), - [anon_sym_BSLASHPvolcite] = ACTIONS(6413), - [anon_sym_BSLASHfvolcite] = ACTIONS(6413), - [anon_sym_BSLASHftvolcite] = ACTIONS(6413), - [anon_sym_BSLASHsvolcite] = ACTIONS(6413), - [anon_sym_BSLASHSvolcite] = ACTIONS(6413), - [anon_sym_BSLASHtvolcite] = ACTIONS(6413), - [anon_sym_BSLASHTvolcite] = ACTIONS(6413), - [anon_sym_BSLASHavolcite] = ACTIONS(6413), - [anon_sym_BSLASHAvolcite] = ACTIONS(6413), - [anon_sym_BSLASHnotecite] = ACTIONS(6413), - [anon_sym_BSLASHNotecite] = ACTIONS(6413), - [anon_sym_BSLASHpnotecite] = ACTIONS(6413), - [anon_sym_BSLASHPnotecite] = ACTIONS(6413), - [anon_sym_BSLASHfnotecite] = ACTIONS(6413), - [anon_sym_BSLASHlabel] = ACTIONS(6413), - [anon_sym_BSLASHref] = ACTIONS(6413), - [anon_sym_BSLASHeqref] = ACTIONS(6413), - [anon_sym_BSLASHvref] = ACTIONS(6413), - [anon_sym_BSLASHVref] = ACTIONS(6413), - [anon_sym_BSLASHautoref] = ACTIONS(6413), - [anon_sym_BSLASHpageref] = ACTIONS(6413), - [anon_sym_BSLASHcref] = ACTIONS(6413), - [anon_sym_BSLASHCref] = ACTIONS(6413), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnameCref] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6413), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6413), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6413), - [anon_sym_BSLASHlabelcref] = ACTIONS(6413), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange] = ACTIONS(6413), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHCrefrange] = ACTIONS(6413), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6415), - [anon_sym_BSLASHnewlabel] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand] = ACTIONS(6413), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6413), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6415), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6413), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6415), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6413), - [anon_sym_BSLASHdef] = ACTIONS(6413), - [anon_sym_BSLASHlet] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6413), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6413), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6413), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6413), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6413), - [anon_sym_BSLASHgls] = ACTIONS(6413), - [anon_sym_BSLASHGls] = ACTIONS(6413), - [anon_sym_BSLASHGLS] = ACTIONS(6413), - [anon_sym_BSLASHglspl] = ACTIONS(6413), - [anon_sym_BSLASHGlspl] = ACTIONS(6413), - [anon_sym_BSLASHGLSpl] = ACTIONS(6413), - [anon_sym_BSLASHglsdisp] = ACTIONS(6413), - [anon_sym_BSLASHglslink] = ACTIONS(6413), - [anon_sym_BSLASHglstext] = ACTIONS(6413), - [anon_sym_BSLASHGlstext] = ACTIONS(6413), - [anon_sym_BSLASHGLStext] = ACTIONS(6413), - [anon_sym_BSLASHglsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6413), - [anon_sym_BSLASHglsplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSplural] = ACTIONS(6413), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6413), - [anon_sym_BSLASHglsname] = ACTIONS(6413), - [anon_sym_BSLASHGlsname] = ACTIONS(6413), - [anon_sym_BSLASHGLSname] = ACTIONS(6413), - [anon_sym_BSLASHglssymbol] = ACTIONS(6413), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6413), - [anon_sym_BSLASHglsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6413), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6413), - [anon_sym_BSLASHglsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6413), - [anon_sym_BSLASHglsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6413), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6413), - [anon_sym_BSLASHglsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6413), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6413), - [anon_sym_BSLASHglsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6413), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6413), - [anon_sym_BSLASHnewacronym] = ACTIONS(6413), - [anon_sym_BSLASHacrshort] = ACTIONS(6413), - [anon_sym_BSLASHAcrshort] = ACTIONS(6413), - [anon_sym_BSLASHACRshort] = ACTIONS(6413), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6413), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6413), - [anon_sym_BSLASHacrlong] = ACTIONS(6413), - [anon_sym_BSLASHAcrlong] = ACTIONS(6413), - [anon_sym_BSLASHACRlong] = ACTIONS(6413), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6413), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6413), - [anon_sym_BSLASHacrfull] = ACTIONS(6413), - [anon_sym_BSLASHAcrfull] = ACTIONS(6413), - [anon_sym_BSLASHACRfull] = ACTIONS(6413), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6413), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6413), - [anon_sym_BSLASHacs] = ACTIONS(6413), - [anon_sym_BSLASHAcs] = ACTIONS(6413), - [anon_sym_BSLASHacsp] = ACTIONS(6413), - [anon_sym_BSLASHAcsp] = ACTIONS(6413), - [anon_sym_BSLASHacl] = ACTIONS(6413), - [anon_sym_BSLASHAcl] = ACTIONS(6413), - [anon_sym_BSLASHaclp] = ACTIONS(6413), - [anon_sym_BSLASHAclp] = ACTIONS(6413), - [anon_sym_BSLASHacf] = ACTIONS(6413), - [anon_sym_BSLASHAcf] = ACTIONS(6413), - [anon_sym_BSLASHacfp] = ACTIONS(6413), - [anon_sym_BSLASHAcfp] = ACTIONS(6413), - [anon_sym_BSLASHac] = ACTIONS(6413), - [anon_sym_BSLASHAc] = ACTIONS(6413), - [anon_sym_BSLASHacp] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6413), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6413), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6413), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6413), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6413), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6415), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6413), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6413), - [anon_sym_BSLASHcolor] = ACTIONS(6413), - [anon_sym_BSLASHcolorbox] = ACTIONS(6413), - [anon_sym_BSLASHtextcolor] = ACTIONS(6413), - [anon_sym_BSLASHpagecolor] = ACTIONS(6413), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6413), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6413), - }, - [1961] = { - [sym_command_name] = ACTIONS(6409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6409), - [anon_sym_RBRACK] = ACTIONS(6411), - [anon_sym_COMMA] = ACTIONS(6411), - [anon_sym_EQ] = ACTIONS(6411), - [anon_sym_RBRACE] = ACTIONS(6411), - [sym_word] = ACTIONS(6409), - [sym_placeholder] = ACTIONS(6411), - [anon_sym_PLUS] = ACTIONS(6411), - [anon_sym_DASH] = ACTIONS(6411), - [anon_sym_STAR] = ACTIONS(6411), - [anon_sym_SLASH] = ACTIONS(6411), - [anon_sym_LT] = ACTIONS(6409), - [anon_sym_GT] = ACTIONS(6409), - [anon_sym_BANG] = ACTIONS(6409), - [anon_sym_PIPE] = ACTIONS(6409), - [anon_sym_COLON] = ACTIONS(6409), - [anon_sym_SQUOTE] = ACTIONS(6409), - [anon_sym__] = ACTIONS(6411), - [anon_sym_CARET] = ACTIONS(6411), - [anon_sym_BSLASHtitle] = ACTIONS(6409), - [anon_sym_BSLASHauthor] = ACTIONS(6409), - [anon_sym_BSLASHusepackage] = ACTIONS(6409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6409), - [anon_sym_BSLASHinclude] = ACTIONS(6409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6409), - [anon_sym_BSLASHinput] = ACTIONS(6409), - [anon_sym_BSLASHsubfile] = ACTIONS(6409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6409), - [anon_sym_BSLASHbibliography] = ACTIONS(6409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6409), - [anon_sym_BSLASHincludesvg] = ACTIONS(6409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6409), - [anon_sym_BSLASHimport] = ACTIONS(6409), - [anon_sym_BSLASHsubimport] = ACTIONS(6409), - [anon_sym_BSLASHinputfrom] = ACTIONS(6409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6409), - [anon_sym_BSLASHincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6409), - [anon_sym_BSLASHcaption] = ACTIONS(6409), - [anon_sym_BSLASHcite] = ACTIONS(6409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCite] = ACTIONS(6409), - [anon_sym_BSLASHnocite] = ACTIONS(6409), - [anon_sym_BSLASHcitet] = ACTIONS(6409), - [anon_sym_BSLASHcitep] = ACTIONS(6409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteauthor] = ACTIONS(6409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitetitle] = ACTIONS(6409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteyear] = ACTIONS(6409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6411), - [anon_sym_BSLASHcitedate] = ACTIONS(6409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6411), - [anon_sym_BSLASHciteurl] = ACTIONS(6409), - [anon_sym_BSLASHfullcite] = ACTIONS(6409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6409), - [anon_sym_BSLASHcitealt] = ACTIONS(6409), - [anon_sym_BSLASHcitealp] = ACTIONS(6409), - [anon_sym_BSLASHcitetext] = ACTIONS(6409), - [anon_sym_BSLASHparencite] = ACTIONS(6409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHParencite] = ACTIONS(6409), - [anon_sym_BSLASHfootcite] = ACTIONS(6409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6409), - [anon_sym_BSLASHtextcite] = ACTIONS(6409), - [anon_sym_BSLASHTextcite] = ACTIONS(6409), - [anon_sym_BSLASHsmartcite] = ACTIONS(6409), - [anon_sym_BSLASHSmartcite] = ACTIONS(6409), - [anon_sym_BSLASHsupercite] = ACTIONS(6409), - [anon_sym_BSLASHautocite] = ACTIONS(6409), - [anon_sym_BSLASHAutocite] = ACTIONS(6409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6411), - [anon_sym_BSLASHvolcite] = ACTIONS(6409), - [anon_sym_BSLASHVolcite] = ACTIONS(6409), - [anon_sym_BSLASHpvolcite] = ACTIONS(6409), - [anon_sym_BSLASHPvolcite] = ACTIONS(6409), - [anon_sym_BSLASHfvolcite] = ACTIONS(6409), - [anon_sym_BSLASHftvolcite] = ACTIONS(6409), - [anon_sym_BSLASHsvolcite] = ACTIONS(6409), - [anon_sym_BSLASHSvolcite] = ACTIONS(6409), - [anon_sym_BSLASHtvolcite] = ACTIONS(6409), - [anon_sym_BSLASHTvolcite] = ACTIONS(6409), - [anon_sym_BSLASHavolcite] = ACTIONS(6409), - [anon_sym_BSLASHAvolcite] = ACTIONS(6409), - [anon_sym_BSLASHnotecite] = ACTIONS(6409), - [anon_sym_BSLASHNotecite] = ACTIONS(6409), - [anon_sym_BSLASHpnotecite] = ACTIONS(6409), - [anon_sym_BSLASHPnotecite] = ACTIONS(6409), - [anon_sym_BSLASHfnotecite] = ACTIONS(6409), - [anon_sym_BSLASHlabel] = ACTIONS(6409), - [anon_sym_BSLASHref] = ACTIONS(6409), - [anon_sym_BSLASHeqref] = ACTIONS(6409), - [anon_sym_BSLASHvref] = ACTIONS(6409), - [anon_sym_BSLASHVref] = ACTIONS(6409), - [anon_sym_BSLASHautoref] = ACTIONS(6409), - [anon_sym_BSLASHpageref] = ACTIONS(6409), - [anon_sym_BSLASHcref] = ACTIONS(6409), - [anon_sym_BSLASHCref] = ACTIONS(6409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnameCref] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6409), - [anon_sym_BSLASHlabelcref] = ACTIONS(6409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange] = ACTIONS(6409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHCrefrange] = ACTIONS(6409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6411), - [anon_sym_BSLASHnewlabel] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand] = ACTIONS(6409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6411), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6411), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6409), - [anon_sym_BSLASHdef] = ACTIONS(6409), - [anon_sym_BSLASHlet] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6409), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6409), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6409), - [anon_sym_BSLASHgls] = ACTIONS(6409), - [anon_sym_BSLASHGls] = ACTIONS(6409), - [anon_sym_BSLASHGLS] = ACTIONS(6409), - [anon_sym_BSLASHglspl] = ACTIONS(6409), - [anon_sym_BSLASHGlspl] = ACTIONS(6409), - [anon_sym_BSLASHGLSpl] = ACTIONS(6409), - [anon_sym_BSLASHglsdisp] = ACTIONS(6409), - [anon_sym_BSLASHglslink] = ACTIONS(6409), - [anon_sym_BSLASHglstext] = ACTIONS(6409), - [anon_sym_BSLASHGlstext] = ACTIONS(6409), - [anon_sym_BSLASHGLStext] = ACTIONS(6409), - [anon_sym_BSLASHglsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6409), - [anon_sym_BSLASHglsplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSplural] = ACTIONS(6409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6409), - [anon_sym_BSLASHglsname] = ACTIONS(6409), - [anon_sym_BSLASHGlsname] = ACTIONS(6409), - [anon_sym_BSLASHGLSname] = ACTIONS(6409), - [anon_sym_BSLASHglssymbol] = ACTIONS(6409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6409), - [anon_sym_BSLASHglsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6409), - [anon_sym_BSLASHglsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6409), - [anon_sym_BSLASHglsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6409), - [anon_sym_BSLASHglsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6409), - [anon_sym_BSLASHglsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6409), - [anon_sym_BSLASHnewacronym] = ACTIONS(6409), - [anon_sym_BSLASHacrshort] = ACTIONS(6409), - [anon_sym_BSLASHAcrshort] = ACTIONS(6409), - [anon_sym_BSLASHACRshort] = ACTIONS(6409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6409), - [anon_sym_BSLASHacrlong] = ACTIONS(6409), - [anon_sym_BSLASHAcrlong] = ACTIONS(6409), - [anon_sym_BSLASHACRlong] = ACTIONS(6409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6409), - [anon_sym_BSLASHacrfull] = ACTIONS(6409), - [anon_sym_BSLASHAcrfull] = ACTIONS(6409), - [anon_sym_BSLASHACRfull] = ACTIONS(6409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6409), - [anon_sym_BSLASHacs] = ACTIONS(6409), - [anon_sym_BSLASHAcs] = ACTIONS(6409), - [anon_sym_BSLASHacsp] = ACTIONS(6409), - [anon_sym_BSLASHAcsp] = ACTIONS(6409), - [anon_sym_BSLASHacl] = ACTIONS(6409), - [anon_sym_BSLASHAcl] = ACTIONS(6409), - [anon_sym_BSLASHaclp] = ACTIONS(6409), - [anon_sym_BSLASHAclp] = ACTIONS(6409), - [anon_sym_BSLASHacf] = ACTIONS(6409), - [anon_sym_BSLASHAcf] = ACTIONS(6409), - [anon_sym_BSLASHacfp] = ACTIONS(6409), - [anon_sym_BSLASHAcfp] = ACTIONS(6409), - [anon_sym_BSLASHac] = ACTIONS(6409), - [anon_sym_BSLASHAc] = ACTIONS(6409), - [anon_sym_BSLASHacp] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6409), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6409), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6409), - [anon_sym_BSLASHcolor] = ACTIONS(6409), - [anon_sym_BSLASHcolorbox] = ACTIONS(6409), - [anon_sym_BSLASHtextcolor] = ACTIONS(6409), - [anon_sym_BSLASHpagecolor] = ACTIONS(6409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6409), - }, - [1962] = { - [sym_command_name] = ACTIONS(6405), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6405), - [anon_sym_RBRACK] = ACTIONS(6407), - [anon_sym_COMMA] = ACTIONS(6407), - [anon_sym_EQ] = ACTIONS(6407), - [anon_sym_RBRACE] = ACTIONS(6407), - [sym_word] = ACTIONS(6405), - [sym_placeholder] = ACTIONS(6407), - [anon_sym_PLUS] = ACTIONS(6407), - [anon_sym_DASH] = ACTIONS(6407), - [anon_sym_STAR] = ACTIONS(6407), - [anon_sym_SLASH] = ACTIONS(6407), - [anon_sym_LT] = ACTIONS(6405), - [anon_sym_GT] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(6405), - [anon_sym_PIPE] = ACTIONS(6405), - [anon_sym_COLON] = ACTIONS(6405), - [anon_sym_SQUOTE] = ACTIONS(6405), - [anon_sym__] = ACTIONS(6407), - [anon_sym_CARET] = ACTIONS(6407), - [anon_sym_BSLASHtitle] = ACTIONS(6405), - [anon_sym_BSLASHauthor] = ACTIONS(6405), - [anon_sym_BSLASHusepackage] = ACTIONS(6405), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6405), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6405), - [anon_sym_BSLASHinclude] = ACTIONS(6405), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6405), - [anon_sym_BSLASHinput] = ACTIONS(6405), - [anon_sym_BSLASHsubfile] = ACTIONS(6405), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6405), - [anon_sym_BSLASHbibliography] = ACTIONS(6405), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6405), - [anon_sym_BSLASHincludesvg] = ACTIONS(6405), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6405), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6405), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6405), - [anon_sym_BSLASHimport] = ACTIONS(6405), - [anon_sym_BSLASHsubimport] = ACTIONS(6405), - [anon_sym_BSLASHinputfrom] = ACTIONS(6405), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6405), - [anon_sym_BSLASHincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6405), - [anon_sym_BSLASHcaption] = ACTIONS(6405), - [anon_sym_BSLASHcite] = ACTIONS(6405), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCite] = ACTIONS(6405), - [anon_sym_BSLASHnocite] = ACTIONS(6405), - [anon_sym_BSLASHcitet] = ACTIONS(6405), - [anon_sym_BSLASHcitep] = ACTIONS(6405), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteauthor] = ACTIONS(6405), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6405), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitetitle] = ACTIONS(6405), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteyear] = ACTIONS(6405), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6407), - [anon_sym_BSLASHcitedate] = ACTIONS(6405), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6407), - [anon_sym_BSLASHciteurl] = ACTIONS(6405), - [anon_sym_BSLASHfullcite] = ACTIONS(6405), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6405), - [anon_sym_BSLASHcitealt] = ACTIONS(6405), - [anon_sym_BSLASHcitealp] = ACTIONS(6405), - [anon_sym_BSLASHcitetext] = ACTIONS(6405), - [anon_sym_BSLASHparencite] = ACTIONS(6405), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHParencite] = ACTIONS(6405), - [anon_sym_BSLASHfootcite] = ACTIONS(6405), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6405), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6405), - [anon_sym_BSLASHtextcite] = ACTIONS(6405), - [anon_sym_BSLASHTextcite] = ACTIONS(6405), - [anon_sym_BSLASHsmartcite] = ACTIONS(6405), - [anon_sym_BSLASHSmartcite] = ACTIONS(6405), - [anon_sym_BSLASHsupercite] = ACTIONS(6405), - [anon_sym_BSLASHautocite] = ACTIONS(6405), - [anon_sym_BSLASHAutocite] = ACTIONS(6405), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6407), - [anon_sym_BSLASHvolcite] = ACTIONS(6405), - [anon_sym_BSLASHVolcite] = ACTIONS(6405), - [anon_sym_BSLASHpvolcite] = ACTIONS(6405), - [anon_sym_BSLASHPvolcite] = ACTIONS(6405), - [anon_sym_BSLASHfvolcite] = ACTIONS(6405), - [anon_sym_BSLASHftvolcite] = ACTIONS(6405), - [anon_sym_BSLASHsvolcite] = ACTIONS(6405), - [anon_sym_BSLASHSvolcite] = ACTIONS(6405), - [anon_sym_BSLASHtvolcite] = ACTIONS(6405), - [anon_sym_BSLASHTvolcite] = ACTIONS(6405), - [anon_sym_BSLASHavolcite] = ACTIONS(6405), - [anon_sym_BSLASHAvolcite] = ACTIONS(6405), - [anon_sym_BSLASHnotecite] = ACTIONS(6405), - [anon_sym_BSLASHNotecite] = ACTIONS(6405), - [anon_sym_BSLASHpnotecite] = ACTIONS(6405), - [anon_sym_BSLASHPnotecite] = ACTIONS(6405), - [anon_sym_BSLASHfnotecite] = ACTIONS(6405), - [anon_sym_BSLASHlabel] = ACTIONS(6405), - [anon_sym_BSLASHref] = ACTIONS(6405), - [anon_sym_BSLASHeqref] = ACTIONS(6405), - [anon_sym_BSLASHvref] = ACTIONS(6405), - [anon_sym_BSLASHVref] = ACTIONS(6405), - [anon_sym_BSLASHautoref] = ACTIONS(6405), - [anon_sym_BSLASHpageref] = ACTIONS(6405), - [anon_sym_BSLASHcref] = ACTIONS(6405), - [anon_sym_BSLASHCref] = ACTIONS(6405), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnameCref] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6405), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6405), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6405), - [anon_sym_BSLASHlabelcref] = ACTIONS(6405), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange] = ACTIONS(6405), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHCrefrange] = ACTIONS(6405), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6407), - [anon_sym_BSLASHnewlabel] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand] = ACTIONS(6405), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6405), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6405), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6407), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6405), - [anon_sym_BSLASHdef] = ACTIONS(6405), - [anon_sym_BSLASHlet] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6405), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6405), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6405), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6405), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6405), - [anon_sym_BSLASHgls] = ACTIONS(6405), - [anon_sym_BSLASHGls] = ACTIONS(6405), - [anon_sym_BSLASHGLS] = ACTIONS(6405), - [anon_sym_BSLASHglspl] = ACTIONS(6405), - [anon_sym_BSLASHGlspl] = ACTIONS(6405), - [anon_sym_BSLASHGLSpl] = ACTIONS(6405), - [anon_sym_BSLASHglsdisp] = ACTIONS(6405), - [anon_sym_BSLASHglslink] = ACTIONS(6405), - [anon_sym_BSLASHglstext] = ACTIONS(6405), - [anon_sym_BSLASHGlstext] = ACTIONS(6405), - [anon_sym_BSLASHGLStext] = ACTIONS(6405), - [anon_sym_BSLASHglsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6405), - [anon_sym_BSLASHglsplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSplural] = ACTIONS(6405), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6405), - [anon_sym_BSLASHglsname] = ACTIONS(6405), - [anon_sym_BSLASHGlsname] = ACTIONS(6405), - [anon_sym_BSLASHGLSname] = ACTIONS(6405), - [anon_sym_BSLASHglssymbol] = ACTIONS(6405), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6405), - [anon_sym_BSLASHglsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6405), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6405), - [anon_sym_BSLASHglsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6405), - [anon_sym_BSLASHglsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6405), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6405), - [anon_sym_BSLASHglsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6405), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6405), - [anon_sym_BSLASHglsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6405), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6405), - [anon_sym_BSLASHnewacronym] = ACTIONS(6405), - [anon_sym_BSLASHacrshort] = ACTIONS(6405), - [anon_sym_BSLASHAcrshort] = ACTIONS(6405), - [anon_sym_BSLASHACRshort] = ACTIONS(6405), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6405), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6405), - [anon_sym_BSLASHacrlong] = ACTIONS(6405), - [anon_sym_BSLASHAcrlong] = ACTIONS(6405), - [anon_sym_BSLASHACRlong] = ACTIONS(6405), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6405), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6405), - [anon_sym_BSLASHacrfull] = ACTIONS(6405), - [anon_sym_BSLASHAcrfull] = ACTIONS(6405), - [anon_sym_BSLASHACRfull] = ACTIONS(6405), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6405), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6405), - [anon_sym_BSLASHacs] = ACTIONS(6405), - [anon_sym_BSLASHAcs] = ACTIONS(6405), - [anon_sym_BSLASHacsp] = ACTIONS(6405), - [anon_sym_BSLASHAcsp] = ACTIONS(6405), - [anon_sym_BSLASHacl] = ACTIONS(6405), - [anon_sym_BSLASHAcl] = ACTIONS(6405), - [anon_sym_BSLASHaclp] = ACTIONS(6405), - [anon_sym_BSLASHAclp] = ACTIONS(6405), - [anon_sym_BSLASHacf] = ACTIONS(6405), - [anon_sym_BSLASHAcf] = ACTIONS(6405), - [anon_sym_BSLASHacfp] = ACTIONS(6405), - [anon_sym_BSLASHAcfp] = ACTIONS(6405), - [anon_sym_BSLASHac] = ACTIONS(6405), - [anon_sym_BSLASHAc] = ACTIONS(6405), - [anon_sym_BSLASHacp] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6405), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6405), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6405), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6405), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6405), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6405), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6405), - [anon_sym_BSLASHcolor] = ACTIONS(6405), - [anon_sym_BSLASHcolorbox] = ACTIONS(6405), - [anon_sym_BSLASHtextcolor] = ACTIONS(6405), - [anon_sym_BSLASHpagecolor] = ACTIONS(6405), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6405), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6405), - }, - [1963] = { - [sym_command_name] = ACTIONS(6401), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6401), - [anon_sym_RBRACK] = ACTIONS(6403), - [anon_sym_COMMA] = ACTIONS(6403), - [anon_sym_EQ] = ACTIONS(6403), - [anon_sym_RBRACE] = ACTIONS(6403), - [sym_word] = ACTIONS(6401), - [sym_placeholder] = ACTIONS(6403), - [anon_sym_PLUS] = ACTIONS(6403), - [anon_sym_DASH] = ACTIONS(6403), - [anon_sym_STAR] = ACTIONS(6403), - [anon_sym_SLASH] = ACTIONS(6403), - [anon_sym_LT] = ACTIONS(6401), - [anon_sym_GT] = ACTIONS(6401), - [anon_sym_BANG] = ACTIONS(6401), - [anon_sym_PIPE] = ACTIONS(6401), - [anon_sym_COLON] = ACTIONS(6401), - [anon_sym_SQUOTE] = ACTIONS(6401), - [anon_sym__] = ACTIONS(6403), - [anon_sym_CARET] = ACTIONS(6403), - [anon_sym_BSLASHtitle] = ACTIONS(6401), - [anon_sym_BSLASHauthor] = ACTIONS(6401), - [anon_sym_BSLASHusepackage] = ACTIONS(6401), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6401), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6401), - [anon_sym_BSLASHinclude] = ACTIONS(6401), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6401), - [anon_sym_BSLASHinput] = ACTIONS(6401), - [anon_sym_BSLASHsubfile] = ACTIONS(6401), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6401), - [anon_sym_BSLASHbibliography] = ACTIONS(6401), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6401), - [anon_sym_BSLASHincludesvg] = ACTIONS(6401), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6401), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6401), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6401), - [anon_sym_BSLASHimport] = ACTIONS(6401), - [anon_sym_BSLASHsubimport] = ACTIONS(6401), - [anon_sym_BSLASHinputfrom] = ACTIONS(6401), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6401), - [anon_sym_BSLASHincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6401), - [anon_sym_BSLASHcaption] = ACTIONS(6401), - [anon_sym_BSLASHcite] = ACTIONS(6401), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCite] = ACTIONS(6401), - [anon_sym_BSLASHnocite] = ACTIONS(6401), - [anon_sym_BSLASHcitet] = ACTIONS(6401), - [anon_sym_BSLASHcitep] = ACTIONS(6401), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteauthor] = ACTIONS(6401), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6401), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitetitle] = ACTIONS(6401), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteyear] = ACTIONS(6401), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6403), - [anon_sym_BSLASHcitedate] = ACTIONS(6401), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6403), - [anon_sym_BSLASHciteurl] = ACTIONS(6401), - [anon_sym_BSLASHfullcite] = ACTIONS(6401), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6401), - [anon_sym_BSLASHcitealt] = ACTIONS(6401), - [anon_sym_BSLASHcitealp] = ACTIONS(6401), - [anon_sym_BSLASHcitetext] = ACTIONS(6401), - [anon_sym_BSLASHparencite] = ACTIONS(6401), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHParencite] = ACTIONS(6401), - [anon_sym_BSLASHfootcite] = ACTIONS(6401), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6401), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6401), - [anon_sym_BSLASHtextcite] = ACTIONS(6401), - [anon_sym_BSLASHTextcite] = ACTIONS(6401), - [anon_sym_BSLASHsmartcite] = ACTIONS(6401), - [anon_sym_BSLASHSmartcite] = ACTIONS(6401), - [anon_sym_BSLASHsupercite] = ACTIONS(6401), - [anon_sym_BSLASHautocite] = ACTIONS(6401), - [anon_sym_BSLASHAutocite] = ACTIONS(6401), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6403), - [anon_sym_BSLASHvolcite] = ACTIONS(6401), - [anon_sym_BSLASHVolcite] = ACTIONS(6401), - [anon_sym_BSLASHpvolcite] = ACTIONS(6401), - [anon_sym_BSLASHPvolcite] = ACTIONS(6401), - [anon_sym_BSLASHfvolcite] = ACTIONS(6401), - [anon_sym_BSLASHftvolcite] = ACTIONS(6401), - [anon_sym_BSLASHsvolcite] = ACTIONS(6401), - [anon_sym_BSLASHSvolcite] = ACTIONS(6401), - [anon_sym_BSLASHtvolcite] = ACTIONS(6401), - [anon_sym_BSLASHTvolcite] = ACTIONS(6401), - [anon_sym_BSLASHavolcite] = ACTIONS(6401), - [anon_sym_BSLASHAvolcite] = ACTIONS(6401), - [anon_sym_BSLASHnotecite] = ACTIONS(6401), - [anon_sym_BSLASHNotecite] = ACTIONS(6401), - [anon_sym_BSLASHpnotecite] = ACTIONS(6401), - [anon_sym_BSLASHPnotecite] = ACTIONS(6401), - [anon_sym_BSLASHfnotecite] = ACTIONS(6401), - [anon_sym_BSLASHlabel] = ACTIONS(6401), - [anon_sym_BSLASHref] = ACTIONS(6401), - [anon_sym_BSLASHeqref] = ACTIONS(6401), - [anon_sym_BSLASHvref] = ACTIONS(6401), - [anon_sym_BSLASHVref] = ACTIONS(6401), - [anon_sym_BSLASHautoref] = ACTIONS(6401), - [anon_sym_BSLASHpageref] = ACTIONS(6401), - [anon_sym_BSLASHcref] = ACTIONS(6401), - [anon_sym_BSLASHCref] = ACTIONS(6401), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnameCref] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6401), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6401), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6401), - [anon_sym_BSLASHlabelcref] = ACTIONS(6401), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange] = ACTIONS(6401), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHCrefrange] = ACTIONS(6401), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6403), - [anon_sym_BSLASHnewlabel] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand] = ACTIONS(6401), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6401), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6403), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6401), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6403), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6401), - [anon_sym_BSLASHdef] = ACTIONS(6401), - [anon_sym_BSLASHlet] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6401), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6401), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6401), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6401), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6401), - [anon_sym_BSLASHgls] = ACTIONS(6401), - [anon_sym_BSLASHGls] = ACTIONS(6401), - [anon_sym_BSLASHGLS] = ACTIONS(6401), - [anon_sym_BSLASHglspl] = ACTIONS(6401), - [anon_sym_BSLASHGlspl] = ACTIONS(6401), - [anon_sym_BSLASHGLSpl] = ACTIONS(6401), - [anon_sym_BSLASHglsdisp] = ACTIONS(6401), - [anon_sym_BSLASHglslink] = ACTIONS(6401), - [anon_sym_BSLASHglstext] = ACTIONS(6401), - [anon_sym_BSLASHGlstext] = ACTIONS(6401), - [anon_sym_BSLASHGLStext] = ACTIONS(6401), - [anon_sym_BSLASHglsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6401), - [anon_sym_BSLASHglsplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSplural] = ACTIONS(6401), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6401), - [anon_sym_BSLASHglsname] = ACTIONS(6401), - [anon_sym_BSLASHGlsname] = ACTIONS(6401), - [anon_sym_BSLASHGLSname] = ACTIONS(6401), - [anon_sym_BSLASHglssymbol] = ACTIONS(6401), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6401), - [anon_sym_BSLASHglsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6401), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6401), - [anon_sym_BSLASHglsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6401), - [anon_sym_BSLASHglsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6401), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6401), - [anon_sym_BSLASHglsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6401), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6401), - [anon_sym_BSLASHglsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6401), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6401), - [anon_sym_BSLASHnewacronym] = ACTIONS(6401), - [anon_sym_BSLASHacrshort] = ACTIONS(6401), - [anon_sym_BSLASHAcrshort] = ACTIONS(6401), - [anon_sym_BSLASHACRshort] = ACTIONS(6401), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6401), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6401), - [anon_sym_BSLASHacrlong] = ACTIONS(6401), - [anon_sym_BSLASHAcrlong] = ACTIONS(6401), - [anon_sym_BSLASHACRlong] = ACTIONS(6401), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6401), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6401), - [anon_sym_BSLASHacrfull] = ACTIONS(6401), - [anon_sym_BSLASHAcrfull] = ACTIONS(6401), - [anon_sym_BSLASHACRfull] = ACTIONS(6401), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6401), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6401), - [anon_sym_BSLASHacs] = ACTIONS(6401), - [anon_sym_BSLASHAcs] = ACTIONS(6401), - [anon_sym_BSLASHacsp] = ACTIONS(6401), - [anon_sym_BSLASHAcsp] = ACTIONS(6401), - [anon_sym_BSLASHacl] = ACTIONS(6401), - [anon_sym_BSLASHAcl] = ACTIONS(6401), - [anon_sym_BSLASHaclp] = ACTIONS(6401), - [anon_sym_BSLASHAclp] = ACTIONS(6401), - [anon_sym_BSLASHacf] = ACTIONS(6401), - [anon_sym_BSLASHAcf] = ACTIONS(6401), - [anon_sym_BSLASHacfp] = ACTIONS(6401), - [anon_sym_BSLASHAcfp] = ACTIONS(6401), - [anon_sym_BSLASHac] = ACTIONS(6401), - [anon_sym_BSLASHAc] = ACTIONS(6401), - [anon_sym_BSLASHacp] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6401), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6401), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6401), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6401), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6401), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6403), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6401), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6401), - [anon_sym_BSLASHcolor] = ACTIONS(6401), - [anon_sym_BSLASHcolorbox] = ACTIONS(6401), - [anon_sym_BSLASHtextcolor] = ACTIONS(6401), - [anon_sym_BSLASHpagecolor] = ACTIONS(6401), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6401), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6401), - }, - [1964] = { - [sym_command_name] = ACTIONS(6397), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6397), - [anon_sym_RBRACK] = ACTIONS(6399), - [anon_sym_COMMA] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(6399), - [anon_sym_RBRACE] = ACTIONS(6399), - [sym_word] = ACTIONS(6397), - [sym_placeholder] = ACTIONS(6399), - [anon_sym_PLUS] = ACTIONS(6399), - [anon_sym_DASH] = ACTIONS(6399), - [anon_sym_STAR] = ACTIONS(6399), - [anon_sym_SLASH] = ACTIONS(6399), - [anon_sym_LT] = ACTIONS(6397), - [anon_sym_GT] = ACTIONS(6397), - [anon_sym_BANG] = ACTIONS(6397), - [anon_sym_PIPE] = ACTIONS(6397), - [anon_sym_COLON] = ACTIONS(6397), - [anon_sym_SQUOTE] = ACTIONS(6397), - [anon_sym__] = ACTIONS(6399), - [anon_sym_CARET] = ACTIONS(6399), - [anon_sym_BSLASHtitle] = ACTIONS(6397), - [anon_sym_BSLASHauthor] = ACTIONS(6397), - [anon_sym_BSLASHusepackage] = ACTIONS(6397), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6397), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6397), - [anon_sym_BSLASHinclude] = ACTIONS(6397), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6397), - [anon_sym_BSLASHinput] = ACTIONS(6397), - [anon_sym_BSLASHsubfile] = ACTIONS(6397), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6397), - [anon_sym_BSLASHbibliography] = ACTIONS(6397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6397), - [anon_sym_BSLASHincludesvg] = ACTIONS(6397), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6397), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6397), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6397), - [anon_sym_BSLASHimport] = ACTIONS(6397), - [anon_sym_BSLASHsubimport] = ACTIONS(6397), - [anon_sym_BSLASHinputfrom] = ACTIONS(6397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6397), - [anon_sym_BSLASHincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6397), - [anon_sym_BSLASHcaption] = ACTIONS(6397), - [anon_sym_BSLASHcite] = ACTIONS(6397), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCite] = ACTIONS(6397), - [anon_sym_BSLASHnocite] = ACTIONS(6397), - [anon_sym_BSLASHcitet] = ACTIONS(6397), - [anon_sym_BSLASHcitep] = ACTIONS(6397), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteauthor] = ACTIONS(6397), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6397), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitetitle] = ACTIONS(6397), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteyear] = ACTIONS(6397), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6399), - [anon_sym_BSLASHcitedate] = ACTIONS(6397), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6399), - [anon_sym_BSLASHciteurl] = ACTIONS(6397), - [anon_sym_BSLASHfullcite] = ACTIONS(6397), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6397), - [anon_sym_BSLASHcitealt] = ACTIONS(6397), - [anon_sym_BSLASHcitealp] = ACTIONS(6397), - [anon_sym_BSLASHcitetext] = ACTIONS(6397), - [anon_sym_BSLASHparencite] = ACTIONS(6397), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHParencite] = ACTIONS(6397), - [anon_sym_BSLASHfootcite] = ACTIONS(6397), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6397), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6397), - [anon_sym_BSLASHtextcite] = ACTIONS(6397), - [anon_sym_BSLASHTextcite] = ACTIONS(6397), - [anon_sym_BSLASHsmartcite] = ACTIONS(6397), - [anon_sym_BSLASHSmartcite] = ACTIONS(6397), - [anon_sym_BSLASHsupercite] = ACTIONS(6397), - [anon_sym_BSLASHautocite] = ACTIONS(6397), - [anon_sym_BSLASHAutocite] = ACTIONS(6397), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6399), - [anon_sym_BSLASHvolcite] = ACTIONS(6397), - [anon_sym_BSLASHVolcite] = ACTIONS(6397), - [anon_sym_BSLASHpvolcite] = ACTIONS(6397), - [anon_sym_BSLASHPvolcite] = ACTIONS(6397), - [anon_sym_BSLASHfvolcite] = ACTIONS(6397), - [anon_sym_BSLASHftvolcite] = ACTIONS(6397), - [anon_sym_BSLASHsvolcite] = ACTIONS(6397), - [anon_sym_BSLASHSvolcite] = ACTIONS(6397), - [anon_sym_BSLASHtvolcite] = ACTIONS(6397), - [anon_sym_BSLASHTvolcite] = ACTIONS(6397), - [anon_sym_BSLASHavolcite] = ACTIONS(6397), - [anon_sym_BSLASHAvolcite] = ACTIONS(6397), - [anon_sym_BSLASHnotecite] = ACTIONS(6397), - [anon_sym_BSLASHNotecite] = ACTIONS(6397), - [anon_sym_BSLASHpnotecite] = ACTIONS(6397), - [anon_sym_BSLASHPnotecite] = ACTIONS(6397), - [anon_sym_BSLASHfnotecite] = ACTIONS(6397), - [anon_sym_BSLASHlabel] = ACTIONS(6397), - [anon_sym_BSLASHref] = ACTIONS(6397), - [anon_sym_BSLASHeqref] = ACTIONS(6397), - [anon_sym_BSLASHvref] = ACTIONS(6397), - [anon_sym_BSLASHVref] = ACTIONS(6397), - [anon_sym_BSLASHautoref] = ACTIONS(6397), - [anon_sym_BSLASHpageref] = ACTIONS(6397), - [anon_sym_BSLASHcref] = ACTIONS(6397), - [anon_sym_BSLASHCref] = ACTIONS(6397), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnameCref] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6397), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6397), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6397), - [anon_sym_BSLASHlabelcref] = ACTIONS(6397), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange] = ACTIONS(6397), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHCrefrange] = ACTIONS(6397), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6399), - [anon_sym_BSLASHnewlabel] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand] = ACTIONS(6397), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6397), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6399), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6397), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6399), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6397), - [anon_sym_BSLASHdef] = ACTIONS(6397), - [anon_sym_BSLASHlet] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6397), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6397), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6397), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6397), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6397), - [anon_sym_BSLASHgls] = ACTIONS(6397), - [anon_sym_BSLASHGls] = ACTIONS(6397), - [anon_sym_BSLASHGLS] = ACTIONS(6397), - [anon_sym_BSLASHglspl] = ACTIONS(6397), - [anon_sym_BSLASHGlspl] = ACTIONS(6397), - [anon_sym_BSLASHGLSpl] = ACTIONS(6397), - [anon_sym_BSLASHglsdisp] = ACTIONS(6397), - [anon_sym_BSLASHglslink] = ACTIONS(6397), - [anon_sym_BSLASHglstext] = ACTIONS(6397), - [anon_sym_BSLASHGlstext] = ACTIONS(6397), - [anon_sym_BSLASHGLStext] = ACTIONS(6397), - [anon_sym_BSLASHglsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6397), - [anon_sym_BSLASHglsplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSplural] = ACTIONS(6397), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6397), - [anon_sym_BSLASHglsname] = ACTIONS(6397), - [anon_sym_BSLASHGlsname] = ACTIONS(6397), - [anon_sym_BSLASHGLSname] = ACTIONS(6397), - [anon_sym_BSLASHglssymbol] = ACTIONS(6397), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6397), - [anon_sym_BSLASHglsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6397), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6397), - [anon_sym_BSLASHglsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6397), - [anon_sym_BSLASHglsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6397), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6397), - [anon_sym_BSLASHglsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6397), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6397), - [anon_sym_BSLASHglsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6397), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6397), - [anon_sym_BSLASHnewacronym] = ACTIONS(6397), - [anon_sym_BSLASHacrshort] = ACTIONS(6397), - [anon_sym_BSLASHAcrshort] = ACTIONS(6397), - [anon_sym_BSLASHACRshort] = ACTIONS(6397), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6397), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6397), - [anon_sym_BSLASHacrlong] = ACTIONS(6397), - [anon_sym_BSLASHAcrlong] = ACTIONS(6397), - [anon_sym_BSLASHACRlong] = ACTIONS(6397), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6397), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6397), - [anon_sym_BSLASHacrfull] = ACTIONS(6397), - [anon_sym_BSLASHAcrfull] = ACTIONS(6397), - [anon_sym_BSLASHACRfull] = ACTIONS(6397), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6397), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6397), - [anon_sym_BSLASHacs] = ACTIONS(6397), - [anon_sym_BSLASHAcs] = ACTIONS(6397), - [anon_sym_BSLASHacsp] = ACTIONS(6397), - [anon_sym_BSLASHAcsp] = ACTIONS(6397), - [anon_sym_BSLASHacl] = ACTIONS(6397), - [anon_sym_BSLASHAcl] = ACTIONS(6397), - [anon_sym_BSLASHaclp] = ACTIONS(6397), - [anon_sym_BSLASHAclp] = ACTIONS(6397), - [anon_sym_BSLASHacf] = ACTIONS(6397), - [anon_sym_BSLASHAcf] = ACTIONS(6397), - [anon_sym_BSLASHacfp] = ACTIONS(6397), - [anon_sym_BSLASHAcfp] = ACTIONS(6397), - [anon_sym_BSLASHac] = ACTIONS(6397), - [anon_sym_BSLASHAc] = ACTIONS(6397), - [anon_sym_BSLASHacp] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6397), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6397), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6397), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6397), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6397), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6397), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6397), - [anon_sym_BSLASHcolor] = ACTIONS(6397), - [anon_sym_BSLASHcolorbox] = ACTIONS(6397), - [anon_sym_BSLASHtextcolor] = ACTIONS(6397), - [anon_sym_BSLASHpagecolor] = ACTIONS(6397), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6397), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6397), - }, - [1965] = { - [sym_command_name] = ACTIONS(6393), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6393), - [anon_sym_RBRACK] = ACTIONS(6395), - [anon_sym_COMMA] = ACTIONS(6395), - [anon_sym_EQ] = ACTIONS(6395), - [anon_sym_RBRACE] = ACTIONS(6395), - [sym_word] = ACTIONS(6393), - [sym_placeholder] = ACTIONS(6395), - [anon_sym_PLUS] = ACTIONS(6395), - [anon_sym_DASH] = ACTIONS(6395), - [anon_sym_STAR] = ACTIONS(6395), - [anon_sym_SLASH] = ACTIONS(6395), - [anon_sym_LT] = ACTIONS(6393), - [anon_sym_GT] = ACTIONS(6393), - [anon_sym_BANG] = ACTIONS(6393), - [anon_sym_PIPE] = ACTIONS(6393), - [anon_sym_COLON] = ACTIONS(6393), - [anon_sym_SQUOTE] = ACTIONS(6393), - [anon_sym__] = ACTIONS(6395), - [anon_sym_CARET] = ACTIONS(6395), - [anon_sym_BSLASHtitle] = ACTIONS(6393), - [anon_sym_BSLASHauthor] = ACTIONS(6393), - [anon_sym_BSLASHusepackage] = ACTIONS(6393), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6393), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6393), - [anon_sym_BSLASHinclude] = ACTIONS(6393), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6393), - [anon_sym_BSLASHinput] = ACTIONS(6393), - [anon_sym_BSLASHsubfile] = ACTIONS(6393), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6393), - [anon_sym_BSLASHbibliography] = ACTIONS(6393), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6393), - [anon_sym_BSLASHincludesvg] = ACTIONS(6393), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6393), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6393), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6393), - [anon_sym_BSLASHimport] = ACTIONS(6393), - [anon_sym_BSLASHsubimport] = ACTIONS(6393), - [anon_sym_BSLASHinputfrom] = ACTIONS(6393), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6393), - [anon_sym_BSLASHincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6393), - [anon_sym_BSLASHcaption] = ACTIONS(6393), - [anon_sym_BSLASHcite] = ACTIONS(6393), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCite] = ACTIONS(6393), - [anon_sym_BSLASHnocite] = ACTIONS(6393), - [anon_sym_BSLASHcitet] = ACTIONS(6393), - [anon_sym_BSLASHcitep] = ACTIONS(6393), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteauthor] = ACTIONS(6393), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6393), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitetitle] = ACTIONS(6393), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteyear] = ACTIONS(6393), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6395), - [anon_sym_BSLASHcitedate] = ACTIONS(6393), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6395), - [anon_sym_BSLASHciteurl] = ACTIONS(6393), - [anon_sym_BSLASHfullcite] = ACTIONS(6393), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6393), - [anon_sym_BSLASHcitealt] = ACTIONS(6393), - [anon_sym_BSLASHcitealp] = ACTIONS(6393), - [anon_sym_BSLASHcitetext] = ACTIONS(6393), - [anon_sym_BSLASHparencite] = ACTIONS(6393), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHParencite] = ACTIONS(6393), - [anon_sym_BSLASHfootcite] = ACTIONS(6393), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6393), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6393), - [anon_sym_BSLASHtextcite] = ACTIONS(6393), - [anon_sym_BSLASHTextcite] = ACTIONS(6393), - [anon_sym_BSLASHsmartcite] = ACTIONS(6393), - [anon_sym_BSLASHSmartcite] = ACTIONS(6393), - [anon_sym_BSLASHsupercite] = ACTIONS(6393), - [anon_sym_BSLASHautocite] = ACTIONS(6393), - [anon_sym_BSLASHAutocite] = ACTIONS(6393), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6395), - [anon_sym_BSLASHvolcite] = ACTIONS(6393), - [anon_sym_BSLASHVolcite] = ACTIONS(6393), - [anon_sym_BSLASHpvolcite] = ACTIONS(6393), - [anon_sym_BSLASHPvolcite] = ACTIONS(6393), - [anon_sym_BSLASHfvolcite] = ACTIONS(6393), - [anon_sym_BSLASHftvolcite] = ACTIONS(6393), - [anon_sym_BSLASHsvolcite] = ACTIONS(6393), - [anon_sym_BSLASHSvolcite] = ACTIONS(6393), - [anon_sym_BSLASHtvolcite] = ACTIONS(6393), - [anon_sym_BSLASHTvolcite] = ACTIONS(6393), - [anon_sym_BSLASHavolcite] = ACTIONS(6393), - [anon_sym_BSLASHAvolcite] = ACTIONS(6393), - [anon_sym_BSLASHnotecite] = ACTIONS(6393), - [anon_sym_BSLASHNotecite] = ACTIONS(6393), - [anon_sym_BSLASHpnotecite] = ACTIONS(6393), - [anon_sym_BSLASHPnotecite] = ACTIONS(6393), - [anon_sym_BSLASHfnotecite] = ACTIONS(6393), - [anon_sym_BSLASHlabel] = ACTIONS(6393), - [anon_sym_BSLASHref] = ACTIONS(6393), - [anon_sym_BSLASHeqref] = ACTIONS(6393), - [anon_sym_BSLASHvref] = ACTIONS(6393), - [anon_sym_BSLASHVref] = ACTIONS(6393), - [anon_sym_BSLASHautoref] = ACTIONS(6393), - [anon_sym_BSLASHpageref] = ACTIONS(6393), - [anon_sym_BSLASHcref] = ACTIONS(6393), - [anon_sym_BSLASHCref] = ACTIONS(6393), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnameCref] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6393), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6393), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6393), - [anon_sym_BSLASHlabelcref] = ACTIONS(6393), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange] = ACTIONS(6393), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHCrefrange] = ACTIONS(6393), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6395), - [anon_sym_BSLASHnewlabel] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand] = ACTIONS(6393), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6393), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6395), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6393), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6395), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6393), - [anon_sym_BSLASHdef] = ACTIONS(6393), - [anon_sym_BSLASHlet] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6393), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6393), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6393), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6393), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6393), - [anon_sym_BSLASHgls] = ACTIONS(6393), - [anon_sym_BSLASHGls] = ACTIONS(6393), - [anon_sym_BSLASHGLS] = ACTIONS(6393), - [anon_sym_BSLASHglspl] = ACTIONS(6393), - [anon_sym_BSLASHGlspl] = ACTIONS(6393), - [anon_sym_BSLASHGLSpl] = ACTIONS(6393), - [anon_sym_BSLASHglsdisp] = ACTIONS(6393), - [anon_sym_BSLASHglslink] = ACTIONS(6393), - [anon_sym_BSLASHglstext] = ACTIONS(6393), - [anon_sym_BSLASHGlstext] = ACTIONS(6393), - [anon_sym_BSLASHGLStext] = ACTIONS(6393), - [anon_sym_BSLASHglsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6393), - [anon_sym_BSLASHglsplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSplural] = ACTIONS(6393), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6393), - [anon_sym_BSLASHglsname] = ACTIONS(6393), - [anon_sym_BSLASHGlsname] = ACTIONS(6393), - [anon_sym_BSLASHGLSname] = ACTIONS(6393), - [anon_sym_BSLASHglssymbol] = ACTIONS(6393), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6393), - [anon_sym_BSLASHglsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6393), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6393), - [anon_sym_BSLASHglsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6393), - [anon_sym_BSLASHglsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6393), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6393), - [anon_sym_BSLASHglsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6393), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6393), - [anon_sym_BSLASHglsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6393), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6393), - [anon_sym_BSLASHnewacronym] = ACTIONS(6393), - [anon_sym_BSLASHacrshort] = ACTIONS(6393), - [anon_sym_BSLASHAcrshort] = ACTIONS(6393), - [anon_sym_BSLASHACRshort] = ACTIONS(6393), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6393), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6393), - [anon_sym_BSLASHacrlong] = ACTIONS(6393), - [anon_sym_BSLASHAcrlong] = ACTIONS(6393), - [anon_sym_BSLASHACRlong] = ACTIONS(6393), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6393), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6393), - [anon_sym_BSLASHacrfull] = ACTIONS(6393), - [anon_sym_BSLASHAcrfull] = ACTIONS(6393), - [anon_sym_BSLASHACRfull] = ACTIONS(6393), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6393), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6393), - [anon_sym_BSLASHacs] = ACTIONS(6393), - [anon_sym_BSLASHAcs] = ACTIONS(6393), - [anon_sym_BSLASHacsp] = ACTIONS(6393), - [anon_sym_BSLASHAcsp] = ACTIONS(6393), - [anon_sym_BSLASHacl] = ACTIONS(6393), - [anon_sym_BSLASHAcl] = ACTIONS(6393), - [anon_sym_BSLASHaclp] = ACTIONS(6393), - [anon_sym_BSLASHAclp] = ACTIONS(6393), - [anon_sym_BSLASHacf] = ACTIONS(6393), - [anon_sym_BSLASHAcf] = ACTIONS(6393), - [anon_sym_BSLASHacfp] = ACTIONS(6393), - [anon_sym_BSLASHAcfp] = ACTIONS(6393), - [anon_sym_BSLASHac] = ACTIONS(6393), - [anon_sym_BSLASHAc] = ACTIONS(6393), - [anon_sym_BSLASHacp] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6393), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6393), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6393), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6393), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6393), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6393), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6393), - [anon_sym_BSLASHcolor] = ACTIONS(6393), - [anon_sym_BSLASHcolorbox] = ACTIONS(6393), - [anon_sym_BSLASHtextcolor] = ACTIONS(6393), - [anon_sym_BSLASHpagecolor] = ACTIONS(6393), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6393), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6393), - }, - [1966] = { - [sym_command_name] = ACTIONS(6389), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6389), - [anon_sym_RBRACK] = ACTIONS(6391), - [anon_sym_COMMA] = ACTIONS(6391), - [anon_sym_EQ] = ACTIONS(6391), - [anon_sym_RBRACE] = ACTIONS(6391), - [sym_word] = ACTIONS(6389), - [sym_placeholder] = ACTIONS(6391), - [anon_sym_PLUS] = ACTIONS(6391), - [anon_sym_DASH] = ACTIONS(6391), - [anon_sym_STAR] = ACTIONS(6391), - [anon_sym_SLASH] = ACTIONS(6391), - [anon_sym_LT] = ACTIONS(6389), - [anon_sym_GT] = ACTIONS(6389), - [anon_sym_BANG] = ACTIONS(6389), - [anon_sym_PIPE] = ACTIONS(6389), - [anon_sym_COLON] = ACTIONS(6389), - [anon_sym_SQUOTE] = ACTIONS(6389), - [anon_sym__] = ACTIONS(6391), - [anon_sym_CARET] = ACTIONS(6391), - [anon_sym_BSLASHtitle] = ACTIONS(6389), - [anon_sym_BSLASHauthor] = ACTIONS(6389), - [anon_sym_BSLASHusepackage] = ACTIONS(6389), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6389), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6389), - [anon_sym_BSLASHinclude] = ACTIONS(6389), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6389), - [anon_sym_BSLASHinput] = ACTIONS(6389), - [anon_sym_BSLASHsubfile] = ACTIONS(6389), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6389), - [anon_sym_BSLASHbibliography] = ACTIONS(6389), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6389), - [anon_sym_BSLASHincludesvg] = ACTIONS(6389), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6389), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6389), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6389), - [anon_sym_BSLASHimport] = ACTIONS(6389), - [anon_sym_BSLASHsubimport] = ACTIONS(6389), - [anon_sym_BSLASHinputfrom] = ACTIONS(6389), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6389), - [anon_sym_BSLASHincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6389), - [anon_sym_BSLASHcaption] = ACTIONS(6389), - [anon_sym_BSLASHcite] = ACTIONS(6389), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCite] = ACTIONS(6389), - [anon_sym_BSLASHnocite] = ACTIONS(6389), - [anon_sym_BSLASHcitet] = ACTIONS(6389), - [anon_sym_BSLASHcitep] = ACTIONS(6389), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteauthor] = ACTIONS(6389), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6389), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitetitle] = ACTIONS(6389), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteyear] = ACTIONS(6389), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6391), - [anon_sym_BSLASHcitedate] = ACTIONS(6389), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6391), - [anon_sym_BSLASHciteurl] = ACTIONS(6389), - [anon_sym_BSLASHfullcite] = ACTIONS(6389), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6389), - [anon_sym_BSLASHcitealt] = ACTIONS(6389), - [anon_sym_BSLASHcitealp] = ACTIONS(6389), - [anon_sym_BSLASHcitetext] = ACTIONS(6389), - [anon_sym_BSLASHparencite] = ACTIONS(6389), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHParencite] = ACTIONS(6389), - [anon_sym_BSLASHfootcite] = ACTIONS(6389), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6389), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6389), - [anon_sym_BSLASHtextcite] = ACTIONS(6389), - [anon_sym_BSLASHTextcite] = ACTIONS(6389), - [anon_sym_BSLASHsmartcite] = ACTIONS(6389), - [anon_sym_BSLASHSmartcite] = ACTIONS(6389), - [anon_sym_BSLASHsupercite] = ACTIONS(6389), - [anon_sym_BSLASHautocite] = ACTIONS(6389), - [anon_sym_BSLASHAutocite] = ACTIONS(6389), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6391), - [anon_sym_BSLASHvolcite] = ACTIONS(6389), - [anon_sym_BSLASHVolcite] = ACTIONS(6389), - [anon_sym_BSLASHpvolcite] = ACTIONS(6389), - [anon_sym_BSLASHPvolcite] = ACTIONS(6389), - [anon_sym_BSLASHfvolcite] = ACTIONS(6389), - [anon_sym_BSLASHftvolcite] = ACTIONS(6389), - [anon_sym_BSLASHsvolcite] = ACTIONS(6389), - [anon_sym_BSLASHSvolcite] = ACTIONS(6389), - [anon_sym_BSLASHtvolcite] = ACTIONS(6389), - [anon_sym_BSLASHTvolcite] = ACTIONS(6389), - [anon_sym_BSLASHavolcite] = ACTIONS(6389), - [anon_sym_BSLASHAvolcite] = ACTIONS(6389), - [anon_sym_BSLASHnotecite] = ACTIONS(6389), - [anon_sym_BSLASHNotecite] = ACTIONS(6389), - [anon_sym_BSLASHpnotecite] = ACTIONS(6389), - [anon_sym_BSLASHPnotecite] = ACTIONS(6389), - [anon_sym_BSLASHfnotecite] = ACTIONS(6389), - [anon_sym_BSLASHlabel] = ACTIONS(6389), - [anon_sym_BSLASHref] = ACTIONS(6389), - [anon_sym_BSLASHeqref] = ACTIONS(6389), - [anon_sym_BSLASHvref] = ACTIONS(6389), - [anon_sym_BSLASHVref] = ACTIONS(6389), - [anon_sym_BSLASHautoref] = ACTIONS(6389), - [anon_sym_BSLASHpageref] = ACTIONS(6389), - [anon_sym_BSLASHcref] = ACTIONS(6389), - [anon_sym_BSLASHCref] = ACTIONS(6389), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnameCref] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6389), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6389), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6389), - [anon_sym_BSLASHlabelcref] = ACTIONS(6389), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange] = ACTIONS(6389), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHCrefrange] = ACTIONS(6389), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6391), - [anon_sym_BSLASHnewlabel] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand] = ACTIONS(6389), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6389), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6391), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6389), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6391), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6389), - [anon_sym_BSLASHdef] = ACTIONS(6389), - [anon_sym_BSLASHlet] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6389), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6389), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6389), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6389), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6389), - [anon_sym_BSLASHgls] = ACTIONS(6389), - [anon_sym_BSLASHGls] = ACTIONS(6389), - [anon_sym_BSLASHGLS] = ACTIONS(6389), - [anon_sym_BSLASHglspl] = ACTIONS(6389), - [anon_sym_BSLASHGlspl] = ACTIONS(6389), - [anon_sym_BSLASHGLSpl] = ACTIONS(6389), - [anon_sym_BSLASHglsdisp] = ACTIONS(6389), - [anon_sym_BSLASHglslink] = ACTIONS(6389), - [anon_sym_BSLASHglstext] = ACTIONS(6389), - [anon_sym_BSLASHGlstext] = ACTIONS(6389), - [anon_sym_BSLASHGLStext] = ACTIONS(6389), - [anon_sym_BSLASHglsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6389), - [anon_sym_BSLASHglsplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSplural] = ACTIONS(6389), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6389), - [anon_sym_BSLASHglsname] = ACTIONS(6389), - [anon_sym_BSLASHGlsname] = ACTIONS(6389), - [anon_sym_BSLASHGLSname] = ACTIONS(6389), - [anon_sym_BSLASHglssymbol] = ACTIONS(6389), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6389), - [anon_sym_BSLASHglsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6389), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6389), - [anon_sym_BSLASHglsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6389), - [anon_sym_BSLASHglsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6389), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6389), - [anon_sym_BSLASHglsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6389), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6389), - [anon_sym_BSLASHglsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6389), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6389), - [anon_sym_BSLASHnewacronym] = ACTIONS(6389), - [anon_sym_BSLASHacrshort] = ACTIONS(6389), - [anon_sym_BSLASHAcrshort] = ACTIONS(6389), - [anon_sym_BSLASHACRshort] = ACTIONS(6389), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6389), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6389), - [anon_sym_BSLASHacrlong] = ACTIONS(6389), - [anon_sym_BSLASHAcrlong] = ACTIONS(6389), - [anon_sym_BSLASHACRlong] = ACTIONS(6389), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6389), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6389), - [anon_sym_BSLASHacrfull] = ACTIONS(6389), - [anon_sym_BSLASHAcrfull] = ACTIONS(6389), - [anon_sym_BSLASHACRfull] = ACTIONS(6389), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6389), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6389), - [anon_sym_BSLASHacs] = ACTIONS(6389), - [anon_sym_BSLASHAcs] = ACTIONS(6389), - [anon_sym_BSLASHacsp] = ACTIONS(6389), - [anon_sym_BSLASHAcsp] = ACTIONS(6389), - [anon_sym_BSLASHacl] = ACTIONS(6389), - [anon_sym_BSLASHAcl] = ACTIONS(6389), - [anon_sym_BSLASHaclp] = ACTIONS(6389), - [anon_sym_BSLASHAclp] = ACTIONS(6389), - [anon_sym_BSLASHacf] = ACTIONS(6389), - [anon_sym_BSLASHAcf] = ACTIONS(6389), - [anon_sym_BSLASHacfp] = ACTIONS(6389), - [anon_sym_BSLASHAcfp] = ACTIONS(6389), - [anon_sym_BSLASHac] = ACTIONS(6389), - [anon_sym_BSLASHAc] = ACTIONS(6389), - [anon_sym_BSLASHacp] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6389), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6389), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6389), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6389), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6389), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6389), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6389), - [anon_sym_BSLASHcolor] = ACTIONS(6389), - [anon_sym_BSLASHcolorbox] = ACTIONS(6389), - [anon_sym_BSLASHtextcolor] = ACTIONS(6389), - [anon_sym_BSLASHpagecolor] = ACTIONS(6389), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6389), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6389), - }, - [1967] = { - [sym_command_name] = ACTIONS(6385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6385), - [anon_sym_RBRACK] = ACTIONS(6387), - [anon_sym_COMMA] = ACTIONS(6387), - [anon_sym_EQ] = ACTIONS(6387), - [anon_sym_RBRACE] = ACTIONS(6387), - [sym_word] = ACTIONS(6385), - [sym_placeholder] = ACTIONS(6387), - [anon_sym_PLUS] = ACTIONS(6387), - [anon_sym_DASH] = ACTIONS(6387), - [anon_sym_STAR] = ACTIONS(6387), - [anon_sym_SLASH] = ACTIONS(6387), - [anon_sym_LT] = ACTIONS(6385), - [anon_sym_GT] = ACTIONS(6385), - [anon_sym_BANG] = ACTIONS(6385), - [anon_sym_PIPE] = ACTIONS(6385), - [anon_sym_COLON] = ACTIONS(6385), - [anon_sym_SQUOTE] = ACTIONS(6385), - [anon_sym__] = ACTIONS(6387), - [anon_sym_CARET] = ACTIONS(6387), - [anon_sym_BSLASHtitle] = ACTIONS(6385), - [anon_sym_BSLASHauthor] = ACTIONS(6385), - [anon_sym_BSLASHusepackage] = ACTIONS(6385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6385), - [anon_sym_BSLASHinclude] = ACTIONS(6385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6385), - [anon_sym_BSLASHinput] = ACTIONS(6385), - [anon_sym_BSLASHsubfile] = ACTIONS(6385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6385), - [anon_sym_BSLASHbibliography] = ACTIONS(6385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6385), - [anon_sym_BSLASHincludesvg] = ACTIONS(6385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6385), - [anon_sym_BSLASHimport] = ACTIONS(6385), - [anon_sym_BSLASHsubimport] = ACTIONS(6385), - [anon_sym_BSLASHinputfrom] = ACTIONS(6385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6385), - [anon_sym_BSLASHincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6385), - [anon_sym_BSLASHcaption] = ACTIONS(6385), - [anon_sym_BSLASHcite] = ACTIONS(6385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCite] = ACTIONS(6385), - [anon_sym_BSLASHnocite] = ACTIONS(6385), - [anon_sym_BSLASHcitet] = ACTIONS(6385), - [anon_sym_BSLASHcitep] = ACTIONS(6385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteauthor] = ACTIONS(6385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitetitle] = ACTIONS(6385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteyear] = ACTIONS(6385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6387), - [anon_sym_BSLASHcitedate] = ACTIONS(6385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6387), - [anon_sym_BSLASHciteurl] = ACTIONS(6385), - [anon_sym_BSLASHfullcite] = ACTIONS(6385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6385), - [anon_sym_BSLASHcitealt] = ACTIONS(6385), - [anon_sym_BSLASHcitealp] = ACTIONS(6385), - [anon_sym_BSLASHcitetext] = ACTIONS(6385), - [anon_sym_BSLASHparencite] = ACTIONS(6385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHParencite] = ACTIONS(6385), - [anon_sym_BSLASHfootcite] = ACTIONS(6385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6385), - [anon_sym_BSLASHtextcite] = ACTIONS(6385), - [anon_sym_BSLASHTextcite] = ACTIONS(6385), - [anon_sym_BSLASHsmartcite] = ACTIONS(6385), - [anon_sym_BSLASHSmartcite] = ACTIONS(6385), - [anon_sym_BSLASHsupercite] = ACTIONS(6385), - [anon_sym_BSLASHautocite] = ACTIONS(6385), - [anon_sym_BSLASHAutocite] = ACTIONS(6385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6387), - [anon_sym_BSLASHvolcite] = ACTIONS(6385), - [anon_sym_BSLASHVolcite] = ACTIONS(6385), - [anon_sym_BSLASHpvolcite] = ACTIONS(6385), - [anon_sym_BSLASHPvolcite] = ACTIONS(6385), - [anon_sym_BSLASHfvolcite] = ACTIONS(6385), - [anon_sym_BSLASHftvolcite] = ACTIONS(6385), - [anon_sym_BSLASHsvolcite] = ACTIONS(6385), - [anon_sym_BSLASHSvolcite] = ACTIONS(6385), - [anon_sym_BSLASHtvolcite] = ACTIONS(6385), - [anon_sym_BSLASHTvolcite] = ACTIONS(6385), - [anon_sym_BSLASHavolcite] = ACTIONS(6385), - [anon_sym_BSLASHAvolcite] = ACTIONS(6385), - [anon_sym_BSLASHnotecite] = ACTIONS(6385), - [anon_sym_BSLASHNotecite] = ACTIONS(6385), - [anon_sym_BSLASHpnotecite] = ACTIONS(6385), - [anon_sym_BSLASHPnotecite] = ACTIONS(6385), - [anon_sym_BSLASHfnotecite] = ACTIONS(6385), - [anon_sym_BSLASHlabel] = ACTIONS(6385), - [anon_sym_BSLASHref] = ACTIONS(6385), - [anon_sym_BSLASHeqref] = ACTIONS(6385), - [anon_sym_BSLASHvref] = ACTIONS(6385), - [anon_sym_BSLASHVref] = ACTIONS(6385), - [anon_sym_BSLASHautoref] = ACTIONS(6385), - [anon_sym_BSLASHpageref] = ACTIONS(6385), - [anon_sym_BSLASHcref] = ACTIONS(6385), - [anon_sym_BSLASHCref] = ACTIONS(6385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnameCref] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6385), - [anon_sym_BSLASHlabelcref] = ACTIONS(6385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange] = ACTIONS(6385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHCrefrange] = ACTIONS(6385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6387), - [anon_sym_BSLASHnewlabel] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand] = ACTIONS(6385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6387), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6387), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6385), - [anon_sym_BSLASHdef] = ACTIONS(6385), - [anon_sym_BSLASHlet] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6385), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6385), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6385), - [anon_sym_BSLASHgls] = ACTIONS(6385), - [anon_sym_BSLASHGls] = ACTIONS(6385), - [anon_sym_BSLASHGLS] = ACTIONS(6385), - [anon_sym_BSLASHglspl] = ACTIONS(6385), - [anon_sym_BSLASHGlspl] = ACTIONS(6385), - [anon_sym_BSLASHGLSpl] = ACTIONS(6385), - [anon_sym_BSLASHglsdisp] = ACTIONS(6385), - [anon_sym_BSLASHglslink] = ACTIONS(6385), - [anon_sym_BSLASHglstext] = ACTIONS(6385), - [anon_sym_BSLASHGlstext] = ACTIONS(6385), - [anon_sym_BSLASHGLStext] = ACTIONS(6385), - [anon_sym_BSLASHglsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6385), - [anon_sym_BSLASHglsplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSplural] = ACTIONS(6385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6385), - [anon_sym_BSLASHglsname] = ACTIONS(6385), - [anon_sym_BSLASHGlsname] = ACTIONS(6385), - [anon_sym_BSLASHGLSname] = ACTIONS(6385), - [anon_sym_BSLASHglssymbol] = ACTIONS(6385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6385), - [anon_sym_BSLASHglsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6385), - [anon_sym_BSLASHglsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6385), - [anon_sym_BSLASHglsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6385), - [anon_sym_BSLASHglsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6385), - [anon_sym_BSLASHglsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6385), - [anon_sym_BSLASHnewacronym] = ACTIONS(6385), - [anon_sym_BSLASHacrshort] = ACTIONS(6385), - [anon_sym_BSLASHAcrshort] = ACTIONS(6385), - [anon_sym_BSLASHACRshort] = ACTIONS(6385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6385), - [anon_sym_BSLASHacrlong] = ACTIONS(6385), - [anon_sym_BSLASHAcrlong] = ACTIONS(6385), - [anon_sym_BSLASHACRlong] = ACTIONS(6385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6385), - [anon_sym_BSLASHacrfull] = ACTIONS(6385), - [anon_sym_BSLASHAcrfull] = ACTIONS(6385), - [anon_sym_BSLASHACRfull] = ACTIONS(6385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6385), - [anon_sym_BSLASHacs] = ACTIONS(6385), - [anon_sym_BSLASHAcs] = ACTIONS(6385), - [anon_sym_BSLASHacsp] = ACTIONS(6385), - [anon_sym_BSLASHAcsp] = ACTIONS(6385), - [anon_sym_BSLASHacl] = ACTIONS(6385), - [anon_sym_BSLASHAcl] = ACTIONS(6385), - [anon_sym_BSLASHaclp] = ACTIONS(6385), - [anon_sym_BSLASHAclp] = ACTIONS(6385), - [anon_sym_BSLASHacf] = ACTIONS(6385), - [anon_sym_BSLASHAcf] = ACTIONS(6385), - [anon_sym_BSLASHacfp] = ACTIONS(6385), - [anon_sym_BSLASHAcfp] = ACTIONS(6385), - [anon_sym_BSLASHac] = ACTIONS(6385), - [anon_sym_BSLASHAc] = ACTIONS(6385), - [anon_sym_BSLASHacp] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6385), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6385), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6387), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6385), - [anon_sym_BSLASHcolor] = ACTIONS(6385), - [anon_sym_BSLASHcolorbox] = ACTIONS(6385), - [anon_sym_BSLASHtextcolor] = ACTIONS(6385), - [anon_sym_BSLASHpagecolor] = ACTIONS(6385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6385), - }, - [1968] = { - [sym_command_name] = ACTIONS(6381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6381), - [anon_sym_RBRACK] = ACTIONS(6383), - [anon_sym_COMMA] = ACTIONS(6383), - [anon_sym_EQ] = ACTIONS(6383), - [anon_sym_RBRACE] = ACTIONS(6383), - [sym_word] = ACTIONS(6381), - [sym_placeholder] = ACTIONS(6383), - [anon_sym_PLUS] = ACTIONS(6383), - [anon_sym_DASH] = ACTIONS(6383), - [anon_sym_STAR] = ACTIONS(6383), - [anon_sym_SLASH] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_COLON] = ACTIONS(6381), - [anon_sym_SQUOTE] = ACTIONS(6381), - [anon_sym__] = ACTIONS(6383), - [anon_sym_CARET] = ACTIONS(6383), - [anon_sym_BSLASHtitle] = ACTIONS(6381), - [anon_sym_BSLASHauthor] = ACTIONS(6381), - [anon_sym_BSLASHusepackage] = ACTIONS(6381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6381), - [anon_sym_BSLASHinclude] = ACTIONS(6381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6381), - [anon_sym_BSLASHinput] = ACTIONS(6381), - [anon_sym_BSLASHsubfile] = ACTIONS(6381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6381), - [anon_sym_BSLASHbibliography] = ACTIONS(6381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6381), - [anon_sym_BSLASHincludesvg] = ACTIONS(6381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6381), - [anon_sym_BSLASHimport] = ACTIONS(6381), - [anon_sym_BSLASHsubimport] = ACTIONS(6381), - [anon_sym_BSLASHinputfrom] = ACTIONS(6381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6381), - [anon_sym_BSLASHincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6381), - [anon_sym_BSLASHcaption] = ACTIONS(6381), - [anon_sym_BSLASHcite] = ACTIONS(6381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCite] = ACTIONS(6381), - [anon_sym_BSLASHnocite] = ACTIONS(6381), - [anon_sym_BSLASHcitet] = ACTIONS(6381), - [anon_sym_BSLASHcitep] = ACTIONS(6381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteauthor] = ACTIONS(6381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitetitle] = ACTIONS(6381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteyear] = ACTIONS(6381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6383), - [anon_sym_BSLASHcitedate] = ACTIONS(6381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6383), - [anon_sym_BSLASHciteurl] = ACTIONS(6381), - [anon_sym_BSLASHfullcite] = ACTIONS(6381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6381), - [anon_sym_BSLASHcitealt] = ACTIONS(6381), - [anon_sym_BSLASHcitealp] = ACTIONS(6381), - [anon_sym_BSLASHcitetext] = ACTIONS(6381), - [anon_sym_BSLASHparencite] = ACTIONS(6381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHParencite] = ACTIONS(6381), - [anon_sym_BSLASHfootcite] = ACTIONS(6381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6381), - [anon_sym_BSLASHtextcite] = ACTIONS(6381), - [anon_sym_BSLASHTextcite] = ACTIONS(6381), - [anon_sym_BSLASHsmartcite] = ACTIONS(6381), - [anon_sym_BSLASHSmartcite] = ACTIONS(6381), - [anon_sym_BSLASHsupercite] = ACTIONS(6381), - [anon_sym_BSLASHautocite] = ACTIONS(6381), - [anon_sym_BSLASHAutocite] = ACTIONS(6381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6383), - [anon_sym_BSLASHvolcite] = ACTIONS(6381), - [anon_sym_BSLASHVolcite] = ACTIONS(6381), - [anon_sym_BSLASHpvolcite] = ACTIONS(6381), - [anon_sym_BSLASHPvolcite] = ACTIONS(6381), - [anon_sym_BSLASHfvolcite] = ACTIONS(6381), - [anon_sym_BSLASHftvolcite] = ACTIONS(6381), - [anon_sym_BSLASHsvolcite] = ACTIONS(6381), - [anon_sym_BSLASHSvolcite] = ACTIONS(6381), - [anon_sym_BSLASHtvolcite] = ACTIONS(6381), - [anon_sym_BSLASHTvolcite] = ACTIONS(6381), - [anon_sym_BSLASHavolcite] = ACTIONS(6381), - [anon_sym_BSLASHAvolcite] = ACTIONS(6381), - [anon_sym_BSLASHnotecite] = ACTIONS(6381), - [anon_sym_BSLASHNotecite] = ACTIONS(6381), - [anon_sym_BSLASHpnotecite] = ACTIONS(6381), - [anon_sym_BSLASHPnotecite] = ACTIONS(6381), - [anon_sym_BSLASHfnotecite] = ACTIONS(6381), - [anon_sym_BSLASHlabel] = ACTIONS(6381), - [anon_sym_BSLASHref] = ACTIONS(6381), - [anon_sym_BSLASHeqref] = ACTIONS(6381), - [anon_sym_BSLASHvref] = ACTIONS(6381), - [anon_sym_BSLASHVref] = ACTIONS(6381), - [anon_sym_BSLASHautoref] = ACTIONS(6381), - [anon_sym_BSLASHpageref] = ACTIONS(6381), - [anon_sym_BSLASHcref] = ACTIONS(6381), - [anon_sym_BSLASHCref] = ACTIONS(6381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnameCref] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6381), - [anon_sym_BSLASHlabelcref] = ACTIONS(6381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange] = ACTIONS(6381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHCrefrange] = ACTIONS(6381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6383), - [anon_sym_BSLASHnewlabel] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand] = ACTIONS(6381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6383), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6381), - [anon_sym_BSLASHdef] = ACTIONS(6381), - [anon_sym_BSLASHlet] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6381), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6381), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6381), - [anon_sym_BSLASHgls] = ACTIONS(6381), - [anon_sym_BSLASHGls] = ACTIONS(6381), - [anon_sym_BSLASHGLS] = ACTIONS(6381), - [anon_sym_BSLASHglspl] = ACTIONS(6381), - [anon_sym_BSLASHGlspl] = ACTIONS(6381), - [anon_sym_BSLASHGLSpl] = ACTIONS(6381), - [anon_sym_BSLASHglsdisp] = ACTIONS(6381), - [anon_sym_BSLASHglslink] = ACTIONS(6381), - [anon_sym_BSLASHglstext] = ACTIONS(6381), - [anon_sym_BSLASHGlstext] = ACTIONS(6381), - [anon_sym_BSLASHGLStext] = ACTIONS(6381), - [anon_sym_BSLASHglsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6381), - [anon_sym_BSLASHglsplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSplural] = ACTIONS(6381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6381), - [anon_sym_BSLASHglsname] = ACTIONS(6381), - [anon_sym_BSLASHGlsname] = ACTIONS(6381), - [anon_sym_BSLASHGLSname] = ACTIONS(6381), - [anon_sym_BSLASHglssymbol] = ACTIONS(6381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6381), - [anon_sym_BSLASHglsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6381), - [anon_sym_BSLASHglsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6381), - [anon_sym_BSLASHglsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6381), - [anon_sym_BSLASHglsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6381), - [anon_sym_BSLASHglsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6381), - [anon_sym_BSLASHnewacronym] = ACTIONS(6381), - [anon_sym_BSLASHacrshort] = ACTIONS(6381), - [anon_sym_BSLASHAcrshort] = ACTIONS(6381), - [anon_sym_BSLASHACRshort] = ACTIONS(6381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6381), - [anon_sym_BSLASHacrlong] = ACTIONS(6381), - [anon_sym_BSLASHAcrlong] = ACTIONS(6381), - [anon_sym_BSLASHACRlong] = ACTIONS(6381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6381), - [anon_sym_BSLASHacrfull] = ACTIONS(6381), - [anon_sym_BSLASHAcrfull] = ACTIONS(6381), - [anon_sym_BSLASHACRfull] = ACTIONS(6381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6381), - [anon_sym_BSLASHacs] = ACTIONS(6381), - [anon_sym_BSLASHAcs] = ACTIONS(6381), - [anon_sym_BSLASHacsp] = ACTIONS(6381), - [anon_sym_BSLASHAcsp] = ACTIONS(6381), - [anon_sym_BSLASHacl] = ACTIONS(6381), - [anon_sym_BSLASHAcl] = ACTIONS(6381), - [anon_sym_BSLASHaclp] = ACTIONS(6381), - [anon_sym_BSLASHAclp] = ACTIONS(6381), - [anon_sym_BSLASHacf] = ACTIONS(6381), - [anon_sym_BSLASHAcf] = ACTIONS(6381), - [anon_sym_BSLASHacfp] = ACTIONS(6381), - [anon_sym_BSLASHAcfp] = ACTIONS(6381), - [anon_sym_BSLASHac] = ACTIONS(6381), - [anon_sym_BSLASHAc] = ACTIONS(6381), - [anon_sym_BSLASHacp] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6381), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6381), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6383), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6381), - [anon_sym_BSLASHcolor] = ACTIONS(6381), - [anon_sym_BSLASHcolorbox] = ACTIONS(6381), - [anon_sym_BSLASHtextcolor] = ACTIONS(6381), - [anon_sym_BSLASHpagecolor] = ACTIONS(6381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6381), - }, - [1969] = { - [sym_command_name] = ACTIONS(6377), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6377), - [anon_sym_RBRACK] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_EQ] = ACTIONS(6379), - [anon_sym_RBRACE] = ACTIONS(6379), - [sym_word] = ACTIONS(6377), - [sym_placeholder] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6379), - [anon_sym_DASH] = ACTIONS(6379), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_COLON] = ACTIONS(6377), - [anon_sym_SQUOTE] = ACTIONS(6377), - [anon_sym__] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_BSLASHtitle] = ACTIONS(6377), - [anon_sym_BSLASHauthor] = ACTIONS(6377), - [anon_sym_BSLASHusepackage] = ACTIONS(6377), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6377), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6377), - [anon_sym_BSLASHinclude] = ACTIONS(6377), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6377), - [anon_sym_BSLASHinput] = ACTIONS(6377), - [anon_sym_BSLASHsubfile] = ACTIONS(6377), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6377), - [anon_sym_BSLASHbibliography] = ACTIONS(6377), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6377), - [anon_sym_BSLASHincludesvg] = ACTIONS(6377), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6377), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6377), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6377), - [anon_sym_BSLASHimport] = ACTIONS(6377), - [anon_sym_BSLASHsubimport] = ACTIONS(6377), - [anon_sym_BSLASHinputfrom] = ACTIONS(6377), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6377), - [anon_sym_BSLASHincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6377), - [anon_sym_BSLASHcaption] = ACTIONS(6377), - [anon_sym_BSLASHcite] = ACTIONS(6377), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCite] = ACTIONS(6377), - [anon_sym_BSLASHnocite] = ACTIONS(6377), - [anon_sym_BSLASHcitet] = ACTIONS(6377), - [anon_sym_BSLASHcitep] = ACTIONS(6377), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteauthor] = ACTIONS(6377), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6377), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitetitle] = ACTIONS(6377), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteyear] = ACTIONS(6377), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6379), - [anon_sym_BSLASHcitedate] = ACTIONS(6377), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6379), - [anon_sym_BSLASHciteurl] = ACTIONS(6377), - [anon_sym_BSLASHfullcite] = ACTIONS(6377), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6377), - [anon_sym_BSLASHcitealt] = ACTIONS(6377), - [anon_sym_BSLASHcitealp] = ACTIONS(6377), - [anon_sym_BSLASHcitetext] = ACTIONS(6377), - [anon_sym_BSLASHparencite] = ACTIONS(6377), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHParencite] = ACTIONS(6377), - [anon_sym_BSLASHfootcite] = ACTIONS(6377), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6377), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6377), - [anon_sym_BSLASHtextcite] = ACTIONS(6377), - [anon_sym_BSLASHTextcite] = ACTIONS(6377), - [anon_sym_BSLASHsmartcite] = ACTIONS(6377), - [anon_sym_BSLASHSmartcite] = ACTIONS(6377), - [anon_sym_BSLASHsupercite] = ACTIONS(6377), - [anon_sym_BSLASHautocite] = ACTIONS(6377), - [anon_sym_BSLASHAutocite] = ACTIONS(6377), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6379), - [anon_sym_BSLASHvolcite] = ACTIONS(6377), - [anon_sym_BSLASHVolcite] = ACTIONS(6377), - [anon_sym_BSLASHpvolcite] = ACTIONS(6377), - [anon_sym_BSLASHPvolcite] = ACTIONS(6377), - [anon_sym_BSLASHfvolcite] = ACTIONS(6377), - [anon_sym_BSLASHftvolcite] = ACTIONS(6377), - [anon_sym_BSLASHsvolcite] = ACTIONS(6377), - [anon_sym_BSLASHSvolcite] = ACTIONS(6377), - [anon_sym_BSLASHtvolcite] = ACTIONS(6377), - [anon_sym_BSLASHTvolcite] = ACTIONS(6377), - [anon_sym_BSLASHavolcite] = ACTIONS(6377), - [anon_sym_BSLASHAvolcite] = ACTIONS(6377), - [anon_sym_BSLASHnotecite] = ACTIONS(6377), - [anon_sym_BSLASHNotecite] = ACTIONS(6377), - [anon_sym_BSLASHpnotecite] = ACTIONS(6377), - [anon_sym_BSLASHPnotecite] = ACTIONS(6377), - [anon_sym_BSLASHfnotecite] = ACTIONS(6377), - [anon_sym_BSLASHlabel] = ACTIONS(6377), - [anon_sym_BSLASHref] = ACTIONS(6377), - [anon_sym_BSLASHeqref] = ACTIONS(6377), - [anon_sym_BSLASHvref] = ACTIONS(6377), - [anon_sym_BSLASHVref] = ACTIONS(6377), - [anon_sym_BSLASHautoref] = ACTIONS(6377), - [anon_sym_BSLASHpageref] = ACTIONS(6377), - [anon_sym_BSLASHcref] = ACTIONS(6377), - [anon_sym_BSLASHCref] = ACTIONS(6377), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnameCref] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6377), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6377), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6377), - [anon_sym_BSLASHlabelcref] = ACTIONS(6377), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange] = ACTIONS(6377), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHCrefrange] = ACTIONS(6377), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6379), - [anon_sym_BSLASHnewlabel] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand] = ACTIONS(6377), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6377), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6377), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6379), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6377), - [anon_sym_BSLASHdef] = ACTIONS(6377), - [anon_sym_BSLASHlet] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6377), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6377), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6377), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6377), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6377), - [anon_sym_BSLASHgls] = ACTIONS(6377), - [anon_sym_BSLASHGls] = ACTIONS(6377), - [anon_sym_BSLASHGLS] = ACTIONS(6377), - [anon_sym_BSLASHglspl] = ACTIONS(6377), - [anon_sym_BSLASHGlspl] = ACTIONS(6377), - [anon_sym_BSLASHGLSpl] = ACTIONS(6377), - [anon_sym_BSLASHglsdisp] = ACTIONS(6377), - [anon_sym_BSLASHglslink] = ACTIONS(6377), - [anon_sym_BSLASHglstext] = ACTIONS(6377), - [anon_sym_BSLASHGlstext] = ACTIONS(6377), - [anon_sym_BSLASHGLStext] = ACTIONS(6377), - [anon_sym_BSLASHglsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6377), - [anon_sym_BSLASHglsplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSplural] = ACTIONS(6377), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6377), - [anon_sym_BSLASHglsname] = ACTIONS(6377), - [anon_sym_BSLASHGlsname] = ACTIONS(6377), - [anon_sym_BSLASHGLSname] = ACTIONS(6377), - [anon_sym_BSLASHglssymbol] = ACTIONS(6377), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6377), - [anon_sym_BSLASHglsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6377), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6377), - [anon_sym_BSLASHglsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6377), - [anon_sym_BSLASHglsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6377), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6377), - [anon_sym_BSLASHglsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6377), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6377), - [anon_sym_BSLASHglsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6377), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6377), - [anon_sym_BSLASHnewacronym] = ACTIONS(6377), - [anon_sym_BSLASHacrshort] = ACTIONS(6377), - [anon_sym_BSLASHAcrshort] = ACTIONS(6377), - [anon_sym_BSLASHACRshort] = ACTIONS(6377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6377), - [anon_sym_BSLASHacrlong] = ACTIONS(6377), - [anon_sym_BSLASHAcrlong] = ACTIONS(6377), - [anon_sym_BSLASHACRlong] = ACTIONS(6377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6377), - [anon_sym_BSLASHacrfull] = ACTIONS(6377), - [anon_sym_BSLASHAcrfull] = ACTIONS(6377), - [anon_sym_BSLASHACRfull] = ACTIONS(6377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6377), - [anon_sym_BSLASHacs] = ACTIONS(6377), - [anon_sym_BSLASHAcs] = ACTIONS(6377), - [anon_sym_BSLASHacsp] = ACTIONS(6377), - [anon_sym_BSLASHAcsp] = ACTIONS(6377), - [anon_sym_BSLASHacl] = ACTIONS(6377), - [anon_sym_BSLASHAcl] = ACTIONS(6377), - [anon_sym_BSLASHaclp] = ACTIONS(6377), - [anon_sym_BSLASHAclp] = ACTIONS(6377), - [anon_sym_BSLASHacf] = ACTIONS(6377), - [anon_sym_BSLASHAcf] = ACTIONS(6377), - [anon_sym_BSLASHacfp] = ACTIONS(6377), - [anon_sym_BSLASHAcfp] = ACTIONS(6377), - [anon_sym_BSLASHac] = ACTIONS(6377), - [anon_sym_BSLASHAc] = ACTIONS(6377), - [anon_sym_BSLASHacp] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6377), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6377), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6377), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6377), - [anon_sym_BSLASHcolor] = ACTIONS(6377), - [anon_sym_BSLASHcolorbox] = ACTIONS(6377), - [anon_sym_BSLASHtextcolor] = ACTIONS(6377), - [anon_sym_BSLASHpagecolor] = ACTIONS(6377), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6377), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6377), - }, - [1970] = { - [sym_command_name] = ACTIONS(6373), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6373), - [anon_sym_RBRACK] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_EQ] = ACTIONS(6375), - [anon_sym_RBRACE] = ACTIONS(6375), - [sym_word] = ACTIONS(6373), - [sym_placeholder] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6375), - [anon_sym_DASH] = ACTIONS(6375), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6373), - [anon_sym_GT] = ACTIONS(6373), - [anon_sym_BANG] = ACTIONS(6373), - [anon_sym_PIPE] = ACTIONS(6373), - [anon_sym_COLON] = ACTIONS(6373), - [anon_sym_SQUOTE] = ACTIONS(6373), - [anon_sym__] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_BSLASHtitle] = ACTIONS(6373), - [anon_sym_BSLASHauthor] = ACTIONS(6373), - [anon_sym_BSLASHusepackage] = ACTIONS(6373), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6373), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6373), - [anon_sym_BSLASHinclude] = ACTIONS(6373), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6373), - [anon_sym_BSLASHinput] = ACTIONS(6373), - [anon_sym_BSLASHsubfile] = ACTIONS(6373), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6373), - [anon_sym_BSLASHbibliography] = ACTIONS(6373), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6373), - [anon_sym_BSLASHincludesvg] = ACTIONS(6373), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6373), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6373), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6373), - [anon_sym_BSLASHimport] = ACTIONS(6373), - [anon_sym_BSLASHsubimport] = ACTIONS(6373), - [anon_sym_BSLASHinputfrom] = ACTIONS(6373), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6373), - [anon_sym_BSLASHincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6373), - [anon_sym_BSLASHcaption] = ACTIONS(6373), - [anon_sym_BSLASHcite] = ACTIONS(6373), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCite] = ACTIONS(6373), - [anon_sym_BSLASHnocite] = ACTIONS(6373), - [anon_sym_BSLASHcitet] = ACTIONS(6373), - [anon_sym_BSLASHcitep] = ACTIONS(6373), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteauthor] = ACTIONS(6373), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6373), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitetitle] = ACTIONS(6373), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteyear] = ACTIONS(6373), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6375), - [anon_sym_BSLASHcitedate] = ACTIONS(6373), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6375), - [anon_sym_BSLASHciteurl] = ACTIONS(6373), - [anon_sym_BSLASHfullcite] = ACTIONS(6373), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6373), - [anon_sym_BSLASHcitealt] = ACTIONS(6373), - [anon_sym_BSLASHcitealp] = ACTIONS(6373), - [anon_sym_BSLASHcitetext] = ACTIONS(6373), - [anon_sym_BSLASHparencite] = ACTIONS(6373), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHParencite] = ACTIONS(6373), - [anon_sym_BSLASHfootcite] = ACTIONS(6373), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6373), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6373), - [anon_sym_BSLASHtextcite] = ACTIONS(6373), - [anon_sym_BSLASHTextcite] = ACTIONS(6373), - [anon_sym_BSLASHsmartcite] = ACTIONS(6373), - [anon_sym_BSLASHSmartcite] = ACTIONS(6373), - [anon_sym_BSLASHsupercite] = ACTIONS(6373), - [anon_sym_BSLASHautocite] = ACTIONS(6373), - [anon_sym_BSLASHAutocite] = ACTIONS(6373), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6375), - [anon_sym_BSLASHvolcite] = ACTIONS(6373), - [anon_sym_BSLASHVolcite] = ACTIONS(6373), - [anon_sym_BSLASHpvolcite] = ACTIONS(6373), - [anon_sym_BSLASHPvolcite] = ACTIONS(6373), - [anon_sym_BSLASHfvolcite] = ACTIONS(6373), - [anon_sym_BSLASHftvolcite] = ACTIONS(6373), - [anon_sym_BSLASHsvolcite] = ACTIONS(6373), - [anon_sym_BSLASHSvolcite] = ACTIONS(6373), - [anon_sym_BSLASHtvolcite] = ACTIONS(6373), - [anon_sym_BSLASHTvolcite] = ACTIONS(6373), - [anon_sym_BSLASHavolcite] = ACTIONS(6373), - [anon_sym_BSLASHAvolcite] = ACTIONS(6373), - [anon_sym_BSLASHnotecite] = ACTIONS(6373), - [anon_sym_BSLASHNotecite] = ACTIONS(6373), - [anon_sym_BSLASHpnotecite] = ACTIONS(6373), - [anon_sym_BSLASHPnotecite] = ACTIONS(6373), - [anon_sym_BSLASHfnotecite] = ACTIONS(6373), - [anon_sym_BSLASHlabel] = ACTIONS(6373), - [anon_sym_BSLASHref] = ACTIONS(6373), - [anon_sym_BSLASHeqref] = ACTIONS(6373), - [anon_sym_BSLASHvref] = ACTIONS(6373), - [anon_sym_BSLASHVref] = ACTIONS(6373), - [anon_sym_BSLASHautoref] = ACTIONS(6373), - [anon_sym_BSLASHpageref] = ACTIONS(6373), - [anon_sym_BSLASHcref] = ACTIONS(6373), - [anon_sym_BSLASHCref] = ACTIONS(6373), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnameCref] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6373), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6373), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6373), - [anon_sym_BSLASHlabelcref] = ACTIONS(6373), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange] = ACTIONS(6373), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHCrefrange] = ACTIONS(6373), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6375), - [anon_sym_BSLASHnewlabel] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand] = ACTIONS(6373), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6373), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6375), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6373), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6375), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6373), - [anon_sym_BSLASHdef] = ACTIONS(6373), - [anon_sym_BSLASHlet] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6373), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6373), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6373), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6373), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6373), - [anon_sym_BSLASHgls] = ACTIONS(6373), - [anon_sym_BSLASHGls] = ACTIONS(6373), - [anon_sym_BSLASHGLS] = ACTIONS(6373), - [anon_sym_BSLASHglspl] = ACTIONS(6373), - [anon_sym_BSLASHGlspl] = ACTIONS(6373), - [anon_sym_BSLASHGLSpl] = ACTIONS(6373), - [anon_sym_BSLASHglsdisp] = ACTIONS(6373), - [anon_sym_BSLASHglslink] = ACTIONS(6373), - [anon_sym_BSLASHglstext] = ACTIONS(6373), - [anon_sym_BSLASHGlstext] = ACTIONS(6373), - [anon_sym_BSLASHGLStext] = ACTIONS(6373), - [anon_sym_BSLASHglsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6373), - [anon_sym_BSLASHglsplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSplural] = ACTIONS(6373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6373), - [anon_sym_BSLASHglsname] = ACTIONS(6373), - [anon_sym_BSLASHGlsname] = ACTIONS(6373), - [anon_sym_BSLASHGLSname] = ACTIONS(6373), - [anon_sym_BSLASHglssymbol] = ACTIONS(6373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6373), - [anon_sym_BSLASHglsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6373), - [anon_sym_BSLASHglsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6373), - [anon_sym_BSLASHglsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6373), - [anon_sym_BSLASHglsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6373), - [anon_sym_BSLASHglsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6373), - [anon_sym_BSLASHnewacronym] = ACTIONS(6373), - [anon_sym_BSLASHacrshort] = ACTIONS(6373), - [anon_sym_BSLASHAcrshort] = ACTIONS(6373), - [anon_sym_BSLASHACRshort] = ACTIONS(6373), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6373), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6373), - [anon_sym_BSLASHacrlong] = ACTIONS(6373), - [anon_sym_BSLASHAcrlong] = ACTIONS(6373), - [anon_sym_BSLASHACRlong] = ACTIONS(6373), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6373), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6373), - [anon_sym_BSLASHacrfull] = ACTIONS(6373), - [anon_sym_BSLASHAcrfull] = ACTIONS(6373), - [anon_sym_BSLASHACRfull] = ACTIONS(6373), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6373), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6373), - [anon_sym_BSLASHacs] = ACTIONS(6373), - [anon_sym_BSLASHAcs] = ACTIONS(6373), - [anon_sym_BSLASHacsp] = ACTIONS(6373), - [anon_sym_BSLASHAcsp] = ACTIONS(6373), - [anon_sym_BSLASHacl] = ACTIONS(6373), - [anon_sym_BSLASHAcl] = ACTIONS(6373), - [anon_sym_BSLASHaclp] = ACTIONS(6373), - [anon_sym_BSLASHAclp] = ACTIONS(6373), - [anon_sym_BSLASHacf] = ACTIONS(6373), - [anon_sym_BSLASHAcf] = ACTIONS(6373), - [anon_sym_BSLASHacfp] = ACTIONS(6373), - [anon_sym_BSLASHAcfp] = ACTIONS(6373), - [anon_sym_BSLASHac] = ACTIONS(6373), - [anon_sym_BSLASHAc] = ACTIONS(6373), - [anon_sym_BSLASHacp] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6373), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6373), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6373), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6373), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6373), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6375), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6373), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6373), - [anon_sym_BSLASHcolor] = ACTIONS(6373), - [anon_sym_BSLASHcolorbox] = ACTIONS(6373), - [anon_sym_BSLASHtextcolor] = ACTIONS(6373), - [anon_sym_BSLASHpagecolor] = ACTIONS(6373), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6373), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6373), - }, - [1971] = { - [sym_command_name] = ACTIONS(6369), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6369), - [anon_sym_RBRACK] = ACTIONS(6371), - [anon_sym_COMMA] = ACTIONS(6371), - [anon_sym_EQ] = ACTIONS(6371), - [anon_sym_RBRACE] = ACTIONS(6371), - [sym_word] = ACTIONS(6369), - [sym_placeholder] = ACTIONS(6371), - [anon_sym_PLUS] = ACTIONS(6371), - [anon_sym_DASH] = ACTIONS(6371), - [anon_sym_STAR] = ACTIONS(6371), - [anon_sym_SLASH] = ACTIONS(6371), - [anon_sym_LT] = ACTIONS(6369), - [anon_sym_GT] = ACTIONS(6369), - [anon_sym_BANG] = ACTIONS(6369), - [anon_sym_PIPE] = ACTIONS(6369), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_SQUOTE] = ACTIONS(6369), - [anon_sym__] = ACTIONS(6371), - [anon_sym_CARET] = ACTIONS(6371), - [anon_sym_BSLASHtitle] = ACTIONS(6369), - [anon_sym_BSLASHauthor] = ACTIONS(6369), - [anon_sym_BSLASHusepackage] = ACTIONS(6369), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6369), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6369), - [anon_sym_BSLASHinclude] = ACTIONS(6369), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6369), - [anon_sym_BSLASHinput] = ACTIONS(6369), - [anon_sym_BSLASHsubfile] = ACTIONS(6369), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6369), - [anon_sym_BSLASHbibliography] = ACTIONS(6369), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6369), - [anon_sym_BSLASHincludesvg] = ACTIONS(6369), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6369), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6369), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6369), - [anon_sym_BSLASHimport] = ACTIONS(6369), - [anon_sym_BSLASHsubimport] = ACTIONS(6369), - [anon_sym_BSLASHinputfrom] = ACTIONS(6369), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6369), - [anon_sym_BSLASHincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6369), - [anon_sym_BSLASHcaption] = ACTIONS(6369), - [anon_sym_BSLASHcite] = ACTIONS(6369), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCite] = ACTIONS(6369), - [anon_sym_BSLASHnocite] = ACTIONS(6369), - [anon_sym_BSLASHcitet] = ACTIONS(6369), - [anon_sym_BSLASHcitep] = ACTIONS(6369), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteauthor] = ACTIONS(6369), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6369), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitetitle] = ACTIONS(6369), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteyear] = ACTIONS(6369), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6371), - [anon_sym_BSLASHcitedate] = ACTIONS(6369), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6371), - [anon_sym_BSLASHciteurl] = ACTIONS(6369), - [anon_sym_BSLASHfullcite] = ACTIONS(6369), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6369), - [anon_sym_BSLASHcitealt] = ACTIONS(6369), - [anon_sym_BSLASHcitealp] = ACTIONS(6369), - [anon_sym_BSLASHcitetext] = ACTIONS(6369), - [anon_sym_BSLASHparencite] = ACTIONS(6369), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHParencite] = ACTIONS(6369), - [anon_sym_BSLASHfootcite] = ACTIONS(6369), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6369), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6369), - [anon_sym_BSLASHtextcite] = ACTIONS(6369), - [anon_sym_BSLASHTextcite] = ACTIONS(6369), - [anon_sym_BSLASHsmartcite] = ACTIONS(6369), - [anon_sym_BSLASHSmartcite] = ACTIONS(6369), - [anon_sym_BSLASHsupercite] = ACTIONS(6369), - [anon_sym_BSLASHautocite] = ACTIONS(6369), - [anon_sym_BSLASHAutocite] = ACTIONS(6369), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6371), - [anon_sym_BSLASHvolcite] = ACTIONS(6369), - [anon_sym_BSLASHVolcite] = ACTIONS(6369), - [anon_sym_BSLASHpvolcite] = ACTIONS(6369), - [anon_sym_BSLASHPvolcite] = ACTIONS(6369), - [anon_sym_BSLASHfvolcite] = ACTIONS(6369), - [anon_sym_BSLASHftvolcite] = ACTIONS(6369), - [anon_sym_BSLASHsvolcite] = ACTIONS(6369), - [anon_sym_BSLASHSvolcite] = ACTIONS(6369), - [anon_sym_BSLASHtvolcite] = ACTIONS(6369), - [anon_sym_BSLASHTvolcite] = ACTIONS(6369), - [anon_sym_BSLASHavolcite] = ACTIONS(6369), - [anon_sym_BSLASHAvolcite] = ACTIONS(6369), - [anon_sym_BSLASHnotecite] = ACTIONS(6369), - [anon_sym_BSLASHNotecite] = ACTIONS(6369), - [anon_sym_BSLASHpnotecite] = ACTIONS(6369), - [anon_sym_BSLASHPnotecite] = ACTIONS(6369), - [anon_sym_BSLASHfnotecite] = ACTIONS(6369), - [anon_sym_BSLASHlabel] = ACTIONS(6369), - [anon_sym_BSLASHref] = ACTIONS(6369), - [anon_sym_BSLASHeqref] = ACTIONS(6369), - [anon_sym_BSLASHvref] = ACTIONS(6369), - [anon_sym_BSLASHVref] = ACTIONS(6369), - [anon_sym_BSLASHautoref] = ACTIONS(6369), - [anon_sym_BSLASHpageref] = ACTIONS(6369), - [anon_sym_BSLASHcref] = ACTIONS(6369), - [anon_sym_BSLASHCref] = ACTIONS(6369), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnameCref] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6369), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6369), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6369), - [anon_sym_BSLASHlabelcref] = ACTIONS(6369), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange] = ACTIONS(6369), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHCrefrange] = ACTIONS(6369), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6371), - [anon_sym_BSLASHnewlabel] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand] = ACTIONS(6369), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6369), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6371), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6369), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6371), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6369), - [anon_sym_BSLASHdef] = ACTIONS(6369), - [anon_sym_BSLASHlet] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6369), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6369), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6369), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6369), - [anon_sym_BSLASHgls] = ACTIONS(6369), - [anon_sym_BSLASHGls] = ACTIONS(6369), - [anon_sym_BSLASHGLS] = ACTIONS(6369), - [anon_sym_BSLASHglspl] = ACTIONS(6369), - [anon_sym_BSLASHGlspl] = ACTIONS(6369), - [anon_sym_BSLASHGLSpl] = ACTIONS(6369), - [anon_sym_BSLASHglsdisp] = ACTIONS(6369), - [anon_sym_BSLASHglslink] = ACTIONS(6369), - [anon_sym_BSLASHglstext] = ACTIONS(6369), - [anon_sym_BSLASHGlstext] = ACTIONS(6369), - [anon_sym_BSLASHGLStext] = ACTIONS(6369), - [anon_sym_BSLASHglsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6369), - [anon_sym_BSLASHglsplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSplural] = ACTIONS(6369), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6369), - [anon_sym_BSLASHglsname] = ACTIONS(6369), - [anon_sym_BSLASHGlsname] = ACTIONS(6369), - [anon_sym_BSLASHGLSname] = ACTIONS(6369), - [anon_sym_BSLASHglssymbol] = ACTIONS(6369), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6369), - [anon_sym_BSLASHglsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6369), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6369), - [anon_sym_BSLASHglsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6369), - [anon_sym_BSLASHglsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6369), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6369), - [anon_sym_BSLASHglsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6369), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6369), - [anon_sym_BSLASHglsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6369), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6369), - [anon_sym_BSLASHnewacronym] = ACTIONS(6369), - [anon_sym_BSLASHacrshort] = ACTIONS(6369), - [anon_sym_BSLASHAcrshort] = ACTIONS(6369), - [anon_sym_BSLASHACRshort] = ACTIONS(6369), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6369), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6369), - [anon_sym_BSLASHacrlong] = ACTIONS(6369), - [anon_sym_BSLASHAcrlong] = ACTIONS(6369), - [anon_sym_BSLASHACRlong] = ACTIONS(6369), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6369), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6369), - [anon_sym_BSLASHacrfull] = ACTIONS(6369), - [anon_sym_BSLASHAcrfull] = ACTIONS(6369), - [anon_sym_BSLASHACRfull] = ACTIONS(6369), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6369), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6369), - [anon_sym_BSLASHacs] = ACTIONS(6369), - [anon_sym_BSLASHAcs] = ACTIONS(6369), - [anon_sym_BSLASHacsp] = ACTIONS(6369), - [anon_sym_BSLASHAcsp] = ACTIONS(6369), - [anon_sym_BSLASHacl] = ACTIONS(6369), - [anon_sym_BSLASHAcl] = ACTIONS(6369), - [anon_sym_BSLASHaclp] = ACTIONS(6369), - [anon_sym_BSLASHAclp] = ACTIONS(6369), - [anon_sym_BSLASHacf] = ACTIONS(6369), - [anon_sym_BSLASHAcf] = ACTIONS(6369), - [anon_sym_BSLASHacfp] = ACTIONS(6369), - [anon_sym_BSLASHAcfp] = ACTIONS(6369), - [anon_sym_BSLASHac] = ACTIONS(6369), - [anon_sym_BSLASHAc] = ACTIONS(6369), - [anon_sym_BSLASHacp] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6369), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6369), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6369), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6369), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6369), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6369), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6369), - [anon_sym_BSLASHcolor] = ACTIONS(6369), - [anon_sym_BSLASHcolorbox] = ACTIONS(6369), - [anon_sym_BSLASHtextcolor] = ACTIONS(6369), - [anon_sym_BSLASHpagecolor] = ACTIONS(6369), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6369), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6369), - }, - [1972] = { - [sym_command_name] = ACTIONS(6365), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6365), - [anon_sym_RBRACK] = ACTIONS(6367), - [anon_sym_COMMA] = ACTIONS(6367), - [anon_sym_EQ] = ACTIONS(6367), - [anon_sym_RBRACE] = ACTIONS(6367), - [sym_word] = ACTIONS(6365), - [sym_placeholder] = ACTIONS(6367), - [anon_sym_PLUS] = ACTIONS(6367), - [anon_sym_DASH] = ACTIONS(6367), - [anon_sym_STAR] = ACTIONS(6367), - [anon_sym_SLASH] = ACTIONS(6367), - [anon_sym_LT] = ACTIONS(6365), - [anon_sym_GT] = ACTIONS(6365), - [anon_sym_BANG] = ACTIONS(6365), - [anon_sym_PIPE] = ACTIONS(6365), - [anon_sym_COLON] = ACTIONS(6365), - [anon_sym_SQUOTE] = ACTIONS(6365), - [anon_sym__] = ACTIONS(6367), - [anon_sym_CARET] = ACTIONS(6367), - [anon_sym_BSLASHtitle] = ACTIONS(6365), - [anon_sym_BSLASHauthor] = ACTIONS(6365), - [anon_sym_BSLASHusepackage] = ACTIONS(6365), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6365), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6365), - [anon_sym_BSLASHinclude] = ACTIONS(6365), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6365), - [anon_sym_BSLASHinput] = ACTIONS(6365), - [anon_sym_BSLASHsubfile] = ACTIONS(6365), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6365), - [anon_sym_BSLASHbibliography] = ACTIONS(6365), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6365), - [anon_sym_BSLASHincludesvg] = ACTIONS(6365), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6365), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6365), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6365), - [anon_sym_BSLASHimport] = ACTIONS(6365), - [anon_sym_BSLASHsubimport] = ACTIONS(6365), - [anon_sym_BSLASHinputfrom] = ACTIONS(6365), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6365), - [anon_sym_BSLASHincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6365), - [anon_sym_BSLASHcaption] = ACTIONS(6365), - [anon_sym_BSLASHcite] = ACTIONS(6365), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCite] = ACTIONS(6365), - [anon_sym_BSLASHnocite] = ACTIONS(6365), - [anon_sym_BSLASHcitet] = ACTIONS(6365), - [anon_sym_BSLASHcitep] = ACTIONS(6365), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteauthor] = ACTIONS(6365), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6365), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitetitle] = ACTIONS(6365), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteyear] = ACTIONS(6365), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6367), - [anon_sym_BSLASHcitedate] = ACTIONS(6365), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6367), - [anon_sym_BSLASHciteurl] = ACTIONS(6365), - [anon_sym_BSLASHfullcite] = ACTIONS(6365), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6365), - [anon_sym_BSLASHcitealt] = ACTIONS(6365), - [anon_sym_BSLASHcitealp] = ACTIONS(6365), - [anon_sym_BSLASHcitetext] = ACTIONS(6365), - [anon_sym_BSLASHparencite] = ACTIONS(6365), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHParencite] = ACTIONS(6365), - [anon_sym_BSLASHfootcite] = ACTIONS(6365), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6365), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6365), - [anon_sym_BSLASHtextcite] = ACTIONS(6365), - [anon_sym_BSLASHTextcite] = ACTIONS(6365), - [anon_sym_BSLASHsmartcite] = ACTIONS(6365), - [anon_sym_BSLASHSmartcite] = ACTIONS(6365), - [anon_sym_BSLASHsupercite] = ACTIONS(6365), - [anon_sym_BSLASHautocite] = ACTIONS(6365), - [anon_sym_BSLASHAutocite] = ACTIONS(6365), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6367), - [anon_sym_BSLASHvolcite] = ACTIONS(6365), - [anon_sym_BSLASHVolcite] = ACTIONS(6365), - [anon_sym_BSLASHpvolcite] = ACTIONS(6365), - [anon_sym_BSLASHPvolcite] = ACTIONS(6365), - [anon_sym_BSLASHfvolcite] = ACTIONS(6365), - [anon_sym_BSLASHftvolcite] = ACTIONS(6365), - [anon_sym_BSLASHsvolcite] = ACTIONS(6365), - [anon_sym_BSLASHSvolcite] = ACTIONS(6365), - [anon_sym_BSLASHtvolcite] = ACTIONS(6365), - [anon_sym_BSLASHTvolcite] = ACTIONS(6365), - [anon_sym_BSLASHavolcite] = ACTIONS(6365), - [anon_sym_BSLASHAvolcite] = ACTIONS(6365), - [anon_sym_BSLASHnotecite] = ACTIONS(6365), - [anon_sym_BSLASHNotecite] = ACTIONS(6365), - [anon_sym_BSLASHpnotecite] = ACTIONS(6365), - [anon_sym_BSLASHPnotecite] = ACTIONS(6365), - [anon_sym_BSLASHfnotecite] = ACTIONS(6365), - [anon_sym_BSLASHlabel] = ACTIONS(6365), - [anon_sym_BSLASHref] = ACTIONS(6365), - [anon_sym_BSLASHeqref] = ACTIONS(6365), - [anon_sym_BSLASHvref] = ACTIONS(6365), - [anon_sym_BSLASHVref] = ACTIONS(6365), - [anon_sym_BSLASHautoref] = ACTIONS(6365), - [anon_sym_BSLASHpageref] = ACTIONS(6365), - [anon_sym_BSLASHcref] = ACTIONS(6365), - [anon_sym_BSLASHCref] = ACTIONS(6365), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnameCref] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6365), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6365), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6365), - [anon_sym_BSLASHlabelcref] = ACTIONS(6365), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange] = ACTIONS(6365), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHCrefrange] = ACTIONS(6365), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6367), - [anon_sym_BSLASHnewlabel] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand] = ACTIONS(6365), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6365), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6367), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6365), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6367), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6365), - [anon_sym_BSLASHdef] = ACTIONS(6365), - [anon_sym_BSLASHlet] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6365), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6365), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6365), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6365), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6365), - [anon_sym_BSLASHgls] = ACTIONS(6365), - [anon_sym_BSLASHGls] = ACTIONS(6365), - [anon_sym_BSLASHGLS] = ACTIONS(6365), - [anon_sym_BSLASHglspl] = ACTIONS(6365), - [anon_sym_BSLASHGlspl] = ACTIONS(6365), - [anon_sym_BSLASHGLSpl] = ACTIONS(6365), - [anon_sym_BSLASHglsdisp] = ACTIONS(6365), - [anon_sym_BSLASHglslink] = ACTIONS(6365), - [anon_sym_BSLASHglstext] = ACTIONS(6365), - [anon_sym_BSLASHGlstext] = ACTIONS(6365), - [anon_sym_BSLASHGLStext] = ACTIONS(6365), - [anon_sym_BSLASHglsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6365), - [anon_sym_BSLASHglsplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSplural] = ACTIONS(6365), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6365), - [anon_sym_BSLASHglsname] = ACTIONS(6365), - [anon_sym_BSLASHGlsname] = ACTIONS(6365), - [anon_sym_BSLASHGLSname] = ACTIONS(6365), - [anon_sym_BSLASHglssymbol] = ACTIONS(6365), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6365), - [anon_sym_BSLASHglsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6365), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6365), - [anon_sym_BSLASHglsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6365), - [anon_sym_BSLASHglsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6365), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6365), - [anon_sym_BSLASHglsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6365), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6365), - [anon_sym_BSLASHglsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6365), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6365), - [anon_sym_BSLASHnewacronym] = ACTIONS(6365), - [anon_sym_BSLASHacrshort] = ACTIONS(6365), - [anon_sym_BSLASHAcrshort] = ACTIONS(6365), - [anon_sym_BSLASHACRshort] = ACTIONS(6365), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6365), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6365), - [anon_sym_BSLASHacrlong] = ACTIONS(6365), - [anon_sym_BSLASHAcrlong] = ACTIONS(6365), - [anon_sym_BSLASHACRlong] = ACTIONS(6365), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6365), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6365), - [anon_sym_BSLASHacrfull] = ACTIONS(6365), - [anon_sym_BSLASHAcrfull] = ACTIONS(6365), - [anon_sym_BSLASHACRfull] = ACTIONS(6365), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6365), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6365), - [anon_sym_BSLASHacs] = ACTIONS(6365), - [anon_sym_BSLASHAcs] = ACTIONS(6365), - [anon_sym_BSLASHacsp] = ACTIONS(6365), - [anon_sym_BSLASHAcsp] = ACTIONS(6365), - [anon_sym_BSLASHacl] = ACTIONS(6365), - [anon_sym_BSLASHAcl] = ACTIONS(6365), - [anon_sym_BSLASHaclp] = ACTIONS(6365), - [anon_sym_BSLASHAclp] = ACTIONS(6365), - [anon_sym_BSLASHacf] = ACTIONS(6365), - [anon_sym_BSLASHAcf] = ACTIONS(6365), - [anon_sym_BSLASHacfp] = ACTIONS(6365), - [anon_sym_BSLASHAcfp] = ACTIONS(6365), - [anon_sym_BSLASHac] = ACTIONS(6365), - [anon_sym_BSLASHAc] = ACTIONS(6365), - [anon_sym_BSLASHacp] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6365), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6365), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6365), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6365), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6365), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6365), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6365), - [anon_sym_BSLASHcolor] = ACTIONS(6365), - [anon_sym_BSLASHcolorbox] = ACTIONS(6365), - [anon_sym_BSLASHtextcolor] = ACTIONS(6365), - [anon_sym_BSLASHpagecolor] = ACTIONS(6365), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6365), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6365), - }, - [1973] = { - [sym_command_name] = ACTIONS(6361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6361), - [anon_sym_RBRACK] = ACTIONS(6363), - [anon_sym_COMMA] = ACTIONS(6363), - [anon_sym_EQ] = ACTIONS(6363), - [anon_sym_RBRACE] = ACTIONS(6363), - [sym_word] = ACTIONS(6361), - [sym_placeholder] = ACTIONS(6363), - [anon_sym_PLUS] = ACTIONS(6363), - [anon_sym_DASH] = ACTIONS(6363), - [anon_sym_STAR] = ACTIONS(6363), - [anon_sym_SLASH] = ACTIONS(6363), - [anon_sym_LT] = ACTIONS(6361), - [anon_sym_GT] = ACTIONS(6361), - [anon_sym_BANG] = ACTIONS(6361), - [anon_sym_PIPE] = ACTIONS(6361), - [anon_sym_COLON] = ACTIONS(6361), - [anon_sym_SQUOTE] = ACTIONS(6361), - [anon_sym__] = ACTIONS(6363), - [anon_sym_CARET] = ACTIONS(6363), - [anon_sym_BSLASHtitle] = ACTIONS(6361), - [anon_sym_BSLASHauthor] = ACTIONS(6361), - [anon_sym_BSLASHusepackage] = ACTIONS(6361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6361), - [anon_sym_BSLASHinclude] = ACTIONS(6361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6361), - [anon_sym_BSLASHinput] = ACTIONS(6361), - [anon_sym_BSLASHsubfile] = ACTIONS(6361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6361), - [anon_sym_BSLASHbibliography] = ACTIONS(6361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6361), - [anon_sym_BSLASHincludesvg] = ACTIONS(6361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6361), - [anon_sym_BSLASHimport] = ACTIONS(6361), - [anon_sym_BSLASHsubimport] = ACTIONS(6361), - [anon_sym_BSLASHinputfrom] = ACTIONS(6361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6361), - [anon_sym_BSLASHincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6361), - [anon_sym_BSLASHcaption] = ACTIONS(6361), - [anon_sym_BSLASHcite] = ACTIONS(6361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCite] = ACTIONS(6361), - [anon_sym_BSLASHnocite] = ACTIONS(6361), - [anon_sym_BSLASHcitet] = ACTIONS(6361), - [anon_sym_BSLASHcitep] = ACTIONS(6361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteauthor] = ACTIONS(6361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitetitle] = ACTIONS(6361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteyear] = ACTIONS(6361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6363), - [anon_sym_BSLASHcitedate] = ACTIONS(6361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6363), - [anon_sym_BSLASHciteurl] = ACTIONS(6361), - [anon_sym_BSLASHfullcite] = ACTIONS(6361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6361), - [anon_sym_BSLASHcitealt] = ACTIONS(6361), - [anon_sym_BSLASHcitealp] = ACTIONS(6361), - [anon_sym_BSLASHcitetext] = ACTIONS(6361), - [anon_sym_BSLASHparencite] = ACTIONS(6361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHParencite] = ACTIONS(6361), - [anon_sym_BSLASHfootcite] = ACTIONS(6361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6361), - [anon_sym_BSLASHtextcite] = ACTIONS(6361), - [anon_sym_BSLASHTextcite] = ACTIONS(6361), - [anon_sym_BSLASHsmartcite] = ACTIONS(6361), - [anon_sym_BSLASHSmartcite] = ACTIONS(6361), - [anon_sym_BSLASHsupercite] = ACTIONS(6361), - [anon_sym_BSLASHautocite] = ACTIONS(6361), - [anon_sym_BSLASHAutocite] = ACTIONS(6361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6363), - [anon_sym_BSLASHvolcite] = ACTIONS(6361), - [anon_sym_BSLASHVolcite] = ACTIONS(6361), - [anon_sym_BSLASHpvolcite] = ACTIONS(6361), - [anon_sym_BSLASHPvolcite] = ACTIONS(6361), - [anon_sym_BSLASHfvolcite] = ACTIONS(6361), - [anon_sym_BSLASHftvolcite] = ACTIONS(6361), - [anon_sym_BSLASHsvolcite] = ACTIONS(6361), - [anon_sym_BSLASHSvolcite] = ACTIONS(6361), - [anon_sym_BSLASHtvolcite] = ACTIONS(6361), - [anon_sym_BSLASHTvolcite] = ACTIONS(6361), - [anon_sym_BSLASHavolcite] = ACTIONS(6361), - [anon_sym_BSLASHAvolcite] = ACTIONS(6361), - [anon_sym_BSLASHnotecite] = ACTIONS(6361), - [anon_sym_BSLASHNotecite] = ACTIONS(6361), - [anon_sym_BSLASHpnotecite] = ACTIONS(6361), - [anon_sym_BSLASHPnotecite] = ACTIONS(6361), - [anon_sym_BSLASHfnotecite] = ACTIONS(6361), - [anon_sym_BSLASHlabel] = ACTIONS(6361), - [anon_sym_BSLASHref] = ACTIONS(6361), - [anon_sym_BSLASHeqref] = ACTIONS(6361), - [anon_sym_BSLASHvref] = ACTIONS(6361), - [anon_sym_BSLASHVref] = ACTIONS(6361), - [anon_sym_BSLASHautoref] = ACTIONS(6361), - [anon_sym_BSLASHpageref] = ACTIONS(6361), - [anon_sym_BSLASHcref] = ACTIONS(6361), - [anon_sym_BSLASHCref] = ACTIONS(6361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnameCref] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6361), - [anon_sym_BSLASHlabelcref] = ACTIONS(6361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange] = ACTIONS(6361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHCrefrange] = ACTIONS(6361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6363), - [anon_sym_BSLASHnewlabel] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand] = ACTIONS(6361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6363), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6361), - [anon_sym_BSLASHdef] = ACTIONS(6361), - [anon_sym_BSLASHlet] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6361), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6361), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6361), - [anon_sym_BSLASHgls] = ACTIONS(6361), - [anon_sym_BSLASHGls] = ACTIONS(6361), - [anon_sym_BSLASHGLS] = ACTIONS(6361), - [anon_sym_BSLASHglspl] = ACTIONS(6361), - [anon_sym_BSLASHGlspl] = ACTIONS(6361), - [anon_sym_BSLASHGLSpl] = ACTIONS(6361), - [anon_sym_BSLASHglsdisp] = ACTIONS(6361), - [anon_sym_BSLASHglslink] = ACTIONS(6361), - [anon_sym_BSLASHglstext] = ACTIONS(6361), - [anon_sym_BSLASHGlstext] = ACTIONS(6361), - [anon_sym_BSLASHGLStext] = ACTIONS(6361), - [anon_sym_BSLASHglsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6361), - [anon_sym_BSLASHglsplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSplural] = ACTIONS(6361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6361), - [anon_sym_BSLASHglsname] = ACTIONS(6361), - [anon_sym_BSLASHGlsname] = ACTIONS(6361), - [anon_sym_BSLASHGLSname] = ACTIONS(6361), - [anon_sym_BSLASHglssymbol] = ACTIONS(6361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6361), - [anon_sym_BSLASHglsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6361), - [anon_sym_BSLASHglsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6361), - [anon_sym_BSLASHglsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6361), - [anon_sym_BSLASHglsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6361), - [anon_sym_BSLASHglsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6361), - [anon_sym_BSLASHnewacronym] = ACTIONS(6361), - [anon_sym_BSLASHacrshort] = ACTIONS(6361), - [anon_sym_BSLASHAcrshort] = ACTIONS(6361), - [anon_sym_BSLASHACRshort] = ACTIONS(6361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6361), - [anon_sym_BSLASHacrlong] = ACTIONS(6361), - [anon_sym_BSLASHAcrlong] = ACTIONS(6361), - [anon_sym_BSLASHACRlong] = ACTIONS(6361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6361), - [anon_sym_BSLASHacrfull] = ACTIONS(6361), - [anon_sym_BSLASHAcrfull] = ACTIONS(6361), - [anon_sym_BSLASHACRfull] = ACTIONS(6361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6361), - [anon_sym_BSLASHacs] = ACTIONS(6361), - [anon_sym_BSLASHAcs] = ACTIONS(6361), - [anon_sym_BSLASHacsp] = ACTIONS(6361), - [anon_sym_BSLASHAcsp] = ACTIONS(6361), - [anon_sym_BSLASHacl] = ACTIONS(6361), - [anon_sym_BSLASHAcl] = ACTIONS(6361), - [anon_sym_BSLASHaclp] = ACTIONS(6361), - [anon_sym_BSLASHAclp] = ACTIONS(6361), - [anon_sym_BSLASHacf] = ACTIONS(6361), - [anon_sym_BSLASHAcf] = ACTIONS(6361), - [anon_sym_BSLASHacfp] = ACTIONS(6361), - [anon_sym_BSLASHAcfp] = ACTIONS(6361), - [anon_sym_BSLASHac] = ACTIONS(6361), - [anon_sym_BSLASHAc] = ACTIONS(6361), - [anon_sym_BSLASHacp] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6361), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6361), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6361), - [anon_sym_BSLASHcolor] = ACTIONS(6361), - [anon_sym_BSLASHcolorbox] = ACTIONS(6361), - [anon_sym_BSLASHtextcolor] = ACTIONS(6361), - [anon_sym_BSLASHpagecolor] = ACTIONS(6361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6361), - }, - [1974] = { - [sym_command_name] = ACTIONS(6357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6357), - [anon_sym_RBRACK] = ACTIONS(6359), - [anon_sym_COMMA] = ACTIONS(6359), - [anon_sym_EQ] = ACTIONS(6359), - [anon_sym_RBRACE] = ACTIONS(6359), - [sym_word] = ACTIONS(6357), - [sym_placeholder] = ACTIONS(6359), - [anon_sym_PLUS] = ACTIONS(6359), - [anon_sym_DASH] = ACTIONS(6359), - [anon_sym_STAR] = ACTIONS(6359), - [anon_sym_SLASH] = ACTIONS(6359), - [anon_sym_LT] = ACTIONS(6357), - [anon_sym_GT] = ACTIONS(6357), - [anon_sym_BANG] = ACTIONS(6357), - [anon_sym_PIPE] = ACTIONS(6357), - [anon_sym_COLON] = ACTIONS(6357), - [anon_sym_SQUOTE] = ACTIONS(6357), - [anon_sym__] = ACTIONS(6359), - [anon_sym_CARET] = ACTIONS(6359), - [anon_sym_BSLASHtitle] = ACTIONS(6357), - [anon_sym_BSLASHauthor] = ACTIONS(6357), - [anon_sym_BSLASHusepackage] = ACTIONS(6357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6357), - [anon_sym_BSLASHinclude] = ACTIONS(6357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6357), - [anon_sym_BSLASHinput] = ACTIONS(6357), - [anon_sym_BSLASHsubfile] = ACTIONS(6357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6357), - [anon_sym_BSLASHbibliography] = ACTIONS(6357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6357), - [anon_sym_BSLASHincludesvg] = ACTIONS(6357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6357), - [anon_sym_BSLASHimport] = ACTIONS(6357), - [anon_sym_BSLASHsubimport] = ACTIONS(6357), - [anon_sym_BSLASHinputfrom] = ACTIONS(6357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6357), - [anon_sym_BSLASHincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6357), - [anon_sym_BSLASHcaption] = ACTIONS(6357), - [anon_sym_BSLASHcite] = ACTIONS(6357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCite] = ACTIONS(6357), - [anon_sym_BSLASHnocite] = ACTIONS(6357), - [anon_sym_BSLASHcitet] = ACTIONS(6357), - [anon_sym_BSLASHcitep] = ACTIONS(6357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteauthor] = ACTIONS(6357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitetitle] = ACTIONS(6357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteyear] = ACTIONS(6357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6359), - [anon_sym_BSLASHcitedate] = ACTIONS(6357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6359), - [anon_sym_BSLASHciteurl] = ACTIONS(6357), - [anon_sym_BSLASHfullcite] = ACTIONS(6357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6357), - [anon_sym_BSLASHcitealt] = ACTIONS(6357), - [anon_sym_BSLASHcitealp] = ACTIONS(6357), - [anon_sym_BSLASHcitetext] = ACTIONS(6357), - [anon_sym_BSLASHparencite] = ACTIONS(6357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHParencite] = ACTIONS(6357), - [anon_sym_BSLASHfootcite] = ACTIONS(6357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6357), - [anon_sym_BSLASHtextcite] = ACTIONS(6357), - [anon_sym_BSLASHTextcite] = ACTIONS(6357), - [anon_sym_BSLASHsmartcite] = ACTIONS(6357), - [anon_sym_BSLASHSmartcite] = ACTIONS(6357), - [anon_sym_BSLASHsupercite] = ACTIONS(6357), - [anon_sym_BSLASHautocite] = ACTIONS(6357), - [anon_sym_BSLASHAutocite] = ACTIONS(6357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6359), - [anon_sym_BSLASHvolcite] = ACTIONS(6357), - [anon_sym_BSLASHVolcite] = ACTIONS(6357), - [anon_sym_BSLASHpvolcite] = ACTIONS(6357), - [anon_sym_BSLASHPvolcite] = ACTIONS(6357), - [anon_sym_BSLASHfvolcite] = ACTIONS(6357), - [anon_sym_BSLASHftvolcite] = ACTIONS(6357), - [anon_sym_BSLASHsvolcite] = ACTIONS(6357), - [anon_sym_BSLASHSvolcite] = ACTIONS(6357), - [anon_sym_BSLASHtvolcite] = ACTIONS(6357), - [anon_sym_BSLASHTvolcite] = ACTIONS(6357), - [anon_sym_BSLASHavolcite] = ACTIONS(6357), - [anon_sym_BSLASHAvolcite] = ACTIONS(6357), - [anon_sym_BSLASHnotecite] = ACTIONS(6357), - [anon_sym_BSLASHNotecite] = ACTIONS(6357), - [anon_sym_BSLASHpnotecite] = ACTIONS(6357), - [anon_sym_BSLASHPnotecite] = ACTIONS(6357), - [anon_sym_BSLASHfnotecite] = ACTIONS(6357), - [anon_sym_BSLASHlabel] = ACTIONS(6357), - [anon_sym_BSLASHref] = ACTIONS(6357), - [anon_sym_BSLASHeqref] = ACTIONS(6357), - [anon_sym_BSLASHvref] = ACTIONS(6357), - [anon_sym_BSLASHVref] = ACTIONS(6357), - [anon_sym_BSLASHautoref] = ACTIONS(6357), - [anon_sym_BSLASHpageref] = ACTIONS(6357), - [anon_sym_BSLASHcref] = ACTIONS(6357), - [anon_sym_BSLASHCref] = ACTIONS(6357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnameCref] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6357), - [anon_sym_BSLASHlabelcref] = ACTIONS(6357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange] = ACTIONS(6357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHCrefrange] = ACTIONS(6357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6359), - [anon_sym_BSLASHnewlabel] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand] = ACTIONS(6357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6359), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6357), - [anon_sym_BSLASHdef] = ACTIONS(6357), - [anon_sym_BSLASHlet] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6357), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6357), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6357), - [anon_sym_BSLASHgls] = ACTIONS(6357), - [anon_sym_BSLASHGls] = ACTIONS(6357), - [anon_sym_BSLASHGLS] = ACTIONS(6357), - [anon_sym_BSLASHglspl] = ACTIONS(6357), - [anon_sym_BSLASHGlspl] = ACTIONS(6357), - [anon_sym_BSLASHGLSpl] = ACTIONS(6357), - [anon_sym_BSLASHglsdisp] = ACTIONS(6357), - [anon_sym_BSLASHglslink] = ACTIONS(6357), - [anon_sym_BSLASHglstext] = ACTIONS(6357), - [anon_sym_BSLASHGlstext] = ACTIONS(6357), - [anon_sym_BSLASHGLStext] = ACTIONS(6357), - [anon_sym_BSLASHglsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6357), - [anon_sym_BSLASHglsplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSplural] = ACTIONS(6357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6357), - [anon_sym_BSLASHglsname] = ACTIONS(6357), - [anon_sym_BSLASHGlsname] = ACTIONS(6357), - [anon_sym_BSLASHGLSname] = ACTIONS(6357), - [anon_sym_BSLASHglssymbol] = ACTIONS(6357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6357), - [anon_sym_BSLASHglsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6357), - [anon_sym_BSLASHglsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6357), - [anon_sym_BSLASHglsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6357), - [anon_sym_BSLASHglsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6357), - [anon_sym_BSLASHglsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6357), - [anon_sym_BSLASHnewacronym] = ACTIONS(6357), - [anon_sym_BSLASHacrshort] = ACTIONS(6357), - [anon_sym_BSLASHAcrshort] = ACTIONS(6357), - [anon_sym_BSLASHACRshort] = ACTIONS(6357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6357), - [anon_sym_BSLASHacrlong] = ACTIONS(6357), - [anon_sym_BSLASHAcrlong] = ACTIONS(6357), - [anon_sym_BSLASHACRlong] = ACTIONS(6357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6357), - [anon_sym_BSLASHacrfull] = ACTIONS(6357), - [anon_sym_BSLASHAcrfull] = ACTIONS(6357), - [anon_sym_BSLASHACRfull] = ACTIONS(6357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6357), - [anon_sym_BSLASHacs] = ACTIONS(6357), - [anon_sym_BSLASHAcs] = ACTIONS(6357), - [anon_sym_BSLASHacsp] = ACTIONS(6357), - [anon_sym_BSLASHAcsp] = ACTIONS(6357), - [anon_sym_BSLASHacl] = ACTIONS(6357), - [anon_sym_BSLASHAcl] = ACTIONS(6357), - [anon_sym_BSLASHaclp] = ACTIONS(6357), - [anon_sym_BSLASHAclp] = ACTIONS(6357), - [anon_sym_BSLASHacf] = ACTIONS(6357), - [anon_sym_BSLASHAcf] = ACTIONS(6357), - [anon_sym_BSLASHacfp] = ACTIONS(6357), - [anon_sym_BSLASHAcfp] = ACTIONS(6357), - [anon_sym_BSLASHac] = ACTIONS(6357), - [anon_sym_BSLASHAc] = ACTIONS(6357), - [anon_sym_BSLASHacp] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6357), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6357), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6359), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6357), - [anon_sym_BSLASHcolor] = ACTIONS(6357), - [anon_sym_BSLASHcolorbox] = ACTIONS(6357), - [anon_sym_BSLASHtextcolor] = ACTIONS(6357), - [anon_sym_BSLASHpagecolor] = ACTIONS(6357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6357), - }, - [1975] = { - [sym_command_name] = ACTIONS(6353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6353), - [anon_sym_RBRACK] = ACTIONS(6355), - [anon_sym_COMMA] = ACTIONS(6355), - [anon_sym_EQ] = ACTIONS(6355), - [anon_sym_RBRACE] = ACTIONS(6355), - [sym_word] = ACTIONS(6353), - [sym_placeholder] = ACTIONS(6355), - [anon_sym_PLUS] = ACTIONS(6355), - [anon_sym_DASH] = ACTIONS(6355), - [anon_sym_STAR] = ACTIONS(6355), - [anon_sym_SLASH] = ACTIONS(6355), - [anon_sym_LT] = ACTIONS(6353), - [anon_sym_GT] = ACTIONS(6353), - [anon_sym_BANG] = ACTIONS(6353), - [anon_sym_PIPE] = ACTIONS(6353), - [anon_sym_COLON] = ACTIONS(6353), - [anon_sym_SQUOTE] = ACTIONS(6353), - [anon_sym__] = ACTIONS(6355), - [anon_sym_CARET] = ACTIONS(6355), - [anon_sym_BSLASHtitle] = ACTIONS(6353), - [anon_sym_BSLASHauthor] = ACTIONS(6353), - [anon_sym_BSLASHusepackage] = ACTIONS(6353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6353), - [anon_sym_BSLASHinclude] = ACTIONS(6353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6353), - [anon_sym_BSLASHinput] = ACTIONS(6353), - [anon_sym_BSLASHsubfile] = ACTIONS(6353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6353), - [anon_sym_BSLASHbibliography] = ACTIONS(6353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6353), - [anon_sym_BSLASHincludesvg] = ACTIONS(6353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6353), - [anon_sym_BSLASHimport] = ACTIONS(6353), - [anon_sym_BSLASHsubimport] = ACTIONS(6353), - [anon_sym_BSLASHinputfrom] = ACTIONS(6353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6353), - [anon_sym_BSLASHincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6353), - [anon_sym_BSLASHcaption] = ACTIONS(6353), - [anon_sym_BSLASHcite] = ACTIONS(6353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCite] = ACTIONS(6353), - [anon_sym_BSLASHnocite] = ACTIONS(6353), - [anon_sym_BSLASHcitet] = ACTIONS(6353), - [anon_sym_BSLASHcitep] = ACTIONS(6353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteauthor] = ACTIONS(6353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitetitle] = ACTIONS(6353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteyear] = ACTIONS(6353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6355), - [anon_sym_BSLASHcitedate] = ACTIONS(6353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6355), - [anon_sym_BSLASHciteurl] = ACTIONS(6353), - [anon_sym_BSLASHfullcite] = ACTIONS(6353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6353), - [anon_sym_BSLASHcitealt] = ACTIONS(6353), - [anon_sym_BSLASHcitealp] = ACTIONS(6353), - [anon_sym_BSLASHcitetext] = ACTIONS(6353), - [anon_sym_BSLASHparencite] = ACTIONS(6353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHParencite] = ACTIONS(6353), - [anon_sym_BSLASHfootcite] = ACTIONS(6353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6353), - [anon_sym_BSLASHtextcite] = ACTIONS(6353), - [anon_sym_BSLASHTextcite] = ACTIONS(6353), - [anon_sym_BSLASHsmartcite] = ACTIONS(6353), - [anon_sym_BSLASHSmartcite] = ACTIONS(6353), - [anon_sym_BSLASHsupercite] = ACTIONS(6353), - [anon_sym_BSLASHautocite] = ACTIONS(6353), - [anon_sym_BSLASHAutocite] = ACTIONS(6353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6355), - [anon_sym_BSLASHvolcite] = ACTIONS(6353), - [anon_sym_BSLASHVolcite] = ACTIONS(6353), - [anon_sym_BSLASHpvolcite] = ACTIONS(6353), - [anon_sym_BSLASHPvolcite] = ACTIONS(6353), - [anon_sym_BSLASHfvolcite] = ACTIONS(6353), - [anon_sym_BSLASHftvolcite] = ACTIONS(6353), - [anon_sym_BSLASHsvolcite] = ACTIONS(6353), - [anon_sym_BSLASHSvolcite] = ACTIONS(6353), - [anon_sym_BSLASHtvolcite] = ACTIONS(6353), - [anon_sym_BSLASHTvolcite] = ACTIONS(6353), - [anon_sym_BSLASHavolcite] = ACTIONS(6353), - [anon_sym_BSLASHAvolcite] = ACTIONS(6353), - [anon_sym_BSLASHnotecite] = ACTIONS(6353), - [anon_sym_BSLASHNotecite] = ACTIONS(6353), - [anon_sym_BSLASHpnotecite] = ACTIONS(6353), - [anon_sym_BSLASHPnotecite] = ACTIONS(6353), - [anon_sym_BSLASHfnotecite] = ACTIONS(6353), - [anon_sym_BSLASHlabel] = ACTIONS(6353), - [anon_sym_BSLASHref] = ACTIONS(6353), - [anon_sym_BSLASHeqref] = ACTIONS(6353), - [anon_sym_BSLASHvref] = ACTIONS(6353), - [anon_sym_BSLASHVref] = ACTIONS(6353), - [anon_sym_BSLASHautoref] = ACTIONS(6353), - [anon_sym_BSLASHpageref] = ACTIONS(6353), - [anon_sym_BSLASHcref] = ACTIONS(6353), - [anon_sym_BSLASHCref] = ACTIONS(6353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnameCref] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6353), - [anon_sym_BSLASHlabelcref] = ACTIONS(6353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange] = ACTIONS(6353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHCrefrange] = ACTIONS(6353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6355), - [anon_sym_BSLASHnewlabel] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand] = ACTIONS(6353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6355), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6353), - [anon_sym_BSLASHdef] = ACTIONS(6353), - [anon_sym_BSLASHlet] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6353), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6353), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6353), - [anon_sym_BSLASHgls] = ACTIONS(6353), - [anon_sym_BSLASHGls] = ACTIONS(6353), - [anon_sym_BSLASHGLS] = ACTIONS(6353), - [anon_sym_BSLASHglspl] = ACTIONS(6353), - [anon_sym_BSLASHGlspl] = ACTIONS(6353), - [anon_sym_BSLASHGLSpl] = ACTIONS(6353), - [anon_sym_BSLASHglsdisp] = ACTIONS(6353), - [anon_sym_BSLASHglslink] = ACTIONS(6353), - [anon_sym_BSLASHglstext] = ACTIONS(6353), - [anon_sym_BSLASHGlstext] = ACTIONS(6353), - [anon_sym_BSLASHGLStext] = ACTIONS(6353), - [anon_sym_BSLASHglsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6353), - [anon_sym_BSLASHglsplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSplural] = ACTIONS(6353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6353), - [anon_sym_BSLASHglsname] = ACTIONS(6353), - [anon_sym_BSLASHGlsname] = ACTIONS(6353), - [anon_sym_BSLASHGLSname] = ACTIONS(6353), - [anon_sym_BSLASHglssymbol] = ACTIONS(6353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6353), - [anon_sym_BSLASHglsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6353), - [anon_sym_BSLASHglsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6353), - [anon_sym_BSLASHglsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6353), - [anon_sym_BSLASHglsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6353), - [anon_sym_BSLASHglsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6353), - [anon_sym_BSLASHnewacronym] = ACTIONS(6353), - [anon_sym_BSLASHacrshort] = ACTIONS(6353), - [anon_sym_BSLASHAcrshort] = ACTIONS(6353), - [anon_sym_BSLASHACRshort] = ACTIONS(6353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6353), - [anon_sym_BSLASHacrlong] = ACTIONS(6353), - [anon_sym_BSLASHAcrlong] = ACTIONS(6353), - [anon_sym_BSLASHACRlong] = ACTIONS(6353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6353), - [anon_sym_BSLASHacrfull] = ACTIONS(6353), - [anon_sym_BSLASHAcrfull] = ACTIONS(6353), - [anon_sym_BSLASHACRfull] = ACTIONS(6353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6353), - [anon_sym_BSLASHacs] = ACTIONS(6353), - [anon_sym_BSLASHAcs] = ACTIONS(6353), - [anon_sym_BSLASHacsp] = ACTIONS(6353), - [anon_sym_BSLASHAcsp] = ACTIONS(6353), - [anon_sym_BSLASHacl] = ACTIONS(6353), - [anon_sym_BSLASHAcl] = ACTIONS(6353), - [anon_sym_BSLASHaclp] = ACTIONS(6353), - [anon_sym_BSLASHAclp] = ACTIONS(6353), - [anon_sym_BSLASHacf] = ACTIONS(6353), - [anon_sym_BSLASHAcf] = ACTIONS(6353), - [anon_sym_BSLASHacfp] = ACTIONS(6353), - [anon_sym_BSLASHAcfp] = ACTIONS(6353), - [anon_sym_BSLASHac] = ACTIONS(6353), - [anon_sym_BSLASHAc] = ACTIONS(6353), - [anon_sym_BSLASHacp] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6353), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6353), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6355), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6353), - [anon_sym_BSLASHcolor] = ACTIONS(6353), - [anon_sym_BSLASHcolorbox] = ACTIONS(6353), - [anon_sym_BSLASHtextcolor] = ACTIONS(6353), - [anon_sym_BSLASHpagecolor] = ACTIONS(6353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6353), - }, - [1976] = { - [sym_command_name] = ACTIONS(6349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6349), - [anon_sym_RBRACK] = ACTIONS(6351), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_EQ] = ACTIONS(6351), - [anon_sym_RBRACE] = ACTIONS(6351), - [sym_word] = ACTIONS(6349), - [sym_placeholder] = ACTIONS(6351), - [anon_sym_PLUS] = ACTIONS(6351), - [anon_sym_DASH] = ACTIONS(6351), - [anon_sym_STAR] = ACTIONS(6351), - [anon_sym_SLASH] = ACTIONS(6351), - [anon_sym_LT] = ACTIONS(6349), - [anon_sym_GT] = ACTIONS(6349), - [anon_sym_BANG] = ACTIONS(6349), - [anon_sym_PIPE] = ACTIONS(6349), - [anon_sym_COLON] = ACTIONS(6349), - [anon_sym_SQUOTE] = ACTIONS(6349), - [anon_sym__] = ACTIONS(6351), - [anon_sym_CARET] = ACTIONS(6351), - [anon_sym_BSLASHtitle] = ACTIONS(6349), - [anon_sym_BSLASHauthor] = ACTIONS(6349), - [anon_sym_BSLASHusepackage] = ACTIONS(6349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6349), - [anon_sym_BSLASHinclude] = ACTIONS(6349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6349), - [anon_sym_BSLASHinput] = ACTIONS(6349), - [anon_sym_BSLASHsubfile] = ACTIONS(6349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6349), - [anon_sym_BSLASHbibliography] = ACTIONS(6349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6349), - [anon_sym_BSLASHincludesvg] = ACTIONS(6349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6349), - [anon_sym_BSLASHimport] = ACTIONS(6349), - [anon_sym_BSLASHsubimport] = ACTIONS(6349), - [anon_sym_BSLASHinputfrom] = ACTIONS(6349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6349), - [anon_sym_BSLASHincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6349), - [anon_sym_BSLASHcaption] = ACTIONS(6349), - [anon_sym_BSLASHcite] = ACTIONS(6349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCite] = ACTIONS(6349), - [anon_sym_BSLASHnocite] = ACTIONS(6349), - [anon_sym_BSLASHcitet] = ACTIONS(6349), - [anon_sym_BSLASHcitep] = ACTIONS(6349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteauthor] = ACTIONS(6349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitetitle] = ACTIONS(6349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteyear] = ACTIONS(6349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6351), - [anon_sym_BSLASHcitedate] = ACTIONS(6349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6351), - [anon_sym_BSLASHciteurl] = ACTIONS(6349), - [anon_sym_BSLASHfullcite] = ACTIONS(6349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6349), - [anon_sym_BSLASHcitealt] = ACTIONS(6349), - [anon_sym_BSLASHcitealp] = ACTIONS(6349), - [anon_sym_BSLASHcitetext] = ACTIONS(6349), - [anon_sym_BSLASHparencite] = ACTIONS(6349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHParencite] = ACTIONS(6349), - [anon_sym_BSLASHfootcite] = ACTIONS(6349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6349), - [anon_sym_BSLASHtextcite] = ACTIONS(6349), - [anon_sym_BSLASHTextcite] = ACTIONS(6349), - [anon_sym_BSLASHsmartcite] = ACTIONS(6349), - [anon_sym_BSLASHSmartcite] = ACTIONS(6349), - [anon_sym_BSLASHsupercite] = ACTIONS(6349), - [anon_sym_BSLASHautocite] = ACTIONS(6349), - [anon_sym_BSLASHAutocite] = ACTIONS(6349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6351), - [anon_sym_BSLASHvolcite] = ACTIONS(6349), - [anon_sym_BSLASHVolcite] = ACTIONS(6349), - [anon_sym_BSLASHpvolcite] = ACTIONS(6349), - [anon_sym_BSLASHPvolcite] = ACTIONS(6349), - [anon_sym_BSLASHfvolcite] = ACTIONS(6349), - [anon_sym_BSLASHftvolcite] = ACTIONS(6349), - [anon_sym_BSLASHsvolcite] = ACTIONS(6349), - [anon_sym_BSLASHSvolcite] = ACTIONS(6349), - [anon_sym_BSLASHtvolcite] = ACTIONS(6349), - [anon_sym_BSLASHTvolcite] = ACTIONS(6349), - [anon_sym_BSLASHavolcite] = ACTIONS(6349), - [anon_sym_BSLASHAvolcite] = ACTIONS(6349), - [anon_sym_BSLASHnotecite] = ACTIONS(6349), - [anon_sym_BSLASHNotecite] = ACTIONS(6349), - [anon_sym_BSLASHpnotecite] = ACTIONS(6349), - [anon_sym_BSLASHPnotecite] = ACTIONS(6349), - [anon_sym_BSLASHfnotecite] = ACTIONS(6349), - [anon_sym_BSLASHlabel] = ACTIONS(6349), - [anon_sym_BSLASHref] = ACTIONS(6349), - [anon_sym_BSLASHeqref] = ACTIONS(6349), - [anon_sym_BSLASHvref] = ACTIONS(6349), - [anon_sym_BSLASHVref] = ACTIONS(6349), - [anon_sym_BSLASHautoref] = ACTIONS(6349), - [anon_sym_BSLASHpageref] = ACTIONS(6349), - [anon_sym_BSLASHcref] = ACTIONS(6349), - [anon_sym_BSLASHCref] = ACTIONS(6349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnameCref] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6349), - [anon_sym_BSLASHlabelcref] = ACTIONS(6349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange] = ACTIONS(6349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHCrefrange] = ACTIONS(6349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6351), - [anon_sym_BSLASHnewlabel] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand] = ACTIONS(6349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6351), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6349), - [anon_sym_BSLASHdef] = ACTIONS(6349), - [anon_sym_BSLASHlet] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6349), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6349), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6349), - [anon_sym_BSLASHgls] = ACTIONS(6349), - [anon_sym_BSLASHGls] = ACTIONS(6349), - [anon_sym_BSLASHGLS] = ACTIONS(6349), - [anon_sym_BSLASHglspl] = ACTIONS(6349), - [anon_sym_BSLASHGlspl] = ACTIONS(6349), - [anon_sym_BSLASHGLSpl] = ACTIONS(6349), - [anon_sym_BSLASHglsdisp] = ACTIONS(6349), - [anon_sym_BSLASHglslink] = ACTIONS(6349), - [anon_sym_BSLASHglstext] = ACTIONS(6349), - [anon_sym_BSLASHGlstext] = ACTIONS(6349), - [anon_sym_BSLASHGLStext] = ACTIONS(6349), - [anon_sym_BSLASHglsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6349), - [anon_sym_BSLASHglsplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSplural] = ACTIONS(6349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6349), - [anon_sym_BSLASHglsname] = ACTIONS(6349), - [anon_sym_BSLASHGlsname] = ACTIONS(6349), - [anon_sym_BSLASHGLSname] = ACTIONS(6349), - [anon_sym_BSLASHglssymbol] = ACTIONS(6349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6349), - [anon_sym_BSLASHglsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6349), - [anon_sym_BSLASHglsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6349), - [anon_sym_BSLASHglsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6349), - [anon_sym_BSLASHglsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6349), - [anon_sym_BSLASHglsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6349), - [anon_sym_BSLASHnewacronym] = ACTIONS(6349), - [anon_sym_BSLASHacrshort] = ACTIONS(6349), - [anon_sym_BSLASHAcrshort] = ACTIONS(6349), - [anon_sym_BSLASHACRshort] = ACTIONS(6349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6349), - [anon_sym_BSLASHacrlong] = ACTIONS(6349), - [anon_sym_BSLASHAcrlong] = ACTIONS(6349), - [anon_sym_BSLASHACRlong] = ACTIONS(6349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6349), - [anon_sym_BSLASHacrfull] = ACTIONS(6349), - [anon_sym_BSLASHAcrfull] = ACTIONS(6349), - [anon_sym_BSLASHACRfull] = ACTIONS(6349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6349), - [anon_sym_BSLASHacs] = ACTIONS(6349), - [anon_sym_BSLASHAcs] = ACTIONS(6349), - [anon_sym_BSLASHacsp] = ACTIONS(6349), - [anon_sym_BSLASHAcsp] = ACTIONS(6349), - [anon_sym_BSLASHacl] = ACTIONS(6349), - [anon_sym_BSLASHAcl] = ACTIONS(6349), - [anon_sym_BSLASHaclp] = ACTIONS(6349), - [anon_sym_BSLASHAclp] = ACTIONS(6349), - [anon_sym_BSLASHacf] = ACTIONS(6349), - [anon_sym_BSLASHAcf] = ACTIONS(6349), - [anon_sym_BSLASHacfp] = ACTIONS(6349), - [anon_sym_BSLASHAcfp] = ACTIONS(6349), - [anon_sym_BSLASHac] = ACTIONS(6349), - [anon_sym_BSLASHAc] = ACTIONS(6349), - [anon_sym_BSLASHacp] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6349), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6349), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6351), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6349), - [anon_sym_BSLASHcolor] = ACTIONS(6349), - [anon_sym_BSLASHcolorbox] = ACTIONS(6349), - [anon_sym_BSLASHtextcolor] = ACTIONS(6349), - [anon_sym_BSLASHpagecolor] = ACTIONS(6349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6349), - }, - [1977] = { - [sym_command_name] = ACTIONS(6345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6345), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_COMMA] = ACTIONS(6347), - [anon_sym_EQ] = ACTIONS(6347), - [anon_sym_RBRACE] = ACTIONS(6347), - [sym_word] = ACTIONS(6345), - [sym_placeholder] = ACTIONS(6347), - [anon_sym_PLUS] = ACTIONS(6347), - [anon_sym_DASH] = ACTIONS(6347), - [anon_sym_STAR] = ACTIONS(6347), - [anon_sym_SLASH] = ACTIONS(6347), - [anon_sym_LT] = ACTIONS(6345), - [anon_sym_GT] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(6345), - [anon_sym_PIPE] = ACTIONS(6345), - [anon_sym_COLON] = ACTIONS(6345), - [anon_sym_SQUOTE] = ACTIONS(6345), - [anon_sym__] = ACTIONS(6347), - [anon_sym_CARET] = ACTIONS(6347), - [anon_sym_BSLASHtitle] = ACTIONS(6345), - [anon_sym_BSLASHauthor] = ACTIONS(6345), - [anon_sym_BSLASHusepackage] = ACTIONS(6345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6345), - [anon_sym_BSLASHinclude] = ACTIONS(6345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6345), - [anon_sym_BSLASHinput] = ACTIONS(6345), - [anon_sym_BSLASHsubfile] = ACTIONS(6345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6345), - [anon_sym_BSLASHbibliography] = ACTIONS(6345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6345), - [anon_sym_BSLASHincludesvg] = ACTIONS(6345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6345), - [anon_sym_BSLASHimport] = ACTIONS(6345), - [anon_sym_BSLASHsubimport] = ACTIONS(6345), - [anon_sym_BSLASHinputfrom] = ACTIONS(6345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6345), - [anon_sym_BSLASHincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6345), - [anon_sym_BSLASHcaption] = ACTIONS(6345), - [anon_sym_BSLASHcite] = ACTIONS(6345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCite] = ACTIONS(6345), - [anon_sym_BSLASHnocite] = ACTIONS(6345), - [anon_sym_BSLASHcitet] = ACTIONS(6345), - [anon_sym_BSLASHcitep] = ACTIONS(6345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteauthor] = ACTIONS(6345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitetitle] = ACTIONS(6345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteyear] = ACTIONS(6345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6347), - [anon_sym_BSLASHcitedate] = ACTIONS(6345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6347), - [anon_sym_BSLASHciteurl] = ACTIONS(6345), - [anon_sym_BSLASHfullcite] = ACTIONS(6345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6345), - [anon_sym_BSLASHcitealt] = ACTIONS(6345), - [anon_sym_BSLASHcitealp] = ACTIONS(6345), - [anon_sym_BSLASHcitetext] = ACTIONS(6345), - [anon_sym_BSLASHparencite] = ACTIONS(6345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHParencite] = ACTIONS(6345), - [anon_sym_BSLASHfootcite] = ACTIONS(6345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6345), - [anon_sym_BSLASHtextcite] = ACTIONS(6345), - [anon_sym_BSLASHTextcite] = ACTIONS(6345), - [anon_sym_BSLASHsmartcite] = ACTIONS(6345), - [anon_sym_BSLASHSmartcite] = ACTIONS(6345), - [anon_sym_BSLASHsupercite] = ACTIONS(6345), - [anon_sym_BSLASHautocite] = ACTIONS(6345), - [anon_sym_BSLASHAutocite] = ACTIONS(6345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6347), - [anon_sym_BSLASHvolcite] = ACTIONS(6345), - [anon_sym_BSLASHVolcite] = ACTIONS(6345), - [anon_sym_BSLASHpvolcite] = ACTIONS(6345), - [anon_sym_BSLASHPvolcite] = ACTIONS(6345), - [anon_sym_BSLASHfvolcite] = ACTIONS(6345), - [anon_sym_BSLASHftvolcite] = ACTIONS(6345), - [anon_sym_BSLASHsvolcite] = ACTIONS(6345), - [anon_sym_BSLASHSvolcite] = ACTIONS(6345), - [anon_sym_BSLASHtvolcite] = ACTIONS(6345), - [anon_sym_BSLASHTvolcite] = ACTIONS(6345), - [anon_sym_BSLASHavolcite] = ACTIONS(6345), - [anon_sym_BSLASHAvolcite] = ACTIONS(6345), - [anon_sym_BSLASHnotecite] = ACTIONS(6345), - [anon_sym_BSLASHNotecite] = ACTIONS(6345), - [anon_sym_BSLASHpnotecite] = ACTIONS(6345), - [anon_sym_BSLASHPnotecite] = ACTIONS(6345), - [anon_sym_BSLASHfnotecite] = ACTIONS(6345), - [anon_sym_BSLASHlabel] = ACTIONS(6345), - [anon_sym_BSLASHref] = ACTIONS(6345), - [anon_sym_BSLASHeqref] = ACTIONS(6345), - [anon_sym_BSLASHvref] = ACTIONS(6345), - [anon_sym_BSLASHVref] = ACTIONS(6345), - [anon_sym_BSLASHautoref] = ACTIONS(6345), - [anon_sym_BSLASHpageref] = ACTIONS(6345), - [anon_sym_BSLASHcref] = ACTIONS(6345), - [anon_sym_BSLASHCref] = ACTIONS(6345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnameCref] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6345), - [anon_sym_BSLASHlabelcref] = ACTIONS(6345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange] = ACTIONS(6345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHCrefrange] = ACTIONS(6345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6347), - [anon_sym_BSLASHnewlabel] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand] = ACTIONS(6345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6347), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6345), - [anon_sym_BSLASHdef] = ACTIONS(6345), - [anon_sym_BSLASHlet] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6345), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6345), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6345), - [anon_sym_BSLASHgls] = ACTIONS(6345), - [anon_sym_BSLASHGls] = ACTIONS(6345), - [anon_sym_BSLASHGLS] = ACTIONS(6345), - [anon_sym_BSLASHglspl] = ACTIONS(6345), - [anon_sym_BSLASHGlspl] = ACTIONS(6345), - [anon_sym_BSLASHGLSpl] = ACTIONS(6345), - [anon_sym_BSLASHglsdisp] = ACTIONS(6345), - [anon_sym_BSLASHglslink] = ACTIONS(6345), - [anon_sym_BSLASHglstext] = ACTIONS(6345), - [anon_sym_BSLASHGlstext] = ACTIONS(6345), - [anon_sym_BSLASHGLStext] = ACTIONS(6345), - [anon_sym_BSLASHglsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6345), - [anon_sym_BSLASHglsplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSplural] = ACTIONS(6345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6345), - [anon_sym_BSLASHglsname] = ACTIONS(6345), - [anon_sym_BSLASHGlsname] = ACTIONS(6345), - [anon_sym_BSLASHGLSname] = ACTIONS(6345), - [anon_sym_BSLASHglssymbol] = ACTIONS(6345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6345), - [anon_sym_BSLASHglsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6345), - [anon_sym_BSLASHglsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6345), - [anon_sym_BSLASHglsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6345), - [anon_sym_BSLASHglsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6345), - [anon_sym_BSLASHglsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6345), - [anon_sym_BSLASHnewacronym] = ACTIONS(6345), - [anon_sym_BSLASHacrshort] = ACTIONS(6345), - [anon_sym_BSLASHAcrshort] = ACTIONS(6345), - [anon_sym_BSLASHACRshort] = ACTIONS(6345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6345), - [anon_sym_BSLASHacrlong] = ACTIONS(6345), - [anon_sym_BSLASHAcrlong] = ACTIONS(6345), - [anon_sym_BSLASHACRlong] = ACTIONS(6345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6345), - [anon_sym_BSLASHacrfull] = ACTIONS(6345), - [anon_sym_BSLASHAcrfull] = ACTIONS(6345), - [anon_sym_BSLASHACRfull] = ACTIONS(6345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6345), - [anon_sym_BSLASHacs] = ACTIONS(6345), - [anon_sym_BSLASHAcs] = ACTIONS(6345), - [anon_sym_BSLASHacsp] = ACTIONS(6345), - [anon_sym_BSLASHAcsp] = ACTIONS(6345), - [anon_sym_BSLASHacl] = ACTIONS(6345), - [anon_sym_BSLASHAcl] = ACTIONS(6345), - [anon_sym_BSLASHaclp] = ACTIONS(6345), - [anon_sym_BSLASHAclp] = ACTIONS(6345), - [anon_sym_BSLASHacf] = ACTIONS(6345), - [anon_sym_BSLASHAcf] = ACTIONS(6345), - [anon_sym_BSLASHacfp] = ACTIONS(6345), - [anon_sym_BSLASHAcfp] = ACTIONS(6345), - [anon_sym_BSLASHac] = ACTIONS(6345), - [anon_sym_BSLASHAc] = ACTIONS(6345), - [anon_sym_BSLASHacp] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6345), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6345), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6347), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6345), - [anon_sym_BSLASHcolor] = ACTIONS(6345), - [anon_sym_BSLASHcolorbox] = ACTIONS(6345), - [anon_sym_BSLASHtextcolor] = ACTIONS(6345), - [anon_sym_BSLASHpagecolor] = ACTIONS(6345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6345), - }, - [1978] = { - [sym_command_name] = ACTIONS(6341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6341), - [anon_sym_RBRACK] = ACTIONS(6343), - [anon_sym_COMMA] = ACTIONS(6343), - [anon_sym_EQ] = ACTIONS(6343), - [anon_sym_RBRACE] = ACTIONS(6343), - [sym_word] = ACTIONS(6341), - [sym_placeholder] = ACTIONS(6343), - [anon_sym_PLUS] = ACTIONS(6343), - [anon_sym_DASH] = ACTIONS(6343), - [anon_sym_STAR] = ACTIONS(6343), - [anon_sym_SLASH] = ACTIONS(6343), - [anon_sym_LT] = ACTIONS(6341), - [anon_sym_GT] = ACTIONS(6341), - [anon_sym_BANG] = ACTIONS(6341), - [anon_sym_PIPE] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), - [anon_sym_SQUOTE] = ACTIONS(6341), - [anon_sym__] = ACTIONS(6343), - [anon_sym_CARET] = ACTIONS(6343), - [anon_sym_BSLASHtitle] = ACTIONS(6341), - [anon_sym_BSLASHauthor] = ACTIONS(6341), - [anon_sym_BSLASHusepackage] = ACTIONS(6341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6341), - [anon_sym_BSLASHinclude] = ACTIONS(6341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6341), - [anon_sym_BSLASHinput] = ACTIONS(6341), - [anon_sym_BSLASHsubfile] = ACTIONS(6341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6341), - [anon_sym_BSLASHbibliography] = ACTIONS(6341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6341), - [anon_sym_BSLASHincludesvg] = ACTIONS(6341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6341), - [anon_sym_BSLASHimport] = ACTIONS(6341), - [anon_sym_BSLASHsubimport] = ACTIONS(6341), - [anon_sym_BSLASHinputfrom] = ACTIONS(6341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6341), - [anon_sym_BSLASHincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6341), - [anon_sym_BSLASHcaption] = ACTIONS(6341), - [anon_sym_BSLASHcite] = ACTIONS(6341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCite] = ACTIONS(6341), - [anon_sym_BSLASHnocite] = ACTIONS(6341), - [anon_sym_BSLASHcitet] = ACTIONS(6341), - [anon_sym_BSLASHcitep] = ACTIONS(6341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteauthor] = ACTIONS(6341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitetitle] = ACTIONS(6341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteyear] = ACTIONS(6341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6343), - [anon_sym_BSLASHcitedate] = ACTIONS(6341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6343), - [anon_sym_BSLASHciteurl] = ACTIONS(6341), - [anon_sym_BSLASHfullcite] = ACTIONS(6341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6341), - [anon_sym_BSLASHcitealt] = ACTIONS(6341), - [anon_sym_BSLASHcitealp] = ACTIONS(6341), - [anon_sym_BSLASHcitetext] = ACTIONS(6341), - [anon_sym_BSLASHparencite] = ACTIONS(6341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHParencite] = ACTIONS(6341), - [anon_sym_BSLASHfootcite] = ACTIONS(6341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6341), - [anon_sym_BSLASHtextcite] = ACTIONS(6341), - [anon_sym_BSLASHTextcite] = ACTIONS(6341), - [anon_sym_BSLASHsmartcite] = ACTIONS(6341), - [anon_sym_BSLASHSmartcite] = ACTIONS(6341), - [anon_sym_BSLASHsupercite] = ACTIONS(6341), - [anon_sym_BSLASHautocite] = ACTIONS(6341), - [anon_sym_BSLASHAutocite] = ACTIONS(6341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6343), - [anon_sym_BSLASHvolcite] = ACTIONS(6341), - [anon_sym_BSLASHVolcite] = ACTIONS(6341), - [anon_sym_BSLASHpvolcite] = ACTIONS(6341), - [anon_sym_BSLASHPvolcite] = ACTIONS(6341), - [anon_sym_BSLASHfvolcite] = ACTIONS(6341), - [anon_sym_BSLASHftvolcite] = ACTIONS(6341), - [anon_sym_BSLASHsvolcite] = ACTIONS(6341), - [anon_sym_BSLASHSvolcite] = ACTIONS(6341), - [anon_sym_BSLASHtvolcite] = ACTIONS(6341), - [anon_sym_BSLASHTvolcite] = ACTIONS(6341), - [anon_sym_BSLASHavolcite] = ACTIONS(6341), - [anon_sym_BSLASHAvolcite] = ACTIONS(6341), - [anon_sym_BSLASHnotecite] = ACTIONS(6341), - [anon_sym_BSLASHNotecite] = ACTIONS(6341), - [anon_sym_BSLASHpnotecite] = ACTIONS(6341), - [anon_sym_BSLASHPnotecite] = ACTIONS(6341), - [anon_sym_BSLASHfnotecite] = ACTIONS(6341), - [anon_sym_BSLASHlabel] = ACTIONS(6341), - [anon_sym_BSLASHref] = ACTIONS(6341), - [anon_sym_BSLASHeqref] = ACTIONS(6341), - [anon_sym_BSLASHvref] = ACTIONS(6341), - [anon_sym_BSLASHVref] = ACTIONS(6341), - [anon_sym_BSLASHautoref] = ACTIONS(6341), - [anon_sym_BSLASHpageref] = ACTIONS(6341), - [anon_sym_BSLASHcref] = ACTIONS(6341), - [anon_sym_BSLASHCref] = ACTIONS(6341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnameCref] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6341), - [anon_sym_BSLASHlabelcref] = ACTIONS(6341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange] = ACTIONS(6341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHCrefrange] = ACTIONS(6341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6343), - [anon_sym_BSLASHnewlabel] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand] = ACTIONS(6341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6343), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6341), - [anon_sym_BSLASHdef] = ACTIONS(6341), - [anon_sym_BSLASHlet] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6341), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6341), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6341), - [anon_sym_BSLASHgls] = ACTIONS(6341), - [anon_sym_BSLASHGls] = ACTIONS(6341), - [anon_sym_BSLASHGLS] = ACTIONS(6341), - [anon_sym_BSLASHglspl] = ACTIONS(6341), - [anon_sym_BSLASHGlspl] = ACTIONS(6341), - [anon_sym_BSLASHGLSpl] = ACTIONS(6341), - [anon_sym_BSLASHglsdisp] = ACTIONS(6341), - [anon_sym_BSLASHglslink] = ACTIONS(6341), - [anon_sym_BSLASHglstext] = ACTIONS(6341), - [anon_sym_BSLASHGlstext] = ACTIONS(6341), - [anon_sym_BSLASHGLStext] = ACTIONS(6341), - [anon_sym_BSLASHglsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6341), - [anon_sym_BSLASHglsplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSplural] = ACTIONS(6341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6341), - [anon_sym_BSLASHglsname] = ACTIONS(6341), - [anon_sym_BSLASHGlsname] = ACTIONS(6341), - [anon_sym_BSLASHGLSname] = ACTIONS(6341), - [anon_sym_BSLASHglssymbol] = ACTIONS(6341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6341), - [anon_sym_BSLASHglsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6341), - [anon_sym_BSLASHglsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6341), - [anon_sym_BSLASHglsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6341), - [anon_sym_BSLASHglsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6341), - [anon_sym_BSLASHglsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6341), - [anon_sym_BSLASHnewacronym] = ACTIONS(6341), - [anon_sym_BSLASHacrshort] = ACTIONS(6341), - [anon_sym_BSLASHAcrshort] = ACTIONS(6341), - [anon_sym_BSLASHACRshort] = ACTIONS(6341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6341), - [anon_sym_BSLASHacrlong] = ACTIONS(6341), - [anon_sym_BSLASHAcrlong] = ACTIONS(6341), - [anon_sym_BSLASHACRlong] = ACTIONS(6341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6341), - [anon_sym_BSLASHacrfull] = ACTIONS(6341), - [anon_sym_BSLASHAcrfull] = ACTIONS(6341), - [anon_sym_BSLASHACRfull] = ACTIONS(6341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6341), - [anon_sym_BSLASHacs] = ACTIONS(6341), - [anon_sym_BSLASHAcs] = ACTIONS(6341), - [anon_sym_BSLASHacsp] = ACTIONS(6341), - [anon_sym_BSLASHAcsp] = ACTIONS(6341), - [anon_sym_BSLASHacl] = ACTIONS(6341), - [anon_sym_BSLASHAcl] = ACTIONS(6341), - [anon_sym_BSLASHaclp] = ACTIONS(6341), - [anon_sym_BSLASHAclp] = ACTIONS(6341), - [anon_sym_BSLASHacf] = ACTIONS(6341), - [anon_sym_BSLASHAcf] = ACTIONS(6341), - [anon_sym_BSLASHacfp] = ACTIONS(6341), - [anon_sym_BSLASHAcfp] = ACTIONS(6341), - [anon_sym_BSLASHac] = ACTIONS(6341), - [anon_sym_BSLASHAc] = ACTIONS(6341), - [anon_sym_BSLASHacp] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6341), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6341), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6343), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6341), - [anon_sym_BSLASHcolor] = ACTIONS(6341), - [anon_sym_BSLASHcolorbox] = ACTIONS(6341), - [anon_sym_BSLASHtextcolor] = ACTIONS(6341), - [anon_sym_BSLASHpagecolor] = ACTIONS(6341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6341), - }, - [1979] = { - [sym_command_name] = ACTIONS(6337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6337), - [anon_sym_RBRACK] = ACTIONS(6339), - [anon_sym_COMMA] = ACTIONS(6339), - [anon_sym_EQ] = ACTIONS(6339), - [anon_sym_RBRACE] = ACTIONS(6339), - [sym_word] = ACTIONS(6337), - [sym_placeholder] = ACTIONS(6339), - [anon_sym_PLUS] = ACTIONS(6339), - [anon_sym_DASH] = ACTIONS(6339), - [anon_sym_STAR] = ACTIONS(6339), - [anon_sym_SLASH] = ACTIONS(6339), - [anon_sym_LT] = ACTIONS(6337), - [anon_sym_GT] = ACTIONS(6337), - [anon_sym_BANG] = ACTIONS(6337), - [anon_sym_PIPE] = ACTIONS(6337), - [anon_sym_COLON] = ACTIONS(6337), - [anon_sym_SQUOTE] = ACTIONS(6337), - [anon_sym__] = ACTIONS(6339), - [anon_sym_CARET] = ACTIONS(6339), - [anon_sym_BSLASHtitle] = ACTIONS(6337), - [anon_sym_BSLASHauthor] = ACTIONS(6337), - [anon_sym_BSLASHusepackage] = ACTIONS(6337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6337), - [anon_sym_BSLASHinclude] = ACTIONS(6337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6337), - [anon_sym_BSLASHinput] = ACTIONS(6337), - [anon_sym_BSLASHsubfile] = ACTIONS(6337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6337), - [anon_sym_BSLASHbibliography] = ACTIONS(6337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6337), - [anon_sym_BSLASHincludesvg] = ACTIONS(6337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6337), - [anon_sym_BSLASHimport] = ACTIONS(6337), - [anon_sym_BSLASHsubimport] = ACTIONS(6337), - [anon_sym_BSLASHinputfrom] = ACTIONS(6337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6337), - [anon_sym_BSLASHincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6337), - [anon_sym_BSLASHcaption] = ACTIONS(6337), - [anon_sym_BSLASHcite] = ACTIONS(6337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCite] = ACTIONS(6337), - [anon_sym_BSLASHnocite] = ACTIONS(6337), - [anon_sym_BSLASHcitet] = ACTIONS(6337), - [anon_sym_BSLASHcitep] = ACTIONS(6337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteauthor] = ACTIONS(6337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitetitle] = ACTIONS(6337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteyear] = ACTIONS(6337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6339), - [anon_sym_BSLASHcitedate] = ACTIONS(6337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6339), - [anon_sym_BSLASHciteurl] = ACTIONS(6337), - [anon_sym_BSLASHfullcite] = ACTIONS(6337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6337), - [anon_sym_BSLASHcitealt] = ACTIONS(6337), - [anon_sym_BSLASHcitealp] = ACTIONS(6337), - [anon_sym_BSLASHcitetext] = ACTIONS(6337), - [anon_sym_BSLASHparencite] = ACTIONS(6337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHParencite] = ACTIONS(6337), - [anon_sym_BSLASHfootcite] = ACTIONS(6337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6337), - [anon_sym_BSLASHtextcite] = ACTIONS(6337), - [anon_sym_BSLASHTextcite] = ACTIONS(6337), - [anon_sym_BSLASHsmartcite] = ACTIONS(6337), - [anon_sym_BSLASHSmartcite] = ACTIONS(6337), - [anon_sym_BSLASHsupercite] = ACTIONS(6337), - [anon_sym_BSLASHautocite] = ACTIONS(6337), - [anon_sym_BSLASHAutocite] = ACTIONS(6337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6339), - [anon_sym_BSLASHvolcite] = ACTIONS(6337), - [anon_sym_BSLASHVolcite] = ACTIONS(6337), - [anon_sym_BSLASHpvolcite] = ACTIONS(6337), - [anon_sym_BSLASHPvolcite] = ACTIONS(6337), - [anon_sym_BSLASHfvolcite] = ACTIONS(6337), - [anon_sym_BSLASHftvolcite] = ACTIONS(6337), - [anon_sym_BSLASHsvolcite] = ACTIONS(6337), - [anon_sym_BSLASHSvolcite] = ACTIONS(6337), - [anon_sym_BSLASHtvolcite] = ACTIONS(6337), - [anon_sym_BSLASHTvolcite] = ACTIONS(6337), - [anon_sym_BSLASHavolcite] = ACTIONS(6337), - [anon_sym_BSLASHAvolcite] = ACTIONS(6337), - [anon_sym_BSLASHnotecite] = ACTIONS(6337), - [anon_sym_BSLASHNotecite] = ACTIONS(6337), - [anon_sym_BSLASHpnotecite] = ACTIONS(6337), - [anon_sym_BSLASHPnotecite] = ACTIONS(6337), - [anon_sym_BSLASHfnotecite] = ACTIONS(6337), - [anon_sym_BSLASHlabel] = ACTIONS(6337), - [anon_sym_BSLASHref] = ACTIONS(6337), - [anon_sym_BSLASHeqref] = ACTIONS(6337), - [anon_sym_BSLASHvref] = ACTIONS(6337), - [anon_sym_BSLASHVref] = ACTIONS(6337), - [anon_sym_BSLASHautoref] = ACTIONS(6337), - [anon_sym_BSLASHpageref] = ACTIONS(6337), - [anon_sym_BSLASHcref] = ACTIONS(6337), - [anon_sym_BSLASHCref] = ACTIONS(6337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnameCref] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6337), - [anon_sym_BSLASHlabelcref] = ACTIONS(6337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange] = ACTIONS(6337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHCrefrange] = ACTIONS(6337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6339), - [anon_sym_BSLASHnewlabel] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand] = ACTIONS(6337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6339), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6337), - [anon_sym_BSLASHdef] = ACTIONS(6337), - [anon_sym_BSLASHlet] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6337), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6337), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6337), - [anon_sym_BSLASHgls] = ACTIONS(6337), - [anon_sym_BSLASHGls] = ACTIONS(6337), - [anon_sym_BSLASHGLS] = ACTIONS(6337), - [anon_sym_BSLASHglspl] = ACTIONS(6337), - [anon_sym_BSLASHGlspl] = ACTIONS(6337), - [anon_sym_BSLASHGLSpl] = ACTIONS(6337), - [anon_sym_BSLASHglsdisp] = ACTIONS(6337), - [anon_sym_BSLASHglslink] = ACTIONS(6337), - [anon_sym_BSLASHglstext] = ACTIONS(6337), - [anon_sym_BSLASHGlstext] = ACTIONS(6337), - [anon_sym_BSLASHGLStext] = ACTIONS(6337), - [anon_sym_BSLASHglsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6337), - [anon_sym_BSLASHglsplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSplural] = ACTIONS(6337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6337), - [anon_sym_BSLASHglsname] = ACTIONS(6337), - [anon_sym_BSLASHGlsname] = ACTIONS(6337), - [anon_sym_BSLASHGLSname] = ACTIONS(6337), - [anon_sym_BSLASHglssymbol] = ACTIONS(6337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6337), - [anon_sym_BSLASHglsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6337), - [anon_sym_BSLASHglsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6337), - [anon_sym_BSLASHglsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6337), - [anon_sym_BSLASHglsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6337), - [anon_sym_BSLASHglsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6337), - [anon_sym_BSLASHnewacronym] = ACTIONS(6337), - [anon_sym_BSLASHacrshort] = ACTIONS(6337), - [anon_sym_BSLASHAcrshort] = ACTIONS(6337), - [anon_sym_BSLASHACRshort] = ACTIONS(6337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6337), - [anon_sym_BSLASHacrlong] = ACTIONS(6337), - [anon_sym_BSLASHAcrlong] = ACTIONS(6337), - [anon_sym_BSLASHACRlong] = ACTIONS(6337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6337), - [anon_sym_BSLASHacrfull] = ACTIONS(6337), - [anon_sym_BSLASHAcrfull] = ACTIONS(6337), - [anon_sym_BSLASHACRfull] = ACTIONS(6337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6337), - [anon_sym_BSLASHacs] = ACTIONS(6337), - [anon_sym_BSLASHAcs] = ACTIONS(6337), - [anon_sym_BSLASHacsp] = ACTIONS(6337), - [anon_sym_BSLASHAcsp] = ACTIONS(6337), - [anon_sym_BSLASHacl] = ACTIONS(6337), - [anon_sym_BSLASHAcl] = ACTIONS(6337), - [anon_sym_BSLASHaclp] = ACTIONS(6337), - [anon_sym_BSLASHAclp] = ACTIONS(6337), - [anon_sym_BSLASHacf] = ACTIONS(6337), - [anon_sym_BSLASHAcf] = ACTIONS(6337), - [anon_sym_BSLASHacfp] = ACTIONS(6337), - [anon_sym_BSLASHAcfp] = ACTIONS(6337), - [anon_sym_BSLASHac] = ACTIONS(6337), - [anon_sym_BSLASHAc] = ACTIONS(6337), - [anon_sym_BSLASHacp] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6337), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6337), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6339), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6337), - [anon_sym_BSLASHcolor] = ACTIONS(6337), - [anon_sym_BSLASHcolorbox] = ACTIONS(6337), - [anon_sym_BSLASHtextcolor] = ACTIONS(6337), - [anon_sym_BSLASHpagecolor] = ACTIONS(6337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6337), - }, - [1980] = { - [sym_command_name] = ACTIONS(6333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6333), - [anon_sym_RBRACK] = ACTIONS(6335), - [anon_sym_COMMA] = ACTIONS(6335), - [anon_sym_EQ] = ACTIONS(6335), - [anon_sym_RBRACE] = ACTIONS(6335), - [sym_word] = ACTIONS(6333), - [sym_placeholder] = ACTIONS(6335), - [anon_sym_PLUS] = ACTIONS(6335), - [anon_sym_DASH] = ACTIONS(6335), - [anon_sym_STAR] = ACTIONS(6335), - [anon_sym_SLASH] = ACTIONS(6335), - [anon_sym_LT] = ACTIONS(6333), - [anon_sym_GT] = ACTIONS(6333), - [anon_sym_BANG] = ACTIONS(6333), - [anon_sym_PIPE] = ACTIONS(6333), - [anon_sym_COLON] = ACTIONS(6333), - [anon_sym_SQUOTE] = ACTIONS(6333), - [anon_sym__] = ACTIONS(6335), - [anon_sym_CARET] = ACTIONS(6335), - [anon_sym_BSLASHtitle] = ACTIONS(6333), - [anon_sym_BSLASHauthor] = ACTIONS(6333), - [anon_sym_BSLASHusepackage] = ACTIONS(6333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6333), - [anon_sym_BSLASHinclude] = ACTIONS(6333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6333), - [anon_sym_BSLASHinput] = ACTIONS(6333), - [anon_sym_BSLASHsubfile] = ACTIONS(6333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6333), - [anon_sym_BSLASHbibliography] = ACTIONS(6333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6333), - [anon_sym_BSLASHincludesvg] = ACTIONS(6333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6333), - [anon_sym_BSLASHimport] = ACTIONS(6333), - [anon_sym_BSLASHsubimport] = ACTIONS(6333), - [anon_sym_BSLASHinputfrom] = ACTIONS(6333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6333), - [anon_sym_BSLASHincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6333), - [anon_sym_BSLASHcaption] = ACTIONS(6333), - [anon_sym_BSLASHcite] = ACTIONS(6333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCite] = ACTIONS(6333), - [anon_sym_BSLASHnocite] = ACTIONS(6333), - [anon_sym_BSLASHcitet] = ACTIONS(6333), - [anon_sym_BSLASHcitep] = ACTIONS(6333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteauthor] = ACTIONS(6333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitetitle] = ACTIONS(6333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteyear] = ACTIONS(6333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6335), - [anon_sym_BSLASHcitedate] = ACTIONS(6333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6335), - [anon_sym_BSLASHciteurl] = ACTIONS(6333), - [anon_sym_BSLASHfullcite] = ACTIONS(6333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6333), - [anon_sym_BSLASHcitealt] = ACTIONS(6333), - [anon_sym_BSLASHcitealp] = ACTIONS(6333), - [anon_sym_BSLASHcitetext] = ACTIONS(6333), - [anon_sym_BSLASHparencite] = ACTIONS(6333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHParencite] = ACTIONS(6333), - [anon_sym_BSLASHfootcite] = ACTIONS(6333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6333), - [anon_sym_BSLASHtextcite] = ACTIONS(6333), - [anon_sym_BSLASHTextcite] = ACTIONS(6333), - [anon_sym_BSLASHsmartcite] = ACTIONS(6333), - [anon_sym_BSLASHSmartcite] = ACTIONS(6333), - [anon_sym_BSLASHsupercite] = ACTIONS(6333), - [anon_sym_BSLASHautocite] = ACTIONS(6333), - [anon_sym_BSLASHAutocite] = ACTIONS(6333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6335), - [anon_sym_BSLASHvolcite] = ACTIONS(6333), - [anon_sym_BSLASHVolcite] = ACTIONS(6333), - [anon_sym_BSLASHpvolcite] = ACTIONS(6333), - [anon_sym_BSLASHPvolcite] = ACTIONS(6333), - [anon_sym_BSLASHfvolcite] = ACTIONS(6333), - [anon_sym_BSLASHftvolcite] = ACTIONS(6333), - [anon_sym_BSLASHsvolcite] = ACTIONS(6333), - [anon_sym_BSLASHSvolcite] = ACTIONS(6333), - [anon_sym_BSLASHtvolcite] = ACTIONS(6333), - [anon_sym_BSLASHTvolcite] = ACTIONS(6333), - [anon_sym_BSLASHavolcite] = ACTIONS(6333), - [anon_sym_BSLASHAvolcite] = ACTIONS(6333), - [anon_sym_BSLASHnotecite] = ACTIONS(6333), - [anon_sym_BSLASHNotecite] = ACTIONS(6333), - [anon_sym_BSLASHpnotecite] = ACTIONS(6333), - [anon_sym_BSLASHPnotecite] = ACTIONS(6333), - [anon_sym_BSLASHfnotecite] = ACTIONS(6333), - [anon_sym_BSLASHlabel] = ACTIONS(6333), - [anon_sym_BSLASHref] = ACTIONS(6333), - [anon_sym_BSLASHeqref] = ACTIONS(6333), - [anon_sym_BSLASHvref] = ACTIONS(6333), - [anon_sym_BSLASHVref] = ACTIONS(6333), - [anon_sym_BSLASHautoref] = ACTIONS(6333), - [anon_sym_BSLASHpageref] = ACTIONS(6333), - [anon_sym_BSLASHcref] = ACTIONS(6333), - [anon_sym_BSLASHCref] = ACTIONS(6333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnameCref] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6333), - [anon_sym_BSLASHlabelcref] = ACTIONS(6333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange] = ACTIONS(6333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHCrefrange] = ACTIONS(6333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6335), - [anon_sym_BSLASHnewlabel] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand] = ACTIONS(6333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6335), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6333), - [anon_sym_BSLASHdef] = ACTIONS(6333), - [anon_sym_BSLASHlet] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6333), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6333), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6333), - [anon_sym_BSLASHgls] = ACTIONS(6333), - [anon_sym_BSLASHGls] = ACTIONS(6333), - [anon_sym_BSLASHGLS] = ACTIONS(6333), - [anon_sym_BSLASHglspl] = ACTIONS(6333), - [anon_sym_BSLASHGlspl] = ACTIONS(6333), - [anon_sym_BSLASHGLSpl] = ACTIONS(6333), - [anon_sym_BSLASHglsdisp] = ACTIONS(6333), - [anon_sym_BSLASHglslink] = ACTIONS(6333), - [anon_sym_BSLASHglstext] = ACTIONS(6333), - [anon_sym_BSLASHGlstext] = ACTIONS(6333), - [anon_sym_BSLASHGLStext] = ACTIONS(6333), - [anon_sym_BSLASHglsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6333), - [anon_sym_BSLASHglsplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSplural] = ACTIONS(6333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6333), - [anon_sym_BSLASHglsname] = ACTIONS(6333), - [anon_sym_BSLASHGlsname] = ACTIONS(6333), - [anon_sym_BSLASHGLSname] = ACTIONS(6333), - [anon_sym_BSLASHglssymbol] = ACTIONS(6333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6333), - [anon_sym_BSLASHglsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6333), - [anon_sym_BSLASHglsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6333), - [anon_sym_BSLASHglsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6333), - [anon_sym_BSLASHglsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6333), - [anon_sym_BSLASHglsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6333), - [anon_sym_BSLASHnewacronym] = ACTIONS(6333), - [anon_sym_BSLASHacrshort] = ACTIONS(6333), - [anon_sym_BSLASHAcrshort] = ACTIONS(6333), - [anon_sym_BSLASHACRshort] = ACTIONS(6333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6333), - [anon_sym_BSLASHacrlong] = ACTIONS(6333), - [anon_sym_BSLASHAcrlong] = ACTIONS(6333), - [anon_sym_BSLASHACRlong] = ACTIONS(6333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6333), - [anon_sym_BSLASHacrfull] = ACTIONS(6333), - [anon_sym_BSLASHAcrfull] = ACTIONS(6333), - [anon_sym_BSLASHACRfull] = ACTIONS(6333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6333), - [anon_sym_BSLASHacs] = ACTIONS(6333), - [anon_sym_BSLASHAcs] = ACTIONS(6333), - [anon_sym_BSLASHacsp] = ACTIONS(6333), - [anon_sym_BSLASHAcsp] = ACTIONS(6333), - [anon_sym_BSLASHacl] = ACTIONS(6333), - [anon_sym_BSLASHAcl] = ACTIONS(6333), - [anon_sym_BSLASHaclp] = ACTIONS(6333), - [anon_sym_BSLASHAclp] = ACTIONS(6333), - [anon_sym_BSLASHacf] = ACTIONS(6333), - [anon_sym_BSLASHAcf] = ACTIONS(6333), - [anon_sym_BSLASHacfp] = ACTIONS(6333), - [anon_sym_BSLASHAcfp] = ACTIONS(6333), - [anon_sym_BSLASHac] = ACTIONS(6333), - [anon_sym_BSLASHAc] = ACTIONS(6333), - [anon_sym_BSLASHacp] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6333), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6333), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6335), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6333), - [anon_sym_BSLASHcolor] = ACTIONS(6333), - [anon_sym_BSLASHcolorbox] = ACTIONS(6333), - [anon_sym_BSLASHtextcolor] = ACTIONS(6333), - [anon_sym_BSLASHpagecolor] = ACTIONS(6333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6333), - }, - [1981] = { - [sym_command_name] = ACTIONS(6329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6329), - [anon_sym_RBRACK] = ACTIONS(6331), - [anon_sym_COMMA] = ACTIONS(6331), - [anon_sym_EQ] = ACTIONS(6331), - [anon_sym_RBRACE] = ACTIONS(6331), - [sym_word] = ACTIONS(6329), - [sym_placeholder] = ACTIONS(6331), - [anon_sym_PLUS] = ACTIONS(6331), - [anon_sym_DASH] = ACTIONS(6331), - [anon_sym_STAR] = ACTIONS(6331), - [anon_sym_SLASH] = ACTIONS(6331), - [anon_sym_LT] = ACTIONS(6329), - [anon_sym_GT] = ACTIONS(6329), - [anon_sym_BANG] = ACTIONS(6329), - [anon_sym_PIPE] = ACTIONS(6329), - [anon_sym_COLON] = ACTIONS(6329), - [anon_sym_SQUOTE] = ACTIONS(6329), - [anon_sym__] = ACTIONS(6331), - [anon_sym_CARET] = ACTIONS(6331), - [anon_sym_BSLASHtitle] = ACTIONS(6329), - [anon_sym_BSLASHauthor] = ACTIONS(6329), - [anon_sym_BSLASHusepackage] = ACTIONS(6329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6329), - [anon_sym_BSLASHinclude] = ACTIONS(6329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6329), - [anon_sym_BSLASHinput] = ACTIONS(6329), - [anon_sym_BSLASHsubfile] = ACTIONS(6329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6329), - [anon_sym_BSLASHbibliography] = ACTIONS(6329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6329), - [anon_sym_BSLASHincludesvg] = ACTIONS(6329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6329), - [anon_sym_BSLASHimport] = ACTIONS(6329), - [anon_sym_BSLASHsubimport] = ACTIONS(6329), - [anon_sym_BSLASHinputfrom] = ACTIONS(6329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6329), - [anon_sym_BSLASHincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6329), - [anon_sym_BSLASHcaption] = ACTIONS(6329), - [anon_sym_BSLASHcite] = ACTIONS(6329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCite] = ACTIONS(6329), - [anon_sym_BSLASHnocite] = ACTIONS(6329), - [anon_sym_BSLASHcitet] = ACTIONS(6329), - [anon_sym_BSLASHcitep] = ACTIONS(6329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteauthor] = ACTIONS(6329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitetitle] = ACTIONS(6329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteyear] = ACTIONS(6329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6331), - [anon_sym_BSLASHcitedate] = ACTIONS(6329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6331), - [anon_sym_BSLASHciteurl] = ACTIONS(6329), - [anon_sym_BSLASHfullcite] = ACTIONS(6329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6329), - [anon_sym_BSLASHcitealt] = ACTIONS(6329), - [anon_sym_BSLASHcitealp] = ACTIONS(6329), - [anon_sym_BSLASHcitetext] = ACTIONS(6329), - [anon_sym_BSLASHparencite] = ACTIONS(6329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHParencite] = ACTIONS(6329), - [anon_sym_BSLASHfootcite] = ACTIONS(6329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6329), - [anon_sym_BSLASHtextcite] = ACTIONS(6329), - [anon_sym_BSLASHTextcite] = ACTIONS(6329), - [anon_sym_BSLASHsmartcite] = ACTIONS(6329), - [anon_sym_BSLASHSmartcite] = ACTIONS(6329), - [anon_sym_BSLASHsupercite] = ACTIONS(6329), - [anon_sym_BSLASHautocite] = ACTIONS(6329), - [anon_sym_BSLASHAutocite] = ACTIONS(6329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6331), - [anon_sym_BSLASHvolcite] = ACTIONS(6329), - [anon_sym_BSLASHVolcite] = ACTIONS(6329), - [anon_sym_BSLASHpvolcite] = ACTIONS(6329), - [anon_sym_BSLASHPvolcite] = ACTIONS(6329), - [anon_sym_BSLASHfvolcite] = ACTIONS(6329), - [anon_sym_BSLASHftvolcite] = ACTIONS(6329), - [anon_sym_BSLASHsvolcite] = ACTIONS(6329), - [anon_sym_BSLASHSvolcite] = ACTIONS(6329), - [anon_sym_BSLASHtvolcite] = ACTIONS(6329), - [anon_sym_BSLASHTvolcite] = ACTIONS(6329), - [anon_sym_BSLASHavolcite] = ACTIONS(6329), - [anon_sym_BSLASHAvolcite] = ACTIONS(6329), - [anon_sym_BSLASHnotecite] = ACTIONS(6329), - [anon_sym_BSLASHNotecite] = ACTIONS(6329), - [anon_sym_BSLASHpnotecite] = ACTIONS(6329), - [anon_sym_BSLASHPnotecite] = ACTIONS(6329), - [anon_sym_BSLASHfnotecite] = ACTIONS(6329), - [anon_sym_BSLASHlabel] = ACTIONS(6329), - [anon_sym_BSLASHref] = ACTIONS(6329), - [anon_sym_BSLASHeqref] = ACTIONS(6329), - [anon_sym_BSLASHvref] = ACTIONS(6329), - [anon_sym_BSLASHVref] = ACTIONS(6329), - [anon_sym_BSLASHautoref] = ACTIONS(6329), - [anon_sym_BSLASHpageref] = ACTIONS(6329), - [anon_sym_BSLASHcref] = ACTIONS(6329), - [anon_sym_BSLASHCref] = ACTIONS(6329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnameCref] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6329), - [anon_sym_BSLASHlabelcref] = ACTIONS(6329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange] = ACTIONS(6329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHCrefrange] = ACTIONS(6329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6331), - [anon_sym_BSLASHnewlabel] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand] = ACTIONS(6329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6331), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6329), - [anon_sym_BSLASHdef] = ACTIONS(6329), - [anon_sym_BSLASHlet] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6329), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6329), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6329), - [anon_sym_BSLASHgls] = ACTIONS(6329), - [anon_sym_BSLASHGls] = ACTIONS(6329), - [anon_sym_BSLASHGLS] = ACTIONS(6329), - [anon_sym_BSLASHglspl] = ACTIONS(6329), - [anon_sym_BSLASHGlspl] = ACTIONS(6329), - [anon_sym_BSLASHGLSpl] = ACTIONS(6329), - [anon_sym_BSLASHglsdisp] = ACTIONS(6329), - [anon_sym_BSLASHglslink] = ACTIONS(6329), - [anon_sym_BSLASHglstext] = ACTIONS(6329), - [anon_sym_BSLASHGlstext] = ACTIONS(6329), - [anon_sym_BSLASHGLStext] = ACTIONS(6329), - [anon_sym_BSLASHglsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6329), - [anon_sym_BSLASHglsplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSplural] = ACTIONS(6329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6329), - [anon_sym_BSLASHglsname] = ACTIONS(6329), - [anon_sym_BSLASHGlsname] = ACTIONS(6329), - [anon_sym_BSLASHGLSname] = ACTIONS(6329), - [anon_sym_BSLASHglssymbol] = ACTIONS(6329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6329), - [anon_sym_BSLASHglsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6329), - [anon_sym_BSLASHglsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6329), - [anon_sym_BSLASHglsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6329), - [anon_sym_BSLASHglsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6329), - [anon_sym_BSLASHglsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6329), - [anon_sym_BSLASHnewacronym] = ACTIONS(6329), - [anon_sym_BSLASHacrshort] = ACTIONS(6329), - [anon_sym_BSLASHAcrshort] = ACTIONS(6329), - [anon_sym_BSLASHACRshort] = ACTIONS(6329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6329), - [anon_sym_BSLASHacrlong] = ACTIONS(6329), - [anon_sym_BSLASHAcrlong] = ACTIONS(6329), - [anon_sym_BSLASHACRlong] = ACTIONS(6329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6329), - [anon_sym_BSLASHacrfull] = ACTIONS(6329), - [anon_sym_BSLASHAcrfull] = ACTIONS(6329), - [anon_sym_BSLASHACRfull] = ACTIONS(6329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6329), - [anon_sym_BSLASHacs] = ACTIONS(6329), - [anon_sym_BSLASHAcs] = ACTIONS(6329), - [anon_sym_BSLASHacsp] = ACTIONS(6329), - [anon_sym_BSLASHAcsp] = ACTIONS(6329), - [anon_sym_BSLASHacl] = ACTIONS(6329), - [anon_sym_BSLASHAcl] = ACTIONS(6329), - [anon_sym_BSLASHaclp] = ACTIONS(6329), - [anon_sym_BSLASHAclp] = ACTIONS(6329), - [anon_sym_BSLASHacf] = ACTIONS(6329), - [anon_sym_BSLASHAcf] = ACTIONS(6329), - [anon_sym_BSLASHacfp] = ACTIONS(6329), - [anon_sym_BSLASHAcfp] = ACTIONS(6329), - [anon_sym_BSLASHac] = ACTIONS(6329), - [anon_sym_BSLASHAc] = ACTIONS(6329), - [anon_sym_BSLASHacp] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6329), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6329), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6331), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6329), - [anon_sym_BSLASHcolor] = ACTIONS(6329), - [anon_sym_BSLASHcolorbox] = ACTIONS(6329), - [anon_sym_BSLASHtextcolor] = ACTIONS(6329), - [anon_sym_BSLASHpagecolor] = ACTIONS(6329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6329), - }, - [1982] = { - [sym_command_name] = ACTIONS(6321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6321), - [anon_sym_RBRACK] = ACTIONS(6323), - [anon_sym_COMMA] = ACTIONS(6323), - [anon_sym_EQ] = ACTIONS(6323), - [anon_sym_RBRACE] = ACTIONS(6323), - [sym_word] = ACTIONS(6321), - [sym_placeholder] = ACTIONS(6323), - [anon_sym_PLUS] = ACTIONS(6323), - [anon_sym_DASH] = ACTIONS(6323), - [anon_sym_STAR] = ACTIONS(6323), - [anon_sym_SLASH] = ACTIONS(6323), - [anon_sym_LT] = ACTIONS(6321), - [anon_sym_GT] = ACTIONS(6321), - [anon_sym_BANG] = ACTIONS(6321), - [anon_sym_PIPE] = ACTIONS(6321), - [anon_sym_COLON] = ACTIONS(6321), - [anon_sym_SQUOTE] = ACTIONS(6321), - [anon_sym__] = ACTIONS(6323), - [anon_sym_CARET] = ACTIONS(6323), - [anon_sym_BSLASHtitle] = ACTIONS(6321), - [anon_sym_BSLASHauthor] = ACTIONS(6321), - [anon_sym_BSLASHusepackage] = ACTIONS(6321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6321), - [anon_sym_BSLASHinclude] = ACTIONS(6321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6321), - [anon_sym_BSLASHinput] = ACTIONS(6321), - [anon_sym_BSLASHsubfile] = ACTIONS(6321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6321), - [anon_sym_BSLASHbibliography] = ACTIONS(6321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6321), - [anon_sym_BSLASHincludesvg] = ACTIONS(6321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6321), - [anon_sym_BSLASHimport] = ACTIONS(6321), - [anon_sym_BSLASHsubimport] = ACTIONS(6321), - [anon_sym_BSLASHinputfrom] = ACTIONS(6321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6321), - [anon_sym_BSLASHincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6321), - [anon_sym_BSLASHcaption] = ACTIONS(6321), - [anon_sym_BSLASHcite] = ACTIONS(6321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCite] = ACTIONS(6321), - [anon_sym_BSLASHnocite] = ACTIONS(6321), - [anon_sym_BSLASHcitet] = ACTIONS(6321), - [anon_sym_BSLASHcitep] = ACTIONS(6321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteauthor] = ACTIONS(6321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitetitle] = ACTIONS(6321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteyear] = ACTIONS(6321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6323), - [anon_sym_BSLASHcitedate] = ACTIONS(6321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6323), - [anon_sym_BSLASHciteurl] = ACTIONS(6321), - [anon_sym_BSLASHfullcite] = ACTIONS(6321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6321), - [anon_sym_BSLASHcitealt] = ACTIONS(6321), - [anon_sym_BSLASHcitealp] = ACTIONS(6321), - [anon_sym_BSLASHcitetext] = ACTIONS(6321), - [anon_sym_BSLASHparencite] = ACTIONS(6321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHParencite] = ACTIONS(6321), - [anon_sym_BSLASHfootcite] = ACTIONS(6321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6321), - [anon_sym_BSLASHtextcite] = ACTIONS(6321), - [anon_sym_BSLASHTextcite] = ACTIONS(6321), - [anon_sym_BSLASHsmartcite] = ACTIONS(6321), - [anon_sym_BSLASHSmartcite] = ACTIONS(6321), - [anon_sym_BSLASHsupercite] = ACTIONS(6321), - [anon_sym_BSLASHautocite] = ACTIONS(6321), - [anon_sym_BSLASHAutocite] = ACTIONS(6321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6323), - [anon_sym_BSLASHvolcite] = ACTIONS(6321), - [anon_sym_BSLASHVolcite] = ACTIONS(6321), - [anon_sym_BSLASHpvolcite] = ACTIONS(6321), - [anon_sym_BSLASHPvolcite] = ACTIONS(6321), - [anon_sym_BSLASHfvolcite] = ACTIONS(6321), - [anon_sym_BSLASHftvolcite] = ACTIONS(6321), - [anon_sym_BSLASHsvolcite] = ACTIONS(6321), - [anon_sym_BSLASHSvolcite] = ACTIONS(6321), - [anon_sym_BSLASHtvolcite] = ACTIONS(6321), - [anon_sym_BSLASHTvolcite] = ACTIONS(6321), - [anon_sym_BSLASHavolcite] = ACTIONS(6321), - [anon_sym_BSLASHAvolcite] = ACTIONS(6321), - [anon_sym_BSLASHnotecite] = ACTIONS(6321), - [anon_sym_BSLASHNotecite] = ACTIONS(6321), - [anon_sym_BSLASHpnotecite] = ACTIONS(6321), - [anon_sym_BSLASHPnotecite] = ACTIONS(6321), - [anon_sym_BSLASHfnotecite] = ACTIONS(6321), - [anon_sym_BSLASHlabel] = ACTIONS(6321), - [anon_sym_BSLASHref] = ACTIONS(6321), - [anon_sym_BSLASHeqref] = ACTIONS(6321), - [anon_sym_BSLASHvref] = ACTIONS(6321), - [anon_sym_BSLASHVref] = ACTIONS(6321), - [anon_sym_BSLASHautoref] = ACTIONS(6321), - [anon_sym_BSLASHpageref] = ACTIONS(6321), - [anon_sym_BSLASHcref] = ACTIONS(6321), - [anon_sym_BSLASHCref] = ACTIONS(6321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnameCref] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6321), - [anon_sym_BSLASHlabelcref] = ACTIONS(6321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange] = ACTIONS(6321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHCrefrange] = ACTIONS(6321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6323), - [anon_sym_BSLASHnewlabel] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand] = ACTIONS(6321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6323), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6321), - [anon_sym_BSLASHdef] = ACTIONS(6321), - [anon_sym_BSLASHlet] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6321), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6321), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6321), - [anon_sym_BSLASHgls] = ACTIONS(6321), - [anon_sym_BSLASHGls] = ACTIONS(6321), - [anon_sym_BSLASHGLS] = ACTIONS(6321), - [anon_sym_BSLASHglspl] = ACTIONS(6321), - [anon_sym_BSLASHGlspl] = ACTIONS(6321), - [anon_sym_BSLASHGLSpl] = ACTIONS(6321), - [anon_sym_BSLASHglsdisp] = ACTIONS(6321), - [anon_sym_BSLASHglslink] = ACTIONS(6321), - [anon_sym_BSLASHglstext] = ACTIONS(6321), - [anon_sym_BSLASHGlstext] = ACTIONS(6321), - [anon_sym_BSLASHGLStext] = ACTIONS(6321), - [anon_sym_BSLASHglsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6321), - [anon_sym_BSLASHglsplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSplural] = ACTIONS(6321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6321), - [anon_sym_BSLASHglsname] = ACTIONS(6321), - [anon_sym_BSLASHGlsname] = ACTIONS(6321), - [anon_sym_BSLASHGLSname] = ACTIONS(6321), - [anon_sym_BSLASHglssymbol] = ACTIONS(6321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6321), - [anon_sym_BSLASHglsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6321), - [anon_sym_BSLASHglsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6321), - [anon_sym_BSLASHglsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6321), - [anon_sym_BSLASHglsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6321), - [anon_sym_BSLASHglsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6321), - [anon_sym_BSLASHnewacronym] = ACTIONS(6321), - [anon_sym_BSLASHacrshort] = ACTIONS(6321), - [anon_sym_BSLASHAcrshort] = ACTIONS(6321), - [anon_sym_BSLASHACRshort] = ACTIONS(6321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6321), - [anon_sym_BSLASHacrlong] = ACTIONS(6321), - [anon_sym_BSLASHAcrlong] = ACTIONS(6321), - [anon_sym_BSLASHACRlong] = ACTIONS(6321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6321), - [anon_sym_BSLASHacrfull] = ACTIONS(6321), - [anon_sym_BSLASHAcrfull] = ACTIONS(6321), - [anon_sym_BSLASHACRfull] = ACTIONS(6321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6321), - [anon_sym_BSLASHacs] = ACTIONS(6321), - [anon_sym_BSLASHAcs] = ACTIONS(6321), - [anon_sym_BSLASHacsp] = ACTIONS(6321), - [anon_sym_BSLASHAcsp] = ACTIONS(6321), - [anon_sym_BSLASHacl] = ACTIONS(6321), - [anon_sym_BSLASHAcl] = ACTIONS(6321), - [anon_sym_BSLASHaclp] = ACTIONS(6321), - [anon_sym_BSLASHAclp] = ACTIONS(6321), - [anon_sym_BSLASHacf] = ACTIONS(6321), - [anon_sym_BSLASHAcf] = ACTIONS(6321), - [anon_sym_BSLASHacfp] = ACTIONS(6321), - [anon_sym_BSLASHAcfp] = ACTIONS(6321), - [anon_sym_BSLASHac] = ACTIONS(6321), - [anon_sym_BSLASHAc] = ACTIONS(6321), - [anon_sym_BSLASHacp] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6321), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6321), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6323), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6321), - [anon_sym_BSLASHcolor] = ACTIONS(6321), - [anon_sym_BSLASHcolorbox] = ACTIONS(6321), - [anon_sym_BSLASHtextcolor] = ACTIONS(6321), - [anon_sym_BSLASHpagecolor] = ACTIONS(6321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6321), - }, - [1983] = { - [sym_command_name] = ACTIONS(6293), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6293), - [anon_sym_RBRACK] = ACTIONS(6295), - [anon_sym_COMMA] = ACTIONS(6295), - [anon_sym_EQ] = ACTIONS(6295), - [anon_sym_RBRACE] = ACTIONS(6295), - [sym_word] = ACTIONS(6293), - [sym_placeholder] = ACTIONS(6295), - [anon_sym_PLUS] = ACTIONS(6295), - [anon_sym_DASH] = ACTIONS(6295), - [anon_sym_STAR] = ACTIONS(6295), - [anon_sym_SLASH] = ACTIONS(6295), - [anon_sym_LT] = ACTIONS(6293), - [anon_sym_GT] = ACTIONS(6293), - [anon_sym_BANG] = ACTIONS(6293), - [anon_sym_PIPE] = ACTIONS(6293), - [anon_sym_COLON] = ACTIONS(6293), - [anon_sym_SQUOTE] = ACTIONS(6293), - [anon_sym__] = ACTIONS(6295), - [anon_sym_CARET] = ACTIONS(6295), - [anon_sym_BSLASHtitle] = ACTIONS(6293), - [anon_sym_BSLASHauthor] = ACTIONS(6293), - [anon_sym_BSLASHusepackage] = ACTIONS(6293), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6293), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6293), - [anon_sym_BSLASHinclude] = ACTIONS(6293), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6293), - [anon_sym_BSLASHinput] = ACTIONS(6293), - [anon_sym_BSLASHsubfile] = ACTIONS(6293), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6293), - [anon_sym_BSLASHbibliography] = ACTIONS(6293), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6293), - [anon_sym_BSLASHincludesvg] = ACTIONS(6293), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6293), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6293), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6293), - [anon_sym_BSLASHimport] = ACTIONS(6293), - [anon_sym_BSLASHsubimport] = ACTIONS(6293), - [anon_sym_BSLASHinputfrom] = ACTIONS(6293), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6293), - [anon_sym_BSLASHincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6293), - [anon_sym_BSLASHcaption] = ACTIONS(6293), - [anon_sym_BSLASHcite] = ACTIONS(6293), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCite] = ACTIONS(6293), - [anon_sym_BSLASHnocite] = ACTIONS(6293), - [anon_sym_BSLASHcitet] = ACTIONS(6293), - [anon_sym_BSLASHcitep] = ACTIONS(6293), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteauthor] = ACTIONS(6293), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6293), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitetitle] = ACTIONS(6293), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteyear] = ACTIONS(6293), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6295), - [anon_sym_BSLASHcitedate] = ACTIONS(6293), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6295), - [anon_sym_BSLASHciteurl] = ACTIONS(6293), - [anon_sym_BSLASHfullcite] = ACTIONS(6293), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6293), - [anon_sym_BSLASHcitealt] = ACTIONS(6293), - [anon_sym_BSLASHcitealp] = ACTIONS(6293), - [anon_sym_BSLASHcitetext] = ACTIONS(6293), - [anon_sym_BSLASHparencite] = ACTIONS(6293), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHParencite] = ACTIONS(6293), - [anon_sym_BSLASHfootcite] = ACTIONS(6293), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6293), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6293), - [anon_sym_BSLASHtextcite] = ACTIONS(6293), - [anon_sym_BSLASHTextcite] = ACTIONS(6293), - [anon_sym_BSLASHsmartcite] = ACTIONS(6293), - [anon_sym_BSLASHSmartcite] = ACTIONS(6293), - [anon_sym_BSLASHsupercite] = ACTIONS(6293), - [anon_sym_BSLASHautocite] = ACTIONS(6293), - [anon_sym_BSLASHAutocite] = ACTIONS(6293), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6295), - [anon_sym_BSLASHvolcite] = ACTIONS(6293), - [anon_sym_BSLASHVolcite] = ACTIONS(6293), - [anon_sym_BSLASHpvolcite] = ACTIONS(6293), - [anon_sym_BSLASHPvolcite] = ACTIONS(6293), - [anon_sym_BSLASHfvolcite] = ACTIONS(6293), - [anon_sym_BSLASHftvolcite] = ACTIONS(6293), - [anon_sym_BSLASHsvolcite] = ACTIONS(6293), - [anon_sym_BSLASHSvolcite] = ACTIONS(6293), - [anon_sym_BSLASHtvolcite] = ACTIONS(6293), - [anon_sym_BSLASHTvolcite] = ACTIONS(6293), - [anon_sym_BSLASHavolcite] = ACTIONS(6293), - [anon_sym_BSLASHAvolcite] = ACTIONS(6293), - [anon_sym_BSLASHnotecite] = ACTIONS(6293), - [anon_sym_BSLASHNotecite] = ACTIONS(6293), - [anon_sym_BSLASHpnotecite] = ACTIONS(6293), - [anon_sym_BSLASHPnotecite] = ACTIONS(6293), - [anon_sym_BSLASHfnotecite] = ACTIONS(6293), - [anon_sym_BSLASHlabel] = ACTIONS(6293), - [anon_sym_BSLASHref] = ACTIONS(6293), - [anon_sym_BSLASHeqref] = ACTIONS(6293), - [anon_sym_BSLASHvref] = ACTIONS(6293), - [anon_sym_BSLASHVref] = ACTIONS(6293), - [anon_sym_BSLASHautoref] = ACTIONS(6293), - [anon_sym_BSLASHpageref] = ACTIONS(6293), - [anon_sym_BSLASHcref] = ACTIONS(6293), - [anon_sym_BSLASHCref] = ACTIONS(6293), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnameCref] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6293), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6293), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6293), - [anon_sym_BSLASHlabelcref] = ACTIONS(6293), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange] = ACTIONS(6293), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHCrefrange] = ACTIONS(6293), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6295), - [anon_sym_BSLASHnewlabel] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand] = ACTIONS(6293), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6293), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6295), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6293), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6295), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6293), - [anon_sym_BSLASHdef] = ACTIONS(6293), - [anon_sym_BSLASHlet] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6293), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6293), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6293), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6293), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6293), - [anon_sym_BSLASHgls] = ACTIONS(6293), - [anon_sym_BSLASHGls] = ACTIONS(6293), - [anon_sym_BSLASHGLS] = ACTIONS(6293), - [anon_sym_BSLASHglspl] = ACTIONS(6293), - [anon_sym_BSLASHGlspl] = ACTIONS(6293), - [anon_sym_BSLASHGLSpl] = ACTIONS(6293), - [anon_sym_BSLASHglsdisp] = ACTIONS(6293), - [anon_sym_BSLASHglslink] = ACTIONS(6293), - [anon_sym_BSLASHglstext] = ACTIONS(6293), - [anon_sym_BSLASHGlstext] = ACTIONS(6293), - [anon_sym_BSLASHGLStext] = ACTIONS(6293), - [anon_sym_BSLASHglsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6293), - [anon_sym_BSLASHglsplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSplural] = ACTIONS(6293), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6293), - [anon_sym_BSLASHglsname] = ACTIONS(6293), - [anon_sym_BSLASHGlsname] = ACTIONS(6293), - [anon_sym_BSLASHGLSname] = ACTIONS(6293), - [anon_sym_BSLASHglssymbol] = ACTIONS(6293), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6293), - [anon_sym_BSLASHglsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6293), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6293), - [anon_sym_BSLASHglsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6293), - [anon_sym_BSLASHglsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6293), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6293), - [anon_sym_BSLASHglsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6293), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6293), - [anon_sym_BSLASHglsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6293), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6293), - [anon_sym_BSLASHnewacronym] = ACTIONS(6293), - [anon_sym_BSLASHacrshort] = ACTIONS(6293), - [anon_sym_BSLASHAcrshort] = ACTIONS(6293), - [anon_sym_BSLASHACRshort] = ACTIONS(6293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6293), - [anon_sym_BSLASHacrlong] = ACTIONS(6293), - [anon_sym_BSLASHAcrlong] = ACTIONS(6293), - [anon_sym_BSLASHACRlong] = ACTIONS(6293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6293), - [anon_sym_BSLASHacrfull] = ACTIONS(6293), - [anon_sym_BSLASHAcrfull] = ACTIONS(6293), - [anon_sym_BSLASHACRfull] = ACTIONS(6293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6293), - [anon_sym_BSLASHacs] = ACTIONS(6293), - [anon_sym_BSLASHAcs] = ACTIONS(6293), - [anon_sym_BSLASHacsp] = ACTIONS(6293), - [anon_sym_BSLASHAcsp] = ACTIONS(6293), - [anon_sym_BSLASHacl] = ACTIONS(6293), - [anon_sym_BSLASHAcl] = ACTIONS(6293), - [anon_sym_BSLASHaclp] = ACTIONS(6293), - [anon_sym_BSLASHAclp] = ACTIONS(6293), - [anon_sym_BSLASHacf] = ACTIONS(6293), - [anon_sym_BSLASHAcf] = ACTIONS(6293), - [anon_sym_BSLASHacfp] = ACTIONS(6293), - [anon_sym_BSLASHAcfp] = ACTIONS(6293), - [anon_sym_BSLASHac] = ACTIONS(6293), - [anon_sym_BSLASHAc] = ACTIONS(6293), - [anon_sym_BSLASHacp] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6293), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6293), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6293), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6293), - [anon_sym_BSLASHcolor] = ACTIONS(6293), - [anon_sym_BSLASHcolorbox] = ACTIONS(6293), - [anon_sym_BSLASHtextcolor] = ACTIONS(6293), - [anon_sym_BSLASHpagecolor] = ACTIONS(6293), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6293), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6293), - }, - [1984] = { - [sym_command_name] = ACTIONS(6289), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6289), - [anon_sym_RBRACK] = ACTIONS(6291), - [anon_sym_COMMA] = ACTIONS(6291), - [anon_sym_EQ] = ACTIONS(6291), - [anon_sym_RBRACE] = ACTIONS(6291), - [sym_word] = ACTIONS(6289), - [sym_placeholder] = ACTIONS(6291), - [anon_sym_PLUS] = ACTIONS(6291), - [anon_sym_DASH] = ACTIONS(6291), - [anon_sym_STAR] = ACTIONS(6291), - [anon_sym_SLASH] = ACTIONS(6291), - [anon_sym_LT] = ACTIONS(6289), - [anon_sym_GT] = ACTIONS(6289), - [anon_sym_BANG] = ACTIONS(6289), - [anon_sym_PIPE] = ACTIONS(6289), - [anon_sym_COLON] = ACTIONS(6289), - [anon_sym_SQUOTE] = ACTIONS(6289), - [anon_sym__] = ACTIONS(6291), - [anon_sym_CARET] = ACTIONS(6291), - [anon_sym_BSLASHtitle] = ACTIONS(6289), - [anon_sym_BSLASHauthor] = ACTIONS(6289), - [anon_sym_BSLASHusepackage] = ACTIONS(6289), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6289), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6289), - [anon_sym_BSLASHinclude] = ACTIONS(6289), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6289), - [anon_sym_BSLASHinput] = ACTIONS(6289), - [anon_sym_BSLASHsubfile] = ACTIONS(6289), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6289), - [anon_sym_BSLASHbibliography] = ACTIONS(6289), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6289), - [anon_sym_BSLASHincludesvg] = ACTIONS(6289), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6289), - [anon_sym_BSLASHimport] = ACTIONS(6289), - [anon_sym_BSLASHsubimport] = ACTIONS(6289), - [anon_sym_BSLASHinputfrom] = ACTIONS(6289), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6289), - [anon_sym_BSLASHincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6289), - [anon_sym_BSLASHcaption] = ACTIONS(6289), - [anon_sym_BSLASHcite] = ACTIONS(6289), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCite] = ACTIONS(6289), - [anon_sym_BSLASHnocite] = ACTIONS(6289), - [anon_sym_BSLASHcitet] = ACTIONS(6289), - [anon_sym_BSLASHcitep] = ACTIONS(6289), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteauthor] = ACTIONS(6289), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6289), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitetitle] = ACTIONS(6289), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteyear] = ACTIONS(6289), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6291), - [anon_sym_BSLASHcitedate] = ACTIONS(6289), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6291), - [anon_sym_BSLASHciteurl] = ACTIONS(6289), - [anon_sym_BSLASHfullcite] = ACTIONS(6289), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6289), - [anon_sym_BSLASHcitealt] = ACTIONS(6289), - [anon_sym_BSLASHcitealp] = ACTIONS(6289), - [anon_sym_BSLASHcitetext] = ACTIONS(6289), - [anon_sym_BSLASHparencite] = ACTIONS(6289), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHParencite] = ACTIONS(6289), - [anon_sym_BSLASHfootcite] = ACTIONS(6289), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6289), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6289), - [anon_sym_BSLASHtextcite] = ACTIONS(6289), - [anon_sym_BSLASHTextcite] = ACTIONS(6289), - [anon_sym_BSLASHsmartcite] = ACTIONS(6289), - [anon_sym_BSLASHSmartcite] = ACTIONS(6289), - [anon_sym_BSLASHsupercite] = ACTIONS(6289), - [anon_sym_BSLASHautocite] = ACTIONS(6289), - [anon_sym_BSLASHAutocite] = ACTIONS(6289), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6291), - [anon_sym_BSLASHvolcite] = ACTIONS(6289), - [anon_sym_BSLASHVolcite] = ACTIONS(6289), - [anon_sym_BSLASHpvolcite] = ACTIONS(6289), - [anon_sym_BSLASHPvolcite] = ACTIONS(6289), - [anon_sym_BSLASHfvolcite] = ACTIONS(6289), - [anon_sym_BSLASHftvolcite] = ACTIONS(6289), - [anon_sym_BSLASHsvolcite] = ACTIONS(6289), - [anon_sym_BSLASHSvolcite] = ACTIONS(6289), - [anon_sym_BSLASHtvolcite] = ACTIONS(6289), - [anon_sym_BSLASHTvolcite] = ACTIONS(6289), - [anon_sym_BSLASHavolcite] = ACTIONS(6289), - [anon_sym_BSLASHAvolcite] = ACTIONS(6289), - [anon_sym_BSLASHnotecite] = ACTIONS(6289), - [anon_sym_BSLASHNotecite] = ACTIONS(6289), - [anon_sym_BSLASHpnotecite] = ACTIONS(6289), - [anon_sym_BSLASHPnotecite] = ACTIONS(6289), - [anon_sym_BSLASHfnotecite] = ACTIONS(6289), - [anon_sym_BSLASHlabel] = ACTIONS(6289), - [anon_sym_BSLASHref] = ACTIONS(6289), - [anon_sym_BSLASHeqref] = ACTIONS(6289), - [anon_sym_BSLASHvref] = ACTIONS(6289), - [anon_sym_BSLASHVref] = ACTIONS(6289), - [anon_sym_BSLASHautoref] = ACTIONS(6289), - [anon_sym_BSLASHpageref] = ACTIONS(6289), - [anon_sym_BSLASHcref] = ACTIONS(6289), - [anon_sym_BSLASHCref] = ACTIONS(6289), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnameCref] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6289), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6289), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6289), - [anon_sym_BSLASHlabelcref] = ACTIONS(6289), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange] = ACTIONS(6289), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHCrefrange] = ACTIONS(6289), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6291), - [anon_sym_BSLASHnewlabel] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand] = ACTIONS(6289), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6289), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6291), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6289), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6291), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6289), - [anon_sym_BSLASHdef] = ACTIONS(6289), - [anon_sym_BSLASHlet] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6289), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6289), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6289), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6289), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6289), - [anon_sym_BSLASHgls] = ACTIONS(6289), - [anon_sym_BSLASHGls] = ACTIONS(6289), - [anon_sym_BSLASHGLS] = ACTIONS(6289), - [anon_sym_BSLASHglspl] = ACTIONS(6289), - [anon_sym_BSLASHGlspl] = ACTIONS(6289), - [anon_sym_BSLASHGLSpl] = ACTIONS(6289), - [anon_sym_BSLASHglsdisp] = ACTIONS(6289), - [anon_sym_BSLASHglslink] = ACTIONS(6289), - [anon_sym_BSLASHglstext] = ACTIONS(6289), - [anon_sym_BSLASHGlstext] = ACTIONS(6289), - [anon_sym_BSLASHGLStext] = ACTIONS(6289), - [anon_sym_BSLASHglsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6289), - [anon_sym_BSLASHglsplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSplural] = ACTIONS(6289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6289), - [anon_sym_BSLASHglsname] = ACTIONS(6289), - [anon_sym_BSLASHGlsname] = ACTIONS(6289), - [anon_sym_BSLASHGLSname] = ACTIONS(6289), - [anon_sym_BSLASHglssymbol] = ACTIONS(6289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6289), - [anon_sym_BSLASHglsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6289), - [anon_sym_BSLASHglsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6289), - [anon_sym_BSLASHglsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6289), - [anon_sym_BSLASHglsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6289), - [anon_sym_BSLASHglsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6289), - [anon_sym_BSLASHnewacronym] = ACTIONS(6289), - [anon_sym_BSLASHacrshort] = ACTIONS(6289), - [anon_sym_BSLASHAcrshort] = ACTIONS(6289), - [anon_sym_BSLASHACRshort] = ACTIONS(6289), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6289), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6289), - [anon_sym_BSLASHacrlong] = ACTIONS(6289), - [anon_sym_BSLASHAcrlong] = ACTIONS(6289), - [anon_sym_BSLASHACRlong] = ACTIONS(6289), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6289), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6289), - [anon_sym_BSLASHacrfull] = ACTIONS(6289), - [anon_sym_BSLASHAcrfull] = ACTIONS(6289), - [anon_sym_BSLASHACRfull] = ACTIONS(6289), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6289), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6289), - [anon_sym_BSLASHacs] = ACTIONS(6289), - [anon_sym_BSLASHAcs] = ACTIONS(6289), - [anon_sym_BSLASHacsp] = ACTIONS(6289), - [anon_sym_BSLASHAcsp] = ACTIONS(6289), - [anon_sym_BSLASHacl] = ACTIONS(6289), - [anon_sym_BSLASHAcl] = ACTIONS(6289), - [anon_sym_BSLASHaclp] = ACTIONS(6289), - [anon_sym_BSLASHAclp] = ACTIONS(6289), - [anon_sym_BSLASHacf] = ACTIONS(6289), - [anon_sym_BSLASHAcf] = ACTIONS(6289), - [anon_sym_BSLASHacfp] = ACTIONS(6289), - [anon_sym_BSLASHAcfp] = ACTIONS(6289), - [anon_sym_BSLASHac] = ACTIONS(6289), - [anon_sym_BSLASHAc] = ACTIONS(6289), - [anon_sym_BSLASHacp] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6289), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6289), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6289), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6289), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6289), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6289), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6289), - [anon_sym_BSLASHcolor] = ACTIONS(6289), - [anon_sym_BSLASHcolorbox] = ACTIONS(6289), - [anon_sym_BSLASHtextcolor] = ACTIONS(6289), - [anon_sym_BSLASHpagecolor] = ACTIONS(6289), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6289), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6289), - }, - [1985] = { - [sym_command_name] = ACTIONS(6273), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6273), - [anon_sym_RBRACK] = ACTIONS(6275), - [anon_sym_COMMA] = ACTIONS(6275), - [anon_sym_EQ] = ACTIONS(6275), - [anon_sym_RBRACE] = ACTIONS(6275), - [sym_word] = ACTIONS(6273), - [sym_placeholder] = ACTIONS(6275), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6275), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_LT] = ACTIONS(6273), - [anon_sym_GT] = ACTIONS(6273), - [anon_sym_BANG] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_SQUOTE] = ACTIONS(6273), - [anon_sym__] = ACTIONS(6275), - [anon_sym_CARET] = ACTIONS(6275), - [anon_sym_BSLASHtitle] = ACTIONS(6273), - [anon_sym_BSLASHauthor] = ACTIONS(6273), - [anon_sym_BSLASHusepackage] = ACTIONS(6273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6273), - [anon_sym_BSLASHinclude] = ACTIONS(6273), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6273), - [anon_sym_BSLASHinput] = ACTIONS(6273), - [anon_sym_BSLASHsubfile] = ACTIONS(6273), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6273), - [anon_sym_BSLASHbibliography] = ACTIONS(6273), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6273), - [anon_sym_BSLASHincludesvg] = ACTIONS(6273), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6273), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6273), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6273), - [anon_sym_BSLASHimport] = ACTIONS(6273), - [anon_sym_BSLASHsubimport] = ACTIONS(6273), - [anon_sym_BSLASHinputfrom] = ACTIONS(6273), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6273), - [anon_sym_BSLASHincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6273), - [anon_sym_BSLASHcaption] = ACTIONS(6273), - [anon_sym_BSLASHcite] = ACTIONS(6273), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCite] = ACTIONS(6273), - [anon_sym_BSLASHnocite] = ACTIONS(6273), - [anon_sym_BSLASHcitet] = ACTIONS(6273), - [anon_sym_BSLASHcitep] = ACTIONS(6273), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteauthor] = ACTIONS(6273), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6273), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitetitle] = ACTIONS(6273), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteyear] = ACTIONS(6273), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6275), - [anon_sym_BSLASHcitedate] = ACTIONS(6273), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6275), - [anon_sym_BSLASHciteurl] = ACTIONS(6273), - [anon_sym_BSLASHfullcite] = ACTIONS(6273), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6273), - [anon_sym_BSLASHcitealt] = ACTIONS(6273), - [anon_sym_BSLASHcitealp] = ACTIONS(6273), - [anon_sym_BSLASHcitetext] = ACTIONS(6273), - [anon_sym_BSLASHparencite] = ACTIONS(6273), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHParencite] = ACTIONS(6273), - [anon_sym_BSLASHfootcite] = ACTIONS(6273), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6273), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6273), - [anon_sym_BSLASHtextcite] = ACTIONS(6273), - [anon_sym_BSLASHTextcite] = ACTIONS(6273), - [anon_sym_BSLASHsmartcite] = ACTIONS(6273), - [anon_sym_BSLASHSmartcite] = ACTIONS(6273), - [anon_sym_BSLASHsupercite] = ACTIONS(6273), - [anon_sym_BSLASHautocite] = ACTIONS(6273), - [anon_sym_BSLASHAutocite] = ACTIONS(6273), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6275), - [anon_sym_BSLASHvolcite] = ACTIONS(6273), - [anon_sym_BSLASHVolcite] = ACTIONS(6273), - [anon_sym_BSLASHpvolcite] = ACTIONS(6273), - [anon_sym_BSLASHPvolcite] = ACTIONS(6273), - [anon_sym_BSLASHfvolcite] = ACTIONS(6273), - [anon_sym_BSLASHftvolcite] = ACTIONS(6273), - [anon_sym_BSLASHsvolcite] = ACTIONS(6273), - [anon_sym_BSLASHSvolcite] = ACTIONS(6273), - [anon_sym_BSLASHtvolcite] = ACTIONS(6273), - [anon_sym_BSLASHTvolcite] = ACTIONS(6273), - [anon_sym_BSLASHavolcite] = ACTIONS(6273), - [anon_sym_BSLASHAvolcite] = ACTIONS(6273), - [anon_sym_BSLASHnotecite] = ACTIONS(6273), - [anon_sym_BSLASHNotecite] = ACTIONS(6273), - [anon_sym_BSLASHpnotecite] = ACTIONS(6273), - [anon_sym_BSLASHPnotecite] = ACTIONS(6273), - [anon_sym_BSLASHfnotecite] = ACTIONS(6273), - [anon_sym_BSLASHlabel] = ACTIONS(6273), - [anon_sym_BSLASHref] = ACTIONS(6273), - [anon_sym_BSLASHeqref] = ACTIONS(6273), - [anon_sym_BSLASHvref] = ACTIONS(6273), - [anon_sym_BSLASHVref] = ACTIONS(6273), - [anon_sym_BSLASHautoref] = ACTIONS(6273), - [anon_sym_BSLASHpageref] = ACTIONS(6273), - [anon_sym_BSLASHcref] = ACTIONS(6273), - [anon_sym_BSLASHCref] = ACTIONS(6273), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnameCref] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6273), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6273), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6273), - [anon_sym_BSLASHlabelcref] = ACTIONS(6273), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange] = ACTIONS(6273), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHCrefrange] = ACTIONS(6273), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6275), - [anon_sym_BSLASHnewlabel] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand] = ACTIONS(6273), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6273), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6275), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6273), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6275), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6273), - [anon_sym_BSLASHdef] = ACTIONS(6273), - [anon_sym_BSLASHlet] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6273), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6273), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6273), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6273), - [anon_sym_BSLASHgls] = ACTIONS(6273), - [anon_sym_BSLASHGls] = ACTIONS(6273), - [anon_sym_BSLASHGLS] = ACTIONS(6273), - [anon_sym_BSLASHglspl] = ACTIONS(6273), - [anon_sym_BSLASHGlspl] = ACTIONS(6273), - [anon_sym_BSLASHGLSpl] = ACTIONS(6273), - [anon_sym_BSLASHglsdisp] = ACTIONS(6273), - [anon_sym_BSLASHglslink] = ACTIONS(6273), - [anon_sym_BSLASHglstext] = ACTIONS(6273), - [anon_sym_BSLASHGlstext] = ACTIONS(6273), - [anon_sym_BSLASHGLStext] = ACTIONS(6273), - [anon_sym_BSLASHglsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6273), - [anon_sym_BSLASHglsplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSplural] = ACTIONS(6273), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6273), - [anon_sym_BSLASHglsname] = ACTIONS(6273), - [anon_sym_BSLASHGlsname] = ACTIONS(6273), - [anon_sym_BSLASHGLSname] = ACTIONS(6273), - [anon_sym_BSLASHglssymbol] = ACTIONS(6273), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6273), - [anon_sym_BSLASHglsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6273), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6273), - [anon_sym_BSLASHglsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6273), - [anon_sym_BSLASHglsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6273), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6273), - [anon_sym_BSLASHglsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6273), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6273), - [anon_sym_BSLASHglsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6273), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6273), - [anon_sym_BSLASHnewacronym] = ACTIONS(6273), - [anon_sym_BSLASHacrshort] = ACTIONS(6273), - [anon_sym_BSLASHAcrshort] = ACTIONS(6273), - [anon_sym_BSLASHACRshort] = ACTIONS(6273), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6273), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6273), - [anon_sym_BSLASHacrlong] = ACTIONS(6273), - [anon_sym_BSLASHAcrlong] = ACTIONS(6273), - [anon_sym_BSLASHACRlong] = ACTIONS(6273), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6273), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6273), - [anon_sym_BSLASHacrfull] = ACTIONS(6273), - [anon_sym_BSLASHAcrfull] = ACTIONS(6273), - [anon_sym_BSLASHACRfull] = ACTIONS(6273), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6273), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6273), - [anon_sym_BSLASHacs] = ACTIONS(6273), - [anon_sym_BSLASHAcs] = ACTIONS(6273), - [anon_sym_BSLASHacsp] = ACTIONS(6273), - [anon_sym_BSLASHAcsp] = ACTIONS(6273), - [anon_sym_BSLASHacl] = ACTIONS(6273), - [anon_sym_BSLASHAcl] = ACTIONS(6273), - [anon_sym_BSLASHaclp] = ACTIONS(6273), - [anon_sym_BSLASHAclp] = ACTIONS(6273), - [anon_sym_BSLASHacf] = ACTIONS(6273), - [anon_sym_BSLASHAcf] = ACTIONS(6273), - [anon_sym_BSLASHacfp] = ACTIONS(6273), - [anon_sym_BSLASHAcfp] = ACTIONS(6273), - [anon_sym_BSLASHac] = ACTIONS(6273), - [anon_sym_BSLASHAc] = ACTIONS(6273), - [anon_sym_BSLASHacp] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6273), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6273), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6273), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6273), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6273), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6273), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6273), - [anon_sym_BSLASHcolor] = ACTIONS(6273), - [anon_sym_BSLASHcolorbox] = ACTIONS(6273), - [anon_sym_BSLASHtextcolor] = ACTIONS(6273), - [anon_sym_BSLASHpagecolor] = ACTIONS(6273), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6273), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6273), - }, - [1986] = { - [sym_command_name] = ACTIONS(6029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6029), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_EQ] = ACTIONS(6031), - [anon_sym_RBRACE] = ACTIONS(6031), - [sym_word] = ACTIONS(6029), - [sym_placeholder] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6031), - [anon_sym_DASH] = ACTIONS(6031), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6029), - [anon_sym_GT] = ACTIONS(6029), - [anon_sym_BANG] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_COLON] = ACTIONS(6029), - [anon_sym_SQUOTE] = ACTIONS(6029), - [anon_sym__] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_BSLASHtitle] = ACTIONS(6029), - [anon_sym_BSLASHauthor] = ACTIONS(6029), - [anon_sym_BSLASHusepackage] = ACTIONS(6029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6029), - [anon_sym_BSLASHinclude] = ACTIONS(6029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6029), - [anon_sym_BSLASHinput] = ACTIONS(6029), - [anon_sym_BSLASHsubfile] = ACTIONS(6029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6029), - [anon_sym_BSLASHbibliography] = ACTIONS(6029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6029), - [anon_sym_BSLASHincludesvg] = ACTIONS(6029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6029), - [anon_sym_BSLASHimport] = ACTIONS(6029), - [anon_sym_BSLASHsubimport] = ACTIONS(6029), - [anon_sym_BSLASHinputfrom] = ACTIONS(6029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6029), - [anon_sym_BSLASHincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6029), - [anon_sym_BSLASHcaption] = ACTIONS(6029), - [anon_sym_BSLASHcite] = ACTIONS(6029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCite] = ACTIONS(6029), - [anon_sym_BSLASHnocite] = ACTIONS(6029), - [anon_sym_BSLASHcitet] = ACTIONS(6029), - [anon_sym_BSLASHcitep] = ACTIONS(6029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteauthor] = ACTIONS(6029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitetitle] = ACTIONS(6029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteyear] = ACTIONS(6029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6031), - [anon_sym_BSLASHcitedate] = ACTIONS(6029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6031), - [anon_sym_BSLASHciteurl] = ACTIONS(6029), - [anon_sym_BSLASHfullcite] = ACTIONS(6029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6029), - [anon_sym_BSLASHcitealt] = ACTIONS(6029), - [anon_sym_BSLASHcitealp] = ACTIONS(6029), - [anon_sym_BSLASHcitetext] = ACTIONS(6029), - [anon_sym_BSLASHparencite] = ACTIONS(6029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHParencite] = ACTIONS(6029), - [anon_sym_BSLASHfootcite] = ACTIONS(6029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6029), - [anon_sym_BSLASHtextcite] = ACTIONS(6029), - [anon_sym_BSLASHTextcite] = ACTIONS(6029), - [anon_sym_BSLASHsmartcite] = ACTIONS(6029), - [anon_sym_BSLASHSmartcite] = ACTIONS(6029), - [anon_sym_BSLASHsupercite] = ACTIONS(6029), - [anon_sym_BSLASHautocite] = ACTIONS(6029), - [anon_sym_BSLASHAutocite] = ACTIONS(6029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6031), - [anon_sym_BSLASHvolcite] = ACTIONS(6029), - [anon_sym_BSLASHVolcite] = ACTIONS(6029), - [anon_sym_BSLASHpvolcite] = ACTIONS(6029), - [anon_sym_BSLASHPvolcite] = ACTIONS(6029), - [anon_sym_BSLASHfvolcite] = ACTIONS(6029), - [anon_sym_BSLASHftvolcite] = ACTIONS(6029), - [anon_sym_BSLASHsvolcite] = ACTIONS(6029), - [anon_sym_BSLASHSvolcite] = ACTIONS(6029), - [anon_sym_BSLASHtvolcite] = ACTIONS(6029), - [anon_sym_BSLASHTvolcite] = ACTIONS(6029), - [anon_sym_BSLASHavolcite] = ACTIONS(6029), - [anon_sym_BSLASHAvolcite] = ACTIONS(6029), - [anon_sym_BSLASHnotecite] = ACTIONS(6029), - [anon_sym_BSLASHNotecite] = ACTIONS(6029), - [anon_sym_BSLASHpnotecite] = ACTIONS(6029), - [anon_sym_BSLASHPnotecite] = ACTIONS(6029), - [anon_sym_BSLASHfnotecite] = ACTIONS(6029), - [anon_sym_BSLASHlabel] = ACTIONS(6029), - [anon_sym_BSLASHref] = ACTIONS(6029), - [anon_sym_BSLASHeqref] = ACTIONS(6029), - [anon_sym_BSLASHvref] = ACTIONS(6029), - [anon_sym_BSLASHVref] = ACTIONS(6029), - [anon_sym_BSLASHautoref] = ACTIONS(6029), - [anon_sym_BSLASHpageref] = ACTIONS(6029), - [anon_sym_BSLASHcref] = ACTIONS(6029), - [anon_sym_BSLASHCref] = ACTIONS(6029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnameCref] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6029), - [anon_sym_BSLASHlabelcref] = ACTIONS(6029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange] = ACTIONS(6029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHCrefrange] = ACTIONS(6029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6031), - [anon_sym_BSLASHnewlabel] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand] = ACTIONS(6029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6031), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6029), - [anon_sym_BSLASHdef] = ACTIONS(6029), - [anon_sym_BSLASHlet] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6029), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6029), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6029), - [anon_sym_BSLASHgls] = ACTIONS(6029), - [anon_sym_BSLASHGls] = ACTIONS(6029), - [anon_sym_BSLASHGLS] = ACTIONS(6029), - [anon_sym_BSLASHglspl] = ACTIONS(6029), - [anon_sym_BSLASHGlspl] = ACTIONS(6029), - [anon_sym_BSLASHGLSpl] = ACTIONS(6029), - [anon_sym_BSLASHglsdisp] = ACTIONS(6029), - [anon_sym_BSLASHglslink] = ACTIONS(6029), - [anon_sym_BSLASHglstext] = ACTIONS(6029), - [anon_sym_BSLASHGlstext] = ACTIONS(6029), - [anon_sym_BSLASHGLStext] = ACTIONS(6029), - [anon_sym_BSLASHglsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6029), - [anon_sym_BSLASHglsplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSplural] = ACTIONS(6029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6029), - [anon_sym_BSLASHglsname] = ACTIONS(6029), - [anon_sym_BSLASHGlsname] = ACTIONS(6029), - [anon_sym_BSLASHGLSname] = ACTIONS(6029), - [anon_sym_BSLASHglssymbol] = ACTIONS(6029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6029), - [anon_sym_BSLASHglsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6029), - [anon_sym_BSLASHglsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6029), - [anon_sym_BSLASHglsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6029), - [anon_sym_BSLASHglsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6029), - [anon_sym_BSLASHglsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6029), - [anon_sym_BSLASHnewacronym] = ACTIONS(6029), - [anon_sym_BSLASHacrshort] = ACTIONS(6029), - [anon_sym_BSLASHAcrshort] = ACTIONS(6029), - [anon_sym_BSLASHACRshort] = ACTIONS(6029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6029), - [anon_sym_BSLASHacrlong] = ACTIONS(6029), - [anon_sym_BSLASHAcrlong] = ACTIONS(6029), - [anon_sym_BSLASHACRlong] = ACTIONS(6029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6029), - [anon_sym_BSLASHacrfull] = ACTIONS(6029), - [anon_sym_BSLASHAcrfull] = ACTIONS(6029), - [anon_sym_BSLASHACRfull] = ACTIONS(6029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6029), - [anon_sym_BSLASHacs] = ACTIONS(6029), - [anon_sym_BSLASHAcs] = ACTIONS(6029), - [anon_sym_BSLASHacsp] = ACTIONS(6029), - [anon_sym_BSLASHAcsp] = ACTIONS(6029), - [anon_sym_BSLASHacl] = ACTIONS(6029), - [anon_sym_BSLASHAcl] = ACTIONS(6029), - [anon_sym_BSLASHaclp] = ACTIONS(6029), - [anon_sym_BSLASHAclp] = ACTIONS(6029), - [anon_sym_BSLASHacf] = ACTIONS(6029), - [anon_sym_BSLASHAcf] = ACTIONS(6029), - [anon_sym_BSLASHacfp] = ACTIONS(6029), - [anon_sym_BSLASHAcfp] = ACTIONS(6029), - [anon_sym_BSLASHac] = ACTIONS(6029), - [anon_sym_BSLASHAc] = ACTIONS(6029), - [anon_sym_BSLASHacp] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6029), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6029), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6031), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6029), - [anon_sym_BSLASHcolor] = ACTIONS(6029), - [anon_sym_BSLASHcolorbox] = ACTIONS(6029), - [anon_sym_BSLASHtextcolor] = ACTIONS(6029), - [anon_sym_BSLASHpagecolor] = ACTIONS(6029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6029), - }, - [1987] = { - [sym_command_name] = ACTIONS(6241), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6241), - [anon_sym_RBRACK] = ACTIONS(6243), - [anon_sym_COMMA] = ACTIONS(6243), - [anon_sym_EQ] = ACTIONS(6243), - [anon_sym_RBRACE] = ACTIONS(6243), - [sym_word] = ACTIONS(6241), - [sym_placeholder] = ACTIONS(6243), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6243), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_LT] = ACTIONS(6241), - [anon_sym_GT] = ACTIONS(6241), - [anon_sym_BANG] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_SQUOTE] = ACTIONS(6241), - [anon_sym__] = ACTIONS(6243), - [anon_sym_CARET] = ACTIONS(6243), - [anon_sym_BSLASHtitle] = ACTIONS(6241), - [anon_sym_BSLASHauthor] = ACTIONS(6241), - [anon_sym_BSLASHusepackage] = ACTIONS(6241), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6241), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6241), - [anon_sym_BSLASHinclude] = ACTIONS(6241), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6241), - [anon_sym_BSLASHinput] = ACTIONS(6241), - [anon_sym_BSLASHsubfile] = ACTIONS(6241), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6241), - [anon_sym_BSLASHbibliography] = ACTIONS(6241), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6241), - [anon_sym_BSLASHincludesvg] = ACTIONS(6241), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6241), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6241), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6241), - [anon_sym_BSLASHimport] = ACTIONS(6241), - [anon_sym_BSLASHsubimport] = ACTIONS(6241), - [anon_sym_BSLASHinputfrom] = ACTIONS(6241), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6241), - [anon_sym_BSLASHincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6241), - [anon_sym_BSLASHcaption] = ACTIONS(6241), - [anon_sym_BSLASHcite] = ACTIONS(6241), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCite] = ACTIONS(6241), - [anon_sym_BSLASHnocite] = ACTIONS(6241), - [anon_sym_BSLASHcitet] = ACTIONS(6241), - [anon_sym_BSLASHcitep] = ACTIONS(6241), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteauthor] = ACTIONS(6241), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6241), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitetitle] = ACTIONS(6241), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteyear] = ACTIONS(6241), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6243), - [anon_sym_BSLASHcitedate] = ACTIONS(6241), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6243), - [anon_sym_BSLASHciteurl] = ACTIONS(6241), - [anon_sym_BSLASHfullcite] = ACTIONS(6241), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6241), - [anon_sym_BSLASHcitealt] = ACTIONS(6241), - [anon_sym_BSLASHcitealp] = ACTIONS(6241), - [anon_sym_BSLASHcitetext] = ACTIONS(6241), - [anon_sym_BSLASHparencite] = ACTIONS(6241), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHParencite] = ACTIONS(6241), - [anon_sym_BSLASHfootcite] = ACTIONS(6241), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6241), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6241), - [anon_sym_BSLASHtextcite] = ACTIONS(6241), - [anon_sym_BSLASHTextcite] = ACTIONS(6241), - [anon_sym_BSLASHsmartcite] = ACTIONS(6241), - [anon_sym_BSLASHSmartcite] = ACTIONS(6241), - [anon_sym_BSLASHsupercite] = ACTIONS(6241), - [anon_sym_BSLASHautocite] = ACTIONS(6241), - [anon_sym_BSLASHAutocite] = ACTIONS(6241), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6243), - [anon_sym_BSLASHvolcite] = ACTIONS(6241), - [anon_sym_BSLASHVolcite] = ACTIONS(6241), - [anon_sym_BSLASHpvolcite] = ACTIONS(6241), - [anon_sym_BSLASHPvolcite] = ACTIONS(6241), - [anon_sym_BSLASHfvolcite] = ACTIONS(6241), - [anon_sym_BSLASHftvolcite] = ACTIONS(6241), - [anon_sym_BSLASHsvolcite] = ACTIONS(6241), - [anon_sym_BSLASHSvolcite] = ACTIONS(6241), - [anon_sym_BSLASHtvolcite] = ACTIONS(6241), - [anon_sym_BSLASHTvolcite] = ACTIONS(6241), - [anon_sym_BSLASHavolcite] = ACTIONS(6241), - [anon_sym_BSLASHAvolcite] = ACTIONS(6241), - [anon_sym_BSLASHnotecite] = ACTIONS(6241), - [anon_sym_BSLASHNotecite] = ACTIONS(6241), - [anon_sym_BSLASHpnotecite] = ACTIONS(6241), - [anon_sym_BSLASHPnotecite] = ACTIONS(6241), - [anon_sym_BSLASHfnotecite] = ACTIONS(6241), - [anon_sym_BSLASHlabel] = ACTIONS(6241), - [anon_sym_BSLASHref] = ACTIONS(6241), - [anon_sym_BSLASHeqref] = ACTIONS(6241), - [anon_sym_BSLASHvref] = ACTIONS(6241), - [anon_sym_BSLASHVref] = ACTIONS(6241), - [anon_sym_BSLASHautoref] = ACTIONS(6241), - [anon_sym_BSLASHpageref] = ACTIONS(6241), - [anon_sym_BSLASHcref] = ACTIONS(6241), - [anon_sym_BSLASHCref] = ACTIONS(6241), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnameCref] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6241), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6241), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6241), - [anon_sym_BSLASHlabelcref] = ACTIONS(6241), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange] = ACTIONS(6241), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHCrefrange] = ACTIONS(6241), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6243), - [anon_sym_BSLASHnewlabel] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand] = ACTIONS(6241), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6241), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6243), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6241), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6243), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6241), - [anon_sym_BSLASHdef] = ACTIONS(6241), - [anon_sym_BSLASHlet] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6241), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6241), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6241), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6241), - [anon_sym_BSLASHgls] = ACTIONS(6241), - [anon_sym_BSLASHGls] = ACTIONS(6241), - [anon_sym_BSLASHGLS] = ACTIONS(6241), - [anon_sym_BSLASHglspl] = ACTIONS(6241), - [anon_sym_BSLASHGlspl] = ACTIONS(6241), - [anon_sym_BSLASHGLSpl] = ACTIONS(6241), - [anon_sym_BSLASHglsdisp] = ACTIONS(6241), - [anon_sym_BSLASHglslink] = ACTIONS(6241), - [anon_sym_BSLASHglstext] = ACTIONS(6241), - [anon_sym_BSLASHGlstext] = ACTIONS(6241), - [anon_sym_BSLASHGLStext] = ACTIONS(6241), - [anon_sym_BSLASHglsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6241), - [anon_sym_BSLASHglsplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSplural] = ACTIONS(6241), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6241), - [anon_sym_BSLASHglsname] = ACTIONS(6241), - [anon_sym_BSLASHGlsname] = ACTIONS(6241), - [anon_sym_BSLASHGLSname] = ACTIONS(6241), - [anon_sym_BSLASHglssymbol] = ACTIONS(6241), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6241), - [anon_sym_BSLASHglsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6241), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6241), - [anon_sym_BSLASHglsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6241), - [anon_sym_BSLASHglsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6241), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6241), - [anon_sym_BSLASHglsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6241), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6241), - [anon_sym_BSLASHglsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6241), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6241), - [anon_sym_BSLASHnewacronym] = ACTIONS(6241), - [anon_sym_BSLASHacrshort] = ACTIONS(6241), - [anon_sym_BSLASHAcrshort] = ACTIONS(6241), - [anon_sym_BSLASHACRshort] = ACTIONS(6241), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6241), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6241), - [anon_sym_BSLASHacrlong] = ACTIONS(6241), - [anon_sym_BSLASHAcrlong] = ACTIONS(6241), - [anon_sym_BSLASHACRlong] = ACTIONS(6241), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6241), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6241), - [anon_sym_BSLASHacrfull] = ACTIONS(6241), - [anon_sym_BSLASHAcrfull] = ACTIONS(6241), - [anon_sym_BSLASHACRfull] = ACTIONS(6241), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6241), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6241), - [anon_sym_BSLASHacs] = ACTIONS(6241), - [anon_sym_BSLASHAcs] = ACTIONS(6241), - [anon_sym_BSLASHacsp] = ACTIONS(6241), - [anon_sym_BSLASHAcsp] = ACTIONS(6241), - [anon_sym_BSLASHacl] = ACTIONS(6241), - [anon_sym_BSLASHAcl] = ACTIONS(6241), - [anon_sym_BSLASHaclp] = ACTIONS(6241), - [anon_sym_BSLASHAclp] = ACTIONS(6241), - [anon_sym_BSLASHacf] = ACTIONS(6241), - [anon_sym_BSLASHAcf] = ACTIONS(6241), - [anon_sym_BSLASHacfp] = ACTIONS(6241), - [anon_sym_BSLASHAcfp] = ACTIONS(6241), - [anon_sym_BSLASHac] = ACTIONS(6241), - [anon_sym_BSLASHAc] = ACTIONS(6241), - [anon_sym_BSLASHacp] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6241), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6241), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6241), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6241), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6241), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6241), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6241), - [anon_sym_BSLASHcolor] = ACTIONS(6241), - [anon_sym_BSLASHcolorbox] = ACTIONS(6241), - [anon_sym_BSLASHtextcolor] = ACTIONS(6241), - [anon_sym_BSLASHpagecolor] = ACTIONS(6241), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6241), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6241), - }, - [1988] = { - [sym_command_name] = ACTIONS(6237), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6237), - [anon_sym_RBRACK] = ACTIONS(6239), - [anon_sym_COMMA] = ACTIONS(6239), - [anon_sym_EQ] = ACTIONS(6239), - [anon_sym_RBRACE] = ACTIONS(6239), - [sym_word] = ACTIONS(6237), - [sym_placeholder] = ACTIONS(6239), - [anon_sym_PLUS] = ACTIONS(6239), - [anon_sym_DASH] = ACTIONS(6239), - [anon_sym_STAR] = ACTIONS(6239), - [anon_sym_SLASH] = ACTIONS(6239), - [anon_sym_LT] = ACTIONS(6237), - [anon_sym_GT] = ACTIONS(6237), - [anon_sym_BANG] = ACTIONS(6237), - [anon_sym_PIPE] = ACTIONS(6237), - [anon_sym_COLON] = ACTIONS(6237), - [anon_sym_SQUOTE] = ACTIONS(6237), - [anon_sym__] = ACTIONS(6239), - [anon_sym_CARET] = ACTIONS(6239), - [anon_sym_BSLASHtitle] = ACTIONS(6237), - [anon_sym_BSLASHauthor] = ACTIONS(6237), - [anon_sym_BSLASHusepackage] = ACTIONS(6237), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6237), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6237), - [anon_sym_BSLASHinclude] = ACTIONS(6237), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6237), - [anon_sym_BSLASHinput] = ACTIONS(6237), - [anon_sym_BSLASHsubfile] = ACTIONS(6237), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6237), - [anon_sym_BSLASHbibliography] = ACTIONS(6237), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6237), - [anon_sym_BSLASHincludesvg] = ACTIONS(6237), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6237), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6237), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6237), - [anon_sym_BSLASHimport] = ACTIONS(6237), - [anon_sym_BSLASHsubimport] = ACTIONS(6237), - [anon_sym_BSLASHinputfrom] = ACTIONS(6237), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6237), - [anon_sym_BSLASHincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6237), - [anon_sym_BSLASHcaption] = ACTIONS(6237), - [anon_sym_BSLASHcite] = ACTIONS(6237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCite] = ACTIONS(6237), - [anon_sym_BSLASHnocite] = ACTIONS(6237), - [anon_sym_BSLASHcitet] = ACTIONS(6237), - [anon_sym_BSLASHcitep] = ACTIONS(6237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteauthor] = ACTIONS(6237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitetitle] = ACTIONS(6237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteyear] = ACTIONS(6237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6239), - [anon_sym_BSLASHcitedate] = ACTIONS(6237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6239), - [anon_sym_BSLASHciteurl] = ACTIONS(6237), - [anon_sym_BSLASHfullcite] = ACTIONS(6237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6237), - [anon_sym_BSLASHcitealt] = ACTIONS(6237), - [anon_sym_BSLASHcitealp] = ACTIONS(6237), - [anon_sym_BSLASHcitetext] = ACTIONS(6237), - [anon_sym_BSLASHparencite] = ACTIONS(6237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHParencite] = ACTIONS(6237), - [anon_sym_BSLASHfootcite] = ACTIONS(6237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6237), - [anon_sym_BSLASHtextcite] = ACTIONS(6237), - [anon_sym_BSLASHTextcite] = ACTIONS(6237), - [anon_sym_BSLASHsmartcite] = ACTIONS(6237), - [anon_sym_BSLASHSmartcite] = ACTIONS(6237), - [anon_sym_BSLASHsupercite] = ACTIONS(6237), - [anon_sym_BSLASHautocite] = ACTIONS(6237), - [anon_sym_BSLASHAutocite] = ACTIONS(6237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6239), - [anon_sym_BSLASHvolcite] = ACTIONS(6237), - [anon_sym_BSLASHVolcite] = ACTIONS(6237), - [anon_sym_BSLASHpvolcite] = ACTIONS(6237), - [anon_sym_BSLASHPvolcite] = ACTIONS(6237), - [anon_sym_BSLASHfvolcite] = ACTIONS(6237), - [anon_sym_BSLASHftvolcite] = ACTIONS(6237), - [anon_sym_BSLASHsvolcite] = ACTIONS(6237), - [anon_sym_BSLASHSvolcite] = ACTIONS(6237), - [anon_sym_BSLASHtvolcite] = ACTIONS(6237), - [anon_sym_BSLASHTvolcite] = ACTIONS(6237), - [anon_sym_BSLASHavolcite] = ACTIONS(6237), - [anon_sym_BSLASHAvolcite] = ACTIONS(6237), - [anon_sym_BSLASHnotecite] = ACTIONS(6237), - [anon_sym_BSLASHNotecite] = ACTIONS(6237), - [anon_sym_BSLASHpnotecite] = ACTIONS(6237), - [anon_sym_BSLASHPnotecite] = ACTIONS(6237), - [anon_sym_BSLASHfnotecite] = ACTIONS(6237), - [anon_sym_BSLASHlabel] = ACTIONS(6237), - [anon_sym_BSLASHref] = ACTIONS(6237), - [anon_sym_BSLASHeqref] = ACTIONS(6237), - [anon_sym_BSLASHvref] = ACTIONS(6237), - [anon_sym_BSLASHVref] = ACTIONS(6237), - [anon_sym_BSLASHautoref] = ACTIONS(6237), - [anon_sym_BSLASHpageref] = ACTIONS(6237), - [anon_sym_BSLASHcref] = ACTIONS(6237), - [anon_sym_BSLASHCref] = ACTIONS(6237), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnameCref] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6237), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6237), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6237), - [anon_sym_BSLASHlabelcref] = ACTIONS(6237), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange] = ACTIONS(6237), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHCrefrange] = ACTIONS(6237), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6239), - [anon_sym_BSLASHnewlabel] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand] = ACTIONS(6237), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6237), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6239), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6237), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6239), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6237), - [anon_sym_BSLASHdef] = ACTIONS(6237), - [anon_sym_BSLASHlet] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6237), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6237), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6237), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6237), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6237), - [anon_sym_BSLASHgls] = ACTIONS(6237), - [anon_sym_BSLASHGls] = ACTIONS(6237), - [anon_sym_BSLASHGLS] = ACTIONS(6237), - [anon_sym_BSLASHglspl] = ACTIONS(6237), - [anon_sym_BSLASHGlspl] = ACTIONS(6237), - [anon_sym_BSLASHGLSpl] = ACTIONS(6237), - [anon_sym_BSLASHglsdisp] = ACTIONS(6237), - [anon_sym_BSLASHglslink] = ACTIONS(6237), - [anon_sym_BSLASHglstext] = ACTIONS(6237), - [anon_sym_BSLASHGlstext] = ACTIONS(6237), - [anon_sym_BSLASHGLStext] = ACTIONS(6237), - [anon_sym_BSLASHglsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6237), - [anon_sym_BSLASHglsplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSplural] = ACTIONS(6237), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6237), - [anon_sym_BSLASHglsname] = ACTIONS(6237), - [anon_sym_BSLASHGlsname] = ACTIONS(6237), - [anon_sym_BSLASHGLSname] = ACTIONS(6237), - [anon_sym_BSLASHglssymbol] = ACTIONS(6237), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6237), - [anon_sym_BSLASHglsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6237), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6237), - [anon_sym_BSLASHglsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6237), - [anon_sym_BSLASHglsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6237), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6237), - [anon_sym_BSLASHglsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6237), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6237), - [anon_sym_BSLASHglsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6237), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6237), - [anon_sym_BSLASHnewacronym] = ACTIONS(6237), - [anon_sym_BSLASHacrshort] = ACTIONS(6237), - [anon_sym_BSLASHAcrshort] = ACTIONS(6237), - [anon_sym_BSLASHACRshort] = ACTIONS(6237), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6237), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6237), - [anon_sym_BSLASHacrlong] = ACTIONS(6237), - [anon_sym_BSLASHAcrlong] = ACTIONS(6237), - [anon_sym_BSLASHACRlong] = ACTIONS(6237), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6237), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6237), - [anon_sym_BSLASHacrfull] = ACTIONS(6237), - [anon_sym_BSLASHAcrfull] = ACTIONS(6237), - [anon_sym_BSLASHACRfull] = ACTIONS(6237), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6237), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6237), - [anon_sym_BSLASHacs] = ACTIONS(6237), - [anon_sym_BSLASHAcs] = ACTIONS(6237), - [anon_sym_BSLASHacsp] = ACTIONS(6237), - [anon_sym_BSLASHAcsp] = ACTIONS(6237), - [anon_sym_BSLASHacl] = ACTIONS(6237), - [anon_sym_BSLASHAcl] = ACTIONS(6237), - [anon_sym_BSLASHaclp] = ACTIONS(6237), - [anon_sym_BSLASHAclp] = ACTIONS(6237), - [anon_sym_BSLASHacf] = ACTIONS(6237), - [anon_sym_BSLASHAcf] = ACTIONS(6237), - [anon_sym_BSLASHacfp] = ACTIONS(6237), - [anon_sym_BSLASHAcfp] = ACTIONS(6237), - [anon_sym_BSLASHac] = ACTIONS(6237), - [anon_sym_BSLASHAc] = ACTIONS(6237), - [anon_sym_BSLASHacp] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6237), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6237), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6237), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6237), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6237), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6237), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6237), - [anon_sym_BSLASHcolor] = ACTIONS(6237), - [anon_sym_BSLASHcolorbox] = ACTIONS(6237), - [anon_sym_BSLASHtextcolor] = ACTIONS(6237), - [anon_sym_BSLASHpagecolor] = ACTIONS(6237), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6237), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6237), - }, - [1989] = { - [sym_command_name] = ACTIONS(6221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6221), - [anon_sym_RBRACK] = ACTIONS(6223), - [anon_sym_COMMA] = ACTIONS(6223), - [anon_sym_EQ] = ACTIONS(6223), - [anon_sym_RBRACE] = ACTIONS(6223), - [sym_word] = ACTIONS(6221), - [sym_placeholder] = ACTIONS(6223), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6223), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_LT] = ACTIONS(6221), - [anon_sym_GT] = ACTIONS(6221), - [anon_sym_BANG] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_SQUOTE] = ACTIONS(6221), - [anon_sym__] = ACTIONS(6223), - [anon_sym_CARET] = ACTIONS(6223), - [anon_sym_BSLASHtitle] = ACTIONS(6221), - [anon_sym_BSLASHauthor] = ACTIONS(6221), - [anon_sym_BSLASHusepackage] = ACTIONS(6221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6221), - [anon_sym_BSLASHinclude] = ACTIONS(6221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6221), - [anon_sym_BSLASHinput] = ACTIONS(6221), - [anon_sym_BSLASHsubfile] = ACTIONS(6221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6221), - [anon_sym_BSLASHbibliography] = ACTIONS(6221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6221), - [anon_sym_BSLASHincludesvg] = ACTIONS(6221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6221), - [anon_sym_BSLASHimport] = ACTIONS(6221), - [anon_sym_BSLASHsubimport] = ACTIONS(6221), - [anon_sym_BSLASHinputfrom] = ACTIONS(6221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6221), - [anon_sym_BSLASHincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6221), - [anon_sym_BSLASHcaption] = ACTIONS(6221), - [anon_sym_BSLASHcite] = ACTIONS(6221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCite] = ACTIONS(6221), - [anon_sym_BSLASHnocite] = ACTIONS(6221), - [anon_sym_BSLASHcitet] = ACTIONS(6221), - [anon_sym_BSLASHcitep] = ACTIONS(6221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteauthor] = ACTIONS(6221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitetitle] = ACTIONS(6221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteyear] = ACTIONS(6221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6223), - [anon_sym_BSLASHcitedate] = ACTIONS(6221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6223), - [anon_sym_BSLASHciteurl] = ACTIONS(6221), - [anon_sym_BSLASHfullcite] = ACTIONS(6221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6221), - [anon_sym_BSLASHcitealt] = ACTIONS(6221), - [anon_sym_BSLASHcitealp] = ACTIONS(6221), - [anon_sym_BSLASHcitetext] = ACTIONS(6221), - [anon_sym_BSLASHparencite] = ACTIONS(6221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHParencite] = ACTIONS(6221), - [anon_sym_BSLASHfootcite] = ACTIONS(6221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6221), - [anon_sym_BSLASHtextcite] = ACTIONS(6221), - [anon_sym_BSLASHTextcite] = ACTIONS(6221), - [anon_sym_BSLASHsmartcite] = ACTIONS(6221), - [anon_sym_BSLASHSmartcite] = ACTIONS(6221), - [anon_sym_BSLASHsupercite] = ACTIONS(6221), - [anon_sym_BSLASHautocite] = ACTIONS(6221), - [anon_sym_BSLASHAutocite] = ACTIONS(6221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6223), - [anon_sym_BSLASHvolcite] = ACTIONS(6221), - [anon_sym_BSLASHVolcite] = ACTIONS(6221), - [anon_sym_BSLASHpvolcite] = ACTIONS(6221), - [anon_sym_BSLASHPvolcite] = ACTIONS(6221), - [anon_sym_BSLASHfvolcite] = ACTIONS(6221), - [anon_sym_BSLASHftvolcite] = ACTIONS(6221), - [anon_sym_BSLASHsvolcite] = ACTIONS(6221), - [anon_sym_BSLASHSvolcite] = ACTIONS(6221), - [anon_sym_BSLASHtvolcite] = ACTIONS(6221), - [anon_sym_BSLASHTvolcite] = ACTIONS(6221), - [anon_sym_BSLASHavolcite] = ACTIONS(6221), - [anon_sym_BSLASHAvolcite] = ACTIONS(6221), - [anon_sym_BSLASHnotecite] = ACTIONS(6221), - [anon_sym_BSLASHNotecite] = ACTIONS(6221), - [anon_sym_BSLASHpnotecite] = ACTIONS(6221), - [anon_sym_BSLASHPnotecite] = ACTIONS(6221), - [anon_sym_BSLASHfnotecite] = ACTIONS(6221), - [anon_sym_BSLASHlabel] = ACTIONS(6221), - [anon_sym_BSLASHref] = ACTIONS(6221), - [anon_sym_BSLASHeqref] = ACTIONS(6221), - [anon_sym_BSLASHvref] = ACTIONS(6221), - [anon_sym_BSLASHVref] = ACTIONS(6221), - [anon_sym_BSLASHautoref] = ACTIONS(6221), - [anon_sym_BSLASHpageref] = ACTIONS(6221), - [anon_sym_BSLASHcref] = ACTIONS(6221), - [anon_sym_BSLASHCref] = ACTIONS(6221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnameCref] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6221), - [anon_sym_BSLASHlabelcref] = ACTIONS(6221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange] = ACTIONS(6221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHCrefrange] = ACTIONS(6221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6223), - [anon_sym_BSLASHnewlabel] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand] = ACTIONS(6221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6223), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6221), - [anon_sym_BSLASHdef] = ACTIONS(6221), - [anon_sym_BSLASHlet] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6221), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6221), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6221), - [anon_sym_BSLASHgls] = ACTIONS(6221), - [anon_sym_BSLASHGls] = ACTIONS(6221), - [anon_sym_BSLASHGLS] = ACTIONS(6221), - [anon_sym_BSLASHglspl] = ACTIONS(6221), - [anon_sym_BSLASHGlspl] = ACTIONS(6221), - [anon_sym_BSLASHGLSpl] = ACTIONS(6221), - [anon_sym_BSLASHglsdisp] = ACTIONS(6221), - [anon_sym_BSLASHglslink] = ACTIONS(6221), - [anon_sym_BSLASHglstext] = ACTIONS(6221), - [anon_sym_BSLASHGlstext] = ACTIONS(6221), - [anon_sym_BSLASHGLStext] = ACTIONS(6221), - [anon_sym_BSLASHglsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6221), - [anon_sym_BSLASHglsplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSplural] = ACTIONS(6221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6221), - [anon_sym_BSLASHglsname] = ACTIONS(6221), - [anon_sym_BSLASHGlsname] = ACTIONS(6221), - [anon_sym_BSLASHGLSname] = ACTIONS(6221), - [anon_sym_BSLASHglssymbol] = ACTIONS(6221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6221), - [anon_sym_BSLASHglsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6221), - [anon_sym_BSLASHglsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6221), - [anon_sym_BSLASHglsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6221), - [anon_sym_BSLASHglsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6221), - [anon_sym_BSLASHglsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6221), - [anon_sym_BSLASHnewacronym] = ACTIONS(6221), - [anon_sym_BSLASHacrshort] = ACTIONS(6221), - [anon_sym_BSLASHAcrshort] = ACTIONS(6221), - [anon_sym_BSLASHACRshort] = ACTIONS(6221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6221), - [anon_sym_BSLASHacrlong] = ACTIONS(6221), - [anon_sym_BSLASHAcrlong] = ACTIONS(6221), - [anon_sym_BSLASHACRlong] = ACTIONS(6221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6221), - [anon_sym_BSLASHacrfull] = ACTIONS(6221), - [anon_sym_BSLASHAcrfull] = ACTIONS(6221), - [anon_sym_BSLASHACRfull] = ACTIONS(6221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6221), - [anon_sym_BSLASHacs] = ACTIONS(6221), - [anon_sym_BSLASHAcs] = ACTIONS(6221), - [anon_sym_BSLASHacsp] = ACTIONS(6221), - [anon_sym_BSLASHAcsp] = ACTIONS(6221), - [anon_sym_BSLASHacl] = ACTIONS(6221), - [anon_sym_BSLASHAcl] = ACTIONS(6221), - [anon_sym_BSLASHaclp] = ACTIONS(6221), - [anon_sym_BSLASHAclp] = ACTIONS(6221), - [anon_sym_BSLASHacf] = ACTIONS(6221), - [anon_sym_BSLASHAcf] = ACTIONS(6221), - [anon_sym_BSLASHacfp] = ACTIONS(6221), - [anon_sym_BSLASHAcfp] = ACTIONS(6221), - [anon_sym_BSLASHac] = ACTIONS(6221), - [anon_sym_BSLASHAc] = ACTIONS(6221), - [anon_sym_BSLASHacp] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6221), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6221), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6223), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6221), - [anon_sym_BSLASHcolor] = ACTIONS(6221), - [anon_sym_BSLASHcolorbox] = ACTIONS(6221), - [anon_sym_BSLASHtextcolor] = ACTIONS(6221), - [anon_sym_BSLASHpagecolor] = ACTIONS(6221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6221), - }, - [1990] = { - [sym_command_name] = ACTIONS(6201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6201), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_EQ] = ACTIONS(6203), - [anon_sym_RBRACE] = ACTIONS(6203), - [sym_word] = ACTIONS(6201), - [sym_placeholder] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6203), - [anon_sym_DASH] = ACTIONS(6203), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_COLON] = ACTIONS(6201), - [anon_sym_SQUOTE] = ACTIONS(6201), - [anon_sym__] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_BSLASHtitle] = ACTIONS(6201), - [anon_sym_BSLASHauthor] = ACTIONS(6201), - [anon_sym_BSLASHusepackage] = ACTIONS(6201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6201), - [anon_sym_BSLASHinclude] = ACTIONS(6201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6201), - [anon_sym_BSLASHinput] = ACTIONS(6201), - [anon_sym_BSLASHsubfile] = ACTIONS(6201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6201), - [anon_sym_BSLASHbibliography] = ACTIONS(6201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6201), - [anon_sym_BSLASHincludesvg] = ACTIONS(6201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6201), - [anon_sym_BSLASHimport] = ACTIONS(6201), - [anon_sym_BSLASHsubimport] = ACTIONS(6201), - [anon_sym_BSLASHinputfrom] = ACTIONS(6201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6201), - [anon_sym_BSLASHincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6201), - [anon_sym_BSLASHcaption] = ACTIONS(6201), - [anon_sym_BSLASHcite] = ACTIONS(6201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCite] = ACTIONS(6201), - [anon_sym_BSLASHnocite] = ACTIONS(6201), - [anon_sym_BSLASHcitet] = ACTIONS(6201), - [anon_sym_BSLASHcitep] = ACTIONS(6201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteauthor] = ACTIONS(6201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitetitle] = ACTIONS(6201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteyear] = ACTIONS(6201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6203), - [anon_sym_BSLASHcitedate] = ACTIONS(6201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6203), - [anon_sym_BSLASHciteurl] = ACTIONS(6201), - [anon_sym_BSLASHfullcite] = ACTIONS(6201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6201), - [anon_sym_BSLASHcitealt] = ACTIONS(6201), - [anon_sym_BSLASHcitealp] = ACTIONS(6201), - [anon_sym_BSLASHcitetext] = ACTIONS(6201), - [anon_sym_BSLASHparencite] = ACTIONS(6201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHParencite] = ACTIONS(6201), - [anon_sym_BSLASHfootcite] = ACTIONS(6201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6201), - [anon_sym_BSLASHtextcite] = ACTIONS(6201), - [anon_sym_BSLASHTextcite] = ACTIONS(6201), - [anon_sym_BSLASHsmartcite] = ACTIONS(6201), - [anon_sym_BSLASHSmartcite] = ACTIONS(6201), - [anon_sym_BSLASHsupercite] = ACTIONS(6201), - [anon_sym_BSLASHautocite] = ACTIONS(6201), - [anon_sym_BSLASHAutocite] = ACTIONS(6201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6203), - [anon_sym_BSLASHvolcite] = ACTIONS(6201), - [anon_sym_BSLASHVolcite] = ACTIONS(6201), - [anon_sym_BSLASHpvolcite] = ACTIONS(6201), - [anon_sym_BSLASHPvolcite] = ACTIONS(6201), - [anon_sym_BSLASHfvolcite] = ACTIONS(6201), - [anon_sym_BSLASHftvolcite] = ACTIONS(6201), - [anon_sym_BSLASHsvolcite] = ACTIONS(6201), - [anon_sym_BSLASHSvolcite] = ACTIONS(6201), - [anon_sym_BSLASHtvolcite] = ACTIONS(6201), - [anon_sym_BSLASHTvolcite] = ACTIONS(6201), - [anon_sym_BSLASHavolcite] = ACTIONS(6201), - [anon_sym_BSLASHAvolcite] = ACTIONS(6201), - [anon_sym_BSLASHnotecite] = ACTIONS(6201), - [anon_sym_BSLASHNotecite] = ACTIONS(6201), - [anon_sym_BSLASHpnotecite] = ACTIONS(6201), - [anon_sym_BSLASHPnotecite] = ACTIONS(6201), - [anon_sym_BSLASHfnotecite] = ACTIONS(6201), - [anon_sym_BSLASHlabel] = ACTIONS(6201), - [anon_sym_BSLASHref] = ACTIONS(6201), - [anon_sym_BSLASHeqref] = ACTIONS(6201), - [anon_sym_BSLASHvref] = ACTIONS(6201), - [anon_sym_BSLASHVref] = ACTIONS(6201), - [anon_sym_BSLASHautoref] = ACTIONS(6201), - [anon_sym_BSLASHpageref] = ACTIONS(6201), - [anon_sym_BSLASHcref] = ACTIONS(6201), - [anon_sym_BSLASHCref] = ACTIONS(6201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnameCref] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6201), - [anon_sym_BSLASHlabelcref] = ACTIONS(6201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange] = ACTIONS(6201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHCrefrange] = ACTIONS(6201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6203), - [anon_sym_BSLASHnewlabel] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand] = ACTIONS(6201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6203), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6201), - [anon_sym_BSLASHdef] = ACTIONS(6201), - [anon_sym_BSLASHlet] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6201), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6201), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6201), - [anon_sym_BSLASHgls] = ACTIONS(6201), - [anon_sym_BSLASHGls] = ACTIONS(6201), - [anon_sym_BSLASHGLS] = ACTIONS(6201), - [anon_sym_BSLASHglspl] = ACTIONS(6201), - [anon_sym_BSLASHGlspl] = ACTIONS(6201), - [anon_sym_BSLASHGLSpl] = ACTIONS(6201), - [anon_sym_BSLASHglsdisp] = ACTIONS(6201), - [anon_sym_BSLASHglslink] = ACTIONS(6201), - [anon_sym_BSLASHglstext] = ACTIONS(6201), - [anon_sym_BSLASHGlstext] = ACTIONS(6201), - [anon_sym_BSLASHGLStext] = ACTIONS(6201), - [anon_sym_BSLASHglsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6201), - [anon_sym_BSLASHglsplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSplural] = ACTIONS(6201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6201), - [anon_sym_BSLASHglsname] = ACTIONS(6201), - [anon_sym_BSLASHGlsname] = ACTIONS(6201), - [anon_sym_BSLASHGLSname] = ACTIONS(6201), - [anon_sym_BSLASHglssymbol] = ACTIONS(6201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6201), - [anon_sym_BSLASHglsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6201), - [anon_sym_BSLASHglsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6201), - [anon_sym_BSLASHglsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6201), - [anon_sym_BSLASHglsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6201), - [anon_sym_BSLASHglsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6201), - [anon_sym_BSLASHnewacronym] = ACTIONS(6201), - [anon_sym_BSLASHacrshort] = ACTIONS(6201), - [anon_sym_BSLASHAcrshort] = ACTIONS(6201), - [anon_sym_BSLASHACRshort] = ACTIONS(6201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6201), - [anon_sym_BSLASHacrlong] = ACTIONS(6201), - [anon_sym_BSLASHAcrlong] = ACTIONS(6201), - [anon_sym_BSLASHACRlong] = ACTIONS(6201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6201), - [anon_sym_BSLASHacrfull] = ACTIONS(6201), - [anon_sym_BSLASHAcrfull] = ACTIONS(6201), - [anon_sym_BSLASHACRfull] = ACTIONS(6201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6201), - [anon_sym_BSLASHacs] = ACTIONS(6201), - [anon_sym_BSLASHAcs] = ACTIONS(6201), - [anon_sym_BSLASHacsp] = ACTIONS(6201), - [anon_sym_BSLASHAcsp] = ACTIONS(6201), - [anon_sym_BSLASHacl] = ACTIONS(6201), - [anon_sym_BSLASHAcl] = ACTIONS(6201), - [anon_sym_BSLASHaclp] = ACTIONS(6201), - [anon_sym_BSLASHAclp] = ACTIONS(6201), - [anon_sym_BSLASHacf] = ACTIONS(6201), - [anon_sym_BSLASHAcf] = ACTIONS(6201), - [anon_sym_BSLASHacfp] = ACTIONS(6201), - [anon_sym_BSLASHAcfp] = ACTIONS(6201), - [anon_sym_BSLASHac] = ACTIONS(6201), - [anon_sym_BSLASHAc] = ACTIONS(6201), - [anon_sym_BSLASHacp] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6201), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6201), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6203), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6201), - [anon_sym_BSLASHcolor] = ACTIONS(6201), - [anon_sym_BSLASHcolorbox] = ACTIONS(6201), - [anon_sym_BSLASHtextcolor] = ACTIONS(6201), - [anon_sym_BSLASHpagecolor] = ACTIONS(6201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6201), - }, - [1991] = { - [sym_command_name] = ACTIONS(6181), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6181), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_EQ] = ACTIONS(6183), - [anon_sym_RBRACE] = ACTIONS(6183), - [sym_word] = ACTIONS(6181), - [sym_placeholder] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6183), - [anon_sym_DASH] = ACTIONS(6183), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_COLON] = ACTIONS(6181), - [anon_sym_SQUOTE] = ACTIONS(6181), - [anon_sym__] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_BSLASHtitle] = ACTIONS(6181), - [anon_sym_BSLASHauthor] = ACTIONS(6181), - [anon_sym_BSLASHusepackage] = ACTIONS(6181), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6181), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6181), - [anon_sym_BSLASHinclude] = ACTIONS(6181), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6181), - [anon_sym_BSLASHinput] = ACTIONS(6181), - [anon_sym_BSLASHsubfile] = ACTIONS(6181), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6181), - [anon_sym_BSLASHbibliography] = ACTIONS(6181), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6181), - [anon_sym_BSLASHincludesvg] = ACTIONS(6181), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6181), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6181), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6181), - [anon_sym_BSLASHimport] = ACTIONS(6181), - [anon_sym_BSLASHsubimport] = ACTIONS(6181), - [anon_sym_BSLASHinputfrom] = ACTIONS(6181), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6181), - [anon_sym_BSLASHincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6181), - [anon_sym_BSLASHcaption] = ACTIONS(6181), - [anon_sym_BSLASHcite] = ACTIONS(6181), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCite] = ACTIONS(6181), - [anon_sym_BSLASHnocite] = ACTIONS(6181), - [anon_sym_BSLASHcitet] = ACTIONS(6181), - [anon_sym_BSLASHcitep] = ACTIONS(6181), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteauthor] = ACTIONS(6181), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6181), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitetitle] = ACTIONS(6181), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteyear] = ACTIONS(6181), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6183), - [anon_sym_BSLASHcitedate] = ACTIONS(6181), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6183), - [anon_sym_BSLASHciteurl] = ACTIONS(6181), - [anon_sym_BSLASHfullcite] = ACTIONS(6181), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6181), - [anon_sym_BSLASHcitealt] = ACTIONS(6181), - [anon_sym_BSLASHcitealp] = ACTIONS(6181), - [anon_sym_BSLASHcitetext] = ACTIONS(6181), - [anon_sym_BSLASHparencite] = ACTIONS(6181), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHParencite] = ACTIONS(6181), - [anon_sym_BSLASHfootcite] = ACTIONS(6181), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6181), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6181), - [anon_sym_BSLASHtextcite] = ACTIONS(6181), - [anon_sym_BSLASHTextcite] = ACTIONS(6181), - [anon_sym_BSLASHsmartcite] = ACTIONS(6181), - [anon_sym_BSLASHSmartcite] = ACTIONS(6181), - [anon_sym_BSLASHsupercite] = ACTIONS(6181), - [anon_sym_BSLASHautocite] = ACTIONS(6181), - [anon_sym_BSLASHAutocite] = ACTIONS(6181), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6183), - [anon_sym_BSLASHvolcite] = ACTIONS(6181), - [anon_sym_BSLASHVolcite] = ACTIONS(6181), - [anon_sym_BSLASHpvolcite] = ACTIONS(6181), - [anon_sym_BSLASHPvolcite] = ACTIONS(6181), - [anon_sym_BSLASHfvolcite] = ACTIONS(6181), - [anon_sym_BSLASHftvolcite] = ACTIONS(6181), - [anon_sym_BSLASHsvolcite] = ACTIONS(6181), - [anon_sym_BSLASHSvolcite] = ACTIONS(6181), - [anon_sym_BSLASHtvolcite] = ACTIONS(6181), - [anon_sym_BSLASHTvolcite] = ACTIONS(6181), - [anon_sym_BSLASHavolcite] = ACTIONS(6181), - [anon_sym_BSLASHAvolcite] = ACTIONS(6181), - [anon_sym_BSLASHnotecite] = ACTIONS(6181), - [anon_sym_BSLASHNotecite] = ACTIONS(6181), - [anon_sym_BSLASHpnotecite] = ACTIONS(6181), - [anon_sym_BSLASHPnotecite] = ACTIONS(6181), - [anon_sym_BSLASHfnotecite] = ACTIONS(6181), - [anon_sym_BSLASHlabel] = ACTIONS(6181), - [anon_sym_BSLASHref] = ACTIONS(6181), - [anon_sym_BSLASHeqref] = ACTIONS(6181), - [anon_sym_BSLASHvref] = ACTIONS(6181), - [anon_sym_BSLASHVref] = ACTIONS(6181), - [anon_sym_BSLASHautoref] = ACTIONS(6181), - [anon_sym_BSLASHpageref] = ACTIONS(6181), - [anon_sym_BSLASHcref] = ACTIONS(6181), - [anon_sym_BSLASHCref] = ACTIONS(6181), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnameCref] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6181), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6181), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6181), - [anon_sym_BSLASHlabelcref] = ACTIONS(6181), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange] = ACTIONS(6181), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHCrefrange] = ACTIONS(6181), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6183), - [anon_sym_BSLASHnewlabel] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand] = ACTIONS(6181), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6181), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6181), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6183), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6181), - [anon_sym_BSLASHdef] = ACTIONS(6181), - [anon_sym_BSLASHlet] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6181), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6181), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6181), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6181), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6181), - [anon_sym_BSLASHgls] = ACTIONS(6181), - [anon_sym_BSLASHGls] = ACTIONS(6181), - [anon_sym_BSLASHGLS] = ACTIONS(6181), - [anon_sym_BSLASHglspl] = ACTIONS(6181), - [anon_sym_BSLASHGlspl] = ACTIONS(6181), - [anon_sym_BSLASHGLSpl] = ACTIONS(6181), - [anon_sym_BSLASHglsdisp] = ACTIONS(6181), - [anon_sym_BSLASHglslink] = ACTIONS(6181), - [anon_sym_BSLASHglstext] = ACTIONS(6181), - [anon_sym_BSLASHGlstext] = ACTIONS(6181), - [anon_sym_BSLASHGLStext] = ACTIONS(6181), - [anon_sym_BSLASHglsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6181), - [anon_sym_BSLASHglsplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSplural] = ACTIONS(6181), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6181), - [anon_sym_BSLASHglsname] = ACTIONS(6181), - [anon_sym_BSLASHGlsname] = ACTIONS(6181), - [anon_sym_BSLASHGLSname] = ACTIONS(6181), - [anon_sym_BSLASHglssymbol] = ACTIONS(6181), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6181), - [anon_sym_BSLASHglsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6181), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6181), - [anon_sym_BSLASHglsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6181), - [anon_sym_BSLASHglsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6181), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6181), - [anon_sym_BSLASHglsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6181), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6181), - [anon_sym_BSLASHglsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6181), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6181), - [anon_sym_BSLASHnewacronym] = ACTIONS(6181), - [anon_sym_BSLASHacrshort] = ACTIONS(6181), - [anon_sym_BSLASHAcrshort] = ACTIONS(6181), - [anon_sym_BSLASHACRshort] = ACTIONS(6181), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6181), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6181), - [anon_sym_BSLASHacrlong] = ACTIONS(6181), - [anon_sym_BSLASHAcrlong] = ACTIONS(6181), - [anon_sym_BSLASHACRlong] = ACTIONS(6181), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6181), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6181), - [anon_sym_BSLASHacrfull] = ACTIONS(6181), - [anon_sym_BSLASHAcrfull] = ACTIONS(6181), - [anon_sym_BSLASHACRfull] = ACTIONS(6181), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6181), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6181), - [anon_sym_BSLASHacs] = ACTIONS(6181), - [anon_sym_BSLASHAcs] = ACTIONS(6181), - [anon_sym_BSLASHacsp] = ACTIONS(6181), - [anon_sym_BSLASHAcsp] = ACTIONS(6181), - [anon_sym_BSLASHacl] = ACTIONS(6181), - [anon_sym_BSLASHAcl] = ACTIONS(6181), - [anon_sym_BSLASHaclp] = ACTIONS(6181), - [anon_sym_BSLASHAclp] = ACTIONS(6181), - [anon_sym_BSLASHacf] = ACTIONS(6181), - [anon_sym_BSLASHAcf] = ACTIONS(6181), - [anon_sym_BSLASHacfp] = ACTIONS(6181), - [anon_sym_BSLASHAcfp] = ACTIONS(6181), - [anon_sym_BSLASHac] = ACTIONS(6181), - [anon_sym_BSLASHAc] = ACTIONS(6181), - [anon_sym_BSLASHacp] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6181), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6181), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6181), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6181), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6181), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6183), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6181), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6181), - [anon_sym_BSLASHcolor] = ACTIONS(6181), - [anon_sym_BSLASHcolorbox] = ACTIONS(6181), - [anon_sym_BSLASHtextcolor] = ACTIONS(6181), - [anon_sym_BSLASHpagecolor] = ACTIONS(6181), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6181), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6181), - }, - [1992] = { - [sym_command_name] = ACTIONS(6249), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6249), - [anon_sym_RBRACK] = ACTIONS(6251), - [anon_sym_COMMA] = ACTIONS(6251), - [anon_sym_EQ] = ACTIONS(6251), - [anon_sym_RBRACE] = ACTIONS(6251), - [sym_word] = ACTIONS(6249), - [sym_placeholder] = ACTIONS(6251), - [anon_sym_PLUS] = ACTIONS(6251), - [anon_sym_DASH] = ACTIONS(6251), - [anon_sym_STAR] = ACTIONS(6251), - [anon_sym_SLASH] = ACTIONS(6251), - [anon_sym_LT] = ACTIONS(6249), - [anon_sym_GT] = ACTIONS(6249), - [anon_sym_BANG] = ACTIONS(6249), - [anon_sym_PIPE] = ACTIONS(6249), - [anon_sym_COLON] = ACTIONS(6249), - [anon_sym_SQUOTE] = ACTIONS(6249), - [anon_sym__] = ACTIONS(6251), - [anon_sym_CARET] = ACTIONS(6251), - [anon_sym_BSLASHtitle] = ACTIONS(6249), - [anon_sym_BSLASHauthor] = ACTIONS(6249), - [anon_sym_BSLASHusepackage] = ACTIONS(6249), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6249), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6249), - [anon_sym_BSLASHinclude] = ACTIONS(6249), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6249), - [anon_sym_BSLASHinput] = ACTIONS(6249), - [anon_sym_BSLASHsubfile] = ACTIONS(6249), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6249), - [anon_sym_BSLASHbibliography] = ACTIONS(6249), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6249), - [anon_sym_BSLASHincludesvg] = ACTIONS(6249), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6249), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6249), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6249), - [anon_sym_BSLASHimport] = ACTIONS(6249), - [anon_sym_BSLASHsubimport] = ACTIONS(6249), - [anon_sym_BSLASHinputfrom] = ACTIONS(6249), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6249), - [anon_sym_BSLASHincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6249), - [anon_sym_BSLASHcaption] = ACTIONS(6249), - [anon_sym_BSLASHcite] = ACTIONS(6249), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCite] = ACTIONS(6249), - [anon_sym_BSLASHnocite] = ACTIONS(6249), - [anon_sym_BSLASHcitet] = ACTIONS(6249), - [anon_sym_BSLASHcitep] = ACTIONS(6249), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteauthor] = ACTIONS(6249), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6249), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitetitle] = ACTIONS(6249), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteyear] = ACTIONS(6249), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6251), - [anon_sym_BSLASHcitedate] = ACTIONS(6249), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6251), - [anon_sym_BSLASHciteurl] = ACTIONS(6249), - [anon_sym_BSLASHfullcite] = ACTIONS(6249), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6249), - [anon_sym_BSLASHcitealt] = ACTIONS(6249), - [anon_sym_BSLASHcitealp] = ACTIONS(6249), - [anon_sym_BSLASHcitetext] = ACTIONS(6249), - [anon_sym_BSLASHparencite] = ACTIONS(6249), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHParencite] = ACTIONS(6249), - [anon_sym_BSLASHfootcite] = ACTIONS(6249), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6249), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6249), - [anon_sym_BSLASHtextcite] = ACTIONS(6249), - [anon_sym_BSLASHTextcite] = ACTIONS(6249), - [anon_sym_BSLASHsmartcite] = ACTIONS(6249), - [anon_sym_BSLASHSmartcite] = ACTIONS(6249), - [anon_sym_BSLASHsupercite] = ACTIONS(6249), - [anon_sym_BSLASHautocite] = ACTIONS(6249), - [anon_sym_BSLASHAutocite] = ACTIONS(6249), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6251), - [anon_sym_BSLASHvolcite] = ACTIONS(6249), - [anon_sym_BSLASHVolcite] = ACTIONS(6249), - [anon_sym_BSLASHpvolcite] = ACTIONS(6249), - [anon_sym_BSLASHPvolcite] = ACTIONS(6249), - [anon_sym_BSLASHfvolcite] = ACTIONS(6249), - [anon_sym_BSLASHftvolcite] = ACTIONS(6249), - [anon_sym_BSLASHsvolcite] = ACTIONS(6249), - [anon_sym_BSLASHSvolcite] = ACTIONS(6249), - [anon_sym_BSLASHtvolcite] = ACTIONS(6249), - [anon_sym_BSLASHTvolcite] = ACTIONS(6249), - [anon_sym_BSLASHavolcite] = ACTIONS(6249), - [anon_sym_BSLASHAvolcite] = ACTIONS(6249), - [anon_sym_BSLASHnotecite] = ACTIONS(6249), - [anon_sym_BSLASHNotecite] = ACTIONS(6249), - [anon_sym_BSLASHpnotecite] = ACTIONS(6249), - [anon_sym_BSLASHPnotecite] = ACTIONS(6249), - [anon_sym_BSLASHfnotecite] = ACTIONS(6249), - [anon_sym_BSLASHlabel] = ACTIONS(6249), - [anon_sym_BSLASHref] = ACTIONS(6249), - [anon_sym_BSLASHeqref] = ACTIONS(6249), - [anon_sym_BSLASHvref] = ACTIONS(6249), - [anon_sym_BSLASHVref] = ACTIONS(6249), - [anon_sym_BSLASHautoref] = ACTIONS(6249), - [anon_sym_BSLASHpageref] = ACTIONS(6249), - [anon_sym_BSLASHcref] = ACTIONS(6249), - [anon_sym_BSLASHCref] = ACTIONS(6249), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnameCref] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6249), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6249), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6249), - [anon_sym_BSLASHlabelcref] = ACTIONS(6249), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange] = ACTIONS(6249), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHCrefrange] = ACTIONS(6249), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6251), - [anon_sym_BSLASHnewlabel] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand] = ACTIONS(6249), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6249), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6251), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6249), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6251), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6249), - [anon_sym_BSLASHdef] = ACTIONS(6249), - [anon_sym_BSLASHlet] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6249), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6249), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6249), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6249), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6249), - [anon_sym_BSLASHgls] = ACTIONS(6249), - [anon_sym_BSLASHGls] = ACTIONS(6249), - [anon_sym_BSLASHGLS] = ACTIONS(6249), - [anon_sym_BSLASHglspl] = ACTIONS(6249), - [anon_sym_BSLASHGlspl] = ACTIONS(6249), - [anon_sym_BSLASHGLSpl] = ACTIONS(6249), - [anon_sym_BSLASHglsdisp] = ACTIONS(6249), - [anon_sym_BSLASHglslink] = ACTIONS(6249), - [anon_sym_BSLASHglstext] = ACTIONS(6249), - [anon_sym_BSLASHGlstext] = ACTIONS(6249), - [anon_sym_BSLASHGLStext] = ACTIONS(6249), - [anon_sym_BSLASHglsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6249), - [anon_sym_BSLASHglsplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSplural] = ACTIONS(6249), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6249), - [anon_sym_BSLASHglsname] = ACTIONS(6249), - [anon_sym_BSLASHGlsname] = ACTIONS(6249), - [anon_sym_BSLASHGLSname] = ACTIONS(6249), - [anon_sym_BSLASHglssymbol] = ACTIONS(6249), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6249), - [anon_sym_BSLASHglsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6249), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6249), - [anon_sym_BSLASHglsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6249), - [anon_sym_BSLASHglsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6249), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6249), - [anon_sym_BSLASHglsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6249), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6249), - [anon_sym_BSLASHglsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6249), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6249), - [anon_sym_BSLASHnewacronym] = ACTIONS(6249), - [anon_sym_BSLASHacrshort] = ACTIONS(6249), - [anon_sym_BSLASHAcrshort] = ACTIONS(6249), - [anon_sym_BSLASHACRshort] = ACTIONS(6249), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6249), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6249), - [anon_sym_BSLASHacrlong] = ACTIONS(6249), - [anon_sym_BSLASHAcrlong] = ACTIONS(6249), - [anon_sym_BSLASHACRlong] = ACTIONS(6249), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6249), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6249), - [anon_sym_BSLASHacrfull] = ACTIONS(6249), - [anon_sym_BSLASHAcrfull] = ACTIONS(6249), - [anon_sym_BSLASHACRfull] = ACTIONS(6249), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6249), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6249), - [anon_sym_BSLASHacs] = ACTIONS(6249), - [anon_sym_BSLASHAcs] = ACTIONS(6249), - [anon_sym_BSLASHacsp] = ACTIONS(6249), - [anon_sym_BSLASHAcsp] = ACTIONS(6249), - [anon_sym_BSLASHacl] = ACTIONS(6249), - [anon_sym_BSLASHAcl] = ACTIONS(6249), - [anon_sym_BSLASHaclp] = ACTIONS(6249), - [anon_sym_BSLASHAclp] = ACTIONS(6249), - [anon_sym_BSLASHacf] = ACTIONS(6249), - [anon_sym_BSLASHAcf] = ACTIONS(6249), - [anon_sym_BSLASHacfp] = ACTIONS(6249), - [anon_sym_BSLASHAcfp] = ACTIONS(6249), - [anon_sym_BSLASHac] = ACTIONS(6249), - [anon_sym_BSLASHAc] = ACTIONS(6249), - [anon_sym_BSLASHacp] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6249), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6249), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6249), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6249), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6249), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6249), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6249), - [anon_sym_BSLASHcolor] = ACTIONS(6249), - [anon_sym_BSLASHcolorbox] = ACTIONS(6249), - [anon_sym_BSLASHtextcolor] = ACTIONS(6249), - [anon_sym_BSLASHpagecolor] = ACTIONS(6249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6249), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6249), - }, - [1993] = { - [sym_command_name] = ACTIONS(6169), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6169), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_EQ] = ACTIONS(6171), - [anon_sym_RBRACE] = ACTIONS(6171), - [sym_word] = ACTIONS(6169), - [sym_placeholder] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6171), - [anon_sym_DASH] = ACTIONS(6171), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_COLON] = ACTIONS(6169), - [anon_sym_SQUOTE] = ACTIONS(6169), - [anon_sym__] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_BSLASHtitle] = ACTIONS(6169), - [anon_sym_BSLASHauthor] = ACTIONS(6169), - [anon_sym_BSLASHusepackage] = ACTIONS(6169), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6169), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6169), - [anon_sym_BSLASHinclude] = ACTIONS(6169), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6169), - [anon_sym_BSLASHinput] = ACTIONS(6169), - [anon_sym_BSLASHsubfile] = ACTIONS(6169), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6169), - [anon_sym_BSLASHbibliography] = ACTIONS(6169), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6169), - [anon_sym_BSLASHincludesvg] = ACTIONS(6169), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6169), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6169), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6169), - [anon_sym_BSLASHimport] = ACTIONS(6169), - [anon_sym_BSLASHsubimport] = ACTIONS(6169), - [anon_sym_BSLASHinputfrom] = ACTIONS(6169), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6169), - [anon_sym_BSLASHincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6169), - [anon_sym_BSLASHcaption] = ACTIONS(6169), - [anon_sym_BSLASHcite] = ACTIONS(6169), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCite] = ACTIONS(6169), - [anon_sym_BSLASHnocite] = ACTIONS(6169), - [anon_sym_BSLASHcitet] = ACTIONS(6169), - [anon_sym_BSLASHcitep] = ACTIONS(6169), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteauthor] = ACTIONS(6169), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6169), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitetitle] = ACTIONS(6169), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteyear] = ACTIONS(6169), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6171), - [anon_sym_BSLASHcitedate] = ACTIONS(6169), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6171), - [anon_sym_BSLASHciteurl] = ACTIONS(6169), - [anon_sym_BSLASHfullcite] = ACTIONS(6169), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6169), - [anon_sym_BSLASHcitealt] = ACTIONS(6169), - [anon_sym_BSLASHcitealp] = ACTIONS(6169), - [anon_sym_BSLASHcitetext] = ACTIONS(6169), - [anon_sym_BSLASHparencite] = ACTIONS(6169), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHParencite] = ACTIONS(6169), - [anon_sym_BSLASHfootcite] = ACTIONS(6169), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6169), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6169), - [anon_sym_BSLASHtextcite] = ACTIONS(6169), - [anon_sym_BSLASHTextcite] = ACTIONS(6169), - [anon_sym_BSLASHsmartcite] = ACTIONS(6169), - [anon_sym_BSLASHSmartcite] = ACTIONS(6169), - [anon_sym_BSLASHsupercite] = ACTIONS(6169), - [anon_sym_BSLASHautocite] = ACTIONS(6169), - [anon_sym_BSLASHAutocite] = ACTIONS(6169), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6171), - [anon_sym_BSLASHvolcite] = ACTIONS(6169), - [anon_sym_BSLASHVolcite] = ACTIONS(6169), - [anon_sym_BSLASHpvolcite] = ACTIONS(6169), - [anon_sym_BSLASHPvolcite] = ACTIONS(6169), - [anon_sym_BSLASHfvolcite] = ACTIONS(6169), - [anon_sym_BSLASHftvolcite] = ACTIONS(6169), - [anon_sym_BSLASHsvolcite] = ACTIONS(6169), - [anon_sym_BSLASHSvolcite] = ACTIONS(6169), - [anon_sym_BSLASHtvolcite] = ACTIONS(6169), - [anon_sym_BSLASHTvolcite] = ACTIONS(6169), - [anon_sym_BSLASHavolcite] = ACTIONS(6169), - [anon_sym_BSLASHAvolcite] = ACTIONS(6169), - [anon_sym_BSLASHnotecite] = ACTIONS(6169), - [anon_sym_BSLASHNotecite] = ACTIONS(6169), - [anon_sym_BSLASHpnotecite] = ACTIONS(6169), - [anon_sym_BSLASHPnotecite] = ACTIONS(6169), - [anon_sym_BSLASHfnotecite] = ACTIONS(6169), - [anon_sym_BSLASHlabel] = ACTIONS(6169), - [anon_sym_BSLASHref] = ACTIONS(6169), - [anon_sym_BSLASHeqref] = ACTIONS(6169), - [anon_sym_BSLASHvref] = ACTIONS(6169), - [anon_sym_BSLASHVref] = ACTIONS(6169), - [anon_sym_BSLASHautoref] = ACTIONS(6169), - [anon_sym_BSLASHpageref] = ACTIONS(6169), - [anon_sym_BSLASHcref] = ACTIONS(6169), - [anon_sym_BSLASHCref] = ACTIONS(6169), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnameCref] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6169), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6169), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6169), - [anon_sym_BSLASHlabelcref] = ACTIONS(6169), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange] = ACTIONS(6169), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHCrefrange] = ACTIONS(6169), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6171), - [anon_sym_BSLASHnewlabel] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand] = ACTIONS(6169), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6169), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6171), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6169), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6171), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6169), - [anon_sym_BSLASHdef] = ACTIONS(6169), - [anon_sym_BSLASHlet] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6169), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6169), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6169), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6169), - [anon_sym_BSLASHgls] = ACTIONS(6169), - [anon_sym_BSLASHGls] = ACTIONS(6169), - [anon_sym_BSLASHGLS] = ACTIONS(6169), - [anon_sym_BSLASHglspl] = ACTIONS(6169), - [anon_sym_BSLASHGlspl] = ACTIONS(6169), - [anon_sym_BSLASHGLSpl] = ACTIONS(6169), - [anon_sym_BSLASHglsdisp] = ACTIONS(6169), - [anon_sym_BSLASHglslink] = ACTIONS(6169), - [anon_sym_BSLASHglstext] = ACTIONS(6169), - [anon_sym_BSLASHGlstext] = ACTIONS(6169), - [anon_sym_BSLASHGLStext] = ACTIONS(6169), - [anon_sym_BSLASHglsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6169), - [anon_sym_BSLASHglsplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSplural] = ACTIONS(6169), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6169), - [anon_sym_BSLASHglsname] = ACTIONS(6169), - [anon_sym_BSLASHGlsname] = ACTIONS(6169), - [anon_sym_BSLASHGLSname] = ACTIONS(6169), - [anon_sym_BSLASHglssymbol] = ACTIONS(6169), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6169), - [anon_sym_BSLASHglsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6169), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6169), - [anon_sym_BSLASHglsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6169), - [anon_sym_BSLASHglsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6169), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6169), - [anon_sym_BSLASHglsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6169), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6169), - [anon_sym_BSLASHglsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6169), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6169), - [anon_sym_BSLASHnewacronym] = ACTIONS(6169), - [anon_sym_BSLASHacrshort] = ACTIONS(6169), - [anon_sym_BSLASHAcrshort] = ACTIONS(6169), - [anon_sym_BSLASHACRshort] = ACTIONS(6169), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6169), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6169), - [anon_sym_BSLASHacrlong] = ACTIONS(6169), - [anon_sym_BSLASHAcrlong] = ACTIONS(6169), - [anon_sym_BSLASHACRlong] = ACTIONS(6169), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6169), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6169), - [anon_sym_BSLASHacrfull] = ACTIONS(6169), - [anon_sym_BSLASHAcrfull] = ACTIONS(6169), - [anon_sym_BSLASHACRfull] = ACTIONS(6169), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6169), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6169), - [anon_sym_BSLASHacs] = ACTIONS(6169), - [anon_sym_BSLASHAcs] = ACTIONS(6169), - [anon_sym_BSLASHacsp] = ACTIONS(6169), - [anon_sym_BSLASHAcsp] = ACTIONS(6169), - [anon_sym_BSLASHacl] = ACTIONS(6169), - [anon_sym_BSLASHAcl] = ACTIONS(6169), - [anon_sym_BSLASHaclp] = ACTIONS(6169), - [anon_sym_BSLASHAclp] = ACTIONS(6169), - [anon_sym_BSLASHacf] = ACTIONS(6169), - [anon_sym_BSLASHAcf] = ACTIONS(6169), - [anon_sym_BSLASHacfp] = ACTIONS(6169), - [anon_sym_BSLASHAcfp] = ACTIONS(6169), - [anon_sym_BSLASHac] = ACTIONS(6169), - [anon_sym_BSLASHAc] = ACTIONS(6169), - [anon_sym_BSLASHacp] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6169), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6169), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6169), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6169), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6169), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6169), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6169), - [anon_sym_BSLASHcolor] = ACTIONS(6169), - [anon_sym_BSLASHcolorbox] = ACTIONS(6169), - [anon_sym_BSLASHtextcolor] = ACTIONS(6169), - [anon_sym_BSLASHpagecolor] = ACTIONS(6169), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6169), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6169), - }, - [1994] = { - [sym_command_name] = ACTIONS(6117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6117), - [anon_sym_RBRACK] = ACTIONS(6119), - [anon_sym_COMMA] = ACTIONS(6119), - [anon_sym_EQ] = ACTIONS(6119), - [anon_sym_RBRACE] = ACTIONS(6119), - [sym_word] = ACTIONS(6117), - [sym_placeholder] = ACTIONS(6119), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6119), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_LT] = ACTIONS(6117), - [anon_sym_GT] = ACTIONS(6117), - [anon_sym_BANG] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_SQUOTE] = ACTIONS(6117), - [anon_sym__] = ACTIONS(6119), - [anon_sym_CARET] = ACTIONS(6119), - [anon_sym_BSLASHtitle] = ACTIONS(6117), - [anon_sym_BSLASHauthor] = ACTIONS(6117), - [anon_sym_BSLASHusepackage] = ACTIONS(6117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6117), - [anon_sym_BSLASHinclude] = ACTIONS(6117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6117), - [anon_sym_BSLASHinput] = ACTIONS(6117), - [anon_sym_BSLASHsubfile] = ACTIONS(6117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6117), - [anon_sym_BSLASHbibliography] = ACTIONS(6117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6117), - [anon_sym_BSLASHincludesvg] = ACTIONS(6117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6117), - [anon_sym_BSLASHimport] = ACTIONS(6117), - [anon_sym_BSLASHsubimport] = ACTIONS(6117), - [anon_sym_BSLASHinputfrom] = ACTIONS(6117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6117), - [anon_sym_BSLASHincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6117), - [anon_sym_BSLASHcaption] = ACTIONS(6117), - [anon_sym_BSLASHcite] = ACTIONS(6117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCite] = ACTIONS(6117), - [anon_sym_BSLASHnocite] = ACTIONS(6117), - [anon_sym_BSLASHcitet] = ACTIONS(6117), - [anon_sym_BSLASHcitep] = ACTIONS(6117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteauthor] = ACTIONS(6117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitetitle] = ACTIONS(6117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteyear] = ACTIONS(6117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6119), - [anon_sym_BSLASHcitedate] = ACTIONS(6117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6119), - [anon_sym_BSLASHciteurl] = ACTIONS(6117), - [anon_sym_BSLASHfullcite] = ACTIONS(6117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6117), - [anon_sym_BSLASHcitealt] = ACTIONS(6117), - [anon_sym_BSLASHcitealp] = ACTIONS(6117), - [anon_sym_BSLASHcitetext] = ACTIONS(6117), - [anon_sym_BSLASHparencite] = ACTIONS(6117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHParencite] = ACTIONS(6117), - [anon_sym_BSLASHfootcite] = ACTIONS(6117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6117), - [anon_sym_BSLASHtextcite] = ACTIONS(6117), - [anon_sym_BSLASHTextcite] = ACTIONS(6117), - [anon_sym_BSLASHsmartcite] = ACTIONS(6117), - [anon_sym_BSLASHSmartcite] = ACTIONS(6117), - [anon_sym_BSLASHsupercite] = ACTIONS(6117), - [anon_sym_BSLASHautocite] = ACTIONS(6117), - [anon_sym_BSLASHAutocite] = ACTIONS(6117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6119), - [anon_sym_BSLASHvolcite] = ACTIONS(6117), - [anon_sym_BSLASHVolcite] = ACTIONS(6117), - [anon_sym_BSLASHpvolcite] = ACTIONS(6117), - [anon_sym_BSLASHPvolcite] = ACTIONS(6117), - [anon_sym_BSLASHfvolcite] = ACTIONS(6117), - [anon_sym_BSLASHftvolcite] = ACTIONS(6117), - [anon_sym_BSLASHsvolcite] = ACTIONS(6117), - [anon_sym_BSLASHSvolcite] = ACTIONS(6117), - [anon_sym_BSLASHtvolcite] = ACTIONS(6117), - [anon_sym_BSLASHTvolcite] = ACTIONS(6117), - [anon_sym_BSLASHavolcite] = ACTIONS(6117), - [anon_sym_BSLASHAvolcite] = ACTIONS(6117), - [anon_sym_BSLASHnotecite] = ACTIONS(6117), - [anon_sym_BSLASHNotecite] = ACTIONS(6117), - [anon_sym_BSLASHpnotecite] = ACTIONS(6117), - [anon_sym_BSLASHPnotecite] = ACTIONS(6117), - [anon_sym_BSLASHfnotecite] = ACTIONS(6117), - [anon_sym_BSLASHlabel] = ACTIONS(6117), - [anon_sym_BSLASHref] = ACTIONS(6117), - [anon_sym_BSLASHeqref] = ACTIONS(6117), - [anon_sym_BSLASHvref] = ACTIONS(6117), - [anon_sym_BSLASHVref] = ACTIONS(6117), - [anon_sym_BSLASHautoref] = ACTIONS(6117), - [anon_sym_BSLASHpageref] = ACTIONS(6117), - [anon_sym_BSLASHcref] = ACTIONS(6117), - [anon_sym_BSLASHCref] = ACTIONS(6117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnameCref] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6117), - [anon_sym_BSLASHlabelcref] = ACTIONS(6117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange] = ACTIONS(6117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHCrefrange] = ACTIONS(6117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6119), - [anon_sym_BSLASHnewlabel] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand] = ACTIONS(6117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6119), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6117), - [anon_sym_BSLASHdef] = ACTIONS(6117), - [anon_sym_BSLASHlet] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6117), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6117), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6117), - [anon_sym_BSLASHgls] = ACTIONS(6117), - [anon_sym_BSLASHGls] = ACTIONS(6117), - [anon_sym_BSLASHGLS] = ACTIONS(6117), - [anon_sym_BSLASHglspl] = ACTIONS(6117), - [anon_sym_BSLASHGlspl] = ACTIONS(6117), - [anon_sym_BSLASHGLSpl] = ACTIONS(6117), - [anon_sym_BSLASHglsdisp] = ACTIONS(6117), - [anon_sym_BSLASHglslink] = ACTIONS(6117), - [anon_sym_BSLASHglstext] = ACTIONS(6117), - [anon_sym_BSLASHGlstext] = ACTIONS(6117), - [anon_sym_BSLASHGLStext] = ACTIONS(6117), - [anon_sym_BSLASHglsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6117), - [anon_sym_BSLASHglsplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSplural] = ACTIONS(6117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6117), - [anon_sym_BSLASHglsname] = ACTIONS(6117), - [anon_sym_BSLASHGlsname] = ACTIONS(6117), - [anon_sym_BSLASHGLSname] = ACTIONS(6117), - [anon_sym_BSLASHglssymbol] = ACTIONS(6117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6117), - [anon_sym_BSLASHglsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6117), - [anon_sym_BSLASHglsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6117), - [anon_sym_BSLASHglsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6117), - [anon_sym_BSLASHglsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6117), - [anon_sym_BSLASHglsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6117), - [anon_sym_BSLASHnewacronym] = ACTIONS(6117), - [anon_sym_BSLASHacrshort] = ACTIONS(6117), - [anon_sym_BSLASHAcrshort] = ACTIONS(6117), - [anon_sym_BSLASHACRshort] = ACTIONS(6117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6117), - [anon_sym_BSLASHacrlong] = ACTIONS(6117), - [anon_sym_BSLASHAcrlong] = ACTIONS(6117), - [anon_sym_BSLASHACRlong] = ACTIONS(6117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6117), - [anon_sym_BSLASHacrfull] = ACTIONS(6117), - [anon_sym_BSLASHAcrfull] = ACTIONS(6117), - [anon_sym_BSLASHACRfull] = ACTIONS(6117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6117), - [anon_sym_BSLASHacs] = ACTIONS(6117), - [anon_sym_BSLASHAcs] = ACTIONS(6117), - [anon_sym_BSLASHacsp] = ACTIONS(6117), - [anon_sym_BSLASHAcsp] = ACTIONS(6117), - [anon_sym_BSLASHacl] = ACTIONS(6117), - [anon_sym_BSLASHAcl] = ACTIONS(6117), - [anon_sym_BSLASHaclp] = ACTIONS(6117), - [anon_sym_BSLASHAclp] = ACTIONS(6117), - [anon_sym_BSLASHacf] = ACTIONS(6117), - [anon_sym_BSLASHAcf] = ACTIONS(6117), - [anon_sym_BSLASHacfp] = ACTIONS(6117), - [anon_sym_BSLASHAcfp] = ACTIONS(6117), - [anon_sym_BSLASHac] = ACTIONS(6117), - [anon_sym_BSLASHAc] = ACTIONS(6117), - [anon_sym_BSLASHacp] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6117), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6117), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6117), - [anon_sym_BSLASHcolor] = ACTIONS(6117), - [anon_sym_BSLASHcolorbox] = ACTIONS(6117), - [anon_sym_BSLASHtextcolor] = ACTIONS(6117), - [anon_sym_BSLASHpagecolor] = ACTIONS(6117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6117), - }, - [1995] = { - [sym_command_name] = ACTIONS(6113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6113), - [anon_sym_RBRACK] = ACTIONS(6115), - [anon_sym_COMMA] = ACTIONS(6115), - [anon_sym_EQ] = ACTIONS(6115), - [anon_sym_RBRACE] = ACTIONS(6115), - [sym_word] = ACTIONS(6113), - [sym_placeholder] = ACTIONS(6115), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6115), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_LT] = ACTIONS(6113), - [anon_sym_GT] = ACTIONS(6113), - [anon_sym_BANG] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_SQUOTE] = ACTIONS(6113), - [anon_sym__] = ACTIONS(6115), - [anon_sym_CARET] = ACTIONS(6115), - [anon_sym_BSLASHtitle] = ACTIONS(6113), - [anon_sym_BSLASHauthor] = ACTIONS(6113), - [anon_sym_BSLASHusepackage] = ACTIONS(6113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6113), - [anon_sym_BSLASHinclude] = ACTIONS(6113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6113), - [anon_sym_BSLASHinput] = ACTIONS(6113), - [anon_sym_BSLASHsubfile] = ACTIONS(6113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6113), - [anon_sym_BSLASHbibliography] = ACTIONS(6113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6113), - [anon_sym_BSLASHincludesvg] = ACTIONS(6113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6113), - [anon_sym_BSLASHimport] = ACTIONS(6113), - [anon_sym_BSLASHsubimport] = ACTIONS(6113), - [anon_sym_BSLASHinputfrom] = ACTIONS(6113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6113), - [anon_sym_BSLASHincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6113), - [anon_sym_BSLASHcaption] = ACTIONS(6113), - [anon_sym_BSLASHcite] = ACTIONS(6113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCite] = ACTIONS(6113), - [anon_sym_BSLASHnocite] = ACTIONS(6113), - [anon_sym_BSLASHcitet] = ACTIONS(6113), - [anon_sym_BSLASHcitep] = ACTIONS(6113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteauthor] = ACTIONS(6113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitetitle] = ACTIONS(6113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteyear] = ACTIONS(6113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6115), - [anon_sym_BSLASHcitedate] = ACTIONS(6113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6115), - [anon_sym_BSLASHciteurl] = ACTIONS(6113), - [anon_sym_BSLASHfullcite] = ACTIONS(6113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6113), - [anon_sym_BSLASHcitealt] = ACTIONS(6113), - [anon_sym_BSLASHcitealp] = ACTIONS(6113), - [anon_sym_BSLASHcitetext] = ACTIONS(6113), - [anon_sym_BSLASHparencite] = ACTIONS(6113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHParencite] = ACTIONS(6113), - [anon_sym_BSLASHfootcite] = ACTIONS(6113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6113), - [anon_sym_BSLASHtextcite] = ACTIONS(6113), - [anon_sym_BSLASHTextcite] = ACTIONS(6113), - [anon_sym_BSLASHsmartcite] = ACTIONS(6113), - [anon_sym_BSLASHSmartcite] = ACTIONS(6113), - [anon_sym_BSLASHsupercite] = ACTIONS(6113), - [anon_sym_BSLASHautocite] = ACTIONS(6113), - [anon_sym_BSLASHAutocite] = ACTIONS(6113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6115), - [anon_sym_BSLASHvolcite] = ACTIONS(6113), - [anon_sym_BSLASHVolcite] = ACTIONS(6113), - [anon_sym_BSLASHpvolcite] = ACTIONS(6113), - [anon_sym_BSLASHPvolcite] = ACTIONS(6113), - [anon_sym_BSLASHfvolcite] = ACTIONS(6113), - [anon_sym_BSLASHftvolcite] = ACTIONS(6113), - [anon_sym_BSLASHsvolcite] = ACTIONS(6113), - [anon_sym_BSLASHSvolcite] = ACTIONS(6113), - [anon_sym_BSLASHtvolcite] = ACTIONS(6113), - [anon_sym_BSLASHTvolcite] = ACTIONS(6113), - [anon_sym_BSLASHavolcite] = ACTIONS(6113), - [anon_sym_BSLASHAvolcite] = ACTIONS(6113), - [anon_sym_BSLASHnotecite] = ACTIONS(6113), - [anon_sym_BSLASHNotecite] = ACTIONS(6113), - [anon_sym_BSLASHpnotecite] = ACTIONS(6113), - [anon_sym_BSLASHPnotecite] = ACTIONS(6113), - [anon_sym_BSLASHfnotecite] = ACTIONS(6113), - [anon_sym_BSLASHlabel] = ACTIONS(6113), - [anon_sym_BSLASHref] = ACTIONS(6113), - [anon_sym_BSLASHeqref] = ACTIONS(6113), - [anon_sym_BSLASHvref] = ACTIONS(6113), - [anon_sym_BSLASHVref] = ACTIONS(6113), - [anon_sym_BSLASHautoref] = ACTIONS(6113), - [anon_sym_BSLASHpageref] = ACTIONS(6113), - [anon_sym_BSLASHcref] = ACTIONS(6113), - [anon_sym_BSLASHCref] = ACTIONS(6113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnameCref] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6113), - [anon_sym_BSLASHlabelcref] = ACTIONS(6113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange] = ACTIONS(6113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHCrefrange] = ACTIONS(6113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6115), - [anon_sym_BSLASHnewlabel] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand] = ACTIONS(6113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6115), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6113), - [anon_sym_BSLASHdef] = ACTIONS(6113), - [anon_sym_BSLASHlet] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6113), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6113), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6113), - [anon_sym_BSLASHgls] = ACTIONS(6113), - [anon_sym_BSLASHGls] = ACTIONS(6113), - [anon_sym_BSLASHGLS] = ACTIONS(6113), - [anon_sym_BSLASHglspl] = ACTIONS(6113), - [anon_sym_BSLASHGlspl] = ACTIONS(6113), - [anon_sym_BSLASHGLSpl] = ACTIONS(6113), - [anon_sym_BSLASHglsdisp] = ACTIONS(6113), - [anon_sym_BSLASHglslink] = ACTIONS(6113), - [anon_sym_BSLASHglstext] = ACTIONS(6113), - [anon_sym_BSLASHGlstext] = ACTIONS(6113), - [anon_sym_BSLASHGLStext] = ACTIONS(6113), - [anon_sym_BSLASHglsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6113), - [anon_sym_BSLASHglsplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSplural] = ACTIONS(6113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6113), - [anon_sym_BSLASHglsname] = ACTIONS(6113), - [anon_sym_BSLASHGlsname] = ACTIONS(6113), - [anon_sym_BSLASHGLSname] = ACTIONS(6113), - [anon_sym_BSLASHglssymbol] = ACTIONS(6113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6113), - [anon_sym_BSLASHglsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6113), - [anon_sym_BSLASHglsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6113), - [anon_sym_BSLASHglsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6113), - [anon_sym_BSLASHglsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6113), - [anon_sym_BSLASHglsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6113), - [anon_sym_BSLASHnewacronym] = ACTIONS(6113), - [anon_sym_BSLASHacrshort] = ACTIONS(6113), - [anon_sym_BSLASHAcrshort] = ACTIONS(6113), - [anon_sym_BSLASHACRshort] = ACTIONS(6113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6113), - [anon_sym_BSLASHacrlong] = ACTIONS(6113), - [anon_sym_BSLASHAcrlong] = ACTIONS(6113), - [anon_sym_BSLASHACRlong] = ACTIONS(6113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6113), - [anon_sym_BSLASHacrfull] = ACTIONS(6113), - [anon_sym_BSLASHAcrfull] = ACTIONS(6113), - [anon_sym_BSLASHACRfull] = ACTIONS(6113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6113), - [anon_sym_BSLASHacs] = ACTIONS(6113), - [anon_sym_BSLASHAcs] = ACTIONS(6113), - [anon_sym_BSLASHacsp] = ACTIONS(6113), - [anon_sym_BSLASHAcsp] = ACTIONS(6113), - [anon_sym_BSLASHacl] = ACTIONS(6113), - [anon_sym_BSLASHAcl] = ACTIONS(6113), - [anon_sym_BSLASHaclp] = ACTIONS(6113), - [anon_sym_BSLASHAclp] = ACTIONS(6113), - [anon_sym_BSLASHacf] = ACTIONS(6113), - [anon_sym_BSLASHAcf] = ACTIONS(6113), - [anon_sym_BSLASHacfp] = ACTIONS(6113), - [anon_sym_BSLASHAcfp] = ACTIONS(6113), - [anon_sym_BSLASHac] = ACTIONS(6113), - [anon_sym_BSLASHAc] = ACTIONS(6113), - [anon_sym_BSLASHacp] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6113), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6113), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6113), - [anon_sym_BSLASHcolor] = ACTIONS(6113), - [anon_sym_BSLASHcolorbox] = ACTIONS(6113), - [anon_sym_BSLASHtextcolor] = ACTIONS(6113), - [anon_sym_BSLASHpagecolor] = ACTIONS(6113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6113), - }, - [1996] = { - [sym_command_name] = ACTIONS(6109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6109), - [anon_sym_RBRACK] = ACTIONS(6111), - [anon_sym_COMMA] = ACTIONS(6111), - [anon_sym_EQ] = ACTIONS(6111), - [anon_sym_RBRACE] = ACTIONS(6111), - [sym_word] = ACTIONS(6109), - [sym_placeholder] = ACTIONS(6111), - [anon_sym_PLUS] = ACTIONS(6111), - [anon_sym_DASH] = ACTIONS(6111), - [anon_sym_STAR] = ACTIONS(6111), - [anon_sym_SLASH] = ACTIONS(6111), - [anon_sym_LT] = ACTIONS(6109), - [anon_sym_GT] = ACTIONS(6109), - [anon_sym_BANG] = ACTIONS(6109), - [anon_sym_PIPE] = ACTIONS(6109), - [anon_sym_COLON] = ACTIONS(6109), - [anon_sym_SQUOTE] = ACTIONS(6109), - [anon_sym__] = ACTIONS(6111), - [anon_sym_CARET] = ACTIONS(6111), - [anon_sym_BSLASHtitle] = ACTIONS(6109), - [anon_sym_BSLASHauthor] = ACTIONS(6109), - [anon_sym_BSLASHusepackage] = ACTIONS(6109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6109), - [anon_sym_BSLASHinclude] = ACTIONS(6109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6109), - [anon_sym_BSLASHinput] = ACTIONS(6109), - [anon_sym_BSLASHsubfile] = ACTIONS(6109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6109), - [anon_sym_BSLASHbibliography] = ACTIONS(6109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6109), - [anon_sym_BSLASHincludesvg] = ACTIONS(6109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6109), - [anon_sym_BSLASHimport] = ACTIONS(6109), - [anon_sym_BSLASHsubimport] = ACTIONS(6109), - [anon_sym_BSLASHinputfrom] = ACTIONS(6109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6109), - [anon_sym_BSLASHincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6109), - [anon_sym_BSLASHcaption] = ACTIONS(6109), - [anon_sym_BSLASHcite] = ACTIONS(6109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCite] = ACTIONS(6109), - [anon_sym_BSLASHnocite] = ACTIONS(6109), - [anon_sym_BSLASHcitet] = ACTIONS(6109), - [anon_sym_BSLASHcitep] = ACTIONS(6109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteauthor] = ACTIONS(6109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitetitle] = ACTIONS(6109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteyear] = ACTIONS(6109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6111), - [anon_sym_BSLASHcitedate] = ACTIONS(6109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6111), - [anon_sym_BSLASHciteurl] = ACTIONS(6109), - [anon_sym_BSLASHfullcite] = ACTIONS(6109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6109), - [anon_sym_BSLASHcitealt] = ACTIONS(6109), - [anon_sym_BSLASHcitealp] = ACTIONS(6109), - [anon_sym_BSLASHcitetext] = ACTIONS(6109), - [anon_sym_BSLASHparencite] = ACTIONS(6109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHParencite] = ACTIONS(6109), - [anon_sym_BSLASHfootcite] = ACTIONS(6109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6109), - [anon_sym_BSLASHtextcite] = ACTIONS(6109), - [anon_sym_BSLASHTextcite] = ACTIONS(6109), - [anon_sym_BSLASHsmartcite] = ACTIONS(6109), - [anon_sym_BSLASHSmartcite] = ACTIONS(6109), - [anon_sym_BSLASHsupercite] = ACTIONS(6109), - [anon_sym_BSLASHautocite] = ACTIONS(6109), - [anon_sym_BSLASHAutocite] = ACTIONS(6109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6111), - [anon_sym_BSLASHvolcite] = ACTIONS(6109), - [anon_sym_BSLASHVolcite] = ACTIONS(6109), - [anon_sym_BSLASHpvolcite] = ACTIONS(6109), - [anon_sym_BSLASHPvolcite] = ACTIONS(6109), - [anon_sym_BSLASHfvolcite] = ACTIONS(6109), - [anon_sym_BSLASHftvolcite] = ACTIONS(6109), - [anon_sym_BSLASHsvolcite] = ACTIONS(6109), - [anon_sym_BSLASHSvolcite] = ACTIONS(6109), - [anon_sym_BSLASHtvolcite] = ACTIONS(6109), - [anon_sym_BSLASHTvolcite] = ACTIONS(6109), - [anon_sym_BSLASHavolcite] = ACTIONS(6109), - [anon_sym_BSLASHAvolcite] = ACTIONS(6109), - [anon_sym_BSLASHnotecite] = ACTIONS(6109), - [anon_sym_BSLASHNotecite] = ACTIONS(6109), - [anon_sym_BSLASHpnotecite] = ACTIONS(6109), - [anon_sym_BSLASHPnotecite] = ACTIONS(6109), - [anon_sym_BSLASHfnotecite] = ACTIONS(6109), - [anon_sym_BSLASHlabel] = ACTIONS(6109), - [anon_sym_BSLASHref] = ACTIONS(6109), - [anon_sym_BSLASHeqref] = ACTIONS(6109), - [anon_sym_BSLASHvref] = ACTIONS(6109), - [anon_sym_BSLASHVref] = ACTIONS(6109), - [anon_sym_BSLASHautoref] = ACTIONS(6109), - [anon_sym_BSLASHpageref] = ACTIONS(6109), - [anon_sym_BSLASHcref] = ACTIONS(6109), - [anon_sym_BSLASHCref] = ACTIONS(6109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnameCref] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6109), - [anon_sym_BSLASHlabelcref] = ACTIONS(6109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange] = ACTIONS(6109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHCrefrange] = ACTIONS(6109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6111), - [anon_sym_BSLASHnewlabel] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand] = ACTIONS(6109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6111), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6109), - [anon_sym_BSLASHdef] = ACTIONS(6109), - [anon_sym_BSLASHlet] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6109), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6109), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6109), - [anon_sym_BSLASHgls] = ACTIONS(6109), - [anon_sym_BSLASHGls] = ACTIONS(6109), - [anon_sym_BSLASHGLS] = ACTIONS(6109), - [anon_sym_BSLASHglspl] = ACTIONS(6109), - [anon_sym_BSLASHGlspl] = ACTIONS(6109), - [anon_sym_BSLASHGLSpl] = ACTIONS(6109), - [anon_sym_BSLASHglsdisp] = ACTIONS(6109), - [anon_sym_BSLASHglslink] = ACTIONS(6109), - [anon_sym_BSLASHglstext] = ACTIONS(6109), - [anon_sym_BSLASHGlstext] = ACTIONS(6109), - [anon_sym_BSLASHGLStext] = ACTIONS(6109), - [anon_sym_BSLASHglsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6109), - [anon_sym_BSLASHglsplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSplural] = ACTIONS(6109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6109), - [anon_sym_BSLASHglsname] = ACTIONS(6109), - [anon_sym_BSLASHGlsname] = ACTIONS(6109), - [anon_sym_BSLASHGLSname] = ACTIONS(6109), - [anon_sym_BSLASHglssymbol] = ACTIONS(6109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6109), - [anon_sym_BSLASHglsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6109), - [anon_sym_BSLASHglsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6109), - [anon_sym_BSLASHglsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6109), - [anon_sym_BSLASHglsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6109), - [anon_sym_BSLASHglsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6109), - [anon_sym_BSLASHnewacronym] = ACTIONS(6109), - [anon_sym_BSLASHacrshort] = ACTIONS(6109), - [anon_sym_BSLASHAcrshort] = ACTIONS(6109), - [anon_sym_BSLASHACRshort] = ACTIONS(6109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6109), - [anon_sym_BSLASHacrlong] = ACTIONS(6109), - [anon_sym_BSLASHAcrlong] = ACTIONS(6109), - [anon_sym_BSLASHACRlong] = ACTIONS(6109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6109), - [anon_sym_BSLASHacrfull] = ACTIONS(6109), - [anon_sym_BSLASHAcrfull] = ACTIONS(6109), - [anon_sym_BSLASHACRfull] = ACTIONS(6109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6109), - [anon_sym_BSLASHacs] = ACTIONS(6109), - [anon_sym_BSLASHAcs] = ACTIONS(6109), - [anon_sym_BSLASHacsp] = ACTIONS(6109), - [anon_sym_BSLASHAcsp] = ACTIONS(6109), - [anon_sym_BSLASHacl] = ACTIONS(6109), - [anon_sym_BSLASHAcl] = ACTIONS(6109), - [anon_sym_BSLASHaclp] = ACTIONS(6109), - [anon_sym_BSLASHAclp] = ACTIONS(6109), - [anon_sym_BSLASHacf] = ACTIONS(6109), - [anon_sym_BSLASHAcf] = ACTIONS(6109), - [anon_sym_BSLASHacfp] = ACTIONS(6109), - [anon_sym_BSLASHAcfp] = ACTIONS(6109), - [anon_sym_BSLASHac] = ACTIONS(6109), - [anon_sym_BSLASHAc] = ACTIONS(6109), - [anon_sym_BSLASHacp] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6109), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6109), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6111), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6109), - [anon_sym_BSLASHcolor] = ACTIONS(6109), - [anon_sym_BSLASHcolorbox] = ACTIONS(6109), - [anon_sym_BSLASHtextcolor] = ACTIONS(6109), - [anon_sym_BSLASHpagecolor] = ACTIONS(6109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6109), - }, - [1997] = { - [sym_command_name] = ACTIONS(6057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6057), - [anon_sym_RBRACK] = ACTIONS(6059), - [anon_sym_COMMA] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(6059), - [anon_sym_RBRACE] = ACTIONS(6059), - [sym_word] = ACTIONS(6057), - [sym_placeholder] = ACTIONS(6059), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6059), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_BANG] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_SQUOTE] = ACTIONS(6057), - [anon_sym__] = ACTIONS(6059), - [anon_sym_CARET] = ACTIONS(6059), - [anon_sym_BSLASHtitle] = ACTIONS(6057), - [anon_sym_BSLASHauthor] = ACTIONS(6057), - [anon_sym_BSLASHusepackage] = ACTIONS(6057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6057), - [anon_sym_BSLASHinclude] = ACTIONS(6057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6057), - [anon_sym_BSLASHinput] = ACTIONS(6057), - [anon_sym_BSLASHsubfile] = ACTIONS(6057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6057), - [anon_sym_BSLASHbibliography] = ACTIONS(6057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6057), - [anon_sym_BSLASHincludesvg] = ACTIONS(6057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6057), - [anon_sym_BSLASHimport] = ACTIONS(6057), - [anon_sym_BSLASHsubimport] = ACTIONS(6057), - [anon_sym_BSLASHinputfrom] = ACTIONS(6057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6057), - [anon_sym_BSLASHincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6057), - [anon_sym_BSLASHcaption] = ACTIONS(6057), - [anon_sym_BSLASHcite] = ACTIONS(6057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCite] = ACTIONS(6057), - [anon_sym_BSLASHnocite] = ACTIONS(6057), - [anon_sym_BSLASHcitet] = ACTIONS(6057), - [anon_sym_BSLASHcitep] = ACTIONS(6057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteauthor] = ACTIONS(6057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitetitle] = ACTIONS(6057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteyear] = ACTIONS(6057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6059), - [anon_sym_BSLASHcitedate] = ACTIONS(6057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6059), - [anon_sym_BSLASHciteurl] = ACTIONS(6057), - [anon_sym_BSLASHfullcite] = ACTIONS(6057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6057), - [anon_sym_BSLASHcitealt] = ACTIONS(6057), - [anon_sym_BSLASHcitealp] = ACTIONS(6057), - [anon_sym_BSLASHcitetext] = ACTIONS(6057), - [anon_sym_BSLASHparencite] = ACTIONS(6057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHParencite] = ACTIONS(6057), - [anon_sym_BSLASHfootcite] = ACTIONS(6057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6057), - [anon_sym_BSLASHtextcite] = ACTIONS(6057), - [anon_sym_BSLASHTextcite] = ACTIONS(6057), - [anon_sym_BSLASHsmartcite] = ACTIONS(6057), - [anon_sym_BSLASHSmartcite] = ACTIONS(6057), - [anon_sym_BSLASHsupercite] = ACTIONS(6057), - [anon_sym_BSLASHautocite] = ACTIONS(6057), - [anon_sym_BSLASHAutocite] = ACTIONS(6057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6059), - [anon_sym_BSLASHvolcite] = ACTIONS(6057), - [anon_sym_BSLASHVolcite] = ACTIONS(6057), - [anon_sym_BSLASHpvolcite] = ACTIONS(6057), - [anon_sym_BSLASHPvolcite] = ACTIONS(6057), - [anon_sym_BSLASHfvolcite] = ACTIONS(6057), - [anon_sym_BSLASHftvolcite] = ACTIONS(6057), - [anon_sym_BSLASHsvolcite] = ACTIONS(6057), - [anon_sym_BSLASHSvolcite] = ACTIONS(6057), - [anon_sym_BSLASHtvolcite] = ACTIONS(6057), - [anon_sym_BSLASHTvolcite] = ACTIONS(6057), - [anon_sym_BSLASHavolcite] = ACTIONS(6057), - [anon_sym_BSLASHAvolcite] = ACTIONS(6057), - [anon_sym_BSLASHnotecite] = ACTIONS(6057), - [anon_sym_BSLASHNotecite] = ACTIONS(6057), - [anon_sym_BSLASHpnotecite] = ACTIONS(6057), - [anon_sym_BSLASHPnotecite] = ACTIONS(6057), - [anon_sym_BSLASHfnotecite] = ACTIONS(6057), - [anon_sym_BSLASHlabel] = ACTIONS(6057), - [anon_sym_BSLASHref] = ACTIONS(6057), - [anon_sym_BSLASHeqref] = ACTIONS(6057), - [anon_sym_BSLASHvref] = ACTIONS(6057), - [anon_sym_BSLASHVref] = ACTIONS(6057), - [anon_sym_BSLASHautoref] = ACTIONS(6057), - [anon_sym_BSLASHpageref] = ACTIONS(6057), - [anon_sym_BSLASHcref] = ACTIONS(6057), - [anon_sym_BSLASHCref] = ACTIONS(6057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnameCref] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6057), - [anon_sym_BSLASHlabelcref] = ACTIONS(6057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange] = ACTIONS(6057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHCrefrange] = ACTIONS(6057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6059), - [anon_sym_BSLASHnewlabel] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand] = ACTIONS(6057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6059), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6057), - [anon_sym_BSLASHdef] = ACTIONS(6057), - [anon_sym_BSLASHlet] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6057), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6057), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6057), - [anon_sym_BSLASHgls] = ACTIONS(6057), - [anon_sym_BSLASHGls] = ACTIONS(6057), - [anon_sym_BSLASHGLS] = ACTIONS(6057), - [anon_sym_BSLASHglspl] = ACTIONS(6057), - [anon_sym_BSLASHGlspl] = ACTIONS(6057), - [anon_sym_BSLASHGLSpl] = ACTIONS(6057), - [anon_sym_BSLASHglsdisp] = ACTIONS(6057), - [anon_sym_BSLASHglslink] = ACTIONS(6057), - [anon_sym_BSLASHglstext] = ACTIONS(6057), - [anon_sym_BSLASHGlstext] = ACTIONS(6057), - [anon_sym_BSLASHGLStext] = ACTIONS(6057), - [anon_sym_BSLASHglsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6057), - [anon_sym_BSLASHglsplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSplural] = ACTIONS(6057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6057), - [anon_sym_BSLASHglsname] = ACTIONS(6057), - [anon_sym_BSLASHGlsname] = ACTIONS(6057), - [anon_sym_BSLASHGLSname] = ACTIONS(6057), - [anon_sym_BSLASHglssymbol] = ACTIONS(6057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6057), - [anon_sym_BSLASHglsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6057), - [anon_sym_BSLASHglsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6057), - [anon_sym_BSLASHglsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6057), - [anon_sym_BSLASHglsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6057), - [anon_sym_BSLASHglsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6057), - [anon_sym_BSLASHnewacronym] = ACTIONS(6057), - [anon_sym_BSLASHacrshort] = ACTIONS(6057), - [anon_sym_BSLASHAcrshort] = ACTIONS(6057), - [anon_sym_BSLASHACRshort] = ACTIONS(6057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6057), - [anon_sym_BSLASHacrlong] = ACTIONS(6057), - [anon_sym_BSLASHAcrlong] = ACTIONS(6057), - [anon_sym_BSLASHACRlong] = ACTIONS(6057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6057), - [anon_sym_BSLASHacrfull] = ACTIONS(6057), - [anon_sym_BSLASHAcrfull] = ACTIONS(6057), - [anon_sym_BSLASHACRfull] = ACTIONS(6057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6057), - [anon_sym_BSLASHacs] = ACTIONS(6057), - [anon_sym_BSLASHAcs] = ACTIONS(6057), - [anon_sym_BSLASHacsp] = ACTIONS(6057), - [anon_sym_BSLASHAcsp] = ACTIONS(6057), - [anon_sym_BSLASHacl] = ACTIONS(6057), - [anon_sym_BSLASHAcl] = ACTIONS(6057), - [anon_sym_BSLASHaclp] = ACTIONS(6057), - [anon_sym_BSLASHAclp] = ACTIONS(6057), - [anon_sym_BSLASHacf] = ACTIONS(6057), - [anon_sym_BSLASHAcf] = ACTIONS(6057), - [anon_sym_BSLASHacfp] = ACTIONS(6057), - [anon_sym_BSLASHAcfp] = ACTIONS(6057), - [anon_sym_BSLASHac] = ACTIONS(6057), - [anon_sym_BSLASHAc] = ACTIONS(6057), - [anon_sym_BSLASHacp] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6057), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6057), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6059), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6057), - [anon_sym_BSLASHcolor] = ACTIONS(6057), - [anon_sym_BSLASHcolorbox] = ACTIONS(6057), - [anon_sym_BSLASHtextcolor] = ACTIONS(6057), - [anon_sym_BSLASHpagecolor] = ACTIONS(6057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6057), - }, - [1998] = { - [sym_command_name] = ACTIONS(6053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6053), - [anon_sym_RBRACK] = ACTIONS(6055), - [anon_sym_COMMA] = ACTIONS(6055), - [anon_sym_EQ] = ACTIONS(6055), - [anon_sym_RBRACE] = ACTIONS(6055), - [sym_word] = ACTIONS(6053), - [sym_placeholder] = ACTIONS(6055), - [anon_sym_PLUS] = ACTIONS(6055), - [anon_sym_DASH] = ACTIONS(6055), - [anon_sym_STAR] = ACTIONS(6055), - [anon_sym_SLASH] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6053), - [anon_sym_GT] = ACTIONS(6053), - [anon_sym_BANG] = ACTIONS(6053), - [anon_sym_PIPE] = ACTIONS(6053), - [anon_sym_COLON] = ACTIONS(6053), - [anon_sym_SQUOTE] = ACTIONS(6053), - [anon_sym__] = ACTIONS(6055), - [anon_sym_CARET] = ACTIONS(6055), - [anon_sym_BSLASHtitle] = ACTIONS(6053), - [anon_sym_BSLASHauthor] = ACTIONS(6053), - [anon_sym_BSLASHusepackage] = ACTIONS(6053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6053), - [anon_sym_BSLASHinclude] = ACTIONS(6053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6053), - [anon_sym_BSLASHinput] = ACTIONS(6053), - [anon_sym_BSLASHsubfile] = ACTIONS(6053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6053), - [anon_sym_BSLASHbibliography] = ACTIONS(6053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6053), - [anon_sym_BSLASHincludesvg] = ACTIONS(6053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6053), - [anon_sym_BSLASHimport] = ACTIONS(6053), - [anon_sym_BSLASHsubimport] = ACTIONS(6053), - [anon_sym_BSLASHinputfrom] = ACTIONS(6053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6053), - [anon_sym_BSLASHincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6053), - [anon_sym_BSLASHcaption] = ACTIONS(6053), - [anon_sym_BSLASHcite] = ACTIONS(6053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCite] = ACTIONS(6053), - [anon_sym_BSLASHnocite] = ACTIONS(6053), - [anon_sym_BSLASHcitet] = ACTIONS(6053), - [anon_sym_BSLASHcitep] = ACTIONS(6053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteauthor] = ACTIONS(6053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitetitle] = ACTIONS(6053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteyear] = ACTIONS(6053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6055), - [anon_sym_BSLASHcitedate] = ACTIONS(6053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6055), - [anon_sym_BSLASHciteurl] = ACTIONS(6053), - [anon_sym_BSLASHfullcite] = ACTIONS(6053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6053), - [anon_sym_BSLASHcitealt] = ACTIONS(6053), - [anon_sym_BSLASHcitealp] = ACTIONS(6053), - [anon_sym_BSLASHcitetext] = ACTIONS(6053), - [anon_sym_BSLASHparencite] = ACTIONS(6053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHParencite] = ACTIONS(6053), - [anon_sym_BSLASHfootcite] = ACTIONS(6053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6053), - [anon_sym_BSLASHtextcite] = ACTIONS(6053), - [anon_sym_BSLASHTextcite] = ACTIONS(6053), - [anon_sym_BSLASHsmartcite] = ACTIONS(6053), - [anon_sym_BSLASHSmartcite] = ACTIONS(6053), - [anon_sym_BSLASHsupercite] = ACTIONS(6053), - [anon_sym_BSLASHautocite] = ACTIONS(6053), - [anon_sym_BSLASHAutocite] = ACTIONS(6053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6055), - [anon_sym_BSLASHvolcite] = ACTIONS(6053), - [anon_sym_BSLASHVolcite] = ACTIONS(6053), - [anon_sym_BSLASHpvolcite] = ACTIONS(6053), - [anon_sym_BSLASHPvolcite] = ACTIONS(6053), - [anon_sym_BSLASHfvolcite] = ACTIONS(6053), - [anon_sym_BSLASHftvolcite] = ACTIONS(6053), - [anon_sym_BSLASHsvolcite] = ACTIONS(6053), - [anon_sym_BSLASHSvolcite] = ACTIONS(6053), - [anon_sym_BSLASHtvolcite] = ACTIONS(6053), - [anon_sym_BSLASHTvolcite] = ACTIONS(6053), - [anon_sym_BSLASHavolcite] = ACTIONS(6053), - [anon_sym_BSLASHAvolcite] = ACTIONS(6053), - [anon_sym_BSLASHnotecite] = ACTIONS(6053), - [anon_sym_BSLASHNotecite] = ACTIONS(6053), - [anon_sym_BSLASHpnotecite] = ACTIONS(6053), - [anon_sym_BSLASHPnotecite] = ACTIONS(6053), - [anon_sym_BSLASHfnotecite] = ACTIONS(6053), - [anon_sym_BSLASHlabel] = ACTIONS(6053), - [anon_sym_BSLASHref] = ACTIONS(6053), - [anon_sym_BSLASHeqref] = ACTIONS(6053), - [anon_sym_BSLASHvref] = ACTIONS(6053), - [anon_sym_BSLASHVref] = ACTIONS(6053), - [anon_sym_BSLASHautoref] = ACTIONS(6053), - [anon_sym_BSLASHpageref] = ACTIONS(6053), - [anon_sym_BSLASHcref] = ACTIONS(6053), - [anon_sym_BSLASHCref] = ACTIONS(6053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnameCref] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6053), - [anon_sym_BSLASHlabelcref] = ACTIONS(6053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange] = ACTIONS(6053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHCrefrange] = ACTIONS(6053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6055), - [anon_sym_BSLASHnewlabel] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand] = ACTIONS(6053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6055), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6053), - [anon_sym_BSLASHdef] = ACTIONS(6053), - [anon_sym_BSLASHlet] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6053), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6053), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6053), - [anon_sym_BSLASHgls] = ACTIONS(6053), - [anon_sym_BSLASHGls] = ACTIONS(6053), - [anon_sym_BSLASHGLS] = ACTIONS(6053), - [anon_sym_BSLASHglspl] = ACTIONS(6053), - [anon_sym_BSLASHGlspl] = ACTIONS(6053), - [anon_sym_BSLASHGLSpl] = ACTIONS(6053), - [anon_sym_BSLASHglsdisp] = ACTIONS(6053), - [anon_sym_BSLASHglslink] = ACTIONS(6053), - [anon_sym_BSLASHglstext] = ACTIONS(6053), - [anon_sym_BSLASHGlstext] = ACTIONS(6053), - [anon_sym_BSLASHGLStext] = ACTIONS(6053), - [anon_sym_BSLASHglsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6053), - [anon_sym_BSLASHglsplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSplural] = ACTIONS(6053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6053), - [anon_sym_BSLASHglsname] = ACTIONS(6053), - [anon_sym_BSLASHGlsname] = ACTIONS(6053), - [anon_sym_BSLASHGLSname] = ACTIONS(6053), - [anon_sym_BSLASHglssymbol] = ACTIONS(6053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6053), - [anon_sym_BSLASHglsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6053), - [anon_sym_BSLASHglsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6053), - [anon_sym_BSLASHglsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6053), - [anon_sym_BSLASHglsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6053), - [anon_sym_BSLASHglsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6053), - [anon_sym_BSLASHnewacronym] = ACTIONS(6053), - [anon_sym_BSLASHacrshort] = ACTIONS(6053), - [anon_sym_BSLASHAcrshort] = ACTIONS(6053), - [anon_sym_BSLASHACRshort] = ACTIONS(6053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6053), - [anon_sym_BSLASHacrlong] = ACTIONS(6053), - [anon_sym_BSLASHAcrlong] = ACTIONS(6053), - [anon_sym_BSLASHACRlong] = ACTIONS(6053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6053), - [anon_sym_BSLASHacrfull] = ACTIONS(6053), - [anon_sym_BSLASHAcrfull] = ACTIONS(6053), - [anon_sym_BSLASHACRfull] = ACTIONS(6053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6053), - [anon_sym_BSLASHacs] = ACTIONS(6053), - [anon_sym_BSLASHAcs] = ACTIONS(6053), - [anon_sym_BSLASHacsp] = ACTIONS(6053), - [anon_sym_BSLASHAcsp] = ACTIONS(6053), - [anon_sym_BSLASHacl] = ACTIONS(6053), - [anon_sym_BSLASHAcl] = ACTIONS(6053), - [anon_sym_BSLASHaclp] = ACTIONS(6053), - [anon_sym_BSLASHAclp] = ACTIONS(6053), - [anon_sym_BSLASHacf] = ACTIONS(6053), - [anon_sym_BSLASHAcf] = ACTIONS(6053), - [anon_sym_BSLASHacfp] = ACTIONS(6053), - [anon_sym_BSLASHAcfp] = ACTIONS(6053), - [anon_sym_BSLASHac] = ACTIONS(6053), - [anon_sym_BSLASHAc] = ACTIONS(6053), - [anon_sym_BSLASHacp] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6053), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6053), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6055), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6053), - [anon_sym_BSLASHcolor] = ACTIONS(6053), - [anon_sym_BSLASHcolorbox] = ACTIONS(6053), - [anon_sym_BSLASHtextcolor] = ACTIONS(6053), - [anon_sym_BSLASHpagecolor] = ACTIONS(6053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6053), - }, - [1999] = { - [sym_command_name] = ACTIONS(6049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6049), - [anon_sym_RBRACK] = ACTIONS(6051), - [anon_sym_COMMA] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(6051), - [anon_sym_RBRACE] = ACTIONS(6051), - [sym_word] = ACTIONS(6049), - [sym_placeholder] = ACTIONS(6051), - [anon_sym_PLUS] = ACTIONS(6051), - [anon_sym_DASH] = ACTIONS(6051), - [anon_sym_STAR] = ACTIONS(6051), - [anon_sym_SLASH] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6049), - [anon_sym_GT] = ACTIONS(6049), - [anon_sym_BANG] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6049), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_SQUOTE] = ACTIONS(6049), - [anon_sym__] = ACTIONS(6051), - [anon_sym_CARET] = ACTIONS(6051), - [anon_sym_BSLASHtitle] = ACTIONS(6049), - [anon_sym_BSLASHauthor] = ACTIONS(6049), - [anon_sym_BSLASHusepackage] = ACTIONS(6049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6049), - [anon_sym_BSLASHinclude] = ACTIONS(6049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6049), - [anon_sym_BSLASHinput] = ACTIONS(6049), - [anon_sym_BSLASHsubfile] = ACTIONS(6049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6049), - [anon_sym_BSLASHbibliography] = ACTIONS(6049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6049), - [anon_sym_BSLASHincludesvg] = ACTIONS(6049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6049), - [anon_sym_BSLASHimport] = ACTIONS(6049), - [anon_sym_BSLASHsubimport] = ACTIONS(6049), - [anon_sym_BSLASHinputfrom] = ACTIONS(6049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6049), - [anon_sym_BSLASHincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6049), - [anon_sym_BSLASHcaption] = ACTIONS(6049), - [anon_sym_BSLASHcite] = ACTIONS(6049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCite] = ACTIONS(6049), - [anon_sym_BSLASHnocite] = ACTIONS(6049), - [anon_sym_BSLASHcitet] = ACTIONS(6049), - [anon_sym_BSLASHcitep] = ACTIONS(6049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteauthor] = ACTIONS(6049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitetitle] = ACTIONS(6049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteyear] = ACTIONS(6049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6051), - [anon_sym_BSLASHcitedate] = ACTIONS(6049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6051), - [anon_sym_BSLASHciteurl] = ACTIONS(6049), - [anon_sym_BSLASHfullcite] = ACTIONS(6049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6049), - [anon_sym_BSLASHcitealt] = ACTIONS(6049), - [anon_sym_BSLASHcitealp] = ACTIONS(6049), - [anon_sym_BSLASHcitetext] = ACTIONS(6049), - [anon_sym_BSLASHparencite] = ACTIONS(6049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHParencite] = ACTIONS(6049), - [anon_sym_BSLASHfootcite] = ACTIONS(6049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6049), - [anon_sym_BSLASHtextcite] = ACTIONS(6049), - [anon_sym_BSLASHTextcite] = ACTIONS(6049), - [anon_sym_BSLASHsmartcite] = ACTIONS(6049), - [anon_sym_BSLASHSmartcite] = ACTIONS(6049), - [anon_sym_BSLASHsupercite] = ACTIONS(6049), - [anon_sym_BSLASHautocite] = ACTIONS(6049), - [anon_sym_BSLASHAutocite] = ACTIONS(6049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6051), - [anon_sym_BSLASHvolcite] = ACTIONS(6049), - [anon_sym_BSLASHVolcite] = ACTIONS(6049), - [anon_sym_BSLASHpvolcite] = ACTIONS(6049), - [anon_sym_BSLASHPvolcite] = ACTIONS(6049), - [anon_sym_BSLASHfvolcite] = ACTIONS(6049), - [anon_sym_BSLASHftvolcite] = ACTIONS(6049), - [anon_sym_BSLASHsvolcite] = ACTIONS(6049), - [anon_sym_BSLASHSvolcite] = ACTIONS(6049), - [anon_sym_BSLASHtvolcite] = ACTIONS(6049), - [anon_sym_BSLASHTvolcite] = ACTIONS(6049), - [anon_sym_BSLASHavolcite] = ACTIONS(6049), - [anon_sym_BSLASHAvolcite] = ACTIONS(6049), - [anon_sym_BSLASHnotecite] = ACTIONS(6049), - [anon_sym_BSLASHNotecite] = ACTIONS(6049), - [anon_sym_BSLASHpnotecite] = ACTIONS(6049), - [anon_sym_BSLASHPnotecite] = ACTIONS(6049), - [anon_sym_BSLASHfnotecite] = ACTIONS(6049), - [anon_sym_BSLASHlabel] = ACTIONS(6049), - [anon_sym_BSLASHref] = ACTIONS(6049), - [anon_sym_BSLASHeqref] = ACTIONS(6049), - [anon_sym_BSLASHvref] = ACTIONS(6049), - [anon_sym_BSLASHVref] = ACTIONS(6049), - [anon_sym_BSLASHautoref] = ACTIONS(6049), - [anon_sym_BSLASHpageref] = ACTIONS(6049), - [anon_sym_BSLASHcref] = ACTIONS(6049), - [anon_sym_BSLASHCref] = ACTIONS(6049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnameCref] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6049), - [anon_sym_BSLASHlabelcref] = ACTIONS(6049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange] = ACTIONS(6049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHCrefrange] = ACTIONS(6049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6051), - [anon_sym_BSLASHnewlabel] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand] = ACTIONS(6049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6051), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6049), - [anon_sym_BSLASHdef] = ACTIONS(6049), - [anon_sym_BSLASHlet] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6049), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6049), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6049), - [anon_sym_BSLASHgls] = ACTIONS(6049), - [anon_sym_BSLASHGls] = ACTIONS(6049), - [anon_sym_BSLASHGLS] = ACTIONS(6049), - [anon_sym_BSLASHglspl] = ACTIONS(6049), - [anon_sym_BSLASHGlspl] = ACTIONS(6049), - [anon_sym_BSLASHGLSpl] = ACTIONS(6049), - [anon_sym_BSLASHglsdisp] = ACTIONS(6049), - [anon_sym_BSLASHglslink] = ACTIONS(6049), - [anon_sym_BSLASHglstext] = ACTIONS(6049), - [anon_sym_BSLASHGlstext] = ACTIONS(6049), - [anon_sym_BSLASHGLStext] = ACTIONS(6049), - [anon_sym_BSLASHglsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6049), - [anon_sym_BSLASHglsplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSplural] = ACTIONS(6049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6049), - [anon_sym_BSLASHglsname] = ACTIONS(6049), - [anon_sym_BSLASHGlsname] = ACTIONS(6049), - [anon_sym_BSLASHGLSname] = ACTIONS(6049), - [anon_sym_BSLASHglssymbol] = ACTIONS(6049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6049), - [anon_sym_BSLASHglsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6049), - [anon_sym_BSLASHglsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6049), - [anon_sym_BSLASHglsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6049), - [anon_sym_BSLASHglsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6049), - [anon_sym_BSLASHglsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6049), - [anon_sym_BSLASHnewacronym] = ACTIONS(6049), - [anon_sym_BSLASHacrshort] = ACTIONS(6049), - [anon_sym_BSLASHAcrshort] = ACTIONS(6049), - [anon_sym_BSLASHACRshort] = ACTIONS(6049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6049), - [anon_sym_BSLASHacrlong] = ACTIONS(6049), - [anon_sym_BSLASHAcrlong] = ACTIONS(6049), - [anon_sym_BSLASHACRlong] = ACTIONS(6049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6049), - [anon_sym_BSLASHacrfull] = ACTIONS(6049), - [anon_sym_BSLASHAcrfull] = ACTIONS(6049), - [anon_sym_BSLASHACRfull] = ACTIONS(6049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6049), - [anon_sym_BSLASHacs] = ACTIONS(6049), - [anon_sym_BSLASHAcs] = ACTIONS(6049), - [anon_sym_BSLASHacsp] = ACTIONS(6049), - [anon_sym_BSLASHAcsp] = ACTIONS(6049), - [anon_sym_BSLASHacl] = ACTIONS(6049), - [anon_sym_BSLASHAcl] = ACTIONS(6049), - [anon_sym_BSLASHaclp] = ACTIONS(6049), - [anon_sym_BSLASHAclp] = ACTIONS(6049), - [anon_sym_BSLASHacf] = ACTIONS(6049), - [anon_sym_BSLASHAcf] = ACTIONS(6049), - [anon_sym_BSLASHacfp] = ACTIONS(6049), - [anon_sym_BSLASHAcfp] = ACTIONS(6049), - [anon_sym_BSLASHac] = ACTIONS(6049), - [anon_sym_BSLASHAc] = ACTIONS(6049), - [anon_sym_BSLASHacp] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6049), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6049), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6051), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6049), - [anon_sym_BSLASHcolor] = ACTIONS(6049), - [anon_sym_BSLASHcolorbox] = ACTIONS(6049), - [anon_sym_BSLASHtextcolor] = ACTIONS(6049), - [anon_sym_BSLASHpagecolor] = ACTIONS(6049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6049), - }, - [2000] = { - [sym_command_name] = ACTIONS(6045), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6045), - [anon_sym_RBRACK] = ACTIONS(6047), - [anon_sym_COMMA] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(6047), - [anon_sym_RBRACE] = ACTIONS(6047), - [sym_word] = ACTIONS(6045), - [sym_placeholder] = ACTIONS(6047), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6047), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_BANG] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_SQUOTE] = ACTIONS(6045), - [anon_sym__] = ACTIONS(6047), - [anon_sym_CARET] = ACTIONS(6047), - [anon_sym_BSLASHtitle] = ACTIONS(6045), - [anon_sym_BSLASHauthor] = ACTIONS(6045), - [anon_sym_BSLASHusepackage] = ACTIONS(6045), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6045), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6045), - [anon_sym_BSLASHinclude] = ACTIONS(6045), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6045), - [anon_sym_BSLASHinput] = ACTIONS(6045), - [anon_sym_BSLASHsubfile] = ACTIONS(6045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6045), - [anon_sym_BSLASHbibliography] = ACTIONS(6045), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6045), - [anon_sym_BSLASHincludesvg] = ACTIONS(6045), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6045), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6045), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6045), - [anon_sym_BSLASHimport] = ACTIONS(6045), - [anon_sym_BSLASHsubimport] = ACTIONS(6045), - [anon_sym_BSLASHinputfrom] = ACTIONS(6045), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6045), - [anon_sym_BSLASHincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6045), - [anon_sym_BSLASHcaption] = ACTIONS(6045), - [anon_sym_BSLASHcite] = ACTIONS(6045), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCite] = ACTIONS(6045), - [anon_sym_BSLASHnocite] = ACTIONS(6045), - [anon_sym_BSLASHcitet] = ACTIONS(6045), - [anon_sym_BSLASHcitep] = ACTIONS(6045), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteauthor] = ACTIONS(6045), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6045), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitetitle] = ACTIONS(6045), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteyear] = ACTIONS(6045), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6047), - [anon_sym_BSLASHcitedate] = ACTIONS(6045), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6047), - [anon_sym_BSLASHciteurl] = ACTIONS(6045), - [anon_sym_BSLASHfullcite] = ACTIONS(6045), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6045), - [anon_sym_BSLASHcitealt] = ACTIONS(6045), - [anon_sym_BSLASHcitealp] = ACTIONS(6045), - [anon_sym_BSLASHcitetext] = ACTIONS(6045), - [anon_sym_BSLASHparencite] = ACTIONS(6045), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHParencite] = ACTIONS(6045), - [anon_sym_BSLASHfootcite] = ACTIONS(6045), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6045), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6045), - [anon_sym_BSLASHtextcite] = ACTIONS(6045), - [anon_sym_BSLASHTextcite] = ACTIONS(6045), - [anon_sym_BSLASHsmartcite] = ACTIONS(6045), - [anon_sym_BSLASHSmartcite] = ACTIONS(6045), - [anon_sym_BSLASHsupercite] = ACTIONS(6045), - [anon_sym_BSLASHautocite] = ACTIONS(6045), - [anon_sym_BSLASHAutocite] = ACTIONS(6045), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6047), - [anon_sym_BSLASHvolcite] = ACTIONS(6045), - [anon_sym_BSLASHVolcite] = ACTIONS(6045), - [anon_sym_BSLASHpvolcite] = ACTIONS(6045), - [anon_sym_BSLASHPvolcite] = ACTIONS(6045), - [anon_sym_BSLASHfvolcite] = ACTIONS(6045), - [anon_sym_BSLASHftvolcite] = ACTIONS(6045), - [anon_sym_BSLASHsvolcite] = ACTIONS(6045), - [anon_sym_BSLASHSvolcite] = ACTIONS(6045), - [anon_sym_BSLASHtvolcite] = ACTIONS(6045), - [anon_sym_BSLASHTvolcite] = ACTIONS(6045), - [anon_sym_BSLASHavolcite] = ACTIONS(6045), - [anon_sym_BSLASHAvolcite] = ACTIONS(6045), - [anon_sym_BSLASHnotecite] = ACTIONS(6045), - [anon_sym_BSLASHNotecite] = ACTIONS(6045), - [anon_sym_BSLASHpnotecite] = ACTIONS(6045), - [anon_sym_BSLASHPnotecite] = ACTIONS(6045), - [anon_sym_BSLASHfnotecite] = ACTIONS(6045), - [anon_sym_BSLASHlabel] = ACTIONS(6045), - [anon_sym_BSLASHref] = ACTIONS(6045), - [anon_sym_BSLASHeqref] = ACTIONS(6045), - [anon_sym_BSLASHvref] = ACTIONS(6045), - [anon_sym_BSLASHVref] = ACTIONS(6045), - [anon_sym_BSLASHautoref] = ACTIONS(6045), - [anon_sym_BSLASHpageref] = ACTIONS(6045), - [anon_sym_BSLASHcref] = ACTIONS(6045), - [anon_sym_BSLASHCref] = ACTIONS(6045), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnameCref] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6045), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6045), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6045), - [anon_sym_BSLASHlabelcref] = ACTIONS(6045), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange] = ACTIONS(6045), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHCrefrange] = ACTIONS(6045), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6047), - [anon_sym_BSLASHnewlabel] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand] = ACTIONS(6045), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6045), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6045), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6047), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6045), - [anon_sym_BSLASHdef] = ACTIONS(6045), - [anon_sym_BSLASHlet] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6045), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6045), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6045), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6045), - [anon_sym_BSLASHgls] = ACTIONS(6045), - [anon_sym_BSLASHGls] = ACTIONS(6045), - [anon_sym_BSLASHGLS] = ACTIONS(6045), - [anon_sym_BSLASHglspl] = ACTIONS(6045), - [anon_sym_BSLASHGlspl] = ACTIONS(6045), - [anon_sym_BSLASHGLSpl] = ACTIONS(6045), - [anon_sym_BSLASHglsdisp] = ACTIONS(6045), - [anon_sym_BSLASHglslink] = ACTIONS(6045), - [anon_sym_BSLASHglstext] = ACTIONS(6045), - [anon_sym_BSLASHGlstext] = ACTIONS(6045), - [anon_sym_BSLASHGLStext] = ACTIONS(6045), - [anon_sym_BSLASHglsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6045), - [anon_sym_BSLASHglsplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSplural] = ACTIONS(6045), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6045), - [anon_sym_BSLASHglsname] = ACTIONS(6045), - [anon_sym_BSLASHGlsname] = ACTIONS(6045), - [anon_sym_BSLASHGLSname] = ACTIONS(6045), - [anon_sym_BSLASHglssymbol] = ACTIONS(6045), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6045), - [anon_sym_BSLASHglsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6045), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6045), - [anon_sym_BSLASHglsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6045), - [anon_sym_BSLASHglsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6045), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6045), - [anon_sym_BSLASHglsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6045), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6045), - [anon_sym_BSLASHglsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6045), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6045), - [anon_sym_BSLASHnewacronym] = ACTIONS(6045), - [anon_sym_BSLASHacrshort] = ACTIONS(6045), - [anon_sym_BSLASHAcrshort] = ACTIONS(6045), - [anon_sym_BSLASHACRshort] = ACTIONS(6045), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6045), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6045), - [anon_sym_BSLASHacrlong] = ACTIONS(6045), - [anon_sym_BSLASHAcrlong] = ACTIONS(6045), - [anon_sym_BSLASHACRlong] = ACTIONS(6045), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6045), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6045), - [anon_sym_BSLASHacrfull] = ACTIONS(6045), - [anon_sym_BSLASHAcrfull] = ACTIONS(6045), - [anon_sym_BSLASHACRfull] = ACTIONS(6045), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6045), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6045), - [anon_sym_BSLASHacs] = ACTIONS(6045), - [anon_sym_BSLASHAcs] = ACTIONS(6045), - [anon_sym_BSLASHacsp] = ACTIONS(6045), - [anon_sym_BSLASHAcsp] = ACTIONS(6045), - [anon_sym_BSLASHacl] = ACTIONS(6045), - [anon_sym_BSLASHAcl] = ACTIONS(6045), - [anon_sym_BSLASHaclp] = ACTIONS(6045), - [anon_sym_BSLASHAclp] = ACTIONS(6045), - [anon_sym_BSLASHacf] = ACTIONS(6045), - [anon_sym_BSLASHAcf] = ACTIONS(6045), - [anon_sym_BSLASHacfp] = ACTIONS(6045), - [anon_sym_BSLASHAcfp] = ACTIONS(6045), - [anon_sym_BSLASHac] = ACTIONS(6045), - [anon_sym_BSLASHAc] = ACTIONS(6045), - [anon_sym_BSLASHacp] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6045), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6045), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6045), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6045), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6045), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6047), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6045), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6045), - [anon_sym_BSLASHcolor] = ACTIONS(6045), - [anon_sym_BSLASHcolorbox] = ACTIONS(6045), - [anon_sym_BSLASHtextcolor] = ACTIONS(6045), - [anon_sym_BSLASHpagecolor] = ACTIONS(6045), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6045), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6045), - }, - [2001] = { - [sym_command_name] = ACTIONS(6041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6041), - [anon_sym_RBRACK] = ACTIONS(6043), - [anon_sym_COMMA] = ACTIONS(6043), - [anon_sym_EQ] = ACTIONS(6043), - [anon_sym_RBRACE] = ACTIONS(6043), - [sym_word] = ACTIONS(6041), - [sym_placeholder] = ACTIONS(6043), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6043), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6041), - [anon_sym_GT] = ACTIONS(6041), - [anon_sym_BANG] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_SQUOTE] = ACTIONS(6041), - [anon_sym__] = ACTIONS(6043), - [anon_sym_CARET] = ACTIONS(6043), - [anon_sym_BSLASHtitle] = ACTIONS(6041), - [anon_sym_BSLASHauthor] = ACTIONS(6041), - [anon_sym_BSLASHusepackage] = ACTIONS(6041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6041), - [anon_sym_BSLASHinclude] = ACTIONS(6041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6041), - [anon_sym_BSLASHinput] = ACTIONS(6041), - [anon_sym_BSLASHsubfile] = ACTIONS(6041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6041), - [anon_sym_BSLASHbibliography] = ACTIONS(6041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6041), - [anon_sym_BSLASHincludesvg] = ACTIONS(6041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6041), - [anon_sym_BSLASHimport] = ACTIONS(6041), - [anon_sym_BSLASHsubimport] = ACTIONS(6041), - [anon_sym_BSLASHinputfrom] = ACTIONS(6041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6041), - [anon_sym_BSLASHincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6041), - [anon_sym_BSLASHcaption] = ACTIONS(6041), - [anon_sym_BSLASHcite] = ACTIONS(6041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCite] = ACTIONS(6041), - [anon_sym_BSLASHnocite] = ACTIONS(6041), - [anon_sym_BSLASHcitet] = ACTIONS(6041), - [anon_sym_BSLASHcitep] = ACTIONS(6041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteauthor] = ACTIONS(6041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitetitle] = ACTIONS(6041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteyear] = ACTIONS(6041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6043), - [anon_sym_BSLASHcitedate] = ACTIONS(6041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6043), - [anon_sym_BSLASHciteurl] = ACTIONS(6041), - [anon_sym_BSLASHfullcite] = ACTIONS(6041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6041), - [anon_sym_BSLASHcitealt] = ACTIONS(6041), - [anon_sym_BSLASHcitealp] = ACTIONS(6041), - [anon_sym_BSLASHcitetext] = ACTIONS(6041), - [anon_sym_BSLASHparencite] = ACTIONS(6041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHParencite] = ACTIONS(6041), - [anon_sym_BSLASHfootcite] = ACTIONS(6041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6041), - [anon_sym_BSLASHtextcite] = ACTIONS(6041), - [anon_sym_BSLASHTextcite] = ACTIONS(6041), - [anon_sym_BSLASHsmartcite] = ACTIONS(6041), - [anon_sym_BSLASHSmartcite] = ACTIONS(6041), - [anon_sym_BSLASHsupercite] = ACTIONS(6041), - [anon_sym_BSLASHautocite] = ACTIONS(6041), - [anon_sym_BSLASHAutocite] = ACTIONS(6041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6043), - [anon_sym_BSLASHvolcite] = ACTIONS(6041), - [anon_sym_BSLASHVolcite] = ACTIONS(6041), - [anon_sym_BSLASHpvolcite] = ACTIONS(6041), - [anon_sym_BSLASHPvolcite] = ACTIONS(6041), - [anon_sym_BSLASHfvolcite] = ACTIONS(6041), - [anon_sym_BSLASHftvolcite] = ACTIONS(6041), - [anon_sym_BSLASHsvolcite] = ACTIONS(6041), - [anon_sym_BSLASHSvolcite] = ACTIONS(6041), - [anon_sym_BSLASHtvolcite] = ACTIONS(6041), - [anon_sym_BSLASHTvolcite] = ACTIONS(6041), - [anon_sym_BSLASHavolcite] = ACTIONS(6041), - [anon_sym_BSLASHAvolcite] = ACTIONS(6041), - [anon_sym_BSLASHnotecite] = ACTIONS(6041), - [anon_sym_BSLASHNotecite] = ACTIONS(6041), - [anon_sym_BSLASHpnotecite] = ACTIONS(6041), - [anon_sym_BSLASHPnotecite] = ACTIONS(6041), - [anon_sym_BSLASHfnotecite] = ACTIONS(6041), - [anon_sym_BSLASHlabel] = ACTIONS(6041), - [anon_sym_BSLASHref] = ACTIONS(6041), - [anon_sym_BSLASHeqref] = ACTIONS(6041), - [anon_sym_BSLASHvref] = ACTIONS(6041), - [anon_sym_BSLASHVref] = ACTIONS(6041), - [anon_sym_BSLASHautoref] = ACTIONS(6041), - [anon_sym_BSLASHpageref] = ACTIONS(6041), - [anon_sym_BSLASHcref] = ACTIONS(6041), - [anon_sym_BSLASHCref] = ACTIONS(6041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnameCref] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6041), - [anon_sym_BSLASHlabelcref] = ACTIONS(6041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange] = ACTIONS(6041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHCrefrange] = ACTIONS(6041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6043), - [anon_sym_BSLASHnewlabel] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand] = ACTIONS(6041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6043), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6043), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6041), - [anon_sym_BSLASHdef] = ACTIONS(6041), - [anon_sym_BSLASHlet] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6041), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6041), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6041), - [anon_sym_BSLASHgls] = ACTIONS(6041), - [anon_sym_BSLASHGls] = ACTIONS(6041), - [anon_sym_BSLASHGLS] = ACTIONS(6041), - [anon_sym_BSLASHglspl] = ACTIONS(6041), - [anon_sym_BSLASHGlspl] = ACTIONS(6041), - [anon_sym_BSLASHGLSpl] = ACTIONS(6041), - [anon_sym_BSLASHglsdisp] = ACTIONS(6041), - [anon_sym_BSLASHglslink] = ACTIONS(6041), - [anon_sym_BSLASHglstext] = ACTIONS(6041), - [anon_sym_BSLASHGlstext] = ACTIONS(6041), - [anon_sym_BSLASHGLStext] = ACTIONS(6041), - [anon_sym_BSLASHglsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6041), - [anon_sym_BSLASHglsplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSplural] = ACTIONS(6041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6041), - [anon_sym_BSLASHglsname] = ACTIONS(6041), - [anon_sym_BSLASHGlsname] = ACTIONS(6041), - [anon_sym_BSLASHGLSname] = ACTIONS(6041), - [anon_sym_BSLASHglssymbol] = ACTIONS(6041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6041), - [anon_sym_BSLASHglsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6041), - [anon_sym_BSLASHglsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6041), - [anon_sym_BSLASHglsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6041), - [anon_sym_BSLASHglsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6041), - [anon_sym_BSLASHglsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6041), - [anon_sym_BSLASHnewacronym] = ACTIONS(6041), - [anon_sym_BSLASHacrshort] = ACTIONS(6041), - [anon_sym_BSLASHAcrshort] = ACTIONS(6041), - [anon_sym_BSLASHACRshort] = ACTIONS(6041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6041), - [anon_sym_BSLASHacrlong] = ACTIONS(6041), - [anon_sym_BSLASHAcrlong] = ACTIONS(6041), - [anon_sym_BSLASHACRlong] = ACTIONS(6041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6041), - [anon_sym_BSLASHacrfull] = ACTIONS(6041), - [anon_sym_BSLASHAcrfull] = ACTIONS(6041), - [anon_sym_BSLASHACRfull] = ACTIONS(6041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6041), - [anon_sym_BSLASHacs] = ACTIONS(6041), - [anon_sym_BSLASHAcs] = ACTIONS(6041), - [anon_sym_BSLASHacsp] = ACTIONS(6041), - [anon_sym_BSLASHAcsp] = ACTIONS(6041), - [anon_sym_BSLASHacl] = ACTIONS(6041), - [anon_sym_BSLASHAcl] = ACTIONS(6041), - [anon_sym_BSLASHaclp] = ACTIONS(6041), - [anon_sym_BSLASHAclp] = ACTIONS(6041), - [anon_sym_BSLASHacf] = ACTIONS(6041), - [anon_sym_BSLASHAcf] = ACTIONS(6041), - [anon_sym_BSLASHacfp] = ACTIONS(6041), - [anon_sym_BSLASHAcfp] = ACTIONS(6041), - [anon_sym_BSLASHac] = ACTIONS(6041), - [anon_sym_BSLASHAc] = ACTIONS(6041), - [anon_sym_BSLASHacp] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6041), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6041), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6043), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6041), - [anon_sym_BSLASHcolor] = ACTIONS(6041), - [anon_sym_BSLASHcolorbox] = ACTIONS(6041), - [anon_sym_BSLASHtextcolor] = ACTIONS(6041), - [anon_sym_BSLASHpagecolor] = ACTIONS(6041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6041), - }, - [2002] = { - [sym_command_name] = ACTIONS(6037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6037), - [anon_sym_RBRACK] = ACTIONS(6039), - [anon_sym_COMMA] = ACTIONS(6039), - [anon_sym_EQ] = ACTIONS(6039), - [anon_sym_RBRACE] = ACTIONS(6039), - [sym_word] = ACTIONS(6037), - [sym_placeholder] = ACTIONS(6039), - [anon_sym_PLUS] = ACTIONS(6039), - [anon_sym_DASH] = ACTIONS(6039), - [anon_sym_STAR] = ACTIONS(6039), - [anon_sym_SLASH] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6037), - [anon_sym_GT] = ACTIONS(6037), - [anon_sym_BANG] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_COLON] = ACTIONS(6037), - [anon_sym_SQUOTE] = ACTIONS(6037), - [anon_sym__] = ACTIONS(6039), - [anon_sym_CARET] = ACTIONS(6039), - [anon_sym_BSLASHtitle] = ACTIONS(6037), - [anon_sym_BSLASHauthor] = ACTIONS(6037), - [anon_sym_BSLASHusepackage] = ACTIONS(6037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6037), - [anon_sym_BSLASHinclude] = ACTIONS(6037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6037), - [anon_sym_BSLASHinput] = ACTIONS(6037), - [anon_sym_BSLASHsubfile] = ACTIONS(6037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6037), - [anon_sym_BSLASHbibliography] = ACTIONS(6037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6037), - [anon_sym_BSLASHincludesvg] = ACTIONS(6037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6037), - [anon_sym_BSLASHimport] = ACTIONS(6037), - [anon_sym_BSLASHsubimport] = ACTIONS(6037), - [anon_sym_BSLASHinputfrom] = ACTIONS(6037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6037), - [anon_sym_BSLASHincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6037), - [anon_sym_BSLASHcaption] = ACTIONS(6037), - [anon_sym_BSLASHcite] = ACTIONS(6037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCite] = ACTIONS(6037), - [anon_sym_BSLASHnocite] = ACTIONS(6037), - [anon_sym_BSLASHcitet] = ACTIONS(6037), - [anon_sym_BSLASHcitep] = ACTIONS(6037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteauthor] = ACTIONS(6037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitetitle] = ACTIONS(6037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteyear] = ACTIONS(6037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6039), - [anon_sym_BSLASHcitedate] = ACTIONS(6037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6039), - [anon_sym_BSLASHciteurl] = ACTIONS(6037), - [anon_sym_BSLASHfullcite] = ACTIONS(6037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6037), - [anon_sym_BSLASHcitealt] = ACTIONS(6037), - [anon_sym_BSLASHcitealp] = ACTIONS(6037), - [anon_sym_BSLASHcitetext] = ACTIONS(6037), - [anon_sym_BSLASHparencite] = ACTIONS(6037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHParencite] = ACTIONS(6037), - [anon_sym_BSLASHfootcite] = ACTIONS(6037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6037), - [anon_sym_BSLASHtextcite] = ACTIONS(6037), - [anon_sym_BSLASHTextcite] = ACTIONS(6037), - [anon_sym_BSLASHsmartcite] = ACTIONS(6037), - [anon_sym_BSLASHSmartcite] = ACTIONS(6037), - [anon_sym_BSLASHsupercite] = ACTIONS(6037), - [anon_sym_BSLASHautocite] = ACTIONS(6037), - [anon_sym_BSLASHAutocite] = ACTIONS(6037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6039), - [anon_sym_BSLASHvolcite] = ACTIONS(6037), - [anon_sym_BSLASHVolcite] = ACTIONS(6037), - [anon_sym_BSLASHpvolcite] = ACTIONS(6037), - [anon_sym_BSLASHPvolcite] = ACTIONS(6037), - [anon_sym_BSLASHfvolcite] = ACTIONS(6037), - [anon_sym_BSLASHftvolcite] = ACTIONS(6037), - [anon_sym_BSLASHsvolcite] = ACTIONS(6037), - [anon_sym_BSLASHSvolcite] = ACTIONS(6037), - [anon_sym_BSLASHtvolcite] = ACTIONS(6037), - [anon_sym_BSLASHTvolcite] = ACTIONS(6037), - [anon_sym_BSLASHavolcite] = ACTIONS(6037), - [anon_sym_BSLASHAvolcite] = ACTIONS(6037), - [anon_sym_BSLASHnotecite] = ACTIONS(6037), - [anon_sym_BSLASHNotecite] = ACTIONS(6037), - [anon_sym_BSLASHpnotecite] = ACTIONS(6037), - [anon_sym_BSLASHPnotecite] = ACTIONS(6037), - [anon_sym_BSLASHfnotecite] = ACTIONS(6037), - [anon_sym_BSLASHlabel] = ACTIONS(6037), - [anon_sym_BSLASHref] = ACTIONS(6037), - [anon_sym_BSLASHeqref] = ACTIONS(6037), - [anon_sym_BSLASHvref] = ACTIONS(6037), - [anon_sym_BSLASHVref] = ACTIONS(6037), - [anon_sym_BSLASHautoref] = ACTIONS(6037), - [anon_sym_BSLASHpageref] = ACTIONS(6037), - [anon_sym_BSLASHcref] = ACTIONS(6037), - [anon_sym_BSLASHCref] = ACTIONS(6037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnameCref] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6037), - [anon_sym_BSLASHlabelcref] = ACTIONS(6037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange] = ACTIONS(6037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHCrefrange] = ACTIONS(6037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6039), - [anon_sym_BSLASHnewlabel] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand] = ACTIONS(6037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6039), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6037), - [anon_sym_BSLASHdef] = ACTIONS(6037), - [anon_sym_BSLASHlet] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6037), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6037), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6037), - [anon_sym_BSLASHgls] = ACTIONS(6037), - [anon_sym_BSLASHGls] = ACTIONS(6037), - [anon_sym_BSLASHGLS] = ACTIONS(6037), - [anon_sym_BSLASHglspl] = ACTIONS(6037), - [anon_sym_BSLASHGlspl] = ACTIONS(6037), - [anon_sym_BSLASHGLSpl] = ACTIONS(6037), - [anon_sym_BSLASHglsdisp] = ACTIONS(6037), - [anon_sym_BSLASHglslink] = ACTIONS(6037), - [anon_sym_BSLASHglstext] = ACTIONS(6037), - [anon_sym_BSLASHGlstext] = ACTIONS(6037), - [anon_sym_BSLASHGLStext] = ACTIONS(6037), - [anon_sym_BSLASHglsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6037), - [anon_sym_BSLASHglsplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSplural] = ACTIONS(6037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6037), - [anon_sym_BSLASHglsname] = ACTIONS(6037), - [anon_sym_BSLASHGlsname] = ACTIONS(6037), - [anon_sym_BSLASHGLSname] = ACTIONS(6037), - [anon_sym_BSLASHglssymbol] = ACTIONS(6037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6037), - [anon_sym_BSLASHglsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6037), - [anon_sym_BSLASHglsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6037), - [anon_sym_BSLASHglsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6037), - [anon_sym_BSLASHglsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6037), - [anon_sym_BSLASHglsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6037), - [anon_sym_BSLASHnewacronym] = ACTIONS(6037), - [anon_sym_BSLASHacrshort] = ACTIONS(6037), - [anon_sym_BSLASHAcrshort] = ACTIONS(6037), - [anon_sym_BSLASHACRshort] = ACTIONS(6037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6037), - [anon_sym_BSLASHacrlong] = ACTIONS(6037), - [anon_sym_BSLASHAcrlong] = ACTIONS(6037), - [anon_sym_BSLASHACRlong] = ACTIONS(6037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6037), - [anon_sym_BSLASHacrfull] = ACTIONS(6037), - [anon_sym_BSLASHAcrfull] = ACTIONS(6037), - [anon_sym_BSLASHACRfull] = ACTIONS(6037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6037), - [anon_sym_BSLASHacs] = ACTIONS(6037), - [anon_sym_BSLASHAcs] = ACTIONS(6037), - [anon_sym_BSLASHacsp] = ACTIONS(6037), - [anon_sym_BSLASHAcsp] = ACTIONS(6037), - [anon_sym_BSLASHacl] = ACTIONS(6037), - [anon_sym_BSLASHAcl] = ACTIONS(6037), - [anon_sym_BSLASHaclp] = ACTIONS(6037), - [anon_sym_BSLASHAclp] = ACTIONS(6037), - [anon_sym_BSLASHacf] = ACTIONS(6037), - [anon_sym_BSLASHAcf] = ACTIONS(6037), - [anon_sym_BSLASHacfp] = ACTIONS(6037), - [anon_sym_BSLASHAcfp] = ACTIONS(6037), - [anon_sym_BSLASHac] = ACTIONS(6037), - [anon_sym_BSLASHAc] = ACTIONS(6037), - [anon_sym_BSLASHacp] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6037), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6037), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6039), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6037), - [anon_sym_BSLASHcolor] = ACTIONS(6037), - [anon_sym_BSLASHcolorbox] = ACTIONS(6037), - [anon_sym_BSLASHtextcolor] = ACTIONS(6037), - [anon_sym_BSLASHpagecolor] = ACTIONS(6037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6037), - }, - [2003] = { - [sym_command_name] = ACTIONS(6033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6033), - [anon_sym_RBRACK] = ACTIONS(6035), - [anon_sym_COMMA] = ACTIONS(6035), - [anon_sym_EQ] = ACTIONS(6035), - [anon_sym_RBRACE] = ACTIONS(6035), - [sym_word] = ACTIONS(6033), - [sym_placeholder] = ACTIONS(6035), - [anon_sym_PLUS] = ACTIONS(6035), - [anon_sym_DASH] = ACTIONS(6035), - [anon_sym_STAR] = ACTIONS(6035), - [anon_sym_SLASH] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_COLON] = ACTIONS(6033), - [anon_sym_SQUOTE] = ACTIONS(6033), - [anon_sym__] = ACTIONS(6035), - [anon_sym_CARET] = ACTIONS(6035), - [anon_sym_BSLASHtitle] = ACTIONS(6033), - [anon_sym_BSLASHauthor] = ACTIONS(6033), - [anon_sym_BSLASHusepackage] = ACTIONS(6033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6033), - [anon_sym_BSLASHinclude] = ACTIONS(6033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6033), - [anon_sym_BSLASHinput] = ACTIONS(6033), - [anon_sym_BSLASHsubfile] = ACTIONS(6033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6033), - [anon_sym_BSLASHbibliography] = ACTIONS(6033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6033), - [anon_sym_BSLASHincludesvg] = ACTIONS(6033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6033), - [anon_sym_BSLASHimport] = ACTIONS(6033), - [anon_sym_BSLASHsubimport] = ACTIONS(6033), - [anon_sym_BSLASHinputfrom] = ACTIONS(6033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6033), - [anon_sym_BSLASHincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6033), - [anon_sym_BSLASHcaption] = ACTIONS(6033), - [anon_sym_BSLASHcite] = ACTIONS(6033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCite] = ACTIONS(6033), - [anon_sym_BSLASHnocite] = ACTIONS(6033), - [anon_sym_BSLASHcitet] = ACTIONS(6033), - [anon_sym_BSLASHcitep] = ACTIONS(6033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteauthor] = ACTIONS(6033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitetitle] = ACTIONS(6033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteyear] = ACTIONS(6033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6035), - [anon_sym_BSLASHcitedate] = ACTIONS(6033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6035), - [anon_sym_BSLASHciteurl] = ACTIONS(6033), - [anon_sym_BSLASHfullcite] = ACTIONS(6033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6033), - [anon_sym_BSLASHcitealt] = ACTIONS(6033), - [anon_sym_BSLASHcitealp] = ACTIONS(6033), - [anon_sym_BSLASHcitetext] = ACTIONS(6033), - [anon_sym_BSLASHparencite] = ACTIONS(6033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHParencite] = ACTIONS(6033), - [anon_sym_BSLASHfootcite] = ACTIONS(6033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6033), - [anon_sym_BSLASHtextcite] = ACTIONS(6033), - [anon_sym_BSLASHTextcite] = ACTIONS(6033), - [anon_sym_BSLASHsmartcite] = ACTIONS(6033), - [anon_sym_BSLASHSmartcite] = ACTIONS(6033), - [anon_sym_BSLASHsupercite] = ACTIONS(6033), - [anon_sym_BSLASHautocite] = ACTIONS(6033), - [anon_sym_BSLASHAutocite] = ACTIONS(6033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6035), - [anon_sym_BSLASHvolcite] = ACTIONS(6033), - [anon_sym_BSLASHVolcite] = ACTIONS(6033), - [anon_sym_BSLASHpvolcite] = ACTIONS(6033), - [anon_sym_BSLASHPvolcite] = ACTIONS(6033), - [anon_sym_BSLASHfvolcite] = ACTIONS(6033), - [anon_sym_BSLASHftvolcite] = ACTIONS(6033), - [anon_sym_BSLASHsvolcite] = ACTIONS(6033), - [anon_sym_BSLASHSvolcite] = ACTIONS(6033), - [anon_sym_BSLASHtvolcite] = ACTIONS(6033), - [anon_sym_BSLASHTvolcite] = ACTIONS(6033), - [anon_sym_BSLASHavolcite] = ACTIONS(6033), - [anon_sym_BSLASHAvolcite] = ACTIONS(6033), - [anon_sym_BSLASHnotecite] = ACTIONS(6033), - [anon_sym_BSLASHNotecite] = ACTIONS(6033), - [anon_sym_BSLASHpnotecite] = ACTIONS(6033), - [anon_sym_BSLASHPnotecite] = ACTIONS(6033), - [anon_sym_BSLASHfnotecite] = ACTIONS(6033), - [anon_sym_BSLASHlabel] = ACTIONS(6033), - [anon_sym_BSLASHref] = ACTIONS(6033), - [anon_sym_BSLASHeqref] = ACTIONS(6033), - [anon_sym_BSLASHvref] = ACTIONS(6033), - [anon_sym_BSLASHVref] = ACTIONS(6033), - [anon_sym_BSLASHautoref] = ACTIONS(6033), - [anon_sym_BSLASHpageref] = ACTIONS(6033), - [anon_sym_BSLASHcref] = ACTIONS(6033), - [anon_sym_BSLASHCref] = ACTIONS(6033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnameCref] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6033), - [anon_sym_BSLASHlabelcref] = ACTIONS(6033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange] = ACTIONS(6033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHCrefrange] = ACTIONS(6033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6035), - [anon_sym_BSLASHnewlabel] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand] = ACTIONS(6033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6035), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6033), - [anon_sym_BSLASHdef] = ACTIONS(6033), - [anon_sym_BSLASHlet] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6033), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6033), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6033), - [anon_sym_BSLASHgls] = ACTIONS(6033), - [anon_sym_BSLASHGls] = ACTIONS(6033), - [anon_sym_BSLASHGLS] = ACTIONS(6033), - [anon_sym_BSLASHglspl] = ACTIONS(6033), - [anon_sym_BSLASHGlspl] = ACTIONS(6033), - [anon_sym_BSLASHGLSpl] = ACTIONS(6033), - [anon_sym_BSLASHglsdisp] = ACTIONS(6033), - [anon_sym_BSLASHglslink] = ACTIONS(6033), - [anon_sym_BSLASHglstext] = ACTIONS(6033), - [anon_sym_BSLASHGlstext] = ACTIONS(6033), - [anon_sym_BSLASHGLStext] = ACTIONS(6033), - [anon_sym_BSLASHglsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6033), - [anon_sym_BSLASHglsplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSplural] = ACTIONS(6033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6033), - [anon_sym_BSLASHglsname] = ACTIONS(6033), - [anon_sym_BSLASHGlsname] = ACTIONS(6033), - [anon_sym_BSLASHGLSname] = ACTIONS(6033), - [anon_sym_BSLASHglssymbol] = ACTIONS(6033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6033), - [anon_sym_BSLASHglsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6033), - [anon_sym_BSLASHglsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6033), - [anon_sym_BSLASHglsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6033), - [anon_sym_BSLASHglsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6033), - [anon_sym_BSLASHglsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6033), - [anon_sym_BSLASHnewacronym] = ACTIONS(6033), - [anon_sym_BSLASHacrshort] = ACTIONS(6033), - [anon_sym_BSLASHAcrshort] = ACTIONS(6033), - [anon_sym_BSLASHACRshort] = ACTIONS(6033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6033), - [anon_sym_BSLASHacrlong] = ACTIONS(6033), - [anon_sym_BSLASHAcrlong] = ACTIONS(6033), - [anon_sym_BSLASHACRlong] = ACTIONS(6033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6033), - [anon_sym_BSLASHacrfull] = ACTIONS(6033), - [anon_sym_BSLASHAcrfull] = ACTIONS(6033), - [anon_sym_BSLASHACRfull] = ACTIONS(6033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6033), - [anon_sym_BSLASHacs] = ACTIONS(6033), - [anon_sym_BSLASHAcs] = ACTIONS(6033), - [anon_sym_BSLASHacsp] = ACTIONS(6033), - [anon_sym_BSLASHAcsp] = ACTIONS(6033), - [anon_sym_BSLASHacl] = ACTIONS(6033), - [anon_sym_BSLASHAcl] = ACTIONS(6033), - [anon_sym_BSLASHaclp] = ACTIONS(6033), - [anon_sym_BSLASHAclp] = ACTIONS(6033), - [anon_sym_BSLASHacf] = ACTIONS(6033), - [anon_sym_BSLASHAcf] = ACTIONS(6033), - [anon_sym_BSLASHacfp] = ACTIONS(6033), - [anon_sym_BSLASHAcfp] = ACTIONS(6033), - [anon_sym_BSLASHac] = ACTIONS(6033), - [anon_sym_BSLASHAc] = ACTIONS(6033), - [anon_sym_BSLASHacp] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6033), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6033), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6035), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6033), - [anon_sym_BSLASHcolor] = ACTIONS(6033), - [anon_sym_BSLASHcolorbox] = ACTIONS(6033), - [anon_sym_BSLASHtextcolor] = ACTIONS(6033), - [anon_sym_BSLASHpagecolor] = ACTIONS(6033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6033), - }, - [2004] = { - [sym_command_name] = ACTIONS(6133), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6133), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_EQ] = ACTIONS(6135), - [anon_sym_RBRACE] = ACTIONS(6135), - [sym_word] = ACTIONS(6133), - [sym_placeholder] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6135), - [anon_sym_DASH] = ACTIONS(6135), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6133), - [anon_sym_GT] = ACTIONS(6133), - [anon_sym_BANG] = ACTIONS(6133), - [anon_sym_PIPE] = ACTIONS(6133), - [anon_sym_COLON] = ACTIONS(6133), - [anon_sym_SQUOTE] = ACTIONS(6133), - [anon_sym__] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_BSLASHtitle] = ACTIONS(6133), - [anon_sym_BSLASHauthor] = ACTIONS(6133), - [anon_sym_BSLASHusepackage] = ACTIONS(6133), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6133), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6133), - [anon_sym_BSLASHinclude] = ACTIONS(6133), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6133), - [anon_sym_BSLASHinput] = ACTIONS(6133), - [anon_sym_BSLASHsubfile] = ACTIONS(6133), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6133), - [anon_sym_BSLASHbibliography] = ACTIONS(6133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6133), - [anon_sym_BSLASHincludesvg] = ACTIONS(6133), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6133), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6133), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6133), - [anon_sym_BSLASHimport] = ACTIONS(6133), - [anon_sym_BSLASHsubimport] = ACTIONS(6133), - [anon_sym_BSLASHinputfrom] = ACTIONS(6133), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6133), - [anon_sym_BSLASHincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6133), - [anon_sym_BSLASHcaption] = ACTIONS(6133), - [anon_sym_BSLASHcite] = ACTIONS(6133), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCite] = ACTIONS(6133), - [anon_sym_BSLASHnocite] = ACTIONS(6133), - [anon_sym_BSLASHcitet] = ACTIONS(6133), - [anon_sym_BSLASHcitep] = ACTIONS(6133), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteauthor] = ACTIONS(6133), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6133), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitetitle] = ACTIONS(6133), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteyear] = ACTIONS(6133), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6135), - [anon_sym_BSLASHcitedate] = ACTIONS(6133), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6135), - [anon_sym_BSLASHciteurl] = ACTIONS(6133), - [anon_sym_BSLASHfullcite] = ACTIONS(6133), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6133), - [anon_sym_BSLASHcitealt] = ACTIONS(6133), - [anon_sym_BSLASHcitealp] = ACTIONS(6133), - [anon_sym_BSLASHcitetext] = ACTIONS(6133), - [anon_sym_BSLASHparencite] = ACTIONS(6133), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHParencite] = ACTIONS(6133), - [anon_sym_BSLASHfootcite] = ACTIONS(6133), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6133), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6133), - [anon_sym_BSLASHtextcite] = ACTIONS(6133), - [anon_sym_BSLASHTextcite] = ACTIONS(6133), - [anon_sym_BSLASHsmartcite] = ACTIONS(6133), - [anon_sym_BSLASHSmartcite] = ACTIONS(6133), - [anon_sym_BSLASHsupercite] = ACTIONS(6133), - [anon_sym_BSLASHautocite] = ACTIONS(6133), - [anon_sym_BSLASHAutocite] = ACTIONS(6133), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6135), - [anon_sym_BSLASHvolcite] = ACTIONS(6133), - [anon_sym_BSLASHVolcite] = ACTIONS(6133), - [anon_sym_BSLASHpvolcite] = ACTIONS(6133), - [anon_sym_BSLASHPvolcite] = ACTIONS(6133), - [anon_sym_BSLASHfvolcite] = ACTIONS(6133), - [anon_sym_BSLASHftvolcite] = ACTIONS(6133), - [anon_sym_BSLASHsvolcite] = ACTIONS(6133), - [anon_sym_BSLASHSvolcite] = ACTIONS(6133), - [anon_sym_BSLASHtvolcite] = ACTIONS(6133), - [anon_sym_BSLASHTvolcite] = ACTIONS(6133), - [anon_sym_BSLASHavolcite] = ACTIONS(6133), - [anon_sym_BSLASHAvolcite] = ACTIONS(6133), - [anon_sym_BSLASHnotecite] = ACTIONS(6133), - [anon_sym_BSLASHNotecite] = ACTIONS(6133), - [anon_sym_BSLASHpnotecite] = ACTIONS(6133), - [anon_sym_BSLASHPnotecite] = ACTIONS(6133), - [anon_sym_BSLASHfnotecite] = ACTIONS(6133), - [anon_sym_BSLASHlabel] = ACTIONS(6133), - [anon_sym_BSLASHref] = ACTIONS(6133), - [anon_sym_BSLASHeqref] = ACTIONS(6133), - [anon_sym_BSLASHvref] = ACTIONS(6133), - [anon_sym_BSLASHVref] = ACTIONS(6133), - [anon_sym_BSLASHautoref] = ACTIONS(6133), - [anon_sym_BSLASHpageref] = ACTIONS(6133), - [anon_sym_BSLASHcref] = ACTIONS(6133), - [anon_sym_BSLASHCref] = ACTIONS(6133), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnameCref] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6133), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6133), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6133), - [anon_sym_BSLASHlabelcref] = ACTIONS(6133), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange] = ACTIONS(6133), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHCrefrange] = ACTIONS(6133), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6135), - [anon_sym_BSLASHnewlabel] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand] = ACTIONS(6133), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6133), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6133), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6135), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6133), - [anon_sym_BSLASHdef] = ACTIONS(6133), - [anon_sym_BSLASHlet] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6133), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6133), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6133), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6133), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6133), - [anon_sym_BSLASHgls] = ACTIONS(6133), - [anon_sym_BSLASHGls] = ACTIONS(6133), - [anon_sym_BSLASHGLS] = ACTIONS(6133), - [anon_sym_BSLASHglspl] = ACTIONS(6133), - [anon_sym_BSLASHGlspl] = ACTIONS(6133), - [anon_sym_BSLASHGLSpl] = ACTIONS(6133), - [anon_sym_BSLASHglsdisp] = ACTIONS(6133), - [anon_sym_BSLASHglslink] = ACTIONS(6133), - [anon_sym_BSLASHglstext] = ACTIONS(6133), - [anon_sym_BSLASHGlstext] = ACTIONS(6133), - [anon_sym_BSLASHGLStext] = ACTIONS(6133), - [anon_sym_BSLASHglsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6133), - [anon_sym_BSLASHglsplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSplural] = ACTIONS(6133), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6133), - [anon_sym_BSLASHglsname] = ACTIONS(6133), - [anon_sym_BSLASHGlsname] = ACTIONS(6133), - [anon_sym_BSLASHGLSname] = ACTIONS(6133), - [anon_sym_BSLASHglssymbol] = ACTIONS(6133), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6133), - [anon_sym_BSLASHglsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6133), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6133), - [anon_sym_BSLASHglsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6133), - [anon_sym_BSLASHglsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6133), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6133), - [anon_sym_BSLASHglsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6133), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6133), - [anon_sym_BSLASHglsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6133), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6133), - [anon_sym_BSLASHnewacronym] = ACTIONS(6133), - [anon_sym_BSLASHacrshort] = ACTIONS(6133), - [anon_sym_BSLASHAcrshort] = ACTIONS(6133), - [anon_sym_BSLASHACRshort] = ACTIONS(6133), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6133), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6133), - [anon_sym_BSLASHacrlong] = ACTIONS(6133), - [anon_sym_BSLASHAcrlong] = ACTIONS(6133), - [anon_sym_BSLASHACRlong] = ACTIONS(6133), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6133), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6133), - [anon_sym_BSLASHacrfull] = ACTIONS(6133), - [anon_sym_BSLASHAcrfull] = ACTIONS(6133), - [anon_sym_BSLASHACRfull] = ACTIONS(6133), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6133), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6133), - [anon_sym_BSLASHacs] = ACTIONS(6133), - [anon_sym_BSLASHAcs] = ACTIONS(6133), - [anon_sym_BSLASHacsp] = ACTIONS(6133), - [anon_sym_BSLASHAcsp] = ACTIONS(6133), - [anon_sym_BSLASHacl] = ACTIONS(6133), - [anon_sym_BSLASHAcl] = ACTIONS(6133), - [anon_sym_BSLASHaclp] = ACTIONS(6133), - [anon_sym_BSLASHAclp] = ACTIONS(6133), - [anon_sym_BSLASHacf] = ACTIONS(6133), - [anon_sym_BSLASHAcf] = ACTIONS(6133), - [anon_sym_BSLASHacfp] = ACTIONS(6133), - [anon_sym_BSLASHAcfp] = ACTIONS(6133), - [anon_sym_BSLASHac] = ACTIONS(6133), - [anon_sym_BSLASHAc] = ACTIONS(6133), - [anon_sym_BSLASHacp] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6133), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6133), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6133), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6133), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6133), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6133), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6133), - [anon_sym_BSLASHcolor] = ACTIONS(6133), - [anon_sym_BSLASHcolorbox] = ACTIONS(6133), - [anon_sym_BSLASHtextcolor] = ACTIONS(6133), - [anon_sym_BSLASHpagecolor] = ACTIONS(6133), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6133), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6133), - }, - [2005] = { - [sym_command_name] = ACTIONS(6121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(6121), - [anon_sym_RBRACK] = ACTIONS(6123), - [anon_sym_COMMA] = ACTIONS(6123), - [anon_sym_EQ] = ACTIONS(6123), - [anon_sym_RBRACE] = ACTIONS(6123), - [sym_word] = ACTIONS(6121), - [sym_placeholder] = ACTIONS(6123), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6123), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_LT] = ACTIONS(6121), - [anon_sym_GT] = ACTIONS(6121), - [anon_sym_BANG] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_SQUOTE] = ACTIONS(6121), - [anon_sym__] = ACTIONS(6123), - [anon_sym_CARET] = ACTIONS(6123), - [anon_sym_BSLASHtitle] = ACTIONS(6121), - [anon_sym_BSLASHauthor] = ACTIONS(6121), - [anon_sym_BSLASHusepackage] = ACTIONS(6121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(6121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6121), - [anon_sym_BSLASHinclude] = ACTIONS(6121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(6121), - [anon_sym_BSLASHinput] = ACTIONS(6121), - [anon_sym_BSLASHsubfile] = ACTIONS(6121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6121), - [anon_sym_BSLASHbibliography] = ACTIONS(6121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6121), - [anon_sym_BSLASHincludesvg] = ACTIONS(6121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(6121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(6121), - [anon_sym_BSLASHimport] = ACTIONS(6121), - [anon_sym_BSLASHsubimport] = ACTIONS(6121), - [anon_sym_BSLASHinputfrom] = ACTIONS(6121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(6121), - [anon_sym_BSLASHincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(6121), - [anon_sym_BSLASHcaption] = ACTIONS(6121), - [anon_sym_BSLASHcite] = ACTIONS(6121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCite] = ACTIONS(6121), - [anon_sym_BSLASHnocite] = ACTIONS(6121), - [anon_sym_BSLASHcitet] = ACTIONS(6121), - [anon_sym_BSLASHcitep] = ACTIONS(6121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteauthor] = ACTIONS(6121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(6121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitetitle] = ACTIONS(6121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteyear] = ACTIONS(6121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6123), - [anon_sym_BSLASHcitedate] = ACTIONS(6121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6123), - [anon_sym_BSLASHciteurl] = ACTIONS(6121), - [anon_sym_BSLASHfullcite] = ACTIONS(6121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(6121), - [anon_sym_BSLASHcitealt] = ACTIONS(6121), - [anon_sym_BSLASHcitealp] = ACTIONS(6121), - [anon_sym_BSLASHcitetext] = ACTIONS(6121), - [anon_sym_BSLASHparencite] = ACTIONS(6121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHParencite] = ACTIONS(6121), - [anon_sym_BSLASHfootcite] = ACTIONS(6121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(6121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(6121), - [anon_sym_BSLASHtextcite] = ACTIONS(6121), - [anon_sym_BSLASHTextcite] = ACTIONS(6121), - [anon_sym_BSLASHsmartcite] = ACTIONS(6121), - [anon_sym_BSLASHSmartcite] = ACTIONS(6121), - [anon_sym_BSLASHsupercite] = ACTIONS(6121), - [anon_sym_BSLASHautocite] = ACTIONS(6121), - [anon_sym_BSLASHAutocite] = ACTIONS(6121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6123), - [anon_sym_BSLASHvolcite] = ACTIONS(6121), - [anon_sym_BSLASHVolcite] = ACTIONS(6121), - [anon_sym_BSLASHpvolcite] = ACTIONS(6121), - [anon_sym_BSLASHPvolcite] = ACTIONS(6121), - [anon_sym_BSLASHfvolcite] = ACTIONS(6121), - [anon_sym_BSLASHftvolcite] = ACTIONS(6121), - [anon_sym_BSLASHsvolcite] = ACTIONS(6121), - [anon_sym_BSLASHSvolcite] = ACTIONS(6121), - [anon_sym_BSLASHtvolcite] = ACTIONS(6121), - [anon_sym_BSLASHTvolcite] = ACTIONS(6121), - [anon_sym_BSLASHavolcite] = ACTIONS(6121), - [anon_sym_BSLASHAvolcite] = ACTIONS(6121), - [anon_sym_BSLASHnotecite] = ACTIONS(6121), - [anon_sym_BSLASHNotecite] = ACTIONS(6121), - [anon_sym_BSLASHpnotecite] = ACTIONS(6121), - [anon_sym_BSLASHPnotecite] = ACTIONS(6121), - [anon_sym_BSLASHfnotecite] = ACTIONS(6121), - [anon_sym_BSLASHlabel] = ACTIONS(6121), - [anon_sym_BSLASHref] = ACTIONS(6121), - [anon_sym_BSLASHeqref] = ACTIONS(6121), - [anon_sym_BSLASHvref] = ACTIONS(6121), - [anon_sym_BSLASHVref] = ACTIONS(6121), - [anon_sym_BSLASHautoref] = ACTIONS(6121), - [anon_sym_BSLASHpageref] = ACTIONS(6121), - [anon_sym_BSLASHcref] = ACTIONS(6121), - [anon_sym_BSLASHCref] = ACTIONS(6121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnameCref] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(6121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(6121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6121), - [anon_sym_BSLASHlabelcref] = ACTIONS(6121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange] = ACTIONS(6121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHCrefrange] = ACTIONS(6121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6123), - [anon_sym_BSLASHnewlabel] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand] = ACTIONS(6121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(6121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(6123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6123), - [anon_sym_BSLASHNewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHNewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHRenewExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHProvideExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHDeclareExpandableDocumentCommand] = ACTIONS(6121), - [anon_sym_BSLASHdef] = ACTIONS(6121), - [anon_sym_BSLASHlet] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiter] = ACTIONS(6121), - [anon_sym_BSLASHDeclarePairedDelimiterX] = ACTIONS(6121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHrenewenvironment] = ACTIONS(6121), - [anon_sym_BSLASHNewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHRenewDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHProvideDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHDeclareDocumentEnvironment] = ACTIONS(6121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6121), - [anon_sym_BSLASHgls] = ACTIONS(6121), - [anon_sym_BSLASHGls] = ACTIONS(6121), - [anon_sym_BSLASHGLS] = ACTIONS(6121), - [anon_sym_BSLASHglspl] = ACTIONS(6121), - [anon_sym_BSLASHGlspl] = ACTIONS(6121), - [anon_sym_BSLASHGLSpl] = ACTIONS(6121), - [anon_sym_BSLASHglsdisp] = ACTIONS(6121), - [anon_sym_BSLASHglslink] = ACTIONS(6121), - [anon_sym_BSLASHglstext] = ACTIONS(6121), - [anon_sym_BSLASHGlstext] = ACTIONS(6121), - [anon_sym_BSLASHGLStext] = ACTIONS(6121), - [anon_sym_BSLASHglsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(6121), - [anon_sym_BSLASHglsplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSplural] = ACTIONS(6121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6121), - [anon_sym_BSLASHglsname] = ACTIONS(6121), - [anon_sym_BSLASHGlsname] = ACTIONS(6121), - [anon_sym_BSLASHGLSname] = ACTIONS(6121), - [anon_sym_BSLASHglssymbol] = ACTIONS(6121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(6121), - [anon_sym_BSLASHglsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(6121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(6121), - [anon_sym_BSLASHglsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(6121), - [anon_sym_BSLASHglsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(6121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(6121), - [anon_sym_BSLASHglsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(6121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(6121), - [anon_sym_BSLASHglsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(6121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(6121), - [anon_sym_BSLASHnewacronym] = ACTIONS(6121), - [anon_sym_BSLASHacrshort] = ACTIONS(6121), - [anon_sym_BSLASHAcrshort] = ACTIONS(6121), - [anon_sym_BSLASHACRshort] = ACTIONS(6121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(6121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(6121), - [anon_sym_BSLASHacrlong] = ACTIONS(6121), - [anon_sym_BSLASHAcrlong] = ACTIONS(6121), - [anon_sym_BSLASHACRlong] = ACTIONS(6121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(6121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(6121), - [anon_sym_BSLASHacrfull] = ACTIONS(6121), - [anon_sym_BSLASHAcrfull] = ACTIONS(6121), - [anon_sym_BSLASHACRfull] = ACTIONS(6121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(6121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(6121), - [anon_sym_BSLASHacs] = ACTIONS(6121), - [anon_sym_BSLASHAcs] = ACTIONS(6121), - [anon_sym_BSLASHacsp] = ACTIONS(6121), - [anon_sym_BSLASHAcsp] = ACTIONS(6121), - [anon_sym_BSLASHacl] = ACTIONS(6121), - [anon_sym_BSLASHAcl] = ACTIONS(6121), - [anon_sym_BSLASHaclp] = ACTIONS(6121), - [anon_sym_BSLASHAclp] = ACTIONS(6121), - [anon_sym_BSLASHacf] = ACTIONS(6121), - [anon_sym_BSLASHAcf] = ACTIONS(6121), - [anon_sym_BSLASHacfp] = ACTIONS(6121), - [anon_sym_BSLASHAcfp] = ACTIONS(6121), - [anon_sym_BSLASHac] = ACTIONS(6121), - [anon_sym_BSLASHAc] = ACTIONS(6121), - [anon_sym_BSLASHacp] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(6121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(6121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(6121), - [anon_sym_BSLASHnewtheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6121), - [anon_sym_BSLASHdeclaretheorem_STAR] = ACTIONS(6123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6121), - [anon_sym_BSLASHcolor] = ACTIONS(6121), - [anon_sym_BSLASHcolorbox] = ACTIONS(6121), - [anon_sym_BSLASHtextcolor] = ACTIONS(6121), - [anon_sym_BSLASHpagecolor] = ACTIONS(6121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6121), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 4, - STATE(3247), 1, - sym__math_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(4478), 10, - anon_sym_displaymath, - anon_sym_equation, - anon_sym_multline, - anon_sym_eqnarray, - anon_sym_align, - anon_sym_array, - anon_sym_split, - anon_sym_alignat, - anon_sym_gather, - anon_sym_flalign, - ACTIONS(4480), 10, - anon_sym_displaymath_STAR, - anon_sym_equation_STAR, - anon_sym_multline_STAR, - anon_sym_eqnarray_STAR, - anon_sym_align_STAR, - anon_sym_array_STAR, - anon_sym_split_STAR, - anon_sym_alignat_STAR, - anon_sym_gather_STAR, - anon_sym_flalign_STAR, - [32] = 4, - STATE(3207), 1, - sym__math_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(4478), 10, - anon_sym_displaymath, - anon_sym_equation, - anon_sym_multline, - anon_sym_eqnarray, - anon_sym_align, - anon_sym_array, - anon_sym_split, - anon_sym_alignat, - anon_sym_gather, - anon_sym_flalign, - ACTIONS(4480), 10, - anon_sym_displaymath_STAR, - anon_sym_equation_STAR, - anon_sym_multline_STAR, - anon_sym_eqnarray_STAR, - anon_sym_align_STAR, - anon_sym_array_STAR, - anon_sym_split_STAR, - anon_sym_alignat_STAR, - anon_sym_gather_STAR, - anon_sym_flalign_STAR, - [64] = 4, - STATE(3278), 1, - sym__math_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(4478), 10, - anon_sym_displaymath, - anon_sym_equation, - anon_sym_multline, - anon_sym_eqnarray, - anon_sym_align, - anon_sym_array, - anon_sym_split, - anon_sym_alignat, - anon_sym_gather, - anon_sym_flalign, - ACTIONS(4480), 10, - anon_sym_displaymath_STAR, - anon_sym_equation_STAR, - anon_sym_multline_STAR, - anon_sym_eqnarray_STAR, - anon_sym_align_STAR, - anon_sym_array_STAR, - anon_sym_split_STAR, - anon_sym_alignat_STAR, - anon_sym_gather_STAR, - anon_sym_flalign_STAR, - [96] = 4, - STATE(3260), 1, - sym__math_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(4478), 10, - anon_sym_displaymath, - anon_sym_equation, - anon_sym_multline, - anon_sym_eqnarray, - anon_sym_align, - anon_sym_array, - anon_sym_split, - anon_sym_alignat, - anon_sym_gather, - anon_sym_flalign, - ACTIONS(4480), 10, - anon_sym_displaymath_STAR, - anon_sym_equation_STAR, - anon_sym_multline_STAR, - anon_sym_eqnarray_STAR, - anon_sym_align_STAR, - anon_sym_array_STAR, - anon_sym_split_STAR, - anon_sym_alignat_STAR, - anon_sym_gather_STAR, - anon_sym_flalign_STAR, - [128] = 4, - STATE(3225), 1, - sym__math_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(4478), 10, - anon_sym_displaymath, - anon_sym_equation, - anon_sym_multline, - anon_sym_eqnarray, - anon_sym_align, - anon_sym_array, - anon_sym_split, - anon_sym_alignat, - anon_sym_gather, - anon_sym_flalign, - ACTIONS(4480), 10, - anon_sym_displaymath_STAR, - anon_sym_equation_STAR, - anon_sym_multline_STAR, - anon_sym_eqnarray_STAR, - anon_sym_align_STAR, - anon_sym_array_STAR, - anon_sym_split_STAR, - anon_sym_alignat_STAR, - anon_sym_gather_STAR, - anon_sym_flalign_STAR, - [160] = 4, - STATE(3203), 1, - sym__math_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(4478), 10, - anon_sym_displaymath, - anon_sym_equation, - anon_sym_multline, - anon_sym_eqnarray, - anon_sym_align, - anon_sym_array, - anon_sym_split, - anon_sym_alignat, - anon_sym_gather, - anon_sym_flalign, - ACTIONS(4480), 10, - anon_sym_displaymath_STAR, - anon_sym_equation_STAR, - anon_sym_multline_STAR, - anon_sym_eqnarray_STAR, - anon_sym_align_STAR, - anon_sym_array_STAR, - anon_sym_split_STAR, - anon_sym_alignat_STAR, - anon_sym_gather_STAR, - anon_sym_flalign_STAR, - [192] = 4, - STATE(3291), 1, - sym__math_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(4478), 10, - anon_sym_displaymath, - anon_sym_equation, - anon_sym_multline, - anon_sym_eqnarray, - anon_sym_align, - anon_sym_array, - anon_sym_split, - anon_sym_alignat, - anon_sym_gather, - anon_sym_flalign, - ACTIONS(4480), 10, - anon_sym_displaymath_STAR, - anon_sym_equation_STAR, - anon_sym_multline_STAR, - anon_sym_eqnarray_STAR, - anon_sym_align_STAR, - anon_sym_array_STAR, - anon_sym_split_STAR, - anon_sym_alignat_STAR, - anon_sym_gather_STAR, - anon_sym_flalign_STAR, - [224] = 4, - STATE(1029), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(6981), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(6979), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [243] = 4, - STATE(5), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(6985), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(6983), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [262] = 4, - STATE(16), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(6989), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(6987), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [281] = 4, - STATE(491), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(6993), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(6991), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [300] = 4, - STATE(1591), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(6997), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(6995), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [319] = 4, - STATE(24), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7001), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(6999), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [338] = 4, - STATE(1574), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7005), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7003), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [357] = 4, - STATE(47), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7009), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7007), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [376] = 4, - STATE(8), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7013), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7011), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [395] = 4, - STATE(4), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7017), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7015), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [414] = 4, - STATE(10), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7021), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7019), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [433] = 4, - STATE(11), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7025), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7023), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [452] = 4, - STATE(1305), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7029), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7027), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [471] = 4, - STATE(50), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7033), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7031), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [490] = 4, - STATE(26), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7037), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7035), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [509] = 4, - STATE(994), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7041), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7039), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [528] = 4, - STATE(3), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7045), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7043), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [547] = 4, - STATE(48), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7049), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7047), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [566] = 4, - STATE(1727), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7053), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7051), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [585] = 4, - STATE(6), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7057), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7055), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [604] = 4, - STATE(12), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7061), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7059), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [623] = 4, - STATE(32), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7065), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7063), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [642] = 4, - STATE(23), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7069), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7067), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [661] = 4, - STATE(1165), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7073), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7071), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [680] = 4, - STATE(1228), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7077), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7075), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [699] = 4, - STATE(18), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7081), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7079), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [718] = 4, - STATE(41), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7085), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7083), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [737] = 4, - STATE(19), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7089), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7087), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [756] = 4, - STATE(43), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7093), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7091), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [775] = 4, - STATE(40), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7097), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7095), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [794] = 4, - STATE(1737), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7101), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7099), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [813] = 4, - STATE(14), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7105), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7103), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [832] = 4, - STATE(1762), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7109), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7107), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [851] = 4, - STATE(1145), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7113), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7111), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [870] = 4, - STATE(1260), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7117), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7115), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [889] = 4, - STATE(21), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7121), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7119), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [908] = 4, - STATE(1741), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7125), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7123), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [927] = 4, - STATE(38), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7129), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7127), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [946] = 4, - STATE(30), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7133), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7131), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [965] = 4, - STATE(46), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7137), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7135), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [984] = 4, - STATE(1222), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7141), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7139), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [1003] = 4, - STATE(9), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7145), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7143), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [1022] = 4, - STATE(15), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7149), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7147), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [1041] = 4, - STATE(486), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7153), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7151), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [1060] = 4, - STATE(2), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7157), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7155), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [1079] = 4, - STATE(42), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7161), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7159), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [1098] = 4, - STATE(45), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7165), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7163), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [1117] = 4, - STATE(36), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7169), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7167), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [1136] = 9, - ACTIONS(7171), 1, - anon_sym_LBRACE, - STATE(1008), 1, - sym_curly_group_text, - STATE(1545), 1, - sym__math_environment_group, - STATE(2155), 1, - sym__minted_environment_group, - STATE(3175), 1, - sym__comment_environment_group, - STATE(3176), 1, - sym__verbatim_environment_group, - STATE(3177), 1, - sym__listing_environment_group, - STATE(3179), 1, - sym__pycode_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1165] = 4, - STATE(1836), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7175), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7173), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [1184] = 4, - STATE(1837), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7179), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7177), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [1203] = 4, - STATE(25), 1, - sym__math_delimiter_part, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7183), 2, - sym_word, - anon_sym_PIPE, - ACTIONS(7181), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_command_name, - [1222] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7189), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(3245), 1, - sym_glob_pattern, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2102), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1240] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7189), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(3289), 1, - sym_glob_pattern, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2102), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1258] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7189), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(3191), 1, - sym_glob_pattern, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2102), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1276] = 6, - ACTIONS(7191), 1, - sym_command_name, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2366), 1, - sym_curly_group_impl, - STATE(2377), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1296] = 5, - ACTIONS(1072), 1, - anon_sym_LBRACE, - ACTIONS(7197), 1, - sym_command_name, - ACTIONS(7199), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1290), 2, - sym_curly_group, - sym_generic_command, - [1314] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7189), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(3258), 1, - sym_glob_pattern, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2102), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1332] = 5, - ACTIONS(4978), 1, - anon_sym_LBRACE, - ACTIONS(7201), 1, - sym_command_name, - ACTIONS(7203), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1856), 2, - sym_curly_group, - sym_generic_command, - [1350] = 5, - ACTIONS(4978), 1, - anon_sym_LBRACE, - ACTIONS(7201), 1, - sym_command_name, - ACTIONS(7205), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1866), 2, - sym_curly_group, - sym_generic_command, - [1368] = 5, - ACTIONS(726), 1, - anon_sym_LBRACE, - ACTIONS(7207), 1, - sym_command_name, - ACTIONS(7209), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1118), 2, - sym_curly_group, - sym_generic_command, - [1386] = 5, - ACTIONS(726), 1, - anon_sym_LBRACE, - ACTIONS(7207), 1, - sym_command_name, - ACTIONS(7211), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1147), 2, - sym_curly_group, - sym_generic_command, - [1404] = 6, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7213), 1, - sym_command_name, - STATE(2310), 1, - sym_brack_group_argc, - STATE(2376), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1424] = 6, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7215), 1, - sym_command_name, - STATE(2320), 1, - sym_brack_group_argc, - STATE(2325), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1444] = 5, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(7217), 1, - sym_command_name, - ACTIONS(7219), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(989), 2, - sym_curly_group, - sym_generic_command, - [1462] = 6, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7221), 1, - sym_command_name, - STATE(2389), 1, - sym_brack_group_argc, - STATE(2390), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1482] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7223), 1, - anon_sym_RBRACE, - ACTIONS(7225), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2081), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1500] = 5, - ACTIONS(6966), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - sym_command_name, - ACTIONS(7229), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(2001), 2, - sym_curly_group, - sym_generic_command, - [1518] = 5, - ACTIONS(7231), 1, - anon_sym_LBRACE, - ACTIONS(7234), 1, - anon_sym_RBRACE, - ACTIONS(7236), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2081), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1536] = 5, - ACTIONS(6966), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - sym_command_name, - ACTIONS(7239), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(2002), 2, - sym_curly_group, - sym_generic_command, - [1554] = 6, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7241), 1, - sym_command_name, - STATE(2353), 1, - sym_brack_group_argc, - STATE(2398), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1574] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7189), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(3168), 1, - sym_glob_pattern, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2102), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1592] = 5, - ACTIONS(1072), 1, - anon_sym_LBRACE, - ACTIONS(7197), 1, - sym_command_name, - ACTIONS(7243), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1289), 2, - sym_curly_group, - sym_generic_command, - [1610] = 6, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7245), 1, - sym_command_name, - STATE(2302), 1, - sym_brack_group_argc, - STATE(2362), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1630] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7189), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(3181), 1, - sym_glob_pattern, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2102), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1648] = 6, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7247), 1, - sym_command_name, - STATE(2326), 1, - sym_brack_group_argc, - STATE(2405), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1668] = 5, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(7217), 1, - sym_command_name, - ACTIONS(7249), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(987), 2, - sym_curly_group, - sym_generic_command, - [1686] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7189), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(3222), 1, - sym_glob_pattern, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2102), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1704] = 6, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7251), 1, - sym_command_name, - STATE(2330), 1, - sym_curly_group_impl, - STATE(2348), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1724] = 5, - ACTIONS(3228), 1, - anon_sym_LBRACE, - ACTIONS(7253), 1, - sym_command_name, - ACTIONS(7255), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1492), 2, - sym_curly_group, - sym_generic_command, - [1742] = 5, - ACTIONS(215), 1, - anon_sym_LBRACE, - ACTIONS(7257), 1, - sym_command_name, - ACTIONS(7259), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(446), 2, - sym_curly_group, - sym_generic_command, - [1760] = 5, - ACTIONS(215), 1, - anon_sym_LBRACE, - ACTIONS(7257), 1, - sym_command_name, - ACTIONS(7261), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(447), 2, - sym_curly_group, - sym_generic_command, - [1778] = 5, - ACTIONS(3228), 1, - anon_sym_LBRACE, - ACTIONS(7253), 1, - sym_command_name, - ACTIONS(7263), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1493), 2, - sym_curly_group, - sym_generic_command, - [1796] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7265), 1, - anon_sym_RBRACE, - ACTIONS(7267), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2079), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1814] = 5, - ACTIONS(3520), 1, - anon_sym_LBRACE, - ACTIONS(7269), 1, - sym_command_name, - ACTIONS(7271), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1719), 2, - sym_curly_group, - sym_generic_command, - [1832] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7189), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(3240), 1, - sym_glob_pattern, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2102), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1850] = 5, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(7273), 1, - sym_command_name, - ACTIONS(7275), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1698), 2, - sym_curly_group, - sym_generic_command, - [1868] = 5, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(7273), 1, - sym_command_name, - ACTIONS(7277), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1697), 2, - sym_curly_group, - sym_generic_command, - [1886] = 5, - ACTIONS(3520), 1, - anon_sym_LBRACE, - ACTIONS(7269), 1, - sym_command_name, - ACTIONS(7279), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1720), 2, - sym_curly_group, - sym_generic_command, - [1904] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7225), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(7281), 1, - anon_sym_RBRACE, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2081), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1922] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7189), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(3201), 1, - sym_glob_pattern, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2102), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1940] = 5, - ACTIONS(7187), 1, - anon_sym_LBRACE, - ACTIONS(7189), 1, - aux_sym__glob_pattern_fragment_token1, - STATE(3276), 1, - sym_glob_pattern, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - STATE(2102), 2, - sym__glob_pattern_fragment, - aux_sym_glob_pattern_repeat1, - [1958] = 6, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7283), 1, - sym_command_name, - STATE(2303), 1, - sym_brack_group_argc, - STATE(2306), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1978] = 6, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7285), 1, - sym_command_name, - STATE(2381), 1, - sym_curly_group_impl, - STATE(2392), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [1998] = 5, - ACTIONS(1180), 1, - anon_sym_LBRACE, - ACTIONS(7287), 1, - sym_command_name, - ACTIONS(7289), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1402), 2, - sym_curly_group, - sym_generic_command, - [2016] = 5, - ACTIONS(1180), 1, - anon_sym_LBRACE, - ACTIONS(7287), 1, - sym_command_name, - ACTIONS(7291), 1, - sym_word, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - STATE(1401), 2, - sym_curly_group, - sym_generic_command, - [2034] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7295), 1, - anon_sym_LBRACE, - STATE(1913), 1, - sym_curly_group_text, - STATE(2633), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2051] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(1095), 1, - sym_curly_group_text, - STATE(2627), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2068] = 5, - ACTIONS(1072), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1282), 1, - sym_curly_group, - STATE(3079), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2085] = 5, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2521), 1, - sym_brack_group_argc, - STATE(2663), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2102] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(1280), 1, - sym_curly_group_path_list, - STATE(3060), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2119] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1279), 1, - sym_curly_group_path, - STATE(3059), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2136] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7303), 1, - anon_sym_LBRACE, - STATE(1277), 1, - sym_curly_group_glob_pattern, - STATE(3057), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2153] = 5, - ACTIONS(3228), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1572), 1, - sym_curly_group, - STATE(2453), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2170] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2425), 1, - sym_brack_group_key_value, - STATE(3086), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2187] = 5, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1049), 1, - sym_curly_group, - STATE(2784), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2204] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2424), 1, - sym_brack_group_text, - STATE(3087), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2221] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1748), 1, - sym_curly_group, - STATE(2929), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2238] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2485), 1, - sym_brack_group_key_value, - STATE(3110), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2255] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2570), 1, - sym_brack_group_text, - STATE(3111), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2272] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1275), 1, - sym_curly_group_path, - STATE(3056), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2289] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(919), 1, - sym_curly_group_path, - STATE(2830), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2306] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7307), 1, - anon_sym_LBRACE, - STATE(918), 1, - sym_curly_group_path_list, - STATE(2841), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2323] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1270), 1, - sym_curly_group_path, - STATE(3055), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2340] = 5, - ACTIONS(4344), 1, - anon_sym_LBRACE, - ACTIONS(7193), 1, - anon_sym_LBRACK, - STATE(1640), 1, - sym_curly_group, - STATE(2120), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2357] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7309), 1, - anon_sym_LBRACE, - STATE(1647), 1, - sym_curly_group_text_list, - STATE(2916), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2374] = 5, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2840), 1, - sym_curly_group_impl, - STATE(2862), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2391] = 5, - ACTIONS(1180), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1394), 1, - sym_curly_group, - STATE(2860), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2408] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7311), 1, - anon_sym_LBRACE, - STATE(1480), 1, - sym_curly_group_text, - STATE(2908), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2425] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7313), 1, - anon_sym_LBRACE, - STATE(1392), 1, - sym_curly_group_path_list, - STATE(2852), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2442] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(1390), 1, - sym_curly_group_path, - STATE(2850), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2459] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7311), 1, - anon_sym_LBRACE, - STATE(1616), 1, - sym_curly_group_text, - STATE(2907), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2476] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7317), 1, - anon_sym_LBRACE, - STATE(1387), 1, - sym_curly_group_glob_pattern, - STATE(2847), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2493] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7311), 1, - anon_sym_LBRACE, - STATE(1617), 1, - sym_curly_group_text, - STATE(2906), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2510] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(1383), 1, - sym_curly_group_path, - STATE(2846), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2527] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(1382), 1, - sym_curly_group_path, - STATE(2845), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2544] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(1380), 1, - sym_curly_group_path, - STATE(2839), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2561] = 5, - ACTIONS(3228), 1, - anon_sym_LBRACE, - ACTIONS(7193), 1, - anon_sym_LBRACK, - STATE(1551), 1, - sym_curly_group, - STATE(2116), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2578] = 5, - ACTIONS(1180), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1378), 1, - sym_curly_group, - STATE(2836), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2595] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(1377), 1, - sym_curly_group_text_list, - STATE(2171), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2612] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7309), 1, - anon_sym_LBRACE, - STATE(1664), 1, - sym_curly_group_text_list, - STATE(2128), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2629] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1667), 1, - sym_curly_group, - STATE(2898), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2646] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7321), 1, - anon_sym_LBRACE, - STATE(1679), 1, - sym_curly_group_path, - STATE(2896), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2663] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7323), 1, - anon_sym_LBRACE, - STATE(1366), 1, - sym_curly_group_text, - STATE(2800), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2680] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7323), 1, - anon_sym_LBRACE, - STATE(1364), 1, - sym_curly_group_text, - STATE(2799), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2697] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7323), 1, - anon_sym_LBRACE, - STATE(907), 1, - sym_curly_group_text, - STATE(2798), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2714] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7321), 1, - anon_sym_LBRACE, - STATE(1680), 1, - sym_curly_group_path, - STATE(2895), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2731] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7321), 1, - anon_sym_LBRACE, - STATE(1681), 1, - sym_curly_group_path, - STATE(2894), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2748] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7325), 1, - anon_sym_LBRACE, - STATE(1684), 1, - sym_curly_group_glob_pattern, - STATE(2893), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2765] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7321), 1, - anon_sym_LBRACE, - STATE(1687), 1, - sym_curly_group_path, - STATE(2892), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2782] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7327), 1, - anon_sym_LBRACE, - STATE(1692), 1, - sym_curly_group_path_list, - STATE(2891), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2799] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1694), 1, - sym_curly_group, - STATE(2888), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2816] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7329), 1, - anon_sym_LBRACE, - STATE(2502), 1, - sym_brack_group_key_value, - STATE(3236), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2833] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2651), 1, - sym_brack_group_text, - STATE(2660), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2850] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7333), 1, - anon_sym_LBRACE, - STATE(1548), 1, - sym_curly_group_text_list, - STATE(2432), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2867] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1273), 1, - sym_curly_group_path, - STATE(3053), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2884] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(967), 1, - sym_curly_group_path, - STATE(2806), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2901] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2540), 1, - sym_curly_group_text_list, - STATE(2875), 1, - sym_brack_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2918] = 5, - ACTIONS(1072), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1271), 1, - sym_curly_group, - STATE(3038), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2935] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7335), 1, - anon_sym_LBRACE, - STATE(1144), 1, - sym_curly_group_text_list, - STATE(2279), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2952] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1691), 1, - sym_curly_group, - STATE(2501), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2969] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7337), 1, - anon_sym_LBRACE, - STATE(1656), 1, - sym_curly_group_path_list, - STATE(2504), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [2986] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7339), 1, - anon_sym_LBRACE, - STATE(1688), 1, - sym_curly_group_path, - STATE(2505), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3003] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7341), 1, - anon_sym_LBRACE, - STATE(1682), 1, - sym_curly_group_glob_pattern, - STATE(2506), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3020] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7343), 1, - anon_sym_LBRACE, - STATE(758), 1, - sym_curly_group_text, - STATE(2678), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3037] = 5, - ACTIONS(215), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(603), 1, - sym_curly_group, - STATE(2848), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3054] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7339), 1, - anon_sym_LBRACE, - STATE(1673), 1, - sym_curly_group_path, - STATE(2507), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3071] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7339), 1, - anon_sym_LBRACE, - STATE(1672), 1, - sym_curly_group_path, - STATE(2508), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3088] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(1338), 1, - sym_curly_group_text_list, - STATE(2763), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3105] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(1468), 1, - sym_curly_group_text, - STATE(2454), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3122] = 5, - ACTIONS(215), 1, - anon_sym_LBRACE, - ACTIONS(7193), 1, - anon_sym_LBRACK, - STATE(590), 1, - sym_curly_group, - STATE(2168), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3139] = 5, - ACTIONS(1180), 1, - anon_sym_LBRACE, - ACTIONS(7193), 1, - anon_sym_LBRACK, - STATE(1335), 1, - sym_curly_group, - STATE(2205), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3156] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7347), 1, - anon_sym_LBRACE, - STATE(587), 1, - sym_curly_group_text_list, - STATE(2835), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3173] = 5, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2756), 1, - sym_curly_group_impl, - STATE(3006), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3190] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7349), 1, - anon_sym_LBRACE, - STATE(435), 1, - sym_curly_group_text, - STATE(2827), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3207] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7349), 1, - anon_sym_LBRACE, - STATE(553), 1, - sym_curly_group_text, - STATE(2826), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3224] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7349), 1, - anon_sym_LBRACE, - STATE(552), 1, - sym_curly_group_text, - STATE(2825), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3241] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7347), 1, - anon_sym_LBRACE, - STATE(539), 1, - sym_curly_group_text_list, - STATE(2175), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3258] = 5, - ACTIONS(215), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(535), 1, - sym_curly_group, - STATE(2817), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3275] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2661), 1, - sym_brack_group_text, - STATE(2664), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3292] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7351), 1, - anon_sym_LBRACE, - STATE(523), 1, - sym_curly_group_path, - STATE(2815), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3309] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7351), 1, - anon_sym_LBRACE, - STATE(542), 1, - sym_curly_group_path, - STATE(2814), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3326] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7351), 1, - anon_sym_LBRACE, - STATE(512), 1, - sym_curly_group_path, - STATE(2813), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3343] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7353), 1, - anon_sym_LBRACE, - STATE(462), 1, - sym_curly_group_glob_pattern, - STATE(2812), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3360] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7351), 1, - anon_sym_LBRACE, - STATE(452), 1, - sym_curly_group_path, - STATE(2811), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3377] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7355), 1, - anon_sym_LBRACE, - STATE(451), 1, - sym_curly_group_path_list, - STATE(2810), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3394] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(1521), 1, - sym_curly_group_text, - STATE(2452), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3411] = 5, - ACTIONS(215), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(449), 1, - sym_curly_group, - STATE(2807), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3428] = 5, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2757), 1, - sym_curly_group_impl, - STATE(2954), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3445] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2608), 1, - sym_curly_group_text_list, - STATE(2782), 1, - sym_brack_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3462] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(1520), 1, - sym_curly_group_text, - STATE(2451), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3479] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7339), 1, - anon_sym_LBRACE, - STATE(1671), 1, - sym_curly_group_path, - STATE(2509), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3496] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1658), 1, - sym_curly_group, - STATE(2511), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3513] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(1657), 1, - sym_curly_group_text_list, - STATE(2226), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3530] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2741), 1, - sym_curly_group_text, - STATE(2775), 1, - sym_brack_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3547] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2742), 1, - sym_curly_group_text, - STATE(2770), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3564] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7333), 1, - anon_sym_LBRACE, - STATE(1516), 1, - sym_curly_group_text_list, - STATE(2157), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3581] = 5, - ACTIONS(3228), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1515), 1, - sym_curly_group, - STATE(2427), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3598] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2456), 1, - sym_brack_group_text, - STATE(3062), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3615] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7359), 1, - anon_sym_LBRACE, - STATE(1513), 1, - sym_curly_group_path, - STATE(2419), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3632] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7359), 1, - anon_sym_LBRACE, - STATE(1512), 1, - sym_curly_group_path, - STATE(2418), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3649] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7359), 1, - anon_sym_LBRACE, - STATE(1510), 1, - sym_curly_group_path, - STATE(2457), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3666] = 5, - ACTIONS(1180), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1283), 1, - sym_curly_group, - STATE(2743), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3683] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(1643), 1, - sym_curly_group_text, - STATE(2520), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3700] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7363), 1, - anon_sym_LBRACE, - STATE(1503), 1, - sym_curly_group_glob_pattern, - STATE(2439), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3717] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2531), 1, - sym_curly_group_text_list, - STATE(2961), 1, - sym_brack_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3734] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(1634), 1, - sym_curly_group_text, - STATE(2415), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3751] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7359), 1, - anon_sym_LBRACE, - STATE(1501), 1, - sym_curly_group_path, - STATE(2435), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3768] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7365), 1, - anon_sym_LBRACE, - STATE(1500), 1, - sym_curly_group_path_list, - STATE(2429), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3785] = 5, - ACTIONS(1072), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1225), 1, - sym_curly_group, - STATE(2927), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3802] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(940), 1, - sym_curly_group_path, - STATE(2804), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3819] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1858), 1, - sym_curly_group, - STATE(2765), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3836] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(1473), 1, - sym_curly_group_text, - STATE(2522), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3853] = 5, - ACTIONS(3228), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1498), 1, - sym_curly_group, - STATE(2470), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3870] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2472), 1, - sym_brack_group_key_value, - STATE(3061), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3887] = 5, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(7193), 1, - anon_sym_LBRACK, - STATE(990), 1, - sym_curly_group, - STATE(2118), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3904] = 5, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(968), 1, - sym_curly_group, - STATE(2859), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3921] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2438), 1, - sym_curly_group_text_list, - STATE(2962), 1, - sym_brack_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3938] = 5, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2709), 1, - sym_brack_group_argc, - STATE(2921), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3955] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2778), 1, - sym_curly_group_text_list, - STATE(2988), 1, - sym_brack_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3972] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7367), 1, - anon_sym_LBRACE, - STATE(1266), 1, - sym_curly_group_text, - STATE(3010), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3989] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7367), 1, - anon_sym_LBRACE, - STATE(1265), 1, - sym_curly_group_text, - STATE(3005), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4006] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7367), 1, - anon_sym_LBRACE, - STATE(888), 1, - sym_curly_group_text, - STATE(3001), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4023] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(1792), 1, - sym_curly_group_text_list, - STATE(2545), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4040] = 5, - ACTIONS(3520), 1, - anon_sym_LBRACE, - ACTIONS(7193), 1, - anon_sym_LBRACK, - STATE(1702), 1, - sym_curly_group, - STATE(2244), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4057] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2423), 1, - sym_curly_group_text_list, - STATE(2963), 1, - sym_brack_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4074] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2532), 1, - sym_brack_group_text, - STATE(3036), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4091] = 5, - ACTIONS(4978), 1, - anon_sym_LBRACE, - ACTIONS(7193), 1, - anon_sym_LBRACK, - STATE(1872), 1, - sym_curly_group, - STATE(2214), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4108] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2533), 1, - sym_brack_group_key_value, - STATE(3035), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4125] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7369), 1, - anon_sym_LBRACE, - STATE(1875), 1, - sym_curly_group_text_list, - STATE(2751), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4142] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7343), 1, - anon_sym_LBRACE, - STATE(950), 1, - sym_curly_group_text, - STATE(2689), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4159] = 5, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2469), 1, - sym_brack_group_argc, - STATE(2471), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4176] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(984), 1, - sym_curly_group_text_list, - STATE(2441), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4193] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7371), 1, - anon_sym_LBRACE, - STATE(1712), 1, - sym_curly_group_text, - STATE(2739), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4210] = 5, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2553), 1, - sym_curly_group_impl, - STATE(3089), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4227] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7371), 1, - anon_sym_LBRACE, - STATE(1893), 1, - sym_curly_group_text, - STATE(2738), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4244] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2578), 1, - sym_curly_group_text_list, - STATE(2964), 1, - sym_brack_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4261] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2692), 1, - sym_brack_group_key_value, - STATE(2693), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4278] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(939), 1, - sym_curly_group_path, - STATE(2805), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4295] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2588), 1, - sym_curly_group_text_list, - STATE(2965), 1, - sym_brack_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4312] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2711), 1, - sym_curly_group_text_list, - STATE(2968), 1, - sym_brack_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4329] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1735), 1, - sym_curly_group, - STATE(2566), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4346] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7371), 1, - anon_sym_LBRACE, - STATE(1894), 1, - sym_curly_group_text, - STATE(2737), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4363] = 5, - ACTIONS(726), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1112), 1, - sym_curly_group, - STATE(2687), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4380] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7369), 1, - anon_sym_LBRACE, - STATE(1898), 1, - sym_curly_group_text_list, - STATE(2232), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4397] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7373), 1, - anon_sym_LBRACE, - STATE(1110), 1, - sym_curly_group_path_list, - STATE(2679), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4414] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(1109), 1, - sym_curly_group_path, - STATE(2677), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4431] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1826), 1, - sym_curly_group, - STATE(2729), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4448] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7377), 1, - anon_sym_LBRACE, - STATE(1107), 1, - sym_curly_group_glob_pattern, - STATE(2675), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4465] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(1901), 1, - sym_curly_group_path, - STATE(2727), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4482] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(1105), 1, - sym_curly_group_path, - STATE(2674), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4499] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(1104), 1, - sym_curly_group_path, - STATE(2673), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4516] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(1103), 1, - sym_curly_group_path, - STATE(2662), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4533] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(1902), 1, - sym_curly_group_path, - STATE(2726), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4550] = 5, - ACTIONS(726), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1101), 1, - sym_curly_group, - STATE(2657), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4567] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7381), 1, - anon_sym_LBRACE, - STATE(1100), 1, - sym_curly_group_text_list, - STATE(2286), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4584] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(1903), 1, - sym_curly_group_path, - STATE(2725), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4601] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7383), 1, - anon_sym_LBRACE, - STATE(1905), 1, - sym_curly_group_glob_pattern, - STATE(2724), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4618] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(1907), 1, - sym_curly_group_path, - STATE(2723), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4635] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2542), 1, - sym_brack_group_text, - STATE(3003), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4652] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(1094), 1, - sym_curly_group_text, - STATE(2624), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4669] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(894), 1, - sym_curly_group_text, - STATE(2607), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4686] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7385), 1, - anon_sym_LBRACE, - STATE(1910), 1, - sym_curly_group_path_list, - STATE(2722), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4703] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1912), 1, - sym_curly_group, - STATE(2719), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4720] = 5, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2959), 1, - sym_curly_group_impl, - STATE(2970), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4737] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2543), 1, - sym_brack_group_key_value, - STATE(3002), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4754] = 5, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2440), 1, - sym_curly_group_impl, - STATE(3065), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4771] = 5, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(942), 1, - sym_curly_group, - STATE(2780), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4788] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_curly_group_text_list, - STATE(2235), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4805] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7343), 1, - anon_sym_LBRACE, - STATE(949), 1, - sym_curly_group_text, - STATE(2580), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4822] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2699), 1, - sym_brack_group_text, - STATE(2885), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4839] = 5, - ACTIONS(726), 1, - anon_sym_LBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - STATE(1142), 1, - sym_curly_group, - STATE(2546), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4856] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2691), 1, - sym_brack_group_key_value, - STATE(2886), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4873] = 5, - ACTIONS(7193), 1, - anon_sym_LBRACK, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2568), 1, - sym_curly_group_impl, - STATE(3039), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4890] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2585), 1, - sym_brack_group_key_value, - STATE(2957), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4907] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2587), 1, - sym_brack_group_text, - STATE(2956), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4924] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7335), 1, - anon_sym_LBRACE, - STATE(1054), 1, - sym_curly_group_text_list, - STATE(2960), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4941] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(2000), 1, - sym_curly_group, - STATE(2612), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4958] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7387), 1, - anon_sym_LBRACE, - STATE(1998), 1, - sym_curly_group_path_list, - STATE(2615), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4975] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7389), 1, - anon_sym_LBRACE, - STATE(922), 1, - sym_curly_group_glob_pattern, - STATE(2808), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [4992] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1953), 1, - sym_curly_group, - STATE(2676), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5009] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7391), 1, - anon_sym_LBRACE, - STATE(1997), 1, - sym_curly_group_path, - STATE(2616), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5026] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7393), 1, - anon_sym_LBRACE, - STATE(1995), 1, - sym_curly_group_glob_pattern, - STATE(2617), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5043] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7381), 1, - anon_sym_LBRACE, - STATE(1080), 1, - sym_curly_group_text_list, - STATE(2572), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5060] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7391), 1, - anon_sym_LBRACE, - STATE(1993), 1, - sym_curly_group_path, - STATE(2618), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5077] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7391), 1, - anon_sym_LBRACE, - STATE(1992), 1, - sym_curly_group_path, - STATE(2619), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5094] = 5, - ACTIONS(726), 1, - anon_sym_LBRACE, - ACTIONS(7193), 1, - anon_sym_LBRACK, - STATE(1083), 1, - sym_curly_group, - STATE(2274), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5111] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2643), 1, - sym_brack_group_key_value, - STATE(2966), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5128] = 5, - ACTIONS(5989), 1, - anon_sym_LBRACK, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2609), 1, - sym_brack_group_text, - STATE(2967), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5145] = 5, - ACTIONS(6966), 1, - anon_sym_LBRACE, - ACTIONS(7193), 1, - anon_sym_LBRACK, - STATE(1964), 1, - sym_curly_group, - STATE(2283), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5162] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7395), 1, - anon_sym_LBRACE, - STATE(1967), 1, - sym_curly_group_text_list, - STATE(2656), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5179] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7391), 1, - anon_sym_LBRACE, - STATE(1991), 1, - sym_curly_group_path, - STATE(2620), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5196] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1989), 1, - sym_curly_group, - STATE(2622), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5213] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7295), 1, - anon_sym_LBRACE, - STATE(1983), 1, - sym_curly_group_text, - STATE(2632), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5230] = 5, - ACTIONS(1072), 1, - anon_sym_LBRACE, - ACTIONS(7193), 1, - anon_sym_LBRACK, - STATE(1089), 1, - sym_curly_group, - STATE(2212), 1, - sym_brack_group_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5247] = 5, - ACTIONS(7293), 1, - anon_sym_LBRACK, - ACTIONS(7295), 1, - anon_sym_LBRACE, - STATE(1984), 1, - sym_curly_group_text, - STATE(2631), 1, - sym_brack_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5264] = 5, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(7395), 1, - anon_sym_LBRACE, - STATE(1988), 1, - sym_curly_group_text_list, - STATE(2293), 1, - sym_brack_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5281] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7399), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5295] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7401), 1, - anon_sym_RBRACE, - STATE(2328), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5309] = 4, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7403), 1, - sym_command_name, - STATE(2347), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5323] = 4, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7405), 1, - sym_command_name, - STATE(2313), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5337] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7407), 1, - anon_sym_RBRACE, - STATE(2308), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5351] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7411), 1, - anon_sym_RBRACE, - STATE(2358), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5365] = 4, - ACTIONS(7413), 1, - sym_command_name, - ACTIONS(7415), 1, - anon_sym_LBRACE, - STATE(1923), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5379] = 4, - ACTIONS(7417), 1, - anon_sym_RBRACE, - ACTIONS(7419), 1, - anon_sym_BSLASHand, - STATE(2372), 1, - aux_sym_curly_group_author_list_repeat2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5393] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7421), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5407] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7423), 1, - anon_sym_RBRACE, - STATE(2335), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5421] = 4, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7425), 1, - sym_command_name, - STATE(2397), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5435] = 4, - ACTIONS(7427), 1, - anon_sym_COMMA, - ACTIONS(7430), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5449] = 3, - ACTIONS(7434), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7432), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [5461] = 4, - ACTIONS(7415), 1, - anon_sym_LBRACE, - ACTIONS(7436), 1, - sym_command_name, - STATE(1921), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5475] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7438), 1, - anon_sym_RBRACE, - STATE(2337), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5489] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7442), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5503] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7444), 1, - anon_sym_RBRACE, - STATE(2315), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5517] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7446), 1, - anon_sym_RBRACE, - STATE(2338), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5531] = 4, - ACTIONS(7448), 1, - sym_command_name, - ACTIONS(7450), 1, - anon_sym_LBRACE, - STATE(1543), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5545] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7452), 1, - anon_sym_RBRACE, - STATE(2322), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5559] = 4, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7454), 1, - sym_command_name, - STATE(2343), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5573] = 4, - ACTIONS(7419), 1, - anon_sym_BSLASHand, - ACTIONS(7456), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_curly_group_author_list_repeat2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5587] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7458), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5601] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7460), 1, - anon_sym_RBRACE, - STATE(2363), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5615] = 4, - ACTIONS(7430), 1, - anon_sym_RBRACK, - ACTIONS(7462), 1, - anon_sym_COMMA, - STATE(2324), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5629] = 4, - ACTIONS(7465), 1, - sym_command_name, - ACTIONS(7467), 1, - anon_sym_LBRACE, - STATE(981), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5643] = 4, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7469), 1, - sym_command_name, - STATE(2411), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5657] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7471), 1, - anon_sym_RBRACE, - STATE(2332), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5671] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7473), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5685] = 4, - ACTIONS(7419), 1, - anon_sym_BSLASHand, - ACTIONS(7475), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_curly_group_author_list_repeat2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5699] = 4, - ACTIONS(7450), 1, - anon_sym_LBRACE, - ACTIONS(7477), 1, - sym_command_name, - STATE(1523), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5713] = 4, - ACTIONS(7479), 1, - anon_sym_RBRACK, - ACTIONS(7481), 1, - anon_sym_COMMA, - STATE(2324), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5727] = 4, - ACTIONS(7483), 1, - anon_sym_COMMA, - ACTIONS(7486), 1, - anon_sym_RBRACE, - STATE(2332), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5741] = 2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7488), 3, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym_command_name, - [5751] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7490), 1, - anon_sym_RBRACE, - STATE(2391), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5765] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7492), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5779] = 4, - ACTIONS(7419), 1, - anon_sym_BSLASHand, - ACTIONS(7494), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_curly_group_author_list_repeat2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5793] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7496), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5807] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7498), 1, - anon_sym_RBRACE, - STATE(2332), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5821] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7500), 1, - anon_sym_RBRACE, - STATE(2327), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5835] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7502), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5849] = 3, - ACTIONS(7506), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7504), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [5861] = 4, - ACTIONS(7419), 1, - anon_sym_BSLASHand, - ACTIONS(7508), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_curly_group_author_list_repeat2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5875] = 4, - ACTIONS(7467), 1, - anon_sym_LBRACE, - ACTIONS(7510), 1, - sym_command_name, - STATE(911), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5889] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7512), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5903] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7514), 1, - anon_sym_RBRACE, - STATE(2351), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5917] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7516), 1, - anon_sym_RBRACE, - STATE(2344), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5931] = 4, - ACTIONS(7518), 1, - sym_command_name, - ACTIONS(7520), 1, - anon_sym_LBRACE, - STATE(936), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5945] = 4, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7522), 1, - sym_command_name, - STATE(2318), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5959] = 2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7524), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RBRACE, - [5969] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7526), 1, - anon_sym_RBRACE, - STATE(2403), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5983] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7528), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [5997] = 3, - ACTIONS(7532), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7530), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [6009] = 4, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7534), 1, - sym_command_name, - STATE(2414), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6023] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7536), 1, - anon_sym_RBRACE, - STATE(2332), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6037] = 4, - ACTIONS(7481), 1, - anon_sym_COMMA, - ACTIONS(7538), 1, - anon_sym_RBRACK, - STATE(2331), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6051] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7540), 1, - anon_sym_RBRACE, - STATE(2402), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6065] = 3, - ACTIONS(7542), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7530), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [6077] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7544), 1, - anon_sym_RBRACE, - STATE(2332), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6091] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7546), 1, - anon_sym_RBRACE, - STATE(2369), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6105] = 4, - ACTIONS(7548), 1, - anon_sym_COMMA, - ACTIONS(7551), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6119] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7553), 1, - anon_sym_RBRACE, - STATE(2370), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6133] = 4, - ACTIONS(7520), 1, - anon_sym_LBRACE, - ACTIONS(7555), 1, - sym_command_name, - STATE(921), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6147] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7557), 1, - anon_sym_RBRACE, - STATE(2332), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6161] = 2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7559), 3, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym_command_name, - [6171] = 2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7561), 3, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_RBRACE, - [6181] = 4, - ACTIONS(7563), 1, - sym_command_name, - ACTIONS(7565), 1, - anon_sym_LBRACE, - STATE(1823), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6195] = 4, - ACTIONS(7419), 1, - anon_sym_BSLASHand, - ACTIONS(7567), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_curly_group_author_list_repeat2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6209] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7569), 1, - anon_sym_RBRACE, - STATE(2354), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6223] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7571), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6237] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7573), 1, - anon_sym_RBRACE, - STATE(2332), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6251] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7575), 1, - anon_sym_RBRACE, - STATE(2300), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6265] = 4, - ACTIONS(7577), 1, - anon_sym_RBRACE, - ACTIONS(7579), 1, - anon_sym_BSLASHand, - STATE(2372), 1, - aux_sym_curly_group_author_list_repeat2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6279] = 4, - ACTIONS(7565), 1, - anon_sym_LBRACE, - ACTIONS(7582), 1, - sym_command_name, - STATE(1820), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6293] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7584), 1, - anon_sym_RBRACE, - STATE(2375), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6307] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7586), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6321] = 4, - ACTIONS(7588), 1, - sym_command_name, - ACTIONS(7590), 1, - anon_sym_LBRACE, - STATE(1024), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6335] = 4, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7592), 1, - sym_command_name, - STATE(2373), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6349] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7594), 1, - anon_sym_RBRACE, - STATE(2383), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6363] = 4, - ACTIONS(7596), 1, - sym_command_name, - ACTIONS(7598), 1, - anon_sym_LBRACE, - STATE(887), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6377] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7600), 1, - anon_sym_RBRACE, - STATE(2384), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6391] = 4, - ACTIONS(7602), 1, - sym_command_name, - ACTIONS(7604), 1, - anon_sym_LBRACE, - STATE(440), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6405] = 4, - ACTIONS(7419), 1, - anon_sym_BSLASHand, - ACTIONS(7606), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_curly_group_author_list_repeat2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6419] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7608), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6433] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7610), 1, - anon_sym_RBRACE, - STATE(2332), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6447] = 4, - ACTIONS(7604), 1, - anon_sym_LBRACE, - ACTIONS(7612), 1, - sym_command_name, - STATE(442), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6461] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7614), 1, - anon_sym_RBRACE, - STATE(2387), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6475] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7616), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6489] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7618), 1, - anon_sym_RBRACE, - STATE(2340), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6503] = 4, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7620), 1, - sym_command_name, - STATE(2379), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6517] = 4, - ACTIONS(7598), 1, - anon_sym_LBRACE, - ACTIONS(7622), 1, - sym_command_name, - STATE(892), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6531] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7624), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6545] = 4, - ACTIONS(7195), 1, - anon_sym_LBRACE, - ACTIONS(7626), 1, - sym_command_name, - STATE(2385), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6559] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7628), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6573] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7630), 1, - anon_sym_RBRACE, - STATE(2409), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6587] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7632), 1, - anon_sym_RBRACE, - STATE(2410), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6601] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7634), 1, - anon_sym_RBRACE, - STATE(2393), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6615] = 4, - ACTIONS(7590), 1, - anon_sym_LBRACE, - ACTIONS(7636), 1, - sym_command_name, - STATE(1002), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6629] = 4, - ACTIONS(7638), 1, - sym_command_name, - ACTIONS(7640), 1, - anon_sym_LBRACE, - STATE(1602), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6643] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7642), 1, - anon_sym_RBRACE, - STATE(2407), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6657] = 4, - ACTIONS(7419), 1, - anon_sym_BSLASHand, - ACTIONS(7644), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_curly_group_author_list_repeat2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6671] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7646), 1, - anon_sym_RBRACE, - STATE(2408), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6685] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7648), 1, - anon_sym_RBRACE, - STATE(2332), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6699] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7650), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6713] = 4, - ACTIONS(7419), 1, - anon_sym_BSLASHand, - ACTIONS(7652), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_curly_group_author_list_repeat2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6727] = 4, - ACTIONS(7654), 1, - sym_command_name, - ACTIONS(7656), 1, - anon_sym_LBRACE, - STATE(1472), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6741] = 4, - ACTIONS(7419), 1, - anon_sym_BSLASHand, - ACTIONS(7658), 1, - anon_sym_RBRACE, - STATE(2372), 1, - aux_sym_curly_group_author_list_repeat2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6755] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7660), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6769] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7662), 1, - anon_sym_RBRACE, - STATE(2332), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6783] = 4, - ACTIONS(7397), 1, - anon_sym_COMMA, - ACTIONS(7664), 1, - anon_sym_RBRACE, - STATE(2360), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6797] = 4, - ACTIONS(7409), 1, - anon_sym_COMMA, - ACTIONS(7666), 1, - anon_sym_RBRACE, - STATE(2332), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6811] = 4, - ACTIONS(7656), 1, - anon_sym_LBRACE, - ACTIONS(7668), 1, - sym_command_name, - STATE(1483), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6825] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7670), 1, - anon_sym_RBRACE, - STATE(2413), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6839] = 4, - ACTIONS(7440), 1, - anon_sym_COMMA, - ACTIONS(7672), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_curly_group_key_value_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6853] = 4, - ACTIONS(7640), 1, - anon_sym_LBRACE, - ACTIONS(7674), 1, - sym_command_name, - STATE(1576), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6867] = 3, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(1708), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6878] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2083), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6889] = 3, - ACTIONS(7678), 1, - anon_sym_LBRACE, - STATE(1563), 1, - sym__math_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6900] = 3, - ACTIONS(7359), 1, - anon_sym_LBRACE, - STATE(1540), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6911] = 3, - ACTIONS(7359), 1, - anon_sym_LBRACE, - STATE(1542), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6922] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2112), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6933] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2105), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6944] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(3094), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6955] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(3092), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6966] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3091), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6977] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3090), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6988] = 3, - ACTIONS(7359), 1, - anon_sym_LBRACE, - STATE(1544), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [6999] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1546), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7010] = 3, - ACTIONS(7680), 1, - anon_sym_RBRACE, - ACTIONS(7682), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [7021] = 3, - ACTIONS(7365), 1, - anon_sym_LBRACE, - STATE(1536), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7032] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2237), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7043] = 3, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(1549), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7054] = 3, - ACTIONS(7333), 1, - anon_sym_LBRACE, - STATE(1571), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7065] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1550), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7076] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2091), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7087] = 3, - ACTIONS(7359), 1, - anon_sym_LBRACE, - STATE(1537), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7098] = 3, - ACTIONS(7684), 1, - sym_command_name, - ACTIONS(7686), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7109] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(3070), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7120] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(3068), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7131] = 3, - ACTIONS(7363), 1, - anon_sym_LBRACE, - STATE(1538), 1, - sym_curly_group_glob_pattern, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7142] = 3, - ACTIONS(7656), 1, - anon_sym_LBRACE, - STATE(1575), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7153] = 3, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(1022), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7164] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1578), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7175] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1580), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7186] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1581), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7197] = 3, - ACTIONS(7688), 1, - anon_sym_LBRACE, - STATE(1582), 1, - sym__comment_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7208] = 3, - ACTIONS(7690), 1, - anon_sym_LBRACE, - STATE(1583), 1, - sym__verbatim_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7219] = 3, - ACTIONS(7692), 1, - anon_sym_LBRACE, - STATE(1584), 1, - sym__listing_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7230] = 3, - ACTIONS(7694), 1, - anon_sym_LBRACE, - STATE(1585), 1, - sym__minted_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7241] = 3, - ACTIONS(7696), 1, - anon_sym_LBRACE, - STATE(1586), 1, - sym__pycode_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7252] = 3, - ACTIONS(7698), 1, - anon_sym_LBRACE, - STATE(1553), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7263] = 3, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(1554), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7274] = 3, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(1555), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7285] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1590), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7296] = 3, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(1465), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7307] = 3, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(1556), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7318] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3067), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7329] = 3, - ACTIONS(7359), 1, - anon_sym_LBRACE, - STATE(1539), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7340] = 3, - ACTIONS(7656), 1, - anon_sym_LBRACE, - STATE(1593), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7351] = 3, - ACTIONS(7700), 1, - anon_sym_BSLASHend, - STATE(1558), 1, - sym__comment_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7362] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1595), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7373] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1606), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7384] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1599), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7395] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1600), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7406] = 3, - ACTIONS(7702), 1, - anon_sym_minted, - STATE(3249), 1, - sym__minted_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7417] = 3, - ACTIONS(7704), 1, - anon_sym_BSLASHend, - STATE(1559), 1, - sym__verbatim_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7428] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1604), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7439] = 3, - ACTIONS(7706), 1, - anon_sym_BSLASHend, - STATE(1560), 1, - sym__listing_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7450] = 3, - ACTIONS(7708), 1, - anon_sym_BSLASHend, - STATE(1561), 1, - sym__minted_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7461] = 3, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2997), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7472] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1533), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7483] = 3, - ACTIONS(7598), 1, - anon_sym_LBRACE, - STATE(1031), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7494] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3066), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7505] = 3, - ACTIONS(7710), 1, - anon_sym_BSLASHend, - STATE(1122), 1, - sym__verbatim_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7516] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(1033), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7527] = 3, - ACTIONS(7712), 1, - anon_sym_LBRACE, - STATE(1690), 1, - sym_curly_group_author_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7538] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(489), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7549] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2861), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7560] = 3, - ACTIONS(7339), 1, - anon_sym_LBRACE, - STATE(1685), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7571] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(1035), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7582] = 3, - ACTIONS(7339), 1, - anon_sym_LBRACE, - STATE(1676), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7593] = 3, - ACTIONS(3228), 1, - anon_sym_LBRACE, - STATE(1526), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7604] = 3, - ACTIONS(7365), 1, - anon_sym_LBRACE, - STATE(1525), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7615] = 3, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(1524), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7626] = 3, - ACTIONS(7339), 1, - anon_sym_LBRACE, - STATE(1663), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7637] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3029), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7648] = 3, - ACTIONS(7333), 1, - anon_sym_LBRACE, - STATE(1518), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7659] = 3, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(1780), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7670] = 3, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(1654), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7681] = 3, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(1517), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7692] = 3, - ACTIONS(7359), 1, - anon_sym_LBRACE, - STATE(1514), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7703] = 3, - ACTIONS(7359), 1, - anon_sym_LBRACE, - STATE(1504), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7714] = 3, - ACTIONS(7359), 1, - anon_sym_LBRACE, - STATE(1502), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7725] = 3, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(1626), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7736] = 3, - ACTIONS(7337), 1, - anon_sym_LBRACE, - STATE(1625), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7747] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1624), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7758] = 3, - ACTIONS(7714), 1, - anon_sym_LBRACE, - STATE(1499), 1, - sym_curly_group_author_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7769] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(1047), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7780] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2866), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7791] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2867), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7802] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2269), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7813] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1615), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7824] = 3, - ACTIONS(7329), 1, - anon_sym_LBRACE, - STATE(3113), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7835] = 3, - ACTIONS(7716), 1, - anon_sym_RBRACE, - ACTIONS(7718), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [7846] = 3, - ACTIONS(7337), 1, - anon_sym_LBRACE, - STATE(1761), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7857] = 3, - ACTIONS(7339), 1, - anon_sym_LBRACE, - STATE(1796), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7868] = 3, - ACTIONS(7341), 1, - anon_sym_LBRACE, - STATE(1799), 1, - sym_curly_group_glob_pattern, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7879] = 3, - ACTIONS(7339), 1, - anon_sym_LBRACE, - STATE(1804), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7890] = 3, - ACTIONS(7339), 1, - anon_sym_LBRACE, - STATE(1805), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7901] = 3, - ACTIONS(7339), 1, - anon_sym_LBRACE, - STATE(1806), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7912] = 3, - ACTIONS(7339), 1, - anon_sym_LBRACE, - STATE(1800), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7923] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1798), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7934] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2088), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7945] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1178), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7956] = 3, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(1776), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7967] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1701), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7978] = 3, - ACTIONS(7702), 1, - anon_sym_minted, - STATE(3262), 1, - sym__minted_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [7989] = 3, - ACTIONS(7720), 1, - sym_command_name, - ACTIONS(7722), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8000] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1175), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8011] = 3, - ACTIONS(7724), 1, - anon_sym_LBRACE, - STATE(1706), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8022] = 3, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(1707), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8033] = 3, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2680), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8044] = 3, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(1485), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8055] = 3, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(1709), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8066] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(3044), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8077] = 3, - ACTIONS(7726), 1, - anon_sym_BSLASHend, - STATE(1711), 1, - sym__comment_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8088] = 3, - ACTIONS(7728), 1, - anon_sym_BSLASHend, - STATE(1713), 1, - sym__verbatim_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8099] = 3, - ACTIONS(7730), 1, - anon_sym_BSLASHend, - STATE(1714), 1, - sym__listing_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8110] = 3, - ACTIONS(7732), 1, - anon_sym_BSLASHend, - STATE(1717), 1, - sym__minted_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8121] = 3, - ACTIONS(7734), 1, - anon_sym_BSLASHend, - STATE(1723), 1, - sym__pycode_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8132] = 3, - ACTIONS(7736), 1, - anon_sym_LBRACE, - STATE(1724), 1, - sym__math_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8143] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(3042), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8154] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3041), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8165] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3040), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8176] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1174), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8187] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1173), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8198] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2276), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8209] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2076), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8220] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1171), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8231] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(3011), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8242] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(3009), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8253] = 3, - ACTIONS(7467), 1, - anon_sym_LBRACE, - STATE(1169), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8264] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3008), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8275] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3007), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8286] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2869), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8297] = 3, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(1734), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8308] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1163), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8319] = 3, - ACTIONS(7738), 1, - anon_sym_LBRACE, - STATE(1159), 1, - sym__pycode_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8330] = 3, - ACTIONS(7740), 1, - anon_sym_LBRACE, - STATE(1158), 1, - sym__minted_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8341] = 3, - ACTIONS(7742), 1, - anon_sym_LBRACE, - STATE(1157), 1, - sym__listing_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8352] = 3, - ACTIONS(7744), 1, - anon_sym_LBRACE, - STATE(1156), 1, - sym__verbatim_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8363] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2176), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8374] = 3, - ACTIONS(7746), 1, - anon_sym_LBRACE, - STATE(1155), 1, - sym__comment_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8385] = 3, - ACTIONS(7450), 1, - anon_sym_LBRACE, - STATE(1738), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8396] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2086), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8407] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1740), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8418] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1743), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8429] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1744), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8440] = 3, - ACTIONS(7748), 1, - anon_sym_LBRACE, - STATE(1747), 1, - sym__comment_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8451] = 3, - ACTIONS(7750), 1, - anon_sym_LBRACE, - STATE(1752), 1, - sym__verbatim_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8462] = 3, - ACTIONS(7752), 1, - anon_sym_LBRACE, - STATE(1753), 1, - sym__listing_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8473] = 3, - ACTIONS(7754), 1, - anon_sym_LBRACE, - STATE(1754), 1, - sym__minted_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8484] = 3, - ACTIONS(7756), 1, - anon_sym_LBRACE, - STATE(1755), 1, - sym__pycode_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8495] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1154), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8506] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1152), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8517] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1150), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8528] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1759), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8539] = 3, - ACTIONS(7758), 1, - anon_sym_LBRACE, - STATE(1046), 1, - sym__comment_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8550] = 3, - ACTIONS(7467), 1, - anon_sym_LBRACE, - STATE(1148), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8561] = 3, - ACTIONS(7760), 1, - anon_sym_LBRACE, - STATE(1041), 1, - sym__verbatim_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8572] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3027), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8583] = 3, - ACTIONS(7450), 1, - anon_sym_LBRACE, - STATE(1764), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8594] = 3, - ACTIONS(7381), 1, - anon_sym_LBRACE, - STATE(1141), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8605] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1766), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8616] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1768), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8627] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1769), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8638] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1770), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8649] = 3, - ACTIONS(7702), 1, - anon_sym_minted, - STATE(3227), 1, - sym__minted_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8660] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(3026), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8671] = 3, - ACTIONS(3520), 1, - anon_sym_LBRACE, - STATE(1773), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8682] = 3, - ACTIONS(7343), 1, - anon_sym_LBRACE, - STATE(997), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8693] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8704] = 3, - ACTIONS(7762), 1, - anon_sym_LBRACE, - STATE(965), 1, - sym__minted_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8715] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2068), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8726] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2191), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8737] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2951), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8748] = 3, - ACTIONS(7764), 1, - anon_sym_LBRACE, - STATE(1999), 1, - sym_curly_group_author_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8759] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2944), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8770] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2940), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8781] = 3, - ACTIONS(7391), 1, - anon_sym_LBRACE, - STATE(1996), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8792] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2930), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8803] = 3, - ACTIONS(7391), 1, - anon_sym_LBRACE, - STATE(1994), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8814] = 3, - ACTIONS(7766), 1, - anon_sym_LBRACE, - STATE(1038), 1, - sym__pycode_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8825] = 3, - ACTIONS(7768), 1, - anon_sym_LBRACE, - STATE(1126), 1, - sym__math_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8836] = 3, - ACTIONS(7770), 1, - anon_sym_BSLASHend, - STATE(1125), 1, - sym__pycode_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8847] = 3, - ACTIONS(7391), 1, - anon_sym_LBRACE, - STATE(1990), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8858] = 3, - ACTIONS(7772), 1, - anon_sym_BSLASHend, - STATE(1124), 1, - sym__minted_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8869] = 3, - ACTIONS(7774), 1, - anon_sym_BSLASHend, - STATE(1123), 1, - sym__listing_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8880] = 3, - ACTIONS(7295), 1, - anon_sym_LBRACE, - STATE(1987), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8891] = 3, - ACTIONS(7395), 1, - anon_sym_LBRACE, - STATE(1986), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8902] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2976), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8913] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(1093), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8924] = 3, - ACTIONS(7776), 1, - anon_sym_BSLASHend, - STATE(1121), 1, - sym__comment_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8935] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(1119), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8946] = 3, - ACTIONS(7295), 1, - anon_sym_LBRACE, - STATE(1982), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8957] = 3, - ACTIONS(7387), 1, - anon_sym_LBRACE, - STATE(1981), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8968] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1889), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8979] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(893), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [8990] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2973), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9001] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2972), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9012] = 3, - ACTIONS(7778), 1, - anon_sym_LBRACE, - STATE(1010), 1, - sym__math_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9023] = 3, - ACTIONS(7780), 1, - anon_sym_BSLASHend, - STATE(1009), 1, - sym__pycode_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9034] = 3, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1979), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9045] = 3, - ACTIONS(7782), 1, - anon_sym_BSLASHend, - STATE(1007), 1, - sym__minted_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9056] = 3, - ACTIONS(7784), 1, - anon_sym_RBRACE, - ACTIONS(7786), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [9067] = 3, - ACTIONS(7387), 1, - anon_sym_LBRACE, - STATE(1976), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9078] = 3, - ACTIONS(7391), 1, - anon_sym_LBRACE, - STATE(1975), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9089] = 3, - ACTIONS(7393), 1, - anon_sym_LBRACE, - STATE(1974), 1, - sym_curly_group_glob_pattern, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9100] = 3, - ACTIONS(7391), 1, - anon_sym_LBRACE, - STATE(1973), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9111] = 3, - ACTIONS(7391), 1, - anon_sym_LBRACE, - STATE(1972), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9122] = 3, - ACTIONS(7391), 1, - anon_sym_LBRACE, - STATE(1971), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9133] = 3, - ACTIONS(7391), 1, - anon_sym_LBRACE, - STATE(1970), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9144] = 3, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1969), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9155] = 3, - ACTIONS(7788), 1, - anon_sym_BSLASHend, - STATE(1006), 1, - sym__listing_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9166] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(1087), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9177] = 3, - ACTIONS(7295), 1, - anon_sym_LBRACE, - STATE(1966), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9188] = 3, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1965), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9199] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(1086), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9210] = 3, - ACTIONS(7790), 1, - sym_command_name, - ACTIONS(7792), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9221] = 3, - ACTIONS(7794), 1, - anon_sym_BSLASHend, - STATE(1005), 1, - sym__verbatim_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9232] = 3, - ACTIONS(7796), 1, - anon_sym_LBRACE, - STATE(1962), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9243] = 3, - ACTIONS(7295), 1, - anon_sym_LBRACE, - STATE(1961), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9254] = 3, - ACTIONS(7295), 1, - anon_sym_LBRACE, - STATE(1960), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9265] = 3, - ACTIONS(7295), 1, - anon_sym_LBRACE, - STATE(1914), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9276] = 3, - ACTIONS(7349), 1, - anon_sym_LBRACE, - STATE(528), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9287] = 3, - ACTIONS(7798), 1, - anon_sym_BSLASHend, - STATE(1003), 1, - sym__comment_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9298] = 3, - ACTIONS(7800), 1, - anon_sym_BSLASHend, - STATE(531), 1, - sym__comment_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9309] = 3, - ACTIONS(7802), 1, - anon_sym_BSLASHend, - STATE(532), 1, - sym__verbatim_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9320] = 3, - ACTIONS(7804), 1, - anon_sym_BSLASHend, - STATE(533), 1, - sym__listing_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9331] = 3, - ACTIONS(7806), 1, - anon_sym_BSLASHend, - STATE(534), 1, - sym__minted_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9342] = 3, - ACTIONS(7808), 1, - anon_sym_BSLASHend, - STATE(536), 1, - sym__pycode_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9353] = 3, - ACTIONS(7810), 1, - anon_sym_LBRACE, - STATE(537), 1, - sym__math_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9364] = 3, - ACTIONS(7343), 1, - anon_sym_LBRACE, - STATE(1000), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9375] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2971), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9386] = 3, - ACTIONS(7812), 1, - anon_sym_LBRACE, - STATE(1085), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9397] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2106), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9408] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2267), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9419] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2075), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9430] = 3, - ACTIONS(7814), 1, - sym_command_name, - ACTIONS(7816), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9441] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1082), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9452] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2939), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9463] = 3, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2544), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9474] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(1081), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9485] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2937), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9496] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2936), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9507] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2129), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9518] = 3, - ACTIONS(7395), 1, - anon_sym_LBRACE, - STATE(1954), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9529] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1078), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9540] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2934), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9551] = 3, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(1077), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9562] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2499), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9573] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2498), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9584] = 3, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(1076), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9595] = 3, - ACTIONS(7415), 1, - anon_sym_LBRACE, - STATE(1951), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9606] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2497), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9617] = 3, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1949), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9628] = 3, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1948), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9639] = 3, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1947), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9650] = 3, - ACTIONS(7818), 1, - anon_sym_LBRACE, - STATE(556), 1, - sym__comment_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9661] = 3, - ACTIONS(7820), 1, - anon_sym_LBRACE, - STATE(557), 1, - sym__verbatim_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9672] = 3, - ACTIONS(7822), 1, - anon_sym_LBRACE, - STATE(558), 1, - sym__listing_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9683] = 3, - ACTIONS(7824), 1, - anon_sym_LBRACE, - STATE(559), 1, - sym__minted_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9694] = 3, - ACTIONS(7826), 1, - anon_sym_LBRACE, - STATE(561), 1, - sym__pycode_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9705] = 3, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(1075), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9716] = 3, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(1074), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9727] = 3, - ACTIONS(7377), 1, - anon_sym_LBRACE, - STATE(1073), 1, - sym_curly_group_glob_pattern, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9738] = 3, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1943), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9749] = 3, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(1072), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9760] = 3, - ACTIONS(7343), 1, - anon_sym_LBRACE, - STATE(693), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9771] = 3, - ACTIONS(7373), 1, - anon_sym_LBRACE, - STATE(1071), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9782] = 3, - ACTIONS(7415), 1, - anon_sym_LBRACE, - STATE(1941), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9793] = 3, - ACTIONS(7828), 1, - anon_sym_RBRACE, - ACTIONS(7830), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [9804] = 3, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1939), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9815] = 3, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1937), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9826] = 3, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1936), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9837] = 3, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1935), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9848] = 3, - ACTIONS(7702), 1, - anon_sym_minted, - STATE(3205), 1, - sym__minted_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9859] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9870] = 3, - ACTIONS(6966), 1, - anon_sym_LBRACE, - STATE(1932), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9881] = 3, - ACTIONS(7343), 1, - anon_sym_LBRACE, - STATE(998), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9892] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1061), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9903] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2837), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9914] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2477), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9925] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2474), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9936] = 3, - ACTIONS(726), 1, - anon_sym_LBRACE, - STATE(1091), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9947] = 3, - ACTIONS(7832), 1, - anon_sym_LBRACE, - STATE(1911), 1, - sym_curly_group_author_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9958] = 3, - ACTIONS(7373), 1, - anon_sym_LBRACE, - STATE(1092), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9969] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1212), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9980] = 3, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(1906), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9991] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2833), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10002] = 3, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(1904), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10013] = 3, - ACTIONS(7381), 1, - anon_sym_LBRACE, - STATE(1098), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10024] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(1099), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10035] = 3, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(1088), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10046] = 3, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(1900), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10057] = 3, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(1106), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10068] = 3, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(1108), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10079] = 3, - ACTIONS(7371), 1, - anon_sym_LBRACE, - STATE(1897), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10090] = 3, - ACTIONS(7369), 1, - anon_sym_LBRACE, - STATE(1896), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10101] = 3, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2932), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10112] = 3, - ACTIONS(7834), 1, - anon_sym_LBRACE, - STATE(1111), 1, - sym_curly_group_author_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10123] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2832), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10134] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1205), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10145] = 3, - ACTIONS(7371), 1, - anon_sym_LBRACE, - STATE(1892), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10156] = 3, - ACTIONS(7385), 1, - anon_sym_LBRACE, - STATE(1891), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10167] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(482), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10178] = 3, - ACTIONS(7702), 1, - anon_sym_minted, - STATE(3280), 1, - sym__minted_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10189] = 3, - ACTIONS(7836), 1, - anon_sym_LBRACE, - STATE(995), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10200] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1210), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10211] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1888), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10222] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1211), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10233] = 3, - ACTIONS(7838), 1, - anon_sym_RBRACE, - ACTIONS(7840), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [10244] = 3, - ACTIONS(7385), 1, - anon_sym_LBRACE, - STATE(1884), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10255] = 3, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(1883), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10266] = 3, - ACTIONS(7383), 1, - anon_sym_LBRACE, - STATE(1882), 1, - sym_curly_group_glob_pattern, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10277] = 3, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(1881), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10288] = 3, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(1880), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10299] = 3, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(1879), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10310] = 3, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(1878), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10321] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1827), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10332] = 3, - ACTIONS(7842), 1, - sym_command_name, - ACTIONS(7844), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10343] = 3, - ACTIONS(7846), 1, - anon_sym_RBRACE, - ACTIONS(7848), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [10354] = 3, - ACTIONS(7371), 1, - anon_sym_LBRACE, - STATE(1874), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10365] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1873), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10376] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1214), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10387] = 3, - ACTIONS(7850), 1, - sym_command_name, - ACTIONS(7852), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10398] = 3, - ACTIONS(7854), 1, - anon_sym_LBRACE, - STATE(1869), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10409] = 3, - ACTIONS(7371), 1, - anon_sym_LBRACE, - STATE(1868), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10420] = 3, - ACTIONS(7371), 1, - anon_sym_LBRACE, - STATE(1867), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10431] = 3, - ACTIONS(7371), 1, - anon_sym_LBRACE, - STATE(1745), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10442] = 3, - ACTIONS(7520), 1, - anon_sym_LBRACE, - STATE(1216), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10453] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2925), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10464] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2923), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10475] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1223), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10486] = 3, - ACTIONS(7856), 1, - anon_sym_LBRACE, - STATE(1248), 1, - sym__pycode_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10497] = 3, - ACTIONS(7858), 1, - anon_sym_LBRACE, - STATE(1249), 1, - sym__minted_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10508] = 3, - ACTIONS(7860), 1, - anon_sym_LBRACE, - STATE(1250), 1, - sym__listing_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10519] = 3, - ACTIONS(7862), 1, - anon_sym_LBRACE, - STATE(1251), 1, - sym__verbatim_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10530] = 3, - ACTIONS(7864), 1, - anon_sym_LBRACE, - STATE(1252), 1, - sym__comment_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10541] = 3, - ACTIONS(7866), 1, - anon_sym_LBRACE, - STATE(1036), 1, - sym_curly_group_author_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10552] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1253), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10563] = 3, - ACTIONS(7369), 1, - anon_sym_LBRACE, - STATE(1859), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10574] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1254), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10585] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2905), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10596] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1256), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10607] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2127), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10618] = 3, - ACTIONS(7520), 1, - anon_sym_LBRACE, - STATE(1258), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10629] = 3, - ACTIONS(7565), 1, - anon_sym_LBRACE, - STATE(1855), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10640] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(988), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10651] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1853), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10662] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1851), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10673] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1850), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10684] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2829), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10695] = 3, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(1287), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10706] = 3, - ACTIONS(7868), 1, - anon_sym_BSLASHend, - STATE(1562), 1, - sym__pycode_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10717] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1845), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10728] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2221), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10739] = 3, - ACTIONS(7343), 1, - anon_sym_LBRACE, - STATE(985), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10750] = 3, - ACTIONS(7870), 1, - anon_sym_LBRACE, - STATE(1048), 1, - sym__listing_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10761] = 3, - ACTIONS(7565), 1, - anon_sym_LBRACE, - STATE(1835), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10772] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2658), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10783] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1833), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10794] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1831), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10805] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1830), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10816] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1829), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10827] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10838] = 3, - ACTIONS(4978), 1, - anon_sym_LBRACE, - STATE(1908), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10849] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2902), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10860] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2653), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10871] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2650), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10882] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(976), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10893] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(975), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10904] = 3, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2600), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10915] = 3, - ACTIONS(7872), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_curly_group_author_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10926] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(996), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10937] = 3, - ACTIONS(7874), 1, - anon_sym_LBRACE, - STATE(1317), 1, - sym__math_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10948] = 3, - ACTIONS(7351), 1, - anon_sym_LBRACE, - STATE(461), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10959] = 3, - ACTIONS(7876), 1, - anon_sym_BSLASHend, - STATE(1318), 1, - sym__pycode_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10970] = 3, - ACTIONS(7351), 1, - anon_sym_LBRACE, - STATE(463), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10981] = 3, - ACTIONS(7878), 1, - anon_sym_BSLASHend, - STATE(1321), 1, - sym__minted_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10992] = 3, - ACTIONS(7880), 1, - anon_sym_BSLASHend, - STATE(1322), 1, - sym__listing_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11003] = 3, - ACTIONS(7882), 1, - anon_sym_BSLASHend, - STATE(1324), 1, - sym__verbatim_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11014] = 3, - ACTIONS(7351), 1, - anon_sym_LBRACE, - STATE(530), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11025] = 3, - ACTIONS(7884), 1, - anon_sym_BSLASHend, - STATE(1325), 1, - sym__comment_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11036] = 3, - ACTIONS(7323), 1, - anon_sym_LBRACE, - STATE(1330), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11047] = 3, - ACTIONS(7349), 1, - anon_sym_LBRACE, - STATE(540), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11058] = 3, - ACTIONS(7347), 1, - anon_sym_LBRACE, - STATE(444), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11069] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2901), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11080] = 3, - ACTIONS(7323), 1, - anon_sym_LBRACE, - STATE(889), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11091] = 3, - ACTIONS(7323), 1, - anon_sym_LBRACE, - STATE(1331), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11102] = 3, - ACTIONS(7323), 1, - anon_sym_LBRACE, - STATE(1332), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11113] = 3, - ACTIONS(7349), 1, - anon_sym_LBRACE, - STATE(560), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11124] = 3, - ACTIONS(7355), 1, - anon_sym_LBRACE, - STATE(562), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11135] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1782), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11146] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(974), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11157] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(973), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11168] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(1012), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11179] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(567), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11190] = 3, - ACTIONS(7389), 1, - anon_sym_LBRACE, - STATE(971), 1, - sym_curly_group_glob_pattern, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11201] = 3, - ACTIONS(7886), 1, - anon_sym_RBRACE, - ACTIONS(7888), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [11212] = 3, - ACTIONS(7355), 1, - anon_sym_LBRACE, - STATE(570), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11223] = 3, - ACTIONS(7351), 1, - anon_sym_LBRACE, - STATE(571), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11234] = 3, - ACTIONS(7353), 1, - anon_sym_LBRACE, - STATE(572), 1, - sym_curly_group_glob_pattern, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11245] = 3, - ACTIONS(7351), 1, - anon_sym_LBRACE, - STATE(573), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11256] = 3, - ACTIONS(7351), 1, - anon_sym_LBRACE, - STATE(574), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11267] = 3, - ACTIONS(7351), 1, - anon_sym_LBRACE, - STATE(575), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11278] = 3, - ACTIONS(7351), 1, - anon_sym_LBRACE, - STATE(580), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11289] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(582), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11300] = 3, - ACTIONS(7890), 1, - anon_sym_LBRACE, - STATE(1333), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11311] = 2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(6187), 2, - anon_sym_LBRACE, - sym_command_name, - [11320] = 3, - ACTIONS(7349), 1, - anon_sym_LBRACE, - STATE(588), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11331] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(589), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11342] = 3, - ACTIONS(7892), 1, - sym_command_name, - ACTIONS(7894), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11353] = 3, - ACTIONS(7896), 1, - sym_command_name, - ACTIONS(7898), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11364] = 3, - ACTIONS(7900), 1, - anon_sym_LBRACE, - STATE(592), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11375] = 3, - ACTIONS(7349), 1, - anon_sym_LBRACE, - STATE(593), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11386] = 3, - ACTIONS(7349), 1, - anon_sym_LBRACE, - STATE(594), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11397] = 3, - ACTIONS(7349), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11408] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(2897), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11419] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2858), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11430] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(969), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11441] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1336), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11452] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2856), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11463] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2855), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11474] = 3, - ACTIONS(7323), 1, - anon_sym_LBRACE, - STATE(1337), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11485] = 3, - ACTIONS(7347), 1, - anon_sym_LBRACE, - STATE(602), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11496] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1342), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11507] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2853), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11518] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(1343), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11529] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(1344), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11540] = 3, - ACTIONS(7604), 1, - anon_sym_LBRACE, - STATE(614), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11551] = 3, - ACTIONS(7307), 1, - anon_sym_LBRACE, - STATE(910), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11562] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(616), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11573] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(618), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11584] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(620), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11595] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(1345), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11606] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(1346), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11617] = 3, - ACTIONS(7317), 1, - anon_sym_LBRACE, - STATE(1347), 1, - sym_curly_group_glob_pattern, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11628] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(624), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11639] = 3, - ACTIONS(7902), 1, - anon_sym_RBRACE, - ACTIONS(7904), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [11650] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(1348), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11661] = 3, - ACTIONS(7604), 1, - anon_sym_LBRACE, - STATE(627), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11672] = 3, - ACTIONS(7313), 1, - anon_sym_LBRACE, - STATE(1349), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11683] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(629), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11694] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(631), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11705] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(632), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11716] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(633), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11727] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(1388), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11738] = 3, - ACTIONS(215), 1, - anon_sym_LBRACE, - STATE(636), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11749] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(964), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11760] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1352), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11771] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(944), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11782] = 3, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2851), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11793] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(935), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11804] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1356), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11815] = 3, - ACTIONS(7906), 1, - anon_sym_LBRACE, - STATE(1693), 1, - sym_curly_group_author_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11826] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(934), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11837] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(933), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11848] = 3, - ACTIONS(7321), 1, - anon_sym_LBRACE, - STATE(1686), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11859] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(3083), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11870] = 3, - ACTIONS(7321), 1, - anon_sym_LBRACE, - STATE(1683), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11881] = 3, - ACTIONS(1180), 1, - anon_sym_LBRACE, - STATE(1360), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11892] = 3, - ACTIONS(7313), 1, - anon_sym_LBRACE, - STATE(1361), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11903] = 3, - ACTIONS(7323), 1, - anon_sym_LBRACE, - STATE(1362), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11914] = 3, - ACTIONS(7321), 1, - anon_sym_LBRACE, - STATE(1678), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11925] = 3, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2539), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11936] = 3, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(1371), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11947] = 3, - ACTIONS(7311), 1, - anon_sym_LBRACE, - STATE(1652), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11958] = 3, - ACTIONS(7309), 1, - anon_sym_LBRACE, - STATE(1646), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11969] = 3, - ACTIONS(7323), 1, - anon_sym_LBRACE, - STATE(1374), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11980] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(1379), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [11991] = 3, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(1386), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12002] = 3, - ACTIONS(7908), 1, - anon_sym_BSLASHend, - STATE(1229), 1, - sym__minted_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12013] = 3, - ACTIONS(7311), 1, - anon_sym_LBRACE, - STATE(1746), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12024] = 3, - ACTIONS(7327), 1, - anon_sym_LBRACE, - STATE(1677), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12035] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2844), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12046] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2842), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12057] = 3, - ACTIONS(7910), 1, - anon_sym_LBRACE, - STATE(1393), 1, - sym_curly_group_author_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12068] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1670), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12079] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(959), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12090] = 3, - ACTIONS(7912), 1, - anon_sym_RBRACE, - ACTIONS(7914), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [12101] = 3, - ACTIONS(7327), 1, - anon_sym_LBRACE, - STATE(1666), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12112] = 3, - ACTIONS(7321), 1, - anon_sym_LBRACE, - STATE(1662), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12123] = 3, - ACTIONS(7325), 1, - anon_sym_LBRACE, - STATE(1661), 1, - sym_curly_group_glob_pattern, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12134] = 3, - ACTIONS(7321), 1, - anon_sym_LBRACE, - STATE(1660), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12145] = 3, - ACTIONS(7321), 1, - anon_sym_LBRACE, - STATE(1659), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12156] = 3, - ACTIONS(7321), 1, - anon_sym_LBRACE, - STATE(1653), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12167] = 3, - ACTIONS(7321), 1, - anon_sym_LBRACE, - STATE(1651), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12178] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1649), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12189] = 3, - ACTIONS(7916), 1, - anon_sym_comment, - STATE(3296), 1, - sym__comment_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12200] = 3, - ACTIONS(7918), 1, - anon_sym_verbatim, - STATE(3295), 1, - sym__verbatim_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12211] = 3, - ACTIONS(7311), 1, - anon_sym_LBRACE, - STATE(1642), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12222] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1641), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12233] = 3, - ACTIONS(7920), 1, - anon_sym_lstlisting, - STATE(3294), 1, - sym__listing_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12244] = 3, - ACTIONS(7922), 1, - sym_command_name, - ACTIONS(7924), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12255] = 3, - ACTIONS(7926), 1, - anon_sym_LBRACE, - STATE(1638), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12266] = 3, - ACTIONS(7311), 1, - anon_sym_LBRACE, - STATE(1637), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12277] = 3, - ACTIONS(7311), 1, - anon_sym_LBRACE, - STATE(1636), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12288] = 3, - ACTIONS(7311), 1, - anon_sym_LBRACE, - STATE(1470), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12299] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1381), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12310] = 3, - ACTIONS(7702), 1, - anon_sym_minted, - STATE(3293), 1, - sym__minted_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12321] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1365), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12332] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1363), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12343] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2824), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12354] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2173), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12365] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1327), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12376] = 3, - ACTIONS(7309), 1, - anon_sym_LBRACE, - STATE(1632), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12387] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1323), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12398] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2821), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12409] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2820), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12420] = 3, - ACTIONS(7590), 1, - anon_sym_LBRACE, - STATE(1319), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12431] = 3, - ACTIONS(7640), 1, - anon_sym_LBRACE, - STATE(1775), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12442] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(2816), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12453] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1790), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12464] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1608), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12475] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1802), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12486] = 3, - ACTIONS(7702), 1, - anon_sym_minted, - STATE(3233), 1, - sym__minted_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12497] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1246), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12508] = 3, - ACTIONS(7928), 1, - anon_sym_LBRACE, - STATE(1241), 1, - sym__pycode_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12519] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1807), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12530] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2776), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12541] = 3, - ACTIONS(7930), 1, - anon_sym_LBRACE, - STATE(1239), 1, - sym__minted_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12552] = 3, - ACTIONS(7640), 1, - anon_sym_LBRACE, - STATE(1795), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12563] = 3, - ACTIONS(7932), 1, - anon_sym_LBRACE, - STATE(1238), 1, - sym__listing_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12574] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1793), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12585] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1788), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12596] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1787), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12607] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1786), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12618] = 3, - ACTIONS(7934), 1, - anon_sym_LBRACE, - STATE(1237), 1, - sym__verbatim_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12629] = 3, - ACTIONS(4344), 1, - anon_sym_LBRACE, - STATE(1783), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12640] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2774), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12651] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(955), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12662] = 3, - ACTIONS(7307), 1, - anon_sym_LBRACE, - STATE(954), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12673] = 3, - ACTIONS(7343), 1, - anon_sym_LBRACE, - STATE(953), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12684] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2773), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12695] = 3, - ACTIONS(7936), 1, - anon_sym_LBRACE, - STATE(1236), 1, - sym__comment_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12706] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1235), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12717] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(3043), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12728] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3034), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12739] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3033), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12750] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2297), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12761] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2771), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12772] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1234), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12783] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(3021), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12794] = 3, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2769), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12805] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1232), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12816] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2761), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12827] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2759), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12838] = 3, - ACTIONS(7938), 1, - anon_sym_pycode, - STATE(3292), 1, - sym__pycode_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12849] = 3, - ACTIONS(7590), 1, - anon_sym_LBRACE, - STATE(1230), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12860] = 3, - ACTIONS(7335), 1, - anon_sym_LBRACE, - STATE(1221), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12871] = 3, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2524), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12882] = 3, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2437), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12893] = 3, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2422), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12904] = 3, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2581), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12915] = 3, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2590), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12926] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2955), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12937] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2946), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12948] = 3, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2762), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12959] = 3, - ACTIONS(7940), 1, - anon_sym_LBRACE, - STATE(1359), 1, - sym__math_environment_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12970] = 3, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2920), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12981] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2917), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [12992] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2912), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13003] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2911), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13014] = 3, - ACTIONS(7942), 1, - anon_sym_BSLASHend, - STATE(1286), 1, - sym__pycode_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13025] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2717), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13036] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2909), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13047] = 3, - ACTIONS(7916), 1, - anon_sym_comment, - STATE(3283), 1, - sym__comment_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13058] = 3, - ACTIONS(7918), 1, - anon_sym_verbatim, - STATE(3282), 1, - sym__verbatim_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13069] = 3, - ACTIONS(7920), 1, - anon_sym_lstlisting, - STATE(3281), 1, - sym__listing_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13080] = 3, - ACTIONS(7938), 1, - anon_sym_pycode, - STATE(3279), 1, - sym__pycode_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13091] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2234), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13102] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2078), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13113] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(2838), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13124] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2834), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13135] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2831), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13146] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2174), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13157] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(920), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13168] = 3, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(2779), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13179] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2818), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13190] = 3, - ACTIONS(7944), 1, - anon_sym_BSLASHend, - STATE(1227), 1, - sym__listing_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13201] = 3, - ACTIONS(7946), 1, - anon_sym_BSLASHend, - STATE(1391), 1, - sym__verbatim_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13212] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2736), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13223] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2230), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13234] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2733), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13245] = 3, - ACTIONS(7948), 1, - anon_sym_BSLASHend, - STATE(1397), 1, - sym__comment_environment_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13256] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2732), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13267] = 3, - ACTIONS(7598), 1, - anon_sym_LBRACE, - STATE(951), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13278] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(2728), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13289] = 3, - ACTIONS(7938), 1, - anon_sym_pycode, - STATE(3193), 1, - sym__pycode_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13300] = 3, - ACTIONS(7367), 1, - anon_sym_LBRACE, - STATE(1406), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13311] = 3, - ACTIONS(7367), 1, - anon_sym_LBRACE, - STATE(901), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13322] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2754), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13333] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2750), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13344] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2218), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13355] = 3, - ACTIONS(7367), 1, - anon_sym_LBRACE, - STATE(1199), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13366] = 3, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2740), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13377] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2734), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13388] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2720), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13399] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2718), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13410] = 3, - ACTIONS(7367), 1, - anon_sym_LBRACE, - STATE(1117), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13421] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2712), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13432] = 3, - ACTIONS(7916), 1, - anon_sym_comment, - STATE(3265), 1, - sym__comment_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13443] = 3, - ACTIONS(7918), 1, - anon_sym_verbatim, - STATE(3264), 1, - sym__verbatim_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13454] = 3, - ACTIONS(7920), 1, - anon_sym_lstlisting, - STATE(3263), 1, - sym__listing_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13465] = 3, - ACTIONS(7938), 1, - anon_sym_pycode, - STATE(3261), 1, - sym__pycode_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13476] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(2659), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13487] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2652), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13498] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2649), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13509] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2289), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13520] = 3, - ACTIONS(7920), 1, - anon_sym_lstlisting, - STATE(3194), 1, - sym__listing_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13531] = 3, - ACTIONS(7950), 1, - anon_sym_LBRACE, - STATE(1115), 1, - sym_curly_group_key_value, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13542] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2644), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13553] = 3, - ACTIONS(7918), 1, - anon_sym_verbatim, - STATE(3195), 1, - sym__verbatim_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13564] = 3, - ACTIONS(7916), 1, - anon_sym_comment, - STATE(3196), 1, - sym__comment_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13575] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2688), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13586] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2685), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13597] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2684), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13608] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2758), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13619] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2682), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13630] = 3, - ACTIONS(7952), 1, - sym_command_name, - ACTIONS(7954), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13641] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2767), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13652] = 3, - ACTIONS(7331), 1, - anon_sym_LBRACE, - STATE(947), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13663] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1052), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13674] = 3, - ACTIONS(7367), 1, - anon_sym_LBRACE, - STATE(1267), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13685] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2565), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13696] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2563), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13707] = 3, - ACTIONS(7343), 1, - anon_sym_LBRACE, - STATE(946), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13718] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1055), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13729] = 3, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2541), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13740] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2538), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13751] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2534), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13762] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2518), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13773] = 3, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1056), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13784] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2513), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13795] = 3, - ACTIONS(7916), 1, - anon_sym_comment, - STATE(3252), 1, - sym__comment_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13806] = 3, - ACTIONS(7918), 1, - anon_sym_verbatim, - STATE(3251), 1, - sym__verbatim_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13817] = 3, - ACTIONS(7920), 1, - anon_sym_lstlisting, - STATE(3250), 1, - sym__listing_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13828] = 3, - ACTIONS(7938), 1, - anon_sym_pycode, - STATE(3248), 1, - sym__pycode_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13839] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(2426), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13850] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2431), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13861] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2433), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13872] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2140), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13883] = 3, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1067), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13894] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2450), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13905] = 3, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1059), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13916] = 3, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1063), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13927] = 3, - ACTIONS(7303), 1, - anon_sym_LBRACE, - STATE(1065), 1, - sym_curly_group_glob_pattern, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13938] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(2781), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13949] = 3, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1097), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13960] = 3, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(1090), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13971] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2442), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13982] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2444), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [13993] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(941), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14004] = 3, - ACTIONS(7956), 1, - anon_sym_RBRACE, - ACTIONS(7958), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [14015] = 3, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2458), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14026] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2460), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14037] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2462), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14048] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2463), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14059] = 2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7960), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [14068] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2466), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14079] = 3, - ACTIONS(7916), 1, - anon_sym_comment, - STATE(3230), 1, - sym__comment_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14090] = 3, - ACTIONS(7918), 1, - anon_sym_verbatim, - STATE(3229), 1, - sym__verbatim_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14101] = 3, - ACTIONS(7920), 1, - anon_sym_lstlisting, - STATE(3228), 1, - sym__listing_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14112] = 3, - ACTIONS(7938), 1, - anon_sym_pycode, - STATE(3226), 1, - sym__pycode_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14123] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(2510), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14134] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2514), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14145] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2515), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14156] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2227), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14167] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1181), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14178] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2519), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14189] = 2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(6167), 2, - anon_sym_LBRACE, - sym_command_name, - [14198] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1186), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14209] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(930), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14220] = 2, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(7962), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [14229] = 3, - ACTIONS(1072), 1, - anon_sym_LBRACE, - STATE(1261), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14240] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2555), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14251] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2557), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14262] = 3, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(1262), 1, - sym_curly_group_path_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14273] = 3, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2571), 1, - sym_curly_group_impl, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14284] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2573), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14295] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2575), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14306] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2576), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14317] = 3, - ACTIONS(7367), 1, - anon_sym_LBRACE, - STATE(1263), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14328] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2579), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14339] = 3, - ACTIONS(7916), 1, - anon_sym_comment, - STATE(3208), 1, - sym__comment_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14350] = 3, - ACTIONS(7918), 1, - anon_sym_verbatim, - STATE(3186), 1, - sym__verbatim_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14361] = 3, - ACTIONS(7920), 1, - anon_sym_lstlisting, - STATE(3206), 1, - sym__listing_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14372] = 3, - ACTIONS(7938), 1, - anon_sym_pycode, - STATE(3204), 1, - sym__pycode_environment_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14383] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(2621), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14394] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2625), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14405] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2626), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14416] = 3, - ACTIONS(7676), 1, - anon_sym_LBRACE, - STATE(2292), 1, - sym_curly_group_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14427] = 3, - ACTIONS(7335), 1, - anon_sym_LBRACE, - STATE(1268), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14438] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2630), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14449] = 3, - ACTIONS(7367), 1, - anon_sym_LBRACE, - STATE(1269), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14460] = 3, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1272), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14471] = 3, - ACTIONS(7305), 1, - anon_sym_LBRACE, - STATE(938), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14482] = 3, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1276), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14493] = 3, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(1278), 1, - sym_curly_group_path, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14504] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2665), 1, - sym_curly_group, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14515] = 3, - ACTIONS(7297), 1, - anon_sym_LBRACE, - STATE(2667), 1, - sym_curly_group_text, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14526] = 3, - ACTIONS(7964), 1, - anon_sym_LBRACE, - STATE(1281), 1, - sym_curly_group_author_list, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14537] = 2, - ACTIONS(7966), 1, - sym__trivia_raw_env_minted, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14545] = 2, - ACTIONS(7968), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14553] = 2, - ACTIONS(7970), 1, - sym__trivia_raw_env_listing, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14561] = 2, - ACTIONS(7972), 1, - sym__trivia_raw_env_minted, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14569] = 2, - ACTIONS(7974), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14577] = 2, - ACTIONS(7976), 1, - sym__trivia_raw_env_comment, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14585] = 2, - ACTIONS(7978), 1, - sym__trivia_raw_env_verbatim, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14593] = 2, - ACTIONS(7980), 1, - sym__trivia_raw_env_comment, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14601] = 2, - ACTIONS(7982), 1, - sym__trivia_raw_env_verbatim, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14609] = 2, - ACTIONS(7984), 1, - sym__trivia_raw_env_listing, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14617] = 2, - ACTIONS(7986), 1, - sym__trivia_raw_env_minted, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14625] = 2, - ACTIONS(7988), 1, - sym__trivia_raw_env_pycode, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14633] = 2, - ACTIONS(7990), 1, - sym__trivia_raw_env_listing, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14641] = 2, - ACTIONS(7992), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [14649] = 2, - ACTIONS(7994), 1, - sym__trivia_raw_env_minted, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14657] = 2, - ACTIONS(7996), 1, - sym__trivia_raw_env_pycode, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14665] = 2, - ACTIONS(7998), 1, - sym__trivia_raw_env_pycode, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14673] = 2, - ACTIONS(8000), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [14681] = 2, - ACTIONS(8002), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14689] = 2, - ACTIONS(8004), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [14697] = 2, - ACTIONS(8006), 1, - sym__trivia_raw_env_comment, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14705] = 2, - ACTIONS(8008), 1, - sym__trivia_raw_env_verbatim, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14713] = 2, - ACTIONS(8010), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14721] = 2, - ACTIONS(8012), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [14729] = 2, - ACTIONS(8014), 1, - sym__trivia_raw_env_pycode, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14737] = 2, - ACTIONS(8016), 1, - sym__trivia_raw_env_minted, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14745] = 2, - ACTIONS(8018), 1, - sym__trivia_raw_env_listing, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14753] = 2, - ACTIONS(8020), 1, - sym__trivia_raw_env_verbatim, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14761] = 2, - ACTIONS(8022), 1, - sym__trivia_raw_env_comment, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14769] = 2, - ACTIONS(8024), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14777] = 2, - ACTIONS(8026), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14785] = 2, - ACTIONS(8028), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14793] = 2, - ACTIONS(8030), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [14801] = 2, - ACTIONS(8032), 1, - sym__trivia_raw_env_pycode, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14809] = 2, - ACTIONS(8034), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14817] = 2, - ACTIONS(8036), 1, - sym__trivia_raw_env_minted, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14825] = 2, - ACTIONS(8038), 1, - sym__trivia_raw_env_listing, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14833] = 2, - ACTIONS(8040), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [14841] = 2, - ACTIONS(8042), 1, - sym__trivia_raw_env_verbatim, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14849] = 2, - ACTIONS(8044), 1, - sym__trivia_raw_env_comment, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14857] = 2, - ACTIONS(8046), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14865] = 2, - ACTIONS(8048), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [14873] = 2, - ACTIONS(8050), 1, - sym__trivia_raw_env_pycode, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14881] = 2, - ACTIONS(8052), 1, - sym__trivia_raw_env_minted, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14889] = 2, - ACTIONS(8054), 1, - sym__trivia_raw_env_listing, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14897] = 2, - ACTIONS(8056), 1, - sym__trivia_raw_env_verbatim, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14905] = 2, - ACTIONS(8058), 1, - sym__trivia_raw_env_comment, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14913] = 2, - ACTIONS(8060), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14921] = 2, - ACTIONS(8062), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14929] = 2, - ACTIONS(8064), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14937] = 2, - ACTIONS(8066), 1, - sym__trivia_raw_env_comment, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14945] = 2, - ACTIONS(8068), 1, - sym__trivia_raw_env_verbatim, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14953] = 2, - ACTIONS(8070), 1, - sym__trivia_raw_env_listing, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14961] = 2, - ACTIONS(8072), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14969] = 2, - ACTIONS(8074), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14977] = 2, - ACTIONS(8076), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14985] = 2, - ACTIONS(8078), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [14993] = 2, - ACTIONS(8080), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [15001] = 2, - ACTIONS(8082), 1, - sym__trivia_raw_env_minted, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15009] = 2, - ACTIONS(8084), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15017] = 2, - ACTIONS(8086), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [15025] = 2, - ACTIONS(8088), 1, - sym__trivia_raw_env_pycode, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15033] = 2, - ACTIONS(8090), 1, - sym__trivia_raw_env_comment, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15041] = 2, - ACTIONS(8092), 1, - sym__trivia_raw_env_verbatim, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15049] = 2, - ACTIONS(8094), 1, - sym__trivia_raw_env_listing, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15057] = 2, - ACTIONS(8096), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15065] = 2, - ACTIONS(8098), 1, - sym__trivia_raw_env_pycode, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15073] = 2, - ACTIONS(8100), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15081] = 2, - ACTIONS(8102), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15089] = 2, - ACTIONS(8104), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15097] = 2, - ACTIONS(8106), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15105] = 2, - ACTIONS(8108), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15113] = 2, - ACTIONS(8110), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15121] = 2, - ACTIONS(8112), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15129] = 2, - ACTIONS(8114), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15137] = 2, - ACTIONS(8116), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15145] = 2, - ACTIONS(8118), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15153] = 2, - ACTIONS(8120), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [15161] = 2, - ACTIONS(8122), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15169] = 2, - ACTIONS(8124), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15177] = 2, - ACTIONS(8126), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15185] = 2, - ACTIONS(8128), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15193] = 2, - ACTIONS(8130), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15201] = 2, - ACTIONS(8132), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15209] = 2, - ACTIONS(8134), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15217] = 2, - ACTIONS(8136), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15225] = 2, - ACTIONS(8138), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15233] = 2, - ACTIONS(8140), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15241] = 2, - ACTIONS(8142), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15249] = 2, - ACTIONS(8144), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15257] = 2, - ACTIONS(8146), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15265] = 2, - ACTIONS(8148), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15273] = 2, - ACTIONS(8150), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15281] = 2, - ACTIONS(8152), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15289] = 2, - ACTIONS(8154), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15297] = 2, - ACTIONS(8156), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15305] = 2, - ACTIONS(8158), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15313] = 2, - ACTIONS(8160), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15321] = 2, - ACTIONS(8162), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15329] = 2, - ACTIONS(8164), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15337] = 2, - ACTIONS(8166), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15345] = 2, - ACTIONS(8168), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15353] = 2, - ACTIONS(8170), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15361] = 2, - ACTIONS(8172), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15369] = 2, - ACTIONS(8174), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15377] = 2, - ACTIONS(8176), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15385] = 2, - ACTIONS(8178), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15393] = 2, - ACTIONS(8180), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15401] = 2, - ACTIONS(8182), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15409] = 2, - ACTIONS(8184), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15417] = 2, - ACTIONS(8186), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15425] = 2, - ACTIONS(8188), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15433] = 2, - ACTIONS(8190), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15441] = 2, - ACTIONS(8192), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15449] = 2, - ACTIONS(8194), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15457] = 2, - ACTIONS(8196), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15465] = 2, - ACTIONS(8198), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15473] = 2, - ACTIONS(8200), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15481] = 2, - ACTIONS(8202), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15489] = 2, - ACTIONS(8204), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15497] = 2, - ACTIONS(8206), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15505] = 2, - ACTIONS(8208), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15513] = 2, - ACTIONS(8210), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15521] = 2, - ACTIONS(8212), 1, - sym__trivia_raw_env_minted, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15529] = 2, - ACTIONS(8214), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15537] = 2, - ACTIONS(8216), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15545] = 2, - ACTIONS(8218), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15553] = 2, - ACTIONS(8220), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15561] = 2, - ACTIONS(8222), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15569] = 2, - ACTIONS(8224), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15577] = 2, - ACTIONS(8226), 1, - sym_argc, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15585] = 2, - ACTIONS(8228), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15593] = 2, - ACTIONS(8230), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15601] = 2, - ACTIONS(8232), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15609] = 2, - ACTIONS(8234), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15617] = 2, - ACTIONS(8236), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15625] = 2, - ACTIONS(8238), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15633] = 2, - ACTIONS(8240), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15641] = 2, - ACTIONS(8242), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15649] = 2, - ACTIONS(8244), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15657] = 2, - ACTIONS(8246), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15665] = 2, - ACTIONS(8248), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15673] = 2, - ACTIONS(8250), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15681] = 2, - ACTIONS(8252), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15689] = 2, - ACTIONS(8254), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15697] = 2, - ACTIONS(8256), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15705] = 2, - ACTIONS(8258), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15713] = 2, - ACTIONS(8260), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15721] = 2, - ACTIONS(8262), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15729] = 2, - ACTIONS(8264), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15737] = 2, - ACTIONS(8266), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15745] = 2, - ACTIONS(8268), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15753] = 2, - ACTIONS(8270), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15761] = 2, - ACTIONS(8272), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15769] = 2, - ACTIONS(8274), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15777] = 2, - ACTIONS(6155), 1, - sym__trivia_raw_env_comment, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15785] = 2, - ACTIONS(6151), 1, - sym__trivia_raw_env_verbatim, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15793] = 2, - ACTIONS(6147), 1, - sym__trivia_raw_env_listing, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15801] = 2, - ACTIONS(6143), 1, - sym__trivia_raw_env_pycode, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15809] = 2, - ACTIONS(8276), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15817] = 2, - ACTIONS(8278), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15825] = 2, - ACTIONS(8280), 1, - sym_path, - ACTIONS(7185), 2, - sym__whitespace, - sym_line_comment, - [15833] = 2, - ACTIONS(8282), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15841] = 2, - ACTIONS(8284), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15849] = 2, - ACTIONS(8286), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15857] = 2, - ACTIONS(8288), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15865] = 2, - ACTIONS(8290), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15873] = 2, - ACTIONS(8292), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15881] = 2, - ACTIONS(8294), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15889] = 2, - ACTIONS(8296), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15897] = 2, - ACTIONS(8298), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15905] = 2, - ACTIONS(8300), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15913] = 2, - ACTIONS(8302), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15921] = 2, - ACTIONS(8304), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15929] = 2, - ACTIONS(6191), 1, - sym__trivia_raw_env_minted, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15937] = 2, - ACTIONS(8306), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15945] = 2, - ACTIONS(8308), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15953] = 2, - ACTIONS(8310), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15961] = 2, - ACTIONS(8312), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15969] = 2, - ACTIONS(8314), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15977] = 2, - ACTIONS(8316), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15985] = 2, - ACTIONS(8318), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [15993] = 2, - ACTIONS(8320), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [16001] = 2, - ACTIONS(8322), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [16009] = 2, - ACTIONS(8324), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [16017] = 2, - ACTIONS(8326), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [16025] = 2, - ACTIONS(8328), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [16033] = 2, - ACTIONS(8330), 1, - sym_command_name, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, -}; - -static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2006)] = 0, - [SMALL_STATE(2007)] = 32, - [SMALL_STATE(2008)] = 64, - [SMALL_STATE(2009)] = 96, - [SMALL_STATE(2010)] = 128, - [SMALL_STATE(2011)] = 160, - [SMALL_STATE(2012)] = 192, - [SMALL_STATE(2013)] = 224, - [SMALL_STATE(2014)] = 243, - [SMALL_STATE(2015)] = 262, - [SMALL_STATE(2016)] = 281, - [SMALL_STATE(2017)] = 300, - [SMALL_STATE(2018)] = 319, - [SMALL_STATE(2019)] = 338, - [SMALL_STATE(2020)] = 357, - [SMALL_STATE(2021)] = 376, - [SMALL_STATE(2022)] = 395, - [SMALL_STATE(2023)] = 414, - [SMALL_STATE(2024)] = 433, - [SMALL_STATE(2025)] = 452, - [SMALL_STATE(2026)] = 471, - [SMALL_STATE(2027)] = 490, - [SMALL_STATE(2028)] = 509, - [SMALL_STATE(2029)] = 528, - [SMALL_STATE(2030)] = 547, - [SMALL_STATE(2031)] = 566, - [SMALL_STATE(2032)] = 585, - [SMALL_STATE(2033)] = 604, - [SMALL_STATE(2034)] = 623, - [SMALL_STATE(2035)] = 642, - [SMALL_STATE(2036)] = 661, - [SMALL_STATE(2037)] = 680, - [SMALL_STATE(2038)] = 699, - [SMALL_STATE(2039)] = 718, - [SMALL_STATE(2040)] = 737, - [SMALL_STATE(2041)] = 756, - [SMALL_STATE(2042)] = 775, - [SMALL_STATE(2043)] = 794, - [SMALL_STATE(2044)] = 813, - [SMALL_STATE(2045)] = 832, - [SMALL_STATE(2046)] = 851, - [SMALL_STATE(2047)] = 870, - [SMALL_STATE(2048)] = 889, - [SMALL_STATE(2049)] = 908, - [SMALL_STATE(2050)] = 927, - [SMALL_STATE(2051)] = 946, - [SMALL_STATE(2052)] = 965, - [SMALL_STATE(2053)] = 984, - [SMALL_STATE(2054)] = 1003, - [SMALL_STATE(2055)] = 1022, - [SMALL_STATE(2056)] = 1041, - [SMALL_STATE(2057)] = 1060, - [SMALL_STATE(2058)] = 1079, - [SMALL_STATE(2059)] = 1098, - [SMALL_STATE(2060)] = 1117, - [SMALL_STATE(2061)] = 1136, - [SMALL_STATE(2062)] = 1165, - [SMALL_STATE(2063)] = 1184, - [SMALL_STATE(2064)] = 1203, - [SMALL_STATE(2065)] = 1222, - [SMALL_STATE(2066)] = 1240, - [SMALL_STATE(2067)] = 1258, - [SMALL_STATE(2068)] = 1276, - [SMALL_STATE(2069)] = 1296, - [SMALL_STATE(2070)] = 1314, - [SMALL_STATE(2071)] = 1332, - [SMALL_STATE(2072)] = 1350, - [SMALL_STATE(2073)] = 1368, - [SMALL_STATE(2074)] = 1386, - [SMALL_STATE(2075)] = 1404, - [SMALL_STATE(2076)] = 1424, - [SMALL_STATE(2077)] = 1444, - [SMALL_STATE(2078)] = 1462, - [SMALL_STATE(2079)] = 1482, - [SMALL_STATE(2080)] = 1500, - [SMALL_STATE(2081)] = 1518, - [SMALL_STATE(2082)] = 1536, - [SMALL_STATE(2083)] = 1554, - [SMALL_STATE(2084)] = 1574, - [SMALL_STATE(2085)] = 1592, - [SMALL_STATE(2086)] = 1610, - [SMALL_STATE(2087)] = 1630, - [SMALL_STATE(2088)] = 1648, - [SMALL_STATE(2089)] = 1668, - [SMALL_STATE(2090)] = 1686, - [SMALL_STATE(2091)] = 1704, - [SMALL_STATE(2092)] = 1724, - [SMALL_STATE(2093)] = 1742, - [SMALL_STATE(2094)] = 1760, - [SMALL_STATE(2095)] = 1778, - [SMALL_STATE(2096)] = 1796, - [SMALL_STATE(2097)] = 1814, - [SMALL_STATE(2098)] = 1832, - [SMALL_STATE(2099)] = 1850, - [SMALL_STATE(2100)] = 1868, - [SMALL_STATE(2101)] = 1886, - [SMALL_STATE(2102)] = 1904, - [SMALL_STATE(2103)] = 1922, - [SMALL_STATE(2104)] = 1940, - [SMALL_STATE(2105)] = 1958, - [SMALL_STATE(2106)] = 1978, - [SMALL_STATE(2107)] = 1998, - [SMALL_STATE(2108)] = 2016, - [SMALL_STATE(2109)] = 2034, - [SMALL_STATE(2110)] = 2051, - [SMALL_STATE(2111)] = 2068, - [SMALL_STATE(2112)] = 2085, - [SMALL_STATE(2113)] = 2102, - [SMALL_STATE(2114)] = 2119, - [SMALL_STATE(2115)] = 2136, - [SMALL_STATE(2116)] = 2153, - [SMALL_STATE(2117)] = 2170, - [SMALL_STATE(2118)] = 2187, - [SMALL_STATE(2119)] = 2204, - [SMALL_STATE(2120)] = 2221, - [SMALL_STATE(2121)] = 2238, - [SMALL_STATE(2122)] = 2255, - [SMALL_STATE(2123)] = 2272, - [SMALL_STATE(2124)] = 2289, - [SMALL_STATE(2125)] = 2306, - [SMALL_STATE(2126)] = 2323, - [SMALL_STATE(2127)] = 2340, - [SMALL_STATE(2128)] = 2357, - [SMALL_STATE(2129)] = 2374, - [SMALL_STATE(2130)] = 2391, - [SMALL_STATE(2131)] = 2408, - [SMALL_STATE(2132)] = 2425, - [SMALL_STATE(2133)] = 2442, - [SMALL_STATE(2134)] = 2459, - [SMALL_STATE(2135)] = 2476, - [SMALL_STATE(2136)] = 2493, - [SMALL_STATE(2137)] = 2510, - [SMALL_STATE(2138)] = 2527, - [SMALL_STATE(2139)] = 2544, - [SMALL_STATE(2140)] = 2561, - [SMALL_STATE(2141)] = 2578, - [SMALL_STATE(2142)] = 2595, - [SMALL_STATE(2143)] = 2612, - [SMALL_STATE(2144)] = 2629, - [SMALL_STATE(2145)] = 2646, - [SMALL_STATE(2146)] = 2663, - [SMALL_STATE(2147)] = 2680, - [SMALL_STATE(2148)] = 2697, - [SMALL_STATE(2149)] = 2714, - [SMALL_STATE(2150)] = 2731, - [SMALL_STATE(2151)] = 2748, - [SMALL_STATE(2152)] = 2765, - [SMALL_STATE(2153)] = 2782, - [SMALL_STATE(2154)] = 2799, - [SMALL_STATE(2155)] = 2816, - [SMALL_STATE(2156)] = 2833, - [SMALL_STATE(2157)] = 2850, - [SMALL_STATE(2158)] = 2867, - [SMALL_STATE(2159)] = 2884, - [SMALL_STATE(2160)] = 2901, - [SMALL_STATE(2161)] = 2918, - [SMALL_STATE(2162)] = 2935, - [SMALL_STATE(2163)] = 2952, - [SMALL_STATE(2164)] = 2969, - [SMALL_STATE(2165)] = 2986, - [SMALL_STATE(2166)] = 3003, - [SMALL_STATE(2167)] = 3020, - [SMALL_STATE(2168)] = 3037, - [SMALL_STATE(2169)] = 3054, - [SMALL_STATE(2170)] = 3071, - [SMALL_STATE(2171)] = 3088, - [SMALL_STATE(2172)] = 3105, - [SMALL_STATE(2173)] = 3122, - [SMALL_STATE(2174)] = 3139, - [SMALL_STATE(2175)] = 3156, - [SMALL_STATE(2176)] = 3173, - [SMALL_STATE(2177)] = 3190, - [SMALL_STATE(2178)] = 3207, - [SMALL_STATE(2179)] = 3224, - [SMALL_STATE(2180)] = 3241, - [SMALL_STATE(2181)] = 3258, - [SMALL_STATE(2182)] = 3275, - [SMALL_STATE(2183)] = 3292, - [SMALL_STATE(2184)] = 3309, - [SMALL_STATE(2185)] = 3326, - [SMALL_STATE(2186)] = 3343, - [SMALL_STATE(2187)] = 3360, - [SMALL_STATE(2188)] = 3377, - [SMALL_STATE(2189)] = 3394, - [SMALL_STATE(2190)] = 3411, - [SMALL_STATE(2191)] = 3428, - [SMALL_STATE(2192)] = 3445, - [SMALL_STATE(2193)] = 3462, - [SMALL_STATE(2194)] = 3479, - [SMALL_STATE(2195)] = 3496, - [SMALL_STATE(2196)] = 3513, - [SMALL_STATE(2197)] = 3530, - [SMALL_STATE(2198)] = 3547, - [SMALL_STATE(2199)] = 3564, - [SMALL_STATE(2200)] = 3581, - [SMALL_STATE(2201)] = 3598, - [SMALL_STATE(2202)] = 3615, - [SMALL_STATE(2203)] = 3632, - [SMALL_STATE(2204)] = 3649, - [SMALL_STATE(2205)] = 3666, - [SMALL_STATE(2206)] = 3683, - [SMALL_STATE(2207)] = 3700, - [SMALL_STATE(2208)] = 3717, - [SMALL_STATE(2209)] = 3734, - [SMALL_STATE(2210)] = 3751, - [SMALL_STATE(2211)] = 3768, - [SMALL_STATE(2212)] = 3785, - [SMALL_STATE(2213)] = 3802, - [SMALL_STATE(2214)] = 3819, - [SMALL_STATE(2215)] = 3836, - [SMALL_STATE(2216)] = 3853, - [SMALL_STATE(2217)] = 3870, - [SMALL_STATE(2218)] = 3887, - [SMALL_STATE(2219)] = 3904, - [SMALL_STATE(2220)] = 3921, - [SMALL_STATE(2221)] = 3938, - [SMALL_STATE(2222)] = 3955, - [SMALL_STATE(2223)] = 3972, - [SMALL_STATE(2224)] = 3989, - [SMALL_STATE(2225)] = 4006, - [SMALL_STATE(2226)] = 4023, - [SMALL_STATE(2227)] = 4040, - [SMALL_STATE(2228)] = 4057, - [SMALL_STATE(2229)] = 4074, - [SMALL_STATE(2230)] = 4091, - [SMALL_STATE(2231)] = 4108, - [SMALL_STATE(2232)] = 4125, - [SMALL_STATE(2233)] = 4142, - [SMALL_STATE(2234)] = 4159, - [SMALL_STATE(2235)] = 4176, - [SMALL_STATE(2236)] = 4193, - [SMALL_STATE(2237)] = 4210, - [SMALL_STATE(2238)] = 4227, - [SMALL_STATE(2239)] = 4244, - [SMALL_STATE(2240)] = 4261, - [SMALL_STATE(2241)] = 4278, - [SMALL_STATE(2242)] = 4295, - [SMALL_STATE(2243)] = 4312, - [SMALL_STATE(2244)] = 4329, - [SMALL_STATE(2245)] = 4346, - [SMALL_STATE(2246)] = 4363, - [SMALL_STATE(2247)] = 4380, - [SMALL_STATE(2248)] = 4397, - [SMALL_STATE(2249)] = 4414, - [SMALL_STATE(2250)] = 4431, - [SMALL_STATE(2251)] = 4448, - [SMALL_STATE(2252)] = 4465, - [SMALL_STATE(2253)] = 4482, - [SMALL_STATE(2254)] = 4499, - [SMALL_STATE(2255)] = 4516, - [SMALL_STATE(2256)] = 4533, - [SMALL_STATE(2257)] = 4550, - [SMALL_STATE(2258)] = 4567, - [SMALL_STATE(2259)] = 4584, - [SMALL_STATE(2260)] = 4601, - [SMALL_STATE(2261)] = 4618, - [SMALL_STATE(2262)] = 4635, - [SMALL_STATE(2263)] = 4652, - [SMALL_STATE(2264)] = 4669, - [SMALL_STATE(2265)] = 4686, - [SMALL_STATE(2266)] = 4703, - [SMALL_STATE(2267)] = 4720, - [SMALL_STATE(2268)] = 4737, - [SMALL_STATE(2269)] = 4754, - [SMALL_STATE(2270)] = 4771, - [SMALL_STATE(2271)] = 4788, - [SMALL_STATE(2272)] = 4805, - [SMALL_STATE(2273)] = 4822, - [SMALL_STATE(2274)] = 4839, - [SMALL_STATE(2275)] = 4856, - [SMALL_STATE(2276)] = 4873, - [SMALL_STATE(2277)] = 4890, - [SMALL_STATE(2278)] = 4907, - [SMALL_STATE(2279)] = 4924, - [SMALL_STATE(2280)] = 4941, - [SMALL_STATE(2281)] = 4958, - [SMALL_STATE(2282)] = 4975, - [SMALL_STATE(2283)] = 4992, - [SMALL_STATE(2284)] = 5009, - [SMALL_STATE(2285)] = 5026, - [SMALL_STATE(2286)] = 5043, - [SMALL_STATE(2287)] = 5060, - [SMALL_STATE(2288)] = 5077, - [SMALL_STATE(2289)] = 5094, - [SMALL_STATE(2290)] = 5111, - [SMALL_STATE(2291)] = 5128, - [SMALL_STATE(2292)] = 5145, - [SMALL_STATE(2293)] = 5162, - [SMALL_STATE(2294)] = 5179, - [SMALL_STATE(2295)] = 5196, - [SMALL_STATE(2296)] = 5213, - [SMALL_STATE(2297)] = 5230, - [SMALL_STATE(2298)] = 5247, - [SMALL_STATE(2299)] = 5264, - [SMALL_STATE(2300)] = 5281, - [SMALL_STATE(2301)] = 5295, - [SMALL_STATE(2302)] = 5309, - [SMALL_STATE(2303)] = 5323, - [SMALL_STATE(2304)] = 5337, - [SMALL_STATE(2305)] = 5351, - [SMALL_STATE(2306)] = 5365, - [SMALL_STATE(2307)] = 5379, - [SMALL_STATE(2308)] = 5393, - [SMALL_STATE(2309)] = 5407, - [SMALL_STATE(2310)] = 5421, - [SMALL_STATE(2311)] = 5435, - [SMALL_STATE(2312)] = 5449, - [SMALL_STATE(2313)] = 5461, - [SMALL_STATE(2314)] = 5475, - [SMALL_STATE(2315)] = 5489, - [SMALL_STATE(2316)] = 5503, - [SMALL_STATE(2317)] = 5517, - [SMALL_STATE(2318)] = 5531, - [SMALL_STATE(2319)] = 5545, - [SMALL_STATE(2320)] = 5559, - [SMALL_STATE(2321)] = 5573, - [SMALL_STATE(2322)] = 5587, - [SMALL_STATE(2323)] = 5601, - [SMALL_STATE(2324)] = 5615, - [SMALL_STATE(2325)] = 5629, - [SMALL_STATE(2326)] = 5643, - [SMALL_STATE(2327)] = 5657, - [SMALL_STATE(2328)] = 5671, - [SMALL_STATE(2329)] = 5685, - [SMALL_STATE(2330)] = 5699, - [SMALL_STATE(2331)] = 5713, - [SMALL_STATE(2332)] = 5727, - [SMALL_STATE(2333)] = 5741, - [SMALL_STATE(2334)] = 5751, - [SMALL_STATE(2335)] = 5765, - [SMALL_STATE(2336)] = 5779, - [SMALL_STATE(2337)] = 5793, - [SMALL_STATE(2338)] = 5807, - [SMALL_STATE(2339)] = 5821, - [SMALL_STATE(2340)] = 5835, - [SMALL_STATE(2341)] = 5849, - [SMALL_STATE(2342)] = 5861, - [SMALL_STATE(2343)] = 5875, - [SMALL_STATE(2344)] = 5889, - [SMALL_STATE(2345)] = 5903, - [SMALL_STATE(2346)] = 5917, - [SMALL_STATE(2347)] = 5931, - [SMALL_STATE(2348)] = 5945, - [SMALL_STATE(2349)] = 5959, - [SMALL_STATE(2350)] = 5969, - [SMALL_STATE(2351)] = 5983, - [SMALL_STATE(2352)] = 5997, - [SMALL_STATE(2353)] = 6009, - [SMALL_STATE(2354)] = 6023, - [SMALL_STATE(2355)] = 6037, - [SMALL_STATE(2356)] = 6051, - [SMALL_STATE(2357)] = 6065, - [SMALL_STATE(2358)] = 6077, - [SMALL_STATE(2359)] = 6091, - [SMALL_STATE(2360)] = 6105, - [SMALL_STATE(2361)] = 6119, - [SMALL_STATE(2362)] = 6133, - [SMALL_STATE(2363)] = 6147, - [SMALL_STATE(2364)] = 6161, - [SMALL_STATE(2365)] = 6171, - [SMALL_STATE(2366)] = 6181, - [SMALL_STATE(2367)] = 6195, - [SMALL_STATE(2368)] = 6209, - [SMALL_STATE(2369)] = 6223, - [SMALL_STATE(2370)] = 6237, - [SMALL_STATE(2371)] = 6251, - [SMALL_STATE(2372)] = 6265, - [SMALL_STATE(2373)] = 6279, - [SMALL_STATE(2374)] = 6293, - [SMALL_STATE(2375)] = 6307, - [SMALL_STATE(2376)] = 6321, - [SMALL_STATE(2377)] = 6335, - [SMALL_STATE(2378)] = 6349, - [SMALL_STATE(2379)] = 6363, - [SMALL_STATE(2380)] = 6377, - [SMALL_STATE(2381)] = 6391, - [SMALL_STATE(2382)] = 6405, - [SMALL_STATE(2383)] = 6419, - [SMALL_STATE(2384)] = 6433, - [SMALL_STATE(2385)] = 6447, - [SMALL_STATE(2386)] = 6461, - [SMALL_STATE(2387)] = 6475, - [SMALL_STATE(2388)] = 6489, - [SMALL_STATE(2389)] = 6503, - [SMALL_STATE(2390)] = 6517, - [SMALL_STATE(2391)] = 6531, - [SMALL_STATE(2392)] = 6545, - [SMALL_STATE(2393)] = 6559, - [SMALL_STATE(2394)] = 6573, - [SMALL_STATE(2395)] = 6587, - [SMALL_STATE(2396)] = 6601, - [SMALL_STATE(2397)] = 6615, - [SMALL_STATE(2398)] = 6629, - [SMALL_STATE(2399)] = 6643, - [SMALL_STATE(2400)] = 6657, - [SMALL_STATE(2401)] = 6671, - [SMALL_STATE(2402)] = 6685, - [SMALL_STATE(2403)] = 6699, - [SMALL_STATE(2404)] = 6713, - [SMALL_STATE(2405)] = 6727, - [SMALL_STATE(2406)] = 6741, - [SMALL_STATE(2407)] = 6755, - [SMALL_STATE(2408)] = 6769, - [SMALL_STATE(2409)] = 6783, - [SMALL_STATE(2410)] = 6797, - [SMALL_STATE(2411)] = 6811, - [SMALL_STATE(2412)] = 6825, - [SMALL_STATE(2413)] = 6839, - [SMALL_STATE(2414)] = 6853, - [SMALL_STATE(2415)] = 6867, - [SMALL_STATE(2416)] = 6878, - [SMALL_STATE(2417)] = 6889, - [SMALL_STATE(2418)] = 6900, - [SMALL_STATE(2419)] = 6911, - [SMALL_STATE(2420)] = 6922, - [SMALL_STATE(2421)] = 6933, - [SMALL_STATE(2422)] = 6944, - [SMALL_STATE(2423)] = 6955, - [SMALL_STATE(2424)] = 6966, - [SMALL_STATE(2425)] = 6977, - [SMALL_STATE(2426)] = 6988, - [SMALL_STATE(2427)] = 6999, - [SMALL_STATE(2428)] = 7010, - [SMALL_STATE(2429)] = 7021, - [SMALL_STATE(2430)] = 7032, - [SMALL_STATE(2431)] = 7043, - [SMALL_STATE(2432)] = 7054, - [SMALL_STATE(2433)] = 7065, - [SMALL_STATE(2434)] = 7076, - [SMALL_STATE(2435)] = 7087, - [SMALL_STATE(2436)] = 7098, - [SMALL_STATE(2437)] = 7109, - [SMALL_STATE(2438)] = 7120, - [SMALL_STATE(2439)] = 7131, - [SMALL_STATE(2440)] = 7142, - [SMALL_STATE(2441)] = 7153, - [SMALL_STATE(2442)] = 7164, - [SMALL_STATE(2443)] = 7175, - [SMALL_STATE(2444)] = 7186, - [SMALL_STATE(2445)] = 7197, - [SMALL_STATE(2446)] = 7208, - [SMALL_STATE(2447)] = 7219, - [SMALL_STATE(2448)] = 7230, - [SMALL_STATE(2449)] = 7241, - [SMALL_STATE(2450)] = 7252, - [SMALL_STATE(2451)] = 7263, - [SMALL_STATE(2452)] = 7274, - [SMALL_STATE(2453)] = 7285, - [SMALL_STATE(2454)] = 7296, - [SMALL_STATE(2455)] = 7307, - [SMALL_STATE(2456)] = 7318, - [SMALL_STATE(2457)] = 7329, - [SMALL_STATE(2458)] = 7340, - [SMALL_STATE(2459)] = 7351, - [SMALL_STATE(2460)] = 7362, - [SMALL_STATE(2461)] = 7373, - [SMALL_STATE(2462)] = 7384, - [SMALL_STATE(2463)] = 7395, - [SMALL_STATE(2464)] = 7406, - [SMALL_STATE(2465)] = 7417, - [SMALL_STATE(2466)] = 7428, - [SMALL_STATE(2467)] = 7439, - [SMALL_STATE(2468)] = 7450, - [SMALL_STATE(2469)] = 7461, - [SMALL_STATE(2470)] = 7472, - [SMALL_STATE(2471)] = 7483, - [SMALL_STATE(2472)] = 7494, - [SMALL_STATE(2473)] = 7505, - [SMALL_STATE(2474)] = 7516, - [SMALL_STATE(2475)] = 7527, - [SMALL_STATE(2476)] = 7538, - [SMALL_STATE(2477)] = 7549, - [SMALL_STATE(2478)] = 7560, - [SMALL_STATE(2479)] = 7571, - [SMALL_STATE(2480)] = 7582, - [SMALL_STATE(2481)] = 7593, - [SMALL_STATE(2482)] = 7604, - [SMALL_STATE(2483)] = 7615, - [SMALL_STATE(2484)] = 7626, - [SMALL_STATE(2485)] = 7637, - [SMALL_STATE(2486)] = 7648, - [SMALL_STATE(2487)] = 7659, - [SMALL_STATE(2488)] = 7670, - [SMALL_STATE(2489)] = 7681, - [SMALL_STATE(2490)] = 7692, - [SMALL_STATE(2491)] = 7703, - [SMALL_STATE(2492)] = 7714, - [SMALL_STATE(2493)] = 7725, - [SMALL_STATE(2494)] = 7736, - [SMALL_STATE(2495)] = 7747, - [SMALL_STATE(2496)] = 7758, - [SMALL_STATE(2497)] = 7769, - [SMALL_STATE(2498)] = 7780, - [SMALL_STATE(2499)] = 7791, - [SMALL_STATE(2500)] = 7802, - [SMALL_STATE(2501)] = 7813, - [SMALL_STATE(2502)] = 7824, - [SMALL_STATE(2503)] = 7835, - [SMALL_STATE(2504)] = 7846, - [SMALL_STATE(2505)] = 7857, - [SMALL_STATE(2506)] = 7868, - [SMALL_STATE(2507)] = 7879, - [SMALL_STATE(2508)] = 7890, - [SMALL_STATE(2509)] = 7901, - [SMALL_STATE(2510)] = 7912, - [SMALL_STATE(2511)] = 7923, - [SMALL_STATE(2512)] = 7934, - [SMALL_STATE(2513)] = 7945, - [SMALL_STATE(2514)] = 7956, - [SMALL_STATE(2515)] = 7967, - [SMALL_STATE(2516)] = 7978, - [SMALL_STATE(2517)] = 7989, - [SMALL_STATE(2518)] = 8000, - [SMALL_STATE(2519)] = 8011, - [SMALL_STATE(2520)] = 8022, - [SMALL_STATE(2521)] = 8033, - [SMALL_STATE(2522)] = 8044, - [SMALL_STATE(2523)] = 8055, - [SMALL_STATE(2524)] = 8066, - [SMALL_STATE(2525)] = 8077, - [SMALL_STATE(2526)] = 8088, - [SMALL_STATE(2527)] = 8099, - [SMALL_STATE(2528)] = 8110, - [SMALL_STATE(2529)] = 8121, - [SMALL_STATE(2530)] = 8132, - [SMALL_STATE(2531)] = 8143, - [SMALL_STATE(2532)] = 8154, - [SMALL_STATE(2533)] = 8165, - [SMALL_STATE(2534)] = 8176, - [SMALL_STATE(2535)] = 8187, - [SMALL_STATE(2536)] = 8198, - [SMALL_STATE(2537)] = 8209, - [SMALL_STATE(2538)] = 8220, - [SMALL_STATE(2539)] = 8231, - [SMALL_STATE(2540)] = 8242, - [SMALL_STATE(2541)] = 8253, - [SMALL_STATE(2542)] = 8264, - [SMALL_STATE(2543)] = 8275, - [SMALL_STATE(2544)] = 8286, - [SMALL_STATE(2545)] = 8297, - [SMALL_STATE(2546)] = 8308, - [SMALL_STATE(2547)] = 8319, - [SMALL_STATE(2548)] = 8330, - [SMALL_STATE(2549)] = 8341, - [SMALL_STATE(2550)] = 8352, - [SMALL_STATE(2551)] = 8363, - [SMALL_STATE(2552)] = 8374, - [SMALL_STATE(2553)] = 8385, - [SMALL_STATE(2554)] = 8396, - [SMALL_STATE(2555)] = 8407, - [SMALL_STATE(2556)] = 8418, - [SMALL_STATE(2557)] = 8429, - [SMALL_STATE(2558)] = 8440, - [SMALL_STATE(2559)] = 8451, - [SMALL_STATE(2560)] = 8462, - [SMALL_STATE(2561)] = 8473, - [SMALL_STATE(2562)] = 8484, - [SMALL_STATE(2563)] = 8495, - [SMALL_STATE(2564)] = 8506, - [SMALL_STATE(2565)] = 8517, - [SMALL_STATE(2566)] = 8528, - [SMALL_STATE(2567)] = 8539, - [SMALL_STATE(2568)] = 8550, - [SMALL_STATE(2569)] = 8561, - [SMALL_STATE(2570)] = 8572, - [SMALL_STATE(2571)] = 8583, - [SMALL_STATE(2572)] = 8594, - [SMALL_STATE(2573)] = 8605, - [SMALL_STATE(2574)] = 8616, - [SMALL_STATE(2575)] = 8627, - [SMALL_STATE(2576)] = 8638, - [SMALL_STATE(2577)] = 8649, - [SMALL_STATE(2578)] = 8660, - [SMALL_STATE(2579)] = 8671, - [SMALL_STATE(2580)] = 8682, - [SMALL_STATE(2581)] = 8693, - [SMALL_STATE(2582)] = 8704, - [SMALL_STATE(2583)] = 8715, - [SMALL_STATE(2584)] = 8726, - [SMALL_STATE(2585)] = 8737, - [SMALL_STATE(2586)] = 8748, - [SMALL_STATE(2587)] = 8759, - [SMALL_STATE(2588)] = 8770, - [SMALL_STATE(2589)] = 8781, - [SMALL_STATE(2590)] = 8792, - [SMALL_STATE(2591)] = 8803, - [SMALL_STATE(2592)] = 8814, - [SMALL_STATE(2593)] = 8825, - [SMALL_STATE(2594)] = 8836, - [SMALL_STATE(2595)] = 8847, - [SMALL_STATE(2596)] = 8858, - [SMALL_STATE(2597)] = 8869, - [SMALL_STATE(2598)] = 8880, - [SMALL_STATE(2599)] = 8891, - [SMALL_STATE(2600)] = 8902, - [SMALL_STATE(2601)] = 8913, - [SMALL_STATE(2602)] = 8924, - [SMALL_STATE(2603)] = 8935, - [SMALL_STATE(2604)] = 8946, - [SMALL_STATE(2605)] = 8957, - [SMALL_STATE(2606)] = 8968, - [SMALL_STATE(2607)] = 8979, - [SMALL_STATE(2608)] = 8990, - [SMALL_STATE(2609)] = 9001, - [SMALL_STATE(2610)] = 9012, - [SMALL_STATE(2611)] = 9023, - [SMALL_STATE(2612)] = 9034, - [SMALL_STATE(2613)] = 9045, - [SMALL_STATE(2614)] = 9056, - [SMALL_STATE(2615)] = 9067, - [SMALL_STATE(2616)] = 9078, - [SMALL_STATE(2617)] = 9089, - [SMALL_STATE(2618)] = 9100, - [SMALL_STATE(2619)] = 9111, - [SMALL_STATE(2620)] = 9122, - [SMALL_STATE(2621)] = 9133, - [SMALL_STATE(2622)] = 9144, - [SMALL_STATE(2623)] = 9155, - [SMALL_STATE(2624)] = 9166, - [SMALL_STATE(2625)] = 9177, - [SMALL_STATE(2626)] = 9188, - [SMALL_STATE(2627)] = 9199, - [SMALL_STATE(2628)] = 9210, - [SMALL_STATE(2629)] = 9221, - [SMALL_STATE(2630)] = 9232, - [SMALL_STATE(2631)] = 9243, - [SMALL_STATE(2632)] = 9254, - [SMALL_STATE(2633)] = 9265, - [SMALL_STATE(2634)] = 9276, - [SMALL_STATE(2635)] = 9287, - [SMALL_STATE(2636)] = 9298, - [SMALL_STATE(2637)] = 9309, - [SMALL_STATE(2638)] = 9320, - [SMALL_STATE(2639)] = 9331, - [SMALL_STATE(2640)] = 9342, - [SMALL_STATE(2641)] = 9353, - [SMALL_STATE(2642)] = 9364, - [SMALL_STATE(2643)] = 9375, - [SMALL_STATE(2644)] = 9386, - [SMALL_STATE(2645)] = 9397, - [SMALL_STATE(2646)] = 9408, - [SMALL_STATE(2647)] = 9419, - [SMALL_STATE(2648)] = 9430, - [SMALL_STATE(2649)] = 9441, - [SMALL_STATE(2650)] = 9452, - [SMALL_STATE(2651)] = 9463, - [SMALL_STATE(2652)] = 9474, - [SMALL_STATE(2653)] = 9485, - [SMALL_STATE(2654)] = 9496, - [SMALL_STATE(2655)] = 9507, - [SMALL_STATE(2656)] = 9518, - [SMALL_STATE(2657)] = 9529, - [SMALL_STATE(2658)] = 9540, - [SMALL_STATE(2659)] = 9551, - [SMALL_STATE(2660)] = 9562, - [SMALL_STATE(2661)] = 9573, - [SMALL_STATE(2662)] = 9584, - [SMALL_STATE(2663)] = 9595, - [SMALL_STATE(2664)] = 9606, - [SMALL_STATE(2665)] = 9617, - [SMALL_STATE(2666)] = 9628, - [SMALL_STATE(2667)] = 9639, - [SMALL_STATE(2668)] = 9650, - [SMALL_STATE(2669)] = 9661, - [SMALL_STATE(2670)] = 9672, - [SMALL_STATE(2671)] = 9683, - [SMALL_STATE(2672)] = 9694, - [SMALL_STATE(2673)] = 9705, - [SMALL_STATE(2674)] = 9716, - [SMALL_STATE(2675)] = 9727, - [SMALL_STATE(2676)] = 9738, - [SMALL_STATE(2677)] = 9749, - [SMALL_STATE(2678)] = 9760, - [SMALL_STATE(2679)] = 9771, - [SMALL_STATE(2680)] = 9782, - [SMALL_STATE(2681)] = 9793, - [SMALL_STATE(2682)] = 9804, - [SMALL_STATE(2683)] = 9815, - [SMALL_STATE(2684)] = 9826, - [SMALL_STATE(2685)] = 9837, - [SMALL_STATE(2686)] = 9848, - [SMALL_STATE(2687)] = 9859, - [SMALL_STATE(2688)] = 9870, - [SMALL_STATE(2689)] = 9881, - [SMALL_STATE(2690)] = 9892, - [SMALL_STATE(2691)] = 9903, - [SMALL_STATE(2692)] = 9914, - [SMALL_STATE(2693)] = 9925, - [SMALL_STATE(2694)] = 9936, - [SMALL_STATE(2695)] = 9947, - [SMALL_STATE(2696)] = 9958, - [SMALL_STATE(2697)] = 9969, - [SMALL_STATE(2698)] = 9980, - [SMALL_STATE(2699)] = 9991, - [SMALL_STATE(2700)] = 10002, - [SMALL_STATE(2701)] = 10013, - [SMALL_STATE(2702)] = 10024, - [SMALL_STATE(2703)] = 10035, - [SMALL_STATE(2704)] = 10046, - [SMALL_STATE(2705)] = 10057, - [SMALL_STATE(2706)] = 10068, - [SMALL_STATE(2707)] = 10079, - [SMALL_STATE(2708)] = 10090, - [SMALL_STATE(2709)] = 10101, - [SMALL_STATE(2710)] = 10112, - [SMALL_STATE(2711)] = 10123, - [SMALL_STATE(2712)] = 10134, - [SMALL_STATE(2713)] = 10145, - [SMALL_STATE(2714)] = 10156, - [SMALL_STATE(2715)] = 10167, - [SMALL_STATE(2716)] = 10178, - [SMALL_STATE(2717)] = 10189, - [SMALL_STATE(2718)] = 10200, - [SMALL_STATE(2719)] = 10211, - [SMALL_STATE(2720)] = 10222, - [SMALL_STATE(2721)] = 10233, - [SMALL_STATE(2722)] = 10244, - [SMALL_STATE(2723)] = 10255, - [SMALL_STATE(2724)] = 10266, - [SMALL_STATE(2725)] = 10277, - [SMALL_STATE(2726)] = 10288, - [SMALL_STATE(2727)] = 10299, - [SMALL_STATE(2728)] = 10310, - [SMALL_STATE(2729)] = 10321, - [SMALL_STATE(2730)] = 10332, - [SMALL_STATE(2731)] = 10343, - [SMALL_STATE(2732)] = 10354, - [SMALL_STATE(2733)] = 10365, - [SMALL_STATE(2734)] = 10376, - [SMALL_STATE(2735)] = 10387, - [SMALL_STATE(2736)] = 10398, - [SMALL_STATE(2737)] = 10409, - [SMALL_STATE(2738)] = 10420, - [SMALL_STATE(2739)] = 10431, - [SMALL_STATE(2740)] = 10442, - [SMALL_STATE(2741)] = 10453, - [SMALL_STATE(2742)] = 10464, - [SMALL_STATE(2743)] = 10475, - [SMALL_STATE(2744)] = 10486, - [SMALL_STATE(2745)] = 10497, - [SMALL_STATE(2746)] = 10508, - [SMALL_STATE(2747)] = 10519, - [SMALL_STATE(2748)] = 10530, - [SMALL_STATE(2749)] = 10541, - [SMALL_STATE(2750)] = 10552, - [SMALL_STATE(2751)] = 10563, - [SMALL_STATE(2752)] = 10574, - [SMALL_STATE(2753)] = 10585, - [SMALL_STATE(2754)] = 10596, - [SMALL_STATE(2755)] = 10607, - [SMALL_STATE(2756)] = 10618, - [SMALL_STATE(2757)] = 10629, - [SMALL_STATE(2758)] = 10640, - [SMALL_STATE(2759)] = 10651, - [SMALL_STATE(2760)] = 10662, - [SMALL_STATE(2761)] = 10673, - [SMALL_STATE(2762)] = 10684, - [SMALL_STATE(2763)] = 10695, - [SMALL_STATE(2764)] = 10706, - [SMALL_STATE(2765)] = 10717, - [SMALL_STATE(2766)] = 10728, - [SMALL_STATE(2767)] = 10739, - [SMALL_STATE(2768)] = 10750, - [SMALL_STATE(2769)] = 10761, - [SMALL_STATE(2770)] = 10772, - [SMALL_STATE(2771)] = 10783, - [SMALL_STATE(2772)] = 10794, - [SMALL_STATE(2773)] = 10805, - [SMALL_STATE(2774)] = 10816, - [SMALL_STATE(2775)] = 10827, - [SMALL_STATE(2776)] = 10838, - [SMALL_STATE(2777)] = 10849, - [SMALL_STATE(2778)] = 10860, - [SMALL_STATE(2779)] = 10871, - [SMALL_STATE(2780)] = 10882, - [SMALL_STATE(2781)] = 10893, - [SMALL_STATE(2782)] = 10904, - [SMALL_STATE(2783)] = 10915, - [SMALL_STATE(2784)] = 10926, - [SMALL_STATE(2785)] = 10937, - [SMALL_STATE(2786)] = 10948, - [SMALL_STATE(2787)] = 10959, - [SMALL_STATE(2788)] = 10970, - [SMALL_STATE(2789)] = 10981, - [SMALL_STATE(2790)] = 10992, - [SMALL_STATE(2791)] = 11003, - [SMALL_STATE(2792)] = 11014, - [SMALL_STATE(2793)] = 11025, - [SMALL_STATE(2794)] = 11036, - [SMALL_STATE(2795)] = 11047, - [SMALL_STATE(2796)] = 11058, - [SMALL_STATE(2797)] = 11069, - [SMALL_STATE(2798)] = 11080, - [SMALL_STATE(2799)] = 11091, - [SMALL_STATE(2800)] = 11102, - [SMALL_STATE(2801)] = 11113, - [SMALL_STATE(2802)] = 11124, - [SMALL_STATE(2803)] = 11135, - [SMALL_STATE(2804)] = 11146, - [SMALL_STATE(2805)] = 11157, - [SMALL_STATE(2806)] = 11168, - [SMALL_STATE(2807)] = 11179, - [SMALL_STATE(2808)] = 11190, - [SMALL_STATE(2809)] = 11201, - [SMALL_STATE(2810)] = 11212, - [SMALL_STATE(2811)] = 11223, - [SMALL_STATE(2812)] = 11234, - [SMALL_STATE(2813)] = 11245, - [SMALL_STATE(2814)] = 11256, - [SMALL_STATE(2815)] = 11267, - [SMALL_STATE(2816)] = 11278, - [SMALL_STATE(2817)] = 11289, - [SMALL_STATE(2818)] = 11300, - [SMALL_STATE(2819)] = 11311, - [SMALL_STATE(2820)] = 11320, - [SMALL_STATE(2821)] = 11331, - [SMALL_STATE(2822)] = 11342, - [SMALL_STATE(2823)] = 11353, - [SMALL_STATE(2824)] = 11364, - [SMALL_STATE(2825)] = 11375, - [SMALL_STATE(2826)] = 11386, - [SMALL_STATE(2827)] = 11397, - [SMALL_STATE(2828)] = 11408, - [SMALL_STATE(2829)] = 11419, - [SMALL_STATE(2830)] = 11430, - [SMALL_STATE(2831)] = 11441, - [SMALL_STATE(2832)] = 11452, - [SMALL_STATE(2833)] = 11463, - [SMALL_STATE(2834)] = 11474, - [SMALL_STATE(2835)] = 11485, - [SMALL_STATE(2836)] = 11496, - [SMALL_STATE(2837)] = 11507, - [SMALL_STATE(2838)] = 11518, - [SMALL_STATE(2839)] = 11529, - [SMALL_STATE(2840)] = 11540, - [SMALL_STATE(2841)] = 11551, - [SMALL_STATE(2842)] = 11562, - [SMALL_STATE(2843)] = 11573, - [SMALL_STATE(2844)] = 11584, - [SMALL_STATE(2845)] = 11595, - [SMALL_STATE(2846)] = 11606, - [SMALL_STATE(2847)] = 11617, - [SMALL_STATE(2848)] = 11628, - [SMALL_STATE(2849)] = 11639, - [SMALL_STATE(2850)] = 11650, - [SMALL_STATE(2851)] = 11661, - [SMALL_STATE(2852)] = 11672, - [SMALL_STATE(2853)] = 11683, - [SMALL_STATE(2854)] = 11694, - [SMALL_STATE(2855)] = 11705, - [SMALL_STATE(2856)] = 11716, - [SMALL_STATE(2857)] = 11727, - [SMALL_STATE(2858)] = 11738, - [SMALL_STATE(2859)] = 11749, - [SMALL_STATE(2860)] = 11760, - [SMALL_STATE(2861)] = 11771, - [SMALL_STATE(2862)] = 11782, - [SMALL_STATE(2863)] = 11793, - [SMALL_STATE(2864)] = 11804, - [SMALL_STATE(2865)] = 11815, - [SMALL_STATE(2866)] = 11826, - [SMALL_STATE(2867)] = 11837, - [SMALL_STATE(2868)] = 11848, - [SMALL_STATE(2869)] = 11859, - [SMALL_STATE(2870)] = 11870, - [SMALL_STATE(2871)] = 11881, - [SMALL_STATE(2872)] = 11892, - [SMALL_STATE(2873)] = 11903, - [SMALL_STATE(2874)] = 11914, - [SMALL_STATE(2875)] = 11925, - [SMALL_STATE(2876)] = 11936, - [SMALL_STATE(2877)] = 11947, - [SMALL_STATE(2878)] = 11958, - [SMALL_STATE(2879)] = 11969, - [SMALL_STATE(2880)] = 11980, - [SMALL_STATE(2881)] = 11991, - [SMALL_STATE(2882)] = 12002, - [SMALL_STATE(2883)] = 12013, - [SMALL_STATE(2884)] = 12024, - [SMALL_STATE(2885)] = 12035, - [SMALL_STATE(2886)] = 12046, - [SMALL_STATE(2887)] = 12057, - [SMALL_STATE(2888)] = 12068, - [SMALL_STATE(2889)] = 12079, - [SMALL_STATE(2890)] = 12090, - [SMALL_STATE(2891)] = 12101, - [SMALL_STATE(2892)] = 12112, - [SMALL_STATE(2893)] = 12123, - [SMALL_STATE(2894)] = 12134, - [SMALL_STATE(2895)] = 12145, - [SMALL_STATE(2896)] = 12156, - [SMALL_STATE(2897)] = 12167, - [SMALL_STATE(2898)] = 12178, - [SMALL_STATE(2899)] = 12189, - [SMALL_STATE(2900)] = 12200, - [SMALL_STATE(2901)] = 12211, - [SMALL_STATE(2902)] = 12222, - [SMALL_STATE(2903)] = 12233, - [SMALL_STATE(2904)] = 12244, - [SMALL_STATE(2905)] = 12255, - [SMALL_STATE(2906)] = 12266, - [SMALL_STATE(2907)] = 12277, - [SMALL_STATE(2908)] = 12288, - [SMALL_STATE(2909)] = 12299, - [SMALL_STATE(2910)] = 12310, - [SMALL_STATE(2911)] = 12321, - [SMALL_STATE(2912)] = 12332, - [SMALL_STATE(2913)] = 12343, - [SMALL_STATE(2914)] = 12354, - [SMALL_STATE(2915)] = 12365, - [SMALL_STATE(2916)] = 12376, - [SMALL_STATE(2917)] = 12387, - [SMALL_STATE(2918)] = 12398, - [SMALL_STATE(2919)] = 12409, - [SMALL_STATE(2920)] = 12420, - [SMALL_STATE(2921)] = 12431, - [SMALL_STATE(2922)] = 12442, - [SMALL_STATE(2923)] = 12453, - [SMALL_STATE(2924)] = 12464, - [SMALL_STATE(2925)] = 12475, - [SMALL_STATE(2926)] = 12486, - [SMALL_STATE(2927)] = 12497, - [SMALL_STATE(2928)] = 12508, - [SMALL_STATE(2929)] = 12519, - [SMALL_STATE(2930)] = 12530, - [SMALL_STATE(2931)] = 12541, - [SMALL_STATE(2932)] = 12552, - [SMALL_STATE(2933)] = 12563, - [SMALL_STATE(2934)] = 12574, - [SMALL_STATE(2935)] = 12585, - [SMALL_STATE(2936)] = 12596, - [SMALL_STATE(2937)] = 12607, - [SMALL_STATE(2938)] = 12618, - [SMALL_STATE(2939)] = 12629, - [SMALL_STATE(2940)] = 12640, - [SMALL_STATE(2941)] = 12651, - [SMALL_STATE(2942)] = 12662, - [SMALL_STATE(2943)] = 12673, - [SMALL_STATE(2944)] = 12684, - [SMALL_STATE(2945)] = 12695, - [SMALL_STATE(2946)] = 12706, - [SMALL_STATE(2947)] = 12717, - [SMALL_STATE(2948)] = 12728, - [SMALL_STATE(2949)] = 12739, - [SMALL_STATE(2950)] = 12750, - [SMALL_STATE(2951)] = 12761, - [SMALL_STATE(2952)] = 12772, - [SMALL_STATE(2953)] = 12783, - [SMALL_STATE(2954)] = 12794, - [SMALL_STATE(2955)] = 12805, - [SMALL_STATE(2956)] = 12816, - [SMALL_STATE(2957)] = 12827, - [SMALL_STATE(2958)] = 12838, - [SMALL_STATE(2959)] = 12849, - [SMALL_STATE(2960)] = 12860, - [SMALL_STATE(2961)] = 12871, - [SMALL_STATE(2962)] = 12882, - [SMALL_STATE(2963)] = 12893, - [SMALL_STATE(2964)] = 12904, - [SMALL_STATE(2965)] = 12915, - [SMALL_STATE(2966)] = 12926, - [SMALL_STATE(2967)] = 12937, - [SMALL_STATE(2968)] = 12948, - [SMALL_STATE(2969)] = 12959, - [SMALL_STATE(2970)] = 12970, - [SMALL_STATE(2971)] = 12981, - [SMALL_STATE(2972)] = 12992, - [SMALL_STATE(2973)] = 13003, - [SMALL_STATE(2974)] = 13014, - [SMALL_STATE(2975)] = 13025, - [SMALL_STATE(2976)] = 13036, - [SMALL_STATE(2977)] = 13047, - [SMALL_STATE(2978)] = 13058, - [SMALL_STATE(2979)] = 13069, - [SMALL_STATE(2980)] = 13080, - [SMALL_STATE(2981)] = 13091, - [SMALL_STATE(2982)] = 13102, - [SMALL_STATE(2983)] = 13113, - [SMALL_STATE(2984)] = 13124, - [SMALL_STATE(2985)] = 13135, - [SMALL_STATE(2986)] = 13146, - [SMALL_STATE(2987)] = 13157, - [SMALL_STATE(2988)] = 13168, - [SMALL_STATE(2989)] = 13179, - [SMALL_STATE(2990)] = 13190, - [SMALL_STATE(2991)] = 13201, - [SMALL_STATE(2992)] = 13212, - [SMALL_STATE(2993)] = 13223, - [SMALL_STATE(2994)] = 13234, - [SMALL_STATE(2995)] = 13245, - [SMALL_STATE(2996)] = 13256, - [SMALL_STATE(2997)] = 13267, - [SMALL_STATE(2998)] = 13278, - [SMALL_STATE(2999)] = 13289, - [SMALL_STATE(3000)] = 13300, - [SMALL_STATE(3001)] = 13311, - [SMALL_STATE(3002)] = 13322, - [SMALL_STATE(3003)] = 13333, - [SMALL_STATE(3004)] = 13344, - [SMALL_STATE(3005)] = 13355, - [SMALL_STATE(3006)] = 13366, - [SMALL_STATE(3007)] = 13377, - [SMALL_STATE(3008)] = 13388, - [SMALL_STATE(3009)] = 13399, - [SMALL_STATE(3010)] = 13410, - [SMALL_STATE(3011)] = 13421, - [SMALL_STATE(3012)] = 13432, - [SMALL_STATE(3013)] = 13443, - [SMALL_STATE(3014)] = 13454, - [SMALL_STATE(3015)] = 13465, - [SMALL_STATE(3016)] = 13476, - [SMALL_STATE(3017)] = 13487, - [SMALL_STATE(3018)] = 13498, - [SMALL_STATE(3019)] = 13509, - [SMALL_STATE(3020)] = 13520, - [SMALL_STATE(3021)] = 13531, - [SMALL_STATE(3022)] = 13542, - [SMALL_STATE(3023)] = 13553, - [SMALL_STATE(3024)] = 13564, - [SMALL_STATE(3025)] = 13575, - [SMALL_STATE(3026)] = 13586, - [SMALL_STATE(3027)] = 13597, - [SMALL_STATE(3028)] = 13608, - [SMALL_STATE(3029)] = 13619, - [SMALL_STATE(3030)] = 13630, - [SMALL_STATE(3031)] = 13641, - [SMALL_STATE(3032)] = 13652, - [SMALL_STATE(3033)] = 13663, - [SMALL_STATE(3034)] = 13674, - [SMALL_STATE(3035)] = 13685, - [SMALL_STATE(3036)] = 13696, - [SMALL_STATE(3037)] = 13707, - [SMALL_STATE(3038)] = 13718, - [SMALL_STATE(3039)] = 13729, - [SMALL_STATE(3040)] = 13740, - [SMALL_STATE(3041)] = 13751, - [SMALL_STATE(3042)] = 13762, - [SMALL_STATE(3043)] = 13773, - [SMALL_STATE(3044)] = 13784, - [SMALL_STATE(3045)] = 13795, - [SMALL_STATE(3046)] = 13806, - [SMALL_STATE(3047)] = 13817, - [SMALL_STATE(3048)] = 13828, - [SMALL_STATE(3049)] = 13839, - [SMALL_STATE(3050)] = 13850, - [SMALL_STATE(3051)] = 13861, - [SMALL_STATE(3052)] = 13872, - [SMALL_STATE(3053)] = 13883, - [SMALL_STATE(3054)] = 13894, - [SMALL_STATE(3055)] = 13905, - [SMALL_STATE(3056)] = 13916, - [SMALL_STATE(3057)] = 13927, - [SMALL_STATE(3058)] = 13938, - [SMALL_STATE(3059)] = 13949, - [SMALL_STATE(3060)] = 13960, - [SMALL_STATE(3061)] = 13971, - [SMALL_STATE(3062)] = 13982, - [SMALL_STATE(3063)] = 13993, - [SMALL_STATE(3064)] = 14004, - [SMALL_STATE(3065)] = 14015, - [SMALL_STATE(3066)] = 14026, - [SMALL_STATE(3067)] = 14037, - [SMALL_STATE(3068)] = 14048, - [SMALL_STATE(3069)] = 14059, - [SMALL_STATE(3070)] = 14068, - [SMALL_STATE(3071)] = 14079, - [SMALL_STATE(3072)] = 14090, - [SMALL_STATE(3073)] = 14101, - [SMALL_STATE(3074)] = 14112, - [SMALL_STATE(3075)] = 14123, - [SMALL_STATE(3076)] = 14134, - [SMALL_STATE(3077)] = 14145, - [SMALL_STATE(3078)] = 14156, - [SMALL_STATE(3079)] = 14167, - [SMALL_STATE(3080)] = 14178, - [SMALL_STATE(3081)] = 14189, - [SMALL_STATE(3082)] = 14198, - [SMALL_STATE(3083)] = 14209, - [SMALL_STATE(3084)] = 14220, - [SMALL_STATE(3085)] = 14229, - [SMALL_STATE(3086)] = 14240, - [SMALL_STATE(3087)] = 14251, - [SMALL_STATE(3088)] = 14262, - [SMALL_STATE(3089)] = 14273, - [SMALL_STATE(3090)] = 14284, - [SMALL_STATE(3091)] = 14295, - [SMALL_STATE(3092)] = 14306, - [SMALL_STATE(3093)] = 14317, - [SMALL_STATE(3094)] = 14328, - [SMALL_STATE(3095)] = 14339, - [SMALL_STATE(3096)] = 14350, - [SMALL_STATE(3097)] = 14361, - [SMALL_STATE(3098)] = 14372, - [SMALL_STATE(3099)] = 14383, - [SMALL_STATE(3100)] = 14394, - [SMALL_STATE(3101)] = 14405, - [SMALL_STATE(3102)] = 14416, - [SMALL_STATE(3103)] = 14427, - [SMALL_STATE(3104)] = 14438, - [SMALL_STATE(3105)] = 14449, - [SMALL_STATE(3106)] = 14460, - [SMALL_STATE(3107)] = 14471, - [SMALL_STATE(3108)] = 14482, - [SMALL_STATE(3109)] = 14493, - [SMALL_STATE(3110)] = 14504, - [SMALL_STATE(3111)] = 14515, - [SMALL_STATE(3112)] = 14526, - [SMALL_STATE(3113)] = 14537, - [SMALL_STATE(3114)] = 14545, - [SMALL_STATE(3115)] = 14553, - [SMALL_STATE(3116)] = 14561, - [SMALL_STATE(3117)] = 14569, - [SMALL_STATE(3118)] = 14577, - [SMALL_STATE(3119)] = 14585, - [SMALL_STATE(3120)] = 14593, - [SMALL_STATE(3121)] = 14601, - [SMALL_STATE(3122)] = 14609, - [SMALL_STATE(3123)] = 14617, - [SMALL_STATE(3124)] = 14625, - [SMALL_STATE(3125)] = 14633, - [SMALL_STATE(3126)] = 14641, - [SMALL_STATE(3127)] = 14649, - [SMALL_STATE(3128)] = 14657, - [SMALL_STATE(3129)] = 14665, - [SMALL_STATE(3130)] = 14673, - [SMALL_STATE(3131)] = 14681, - [SMALL_STATE(3132)] = 14689, - [SMALL_STATE(3133)] = 14697, - [SMALL_STATE(3134)] = 14705, - [SMALL_STATE(3135)] = 14713, - [SMALL_STATE(3136)] = 14721, - [SMALL_STATE(3137)] = 14729, - [SMALL_STATE(3138)] = 14737, - [SMALL_STATE(3139)] = 14745, - [SMALL_STATE(3140)] = 14753, - [SMALL_STATE(3141)] = 14761, - [SMALL_STATE(3142)] = 14769, - [SMALL_STATE(3143)] = 14777, - [SMALL_STATE(3144)] = 14785, - [SMALL_STATE(3145)] = 14793, - [SMALL_STATE(3146)] = 14801, - [SMALL_STATE(3147)] = 14809, - [SMALL_STATE(3148)] = 14817, - [SMALL_STATE(3149)] = 14825, - [SMALL_STATE(3150)] = 14833, - [SMALL_STATE(3151)] = 14841, - [SMALL_STATE(3152)] = 14849, - [SMALL_STATE(3153)] = 14857, - [SMALL_STATE(3154)] = 14865, - [SMALL_STATE(3155)] = 14873, - [SMALL_STATE(3156)] = 14881, - [SMALL_STATE(3157)] = 14889, - [SMALL_STATE(3158)] = 14897, - [SMALL_STATE(3159)] = 14905, - [SMALL_STATE(3160)] = 14913, - [SMALL_STATE(3161)] = 14921, - [SMALL_STATE(3162)] = 14929, - [SMALL_STATE(3163)] = 14937, - [SMALL_STATE(3164)] = 14945, - [SMALL_STATE(3165)] = 14953, - [SMALL_STATE(3166)] = 14961, - [SMALL_STATE(3167)] = 14969, - [SMALL_STATE(3168)] = 14977, - [SMALL_STATE(3169)] = 14985, - [SMALL_STATE(3170)] = 14993, - [SMALL_STATE(3171)] = 15001, - [SMALL_STATE(3172)] = 15009, - [SMALL_STATE(3173)] = 15017, - [SMALL_STATE(3174)] = 15025, - [SMALL_STATE(3175)] = 15033, - [SMALL_STATE(3176)] = 15041, - [SMALL_STATE(3177)] = 15049, - [SMALL_STATE(3178)] = 15057, - [SMALL_STATE(3179)] = 15065, - [SMALL_STATE(3180)] = 15073, - [SMALL_STATE(3181)] = 15081, - [SMALL_STATE(3182)] = 15089, - [SMALL_STATE(3183)] = 15097, - [SMALL_STATE(3184)] = 15105, - [SMALL_STATE(3185)] = 15113, - [SMALL_STATE(3186)] = 15121, - [SMALL_STATE(3187)] = 15129, - [SMALL_STATE(3188)] = 15137, - [SMALL_STATE(3189)] = 15145, - [SMALL_STATE(3190)] = 15153, - [SMALL_STATE(3191)] = 15161, - [SMALL_STATE(3192)] = 15169, - [SMALL_STATE(3193)] = 15177, - [SMALL_STATE(3194)] = 15185, - [SMALL_STATE(3195)] = 15193, - [SMALL_STATE(3196)] = 15201, - [SMALL_STATE(3197)] = 15209, - [SMALL_STATE(3198)] = 15217, - [SMALL_STATE(3199)] = 15225, - [SMALL_STATE(3200)] = 15233, - [SMALL_STATE(3201)] = 15241, - [SMALL_STATE(3202)] = 15249, - [SMALL_STATE(3203)] = 15257, - [SMALL_STATE(3204)] = 15265, - [SMALL_STATE(3205)] = 15273, - [SMALL_STATE(3206)] = 15281, - [SMALL_STATE(3207)] = 15289, - [SMALL_STATE(3208)] = 15297, - [SMALL_STATE(3209)] = 15305, - [SMALL_STATE(3210)] = 15313, - [SMALL_STATE(3211)] = 15321, - [SMALL_STATE(3212)] = 15329, - [SMALL_STATE(3213)] = 15337, - [SMALL_STATE(3214)] = 15345, - [SMALL_STATE(3215)] = 15353, - [SMALL_STATE(3216)] = 15361, - [SMALL_STATE(3217)] = 15369, - [SMALL_STATE(3218)] = 15377, - [SMALL_STATE(3219)] = 15385, - [SMALL_STATE(3220)] = 15393, - [SMALL_STATE(3221)] = 15401, - [SMALL_STATE(3222)] = 15409, - [SMALL_STATE(3223)] = 15417, - [SMALL_STATE(3224)] = 15425, - [SMALL_STATE(3225)] = 15433, - [SMALL_STATE(3226)] = 15441, - [SMALL_STATE(3227)] = 15449, - [SMALL_STATE(3228)] = 15457, - [SMALL_STATE(3229)] = 15465, - [SMALL_STATE(3230)] = 15473, - [SMALL_STATE(3231)] = 15481, - [SMALL_STATE(3232)] = 15489, - [SMALL_STATE(3233)] = 15497, - [SMALL_STATE(3234)] = 15505, - [SMALL_STATE(3235)] = 15513, - [SMALL_STATE(3236)] = 15521, - [SMALL_STATE(3237)] = 15529, - [SMALL_STATE(3238)] = 15537, - [SMALL_STATE(3239)] = 15545, - [SMALL_STATE(3240)] = 15553, - [SMALL_STATE(3241)] = 15561, - [SMALL_STATE(3242)] = 15569, - [SMALL_STATE(3243)] = 15577, - [SMALL_STATE(3244)] = 15585, - [SMALL_STATE(3245)] = 15593, - [SMALL_STATE(3246)] = 15601, - [SMALL_STATE(3247)] = 15609, - [SMALL_STATE(3248)] = 15617, - [SMALL_STATE(3249)] = 15625, - [SMALL_STATE(3250)] = 15633, - [SMALL_STATE(3251)] = 15641, - [SMALL_STATE(3252)] = 15649, - [SMALL_STATE(3253)] = 15657, - [SMALL_STATE(3254)] = 15665, - [SMALL_STATE(3255)] = 15673, - [SMALL_STATE(3256)] = 15681, - [SMALL_STATE(3257)] = 15689, - [SMALL_STATE(3258)] = 15697, - [SMALL_STATE(3259)] = 15705, - [SMALL_STATE(3260)] = 15713, - [SMALL_STATE(3261)] = 15721, - [SMALL_STATE(3262)] = 15729, - [SMALL_STATE(3263)] = 15737, - [SMALL_STATE(3264)] = 15745, - [SMALL_STATE(3265)] = 15753, - [SMALL_STATE(3266)] = 15761, - [SMALL_STATE(3267)] = 15769, - [SMALL_STATE(3268)] = 15777, - [SMALL_STATE(3269)] = 15785, - [SMALL_STATE(3270)] = 15793, - [SMALL_STATE(3271)] = 15801, - [SMALL_STATE(3272)] = 15809, - [SMALL_STATE(3273)] = 15817, - [SMALL_STATE(3274)] = 15825, - [SMALL_STATE(3275)] = 15833, - [SMALL_STATE(3276)] = 15841, - [SMALL_STATE(3277)] = 15849, - [SMALL_STATE(3278)] = 15857, - [SMALL_STATE(3279)] = 15865, - [SMALL_STATE(3280)] = 15873, - [SMALL_STATE(3281)] = 15881, - [SMALL_STATE(3282)] = 15889, - [SMALL_STATE(3283)] = 15897, - [SMALL_STATE(3284)] = 15905, - [SMALL_STATE(3285)] = 15913, - [SMALL_STATE(3286)] = 15921, - [SMALL_STATE(3287)] = 15929, - [SMALL_STATE(3288)] = 15937, - [SMALL_STATE(3289)] = 15945, - [SMALL_STATE(3290)] = 15953, - [SMALL_STATE(3291)] = 15961, - [SMALL_STATE(3292)] = 15969, - [SMALL_STATE(3293)] = 15977, - [SMALL_STATE(3294)] = 15985, - [SMALL_STATE(3295)] = 15993, - [SMALL_STATE(3296)] = 16001, - [SMALL_STATE(3297)] = 16009, - [SMALL_STATE(3298)] = 16017, - [SMALL_STATE(3299)] = 16025, - [SMALL_STATE(3300)] = 16033, -}; - -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), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_delimiter, 5, .production_id = 82), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_delimiter, 5, .production_id = 82), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_delimiter, 4, .production_id = 65), - [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_delimiter, 4, .production_id = 65), - [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 2), - [191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 2), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 3), - [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 3), - [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 3), - [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 3), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 2), - [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 2), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(434), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(432), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(28), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(354), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(354), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(355), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(355), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(356), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(356), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(357), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(357), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(359), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(359), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(360), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(360), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(361), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(361), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(438), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(438), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(159), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(484), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(484), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(483), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(483), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2093), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2094), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(158), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(157), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(157), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2061), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2190), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2783), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2188), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2187), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2786), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2186), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2788), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2185), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2184), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2183), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2792), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2922), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2181), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2180), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2180), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2795), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2796), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2796), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2919), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2919), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2918), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2914), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2914), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3185), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3167), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2030), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2645), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2655), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2913), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2179), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2275), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2178), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2177), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2177), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2273), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2243), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2801), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2802), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2715), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(829), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(808), - [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(566), - [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(566), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(642), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(642), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(641), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(641), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(640), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(640), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(639), - [878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(639), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(638), - [884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(638), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(637), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(637), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(904), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(904), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(134), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1019), - [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1019), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(977), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(977), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2089), - [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2077), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(151), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(164), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(164), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2219), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2749), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2125), - [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2124), - [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2987), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2282), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3107), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2159), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2241), - [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2213), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3063), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3058), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2270), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2271), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2271), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3037), - [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3032), - [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3032), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3031), - [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3031), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3028), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3004), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3004), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3143), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3144), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2064), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2982), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2981), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2975), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2272), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2240), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2233), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2167), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2167), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2182), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2156), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2943), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2942), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2941), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(886), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(903), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(103), - [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(764), - [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(764), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(763), - [1318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(763), - [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(762), - [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(762), - [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(761), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(761), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), - [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), - [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(759), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(759), - [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(757), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(757), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(952), - [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(952), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(147), - [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1204), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1204), - [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1203), - [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1203), - [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2074), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2073), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(101), - [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(107), - [1384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(107), - [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2246), - [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2710), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2248), - [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2249), - [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2706), - [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2251), - [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2705), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2253), - [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2254), - [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2255), - [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2703), - [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3016), - [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2257), - [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2258), - [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2258), - [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2702), - [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2701), - [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2701), - [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3017), - [1444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3017), - [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3018), - [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3019), - [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3019), - [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3273), - [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3142), - [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2058), - [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2537), - [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2536), - [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3022), - [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2110), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2231), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2263), - [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2264), - [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2264), - [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2229), - [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2208), - [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2601), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2696), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2694), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(906), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(908), - [1588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(130), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(832), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(832), - [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(833), - [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(833), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(834), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(834), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(835), - [1612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(835), - [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(836), - [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(836), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(837), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(837), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(838), - [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(838), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(926), - [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(926), - [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(169), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1340), - [1645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1340), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1339), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1339), - [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2069), - [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2085), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(156), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(152), - [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(152), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2111), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3112), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2113), - [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2114), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3109), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2115), - [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3108), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2123), - [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2126), - [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2158), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3106), - [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2947), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2161), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2162), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2162), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3105), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3103), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3103), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2948), - [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2948), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2949), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2950), - [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2950), - [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3300), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3160), - [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2027), - [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2647), - [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2646), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2953), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2223), - [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2290), - [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2224), - [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2225), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2225), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2291), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2192), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3093), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3088), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3085), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(898), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(896), - [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(160), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(702), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(702), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(703), - [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(703), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(704), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(704), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(705), - [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(705), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(706), - [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(706), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(707), - [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(707), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(708), - [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(708), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(991), - [1936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(991), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(161), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1385), - [1945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1385), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1389), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1389), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2107), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2108), - [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(127), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(129), - [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(129), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2130), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2887), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2132), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2133), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2857), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2135), - [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2881), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2137), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2138), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2139), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2880), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2983), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2141), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2142), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2142), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2879), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2876), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2876), - [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2984), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2984), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2985), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2986), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2986), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3272), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3153), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2060), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2554), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2551), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2989), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2146), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2268), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2147), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2148), - [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2148), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2262), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2160), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2873), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2872), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2871), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 2, .production_id = 4), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 2, .production_id = 4), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 1, .production_id = 4), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 1, .production_id = 4), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 1, .production_id = 4), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 1, .production_id = 4), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 2, .production_id = 4), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 2, .production_id = 4), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, .production_id = 4), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, .production_id = 4), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, .production_id = 4), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, .production_id = 4), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 1, .production_id = 4), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 1, .production_id = 4), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 2, .production_id = 4), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 2, .production_id = 4), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 1, .production_id = 4), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 1, .production_id = 4), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 2, .production_id = 4), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 2, .production_id = 4), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2, .production_id = 4), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, .production_id = 4), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 1, .production_id = 4), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 1, .production_id = 4), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 1, .production_id = 4), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 1, .production_id = 4), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 2, .production_id = 4), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 2, .production_id = 4), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 2, .production_id = 5), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 2, .production_id = 5), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 1, .production_id = 5), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 1, .production_id = 5), - [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(434), - [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(432), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(240), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), - [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(159), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(484), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(484), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(483), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(483), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2093), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2094), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(158), - [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(157), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(157), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2061), - [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2190), - [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2783), - [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2188), - [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2187), - [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2786), - [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2186), - [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2788), - [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2185), - [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2184), - [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2183), - [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2792), - [2357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2922), - [2360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2181), - [2363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2180), - [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2180), - [2369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2795), - [2372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2796), - [2375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2796), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2919), - [2381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2919), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2918), - [2387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2914), - [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2914), - [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3185), - [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3167), - [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2030), - [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2645), - [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2655), - [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2913), - [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2179), - [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2275), - [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2178), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2177), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2177), - [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2273), - [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2243), - [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2801), - [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2802), - [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2715), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(829), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(808), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(247), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(134), - [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1019), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1019), - [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(977), - [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(977), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2089), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2077), - [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(151), - [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(164), - [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(164), - [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2219), - [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2749), - [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2125), - [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2124), - [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2987), - [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2282), - [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3107), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2159), - [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2241), - [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2213), - [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3063), - [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3058), - [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2270), - [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2271), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2271), - [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3037), - [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3032), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3032), - [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3031), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3031), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3028), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3004), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3004), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3143), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3144), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2064), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2982), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2981), - [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2975), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2272), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2240), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2233), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2167), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2167), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2182), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2156), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2943), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2942), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2941), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(886), - [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(903), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(251), - [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(147), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1204), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1204), - [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1203), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1203), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2074), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2073), - [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(101), - [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(107), - [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(107), - [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2246), - [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2710), - [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2248), - [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2249), - [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2706), - [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2251), - [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2705), - [2665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2253), - [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2254), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2255), - [2674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2703), - [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3016), - [2680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2257), - [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2258), - [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2258), - [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2702), - [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2701), - [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2701), - [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3017), - [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3017), - [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3018), - [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3019), - [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3019), - [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3273), - [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3142), - [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2058), - [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2537), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2536), - [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3022), - [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2110), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2231), - [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2263), - [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2264), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2264), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2229), - [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2208), - [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2601), - [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2696), - [2758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2694), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(906), - [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(908), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(252), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(169), - [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1340), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1340), - [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1339), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1339), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2069), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2085), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(156), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(152), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(152), - [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2111), - [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3112), - [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2113), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2114), - [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3109), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2115), - [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3108), - [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2123), - [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2126), - [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2158), - [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3106), - [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2947), - [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2161), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2162), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2162), - [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3105), - [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3103), - [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3103), - [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2948), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2948), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2949), - [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2950), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2950), - [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3300), - [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3160), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2027), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2647), - [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2646), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2953), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2223), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2290), - [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2224), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2225), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2225), - [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2291), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2192), - [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3093), - [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3088), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3085), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(898), - [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(896), - [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(258), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(161), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1385), - [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1385), - [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1389), - [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1389), - [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2107), - [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2108), - [2953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(127), - [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(129), - [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(129), - [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2130), - [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2887), - [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2132), - [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2133), - [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2857), - [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2135), - [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2881), - [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2137), - [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2138), - [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2139), - [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2880), - [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2983), - [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2141), - [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2142), - [3004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2142), - [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2879), - [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2876), - [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2876), - [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2984), - [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2984), - [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2985), - [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2986), - [3028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2986), - [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3272), - [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3153), - [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2060), - [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2554), - [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2551), - [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2989), - [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2146), - [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2268), - [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2147), - [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2148), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2148), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2262), - [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2160), - [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2873), - [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2872), - [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2871), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1, .production_id = 6), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1, .production_id = 6), - [3083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(434), - [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(432), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), - [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(484), - [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(484), - [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(483), - [3102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(483), - [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2093), - [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2094), - [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2190), - [3114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2783), - [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2188), - [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2187), - [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2786), - [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2186), - [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2788), - [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2185), - [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2184), - [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2183), - [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2792), - [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2922), - [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2181), - [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2180), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2180), - [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2795), - [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2796), - [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2796), - [3165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2919), - [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2919), - [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2918), - [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2914), - [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2914), - [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3185), - [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3167), - [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2645), - [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2655), - [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2913), - [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2179), - [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2275), - [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2178), - [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2177), - [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2177), - [3210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2273), - [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2243), - [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2801), - [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2802), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [3314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [3326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1466), - [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1464), - [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(275), - [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(172), - [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1534), - [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1534), - [3372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1489), - [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1489), - [3378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2092), - [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2095), - [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(171), - [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(170), - [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(170), - [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2216), - [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2496), - [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2211), - [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2210), - [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2492), - [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2207), - [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2491), - [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2204), - [3417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2203), - [3420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2202), - [3423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2490), - [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3049), - [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2200), - [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2199), - [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2199), - [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2489), - [3441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2486), - [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2486), - [3447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3050), - [3450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3050), - [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3051), - [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3052), - [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3052), - [3462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3256), - [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3131), - [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2051), - [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2512), - [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2500), - [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3054), - [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2193), - [3483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2217), - [3486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2189), - [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2172), - [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2172), - [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2201), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2220), - [3501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2483), - [3504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2482), - [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2481), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1478), - [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1471), - [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(282), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), - [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(277), - [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(96), - [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1750), - [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1750), - [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1749), - [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1749), - [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2101), - [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2097), - [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(97), - [3656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(99), - [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(99), - [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2061), - [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2163), - [3668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2475), - [3671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2164), - [3674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2165), - [3677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2478), - [3680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2166), - [3683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2480), - [3686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2169), - [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2170), - [3692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2194), - [3695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2484), - [3698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(3075), - [3701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2195), - [3704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2196), - [3707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2196), - [3710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2487), - [3713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2488), - [3716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2488), - [3719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(3076), - [3722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(3076), - [3725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(3077), - [3728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(3078), - [3731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(3078), - [3734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(3239), - [3737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(3114), - [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2059), - [3743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2434), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2430), - [3749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(3080), - [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2206), - [3755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2117), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2209), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2215), - [3764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2215), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2119), - [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2228), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2493), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2494), - [3779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2495), - [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(829), - [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(808), - [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1019), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1019), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(977), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(977), - [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2089), - [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2077), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2219), - [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2749), - [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2125), - [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2124), - [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2987), - [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2282), - [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3107), - [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2159), - [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2241), - [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2213), - [3836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3063), - [3839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3058), - [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2270), - [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2271), - [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2271), - [3851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3037), - [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3032), - [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3032), - [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3031), - [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3031), - [3866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3028), - [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3004), - [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3004), - [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3143), - [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3144), - [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2982), - [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2981), - [3887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2975), - [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2272), - [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2240), - [3896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2233), - [3899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2167), - [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2167), - [3905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2182), - [3908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2156), - [3911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2943), - [3914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2942), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(898), - [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(896), - [3939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1385), - [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1385), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1389), - [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1389), - [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2107), - [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2108), - [3957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2130), - [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2887), - [3963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2132), - [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2133), - [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2857), - [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2135), - [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2881), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2137), - [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2138), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2139), - [3987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2880), - [3990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2983), - [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2141), - [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2142), - [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2142), - [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2879), - [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2876), - [4008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2876), - [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2984), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2984), - [4017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2985), - [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2986), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2986), - [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3272), - [4029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3153), - [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2554), - [4035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2551), - [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2989), - [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2146), - [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2268), - [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2147), - [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2148), - [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2148), - [4056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2262), - [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2160), - [4062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2873), - [4065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2872), - [4068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(886), - [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(903), - [4074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1204), - [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1204), - [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1203), - [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1203), - [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2074), - [4089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2073), - [4092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2246), - [4095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2710), - [4098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2248), - [4101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2249), - [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2706), - [4107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2251), - [4110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2705), - [4113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2253), - [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2254), - [4119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2255), - [4122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2703), - [4125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3016), - [4128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2257), - [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2258), - [4134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2258), - [4137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2702), - [4140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2701), - [4143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2701), - [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3017), - [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3017), - [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3018), - [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3019), - [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3019), - [4161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3273), - [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3142), - [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2537), - [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2536), - [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3022), - [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2110), - [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2231), - [4182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2263), - [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2264), - [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2264), - [4191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2229), - [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2208), - [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2601), - [4200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2696), - [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(906), - [4206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(908), - [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1340), - [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1340), - [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1339), - [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1339), - [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2069), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2085), - [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2111), - [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3112), - [4233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2113), - [4236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2114), - [4239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3109), - [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2115), - [4245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3108), - [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2123), - [4251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2126), - [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2158), - [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3106), - [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2947), - [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2161), - [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2162), - [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2162), - [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3105), - [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3103), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3103), - [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2948), - [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2948), - [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2949), - [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2950), - [4293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2950), - [4296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3300), - [4299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3160), - [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2647), - [4305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2646), - [4308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2953), - [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2223), - [4314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2290), - [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2224), - [4320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2225), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2225), - [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2291), - [4329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2192), - [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3093), - [4335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3088), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [4560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1482), - [4563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1477), - [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(297), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(113), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), - [4574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1705), - [4577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1705), - [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1704), - [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1704), - [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2099), - [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2100), - [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(137), - [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(135), - [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(135), - [4601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2154), - [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2865), - [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2153), - [4610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2152), - [4613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2868), - [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2151), - [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2870), - [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2150), - [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2149), - [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2145), - [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2874), - [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2828), - [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2144), - [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2143), - [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2143), - [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2877), - [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2878), - [4652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2878), - [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2797), - [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2797), - [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2777), - [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2755), - [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2755), - [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(3178), - [4673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(3187), - [4676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2050), - [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2416), - [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2766), - [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2753), - [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2136), - [4691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2198), - [4694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2134), - [4697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2131), - [4700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2131), - [4703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2197), - [4706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2222), - [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2883), - [4712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2884), - [4715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2803), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [4784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1482), - [4787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1477), - [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(283), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), - [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(316), - [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(113), - [4801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1705), - [4804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1705), - [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1704), - [4810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1704), - [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2099), - [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2100), - [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(108), - [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(104), - [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(104), - [4828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2154), - [4831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2865), - [4834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2153), - [4837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2152), - [4840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2868), - [4843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2151), - [4846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2870), - [4849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2150), - [4852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2149), - [4855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2145), - [4858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2874), - [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2828), - [4864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2144), - [4867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2143), - [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2143), - [4873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2877), - [4876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2878), - [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2878), - [4882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2797), - [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2797), - [4888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2777), - [4891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2755), - [4894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2755), - [4897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(3178), - [4900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(3187), - [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2034), - [4906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2416), - [4909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2766), - [4912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2753), - [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2136), - [4918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2198), - [4921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2134), - [4924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2131), - [4927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2131), - [4930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2197), - [4933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2222), - [4936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2883), - [4939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2884), - [4942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2803), - [4945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(317), - [4948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(112), - [4951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(111), - [4954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(111), - [4957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2035), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(1813), - [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(1812), - [5106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(1844), - [5109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(120), - [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), - [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), - [5116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(1842), - [5119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(1842), - [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(1843), - [5125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(1843), - [5128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2071), - [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2072), - [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(122), - [5137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(123), - [5140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(123), - [5143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2266), - [5146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2695), - [5149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2265), - [5152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2261), - [5155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2698), - [5158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2260), - [5161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2700), - [5164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2259), - [5167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2256), - [5170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2252), - [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2704), - [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2998), - [5179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2250), - [5182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2247), - [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2247), - [5188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2707), - [5191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2708), - [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2708), - [5197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2996), - [5200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2996), - [5203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2994), - [5206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2993), - [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2993), - [5212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(3199), - [5215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(3147), - [5218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2042), - [5221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2583), - [5224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2584), - [5227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2992), - [5230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2245), - [5233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2277), - [5236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2238), - [5239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2236), - [5242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2236), - [5245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2278), - [5248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2242), - [5251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2713), - [5254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2714), - [5257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 2), SHIFT_REPEAT(2606), - [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat2, 2, .production_id = 57), - [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat2, 2, .production_id = 57), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1466), - [5287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1464), - [5290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1534), - [5293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1534), - [5296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1489), - [5299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1489), - [5302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2092), - [5305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2095), - [5308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2216), - [5311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2496), - [5314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2211), - [5317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2210), - [5320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2492), - [5323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2207), - [5326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2491), - [5329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2204), - [5332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2203), - [5335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2202), - [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2490), - [5341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3049), - [5344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2200), - [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2199), - [5350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2199), - [5353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2489), - [5356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2486), - [5359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2486), - [5362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3050), - [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3050), - [5368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3051), - [5371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3052), - [5374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3052), - [5377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3256), - [5380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3131), - [5383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2512), - [5386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2500), - [5389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3054), - [5392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2193), - [5395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2217), - [5398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2189), - [5401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2172), - [5404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2172), - [5407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2201), - [5410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2220), - [5413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2483), - [5416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2482), - [5419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1482), - [5422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1477), - [5425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1705), - [5428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1705), - [5431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1704), - [5434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1704), - [5437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2099), - [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2100), - [5443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2154), - [5446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2865), - [5449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2153), - [5452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2152), - [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2868), - [5458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2151), - [5461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2870), - [5464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2150), - [5467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2149), - [5470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2145), - [5473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2874), - [5476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2828), - [5479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2144), - [5482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2143), - [5485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2143), - [5488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2877), - [5491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2878), - [5494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2878), - [5497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2797), - [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2797), - [5503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2777), - [5506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2755), - [5509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2755), - [5512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3178), - [5515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3187), - [5518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2416), - [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2766), - [5524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2753), - [5527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2136), - [5530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2198), - [5533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2134), - [5536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2131), - [5539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2131), - [5542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2197), - [5545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2222), - [5548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2883), - [5551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2884), - [5554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1478), - [5557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1471), - [5560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1750), - [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1750), - [5566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1749), - [5569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1749), - [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2101), - [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2097), - [5578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2163), - [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2475), - [5584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2164), - [5587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2165), - [5590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2478), - [5593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2166), - [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2480), - [5599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2169), - [5602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2170), - [5605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2194), - [5608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2484), - [5611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3075), - [5614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2195), - [5617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2196), - [5620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2196), - [5623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2487), - [5626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2488), - [5629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2488), - [5632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3076), - [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3076), - [5638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3077), - [5641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3078), - [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3078), - [5647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3239), - [5650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3114), - [5653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2434), - [5656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2430), - [5659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3080), - [5662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2206), - [5665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2117), - [5668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2209), - [5671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2215), - [5674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2215), - [5677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2119), - [5680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2228), - [5683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2493), - [5686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2494), - [5689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1813), - [5692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1812), - [5695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1842), - [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1842), - [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1843), - [5704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1843), - [5707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2071), - [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2072), - [5713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2266), - [5716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2695), - [5719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2265), - [5722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2261), - [5725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2698), - [5728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2260), - [5731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2700), - [5734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2259), - [5737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2256), - [5740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2252), - [5743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2704), - [5746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2998), - [5749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2250), - [5752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2247), - [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2247), - [5758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2707), - [5761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2708), - [5764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2708), - [5767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2996), - [5770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2996), - [5773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2994), - [5776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2993), - [5779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2993), - [5782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3199), - [5785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3147), - [5788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2583), - [5791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2584), - [5794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2992), - [5797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2245), - [5800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2277), - [5803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2238), - [5806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2236), - [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2236), - [5812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2278), - [5815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2242), - [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2713), - [5821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2714), - [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 3, .production_id = 4), - [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 3, .production_id = 4), - [5828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 1, .production_id = 2), - [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 1, .production_id = 2), - [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), - [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), - [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 1, .production_id = 2), - [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 1, .production_id = 2), - [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), - [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), - [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 3, .production_id = 4), - [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 3, .production_id = 4), - [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), - [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), - [5856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), - [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 4), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 4), - [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section, 1), - [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section, 1), - [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 3, .production_id = 4), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 3, .production_id = 4), - [5872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), - [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), - [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(354), - [5879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(354), - [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), - [5886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(355), - [5889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(355), - [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), - [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), - [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(356), - [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(356), - [5902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), - [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), - [5906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(357), - [5909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(357), - [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), - [5916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(359), - [5919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(359), - [5922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), - [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), - [5926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(360), - [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(360), - [5932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), - [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), - [5936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(361), - [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(361), - [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), - [5946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(438), - [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(438), - [5952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 3, .production_id = 4), - [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 3, .production_id = 4), - [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 3, .production_id = 4), - [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 3, .production_id = 4), - [5960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 3, .production_id = 4), - [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 3, .production_id = 4), - [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 2, .production_id = 17), - [5966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 2, .production_id = 17), - [5968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 1, .production_id = 1), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 1, .production_id = 1), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 34), - [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 34), - [5980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 34), SHIFT_REPEAT(159), - [5983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 1, .production_id = 2), - [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 1, .production_id = 2), - [5987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 2, .production_id = 14), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 2, .production_id = 14), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 46), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 46), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 7), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 7), - [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), - [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 47), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 47), - [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_delimiter_definition, 4, .production_id = 66), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_delimiter_definition, 4, .production_id = 66), - [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 71), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 71), - [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_delimiter_definition, 5, .production_id = 84), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_delimiter_definition, 5, .production_id = 84), - [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 16), - [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 16), - [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 2, .production_id = 25), - [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 2, .production_id = 25), - [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 8), - [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 8), - [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 2, .production_id = 12), - [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 2, .production_id = 12), - [6041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superscript, 2, .production_id = 13), - [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superscript, 2, .production_id = 13), - [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_title_declaration, 2, .production_id = 18), - [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_title_declaration, 2, .production_id = 18), - [6049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_author_declaration, 2, .production_id = 19), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_author_declaration, 2, .production_id = 19), - [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 2, .production_id = 20), - [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 2, .production_id = 20), - [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 2, .production_id = 21), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 2, .production_id = 21), - [6061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(904), - [6064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(904), - [6067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(637), - [6070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(637), - [6073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(638), - [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(638), - [6079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(639), - [6082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(639), - [6085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(640), - [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(640), - [6091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(641), - [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(641), - [6097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(642), - [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(642), - [6103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(566), - [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(566), - [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 2, .production_id = 21), - [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 2, .production_id = 21), - [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 2, .production_id = 22), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 2, .production_id = 22), - [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 2, .production_id = 21), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 2, .production_id = 21), - [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group_text, 3, .production_id = 54), - [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_text, 3, .production_id = 54), - [6125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text_mode, 2, .production_id = 27), - [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_mode, 2, .production_id = 27), - [6129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1), - [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), - [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), - [6137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_part, 2, .production_id = 31), - [6139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_part, 2, .production_id = 31), - [6141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pycode_environment_group, 3, .production_id = 55), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pycode_environment_group, 3, .production_id = 55), - [6145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__listing_environment_group, 3, .production_id = 55), - [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__listing_environment_group, 3, .production_id = 55), - [6149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__verbatim_environment_group, 3, .production_id = 55), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_environment_group, 3, .production_id = 55), - [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_environment_group, 3, .production_id = 55), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_environment_group, 3, .production_id = 55), - [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 3), - [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 3), - [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 2), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 2), - [6165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 3), - [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 3), - [6169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 2, .production_id = 21), - [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 2, .production_id = 21), - [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 2, .production_id = 8), - [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 2, .production_id = 8), - [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_environment, 2, .production_id = 28), - [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_environment, 2, .production_id = 28), - [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 2, .production_id = 21), - [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 2, .production_id = 21), - [6185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 2), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 2), - [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text, 3, .production_id = 54), - [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text, 3, .production_id = 54), - [6193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end, 2, .production_id = 14), - [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end, 2, .production_id = 14), - [6197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 3, .production_id = 48), - [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 3, .production_id = 48), - [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 2, .production_id = 21), - [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 2, .production_id = 21), - [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_environment, 3, .production_id = 49), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_environment, 3, .production_id = 49), - [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_environment, 3, .production_id = 50), - [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_environment, 3, .production_id = 50), - [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_listing_environment, 3, .production_id = 51), - [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_listing_environment, 3, .production_id = 51), - [6217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minted_environment, 3, .production_id = 52), - [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minted_environment, 3, .production_id = 52), - [6221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 2, .production_id = 23), - [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 2, .production_id = 23), - [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pycode_environment, 3, .production_id = 51), - [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pycode_environment, 3, .production_id = 51), - [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__math_environment_end, 2, .production_id = 15), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__math_environment_end, 2, .production_id = 15), - [6233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_environment, 3, .production_id = 53), - [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_environment, 3, .production_id = 53), - [6237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, .production_id = 24), - [6239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, .production_id = 24), - [6241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2, .production_id = 14), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2, .production_id = 14), - [6245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 11), - [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 11), - [6249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 2, .production_id = 21), - [6251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 2, .production_id = 21), - [6253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), - [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), - [6257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), - [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), - [6261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), - [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), - [6265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), - [6269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 2, .production_id = 9), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 2, .production_id = 9), - [6273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_command_definition, 2, .production_id = 26), - [6275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_command_definition, 2, .production_id = 26), - [6277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), - [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), - [6281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_part, 1, .production_id = 10), - [6283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_part, 1, .production_id = 10), - [6285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 2, .production_id = 9), - [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 2, .production_id = 9), - [6289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 14), - [6291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 14), - [6293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 2, .production_id = 14), - [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 2, .production_id = 14), - [6297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__minted_environment_group, 3, .production_id = 55), - [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__minted_environment_group, 3, .production_id = 55), - [6301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__math_environment_group, 3, .production_id = 55), - [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__math_environment_group, 3, .production_id = 55), - [6305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__comment_environment_end, 2, .production_id = 15), - [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_environment_end, 2, .production_id = 15), - [6309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__verbatim_environment_end, 2, .production_id = 15), - [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_environment_end, 2, .production_id = 15), - [6313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__listing_environment_end, 2, .production_id = 15), - [6315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__listing_environment_end, 2, .production_id = 15), - [6317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__minted_environment_end, 2, .production_id = 15), - [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__minted_environment_end, 2, .production_id = 15), - [6321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_reference, 2, .production_id = 14), - [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_reference, 2, .production_id = 14), - [6325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pycode_environment_end, 2, .production_id = 15), - [6327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pycode_environment_end, 2, .production_id = 15), - [6329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 2, .production_id = 20), - [6331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 2, .production_id = 20), - [6333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 3, .production_id = 30), - [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, .production_id = 30), - [6337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_title_declaration, 3, .production_id = 35), - [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_title_declaration, 3, .production_id = 35), - [6341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_author_list, 2), - [6343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_author_list, 2), - [6345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 2), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 2), - [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 3, .production_id = 37), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 3, .production_id = 37), - [6353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 3, .production_id = 38), - [6355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 3, .production_id = 38), - [6357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 3, .production_id = 39), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 3, .production_id = 39), - [6361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 3, .production_id = 38), - [6363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 3, .production_id = 38), - [6365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 3, .production_id = 38), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 3, .production_id = 38), - [6369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 3, .production_id = 38), - [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 3, .production_id = 38), - [6373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_include, 3, .production_id = 40), - [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_include, 3, .production_id = 40), - [6377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 3, .production_id = 41), - [6379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3, .production_id = 41), - [6381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 2), - [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 2), - [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, .production_id = 42), - [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, .production_id = 42), - [6389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference_range, 3, .production_id = 43), - [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference_range, 3, .production_id = 43), - [6393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_number, 3, .production_id = 44), - [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_number, 3, .production_id = 44), - [6397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 3, .production_id = 45), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 3, .production_id = 45), - [6401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 3, .production_id = 45), - [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 3, .production_id = 45), - [6405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 32), - [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 32), - [6409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 46), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 46), - [6413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 3, .production_id = 46), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 3, .production_id = 46), - [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_author_list, 3, .production_id = 57), - [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_author_list, 3, .production_id = 57), - [6421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 59), - [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 59), - [6425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path, 3, .production_id = 59), - [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path, 3, .production_id = 59), - [6429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 60), - [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 60), - [6433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 54), - [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 54), - [6437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 4, .production_id = 61), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 4, .production_id = 61), - [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 4, .production_id = 63), - [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 4, .production_id = 63), - [6445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 4, .production_id = 64), - [6447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 4, .production_id = 64), - [6449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 4, .production_id = 67), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 4, .production_id = 67), - [6453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 2), - [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 2), - [6457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 4, .production_id = 68), - [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 4, .production_id = 68), - [6461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 69), - [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 69), - [6465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 70), - [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 70), - [6469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 4, .production_id = 72), - [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 4, .production_id = 72), - [6473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_author_list, 4, .production_id = 57), - [6475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_author_list, 4, .production_id = 57), - [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 76), - [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 76), - [6481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 78), - [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 78), - [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 5, .production_id = 81), - [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 5, .production_id = 81), - [6489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_delimiter_definition, 5, .production_id = 83), - [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_delimiter_definition, 5, .production_id = 83), - [6493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 5, .production_id = 85), - [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 5, .production_id = 85), - [6497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 58), - [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 58), - [6501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 5, .production_id = 86), - [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 5, .production_id = 86), - [6505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 87), - [6507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 87), - [6509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 88), - [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 88), - [6513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 5, .production_id = 89), - [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 5, .production_id = 89), - [6517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 5, .production_id = 90), - [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 5, .production_id = 90), - [6521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paired_delimiter_definition, 6, .production_id = 91), - [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paired_delimiter_definition, 6, .production_id = 91), - [6525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 74), - [6527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 74), - [6529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 6, .production_id = 92), - [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 6, .production_id = 92), - [6533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(952), - [6536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(952), - [6539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(757), - [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(757), - [6545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(759), - [6548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(759), - [6551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(760), - [6554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(760), - [6557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(761), - [6560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(761), - [6563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(762), - [6566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(762), - [6569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(763), - [6572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(763), - [6575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(764), - [6578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(764), - [6581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(926), - [6584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(926), - [6587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(838), - [6590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(838), - [6593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(837), - [6596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(837), - [6599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(836), - [6602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(836), - [6605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(835), - [6608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(835), - [6611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(834), - [6614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(834), - [6617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(833), - [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(833), - [6623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(832), - [6626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(832), - [6629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 34), SHIFT_REPEAT(134), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(702), - [6639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(702), - [6642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(703), - [6645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(703), - [6648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(704), - [6651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(704), - [6654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(705), - [6657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(705), - [6660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(706), - [6663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(706), - [6666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(707), - [6669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(707), - [6672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(708), - [6675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(708), - [6678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(991), - [6681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(991), - [6684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 34), SHIFT_REPEAT(147), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 34), SHIFT_REPEAT(169), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 34), SHIFT_REPEAT(161), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [6719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 2, .production_id = 14), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 2, .production_id = 14), - [6725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 3), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 3), - [6729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 2), - [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 2), - [6733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 3, .production_id = 32), - [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 3, .production_id = 32), - [6737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1916), - [6740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1919), - [6743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2004), - [6746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2004), - [6749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1934), - [6752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(1934), - [6755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2082), - [6758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2080), - [6761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2280), - [6764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2586), - [6767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2281), - [6770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2284), - [6773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2589), - [6776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2285), - [6779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2591), - [6782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2287), - [6785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2288), - [6788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2294), - [6791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2595), - [6794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3099), - [6797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2295), - [6800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2299), - [6803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2299), - [6806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2598), - [6809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2599), - [6812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2599), - [6815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3100), - [6818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3100), - [6821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3101), - [6824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3102), - [6827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3102), - [6830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3214), - [6833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3117), - [6836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2421), - [6839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2420), - [6842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(3104), - [6845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2298), - [6848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2121), - [6851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2296), - [6854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2109), - [6857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2109), - [6860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2122), - [6863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2239), - [6866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2604), - [6869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 29), SHIFT_REPEAT(2605), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [6918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 34), SHIFT_REPEAT(172), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [6927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 34), SHIFT_REPEAT(113), - [6930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 34), SHIFT_REPEAT(96), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [6943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__math_environment_begin, 2, .production_id = 15), - [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__math_environment_begin, 2, .production_id = 15), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 34), SHIFT_REPEAT(120), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [6962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 1), - [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat1, 1), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [6968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 34), SHIFT_REPEAT(139), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [7189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(2096), - [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), - [7236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(2081), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glob_pattern, 1), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [7427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 75), SHIFT_REPEAT(1438), - [7430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 75), - [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 3), - [7434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 3), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [7462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 75), SHIFT_REPEAT(1434), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 79), SHIFT_REPEAT(1458), - [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 79), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_argc, 3, .production_id = 80), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 2), - [7506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 2), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 58), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 1, .production_id = 36), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [7548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 77), SHIFT_REPEAT(3274), - [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 77), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_command_name, 3, .production_id = 62), - [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 3, .production_id = 73), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat2, 2), - [7579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_author_list_repeat2, 2), SHIFT_REPEAT(343), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 54), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 59), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__minted_environment_begin, 4, .production_id = 56), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [8064] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_environment_begin, 2, .production_id = 15), - [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_environment_begin, 2, .production_id = 15), - [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__listing_environment_begin, 2, .production_id = 15), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pycode_environment_begin, 2, .production_id = 15), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_environment_name, 1, .production_id = 3), - [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__verbatim_environment_name, 1, .production_id = 3), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__listing_environment_name, 1, .production_id = 3), - [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__minted_environment_name, 1, .production_id = 3), - [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__math_environment_name, 1, .production_id = 3), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__minted_environment_begin, 3, .production_id = 33), - [8214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 2), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pycode_environment_name, 1, .production_id = 3), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 3, .production_id = 58), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 4, .production_id = 74), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), -}; - -#ifdef __cplusplus -extern "C" { -#endif -void *tree_sitter_latex_external_scanner_create(void); -void tree_sitter_latex_external_scanner_destroy(void *); -bool tree_sitter_latex_external_scanner_scan(void *, TSLexer *, const bool *); -unsigned tree_sitter_latex_external_scanner_serialize(void *, char *); -void tree_sitter_latex_external_scanner_deserialize(void *, const char *, unsigned); - -#ifdef _WIN32 -#define extern __declspec(dllexport) -#endif - -extern const TSLanguage *tree_sitter_latex(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, - .keyword_lex_fn = ts_lex_keywords, - .keyword_capture_token = sym_command_name, - .external_scanner = { - &ts_external_scanner_states[0][0], - ts_external_scanner_symbol_map, - tree_sitter_latex_external_scanner_create, - tree_sitter_latex_external_scanner_destroy, - tree_sitter_latex_external_scanner_scan, - tree_sitter_latex_external_scanner_serialize, - tree_sitter_latex_external_scanner_deserialize, - }, - .primary_state_ids = ts_primary_state_ids, - }; - return &language; -} -#ifdef __cplusplus -} -#endif diff --git a/vendored_parsers/tree-sitter-latex/src/scanner.c b/vendored_parsers/tree-sitter-latex/src/scanner.c index c7fa5b10d..b1f67c56c 100644 --- a/vendored_parsers/tree-sitter-latex/src/scanner.c +++ b/vendored_parsers/tree-sitter-latex/src/scanner.c @@ -9,7 +9,13 @@ enum TokenType { TRIVIA_RAW_ENV_VERBATIM, TRIVIA_RAW_ENV_LISTING, TRIVIA_RAW_ENV_MINTED, + TRIVIA_RAW_ENV_ASY, + TRIVIA_RAW_ENV_ASYDEF, TRIVIA_RAW_ENV_PYCODE, + TRIVIA_RAW_ENV_LUACODE, + TRIVIA_RAW_ENV_LUACODE_STAR, + TRIVIA_RAW_ENV_SAGESILENT, + TRIVIA_RAW_ENV_SAGEBLOCK, }; static bool find_verbatim(TSLexer *lexer, const char *keyword, @@ -92,7 +98,7 @@ bool tree_sitter_latex_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { bool found = false; TSSymbol type = 0xFFFF; - for (int i = 0; i <= TRIVIA_RAW_ENV_PYCODE; i++) { + for (int i = 0; i <= TRIVIA_RAW_ENV_SAGEBLOCK; i++) { if (valid_symbols[i]) { if (found) { return false; @@ -117,6 +123,18 @@ bool tree_sitter_latex_external_scanner_scan(void *payload, TSLexer *lexer, return find_verbatim(lexer, "\\end{minted}", false); case TRIVIA_RAW_ENV_PYCODE: return find_verbatim(lexer, "\\end{pycode}", false); + case TRIVIA_RAW_ENV_ASY: + return find_verbatim(lexer, "\\end{asy}", false); + case TRIVIA_RAW_ENV_ASYDEF: + return find_verbatim(lexer, "\\end{asydef}", false); + case TRIVIA_RAW_ENV_LUACODE: + return find_verbatim(lexer, "\\end{luacode}", false); + case TRIVIA_RAW_ENV_LUACODE_STAR: + return find_verbatim(lexer, "\\end{luacode*}", false); + case TRIVIA_RAW_ENV_SAGESILENT: + return find_verbatim(lexer, "\\end{sagesilent}", false); + case TRIVIA_RAW_ENV_SAGEBLOCK: + return find_verbatim(lexer, "\\end{sageblock}", false); } return false; diff --git a/vendored_parsers/tree-sitter-latex/src/tree_sitter/parser.h b/vendored_parsers/tree-sitter-latex/src/tree_sitter/parser.h deleted file mode 100644 index 2b14ac104..000000000 --- a/vendored_parsers/tree-sitter-latex/src/tree_sitter/parser.h +++ /dev/null @@ -1,224 +0,0 @@ -#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 - -typedef uint16_t TSStateId; - -#ifndef TREE_SITTER_API_H_ -typedef uint16_t TSSymbol; -typedef uint16_t TSFieldId; -typedef struct TSLanguage TSLanguage; -#endif - -typedef struct { - TSFieldId field_id; - uint8_t child_index; - bool inherited; -} TSFieldMapEntry; - -typedef struct { - uint16_t index; - uint16_t length; -} TSFieldMapSlice; - -typedef struct { - bool visible; - bool named; - bool supertype; -} TSSymbolMetadata; - -typedef struct TSLexer TSLexer; - -struct TSLexer { - int32_t lookahead; - TSSymbol result_symbol; - void (*advance)(TSLexer *, bool); - void (*mark_end)(TSLexer *); - uint32_t (*get_column)(TSLexer *); - bool (*is_at_included_range_start)(const TSLexer *); - bool (*eof)(const TSLexer *); -}; - -typedef enum { - TSParseActionTypeShift, - TSParseActionTypeReduce, - TSParseActionTypeAccept, - TSParseActionTypeRecover, -} TSParseActionType; - -typedef union { - struct { - uint8_t type; - TSStateId state; - bool extra; - bool repetition; - } shift; - struct { - uint8_t type; - uint8_t child_count; - TSSymbol symbol; - int16_t dynamic_precedence; - uint16_t production_id; - } reduce; - uint8_t type; -} TSParseAction; - -typedef struct { - uint16_t lex_state; - uint16_t external_lex_state; -} TSLexMode; - -typedef union { - TSParseAction action; - struct { - uint8_t count; - bool reusable; - } entry; -} TSParseActionEntry; - -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; -}; - -/* - * Lexer Macros - */ - -#define START_LEXER() \ - bool result = false; \ - bool skip = false; \ - 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 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_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ - }} - -#define RECOVER() \ - {{ \ - .type = TSParseActionTypeRecover \ - }} - -#define ACCEPT_INPUT() \ - {{ \ - .type = TSParseActionTypeAccept \ - }} - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PARSER_H_ diff --git a/vendored_parsers/tree-sitter-latex/test/corpus/commands.txt b/vendored_parsers/tree-sitter-latex/test/corpus/commands.txt index 4c765a568..f6c65b782 100644 --- a/vendored_parsers/tree-sitter-latex/test/corpus/commands.txt +++ b/vendored_parsers/tree-sitter-latex/test/corpus/commands.txt @@ -134,6 +134,111 @@ Command definition with default arg (text (placeholder))))) +================================================================================ +Command definition without curly braces +================================================================================ + +\newcommand\foo[1]{#1} + +-------------------------------------------------------------------------------- + +(source_file + (new_command_definition + (command_name) + (brack_group_argc + (argc)) + (curly_group + (text + (placeholder))))) + +================================================================================ +Command definition (xparse) +================================================================================ + +\NewDocumentCommand{\foo}{m}{#1} + +-------------------------------------------------------------------------------- + +(source_file + (new_command_definition + (curly_group_command_name + (command_name)) + (curly_group_spec + (text + (word))) + (curly_group + (text + (placeholder))))) + +================================================================================ +Command definition with optional argument (xparse) +================================================================================ + +\NewDocumentCommand{\foo}{o{default} m}{#1 #2} + +-------------------------------------------------------------------------------- + +(source_file + (new_command_definition + (curly_group_command_name + (command_name)) + (curly_group_spec + (text + (word)) + (curly_group + (text + (word))) + (text + (word))) + (curly_group + (text + (placeholder) + (placeholder))))) + +================================================================================ +Nested command definition with arguments +================================================================================ +\NewDocumentCommand{\foo}{m}{ + \DeclareDocumentCommand{\bar}{m}{#1, ##1} +} + +-------------------------------------------------------------------------------- + +(source_file + (new_command_definition + (curly_group_command_name + (command_name)) + (curly_group_spec + (text + (word))) + (curly_group + (new_command_definition + (curly_group_command_name + (command_name)) + (curly_group_spec + (text + (word))) + (curly_group + (text + (placeholder)) + (text + (placeholder))))))) + +================================================================================ +Command copy (of command defined in grammar which requires a following node) +================================================================================ + +\NewCommandCopy{\foo}{\ref} + +-------------------------------------------------------------------------------- + +(source_file + (new_command_definition + (curly_group_command_name + (command_name)) + (curly_group_command_name + (command_name)))) + ================================================================================ Author command ================================================================================ @@ -154,3 +259,67 @@ Author command (text (word) (word)))))) + +================================================================================ +Text commands +================================================================================ + +\intertext{John Doe } \text{Foo Bar} + +-------------------------------------------------------------------------------- + +(source_file + (text_mode + (curly_group + (text + (word) + (word)))) + (text_mode + (curly_group + (text + (word) + (word))))) + +================================================================================ +Hyperlinks +================================================================================ + +\url{https://github.com/latex-lsp/tree-sitter-latex} + +\href{https://github.com/latex-lsp/tree-sitter-latex}{tree-sitter-latex} + +\href{https://github.com/latex-lsp/tree-sitter-latex/issues?q=hyperlink} + {search ``hyperlink''} + +\href{file:///path/to/file_containing spaces, and also commas}{file URI} + +-------------------------------------------------------------------------------- + +(source_file + (hyperlink + (curly_group_uri + (uri))) + (hyperlink + (curly_group_uri + (uri)) + (curly_group + (text + (word) + (operator) + (word) + (operator) + (word)))) + (hyperlink + (curly_group_uri + (uri)) + (curly_group + (text + (word) + (word)))) + (hyperlink + (curly_group_uri + (uri)) + (curly_group + (text + (word) + (word))))) diff --git a/vendored_parsers/tree-sitter-latex/test/corpus/environments.txt b/vendored_parsers/tree-sitter-latex/test/corpus/environments.txt index 4c787dd12..93cf20d84 100644 --- a/vendored_parsers/tree-sitter-latex/test/corpus/environments.txt +++ b/vendored_parsers/tree-sitter-latex/test/corpus/environments.txt @@ -236,6 +236,72 @@ Pycode environment (text (word)))))) +================================================================================ +Luacode* environment +================================================================================ + +\begin{luacode*} + Hello World +\end{luacode*} + +-------------------------------------------------------------------------------- + +(source_file + (luacode_environment + (begin + (curly_group_text + (text + (word)))) + (source_code) + (end + (curly_group_text + (text + (word)))))) + +================================================================================ +Sagesilent environment +================================================================================ + +\begin{sagesilent} + print() +\end{sagesilent} + +-------------------------------------------------------------------------------- + +(source_file + (sagesilent_environment + (begin + (curly_group_text + (text + (word)))) + (source_code) + (end + (curly_group_text + (text + (word)))))) + +================================================================================ +Sageblock environment +================================================================================ + +\begin{sageblock} + print() +\end{sageblock} + +-------------------------------------------------------------------------------- + +(source_file + (sageblock_environment + (begin + (curly_group_text + (text + (word)))) + (source_code) + (end + (curly_group_text + (text + (word)))))) + ================================================================================ Math environment ================================================================================ diff --git a/vendored_parsers/tree-sitter-latex/test/corpus/includes.txt b/vendored_parsers/tree-sitter-latex/test/corpus/includes.txt index 2d405fd00..a065a1112 100644 --- a/vendored_parsers/tree-sitter-latex/test/corpus/includes.txt +++ b/vendored_parsers/tree-sitter-latex/test/corpus/includes.txt @@ -158,7 +158,7 @@ BibTeX include with absolute path (source_file (bibtex_include - (curly_group_path + (curly_group_path_list (path)))) ================================================================================ diff --git a/vendored_parsers/tree-sitter-latex/test/corpus/issues.txt b/vendored_parsers/tree-sitter-latex/test/corpus/issues.txt index 9243a574a..65988c3e0 100644 --- a/vendored_parsers/tree-sitter-latex/test/corpus/issues.txt +++ b/vendored_parsers/tree-sitter-latex/test/corpus/issues.txt @@ -318,7 +318,7 @@ tree-sitter-latex (Issue #24) (source_file (theorem_definition - (curly_group_text + (curly_group_text_list (text (word))) (curly_group @@ -477,15 +477,15 @@ Let (word)))) (text (word) - (word)) + (delimiter)) (text (word) (superscript - (word)) + (letter)) (operator) (word) (superscript - (word))) + (letter))) (text_mode (curly_group (text @@ -493,15 +493,16 @@ Let (word)))) (text (word) - (word)) + (delimiter)) (text (word) (superscript - (word)) + (letter)) (operator) (word) (superscript - (word))) + (letter)) + (word)) (end (curly_group_text (text @@ -726,14 +727,13 @@ tree-sitter-latex (Issue #55) | minted with options (word)))))) ================================================================================ -tree-sitter-latex (Issue #58) | math delimiters +tree-sitter-latex (Issues #58 and #84) | math delimiters ================================================================================ -\big( 2 + 2 \big) \bigl( 2 + 2 \bigr) \left( 2 + 2 \right) -\big\langle 2 + 2 \big\rangle \bigl| v \bigr| +r \big|_0^a -------------------------------------------------------------------------------- @@ -750,16 +750,28 @@ tree-sitter-latex (Issue #58) | math delimiters (word))) (math_delimiter (text - (word) - (operator) (word))) - (math_delimiter - (command_name) - (text - (word) - (operator) - (word)) - (command_name)) - (math_delimiter - (text - (word)))) + (text + (word) + (generic_command + (command_name)) + (operator) + (subscript + (letter)) + (superscript + (letter)))) + +================================================================================ +tree-sitter-latex (Issue #107) | subscript +================================================================================ + +10^10 + +-------------------------------------------------------------------------------- + +(source_file + (text + (word) + (superscript + (letter)) + (word))) diff --git a/vendored_parsers/tree-sitter-latex/test/corpus/math.txt b/vendored_parsers/tree-sitter-latex/test/corpus/math.txt index 4050dcdc6..aee236259 100644 --- a/vendored_parsers/tree-sitter-latex/test/corpus/math.txt +++ b/vendored_parsers/tree-sitter-latex/test/corpus/math.txt @@ -220,6 +220,6 @@ Foo_{bar}^2 (subscript (curly_group (text - (word)))) + (word)))) (superscript - (word)))) + (letter)))) diff --git a/vendored_parsers/tree-sitter-latex/test/corpus/sections.txt b/vendored_parsers/tree-sitter-latex/test/corpus/sections.txt index 971f22e8e..18231a76b 100644 --- a/vendored_parsers/tree-sitter-latex/test/corpus/sections.txt +++ b/vendored_parsers/tree-sitter-latex/test/corpus/sections.txt @@ -85,3 +85,41 @@ Nested sections (word)))) (text (word))))) + +================================================================================ +Subsection with preceeding paragraph +================================================================================ + +\section{Foo} + +\paragraph{Par} + +\subsection{Bar} + +\paragraph{Par} + +\subsection{Bar} + +-------------------------------------------------------------------------------- + +(source_file + (section + (curly_group + (text + (word))) + (paragraph + (curly_group + (text + (word)))) + (subsection + (curly_group + (text + (word))) + (paragraph + (curly_group + (text + (word))))) + (subsection + (curly_group + (text + (word))))))